From a26d822a78db61ff4597916cac307b9115da8da3 Mon Sep 17 00:00:00 2001 From: SoulKindred Date: Wed, 3 Jan 2024 18:49:19 +0100 Subject: [PATCH] Uploading new html map and interactive map now works with time slider --- analysis/accident_map_interactive.html | 354 +++++++------ src/datasets/integrated/data_viz.ipynb | 695 ++++++++++++++++++------- 2 files changed, 696 insertions(+), 353 deletions(-) diff --git a/analysis/accident_map_interactive.html b/analysis/accident_map_interactive.html index 9c667d6..6935e42 100644 --- a/analysis/accident_map_interactive.html +++ b/analysis/accident_map_interactive.html @@ -25,7 +25,7 @@ - + + + + + + + + -
+
diff --git a/src/datasets/integrated/data_viz.ipynb b/src/datasets/integrated/data_viz.ipynb index ff5d1ad..7f0bc1f 100644 --- a/src/datasets/integrated/data_viz.ipynb +++ b/src/datasets/integrated/data_viz.ipynb @@ -304,7 +304,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 6, @@ -330,7 +330,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 20, "id": "cded2fff6806c2dc", "metadata": { "ExecuteTime": { @@ -343,6 +343,28 @@ } }, "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " latitude longitude Weight\n", + "0 47.352168 8.558410 2011.0\n", + "1 47.368512 8.529320 2011.0\n", + "2 47.375376 8.534877 2011.0\n", + "3 47.369756 8.513682 2011.0\n", + "4 47.401865 8.531288 2011.0\n", + "... ... ... ...\n", + "55821 47.369203 8.527507 2022.0\n", + "55822 47.377651 8.498347 2022.0\n", + "55823 47.378783 8.564068 2022.0\n", + "55824 47.389583 8.472041 2022.0\n", + "55825 47.363387 8.557256 2022.0\n", + "\n", + "[55826 rows x 3 columns]\n", + "\n", + "\n" + ] + }, { "data": { "text/html": [ @@ -373,7 +395,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_dc082b8cdb44d32db890bf16da92f5a4 {\n", + " #map_2bbaa23ebb5ac3954d579adb4bcaf7f6 {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -383,19 +405,104 @@ " .leaflet-container { font-size: 1rem; }\n", " </style>\n", " \n", - " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/iso8601-js-period@0.2.1/iso8601.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/pa7_hm.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/pa7_leaflet_hm.min.js"></script>\n", + " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.control.css"/>\n", + " \n", + " <script>\n", + " var TDHeatmap = L.TimeDimension.Layer.extend({\n", + "\n", + " initialize: function(data, options) {\n", + " var heatmapCfg = {\n", + " radius: 15,\n", + " blur: 0.8,\n", + " maxOpacity: 1.,\n", + " scaleRadius: false,\n", + " useLocalExtrema: false,\n", + " latField: 'lat',\n", + " lngField: 'lng',\n", + " valueField: 'count',\n", + " defaultWeight : 1,\n", + " };\n", + " heatmapCfg = $.extend({}, heatmapCfg, options.heatmapOptions || {});\n", + " var layer = new HeatmapOverlay(heatmapCfg);\n", + " L.TimeDimension.Layer.prototype.initialize.call(this, layer, options);\n", + " this._currentLoadedTime = 0;\n", + " this._currentTimeData = {\n", + " data: []\n", + " };\n", + " this.data= data;\n", + " this.defaultWeight = heatmapCfg.defaultWeight || 1;\n", + " },\n", + " onAdd: function(map) {\n", + " L.TimeDimension.Layer.prototype.onAdd.call(this, map);\n", + " map.addLayer(this._baseLayer);\n", + " if (this._timeDimension) {\n", + " this._getDataForTime(this._timeDimension.getCurrentTime());\n", + " }\n", + " },\n", + " _onNewTimeLoading: function(ev) {\n", + " this._getDataForTime(ev.time);\n", + " return;\n", + " },\n", + " isReady: function(time) {\n", + " return (this._currentLoadedTime == time);\n", + " },\n", + " _update: function() {\n", + " this._baseLayer.setData(this._currentTimeData);\n", + " return true;\n", + " },\n", + " _getDataForTime: function(time) {\n", + " delete this._currentTimeData.data;\n", + " this._currentTimeData.data = [];\n", + " var data = this.data[time-1];\n", + " for (var i = 0; i < data.length; i++) {\n", + " this._currentTimeData.data.push({\n", + " lat: data[i][0],\n", + " lng: data[i][1],\n", + " count: data[i].length>2 ? data[i][2] : this.defaultWeight\n", + " });\n", + " }\n", + " this._currentLoadedTime = time;\n", + " if (this._timeDimension && time == this._timeDimension.getCurrentTime() && !this._timeDimension.isLoading()) {\n", + " this._update();\n", + " }\n", + " this.fire('timeload', {\n", + " time: time\n", + " });\n", + " }\n", + " });\n", + "\n", + " L.Control.TimeDimensionCustom = L.Control.TimeDimension.extend({\n", + " initialize: function(index, options) {\n", + " var playerOptions = {\n", + " buffer: 1,\n", + " minBufferReady: -1\n", + " };\n", + " options.playerOptions = $.extend({}, playerOptions, options.playerOptions || {});\n", + " L.Control.TimeDimension.prototype.initialize.call(this, options);\n", + " this.index = index;\n", + " },\n", + " _getDisplayDateFormat: function(date){\n", + " return this.index[date.getTime()-1];\n", + " }\n", + " });\n", + " </script>\n", + " \n", "</head>\n", "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_dc082b8cdb44d32db890bf16da92f5a4" ></div>\n", + " <div class="folium-map" id="map_2bbaa23ebb5ac3954d579adb4bcaf7f6" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_dc082b8cdb44d32db890bf16da92f5a4 = L.map(\n", - " "map_dc082b8cdb44d32db890bf16da92f5a4",\n", + " var map_2bbaa23ebb5ac3954d579adb4bcaf7f6 = L.map(\n", + " "map_2bbaa23ebb5ac3954d579adb4bcaf7f6",\n", " {\n", " center: [47.36865, 8.539183],\n", " crs: L.CRS.EPSG3857,\n", @@ -412,31 +519,69 @@ "\n", " \n", " \n", - " var tile_layer_cd66a7d11ded00959c8d859d203c52ec = L.tileLayer(\n", + " var tile_layer_6c8673f02ddfdc324308298b386ca871 = L.tileLayer(\n", " "https://tile.openstreetmap.org/{z}/{x}/{y}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors", "detectRetina": false, "maxNativeZoom": 19, "maxZoom": 19, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abc", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_cd66a7d11ded00959c8d859d203c52ec.addTo(map_dc082b8cdb44d32db890bf16da92f5a4);\n", + " tile_layer_6c8673f02ddfdc324308298b386ca871.addTo(map_2bbaa23ebb5ac3954d579adb4bcaf7f6);\n", " \n", " \n", - " var heat_map_95ac3ceca69a0a9d3b76ec4401a2bea5 = L.heatLayer(\n", - " [[47.352168, 8.55841], [47.368512, 8.52932], [47.375376, 8.534877], [47.369756, 8.513682], [47.401865, 8.531288], [47.428652, 8.543582], [47.391125, 8.522617], [47.376931, 8.541636], [47.374602, 8.535854], [47.366542, 8.540613], [47.387107, 8.519462], [47.394692, 8.546759], [47.404676, 8.557116], [47.367753, 8.545709], [47.37445, 8.546113], [47.403796, 8.485857], [47.367773, 8.494523], [47.387926, 8.485241], [47.373877, 8.5135], [47.39161, 8.527568], [47.384609, 8.531597], [47.421708, 8.550131], [47.363555, 8.554744], [47.388514, 8.483835], [47.377256, 8.538689], [47.409028, 8.566496], [47.352644, 8.572305], [47.363447, 8.554768], [47.377263, 8.510179], [47.39341, 8.525459], [47.375442, 8.547763], [47.421067, 8.549495], [47.41099, 8.543149], [47.410956, 8.542937], [47.373272, 8.531947], [47.396116, 8.505378], [47.34129, 8.530524], [47.356698, 8.57349], [47.366118, 8.53229], [47.400643, 8.549069], [47.407342, 8.565996], [47.370233, 8.548819], [47.369283, 8.541901], [47.377485, 8.542005], [47.417596, 8.553995], [47.374397, 8.518503], [47.364218, 8.551263], [47.371403, 8.53645], [47.370147, 8.602311], [47.413218, 8.53873], [47.358105, 8.524408], [47.391821, 8.500047], [47.357968, 8.532268], [47.368238, 8.520166], [47.351863, 8.527285], [47.407434, 8.563004], [47.369667, 8.53366], [47.419423, 8.508177], [47.422315, 8.512583], [47.35768, 8.552053], [47.397972, 8.47435], [47.386281, 8.531737], [47.408712, 8.546229], [47.372678, 8.534795], [47.388015, 8.520448], [47.361218, 8.552709], [47.375944, 8.54139], [47.389535, 8.51281], [47.393999, 8.543989], [47.421475, 8.511042], [47.378301, 8.54132], [47.407516, 8.548073], [47.388406, 8.520032], [47.401769, 8.581194], [47.350735, 8.577043], [47.379003, 8.556286], [47.371053, 8.516343], [47.379671, 8.545771], [47.408017, 8.547407], [47.396566, 8.540784], [47.392391, 8.487779], [47.406853, 8.550603], [47.374376, 8.521707], [47.336727, 8.516404], [47.416753, 8.572252], [47.36069, 8.56542], [47.394205, 8.517434], [47.375645, 8.516807], [47.387956, 8.49087], [47.374194, 8.491737], [47.377228, 8.539762], [47.413983, 8.548088], [47.36765, 8.495262], [47.362623, 8.527068], [47.400357, 8.585721], [47.362708, 8.567886], [47.377521, 8.542006], [47.375891, 8.510667], [47.427058, 8.546637], [47.388324, 8.548614], [47.37063, 8.527854], [47.378502, 8.510468], [47.402744, 8.491785], [47.375415, 8.517372], [47.376857, 8.535198], [47.375142, 8.51865], [47.421599, 8.550208], [47.334593, 8.52999], [47.380295, 8.541666], [47.385078, 8.547526], [47.409537, 8.543623], [47.379452, 8.544244], [47.421691, 8.499303], [47.38648, 8.541039], [47.405212, 8.505123], [47.373017, 8.531359], [47.397216, 8.5311], [47.365265, 8.521588], [47.381359, 8.512737], [47.386961, 8.534956], [47.385109, 8.476404], [47.359661, 8.549036], [47.375257, 8.523698], [47.379241, 8.5286], [47.37565, 8.537332], [47.354234, 8.554986], [47.385807, 8.526734], [47.364907, 8.530994], [47.378324, 8.530395], [47.359178, 8.596458], [47.381372, 8.518075], [47.375548, 8.524313], [47.379301, 8.525992], [47.390691, 8.478844], [47.420592, 8.540804], [47.383768, 8.515792], [47.384964, 8.532147], [47.383683, 8.588104], [47.415446, 8.54462], [47.374697, 8.55789], [47.37935, 8.495494], [47.376592, 8.53665], [47.4244, 8.552692], [47.389996, 8.484063], [47.366961, 8.543905], [47.36677, 8.501918], [47.370977, 8.530205], [47.414524, 8.54419], [47.386315, 8.499116], [47.406837, 8.550364], [47.378083, 8.530178], [47.372117, 8.521847], [47.399555, 8.496319], [47.369434, 8.52591], [47.392108, 8.510821], [47.375349, 8.485404], [47.354979, 8.554233], [47.371146, 8.53038], [47.39006, 8.525854], [47.371124, 8.520277], [47.407189, 8.50344], [47.41151, 8.532864], [47.359925, 8.580099], [47.399946, 8.544841], [47.403344, 8.48614], [47.382009, 8.530749], [47.387185, 8.509186], [47.378417, 8.540514], [47.40754, 8.503368], [47.379197, 8.564143], [47.378414, 8.543653], [47.378516, 8.541404], [47.361626, 8.5486], [47.394143, 8.525063], [47.370985, 8.535938], [47.398832, 8.533306], [47.372442, 8.523641], [47.407711, 8.578817], [47.369841, 8.510294], [47.371042, 8.535701], [47.387614, 8.498678], [47.378235, 8.528394], [47.381164, 8.582673], [47.373317, 8.524347], [47.414166, 8.546793], [47.38457, 8.509835], [47.384491, 8.51639], [47.351648, 8.576599], [47.370713, 8.535231], [47.370013, 8.564121], [47.370463, 8.524633], [47.360324, 8.562394], [47.370394, 8.534774], [47.380655, 8.556651], [47.362489, 8.534585], [47.371212, 8.527204], [47.356772, 8.573293], [47.385062, 8.495462], [47.377758, 8.52845], [47.378155, 8.548163], [47.361911, 8.531039], [47.385484, 8.529456], [47.365242, 8.53071], [47.409837, 8.545166], [47.357632, 8.521142], [47.373663, 8.54664], [47.408737, 8.579661], [47.380399, 8.512493], [47.406725, 8.584825], [47.373444, 8.512657], [47.373845, 8.537878], [47.399668, 8.517121], [47.386642, 8.547704], [47.366437, 8.5413], [47.376157, 8.544507], [47.363434, 8.546758], [47.338792, 8.530195], [47.359436, 8.521589], [47.37086, 8.548144], [47.33881, 8.530169], [47.373961, 8.538992], [47.413271, 8.53885], [47.379779, 8.527737], [47.391631, 8.492294], [47.398208, 8.536512], [47.381223, 8.532017], [47.373546, 8.534336], [47.357638, 8.551814], [47.397914, 8.508461], [47.400808, 8.492025], [47.399896, 8.544443], [47.394119, 8.525632], [47.387543, 8.490783], [47.38828, 8.49081], [47.414734, 8.519148], [47.36371, 8.551768], [47.372631, 8.547307], [47.373544, 8.528827], [47.410358, 8.548105], [47.374337, 8.542973], [47.372706, 8.525222], [47.370434, 8.549419], [47.38135, 8.535754], [47.391607, 8.519209], [47.375382, 8.526654], [47.391063, 8.479474], [47.386225, 8.531921], [47.378413, 8.53049], [47.372008, 8.53629], [47.377373, 8.509995], [47.414977, 8.551382], [47.409795, 8.549538], [47.377683, 8.538248], [47.343638, 8.53519], [47.378156, 8.48734], [47.366909, 8.558561], [47.390762, 8.522027], [47.416784, 8.54588], [47.410161, 8.57394], [47.363824, 8.56689], [47.367852, 8.539078], [47.374924, 8.534166], [47.374363, 8.543026], [47.369932, 8.533202], [47.36475, 8.553935], [47.398004, 8.494765], [47.397815, 8.532411], [47.377043, 8.544075], [47.378014, 8.515504], [47.361652, 8.532701], [47.373541, 8.519664], [47.378544, 8.530016], [47.364501, 8.547138], [47.391654, 8.538987], [47.378173, 8.509972], [47.355464, 8.559869], [47.38127, 8.53272], [47.334931, 8.527588], [47.393324, 8.529802], [47.381279, 8.531833], [47.361546, 8.547659], [47.364643, 8.517868], [47.362016, 8.52654], [47.395044, 8.525863], [47.363204, 8.557583], [47.38885, 8.515816], [47.367909, 8.522661], [47.353443, 8.576134], [47.378189, 8.541781], [47.412205, 8.523099], [47.378896, 8.526924], [47.374769, 8.55135], [47.39006, 8.525854], [47.42587, 8.49378], [47.392522, 8.527149], [47.384624, 8.530074], [47.407568, 8.584233], [47.387834, 8.498272], [47.386171, 8.498212], [47.395506, 8.545359], [47.367515, 8.545201], [47.408835, 8.550273], [47.43021, 8.540592], [47.385208, 8.536774], [47.385967, 8.518287], [47.381482, 8.482677], [47.419154, 8.506118], [47.38, 8.51667], [47.370098, 8.548843], [47.38095, 8.535164], [47.394099, 8.529738], [47.378312, 8.523985], [47.391517, 8.514373], [47.342498, 8.53121], [47.371335, 8.536065], [47.37204, 8.516641], [47.378048, 8.513823], [47.363924, 8.530312], [47.412136, 8.483782], [47.409217, 8.53287], [47.379057, 8.525153], [47.407502, 8.491866], [47.378296, 8.554086], [47.394395, 8.489024], [47.369684, 8.53374], [47.411294, 8.562025], [47.369698, 8.536097], [47.376894, 8.557632], [47.372675, 8.555835], [47.390633, 8.515613], [47.397719, 8.47453], [47.368982, 8.541299], [47.365185, 8.52152], [47.36026, 8.552239], [47.347345, 8.533189], [47.413384, 8.539277], [47.415042, 8.515961], [47.389764, 8.536325], [47.37829, 8.507047], [47.39118, 8.487503], [47.381096, 8.517844], [47.379532, 8.548113], [47.392477, 8.506908], [47.394041, 8.493269], [47.370069, 8.518614], [47.368627, 8.546535], [47.419116, 8.506409], [47.424591, 8.508639], [47.412498, 8.525437], [47.370054, 8.541189], [47.363643, 8.535205], [47.384442, 8.503224], [47.417397, 8.545734], [47.364743, 8.565784], [47.371059, 8.537622], [47.369541, 8.531738], [47.369313, 8.522557], [47.420574, 8.502409], [47.36958, 8.525701], [47.427247, 8.54566], [47.367815, 8.495835], [47.372087, 8.546792], [47.375887, 8.515938], [47.418268, 8.546773], [47.408747, 8.546283], [47.400191, 8.54743], [47.373371, 8.531936], [47.378912, 8.526209], [47.340412, 8.519588], [47.417734, 8.546152], [47.349907, 8.5615], [47.42267, 8.495479], [47.351996, 8.558499], [47.371847, 8.520941], [47.380455, 8.542821], [47.386039, 8.529732], [47.379044, 8.559491], [47.412037, 8.54655], [47.356208, 8.558257], [47.352387, 8.571903], [47.356004, 8.556135], [47.359691, 8.586435], [47.391162, 8.515796], [47.405593, 8.577473], [47.377881, 8.532492], [47.398131, 8.536074], [47.419116, 8.506409], [47.363977, 8.555785], [47.384211, 8.499087], [47.376833, 8.515811], [47.364087, 8.526304], [47.373576, 8.519705], [47.372675, 8.528452], [47.36092, 8.591333], [47.326904, 8.513533], [47.373484, 8.537102], [47.415342, 8.547997], [47.360197, 8.522955], [47.403671, 8.546548], [47.407437, 8.584708], [47.348415, 8.523761], [47.415106, 8.514915], [47.367974, 8.540458], [47.376964, 8.527692], [47.371094, 8.523534], [47.410578, 8.572637], [47.374668, 8.549667], [47.383834, 8.509701], [47.370553, 8.524542], [47.377595, 8.498611], [47.384809, 8.509284], [47.352632, 8.524826], [47.384759, 8.531957], [47.366594, 8.545566], [47.412227, 8.546408], [47.390782, 8.478793], [47.373764, 8.536062], [47.389099, 8.510311], [47.358922, 8.582394], [47.376968, 8.493315], [47.370188, 8.548792], [47.369206, 8.54803], [47.390889, 8.547501], [47.371307, 8.528623], [47.409696, 8.569094], [47.377112, 8.540554], [47.377579, 8.508132], [47.355113, 8.574542], [47.372399, 8.534802], [47.382308, 8.545601], [47.364855, 8.530715], [47.384417, 8.531924], [47.354821, 8.532111], [47.368608, 8.528673], [47.369024, 8.537937], [47.419561, 8.548006], [47.390678, 8.522383], [47.390195, 8.490928], [47.388143, 8.528848], [47.407783, 8.583364], [47.378435, 8.540462], [47.377788, 8.507845], [47.418107, 8.544768], [47.387763, 8.500112], [47.420795, 8.546878], [47.361807, 8.515256], [47.366211, 8.545174], [47.39835, 8.537721], [47.376025, 8.537618], [47.373885, 8.536541], [47.407895, 8.565584], [47.376909, 8.527784], [47.379353, 8.544162], [47.400648, 8.548513], [47.426181, 8.495165], [47.377258, 8.512615], [47.373374, 8.551401], [47.353493, 8.527041], [47.400065, 8.49462], [47.425414, 8.55384], [47.387597, 8.529499], [47.372758, 8.534969], [47.394178, 8.525103], [47.381905, 8.509173], [47.344813, 8.53364], [47.368064, 8.492225], [47.392958, 8.492757], [47.374444, 8.540207], [47.371353, 8.547386], [47.378146, 8.532086], [47.372529, 8.54757], [47.378637, 8.531554], [47.35973, 8.565201], [47.402571, 8.547824], [47.378384, 8.526953], [47.376821, 8.559577], [47.402574, 8.492669], [47.390658, 8.491427], [47.363048, 8.530691], [47.387812, 8.490881], [47.418503, 8.542006], [47.359809, 8.53543], [47.368201, 8.559872], [47.390466, 8.491834], [47.405754, 8.547003], [47.383538, 8.534541], [47.383366, 8.498991], [47.401848, 8.554658], [47.359033, 8.558223], [47.373729, 8.514888], [47.370936, 8.518247], [47.38697, 8.528334], [47.41228, 8.515044], [47.383294, 8.572838], [47.352142, 8.558317], [47.382305, 8.488057], [47.368273, 8.546806], [47.376578, 8.541893], [47.376484, 8.528106], [47.371362, 8.536039], [47.385371, 8.475284], [47.361727, 8.593336], [47.373509, 8.534454], [47.36422, 8.526505], [47.377279, 8.514284], [47.385976, 8.489984], [47.386115, 8.537892], [47.36632, 8.600029], [47.365899, 8.548636], [47.387566, 8.487207], [47.36108, 8.531392], [47.369403, 8.528253], [47.380626, 8.525728], [47.376109, 8.527741], [47.381308, 8.53733], [47.380465, 8.542676], [47.36886, 8.528586], [47.367653, 8.534519], [47.398992, 8.506615], [47.378879, 8.52209], [47.391147, 8.489105], [47.414279, 8.550943], [47.391227, 8.52042], [47.358017, 8.555356], [47.373204, 8.515235], [47.385436, 8.508568], [47.391964, 8.482353], [47.409636, 8.549283], [47.427012, 8.491814], [47.364277, 8.536674], [47.370796, 8.5351], [47.373072, 8.52556], [47.372788, 8.535618], [47.381244, 8.51541], [47.379874, 8.527288], [47.374316, 8.524275], [47.378444, 8.541455], [47.360111, 8.579507], [47.39857, 8.539116], [47.41149, 8.525536], [47.351566, 8.602024], [47.382607, 8.54819], [47.39133, 8.536198], [47.415859, 8.514281], [47.377761, 8.507858], [47.360649, 8.551122], [47.366409, 8.545112], [47.376601, 8.527115], [47.390738, 8.479627], [47.363639, 8.550694], [47.364587, 8.548503], [47.375741, 8.527707], [47.399665, 8.468103], [47.38242, 8.530068], [47.390995, 8.523078], [47.366899, 8.533405], [47.37278, 8.535512], [47.374255, 8.525028], [47.381798, 8.529208], [47.363058, 8.548445], [47.409473, 8.542787], [47.384998, 8.495659], [47.389229, 8.546195], [47.385646, 8.506374], [47.391647, 8.511024], [47.409885, 8.487951], [47.414439, 8.518003], [47.383238, 8.506074], [47.381247, 8.513225], [47.364153, 8.563614], [47.415049, 8.513337], [47.402763, 8.535215], [47.356907, 8.535053], [47.378599, 8.51933], [47.395491, 8.526097], [47.3698, 8.529042], [47.370348, 8.557375], [47.4117, 8.509718], [47.416762, 8.572226], [47.396749, 8.537648], [47.359226, 8.549437], [47.40582, 8.544818], [47.370173, 8.540993], [47.369957, 8.510429], [47.355619, 8.532419], [47.393113, 8.526433], [47.35031, 8.577285], [47.384115, 8.52866], [47.370906, 8.548065], [47.3777, 8.511551], [47.376735, 8.543327], [47.379513, 8.537862], [47.405104, 8.478556], [47.388449, 8.484085], [47.373165, 8.552588], [47.376961, 8.543226], [47.380385, 8.525484], [47.370673, 8.508841], [47.375479, 8.486929], [47.369023, 8.53795], [47.389265, 8.527242], [47.383246, 8.488526], [47.408255, 8.569262], [47.376961, 8.522289], [47.377237, 8.538835], [47.356865, 8.534761], [47.378015, 8.517384], [47.36807, 8.550151], [47.377075, 8.540646], [47.3695, 8.528493], [47.376225, 8.544919], [47.369426, 8.526797], [47.428536, 8.542493], [47.402127, 8.497337], [47.375499, 8.557709], [47.383238, 8.506074], [47.404445, 8.574375], [47.353725, 8.558311], [47.408736, 8.550231], [47.413878, 8.5534], [47.365898, 8.501927], [47.387752, 8.50035], [47.391846, 8.533904], [47.364713, 8.520028], [47.387577, 8.497909], [47.408063, 8.538809], [47.393842, 8.497332], [47.366016, 8.533506], [47.42108, 8.502127], [47.395468, 8.520917], [47.364845, 8.554347], [47.413227, 8.538704], [47.410316, 8.542115], [47.374602, 8.538674], [47.360669, 8.524407], [47.383197, 8.483995], [47.357256, 8.521955], [47.390142, 8.510438], [47.399578, 8.542807], [47.375466, 8.484493], [47.377599, 8.538524], [47.383238, 8.505994], [47.382056, 8.481828], [47.410825, 8.56766], [47.368845, 8.539721], [47.429032, 8.489283], [47.385524, 8.51751], [47.387202, 8.535173], [47.363398, 8.564485], [47.370479, 8.516146], [47.379273, 8.546041], [47.354623, 8.573221], [47.389767, 8.492429], [47.425084, 8.53765], [47.381033, 8.504229], [47.419896, 8.506623], [47.368203, 8.560614], [47.400133, 8.545958], [47.357275, 8.521836], [47.392111, 8.532559], [47.370596, 8.535308], [47.369673, 8.554581], [47.39607, 8.515193], [47.401238, 8.54512], [47.403505, 8.487216], [47.391091, 8.522418], [47.379156, 8.495093], [47.376903, 8.512184], [47.371917, 8.522028], [47.363489, 8.520135], [47.367334, 8.52355], [47.413462, 8.530082], [47.373488, 8.519478], [47.382878, 8.530091], [47.354443, 8.523632], [47.383607, 8.529152], [47.378432, 8.510202], [47.378124, 8.530656], [47.375038, 8.536393], [47.381362, 8.528696], [47.408741, 8.539379], [47.378521, 8.541854], [47.370106, 8.548883], [47.414033, 8.541914], [47.377452, 8.498502], [47.357669, 8.581732], [47.390405, 8.539769], [47.376192, 8.540839], [47.354506, 8.525552], [47.429415, 8.540006], [47.381111, 8.518083], [47.370805, 8.526454], [47.390196, 8.539089], [47.418796, 8.506959], [47.416161, 8.546066], [47.35401, 8.57338], [47.369197, 8.548003], [47.390018, 8.491613], [47.381586, 8.54205], [47.381837, 8.509648], [47.377497, 8.538853], [47.375528, 8.548201], [47.382004, 8.514035], [47.366834, 8.520256], [47.392572, 8.494604], [47.381282, 8.514259], [47.396717, 8.540999], [47.385797, 8.548534], [47.392904, 8.534363], [47.374412, 8.541676], [47.403847, 8.547957], [47.384444, 8.532918], [47.386814, 8.490795], [47.381528, 8.554683], [47.356687, 8.553329], [47.373931, 8.536449], [47.37077, 8.536887], [47.362921, 8.522189], [47.373576, 8.519691], [47.376566, 8.526982], [47.391176, 8.488868], [47.426297, 8.554667], [47.374852, 8.517943], [47.37702, 8.541783], [47.387253, 8.522128], [47.414787, 8.519229], [47.358889, 8.51664], [47.369972, 8.548774], [47.422458, 8.55073], [47.386683, 8.518686], [47.367715, 8.494986], [47.390718, 8.517165], [47.384491, 8.516376], [47.391254, 8.487253], [47.367663, 8.545747], [47.425082, 8.510982], [47.372945, 8.531318], [47.336391, 8.53962], [47.375925, 8.530081], [47.372894, 8.539593], [47.377783, 8.565173], [47.381469, 8.503721], [47.407356, 8.550666], [47.369704, 8.50857], [47.382009, 8.530749], [47.362655, 8.518887], [47.381246, 8.513238], [47.370668, 8.469834], [47.358118, 8.534548], [47.362632, 8.615147], [47.384689, 8.509639], [47.378507, 8.54143], [47.373458, 8.537009], [47.395017, 8.489884], [47.407713, 8.543466], [47.374638, 8.529287], [47.400708, 8.507868], [47.378882, 8.522686], [47.359853, 8.549715], [47.379346, 8.526019], [47.402939, 8.547871], [47.367462, 8.545094], [47.385975, 8.51834], [47.398094, 8.532443], [47.397934, 8.546442], [47.362741, 8.521232], [47.378784, 8.542575], [47.354292, 8.575755], [47.364586, 8.537342], [47.355199, 8.531219], [47.411442, 8.54671], [47.399551, 8.547576], [47.388634, 8.528302], [47.360058, 8.550818], [47.371169, 8.514531], [47.383181, 8.539924], [47.375219, 8.515222], [47.359517, 8.522544], [47.383633, 8.548171], [47.381475, 8.532989], [47.375405, 8.517438], [47.389779, 8.521305], [47.42557, 8.494105], [47.378541, 8.528413], [47.370151, 8.548924], [47.369347, 8.541704], [47.391218, 8.549786], [47.369459, 8.526149], [47.35763, 8.554487], [47.367906, 8.494751], [47.375713, 8.548629], [47.34102, 8.524762], [47.378291, 8.509855], [47.387369, 8.52707], [47.370357, 8.518606], [47.3669, 8.539906], [47.402871, 8.554004], [47.376222, 8.548944], [47.369053, 8.525306], [47.412278, 8.554228], [47.39142, 8.538982], [47.431398, 8.516676], [47.376316, 8.527772], [47.37081, 8.542979], [47.430219, 8.544344], [47.392114, 8.524637], [47.420604, 8.508851], [47.4189, 8.506365], [47.37772, 8.517153], [47.428121, 8.490524], [47.370182, 8.513307], [47.414218, 8.518568], [47.374797, 8.527661], [47.410921, 8.558771], [47.369156, 8.532524], [47.364001, 8.551457], [47.370804, 8.548315], [47.361951, 8.547614], [47.385493, 8.530462], [47.367729, 8.546371], [47.38695, 8.547393], [47.374397, 8.521363], [47.379649, 8.521536], [47.375886, 8.538026], [47.421118, 8.501903], [47.341081, 8.519231], [47.342536, 8.53092], [47.414793, 8.561052], [47.369569, 8.493963], [47.386465, 8.49651], [47.376929, 8.535226], [47.410865, 8.563514], [47.373918, 8.54634], [47.365375, 8.552597], [47.356702, 8.52344], [47.382354, 8.530425], [47.373247, 8.535495], [47.378939, 8.52907], [47.365677, 8.553901], [47.427536, 8.547429], [47.429183, 8.546417], [47.387925, 8.529135], [47.374148, 8.5192], [47.409082, 8.573931], [47.369053, 8.525293], [47.380355, 8.542872], [47.387933, 8.477439], [47.379645, 8.527694], [47.383633, 8.548145], [47.413889, 8.52483], [47.405663, 8.481362], [47.403137, 8.555308], [47.37946, 8.544297], [47.401354, 8.545255], [47.381469, 8.503734], [47.394249, 8.490186], [47.380503, 8.519686], [47.364003, 8.547485], [47.368185, 8.550339], [47.372125, 8.542794], [47.373511, 8.54277], [47.373825, 8.483918], [47.402552, 8.487157], [47.398759, 8.506531], [47.381314, 8.53574], [47.37377, 8.53826], [47.383625, 8.51567], [47.383724, 8.515752], [47.372705, 8.534861], [47.405133, 8.555469], [47.365885, 8.545379], [47.357995, 8.532282], [47.411789, 8.525304], [47.38817, 8.5251], [47.375354, 8.516179], [47.372974, 8.511893], [47.369039, 8.541022], [47.371705, 8.521666], [47.367169, 8.555905], [47.378518, 8.531763], [47.412951, 8.540354], [47.368188, 8.554708], [47.360274, 8.589399], [47.369014, 8.538003], [47.370302, 8.547205], [47.39804, 8.532402], [47.328314, 8.514712], [47.37202, 8.53494], [47.368207, 8.546156], [47.383757, 8.510216], [47.375471, 8.528655], [47.369736, 8.536839], [47.399814, 8.544521], [47.343887, 8.534587], [47.38814, 8.48449], [47.350978, 8.534282], [47.371515, 8.522682], [47.373047, 8.532949], [47.38416, 8.52866], [47.37331, 8.535536], [47.388461, 8.52851], [47.388498, 8.490537], [47.413586, 8.545416], [47.40376, 8.548604], [47.405813, 8.590635], [47.372874, 8.547272], [47.430715, 8.549789], [47.364194, 8.551977], [47.364899, 8.554348], [47.39866, 8.539171], [47.391041, 8.522986], [47.359708, 8.594709], [47.4163, 8.506432], [47.408903, 8.539356], [47.378901, 8.519786], [47.404984, 8.577182], [47.39133, 8.536198], [47.381536, 8.571384], [47.375641, 8.487939], [47.409228, 8.564433], [47.378423, 8.510202], [47.363348, 8.552939], [47.39019, 8.516796], [47.34846, 8.534191], [47.412086, 8.563844], [47.394706, 8.471465], [47.377716, 8.507936], [47.374224, 8.551908], [47.400037, 8.545625], [47.380316, 8.50587], [47.38565, 8.535684], [47.418393, 8.554422], [47.350916, 8.576954], [47.387756, 8.485131], [47.353088, 8.512658], [47.332811, 8.534849], [47.410506, 8.542], [47.380276, 8.542659], [47.373904, 8.538355], [47.343355, 8.535688], [47.371069, 8.538549], [47.392191, 8.492981], [47.409521, 8.545358], [47.373283, 8.535509], [47.370522, 8.535492], [47.361908, 8.548328], [47.361827, 8.505367], [47.410038, 8.542957], [47.363429, 8.550094], [47.406427, 8.532998], [47.378451, 8.540714], [47.37267, 8.498103], [47.373032, 8.534471], [47.379047, 8.544209], [47.381583, 8.532938], [47.367039, 8.491186], [47.368269, 8.538809], [47.381066, 8.52861], [47.355053, 8.509322], [47.368988, 8.511151], [47.363157, 8.556801], [47.369134, 8.548015], [47.381718, 8.513778], [47.371379, 8.516072], [47.36726, 8.544587], [47.36205, 8.547537], [47.366815, 8.543161], [47.3909, 8.488531], [47.367607, 8.534651], [47.399645, 8.495301], [47.375168, 8.522584], [47.409243, 8.547115], [47.427538, 8.546303], [47.368661, 8.543901], [47.421048, 8.5496], [47.392918, 8.522309], [47.364422, 8.497105], [47.378734, 8.54219], [47.386731, 8.502833], [47.376025, 8.539485], [47.37169, 8.518448], [47.372496, 8.478622], [47.392029, 8.528874], [47.387751, 8.529436], [47.377622, 8.498572], [47.396096, 8.526851], [47.372622, 8.547293], [47.387869, 8.522604], [47.387315, 8.533665], [47.391108, 8.515795], [47.390677, 8.522515], [47.391603, 8.523475], [47.37027, 8.548714], [47.381279, 8.542229], [47.378479, 8.488405], [47.396833, 8.541121], [47.377265, 8.538703], [47.410765, 8.567394], [47.360276, 8.568165], [47.412173, 8.546434], [47.391824, 8.52389], [47.371498, 8.534969], [47.354035, 8.520089], [47.372867, 8.535818], [47.42174, 8.553339], [47.348826, 8.532557], [47.378248, 8.520289], [47.369129, 8.52777], [47.377523, 8.527598], [47.37352, 8.519915], [47.410471, 8.54188], [47.374292, 8.52495], [47.393803, 8.524844], [47.368232, 8.539788], [47.377174, 8.523618], [47.370735, 8.487406], [47.364058, 8.536021], [47.364812, 8.504566], [47.396474, 8.52874], [47.383171, 8.530521], [47.380755, 8.518672], [47.3848, 8.531402], [47.410044, 8.549874], [47.399739, 8.543923], [47.376129, 8.536097], [47.39067, 8.523191], [47.351395, 8.601094], [47.374424, 8.540419], [47.365676, 8.503564], [47.378665, 8.541817], [47.398645, 8.539767], [47.38082, 8.536618], [47.378905, 8.522143], [47.367725, 8.490987], [47.398752, 8.524693], [47.390165, 8.547009], [47.375719, 8.529057], [47.377228, 8.52926], [47.386939, 8.484996], [47.417146, 8.54561], [47.375581, 8.514064], [47.413997, 8.521983], [47.390675, 8.489573], [47.364164, 8.561535], [47.362225, 8.54717], [47.380349, 8.550116], [47.380622, 8.549777], [47.397255, 8.594557], [47.37383, 8.476304], [47.379989, 8.520695], [47.360275, 8.56557], [47.390779, 8.488979], [47.374966, 8.544892], [47.395334, 8.546402], [47.38321, 8.528323], [47.368984, 8.5326], [47.402238, 8.486091], [47.40369, 8.5888], [47.382544, 8.548228], [47.389663, 8.521236], [47.369866, 8.521165], [47.389581, 8.485207], [47.376065, 8.5277], [47.360225, 8.567026], [47.375849, 8.524849], [47.378436, 8.567464], [47.378793, 8.49445], [47.405059, 8.48253], [47.398291, 8.537309], [47.426014, 8.547623], [47.377965, 8.51398], [47.362278, 8.54729], [47.365098, 8.55328], [47.37216, 8.540094], [47.380608, 8.517066], [47.413401, 8.539343], [47.405596, 8.481838], [47.398435, 8.538252], [47.387008, 8.486295], [47.369994, 8.508391], [47.388604, 8.53903], [47.373226, 8.525418], [47.392354, 8.489911], [47.373163, 8.533017], [47.394758, 8.525658], [47.362818, 8.506128], [47.373299, 8.52432], [47.378841, 8.523254], [47.409603, 8.537661], [47.346322, 8.563833], [47.400905, 8.54612], [47.400258, 8.494174], [47.391159, 8.487755], [47.366429, 8.544927], [47.3834, 8.49915], [47.378089, 8.509401], [47.373241, 8.518956], [47.345012, 8.534517], [47.409562, 8.493762], [47.379645, 8.527694], [47.381105, 8.555641], [47.415241, 8.558464], [47.385349, 8.494607], [47.369184, 8.554014], [47.335949, 8.531169], [47.410567, 8.486109], [47.367108, 8.539751], [47.371723, 8.556623], [47.367807, 8.544717], [47.352599, 8.559425], [47.3729, 8.520803], [47.347129, 8.531345], [47.366893, 8.544381], [47.383146, 8.530308], [47.373904, 8.536409], [47.379647, 8.524595], [47.360953, 8.571661], [47.422458, 8.550743], [47.361979, 8.56047], [47.36711, 8.529106], [47.360934, 8.598959], [47.40285, 8.500823], [47.374261, 8.561059], [47.387016, 8.486335], [47.381417, 8.571606], [47.393148, 8.492642], [47.378146, 8.548123], [47.407009, 8.550248], [47.411592, 8.509716], [47.385539, 8.520782], [47.391542, 8.486212], [47.3782, 8.525453], [47.370323, 8.513601], [47.378376, 8.510479], [47.388515, 8.486789], [47.365451, 8.545595], [47.378522, 8.5752], [47.370101, 8.556894], [47.361871, 8.515138], [47.383723, 8.505117], [47.380715, 8.492833], [47.370027, 8.519249], [47.345086, 8.529569], [47.404013, 8.574366], [47.41388, 8.520059], [47.414793, 8.5196], [47.368047, 8.560902], [47.356893, 8.555332], [47.386993, 8.501739], [47.368385, 8.537024], [47.368384, 8.537103], [47.365097, 8.530826], [47.385619, 8.536054], [47.383012, 8.500348], [47.359935, 8.532653], [47.368036, 8.540578], [47.383878, 8.530933], [47.366801, 8.60049], [47.391626, 8.517143], [47.376974, 8.543769], [47.394097, 8.493151], [47.344713, 8.530925], [47.374983, 8.52601], [47.402145, 8.499272], [47.404838, 8.594602], [47.351325, 8.560921], [47.377014, 8.514663], [47.370623, 8.557765], [47.390108, 8.538942], [47.385223, 8.517027], [47.398904, 8.540859], [47.413568, 8.553804], [47.379008, 8.509234], [47.370534, 8.549276], [47.400975, 8.588676], [47.399743, 8.517718], [47.376578, 8.544688], [47.378546, 8.510575], [47.356408, 8.526955], [47.395723, 8.529228], [47.3764, 8.543519], [47.386217, 8.52514], [47.391381, 8.487123], [47.38206, 8.547119], [47.37971, 8.542581], [47.375203, 8.547334], [47.37838, 8.530211], [47.408498, 8.58114], [47.39115, 8.47782], [47.350081, 8.56112], [47.40767, 8.54418], [47.375136, 8.558959], [47.36727, 8.545381], [47.411333, 8.562609], [47.418411, 8.546921], [47.374887, 8.523783], [47.388492, 8.490311], [47.35889, 8.516468], [47.353938, 8.560446], [47.363381, 8.533478], [47.348431, 8.562448], [47.376975, 8.539876], [47.37382, 8.537692], [47.36404, 8.53602], [47.408804, 8.579304], [47.417673, 8.483148], [47.36226, 8.547303], [47.372191, 8.521596], [47.3721, 8.57505], [47.36479, 8.554439], [47.375908, 8.541376], [47.410944, 8.543268], [47.372533, 8.505211], [47.399823, 8.544508], [47.359756, 8.588038], [47.383608, 8.483288], [47.338878, 8.538176], [47.376747, 8.525013], [47.370426, 8.514172], [47.366424, 8.533197], [47.38072, 8.550839], [47.391192, 8.523162], [47.385774, 8.517753], [47.40832, 8.581812], [47.369549, 8.52615], [47.359181, 8.553183], [47.375467, 8.517571], [47.378041, 8.510658], [47.373252, 8.553782], [47.356527, 8.55134], [47.366901, 8.535073], [47.383988, 8.556086], [47.382667, 8.540046], [47.400259, 8.50868], [47.373707, 8.538232], [47.364963, 8.557104], [47.380137, 8.528009], [47.404347, 8.565032], [47.383302, 8.515611], [47.387584, 8.519459], [47.328952, 8.512833], [47.369009, 8.541379], [47.330763, 8.536487], [47.414405, 8.537827], [47.358248, 8.557479], [47.41681, 8.510577], [47.374974, 8.519296], [47.386067, 8.535322], [47.409571, 8.578088], [47.380974, 8.503764], [47.360298, 8.523645], [47.369723, 8.501632], [47.384888, 8.526848], [47.373228, 8.520373], [47.385079, 8.508362], [47.363358, 8.557507], [47.391086, 8.522934], [47.375777, 8.523828], [47.38968, 8.493169], [47.357456, 8.524567], [47.390105, 8.510463], [47.370553, 8.509196], [47.369586, 8.531765], [47.419354, 8.556337], [47.419134, 8.556836], [47.372015, 8.522162], [47.394937, 8.486809], [47.421351, 8.49813], [47.366789, 8.543055], [47.41119, 8.545764], [47.36462, 8.566417], [47.374015, 8.544581], [47.425916, 8.555865], [47.388592, 8.480181], [47.38163, 8.532754], [47.375733, 8.544604], [47.367906, 8.494764], [47.417281, 8.512203], [47.430065, 8.544433], [47.362195, 8.5475], [47.378523, 8.517871], [47.404749, 8.594534], [47.363068, 8.565987], [47.366531, 8.540891], [47.386673, 8.488448], [47.37607, 8.559085], [47.367317, 8.539517], [47.393048, 8.488772], [47.373762, 8.500667], [47.377451, 8.538998], [47.380496, 8.567362], [47.378032, 8.493098], [47.333765, 8.53201], [47.402369, 8.499396], [47.427073, 8.544106], [47.385589, 8.483036], [47.395652, 8.522391], [47.387334, 8.516328], [47.361531, 8.526464], [47.374632, 8.524136], [47.376567, 8.543906], [47.416252, 8.506762], [47.365718, 8.550592], [47.369006, 8.528417], [47.409171, 8.541482], [47.379154, 8.54241], [47.414048, 8.549733], [47.383105, 8.500005], [47.374565, 8.540673], [47.389156, 8.47043], [47.376346, 8.558534], [47.39048, 8.522418], [47.360096, 8.595512], [47.409641, 8.545931], [47.393246, 8.478868], [47.369274, 8.519948], [47.370448, 8.54983], [47.373132, 8.53536], [47.394187, 8.52509], [47.370599, 8.516784], [47.378099, 8.541766], [47.364116, 8.534711], [47.409172, 8.545126], [47.400224, 8.489933], [47.385585, 8.532994], [47.37672, 8.516365], [47.374898, 8.518765], [47.39026, 8.521897], [47.411499, 8.526424], [47.374776, 8.485128], [47.379349, 8.521888], [47.378671, 8.523132], [47.381442, 8.497906], [47.365247, 8.521575], [47.417496, 8.541946], [47.372972, 8.496507], [47.376392, 8.524476], [47.363896, 8.566891], [47.3787, 8.529674], [47.389463, 8.511854], [47.370653, 8.516772], [47.393928, 8.543935], [47.415429, 8.544514], [47.367737, 8.546384], [47.371833, 8.52241], [47.374035, 8.551931], [47.419737, 8.50438], [47.37335, 8.536967], [47.385353, 8.536605], [47.357777, 8.514367], [47.419669, 8.504909], [47.381299, 8.541024], [47.382814, 8.529255], [47.392328, 8.52382], [47.392121, 8.494781], [47.364373, 8.548234], [47.374565, 8.516891], [47.376231, 8.56755], [47.358946, 8.534446], [47.374753, 8.54171], [47.390113, 8.510583], [47.386485, 8.496311], [47.385803, 8.529926], [47.344025, 8.530408], [47.369606, 8.548462], [47.420865, 8.512739], [47.41402, 8.508838], [47.373576, 8.519705], [47.368874, 8.560919], [47.375984, 8.514205], [47.377923, 8.525222], [47.379701, 8.527497], [47.391715, 8.51341], [47.376875, 8.541833], [47.413056, 8.517697], [47.353702, 8.512366], [47.393769, 8.508272], [47.426347, 8.541891], [47.410829, 8.554317], [47.369548, 8.53383], [47.409154, 8.549843], [47.382698, 8.500262], [47.39029, 8.516706], [47.366354, 8.540503], [47.379324, 8.507187], [47.368271, 8.522351], [47.393189, 8.474151], [47.36329, 8.549602], [47.368722, 8.500924], [47.372688, 8.534702], [47.336378, 8.524799], [47.346191, 8.534396], [47.371894, 8.536884], [47.366907, 8.545784], [47.356724, 8.553317], [47.366348, 8.499844], [47.358527, 8.551912], [47.335162, 8.54109], [47.396493, 8.528661], [47.358487, 8.534503], [47.375636, 8.496427], [47.376974, 8.535227], [47.37186, 8.522371], [47.387873, 8.486074], [47.369065, 8.527862], [47.412389, 8.546425], [47.366332, 8.53436], [47.370043, 8.543307], [47.385269, 8.487625], [47.333767, 8.514571], [47.363299, 8.533569], [47.380931, 8.535335], [47.370085, 8.540792], [47.369391, 8.525671], [47.342664, 8.531663], [47.382475, 8.52999], [47.411225, 8.525994], [47.405059, 8.482517], [47.419605, 8.548086], [47.391529, 8.539898], [47.366316, 8.540794], [47.382411, 8.530095], [47.398848, 8.49494], [47.390609, 8.522991], [47.370817, 8.52427], [47.367289, 8.545329], [47.419623, 8.5481], [47.391751, 8.519173], [47.365635, 8.521516], [47.408642, 8.580215], [47.37485, 8.534376], [47.376983, 8.546537], [47.427152, 8.49134], [47.360426, 8.564793], [47.383004, 8.513843], [47.365867, 8.530246], [47.366497, 8.516873], [47.370948, 8.538003], [47.378317, 8.527349], [47.406907, 8.550577], [47.361173, 8.529144], [47.375057, 8.528686], [47.344015, 8.532498], [47.367965, 8.540418], [47.375523, 8.516434], [47.390564, 8.489889], [47.36674, 8.527364], [47.400299, 8.548346], [47.375565, 8.494333], [47.397958, 8.532546], [47.378324, 8.540804], [47.355422, 8.525651], [47.388977, 8.51762], [47.382081, 8.49882], [47.37599, 8.512642], [47.41143, 8.563711], [47.36135, 8.506337], [47.369971, 8.541399], [47.409079, 8.572327], [47.429926, 8.539181], [47.385488, 8.542329], [47.37541, 8.540823], [47.390739, 8.546266], [47.375577, 8.526909], [47.406002, 8.484655], [47.366499, 8.531901], [47.361721, 8.574074], [47.418892, 8.507292], [47.406096, 8.584824], [47.421172, 8.549762], [47.369179, 8.54803], [47.393373, 8.473651], [47.403732, 8.550591], [47.409347, 8.540889], [47.361357, 8.512401], [47.358923, 8.549087], [47.329559, 8.529622], [47.391291, 8.487148], [47.415105, 8.570574], [47.391323, 8.542636], [47.392689, 8.523695], [47.385512, 8.533112], [47.396279, 8.509144], [47.374518, 8.53997], [47.378674, 8.541844], [47.397043, 8.530355], [47.364277, 8.555474], [47.38651, 8.527516], [47.37069, 8.516733], [47.39364, 8.510548], [47.411166, 8.543524], [47.411268, 8.532793], [47.36911, 8.52781], [47.399785, 8.543805], [47.364167, 8.546284], [47.400184, 8.546264], [47.35344, 8.554281], [47.38305, 8.514718], [47.391347, 8.522926], [47.38227, 8.488043], [47.364348, 8.546168], [47.384019, 8.482608], [47.377905, 8.528056], [47.367487, 8.54532], [47.419272, 8.508029], [47.391036, 8.527331], [47.416519, 8.508079], [47.404633, 8.571663], [47.378348, 8.52976], [47.417723, 8.545423], [47.404204, 8.561293], [47.412283, 8.553645], [47.354413, 8.558775], [47.414486, 8.483496], [47.363441, 8.507902], [47.411957, 8.563192], [47.391465, 8.511285], [47.400587, 8.548313], [47.412167, 8.481251], [47.372542, 8.529257], [47.39181, 8.51765], [47.365196, 8.537474], [47.378538, 8.510456], [47.41784, 8.553894], [47.37352, 8.519915], [47.421802, 8.546886], [47.363014, 8.548365], [47.370767, 8.535259], [47.403674, 8.571338], [47.387492, 8.536861], [47.379845, 8.554794], [47.374103, 8.544822], [47.414418, 8.513484], [47.360571, 8.535684], [47.365791, 8.526934], [47.377318, 8.4994], [47.392222, 8.476675], [47.403476, 8.548187], [47.36009, 8.522873], [47.413205, 8.531508], [47.362482, 8.53436], [47.370667, 8.469913], [47.424512, 8.522886], [47.362431, 8.526429], [47.373886, 8.538302], [47.385878, 8.532457], [47.373328, 8.50377], [47.382933, 8.530966], [47.376813, 8.514116], [47.392386, 8.524351], [47.389897, 8.48108], [47.37548, 8.564303], [47.385193, 8.539277], [47.367487, 8.54532], [47.378951, 8.510491], [47.377007, 8.542154], [47.419186, 8.547653], [47.387077, 8.535038], [47.386694, 8.520342], [47.335831, 8.532331], [47.364674, 8.546016], [47.383081, 8.528652], [47.333422, 8.518706], [47.370073, 8.541044], [47.362545, 8.504534], [47.36653, 8.541884], [47.389423, 8.543762], [47.386193, 8.526795], [47.372722, 8.534928], [47.383172, 8.539924], [47.382558, 8.52978], [47.406907, 8.550577], [47.370121, 8.479727], [47.377063, 8.523933], [47.388012, 8.488646], [47.3666, 8.544891], [47.369956, 8.52306], [47.3745, 8.532449], [47.400239, 8.585851], [47.362916, 8.554744], [47.36909, 8.525161], [47.407153, 8.551152], [47.388045, 8.490991], [47.387614, 8.541023], [47.376621, 8.527897], [47.391385, 8.519814], [47.3861, 8.508833], [47.407876, 8.580305], [47.431, 8.550126], [47.381667, 8.528795], [47.369036, 8.525213], [47.376855, 8.543038], [47.37443, 8.53973], [47.399764, 8.544056], [47.376039, 8.541816], [47.415072, 8.544254], [47.387963, 8.494049], [47.378464, 8.531735], [47.407599, 8.547862], [47.422914, 8.550063], [47.360615, 8.501239], [47.373446, 8.481037], [47.3588, 8.583821], [47.382313, 8.499102], [47.405976, 8.548213], [47.380567, 8.519542], [47.379763, 8.494615], [47.401473, 8.491124], [47.357161, 8.552691], [47.406894, 8.586869], [47.387866, 8.524908], [47.3786, 8.55886], [47.37477, 8.527608], [47.421141, 8.500419], [47.403263, 8.534656], [47.410613, 8.550562], [47.430519, 8.485998], [47.386099, 8.492238], [47.381666, 8.490097], [47.428073, 8.489913], [47.376715, 8.544465], [47.37235, 8.574393], [47.383216, 8.540985], [47.394018, 8.524968], [47.385275, 8.494844], [47.357665, 8.521513], [47.360678, 8.524434], [47.364473, 8.536863], [47.396058, 8.545012], [47.37112, 8.5303], [47.386901, 8.545988], [47.405894, 8.548357], [47.410858, 8.546618], [47.384997, 8.508453], [47.36687, 8.513465], [47.391373, 8.520172], [47.338388, 8.532079], [47.399713, 8.543777], [47.365781, 8.538413], [47.377797, 8.532834], [47.398313, 8.533044], [47.391439, 8.519868], [47.369846, 8.554452], [47.404344, 8.572677], [47.364629, 8.566417], [47.398685, 8.542166], [47.37012, 8.5512], [47.366427, 8.545152], [47.422876, 8.550314], [47.376592, 8.527102], [47.38743, 8.525284], [47.378675, 8.517954], [47.413992, 8.541489], [47.351126, 8.582981], [47.372545, 8.534593], [47.372036, 8.534212], [47.37737, 8.548346], [47.383004, 8.513843], [47.389462, 8.512927], [47.389694, 8.533184], [47.385106, 8.495555], [47.385896, 8.533451], [47.403105, 8.575274], [47.374111, 8.516339], [47.403881, 8.558424], [47.378802, 8.529359], [47.343768, 8.534836], [47.37318, 8.536963], [47.392596, 8.502778], [47.393869, 8.505174], [47.373419, 8.53824], [47.374372, 8.542987], [47.417895, 8.509088], [47.38413, 8.539467], [47.361852, 8.547586], [47.381574, 8.550883], [47.426482, 8.54192], [47.370081, 8.525089], [47.374035, 8.498315], [47.369417, 8.52579], [47.336121, 8.514804], [47.348145, 8.527527], [47.378934, 8.524832], [47.375946, 8.533591], [47.385118, 8.531077], [47.386543, 8.482975], [47.375732, 8.526767], [47.364484, 8.546131], [47.385929, 8.498102], [47.395023, 8.545097], [47.375941, 8.529353], [47.427875, 8.490904], [47.392878, 8.522759], [47.369814, 8.509301], [47.355574, 8.532431], [47.370357, 8.518633], [47.389326, 8.524514], [47.383996, 8.511638], [47.378786, 8.542363], [47.379896, 8.521091], [47.374013, 8.544806], [47.374034, 8.520773], [47.371892, 8.521895], [47.3836, 8.529934], [47.372043, 8.502698], [47.359575, 8.524994], [47.367756, 8.523559], [47.389519, 8.473099], [47.377924, 8.528016], [47.406255, 8.566768], [47.375613, 8.526976], [47.377264, 8.538769], [47.370166, 8.540807], [47.358937, 8.534459], [47.39131, 8.537311], [47.377619, 8.521151], [47.361836, 8.549227], [47.368973, 8.556327], [47.383995, 8.529041], [47.410796, 8.557682], [47.372964, 8.520751], [47.419175, 8.507828], [47.379398, 8.495164], [47.407433, 8.57416], [47.412287, 8.509465], [47.365094, 8.549096], [47.364413, 8.566479], [47.362855, 8.558304], [47.370372, 8.524737], [47.371589, 8.519651], [47.393755, 8.53748], [47.367651, 8.496123], [47.357547, 8.52159], [47.385665, 8.493527], [47.381728, 8.516599], [47.370962, 8.516447], [47.335235, 8.534422], [47.412189, 8.55033], [47.407657, 8.548301], [47.377945, 8.497665], [47.374531, 8.525352], [47.371948, 8.534952], [47.380088, 8.548217], [47.37766, 8.508068], [47.377494, 8.521082], [47.380455, 8.537113], [47.370627, 8.532051], [47.37927, 8.537844], [47.388653, 8.492288], [47.424577, 8.513066], [47.391565, 8.511155], [47.379571, 8.524991], [47.36716, 8.532444], [47.366944, 8.520033], [47.379239, 8.522084], [47.366855, 8.518032], [47.38785, 8.519888], [47.373011, 8.532908], [47.389997, 8.522038], [47.36596, 8.500988], [47.379396, 8.53778], [47.367372, 8.494184], [47.352876, 8.527571], [47.375692, 8.529057], [47.382235, 8.514265], [47.370287, 8.541234], [47.374454, 8.540049], [47.388076, 8.540727], [47.374965, 8.519375], [47.429936, 8.540003], [47.417617, 8.553717], [47.406238, 8.55373], [47.3594, 8.585859], [47.361715, 8.526044], [47.381099, 8.502879], [47.36621, 8.553714], [47.380543, 8.567231], [47.398443, 8.494893], [47.368118, 8.555475], [47.361202, 8.525159], [47.358502, 8.553619], [47.357118, 8.527035], [47.372864, 8.542717], [47.369389, 8.525882], [47.363317, 8.533583], [47.396026, 8.541793], [47.374776, 8.549629], [47.403705, 8.534519], [47.395384, 8.533672], [47.374509, 8.53997], [47.402342, 8.499316], [47.379999, 8.520669], [47.379719, 8.549176], [47.395678, 8.536765], [47.376463, 8.548247], [47.38332, 8.505983], [47.383012, 8.514863], [47.354086, 8.553513], [47.377954, 8.541895], [47.391621, 8.505142], [47.379652, 8.542129], [47.387151, 8.540549], [47.374112, 8.515266], [47.372563, 8.535547], [47.406902, 8.586909], [47.373965, 8.526174], [47.369832, 8.547487], [47.341329, 8.530154], [47.394769, 8.525433], [47.359747, 8.550415], [47.371111, 8.530327], [47.370686, 8.53523], [47.370053, 8.541321], [47.360256, 8.566536], [47.387262, 8.519201], [47.391686, 8.513581], [47.363506, 8.569941], [47.412974, 8.551009], [47.393799, 8.472321], [47.376434, 8.543718], [47.383526, 8.573042], [47.418489, 8.508], [47.377536, 8.504013], [47.409745, 8.531211], [47.382155, 8.514197], [47.346573, 8.563878], [47.367354, 8.490225], [47.369526, 8.52856], [47.407525, 8.584908], [47.374672, 8.539907], [47.403628, 8.554815], [47.390747, 8.479614], [47.35437, 8.557676], [47.381808, 8.529169], [47.414008, 8.543636], [47.357656, 8.588483], [47.372556, 8.532541], [47.419706, 8.50483], [47.378123, 8.536469], [47.37931, 8.559894], [47.409683, 8.545282], [47.378423, 8.543653], [47.385172, 8.536787], [47.36578, 8.552579], [47.357943, 8.519705], [47.374011, 8.519396], [47.414366, 8.551263], [47.409853, 8.537826], [47.384971, 8.532319], [47.369298, 8.510614], [47.372782, 8.518033], [47.36442, 8.546183], [47.362412, 8.547333], [47.41358, 8.572025], [47.377572, 8.522328], [47.368154, 8.548935], [47.36422, 8.547317], [47.365934, 8.52703], [47.358468, 8.50575], [47.3706, 8.516691], [47.344021, 8.529905], [47.402342, 8.499316], [47.391533, 8.519446], [47.391961, 8.517879], [47.385749, 8.532786], [47.411199, 8.570769], [47.385017, 8.532267], [47.391195, 8.516168], [47.38435, 8.548385], [47.371418, 8.471477], [47.365516, 8.521712], [47.369909, 8.536591], [47.392253, 8.524177], [47.376112, 8.535978], [47.35479, 8.526829], [47.395134, 8.532462], [47.370106, 8.548883], [47.372514, 8.478609], [47.379124, 8.511262], [47.382361, 8.544755], [47.425825, 8.556023], [47.420157, 8.507609], [47.368068, 8.494728], [47.380954, 8.526198], [47.395146, 8.491449], [47.393774, 8.502801], [47.349816, 8.575409], [47.379402, 8.523888], [47.347484, 8.532808], [47.382125, 8.512567], [47.401035, 8.548534], [47.395356, 8.518477], [47.378519, 8.523076], [47.388488, 8.486722], [47.369126, 8.547922], [47.370344, 8.524776], [47.376402, 8.528171], [47.383269, 8.513332], [47.376925, 8.544192], [47.378371, 8.530237], [47.412151, 8.524105], [47.387376, 8.488329], [47.380239, 8.526673], [47.368136, 8.522348], [47.351394, 8.525476], [47.364505, 8.566256], [47.364231, 8.531086], [47.369458, 8.526294], [47.334921, 8.524862], [47.371954, 8.517103], [47.380024, 8.546467], [47.374904, 8.54946], [47.377767, 8.525524], [47.395937, 8.5455], [47.364822, 8.555843], [47.376999, 8.543888], [47.364719, 8.545964], [47.369014, 8.538003], [47.379389, 8.507917], [47.401928, 8.488563], [47.376648, 8.527831], [47.382107, 8.50972], [47.401587, 8.48951], [47.381266, 8.548228], [47.393373, 8.520769], [47.367092, 8.544279], [47.390824, 8.474065], [47.340021, 8.51913], [47.393364, 8.520835], [47.383554, 8.480254], [47.420853, 8.549252], [47.422822, 8.551215], [47.364536, 8.553785], [47.356709, 8.523691], [47.382503, 8.500934], [47.373766, 8.515762], [47.413034, 8.553183], [47.39289, 8.522454], [47.385061, 8.529513], [47.3906, 8.522964], [47.371089, 8.520171], [47.430153, 8.549313], [47.381219, 8.49773], [47.3638, 8.55177], [47.366756, 8.535216], [47.374413, 8.521642], [47.343985, 8.528064], [47.367888, 8.560621], [47.365722, 8.532269], [47.387158, 8.535093], [47.398779, 8.533199], [47.417905, 8.508916], [47.38512, 8.503873], [47.362478, 8.533883], [47.386764, 8.490396], [47.37782, 8.574324], [47.381313, 8.506976], [47.390915, 8.522017], [47.362813, 8.533599], [47.379208, 8.526334], [47.402929, 8.575747], [47.388852, 8.496186], [47.378529, 8.575319], [47.374477, 8.540499], [47.382766, 8.575343], [47.394366, 8.541321], [47.39106, 8.477792], [47.381438, 8.537862], [47.388591, 8.523281], [47.385812, 8.482285], [47.362408, 8.592782], [47.405628, 8.585715], [47.377095, 8.529112], [47.402297, 8.543552], [47.376041, 8.526402], [47.369633, 8.525848], [47.361784, 8.576776], [47.360039, 8.568518], [47.370275, 8.52741], [47.361526, 8.554304], [47.369616, 8.538969], [47.38826, 8.546798], [47.388009, 8.48503], [47.417243, 8.512427], [47.40438, 8.533592], [47.38108, 8.542371], [47.399906, 8.544337], [47.371423, 8.517225], [47.407076, 8.586687], [47.410223, 8.546181], [47.415509, 8.56605], [47.405453, 8.592456], [47.383733, 8.498243], [47.386788, 8.547482], [47.365342, 8.545725], [47.377217, 8.539894], [47.419908, 8.548344], [47.369143, 8.528142], [47.406912, 8.586856], [47.374325, 8.531902], [47.37394, 8.576387], [47.369868, 8.547474], [47.393074, 8.492799], [47.411681, 8.512792], [47.344486, 8.518705], [47.368188, 8.553821], [47.407908, 8.547498], [47.368733, 8.519183], [47.376714, 8.511147], [47.376264, 8.525652], [47.377417, 8.526404], [47.371382, 8.509028], [47.384576, 8.500392], [47.366711, 8.541755], [47.352853, 8.557326], [47.391913, 8.543006], [47.341336, 8.530432], [47.416259, 8.532935], [47.379638, 8.507194], [47.328917, 8.513732], [47.398671, 8.547425], [47.390878, 8.522109], [47.384964, 8.53216], [47.367312, 8.537226], [47.402459, 8.499371], [47.383076, 8.513871], [47.413268, 8.531496], [47.391886, 8.542992], [47.411586, 8.558772], [47.385643, 8.532651], [47.413971, 8.548406], [47.363841, 8.531422], [47.380304, 8.50138], [47.3864, 8.527739], [47.370545, 8.51289], [47.379076, 8.555241], [47.385347, 8.517202], [47.396807, 8.529648], [47.403926, 8.569501], [47.39162, 8.505182], [47.386815, 8.547456], [47.413507, 8.539504], [47.383546, 8.512662], [47.356939, 8.522174], [47.374176, 8.544744], [47.389786, 8.526378], [47.373814, 8.546868], [47.398778, 8.524707], [47.368827, 8.563024], [47.393776, 8.500695], [47.39718, 8.531126], [47.373769, 8.538339], [47.381379, 8.5174], [47.36125, 8.535301], [47.385845, 8.485597], [47.377716, 8.522397], [47.397482, 8.532457], [47.360925, 8.57178], [47.373515, 8.529078], [47.342508, 8.526261], [47.419086, 8.506726], [47.415189, 8.550777], [47.399979, 8.545134], [47.407314, 8.549433], [47.387407, 8.487932], [47.428765, 8.489039], [47.370824, 8.522562], [47.393737, 8.496111], [47.396992, 8.480305], [47.37485, 8.534376], [47.370804, 8.548328], [47.370607, 8.52077], [47.406844, 8.550589], [47.364533, 8.548449], [47.410954, 8.563635], [47.380025, 8.548269], [47.404024, 8.534049], [47.381232, 8.536798], [47.366807, 8.543028], [47.366622, 8.541661], [47.332652, 8.529857], [47.391589, 8.513473], [47.365887, 8.549854], [47.367888, 8.560621], [47.352964, 8.556944], [47.407206, 8.564245], [47.400661, 8.534006], [47.36442, 8.546156], [47.370788, 8.491458], [47.364634, 8.549153], [47.348898, 8.573602], [47.379508, 8.525082], [47.414505, 8.520522], [47.393223, 8.526276], [47.366554, 8.545022], [47.374903, 8.525902], [47.415709, 8.548151], [47.364711, 8.560832], [47.37459, 8.527697], [47.399786, 8.495595], [47.412227, 8.546422], [47.414557, 8.551095], [47.384007, 8.532511], [47.346565, 8.563798], [47.356421, 8.523712], [47.374007, 8.546342], [47.381065, 8.541125], [47.418608, 8.50783], [47.406411, 8.538444], [47.375608, 8.544548], [47.39213, 8.511391], [47.405759, 8.532309], [47.376749, 8.499561], [47.38034, 8.501314], [47.351644, 8.534217], [47.383067, 8.513858], [47.360453, 8.522497], [47.368366, 8.541843], [47.37047, 8.518039], [47.384741, 8.531957], [47.378153, 8.557632], [47.375212, 8.54458], [47.375545, 8.518844], [47.373391, 8.531764], [47.346645, 8.532049], [47.367056, 8.544331], [47.376848, 8.535278], [47.375607, 8.53704], [47.365451, 8.535202], [47.383202, 8.506086], [47.36893, 8.547667], [47.376908, 8.535531], [47.36243, 8.54736], [47.360648, 8.548382], [47.410768, 8.546564], [47.396816, 8.529701], [47.40459, 8.594173], [47.395052, 8.529758], [47.353619, 8.55439], [47.37999, 8.548122], [47.367999, 8.54627], [47.388312, 8.525249], [47.412396, 8.525806], [47.375375, 8.484544], [47.364864, 8.531655], [47.41059, 8.55296], [47.413775, 8.550959], [47.359393, 8.522396], [47.377589, 8.522448], [47.362553, 8.534441], [47.356325, 8.553613], [47.372994, 8.552624], [47.411877, 8.537867], [47.373213, 8.552218], [47.38405, 8.540273], [47.378491, 8.509647], [47.403034, 8.536029], [47.344943, 8.531392], [47.370681, 8.516733], [47.402095, 8.543985], [47.401399, 8.545229], [47.413633, 8.529052], [47.344132, 8.531495], [47.39986, 8.587698], [47.369882, 8.510719], [47.348378, 8.534361], [47.407553, 8.550763], [47.369025, 8.525372], [47.412343, 8.523751], [47.4228, 8.499007], [47.364766, 8.530647], [47.360856, 8.505361], [47.344615, 8.529904], [47.391642, 8.513514], [47.410396, 8.572011], [47.376319, 8.527494], [47.390859, 8.539328], [47.364173, 8.551328], [47.41227, 8.523816], [47.360278, 8.552213], [47.364316, 8.60074], [47.39813, 8.536193], [47.358083, 8.588081], [47.378153, 8.541807], [47.405936, 8.587259], [47.408681, 8.544718], [47.388064, 8.520078], [47.393523, 8.539198], [47.411258, 8.548031], [47.372661, 8.499096], [47.367852, 8.549472], [47.42706, 8.491484], [47.397626, 8.596128], [47.387523, 8.519246], [47.322968, 8.514062], [47.380359, 8.547137], [47.361838, 8.567589], [47.367216, 8.545433], [47.402249, 8.535377], [47.387833, 8.488497], [47.369044, 8.525293], [47.377682, 8.506731], [47.378356, 8.526039], [47.364361, 8.555118], [47.414895, 8.541176], [47.370297, 8.548635], [47.352531, 8.533706], [47.360024, 8.552512], [47.401806, 8.506777], [47.414216, 8.550929], [47.376289, 8.567167], [47.361571, 8.532779], [47.410131, 8.541727], [47.410885, 8.562467], [47.370215, 8.548806], [47.362944, 8.549118], [47.370297, 8.513468], [47.365105, 8.501991], [47.372011, 8.53494], [47.367286, 8.563296], [47.390617, 8.523123], [47.391048, 8.479143], [47.399499, 8.50534], [47.404581, 8.572377], [47.339175, 8.5191], [47.396971, 8.577898], [47.384041, 8.528923], [47.362426, 8.504783], [47.370546, 8.548932], [47.390539, 8.474801], [47.37999, 8.536839], [47.372676, 8.534133], [47.378156, 8.541436], [47.385159, 8.539965], [47.378039, 8.541473], [47.370708, 8.517607], [47.368638, 8.52449], [47.417908, 8.50376], [47.393817, 8.472269], [47.368534, 8.528831], [47.374319, 8.542906], [47.390923, 8.522136], [47.387014, 8.489593], [47.391529, 8.54268], [47.374993, 8.534485], [47.372611, 8.534317], [47.393342, 8.545009], [47.379296, 8.523701], [47.364824, 8.554651], [47.412036, 8.549479], [47.366513, 8.540864], [47.39091, 8.482504], [47.413176, 8.545951], [47.369484, 8.506103], [47.411198, 8.543989], [47.390627, 8.522978], [47.420963, 8.501224], [47.375761, 8.543545], [47.376886, 8.512051], [47.379645, 8.527694], [47.405879, 8.573041], [47.380833, 8.528606], [47.383506, 8.573214], [47.385744, 8.487794], [47.4083, 8.546976], [47.387368, 8.498117], [47.348299, 8.533142], [47.391536, 8.513313], [47.386787, 8.469801], [47.347947, 8.520892], [47.368107, 8.578685], [47.406522, 8.573545], [47.380913, 8.52866], [47.393421, 8.537699], [47.410543, 8.572557], [47.389627, 8.512533], [47.402399, 8.585699], [47.409178, 8.547273], [47.379014, 8.494865], [47.380695, 8.504778], [47.367991, 8.519591], [47.366443, 8.540677], [47.342594, 8.536188], [47.40177, 8.489063], [47.362325, 8.55918], [47.370216, 8.521212], [47.375768, 8.487836], [47.380026, 8.520656], [47.388334, 8.536269], [47.386945, 8.490228], [47.424109, 8.505289], [47.368909, 8.496214], [47.346979, 8.531964], [47.374315, 8.552731], [47.381589, 8.537018], [47.403162, 8.587703], [47.372665, 8.528598], [47.405378, 8.591845], [47.407407, 8.56299], [47.379513, 8.5245], [47.379958, 8.527833], [47.391673, 8.518933], [47.377432, 8.539064], [47.37026, 8.54882], [47.396798, 8.483905], [47.379773, 8.494562], [47.387068, 8.547356], [47.385204, 8.50059], [47.384778, 8.496052], [47.375033, 8.511988], [47.368451, 8.524288], [47.36923, 8.553009], [47.41445, 8.556592], [47.359153, 8.535443], [47.363152, 8.563804], [47.364989, 8.537443], [47.388999, 8.524892], [47.382252, 8.547653], [47.409453, 8.538308], [47.385093, 8.528984], [47.37197, 8.536462], [47.393918, 8.525019], [47.373459, 8.519768], [47.371781, 8.530738], [47.335697, 8.51596], [47.413872, 8.545634], [47.390716, 8.483123], [47.377419, 8.529105], [47.369145, 8.527969], [47.348142, 8.562588], [47.387142, 8.499198], [47.401443, 8.491494], [47.399953, 8.591078], [47.3412, 8.527637], [47.386263, 8.53171], [47.362612, 8.547151], [47.386181, 8.528], [47.385375, 8.517163], [47.398187, 8.473466], [47.381698, 8.51685], [47.379179, 8.529446], [47.411751, 8.512992], [47.368537, 8.556755], [47.366702, 8.531388], [47.378332, 8.578043], [47.386906, 8.535087], [47.365819, 8.561517], [47.362866, 8.517409], [47.374591, 8.484727], [47.386171, 8.498212], [47.330108, 8.515291], [47.3906, 8.491889], [47.397446, 8.531568], [47.386905, 8.528505], [47.370612, 8.470097], [47.360504, 8.522828], [47.385493, 8.529443], [47.377325, 8.526627], [47.395023, 8.545097], [47.399494, 8.517435], [47.377058, 8.483478], [47.383727, 8.496932], [47.375212, 8.544593], [47.397002, 8.514642], [47.402141, 8.495787], [47.411859, 8.543512], [47.370271, 8.529687], [47.360041, 8.550659], [47.39812, 8.53251], [47.379039, 8.525139], [47.37831, 8.509829], [47.356721, 8.509885], [47.371057, 8.523652], [47.428988, 8.545166], [47.363898, 8.56668], [47.410627, 8.542559], [47.365398, 8.532302], [47.382973, 8.540013], [47.402436, 8.535593], [47.360786, 8.530115], [47.379514, 8.544298], [47.40367, 8.578161], [47.401514, 8.545417], [47.388438, 8.491198], [47.35278, 8.572163], [47.416278, 8.545114], [47.373057, 8.53279], [47.37709, 8.496708], [47.366918, 8.558641], [47.408625, 8.550574], [47.355219, 8.554516], [47.384355, 8.534704], [47.386443, 8.543091], [47.386706, 8.547533], [47.391179, 8.515942], [47.407946, 8.54253], [47.408932, 8.543928], [47.356527, 8.551367], [47.406871, 8.550577], [47.370278, 8.563703], [47.374758, 8.489074], [47.369665, 8.523412], [47.407093, 8.531051], [47.394249, 8.49318], [47.37074, 8.540012], [47.408635, 8.57995], [47.373615, 8.546957], [47.394416, 8.526605], [47.351003, 8.579947], [47.370056, 8.54099], [47.368399, 8.562591], [47.378531, 8.502444], [47.376565, 8.534769], [47.394542, 8.472733], [47.417176, 8.510001], [47.378538, 8.526797], [47.374288, 8.486429], [47.409337, 8.528685], [47.389781, 8.483979], [47.369369, 8.5271], [47.38034, 8.526463], [47.389263, 8.546381], [47.417843, 8.502977], [47.37137, 8.519938], [47.344338, 8.528746], [47.369172, 8.52797], [47.393094, 8.492614], [47.37719, 8.539893], [47.362753, 8.535213], [47.373437, 8.493868], [47.383496, 8.488716], [47.385531, 8.536821], [47.417198, 8.512466], [47.399735, 8.495263], [47.3694, 8.541864], [47.36063, 8.522791], [47.397485, 8.489482], [47.407601, 8.530651], [47.38861, 8.480247], [47.366935, 8.522906], [47.366764, 8.540035], [47.377671, 8.54324], [47.393803, 8.52295], [47.359048, 8.520747], [47.399896, 8.495359], [47.376563, 8.549017], [47.387718, 8.532879], [47.408978, 8.550303], [47.335099, 8.519282], [47.370351, 8.518342], [47.403277, 8.49846], [47.40395, 8.534299], [47.362587, 8.519389], [47.386766, 8.53082], [47.37487, 8.517983], [47.41223, 8.555499], [47.370203, 8.518696], [47.389793, 8.512086], [47.38985, 8.477331], [47.399178, 8.495172], [47.386028, 8.498117], [47.388379, 8.539078], [47.368392, 8.556911], [47.403084, 8.490043], [47.390932, 8.52215], [47.372545, 8.534607], [47.379727, 8.527524], [47.367192, 8.533755], [47.369339, 8.531204], [47.384366, 8.516295], [47.377494, 8.541992], [47.366392, 8.559067], [47.412179, 8.550436], [47.372388, 8.523587], [47.335937, 8.515237], [47.382722, 8.539915], [47.374683, 8.529274], [47.329443, 8.514246], [47.366815, 8.543174], [47.366337, 8.600083], [47.365584, 8.559804], [47.38601, 8.498116], [47.378589, 8.54224], [47.377927, 8.526666], [47.360439, 8.569042], [47.385043, 8.49562], [47.366429, 8.54494], [47.357199, 8.571039], [47.383132, 8.505873], [47.385576, 8.499326], [47.343718, 8.535285], [47.407894, 8.583114], [47.371194, 8.549925], [47.376536, 8.541535], [47.386842, 8.535139], [47.414056, 8.548938], [47.376723, 8.544558], [47.425037, 8.551963], [47.388648, 8.522977], [47.354225, 8.553145], [47.362568, 8.547971], [47.409679, 8.543811], [47.377123, 8.529033], [47.378822, 8.508925], [47.384336, 8.534783], [47.394244, 8.47384], [47.366195, 8.52219], [47.357075, 8.535427], [47.398614, 8.53925], [47.402089, 8.498529], [47.370083, 8.512298], [47.371581, 8.558262], [47.380181, 8.525215], [47.354327, 8.555623], [47.385502, 8.530436], [47.382864, 8.547612], [47.3846, 8.531623], [47.35445, 8.553071], [47.425898, 8.547515], [47.412344, 8.523645], [47.404466, 8.556489], [47.391303, 8.513256], [47.389218, 8.485584], [47.380987, 8.52845], [47.374345, 8.543012], [47.38793, 8.498578], [47.377559, 8.498558], [47.37913, 8.495013], [47.378839, 8.542443], [47.3857, 8.543645], [47.409502, 8.542562], [47.403207, 8.587637], [47.381604, 8.492003], [47.403343, 8.54886], [47.381325, 8.534509], [47.389997, 8.543893], [47.392676, 8.529934], [47.393785, 8.502656], [47.362242, 8.518733], [47.377849, 8.509091], [47.396848, 8.595727], [47.365441, 8.537241], [47.377385, 8.498885], [47.377788, 8.507845], [47.426279, 8.554654], [47.413936, 8.544536], [47.35114, 8.582518], [47.376291, 8.527506], [47.369217, 8.532698], [47.394595, 8.531457], [47.386517, 8.503557], [47.404686, 8.572724], [47.367783, 8.515867], [47.410712, 8.572812], [47.411725, 8.512912], [47.397592, 8.502334], [47.368999, 8.529158], [47.384645, 8.509559], [47.352274, 8.509279], [47.357958, 8.572511], [47.391852, 8.510339], [47.372252, 8.53419], [47.374184, 8.544836], [47.372816, 8.486056], [47.401787, 8.534705], [47.377246, 8.538756], [47.367912, 8.540364], [47.419888, 8.482953], [47.370558, 8.53544], [47.410041, 8.537962], [47.375539, 8.554518], [47.375671, 8.545437], [47.368177, 8.565102], [47.344708, 8.528622], [47.398369, 8.537562], [47.370197, 8.548792], [47.372602, 8.547478], [47.403779, 8.546577], [47.38318, 8.483889], [47.406633, 8.548174], [47.38971, 8.511435], [47.366081, 8.529469], [47.376383, 8.513882], [47.393492, 8.532057], [47.371309, 8.538779], [47.385493, 8.530462], [47.365273, 8.519748], [47.399367, 8.515657], [47.39104, 8.479036], [47.378977, 8.522198], [47.379304, 8.495586], [47.360573, 8.528827], [47.378598, 8.542306], [47.403146, 8.49798], [47.37746, 8.491683], [47.364419, 8.550989], [47.39002, 8.480407], [47.377135, 8.540091], [47.381735, 8.545298], [47.367547, 8.546592], [47.36721, 8.537516], [47.405808, 8.581214], [47.393392, 8.499363], [47.356416, 8.553549], [47.378252, 8.541716], [47.366617, 8.551591], [47.387181, 8.519292], [47.388388, 8.483872], [47.375784, 8.537388], [47.420642, 8.513543], [47.364735, 8.554623], [47.406518, 8.584834], [47.369306, 8.527099], [47.407402, 8.53641], [47.390753, 8.522027], [47.371675, 8.510358], [47.365837, 8.521944], [47.397364, 8.533541], [47.36355, 8.521289], [47.397751, 8.533496], [47.380479, 8.519355], [47.401803, 8.500232], [47.378222, 8.544934], [47.395777, 8.511876], [47.398902, 8.533493], [47.357395, 8.521561], [47.369064, 8.541208], [47.353337, 8.576847], [47.41165, 8.562338], [47.380403, 8.541602], [47.400165, 8.501392], [47.366851, 8.553423], [47.429841, 8.549081], [47.365028, 8.553107], [47.379277, 8.495586], [47.388589, 8.528354], [47.378951, 8.495884], [47.368865, 8.519477], [47.378794, 8.542509], [47.349973, 8.561197], [47.366316, 8.520828], [47.366307, 8.520841], [47.384156, 8.504013], [47.377386, 8.542003], [47.377184, 8.52922], [47.360751, 8.553547], [47.388614, 8.486777], [47.417592, 8.546003], [47.403638, 8.496334], [47.377311, 8.512762], [47.378584, 8.542782], [47.371102, 8.547328], [47.378591, 8.558899], [47.362252, 8.559297], [47.369166, 8.519986], [47.376988, 8.537505], [47.375771, 8.543479], [47.355499, 8.528988], [47.382342, 8.487978], [47.402442, 8.546205], [47.362846, 8.527298], [47.341463, 8.536959], [47.427446, 8.538944], [47.391853, 8.510207], [47.41789, 8.559872], [47.430718, 8.541955], [47.338703, 8.532045], [47.376226, 8.542032], [47.373035, 8.520806], [47.377037, 8.539996], [47.38834, 8.516494], [47.355249, 8.552359], [47.36689, 8.520019], [47.367418, 8.531787], [47.379454, 8.524035], [47.387841, 8.485716], [47.402616, 8.553456], [47.352859, 8.526525], [47.340666, 8.529915], [47.379645, 8.527694], [47.410597, 8.572571], [47.374841, 8.545684], [47.3847, 8.50262], [47.381875, 8.535408], [47.426377, 8.554722], [47.35644, 8.510117], [47.361969, 8.503662], [47.361721, 8.574074], [47.38829, 8.486784], [47.370188, 8.548792], [47.37256, 8.529297], [47.378164, 8.509985], [47.375855, 8.51072], [47.387632, 8.499698], [47.389807, 8.536511], [47.401018, 8.535179], [47.400447, 8.548906], [47.377513, 8.529571], [47.362615, 8.5048], [47.371837, 8.601527], [47.398113, 8.532298], [47.383511, 8.539256], [47.374565, 8.538859], [47.413339, 8.539196], [47.359688, 8.549063], [47.405604, 8.569855], [47.358937, 8.534459], [47.378996, 8.525959], [47.386498, 8.485981], [47.37154, 8.534334], [47.373502, 8.519928], [47.336083, 8.517965], [47.40118, 8.538004], [47.38325, 8.513438], [47.393182, 8.492854], [47.370978, 8.534826], [47.363641, 8.547716], [47.358981, 8.516351], [47.371674, 8.472978], [47.372641, 8.529246], [47.377042, 8.529045], [47.402342, 8.499316], [47.357376, 8.521666], [47.400055, 8.545652], [47.368066, 8.495999], [47.396727, 8.548418], [47.401254, 8.501321], [47.371023, 8.52532], [47.357621, 8.585662], [47.419596, 8.50508], [47.397889, 8.511097], [47.371019, 8.538984], [47.402208, 8.4993], [47.366728, 8.545701], [47.40513, 8.551985], [47.358986, 8.570428], [47.391431, 8.514967], [47.381176, 8.491584], [47.420997, 8.507281], [47.37271, 8.563304], [47.423366, 8.549808], [47.366904, 8.52329], [47.404077, 8.573307], [47.399824, 8.544415], [47.382705, 8.529399], [47.365163, 8.502614], [47.364274, 8.547371], [47.395211, 8.545154], [47.419773, 8.504381], [47.403214, 8.547374], [47.366416, 8.540637], [47.395182, 8.49153], [47.378066, 8.521544], [47.373989, 8.525592], [47.390818, 8.521869], [47.381342, 8.537516], [47.383496, 8.488716], [47.362656, 8.520648], [47.391398, 8.478249], [47.36844, 8.524486], [47.376867, 8.527558], [47.395991, 8.545448], [47.405288, 8.492948], [47.362517, 8.53444], [47.394696, 8.513973], [47.355132, 8.557917], [47.397493, 8.489641], [47.366432, 8.541856], [47.384244, 8.497353], [47.391068, 8.522947], [47.387832, 8.49847], [47.351633, 8.560676], [47.407474, 8.53832], [47.378984, 8.542367], [47.386865, 8.518438], [47.365081, 8.502652], [47.384035, 8.516089], [47.387309, 8.525745], [47.387045, 8.546017], [47.402342, 8.546375], [47.413902, 8.548033], [47.414032, 8.525879], [47.361411, 8.501745], [47.412938, 8.537876], [47.384414, 8.531314], [47.34485, 8.533574], [47.374209, 8.537528], [47.371001, 8.53145], [47.409693, 8.549894], [47.364374, 8.546275], [47.366903, 8.544328], [47.422363, 8.499595], [47.374865, 8.512726], [47.405993, 8.484681], [47.389818, 8.536326], [47.370545, 8.54913], [47.420565, 8.502435], [47.373624, 8.476247], [47.392841, 8.539038], [47.371725, 8.519548], [47.389446, 8.521325], [47.375975, 8.541921], [47.389219, 8.541559], [47.370541, 8.516253], [47.37232, 8.510662], [47.357616, 8.55409], [47.395951, 8.4861], [47.385135, 8.508072], [47.380403, 8.502296], [47.377016, 8.544021], [47.364505, 8.566256], [47.368809, 8.556522], [47.407674, 8.538059], [47.383016, 8.499885], [47.378775, 8.526471], [47.387004, 8.528507], [47.38737, 8.527918], [47.366116, 8.537242], [47.363464, 8.535201], [47.369481, 8.51704], [47.369895, 8.508389], [47.385246, 8.507743], [47.405381, 8.584306], [47.419543, 8.548018], [47.406062, 8.590044], [47.402427, 8.535592], [47.373897, 8.538183], [47.374685, 8.537577], [47.35789, 8.508902], [47.375112, 8.525721], [47.409871, 8.569561], [47.412384, 8.537507], [47.383421, 8.484079], [47.399398, 8.542816], [47.375206, 8.518599], [47.374836, 8.518684], [47.365219, 8.521653], [47.397167, 8.493834], [47.40451, 8.53692], [47.372727, 8.535378], [47.377683, 8.507578], [47.380211, 8.542949], [47.371509, 8.488268], [47.399477, 8.54303], [47.407487, 8.58508], [47.410777, 8.558755], [47.393195, 8.528223], [47.363386, 8.557335], [47.42284, 8.551255], [47.376867, 8.535172], [47.419727, 8.504526], [47.369909, 8.528025], [47.385415, 8.475364], [47.389792, 8.540008], [47.377332, 8.512458], [47.37137, 8.547519], [47.374164, 8.524152], [47.370679, 8.516878], [47.377573, 8.509735], [47.413852, 8.54578], [47.371381, 8.502288], [47.358116, 8.519444], [47.37842, 8.514413], [47.35783, 8.579988], [47.4093, 8.546758], [47.377539, 8.54198], [47.377454, 8.507044], [47.421138, 8.501704], [47.41216, 8.550594], [47.373365, 8.531644], [47.365312, 8.538562], [47.364452, 8.548527], [47.397881, 8.534002], [47.408628, 8.567892], [47.419236, 8.507948], [47.365416, 8.548322], [47.392664, 8.515853], [47.402491, 8.544881], [47.374436, 8.540048], [47.41305, 8.550653], [47.403919, 8.54609], [47.380502, 8.505198], [47.366412, 8.544847], [47.373056, 8.532949], [47.427025, 8.549062], [47.365681, 8.539457], [47.390603, 8.489624], [47.366455, 8.54036], [47.396471, 8.543193], [47.371404, 8.547732], [47.394185, 8.525368], [47.3667, 8.542033], [47.383994, 8.531028], [47.358368, 8.583812], [47.377298, 8.510245], [47.373354, 8.565556], [47.397104, 8.492813], [47.394276, 8.490253], [47.38472, 8.509242], [47.335574, 8.532841], [47.36616, 8.545756], [47.381113, 8.491636], [47.356221, 8.589868], [47.389395, 8.493799], [47.366574, 8.542031], [47.378043, 8.527767], [47.413531, 8.553896], [47.41027, 8.549773], [47.364267, 8.531074], [47.381632, 8.532502], [47.352284, 8.534098], [47.397989, 8.474549], [47.37455, 8.546023], [47.366289, 8.494507], [47.384278, 8.525723], [47.40559, 8.549994], [47.374371, 8.544973], [47.370054, 8.541176], [47.390953, 8.478743], [47.377495, 8.567974], [47.398753, 8.525528], [47.352103, 8.558634], [47.37711, 8.541759], [47.363941, 8.553944], [47.374338, 8.514251], [47.385887, 8.487836], [47.40903, 8.543944], [47.377611, 8.529665], [47.418198, 8.546572], [47.410713, 8.545728], [47.371317, 8.547399], [47.398096, 8.536007], [47.376546, 8.532914], [47.39413, 8.493403], [47.389859, 8.477331], [47.383822, 8.511966], [47.393435, 8.524717], [47.390433, 8.509026], [47.36459, 8.508163], [47.357027, 8.534751], [47.406826, 8.550523], [47.373554, 8.538229], [47.384993, 8.531008], [47.410942, 8.545361], [47.405264, 8.482733], [47.375919, 8.515409], [47.399064, 8.522103], [47.375372, 8.53338], [47.404606, 8.54943], [47.407634, 8.531831], [47.374168, 8.502423], [47.386113, 8.53523], [47.378119, 8.548096], [47.373891, 8.530278], [47.386486, 8.529119], [47.389233, 8.542937], [47.378956, 8.548101], [47.379718, 8.542687], [47.376821, 8.526683], [47.364145, 8.549566], [47.365922, 8.545248], [47.367734, 8.539168], [47.365181, 8.553096], [47.360956, 8.531151], [47.358667, 8.526908], [47.405754, 8.548884], [47.370022, 8.564121], [47.390923, 8.522136], [47.369115, 8.537806], [47.368471, 8.551523], [47.36587, 8.549722], [47.36876, 8.53821], [47.377319, 8.541472], [47.405866, 8.560599], [47.369962, 8.532898], [47.383493, 8.574551], [47.382145, 8.515309], [47.390724, 8.523165], [47.369257, 8.525655], [47.368, 8.562993], [47.418733, 8.547127], [47.390877, 8.489127], [47.391936, 8.510911], [47.375976, 8.541828], [47.364706, 8.549207], [47.390649, 8.491493], [47.340226, 8.51932], [47.391114, 8.522816], [47.395755, 8.486838], [47.369735, 8.525519], [47.401882, 8.499545], [47.363622, 8.560809], [47.427502, 8.550928], [47.369028, 8.528007], [47.410841, 8.563274], [47.383958, 8.550827], [47.373113, 8.544841], [47.381176, 8.491584], [47.373265, 8.520294], [47.37673, 8.497733], [47.372788, 8.535618], [47.421678, 8.502669], [47.427486, 8.543253], [47.393399, 8.524756], [47.376281, 8.511271], [47.368718, 8.546365], [47.380367, 8.547309], [47.380082, 8.528127], [47.360542, 8.596779], [47.355407, 8.512903], [47.33745, 8.53423], [47.369541, 8.55336], [47.379908, 8.52174], [47.374868, 8.527729], [47.371725, 8.519561], [47.425781, 8.493646], [47.367844, 8.539991], [47.408965, 8.531937], [47.402474, 8.544788], [47.409079, 8.550172], [47.415741, 8.551411], [47.42006, 8.482811], [47.366308, 8.540661], [47.379545, 8.524911], [47.376657, 8.523104], [47.399959, 8.541569], [47.363451, 8.567266], [47.387851, 8.539769], [47.367444, 8.512709], [47.381363, 8.491826], [47.423741, 8.511074], [47.378781, 8.522922], [47.399423, 8.543082], [47.41425, 8.517973], [47.383133, 8.529818], [47.422472, 8.499398], [47.361289, 8.525413], [47.426269, 8.554733], [47.421478, 8.548827], [47.373802, 8.537731], [47.364071, 8.556304], [47.373288, 8.533073], [47.371354, 8.518759], [47.376365, 8.552814], [47.368256, 8.524019], [47.366937, 8.548248], [47.363778, 8.566942], [47.39788, 8.4746], [47.38654, 8.52904], [47.413923, 8.554315], [47.411704, 8.525673], [47.380714, 8.526895], [47.398332, 8.537667], [47.368924, 8.543642], [47.372723, 8.525341], [47.402092, 8.499205], [47.371724, 8.519574], [47.358759, 8.516108], [47.385914, 8.553212], [47.378455, 8.526981], [47.430527, 8.511661], [47.363966, 8.547617], [47.367164, 8.563876], [47.364947, 8.50261], [47.406651, 8.506185], [47.387319, 8.487679], [47.377231, 8.499067], [47.363987, 8.535993], [47.424982, 8.548264], [47.393462, 8.524731], [47.378582, 8.526838], [47.402547, 8.553083], [47.384408, 8.534784], [47.414566, 8.560398], [47.411829, 8.524841], [47.361773, 8.560452], [47.409078, 8.481734], [47.422495, 8.550611], [47.36922, 8.541874], [47.336356, 8.526241], [47.367512, 8.523673], [47.412336, 8.506193], [47.391606, 8.51354], [47.374216, 8.475398], [47.362577, 8.612604], [47.344966, 8.533696], [47.377107, 8.523034], [47.418553, 8.547123], [47.335067, 8.527419], [47.388597, 8.483691], [47.379606, 8.537453], [47.376271, 8.494798], [47.376775, 8.527755], [47.362275, 8.532516], [47.376089, 8.489153], [47.357784, 8.527009], [47.379946, 8.483349], [47.413585, 8.530389], [47.37642, 8.528184], [47.386379, 8.518494], [47.374518, 8.539957], [47.369605, 8.533566], [47.366455, 8.540333], [47.375401, 8.526574], [47.388361, 8.539117], [47.372618, 8.521221], [47.39425, 8.490173], [47.376438, 8.534859], [47.370627, 8.524332], [47.346387, 8.528907], [47.392891, 8.53476], [47.419836, 8.504395], [47.383495, 8.530567], [47.367068, 8.543947], [47.362761, 8.567966], [47.37466, 8.549587], [47.399742, 8.492507], [47.370908, 8.535526], [47.419967, 8.506757], [47.403296, 8.493465], [47.383619, 8.530742], [47.348387, 8.534335], [47.360793, 8.550106], [47.411133, 8.526138], [47.371551, 8.550184], [47.405671, 8.585915], [47.371456, 8.562735], [47.365998, 8.533585], [47.382337, 8.549125], [47.343419, 8.535583], [47.37803, 8.541473], [47.354206, 8.557818], [47.388392, 8.480468], [47.411062, 8.571018], [47.40588, 8.586609], [47.391138, 8.489079], [47.373281, 8.52432], [47.399854, 8.544098], [47.378462, 8.567478], [47.390976, 8.517408], [47.374, 8.524414], [47.404073, 8.564523], [47.420898, 8.507293], [47.344288, 8.535018], [47.378948, 8.508888], [47.378388, 8.541692], [47.370707, 8.538687], [47.372724, 8.534729], [47.369897, 8.541623], [47.383472, 8.512806], [47.375222, 8.525498], [47.32923, 8.518779], [47.391367, 8.536106], [47.398223, 8.536831], [47.372981, 8.531345], [47.373376, 8.494701], [47.382334, 8.487872], [47.374306, 8.522474], [47.372364, 8.537635], [47.373896, 8.538263], [47.39619, 8.505154], [47.430964, 8.550152], [47.370188, 8.548792], [47.368879, 8.539867], [47.376363, 8.54369], [47.359387, 8.535422], [47.374509, 8.53997], [47.40378, 8.534163], [47.354099, 8.575288], [47.364891, 8.545875], [47.381996, 8.529278], [47.366636, 8.540178], [47.387527, 8.498372], [47.389358, 8.536396], [47.373612, 8.519745], [47.376067, 8.537923], [47.355534, 8.553583], [47.370334, 8.518235], [47.382451, 8.529645], [47.375686, 8.556958], [47.377214, 8.512561], [47.363087, 8.547294], [47.353471, 8.558544], [47.369886, 8.510269], [47.393206, 8.494153], [47.375836, 8.523313], [47.396162, 8.532231], [47.40228, 8.57678], [47.348259, 8.562643], [47.373959, 8.544832], [47.387861, 8.498325], [47.389713, 8.511979], [47.368858, 8.528824], [47.409992, 8.543115], [47.355601, 8.532405], [47.375491, 8.524616], [47.375613, 8.526963], [47.404588, 8.533437], [47.364446, 8.536929], [47.402804, 8.57744], [47.366496, 8.545432], [47.384868, 8.493074], [47.32315, 8.504171], [47.372889, 8.554132], [47.429901, 8.53808], [47.356579, 8.522179], [47.369533, 8.533552], [47.392231, 8.476675], [47.387832, 8.524696], [47.384216, 8.511139], [47.406236, 8.588816], [47.410629, 8.551676], [47.370214, 8.537591], [47.372035, 8.519117], [47.374416, 8.541253], [47.374407, 8.541226], [47.365128, 8.534163], [47.392387, 8.524285], [47.37859, 8.542187], [47.414015, 8.549427], [47.368105, 8.546498], [47.426315, 8.554668], [47.415949, 8.51427], [47.412976, 8.541494], [47.363031, 8.535245], [47.339872, 8.530124], [47.36823, 8.560562], [47.395588, 8.475469], [47.370116, 8.548843], [47.379901, 8.527289], [47.381201, 8.582567], [47.412295, 8.557978], [47.372629, 8.52857], [47.392116, 8.509921], [47.429814, 8.549054], [47.372711, 8.534173], [47.354352, 8.553042], [47.364412, 8.546143], [47.377796, 8.541495], [47.384697, 8.544114], [47.411133, 8.526151], [47.375975, 8.541921], [47.381789, 8.540611], [47.371494, 8.547667], [47.375491, 8.544559], [47.392441, 8.503013], [47.378866, 8.527281], [47.374457, 8.53981], [47.369083, 8.556131], [47.364429, 8.54617], [47.411406, 8.525786], [47.378387, 8.517034], [47.414706, 8.551469], [47.380395, 8.528252], [47.386105, 8.548342], [47.385329, 8.530631], [47.403262, 8.548011], [47.394474, 8.541323], [47.382138, 8.531321], [47.425368, 8.494592], [47.431345, 8.516476], [47.358937, 8.534459], [47.410742, 8.555865], [47.364305, 8.566463], [47.379838, 8.524387], [47.381925, 8.559234], [47.40175, 8.499224], [47.358312, 8.584962], [47.36328, 8.546848], [47.368988, 8.52839], [47.386545, 8.503478], [47.418705, 8.547153], [47.375535, 8.540879], [47.414106, 8.51895], [47.369663, 8.518778], [47.350957, 8.559907], [47.372936, 8.531318], [47.362098, 8.529268], [47.38206, 8.502077], [47.360768, 8.550833], [47.392371, 8.481076], [47.409094, 8.578118], [47.367334, 8.52355], [47.406907, 8.550577], [47.357861, 8.509193], [47.386971, 8.53485], [47.419958, 8.506757], [47.379367, 8.527556], [47.414802, 8.561052], [47.341068, 8.530241], [47.380458, 8.519606], [47.358799, 8.585754], [47.403867, 8.486031], [47.395903, 8.510924], [47.370713, 8.535218], [47.388292, 8.497354], [47.381022, 8.538079], [47.383094, 8.513805], [47.364836, 8.55436], [47.405117, 8.481126], [47.413682, 8.546611], [47.390344, 8.51676], [47.36359, 8.535164], [47.381384, 8.533093], [47.392415, 8.509715], [47.390102, 8.509907], [47.393426, 8.524717], [47.375829, 8.540183], [47.376671, 8.534956], [47.392351, 8.47632], [47.381041, 8.535126], [47.367155, 8.544254], [47.399133, 8.507942], [47.389493, 8.526928], [47.367082, 8.544385], [47.37929, 8.559192], [47.374094, 8.535433], [47.362601, 8.574225], [47.402351, 8.499316], [47.379783, 8.527379], [47.388183, 8.497497], [47.370003, 8.520863], [47.394663, 8.526146], [47.371903, 8.52069], [47.371861, 8.601792], [47.37124, 8.558122], [47.363255, 8.575404], [47.360212, 8.551669], [47.323053, 8.514633], [47.369187, 8.602978], [47.34, 8.529902], [47.369456, 8.520733], [47.37923, 8.552357], [47.3702, 8.491831], [47.371952, 8.536475], [47.410357, 8.548225], [47.397011, 8.480266], [47.391864, 8.482404], [47.369646, 8.536824], [47.387233, 8.488247], [47.39988, 8.585764], [47.349749, 8.53112], [47.362366, 8.561405], [47.378531, 8.5752], [47.373324, 8.533087], [47.399509, 8.50126], [47.361422, 8.506405], [47.348335, 8.533116], [47.354772, 8.55509], [47.376928, 8.517137], [47.377473, 8.509825], [47.347494, 8.564493], [47.357433, 8.553464], [47.387368, 8.498143], [47.383683, 8.588104], [47.368253, 8.536716], [47.37774, 8.543573], [47.366087, 8.533666], [47.407449, 8.585357], [47.373636, 8.542852], [47.408897, 8.54569], [47.359453, 8.551097], [47.365404, 8.537399], [47.378769, 8.530881], [47.416507, 8.506489], [47.397285, 8.510277], [47.370562, 8.48956], [47.396013, 8.527022], [47.372185, 8.520378], [47.36817, 8.538793], [47.369103, 8.57157], [47.41393, 8.544231], [47.360514, 8.569666], [47.371124, 8.520264], [47.36778, 8.54477], [47.416116, 8.565586], [47.378944, 8.509378], [47.369808, 8.530128], [47.427389, 8.539275], [47.412087, 8.546034], [47.382093, 8.5539], [47.367967, 8.568235], [47.42079, 8.508205], [47.408917, 8.546432], [47.4057, 8.489194], [47.391033, 8.522867], [47.384315, 8.531286], [47.423769, 8.496363], [47.39105, 8.522933], [47.368364, 8.541035], [47.422459, 8.550637], [47.391321, 8.536238], [47.369878, 8.540762], [47.35783, 8.580001], [47.370997, 8.535647], [47.425019, 8.539756], [47.36956, 8.547667], [47.405121, 8.48163], [47.405121, 8.481657], [47.381201, 8.538162], [47.357855, 8.520405], [47.405813, 8.590648], [47.375052, 8.545239], [47.384306, 8.531273], [47.409189, 8.544252], [47.368264, 8.511586], [47.337799, 8.519151], [47.369435, 8.525844], [47.39106, 8.52096], [47.358193, 8.571444], [47.378549, 8.560395], [47.357884, 8.571848], [47.420293, 8.50846], [47.36173, 8.526375], [47.38836, 8.536323], [47.37674, 8.523821], [47.388833, 8.477417], [47.370515, 8.549395], [47.363756, 8.535657], [47.362901, 8.556319], [47.368651, 8.534527], [47.381456, 8.535902], [47.364672, 8.536815], [47.366747, 8.542683], [47.366373, 8.540477], [47.369319, 8.541849], [47.365272, 8.538919], [47.384418, 8.516547], [47.370776, 8.535246], [47.357772, 8.521621], [47.380824, 8.538088], [47.407642, 8.584036], [47.349663, 8.529729], [47.349663, 8.529729], [47.368516, 8.530697], [47.354588, 8.552756], [47.356879, 8.514164], [47.378192, 8.509906], [47.386705, 8.547639], [47.3832, 8.53031], [47.372454, 8.535651], [47.376483, 8.521525], [47.39423, 8.493326], [47.375506, 8.547698], [47.365099, 8.545773], [47.410654, 8.543447], [47.37328, 8.533059], [47.37454, 8.538607], [47.387519, 8.519709], [47.345473, 8.532369], [47.390575, 8.48965], [47.366938, 8.564877], [47.388899, 8.483021], [47.377242, 8.541987], [47.361537, 8.565293], [47.370574, 8.470295], [47.38048, 8.517262], [47.38429, 8.53208], [47.38972, 8.486825], [47.407993, 8.58672], [47.390903, 8.523328], [47.403984, 8.573636], [47.363556, 8.52154], [47.403674, 8.571324], [47.411669, 8.563226], [47.370089, 8.548843], [47.3905, 8.479119], [47.420726, 8.502452], [47.38551, 8.488756], [47.36641, 8.545072], [47.369749, 8.522116], [47.404831, 8.542889], [47.366432, 8.540836], [47.368323, 8.546304], [47.408893, 8.532837], [47.378481, 8.540397], [47.360981, 8.531417], [47.373426, 8.51745], [47.365182, 8.531344], [47.395258, 8.526013], [47.406349, 8.582869], [47.375489, 8.537157], [47.371167, 8.548058], [47.357085, 8.555006], [47.367594, 8.519782], [47.3299, 8.529775], [47.377629, 8.529692], [47.363148, 8.535234], [47.378887, 8.526937], [47.344007, 8.531426], [47.376938, 8.540908], [47.388316, 8.536269], [47.359227, 8.553065], [47.410616, 8.572519], [47.378852, 8.524976], [47.37125, 8.537453], [47.367893, 8.54607], [47.360781, 8.548583], [47.374507, 8.540209], [47.377749, 8.48855], [47.368853, 8.511082], [47.387456, 8.525417], [47.398787, 8.506438], [47.377005, 8.543346], [47.376742, 8.483617], [47.38209, 8.49886], [47.369614, 8.513454], [47.39417, 8.482104], [47.40055, 8.492749], [47.415954, 8.515595], [47.365487, 8.598767], [47.373224, 8.550193], [47.399799, 8.541367], [47.384455, 8.516455], [47.415745, 8.546336], [47.393832, 8.500444], [47.393766, 8.499741], [47.392098, 8.549037], [47.417065, 8.541897], [47.375553, 8.541793], [47.393443, 8.512319], [47.407912, 8.536699], [47.41387, 8.546694], [47.387677, 8.497699], [47.353103, 8.528396], [47.386351, 8.533871], [47.382284, 8.551838], [47.369166, 8.527612], [47.376647, 8.548754], [47.415587, 8.509571], [47.37329, 8.494235], [47.390741, 8.523311], [47.395714, 8.532076], [47.40952, 8.542642], [47.373342, 8.5331], [47.400645, 8.544127], [47.375191, 8.537336], [47.359591, 8.569302], [47.361288, 8.525519], [47.370253, 8.514354], [47.370197, 8.548792], [47.374389, 8.52511], [47.417325, 8.554135], [47.369048, 8.518222], [47.358312, 8.5206], [47.409004, 8.545758], [47.393807, 8.503093], [47.351404, 8.576726], [47.369071, 8.525293], [47.381272, 8.556969], [47.401457, 8.489852], [47.413318, 8.521479], [47.416237, 8.545644], [47.373297, 8.533086], [47.395867, 8.506062], [47.382801, 8.556021], [47.414522, 8.551002], [47.369041, 8.502479], [47.361684, 8.561205], [47.356546, 8.558701], [47.386953, 8.534903], [47.410358, 8.548119], [47.369657, 8.533713], [47.378858, 8.531002], [47.366358, 8.534453], [47.397531, 8.489364], [47.370289, 8.514315], [47.376649, 8.495785], [47.395908, 8.526755], [47.4145, 8.554221], [47.416238, 8.532352], [47.395402, 8.526069], [47.413885, 8.546059], [47.388449, 8.484098], [47.373171, 8.551992], [47.376002, 8.577146], [47.374168, 8.502423], [47.377127, 8.521829], [47.423714, 8.539795], [47.393183, 8.530474], [47.382454, 8.544439], [47.382539, 8.529793], [47.391439, 8.519882], [47.374283, 8.524949], [47.370464, 8.526407], [47.368437, 8.534337], [47.388608, 8.545229], [47.377912, 8.510046], [47.383833, 8.530892], [47.369665, 8.506994], [47.425791, 8.49354], [47.382675, 8.507639], [47.39878, 8.590549], [47.405201, 8.480757], [47.368183, 8.524097], [47.410929, 8.542923], [47.359224, 8.516435], [47.40688, 8.550537], [47.378217, 8.54353], [47.373189, 8.551913], [47.374206, 8.47557], [47.369603, 8.55348], [47.378722, 8.542441], [47.37158, 8.522484], [47.369772, 8.53684], [47.409755, 8.544316], [47.372685, 8.547321], [47.370417, 8.518038], [47.372872, 8.547471], [47.381852, 8.51386], [47.363026, 8.556467], [47.400729, 8.548541], [47.387147, 8.519026], [47.39688, 8.493656], [47.38439, 8.531976], [47.357784, 8.554385], [47.393601, 8.529132], [47.381387, 8.510738], [47.386447, 8.496509], [47.377189, 8.540052], [47.409506, 8.549704], [47.355927, 8.522682], [47.422539, 8.550745], [47.41144, 8.528], [47.377689, 8.537573], [47.393741, 8.472731], [47.376784, 8.538163], [47.405492, 8.549872], [47.386051, 8.539851], [47.413184, 8.533733], [47.37774, 8.54356], [47.37639, 8.527548], [47.371096, 8.535623], [47.367182, 8.523454], [47.412702, 8.517067], [47.37339, 8.528957], [47.372034, 8.502711], [47.397472, 8.493827], [47.365207, 8.545696], [47.388477, 8.536325], [47.387242, 8.48532], [47.376874, 8.541939], [47.385322, 8.475706], [47.399754, 8.5185], [47.40027, 8.493869], [47.377218, 8.539881], [47.391396, 8.5453], [47.354878, 8.574696], [47.37376, 8.500839], [47.361463, 8.532764], [47.384417, 8.528123], [47.376642, 8.544596], [47.36844, 8.536919], [47.387989, 8.485229], [47.383263, 8.548256], [47.338293, 8.530648], [47.373297, 8.533086], [47.37745, 8.541964], [47.391477, 8.486423], [47.358273, 8.584352], [47.360254, 8.566761], [47.392368, 8.476466], [47.365215, 8.501768], [47.372488, 8.526383], [47.406752, 8.585779], [47.365789, 8.556326], [47.364, 8.546889], [47.381397, 8.542099], [47.405557, 8.562726], [47.410864, 8.562718], [47.366487, 8.540771], [47.410044, 8.569327], [47.3704, 8.549207], [47.334841, 8.531344], [47.372309, 8.572128], [47.364738, 8.534539], [47.400627, 8.508754], [47.413341, 8.531457], [47.378755, 8.539926], [47.386924, 8.535088], [47.387837, 8.4861], [47.378482, 8.526995], [47.414747, 8.519666], [47.384755, 8.532355], [47.419697, 8.556212], [47.392383, 8.539015], [47.386105, 8.548342], [47.366418, 8.540399], [47.3852, 8.529079], [47.373289, 8.533046], [47.407696, 8.546129], [47.386242, 8.49824], [47.395533, 8.482582], [47.387368, 8.49813], [47.384408, 8.531924], [47.381495, 8.513561], [47.415787, 8.552247], [47.372445, 8.537544], [47.409646, 8.575983], [47.383158, 8.505913], [47.387637, 8.519553], [47.377031, 8.553702], [47.383986, 8.547874], [47.369277, 8.548137], [47.378691, 8.509452], [47.370575, 8.546933], [47.367584, 8.523701], [47.39093, 8.523302], [47.419678, 8.548008], [47.369482, 8.566003], [47.403274, 8.497784], [47.373377, 8.514099], [47.372829, 8.514035], [47.389354, 8.491401], [47.40067, 8.492327], [47.391413, 8.519775], [47.366206, 8.548471], [47.367951, 8.560582], [47.411153, 8.545803], [47.372159, 8.555215], [47.37606, 8.535752], [47.377495, 8.543793], [47.369772, 8.532007], [47.369561, 8.525806], [47.368161, 8.521647], [47.377216, 8.526784], [47.382182, 8.512224], [47.372156, 8.473398], [47.377358, 8.512524], [47.374159, 8.54089], [47.375891, 8.51652], [47.362162, 8.529257], [47.392513, 8.523294], [47.354325, 8.51124], [47.376519, 8.534847], [47.378429, 8.526914], [47.363642, 8.567138], [47.373536, 8.544902], [47.376078, 8.524337], [47.379222, 8.511357], [47.391532, 8.486278], [47.362195, 8.547487], [47.380735, 8.512089], [47.394011, 8.532386], [47.360841, 8.553602], [47.360287, 8.570773], [47.369269, 8.52535], [47.411284, 8.486442], [47.407795, 8.578501], [47.381127, 8.49202], [47.385312, 8.530565], [47.347672, 8.528073], [47.357086, 8.593355], [47.333931, 8.515276], [47.379969, 8.541924], [47.409272, 8.549713], [47.403916, 8.503322], [47.37836, 8.517948], [47.363922, 8.533304], [47.378939, 8.544273], [47.427816, 8.536964], [47.428465, 8.489311], [47.348272, 8.533142], [47.376916, 8.527996], [47.371001, 8.531437], [47.375318, 8.531552], [47.377372, 8.511081], [47.414488, 8.554513], [47.37939, 8.54219], [47.379435, 8.537556], [47.402031, 8.545998], [47.387834, 8.488457], [47.382012, 8.475774], [47.417114, 8.506978], [47.357668, 8.535439], [47.38353, 8.513337], [47.402145, 8.497351], [47.363794, 8.598928], [47.394604, 8.531417], [47.378491, 8.502906], [47.397363, 8.531766], [47.407645, 8.538323], [47.42387, 8.522316], [47.339402, 8.518946], [47.428742, 8.543544], [47.373226, 8.533045], [47.396348, 8.513384], [47.36999, 8.548814], [47.378564, 8.54208], [47.376909, 8.527837], [47.377018, 8.541916], [47.360579, 8.516754], [47.379758, 8.536635], [47.406489, 8.550052], [47.380382, 8.534397], [47.380411, 8.513089], [47.364499, 8.554843], [47.399589, 8.497433], [47.359581, 8.558235], [47.368044, 8.540618], [47.381435, 8.517123], [47.403137, 8.555321], [47.376512, 8.559902], [47.363901, 8.551494], [47.381262, 8.571802], [47.410746, 8.545185], [47.385913, 8.492909], [47.419366, 8.505579], [47.378191, 8.52634], [47.419523, 8.50814], [47.370663, 8.47035], [47.386726, 8.547335], [47.356399, 8.519343], [47.391529, 8.54268], [47.363046, 8.522205], [47.386922, 8.519022], [47.36163, 8.561283], [47.427546, 8.546316], [47.4138, 8.545553], [47.36119, 8.532136], [47.370191, 8.514273], [47.384432, 8.548307], [47.365751, 8.545337], [47.398024, 8.534097], [47.408821, 8.504003], [47.405395, 8.565465], [47.373991, 8.530134], [47.383666, 8.52865], [47.370324, 8.469099], [47.378256, 8.541345], [47.3623, 8.504768], [47.392283, 8.514282], [47.367102, 8.54412], [47.371563, 8.517611], [47.390919, 8.52354], [47.421288, 8.549897], [47.391784, 8.505013], [47.376086, 8.512949], [47.386369, 8.518507], [47.378866, 8.510913], [47.414097, 8.51895], [47.361869, 8.532626], [47.376222, 8.526247], [47.392324, 8.503037], [47.35414, 8.530932], [47.398168, 8.535041], [47.332637, 8.518028], [47.380008, 8.52643], [47.398614, 8.593579], [47.389249, 8.521268], [47.423843, 8.521321], [47.391421, 8.5342], [47.368022, 8.485962], [47.378957, 8.529123], [47.353393, 8.51179], [47.407702, 8.578804], [47.376584, 8.494076], [47.414287, 8.572398], [47.378552, 8.541444], [47.347775, 8.530537], [47.331394, 8.537294], [47.370389, 8.514251], [47.363548, 8.500119], [47.360984, 8.560197], [47.361657, 8.526479], [47.399463, 8.543626], [47.3878, 8.527092], [47.374775, 8.520444], [47.375297, 8.486198], [47.366513, 8.540838], [47.384033, 8.497825], [47.375949, 8.529446], [47.361581, 8.565386], [47.386704, 8.488038], [47.372446, 8.550613], [47.4114, 8.54443], [47.404213, 8.562234], [47.383754, 8.526904], [47.334773, 8.52998], [47.406784, 8.536119], [47.365391, 8.564818], [47.379151, 8.495596], [47.394685, 8.531472], [47.354386, 8.557888], [47.392285, 8.502361], [47.370561, 8.549316], [47.374708, 8.588784], [47.385668, 8.499023], [47.408943, 8.574338], [47.368608, 8.540947], [47.375435, 8.560581], [47.375264, 8.490832], [47.415493, 8.563121], [47.424304, 8.508514], [47.400123, 8.58663], [47.349682, 8.562448], [47.422368, 8.542259], [47.370233, 8.548819], [47.405483, 8.549872], [47.386245, 8.535498], [47.394853, 8.527952], [47.398059, 8.536085], [47.367038, 8.544278], [47.359571, 8.522611], [47.357721, 8.554397], [47.377228, 8.539775], [47.410272, 8.544884], [47.430843, 8.544012], [47.39102, 8.522297], [47.366043, 8.530647], [47.354953, 8.554127], [47.3764, 8.544525], [47.375682, 8.512888], [47.388882, 8.495829], [47.388927, 8.515301], [47.383403, 8.484079], [47.378733, 8.542269], [47.370139, 8.5217], [47.361607, 8.506753], [47.380853, 8.517826], [47.402018, 8.495441], [47.369912, 8.537214], [47.359789, 8.588383], [47.393426, 8.524717], [47.368822, 8.528863], [47.388356, 8.526283], [47.387914, 8.488552], [47.422705, 8.543764], [47.375283, 8.544647], [47.387173, 8.551411], [47.367583, 8.520934], [47.364604, 8.566191], [47.338648, 8.538793], [47.385065, 8.54791], [47.389419, 8.511695], [47.372981, 8.54738], [47.385849, 8.48214], [47.390548, 8.489716], [47.371547, 8.519266], [47.375142, 8.51865], [47.413359, 8.531405], [47.39923, 8.542588], [47.398648, 8.542271], [47.373957, 8.48919], [47.370579, 8.528475], [47.379825, 8.528651], [47.398206, 8.536724], [47.390178, 8.528678], [47.338225, 8.528317], [47.414326, 8.538501], [47.374454, 8.539175], [47.377355, 8.548107], [47.374131, 8.51908], [47.426869, 8.546567], [47.388998, 8.48897], [47.367061, 8.545602], [47.380651, 8.52688], [47.426626, 8.555045], [47.367906, 8.494778], [47.389741, 8.511913], [47.393592, 8.501115], [47.409862, 8.479563], [47.370708, 8.470391], [47.372222, 8.524033], [47.36768, 8.539194], [47.392139, 8.476872], [47.419596, 8.548073], [47.378577, 8.519713], [47.392072, 8.499151], [47.383398, 8.548246], [47.416152, 8.546079], [47.411118, 8.57086], [47.377105, 8.527126], [47.38309, 8.528625], [47.377016, 8.535573], [47.420745, 8.501445], [47.376319, 8.495434], [47.387247, 8.518975], [47.373966, 8.476267], [47.378501, 8.540198], [47.370197, 8.548792], [47.391522, 8.516704], [47.370188, 8.548792], [47.363659, 8.55983], [47.368519, 8.541819], [47.361378, 8.513089], [47.403056, 8.576531], [47.385781, 8.548309], [47.381853, 8.583998], [47.370078, 8.548988], [47.370061, 8.548895], [47.407258, 8.568128], [47.390587, 8.489412], [47.388355, 8.54072], [47.374861, 8.519876], [47.362948, 8.518337], [47.357369, 8.550723], [47.360305, 8.565253], [47.407564, 8.53069], [47.374577, 8.538555], [47.383282, 8.548164], [47.372727, 8.510458], [47.36331, 8.527678], [47.374089, 8.513928], [47.363342, 8.520477], [47.390703, 8.522595], [47.373004, 8.546904], [47.362828, 8.521472], [47.372836, 8.518074], [47.374529, 8.540699], [47.415133, 8.562239], [47.369725, 8.525585], [47.367855, 8.551934], [47.406008, 8.481051], [47.378444, 8.540515], [47.40411, 8.541099], [47.378065, 8.530165], [47.390539, 8.52283], [47.328158, 8.529408], [47.400474, 8.531922], [47.369511, 8.538702], [47.394744, 8.536679], [47.384376, 8.531526], [47.415755, 8.512888], [47.363709, 8.551874], [47.405237, 8.561368], [47.347312, 8.528119], [47.375109, 8.529839], [47.360796, 8.548848], [47.3825, 8.548108], [47.370197, 8.548805], [47.382048, 8.514062], [47.388582, 8.486247], [47.377281, 8.548291], [47.407041, 8.55066], [47.359447, 8.552619], [47.348396, 8.534296], [47.391209, 8.48916], [47.369678, 8.532456], [47.414008, 8.549202], [47.369462, 8.541918], [47.409561, 8.569091], [47.375102, 8.52482], [47.401878, 8.504871], [47.374554, 8.539031], [47.369161, 8.548029], [47.362, 8.560232], [47.398969, 8.513954], [47.398969, 8.51398], [47.337696, 8.530106], [47.38729, 8.527811], [47.398614, 8.547755], [47.388865, 8.484809], [47.409204, 8.538939], [47.404628, 8.594915], [47.370504, 8.535518], [47.395903, 8.545261], [47.366738, 8.541769], [47.365977, 8.55727], [47.374318, 8.544892], [47.368103, 8.529709], [47.371389, 8.522719], [47.355235, 8.527394], [47.405201, 8.56138], [47.404345, 8.574413], [47.40677, 8.585766], [47.417724, 8.54537], [47.410986, 8.562178], [47.366613, 8.547341], [47.36612, 8.531999], [47.37017, 8.548778], [47.384835, 8.539985], [47.36956, 8.466992], [47.422074, 8.550444], [47.429435, 8.54165], [47.361086, 8.535496], [47.405612, 8.591836], [47.374794, 8.55245], [47.374105, 8.546503], [47.376306, 8.534485], [47.406627, 8.567359], [47.353125, 8.577293], [47.344247, 8.532688], [47.360624, 8.524459], [47.36875, 8.528835], [47.372872, 8.567042], [47.38241, 8.558331], [47.364535, 8.53701], [47.363642, 8.546617], [47.370123, 8.543335], [47.405629, 8.54969], [47.410741, 8.550326], [47.408619, 8.529532], [47.395876, 8.515772], [47.376877, 8.540668], [47.387147, 8.519053], [47.386048, 8.545824], [47.338922, 8.539288], [47.3768, 8.517439], [47.365346, 8.521603], [47.35711, 8.523117], [47.409484, 8.543569], [47.408531, 8.580504], [47.39361, 8.511792], [47.352033, 8.558368], [47.393219, 8.492696], [47.376902, 8.517097], [47.377599, 8.522342], [47.377255, 8.529274], [47.381334, 8.510605], [47.374103, 8.542954], [47.378607, 8.504961], [47.390629, 8.489638], [47.342789, 8.530793], [47.357756, 8.554477], [47.378796, 8.530921], [47.384307, 8.528359], [47.406779, 8.584826], [47.410389, 8.487895], [47.366473, 8.540347], [47.37702, 8.537056], [47.38308, 8.541074], [47.359479, 8.557677], [47.366507, 8.534853], [47.372414, 8.523773], [47.338896, 8.539169], [47.377338, 8.546081], [47.362743, 8.519048], [47.368096, 8.536117], [47.361527, 8.525907], [47.402919, 8.554641], [47.404519, 8.575079], [47.408668, 8.546136], [47.341747, 8.530731], [47.384476, 8.538097], [47.381939, 8.555937], [47.372814, 8.535645], [47.38848, 8.528471], [47.359688, 8.549063], [47.361352, 8.522607], [47.370703, 8.535363], [47.374977, 8.483795], [47.377159, 8.52518], [47.368164, 8.510684], [47.369981, 8.548841], [47.376936, 8.533518], [47.358322, 8.509864], [47.419755, 8.504447], [47.37707, 8.539348], [47.38408, 8.525745], [47.365935, 8.548598], [47.391941, 8.51809], [47.375623, 8.537318], [47.378461, 8.548156], [47.387927, 8.485148], [47.37466, 8.545879], [47.390846, 8.514969], [47.370547, 8.517564], [47.387666, 8.525143], [47.38599, 8.498235], [47.408503, 8.564987], [47.406912, 8.586869], [47.368599, 8.534353], [47.382981, 8.540159], [47.37042, 8.518661], [47.390486, 8.509133], [47.392833, 8.532295], [47.389673, 8.534509], [47.353254, 8.577044], [47.373943, 8.544606], [47.374979, 8.492508], [47.378581, 8.5422], [47.378698, 8.544016], [47.332674, 8.517949], [47.381321, 8.483548], [47.40362, 8.49636], [47.392695, 8.524093], [47.376696, 8.511187], [47.403938, 8.549681], [47.423985, 8.549026], [47.399479, 8.583503], [47.428101, 8.489848], [47.35479, 8.526829], [47.410038, 8.542997], [47.393462, 8.524731], [47.367895, 8.541184], [47.384964, 8.53212], [47.37639, 8.525615], [47.382683, 8.537411], [47.42874, 8.488826], [47.348303, 8.562697], [47.392327, 8.523926], [47.380442, 8.51946], [47.391253, 8.515666], [47.370481, 8.52462], [47.373437, 8.538227], [47.354715, 8.558265], [47.419552, 8.548019], [47.374784, 8.520365], [47.388487, 8.488788], [47.364399, 8.55022], [47.350669, 8.579146], [47.406701, 8.538291], [47.408005, 8.546745], [47.375081, 8.519391], [47.36833, 8.546542], [47.351401, 8.534238], [47.36637, 8.533222], [47.403777, 8.548671], [47.394223, 8.490159], [47.378802, 8.542588], [47.402598, 8.49993], [47.37273, 8.529393], [47.364357, 8.556442], [47.369622, 8.533646], [47.381968, 8.551064], [47.36844, 8.55], [47.360854, 8.531507], [47.389898, 8.491981], [47.428029, 8.545663], [47.37759, 8.506901], [47.368583, 8.524621], [47.36712, 8.544134], [47.411209, 8.570743], [47.422586, 8.550507], [47.383428, 8.539453], [47.362419, 8.535299], [47.36509, 8.553267], [47.369222, 8.525561], [47.368987, 8.538016], [47.355574, 8.532458], [47.35981, 8.508544], [47.366388, 8.520764], [47.412143, 8.54858], [47.381528, 8.548194], [47.388317, 8.490745], [47.379125, 8.511196], [47.347414, 8.526824], [47.362627, 8.519933], [47.370776, 8.535219], [47.388599, 8.528261], [47.372239, 8.535554], [47.367108, 8.539751], [47.375544, 8.52091], [47.396172, 8.505207], [47.379972, 8.548122], [47.376952, 8.528963], [47.37149, 8.515783], [47.418536, 8.54695], [47.365461, 8.546456], [47.374776, 8.501945], [47.390681, 8.48895], [47.379278, 8.537937], [47.386373, 8.473939], [47.404635, 8.550225], [47.410804, 8.560544], [47.414862, 8.545562], [47.381959, 8.513968], [47.358936, 8.577311], [47.406907, 8.550577], [47.365334, 8.532446], [47.372971, 8.55126], [47.377654, 8.537546], [47.366228, 8.553727], [47.363031, 8.525779], [47.419794, 8.533936], [47.374461, 8.521325], [47.379025, 8.494654], [47.374264, 8.525028], [47.37268, 8.534609], [47.393857, 8.505479], [47.38058, 8.512377], [47.390712, 8.539722], [47.36374, 8.535432], [47.383029, 8.575137], [47.418132, 8.510709], [47.392098, 8.502158], [47.37094, 8.548265], [47.404685, 8.557129], [47.361037, 8.548165], [47.402963, 8.535988], [47.36473, 8.554159], [47.362831, 8.548731], [47.38154, 8.513575], [47.42501, 8.55195], [47.373235, 8.533058], [47.370644, 8.516772], [47.400109, 8.545693], [47.408832, 8.557057], [47.37311, 8.532937], [47.386716, 8.495627], [47.419124, 8.506462], [47.419037, 8.539778], [47.407877, 8.550757], [47.414074, 8.541371], [47.38409, 8.509243], [47.407534, 8.584895], [47.380015, 8.546494], [47.39133, 8.536198], [47.36812, 8.547796], [47.389265, 8.527228], [47.371834, 8.536605], [47.363977, 8.530366], [47.380453, 8.524956], [47.416685, 8.509567], [47.358722, 8.517179], [47.404812, 8.557039], [47.374584, 8.541587], [47.375711, 8.539346], [47.369185, 8.538947], [47.372536, 8.528926], [47.361544, 8.514589], [47.362473, 8.53526], [47.373157, 8.534606], [47.378892, 8.566825], [47.378297, 8.530368], [47.365181, 8.566045], [47.390487, 8.522591], [47.387669, 8.5295], [47.355638, 8.532274], [47.376861, 8.543329], [47.416309, 8.508393], [47.416089, 8.508786], [47.416354, 8.508381], [47.416062, 8.508826], [47.399565, 8.49616], [47.417512, 8.483105], [47.365476, 8.552388], [47.423124, 8.538471], [47.377411, 8.539368], [47.37814, 8.483221], [47.418571, 8.547137], [47.386697, 8.5476], [47.40405, 8.578871], [47.406684, 8.561517], [47.422589, 8.537055], [47.420883, 8.507849], [47.415567, 8.521445], [47.378489, 8.509912], [47.369014, 8.53799], [47.378822, 8.563791], [47.384941, 8.508691], [47.363357, 8.519775], [47.395661, 8.522365], [47.363902, 8.531635], [47.364757, 8.502685], [47.413851, 8.546813], [47.364349, 8.555422], [47.384233, 8.497578], [47.387093, 8.48982], [47.412289, 8.553963], [47.390789, 8.488913], [47.378305, 8.540923], [47.34928, 8.577753], [47.343886, 8.529915], [47.40347, 8.556296], [47.394589, 8.525483], [47.376905, 8.540616], [47.424701, 8.537218], [47.365254, 8.556765], [47.39179, 8.487595], [47.337786, 8.535732], [47.395437, 8.494078], [47.377149, 8.543296], [47.371405, 8.547559], [47.391279, 8.514845], [47.382196, 8.540367], [47.343491, 8.535545], [47.368209, 8.555305], [47.367983, 8.546111], [47.352018, 8.576488], [47.36989, 8.525217], [47.38817, 8.525087], [47.357478, 8.526116], [47.381469, 8.503747], [47.406934, 8.526927], [47.407885, 8.583034], [47.38151, 8.548193], [47.365886, 8.532073], [47.357462, 8.572659], [47.330027, 8.534355], [47.37327, 8.535032], [47.38652, 8.520722], [47.393104, 8.526472], [47.410777, 8.555945], [47.357448, 8.588624], [47.380863, 8.536804], [47.380231, 8.541784], [47.352211, 8.565982], [47.342206, 8.530635], [47.370059, 8.537852], [47.375719, 8.529057], [47.366077, 8.533693], [47.382092, 8.488781], [47.380623, 8.525092], [47.403013, 8.490863], [47.429751, 8.549], [47.373226, 8.533058], [47.373456, 8.561506], [47.361934, 8.548395], [47.378422, 8.540899], [47.375955, 8.541126], [47.372734, 8.53273], [47.393435, 8.52473], [47.368307, 8.524338], [47.370084, 8.540845], [47.378579, 8.541485], [47.391674, 8.485513], [47.402083, 8.499204], [47.409587, 8.537462], [47.41476, 8.519215], [47.414234, 8.483478], [47.369602, 8.536691], [47.36733, 8.489907], [47.359199, 8.523901], [47.407549, 8.54643], [47.410061, 8.546231], [47.384809, 8.531415], [47.418645, 8.507751], [47.382101, 8.530486], [47.391486, 8.486436], [47.389405, 8.513244], [47.373262, 8.523472], [47.376976, 8.539743], [47.385907, 8.498459], [47.426446, 8.492771], [47.391031, 8.523066], [47.425815, 8.493858], [47.368712, 8.532846], [47.398533, 8.538281], [47.392244, 8.524163], [47.376572, 8.540648], [47.374797, 8.539989], [47.367526, 8.523143], [47.382351, 8.5144], [47.392504, 8.503054], [47.37924, 8.528626], [47.360747, 8.488731], [47.408887, 8.558821], [47.373047, 8.532949], [47.378134, 8.527703], [47.424521, 8.535318], [47.37494, 8.544786], [47.41861, 8.546819], [47.428018, 8.490005], [47.375808, 8.529152], [47.372646, 8.550419], [47.369035, 8.525279], [47.406912, 8.586843], [47.378315, 8.528475], [47.37642, 8.528184], [47.428619, 8.54329], [47.371422, 8.524931], [47.361829, 8.507128], [47.377185, 8.528187], [47.39558, 8.526205], [47.393378, 8.545036], [47.374605, 8.512601], [47.393233, 8.522302], [47.328673, 8.517749], [47.375777, 8.512307], [47.370689, 8.524466], [47.383099, 8.515262], [47.401148, 8.549888], [47.404243, 8.48519], [47.343606, 8.530015], [47.385497, 8.494133], [47.373489, 8.531845], [47.363427, 8.533387], [47.384701, 8.492634], [47.42598, 8.493517], [47.363994, 8.536152], [47.376454, 8.541692], [47.367898, 8.539979], [47.383992, 8.500341], [47.39116, 8.522803], [47.386897, 8.526557], [47.413087, 8.550521], [47.359259, 8.597334], [47.384994, 8.524201], [47.429891, 8.542905], [47.364441, 8.566373], [47.354448, 8.520243], [47.370215, 8.548806], [47.388813, 8.515947], [47.37669, 8.540532], [47.41923, 8.546872], [47.354649, 8.534173], [47.375964, 8.535524], [47.406907, 8.550577], [47.369435, 8.525844], [47.393426, 8.524717], [47.362751, 8.548544], [47.410627, 8.542519], [47.407681, 8.583732], [47.361999, 8.526473], [47.385446, 8.499747], [47.392244, 8.524203], [47.371272, 8.525643], [47.377731, 8.537878], [47.42493, 8.501197], [47.386227, 8.474148], [47.402728, 8.501456], [47.403024, 8.588879], [47.356542, 8.522298], [47.372871, 8.533422], [47.386905, 8.547418], [47.361288, 8.53411], [47.385086, 8.48496], [47.376427, 8.527483], [47.427884, 8.545806], [47.344647, 8.527456], [47.377016, 8.542101], [47.380424, 8.504865], [47.382459, 8.540201], [47.362425, 8.548816], [47.38769, 8.488388], [47.410149, 8.542681], [47.403002, 8.542229], [47.379064, 8.527258], [47.392244, 8.524163], [47.37386, 8.553251], [47.379422, 8.52177], [47.371544, 8.546265], [47.376749, 8.53803], [47.411042, 8.547139], [47.369322, 8.533971], [47.374946, 8.485224], [47.394071, 8.525035], [47.364204, 8.530185], [47.37466, 8.545879], [47.371351, 8.554099], [47.366829, 8.544498], [47.375019, 8.52221], [47.380332, 8.520636], [47.370215, 8.548793], [47.375435, 8.518166], [47.36455, 8.566243], [47.375261, 8.485204], [47.384978, 8.48501], [47.372096, 8.502832], [47.401948, 8.577634], [47.379045, 8.527351], [47.37019, 8.521053], [47.40381, 8.486387], [47.420698, 8.50265], [47.397845, 8.534067], [47.408178, 8.557746], [47.374559, 8.521406], [47.422503, 8.550757], [47.374966, 8.534511], [47.384274, 8.538477], [47.353892, 8.561438], [47.37773, 8.537997], [47.358036, 8.553358], [47.386441, 8.518509], [47.370202, 8.522721], [47.377689, 8.522384], [47.371487, 8.5248], [47.366912, 8.544302], [47.366332, 8.54098], [47.423072, 8.541995], [47.380057, 8.543038], [47.397521, 8.532126], [47.396789, 8.529687], [47.413857, 8.527241], [47.371093, 8.558464], [47.380116, 8.537742], [47.398711, 8.53284], [47.370811, 8.549467], [47.418823, 8.544213], [47.372877, 8.532839], [47.363977, 8.549205], [47.410392, 8.548331], [47.375311, 8.528426], [47.423464, 8.551811], [47.386319, 8.497699], [47.409804, 8.57543], [47.393408, 8.524743], [47.358205, 8.525323], [47.365788, 8.538612], [47.375905, 8.488606], [47.375064, 8.529865], [47.415673, 8.512992], [47.379158, 8.556024], [47.374673, 8.514973], [47.335037, 8.524891], [47.379189, 8.508112], [47.388524, 8.485703], [47.377641, 8.526501], [47.363888, 8.566812], [47.372287, 8.558767], [47.384666, 8.53128], [47.375596, 8.527797], [47.367852, 8.50652], [47.393426, 8.524717], [47.41228, 8.546555], [47.406322, 8.582882], [47.417448, 8.546], [47.387165, 8.519093], [47.376265, 8.528406], [47.387849, 8.524736], [47.371475, 8.526057], [47.367673, 8.541802], [47.377597, 8.535916], [47.429848, 8.544575], [47.369719, 8.523347], [47.366069, 8.533639], [47.403808, 8.485619], [47.367999, 8.54063], [47.409428, 8.542812], [47.381646, 8.492361], [47.403588, 8.57274], [47.380234, 8.548048], [47.378235, 8.514992], [47.390863, 8.478768], [47.375177, 8.525471], [47.373834, 8.54663], [47.367542, 8.545215], [47.381186, 8.503238], [47.376116, 8.516472], [47.374067, 8.524879], [47.412218, 8.546368], [47.406352, 8.570639], [47.360956, 8.56855], [47.424997, 8.537277], [47.389375, 8.528966], [47.337342, 8.517051], [47.414012, 8.541277], [47.378655, 8.488872], [47.373297, 8.533086], [47.370589, 8.538803], [47.374407, 8.5412], [47.403759, 8.567206], [47.37989, 8.494459], [47.358624, 8.558639], [47.390044, 8.537099], [47.422264, 8.547545], [47.384154, 8.497378], [47.365665, 8.559793], [47.377284, 8.512748], [47.373334, 8.534901], [47.378777, 8.542376], [47.374501, 8.53895], [47.345885, 8.534456], [47.392238, 8.539131], [47.356395, 8.532143], [47.382844, 8.529945], [47.413456, 8.530665], [47.429901, 8.538054], [47.376563, 8.562962], [47.391338, 8.536252], [47.389728, 8.486852], [47.367781, 8.544704], [47.351352, 8.560921], [47.39078, 8.508503], [47.386226, 8.533736], [47.359378, 8.5523], [47.413595, 8.532191], [47.378174, 8.509932], [47.354304, 8.525945], [47.373603, 8.519692], [47.37846, 8.543535], [47.377199, 8.539973], [47.36074, 8.516836], [47.366618, 8.540178], [47.374584, 8.538674], [47.413541, 8.55383], [47.412177, 8.551615], [47.37772, 8.509353], [47.37626, 8.538417], [47.403557, 8.487429], [47.392504, 8.503027], [47.400098, 8.545851], [47.372658, 8.547254], [47.378829, 8.519692], [47.414134, 8.551046], [47.362961, 8.535072], [47.421467, 8.501194], [47.365267, 8.547882], [47.387832, 8.529438], [47.35937, 8.592491], [47.384975, 8.508863], [47.374444, 8.495874], [47.39004, 8.536596], [47.410268, 8.542459], [47.369353, 8.537361], [47.413933, 8.526898], [47.385132, 8.508403], [47.361333, 8.525546], [47.377284, 8.512722], [47.394747, 8.490912], [47.39405, 8.493309], [47.385022, 8.508639], [47.367096, 8.540042], [47.385863, 8.527384], [47.350965, 8.582951], [47.375169, 8.528251], [47.363929, 8.547642], [47.403215, 8.547215], [47.33569, 8.53287], [47.372008, 8.529551], [47.372854, 8.542783], [47.378564, 8.541166], [47.381808, 8.540505], [47.359754, 8.535562], [47.350886, 8.534466], [47.363797, 8.575124], [47.368407, 8.560009], [47.358192, 8.571576], [47.369476, 8.526255], [47.368333, 8.524444], [47.394967, 8.519622], [47.406893, 8.584232], [47.363427, 8.535253], [47.399265, 8.502381], [47.384295, 8.54853], [47.37978, 8.554951], [47.362703, 8.515658], [47.42029, 8.548816], [47.383291, 8.499347], [47.37985, 8.527831], [47.419899, 8.500447], [47.37687, 8.536655], [47.367655, 8.523782], [47.37157, 8.515903], [47.391035, 8.478612], [47.386697, 8.496753], [47.366271, 8.540753], [47.404778, 8.565174], [47.3702, 8.521026], [47.409845, 8.541549], [47.412672, 8.514495], [47.382655, 8.529888], [47.357904, 8.510319], [47.37222, 8.54326], [47.388307, 8.536255], [47.367373, 8.52314], [47.376349, 8.528064], [47.3687, 8.521684], [47.414101, 8.544248], [47.398182, 8.536393], [47.395842, 8.540358], [47.40218, 8.496384], [47.404216, 8.560962], [47.352151, 8.558251], [47.39133, 8.536198], [47.370405, 8.518316], [47.366122, 8.54038], [47.373367, 8.480863], [47.41445, 8.517804], [47.341462, 8.530421], [47.420416, 8.538534], [47.374456, 8.529495], [47.384533, 8.534866], [47.377072, 8.541943], [47.388294, 8.517619], [47.37715, 8.523207], [47.362747, 8.550888], [47.386938, 8.539234], [47.364721, 8.554173], [47.372341, 8.545632], [47.351031, 8.559697], [47.373647, 8.597766], [47.374266, 8.542852], [47.427464, 8.551126], [47.366426, 8.545258], [47.416674, 8.514669], [47.384967, 8.547868], [47.414139, 8.549602], [47.382089, 8.528896], [47.405086, 8.560318], [47.362092, 8.550649], [47.36631, 8.531936], [47.418138, 8.50615], [47.404528, 8.576881], [47.364411, 8.546156], [47.374992, 8.52601], [47.426063, 8.493373], [47.365117, 8.553188], [47.374013, 8.544846], [47.358076, 8.519867], [47.431097, 8.550274], [47.402306, 8.543513], [47.408712, 8.54619], [47.413245, 8.532078], [47.385618, 8.518108], [47.399531, 8.538341], [47.358937, 8.534459], [47.391004, 8.523078], [47.429961, 8.549614], [47.427106, 8.545366], [47.407883, 8.503242], [47.371561, 8.51589], [47.376927, 8.538312], [47.372992, 8.547142], [47.362208, 8.548944], [47.422457, 8.55077], [47.362412, 8.547319], [47.372574, 8.521088], [47.353583, 8.554429], [47.389491, 8.521339], [47.338479, 8.530056], [47.361323, 8.525691], [47.365674, 8.549572], [47.372648, 8.534225], [47.356128, 8.559129], [47.372745, 8.510485], [47.351747, 8.566502], [47.377982, 8.511186], [47.370883, 8.544808], [47.41589, 8.545212], [47.39567, 8.522431], [47.371173, 8.530381], [47.399557, 8.586578], [47.420086, 8.51043], [47.417137, 8.545623], [47.357918, 8.520473], [47.369849, 8.552201], [47.388658, 8.488805], [47.373026, 8.475732], [47.344209, 8.52615], [47.372358, 8.486921], [47.344398, 8.529952], [47.365675, 8.563447], [47.37089, 8.544954], [47.363572, 8.535111], [47.378786, 8.542363], [47.398501, 8.591404], [47.377263, 8.538888], [47.410371, 8.539188], [47.380686, 8.504765], [47.380431, 8.541576], [47.364392, 8.533115], [47.390803, 8.50608], [47.422466, 8.536708], [47.419528, 8.506536], [47.373987, 8.540012], [47.385994, 8.518235], [47.361361, 8.522608], [47.413721, 8.545419], [47.427518, 8.547376], [47.400198, 8.489906], [47.367216, 8.545433], [47.390442, 8.509106], [47.355545, 8.528843], [47.369182, 8.532565], [47.378306, 8.530408], [47.388249, 8.49126], [47.377599, 8.522342], [47.394428, 8.534871], [47.376136, 8.527728], [47.386721, 8.488131], [47.390432, 8.509172], [47.394742, 8.536825], [47.348587, 8.534061], [47.390697, 8.55159], [47.366239, 8.52227], [47.39146, 8.519538], [47.379135, 8.559361], [47.361069, 8.535403], [47.40906, 8.543666], [47.414868, 8.54111], [47.385541, 8.532927], [47.370353, 8.51429], [47.389544, 8.521419], [47.401521, 8.581705], [47.373852, 8.546644], [47.414785, 8.512696], [47.379206, 8.53036], [47.371326, 8.536078], [47.370577, 8.519207], [47.377143, 8.540157], [47.422841, 8.494555], [47.422266, 8.549202], [47.412199, 8.546527], [47.419066, 8.537592], [47.381086, 8.565918], [47.393602, 8.501976], [47.366745, 8.544854], [47.361648, 8.56127], [47.373101, 8.547092], [47.408867, 8.54879], [47.385204, 8.50059], [47.387436, 8.5189], [47.371412, 8.53461], [47.379152, 8.529445], [47.373135, 8.567656], [47.389017, 8.469964], [47.422901, 8.538254], [47.371617, 8.546081], [47.374304, 8.502399], [47.370805, 8.517901], [47.361153, 8.590504], [47.371055, 8.519998], [47.350924, 8.577007], [47.388168, 8.516623], [47.383249, 8.484169], [47.373048, 8.555366], [47.399979, 8.490194], [47.395127, 8.536051], [47.376092, 8.527688], [47.374222, 8.544586], [47.366638, 8.54566], [47.363481, 8.551234], [47.410212, 8.54361], [47.369699, 8.536905], [47.365903, 8.500312], [47.368077, 8.546603], [47.387644, 8.486559], [47.368088, 8.485645], [47.384665, 8.477733], [47.370313, 8.556342], [47.408269, 8.577001], [47.377113, 8.535773], [47.379754, 8.527537], [47.366197, 8.516245], [47.377816, 8.507819], [47.406581, 8.56292], [47.379307, 8.537712], [47.365099, 8.55324], [47.413321, 8.545782], [47.399952, 8.587541], [47.368064, 8.541426], [47.352228, 8.509331], [47.428753, 8.545215], [47.406019, 8.548452], [47.376762, 8.543288], [47.364102, 8.536207], [47.396859, 8.548765], [47.365723, 8.535962], [47.366827, 8.54475], [47.381949, 8.5437], [47.36869, 8.482784], [47.377936, 8.5324], [47.376592, 8.527115], [47.378775, 8.514923], [47.392578, 8.502817], [47.384483, 8.543011], [47.371588, 8.515917], [47.358789, 8.558338], [47.356661, 8.522049], [47.370537, 8.548958], [47.361344, 8.563832], [47.358244, 8.588125], [47.414918, 8.545298], [47.384493, 8.480856], [47.353631, 8.554033], [47.413115, 8.563468], [47.365538, 8.56825], [47.382763, 8.529983], [47.396473, 8.579146], [47.380695, 8.496951], [47.419052, 8.506474], [47.41401, 8.550872], [47.350168, 8.534306], [47.380212, 8.526673], [47.388518, 8.520524], [47.348396, 8.534349], [47.343256, 8.535699], [47.368396, 8.497303], [47.404857, 8.59182], [47.365539, 8.513478], [47.350489, 8.561737], [47.394795, 8.490502], [47.411202, 8.546361], [47.361989, 8.525665], [47.363931, 8.553971], [47.36641, 8.545059], [47.374571, 8.545718], [47.369665, 8.5089], [47.378484, 8.493875], [47.349979, 8.527657], [47.373147, 8.503925], [47.383415, 8.540869], [47.392828, 8.506902], [47.373896, 8.538263], [47.364815, 8.537797], [47.393388, 8.499786], [47.383683, 8.510427], [47.382945, 8.540145], [47.360414, 8.526679], [47.419061, 8.544722], [47.36789, 8.551988], [47.380058, 8.570796], [47.392784, 8.532771], [47.391339, 8.536225], [47.408928, 8.539556], [47.41976, 8.509708], [47.381617, 8.516861], [47.368302, 8.534387], [47.385794, 8.525171], [47.392224, 8.541502], [47.393597, 8.538047], [47.389356, 8.528979], [47.377256, 8.538729], [47.369014, 8.537977], [47.402377, 8.546416], [47.375528, 8.548188], [47.364757, 8.54946], [47.371344, 8.547333], [47.404416, 8.57456], [47.418152, 8.554218], [47.397958, 8.532493], [47.400772, 8.54878], [47.378618, 8.569084], [47.374264, 8.542998], [47.366756, 8.541836], [47.389765, 8.511291], [47.36984, 8.552241], [47.373163, 8.536844], [47.399345, 8.505456], [47.381407, 8.52871], [47.369873, 8.536564], [47.376585, 8.526903], [47.374966, 8.52789], [47.374576, 8.538661], [47.376044, 8.553416], [47.409891, 8.541404], [47.361347, 8.549588], [47.370946, 8.535408], [47.38182, 8.516375], [47.401986, 8.545944], [47.397319, 8.553332], [47.405568, 8.539115], [47.379148, 8.538411], [47.390905, 8.522096], [47.359613, 8.563306], [47.371883, 8.542789], [47.372499, 8.517498], [47.379568, 8.527282], [47.390761, 8.489005], [47.380394, 8.541615], [47.361516, 8.547883], [47.366315, 8.53428], [47.386423, 8.518508], [47.368651, 8.537373], [47.412882, 8.520953], [47.377492, 8.509759], [47.369881, 8.509858], [47.371999, 8.601477], [47.372113, 8.539431], [47.370698, 8.516746], [47.383224, 8.553222], [47.418067, 8.510893], [47.341657, 8.530677], [47.403268, 8.547335], [47.376417, 8.527509], [47.369708, 8.543486], [47.373094, 8.503818], [47.398346, 8.591679], [47.389953, 8.536236], [47.371258, 8.558176], [47.409852, 8.529385], [47.384401, 8.531725], [47.359604, 8.593436], [47.374691, 8.535935], [47.425389, 8.536781], [47.384791, 8.531402], [47.398192, 8.536287], [47.3664, 8.522353], [47.393602, 8.537583], [47.374788, 8.527648], [47.408693, 8.546348], [47.408054, 8.547289], [47.362627, 8.535224], [47.369606, 8.525768], [47.38531, 8.51732], [47.370079, 8.543295], [47.407418, 8.56095], [47.398145, 8.546937], [47.397898, 8.534148], [47.374896, 8.540005], [47.365268, 8.547816], [47.373286, 8.531444], [47.374697, 8.523925], [47.344059, 8.52968], [47.363881, 8.53194], [47.378365, 8.526039], [47.33986, 8.524738], [47.403442, 8.556374], [47.377987, 8.521304], [47.358872, 8.557161], [47.366715, 8.541411], [47.364577, 8.566217], [47.378601, 8.499744], [47.325903, 8.518619], [47.369631, 8.467073], [47.398301, 8.479854], [47.363394, 8.533028], [47.379544, 8.542127], [47.37886, 8.525069], [47.340252, 8.529894], [47.402511, 8.492642], [47.383763, 8.539248], [47.387564, 8.519657], [47.326838, 8.517659], [47.366944, 8.562454], [47.393871, 8.504949], [47.406946, 8.536149], [47.370613, 8.516242], [47.368119, 8.541334], [47.380512, 8.519647], [47.405126, 8.482041], [47.339928, 8.529966], [47.376843, 8.522446], [47.376561, 8.524638], [47.41194, 8.528341], [47.345138, 8.53448], [47.392693, 8.510727], [47.390873, 8.48861], [47.376043, 8.535711], [47.410705, 8.550312], [47.378562, 8.510774], [47.383298, 8.543662], [47.367191, 8.528168], [47.383905, 8.530946], [47.38112, 8.553178], [47.362204, 8.547514], [47.371435, 8.522667], [47.419631, 8.548179], [47.400122, 8.494224], [47.384443, 8.503211], [47.357056, 8.555204], [47.369207, 8.505859], [47.422476, 8.55073], [47.361915, 8.566135], [47.427367, 8.546259], [47.368489, 8.53075], [47.368447, 8.564181], [47.368836, 8.501284], [47.389609, 8.538415], [47.376911, 8.532352], [47.387385, 8.52915], [47.396992, 8.480305], [47.367102, 8.5442], [47.389145, 8.527597], [47.389605, 8.491512], [47.384728, 8.484794], [47.401335, 8.582298], [47.384409, 8.531831], [47.377684, 8.543744], [47.381361, 8.514419], [47.370613, 8.54945], [47.364182, 8.554095], [47.373961, 8.501452], [47.416387, 8.545978], [47.385867, 8.493014], [47.386942, 8.535062], [47.385011, 8.530956], [47.393447, 8.544375], [47.410739, 8.5534], [47.38515, 8.537157], [47.378677, 8.514789], [47.378929, 8.542419], [47.38752, 8.488372], [47.377387, 8.51136], [47.381935, 8.529025], [47.41236, 8.55036], [47.3962, 8.48535], [47.37571, 8.529057], [47.37446, 8.527111], [47.403168, 8.489713], [47.36736, 8.545357], [47.378521, 8.541907], [47.362667, 8.563741], [47.42216, 8.512831], [47.376358, 8.528077], [47.390074, 8.517695], [47.387449, 8.51943], [47.386438, 8.496469], [47.379866, 8.537618], [47.381298, 8.515464], [47.37426, 8.532152], [47.405544, 8.581434], [47.410521, 8.553555], [47.390547, 8.52287], [47.39984, 8.490681], [47.411555, 8.545189], [47.372583, 8.534448], [47.377688, 8.510915], [47.380195, 8.541809], [47.387557, 8.500041], [47.382576, 8.532628], [47.380956, 8.551533], [47.373612, 8.519758], [47.40292, 8.57576], [47.367591, 8.537245], [47.370117, 8.512524], [47.372754, 8.534439], [47.373164, 8.532911], [47.376204, 8.489394], [47.379395, 8.522683], [47.361286, 8.535302], [47.37647, 8.541838], [47.406889, 8.481108], [47.389231, 8.510697], [47.382604, 8.552229], [47.370895, 8.53121], [47.413168, 8.550549], [47.356879, 8.514164], [47.387751, 8.529383], [47.394134, 8.525063], [47.377498, 8.511984], [47.352956, 8.556944], [47.370814, 8.559424], [47.377628, 8.509603], [47.369461, 8.525924], [47.43093, 8.549899], [47.377078, 8.527032], [47.366711, 8.544589], [47.384037, 8.504315], [47.380702, 8.512724], [47.377585, 8.529638], [47.374335, 8.524116], [47.380715, 8.492859], [47.384711, 8.500448], [47.414904, 8.541084], [47.391469, 8.48237], [47.391801, 8.481436], [47.368788, 8.528651], [47.346788, 8.535083], [47.379687, 8.510651], [47.374796, 8.484917], [47.371554, 8.518604], [47.372737, 8.529605], [47.384908, 8.531351], [47.409322, 8.545407], [47.373032, 8.534484], [47.362577, 8.522407], [47.376958, 8.520727], [47.429108, 8.548602], [47.393787, 8.472626], [47.373683, 8.530353], [47.416108, 8.565559], [47.368128, 8.545942], [47.378496, 8.528399], [47.370946, 8.535408], [47.421316, 8.547883], [47.371379, 8.54744], [47.345579, 8.534436], [47.343329, 8.535594], [47.400569, 8.506262], [47.389776, 8.511993], [47.373063, 8.533094], [47.378624, 8.542399], [47.381885, 8.48981], [47.414072, 8.550011], [47.387874, 8.540127], [47.390419, 8.527875], [47.381522, 8.513535], [47.408883, 8.539581], [47.374487, 8.539453], [47.36997, 8.510932], [47.345129, 8.53448], [47.357975, 8.579872], [47.415368, 8.483447], [47.391584, 8.52358], [47.380698, 8.528537], [47.375333, 8.485232], [47.371864, 8.517207], [47.397603, 8.481417], [47.392968, 8.524655], [47.407266, 8.490099], [47.389458, 8.53914], [47.369877, 8.547435], [47.373226, 8.514772], [47.383822, 8.527289], [47.371291, 8.536011], [47.358145, 8.520146], [47.374669, 8.549627], [47.369137, 8.544877], [47.35912, 8.521781], [47.354395, 8.526794], [47.39523, 8.540372], [47.372233, 8.542797], [47.3804, 8.54286], [47.404003, 8.563408], [47.368279, 8.546197], [47.407129, 8.586728], [47.408547, 8.546557], [47.356025, 8.522737], [47.373122, 8.534513], [47.397367, 8.531275], [47.354867, 8.560148], [47.397473, 8.53243], [47.397033, 8.512219], [47.386832, 8.490782], [47.377073, 8.548392], [47.402176, 8.495841], [47.37844, 8.566034], [47.387369, 8.519349], [47.359273, 8.557606], [47.373096, 8.475958], [47.424357, 8.548689], [47.377593, 8.498757], [47.377421, 8.533581], [47.396787, 8.53749], [47.385135, 8.48851], [47.354018, 8.555908], [47.386055, 8.518501], [47.370139, 8.547321], [47.364518, 8.533051], [47.395397, 8.532295], [47.370102, 8.519012], [47.369365, 8.506352], [47.358421, 8.526254], [47.368367, 8.492615], [47.370635, 8.561168], [47.333466, 8.518812], [47.413762, 8.546692], [47.390609, 8.522991], [47.409474, 8.561417], [47.374921, 8.544878], [47.419723, 8.504923], [47.375408, 8.547537], [47.355315, 8.554796], [47.412295, 8.558031], [47.361306, 8.525506], [47.355415, 8.531197], [47.376633, 8.544622], [47.387331, 8.530063], [47.422884, 8.547531], [47.371592, 8.536494], [47.377045, 8.535295], [47.372753, 8.535485], [47.372046, 8.534133], [47.389274, 8.529096], [47.345969, 8.531281], [47.37, 8.566359], [47.376897, 8.554547], [47.403322, 8.49748], [47.402753, 8.535294], [47.375817, 8.577658], [47.385502, 8.530449], [47.390873, 8.48861], [47.394133, 8.493125], [47.376353, 8.543769], [47.37137, 8.516151], [47.406705, 8.535985], [47.357388, 8.597346], [47.380927, 8.542394], [47.41234, 8.542117], [47.370208, 8.557015], [47.370443, 8.539026], [47.427505, 8.543134], [47.420122, 8.54758], [47.382021, 8.550164], [47.3796, 8.52772], [47.369059, 8.538004], [47.377256, 8.539656], [47.35031, 8.534494], [47.398922, 8.538965], [47.411091, 8.545788], [47.353592, 8.55439], [47.421443, 8.497867], [47.377153, 8.541958], [47.367498, 8.494107], [47.366793, 8.521685], [47.425871, 8.547474], [47.340713, 8.537221], [47.388781, 8.530808], [47.409409, 8.545727], [47.37492, 8.553419], [47.369353, 8.537308], [47.389016, 8.548628], [47.367793, 8.539633], [47.371103, 8.523521], [47.377265, 8.538676], [47.380714, 8.504712], [47.341126, 8.530692], [47.359361, 8.552207], [47.379308, 8.495229], [47.383778, 8.530096], [47.373543, 8.495128], [47.385499, 8.52886], [47.378024, 8.554279], [47.374713, 8.549641], [47.40779, 8.552239], [47.370723, 8.535205], [47.401031, 8.488254], [47.369772, 8.480515], [47.38607, 8.493482], [47.36931, 8.525762], [47.400196, 8.494066], [47.371775, 8.493676], [47.338272, 8.530012], [47.356773, 8.523534], [47.378096, 8.51054], [47.365422, 8.539226], [47.365028, 8.53146], [47.42706, 8.546412], [47.408952, 8.545572], [47.380193, 8.542961], [47.358238, 8.518891], [47.356458, 8.510158], [47.369298, 8.505768], [47.352946, 8.556984], [47.370489, 8.549275], [47.364257, 8.533139], [47.338042, 8.525839], [47.380301, 8.520106], [47.367166, 8.523176], [47.388812, 8.522782], [47.370116, 8.511663], [47.390941, 8.522097], [47.368461, 8.559971], [47.407651, 8.584023], [47.367076, 8.495013], [47.404619, 8.594929], [47.366948, 8.548023], [47.36647, 8.533105], [47.370759, 8.522733], [47.355154, 8.532158], [47.357797, 8.521847], [47.372951, 8.533556], [47.368327, 8.548687], [47.385914, 8.532498], [47.386272, 8.53179], [47.372758, 8.534969], [47.338842, 8.538228], [47.360971, 8.531456], [47.409344, 8.549714], [47.335707, 8.540611], [47.366955, 8.544448], [47.383729, 8.512242], [47.391909, 8.483491], [47.382137, 8.514197], [47.421161, 8.549947], [47.399767, 8.543738], [47.400836, 8.491906], [47.360008, 8.532535], [47.396122, 8.493946], [47.375139, 8.547438], [47.38871, 8.520276], [47.420207, 8.509015], [47.392461, 8.502762], [47.360396, 8.526692], [47.366959, 8.543098], [47.372508, 8.517538], [47.405152, 8.504897], [47.378748, 8.49441], [47.385961, 8.517943], [47.361804, 8.526191], [47.409158, 8.547497], [47.359448, 8.511661], [47.397941, 8.532479], [47.373288, 8.533073], [47.37525, 8.53302], [47.37884, 8.508952], [47.390362, 8.47946], [47.387816, 8.488457], [47.384848, 8.508053], [47.378671, 8.523132], [47.397996, 8.474695], [47.369495, 8.526123], [47.362997, 8.535033], [47.409584, 8.53778], [47.384316, 8.531246], [47.36363, 8.558188], [47.386751, 8.547601], [47.359701, 8.566313], [47.375626, 8.54823], [47.398225, 8.542355], [47.34528, 8.535621], [47.377809, 8.525869], [47.366041, 8.540365], [47.353685, 8.600588], [47.366747, 8.541822], [47.363792, 8.517481], [47.364309, 8.52182], [47.427602, 8.549949], [47.364436, 8.531249], [47.369158, 8.527559], [47.42967, 8.537797], [47.402227, 8.552719], [47.396658, 8.504197], [47.409319, 8.546692], [47.355509, 8.527889], [47.386918, 8.486307], [47.371782, 8.516331], [47.410753, 8.542561], [47.393373, 8.513099], [47.372685, 8.534106], [47.361547, 8.535241], [47.378736, 8.529675], [47.354297, 8.557727], [47.372273, 8.53578], [47.345005, 8.529594], [47.387384, 8.518726], [47.390585, 8.508208], [47.376491, 8.543467], [47.357428, 8.521879], [47.368411, 8.546504], [47.391696, 8.513555], [47.397991, 8.47431], [47.336844, 8.539245], [47.376861, 8.543316], [47.394122, 8.540574], [47.367378, 8.523577], [47.376876, 8.535106], [47.361496, 8.551907], [47.34031, 8.524721], [47.371633, 8.521625], [47.356608, 8.551329], [47.384801, 8.531336], [47.354039, 8.557417], [47.418149, 8.528044], [47.397087, 8.493687], [47.375314, 8.485377], [47.369333, 8.557195], [47.387667, 8.521182], [47.407793, 8.560375], [47.40895, 8.543915], [47.376035, 8.535645], [47.377486, 8.543806], [47.38936, 8.51617], [47.405165, 8.552105], [47.367013, 8.544118], [47.393778, 8.493608], [47.36751, 8.546631], [47.415629, 8.508035], [47.334289, 8.532722], [47.327122, 8.529599], [47.419645, 8.548551], [47.358918, 8.516416], [47.367422, 8.495523], [47.391025, 8.489633], [47.380223, 8.542618], [47.389718, 8.542086], [47.381558, 8.513615], [47.379645, 8.527681], [47.378219, 8.531969], [47.4057, 8.591096], [47.419247, 8.505828], [47.353454, 8.530217], [47.405169, 8.480293], [47.392212, 8.476715], [47.405811, 8.590807], [47.405811, 8.590807], [47.363596, 8.575411], [47.398535, 8.541911], [47.34005, 8.530339], [47.358218, 8.519115], [47.364798, 8.537678], [47.421645, 8.550183], [47.39086, 8.522082], [47.383342, 8.511374], [47.393514, 8.473018], [47.378085, 8.526179], [47.373337, 8.53559], [47.379187, 8.518057], [47.403822, 8.560755], [47.384498, 8.480379], [47.355942, 8.535417], [47.389991, 8.52564], [47.36218, 8.50413], [47.378707, 8.54211], [47.405262, 8.55791], [47.390844, 8.504478], [47.385839, 8.530006], [47.387767, 8.51529], [47.409549, 8.529153], [47.394294, 8.525212], [47.361326, 8.570332], [47.399556, 8.516589], [47.366192, 8.540593], [47.386807, 8.502357], [47.407449, 8.548456], [47.375242, 8.518586], [47.367293, 8.520226], [47.378386, 8.530476], [47.359843, 8.535669], [47.373908, 8.527484], [47.375198, 8.484209], [47.380772, 8.519758], [47.392196, 8.524533], [47.377258, 8.543152], [47.413049, 8.540396], [47.410439, 8.532975], [47.377256, 8.529195], [47.37598, 8.559175], [47.405175, 8.480611], [47.399175, 8.521774], [47.406862, 8.550577], [47.351148, 8.568925], [47.363007, 8.526374], [47.362136, 8.503997], [47.391478, 8.514677], [47.382371, 8.530438], [47.382563, 8.563022], [47.384368, 8.548399], [47.422903, 8.551256], [47.369012, 8.524882], [47.381875, 8.556942], [47.369122, 8.503368], [47.410272, 8.529712], [47.383085, 8.513845], [47.375561, 8.517149], [47.383937, 8.530444], [47.367361, 8.544337], [47.354896, 8.574696], [47.403374, 8.49866], [47.397473, 8.532417], [47.420287, 8.503318], [47.367099, 8.539777], [47.408291, 8.529883], [47.385317, 8.521373], [47.389008, 8.536336], [47.379179, 8.527446], [47.364532, 8.566243], [47.392244, 8.524176], [47.386919, 8.534624], [47.345345, 8.536337], [47.377641, 8.526488], [47.368154, 8.541441], [47.379374, 8.517279], [47.372892, 8.535951], [47.419098, 8.506368], [47.405244, 8.49092], [47.390976, 8.523184], [47.3874, 8.518965], [47.382491, 8.501185], [47.381717, 8.531206], [47.373132, 8.535373], [47.359745, 8.594617], [47.374386, 8.502242], [47.424305, 8.549417], [47.359715, 8.550904], [47.380014, 8.543752], [47.379663, 8.527668], [47.368488, 8.530856], [47.37454, 8.539547], [47.35631, 8.573641], [47.373987, 8.544713], [47.39198, 8.530264], [47.374463, 8.537255], [47.40931, 8.54485], [47.389758, 8.512072], [47.378417, 8.540501], [47.370381, 8.509272], [47.368311, 8.5344], [47.41078, 8.550036], [47.371402, 8.555372], [47.410691, 8.572189], [47.347709, 8.562764], [47.364436, 8.531262], [47.358144, 8.558959], [47.371521, 8.547628], [47.414189, 8.550067], [47.358693, 8.586413], [47.382231, 8.551784], [47.405893, 8.548423], [47.406866, 8.536055], [47.38068, 8.50054], [47.378691, 8.529648], [47.413029, 8.516795], [47.399501, 8.540513], [47.388868, 8.515829], [47.369571, 8.5286], [47.37831, 8.541333], [47.37845, 8.510229], [47.385282, 8.508711], [47.371704, 8.524619], [47.410491, 8.479628], [47.360915, 8.525061], [47.36918, 8.528063], [47.334981, 8.519333], [47.382261, 8.533535], [47.394194, 8.527223], [47.353444, 8.55759], [47.344302, 8.532584], [47.368042, 8.53895], [47.368342, 8.498229], [47.3585, 8.510119], [47.376301, 8.525573], [47.407261, 8.503428], [47.374098, 8.525396], [47.375483, 8.549114], [47.3877, 8.486388], [47.396616, 8.510687], [47.366529, 8.566219], [47.374391, 8.522025], [47.376175, 8.528418], [47.374237, 8.535476], [47.37252, 8.534407], [47.412293, 8.556361], [47.391792, 8.518644], [47.361447, 8.551311], [47.403188, 8.547254], [47.398956, 8.59001], [47.373429, 8.520033], [47.37187, 8.522278], [47.368737, 8.537746], [47.363337, 8.533318], [47.373846, 8.530211], [47.404181, 8.485109], [47.377724, 8.525324], [47.382094, 8.488596], [47.410875, 8.561592], [47.36577, 8.539578], [47.414798, 8.551219], [47.376603, 8.543933], [47.374717, 8.52758], [47.372889, 8.521081], [47.381894, 8.5475], [47.391529, 8.54268], [47.419669, 8.547995], [47.39386, 8.493477], [47.401869, 8.551532], [47.370179, 8.513585], [47.382411, 8.532955], [47.366718, 8.545767], [47.352306, 8.576494], [47.352797, 8.524512], [47.376056, 8.559614], [47.392598, 8.475848], [47.342035, 8.530645], [47.379951, 8.520999], [47.370553, 8.54447], [47.370886, 8.548237], [47.346368, 8.564628], [47.369069, 8.537872], [47.385661, 8.532585], [47.388337, 8.540653], [47.360014, 8.51661], [47.377386, 8.501785], [47.366482, 8.540334], [47.421256, 8.501601], [47.387311, 8.518844], [47.391624, 8.513554], [47.376031, 8.511081], [47.353818, 8.557055], [47.377664, 8.496878], [47.368339, 8.54645], [47.414982, 8.515735], [47.357531, 8.600076], [47.391015, 8.520972], [47.374394, 8.525561], [47.375585, 8.501021], [47.375908, 8.523288], [47.397767, 8.533734], [47.375652, 8.54835], [47.38619, 8.521338], [47.373699, 8.517125], [47.39866, 8.539184], [47.413452, 8.530134], [47.381427, 8.484795], [47.363822, 8.559674], [47.378246, 8.548059], [47.370278, 8.548834], [47.386714, 8.547613], [47.410999, 8.54315], [47.368629, 8.518691], [47.380249, 8.541771], [47.400698, 8.544274], [47.411621, 8.559819], [47.379708, 8.515154], [47.361273, 8.52336], [47.369831, 8.538152], [47.412179, 8.550423], [47.385069, 8.508455], [47.380507, 8.512482], [47.374223, 8.502345], [47.36787, 8.560607], [47.376119, 8.494702], [47.378032, 8.493098], [47.394174, 8.527461], [47.370499, 8.517908], [47.39754, 8.489324], [47.357853, 8.572178], [47.377846, 8.54188], [47.355028, 8.529256], [47.38, 8.553671], [47.375176, 8.54736], [47.339569, 8.53553], [47.369337, 8.525736], [47.408156, 8.545992], [47.375055, 8.48516], [47.383175, 8.506073], [47.383789, 8.532745], [47.414076, 8.541186], [47.388435, 8.52847], [47.354945, 8.509373], [47.348558, 8.563351], [47.389262, 8.521837], [47.356902, 8.555319], [47.373348, 8.531511], [47.37068, 8.516746], [47.376381, 8.525615], [47.387028, 8.501858], [47.384732, 8.543294], [47.37893, 8.542406], [47.377669, 8.525455], [47.338254, 8.528172], [47.418887, 8.498002], [47.38216, 8.488213], [47.383313, 8.484037], [47.369335, 8.491946], [47.374161, 8.513943], [47.36671, 8.541914], [47.408068, 8.544878], [47.37434, 8.495527], [47.420133, 8.508258], [47.414209, 8.518555], [47.378692, 8.516153], [47.371513, 8.542835], [47.348478, 8.534191], [47.370235, 8.532533], [47.37513, 8.549345], [47.39161, 8.485697], [47.361257, 8.560733], [47.366404, 8.538188], [47.36799, 8.51975], [47.388636, 8.509785], [47.41553, 8.541547], [47.392232, 8.502293], [47.33658, 8.530123], [47.394084, 8.475691], [47.372271, 8.536044], [47.361793, 8.560241], [47.40591, 8.590796], [47.393845, 8.512671], [47.378804, 8.527227], [47.384633, 8.530061], [47.381736, 8.545258], [47.392776, 8.534506], [47.393369, 8.49303], [47.360466, 8.535378], [47.360059, 8.531835], [47.372805, 8.543206], [47.374151, 8.515015], [47.418252, 8.548482], [47.424705, 8.543381], [47.360071, 8.547615], [47.372919, 8.520764], [47.377396, 8.521], [47.403673, 8.571444], [47.373511, 8.552158], [47.40036, 8.543803], [47.377525, 8.522566], [47.351422, 8.57674], [47.392815, 8.522784], [47.389742, 8.511767], [47.389228, 8.541546], [47.403887, 8.567937], [47.381531, 8.498001], [47.381749, 8.541947], [47.364564, 8.536812], [47.378435, 8.550857], [47.375744, 8.549106], [47.354936, 8.534245], [47.375416, 8.561653], [47.368448, 8.548306], [47.396006, 8.5211], [47.378861, 8.524976], [47.388804, 8.522716], [47.370462, 8.549261], [47.378253, 8.52748], [47.378977, 8.551557], [47.368762, 8.540818], [47.391917, 8.517825], [47.393108, 8.474162], [47.416508, 8.553071], [47.417986, 8.560139], [47.381077, 8.503316], [47.373862, 8.529509], [47.368126, 8.532993], [47.406722, 8.586971], [47.397275, 8.493757], [47.418241, 8.543048], [47.375789, 8.549121], [47.372716, 8.534663], [47.368449, 8.550927], [47.380732, 8.5782], [47.378074, 8.529225], [47.3825, 8.505172], [47.362478, 8.533817], [47.41418, 8.535026], [47.36929, 8.491972], [47.369589, 8.564231], [47.41342, 8.54581], [47.37126, 8.520148], [47.368283, 8.550474], [47.397465, 8.532337], [47.3666, 8.536417], [47.398159, 8.536048], [47.373995, 8.501771], [47.410861, 8.563076], [47.386573, 8.479651], [47.382682, 8.529915], [47.411267, 8.567577], [47.368964, 8.501035], [47.373622, 8.549963], [47.358848, 8.55221], [47.412899, 8.547589], [47.375597, 8.535305], [47.377045, 8.521947], [47.377344, 8.529422], [47.371177, 8.534711], [47.369532, 8.553346], [47.382544, 8.548189], [47.349774, 8.532286], [47.38008, 8.537808], [47.374291, 8.541131], [47.386318, 8.525897], [47.37055, 8.469924], [47.365124, 8.516488], [47.40324, 8.547427], [47.413456, 8.532586], [47.378954, 8.538857], [47.425174, 8.546095], [47.409847, 8.545087], [47.399225, 8.59187], [47.380256, 8.552273], [47.389867, 8.526393], [47.390362, 8.491368], [47.371162, 8.54288], [47.366196, 8.557023], [47.378495, 8.575186], [47.372398, 8.547183], [47.378966, 8.542393], [47.412714, 8.537792], [47.387724, 8.499515], [47.378624, 8.519502], [47.377765, 8.498707], [47.422359, 8.550675], [47.361865, 8.507102], [47.378454, 8.509765], [47.375817, 8.547108], [47.422247, 8.538969], [47.422415, 8.512412], [47.365703, 8.537154], [47.369546, 8.543496], [47.412151, 8.546831], [47.410422, 8.572051], [47.42029, 8.508778], [47.376508, 8.524584], [47.371586, 8.51025], [47.387661, 8.529447], [47.398859, 8.506427], [47.384617, 8.53463], [47.375512, 8.563827], [47.363752, 8.530361], [47.374683, 8.537723], [47.383509, 8.536607], [47.366931, 8.544209], [47.378018, 8.524694], [47.389313, 8.54021], [47.397482, 8.532444], [47.367898, 8.544613], [47.376454, 8.52551], [47.366058, 8.545211], [47.376021, 8.541816], [47.391332, 8.50621], [47.365923, 8.534841], [47.378299, 8.527375], [47.381915, 8.52925], [47.410886, 8.563275], [47.418123, 8.510709], [47.386723, 8.544858], [47.378463, 8.550752], [47.379634, 8.542102], [47.37239, 8.547156], [47.379828, 8.542477], [47.386936, 8.473288], [47.385007, 8.537075], [47.375906, 8.529313], [47.376229, 8.544508], [47.42751, 8.547323], [47.43, 8.549337], [47.409065, 8.54788], [47.386109, 8.521389], [47.388448, 8.491105], [47.366897, 8.533603], [47.34706, 8.528207], [47.411193, 8.485525], [47.360351, 8.552188], [47.388402, 8.525264], [47.379634, 8.542102], [47.370179, 8.548792], [47.372822, 8.535831], [47.377515, 8.527531], [47.376774, 8.559775], [47.369523, 8.526031], [47.41256, 8.546389], [47.398334, 8.479205], [47.349382, 8.562733], [47.390789, 8.508556], [47.382302, 8.533006], [47.361298, 8.5254], [47.385302, 8.507585], [47.373041, 8.51927], [47.370215, 8.548806], [47.366527, 8.545088], [47.374486, 8.536699], [47.370161, 8.548791], [47.404656, 8.574883], [47.358944, 8.551589], [47.389904, 8.475358], [47.382219, 8.530356], [47.411099, 8.535506], [47.406493, 8.584648], [47.371498, 8.557479], [47.407587, 8.564889], [47.361411, 8.54763], [47.416923, 8.545459], [47.39863, 8.506872], [47.373736, 8.546549], [47.389386, 8.51625], [47.377944, 8.492871], [47.407206, 8.564298], [47.366738, 8.541782], [47.369397, 8.537481], [47.402436, 8.535579], [47.409013, 8.542989], [47.374298, 8.521414], [47.370188, 8.548792], [47.367611, 8.552935], [47.359781, 8.594565], [47.427178, 8.536818], [47.378173, 8.509972], [47.386417, 8.531647], [47.386961, 8.533976], [47.40762, 8.543716], [47.368599, 8.520067], [47.329972, 8.533547], [47.364908, 8.504846], [47.378232, 8.51723], [47.408117, 8.53881], [47.383087, 8.530837], [47.377262, 8.556832], [47.41941, 8.547777], [47.373047, 8.532949], [47.353033, 8.553531], [47.366989, 8.523795], [47.385575, 8.528424], [47.393677, 8.491765], [47.3684, 8.556924], [47.389053, 8.538191], [47.393408, 8.524703], [47.355443, 8.600189], [47.370361, 8.514396], [47.391532, 8.519499], [47.369436, 8.541838], [47.373972, 8.527327], [47.366065, 8.559404], [47.378638, 8.539976], [47.363898, 8.549045], [47.41919, 8.508106], [47.373266, 8.531589], [47.388762, 8.491178], [47.420132, 8.548481], [47.350027, 8.56673], [47.374488, 8.539321], [47.3783, 8.509855], [47.414215, 8.518886], [47.404578, 8.483965], [47.374415, 8.527137], [47.365184, 8.555639], [47.409878, 8.540874], [47.393799, 8.509849], [47.380046, 8.554454], [47.371392, 8.546129], [47.382514, 8.540083], [47.375375, 8.560341], [47.41384, 8.527187], [47.391023, 8.521012], [47.370642, 8.535137], [47.347628, 8.566402], [47.403265, 8.555125], [47.364084, 8.547447], [47.425944, 8.493583], [47.391556, 8.54268], [47.371942, 8.516494], [47.378802, 8.539794], [47.379981, 8.548135], [47.409608, 8.537132], [47.373629, 8.519785], [47.391358, 8.538954], [47.381038, 8.503659], [47.366354, 8.540556], [47.355289, 8.596731], [47.387199, 8.519226], [47.378048, 8.513836], [47.375182, 8.518254], [47.408956, 8.539437], [47.371707, 8.519561], [47.378003, 8.508949], [47.374749, 8.48906], [47.369181, 8.527997], [47.404273, 8.560658], [47.400311, 8.494267], [47.374833, 8.527635], [47.374284, 8.543792], [47.409988, 8.550059], [47.368951, 8.524722], [47.40017, 8.586459], [47.380381, 8.512453], [47.386824, 8.502517], [47.366392, 8.559067], [47.388596, 8.48675], [47.360976, 8.531006], [47.383699, 8.5155], [47.406385, 8.583744], [47.374109, 8.502011], [47.403169, 8.547333], [47.370544, 8.549236], [47.376521, 8.526995], [47.402391, 8.535539], [47.390752, 8.548624], [47.398109, 8.535623], [47.375695, 8.537333], [47.360305, 8.550426], [47.392477, 8.506908], [47.371109, 8.530512], [47.38453, 8.539052], [47.397012, 8.530752], [47.41072, 8.553413], [47.377461, 8.541673], [47.380501, 8.525659], [47.403325, 8.534803], [47.400374, 8.548931], [47.361589, 8.547779], [47.415221, 8.562373], [47.391058, 8.523066], [47.378129, 8.509918], [47.379612, 8.542579], [47.37253, 8.528582], [47.365806, 8.539512], [47.364402, 8.55643], [47.366443, 8.540691], [47.41996, 8.548544], [47.357803, 8.552413], [47.404501, 8.575012], [47.388282, 8.485605], [47.364523, 8.566229], [47.37962, 8.523628], [47.385841, 8.525013], [47.381576, 8.513603], [47.358546, 8.532082], [47.373494, 8.519835], [47.420226, 8.508936], [47.394494, 8.479091], [47.390923, 8.52211], [47.366679, 8.501995], [47.374407, 8.517484], [47.368272, 8.536571], [47.370233, 8.548819], [47.390694, 8.522582], [47.377856, 8.519884], [47.402534, 8.535648], [47.382367, 8.49909], [47.350169, 8.532307], [47.410641, 8.543924], [47.364276, 8.546259], [47.423053, 8.503797], [47.357457, 8.521628], [47.361338, 8.549601], [47.381935, 8.529025], [47.409443, 8.549703], [47.336878, 8.520482], [47.396694, 8.537753], [47.374821, 8.520299], [47.363959, 8.530326], [47.374762, 8.54461], [47.385031, 8.508639], [47.427187, 8.536818], [47.374184, 8.5192], [47.391061, 8.538895], [47.36454, 8.531688], [47.363993, 8.531584], [47.368258, 8.561449], [47.370372, 8.527544], [47.388954, 8.485896], [47.385306, 8.542485], [47.386538, 8.541636], [47.376608, 8.54339], [47.385722, 8.508786], [47.372422, 8.545647], [47.368843, 8.501496], [47.375009, 8.545118], [47.365987, 8.546997], [47.404243, 8.560949], [47.41771, 8.483056], [47.378767, 8.519651], [47.37843, 8.525881], [47.367973, 8.495361], [47.39595, 8.540307], [47.391835, 8.484615], [47.374308, 8.530803], [47.391099, 8.52259], [47.423119, 8.542778], [47.382457, 8.537592], [47.430624, 8.541529], [47.374751, 8.523873], [47.409168, 8.547458], [47.373657, 8.519719], [47.33854, 8.530176], [47.372531, 8.528542], [47.37718, 8.522002], [47.372775, 8.528441], [47.393767, 8.53915], [47.356887, 8.553201], [47.374281, 8.525121], [47.371278, 8.536434], [47.387256, 8.539863], [47.378586, 8.540664], [47.419306, 8.556734], [47.377071, 8.569978], [47.373662, 8.536351], [47.364789, 8.554624], [47.385966, 8.504804], [47.388705, 8.546436], [47.391039, 8.481169], [47.35479, 8.526829], [47.370027, 8.519262], [47.368409, 8.556924], [47.354552, 8.574001], [47.378731, 8.542507], [47.335594, 8.525008], [47.360476, 8.563404], [47.382749, 8.514143], [47.346614, 8.528714], [47.369755, 8.540428], [47.35159, 8.53039], [47.365911, 8.501437], [47.36652, 8.501754], [47.398276, 8.536964], [47.399798, 8.544255], [47.380989, 8.556526], [47.377995, 8.510776], [47.391625, 8.513395], [47.368836, 8.501244], [47.382219, 8.530342], [47.413672, 8.554217], [47.371935, 8.519221], [47.379062, 8.538846], [47.373671, 8.536338], [47.413023, 8.550612], [47.380524, 8.512562], [47.379124, 8.519963], [47.363034, 8.527355], [47.366496, 8.540784], [47.389527, 8.521353], [47.37214, 8.539431], [47.352104, 8.558488], [47.394072, 8.475996], [47.385563, 8.53061], [47.378388, 8.523656], [47.422439, 8.550822], [47.392196, 8.494464], [47.387272, 8.519121], [47.380219, 8.542988], [47.353827, 8.600737], [47.419062, 8.538055], [47.364853, 8.530927], [47.392086, 8.500502], [47.398093, 8.501682], [47.36167, 8.532755], [47.415512, 8.553712], [47.411667, 8.561596], [47.337956, 8.538686], [47.377459, 8.539038], [47.37305, 8.51923], [47.373334, 8.553691], [47.376402, 8.528131], [47.364149, 8.565811], [47.374261, 8.524327], [47.37868, 8.523132], [47.374527, 8.539971], [47.341489, 8.530409], [47.353644, 8.554589], [47.414837, 8.541533], [47.386327, 8.52591], [47.374858, 8.532655], [47.41403, 8.550673], [47.398861, 8.533148], [47.422716, 8.550961], [47.374405, 8.55182], [47.390612, 8.489625], [47.368946, 8.540358], [47.364707, 8.554689], [47.364614, 8.566139], [47.368953, 8.501233], [47.364295, 8.546101], [47.38786, 8.486603], [47.381728, 8.530928], [47.406277, 8.562741], [47.417336, 8.55387], [47.351626, 8.583429], [47.369814, 8.552161], [47.377817, 8.529815], [47.366426, 8.548065], [47.39276, 8.532453], [47.394365, 8.489328], [47.373573, 8.534363], [47.412813, 8.522515], [47.344518, 8.530656], [47.373662, 8.536351], [47.349466, 8.532412], [47.37553, 8.524352], [47.340635, 8.530272], [47.391405, 8.55089], [47.362729, 8.515712], [47.415503, 8.545244], [47.367788, 8.534469], [47.367427, 8.506764], [47.372817, 8.483938], [47.374238, 8.542984], [47.383035, 8.473967], [47.370152, 8.548791], [47.420645, 8.502477], [47.378279, 8.530381], [47.402454, 8.53558], [47.387361, 8.519282], [47.403725, 8.485803], [47.377339, 8.535619], [47.37865, 8.496368], [47.409566, 8.53778], [47.395531, 8.493709], [47.369312, 8.543517], [47.373779, 8.537333], [47.389487, 8.483708], [47.371448, 8.562642], [47.364758, 8.554067], [47.372982, 8.533133], [47.371159, 8.518517], [47.379495, 8.544417], [47.375614, 8.527797], [47.334639, 8.529964], [47.414423, 8.4805], [47.376168, 8.516698], [47.412921, 8.54629], [47.401715, 8.581153], [47.39408, 8.525035], [47.371881, 8.52592], [47.391273, 8.523229], [47.364291, 8.52182], [47.377486, 8.543793], [47.374753, 8.541723], [47.385117, 8.508125], [47.361537, 8.565293], [47.370088, 8.548909], [47.394857, 8.520799], [47.386096, 8.548342], [47.402544, 8.487131], [47.42263, 8.550574], [47.392705, 8.490898], [47.365258, 8.501027], [47.415646, 8.512952], [47.398164, 8.534524], [47.378759, 8.519571], [47.371494, 8.54768], [47.398015, 8.534163], [47.36922, 8.516121], [47.35839, 8.505444], [47.369434, 8.537297], [47.413714, 8.550773], [47.379885, 8.516482], [47.389438, 8.485111], [47.379487, 8.537742], [47.383945, 8.532404], [47.374677, 8.545933], [47.419134, 8.506356], [47.387493, 8.519523], [47.401277, 8.534456], [47.376655, 8.534744], [47.38709, 8.497052], [47.364336, 8.529553], [47.380993, 8.507578], [47.376528, 8.527233], [47.411126, 8.542039], [47.367209, 8.544321], [47.397952, 8.534122], [47.371862, 8.522133], [47.381406, 8.517347], [47.370769, 8.515013], [47.385278, 8.550113], [47.421257, 8.507366], [47.387961, 8.485387], [47.393788, 8.472586], [47.403885, 8.569103], [47.36767, 8.495051], [47.376178, 8.488254], [47.41236, 8.550373], [47.387966, 8.485811], [47.376758, 8.538097], [47.371456, 8.547852], [47.374823, 8.552226], [47.371716, 8.523388], [47.362198, 8.526398], [47.373077, 8.525931], [47.360966, 8.531072], [47.37869, 8.54203], [47.367325, 8.545316], [47.372816, 8.524006], [47.431364, 8.516464], [47.405176, 8.557524], [47.364347, 8.5501], [47.379481, 8.52977], [47.375939, 8.541946], [47.37278, 8.538293], [47.385193, 8.530708], [47.429636, 8.487227], [47.361466, 8.5258], [47.35761, 8.521618], [47.348896, 8.528019], [47.369027, 8.503009], [47.39036, 8.505316], [47.381158, 8.491531], [47.403539, 8.496358], [47.38959, 8.493115], [47.414181, 8.541533], [47.382147, 8.533215], [47.404731, 8.59452], [47.382387, 8.514347], [47.378624, 8.519529], [47.411882, 8.546706], [47.414639, 8.475429], [47.40505, 8.482543], [47.366744, 8.535494], [47.397923, 8.531472], [47.373897, 8.544778], [47.367016, 8.513216], [47.364814, 8.566778], [47.395757, 8.54543], [47.398987, 8.541589], [47.398718, 8.539702], [47.369909, 8.602663], [47.412944, 8.481955], [47.404671, 8.595062], [47.386775, 8.499959], [47.364577, 8.566204], [47.36058, 8.597468], [47.370667, 8.524942], [47.350178, 8.532307], [47.426312, 8.541877], [47.367136, 8.534893], [47.334935, 8.529983], [47.426297, 8.554641], [47.420521, 8.482568], [47.377003, 8.539757], [47.372011, 8.534953], [47.4106, 8.549992], [47.350952, 8.583269], [47.422914, 8.54345], [47.347114, 8.563783], [47.362332, 8.526427], [47.376647, 8.528957], [47.367853, 8.560514], [47.392459, 8.50304], [47.395384, 8.533672], [47.375987, 8.488436], [47.377031, 8.539678], [47.427089, 8.551754], [47.396675, 8.494526], [47.366763, 8.541995], [47.398876, 8.547575], [47.371335, 8.530331], [47.402418, 8.535579], [47.36891, 8.540424], [47.422993, 8.551192], [47.368924, 8.524708], [47.372572, 8.517486], [47.390168, 8.491934], [47.369292, 8.525761], [47.405271, 8.480918], [47.383667, 8.573376], [47.391229, 8.515427], [47.357287, 8.600177], [47.360277, 8.568986], [47.408673, 8.546507], [47.378732, 8.539554], [47.382953, 8.528914], [47.378057, 8.513836], [47.36115, 8.535378], [47.360286, 8.568999], [47.36034, 8.569001], [47.360242, 8.568879], [47.384609, 8.502711], [47.371379, 8.547506], [47.423335, 8.494551], [47.402707, 8.501761], [47.414492, 8.533323], [47.389163, 8.482722], [47.351093, 8.559738], [47.370609, 8.512799], [47.364313, 8.557315], [47.352614, 8.576276], [47.379528, 8.527639], [47.381952, 8.512763], [47.377008, 8.543915], [47.371878, 8.522358], [47.352027, 8.576435], [47.410461, 8.569905], [47.375615, 8.526777], [47.413577, 8.523538], [47.374429, 8.55672], [47.393604, 8.538219], [47.361739, 8.526362], [47.334368, 8.533822], [47.369184, 8.527666], [47.407662, 8.583785], [47.402143, 8.579705], [47.409188, 8.546279], [47.384161, 8.528581], [47.399405, 8.476126], [47.405591, 8.549941], [47.369305, 8.523418], [47.399055, 8.542094], [47.410841, 8.537979], [47.398032, 8.532309], [47.375203, 8.54458], [47.408209, 8.546166], [47.369399, 8.525803], [47.393766, 8.502735], [47.356282, 8.551521], [47.384972, 8.508201], [47.393385, 8.493296], [47.367825, 8.494749], [47.360477, 8.596963], [47.362533, 8.520394], [47.398259, 8.536858], [47.376847, 8.542852], [47.371486, 8.547535], [47.365099, 8.521121], [47.375381, 8.557865], [47.391644, 8.519117], [47.413111, 8.479308], [47.363627, 8.535085], [47.37776, 8.537707], [47.359954, 8.532547], [47.364006, 8.526315], [47.368984, 8.541127], [47.377606, 8.537862], [47.406088, 8.590071], [47.387574, 8.488386], [47.419819, 8.500379], [47.372766, 8.535022], [47.373486, 8.529276], [47.419202, 8.546898], [47.381171, 8.5422], [47.36868, 8.541862], [47.359024, 8.558237], [47.366775, 8.534157], [47.410155, 8.574576], [47.390283, 8.509699], [47.402126, 8.495456], [47.374509, 8.539957], [47.370242, 8.548833], [47.385415, 8.542434], [47.369453, 8.529684], [47.373328, 8.525036], [47.38958, 8.5224], [47.399865, 8.5448], [47.377638, 8.516331], [47.391319, 8.536384], [47.411445, 8.525469], [47.417187, 8.543172], [47.385012, 8.528956], [47.372031, 8.522361], [47.380817, 8.512011], [47.365912, 8.506204], [47.374318, 8.578248], [47.363756, 8.55169], [47.382409, 8.54167], [47.397923, 8.532479], [47.355773, 8.532276], [47.369043, 8.523505], [47.391513, 8.519618], [47.343874, 8.530259], [47.370024, 8.518666], [47.370323, 8.513561], [47.372941, 8.524141], [47.393688, 8.49558], [47.421065, 8.549614], [47.420313, 8.508288], [47.369453, 8.52587], [47.419212, 8.547733], [47.367833, 8.495875], [47.367216, 8.54448], [47.361108, 8.600379], [47.388363, 8.485646], [47.35944, 8.535462], [47.384463, 8.531845], [47.382222, 8.488373], [47.391184, 8.523095], [47.362067, 8.559836], [47.37854, 8.5752], [47.413338, 8.509632], [47.387023, 8.528467], [47.372612, 8.528543], [47.375616, 8.537133], [47.360298, 8.566908], [47.374533, 8.549743], [47.386488, 8.547754], [47.378934, 8.559688], [47.398362, 8.526951], [47.395872, 8.526701], [47.371399, 8.535947], [47.417627, 8.546097], [47.337061, 8.539118], [47.364553, 8.521746], [47.378628, 8.499691], [47.351552, 8.524883], [47.394844, 8.52313], [47.33922, 8.519101], [47.38136, 8.542178], [47.366703, 8.537929], [47.402181, 8.499286], [47.364384, 8.56661], [47.409241, 8.546373], [47.374272, 8.524115], [47.362516, 8.548659], [47.365886, 8.545313], [47.410487, 8.556165], [47.351881, 8.527286], [47.389246, 8.527387], [47.386463, 8.517171], [47.373654, 8.522871], [47.410893, 8.558823], [47.378766, 8.543501], [47.425075, 8.537636], [47.377554, 8.518567], [47.368097, 8.496542], [47.37437, 8.521376], [47.377517, 8.522499], [47.374477, 8.535825], [47.412378, 8.523871], [47.415179, 8.528275], [47.405631, 8.591784], [47.391729, 8.518616], [47.374329, 8.514238], [47.354858, 8.510946], [47.370755, 8.512656], [47.361254, 8.56297], [47.398184, 8.532458], [47.342762, 8.530792], [47.387089, 8.519489], [47.364618, 8.555508], [47.376459, 8.548671], [47.36263, 8.547099], [47.377652, 8.527283], [47.363061, 8.529235], [47.377383, 8.525304], [47.378414, 8.54364], [47.373416, 8.53481], [47.360453, 8.52247], [47.386309, 8.53538], [47.414113, 8.55045], [47.374196, 8.475622], [47.388549, 8.53638], [47.367742, 8.534614], [47.381456, 8.535902], [47.366909, 8.558561], [47.367396, 8.496489], [47.401983, 8.499282], [47.40752, 8.54382], [47.374485, 8.541612], [47.408252, 8.541609], [47.385274, 8.507638], [47.387245, 8.519094], [47.377331, 8.527872], [47.345271, 8.535608], [47.376893, 8.537119], [47.406684, 8.56153], [47.41455, 8.559258], [47.345116, 8.534916], [47.396188, 8.517011], [47.372624, 8.515726], [47.357032, 8.506423], [47.372131, 8.539418], [47.387024, 8.519659], [47.388342, 8.516348], [47.388437, 8.49039], [47.383796, 8.54048], [47.376704, 8.555006], [47.373077, 8.517284], [47.373893, 8.495174], [47.37948, 8.527982], [47.386885, 8.484955], [47.418954, 8.506352], [47.399667, 8.467931], [47.364094, 8.528422], [47.383959, 8.530948], [47.374709, 8.535949], [47.413083, 8.515802], [47.373511, 8.519942], [47.388172, 8.520014], [47.34245, 8.536251], [47.430165, 8.549963], [47.360748, 8.550158], [47.406511, 8.583747], [47.375137, 8.523047], [47.402981, 8.576848], [47.359159, 8.563707], [47.375804, 8.521021], [47.381158, 8.491597], [47.354802, 8.558532], [47.3729, 8.535117], [47.369994, 8.519963], [47.361345, 8.554486], [47.375401, 8.547312], [47.378266, 8.481197], [47.415416, 8.518301], [47.375204, 8.528332], [47.376948, 8.535174], [47.382468, 8.529685], [47.377654, 8.537506], [47.372437, 8.517391], [47.360131, 8.547921], [47.329792, 8.532643], [47.374395, 8.521601], [47.365898, 8.538402], [47.364915, 8.505058], [47.361027, 8.571398], [47.364015, 8.549008], [47.376592, 8.534677], [47.360517, 8.535749], [47.371539, 8.51924], [47.409319, 8.558817], [47.357952, 8.529223], [47.366183, 8.540579], [47.404592, 8.557406], [47.342744, 8.530831], [47.365098, 8.55328], [47.414015, 8.546658], [47.399028, 8.506629], [47.37025, 8.548846], [47.376767, 8.559602], [47.388581, 8.520592], [47.376964, 8.526765], [47.418131, 8.512684], [47.389662, 8.521316], [47.378181, 8.543582], [47.385145, 8.508019], [47.389218, 8.527453], [47.376048, 8.529501], [47.362195, 8.547513], [47.417904, 8.50319], [47.375074, 8.485054], [47.35606, 8.522857], [47.361381, 8.602728], [47.378293, 8.526051], [47.39793, 8.533579], [47.400055, 8.493746], [47.388308, 8.536202], [47.353497, 8.558623], [47.36927, 8.564622], [47.376623, 8.511318], [47.393489, 8.524732], [47.407816, 8.546794], [47.352285, 8.507069], [47.358619, 8.553608], [47.386516, 8.547715], [47.408742, 8.483066], [47.375493, 8.524458], [47.405431, 8.539404], [47.413746, 8.545592], [47.408099, 8.54725], [47.413257, 8.516481], [47.365307, 8.56426], [47.395614, 8.522589], [47.37759, 8.522342], [47.376028, 8.510511], [47.352738, 8.525133], [47.421119, 8.549695], [47.383304, 8.549568], [47.412722, 8.546352], [47.380394, 8.501329], [47.35505, 8.558034], [47.370085, 8.529366], [47.34485, 8.533535], [47.397914, 8.474852], [47.390441, 8.539796], [47.405825, 8.561022], [47.377665, 8.513405], [47.364907, 8.512777], [47.384454, 8.531858], [47.377542, 8.574146], [47.351369, 8.600974], [47.419882, 8.504264], [47.396024, 8.526863], [47.367381, 8.544126], [47.380448, 8.527446], [47.369919, 8.513487], [47.374732, 8.55801], [47.400565, 8.548789], [47.369588, 8.46686], [47.386121, 8.526793], [47.395057, 8.515822], [47.328048, 8.529631], [47.393609, 8.489353], [47.375093, 8.52298], [47.422053, 8.502929], [47.368006, 8.564224], [47.403119, 8.580229], [47.376504, 8.5164], [47.325296, 8.514255], [47.41484, 8.551538], [47.370138, 8.540899], [47.363443, 8.575421], [47.373023, 8.534511], [47.368661, 8.543901], [47.379399, 8.559936], [47.360629, 8.529583], [47.412254, 8.51499], [47.362473, 8.53526], [47.400771, 8.548846], [47.364537, 8.533012], [47.373345, 8.503903], [47.394148, 8.525487], [47.398492, 8.526529], [47.410304, 8.548078], [47.385541, 8.485392], [47.36158, 8.547792], [47.375496, 8.486069], [47.431038, 8.549888], [47.374546, 8.538885], [47.377652, 8.508028], [47.402974, 8.494214], [47.387646, 8.544229], [47.363455, 8.535135], [47.376156, 8.541779], [47.394709, 8.545011], [47.364007, 8.556395], [47.387553, 8.527551], [47.38318, 8.53999], [47.397929, 8.480178], [47.369643, 8.536189], [47.369282, 8.491812], [47.400791, 8.548582], [47.405233, 8.504872], [47.363762, 8.564016], [47.3702, 8.53624], [47.37559, 8.536973], [47.416481, 8.511153], [47.368312, 8.560431], [47.373248, 8.538276], [47.400956, 8.534171], [47.370224, 8.548806], [47.370197, 8.548792], [47.368524, 8.53083], [47.377722, 8.52841], [47.342966, 8.535918], [47.385391, 8.536434], [47.409112, 8.558799], [47.375881, 8.577514], [47.386565, 8.50324], [47.410829, 8.553389], [47.387639, 8.521248], [47.365106, 8.536519], [47.373174, 8.503899], [47.370358, 8.548888], [47.408897, 8.54569], [47.395767, 8.53115], [47.3615, 8.549551], [47.412175, 8.546209], [47.384499, 8.531886], [47.375387, 8.518497], [47.389607, 8.511818], [47.362381, 8.504796], [47.38432, 8.526995], [47.335857, 8.532371], [47.383062, 8.483966], [47.391616, 8.51917], [47.367359, 8.480772], [47.408319, 8.525988], [47.415276, 8.51411], [47.379143, 8.530306], [47.404546, 8.548157], [47.371211, 8.520583], [47.40485, 8.548375], [47.369724, 8.490683], [47.378638, 8.541896], [47.366522, 8.540851], [47.425327, 8.547967], [47.37733, 8.549749], [47.41594, 8.512322], [47.381504, 8.513561], [47.393489, 8.524732], [47.414536, 8.546695], [47.372725, 8.534584], [47.378574, 8.547563], [47.377541, 8.505404], [47.417533, 8.55402], [47.38975, 8.549054], [47.357465, 8.521774], [47.411145, 8.570847], [47.378731, 8.542468], [47.369406, 8.534582], [47.378886, 8.551635], [47.414082, 8.518671], [47.367978, 8.535334], [47.378463, 8.509805], [47.375548, 8.524326], [47.365071, 8.553333], [47.402062, 8.497574], [47.364234, 8.536435], [47.404741, 8.57621], [47.410307, 8.542128], [47.364471, 8.56791], [47.37262, 8.528663], [47.379464, 8.529664], [47.405038, 8.491751], [47.399573, 8.495326], [47.385842, 8.548575], [47.369089, 8.52528], [47.373352, 8.553678], [47.383406, 8.533227], [47.375195, 8.527378], [47.40769, 8.489962], [47.405187, 8.481287], [47.359319, 8.521639], [47.365117, 8.553214], [47.391261, 8.487399], [47.359839, 8.50824], [47.409855, 8.549884], [47.370334, 8.48892], [47.359578, 8.593343], [47.370179, 8.548792], [47.378503, 8.525764], [47.389187, 8.488974], [47.388478, 8.488828], [47.417296, 8.523097], [47.42079, 8.502347], [47.410817, 8.561114], [47.375431, 8.528124], [47.406593, 8.576329], [47.387131, 8.518814], [47.372073, 8.473608], [47.406907, 8.550564], [47.376239, 8.567616], [47.373573, 8.534403], [47.373319, 8.534636], [47.378671, 8.523132], [47.386749, 8.544899], [47.372053, 8.529565], [47.418009, 8.505525], [47.403878, 8.485819], [47.366682, 8.535386], [47.366918, 8.54556], [47.402096, 8.498728], [47.358083, 8.518173], [47.381484, 8.533016], [47.391105, 8.522908], [47.379077, 8.51052], [47.395387, 8.527658], [47.364388, 8.555172], [47.390141, 8.51049], [47.395842, 8.519441], [47.378501, 8.540212], [47.389593, 8.541951], [47.363239, 8.535157], [47.392238, 8.523819], [47.427529, 8.546303], [47.37091, 8.518181], [47.381119, 8.536319], [47.370508, 8.515975], [47.365185, 8.549853], [47.367353, 8.522425], [47.38341, 8.539492], [47.397383, 8.486831], [47.398774, 8.54226], [47.404206, 8.573933], [47.384871, 8.531496], [47.375666, 8.516529], [47.37348, 8.519398], [47.421821, 8.502712], [47.391944, 8.517852], [47.410835, 8.542378], [47.387174, 8.519027], [47.377113, 8.527179], [47.409807, 8.549286], [47.369605, 8.525874], [47.374395, 8.521641], [47.363947, 8.551442], [47.382852, 8.530051], [47.361522, 8.526516], [47.360568, 8.528496], [47.417928, 8.503535], [47.387616, 8.486625], [47.368636, 8.547369], [47.363975, 8.531558], [47.429458, 8.544858], [47.377362, 8.538837], [47.359834, 8.521359], [47.385088, 8.532308], [47.368549, 8.55081], [47.373698, 8.528738], [47.371469, 8.534227], [47.398103, 8.541849], [47.420585, 8.507061], [47.364101, 8.54758], [47.372665, 8.529551], [47.40689, 8.550431], [47.362126, 8.559268], [47.399062, 8.521387], [47.371389, 8.522706], [47.377637, 8.538313], [47.366903, 8.518576], [47.349189, 8.57787], [47.401729, 8.545501], [47.386343, 8.518493], [47.373113, 8.551435], [47.354623, 8.601244], [47.364596, 8.537144], [47.357159, 8.521781], [47.373779, 8.536327], [47.386593, 8.518604], [47.354514, 8.53417], [47.408741, 8.539379], [47.414461, 8.554499], [47.361363, 8.576621], [47.368872, 8.501218], [47.367865, 8.520555], [47.33252, 8.517973], [47.373798, 8.544723], [47.386782, 8.490397], [47.429977, 8.549853], [47.342008, 8.530618], [47.374821, 8.544015], [47.370743, 8.53878], [47.382227, 8.514198], [47.378101, 8.530205], [47.366105, 8.546867], [47.391646, 8.538881], [47.373339, 8.520044], [47.362465, 8.504506], [47.370063, 8.541163], [47.379792, 8.520625], [47.389878, 8.49214], [47.376881, 8.528882], [47.41709, 8.523039], [47.394276, 8.490266], [47.369071, 8.525307], [47.377769, 8.53768], [47.369852, 8.516796], [47.372566, 8.550272], [47.376166, 8.544507], [47.348403, 8.570931], [47.375307, 8.518362], [47.38151, 8.483539], [47.388926, 8.488982], [47.379464, 8.525929], [47.335332, 8.528906], [47.425815, 8.493938], [47.409598, 8.558796], [47.400983, 8.542624], [47.372847, 8.539737], [47.374015, 8.528479], [47.385143, 8.495464], [47.373971, 8.529339], [47.394389, 8.488666], [47.405831, 8.590609], [47.403199, 8.486296], [47.37442, 8.544643], [47.37029, 8.514236], [47.377078, 8.538434], [47.399303, 8.542417], [47.372149, 8.520324], [47.359919, 8.521916], [47.377317, 8.529355], [47.386444, 8.541065], [47.39873, 8.506755], [47.357215, 8.558265], [47.422272, 8.539102], [47.372422, 8.523812], [47.374779, 8.539976], [47.377337, 8.519609], [47.394287, 8.494916], [47.32803, 8.529657], [47.35931, 8.509116], [47.366909, 8.562295], [47.397332, 8.531195], [47.388752, 8.548026], [47.376946, 8.526765], [47.429949, 8.538718], [47.412096, 8.550659], [47.369161, 8.528221], [47.410908, 8.543267], [47.416947, 8.514303], [47.394223, 8.490146], [47.369878, 8.540762], [47.358711, 8.517417], [47.349164, 8.562927], [47.372908, 8.533316], [47.416647, 8.544141], [47.373016, 8.518012], [47.379954, 8.552849], [47.411828, 8.524973], [47.361853, 8.553053], [47.36966, 8.508437], [47.3736, 8.534403], [47.38794, 8.486658], [47.410928, 8.564442], [47.372034, 8.536384], [47.370288, 8.478075], [47.362274, 8.557894], [47.378144, 8.527571], [47.393169, 8.494245], [47.417877, 8.548156], [47.36833, 8.541776], [47.378265, 8.526196], [47.365933, 8.536589], [47.369547, 8.520576], [47.363514, 8.558993], [47.403859, 8.571766], [47.336141, 8.5337], [47.385164, 8.529012], [47.378778, 8.53941], [47.379035, 8.538912], [47.414233, 8.551035], [47.377403, 8.512552], [47.356867, 8.527004], [47.335088, 8.52996], [47.385656, 8.535962], [47.429232, 8.510641], [47.33598, 8.528854], [47.397923, 8.532439], [47.388059, 8.524383], [47.381523, 8.513482], [47.41874, 8.547273], [47.36508, 8.553333], [47.37746, 8.522789], [47.373406, 8.524402], [47.366648, 8.534247], [47.363473, 8.535135], [47.349982, 8.561157], [47.417567, 8.509479], [47.383711, 8.539048], [47.388992, 8.486745], [47.367354, 8.541292], [47.375541, 8.528828], [47.407854, 8.548411], [47.383052, 8.530744], [47.408986, 8.543876], [47.38266, 8.540774], [47.373029, 8.532895], [47.372748, 8.531247], [47.390352, 8.528284], [47.375701, 8.52907], [47.382318, 8.528464], [47.403198, 8.588538], [47.374236, 8.52418], [47.371471, 8.502276], [47.382556, 8.500961], [47.373925, 8.536145], [47.368868, 8.524918], [47.412218, 8.550158], [47.40064, 8.477846], [47.373278, 8.494606], [47.374062, 8.530255], [47.403625, 8.48588], [47.408015, 8.582679], [47.384241, 8.493843], [47.377721, 8.538063], [47.353616, 8.51198], [47.378265, 8.574731], [47.377013, 8.544326], [47.37069, 8.51664], [47.369334, 8.505822], [47.389478, 8.486662], [47.352416, 8.602453], [47.3893, 8.527295], [47.361263, 8.547997], [47.386417, 8.526839], [47.403961, 8.572337], [47.392226, 8.524163], [47.344281, 8.529976], [47.385839, 8.52998], [47.370005, 8.556613], [47.383336, 8.53308], [47.369769, 8.525665], [47.429368, 8.544869], [47.37041, 8.602091], [47.376685, 8.56891], [47.369241, 8.534883], [47.370161, 8.548791], [47.36442, 8.53677], [47.407153, 8.551152], [47.39213, 8.523896], [47.370952, 8.523306], [47.376567, 8.518256], [47.361094, 8.549688], [47.394147, 8.5275], [47.390184, 8.491179], [47.412375, 8.524163], [47.408625, 8.580069], [47.332121, 8.52986], [47.340739, 8.528871], [47.373238, 8.535495], [47.371599, 8.522405], [47.375621, 8.524182], [47.405291, 8.585231], [47.415647, 8.507996], [47.389667, 8.512097], [47.364361, 8.529672], [47.390318, 8.52521], [47.372247, 8.520459], [47.363802, 8.547746], [47.410441, 8.546], [47.378318, 8.509882], [47.388387, 8.536376], [47.379498, 8.527996], [47.378032, 8.526085], [47.369495, 8.536583], [47.383746, 8.512348], [47.378743, 8.527901], [47.369347, 8.534197], [47.361737, 8.547385], [47.378564, 8.542067], [47.421177, 8.546383], [47.376842, 8.528259], [47.369776, 8.515364], [47.364425, 8.546567], [47.374657, 8.494223], [47.392197, 8.517698], [47.340009, 8.529955], [47.420823, 8.501725], [47.361918, 8.576911], [47.406743, 8.481291], [47.352685, 8.524959], [47.38232, 8.549084], [47.387344, 8.52201], [47.371971, 8.493852], [47.39424, 8.490186], [47.373233, 8.535124], [47.40402, 8.571848], [47.386717, 8.541706], [47.398004, 8.532468], [47.386549, 8.520431], [47.395785, 8.526461], [47.3536, 8.554456], [47.412224, 8.55424], [47.413357, 8.53925], [47.381237, 8.582568], [47.401995, 8.497957], [47.414237, 8.518423], [47.379213, 8.543842], [47.40897, 8.546526], [47.3823, 8.509234], [47.370418, 8.509233], [47.370243, 8.526006], [47.378031, 8.528098], [47.3348, 8.529994], [47.393417, 8.524717], [47.410571, 8.550243], [47.418209, 8.542584], [47.371782, 8.488009], [47.397358, 8.531275], [47.376417, 8.525628], [47.383329, 8.484316], [47.378866, 8.546245], [47.413632, 8.562114], [47.387283, 8.545506], [47.379572, 8.507537], [47.383503, 8.530594], [47.350075, 8.560815], [47.370469, 8.545752], [47.399778, 8.544494], [47.391051, 8.484785], [47.375924, 8.487508], [47.367603, 8.55659], [47.378014, 8.483192], [47.370508, 8.524581], [47.387366, 8.518726], [47.360619, 8.535407], [47.395773, 8.534396], [47.375811, 8.518346], [47.36997, 8.543398], [47.402578, 8.582112], [47.356601, 8.523663], [47.367575, 8.523727], [47.413765, 8.540782], [47.377339, 8.539459], [47.373284, 8.552392], [47.378605, 8.505134], [47.368051, 8.564172], [47.391956, 8.545086], [47.377703, 8.528555], [47.389217, 8.515108], [47.398373, 8.541841], [47.393385, 8.537632], [47.362429, 8.547465], [47.424299, 8.511019], [47.413803, 8.514796], [47.393675, 8.528882], [47.411203, 8.546241], [47.389254, 8.5274], [47.390107, 8.539008], [47.38038, 8.534609], [47.377743, 8.511791], [47.393741, 8.510324], [47.399637, 8.520419], [47.370129, 8.56423], [47.368483, 8.546492], [47.401971, 8.486762], [47.374714, 8.545801], [47.410372, 8.541931], [47.383416, 8.529387], [47.374413, 8.521642], [47.399186, 8.521523], [47.398004, 8.532481], [47.402409, 8.535565], [47.383237, 8.506153], [47.410321, 8.544461], [47.413843, 8.547661], [47.396462, 8.543272], [47.372431, 8.523813], [47.348998, 8.575285], [47.394267, 8.49024], [47.386243, 8.518518], [47.378661, 8.569217], [47.388246, 8.519817], [47.375665, 8.496203], [47.378626, 8.509703], [47.366048, 8.520598], [47.37777, 8.507911], [47.403499, 8.485931], [47.373226, 8.529165], [47.370103, 8.561276], [47.360101, 8.594956], [47.369847, 8.508692], [47.379506, 8.526181], [47.425732, 8.542289], [47.369005, 8.538003], [47.370959, 8.537778], [47.337533, 8.530169], [47.368275, 8.540954], [47.428667, 8.488918], [47.409021, 8.547693], [47.414143, 8.551113], [47.384507, 8.531992], [47.363341, 8.554554], [47.366143, 8.521063], [47.362795, 8.514455], [47.402686, 8.535717], [47.402632, 8.535729], [47.39554, 8.484754], [47.370352, 8.51433], [47.371456, 8.547865], [47.374633, 8.545839], [47.372677, 8.574042], [47.360687, 8.524447], [47.350333, 8.567597], [47.375804, 8.55222], [47.406729, 8.569799], [47.376852, 8.513759], [47.385562, 8.528769], [47.388874, 8.479829], [47.405678, 8.591533], [47.387868, 8.514127], [47.375085, 8.547451], [47.371786, 8.556571], [47.429499, 8.510925], [47.409046, 8.578488], [47.389686, 8.511991], [47.376925, 8.541358], [47.370466, 8.517549], [47.39974, 8.543777], [47.372247, 8.511759], [47.426015, 8.536184], [47.3912, 8.489226], [47.376602, 8.54878], [47.380648, 8.515703], [47.394137, 8.524692], [47.368316, 8.546992], [47.390401, 8.523092], [47.373671, 8.52879], [47.38573, 8.525262], [47.368761, 8.528663], [47.359616, 8.549062], [47.360524, 8.563087], [47.336325, 8.514186], [47.392639, 8.488221], [47.371531, 8.542928], [47.39133, 8.536238], [47.383726, 8.573761], [47.353927, 8.561558], [47.414009, 8.525481], [47.409335, 8.544122], [47.38322, 8.506007], [47.417081, 8.523026], [47.360106, 8.595353], [47.401738, 8.500469], [47.396594, 8.486563], [47.36647, 8.545365], [47.363868, 8.566931], [47.430401, 8.511646], [47.340392, 8.52942], [47.376944, 8.497949], [47.425835, 8.49362], [47.373951, 8.502538], [47.363324, 8.533782], [47.374714, 8.514365], [47.403447, 8.58437], [47.398294, 8.536991], [47.39394, 8.526556], [47.38324, 8.531794], [47.358132, 8.532073], [47.361253, 8.562983], [47.372792, 8.520801], [47.396208, 8.527383], [47.371999, 8.522003], [47.350121, 8.577308], [47.367682, 8.539061], [47.409482, 8.538136], [47.38216, 8.540433], [47.35521, 8.55449], [47.377675, 8.521973], [47.364266, 8.531206], [47.400166, 8.546237], [47.378593, 8.521925], [47.397237, 8.491054], [47.370289, 8.514395], [47.384412, 8.496787], [47.383004, 8.513843], [47.421026, 8.5021], [47.396797, 8.529793], [47.369793, 8.524116], [47.410579, 8.569828], [47.366538, 8.54767], [47.383155, 8.530295], [47.355846, 8.532159], [47.367174, 8.546968], [47.385472, 8.536462], [47.343361, 8.523578], [47.343692, 8.535231], [47.377003, 8.53977], [47.359879, 8.580164], [47.374822, 8.531648], [47.364552, 8.521865], [47.376334, 8.521019], [47.405705, 8.591507], [47.410486, 8.542185], [47.378054, 8.543698], [47.360524, 8.5631], [47.367927, 8.519736], [47.374828, 8.562912], [47.3909, 8.521751], [47.427032, 8.546544], [47.390854, 8.538904], [47.390006, 8.522051], [47.378057, 8.510896], [47.376299, 8.53524], [47.359706, 8.55093], [47.386481, 8.503556], [47.388035, 8.493971], [47.376649, 8.497705], [47.369188, 8.54799], [47.40535, 8.572857], [47.364335, 8.567947], [47.365843, 8.50787], [47.38394, 8.527199], [47.371423, 8.517225], [47.384518, 8.502868], [47.384534, 8.509835], [47.365899, 8.54677], [47.376699, 8.543366], [47.364807, 8.524399], [47.3806, 8.514073], [47.359468, 8.535423], [47.371033, 8.523241], [47.388163, 8.52004], [47.387779, 8.517873], [47.36285, 8.516257], [47.38848, 8.531292], [47.403636, 8.548363], [47.360511, 8.597123], [47.424584, 8.53532], [47.417928, 8.503535], [47.405896, 8.573107], [47.388591, 8.534791], [47.385156, 8.500907], [47.373802, 8.489412], [47.386001, 8.498116], [47.37077, 8.536887], [47.346327, 8.564296], [47.384966, 8.508877], [47.416683, 8.514642], [47.348288, 8.562432], [47.405945, 8.561647], [47.379269, 8.527488], [47.370748, 8.508472], [47.398519, 8.591458], [47.378897, 8.526911], [47.378275, 8.526077], [47.387926, 8.485214], [47.405275, 8.570444], [47.390491, 8.527916], [47.374067, 8.544781], [47.367817, 8.5605], [47.415181, 8.514639], [47.42576, 8.547817], [47.368042, 8.55399], [47.378855, 8.542682], [47.392487, 8.491105], [47.405098, 8.564597], [47.364542, 8.555043], [47.379586, 8.525362], [47.390991, 8.523542], [47.390391, 8.533676], [47.406338, 8.573011], [47.387575, 8.537591], [47.423084, 8.498403], [47.372381, 8.535755], [47.370147, 8.5409], [47.419817, 8.504501], [47.374272, 8.524115], [47.361894, 8.569219], [47.40208, 8.579743], [47.370547, 8.517551], [47.349446, 8.527911], [47.370994, 8.548226], [47.388238, 8.55191], [47.395216, 8.53241], [47.37467, 8.549521], [47.39103, 8.505846], [47.353412, 8.528958], [47.340415, 8.537387], [47.408645, 8.537151], [47.38328, 8.539926], [47.36853, 8.533994], [47.401292, 8.545187], [47.385859, 8.532589], [47.39998, 8.545929], [47.371428, 8.546077], [47.383577, 8.5734], [47.404646, 8.55742], [47.328508, 8.529548], [47.393529, 8.512744], [47.389079, 8.538298], [47.383595, 8.529457], [47.363342, 8.567409], [47.384528, 8.542959], [47.370326, 8.509417], [47.37067, 8.536951], [47.376995, 8.544299], [47.373211, 8.52024], [47.378174, 8.509892], [47.377063, 8.541903], [47.382156, 8.529467], [47.428076, 8.545532], [47.377026, 8.548577], [47.365072, 8.502652], [47.387233, 8.48822], [47.383536, 8.587465], [47.364286, 8.546127], [47.372937, 8.536018], [47.406206, 8.570888], [47.40916, 8.572302], [47.383223, 8.54023], [47.375215, 8.51852], [47.400338, 8.533907], [47.377155, 8.523684], [47.360004, 8.535779], [47.371953, 8.601595], [47.370335, 8.509377], [47.370161, 8.548791], [47.41571, 8.51286], [47.391932, 8.518103], [47.378445, 8.541376], [47.410274, 8.548422], [47.412179, 8.554226], [47.390932, 8.522097], [47.405213, 8.557432], [47.367102, 8.544133], [47.364413, 8.600954], [47.401456, 8.581889], [47.361466, 8.503546], [47.416794, 8.556019], [47.379931, 8.558], [47.385682, 8.536095], [47.406916, 8.550538], [47.426332, 8.554694], [47.369818, 8.533875], [47.366451, 8.537924], [47.37773, 8.537997], [47.372974, 8.533066], [47.387742, 8.486707], [47.366663, 8.549592], [47.368908, 8.530242], [47.382299, 8.530437], [47.376207, 8.525916], [47.36684, 8.543307], [47.366192, 8.540566], [47.371823, 8.533969], [47.356549, 8.519598], [47.412157, 8.546235], [47.362403, 8.547372], [47.383412, 8.574615], [47.37706, 8.510731], [47.37301, 8.504134], [47.390056, 8.509985], [47.358355, 8.586022], [47.429936, 8.486862], [47.422247, 8.538969], [47.422256, 8.538956], [47.364539, 8.546887], [47.373714, 8.545012], [47.368762, 8.543638], [47.378324, 8.530382], [47.354499, 8.523434], [47.403817, 8.503267], [47.365989, 8.533532], [47.370705, 8.535204], [47.378014, 8.536507], [47.383896, 8.540403], [47.402453, 8.553505], [47.374096, 8.553005], [47.386957, 8.498744], [47.372647, 8.52093], [47.381371, 8.571738], [47.379399, 8.542203], [47.377739, 8.531429], [47.376751, 8.536878], [47.4091, 8.545124], [47.419462, 8.507913], [47.414449, 8.545474], [47.360242, 8.552225], [47.380438, 8.542728], [47.364717, 8.566657], [47.385528, 8.530476], [47.384999, 8.53224], [47.421861, 8.545456], [47.374482, 8.495702], [47.366936, 8.53616], [47.366408, 8.540558], [47.363319, 8.564205], [47.396468, 8.520765], [47.390728, 8.523695], [47.379242, 8.537923], [47.377957, 8.548146], [47.369507, 8.505614], [47.384808, 8.509377], [47.368346, 8.497858], [47.38624, 8.504306], [47.370553, 8.549184], [47.335938, 8.526683], [47.400456, 8.54884], [47.349579, 8.564709], [47.404628, 8.594889], [47.376918, 8.538285], [47.382148, 8.541638], [47.395637, 8.491949], [47.390396, 8.539808], [47.40939, 8.543037], [47.410891, 8.562785], [47.378456, 8.51444], [47.373751, 8.493], [47.37386, 8.517208], [47.370714, 8.538899], [47.372381, 8.554571], [47.378459, 8.510269], [47.402142, 8.535282], [47.39096, 8.526813], [47.358972, 8.516417], [47.373817, 8.527615], [47.399714, 8.497594], [47.397145, 8.530979], [47.408933, 8.545677], [47.36729, 8.544283], [47.409205, 8.5473], [47.378577, 8.540743], [47.363896, 8.592377], [47.369716, 8.490669], [47.378018, 8.526575], [47.365964, 8.532326], [47.419844, 8.507417], [47.37924, 8.495691], [47.387351, 8.52707], [47.364061, 8.592089], [47.387476, 8.51943], [47.387141, 8.486457], [47.424766, 8.548339], [47.360044, 8.526751], [47.429114, 8.489139], [47.377105, 8.539388], [47.380954, 8.526171], [47.398926, 8.506004], [47.341756, 8.530732], [47.368858, 8.523118], [47.370398, 8.514264], [47.378202, 8.541384], [47.357173, 8.595409], [47.392157, 8.476873], [47.379214, 8.528586], [47.378319, 8.509789], [47.38497, 8.548451], [47.377596, 8.508225], [47.411019, 8.544846], [47.378749, 8.542481], [47.39049, 8.479158], [47.384877, 8.495127], [47.370636, 8.470455], [47.37427, 8.5234], [47.358972, 8.506766], [47.367327, 8.545118], [47.343216, 8.530365], [47.373354, 8.49417], [47.398354, 8.53731], [47.375892, 8.538317], [47.367004, 8.536492], [47.403901, 8.548859], [47.367651, 8.49517], [47.397356, 8.531527], [47.393417, 8.524717], [47.403559, 8.571097], [47.344251, 8.527474], [47.369686, 8.508583], [47.374099, 8.561122], [47.405919, 8.566218], [47.364287, 8.536529], [47.367919, 8.55371], [47.395751, 8.507861], [47.377278, 8.522984], [47.394169, 8.52509], [47.37212, 8.518589], [47.386881, 8.5022], [47.37026, 8.531766], [47.377603, 8.525772], [47.387213, 8.488432], [47.377936, 8.532426], [47.393361, 8.547712], [47.412664, 8.514482], [47.378837, 8.518858], [47.373787, 8.538393], [47.375937, 8.521169], [47.386736, 8.490528], [47.373911, 8.519447], [47.344633, 8.529891], [47.37614, 8.538706], [47.389507, 8.487417], [47.363626, 8.535098], [47.364482, 8.536917], [47.357993, 8.505635], [47.338881, 8.527404], [47.372527, 8.517472], [47.388148, 8.540636], [47.370713, 8.535218], [47.370549, 8.535439], [47.369002, 8.532574], [47.421699, 8.550118], [47.347104, 8.5283], [47.382557, 8.529793], [47.408682, 8.579792], [47.374624, 8.532623], [47.373761, 8.53634], [47.353469, 8.576175], [47.374435, 8.540167], [47.391819, 8.574053], [47.386666, 8.546062], [47.378855, 8.542709], [47.384332, 8.548385], [47.362231, 8.547435], [47.36877, 8.540898], [47.41484, 8.545018], [47.389833, 8.51165], [47.381183, 8.543763], [47.376978, 8.498135], [47.406243, 8.55597], [47.378412, 8.520081], [47.372053, 8.537232], [47.369635, 8.539817], [47.388878, 8.51575], [47.392091, 8.511642], [47.392832, 8.522917], [47.369285, 8.491482], [47.37818, 8.541728], [47.412081, 8.546644], [47.417609, 8.546096], [47.40278, 8.576234], [47.409805, 8.540992], [47.405668, 8.588035], [47.378378, 8.525616], [47.382068, 8.544325], [47.369796, 8.541859], [47.344059, 8.52878], [47.364596, 8.566165], [47.344744, 8.533321], [47.408925, 8.579757], [47.370283, 8.602194], [47.365895, 8.532047], [47.393312, 8.473491], [47.393815, 8.493397], [47.364023, 8.531241], [47.364749, 8.525775], [47.392081, 8.512728], [47.422874, 8.49877], [47.378801, 8.542668], [47.381197, 8.534811], [47.373241, 8.484833], [47.406481, 8.549999], [47.3916, 8.480796], [47.404533, 8.571806], [47.403096, 8.575274], [47.366924, 8.514459], [47.379623, 8.537586], [47.398285, 8.536978], [47.372149, 8.520324], [47.367761, 8.545776], [47.401981, 8.538895], [47.3846, 8.531649], [47.3966, 8.545726], [47.410619, 8.549953], [47.381775, 8.516388], [47.366156, 8.526293], [47.366914, 8.54413], [47.376184, 8.528458], [47.36231, 8.567189], [47.390734, 8.489057], [47.365575, 8.561671], [47.403538, 8.548242], [47.382422, 8.500919], [47.407194, 8.549722], [47.377318, 8.526481], [47.37495, 8.545594], [47.36771, 8.509245], [47.369915, 8.511077], [47.350357, 8.578014], [47.413065, 8.545326], [47.35493, 8.510961], [47.387236, 8.519094], [47.410152, 8.566626], [47.373359, 8.537033], [47.426861, 8.542697], [47.382262, 8.531522], [47.360467, 8.550337], [47.342321, 8.509781], [47.383298, 8.530418], [47.396843, 8.529675], [47.345158, 8.531423], [47.36035, 8.552201], [47.384417, 8.53195], [47.421311, 8.50738], [47.329541, 8.514327], [47.374156, 8.519266], [47.391123, 8.522842], [47.379094, 8.525074], [47.371054, 8.523877], [47.37371, 8.537014], [47.430654, 8.550583], [47.365506, 8.51218], [47.427013, 8.491775], [47.384403, 8.548466], [47.431336, 8.516476], [47.36465, 8.566073], [47.414264, 8.554389], [47.377767, 8.528424], [47.335554, 8.516751], [47.329934, 8.512694], [47.362144, 8.549988], [47.334018, 8.529925], [47.384417, 8.574849], [47.393415, 8.4998], [47.382683, 8.530789], [47.352951, 8.558334], [47.387612, 8.521261], [47.366673, 8.54198], [47.375012, 8.545675], [47.391603, 8.492399], [47.405866, 8.590729], [47.390301, 8.487168], [47.385956, 8.535651], [47.38545, 8.533071], [47.388821, 8.522742], [47.427486, 8.543227], [47.37853, 8.545576], [47.370823, 8.55573], [47.370922, 8.531263], [47.40921, 8.544954], [47.369896, 8.55673], [47.370315, 8.517308], [47.410486, 8.545948], [47.37323, 8.520187], [47.408395, 8.537001], [47.42392, 8.504411], [47.369239, 8.525588], [47.374862, 8.518804], [47.357231, 8.524628], [47.369926, 8.551713], [47.384845, 8.534211], [47.356089, 8.532177], [47.401722, 8.500297], [47.387126, 8.546006], [47.356367, 8.555732], [47.385839, 8.529993], [47.421058, 8.549481], [47.393458, 8.545064], [47.419166, 8.507841], [47.372926, 8.53623], [47.366346, 8.522431], [47.36242, 8.5333], [47.373041, 8.534471], [47.36707, 8.545669], [47.380258, 8.527548], [47.387135, 8.519331], [47.397034, 8.530355], [47.367435, 8.494146], [47.377189, 8.540039], [47.383262, 8.51022], [47.384524, 8.530098], [47.36257, 8.548713], [47.383252, 8.515159], [47.383266, 8.555435], [47.345143, 8.534904], [47.360316, 8.523712], [47.377122, 8.529139], [47.373348, 8.531485], [47.384935, 8.511286], [47.358265, 8.586033], [47.382351, 8.514386], [47.39777, 8.474849], [47.376588, 8.544555], [47.328692, 8.517591], [47.376907, 8.540377], [47.40722, 8.550717], [47.364865, 8.5085], [47.351268, 8.532171], [47.385192, 8.500895], [47.360005, 8.580206], [47.410948, 8.550384], [47.377368, 8.500712], [47.427285, 8.546417], [47.365123, 8.537605], [47.370286, 8.548847], [47.371906, 8.601766], [47.405917, 8.481102], [47.388871, 8.515472], [47.422529, 8.550771], [47.407267, 8.585565], [47.365628, 8.551557], [47.353073, 8.518137], [47.337483, 8.528845], [47.412675, 8.546643], [47.373056, 8.504043], [47.387809, 8.527119], [47.40347, 8.516522], [47.372676, 8.529392], [47.3787, 8.541977], [47.378352, 8.53029], [47.364484, 8.555452], [47.379544, 8.537439], [47.393417, 8.524717], [47.398309, 8.532514], [47.402157, 8.488143], [47.418291, 8.5435], [47.364993, 8.553066], [47.407102, 8.582183], [47.379682, 8.524689], [47.420123, 8.547567], [47.372027, 8.54932], [47.365256, 8.555614], [47.414252, 8.527315], [47.386216, 8.518531], [47.418845, 8.507463], [47.369926, 8.529098], [47.400431, 8.543924], [47.356625, 8.572681], [47.384453, 8.531925], [47.365286, 8.564551], [47.37759, 8.522368], [47.388357, 8.480322], [47.398341, 8.537668], [47.388731, 8.525641], [47.374486, 8.540486], [47.379989, 8.512087], [47.374314, 8.537781], [47.364577, 8.566217], [47.402578, 8.495187], [47.358046, 8.523109], [47.403249, 8.587082], [47.363635, 8.535138], [47.373911, 8.52616], [47.410439, 8.572197], [47.374076, 8.524879], [47.409973, 8.563693], [47.376753, 8.543274], [47.410424, 8.542117], [47.377052, 8.544009], [47.365126, 8.553241], [47.370316, 8.529728], [47.408782, 8.544548], [47.376381, 8.494614], [47.384027, 8.532287], [47.364619, 8.554501], [47.386123, 8.548316], [47.410567, 8.486109], [47.413732, 8.546069], [47.357936, 8.572021], [47.363423, 8.53377], [47.416753, 8.573166], [47.403989, 8.563912], [47.41753, 8.52505], [47.381379, 8.528815], [47.390053, 8.525721], [47.373752, 8.538233], [47.369005, 8.537976], [47.381237, 8.54101], [47.396983, 8.480331], [47.413917, 8.542813], [47.358787, 8.590585], [47.389393, 8.52992], [47.367682, 8.541789], [47.353978, 8.575669], [47.404065, 8.563529], [47.391885, 8.538409], [47.37865, 8.542492], [47.412188, 8.550476], [47.409025, 8.546382], [47.426306, 8.554641], [47.390773, 8.537048], [47.388936, 8.519115], [47.3674, 8.494092], [47.369249, 8.541675], [47.381609, 8.510028], [47.377602, 8.498757], [47.37763, 8.498665], [47.359547, 8.535557], [47.422513, 8.540261], [47.360108, 8.52286], [47.387844, 8.490325], [47.373636, 8.542839], [47.371058, 8.548148], [47.364955, 8.54765], [47.414067, 8.514417], [47.414319, 8.551474], [47.369727, 8.509034], [47.421678, 8.550462], [47.381407, 8.54198], [47.385188, 8.494537], [47.411601, 8.526161], [47.351165, 8.563445], [47.397904, 8.532532], [47.369089, 8.52532], [47.393951, 8.49328], [47.417917, 8.483073], [47.383628, 8.574593], [47.421077, 8.548448], [47.404515, 8.571806], [47.378776, 8.542455], [47.382826, 8.530885], [47.358397, 8.534541], [47.398581, 8.500446], [47.373212, 8.535468], [47.395376, 8.525883], [47.393999, 8.542122], [47.369668, 8.533515], [47.405879, 8.537691], [47.383778, 8.54048], [47.391838, 8.484297], [47.392677, 8.523139], [47.36768, 8.539194], [47.380202, 8.542948], [47.369443, 8.505626], [47.370165, 8.529473], [47.384476, 8.528534], [47.388988, 8.515474], [47.366756, 8.535216], [47.371705, 8.524566], [47.367338, 8.537359], [47.382414, 8.514414], [47.424971, 8.553128], [47.36669, 8.549646], [47.37777, 8.507911], [47.35123, 8.568794], [47.403907, 8.558451], [47.405254, 8.490788], [47.410575, 8.552602], [47.396367, 8.479882], [47.358262, 8.585424], [47.364446, 8.536929], [47.405825, 8.591218], [47.36523, 8.532047], [47.384674, 8.492713], [47.402091, 8.499231], [47.414458, 8.556619], [47.388624, 8.484658], [47.398891, 8.59022], [47.371877, 8.520584], [47.337187, 8.519139], [47.427993, 8.545702], [47.374449, 8.541598], [47.374919, 8.541356], [47.388772, 8.514569], [47.361609, 8.561534], [47.405389, 8.480814], [47.394181, 8.518083], [47.379255, 8.546041], [47.378531, 8.5752], [47.390455, 8.479144], [47.401823, 8.581208], [47.377033, 8.529044], [47.396686, 8.493295], [47.394756, 8.529698], [47.372829, 8.531289], [47.376292, 8.552905], [47.372844, 8.504647], [47.38388, 8.487055], [47.372461, 8.529242], [47.382862, 8.530885], [47.375364, 8.544596], [47.413762, 8.545831], [47.361951, 8.560575], [47.383191, 8.530349], [47.370197, 8.548792], [47.420861, 8.549318], [47.411145, 8.57086], [47.376047, 8.5277], [47.41494, 8.540157], [47.37819, 8.543582], [47.389423, 8.5209], [47.409196, 8.546359], [47.378655, 8.575375], [47.376303, 8.539584], [47.357913, 8.520022], [47.415108, 8.547118], [47.378647, 8.521887], [47.355839, 8.554529], [47.371937, 8.53519], [47.372432, 8.523773], [47.372835, 8.517213], [47.375009, 8.526103], [47.374686, 8.54776], [47.392477, 8.506908], [47.377304, 8.498963], [47.378565, 8.516177], [47.394164, 8.488661], [47.372615, 8.529139], [47.40959, 8.543717], [47.391359, 8.536901], [47.381588, 8.537176], [47.372856, 8.535964], [47.41038, 8.542024], [47.40638, 8.552037], [47.393507, 8.500517], [47.407771, 8.54772], [47.421564, 8.550155], [47.376517, 8.524584], [47.408607, 8.580135], [47.359711, 8.547634], [47.36844, 8.524513], [47.386797, 8.547482], [47.390661, 8.532741], [47.378832, 8.530948], [47.374022, 8.535365], [47.3995, 8.505181], [47.392182, 8.474078], [47.367137, 8.544253], [47.38807, 8.47119], [47.381977, 8.529291], [47.372755, 8.550289], [47.381588, 8.537163], [47.366214, 8.54863], [47.368574, 8.524608], [47.36694, 8.545163], [47.378566, 8.539988], [47.390975, 8.488201], [47.355874, 8.551883], [47.376633, 8.538968], [47.372043, 8.547652], [47.380785, 8.50478], [47.379065, 8.506944], [47.397413, 8.546273], [47.420785, 8.512698], [47.405901, 8.497704], [47.391059, 8.523013], [47.379547, 8.542696], [47.360904, 8.530978], [47.394689, 8.491295], [47.388293, 8.497314], [47.366633, 8.548082], [47.387578, 8.534452], [47.390889, 8.521923], [47.378849, 8.544258], [47.40649, 8.548104], [47.364685, 8.554185], [47.387324, 8.52801], [47.377921, 8.487494], [47.413885, 8.545171], [47.372325, 8.513059], [47.368778, 8.492915], [47.406838, 8.53612], [47.375247, 8.553069], [47.380494, 8.54808], [47.381583, 8.481395], [47.399406, 8.521077], [47.42154, 8.50105], [47.365921, 8.539766], [47.374577, 8.502021], [47.398228, 8.504665], [47.374714, 8.537353], [47.353067, 8.524557], [47.367364, 8.494012], [47.402058, 8.498952], [47.360777, 8.510893], [47.352572, 8.559345], [47.402158, 8.495934], [47.355992, 8.535762], [47.405989, 8.590149], [47.354403, 8.525921], [47.369155, 8.527864], [47.414917, 8.541627], [47.386913, 8.500611], [47.421353, 8.549686], [47.377322, 8.522177], [47.364164, 8.521936], [47.358267, 8.584021], [47.381193, 8.491637], [47.362684, 8.547153], [47.380243, 8.520475], [47.398744, 8.504212], [47.369878, 8.541675], [47.403538, 8.578807], [47.351892, 8.576525], [47.385715, 8.548639], [47.376049, 8.53407], [47.37302, 8.529081], [47.409789, 8.541693], [47.344094, 8.531693], [47.389169, 8.471039], [47.358788, 8.585025], [47.405126, 8.482094], [47.391756, 8.484494], [47.409789, 8.54172], [47.388533, 8.486709], [47.404458, 8.546088], [47.355736, 8.593379], [47.366962, 8.54568], [47.37828, 8.557529], [47.372706, 8.525222], [47.363523, 8.557179], [47.370088, 8.511809], [47.367951, 8.535333], [47.411031, 8.533119], [47.402138, 8.503962], [47.369455, 8.555781], [47.369699, 8.536905], [47.360032, 8.531874], [47.369091, 8.519322], [47.377954, 8.526693], [47.373898, 8.544645], [47.363482, 8.535135], [47.414438, 8.551238], [47.4145, 8.546681], [47.374388, 8.522396], [47.360259, 8.548598], [47.379962, 8.520721], [47.383268, 8.511518], [47.378666, 8.545525], [47.39373, 8.528737], [47.364819, 8.530767], [47.383074, 8.498495], [47.408685, 8.546189], [47.412877, 8.537663], [47.38139, 8.570705], [47.377169, 8.541164], [47.371953, 8.522082], [47.35132, 8.578829], [47.386345, 8.518202], [47.371521, 8.522099], [47.386954, 8.473328], [47.364771, 8.554544], [47.38824, 8.518585], [47.378852, 8.524976], [47.409531, 8.53762], [47.40411, 8.563503], [47.3938, 8.505822], [47.383699, 8.573721], [47.364548, 8.566429], [47.369503, 8.538582], [47.411568, 8.54666], [47.373113, 8.534526], [47.410601, 8.571233], [47.383805, 8.509926], [47.366503, 8.54473], [47.378803, 8.542496], [47.379075, 8.542289], [47.371722, 8.517866], [47.368863, 8.501284], [47.36694, 8.544143], [47.409357, 8.540876], [47.374511, 8.539745], [47.375214, 8.515818], [47.37514, 8.523656], [47.369062, 8.52532], [47.373355, 8.531697], [47.377558, 8.529558], [47.411581, 8.545255], [47.379355, 8.520232], [47.405613, 8.539169], [47.377656, 8.509498], [47.346538, 8.563811], [47.369409, 8.520004], [47.396253, 8.524457], [47.391019, 8.522469], [47.426728, 8.553841], [47.351769, 8.525761], [47.381231, 8.503226], [47.411567, 8.546752], [47.401717, 8.544918], [47.362372, 8.533683], [47.427277, 8.546297], [47.403478, 8.583894], [47.369014, 8.538003], [47.399348, 8.469355], [47.409425, 8.549742], [47.358902, 8.522015], [47.373017, 8.531359], [47.390959, 8.517368], [47.369795, 8.552279], [47.367853, 8.541819], [47.409187, 8.550095], [47.377729, 8.543798], [47.391664, 8.54263], [47.382083, 8.547464], [47.373433, 8.518682], [47.364913, 8.547332], [47.370166, 8.519794], [47.388807, 8.496145], [47.388485, 8.473145], [47.376823, 8.543514], [47.42385, 8.524476], [47.379642, 8.537481], [47.385493, 8.530449], [47.339652, 8.528717], [47.373374, 8.517304], [47.371135, 8.48887], [47.4021, 8.495296], [47.421018, 8.502086], [47.334818, 8.529968], [47.412342, 8.483786], [47.374324, 8.5225], [47.380645, 8.51218], [47.415375, 8.514033], [47.402048, 8.499018], [47.35967, 8.54905], [47.401777, 8.588521], [47.370791, 8.537497], [47.328494, 8.512811], [47.425871, 8.554049], [47.382418, 8.535975], [47.374385, 8.532248], [47.360412, 8.531643], [47.373555, 8.561495], [47.375242, 8.549811], [47.384306, 8.528504], [47.357065, 8.55519], [47.367655, 8.494706], [47.367281, 8.533916], [47.376889, 8.522288], [47.401137, 8.550947], [47.429426, 8.554746], [47.364103, 8.530316], [47.366639, 8.547407], [47.377102, 8.541626], [47.393724, 8.472638], [47.38825, 8.491101], [47.376762, 8.543301], [47.379645, 8.527694], [47.354352, 8.576061], [47.375519, 8.490545], [47.427467, 8.546169], [47.40925, 8.57147], [47.368973, 8.525185], [47.382717, 8.514698], [47.400879, 8.545974], [47.360729, 8.526619], [47.370263, 8.514288], [47.365162, 8.553228], [47.420388, 8.548937], [47.378544, 8.541285], [47.388583, 8.520353], [47.387146, 8.47296], [47.375649, 8.524103], [47.378618, 8.569084], [47.369769, 8.547499], [47.414152, 8.518805], [47.377318, 8.499347], [47.369777, 8.510372], [47.372298, 8.518844], [47.409929, 8.543127], [47.386715, 8.5476], [47.391321, 8.536238], [47.37642, 8.528184], [47.363261, 8.549852], [47.430383, 8.511592], [47.353682, 8.554365], [47.414244, 8.521497], [47.347262, 8.525815], [47.415777, 8.516254], [47.376098, 8.535607], [47.390612, 8.489611], [47.3835, 8.515668], [47.360317, 8.566816], [47.363224, 8.524353], [47.381633, 8.556831], [47.394757, 8.518108], [47.364319, 8.520841], [47.363716, 8.549253], [47.383867, 8.52925], [47.410159, 8.541648], [47.369348, 8.513052], [47.337313, 8.519168], [47.369475, 8.466408], [47.372349, 8.486908], [47.360851, 8.535611], [47.377896, 8.528056], [47.373829, 8.489347], [47.406391, 8.535846], [47.369418, 8.541838], [47.376526, 8.524598], [47.387062, 8.48623], [47.395149, 8.524275], [47.389701, 8.542854], [47.378536, 8.542119], [47.373327, 8.49417], [47.376244, 8.525837], [47.397239, 8.531538], [47.371362, 8.507319], [47.379102, 8.483253], [47.430963, 8.542729], [47.368021, 8.556135], [47.362064, 8.533888], [47.377538, 8.528869], [47.382852, 8.529044], [47.4014, 8.582074], [47.371025, 8.513522], [47.374688, 8.522945], [47.410576, 8.5422], [47.39923, 8.542574], [47.410569, 8.57265], [47.391702, 8.523516], [47.366549, 8.565054], [47.365739, 8.558629], [47.373582, 8.50355], [47.383602, 8.498797], [47.367915, 8.560608], [47.395261, 8.484749], [47.404425, 8.533567], [47.381881, 8.530018], [47.429168, 8.510759], [47.370488, 8.521959], [47.375376, 8.485405], [47.380614, 8.512563], [47.391186, 8.538103], [47.372629, 8.550339], [47.377709, 8.521219], [47.35967, 8.549103], [47.376592, 8.527102], [47.382785, 8.532354], [47.377264, 8.538769], [47.370363, 8.539011], [47.365569, 8.545518], [47.364102, 8.54746], [47.381785, 8.515276], [47.39224, 8.516944], [47.387681, 8.488467], [47.369512, 8.533869], [47.399562, 8.497459], [47.369899, 8.536644], [47.371784, 8.5428], [47.360955, 8.506329], [47.385417, 8.508687], [47.359479, 8.502448], [47.428845, 8.489133], [47.389764, 8.486853], [47.383788, 8.54044], [47.420867, 8.482058], [47.375243, 8.497121], [47.405423, 8.532646], [47.393435, 8.524717], [47.431319, 8.516423], [47.341408, 8.53038], [47.373151, 8.535255], [47.368221, 8.495697], [47.370772, 8.471292], [47.344034, 8.530421], [47.409791, 8.543469], [47.37908, 8.548262], [47.332574, 8.528546], [47.393202, 8.530422], [47.369725, 8.490669], [47.407556, 8.579052], [47.379353, 8.570198], [47.398489, 8.494841], [47.370185, 8.558418], [47.36957, 8.54192], [47.389801, 8.511292], [47.369072, 8.491173], [47.404092, 8.491003], [47.364191, 8.536302], [47.35478, 8.526061], [47.399095, 8.513916], [47.383747, 8.529579], [47.400175, 8.546237], [47.354237, 8.508048], [47.377972, 8.52476], [47.380956, 8.50379], [47.369292, 8.520028], [47.393354, 8.524782], [47.385671, 8.548545], [47.377966, 8.541525], [47.402017, 8.499521], [47.368973, 8.482313], [47.352518, 8.508212], [47.393244, 8.492909], [47.376994, 8.515854], [47.381844, 8.583998], [47.369106, 8.534033], [47.37069, 8.51668], [47.420682, 8.502358], [47.384302, 8.534623], [47.42516, 8.550362], [47.376796, 8.513943], [47.391248, 8.539098], [47.37069, 8.516733], [47.396631, 8.534003], [47.386225, 8.498213], [47.407332, 8.585328], [47.403567, 8.570342], [47.372013, 8.556351], [47.370377, 8.518448], [47.377779, 8.537628], [47.377931, 8.541511], [47.413905, 8.546867], [47.350485, 8.560307], [47.384687, 8.49613], [47.379286, 8.489706], [47.372945, 8.527557], [47.370179, 8.548779], [47.368492, 8.546532], [47.370161, 8.548791], [47.384048, 8.526234], [47.37017, 8.548792], [47.365099, 8.55324], [47.368661, 8.543901], [47.346416, 8.564391], [47.372464, 8.476158], [47.409473, 8.538043], [47.370067, 8.515012], [47.351851, 8.560455], [47.37414, 8.520987], [47.393691, 8.539532], [47.390931, 8.523183], [47.375938, 8.52877], [47.381373, 8.540907], [47.396276, 8.527756], [47.40259, 8.535476], [47.335342, 8.54108], [47.414452, 8.517486], [47.417162, 8.523014], [47.366544, 8.546095], [47.379588, 8.500915], [47.399024, 8.513796], [47.38337, 8.540869], [47.426437, 8.492757], [47.391969, 8.518011], [47.352221, 8.558504], [47.385878, 8.532457], [47.374527, 8.539971], [47.376957, 8.560427], [47.383071, 8.540174], [47.425808, 8.547552], [47.378274, 8.541346], [47.363689, 8.549252], [47.376427, 8.527483], [47.367719, 8.54641], [47.409012, 8.482037], [47.387095, 8.5188], [47.366358, 8.541113], [47.380421, 8.541602], [47.378878, 8.559885], [47.417634, 8.545394], [47.354808, 8.526829], [47.350951, 8.534242], [47.367029, 8.547124], [47.358937, 8.534459], [47.377593, 8.528698], [47.39237, 8.50782], [47.414906, 8.551208], [47.367512, 8.537919], [47.399704, 8.543763], [47.36643, 8.544821], [47.404441, 8.574733], [47.345475, 8.529259], [47.38875, 8.525562], [47.358125, 8.534694], [47.392508, 8.475833], [47.389037, 8.527528], [47.351766, 8.566436], [47.394235, 8.483854], [47.353815, 8.558312], [47.380529, 8.52648], [47.379441, 8.537861], [47.371539, 8.536334], [47.384562, 8.560958], [47.366656, 8.535293], [47.378217, 8.543569], [47.391152, 8.534115], [47.378952, 8.494798], [47.399856, 8.543859], [47.361854, 8.560388], [47.373398, 8.513782], [47.358219, 8.587939], [47.404938, 8.556035], [47.396923, 8.532551], [47.406899, 8.480976], [47.378972, 8.543585], [47.417215, 8.543133], [47.357674, 8.520547], [47.397228, 8.536532], [47.356237, 8.551586], [47.343986, 8.530777], [47.369745, 8.536826], [47.362224, 8.559389], [47.373316, 8.533047], [47.356702, 8.523466], [47.36361, 8.500293], [47.382148, 8.53695], [47.329764, 8.515496], [47.367772, 8.522791], [47.36913, 8.527638], [47.370757, 8.546659], [47.345984, 8.534445], [47.37818, 8.527518], [47.373655, 8.530432], [47.427067, 8.491709], [47.380212, 8.501564], [47.369903, 8.587184], [47.417278, 8.546832], [47.348559, 8.522758], [47.39643, 8.520976], [47.399703, 8.495858], [47.374512, 8.495425], [47.377566, 8.528711], [47.407226, 8.53222], [47.372864, 8.517042], [47.369171, 8.554451], [47.374187, 8.544453], [47.377054, 8.521947], [47.377468, 8.498675], [47.397719, 8.533058], [47.395598, 8.526258], [47.360332, 8.578969], [47.370163, 8.525845], [47.368614, 8.48322], [47.423495, 8.53535], [47.392253, 8.511646], [47.374113, 8.51712], [47.390207, 8.485683], [47.369014, 8.537977], [47.39319, 8.530713], [47.373078, 8.537279], [47.362454, 8.547704], [47.381179, 8.510774], [47.366757, 8.563112], [47.362534, 8.534613], [47.357529, 8.52159], [47.370317, 8.539049], [47.379203, 8.544861], [47.364004, 8.56692], [47.370523, 8.522026], [47.37043, 8.514689], [47.375802, 8.537428], [47.346596, 8.52874], [47.3773, 8.49838], [47.377257, 8.512774], [47.383066, 8.513937], [47.402188, 8.496504], [47.388187, 8.491166], [47.354352, 8.553016], [47.370621, 8.470018], [47.411047, 8.545682], [47.391497, 8.519472], [47.373573, 8.53435], [47.422154, 8.547768], [47.383215, 8.541051], [47.367749, 8.496204], [47.376554, 8.541522], [47.373485, 8.568657], [47.398564, 8.591472], [47.364642, 8.537105], [47.375115, 8.51575], [47.377769, 8.507951], [47.394707, 8.536758], [47.354886, 8.574775], [47.377003, 8.527388], [47.418907, 8.507557], [47.357294, 8.508268], [47.382802, 8.540049], [47.375825, 8.515897], [47.357241, 8.552878], [47.374877, 8.53435], [47.378422, 8.510295], [47.406672, 8.479183], [47.366738, 8.541769], [47.366644, 8.541304], [47.37344, 8.531354], [47.355659, 8.555545], [47.418538, 8.483006], [47.369768, 8.501633], [47.362437, 8.504625], [47.397668, 8.532805], [47.386221, 8.518001], [47.387667, 8.492891], [47.365771, 8.552566], [47.385245, 8.536696], [47.333564, 8.51896], [47.386903, 8.539206], [47.396059, 8.544973], [47.37663, 8.54396], [47.383376, 8.484092], [47.368324, 8.544304], [47.369515, 8.525885], [47.383517, 8.543308], [47.348305, 8.5344], [47.376806, 8.536787], [47.369096, 8.537859], [47.368301, 8.578133], [47.391099, 8.545307], [47.373101, 8.490325], [47.367946, 8.560211], [47.387021, 8.539977], [47.341336, 8.527494], [47.404924, 8.502269], [47.374566, 8.533973], [47.406808, 8.550522], [47.390452, 8.539651], [47.377572, 8.522341], [47.398417, 8.494826], [47.382037, 8.530617], [47.372751, 8.600937], [47.369837, 8.529016], [47.421565, 8.550022], [47.378827, 8.542735], [47.409159, 8.547471], [47.341174, 8.530349], [47.389936, 8.536196], [47.41064, 8.542148], [47.379578, 8.543306], [47.375752, 8.559502], [47.377838, 8.509303], [47.380673, 8.511995], [47.357102, 8.522071], [47.379912, 8.524164], [47.364632, 8.545697], [47.398976, 8.533335], [47.409602, 8.480472], [47.418597, 8.554691], [47.357473, 8.521853], [47.384948, 8.495234], [47.390835, 8.509365], [47.362943, 8.549184], [47.41384, 8.527174], [47.410499, 8.56976], [47.420123, 8.548468], [47.428792, 8.543956], [47.393849, 8.505386], [47.383882, 8.504524], [47.381194, 8.556716], [47.355577, 8.513912], [47.367944, 8.544575], [47.374264, 8.524962], [47.384082, 8.511057], [47.400771, 8.548793], [47.404461, 8.557019], [47.387982, 8.539242], [47.387507, 8.519073], [47.37541, 8.517941], [47.393466, 8.512743], [47.378947, 8.54524], [47.35745, 8.535686], [47.385456, 8.522873], [47.362352, 8.559114], [47.399442, 8.543016], [47.372534, 8.505012], [47.368491, 8.548426], [47.407356, 8.530791], [47.412165, 8.539728], [47.370653, 8.516772], [47.380626, 8.512219], [47.335517, 8.518814], [47.362478, 8.533844], [47.380431, 8.515778], [47.407516, 8.548073], [47.352075, 8.534331], [47.381206, 8.537566], [47.397147, 8.530794], [47.374268, 8.513018], [47.369005, 8.537976], [47.390935, 8.488717], [47.36112, 8.571122], [47.390712, 8.509032], [47.378394, 8.520107], [47.364757, 8.502672], [47.419187, 8.547613], [47.366757, 8.563126], [47.358484, 8.571145], [47.365408, 8.521657], [47.404369, 8.533764], [47.369333, 8.527086], [47.358808, 8.585701], [47.413401, 8.53933], [47.375118, 8.540314], [47.36289, 8.526438], [47.394458, 8.51928], [47.371343, 8.547505], [47.372238, 8.523345], [47.381829, 8.535499], [47.369389, 8.525896], [47.382833, 8.531057], [47.375371, 8.485947], [47.371997, 8.521182], [47.368182, 8.557224], [47.385462, 8.526025], [47.409676, 8.54511], [47.416919, 8.538263], [47.371057, 8.531239], [47.366671, 8.553498], [47.360998, 8.524851], [47.396351, 8.489539], [47.375129, 8.553225], [47.392626, 8.538954], [47.35928, 8.500603], [47.394854, 8.529727], [47.376001, 8.538174], [47.360193, 8.579403], [47.39633, 8.47294], [47.376862, 8.543197], [47.412943, 8.538287], [47.365698, 8.55643], [47.368751, 8.528743], [47.360561, 8.566622], [47.407607, 8.58389], [47.361001, 8.506211], [47.363649, 8.574684], [47.362607, 8.598055], [47.419942, 8.506597], [47.37853, 8.575226], [47.377275, 8.512721], [47.398721, 8.532734], [47.368865, 8.501006], [47.429365, 8.543345], [47.372544, 8.546974], [47.374743, 8.565161], [47.363199, 8.549706], [47.383134, 8.540162], [47.406771, 8.572888], [47.428712, 8.488879], [47.394859, 8.539702], [47.375481, 8.496649], [47.378642, 8.519489], [47.388019, 8.537243], [47.375258, 8.515925], [47.369599, 8.525648], [47.400417, 8.54819], [47.373922, 8.54491], [47.398461, 8.500815], [47.369437, 8.526585], [47.367694, 8.488418], [47.375578, 8.526896], [47.371917, 8.522107], [47.340088, 8.530115], [47.367304, 8.546574], [47.35199, 8.560061], [47.378656, 8.526681], [47.414207, 8.552863], [47.378441, 8.540859], [47.389686, 8.512058], [47.427599, 8.539915], [47.380355, 8.542872], [47.380337, 8.542898], [47.375582, 8.521652], [47.378512, 8.575213], [47.372917, 8.533383], [47.3747, 8.535935], [47.367994, 8.495984], [47.376591, 8.529154], [47.386186, 8.475683], [47.376801, 8.528775], [47.392788, 8.528493], [47.371033, 8.546982], [47.391529, 8.54268], [47.332736, 8.528576], [47.377243, 8.54196], [47.376924, 8.524354], [47.38339, 8.543452], [47.361477, 8.56124], [47.384801, 8.524621], [47.391598, 8.519222], [47.375287, 8.54331], [47.361352, 8.522607], [47.401453, 8.503074], [47.402387, 8.493514], [47.398942, 8.542582], [47.375866, 8.537323], [47.393453, 8.524731], [47.371893, 8.53413], [47.387814, 8.485715], [47.369437, 8.526572], [47.375693, 8.527097], [47.377844, 8.498868], [47.378057, 8.541434], [47.428069, 8.552769], [47.378555, 8.54204], [47.410184, 8.526636], [47.426589, 8.546773], [47.429901, 8.544615], [47.351332, 8.525395], [47.373599, 8.523055], [47.414195, 8.519032], [47.406725, 8.584825], [47.356167, 8.556032], [47.414158, 8.546674], [47.378846, 8.542682], [47.360412, 8.594407], [47.377161, 8.537297], [47.390133, 8.478886], [47.37295, 8.519361], [47.388941, 8.52248], [47.371808, 8.530791], [47.394258, 8.490213], [47.369238, 8.527601], [47.381905, 8.51692], [47.361765, 8.511138], [47.414459, 8.550974], [47.365596, 8.50535], [47.369164, 8.556132], [47.406916, 8.550591], [47.381201, 8.538148], [47.378364, 8.541348], [47.390918, 8.47959], [47.352087, 8.573167], [47.374435, 8.495887], [47.371926, 8.529695], [47.398465, 8.533139], [47.397544, 8.48894], [47.427496, 8.545997], [47.370481, 8.52462], [47.427474, 8.551087], [47.389832, 8.511822], [47.414778, 8.551497], [47.376726, 8.543327], [47.410909, 8.505847], [47.402633, 8.547852], [47.406889, 8.550537], [47.371177, 8.493134], [47.364699, 8.557389], [47.373582, 8.534337], [47.373067, 8.538365], [47.388117, 8.520145], [47.365001, 8.567021], [47.366687, 8.541464], [47.387993, 8.519904], [47.371452, 8.513067], [47.369862, 8.525389], [47.37038, 8.518051], [47.378802, 8.542588], [47.40629, 8.480686], [47.373683, 8.5341], [47.3691, 8.492034], [47.383122, 8.529063], [47.363876, 8.598864], [47.362122, 8.607815], [47.379882, 8.548146], [47.37335, 8.536993], [47.367364, 8.523193], [47.347259, 8.532803], [47.372397, 8.523613], [47.3862, 8.525073], [47.375753, 8.549107], [47.36095, 8.530887], [47.360918, 8.5549], [47.376566, 8.527022], [47.423426, 8.494513], [47.380649, 8.496142], [47.378349, 8.52388], [47.350894, 8.563625], [47.405995, 8.591275], [47.373171, 8.536897], [47.383312, 8.48421], [47.373233, 8.537031], [47.393889, 8.509837], [47.366988, 8.520087], [47.384976, 8.508784], [47.377203, 8.499093], [47.370215, 8.548806], [47.419176, 8.547732], [47.365037, 8.545679], [47.362604, 8.504946], [47.380729, 8.556441], [47.371867, 8.529309], [47.373987, 8.502591], [47.366148, 8.540486], [47.383079, 8.527857], [47.411593, 8.559938], [47.395263, 8.491452], [47.38265, 8.513148], [47.410993, 8.545654], [47.360193, 8.579403], [47.36393, 8.528631], [47.370093, 8.540832], [47.383424, 8.533254], [47.413022, 8.544132], [47.417912, 8.505271], [47.366745, 8.545768], [47.422467, 8.550743], [47.41075, 8.555905], [47.324581, 8.509875], [47.373239, 8.525974], [47.375121, 8.545584], [47.413877, 8.524206], [47.393794, 8.489807], [47.37097, 8.502028], [47.384381, 8.531936], [47.377647, 8.541995], [47.40763, 8.543689], [47.3809, 8.492201], [47.387289, 8.519201], [47.378553, 8.519461], [47.426617, 8.555019], [47.397618, 8.48869], [47.374839, 8.553431], [47.404322, 8.576837], [47.370188, 8.548792], [47.369605, 8.552395], [47.378379, 8.541613], [47.378947, 8.5443], [47.368464, 8.540931], [47.358237, 8.51807], [47.352509, 8.508172], [47.398801, 8.540353], [47.370264, 8.536096], [47.384334, 8.53126], [47.371467, 8.547653], [47.378892, 8.519759], [47.362117, 8.51096], [47.351413, 8.576727], [47.392391, 8.538128], [47.376372, 8.537082], [47.402109, 8.499231], [47.404275, 8.548297], [47.363028, 8.522271], [47.363746, 8.574819], [47.369389, 8.525896], [47.414091, 8.51675], [47.365822, 8.56774], [47.336908, 8.533517], [47.394347, 8.519623], [47.408764, 8.504293], [47.39805, 8.541795], [47.366503, 8.519985], [47.372926, 8.52091], [47.370748, 8.474959], [47.391923, 8.518103], [47.391463, 8.513391], [47.36956, 8.551467], [47.363898, 8.549085], [47.368959, 8.528575], [47.393372, 8.524769], [47.399587, 8.542834], [47.382861, 8.530011], [47.368802, 8.528995], [47.378761, 8.528881], [47.373351, 8.534994], [47.415032, 8.545592], [47.415005, 8.545645], [47.402013, 8.497971], [47.400788, 8.5489], [47.362249, 8.547448], [47.377855, 8.508416], [47.391349, 8.526622], [47.380195, 8.535174], [47.404667, 8.551511], [47.361148, 8.600843], [47.369999, 8.51848], [47.359688, 8.549063], [47.408509, 8.550518], [47.363286, 8.5292], [47.401262, 8.590616], [47.363425, 8.533545], [47.382553, 8.548189], [47.350748, 8.560128], [47.369614, 8.513388], [47.373044, 8.533187], [47.366411, 8.541153], [47.360314, 8.550413], [47.361198, 8.532229], [47.323024, 8.513852], [47.390753, 8.521987], [47.367758, 8.496205], [47.355622, 8.574076], [47.371916, 8.52212], [47.369817, 8.532061], [47.377063, 8.521934], [47.406701, 8.538211], [47.386245, 8.531696], [47.380524, 8.512562], [47.377761, 8.507898], [47.37641, 8.543466], [47.340948, 8.53143], [47.367095, 8.543961], [47.377207, 8.541959], [47.391141, 8.522909], [47.364177, 8.526306], [47.377231, 8.547853], [47.405102, 8.481789], [47.36524, 8.494129], [47.338454, 8.519284], [47.37775, 8.5416], [47.420286, 8.508261], [47.362708, 8.518915], [47.383805, 8.509913], [47.377145, 8.552155], [47.371177, 8.520371], [47.370665, 8.519341], [47.366373, 8.545178], [47.373913, 8.538382], [47.383611, 8.530676], [47.408137, 8.503048], [47.370852, 8.536757], [47.362269, 8.54729], [47.388515, 8.528551], [47.370538, 8.546972], [47.37346, 8.529223], [47.372, 8.487695], [47.378208, 8.543569], [47.381028, 8.553388], [47.386788, 8.547482], [47.379836, 8.55478], [47.398382, 8.504509], [47.370285, 8.557387], [47.421154, 8.549722], [47.377259, 8.521262], [47.369284, 8.541729], [47.413854, 8.539936], [47.351331, 8.525435], [47.410778, 8.538043], [47.370783, 8.546765], [47.377032, 8.52723], [47.38508, 8.532268], [47.388471, 8.485582], [47.37925, 8.538029], [47.405183, 8.559551], [47.378544, 8.541365], [47.390891, 8.488531], [47.388428, 8.540549], [47.361173, 8.506056], [47.419882, 8.501375], [47.382009, 8.530735], [47.366513, 8.540864], [47.379039, 8.545096], [47.364031, 8.554794], [47.407814, 8.580277], [47.410056, 8.542984], [47.37004, 8.540805], [47.38033, 8.542699], [47.372796, 8.535658], [47.374665, 8.535921], [47.378857, 8.510992], [47.36923, 8.527574], [47.387823, 8.485702], [47.41966, 8.504975], [47.372289, 8.536031], [47.416745, 8.54523], [47.354822, 8.510972], [47.379143, 8.500403], [47.371093, 8.5236], [47.379045, 8.527364], [47.393693, 8.501832], [47.379371, 8.525252], [47.353824, 8.558313], [47.413531, 8.545455], [47.422811, 8.494819], [47.372121, 8.550726], [47.399834, 8.543329], [47.376926, 8.528897], [47.370054, 8.54871], [47.378599, 8.505809], [47.419213, 8.54772], [47.382137, 8.501615], [47.388171, 8.520173], [47.377275, 8.515648], [47.395611, 8.535333], [47.361028, 8.506145], [47.380828, 8.541399], [47.358709, 8.599241], [47.389037, 8.478706], [47.378198, 8.520858], [47.376912, 8.527546], [47.399712, 8.547632], [47.378528, 8.541113], [47.391351, 8.487467], [47.377255, 8.538769], [47.378288, 8.530381], [47.424163, 8.506258], [47.397364, 8.503707], [47.411651, 8.528494], [47.385618, 8.493711], [47.398731, 8.532641], [47.376993, 8.527507], [47.385041, 8.508573], [47.376443, 8.544738], [47.383274, 8.506101], [47.374798, 8.544598], [47.417027, 8.523012], [47.369222, 8.540669], [47.363247, 8.525704], [47.381389, 8.513374], [47.369005, 8.537963], [47.370061, 8.548909], [47.401572, 8.578328], [47.377515, 8.538827], [47.360661, 8.524288], [47.359919, 8.534347], [47.375831, 8.559622], [47.373239, 8.538276], [47.370657, 8.508589], [47.388606, 8.483691], [47.365289, 8.530486], [47.393258, 8.533946], [47.403579, 8.547752], [47.390603, 8.489598], [47.377847, 8.519897], [47.373093, 8.537597], [47.394668, 8.514052], [47.374635, 8.537126], [47.370173, 8.513293], [47.400497, 8.500511], [47.373657, 8.535901], [47.407279, 8.544596], [47.383869, 8.511715], [47.414916, 8.515031], [47.376214, 8.52238], [47.370767, 8.535245], [47.38154, 8.513602], [47.385069, 8.547566], [47.371928, 8.535203], [47.37179, 8.530778], [47.3456, 8.529434], [47.369752, 8.49059], [47.40688, 8.585517], [47.375881, 8.537562], [47.382163, 8.505576], [47.410552, 8.550336], [47.423646, 8.538402], [47.37325, 8.519009], [47.383758, 8.512084], [47.418641, 8.547257], [47.375264, 8.490818], [47.400319, 8.505144], [47.409508, 8.567089], [47.362087, 8.507411], [47.3627, 8.518915], [47.369231, 8.525561], [47.397889, 8.534134], [47.365618, 8.539442], [47.366262, 8.534173], [47.402391, 8.535539], [47.390583, 8.522884], [47.378918, 8.515059], [47.40188, 8.54573], [47.383858, 8.515821], [47.384375, 8.531605], [47.360271, 8.523671], [47.384815, 8.529773], [47.386851, 8.525616], [47.370777, 8.515066], [47.393182, 8.492801], [47.377953, 8.492898], [47.407966, 8.53674], [47.371912, 8.52069], [47.374379, 8.522382], [47.410071, 8.546152], [47.410854, 8.5432], [47.383231, 8.531807], [47.404377, 8.572148], [47.365169, 8.53746], [47.383054, 8.499634], [47.391676, 8.504958], [47.341881, 8.530747], [47.394197, 8.490053], [47.388821, 8.522756], [47.385342, 8.542472], [47.36905, 8.537991], [47.372685, 8.53122], [47.366551, 8.548187], [47.426262, 8.547045], [47.362037, 8.533888], [47.40798, 8.578028], [47.405135, 8.50479], [47.397935, 8.534043], [47.375819, 8.545056], [47.393328, 8.492592], [47.375503, 8.5629], [47.37946, 8.54431], [47.375569, 8.526896], [47.383289, 8.530417], [47.373501, 8.536215], [47.360457, 8.594421], [47.414339, 8.551249], [47.355971, 8.579696], [47.37013, 8.540714], [47.380169, 8.542564], [47.369673, 8.518712], [47.373352, 8.534915], [47.389763, 8.477992], [47.394829, 8.525726], [47.393751, 8.472665], [47.385192, 8.53933], [47.344424, 8.53293], [47.365865, 8.532417], [47.377623, 8.526527], [47.367626, 8.541112], [47.370179, 8.548792], [47.390802, 8.50906], [47.392116, 8.498211], [47.401462, 8.499219], [47.366509, 8.540295], [47.371141, 8.53945], [47.344383, 8.526868], [47.37068, 8.516746], [47.404752, 8.488605], [47.409672, 8.54458], [47.372364, 8.523335], [47.393204, 8.530157], [47.362737, 8.547181], [47.376446, 8.536872], [47.377531, 8.529598], [47.423048, 8.498389], [47.37846, 8.540727], [47.371654, 8.519454], [47.36435, 8.536623], [47.405708, 8.502086], [47.369083, 8.518263], [47.37157, 8.515903], [47.366738, 8.541769], [47.367343, 8.545357], [47.393742, 8.51308], [47.389969, 8.531733], [47.3664, 8.540478], [47.393729, 8.505754], [47.403708, 8.496508], [47.377911, 8.508192], [47.330737, 8.514364], [47.400676, 8.550315], [47.357629, 8.521499], [47.358249, 8.586721], [47.414198, 8.529275], [47.366576, 8.545526], [47.367086, 8.544001], [47.405719, 8.59103], [47.344904, 8.533562], [47.377551, 8.498491], [47.373761, 8.528805], [47.376862, 8.528048], [47.3778, 8.516307], [47.372458, 8.511366], [47.370197, 8.548805], [47.377689, 8.527204], [47.374873, 8.520525], [47.366867, 8.549928], [47.397658, 8.526208], [47.422458, 8.55073], [47.389381, 8.488395], [47.373797, 8.537334], [47.372543, 8.505012], [47.420678, 8.513557], [47.405592, 8.572929], [47.389301, 8.529083], [47.381479, 8.542021], [47.373642, 8.528975], [47.377374, 8.537659], [47.373056, 8.532896], [47.396657, 8.529353], [47.389703, 8.526535], [47.42705, 8.491576], [47.377966, 8.548133], [47.390131, 8.522146], [47.363085, 8.535246], [47.362144, 8.559282], [47.409544, 8.575398], [47.388771, 8.528119], [47.364015, 8.526342], [47.415035, 8.483494], [47.366487, 8.540731], [47.397623, 8.487127], [47.394696, 8.525525], [47.386033, 8.554817], [47.374648, 8.547998], [47.344029, 8.53189], [47.362337, 8.504662], [47.37964, 8.526264], [47.397667, 8.532924], [47.41413, 8.519256], [47.410323, 8.546117], [47.422466, 8.550836], [47.381579, 8.537189], [47.393975, 8.473769], [47.381424, 8.5174], [47.414073, 8.541491], [47.364131, 8.53021], [47.387528, 8.51963], [47.409946, 8.535641], [47.382047, 8.540907], [47.397304, 8.531301], [47.375872, 8.523287], [47.351881, 8.527286], [47.378521, 8.575213], [47.356808, 8.558587], [47.36416, 8.569346], [47.380144, 8.494239], [47.417167, 8.551865], [47.363108, 8.503989], [47.351215, 8.561064], [47.379016, 8.562351], [47.329882, 8.529761], [47.357524, 8.535489], [47.368583, 8.524595], [47.364656, 8.554423], [47.386653, 8.553069], [47.396736, 8.529554], [47.381764, 8.513726], [47.407735, 8.574564], [47.42705, 8.49159], [47.359547, 8.535557], [47.371818, 8.487996], [47.377162, 8.540025], [47.375187, 8.518678], [47.398158, 8.536087], [47.41405, 8.546685], [47.408651, 8.540371], [47.330232, 8.529834], [47.38583, 8.529993], [47.373756, 8.519682], [47.387042, 8.494362], [47.411889, 8.523291], [47.384993, 8.530995], [47.376381, 8.540777], [47.395201, 8.535854], [47.383814, 8.509886], [47.389156, 8.530246], [47.359681, 8.587454], [47.388839, 8.49559], [47.361285, 8.56158], [47.38164, 8.528861], [47.371765, 8.547554], [47.415962, 8.508956], [47.357057, 8.598054], [47.391081, 8.479527], [47.372883, 8.535938], [47.369079, 8.565823], [47.376883, 8.548561], [47.363635, 8.535125], [47.365539, 8.526876], [47.399304, 8.542377], [47.375446, 8.524602], [47.366807, 8.543028], [47.42576, 8.547803], [47.362752, 8.567966], [47.397898, 8.534095], [47.405456, 8.593039], [47.386884, 8.493935], [47.39126, 8.520779], [47.425934, 8.493649], [47.343999, 8.535079], [47.360067, 8.580274], [47.379877, 8.495902], [47.377887, 8.507887], [47.381473, 8.564999], [47.371115, 8.493054], [47.403737, 8.560223], [47.415307, 8.518458], [47.357911, 8.519268], [47.375152, 8.518518], [47.368806, 8.524838], [47.390219, 8.52334], [47.371218, 8.530382], [47.360027, 8.521905], [47.362459, 8.568489], [47.352881, 8.558174], [47.371486, 8.547548], [47.408217, 8.547133], [47.376411, 8.528144], [47.391668, 8.513647], [47.405684, 8.549638], [47.393831, 8.505465], [47.36646, 8.509233], [47.377398, 8.529436], [47.339793, 8.52995], [47.411553, 8.545387], [47.400122, 8.494224], [47.417416, 8.552109], [47.412288, 8.523896], [47.386959, 8.528572], [47.368457, 8.524566], [47.360689, 8.55062], [47.371293, 8.555422], [47.385502, 8.530449], [47.375659, 8.548628], [47.384149, 8.55152], [47.374038, 8.476175], [47.403435, 8.556109], [47.372513, 8.539876], [47.356696, 8.522155], [47.364378, 8.529805], [47.369553, 8.5257], [47.411281, 8.570665], [47.412894, 8.540592], [47.39778, 8.530396], [47.397772, 8.53033], [47.372938, 8.531106], [47.376982, 8.541915], [47.369686, 8.525875], [47.377759, 8.52547], [47.371377, 8.51725], [47.412332, 8.554242], [47.372882, 8.520856], [47.369958, 8.51125], [47.421773, 8.509895], [47.395767, 8.52454], [47.368221, 8.560575], [47.415318, 8.514376], [47.356705, 8.522156], [47.373085, 8.534565], [47.391944, 8.517852], [47.399806, 8.502233], [47.3984, 8.468834], [47.374586, 8.54601], [47.357729, 8.554423], [47.415653, 8.513151], [47.368274, 8.520193], [47.413972, 8.545491], [47.373754, 8.536128], [47.385307, 8.536697], [47.396868, 8.54589], [47.38614, 8.53527], [47.415095, 8.51514], [47.372597, 8.534793], [47.39062, 8.489691], [47.378474, 8.568114], [47.379206, 8.559468], [47.355704, 8.573985], [47.414424, 8.536701], [47.414328, 8.538316], [47.414424, 8.536741], [47.389422, 8.521059], [47.366591, 8.54117], [47.386978, 8.547367], [47.376807, 8.544269], [47.381578, 8.541944], [47.414119, 8.544235], [47.370108, 8.528863], [47.368073, 8.54136], [47.405453, 8.480722], [47.344631, 8.532987], [47.377644, 8.506876], [47.395811, 8.545511], [47.387938, 8.539095], [47.348478, 8.562264], [47.363169, 8.526365], [47.375031, 8.519032], [47.366943, 8.545719], [47.365171, 8.553215], [47.414121, 8.519295], [47.376278, 8.540298], [47.425555, 8.54764], [47.326028, 8.514865], [47.374769, 8.523953], [47.414615, 8.520325], [47.397902, 8.535579], [47.397673, 8.494493], [47.368203, 8.560574], [47.413008, 8.562459], [47.370767, 8.535272], [47.366525, 8.540533], [47.370785, 8.535259], [47.374678, 8.550567], [47.375239, 8.545507], [47.37964, 8.515762], [47.417181, 8.541939], [47.370052, 8.548908], [47.367258, 8.545725], [47.376702, 8.497812], [47.375034, 8.518728], [47.374265, 8.524909], [47.373963, 8.50324], [47.383143, 8.497834], [47.409476, 8.544324], [47.408555, 8.546624], [47.376882, 8.540165], [47.360919, 8.531296], [47.366985, 8.491238], [47.373406, 8.534863], [47.406843, 8.563667], [47.397603, 8.481403], [47.394533, 8.49455], [47.371058, 8.525453], [47.388442, 8.486853], [47.370557, 8.508733], [47.408703, 8.546242], [47.369204, 8.543581], [47.371407, 8.522693], [47.358851, 8.516811], [47.392885, 8.490848], [47.387049, 8.547395], [47.421405, 8.499033], [47.364228, 8.521872], [47.362727, 8.518902], [47.386363, 8.487991], [47.378531, 8.5752], [47.400701, 8.548646], [47.427549, 8.546011], [47.372909, 8.53517], [47.368095, 8.534356], [47.383929, 8.528364], [47.391423, 8.516742], [47.386758, 8.490966], [47.37442, 8.539849], [47.387809, 8.527119], [47.388961, 8.491155], [47.343015, 8.534476], [47.370351, 8.534562], [47.388653, 8.483414], [47.395224, 8.521972], [47.373365, 8.531644], [47.410038, 8.542971], [47.37615, 8.489313], [47.413097, 8.543895], [47.37553, 8.486361], [47.366007, 8.533506], [47.389305, 8.536289], [47.378014, 8.526072], [47.404205, 8.561134], [47.410978, 8.567663], [47.385123, 8.537223], [47.372959, 8.524141], [47.356706, 8.535433], [47.373261, 8.535045], [47.337716, 8.519309], [47.384975, 8.508903], [47.371757, 8.493702], [47.388906, 8.515578], [47.385258, 8.527703], [47.414746, 8.545454], [47.351279, 8.560033], [47.375886, 8.500537], [47.353362, 8.576093], [47.375431, 8.528138], [47.374022, 8.54294], [47.361316, 8.525479], [47.415982, 8.515529], [47.360934, 8.547633], [47.345759, 8.534466], [47.383229, 8.506021], [47.419595, 8.505172], [47.378769, 8.539423], [47.402441, 8.499384], [47.387183, 8.519027], [47.375688, 8.541848], [47.356013, 8.556148], [47.38533, 8.530525], [47.401532, 8.548319], [47.369649, 8.533647], [47.366989, 8.520021], [47.378948, 8.523402], [47.388233, 8.520254], [47.378111, 8.497258], [47.365541, 8.539004], [47.354791, 8.526816], [47.413996, 8.549533], [47.342491, 8.530932], [47.382711, 8.537319], [47.333029, 8.518473], [47.372575, 8.537203], [47.370127, 8.521091], [47.376924, 8.543317], [47.411543, 8.52661], [47.370534, 8.492605], [47.343555, 8.535387], [47.350158, 8.560631], [47.362779, 8.510404], [47.366474, 8.547788], [47.342348, 8.530863], [47.37102, 8.523757], [47.406907, 8.550577], [47.374681, 8.536041], [47.381277, 8.517676], [47.407593, 8.558701], [47.375229, 8.539005], [47.420234, 8.538756], [47.37554, 8.563721], [47.370904, 8.53881], [47.373949, 8.498896], [47.410651, 8.550338], [47.363903, 8.547562], [47.364469, 8.566281], [47.366282, 8.537722], [47.377505, 8.529451], [47.429313, 8.548739], [47.383719, 8.573509], [47.40848, 8.581152], [47.386768, 8.547601], [47.38619, 8.52804], [47.378682, 8.542003], [47.370188, 8.548792], [47.380323, 8.52637], [47.375532, 8.518314], [47.403018, 8.534876], [47.380829, 8.541293], [47.366481, 8.540493], [47.338434, 8.529976], [47.373692, 8.534101], [47.405785, 8.555947], [47.382116, 8.571926], [47.375975, 8.53816], [47.370683, 8.501969], [47.376477, 8.534542], [47.392729, 8.523272], [47.404434, 8.533567], [47.375876, 8.540978], [47.352923, 8.534071], [47.369754, 8.536813], [47.369749, 8.552305], [47.394, 8.54485], [47.380152, 8.513839], [47.354446, 8.559093], [47.378014, 8.512564], [47.377508, 8.574], [47.387477, 8.479218], [47.368003, 8.52408], [47.370762, 8.543296], [47.373763, 8.536128], [47.388613, 8.488843], [47.353599, 8.554549], [47.370259, 8.513758], [47.380795, 8.581791], [47.387008, 8.546123], [47.359706, 8.55089], [47.416023, 8.50628], [47.366966, 8.537696], [47.38676, 8.553177], [47.385123, 8.50839], [47.348024, 8.528041], [47.358527, 8.551898], [47.42274, 8.539086], [47.372508, 8.517511], [47.404225, 8.561002], [47.374096, 8.54457], [47.391252, 8.541575], [47.414249, 8.534312], [47.405952, 8.581111], [47.374702, 8.487325], [47.398265, 8.53711], [47.377397, 8.509281], [47.381478, 8.503721], [47.370915, 8.547046], [47.411939, 8.545515], [47.365713, 8.567764], [47.37748, 8.499337], [47.35869, 8.590332], [47.363298, 8.533649], [47.399672, 8.51769], [47.367903, 8.52997], [47.373652, 8.536457], [47.425712, 8.493379], [47.405282, 8.480692], [47.391688, 8.517317], [47.381461, 8.517216], [47.398122, 8.591582], [47.373567, 8.519718], [47.35144, 8.576701], [47.354088, 8.57542], [47.375882, 8.510733], [47.369233, 8.52817], [47.413995, 8.54304], [47.39813, 8.536219], [47.40518, 8.503797], [47.36648, 8.532999], [47.394982, 8.524762], [47.379393, 8.523888], [47.367781, 8.560459], [47.378784, 8.514937], [47.388317, 8.519977], [47.373966, 8.538436], [47.384979, 8.537167], [47.377125, 8.535389], [47.392649, 8.534596], [47.389429, 8.511655], [47.407577, 8.585068], [47.38436, 8.548332], [47.392397, 8.491117], [47.387247, 8.518936], [47.410529, 8.549911], [47.337814, 8.53474], [47.371317, 8.53041], [47.391379, 8.540518], [47.372523, 8.478649], [47.378777, 8.542389], [47.426683, 8.553787], [47.392167, 8.492702], [47.37868, 8.523145], [47.376585, 8.54392], [47.377734, 8.507924], [47.371476, 8.547667], [47.393839, 8.505558], [47.370435, 8.521839], [47.408842, 8.537248], [47.39378, 8.54527], [47.37579, 8.536713], [47.400251, 8.586408], [47.389552, 8.491379], [47.413618, 8.480988], [47.387495, 8.518384], [47.398912, 8.53348], [47.365136, 8.564217], [47.39589, 8.526768], [47.362233, 8.559363], [47.387075, 8.477873], [47.391803, 8.491198], [47.387278, 8.488274], [47.378673, 8.541976], [47.357321, 8.554746], [47.398857, 8.533571], [47.419116, 8.507336], [47.371349, 8.515449], [47.370789, 8.524375], [47.373992, 8.538596], [47.39462, 8.488048], [47.392062, 8.499204], [47.384652, 8.549795], [47.382224, 8.499961], [47.382155, 8.514184], [47.370792, 8.537351], [47.383879, 8.509729], [47.383466, 8.530765], [47.36499, 8.532651], [47.387701, 8.538481], [47.426279, 8.55464], [47.356762, 8.573372], [47.40809, 8.547303], [47.361716, 8.552349], [47.373047, 8.532949], [47.386489, 8.483], [47.410813, 8.547492], [47.403146, 8.588338], [47.402032, 8.496898], [47.373485, 8.519848], [47.383799, 8.5326], [47.403117, 8.486427], [47.377711, 8.509366], [47.39963, 8.502825], [47.37239, 8.509895], [47.388388, 8.528614], [47.381886, 8.541805], [47.380336, 8.542964], [47.373014, 8.534484], [47.411005, 8.526334], [47.369134, 8.528128], [47.364255, 8.547464], [47.427332, 8.546126], [47.383782, 8.539116], [47.378089, 8.541885], [47.339935, 8.530178], [47.413191, 8.55377], [47.414237, 8.550704], [47.36662, 8.541873], [47.367343, 8.532116], [47.367102, 8.54412], [47.381076, 8.569758], [47.372505, 8.478675], [47.375485, 8.547949], [47.372496, 8.511076], [47.407972, 8.494591], [47.368528, 8.54652], [47.341774, 8.530719], [47.403823, 8.568055], [47.368154, 8.55725], [47.361012, 8.549872], [47.370164, 8.540966], [47.383858, 8.529224], [47.365712, 8.521862], [47.383639, 8.573428], [47.411209, 8.546546], [47.335375, 8.525308], [47.391797, 8.528644], [47.384368, 8.548399], [47.378048, 8.513836], [47.380107, 8.537821], [47.383184, 8.506099], [47.376954, 8.54206], [47.367079, 8.522843], [47.410192, 8.548539], [47.372047, 8.53498], [47.35809, 8.520304], [47.380089, 8.526352], [47.358931, 8.557626], [47.38339, 8.548206], [47.368486, 8.524368], [47.414101, 8.550794], [47.364565, 8.553613], [47.37705, 8.543347], [47.394258, 8.490213], [47.373383, 8.538226], [47.390618, 8.485942], [47.388372, 8.485647], [47.391078, 8.484773], [47.374368, 8.523508], [47.362102, 8.564484], [47.370435, 8.549247], [47.393737, 8.509768], [47.371824, 8.543318], [47.361797, 8.562544], [47.373413, 8.552991], [47.427259, 8.549134], [47.359589, 8.549088], [47.385547, 8.529483], [47.394214, 8.4931], [47.408804, 8.546006], [47.364276, 8.566648], [47.368966, 8.501803], [47.374978, 8.541794], [47.36494, 8.519821], [47.407583, 8.579026], [47.361026, 8.571544], [47.391876, 8.51838], [47.357465, 8.521774], [47.373463, 8.534586], [47.36518, 8.545696], [47.368634, 8.537293], [47.426481, 8.492811], [47.375041, 8.544589], [47.392933, 8.474583], [47.35772, 8.554423], [47.409841, 8.543868], [47.346865, 8.526866], [47.38466, 8.479322], [47.371691, 8.517402], [47.3717, 8.517402], [47.373242, 8.543665], [47.404022, 8.572498], [47.356898, 8.514071], [47.356962, 8.513993], [47.419403, 8.505553], [47.409769, 8.540991], [47.424366, 8.502816], [47.420797, 8.501618], [47.366436, 8.545113], [47.419188, 8.50637], [47.386186, 8.498451], [47.429215, 8.488001], [47.389147, 8.546313], [47.417088, 8.506885], [47.328021, 8.529683], [47.367874, 8.546162], [47.370611, 8.470137], [47.377596, 8.574147], [47.405461, 8.503485], [47.3754, 8.484769], [47.386023, 8.49866], [47.403601, 8.548296], [47.404985, 8.560488], [47.419161, 8.506357], [47.3905, 8.527889], [47.393556, 8.529091], [47.36446, 8.54858], [47.39018, 8.480662], [47.388886, 8.495405], [47.397363, 8.531779], [47.394841, 8.512877], [47.388483, 8.491199], [47.390356, 8.522164], [47.421187, 8.546356], [47.360597, 8.524419], [47.400853, 8.591866], [47.408712, 8.546203], [47.384971, 8.548411], [47.387902, 8.539095], [47.411436, 8.570456], [47.40254, 8.492483], [47.402036, 8.499415], [47.382943, 8.529947], [47.389555, 8.534639], [47.36238, 8.559088], [47.385975, 8.504804], [47.368109, 8.555422], [47.361316, 8.525493], [47.361022, 8.551593], [47.383263, 8.486646], [47.42704, 8.491735], [47.377463, 8.53578], [47.390442, 8.543479], [47.379564, 8.527639], [47.358836, 8.583769], [47.378031, 8.547975], [47.377209, 8.489599], [47.360962, 8.524784], [47.41571, 8.545222], [47.390677, 8.489308], [47.376247, 8.528432], [47.383242, 8.586359], [47.373653, 8.536404], [47.356572, 8.526759], [47.369649, 8.4671], [47.367906, 8.560608], [47.341783, 8.530719], [47.373181, 8.533031], [47.374519, 8.539891], [47.370689, 8.51676], [47.364276, 8.54618], [47.404925, 8.56943], [47.36924, 8.541622], [47.364498, 8.531396], [47.361086, 8.599862], [47.38827, 8.486996], [47.377519, 8.50972], [47.36814, 8.495788], [47.367443, 8.520507], [47.409845, 8.549075], [47.366501, 8.560816], [47.415474, 8.51699], [47.373725, 8.54292], [47.381925, 8.483427], [47.376853, 8.543184], [47.34722, 8.56679], [47.372281, 8.554715], [47.376538, 8.528054], [47.38375, 8.531115], [47.364446, 8.531236], [47.365466, 8.559934], [47.372422, 8.519032], [47.380186, 8.541783], [47.372382, 8.534736], [47.368988, 8.528443], [47.39208, 8.499217], [47.389473, 8.47229], [47.390215, 8.479828], [47.394468, 8.472957], [47.373553, 8.544943], [47.37822, 8.509853], [47.368364, 8.555123], [47.426325, 8.548027], [47.426387, 8.548108], [47.369699, 8.536905], [47.39214, 8.473773], [47.373017, 8.531359], [47.375614, 8.526817], [47.397218, 8.530915], [47.392629, 8.50703], [47.413379, 8.513039], [47.397027, 8.505118], [47.363356, 8.535119], [47.365984, 8.50226], [47.383743, 8.533777], [47.377257, 8.53861], [47.382077, 8.529267], [47.374993, 8.534472], [47.388773, 8.520185], [47.407791, 8.582555], [47.372963, 8.531371], [47.399638, 8.520326], [47.380207, 8.520567], [47.369872, 8.518583], [47.366048, 8.535797], [47.37704, 8.539612], [47.420468, 8.549018], [47.418509, 8.547003], [47.370106, 8.54887], [47.381772, 8.536703], [47.376955, 8.540987], [47.372659, 8.513899], [47.382741, 8.546444], [47.419942, 8.507472], [47.398651, 8.539171], [47.38467, 8.509798], [47.38666, 8.547652], [47.368744, 8.556706], [47.387924, 8.520645], [47.398023, 8.532349], [47.379635, 8.559702], [47.374159, 8.502423], [47.366135, 8.520931], [47.35964, 8.54848], [47.353664, 8.601805], [47.373494, 8.529356], [47.381115, 8.542451], [47.374386, 8.518715], [47.361435, 8.547948], [47.378341, 8.55026], [47.3738, 8.503342], [47.37883, 8.510991], [47.379962, 8.520708], [47.36792, 8.54611], [47.371351, 8.522983], [47.374086, 8.544755], [47.368835, 8.534067], [47.382923, 8.540515], [47.403402, 8.588847], [47.374483, 8.53131], [47.383968, 8.506843], [47.37165, 8.524671], [47.420912, 8.543077], [47.405822, 8.532297], [47.367629, 8.498519], [47.354846, 8.534309], [47.366952, 8.5201], [47.397751, 8.533496], [47.393444, 8.524704], [47.412153, 8.550356], [47.374996, 8.537014], [47.413972, 8.543596], [47.36905, 8.538017], [47.39554, 8.539955], [47.375757, 8.558893], [47.391948, 8.518382], [47.373628, 8.543699], [47.411424, 8.572616], [47.35764, 8.518442], [47.377414, 8.51622], [47.37017, 8.548805], [47.388635, 8.518659], [47.359922, 8.557421], [47.415141, 8.546443], [47.374609, 8.532318], [47.387129, 8.540006], [47.37549, 8.513162], [47.366468, 8.557691], [47.425879, 8.493727], [47.373157, 8.517352], [47.355299, 8.583057], [47.405608, 8.552816], [47.389303, 8.479201], [47.332947, 8.534746], [47.374467, 8.541611], [47.369458, 8.538621], [47.413875, 8.548987], [47.386828, 8.486239], [47.397832, 8.47497], [47.375915, 8.523566], [47.375203, 8.501397], [47.412055, 8.546551], [47.358946, 8.534433], [47.395992, 8.534956], [47.415904, 8.514216], [47.386914, 8.525644], [47.364477, 8.555187], [47.367065, 8.544292], [47.372732, 8.534822], [47.346868, 8.528533], [47.382103, 8.515957], [47.378769, 8.542257], [47.387509, 8.499378], [47.377119, 8.547413], [47.397332, 8.531208], [47.387246, 8.519081], [47.377617, 8.522395], [47.372771, 8.535485], [47.373438, 8.52002], [47.381833, 8.545393], [47.377045, 8.521947], [47.370711, 8.470113], [47.340563, 8.528471], [47.394948, 8.52451], [47.370206, 8.550712], [47.374723, 8.549575], [47.372487, 8.505276], [47.374119, 8.476177], [47.429962, 8.549535], [47.361751, 8.5174], [47.370165, 8.517014], [47.365119, 8.553943], [47.40954, 8.53762], [47.412587, 8.516892], [47.395965, 8.545355], [47.371725, 8.536708], [47.370106, 8.548883], [47.361474, 8.506605], [47.366184, 8.53388], [47.408532, 8.542396], [47.405132, 8.481445], [47.392542, 8.502763], [47.358826, 8.548926], [47.366439, 8.544821], [47.368044, 8.546351], [47.375618, 8.548137], [47.40996, 8.479671], [47.37447, 8.527059], [47.409072, 8.531993], [47.389242, 8.539189], [47.385848, 8.49316], [47.369448, 8.526321], [47.428191, 8.547602], [47.380565, 8.524508], [47.371837, 8.542881], [47.367208, 8.539621], [47.380807, 8.512104], [47.391394, 8.519814], [47.371535, 8.546185], [47.386162, 8.530013], [47.390649, 8.487466], [47.383629, 8.541986], [47.373912, 8.476266], [47.391972, 8.510925], [47.372834, 8.515346], [47.409584, 8.537741], [47.401975, 8.588538], [47.365732, 8.536942], [47.373949, 8.47616], [47.377075, 8.549108], [47.382992, 8.575202], [47.373137, 8.495252], [47.397389, 8.531885], [47.397597, 8.532684], [47.378756, 8.512102], [47.38892, 8.520877], [47.424992, 8.552851], [47.419808, 8.504554], [47.382024, 8.505003], [47.4118, 8.509667], [47.367584, 8.546447], [47.355786, 8.592877], [47.376895, 8.516819], [47.37835, 8.525721], [47.353406, 8.527701], [47.378083, 8.530152], [47.389445, 8.527192], [47.376156, 8.534244], [47.357487, 8.526129], [47.3797, 8.527602], [47.33589, 8.528918], [47.3701, 8.513358], [47.362086, 8.559651], [47.363741, 8.517188], [47.362048, 8.559849], [47.408672, 8.579911], [47.417199, 8.5419], [47.371478, 8.570693], [47.377166, 8.528266], [47.360296, 8.5522], [47.36156, 8.571224], [47.374877, 8.527729], [47.373425, 8.529116], [47.414368, 8.537945], [47.394715, 8.525432], [47.414324, 8.483506], [47.40952, 8.537925], [47.406035, 8.481052], [47.377539, 8.541966], [47.370686, 8.535217], [47.377067, 8.541506], [47.4113, 8.532317], [47.37996, 8.54191], [47.37515, 8.538765], [47.385497, 8.54229], [47.378691, 8.541937], [47.365243, 8.54571], [47.412094, 8.554674], [47.39566, 8.522458], [47.367374, 8.53736], [47.376488, 8.525683], [47.384205, 8.476943], [47.372739, 8.529341], [47.365071, 8.547679], [47.372943, 8.536257], [47.414301, 8.553382], [47.408091, 8.550894], [47.36794, 8.56176], [47.404994, 8.493618], [47.430248, 8.536576], [47.415548, 8.545245], [47.388973, 8.515209], [47.378937, 8.519787], [47.370215, 8.548819], [47.402203, 8.495895], [47.351907, 8.527326], [47.387574, 8.4873], [47.369947, 8.491958], [47.371065, 8.523679], [47.37368, 8.545806], [47.385078, 8.508455], [47.413157, 8.565603], [47.357608, 8.553931], [47.383572, 8.531946], [47.362458, 8.554694], [47.368255, 8.5116], [47.377625, 8.532937], [47.373992, 8.576666], [47.420287, 8.503331], [47.369118, 8.504864], [47.383133, 8.530758], [47.379054, 8.522557], [47.379388, 8.544309], [47.376594, 8.543907], [47.391907, 8.550145], [47.42209, 8.537442], [47.403225, 8.559271], [47.340434, 8.519125], [47.380555, 8.52562], [47.391299, 8.520422], [47.395978, 8.526889], [47.38321, 8.562148], [47.377256, 8.538676], [47.428803, 8.488735], [47.3762, 8.552215], [47.374357, 8.577892], [47.32954, 8.514486], [47.431381, 8.516477], [47.37024, 8.53775], [47.397485, 8.489508], [47.385654, 8.548492], [47.391693, 8.52345], [47.381978, 8.544389], [47.399381, 8.54271], [47.391207, 8.47855], [47.424203, 8.552542], [47.383602, 8.48697], [47.365723, 8.535976], [47.383238, 8.506021], [47.364554, 8.554725], [47.389045, 8.527714], [47.39958, 8.51696], [47.417737, 8.506673], [47.390314, 8.490665], [47.404935, 8.571166], [47.390069, 8.537272], [47.377479, 8.541687], [47.339326, 8.526977], [47.366035, 8.562448], [47.336924, 8.535621], [47.369073, 8.541275], [47.373862, 8.524755], [47.405147, 8.481776], [47.399034, 8.513716], [47.385267, 8.530498], [47.392598, 8.539019], [47.373594, 8.530245], [47.383359, 8.528724], [47.367487, 8.545346], [47.413842, 8.546813], [47.377017, 8.546776], [47.426489, 8.492944], [47.363975, 8.531505], [47.410731, 8.534412], [47.403876, 8.571832], [47.360354, 8.52538], [47.396871, 8.54087], [47.414587, 8.558199], [47.36379, 8.574939], [47.36449, 8.554843], [47.377328, 8.526349], [47.382888, 8.482334], [47.413979, 8.546657], [47.383227, 8.530323], [47.364585, 8.566323], [47.38005, 8.514221], [47.39129, 8.520382], [47.401928, 8.499387], [47.393894, 8.529456], [47.36109, 8.522642], [47.408821, 8.579331], [47.383654, 8.508731], [47.389757, 8.521781], [47.353587, 8.576098], [47.379855, 8.5206], [47.378245, 8.520581], [47.400701, 8.584602], [47.358729, 8.526976], [47.368099, 8.52154], [47.378108, 8.532284], [47.379415, 8.537688], [47.37588, 8.549043], [47.373002, 8.561986], [47.383465, 8.58745], [47.381448, 8.503098], [47.392104, 8.500489], [47.358035, 8.523255], [47.380506, 8.544014], [47.386724, 8.547534], [47.387611, 8.500016], [47.396347, 8.52018], [47.370112, 8.529419], [47.396112, 8.527064], [47.389147, 8.527332], [47.33502, 8.531441], [47.371753, 8.491133], [47.368863, 8.501231], [47.406959, 8.586619], [47.363083, 8.563498], [47.387772, 8.527185], [47.3754, 8.524747], [47.375375, 8.48559], [47.363094, 8.549412], [47.369561, 8.525767], [47.393878, 8.506168], [47.372731, 8.534889], [47.34376, 8.529952], [47.374859, 8.525848], [47.387482, 8.525563], [47.405203, 8.577717], [47.384112, 8.543255], [47.389949, 8.545137], [47.354026, 8.556014], [47.403898, 8.56962], [47.387665, 8.527116], [47.382256, 8.512054], [47.366409, 8.545191], [47.361016, 8.520959], [47.367424, 8.555619], [47.370476, 8.515497], [47.377636, 8.505869], [47.394696, 8.525485], [47.373269, 8.535125], [47.37764, 8.498599], [47.387651, 8.5295], [47.383264, 8.506101], [47.36828, 8.524297], [47.376989, 8.543107], [47.356694, 8.534757], [47.413152, 8.540942], [47.386044, 8.548142], [47.39127, 8.515785], [47.391253, 8.526302], [47.374322, 8.537887], [47.369153, 8.528089], [47.370686, 8.557727], [47.412259, 8.556215], [47.405866, 8.566098], [47.375627, 8.493461], [47.368429, 8.534257], [47.413957, 8.525215], [47.373605, 8.536668], [47.381085, 8.528505], [47.383548, 8.545746], [47.36859, 8.534313], [47.38937, 8.486633], [47.360717, 8.553361], [47.419744, 8.504645], [47.423402, 8.539497], [47.339103, 8.519125], [47.419115, 8.506448], [47.370981, 8.526921], [47.370358, 8.548915], [47.388671, 8.51768], [47.39377, 8.49635], [47.426008, 8.493491], [47.405544, 8.585078], [47.408436, 8.550596], [47.397197, 8.531166], [47.418497, 8.508159], [47.388939, 8.520771], [47.362479, 8.533725], [47.382289, 8.514266], [47.336347, 8.529986], [47.358268, 8.55458], [47.39147, 8.505881], [47.378841, 8.528962], [47.373508, 8.534573], [47.362424, 8.510794], [47.400286, 8.494055], [47.418375, 8.546881], [47.394723, 8.525538], [47.410369, 8.536524], [47.377189, 8.539999], [47.390865, 8.523552], [47.387607, 8.529393], [47.368173, 8.559951], [47.326261, 8.514975], [47.363496, 8.499959], [47.380138, 8.54304], [47.379061, 8.524702], [47.376884, 8.540933], [47.424266, 8.501011], [47.37247, 8.526409], [47.366946, 8.560376], [47.366874, 8.545413], [47.352043, 8.573007], [47.366123, 8.533601], [47.399193, 8.520834], [47.365517, 8.521567], [47.381824, 8.5482], [47.384136, 8.527415], [47.35148, 8.560712], [47.368637, 8.559431], [47.349916, 8.534327], [47.373932, 8.502657], [47.376604, 8.568961], [47.379677, 8.511724], [47.388079, 8.529019], [47.382509, 8.548069], [47.415506, 8.550598], [47.354779, 8.523268], [47.415003, 8.54579], [47.368475, 8.523692], [47.37003, 8.54091], [47.376491, 8.528331], [47.365099, 8.521095], [47.332885, 8.529902], [47.391028, 8.488335], [47.364614, 8.504562], [47.377666, 8.551265], [47.373442, 8.534877], [47.354133, 8.563468], [47.407561, 8.584949], [47.413332, 8.531484], [47.378836, 8.542761], [47.343273, 8.535712], [47.36075, 8.551852], [47.383146, 8.513979], [47.361364, 8.602622], [47.337941, 8.536463], [47.356478, 8.535799], [47.36986, 8.519815], [47.381459, 8.513547], [47.395845, 8.53343], [47.359959, 8.589379], [47.367001, 8.563965], [47.387672, 8.53962], [47.377858, 8.509105], [47.374323, 8.543436], [47.373639, 8.536867], [47.376447, 8.528185], [47.410901, 8.557975], [47.409717, 8.576051], [47.379002, 8.547082], [47.376834, 8.544256], [47.378816, 8.539225], [47.364616, 8.516901], [47.368312, 8.534228], [47.39971, 8.491142], [47.422273, 8.537101], [47.393615, 8.524774], [47.378468, 8.51019], [47.384857, 8.531999], [47.349407, 8.527249], [47.360415, 8.552017], [47.386031, 8.515255], [47.377749, 8.537932], [47.374069, 8.475752], [47.397358, 8.531262], [47.373492, 8.485924], [47.352773, 8.509779], [47.404294, 8.569562], [47.412207, 8.555008], [47.3909, 8.478663], [47.366838, 8.534079], [47.378685, 8.575044], [47.365782, 8.520195], [47.364286, 8.546127], [47.356603, 8.510028], [47.369005, 8.53799], [47.376083, 8.559628], [47.411107, 8.526098], [47.426329, 8.492742], [47.378139, 8.499125], [47.365956, 8.49556], [47.410859, 8.57157], [47.366398, 8.520711], [47.357659, 8.535452], [47.376438, 8.534872], [47.36434, 8.534769], [47.425615, 8.494146], [47.387886, 8.482683], [47.373414, 8.503295], [47.405906, 8.58494], [47.37025, 8.548846], [47.387565, 8.488372], [47.392952, 8.485485], [47.40834, 8.544632], [47.366728, 8.545675], [47.357157, 8.522006], [47.413783, 8.54546], [47.412921, 8.537743], [47.379079, 8.500508], [47.383306, 8.51328], [47.365679, 8.505166], [47.365693, 8.526813], [47.382156, 8.529467], [47.364509, 8.530271], [47.425962, 8.49357], [47.368159, 8.560481], [47.366416, 8.540624], [47.410819, 8.529842], [47.384432, 8.528467], [47.366856, 8.544459], [47.406606, 8.575044], [47.379465, 8.523916], [47.398194, 8.536154], [47.365894, 8.530246], [47.382594, 8.55052], [47.387368, 8.519428], [47.372169, 8.522006], [47.398776, 8.494886], [47.375011, 8.528751], [47.407353, 8.547195], [47.400362, 8.477655], [47.38599, 8.498275], [47.379794, 8.506866], [47.414154, 8.527273], [47.367712, 8.519625], [47.369137, 8.527903], [47.405085, 8.478675], [47.373385, 8.519966], [47.375786, 8.53997], [47.364306, 8.548722], [47.421461, 8.497894], [47.365088, 8.530839], [47.391744, 8.484799], [47.373258, 8.531549], [47.40123, 8.545067], [47.393631, 8.511435], [47.380226, 8.536592], [47.375091, 8.540247], [47.377877, 8.5215], [47.393501, 8.541568], [47.409332, 8.550058], [47.373892, 8.503093], [47.385568, 8.532927], [47.377499, 8.535794], [47.393208, 8.539244], [47.382557, 8.529793], [47.37535, 8.561003], [47.40271, 8.535161], [47.362881, 8.530224], [47.376692, 8.548729], [47.389634, 8.521434], [47.392036, 8.51082], [47.424484, 8.536378], [47.419613, 8.548179], [47.360511, 8.524047], [47.405553, 8.585131], [47.369289, 8.547846], [47.377628, 8.538393], [47.382766, 8.539995], [47.388505, 8.488815], [47.378094, 8.510831], [47.382105, 8.488305], [47.407266, 8.585631], [47.414239, 8.509531], [47.380041, 8.547488], [47.42553, 8.55766], [47.381211, 8.518005], [47.366728, 8.541928], [47.40303, 8.555213], [47.378294, 8.520198], [47.392678, 8.532544], [47.407346, 8.550706], [47.418598, 8.554585], [47.385922, 8.542074], [47.365036, 8.566174], [47.37908, 8.559439], [47.401953, 8.499639], [47.374615, 8.549546], [47.38809, 8.520131], [47.388763, 8.515536], [47.375807, 8.551915], [47.372372, 8.531107], [47.386701, 8.488342], [47.376822, 8.52467], [47.371778, 8.536829], [47.405669, 8.591546], [47.378883, 8.519759], [47.385868, 8.532589], [47.378429, 8.526941], [47.398632, 8.53925], [47.386227, 8.52506], [47.335036, 8.527921], [47.391533, 8.545117], [47.377815, 8.507925], [47.376596, 8.539007], [47.418097, 8.538354], [47.362804, 8.548731], [47.3377, 8.525819], [47.368292, 8.52684], [47.377389, 8.54824], [47.378164, 8.509985], [47.396598, 8.542228], [47.401606, 8.551792], [47.391796, 8.518233], [47.411487, 8.546671], [47.335127, 8.519203], [47.373265, 8.552418], [47.395554, 8.5299], [47.39941, 8.548169], [47.384773, 8.509323], [47.38293, 8.515007], [47.40186, 8.485183], [47.37369, 8.537199], [47.355907, 8.555947], [47.406853, 8.550603], [47.3767, 8.544174], [47.363987, 8.535913], [47.39769, 8.533269], [47.396262, 8.545361], [47.357902, 8.554228], [47.387341, 8.516553], [47.390872, 8.478755], [47.387807, 8.488443], [47.359221, 8.527303], [47.41383, 8.52728], [47.409167, 8.547484], [47.404748, 8.494011], [47.366286, 8.552352], [47.407479, 8.585901], [47.389873, 8.512247], [47.367382, 8.494039], [47.411107, 8.571072], [47.365922, 8.545248], [47.382362, 8.563283], [47.380501, 8.525646], [47.408712, 8.546216], [47.370344, 8.514237], [47.370503, 8.515551], [47.368295, 8.539776], [47.378918, 8.519813], [47.377392, 8.529052], [47.3753, 8.543853], [47.378993, 8.511816], [47.408138, 8.536624], [47.378195, 8.510608], [47.386057, 8.529706], [47.398813, 8.529649], [47.383397, 8.548392], [47.3858, 8.545448], [47.363228, 8.549521], [47.388425, 8.539913], [47.377214, 8.540212], [47.370163, 8.539205], [47.378618, 8.528785], [47.379462, 8.527982], [47.366858, 8.549927], [47.369014, 8.537963], [47.394909, 8.522985], [47.366921, 8.544302], [47.379934, 8.528561], [47.372544, 8.534739], [47.389632, 8.527395], [47.361908, 8.514067], [47.379516, 8.528936], [47.390078, 8.547657], [47.385829, 8.474392], [47.354488, 8.52358], [47.39159, 8.514308], [47.372517, 8.534712], [47.404966, 8.555956], [47.42604, 8.54765], [47.377329, 8.512736], [47.368365, 8.496746], [47.370287, 8.556275], [47.414234, 8.483478], [47.403504, 8.497272], [47.363259, 8.554671], [47.368021, 8.556135], [47.375823, 8.538938], [47.376749, 8.538123], [47.3779, 8.51137], [47.391806, 8.477952], [47.388323, 8.547739], [47.403612, 8.497234], [47.407448, 8.548562], [47.38475, 8.531957], [47.389087, 8.486151], [47.389899, 8.476895], [47.40904, 8.547601], [47.366932, 8.545043], [47.406816, 8.550629], [47.381682, 8.516651], [47.374093, 8.544914], [47.384313, 8.516174], [47.388147, 8.497457], [47.355622, 8.508142], [47.359996, 8.511751], [47.375277, 8.485403], [47.383702, 8.498666], [47.361036, 8.521754], [47.392818, 8.524413], [47.379046, 8.529192], [47.360757, 8.524594], [47.413754, 8.546586], [47.383274, 8.506075], [47.366418, 8.545139], [47.365354, 8.538868], [47.406178, 8.484062], [47.387306, 8.488116], [47.356583, 8.600426], [47.367338, 8.537359], [47.403136, 8.486268], [47.432504, 8.528192], [47.374966, 8.544892], [47.411201, 8.54648], [47.333516, 8.534506], [47.374398, 8.521271], [47.398312, 8.536965], [47.411172, 8.570848], [47.377737, 8.509552], [47.39625, 8.527663], [47.382946, 8.550382], [47.36772, 8.488511], [47.374857, 8.528947], [47.411325, 8.572666], [47.35107, 8.579618], [47.374818, 8.530151], [47.369467, 8.526255], [47.354032, 8.508891], [47.406866, 8.586921], [47.332941, 8.518259], [47.403869, 8.485779], [47.378576, 8.575148], [47.383256, 8.532959], [47.343848, 8.530126], [47.378552, 8.528162], [47.353484, 8.576466], [47.428002, 8.545742], [47.398841, 8.510321], [47.370057, 8.540858], [47.370188, 8.548792], [47.375767, 8.491888], [47.396588, 8.493187], [47.381131, 8.517871], [47.403141, 8.502485], [47.360126, 8.551177], [47.425241, 8.494722], [47.413837, 8.545435], [47.35935, 8.592716], [47.339898, 8.530244], [47.330064, 8.515118], [47.426748, 8.49222], [47.372981, 8.531318], [47.39314, 8.5265], [47.39118, 8.489464], [47.348395, 8.562513], [47.374845, 8.518658], [47.378174, 8.507032], [47.384408, 8.528162], [47.387419, 8.5398], [47.396013, 8.545038], [47.370271, 8.514315], [47.365723, 8.562204], [47.354181, 8.555792], [47.375426, 8.539075], [47.366946, 8.539814], [47.37653, 8.536463], [47.373493, 8.529502], [47.353034, 8.500982], [47.399637, 8.495115], [47.357365, 8.521851], [47.370152, 8.548791], [47.405894, 8.59061], [47.374803, 8.49792], [47.361138, 8.600989], [47.367382, 8.494026], [47.390592, 8.489796], [47.378371, 8.54058], [47.375258, 8.550036], [47.366714, 8.537691], [47.364486, 8.552433], [47.371715, 8.519574], [47.385821, 8.530006], [47.404386, 8.572082], [47.369601, 8.555612], [47.395549, 8.542816], [47.381334, 8.542151], [47.418088, 8.538367], [47.420583, 8.513051], [47.377083, 8.539798], [47.392843, 8.537938], [47.383577, 8.488691], [47.381819, 8.490074], [47.363833, 8.534136], [47.366752, 8.542167], [47.366557, 8.544718], [47.408304, 8.577054], [47.33415, 8.515902], [47.378881, 8.542762], [47.413747, 8.553874], [47.351035, 8.580425], [47.371907, 8.536461], [47.38323, 8.505994], [47.414152, 8.518805], [47.361324, 8.535038], [47.378403, 8.520094], [47.399582, 8.539574], [47.418504, 8.54752], [47.415492, 8.546463], [47.409964, 8.535602], [47.378048, 8.508963], [47.376944, 8.528897], [47.370895, 8.508144], [47.416518, 8.554807], [47.428811, 8.48892], [47.361466, 8.565119], [47.407888, 8.478027], [47.39267, 8.52286], [47.408719, 8.550165], [47.344551, 8.519513], [47.351046, 8.581973], [47.386802, 8.489192], [47.370794, 8.535259], [47.368157, 8.53445], [47.402735, 8.499694], [47.374752, 8.527647], [47.390845, 8.478794], [47.40963, 8.576698], [47.334984, 8.528661], [47.387411, 8.493389], [47.383589, 8.543297], [47.359477, 8.535424], [47.354806, 8.574721], [47.384618, 8.494897], [47.383068, 8.529062], [47.368489, 8.530736], [47.388395, 8.491011], [47.374478, 8.539453], [47.3677, 8.495634], [47.355369, 8.554837], [47.376349, 8.488231], [47.391103, 8.487965], [47.367111, 8.5442], [47.376119, 8.510354], [47.369155, 8.556145], [47.405618, 8.549941], [47.413439, 8.536323], [47.37747, 8.548308], [47.409531, 8.53762], [47.352888, 8.488431], [47.351755, 8.527283], [47.427752, 8.537055], [47.356457, 8.523686], [47.374826, 8.516843], [47.415725, 8.529479], [47.37017, 8.548792], [47.36839, 8.493993], [47.378117, 8.539859], [47.37004, 8.564082], [47.370653, 8.516772], [47.373198, 8.547305], [47.368632, 8.553447], [47.376061, 8.535738], [47.386942, 8.498426], [47.372449, 8.523839], [47.371346, 8.546221], [47.375882, 8.510733], [47.414676, 8.520499], [47.368835, 8.500397], [47.385644, 8.521102], [47.378225, 8.515111], [47.366488, 8.540692], [47.371818, 8.488009], [47.379433, 8.54427], [47.418553, 8.54711], [47.35839, 8.505457], [47.335072, 8.518355], [47.381238, 8.494591], [47.422467, 8.550743], [47.35245, 8.572751], [47.366034, 8.562528], [47.379521, 8.516965], [47.367109, 8.539711], [47.366104, 8.540353], [47.359674, 8.535467], [47.39393, 8.483703], [47.39908, 8.498986], [47.391334, 8.51568], [47.415364, 8.551337], [47.402564, 8.492762], [47.370152, 8.548804], [47.399612, 8.468036], [47.375404, 8.528177], [47.336413, 8.521069], [47.334935, 8.53001], [47.376503, 8.511607], [47.424971, 8.529536], [47.359245, 8.592422], [47.353272, 8.576144], [47.385012, 8.508785], [47.409362, 8.549701], [47.380774, 8.536709], [47.38934, 8.521163], [47.398294, 8.536938], [47.369951, 8.551899], [47.353559, 8.576216], [47.403722, 8.486121], [47.378579, 8.519501], [47.387671, 8.48656], [47.357918, 8.520473], [47.35762, 8.521486], [47.377903, 8.509079], [47.387287, 8.484235], [47.363032, 8.563219], [47.388183, 8.497471], [47.373785, 8.536671], [47.375765, 8.516544], [47.373786, 8.537479], [47.418124, 8.538354], [47.410708, 8.550021], [47.391411, 8.53616], [47.39484, 8.538801], [47.356266, 8.526753], [47.384431, 8.498575], [47.381522, 8.515482], [47.371894, 8.56579], [47.376132, 8.516737], [47.374433, 8.51853], [47.383238, 8.49924], [47.36555, 8.598741], [47.377652, 8.527269], [47.370063, 8.503837], [47.389621, 8.512255], [47.373765, 8.534036], [47.423552, 8.502376], [47.354464, 8.553481], [47.422827, 8.535668], [47.358263, 8.585332], [47.386815, 8.535165], [47.381841, 8.529447], [47.373648, 8.519772], [47.377247, 8.538716], [47.35651, 8.488727], [47.378408, 8.540501], [47.381342, 8.508724], [47.369824, 8.510241], [47.414273, 8.534617], [47.369651, 8.577182], [47.373056, 8.552692], [47.360454, 8.516605], [47.355025, 8.554076], [47.340171, 8.529918], [47.370842, 8.548117], [47.379872, 8.554781], [47.349855, 8.561287], [47.419126, 8.506237], [47.378112, 8.526206], [47.377044, 8.548577], [47.392489, 8.502722], [47.391114, 8.522842], [47.361315, 8.525585], [47.387097, 8.489357], [47.368997, 8.50138], [47.386089, 8.54809], [47.373175, 8.527959], [47.386166, 8.528701], [47.387797, 8.529291], [47.34294, 8.535825], [47.396097, 8.539993], [47.36401, 8.551457], [47.375667, 8.527004], [47.397065, 8.480254], [47.403216, 8.559232], [47.390556, 8.536196], [47.424771, 8.502837], [47.384431, 8.531461], [47.379985, 8.52786], [47.366161, 8.521024], [47.383328, 8.543358], [47.367396, 8.545358], [47.392589, 8.523826], [47.379865, 8.524375], [47.4041, 8.564576], [47.383651, 8.548159], [47.380268, 8.541612], [47.372389, 8.5207], [47.370456, 8.532048], [47.36801, 8.520466], [47.394164, 8.51799], [47.373453, 8.598278], [47.356912, 8.55524], [47.397547, 8.48168], [47.387276, 8.488499], [47.393417, 8.500569], [47.378606, 8.542346], [47.374669, 8.545787], [47.377398, 8.529436], [47.37921, 8.522295], [47.376376, 8.528077], [47.370783, 8.546779], [47.371915, 8.564612], [47.380743, 8.578902], [47.385135, 8.536839], [47.341443, 8.529574], [47.397311, 8.531513], [47.385797, 8.548534], [47.399169, 8.542335], [47.379654, 8.527694], [47.396783, 8.540682], [47.363839, 8.5317], [47.373362, 8.529128], [47.412099, 8.546631], [47.394171, 8.524971], [47.359306, 8.592569], [47.374455, 8.539956], [47.362077, 8.547577], [47.373902, 8.536621], [47.387733, 8.529409], [47.370184, 8.535988], [47.364204, 8.526333], [47.409323, 8.543459], [47.414432, 8.475518], [47.349557, 8.532374], [47.379108, 8.522585], [47.354057, 8.525398], [47.389247, 8.494313], [47.368058, 8.560704], [47.373072, 8.533095], [47.369837, 8.52903], [47.361548, 8.561374], [47.363701, 8.532015], [47.361846, 8.52647], [47.414213, 8.518091], [47.37016, 8.51271], [47.377958, 8.548067], [47.361859, 8.569178], [47.368921, 8.525012], [47.383348, 8.49903], [47.408027, 8.547315], [47.367951, 8.534393], [47.39419, 8.518056], [47.402479, 8.49325], [47.399207, 8.505731], [47.372843, 8.554197], [47.390164, 8.509961], [47.375957, 8.541933], [47.409266, 8.544744], [47.366094, 8.540445], [47.422104, 8.506164], [47.367146, 8.54616], [47.421306, 8.500117], [47.372627, 8.550524], [47.38628, 8.531843], [47.406311, 8.562914], [47.370707, 8.566705], [47.381818, 8.533778], [47.381097, 8.511845], [47.409929, 8.541259], [47.370859, 8.548223], [47.398164, 8.518309], [47.37539, 8.489854], [47.377702, 8.509406], [47.400312, 8.582103], [47.353678, 8.512047], [47.36457, 8.537077], [47.423794, 8.516933], [47.352188, 8.558133], [47.362803, 8.548784], [47.360453, 8.561073], [47.380626, 8.525754], [47.385981, 8.518658], [47.408786, 8.540348], [47.386089, 8.543362], [47.363234, 8.517509], [47.390841, 8.522214], [47.397146, 8.518487], [47.397012, 8.530765], [47.384966, 8.50885], [47.40896, 8.482858], [47.426418, 8.54392], [47.372937, 8.520738], [47.388517, 8.531226], [47.382949, 8.551892], [47.373434, 8.529116], [47.378443, 8.540647], [47.419237, 8.507856], [47.412175, 8.546222], [47.377161, 8.540131], [47.379288, 8.544386], [47.377247, 8.538729], [47.369696, 8.541923], [47.360356, 8.51659], [47.366595, 8.533187], [47.374748, 8.550741], [47.369222, 8.525548], [47.370794, 8.535246], [47.386154, 8.482226], [47.390565, 8.491822], [47.383207, 8.530535], [47.379463, 8.525942], [47.3558, 8.557653], [47.369247, 8.519987], [47.373745, 8.546536], [47.380889, 8.481606], [47.366396, 8.519877], [47.385572, 8.520107], [47.373759, 8.500018], [47.408878, 8.495842], [47.409474, 8.535128], [47.366936, 8.53616], [47.387054, 8.534667], [47.373256, 8.535508], [47.404468, 8.571951], [47.366587, 8.533081], [47.377068, 8.539507], [47.370208, 8.524933], [47.412955, 8.543694], [47.366475, 8.544875], [47.369346, 8.536169], [47.398474, 8.591377], [47.33642, 8.520354], [47.372893, 8.520657], [47.400006, 8.545108], [47.40238, 8.583049], [47.39054, 8.545414], [47.383281, 8.4787], [47.397363, 8.533647], [47.393762, 8.493343], [47.354887, 8.574683], [47.370501, 8.548997], [47.372784, 8.535048], [47.383714, 8.540598], [47.376718, 8.5442], [47.42069, 8.502517], [47.370015, 8.509993], [47.430234, 8.542714], [47.355985, 8.57374], [47.374042, 8.544648], [47.386924, 8.535114], [47.389633, 8.511964], [47.377305, 8.521144], [47.376928, 8.543808], [47.365324, 8.532552], [47.369342, 8.557209], [47.359352, 8.551267], [47.369716, 8.525545], [47.374986, 8.537173], [47.39381, 8.501888], [47.383166, 8.574888], [47.378464, 8.567359], [47.368732, 8.528822], [47.359972, 8.594397], [47.378606, 8.510801], [47.354333, 8.557794], [47.387246, 8.500591], [47.357747, 8.554424], [47.374218, 8.537475], [47.384231, 8.493883], [47.350339, 8.577948], [47.393414, 8.499906], [47.38792, 8.52483], [47.406912, 8.586843], [47.368809, 8.501257], [47.391941, 8.51813], [47.394395, 8.474055], [47.357786, 8.522945], [47.360534, 8.561101], [47.404233, 8.561996], [47.384574, 8.54288], [47.357882, 8.526164], [47.384474, 8.481054], [47.372344, 8.535953], [47.413885, 8.527202], [47.408881, 8.546445], [47.37437, 8.541384], [47.358179, 8.574779], [47.365063, 8.531567], [47.391014, 8.523025], [47.383212, 8.505981], [47.398989, 8.499103], [47.369287, 8.547992], [47.382521, 8.588291], [47.368369, 8.547165], [47.387119, 8.48198], [47.377153, 8.526769], [47.368915, 8.535194], [47.378468, 8.540794], [47.378067, 8.547923], [47.370856, 8.549508], [47.39743, 8.532257], [47.384472, 8.516509], [47.363606, 8.575305], [47.387991, 8.526898], [47.362545, 8.535315], [47.361508, 8.576465], [47.362167, 8.547526], [47.368564, 8.547474], [47.38463, 8.531292], [47.378087, 8.483087], [47.380315, 8.48333], [47.425887, 8.493926], [47.397378, 8.532018], [47.36545, 8.539174], [47.393795, 8.52854], [47.376938, 8.541808], [47.374774, 8.551774], [47.369595, 8.533632], [47.370151, 8.548937], [47.406987, 8.550632], [47.360414, 8.526679], [47.365998, 8.533492], [47.374948, 8.544839], [47.393347, 8.529338], [47.386197, 8.498226], [47.382134, 8.5719], [47.358562, 8.508254], [47.342, 8.530604], [47.37859, 8.54216], [47.382699, 8.488316], [47.378773, 8.491748], [47.356361, 8.535783], [47.411305, 8.527944], [47.371502, 8.547773], [47.362389, 8.559062], [47.387247, 8.537094], [47.371891, 8.542829], [47.35178, 8.530328], [47.377027, 8.540075], [47.431346, 8.516463], [47.358446, 8.532133], [47.415459, 8.48333], [47.407166, 8.550729], [47.353507, 8.553911], [47.384643, 8.53471], [47.374931, 8.544746], [47.36129, 8.576712], [47.359639, 8.593543], [47.405195, 8.50503], [47.409154, 8.549856], [47.406657, 8.551288], [47.430397, 8.536076], [47.362685, 8.575749], [47.359552, 8.522637], [47.411108, 8.570913], [47.414525, 8.517461], [47.376503, 8.511607], [47.364001, 8.551457], [47.390108, 8.52563], [47.37896, 8.508597], [47.399936, 8.467022], [47.418314, 8.548523], [47.415298, 8.51749], [47.378128, 8.509984], [47.418114, 8.53838], [47.389329, 8.521375], [47.382412, 8.505832], [47.348405, 8.534296], [47.414683, 8.544458], [47.366263, 8.553821], [47.356987, 8.553031], [47.410428, 8.543615], [47.415971, 8.50893], [47.374601, 8.532239], [47.384688, 8.549717], [47.389814, 8.511755], [47.387921, 8.48577], [47.426312, 8.545548], [47.369603, 8.535685], [47.387555, 8.519697], [47.393862, 8.505028], [47.414897, 8.546596], [47.359131, 8.573012], [47.358085, 8.555808], [47.415056, 8.546878], [47.408069, 8.572584], [47.385811, 8.547065], [47.376611, 8.518349], [47.377, 8.535281], [47.369992, 8.491919], [47.359309, 8.55762], [47.382101, 8.501601], [47.374789, 8.527582], [47.378987, 8.508531], [47.378014, 8.536507], [47.401715, 8.581166], [47.38145, 8.528949], [47.39341, 8.512941], [47.379846, 8.542478], [47.416797, 8.567787], [47.405162, 8.481101], [47.34411, 8.531878], [47.417428, 8.553726], [47.361001, 8.54819], [47.352872, 8.572866], [47.377197, 8.526902], [47.3734, 8.531698], [47.406112, 8.568501], [47.377246, 8.538808], [47.370545, 8.49144], [47.383421, 8.484066], [47.378786, 8.542363], [47.380545, 8.517025], [47.377189, 8.540026], [47.375358, 8.540597], [47.366512, 8.544743], [47.383451, 8.533268], [47.407939, 8.5367], [47.376865, 8.538165], [47.357276, 8.536027], [47.398389, 8.548677], [47.38753, 8.487233], [47.381462, 8.537227], [47.377122, 8.543308], [47.373217, 8.533005], [47.368713, 8.500897], [47.397473, 8.532443], [47.367581, 8.509613], [47.377871, 8.517381], [47.429953, 8.549561], [47.371396, 8.542859], [47.38363, 8.573468], [47.368164, 8.557237], [47.375705, 8.523866], [47.417912, 8.505284], [47.382541, 8.531514], [47.366082, 8.532249], [47.367637, 8.501578], [47.403089, 8.547199], [47.366567, 8.531439], [47.370703, 8.546671], [47.410971, 8.536669], [47.389954, 8.538978], [47.409442, 8.537579], [47.383217, 8.539872], [47.386446, 8.548415], [47.358395, 8.581999], [47.407713, 8.543479], [47.380835, 8.534963], [47.389826, 8.486934], [47.380429, 8.547376], [47.412924, 8.537425], [47.366444, 8.545205], [47.350348, 8.577988], [47.393335, 8.524821], [47.391433, 8.487296], [47.374185, 8.521001], [47.392303, 8.531317], [47.420212, 8.500718], [47.363585, 8.521408], [47.399434, 8.506451], [47.373199, 8.529191], [47.369922, 8.511236], [47.35957, 8.52269], [47.363061, 8.526362], [47.406495, 8.549429], [47.374078, 8.526653], [47.358983, 8.591622], [47.40395, 8.571622], [47.422538, 8.550771], [47.384495, 8.548309], [47.364257, 8.547278], [47.3892, 8.513968], [47.357547, 8.553705], [47.405702, 8.533619], [47.390681, 8.488964], [47.359744, 8.593836], [47.371964, 8.535217], [47.373029, 8.528115], [47.379424, 8.555513], [47.404573, 8.54817], [47.375507, 8.517175], [47.368327, 8.548714], [47.376935, 8.522183], [47.380309, 8.493964], [47.42423, 8.548858], [47.354781, 8.526829], [47.373853, 8.538063], [47.413117, 8.474737], [47.386256, 8.535326], [47.370859, 8.557585], [47.377033, 8.544154], [47.368583, 8.534141], [47.398932, 8.513131], [47.368105, 8.541811], [47.370994, 8.548239], [47.403042, 8.484769], [47.351677, 8.55889], [47.408785, 8.57941], [47.381172, 8.515435], [47.421023, 8.507322], [47.418115, 8.538367], [47.37017, 8.548765], [47.36342, 8.554794], [47.403885, 8.567248], [47.384358, 8.548518], [47.379176, 8.544861], [47.410384, 8.548212], [47.374961, 8.536868], [47.376667, 8.527792], [47.359687, 8.549129], [47.379952, 8.528548], [47.374014, 8.54474], [47.381933, 8.529198], [47.370571, 8.524543], [47.384658, 8.541584], [47.393295, 8.494274], [47.32956, 8.529609], [47.357424, 8.521323], [47.363205, 8.563911], [47.337795, 8.534779], [47.365029, 8.502519], [47.396029, 8.545237], [47.402309, 8.486172], [47.350703, 8.601966], [47.36838, 8.548768], [47.396136, 8.538775], [47.37197, 8.538316], [47.429909, 8.542892], [47.37079, 8.546977], [47.330108, 8.529673], [47.379363, 8.542216], [47.417776, 8.509244], [47.361245, 8.525359], [47.40576, 8.577808], [47.370658, 8.546644], [47.393872, 8.505889], [47.388032, 8.529216], [47.378639, 8.541737], [47.396999, 8.530288], [47.407229, 8.55073], [47.413601, 8.523896], [47.362655, 8.558551], [47.403641, 8.496957], [47.415682, 8.512913], [47.362204, 8.5475], [47.391733, 8.519159], [47.405578, 8.5753], [47.405676, 8.575395], [47.367565, 8.534306], [47.354375, 8.526], [47.361999, 8.525507], [47.369653, 8.525583], [47.393202, 8.528501], [47.426128, 8.495084], [47.361937, 8.526392], [47.373103, 8.538405], [47.356564, 8.524734], [47.398414, 8.537537], [47.399733, 8.517837], [47.37518, 8.534701], [47.392341, 8.476373], [47.391414, 8.550956], [47.35506, 8.557002], [47.390258, 8.490955], [47.383258, 8.55713], [47.36306, 8.563114], [47.410107, 8.569368], [47.394016, 8.5251], [47.387322, 8.539613], [47.418883, 8.544532], [47.374174, 8.52116], [47.390895, 8.522189], [47.371588, 8.515904], [47.353474, 8.525214], [47.369561, 8.541907], [47.386615, 8.534446], [47.373912, 8.536515], [47.354388, 8.52367], [47.377005, 8.544246], [47.360751, 8.553533], [47.42932, 8.543318], [47.382501, 8.500152], [47.375729, 8.538459], [47.404575, 8.588502], [47.364401, 8.531182], [47.383656, 8.573588], [47.381817, 8.545233], [47.375372, 8.524799], [47.368753, 8.554005], [47.381066, 8.518095], [47.378224, 8.530486], [47.40686, 8.550736], [47.368815, 8.524798], [47.405733, 8.591455], [47.376533, 8.525697], [47.366898, 8.545771], [47.354868, 8.574762], [47.375953, 8.515608], [47.376182, 8.536178], [47.407518, 8.579237], [47.377339, 8.488145], [47.367351, 8.54541], [47.411829, 8.524827], [47.396582, 8.521099], [47.37246, 8.533148], [47.372986, 8.517442], [47.339927, 8.530046], [47.402307, 8.499302], [47.381469, 8.503734], [47.411091, 8.545762], [47.394165, 8.527448], [47.3462, 8.534449], [47.394026, 8.525007], [47.37009, 8.512524], [47.392837, 8.490198], [47.357102, 8.522058], [47.400909, 8.548558], [47.428302, 8.489507], [47.371783, 8.54284], [47.366461, 8.498403], [47.367687, 8.522273], [47.392044, 8.499203], [47.360307, 8.523659], [47.371964, 8.519923], [47.367051, 8.543881], [47.384704, 8.531996], [47.396002, 8.545289], [47.367165, 8.546995], [47.369029, 8.519295], [47.377354, 8.525422], [47.338906, 8.538124], [47.388076, 8.540714], [47.35968, 8.522441], [47.376494, 8.511633], [47.378495, 8.523684], [47.371102, 8.531227], [47.352268, 8.573012], [47.360414, 8.526679], [47.36396, 8.533159], [47.407563, 8.544099], [47.408961, 8.579798], [47.360863, 8.554966], [47.37478, 8.515108], [47.389543, 8.521591], [47.369331, 8.533998], [47.363751, 8.575203], [47.369483, 8.540701], [47.368443, 8.538441], [47.368474, 8.541845], [47.369586, 8.533632], [47.379462, 8.49506], [47.400031, 8.494408], [47.360857, 8.585017], [47.417126, 8.523027], [47.384872, 8.531364], [47.374142, 8.532243], [47.373056, 8.547104], [47.369134, 8.548015], [47.372559, 8.478689], [47.414072, 8.541597], [47.390897, 8.526864], [47.369032, 8.532336], [47.375551, 8.526895], [47.371429, 8.546064], [47.392638, 8.51572], [47.383482, 8.530024], [47.366977, 8.544104], [47.36702, 8.539551], [47.363408, 8.575394], [47.378369, 8.541745], [47.381018, 8.518438], [47.384539, 8.480737], [47.407465, 8.530701], [47.382137, 8.516117], [47.387683, 8.519434], [47.38278, 8.514673], [47.399885, 8.504447], [47.394188, 8.490053], [47.387457, 8.519549], [47.338778, 8.528792], [47.344755, 8.533162], [47.384349, 8.494786], [47.363687, 8.535325], [47.385875, 8.535662], [47.360544, 8.562875], [47.389848, 8.477596], [47.389839, 8.477609], [47.374551, 8.539362], [47.416521, 8.553535], [47.344141, 8.532435], [47.370224, 8.541232], [47.379026, 8.540805], [47.381158, 8.518812], [47.389754, 8.524006], [47.37735, 8.512392], [47.426919, 8.536667], [47.370692, 8.519342], [47.414071, 8.541663], [47.37653, 8.527021], [47.38157, 8.541917], [47.403117, 8.486413], [47.363386, 8.534882], [47.385537, 8.530503], [47.392054, 8.517589], [47.357843, 8.521662], [47.368961, 8.528429], [47.371975, 8.534992], [47.370637, 8.519433], [47.360533, 8.566728], [47.37808, 8.509347], [47.381593, 8.555373], [47.369014, 8.53795], [47.380091, 8.528074], [47.375942, 8.541602], [47.337195, 8.519232], [47.381309, 8.540945], [47.41053, 8.569271], [47.406321, 8.58479], [47.371756, 8.525812], [47.378362, 8.510055], [47.404242, 8.561943], [47.408741, 8.539379], [47.364556, 8.54698], [47.377907, 8.540266], [47.38376, 8.540519], [47.370174, 8.540874], [47.376865, 8.52675], [47.385364, 8.536473], [47.366943, 8.542952], [47.392802, 8.523247], [47.373871, 8.517075], [47.349076, 8.574705], [47.368028, 8.540445], [47.388799, 8.530901], [47.393361, 8.492924], [47.360502, 8.527793], [47.394229, 8.493392], [47.394912, 8.516892], [47.384577, 8.50912], [47.378886, 8.515588], [47.427319, 8.539034], [47.372341, 8.542786], [47.39323, 8.524567], [47.378608, 8.519383], [47.354972, 8.534285], [47.390405, 8.538881], [47.402558, 8.46951], [47.405138, 8.478782], [47.39617, 8.485667], [47.402971, 8.589699], [47.393442, 8.539262], [47.361721, 8.574074], [47.380232, 8.546339], [47.386296, 8.482507], [47.365074, 8.531421], [47.363867, 8.528669], [47.419874, 8.548211], [47.382736, 8.493151], [47.371415, 8.510299], [47.380365, 8.512294], [47.4091, 8.553605], [47.379402, 8.523888], [47.37296, 8.536363], [47.375966, 8.536226], [47.409075, 8.482012], [47.378337, 8.541347], [47.358319, 8.50531], [47.37824, 8.526884], [47.388322, 8.520388], [47.343726, 8.535378], [47.368287, 8.49734], [47.352283, 8.53415], [47.422615, 8.551277], [47.370895, 8.508184], [47.342645, 8.519422], [47.396338, 8.513424], [47.362162, 8.608279], [47.377513, 8.543793], [47.377002, 8.546458], [47.360955, 8.51594], [47.377914, 8.530016], [47.409455, 8.542853], [47.373096, 8.535373], [47.366756, 8.542696], [47.385922, 8.542021], [47.369521, 8.526216], [47.405158, 8.480478], [47.367235, 8.544401], [47.371056, 8.531292], [47.369333, 8.557208], [47.350122, 8.530612], [47.342939, 8.53593], [47.408899, 8.579664], [47.376502, 8.511779], [47.376581, 8.525407], [47.377689, 8.507896], [47.354815, 8.510786], [47.417288, 8.546792], [47.387013, 8.528494], [47.377253, 8.550277], [47.400923, 8.502109], [47.373888, 8.538104], [47.354472, 8.573933], [47.420782, 8.549118], [47.377213, 8.512641], [47.371209, 8.530421], [47.370857, 8.566099], [47.372957, 8.48541], [47.39724, 8.531405], [47.365013, 8.493423], [47.360879, 8.525034], [47.364123, 8.54619], [47.379364, 8.54211], [47.370473, 8.526394], [47.365115, 8.553453], [47.398014, 8.541754], [47.384864, 8.509219], [47.375448, 8.563918], [47.376454, 8.52837], [47.368624, 8.490065], [47.367773, 8.546385], [47.354397, 8.525616], [47.34051, 8.53023], [47.360316, 8.523645], [47.377812, 8.509183], [47.402048, 8.499058], [47.362558, 8.55835], [47.405809, 8.560889], [47.378935, 8.522833], [47.343629, 8.535164], [47.37663, 8.518244], [47.366694, 8.564978], [47.37403, 8.536491], [47.36867, 8.543888], [47.338483, 8.519099], [47.373808, 8.527628], [47.402341, 8.495593], [47.409463, 8.52295], [47.379084, 8.538515], [47.375599, 8.53508], [47.378022, 8.547975], [47.399558, 8.496968], [47.367056, 8.523399], [47.383915, 8.529874], [47.398489, 8.494841], [47.41077, 8.535102], [47.410734, 8.535088], [47.381268, 8.537713], [47.389684, 8.52476], [47.354818, 8.555011], [47.377165, 8.512957], [47.36117, 8.550219], [47.408381, 8.574777], [47.397974, 8.47423], [47.407006, 8.554276], [47.381951, 8.541594], [47.337303, 8.519287], [47.393006, 8.474465], [47.384323, 8.507341], [47.405972, 8.590943], [47.351652, 8.525759], [47.378525, 8.540477], [47.391443, 8.519444], [47.387622, 8.54391], [47.368881, 8.537828], [47.331617, 8.529823], [47.367151, 8.54003], [47.383617, 8.483302], [47.395318, 8.541526], [47.375114, 8.518796], [47.372983, 8.53684], [47.369533, 8.525912], [47.35801, 8.523082], [47.364033, 8.526356], [47.378441, 8.54556], [47.371077, 8.523375], [47.351926, 8.505037], [47.377059, 8.543307], [47.407156, 8.573969], [47.359104, 8.50706], [47.366842, 8.543188], [47.339787, 8.530559], [47.376024, 8.55919], [47.402904, 8.490993], [47.359723, 8.56769], [47.370175, 8.513028], [47.335108, 8.519229], [47.409608, 8.549415], [47.412583, 8.550577], [47.378769, 8.54227], [47.37069, 8.516733], [47.386133, 8.497417], [47.373297, 8.536953], [47.391542, 8.486226], [47.376598, 8.510059], [47.369997, 8.532939], [47.372259, 8.523928], [47.373352, 8.557385], [47.394232, 8.490146], [47.36932, 8.513104], [47.391845, 8.518751], [47.370078, 8.55643], [47.383609, 8.484176], [47.371401, 8.546116], [47.381438, 8.478531], [47.423367, 8.538449], [47.413299, 8.512865], [47.386449, 8.496297], [47.420688, 8.502689], [47.405021, 8.482794], [47.37466, 8.549534], [47.35479, 8.526829], [47.37449, 8.495769], [47.368264, 8.546819], [47.391718, 8.51888], [47.421038, 8.500801], [47.391496, 8.53856], [47.376299, 8.521879], [47.378301, 8.509802], [47.371322, 8.514455], [47.375142, 8.51869], [47.378189, 8.522804], [47.389651, 8.511938], [47.378542, 8.504179], [47.41303, 8.550864], [47.370219, 8.514142], [47.378441, 8.510229], [47.398569, 8.539209], [47.34845, 8.53435], [47.379346, 8.542149], [47.38798, 8.520394], [47.387573, 8.519671], [47.376194, 8.539634], [47.408909, 8.548194], [47.364482, 8.547243], [47.348298, 8.534254], [47.380249, 8.541784], [47.422529, 8.550771], [47.406686, 8.550149], [47.374904, 8.492811], [47.392257, 8.525673], [47.386061, 8.539706], [47.390591, 8.52201], [47.423844, 8.51932], [47.353628, 8.554364], [47.396963, 8.530287], [47.400112, 8.504199], [47.383249, 8.55713], [47.379307, 8.517702], [47.37198, 8.522016], [47.384695, 8.507984], [47.400111, 8.590512], [47.366236, 8.562108], [47.371912, 8.520637], [47.346195, 8.53302], [47.369479, 8.525897], [47.360666, 8.506429], [47.339928, 8.529914], [47.395835, 8.530661], [47.399821, 8.490734], [47.40238, 8.499184], [47.328789, 8.517831], [47.352791, 8.557245], [47.366556, 8.541964], [47.418015, 8.483102], [47.360981, 8.524758], [47.393336, 8.524781], [47.406957, 8.487496], [47.376274, 8.541622], [47.386613, 8.518393], [47.400214, 8.547788], [47.423664, 8.545984], [47.373888, 8.536289], [47.405361, 8.557925], [47.363214, 8.564918], [47.385589, 8.517352], [47.4021, 8.49735], [47.418225, 8.546613], [47.390362, 8.490375], [47.431355, 8.532689], [47.387051, 8.534984], [47.373666, 8.535914], [47.357112, 8.522918], [47.41442, 8.551291], [47.378439, 8.489914], [47.37364, 8.532021], [47.341817, 8.530839], [47.364349, 8.532902], [47.377349, 8.498898], [47.371792, 8.529599], [47.391542, 8.486226], [47.377274, 8.541458], [47.372609, 8.532608], [47.3341, 8.513559], [47.373326, 8.517634], [47.360953, 8.598814], [47.376238, 8.544495], [47.386531, 8.518537], [47.371801, 8.542841], [47.390953, 8.539939], [47.365167, 8.549892], [47.398521, 8.46828], [47.37651, 8.532953], [47.402636, 8.498672], [47.41316, 8.521979], [47.4063, 8.575951], [47.385017, 8.495554], [47.383172, 8.543646], [47.364457, 8.532905], [47.36933, 8.541677], [47.416075, 8.552187], [47.40751, 8.572718], [47.363913, 8.531464], [47.373886, 8.513461], [47.409323, 8.533058], [47.392738, 8.524239], [47.384095, 8.49988], [47.373119, 8.495225], [47.376248, 8.495353], [47.403861, 8.534231], [47.386583, 8.520644], [47.354646, 8.509565], [47.416974, 8.507439], [47.340395, 8.519469], [47.364389, 8.521915], [47.379756, 8.520624], [47.404689, 8.556692], [47.348118, 8.533271], [47.402442, 8.499304], [47.397313, 8.531301], [47.370476, 8.549738], [47.412287, 8.515322], [47.385001, 8.533896], [47.371725, 8.519548], [47.352544, 8.508318], [47.35979, 8.523158], [47.427537, 8.546356], [47.357866, 8.519293], [47.36413, 8.556702], [47.375956, 8.538252], [47.398985, 8.505422], [47.377837, 8.541866], [47.365467, 8.516323], [47.427321, 8.543568], [47.365405, 8.516255], [47.378441, 8.510255], [47.373478, 8.534917], [47.411912, 8.52846], [47.36696, 8.520179], [47.357954, 8.522313], [47.374132, 8.535195], [47.366638, 8.535266], [47.390324, 8.537886], [47.387428, 8.487628], [47.376186, 8.495299], [47.406358, 8.583744], [47.377069, 8.538434], [47.378829, 8.539715], [47.373204, 8.542896], [47.367552, 8.541283], [47.402031, 8.580193], [47.358209, 8.571629], [47.347085, 8.520676], [47.378948, 8.544273], [47.411316, 8.570824], [47.357389, 8.572777], [47.360946, 8.571449], [47.377557, 8.528724], [47.366129, 8.520547], [47.372945, 8.531291], [47.370503, 8.529891], [47.379654, 8.506519], [47.370857, 8.474803], [47.374369, 8.533903], [47.402541, 8.495279], [47.369, 8.502942], [47.37079, 8.531843], [47.369034, 8.503168], [47.370295, 8.548847], [47.36686, 8.545982], [47.372969, 8.53639], [47.360614, 8.516807], [47.407827, 8.54747], [47.375908, 8.541337], [47.37889, 8.527652], [47.387807, 8.529185], [47.402195, 8.537217], [47.356023, 8.557869], [47.402537, 8.553229], [47.375421, 8.558303], [47.365631, 8.566955], [47.413627, 8.480975], [47.391318, 8.536516], [47.360737, 8.578091], [47.379039, 8.545109], [47.379006, 8.508492], [47.405243, 8.481049], [47.385498, 8.475233], [47.371117, 8.539119], [47.413618, 8.480975], [47.384906, 8.558886], [47.387484, 8.519589], [47.364501, 8.536785], [47.387028, 8.485117], [47.360358, 8.547674], [47.379921, 8.543128], [47.413128, 8.538675], [47.373001, 8.500281], [47.375223, 8.518652], [47.389791, 8.512338], [47.416287, 8.545115], [47.378725, 8.528933], [47.369484, 8.526401], [47.372467, 8.51996], [47.35602, 8.553501], [47.37361, 8.534297], [47.388484, 8.491185], [47.339645, 8.528452], [47.340076, 8.53521], [47.390999, 8.478572], [47.367362, 8.544284], [47.377255, 8.538756], [47.367924, 8.560608], [47.371633, 8.519705], [47.407551, 8.556553], [47.350978, 8.53423], [47.360126, 8.534272], [47.373437, 8.481023], [47.389428, 8.513708], [47.352493, 8.531984], [47.369085, 8.503566], [47.3653, 8.526527], [47.41852, 8.542073], [47.393515, 8.472899], [47.369604, 8.507694], [47.371708, 8.547831], [47.379971, 8.520735], [47.343391, 8.535649], [47.377135, 8.541984], [47.387841, 8.485716], [47.367851, 8.564446], [47.332085, 8.516495], [47.357469, 8.550658], [47.37578, 8.524477], [47.392304, 8.503209], [47.374841, 8.545671], [47.377498, 8.503244], [47.410886, 8.563275], [47.373645, 8.534364], [47.383448, 8.531718], [47.418295, 8.538305], [47.371999, 8.566096], [47.375808, 8.536806], [47.368219, 8.546818], [47.405764, 8.591946], [47.377423, 8.500607], [47.400214, 8.494], [47.414389, 8.552602], [47.368074, 8.540393], [47.374009, 8.492383], [47.381048, 8.550369], [47.373646, 8.530432], [47.387779, 8.499344], [47.377653, 8.510809], [47.360872, 8.598852], [47.402361, 8.499303], [47.36681, 8.558638], [47.365661, 8.523542], [47.361601, 8.547461], [47.366185, 8.548801], [47.390431, 8.542723], [47.36747, 8.54614], [47.378647, 8.54183], [47.360271, 8.522784], [47.393327, 8.524795], [47.360935, 8.531495], [47.405186, 8.480452], [47.361897, 8.503581], [47.421357, 8.502385], [47.352264, 8.559604], [47.373451, 8.548079], [47.363527, 8.535096], [47.408602, 8.546452], [47.351421, 8.525503], [47.380089, 8.536801], [47.397437, 8.591673], [47.378312, 8.510584], [47.391913, 8.528806], [47.415958, 8.547506], [47.372602, 8.534356], [47.366272, 8.562096], [47.374768, 8.552344], [47.361739, 8.56114], [47.36966, 8.523889], [47.34539, 8.534485], [47.371854, 8.522027], [47.405047, 8.478912], [47.378038, 8.548134], [47.368846, 8.521449], [47.375546, 8.548149], [47.402122, 8.501775], [47.366556, 8.547604], [47.385437, 8.536368], [47.36821, 8.536424], [47.37639, 8.527495], [47.408876, 8.564624], [47.402077, 8.580101], [47.393623, 8.539094], [47.389758, 8.526417], [47.395065, 8.484586], [47.384998, 8.53232], [47.384198, 8.511192], [47.356227, 8.571971], [47.41393, 8.548909], [47.406836, 8.532583], [47.368518, 8.543752], [47.358699, 8.590372], [47.390888, 8.522069], [47.401552, 8.586767], [47.35046, 8.51864], [47.393369, 8.495031], [47.369315, 8.547873], [47.391638, 8.523581], [47.365228, 8.501424], [47.369108, 8.547949], [47.391551, 8.486226], [47.388254, 8.486704], [47.358059, 8.519761], [47.384227, 8.497326], [47.399757, 8.533444], [47.367881, 8.523654], [47.386574, 8.5032], [47.407128, 8.586821], [47.368228, 8.511612], [47.388063, 8.524952], [47.40976, 8.479932], [47.389111, 8.546259], [47.390779, 8.52306], [47.373066, 8.524223], [47.377398, 8.550121], [47.362746, 8.547207], [47.376274, 8.540761], [47.378517, 8.541351], [47.365731, 8.537048], [47.400909, 8.591682], [47.36024, 8.548691], [47.375511, 8.548082], [47.364366, 8.566597], [47.427402, 8.538877], [47.341756, 8.530732], [47.358834, 8.533914], [47.414308, 8.550719], [47.406504, 8.573518], [47.422493, 8.550784], [47.40951, 8.543636], [47.409435, 8.543038], [47.374974, 8.544959], [47.407093, 8.58678], [47.40564, 8.591718], [47.36455, 8.56623], [47.369305, 8.548059], [47.378982, 8.511034], [47.41079, 8.567606], [47.36907, 8.528259], [47.378877, 8.526169], [47.384336, 8.531909], [47.426491, 8.541933], [47.371084, 8.523613], [47.36063, 8.59788], [47.423697, 8.539662], [47.376749, 8.538043], [47.390754, 8.521934], [47.37606, 8.533898], [47.403104, 8.558699], [47.374732, 8.545788], [47.37454, 8.539534], [47.366475, 8.544875], [47.375261, 8.485204], [47.388591, 8.496168], [47.417893, 8.482768], [47.410208, 8.546817], [47.369977, 8.511118], [47.398951, 8.533096], [47.364441, 8.555279], [47.371235, 8.513235], [47.408382, 8.550582], [47.386769, 8.547588], [47.369615, 8.525847], [47.349017, 8.526658], [47.363062, 8.49917], [47.408754, 8.546455], [47.374528, 8.544618], [47.377435, 8.526457], [47.381213, 8.491452], [47.388599, 8.528235], [47.341175, 8.530336], [47.365686, 8.525661], [47.357893, 8.520154], [47.405332, 8.55815], [47.360542, 8.566781], [47.359129, 8.526534], [47.392023, 8.487772], [47.367549, 8.545414], [47.367501, 8.530597], [47.365758, 8.563237], [47.376648, 8.527805], [47.364033, 8.531148], [47.402787, 8.557076], [47.368141, 8.521819], [47.338006, 8.525812], [47.378931, 8.508782], [47.372802, 8.535062], [47.417182, 8.545624], [47.374723, 8.520178], [47.413496, 8.563119], [47.37509, 8.48524], [47.326405, 8.527467], [47.37617, 8.488108], [47.373365, 8.531644], [47.369656, 8.564723], [47.380118, 8.528048], [47.388496, 8.488815], [47.349837, 8.576031], [47.373167, 8.53642], [47.359436, 8.509026], [47.402209, 8.496266], [47.410895, 8.563223], [47.380635, 8.525728], [47.3729, 8.547418], [47.371105, 8.539436], [47.391421, 8.536041], [47.35664, 8.555446], [47.360107, 8.526765], [47.362209, 8.484233], [47.384778, 8.527031], [47.376734, 8.540546], [47.388197, 8.480146], [47.374531, 8.549876], [47.355577, 8.556523], [47.365428, 8.564739], [47.418125, 8.554165], [47.392093, 8.538294], [47.410671, 8.572374], [47.374708, 8.52566], [47.39949, 8.5208], [47.36277, 8.567993], [47.403574, 8.548256], [47.374415, 8.524211], [47.375183, 8.539137], [47.377153, 8.541971], [47.382808, 8.529944], [47.383478, 8.549294], [47.421484, 8.550087], [47.374518, 8.54001], [47.364862, 8.53094], [47.381094, 8.513169], [47.37822, 8.520461], [47.376706, 8.544465], [47.367219, 8.565611], [47.382703, 8.500673], [47.387149, 8.535066], [47.376746, 8.559907], [47.41995, 8.506637], [47.376502, 8.534767], [47.372631, 8.529312], [47.362894, 8.523142], [47.379194, 8.525857], [47.364555, 8.555546], [47.37745, 8.498688], [47.374109, 8.538545], [47.355773, 8.584312], [47.427449, 8.546155], [47.361577, 8.51774], [47.380362, 8.528], [47.361721, 8.565773], [47.380524, 8.493081], [47.374013, 8.544793], [47.372064, 8.534107], [47.356337, 8.511558], [47.382504, 8.529686], [47.418686, 8.547285], [47.354745, 8.574547], [47.370714, 8.557648], [47.373887, 8.536303], [47.420868, 8.550511], [47.391005, 8.521012], [47.365752, 8.550844], [47.357533, 8.535489], [47.385848, 8.529927], [47.409563, 8.549361], [47.41023, 8.54365], [47.403848, 8.570069], [47.381865, 8.51541], [47.388891, 8.495816], [47.377154, 8.553042], [47.409338, 8.544679], [47.369072, 8.521334], [47.341131, 8.536846], [47.37766, 8.508094], [47.383751, 8.548916], [47.404427, 8.574375], [47.370984, 8.531397], [47.40884, 8.54594], [47.366218, 8.49444], [47.351564, 8.525625], [47.41654, 8.545902], [47.392038, 8.538359], [47.364044, 8.55163], [47.420001, 8.538631], [47.386211, 8.535298], [47.373795, 8.536513], [47.370063, 8.541136], [47.373652, 8.544905], [47.363866, 8.517257], [47.397569, 8.505818], [47.374263, 8.538389], [47.386243, 8.540504], [47.360027, 8.589725], [47.403864, 8.569407], [47.407424, 8.574173], [47.413563, 8.48108], [47.372275, 8.535634], [47.377889, 8.498829], [47.378287, 8.530487], [47.370328, 8.602169], [47.383175, 8.506073], [47.367869, 8.494843], [47.371006, 8.535674], [47.410449, 8.544251], [47.382423, 8.540147], [47.397774, 8.532953], [47.416307, 8.545831], [47.360351, 8.525711], [47.333631, 8.52997], [47.38642, 8.496509], [47.410419, 8.550121], [47.411082, 8.545749], [47.354705, 8.57493], [47.34851, 8.57096], [47.405444, 8.480735], [47.376135, 8.55608], [47.388245, 8.486757], [47.373132, 8.53728], [47.409009, 8.539623], [47.396063, 8.522651], [47.371177, 8.539411], [47.399635, 8.543523], [47.37981, 8.547231], [47.408116, 8.58243], [47.406096, 8.547911], [47.381487, 8.530751], [47.378323, 8.52282], [47.404317, 8.557002], [47.405838, 8.573517], [47.33716, 8.519099], [47.373258, 8.53151], [47.395511, 8.484952], [47.361667, 8.503206], [47.369916, 8.490382], [47.375154, 8.519286], [47.396544, 8.528927], [47.403725, 8.534281], [47.368979, 8.543563], [47.378336, 8.548061], [47.415323, 8.483473], [47.368515, 8.530843], [47.374301, 8.519123], [47.405705, 8.591494], [47.347231, 8.532869], [47.379617, 8.559782], [47.342769, 8.531017], [47.397448, 8.532297], [47.38175, 8.543815], [47.381694, 8.509632], [47.365714, 8.535936], [47.38409, 8.497562], [47.380518, 8.556847], [47.399405, 8.547718], [47.354455, 8.553534], [47.371851, 8.499172], [47.377189, 8.539999], [47.387739, 8.484998], [47.378458, 8.545601], [47.378446, 8.54033], [47.35852, 8.531988], [47.354984, 8.510935], [47.366521, 8.540917], [47.418277, 8.510527], [47.393381, 8.524782], [47.369521, 8.555491], [47.390091, 8.52257], [47.379806, 8.542], [47.38618, 8.498212], [47.417865, 8.554093], [47.393862, 8.505015], [47.374537, 8.539852], [47.368333, 8.524431], [47.366456, 8.544888], [47.414329, 8.546691], [47.41425, 8.508299], [47.411471, 8.526569], [47.378929, 8.542432], [47.390339, 8.522111], [47.364069, 8.520558], [47.377075, 8.540672], [47.378903, 8.511761], [47.359085, 8.526427], [47.367919, 8.490369], [47.387936, 8.531718], [47.330783, 8.529634], [47.376543, 8.535099], [47.378402, 8.541084], [47.339924, 8.530324], [47.379774, 8.518678], [47.362206, 8.551962], [47.380306, 8.517576], [47.360299, 8.566802], [47.379937, 8.483441], [47.409449, 8.545304], [47.385151, 8.532323], [47.369417, 8.541904], [47.413722, 8.546188], [47.369644, 8.539856], [47.427032, 8.546504], [47.374286, 8.53786], [47.368533, 8.53083], [47.418322, 8.538305], [47.390942, 8.522017], [47.366655, 8.545713], [47.389883, 8.521771], [47.427078, 8.491484], [47.365759, 8.563078], [47.426424, 8.547062], [47.419507, 8.500029], [47.39776, 8.533496], [47.37332, 8.549519], [47.386014, 8.535268], [47.367452, 8.537666], [47.366817, 8.54573], [47.374314, 8.535861], [47.398222, 8.53691], [47.367735, 8.521969], [47.378535, 8.541325], [47.360455, 8.48723], [47.353995, 8.600198], [47.421218, 8.549617], [47.366525, 8.522514], [47.369405, 8.549755], [47.376995, 8.544339], [47.408712, 8.546216], [47.409291, 8.544877], [47.377028, 8.52862], [47.369213, 8.512969], [47.36519, 8.502601], [47.376239, 8.562107], [47.398122, 8.53614], [47.369216, 8.547871], [47.364773, 8.554425], [47.414858, 8.551592], [47.378934, 8.559688], [47.401575, 8.489814], [47.40382, 8.556369], [47.329926, 8.512588], [47.372201, 8.560116], [47.36686, 8.532702], [47.362167, 8.547526], [47.353064, 8.518177], [47.330929, 8.515943], [47.397596, 8.532804], [47.359061, 8.531841], [47.365826, 8.556208], [47.379485, 8.516964], [47.399428, 8.516838], [47.364434, 8.520075], [47.358642, 8.589788], [47.381436, 8.540842], [47.384399, 8.531937], [47.340956, 8.526785], [47.397768, 8.532688], [47.381211, 8.481811], [47.348279, 8.534293], [47.391293, 8.522952], [47.375766, 8.535547], [47.391383, 8.536292], [47.379118, 8.549958], [47.386589, 8.488883], [47.372656, 8.520957], [47.405697, 8.59148], [47.375121, 8.545584], [47.397776, 8.494045], [47.386934, 8.490453], [47.378639, 8.526614], [47.380895, 8.528673], [47.393651, 8.511263], [47.349977, 8.56076], [47.40391, 8.546103], [47.381499, 8.571529], [47.375936, 8.537537], [47.366594, 8.53516], [47.415009, 8.544266], [47.378036, 8.509307], [47.367503, 8.578765], [47.369174, 8.49189], [47.410508, 8.550282], [47.375767, 8.556973], [47.375032, 8.544576], [47.367749, 8.487373], [47.359253, 8.586187], [47.383661, 8.549006], [47.387266, 8.51879], [47.35962, 8.593582], [47.37954, 8.516806], [47.377466, 8.512553], [47.408456, 8.548516], [47.366591, 8.54121], [47.358149, 8.519802], [47.408804, 8.579318], [47.402166, 8.496013], [47.406612, 8.551327], [47.402671, 8.486921], [47.368938, 8.518353], [47.35178, 8.52555], [47.401245, 8.586893], [47.376512, 8.536476], [47.394249, 8.4902], [47.407899, 8.579802], [47.3791, 8.549918], [47.376504, 8.543905], [47.419829, 8.54817], [47.377317, 8.526587], [47.357564, 8.578724], [47.371288, 8.520122], [47.413975, 8.525202], [47.413489, 8.539557], [47.344118, 8.532024], [47.372736, 8.550408], [47.367308, 8.561045], [47.405846, 8.480982], [47.390269, 8.485724], [47.368835, 8.539774], [47.38878, 8.483244], [47.368759, 8.500859], [47.377321, 8.521303], [47.370268, 8.518525], [47.379885, 8.544081], [47.376721, 8.538136], [47.396298, 8.540619], [47.368439, 8.536071], [47.410564, 8.550071], [47.365099, 8.553187], [47.388992, 8.538972], [47.374294, 8.524685], [47.390566, 8.545547], [47.427387, 8.546061], [47.391057, 8.522232], [47.374141, 8.54089], [47.377632, 8.533175], [47.368467, 8.524526], [47.380191, 8.501947], [47.380599, 8.517092], [47.390856, 8.533076], [47.382468, 8.514415], [47.376775, 8.528668], [47.373831, 8.53654], [47.41133, 8.485356], [47.387642, 8.499593], [47.376374, 8.541598], [47.365703, 8.54564], [47.361616, 8.50674], [47.370858, 8.531315], [47.395097, 8.525904], [47.380256, 8.542923], [47.409791, 8.537771], [47.364777, 8.554015], [47.377539, 8.505668], [47.362534, 8.510571], [47.365763, 8.532733], [47.396927, 8.50917], [47.375906, 8.538807], [47.379909, 8.527329], [47.408712, 8.546243], [47.408136, 8.547145], [47.371986, 8.556364], [47.398723, 8.539106], [47.417081, 8.545767], [47.366565, 8.494883], [47.360087, 8.56084], [47.416434, 8.514359], [47.360423, 8.526666], [47.362344, 8.510699], [47.375039, 8.537214], [47.366848, 8.535893], [47.358812, 8.58259], [47.380991, 8.518425], [47.337468, 8.532338], [47.36685, 8.553502], [47.393587, 8.5248], [47.397036, 8.483472], [47.372719, 8.563304], [47.363404, 8.505981], [47.357888, 8.554811], [47.377845, 8.541973], [47.368775, 8.537614], [47.396874, 8.530206], [47.389166, 8.541426], [47.401329, 8.545056], [47.371819, 8.601566], [47.364482, 8.536917], [47.400789, 8.548886], [47.406893, 8.580588], [47.374533, 8.552498], [47.335092, 8.518051], [47.366662, 8.542231], [47.372667, 8.575048], [47.414508, 8.558939], [47.370041, 8.540646], [47.415221, 8.527626], [47.366846, 8.542711], [47.38866, 8.483679], [47.365118, 8.534269], [47.407899, 8.579802], [47.33521, 8.531365], [47.403826, 8.53415], [47.384232, 8.541933], [47.330771, 8.516469], [47.395526, 8.545227], [47.375399, 8.52386], [47.378336, 8.509882], [47.354631, 8.526561], [47.413098, 8.567019], [47.361989, 8.526552], [47.368188, 8.53024], [47.385259, 8.517041], [47.365018, 8.567127], [47.419179, 8.50637], [47.376591, 8.529154], [47.373501, 8.515241], [47.382054, 8.528856], [47.413702, 8.545472], [47.391313, 8.516011], [47.370161, 8.548791], [47.413319, 8.476212], [47.413357, 8.532611], [47.379588, 8.527097], [47.42888, 8.545124], [47.381579, 8.537203], [47.353456, 8.576611], [47.396357, 8.492891], [47.37006, 8.511901], [47.332672, 8.518095], [47.413966, 8.541422], [47.381518, 8.56504], [47.359779, 8.548946], [47.355984, 8.573832], [47.384673, 8.542842], [47.345446, 8.533362], [47.379958, 8.519265], [47.402588, 8.553468], [47.374931, 8.544759], [47.362122, 8.559665], [47.383271, 8.53043], [47.382178, 8.588363], [47.401363, 8.593083], [47.415423, 8.544222], [47.372511, 8.534447], [47.378661, 8.519477], [47.373159, 8.538208], [47.363389, 8.575446], [47.346101, 8.534447], [47.409062, 8.545389], [47.389246, 8.491399], [47.378915, 8.549556], [47.375525, 8.480945], [47.364577, 8.566217], [47.354858, 8.574867], [47.380851, 8.53336], [47.365091, 8.50256], [47.391209, 8.489266], [47.382031, 8.529359], [47.376074, 8.559641], [47.38645, 8.518522], [47.373506, 8.519504], [47.391899, 8.517785], [47.367547, 8.538039], [47.367808, 8.560539], [47.373453, 8.531831], [47.378607, 8.523289], [47.370403, 8.547009], [47.38809, 8.539165], [47.336974, 8.520709], [47.376498, 8.525683], [47.385887, 8.53255], [47.377746, 8.544804], [47.374691, 8.535935], [47.408409, 8.550622], [47.382427, 8.528413], [47.375713, 8.518238], [47.385276, 8.494711], [47.367596, 8.54515], [47.379734, 8.51534], [47.401753, 8.580968], [47.3939, 8.525031], [47.375302, 8.547309], [47.37157, 8.51589], [47.392294, 8.509169], [47.392207, 8.509843], [47.375094, 8.518994], [47.358513, 8.518327], [47.367696, 8.496097], [47.373786, 8.519431], [47.380194, 8.535241], [47.367017, 8.536121], [47.373613, 8.549976], [47.387483, 8.518702], [47.377311, 8.512735], [47.359103, 8.532172], [47.370704, 8.537151], [47.379145, 8.549998], [47.393677, 8.502653], [47.385826, 8.51798], [47.375433, 8.526959], [47.407923, 8.578305], [47.387974, 8.490831], [47.380987, 8.504387], [47.381102, 8.518109], [47.367991, 8.540603], [47.327797, 8.529586], [47.391379, 8.545193], [47.378989, 8.542804], [47.368926, 8.54809], [47.399498, 8.515117], [47.374438, 8.495596], [47.384396, 8.548333], [47.399058, 8.533271], [47.411379, 8.545688], [47.381454, 8.540842], [47.403008, 8.486544], [47.403136, 8.486268], [47.391078, 8.522841], [47.370197, 8.548792], [47.379973, 8.516656], [47.382531, 8.540136], [47.386772, 8.49045], [47.410236, 8.549521], [47.398732, 8.505563], [47.366847, 8.558467], [47.388407, 8.517065], [47.369755, 8.509829], [47.373471, 8.534732], [47.383335, 8.530365], [47.393384, 8.537711], [47.374594, 8.538621], [47.363609, 8.535058], [47.380995, 8.538091], [47.409557, 8.55005], [47.376943, 8.522262], [47.377073, 8.541864], [47.384643, 8.532829], [47.386561, 8.542987], [47.402871, 8.535204], [47.383559, 8.573307], [47.37128, 8.525669], [47.41053, 8.572106], [47.391035, 8.522628], [47.387473, 8.528357], [47.392623, 8.47504], [47.363437, 8.533268], [47.376642, 8.535128], [47.399475, 8.495178], [47.427963, 8.551653], [47.363357, 8.533186], [47.395571, 8.486278], [47.370686, 8.537124], [47.374513, 8.539547], [47.359681, 8.508806], [47.408005, 8.546745], [47.378893, 8.542445], [47.379189, 8.527407], [47.362276, 8.526691], [47.324365, 8.518549], [47.363381, 8.533452], [47.344508, 8.529782], [47.36727, 8.545368], [47.36344, 8.53385], [47.394916, 8.491061], [47.367251, 8.546427], [47.382804, 8.532222], [47.37942, 8.529636], [47.340867, 8.531455], [47.374984, 8.534498], [47.366629, 8.535266], [47.396049, 8.527009], [47.359191, 8.563204], [47.400461, 8.543673], [47.377791, 8.498761], [47.383355, 8.539584], [47.367933, 8.544707], [47.339869, 8.529529], [47.3975, 8.532444], [47.401781, 8.499742], [47.348036, 8.534354], [47.35976, 8.557431], [47.414281, 8.550784], [47.361847, 8.507062], [47.376601, 8.527089], [47.41209, 8.524806], [47.390323, 8.509289], [47.366457, 8.566257], [47.377742, 8.537667], [47.363164, 8.533619], [47.388783, 8.536292], [47.402563, 8.49981], [47.420803, 8.547011], [47.370304, 8.548861], [47.3577, 8.559281], [47.324853, 8.504826], [47.410139, 8.565155], [47.398312, 8.536912], [47.378301, 8.509842], [47.387954, 8.546857], [47.391489, 8.523128], [47.368228, 8.537365], [47.361105, 8.547636], [47.378325, 8.525561], [47.391096, 8.522828], [47.414306, 8.48348], [47.370952, 8.523279], [47.370057, 8.564162], [47.377666, 8.541956], [47.364772, 8.554531], [47.37677, 8.517743], [47.414107, 8.545427], [47.3629, 8.548945], [47.417537, 8.546095], [47.403508, 8.485918], [47.420942, 8.539009], [47.374066, 8.519317], [47.370558, 8.519259], [47.354361, 8.511241], [47.367993, 8.540352], [47.413222, 8.55336], [47.33159, 8.529875], [47.370755, 8.548751], [47.374485, 8.535878], [47.36402, 8.528712], [47.358414, 8.518312], [47.381777, 8.55686], [47.374007, 8.546369], [47.369336, 8.555103], [47.387167, 8.518881], [47.415347, 8.514165], [47.335704, 8.516158], [47.403548, 8.483494], [47.357298, 8.572828], [47.374319, 8.52393], [47.427431, 8.546141], [47.369212, 8.465635], [47.367843, 8.534417], [47.362181, 8.548917], [47.4139, 8.526486], [47.366156, 8.540513], [47.390601, 8.478842], [47.384739, 8.496409], [47.368494, 8.5245], [47.39054, 8.490577], [47.397031, 8.511464], [47.414083, 8.548872], [47.413209, 8.538716], [47.360678, 8.524447], [47.387381, 8.527653], [47.364878, 8.566714], [47.415109, 8.562795], [47.414544, 8.558927], [47.415358, 8.570513], [47.379758, 8.506878], [47.386823, 8.52004], [47.378201, 8.509866], [47.36655, 8.540759], [47.385895, 8.542113], [47.366991, 8.558483], [47.3499, 8.561314], [47.365164, 8.564151], [47.359139, 8.555591], [47.369116, 8.52536], [47.392063, 8.526226], [47.374998, 8.518648], [47.377256, 8.538689], [47.361802, 8.550934], [47.362436, 8.504691], [47.413793, 8.545354], [47.364316, 8.529751], [47.406602, 8.588227], [47.369304, 8.522557], [47.387582, 8.525393], [47.360271, 8.567768], [47.408821, 8.539447], [47.372011, 8.534079], [47.368688, 8.524875], [47.373032, 8.534497], [47.364764, 8.545965], [47.379681, 8.519047], [47.373612, 8.519758], [47.37074, 8.535232], [47.338073, 8.538636], [47.399386, 8.572015], [47.356163, 8.520477], [47.389266, 8.485254], [47.367806, 8.535476], [47.357537, 8.521683], [47.399162, 8.547832], [47.370998, 8.563652], [47.406212, 8.573021], [47.377177, 8.543204], [47.402566, 8.588776], [47.376037, 8.488953], [47.367308, 8.53953], [47.36765, 8.495262], [47.397404, 8.532177], [47.37552, 8.513851], [47.366313, 8.541085], [47.380073, 8.520459], [47.386393, 8.534189], [47.366754, 8.544801], [47.386085, 8.541958], [47.367821, 8.546068], [47.364611, 8.566443], [47.339541, 8.529985], [47.366582, 8.536404], [47.366242, 8.521052], [47.37954, 8.527321], [47.397583, 8.532273], [47.389062, 8.494813], [47.408712, 8.546216], [47.391064, 8.479408], [47.392304, 8.503209], [47.3793, 8.51749], [47.371431, 8.517238], [47.399144, 8.547819], [47.41015, 8.524475], [47.379201, 8.522295], [47.357873, 8.571966], [47.363473, 8.535135], [47.369441, 8.533748], [47.369771, 8.518754], [47.392659, 8.524039], [47.41488, 8.545496], [47.412959, 8.537625], [47.373837, 8.532117], [47.329882, 8.529721], [47.42212, 8.50354], [47.422246, 8.503529], [47.380291, 8.520145], [47.362039, 8.503875], [47.414102, 8.519334], [47.393351, 8.493056], [47.372467, 8.519973], [47.397643, 8.493883], [47.383851, 8.530919], [47.37017, 8.548831], [47.369184, 8.527679], [47.391318, 8.515468], [47.377803, 8.509196], [47.354153, 8.57525], [47.363789, 8.566744], [47.409116, 8.546304], [47.374325, 8.543237], [47.419116, 8.506435], [47.385337, 8.508579], [47.396019, 8.545316], [47.381514, 8.513482], [47.404346, 8.503529], [47.386213, 8.539854], [47.364057, 8.567014], [47.353559, 8.576216], [47.380608, 8.512298], [47.361407, 8.573921], [47.426306, 8.554681], [47.368107, 8.536846], [47.408971, 8.550144], [47.392438, 8.496509], [47.397477, 8.532073], [47.384367, 8.548518], [47.407608, 8.486144], [47.375203, 8.544566], [47.419986, 8.503696], [47.377494, 8.498742], [47.392088, 8.499284], [47.390725, 8.522132], [47.394936, 8.512336], [47.409967, 8.525796], [47.350464, 8.567984], [47.37749, 8.518605], [47.416947, 8.538171], [47.413228, 8.531998], [47.371041, 8.523414], [47.388091, 8.536238], [47.39184, 8.528831], [47.399315, 8.515405], [47.384753, 8.527825], [47.360588, 8.566689], [47.401256, 8.54516], [47.36983, 8.509566], [47.414131, 8.53635], [47.407881, 8.576144], [47.380324, 8.528145], [47.363933, 8.56676], [47.394106, 8.493138], [47.362242, 8.55935], [47.407795, 8.584], [47.417837, 8.554238], [47.35573, 8.574079], [47.365523, 8.53241], [47.338302, 8.53917], [47.370264, 8.495579], [47.393363, 8.524782], [47.374426, 8.542087], [47.378288, 8.530394], [47.399682, 8.477271], [47.403504, 8.487375], [47.36392, 8.547669], [47.376075, 8.522788], [47.39813, 8.536232], [47.391307, 8.515733], [47.387668, 8.529686], [47.417675, 8.546734], [47.366669, 8.541463], [47.34058, 8.524753], [47.368014, 8.544735], [47.37513, 8.528608], [47.332043, 8.535217], [47.377521, 8.54484], [47.380119, 8.544112], [47.418106, 8.538327], [47.418115, 8.538367], [47.411536, 8.523509], [47.37833, 8.526873], [47.378319, 8.509829], [47.378428, 8.483147], [47.418856, 8.507265], [47.364347, 8.550087], [47.387183, 8.519027], [47.380591, 8.536984], [47.386381, 8.498799], [47.373495, 8.52925], [47.3592, 8.511285], [47.365513, 8.539149], [47.358504, 8.518393], [47.413949, 8.54883], [47.416612, 8.513594], [47.369903, 8.564251], [47.391885, 8.485053], [47.380653, 8.547447], [47.382147, 8.543664], [47.387488, 8.53343], [47.344412, 8.530402], [47.363272, 8.557028], [47.352482, 8.508185], [47.387735, 8.519661], [47.375264, 8.490885], [47.388588, 8.539851], [47.376038, 8.527673], [47.378326, 8.527323], [47.360199, 8.523696], [47.430771, 8.540219], [47.373247, 8.535574], [47.37838, 8.530184], [47.384241, 8.531576], [47.39066, 8.508885], [47.387438, 8.544357], [47.419186, 8.546752], [47.36969, 8.539765], [47.369622, 8.51544], [47.425918, 8.552949], [47.369644, 8.525596], [47.375762, 8.549093], [47.374568, 8.538515], [47.390989, 8.51309], [47.35347, 8.576069], [47.409027, 8.539597], [47.376207, 8.527836], [47.388844, 8.52514], [47.381133, 8.531989], [47.371011, 8.538878], [47.370534, 8.549276], [47.376582, 8.534849], [47.385767, 8.499012], [47.38599, 8.498248], [47.388181, 8.485908], [47.393354, 8.524795], [47.373222, 8.531562], [47.385975, 8.535545], [47.375422, 8.528137], [47.376906, 8.54333], [47.374262, 8.538535], [47.382539, 8.51447], [47.326487, 8.515827], [47.374627, 8.537086], [47.373752, 8.53822], [47.374503, 8.533985], [47.374029, 8.519343], [47.379353, 8.495216], [47.363703, 8.553397], [47.362195, 8.5475], [47.359558, 8.548504], [47.373794, 8.537638], [47.381436, 8.553026], [47.419261, 8.54739], [47.419283, 8.547854], [47.382475, 8.514574], [47.367192, 8.546955], [47.373486, 8.503296], [47.398968, 8.538913], [47.359648, 8.522983], [47.39316, 8.546158], [47.382431, 8.514481], [47.366161, 8.497682], [47.38963, 8.512215], [47.368105, 8.495642], [47.376626, 8.533062], [47.368122, 8.523831], [47.378056, 8.513876], [47.390364, 8.525092], [47.364618, 8.547153], [47.371474, 8.55532], [47.39143, 8.536041], [47.364632, 8.537198], [47.380703, 8.525199], [47.386958, 8.483831], [47.40458, 8.556809], [47.401596, 8.499261], [47.376395, 8.518345], [47.395455, 8.531885], [47.418699, 8.507726], [47.397691, 8.533216], [47.41104, 8.545456], [47.422593, 8.55068], [47.35157, 8.602435], [47.430153, 8.549326], [47.374094, 8.535433], [47.379764, 8.527418], [47.404607, 8.550304], [47.40841, 8.551444], [47.426637, 8.492496], [47.369179, 8.54803], [47.36584, 8.531199], [47.363626, 8.535151], [47.36066, 8.531132], [47.365986, 8.53479], [47.368495, 8.524355], [47.368382, 8.602497], [47.368543, 8.530751], [47.361956, 8.531053], [47.422323, 8.512636], [47.390705, 8.508806], [47.403288, 8.497201], [47.411235, 8.570783], [47.417791, 8.483071], [47.411254, 8.544732], [47.326697, 8.517352], [47.377845, 8.498788], [47.426272, 8.554441], [47.402074, 8.498197], [47.389145, 8.494629], [47.427548, 8.54617], [47.397616, 8.532592], [47.41221, 8.546329], [47.39343, 8.512809], [47.365427, 8.502262], [47.375322, 8.485483], [47.369695, 8.508583], [47.371579, 8.51593], [47.384616, 8.516525], [47.384908, 8.531391], [47.379464, 8.529677], [47.367381, 8.494158], [47.408676, 8.564792], [47.380267, 8.546406], [47.390538, 8.489782], [47.381807, 8.540571], [47.358357, 8.520561], [47.365332, 8.564406], [47.376488, 8.483811], [47.361564, 8.535374], [47.395451, 8.527474], [47.373027, 8.531213], [47.411118, 8.5354], [47.3662, 8.534052], [47.376979, 8.542272], [47.363358, 8.533001], [47.418852, 8.553371], [47.419012, 8.50308], [47.419762, 8.508542], [47.384342, 8.531313], [47.388296, 8.490996], [47.414833, 8.519164], [47.366745, 8.545781], [47.385839, 8.530933], [47.381845, 8.516535], [47.373894, 8.546009], [47.388714, 8.520727], [47.374159, 8.528549], [47.353178, 8.575586], [47.391282, 8.520315], [47.391152, 8.522644], [47.369782, 8.554517], [47.391627, 8.517077], [47.36507, 8.530865], [47.37464, 8.53849], [47.373275, 8.520122], [47.410709, 8.543316], [47.369266, 8.525628], [47.401773, 8.580823], [47.390213, 8.522042], [47.393264, 8.501506], [47.345249, 8.535144], [47.411674, 8.562683], [47.393214, 8.530104], [47.38838, 8.482799], [47.369081, 8.528048], [47.362222, 8.547435], [47.365371, 8.538894], [47.373011, 8.532921], [47.364808, 8.566566], [47.385732, 8.508706], [47.390896, 8.48106], [47.419666, 8.543568], [47.39384, 8.507386], [47.374523, 8.557211], [47.422602, 8.550667], [47.372957, 8.48541], [47.405376, 8.504941], [47.382564, 8.537607], [47.410302, 8.543625], [47.398226, 8.509739], [47.407556, 8.579039], [47.377547, 8.528869], [47.399318, 8.542762], [47.391339, 8.532423], [47.384788, 8.531706], [47.379099, 8.527405], [47.426153, 8.547175], [47.369186, 8.513022], [47.380663, 8.537025], [47.4111, 8.545775], [47.412226, 8.553948], [47.399782, 8.504895], [47.410647, 8.551689], [47.402034, 8.497653], [47.379129, 8.52228], [47.367127, 8.544399], [47.370052, 8.548869], [47.375641, 8.526818], [47.376907, 8.541344], [47.335764, 8.518422], [47.384154, 8.531177], [47.382457, 8.537578], [47.369043, 8.528245], [47.366149, 8.548761], [47.374888, 8.527491], [47.350965, 8.559973], [47.41918, 8.506264], [47.373836, 8.527469], [47.360412, 8.552348], [47.391526, 8.523102], [47.398764, 8.512797], [47.333708, 8.528529], [47.410445, 8.546491], [47.431283, 8.538401], [47.397617, 8.540077], [47.369587, 8.525939], [47.37742, 8.543209], [47.398861, 8.590485], [47.376602, 8.536504], [47.367095, 8.543974], [47.369121, 8.541845], [47.390508, 8.523187], [47.3966, 8.510395], [47.368856, 8.52901], [47.385576, 8.499313], [47.374594, 8.538635], [47.370844, 8.546992], [47.393279, 8.493082], [47.384573, 8.526881], [47.374677, 8.549654], [47.381644, 8.530304], [47.384044, 8.48086], [47.418232, 8.54208], [47.409338, 8.563309], [47.403752, 8.534308], [47.378265, 8.509748], [47.378724, 8.542216], [47.378433, 8.499436], [47.390068, 8.510608], [47.387411, 8.514859], [47.414241, 8.508312], [47.362263, 8.609844], [47.387805, 8.482722], [47.40824, 8.546604], [47.376902, 8.541807], [47.330814, 8.516681], [47.367067, 8.494999], [47.404973, 8.572743], [47.405945, 8.480984], [47.420848, 8.48215], [47.384016, 8.574416], [47.408217, 8.503143], [47.383106, 8.530745], [47.389637, 8.486996], [47.361829, 8.52635], [47.383099, 8.499688], [47.387141, 8.528271], [47.368844, 8.501363], [47.351865, 8.576538], [47.367095, 8.521175], [47.392376, 8.533054], [47.3872, 8.551372], [47.405863, 8.553431], [47.376647, 8.538439], [47.359253, 8.581686], [47.414179, 8.518846], [47.414143, 8.518818], [47.376516, 8.544554], [47.373112, 8.503845], [47.425299, 8.548019], [47.369726, 8.536853], [47.378265, 8.541385], [47.352992, 8.576191], [47.364669, 8.566008], [47.37835, 8.493673], [47.391097, 8.473713], [47.385607, 8.553365], [47.390556, 8.544713], [47.339573, 8.528517], [47.373298, 8.53302], [47.41271, 8.544868], [47.404928, 8.480129], [47.33471, 8.534742], [47.375855, 8.54507], [47.387211, 8.518922], [47.378017, 8.492766], [47.375434, 8.547683], [47.387261, 8.533717], [47.3724, 8.521389], [47.406712, 8.47978], [47.39989, 8.543131], [47.378416, 8.540634], [47.392872, 8.515725], [47.370554, 8.51775], [47.378279, 8.5256], [47.384226, 8.497405], [47.397138, 8.594554], [47.386005, 8.548433], [47.373506, 8.519504], [47.386788, 8.547495], [47.375817, 8.488406], [47.408721, 8.546203], [47.371416, 8.522706], [47.402004, 8.497958], [47.347454, 8.56301], [47.373864, 8.537865], [47.381478, 8.503761], [47.373031, 8.53459], [47.373046, 8.532988], [47.374306, 8.537688], [47.364569, 8.519985], [47.367674, 8.52079], [47.418678, 8.547232], [47.362967, 8.495818], [47.369115, 8.541554], [47.376069, 8.538691], [47.374205, 8.544493], [47.41096, 8.562151], [47.383652, 8.557363], [47.35211, 8.524868], [47.364676, 8.537291], [47.370568, 8.516294], [47.399249, 8.532983], [47.365748, 8.537128], [47.381149, 8.491597], [47.413611, 8.480816], [47.408817, 8.550207], [47.410139, 8.479714], [47.388251, 8.491035], [47.414134, 8.518818], [47.382927, 8.540157], [47.369521, 8.526256], [47.408847, 8.554593], [47.405094, 8.479682], [47.387192, 8.519014], [47.366616, 8.520464], [47.408983, 8.53953], [47.378487, 8.528399], [47.386326, 8.48905], [47.374189, 8.486374], [47.364142, 8.526186], [47.390856, 8.533076], [47.378441, 8.510202], [47.372575, 8.547478], [47.370125, 8.548804], [47.367727, 8.538956], [47.420996, 8.507361], [47.344124, 8.535134], [47.357669, 8.554104], [47.384252, 8.497552], [47.381822, 8.54187], [47.414101, 8.550794], [47.402584, 8.553879], [47.37557, 8.53059], [47.372499, 8.535731], [47.369124, 8.537793], [47.373082, 8.533029], [47.363129, 8.549466], [47.429908, 8.549533], [47.388266, 8.485472], [47.353342, 8.558845], [47.377247, 8.538729], [47.384944, 8.534239], [47.380244, 8.528117], [47.379847, 8.524414], [47.382749, 8.514143], [47.37006, 8.54054], [47.368984, 8.482101], [47.376352, 8.483927], [47.370045, 8.541176], [47.375251, 8.5195], [47.349134, 8.565136], [47.376857, 8.543766], [47.368078, 8.54467], [47.370215, 8.548806], [47.344143, 8.535095], [47.389731, 8.512005], [47.366546, 8.536416], [47.380605, 8.537487], [47.389791, 8.512391], [47.380351, 8.518544], [47.376291, 8.541742], [47.418686, 8.506201], [47.377769, 8.53772], [47.350431, 8.560346], [47.407522, 8.54647], [47.373335, 8.531908], [47.33616, 8.52506], [47.376734, 8.54338], [47.376677, 8.559627], [47.367355, 8.506815], [47.390846, 8.521684], [47.399751, 8.47661], [47.360943, 8.571687], [47.378734, 8.52892], [47.411672, 8.56198], [47.362462, 8.504744], [47.396772, 8.532363], [47.373866, 8.476318], [47.411939, 8.524604], [47.351233, 8.601077], [47.414738, 8.519612], [47.39129, 8.47822], [47.422622, 8.495849], [47.36621, 8.553727], [47.362779, 8.568006], [47.388454, 8.540629], [47.35735, 8.550828], [47.3762, 8.558756], [47.350328, 8.527863], [47.374498, 8.539215], [47.413347, 8.550593], [47.370785, 8.535219], [47.336641, 8.533181], [47.419206, 8.506357], [47.378151, 8.5457], [47.373647, 8.517879], [47.39701, 8.480319], [47.361967, 8.55336], [47.358354, 8.584367], [47.38666, 8.547652], [47.35144, 8.601082], [47.406907, 8.550577], [47.390248, 8.509605], [47.372991, 8.531279], [47.402479, 8.535713], [47.363794, 8.535499], [47.37946, 8.524419], [47.387864, 8.539332], [47.373039, 8.547011], [47.378841, 8.484268], [47.410463, 8.56972], [47.36907, 8.528272], [47.374247, 8.519162], [47.40968, 8.576143], [47.375743, 8.543545], [47.37319, 8.547199], [47.403151, 8.489541], [47.370365, 8.519653], [47.383921, 8.510935], [47.392387, 8.524298], [47.372523, 8.478622], [47.386968, 8.490692], [47.36624, 8.530823], [47.413771, 8.554259], [47.37842, 8.541084], [47.417537, 8.546095], [47.414582, 8.559603], [47.414133, 8.518924], [47.390194, 8.509684], [47.372582, 8.534501], [47.379984, 8.527926], [47.421131, 8.481745], [47.337329, 8.519327], [47.393599, 8.537848], [47.39903, 8.514154], [47.371633, 8.521651], [47.406916, 8.550564], [47.353773, 8.601636], [47.384184, 8.575678], [47.390639, 8.523667], [47.388585, 8.479041], [47.389499, 8.477337], [47.377913, 8.538677], [47.417371, 8.545641], [47.39357, 8.519964], [47.373729, 8.517827], [47.40276, 8.501881], [47.371745, 8.550546], [47.365411, 8.553538], [47.362261, 8.559297], [47.362216, 8.54901], [47.37699, 8.544842], [47.357275, 8.521836], [47.380799, 8.536895], [47.362851, 8.51623], [47.394503, 8.542145], [47.377215, 8.540132], [47.38223, 8.515841], [47.358053, 8.508773], [47.377549, 8.529611], [47.408936, 8.548155], [47.369592, 8.466384], [47.353339, 8.52717], [47.381877, 8.513092], [47.399039, 8.524726], [47.369758, 8.466943], [47.360199, 8.523683], [47.39229, 8.506692], [47.383575, 8.530675], [47.373663, 8.524857], [47.392209, 8.478079], [47.394412, 8.546939], [47.371136, 8.546587], [47.392338, 8.538988], [47.370887, 8.546251], [47.382873, 8.515337], [47.374181, 8.475331], [47.38421, 8.504027], [47.375319, 8.549296], [47.423747, 8.54295], [47.423801, 8.542938], [47.402974, 8.494254], [47.371004, 8.54816], [47.377272, 8.538875], [47.36009, 8.522847], [47.36948, 8.525858], [47.380044, 8.548176], [47.376932, 8.54157], [47.379124, 8.495636], [47.385214, 8.500524], [47.375578, 8.526856], [47.357601, 8.521578], [47.385675, 8.519685], [47.372645, 8.498817], [47.374122, 8.51904], [47.381123, 8.534995], [47.340878, 8.526519], [47.426564, 8.554938], [47.417188, 8.542152], [47.38006, 8.494568], [47.418106, 8.538327], [47.371545, 8.506925], [47.360761, 8.550674], [47.378145, 8.541674], [47.39306, 8.47946], [47.377482, 8.499099], [47.377398, 8.522709], [47.400807, 8.54886], [47.366123, 8.5327], [47.364577, 8.566231], [47.3779, 8.541894], [47.37314, 8.5354], [47.38511, 8.498125], [47.399006, 8.533045], [47.393761, 8.52838], [47.372676, 8.534106], [47.391569, 8.513659], [47.41788, 8.555299], [47.375073, 8.529891], [47.396165, 8.527184], [47.365658, 8.532347], [47.386939, 8.484996], [47.409574, 8.480538], [47.372198, 8.54081], [47.385659, 8.520426], [47.399316, 8.515352], [47.364267, 8.54806], [47.380016, 8.52455], [47.384326, 8.52918], [47.387096, 8.486456], [47.409235, 8.547048], [47.399602, 8.591932], [47.373312, 8.531484], [47.373857, 8.503066], [47.36002, 8.522633], [47.371588, 8.51593], [47.373824, 8.536315], [47.364776, 8.504566], [47.368696, 8.493946], [47.369634, 8.541869], [47.405214, 8.504938], [47.406602, 8.551459], [47.367076, 8.494999], [47.374959, 8.524804], [47.387555, 8.51971], [47.366131, 8.508776], [47.414386, 8.480592], [47.398443, 8.469046], [47.362581, 8.504614], [47.328412, 8.514794], [47.401525, 8.548014], [47.377857, 8.509171], [47.380764, 8.518672], [47.369191, 8.556093], [47.374494, 8.541585], [47.36371, 8.533922], [47.370689, 8.516773], [47.410347, 8.548277], [47.373673, 8.485742], [47.373516, 8.545101], [47.409321, 8.544559], [47.383381, 8.543465], [47.369278, 8.5564], [47.410049, 8.53237], [47.38292, 8.575254], [47.395739, 8.54543], [47.3764, 8.540685], [47.377651, 8.548126], [47.383699, 8.573708], [47.354389, 8.523631], [47.399876, 8.516052], [47.403852, 8.485739], [47.392284, 8.523714], [47.369935, 8.510826], [47.355831, 8.500085], [47.398155, 8.536418], [47.387241, 8.528141], [47.369015, 8.543564], [47.360793, 8.568732], [47.386975, 8.546665], [47.386171, 8.518569], [47.386564, 8.503386], [47.370695, 8.535297], [47.375367, 8.485471], [47.408712, 8.546229], [47.37583, 8.577208], [47.37311, 8.532937], [47.367158, 8.540176], [47.374318, 8.52209], [47.387869, 8.520749], [47.374414, 8.535797], [47.387752, 8.471529], [47.379486, 8.544404], [47.388309, 8.53607], [47.376666, 8.527819], [47.358234, 8.58831], [47.431856, 8.531069], [47.360483, 8.552403], [47.391668, 8.519423], [47.421796, 8.545653], [47.419757, 8.548116], [47.39363, 8.530788], [47.391844, 8.500458], [47.376925, 8.527996], [47.382154, 8.512409], [47.393487, 8.54488], [47.402929, 8.575747], [47.368404, 8.547272], [47.360697, 8.566493], [47.357978, 8.532216], [47.405786, 8.58613], [47.375039, 8.545675], [47.406624, 8.546265], [47.397956, 8.534666], [47.390757, 8.539644], [47.424088, 8.552421], [47.385668, 8.475303], [47.373851, 8.536328], [47.363473, 8.535135], [47.362584, 8.558404], [47.392425, 8.507636], [47.38204, 8.515969], [47.410825, 8.545332], [47.373119, 8.532937], [47.380894, 8.54483], [47.408565, 8.546557], [47.414912, 8.551579], [47.368265, 8.54858], [47.366907, 8.545798], [47.376079, 8.488305], [47.388595, 8.539096], [47.387463, 8.518966], [47.410175, 8.566017], [47.406744, 8.586534], [47.382834, 8.529097], [47.419147, 8.557354], [47.378841, 8.529028], [47.386024, 8.526526], [47.393507, 8.524758], [47.375302, 8.528426], [47.386602, 8.541478], [47.388068, 8.520581], [47.37028, 8.524881], [47.391033, 8.522867], [47.360295, 8.566233], [47.377525, 8.538761], [47.389681, 8.511634], [47.371443, 8.550155], [47.419955, 8.501217], [47.396236, 8.535809], [47.386475, 8.516867], [47.407275, 8.530803], [47.36856, 8.498988], [47.361823, 8.532705], [47.39292, 8.543994], [47.386352, 8.54787], [47.356916, 8.51116], [47.374627, 8.54176], [47.378562, 8.483242], [47.413176, 8.541287], [47.388641, 8.485784], [47.37034, 8.548901], [47.413184, 8.541366], [47.368819, 8.501191], [47.385733, 8.492919], [47.417943, 8.54503], [47.378702, 8.55669], [47.381237, 8.528654], [47.382781, 8.529917], [47.366068, 8.548865], [47.382936, 8.540144], [47.3419, 8.530695], [47.377074, 8.539825], [47.368196, 8.539813], [47.372022, 8.520441], [47.375294, 8.528373], [47.373387, 8.51398], [47.405912, 8.548318], [47.414875, 8.544211], [47.378299, 8.541518], [47.360276, 8.568165], [47.391386, 8.5149], [47.367971, 8.540802], [47.387209, 8.551372], [47.398123, 8.535981], [47.398138, 8.536352], [47.359182, 8.509246], [47.380565, 8.53693], [47.384794, 8.537772], [47.371944, 8.520122], [47.359882, 8.568925], [47.407017, 8.549401], [47.39237, 8.502932], [47.360707, 8.522303], [47.390548, 8.48969], [47.403134, 8.547226], [47.38384, 8.515781], [47.379277, 8.495586], [47.409787, 8.575377], [47.409815, 8.575271], [47.375333, 8.485205], [47.381157, 8.491663], [47.399082, 8.542041], [47.400173, 8.592474], [47.400119, 8.494542], [47.369114, 8.603016], [47.376172, 8.527782], [47.368716, 8.528596], [47.399091, 8.542028], [47.401649, 8.548282], [47.374582, 8.538886], [47.362386, 8.568554], [47.413217, 8.521688], [47.371151, 8.527957], [47.356643, 8.507593], [47.386718, 8.490528], [47.391478, 8.519485], [47.376064, 8.562501], [47.385243, 8.529279], [47.37333, 8.500632], [47.381824, 8.484591], [47.379244, 8.508007], [47.380797, 8.518937], [47.366007, 8.533492], [47.351178, 8.532129], [47.410511, 8.549964], [47.36949, 8.553981], [47.414263, 8.551751], [47.356885, 8.555266], [47.400152, 8.586459], [47.378324, 8.530408], [47.388717, 8.510819], [47.376092, 8.559654], [47.334611, 8.519457], [47.37821, 8.532022], [47.378804, 8.542376], [47.364075, 8.547486], [47.363959, 8.546412], [47.378018, 8.518947], [47.366473, 8.561782], [47.374921, 8.527796], [47.371918, 8.540936], [47.367704, 8.534785], [47.397068, 8.530633], [47.395573, 8.531729], [47.389728, 8.512323], [47.36041, 8.58469], [47.410542, 8.572676], [47.368075, 8.520308], [47.33711, 8.536803], [47.359307, 8.592556], [47.403864, 8.569394], [47.377611, 8.529679], [47.407462, 8.566622], [47.354171, 8.575223], [47.416803, 8.5372], [47.377364, 8.529184], [47.37772, 8.509406], [47.385014, 8.508493], [47.371252, 8.520068], [47.389816, 8.542128], [47.38828, 8.496678], [47.38819, 8.496729], [47.369778, 8.466811], [47.42269, 8.49927], [47.377552, 8.548177], [47.380028, 8.496183], [47.370034, 8.527153], [47.370639, 8.543081], [47.400136, 8.505512], [47.377705, 8.525403], [47.368194, 8.550339], [47.38776, 8.484681], [47.372373, 8.534788], [47.377918, 8.526692], [47.360916, 8.5354], [47.400262, 8.516139], [47.37501, 8.526024], [47.366318, 8.532943], [47.384142, 8.530594], [47.326531, 8.518804], [47.374567, 8.524373], [47.384289, 8.531259], [47.377376, 8.567256], [47.390379, 8.539702], [47.378869, 8.526976], [47.334045, 8.528946], [47.371126, 8.546666], [47.389781, 8.477979], [47.410724, 8.555852], [47.344773, 8.533149], [47.385022, 8.54779], [47.366756, 8.541823], [47.378833, 8.499934], [47.334386, 8.529985], [47.405835, 8.569237], [47.376729, 8.516339], [47.38778, 8.529225], [47.37674, 8.538043], [47.417332, 8.509633], [47.385307, 8.529134], [47.406755, 8.550508], [47.39372, 8.493965], [47.388533, 8.483769], [47.370745, 8.547016], [47.369269, 8.55636], [47.391234, 8.487412], [47.386328, 8.535327], [47.367001, 8.543483], [47.388336, 8.536044], [47.375932, 8.529393], [47.358696, 8.516107], [47.364402, 8.546169], [47.378292, 8.509789], [47.372591, 8.532635], [47.385659, 8.520387], [47.365542, 8.500516], [47.370184, 8.518841], [47.360493, 8.547624], [47.356594, 8.523451], [47.369042, 8.537924], [47.400119, 8.494568], [47.37666, 8.535102], [47.375895, 8.538026], [47.382743, 8.550908], [47.364091, 8.556026], [47.374541, 8.546062], [47.366471, 8.545259], [47.374673, 8.529354], [47.371449, 8.557981], [47.418919, 8.507306], [47.372765, 8.534227], [47.389009, 8.532376], [47.413093, 8.513775], [47.412795, 8.507077], [47.338118, 8.530115], [47.397288, 8.531062], [47.403843, 8.49651], [47.418664, 8.507632], [47.381282, 8.514259], [47.350245, 8.567384], [47.403619, 8.497446], [47.381942, 8.502247], [47.37104, 8.514886], [47.381041, 8.497448], [47.365023, 8.521517], [47.382676, 8.529584], [47.362645, 8.55863], [47.392212, 8.476728], [47.390885, 8.522308], [47.387603, 8.527049], [47.386397, 8.547858], [47.41434, 8.551223], [47.370899, 8.48917], [47.364386, 8.555357], [47.38966, 8.526362], [47.400181, 8.539004], [47.396503, 8.540796], [47.378164, 8.534947], [47.38041, 8.493661], [47.346105, 8.535016], [47.374556, 8.538819], [47.393756, 8.537441], [47.334548, 8.530002], [47.409504, 8.540469], [47.38126, 8.537607], [47.393464, 8.500358], [47.366341, 8.533433], [47.365025, 8.521279], [47.37338, 8.548024], [47.408621, 8.54632], [47.365372, 8.538828], [47.367932, 8.523973], [47.366046, 8.532262], [47.371962, 8.536316], [47.370511, 8.519497], [47.367936, 8.546309], [47.417406, 8.546662], [47.37705, 8.554484], [47.368941, 8.538107], [47.378708, 8.542096], [47.347481, 8.511089], [47.372941, 8.530841], [47.36052, 8.547624], [47.357493, 8.55193], [47.37765, 8.531295], [47.364032, 8.534061], [47.38162, 8.513656], [47.391196, 8.522764], [47.368726, 8.56228], [47.407593, 8.489748], [47.410705, 8.534385], [47.382405, 8.514414], [47.378356, 8.509724], [47.370215, 8.548766], [47.417436, 8.553832], [47.354133, 8.575501], [47.369001, 8.547814], [47.376065, 8.536228], [47.41116, 8.529041], [47.372562, 8.478279], [47.404597, 8.543812], [47.373833, 8.544816], [47.383062, 8.530704], [47.377597, 8.527387], [47.385123, 8.547514], [47.371738, 8.547553], [47.370767, 8.535272], [47.376749, 8.524801], [47.420749, 8.538461], [47.353709, 8.601727], [47.369179, 8.525256], [47.372277, 8.523968], [47.37514, 8.518902], [47.366962, 8.536187], [47.387033, 8.518719], [47.398824, 8.533187], [47.378673, 8.52198], [47.369061, 8.534005], [47.402938, 8.500043], [47.427532, 8.543108], [47.375593, 8.524314], [47.377362, 8.509214], [47.389139, 8.54618], [47.381843, 8.540625], [47.373979, 8.546527], [47.364599, 8.516875], [47.375222, 8.525472], [47.407572, 8.546855], [47.380912, 8.518224], [47.413523, 8.550981], [47.36923, 8.567812], [47.387113, 8.490536], [47.375095, 8.539863], [47.360997, 8.553287], [47.366207, 8.537151], [47.398709, 8.539689], [47.414864, 8.561213], [47.382264, 8.501432], [47.404101, 8.563556], [47.402147, 8.503975], [47.363127, 8.549678], [47.350622, 8.563778], [47.423004, 8.541609], [47.376821, 8.509349], [47.406912, 8.586856], [47.414143, 8.518792], [47.397095, 8.540993], [47.401209, 8.551041], [47.362399, 8.504809], [47.373539, 8.536997], [47.378732, 8.527185], [47.391205, 8.504432], [47.405278, 8.558162], [47.417898, 8.545082], [47.3932, 8.530634], [47.38519, 8.507994], [47.387973, 8.49099], [47.414465, 8.518984], [47.409349, 8.550138], [47.418618, 8.546912], [47.38012, 8.527876], [47.40046, 8.543739], [47.419583, 8.548536], [47.400663, 8.544128], [47.335579, 8.518895], [47.390845, 8.478741], [47.400179, 8.590977], [47.37675, 8.48269], [47.372658, 8.540753], [47.413, 8.515999], [47.391218, 8.52042], [47.377621, 8.498665], [47.376722, 8.559615], [47.384883, 8.50906], [47.40866, 8.580215], [47.392211, 8.495749], [47.353911, 8.560432], [47.41014, 8.542615], [47.380617, 8.534283], [47.375371, 8.494925], [47.397675, 8.533004], [47.405169, 8.480266], [47.3741, 8.527144], [47.414923, 8.546663], [47.363029, 8.51254], [47.387004, 8.51897], [47.417065, 8.541884], [47.397006, 8.5305], [47.399419, 8.521686], [47.36996, 8.511012], [47.370447, 8.532048], [47.412213, 8.549708], [47.379254, 8.526256], [47.412993, 8.546292], [47.377239, 8.543337], [47.414519, 8.513274], [47.361594, 8.526518], [47.3873, 8.493678], [47.372107, 8.519119], [47.360913, 8.552637], [47.414152, 8.521774], [47.383837, 8.547514], [47.391217, 8.520566], [47.362931, 8.512459], [47.370941, 8.519664], [47.384996, 8.484958], [47.386579, 8.526842], [47.410731, 8.529681], [47.414139, 8.548688], [47.388594, 8.534473], [47.352841, 8.524645], [47.35906, 8.592047], [47.407562, 8.536573], [47.366447, 8.527914], [47.385505, 8.520529], [47.378914, 8.530778], [47.414306, 8.479517], [47.412888, 8.517455], [47.373603, 8.519732], [47.375547, 8.516725], [47.357891, 8.519479], [47.365158, 8.547098], [47.384693, 8.500434], [47.365651, 8.547294], [47.397196, 8.531351], [47.359162, 8.549502], [47.370301, 8.53607], [47.375766, 8.518359], [47.341874, 8.530549], [47.417064, 8.556886], [47.371741, 8.55661], [47.375073, 8.529865], [47.397565, 8.481694], [47.365803, 8.54927], [47.374853, 8.493512], [47.358111, 8.552141], [47.397907, 8.534148], [47.357646, 8.521632], [47.373819, 8.530223], [47.354218, 8.523588], [47.430144, 8.5493], [47.400186, 8.494119], [47.362394, 8.516022], [47.427573, 8.54641], [47.430001, 8.486611], [47.377978, 8.527978], [47.365209, 8.545577], [47.399662, 8.51777], [47.376289, 8.527745], [47.353612, 8.513383], [47.368489, 8.530723], [47.371149, 8.521496], [47.397691, 8.533243], [47.375065, 8.558852], [47.391276, 8.522859], [47.37059, 8.516758], [47.368572, 8.54566], [47.379887, 8.541949], [47.383173, 8.541725], [47.38343, 8.515362], [47.379854, 8.543511], [47.415395, 8.570368], [47.358021, 8.519998], [47.359715, 8.549103], [47.381399, 8.540934], [47.376293, 8.541609], [47.37519, 8.534621], [47.367328, 8.535519], [47.374307, 8.521375], [47.366048, 8.504141], [47.384547, 8.542919], [47.364519, 8.547165], [47.370696, 8.535204], [47.402001, 8.499269], [47.383805, 8.540467], [47.397916, 8.534095], [47.414608, 8.520047], [47.419215, 8.547442], [47.372909, 8.535144], [47.394392, 8.525306], [47.378872, 8.542749], [47.407608, 8.547849], [47.35705, 8.521898], [47.371009, 8.488934], [47.362041, 8.549417], [47.39353, 8.512652], [47.384737, 8.548406], [47.398149, 8.546473], [47.377327, 8.499321], [47.395746, 8.524817], [47.364711, 8.534525], [47.372766, 8.497456], [47.364312, 8.531141], [47.409206, 8.566698], [47.35002, 8.533852], [47.389019, 8.527568], [47.38209, 8.528817], [47.405121, 8.479643], [47.371108, 8.542906], [47.369146, 8.527837], [47.356546, 8.52382], [47.371097, 8.520303], [47.376332, 8.518344], [47.372138, 8.545297], [47.410367, 8.548119], [47.383323, 8.53157], [47.367442, 8.601139], [47.362593, 8.517761], [47.37714, 8.540435], [47.400068, 8.53202], [47.390264, 8.523355], [47.376952, 8.510742], [47.376628, 8.511689], [47.374441, 8.541478], [47.360967, 8.551671], [47.39127, 8.514831], [47.366557, 8.541938], [47.383593, 8.577255], [47.377032, 8.544194], [47.373935, 8.546434], [47.39225, 8.492412], [47.380208, 8.52809], [47.377117, 8.541984], [47.377, 8.541982], [47.338571, 8.526022], [47.396893, 8.513806], [47.398456, 8.50724], [47.381077, 8.513076], [47.400049, 8.586801], [47.400798, 8.548847], [47.370698, 8.522586], [47.409269, 8.550057], [47.419592, 8.554089], [47.381352, 8.542098], [47.373572, 8.536402], [47.402369, 8.499316], [47.402418, 8.535513], [47.410852, 8.545306], [47.386106, 8.514979], [47.393684, 8.501898], [47.366883, 8.54638], [47.36818, 8.560203], [47.374579, 8.545838], [47.373588, 8.553458], [47.390433, 8.509053], [47.397009, 8.514815], [47.377358, 8.512538], [47.360849, 8.553641], [47.406201, 8.548231], [47.374833, 8.527675], [47.375882, 8.54123], [47.35988, 8.557182], [47.373871, 8.544671], [47.407422, 8.58533], [47.388675, 8.489944], [47.378997, 8.559716], [47.377705, 8.525496], [47.378932, 8.508676], [47.389374, 8.529946], [47.408955, 8.539556], [47.357998, 8.519587], [47.372893, 8.535925], [47.387844, 8.540497], [47.365135, 8.554115], [47.429589, 8.539612], [47.391795, 8.53838], [47.394428, 8.525281], [47.417008, 8.539365], [47.370537, 8.558293], [47.357507, 8.57172], [47.410226, 8.546804], [47.372456, 8.524025], [47.372856, 8.535964], [47.414684, 8.527377], [47.419247, 8.546899], [47.388441, 8.486973], [47.418986, 8.55352], [47.361616, 8.547806], [47.390945, 8.488598], [47.370725, 8.51684], [47.387278, 8.488287], [47.378339, 8.528819], [47.378637, 8.499678], [47.356725, 8.522024], [47.395633, 8.545242], [47.370615, 8.516983], [47.367082, 8.539711], [47.386355, 8.489859], [47.403424, 8.547908], [47.3974, 8.503642], [47.407635, 8.538442], [47.419161, 8.506383], [47.375383, 8.549192], [47.3982, 8.536419], [47.381824, 8.542585], [47.383274, 8.549886], [47.341865, 8.530535], [47.365813, 8.553838], [47.389736, 8.516271], [47.374787, 8.551311], [47.344534, 8.529875], [47.404974, 8.57273], [47.366616, 8.553537], [47.391427, 8.488038], [47.413353, 8.550924], [47.367598, 8.534558], [47.418224, 8.547607], [47.382345, 8.495593], [47.399321, 8.548048], [47.366845, 8.544711], [47.406566, 8.549497], [47.378948, 8.529137], [47.37659, 8.543417], [47.364614, 8.566165], [47.412359, 8.524003], [47.38322, 8.531105], [47.365893, 8.537012], [47.383063, 8.514242], [47.360008, 8.522951], [47.380853, 8.511032], [47.381716, 8.516877], [47.418545, 8.546977], [47.37653, 8.527008], [47.370689, 8.516746], [47.389715, 8.478414], [47.392071, 8.499244], [47.369337, 8.525736], [47.385304, 8.488739], [47.36994, 8.51121], [47.348377, 8.5625], [47.387547, 8.488332], [47.362073, 8.548941], [47.368955, 8.540412], [47.372191, 8.521649], [47.36064, 8.525625], [47.363506, 8.527854], [47.382711, 8.547715], [47.381134, 8.504058], [47.375582, 8.548216], [47.362489, 8.553384], [47.369408, 8.53727], [47.397004, 8.530712], [47.365761, 8.545218], [47.390938, 8.532958], [47.369402, 8.532172], [47.417048, 8.539869], [47.384395, 8.547512], [47.393737, 8.502006], [47.370364, 8.602143], [47.378113, 8.481234], [47.372713, 8.534941], [47.371838, 8.535188], [47.373536, 8.528801], [47.379817, 8.554912], [47.380739, 8.578359], [47.366748, 8.542643], [47.352034, 8.532028], [47.402958, 8.536464], [47.364182, 8.556015], [47.371309, 8.563976], [47.344333, 8.530242], [47.375018, 8.519403], [47.423729, 8.514308], [47.369532, 8.491036], [47.37776, 8.522425], [47.380806, 8.518937], [47.344245, 8.529989], [47.368921, 8.547667], [47.378734, 8.528947], [47.399824, 8.518714], [47.397719, 8.474543], [47.38406, 8.488979], [47.369981, 8.502962], [47.406771, 8.586535], [47.376829, 8.535344], [47.375746, 8.529045], [47.391237, 8.520341], [47.382429, 8.537697], [47.395225, 8.521906], [47.390715, 8.50878], [47.396157, 8.517407], [47.368495, 8.533014], [47.38042, 8.525644], [47.384452, 8.503198], [47.369022, 8.538043], [47.341918, 8.525891], [47.364403, 8.566558], [47.381201, 8.538162], [47.377521, 8.541966], [47.415492, 8.546476], [47.375544, 8.520923], [47.360339, 8.579128], [47.368081, 8.561154], [47.38322, 8.5061], [47.35474, 8.574984], [47.390638, 8.489652], [47.419641, 8.555561], [47.382108, 8.473022], [47.390743, 8.489031], [47.384314, 8.548437], [47.387681, 8.529275], [47.404862, 8.574039], [47.379977, 8.541964], [47.351305, 8.525395], [47.402811, 8.535799], [47.394481, 8.50712], [47.374368, 8.541583], [47.367937, 8.51967], [47.381924, 8.52925], [47.414868, 8.546768], [47.396031, 8.527009], [47.383227, 8.54362], [47.404835, 8.571283], [47.374509, 8.532422], [47.369014, 8.53795], [47.390744, 8.508529], [47.378174, 8.509958], [47.394106, 8.525128], [47.422467, 8.550664], [47.375139, 8.541877], [47.362551, 8.506811], [47.369048, 8.541076], [47.39347, 8.526718], [47.372809, 8.535208], [47.40325, 8.498433], [47.38698, 8.539619], [47.38689, 8.539604], [47.385322, 8.489706], [47.389258, 8.510711], [47.394232, 8.490146], [47.402306, 8.546388], [47.373659, 8.519534], [47.393891, 8.544928], [47.386605, 8.486102], [47.40632, 8.495234], [47.36414, 8.546309], [47.362812, 8.548784], [47.384315, 8.531286], [47.424865, 8.541727], [47.374554, 8.530556], [47.371149, 8.558279], [47.404676, 8.557116], [47.397038, 8.4802], [47.367287, 8.544534], [47.396343, 8.512934], [47.374756, 8.52051], [47.37799, 8.526694], [47.364499, 8.53129], [47.376802, 8.524908], [47.388181, 8.520001], [47.364998, 8.546923], [47.358194, 8.498371], [47.36414, 8.546349], [47.353151, 8.527034], [47.376999, 8.524051], [47.383798, 8.530865], [47.374803, 8.55151], [47.355565, 8.572513], [47.358326, 8.518138], [47.386242, 8.493406], [47.414315, 8.515827], [47.380908, 8.511947], [47.381401, 8.483603], [47.335437, 8.540593], [47.377213, 8.512627], [47.383315, 8.474846], [47.356035, 8.508177], [47.373311, 8.520216], [47.356657, 8.532069], [47.365061, 8.567326], [47.366029, 8.532182], [47.335483, 8.530087], [47.358005, 8.519773], [47.406853, 8.550576], [47.373162, 8.53687], [47.371587, 8.515957], [47.368655, 8.53123], [47.41877, 8.540408], [47.366802, 8.507188], [47.360253, 8.580595], [47.377401, 8.51279], [47.382273, 8.505379], [47.386171, 8.498212], [47.352817, 8.559205], [47.382344, 8.505447], [47.36684, 8.537693], [47.324758, 8.507312], [47.3638, 8.528178], [47.364105, 8.526304], [47.362279, 8.559285], [47.366271, 8.514009], [47.335396, 8.541161], [47.407546, 8.530702], [47.382809, 8.514475], [47.370843, 8.570269], [47.38344, 8.515309], [47.378402, 8.567185], [47.375933, 8.549044], [47.382814, 8.529255], [47.404712, 8.481079], [47.406844, 8.550576], [47.380735, 8.512155], [47.360687, 8.516703], [47.417707, 8.546165], [47.367738, 8.535037], [47.393489, 8.536216], [47.376959, 8.53773], [47.369045, 8.503923], [47.389312, 8.521269], [47.366565, 8.541977], [47.41049, 8.550255], [47.398837, 8.540394], [47.383252, 8.531503], [47.360296, 8.50073], [47.367039, 8.523345], [47.364092, 8.547526], [47.389599, 8.537554], [47.385307, 8.53679], [47.409781, 8.54918], [47.38638, 8.503859], [47.337116, 8.519045], [47.373872, 8.55202], [47.402989, 8.587831], [47.407529, 8.530662], [47.357954, 8.52042], [47.382322, 8.499076], [47.417717, 8.548007], [47.393095, 8.526459], [47.383828, 8.548401], [47.328245, 8.51827], [47.350337, 8.560741], [47.387141, 8.518721], [47.40454, 8.581134], [47.389361, 8.484659], [47.380488, 8.519342], [47.370708, 8.516641], [47.369528, 8.543469], [47.371884, 8.506257], [47.375729, 8.527018], [47.386786, 8.551442], [47.373071, 8.547409], [47.364756, 8.537346], [47.413627, 8.481015], [47.395633, 8.532088], [47.362091, 8.597488], [47.376803, 8.524736], [47.386896, 8.547405], [47.392449, 8.52434], [47.401706, 8.581153], [47.384014, 8.49801], [47.386671, 8.547493], [47.383388, 8.488661], [47.42888, 8.545177], [47.341309, 8.530339], [47.381636, 8.490428], [47.394772, 8.513564], [47.360443, 8.578654], [47.389674, 8.479897], [47.392366, 8.487593], [47.373869, 8.481959], [47.367336, 8.534738], [47.409381, 8.543023], [47.358144, 8.55524], [47.427724, 8.538115], [47.426921, 8.510568], [47.36214, 8.607736], [47.369096, 8.529306], [47.424421, 8.508583], [47.382049, 8.51593], [47.40262, 8.499493], [47.41086, 8.563169], [47.418221, 8.503926], [47.374527, 8.539971], [47.369568, 8.522245], [47.383657, 8.510307], [47.386833, 8.547457], [47.40255, 8.500181], [47.389879, 8.492008], [47.380412, 8.525551], [47.405326, 8.480866], [47.3745, 8.532449], [47.370525, 8.549302], [47.408795, 8.579304], [47.397817, 8.541658], [47.329531, 8.514459], [47.372802, 8.535089], [47.410632, 8.569896], [47.409053, 8.550053], [47.375891, 8.51072], [47.359654, 8.508832], [47.40655, 8.538022], [47.386261, 8.54514], [47.378784, 8.514937], [47.370885, 8.570561], [47.375173, 8.579048], [47.364751, 8.555709], [47.384432, 8.531302], [47.392146, 8.501881], [47.371863, 8.525946], [47.389913, 8.510804], [47.365895, 8.545287], [47.418873, 8.507358], [47.427668, 8.542992], [47.373431, 8.553004], [47.415689, 8.548389], [47.373711, 8.535015], [47.356572, 8.523953], [47.369088, 8.541527], [47.404792, 8.494051], [47.401337, 8.49026], [47.381837, 8.533725], [47.37488, 8.517798], [47.377471, 8.499311], [47.35735, 8.550828], [47.379623, 8.515589], [47.380635, 8.525728], [47.404709, 8.49136], [47.366452, 8.541551], [47.371464, 8.490306], [47.360758, 8.548225], [47.370178, 8.539457], [47.373147, 8.503912], [47.409538, 8.542576], [47.410103, 8.542773], [47.392736, 8.523551], [47.341064, 8.526853], [47.381856, 8.481109], [47.378545, 8.509688], [47.39579, 8.528753], [47.361537, 8.565293], [47.379031, 8.522225], [47.399999, 8.49491], [47.404341, 8.561017], [47.363729, 8.528084], [47.3899, 8.512234], [47.379924, 8.528587], [47.359198, 8.523967], [47.402346, 8.49399], [47.373895, 8.54491], [47.39515, 8.519374], [47.364182, 8.527762], [47.396313, 8.543759], [47.382396, 8.540146], [47.367805, 8.534589], [47.386673, 8.488461], [47.402895, 8.485097], [47.369886, 8.510269], [47.410185, 8.537978], [47.399143, 8.542202], [47.366047, 8.536869], [47.390794, 8.539565], [47.393717, 8.506112], [47.377504, 8.543806], [47.390591, 8.522063], [47.382652, 8.540708], [47.378943, 8.527693], [47.357538, 8.521577], [47.373694, 8.523415], [47.324203, 8.518559], [47.383681, 8.515512], [47.390746, 8.511178], [47.38639, 8.518229], [47.375595, 8.516422], [47.377678, 8.525416], [47.373207, 8.533071], [47.366927, 8.536159], [47.374387, 8.54149], [47.392977, 8.524655], [47.374208, 8.53856], [47.383801, 8.508443], [47.418811, 8.506283], [47.345518, 8.53237], [47.370516, 8.551169], [47.401253, 8.517934], [47.349988, 8.534342], [47.409077, 8.57984], [47.33543, 8.529954], [47.396191, 8.527237], [47.335612, 8.540186], [47.362363, 8.504742], [47.373488, 8.598371], [47.395581, 8.527092], [47.343979, 8.530513], [47.373932, 8.513422], [47.377487, 8.527584], [47.378687, 8.564702], [47.412231, 8.542195], [47.372789, 8.521198], [47.373929, 8.503001], [47.382119, 8.528619], [47.403722, 8.49203], [47.372022, 8.564733], [47.345528, 8.530412], [47.403963, 8.48537], [47.378387, 8.528516], [47.376164, 8.533383], [47.33529, 8.519034], [47.402458, 8.495595], [47.387143, 8.494218], [47.374526, 8.541083], [47.405752, 8.584976], [47.370756, 8.554233], [47.361608, 8.565387], [47.376542, 8.52575], [47.381898, 8.52917], [47.373093, 8.551673], [47.367609, 8.534373], [47.378455, 8.526968], [47.377747, 8.493741], [47.411179, 8.526033], [47.383339, 8.49903], [47.382422, 8.537392], [47.409296, 8.550044], [47.360135, 8.533332], [47.409521, 8.542536], [47.418005, 8.55452], [47.365749, 8.531356], [47.376898, 8.541344], [47.359695, 8.50731], [47.392432, 8.523359], [47.385602, 8.51979], [47.359971, 8.522156], [47.360079, 8.595339], [47.379494, 8.515944], [47.408944, 8.55013], [47.372704, 8.533961], [47.392339, 8.523662], [47.360997, 8.573608], [47.385443, 8.494172], [47.408569, 8.502037], [47.406807, 8.550628], [47.368965, 8.528932], [47.393858, 8.505373], [47.359705, 8.566829], [47.362523, 8.533884], [47.389402, 8.521257], [47.412142, 8.550621], [47.364531, 8.502787], [47.376284, 8.523534], [47.381562, 8.490625], [47.369191, 8.527878], [47.373088, 8.531453], [47.368683, 8.521658], [47.372433, 8.520794], [47.373072, 8.527441], [47.386085, 8.532448], [47.371865, 8.543676], [47.36423, 8.536845], [47.364647, 8.566444], [47.375007, 8.536855], [47.404141, 8.548188], [47.369677, 8.540162], [47.373646, 8.534285], [47.406928, 8.586114], [47.377243, 8.520958], [47.415154, 8.514651], [47.368818, 8.539707], [47.400047, 8.553985], [47.383034, 8.527869], [47.360996, 8.576402], [47.391968, 8.482883], [47.415364, 8.527669], [47.39942, 8.495243], [47.380161, 8.513852], [47.399266, 8.505242], [47.368504, 8.499172], [47.379279, 8.525488], [47.377043, 8.544035], [47.378093, 8.528166], [47.379277, 8.528508], [47.378435, 8.530106], [47.412553, 8.525385], [47.420941, 8.549492], [47.402129, 8.497139], [47.41391, 8.5091], [47.371986, 8.556403], [47.360636, 8.557079], [47.409709, 8.576011], [47.362118, 8.510854], [47.3692, 8.532644], [47.376477, 8.534542], [47.338396, 8.532092], [47.363571, 8.503482], [47.409522, 8.540456], [47.382132, 8.548048], [47.363531, 8.547965], [47.361919, 8.526313], [47.406512, 8.552371], [47.398659, 8.532574], [47.37675, 8.514075], [47.382058, 8.529293], [47.331366, 8.537333], [47.410632, 8.5477], [47.398206, 8.536751], [47.378468, 8.541734], [47.384988, 8.495686], [47.370965, 8.554939], [47.377333, 8.540068], [47.40175, 8.499238], [47.357704, 8.535427], [47.367879, 8.56062], [47.358855, 8.557121], [47.380016, 8.520696], [47.367572, 8.534504], [47.356634, 8.554175], [47.368284, 8.529554], [47.373392, 8.531684], [47.384839, 8.495325], [47.374148, 8.521067], [47.383458, 8.549453], [47.396153, 8.485627], [47.365479, 8.538976], [47.359415, 8.557768], [47.36903, 8.540982], [47.375633, 8.487833], [47.377275, 8.512721], [47.383271, 8.515147], [47.402369, 8.499316], [47.390364, 8.512628], [47.416117, 8.565506], [47.377513, 8.52765], [47.374886, 8.534363], [47.37959, 8.516291], [47.388426, 8.514072], [47.3801, 8.520406], [47.411443, 8.526701], [47.391882, 8.483437], [47.376552, 8.486712], [47.383643, 8.483355], [47.380129, 8.513507], [47.363226, 8.514504], [47.369456, 8.5407], [47.401013, 8.537683], [47.388495, 8.536339], [47.370127, 8.521144], [47.382517, 8.543539], [47.372212, 8.520299], [47.393305, 8.529947], [47.377769, 8.522425], [47.39101, 8.522403], [47.373771, 8.537148], [47.412516, 8.523476], [47.39978, 8.544335], [47.377281, 8.538836], [47.358774, 8.557119], [47.387395, 8.519468], [47.41428, 8.518596], [47.416903, 8.555955], [47.418726, 8.507726], [47.421054, 8.502021], [47.379229, 8.538399], [47.390615, 8.524329], [47.369174, 8.532459], [47.370655, 8.56285], [47.378016, 8.492872], [47.349983, 8.533878], [47.398112, 8.536192], [47.379528, 8.537213], [47.368825, 8.51704], [47.407401, 8.530806], [47.355006, 8.534458], [47.363889, 8.548992], [47.373049, 8.52025], [47.379365, 8.521146], [47.410747, 8.556276], [47.383252, 8.533343], [47.419033, 8.507613], [47.388585, 8.489876], [47.390913, 8.523182], [47.383349, 8.484091], [47.410425, 8.545801], [47.361655, 8.560542], [47.410888, 8.545294], [47.33716, 8.539133], [47.367603, 8.55659], [47.398152, 8.536723], [47.397846, 8.533961], [47.35819, 8.556061], [47.390272, 8.481392], [47.391894, 8.512513], [47.368716, 8.524849], [47.372986, 8.546838], [47.413474, 8.532626], [47.389759, 8.533], [47.380501, 8.536095], [47.406047, 8.550215], [47.360932, 8.535612], [47.428041, 8.536915], [47.360767, 8.585942], [47.397761, 8.529614], [47.351403, 8.525489], [47.376304, 8.537557], [47.361348, 8.562469], [47.381885, 8.509331], [47.38508, 8.50819], [47.378261, 8.54173], [47.368348, 8.536096], [47.364427, 8.561302], [47.368699, 8.524716], [47.359139, 8.594922], [47.360212, 8.550676], [47.377199, 8.539907], [47.377199, 8.539893], [47.414335, 8.538514], [47.402472, 8.535501], [47.35565, 8.532049], [47.382796, 8.529281], [47.345147, 8.53452], [47.413418, 8.539436], [47.36249, 8.53444], [47.383849, 8.511993], [47.397539, 8.532127], [47.368905, 8.538054], [47.367373, 8.494026], [47.368402, 8.490709], [47.382187, 8.464176], [47.364449, 8.529899], [47.378831, 8.527214], [47.406007, 8.566366], [47.384444, 8.531911], [47.364423, 8.546792], [47.405815, 8.584951], [47.421779, 8.510253], [47.35514, 8.526042], [47.40278, 8.501577], [47.399158, 8.533074], [47.353462, 8.557617], [47.415061, 8.514954], [47.399771, 8.495303], [47.358353, 8.581759], [47.364814, 8.519858], [47.37426, 8.522579], [47.408142, 8.546535], [47.383877, 8.511861], [47.416735, 8.572225], [47.401625, 8.501077], [47.374431, 8.540591], [47.414448, 8.557719], [47.392489, 8.50263], [47.395775, 8.545444], [47.397988, 8.534136], [47.37262, 8.534304], [47.370684, 8.524969], [47.373924, 8.502564], [47.389733, 8.535715], [47.422475, 8.55077], [47.362167, 8.547526], [47.380607, 8.492871], [47.363169, 8.560243], [47.414386, 8.537946], [47.38332, 8.515585], [47.40529, 8.548437], [47.393115, 8.530089], [47.415565, 8.563043], [47.376618, 8.511808], [47.35637, 8.535757], [47.376934, 8.543185], [47.381632, 8.548593], [47.369312, 8.525497], [47.376002, 8.528679], [47.353555, 8.554482], [47.332493, 8.528544], [47.378306, 8.530408], [47.419709, 8.504552], [47.372847, 8.546345], [47.376952, 8.543239], [47.376951, 8.543265], [47.403242, 8.58687], [47.396657, 8.5293], [47.359919, 8.52193], [47.363364, 8.535252], [47.381665, 8.49219], [47.369949, 8.51121], [47.375631, 8.52887], [47.396174, 8.527158], [47.370266, 8.492401], [47.419898, 8.55497], [47.363954, 8.520344], [47.377083, 8.540765], [47.369257, 8.525628], [47.347247, 8.566791], [47.365757, 8.537115], [47.367915, 8.533426], [47.402978, 8.4849], [47.375758, 8.535441], [47.415172, 8.544164], [47.370188, 8.548805], [47.405551, 8.492728], [47.368779, 8.501627], [47.415722, 8.563603], [47.383214, 8.540177], [47.386704, 8.534593], [47.374151, 8.52839], [47.364776, 8.549434], [47.40931, 8.546719], [47.416241, 8.552734], [47.370461, 8.521892], [47.386695, 8.534593], [47.401133, 8.487964], [47.356085, 8.556136], [47.377116, 8.53923], [47.380006, 8.547447], [47.371136, 8.470862], [47.387275, 8.486552], [47.403642, 8.485973], [47.383325, 8.486686], [47.377594, 8.529639], [47.39476, 8.525433], [47.384491, 8.526998], [47.360471, 8.535854], [47.36828, 8.538584], [47.365974, 8.519815], [47.399924, 8.587633], [47.38793, 8.498592], [47.385304, 8.494593], [47.376842, 8.520632], [47.374972, 8.536722], [47.406535, 8.548132], [47.376474, 8.534873], [47.378118, 8.526471], [47.395152, 8.525838], [47.36703, 8.536598], [47.376776, 8.53807], [47.400701, 8.548646], [47.36186, 8.515337], [47.37434, 8.496481], [47.387966, 8.536142], [47.375616, 8.517071], [47.387357, 8.486514], [47.37803, 8.541447], [47.362444, 8.504771], [47.35622, 8.535423], [47.390106, 8.525789], [47.378663, 8.528773], [47.370462, 8.549261], [47.374465, 8.53891], [47.396168, 8.526853], [47.386806, 8.535152], [47.380144, 8.548059], [47.414064, 8.54149], [47.360869, 8.535611], [47.416589, 8.541781], [47.413885, 8.544203], [47.357888, 8.554797], [47.345049, 8.53342], [47.397831, 8.528874], [47.399731, 8.495673], [47.362933, 8.525658], [47.359294, 8.522341], [47.378524, 8.565744], [47.368757, 8.532847], [47.374417, 8.54112], [47.337477, 8.517014], [47.375314, 8.485364], [47.368326, 8.59998], [47.357455, 8.521827], [47.372582, 8.534501], [47.369349, 8.527325], [47.374464, 8.529588], [47.356034, 8.489724], [47.378669, 8.51949], [47.365158, 8.547098], [47.393385, 8.531989], [47.377143, 8.526915], [47.399856, 8.547661], [47.407075, 8.533899], [47.373915, 8.544765], [47.374104, 8.517146], [47.372965, 8.494335], [47.375909, 8.523182], [47.404225, 8.572886], [47.39703, 8.530778], [47.380622, 8.525132], [47.39254, 8.478311], [47.371011, 8.538004], [47.369452, 8.525897], [47.378441, 8.54172], [47.359241, 8.507751], [47.394727, 8.526029], [47.364694, 8.556992], [47.393838, 8.524964], [47.402186, 8.496769], [47.389227, 8.52744], [47.375109, 8.540261], [47.378642, 8.519542], [47.371434, 8.550169], [47.366307, 8.540781], [47.360305, 8.550426], [47.367601, 8.539973], [47.374193, 8.54297], [47.393564, 8.51293], [47.382483, 8.507939], [47.357521, 8.552698], [47.413212, 8.533615], [47.352608, 8.534131], [47.389999, 8.548384], [47.379551, 8.526209], [47.431319, 8.516436], [47.354562, 8.526242], [47.359217, 8.581646], [47.383552, 8.50518], [47.385253, 8.484354], [47.405448, 8.572952], [47.391502, 8.471667], [47.35709, 8.535758], [47.370645, 8.516732], [47.391098, 8.522617], [47.399524, 8.515197], [47.373118, 8.529269], [47.368307, 8.524338], [47.373082, 8.533055], [47.387586, 8.529764], [47.381129, 8.53816], [47.34045, 8.537547], [47.41905, 8.50764], [47.364928, 8.531537], [47.419438, 8.508483], [47.377059, 8.53948], [47.38138, 8.542046], [47.366953, 8.52292], [47.369645, 8.539751], [47.371863, 8.525933], [47.38493, 8.495194], [47.364581, 8.554699], [47.398234, 8.536619], [47.388997, 8.49501], [47.380576, 8.541473], [47.369484, 8.523501], [47.366885, 8.545201], [47.393308, 8.5249], [47.375427, 8.524708], [47.410895, 8.563236], [47.396522, 8.471566], [47.410909, 8.545069], [47.384036, 8.534167], [47.378564, 8.542093], [47.383917, 8.499717], [47.369417, 8.526757], [47.419537, 8.556076], [47.369221, 8.525588], [47.411521, 8.540258], [47.409524, 8.576471], [47.366619, 8.535345], [47.365354, 8.565929], [47.362261, 8.559311], [47.387871, 8.539518], [47.416633, 8.546553], [47.37444, 8.540657], [47.377174, 8.547216], [47.390149, 8.512544], [47.361684, 8.561218], [47.334892, 8.528897], [47.392744, 8.52359], [47.375077, 8.524635], [47.384979, 8.523856], [47.398023, 8.539913], [47.369735, 8.525532], [47.356013, 8.556095], [47.407993, 8.583077], [47.36366, 8.575399], [47.366707, 8.510668], [47.361892, 8.526405], [47.374283, 8.544852], [47.362679, 8.515313], [47.402402, 8.550417], [47.388014, 8.520567], [47.408851, 8.557879], [47.349712, 8.534058], [47.420006, 8.500582], [47.365766, 8.537102], [47.370585, 8.535533], [47.410582, 8.572253], [47.416596, 8.535381], [47.383622, 8.548317], [47.379142, 8.525671], [47.400767, 8.54833], [47.367816, 8.490883], [47.365274, 8.521575], [47.391189, 8.489451], [47.377189, 8.539999], [47.380254, 8.494055], [47.374921, 8.544878], [47.404505, 8.544009], [47.361595, 8.551857], [47.425681, 8.50943], [47.389408, 8.491429], [47.375083, 8.553264], [47.378912, 8.523322], [47.372954, 8.547406], [47.373241, 8.535243], [47.359307, 8.581687], [47.386389, 8.518296], [47.369783, 8.533782], [47.372987, 8.53635], [47.387014, 8.509156], [47.372973, 8.531252], [47.366546, 8.547736], [47.363277, 8.548105], [47.398439, 8.530185], [47.402825, 8.499709], [47.370277, 8.518539], [47.375914, 8.488593], [47.358738, 8.557092], [47.357745, 8.52444], [47.369124, 8.497331], [47.369858, 8.538113], [47.369453, 8.52587], [47.37812, 8.497231], [47.369539, 8.515703], [47.389012, 8.486494], [47.392045, 8.51082], [47.391589, 8.519262], [47.3779, 8.541894], [47.387521, 8.500014], [47.339902, 8.531726], [47.39583, 8.532105], [47.411, 8.507584], [47.375344, 8.524945], [47.387613, 8.499791], [47.389426, 8.551908], [47.375, 8.539384], [47.379151, 8.500523], [47.368913, 8.540119], [47.351077, 8.534285], [47.3854, 8.536421], [47.374499, 8.539136], [47.392869, 8.522758], [47.405098, 8.559947], [47.372964, 8.533172], [47.403531, 8.573945], [47.397696, 8.532686], [47.411084, 8.570647], [47.37103, 8.530246], [47.377405, 8.500687], [47.356481, 8.551419], [47.364224, 8.554414], [47.376736, 8.536573], [47.364197, 8.554413], [47.378597, 8.504974], [47.392541, 8.523255], [47.378647, 8.539963], [47.369732, 8.541897], [47.378403, 8.520094], [47.388234, 8.520148], [47.370106, 8.548883], [47.377345, 8.510048], [47.388021, 8.519812], [47.345714, 8.534439], [47.391604, 8.523395], [47.403806, 8.496655], [47.369854, 8.509897], [47.390549, 8.545415], [47.367917, 8.560396], [47.402082, 8.499257], [47.372062, 8.521951], [47.41406, 8.541941], [47.373753, 8.544761], [47.427725, 8.538022], [47.388005, 8.485414], [47.369305, 8.528145], [47.358977, 8.585029], [47.408537, 8.54665], [47.380902, 8.54679], [47.366892, 8.564068], [47.390195, 8.522055], [47.428311, 8.542554], [47.369726, 8.536905], [47.392772, 8.523485], [47.36054, 8.581621], [47.361421, 8.551217], [47.382915, 8.514702], [47.406009, 8.53344], [47.373238, 8.527934], [47.425185, 8.54583], [47.389374, 8.521416], [47.395349, 8.518226], [47.375047, 8.53638], [47.375266, 8.533166], [47.356226, 8.523364], [47.356572, 8.523953], [47.393384, 8.50025], [47.400176, 8.494212], [47.385068, 8.508481], [47.378957, 8.54234], [47.388178, 8.525127], [47.367868, 8.545937], [47.3729, 8.535104], [47.338044, 8.537047], [47.391855, 8.517731], [47.342639, 8.536189], [47.366519, 8.536442], [47.421429, 8.549251], [47.401858, 8.588575], [47.419161, 8.506396], [47.383061, 8.54024], [47.365098, 8.55328], [47.354853, 8.556971], [47.429455, 8.545229], [47.383726, 8.533684], [47.37859, 8.542147], [47.384564, 8.526881], [47.336382, 8.520578], [47.393776, 8.502563], [47.373221, 8.513434], [47.410062, 8.569327], [47.363746, 8.574792], [47.391264, 8.523203], [47.412896, 8.540419], [47.426176, 8.553207], [47.368778, 8.538184], [47.397926, 8.474547], [47.413244, 8.538797], [47.410825, 8.55005], [47.376904, 8.540682], [47.365376, 8.537412], [47.402186, 8.496795], [47.402644, 8.491902], [47.389329, 8.516607], [47.389671, 8.511739], [47.360966, 8.568511], [47.39072, 8.522662], [47.413084, 8.535746], [47.374958, 8.534444], [47.384965, 8.533935], [47.385084, 8.530878], [47.391402, 8.519987], [47.375685, 8.526925], [47.375841, 8.538978], [47.371725, 8.519548], [47.36948, 8.520098], [47.409446, 8.566982], [47.388016, 8.485176], [47.383271, 8.53043], [47.37252, 8.521034], [47.430549, 8.485734], [47.387831, 8.524709], [47.389845, 8.486921], [47.367109, 8.528325], [47.365456, 8.518534], [47.354187, 8.55791], [47.376909, 8.535398], [47.369418, 8.533337], [47.374286, 8.517878], [47.390595, 8.479531], [47.363342, 8.567436], [47.379721, 8.520584], [47.404891, 8.55716], [47.370895, 8.548237], [47.386483, 8.496483], [47.335, 8.51932], [47.402718, 8.535201], [47.368925, 8.489608], [47.368552, 8.55988], [47.364691, 8.532856], [47.41418, 8.529248], [47.376848, 8.512236], [47.404763, 8.498224], [47.409131, 8.545602], [47.380423, 8.515645], [47.387043, 8.486375], [47.373115, 8.53144], [47.411935, 8.52797], [47.386396, 8.518508], [47.396619, 8.540891], [47.393741, 8.502469], [47.363047, 8.517333], [47.359256, 8.520698], [47.402056, 8.495229], [47.383857, 8.57779], [47.37412, 8.541167], [47.366617, 8.54129], [47.388232, 8.531883], [47.382257, 8.533071], [47.386819, 8.534768], [47.359044, 8.551446], [47.383209, 8.530323], [47.428016, 8.536716], [47.373682, 8.537066], [47.356608, 8.523861], [47.416766, 8.545827], [47.363634, 8.533351], [47.420029, 8.503962], [47.373866, 8.540447], [47.405407, 8.548479], [47.377368, 8.541976], [47.374996, 8.538908], [47.365475, 8.546867], [47.413738, 8.564171], [47.422489, 8.499518], [47.368016, 8.540789], [47.375101, 8.536434], [47.355313, 8.559615], [47.365272, 8.538906], [47.372249, 8.505748], [47.38913, 8.54614], [47.411441, 8.527801], [47.388287, 8.491009], [47.381417, 8.517109], [47.37989, 8.494459], [47.387803, 8.515251], [47.413452, 8.530174], [47.395295, 8.484021], [47.366709, 8.560675], [47.372845, 8.547483], [47.392449, 8.523465], [47.421638, 8.538626], [47.389664, 8.511541], [47.371238, 8.547132], [47.392532, 8.523255], [47.409578, 8.496955], [47.384585, 8.54831], [47.376325, 8.48394], [47.391303, 8.538118], [47.385005, 8.484998], [47.389126, 8.527623], [47.352263, 8.506605], [47.366585, 8.540866], [47.349555, 8.565331], [47.385716, 8.528666], [47.398033, 8.535966], [47.379856, 8.524388], [47.366238, 8.545175], [47.328479, 8.529706], [47.399535, 8.497431], [47.391942, 8.518011], [47.366029, 8.520664], [47.391118, 8.487383], [47.3731, 8.536763], [47.410368, 8.572991], [47.41189, 8.525094], [47.377265, 8.535843], [47.380512, 8.548067], [47.36314, 8.535221], [47.369319, 8.525696], [47.35107, 8.576878], [47.372901, 8.536018], [47.370611, 8.548774], [47.368532, 8.499159], [47.39866, 8.539184], [47.383175, 8.506086], [47.377975, 8.536877], [47.377405, 8.543764], [47.405849, 8.590676], [47.369091, 8.525082], [47.361587, 8.55179], [47.380031, 8.486953], [47.387313, 8.488328], [47.378039, 8.54142], [47.376048, 8.559587], [47.379507, 8.525096], [47.386452, 8.527952], [47.369881, 8.52907], [47.387798, 8.529212], [47.375409, 8.517967], [47.38975, 8.526324], [47.405116, 8.56734], [47.384858, 8.537575], [47.382185, 8.488452], [47.421265, 8.549446], [47.383026, 8.527763], [47.364, 8.568178], [47.382188, 8.504795], [47.372655, 8.53445], [47.366792, 8.535137], [47.3734, 8.519304], [47.364867, 8.547423], [47.360008, 8.522938], [47.358064, 8.520158], [47.40953, 8.542536], [47.378656, 8.539923], [47.408923, 8.57447], [47.381728, 8.516546], [47.362233, 8.559376], [47.362233, 8.55939], [47.385927, 8.517743], [47.390746, 8.523748], [47.402226, 8.508044], [47.368489, 8.530736], [47.370727, 8.50197], [47.36214, 8.531493], [47.378449, 8.566087], [47.386775, 8.534701], [47.364789, 8.536791], [47.366604, 8.540773], [47.362193, 8.532593], [47.359246, 8.551953], [47.364696, 8.566008], [47.387108, 8.534654], [47.377775, 8.543693], [47.36708, 8.55025], [47.379314, 8.537884], [47.364231, 8.53106], [47.364873, 8.531669], [47.363724, 8.566941], [47.41852, 8.542073], [47.41852, 8.542073], [47.362528, 8.535208], [47.369748, 8.509644], [47.381489, 8.503536], [47.370839, 8.508421], [47.378921, 8.500121], [47.378441, 8.540859], [47.373506, 8.519504], [47.424112, 8.499166], [47.410403, 8.532961], [47.384084, 8.485324], [47.385996, 8.53242], [47.371495, 8.521013], [47.3732, 8.547014], [47.392036, 8.51082], [47.358404, 8.517477], [47.374554, 8.538991], [47.335226, 8.53822], [47.389781, 8.486972], [47.385538, 8.53045], [47.335235, 8.538167], [47.38007, 8.520697], [47.395551, 8.517806], [47.360023, 8.516584], [47.37453, 8.53964], [47.3817, 8.52914], [47.389445, 8.521444], [47.367328, 8.537412], [47.360423, 8.526653], [47.376911, 8.540854], [47.373789, 8.536208], [47.405489, 8.480736], [47.380729, 8.52524], [47.381724, 8.494575], [47.36493, 8.553925], [47.370313, 8.548861], [47.361897, 8.547626], [47.377749, 8.528384], [47.369702, 8.467246], [47.357038, 8.535545], [47.351985, 8.525726], [47.351153, 8.560057], [47.391449, 8.519776], [47.392531, 8.523281], [47.391132, 8.489781], [47.378367, 8.534395], [47.373023, 8.534484], [47.396883, 8.481509], [47.385382, 8.517375], [47.350866, 8.559971], [47.365391, 8.521617], [47.391023, 8.523026], [47.383424, 8.53046], [47.377904, 8.4963], [47.374767, 8.549655], [47.368369, 8.538625], [47.374661, 8.545707], [47.369445, 8.526691], [47.354133, 8.557022], [47.372289, 8.518831], [47.402262, 8.499287], [47.417257, 8.509976], [47.374501, 8.538897], [47.377394, 8.498938], [47.387165, 8.519027], [47.378498, 8.541417], [47.360305, 8.567067], [47.375763, 8.543373], [47.405701, 8.533725], [47.38355, 8.488744], [47.409587, 8.496995], [47.381051, 8.503262], [47.384107, 8.51613], [47.393619, 8.538564], [47.369964, 8.539294], [47.359657, 8.547659], [47.369471, 8.520032], [47.373361, 8.524388], [47.40513, 8.560398], [47.366381, 8.540597], [47.374743, 8.544663], [47.371955, 8.519936], [47.405624, 8.548391], [47.368953, 8.540663], [47.389221, 8.488246], [47.364992, 8.553079], [47.380876, 8.561675], [47.410079, 8.546191], [47.381378, 8.537477], [47.37691, 8.528711], [47.408973, 8.539636], [47.420299, 8.508778], [47.391637, 8.542682], [47.371657, 8.544797], [47.388999, 8.488931], [47.418533, 8.506225], [47.364641, 8.566126], [47.389437, 8.511708], [47.359653, 8.522427], [47.400176, 8.494225], [47.369206, 8.525283], [47.405772, 8.591177], [47.381462, 8.510329], [47.372089, 8.521925], [47.387018, 8.485143], [47.384679, 8.544167], [47.422029, 8.550403], [47.373844, 8.538063], [47.358282, 8.515105], [47.422256, 8.53897], [47.392543, 8.493875], [47.383687, 8.498322], [47.380067, 8.556003], [47.393298, 8.530649], [47.391514, 8.519539], [47.384188, 8.548421], [47.375601, 8.545303], [47.374457, 8.541651], [47.364821, 8.538075], [47.367919, 8.555603], [47.362841, 8.579023], [47.385734, 8.526838], [47.386655, 8.4905], [47.366115, 8.540168], [47.422226, 8.550566], [47.377786, 8.518691], [47.384691, 8.54283], [47.374504, 8.546194], [47.350159, 8.534332], [47.377864, 8.498643], [47.382735, 8.541451], [47.407508, 8.548854], [47.37454, 8.53956], [47.37866, 8.519556], [47.377539, 8.542006], [47.357496, 8.535634], [47.340479, 8.519193], [47.34566, 8.534451], [47.335738, 8.540136], [47.405083, 8.572626], [47.378831, 8.508952], [47.388175, 8.534981], [47.367056, 8.493291], [47.428573, 8.54529], [47.374041, 8.502619], [47.360688, 8.583941], [47.373906, 8.517169], [47.373153, 8.536883], [47.386792, 8.534727], [47.374458, 8.538777], [47.379566, 8.510106], [47.380922, 8.525826], [47.379352, 8.537687], [47.368954, 8.523358], [47.389447, 8.511629], [47.399892, 8.544827], [47.390563, 8.508684], [47.375767, 8.535441], [47.403642, 8.486993], [47.371153, 8.525839], [47.389687, 8.511965], [47.374588, 8.518308], [47.378984, 8.542367], [47.329625, 8.53129], [47.384961, 8.500665], [47.371084, 8.5303], [47.361093, 8.535695], [47.408107, 8.577872], [47.370055, 8.54483], [47.384189, 8.548368], [47.357619, 8.521592], [47.379663, 8.527721], [47.393575, 8.492134], [47.384471, 8.532892], [47.373655, 8.533292], [47.36765, 8.538637], [47.393078, 8.531187], [47.414029, 8.542351], [47.410907, 8.546142], [47.358972, 8.516417], [47.403253, 8.576655], [47.361316, 8.525466], [47.373777, 8.536578], [47.37418, 8.544346], [47.404837, 8.594668], [47.373292, 8.535496], [47.387233, 8.501015], [47.386176, 8.535231], [47.383629, 8.506519], [47.367117, 8.539751], [47.378092, 8.497363], [47.372013, 8.524254], [47.366618, 8.541184], [47.376759, 8.482691], [47.383353, 8.484674], [47.419652, 8.547848], [47.36767, 8.495064], [47.383298, 8.530418], [47.362508, 8.510517], [47.366208, 8.546445], [47.381069, 8.504176], [47.387841, 8.520828], [47.383418, 8.539545], [47.363422, 8.534869], [47.38112, 8.538173], [47.39182, 8.517637], [47.371998, 8.483961], [47.391961, 8.517932], [47.373283, 8.513581], [47.378519, 8.526943], [47.392035, 8.517708], [47.403208, 8.554501], [47.391917, 8.517825], [47.386166, 8.535311], [47.41263, 8.480849], [47.38111, 8.537299], [47.351598, 8.602356], [47.355318, 8.555472], [47.397459, 8.489428], [47.37709, 8.541957], [47.422458, 8.550756], [47.400602, 8.492882], [47.358483, 8.549991], [47.37751, 8.509746], [47.417928, 8.503522], [47.367481, 8.528915], [47.374477, 8.540473], [47.391051, 8.522841], [47.37083, 8.539987], [47.359259, 8.551622], [47.357091, 8.552517], [47.395472, 8.531925], [47.414124, 8.518937], [47.372915, 8.538269], [47.401803, 8.585924], [47.326574, 8.518964], [47.378403, 8.520094], [47.397877, 8.532584], [47.376319, 8.541623], [47.372695, 8.534914], [47.405613, 8.53534], [47.405425, 8.480815], [47.374274, 8.52487], [47.355446, 8.574602], [47.422466, 8.55081], [47.378081, 8.511201], [47.404566, 8.484309], [47.367989, 8.572407], [47.371039, 8.530259], [47.369256, 8.527614], [47.356581, 8.523953], [47.382629, 8.530735], [47.393198, 8.521242], [47.387465, 8.486516], [47.384792, 8.503337], [47.381905, 8.51304], [47.389579, 8.511936], [47.381976, 8.516061], [47.383184, 8.506046], [47.391714, 8.518351], [47.387252, 8.488154], [47.370485, 8.549752], [47.384894, 8.531934], [47.370466, 8.549857], [47.392045, 8.517615], [47.365723, 8.535936], [47.370233, 8.525132], [47.376733, 8.524602], [47.386171, 8.498212], [47.390062, 8.53898], [47.37383, 8.519524], [47.385712, 8.517606], [47.389757, 8.512085], [47.403901, 8.568308], [47.423908, 8.524013], [47.352391, 8.534219], [47.373578, 8.519532], [47.344615, 8.529851], [47.365291, 8.53884], [47.377834, 8.521274], [47.363014, 8.563272], [47.370886, 8.538849], [47.366426, 8.546238], [47.398239, 8.537056], [47.366928, 8.558548], [47.408241, 8.552195], [47.365694, 8.54846], [47.389962, 8.512355], [47.411517, 8.526411], [47.385004, 8.508692], [47.377134, 8.540157], [47.368663, 8.521869], [47.3746, 8.502484], [47.370709, 8.516588], [47.365966, 8.536855], [47.368586, 8.53095], [47.366909, 8.558561], [47.389475, 8.51151], [47.376694, 8.499745], [47.386733, 8.547587], [47.405517, 8.592391], [47.386171, 8.498212], [47.381644, 8.533204], [47.364452, 8.548514], [47.412072, 8.524832], [47.373602, 8.519824], [47.331587, 8.535909], [47.377876, 8.541576], [47.372855, 8.543604], [47.368706, 8.528768], [47.390988, 8.522919], [47.338014, 8.52691], [47.376972, 8.5421], [47.375744, 8.54912], [47.372766, 8.531261], [47.373029, 8.532908], [47.372765, 8.529434], [47.358324, 8.526014], [47.378581, 8.542134], [47.374418, 8.502719], [47.380444, 8.54396], [47.366747, 8.534223], [47.403252, 8.497227], [47.361891, 8.560269], [47.408711, 8.546256], [47.393265, 8.524621], [47.360311, 8.525194], [47.384217, 8.511113], [47.362537, 8.551201], [47.407838, 8.547298], [47.387663, 8.488401], [47.382315, 8.505724], [47.34052, 8.527252], [47.371058, 8.499262], [47.361342, 8.534098], [47.372, 8.542778], [47.329889, 8.529999], [47.357132, 8.532225], [47.381233, 8.555405], [47.383236, 8.539833], [47.383437, 8.539493], [47.373145, 8.536791], [47.36272, 8.54714], [47.41439, 8.554444], [47.36844, 8.523586], [47.385743, 8.54856], [47.367269, 8.53708], [47.373129, 8.528077], [47.373462, 8.519424], [47.391489, 8.523128], [47.373454, 8.528918], [47.357011, 8.522135], [47.392912, 8.539132], [47.415638, 8.543378], [47.373113, 8.547648], [47.393327, 8.524808], [47.361082, 8.50616], [47.369239, 8.527561], [47.351648, 8.576599], [47.409201, 8.544901], [47.370522, 8.54962], [47.380226, 8.513681], [47.404869, 8.595066], [47.373823, 8.536473], [47.363163, 8.533659], [47.377359, 8.499825], [47.392013, 8.527722], [47.376312, 8.516648], [47.365124, 8.55344], [47.381081, 8.492085], [47.37377, 8.53638], [47.378647, 8.565164], [47.374628, 8.53596], [47.355023, 8.526026], [47.375779, 8.530369], [47.350054, 8.562085], [47.375908, 8.522414], [47.368966, 8.50175], [47.366142, 8.521156], [47.417146, 8.510292], [47.359864, 8.594342], [47.378344, 8.557437], [47.407121, 8.586688], [47.386657, 8.483295], [47.365892, 8.561426], [47.387977, 8.488513], [47.371579, 8.515904], [47.369951, 8.531203], [47.377004, 8.539598], [47.363959, 8.546438], [47.376381, 8.537069], [47.395518, 8.481243], [47.353144, 8.57728], [47.380898, 8.492426], [47.375927, 8.537484], [47.355095, 8.557042], [47.378674, 8.516087], [47.383007, 8.499871], [47.369099, 8.547935], [47.385478, 8.532899], [47.355223, 8.554967], [47.362711, 8.547154], [47.392213, 8.52456], [47.369083, 8.527902], [47.385654, 8.477858], [47.366576, 8.540826], [47.415158, 8.570654], [47.370054, 8.539269], [47.379654, 8.537163], [47.376838, 8.514249], [47.371512, 8.542954], [47.378403, 8.520094], [47.378872, 8.542762], [47.37745, 8.539064], [47.412227, 8.546422], [47.36728, 8.561164], [47.386604, 8.536525], [47.421915, 8.510109], [47.346355, 8.564098], [47.378587, 8.528215], [47.392323, 8.503116], [47.394365, 8.493315], [47.380547, 8.525514], [47.382334, 8.514254], [47.390434, 8.50896], [47.344975, 8.53363], [47.371071, 8.538337], [47.419685, 8.50031], [47.372814, 8.493167], [47.362373, 8.550456], [47.361504, 8.534088], [47.412284, 8.537637], [47.370533, 8.548415], [47.374321, 8.532366], [47.374179, 8.475569], [47.363861, 8.534084], [47.370917, 8.535553], [47.352694, 8.525013], [47.366954, 8.558562], [47.404074, 8.563556], [47.368437, 8.537183], [47.397055, 8.493223], [47.375417, 8.540942], [47.386778, 8.547508], [47.339978, 8.530312], [47.403201, 8.576468], [47.414777, 8.560906], [47.35673, 8.535791], [47.414791, 8.520727], [47.386218, 8.517431], [47.398042, 8.536045], [47.367507, 8.541361], [47.385382, 8.536473], [47.423072, 8.542048], [47.385208, 8.536774], [47.374304, 8.514979], [47.373029, 8.532935], [47.375719, 8.529057], [47.4142, 8.562868], [47.361262, 8.506124], [47.378007, 8.536348], [47.417978, 8.554546], [47.428839, 8.548464], [47.374438, 8.539836], [47.419725, 8.504764], [47.391677, 8.51937], [47.371539, 8.51916], [47.392153, 8.545183], [47.368704, 8.5289], [47.35816, 8.554591], [47.365433, 8.539015], [47.419303, 8.510468], [47.403563, 8.588943], [47.383279, 8.53055], [47.367743, 8.534481], [47.344154, 8.531998], [47.389908, 8.531546], [47.37011, 8.522865], [47.369724, 8.549378], [47.372, 8.521844], [47.386123, 8.548316], [47.353178, 8.511667], [47.376867, 8.536986], [47.375095, 8.544591], [47.404024, 8.485583], [47.359678, 8.550148], [47.397922, 8.532506], [47.391392, 8.522967], [47.377663, 8.50971], [47.405794, 8.590688], [47.373186, 8.535375], [47.366212, 8.545068], [47.398121, 8.474803], [47.420808, 8.502334], [47.387632, 8.499712], [47.372089, 8.543813], [47.380148, 8.547582], [47.418056, 8.546437], [47.409887, 8.549354], [47.384478, 8.534971], [47.3635, 8.554822], [47.39822, 8.534313], [47.352615, 8.573403], [47.390947, 8.521501], [47.409928, 8.54318], [47.398212, 8.536088], [47.382503, 8.540241], [47.378903, 8.523348], [47.380279, 8.557359], [47.36925, 8.556465], [47.379489, 8.50776], [47.403471, 8.583708], [47.366745, 8.56159], [47.3764, 8.527482], [47.379296, 8.494593], [47.383133, 8.540228], [47.412322, 8.566354], [47.404762, 8.57413], [47.405149, 8.480557], [47.386989, 8.534851], [47.369271, 8.548693], [47.383903, 8.533993], [47.404511, 8.489409], [47.408527, 8.550505], [47.366857, 8.564875], [47.402349, 8.493685], [47.380281, 8.520251], [47.378155, 8.510038], [47.414603, 8.483459], [47.371781, 8.525958], [47.39961, 8.553578], [47.383904, 8.542389], [47.369173, 8.527838], [47.376594, 8.526903], [47.360992, 8.54819], [47.398982, 8.509688], [47.364339, 8.531102], [47.379827, 8.494471], [47.378309, 8.509855], [47.399115, 8.495171], [47.393354, 8.524795], [47.418433, 8.508303], [47.381712, 8.532663], [47.375254, 8.513422], [47.377541, 8.51025], [47.39114, 8.487847], [47.388126, 8.528728], [47.375991, 8.526891], [47.40914, 8.547563], [47.387396, 8.535548], [47.382468, 8.529685], [47.369828, 8.53659], [47.418921, 8.507041], [47.380204, 8.54181], [47.369232, 8.499292], [47.386898, 8.534995], [47.392137, 8.524042], [47.380652, 8.525821], [47.378984, 8.544221], [47.387538, 8.527193], [47.378035, 8.526708], [47.387824, 8.48659], [47.411141, 8.547075], [47.377112, 8.544315], [47.413738, 8.546453], [47.413071, 8.532393], [47.402561, 8.582099], [47.38782, 8.519252], [47.416533, 8.547598], [47.366243, 8.548352], [47.375276, 8.484582], [47.405233, 8.481195], [47.371334, 8.513184], [47.364303, 8.546167], [47.375172, 8.518307], [47.374396, 8.542391], [47.361458, 8.561372], [47.388792, 8.479946], [47.389043, 8.536416], [47.371863, 8.51722], [47.413482, 8.518315], [47.376947, 8.521905], [47.382307, 8.482932], [47.375618, 8.488548], [47.364786, 8.553975], [47.376015, 8.548993], [47.368268, 8.564998], [47.371829, 8.510281], [47.369956, 8.501796], [47.396884, 8.53002], [47.361088, 8.589788], [47.386211, 8.535351], [47.354636, 8.601734], [47.39113, 8.523081], [47.383327, 8.533067], [47.36329, 8.535515], [47.360761, 8.510747], [47.387771, 8.48843], [47.364826, 8.565561], [47.362242, 8.559337], [47.35889, 8.525152], [47.371823, 8.548124], [47.353857, 8.523726], [47.383727, 8.530757], [47.3642, 8.536302], [47.380357, 8.493634], [47.370188, 8.548818], [47.37381, 8.537784], [47.392669, 8.502713], [47.405705, 8.591534], [47.364384, 8.546248], [47.377608, 8.519495], [47.405821, 8.573477], [47.385431, 8.5207], [47.407645, 8.485959], [47.375767, 8.535441], [47.368428, 8.547511], [47.377232, 8.523195], [47.378089, 8.516141], [47.375824, 8.530317], [47.408712, 8.546243], [47.399574, 8.535732], [47.392466, 8.49639], [47.415738, 8.512715], [47.367828, 8.539753], [47.392497, 8.524089], [47.365945, 8.532472], [47.373541, 8.534852], [47.393713, 8.551269], [47.357844, 8.520643], [47.354068, 8.526152], [47.38686, 8.490729], [47.40323, 8.587121], [47.360737, 8.507516], [47.376858, 8.535079], [47.405014, 8.53501], [47.404584, 8.499161], [47.366584, 8.519973], [47.3911, 8.522431], [47.370791, 8.53183], [47.414885, 8.551605], [47.365619, 8.513559], [47.365472, 8.521566], [47.429669, 8.549118], [47.401861, 8.581885], [47.367023, 8.548607], [47.412159, 8.484127], [47.431248, 8.543954], [47.355128, 8.507047], [47.383446, 8.572974], [47.367576, 8.509123], [47.425625, 8.494027], [47.408854, 8.546418], [47.362807, 8.504394], [47.403497, 8.55627], [47.375788, 8.53037], [47.382558, 8.529753], [47.359016, 8.525128], [47.372964, 8.520725], [47.364393, 8.546196], [47.361932, 8.532588], [47.385181, 8.536774], [47.40288, 8.48674], [47.387351, 8.527971], [47.373154, 8.53683], [47.362204, 8.513252], [47.414769, 8.519215], [47.357529, 8.521577], [47.39461, 8.542201], [47.38452, 8.480949], [47.382477, 8.529752], [47.400454, 8.508976], [47.378526, 8.509807], [47.4042, 8.534489], [47.373098, 8.517894], [47.390575, 8.474802], [47.363158, 8.527516], [47.422318, 8.547493], [47.361013, 8.535601], [47.381768, 8.515235], [47.399502, 8.497153], [47.377378, 8.550332], [47.388503, 8.491053], [47.371625, 8.525425], [47.393827, 8.472242], [47.365978, 8.545103], [47.394318, 8.474597], [47.425991, 8.493332], [47.368348, 8.541842], [47.382791, 8.495947], [47.404282, 8.484939], [47.367121, 8.530881], [47.360431, 8.550402], [47.361254, 8.562957], [47.423022, 8.550026], [47.373501, 8.542823], [47.40198, 8.499587], [47.374238, 8.542944], [47.362057, 8.566349], [47.392119, 8.500847], [47.375502, 8.563853], [47.364481, 8.531277], [47.386559, 8.528047], [47.396306, 8.504322], [47.368905, 8.540027], [47.421018, 8.502073], [47.367708, 8.495806], [47.39821, 8.494795], [47.366753, 8.542061], [47.364315, 8.529777], [47.380537, 8.542638], [47.378186, 8.510594], [47.394101, 8.541766], [47.37673, 8.524827], [47.427724, 8.537094], [47.370146, 8.521038], [47.376924, 8.554494], [47.368953, 8.54065], [47.399767, 8.51809], [47.408677, 8.543274], [47.383749, 8.588688], [47.373769, 8.536433], [47.368053, 8.541571], [47.385537, 8.53049], [47.381656, 8.492242], [47.391078, 8.536259], [47.378372, 8.509909], [47.397381, 8.49005], [47.38991, 8.549203], [47.369781, 8.525414], [47.378324, 8.530382], [47.387819, 8.519278], [47.364038, 8.547552], [47.363774, 8.57474], [47.370161, 8.548791], [47.373518, 8.503694], [47.397683, 8.474503], [47.367618, 8.537206], [47.39566, 8.545243], [47.419228, 8.507882], [47.391096, 8.522842], [47.375537, 8.548162], [47.39139, 8.538345], [47.378442, 8.510083], [47.407659, 8.554687], [47.374403, 8.516941], [47.363642, 8.575399], [47.363033, 8.548286], [47.374352, 8.578421], [47.372973, 8.520699], [47.368885, 8.547719], [47.408827, 8.54643], [47.374227, 8.544069], [47.359637, 8.516457], [47.410235, 8.546844], [47.41375, 8.546069], [47.402773, 8.554863], [47.402672, 8.581757], [47.420635, 8.502622], [47.374993, 8.528764], [47.409794, 8.549631], [47.37388, 8.540858], [47.385651, 8.508745], [47.377237, 8.538822], [47.37017, 8.548792], [47.383876, 8.529264], [47.375958, 8.53804], [47.39786, 8.532451], [47.387072, 8.486151], [47.364896, 8.553779], [47.386299, 8.522148], [47.381064, 8.491979], [47.336863, 8.533516], [47.369014, 8.538003], [47.408904, 8.579147], [47.427319, 8.539048], [47.366565, 8.541964], [47.364758, 8.55412], [47.374171, 8.544267], [47.388451, 8.539106], [47.374754, 8.531236], [47.359322, 8.513564], [47.377254, 8.510205], [47.363564, 8.554718], [47.362637, 8.558511], [47.34305, 8.527053], [47.364122, 8.53021], [47.35486, 8.574735], [47.404832, 8.565148], [47.356876, 8.527004], [47.385044, 8.516904], [47.376522, 8.557055], [47.39105, 8.536272], [47.417839, 8.559619], [47.38229, 8.528543], [47.379068, 8.556075], [47.398274, 8.532433], [47.386545, 8.503504], [47.391499, 8.485059], [47.359622, 8.557733], [47.386205, 8.548159], [47.381721, 8.492032], [47.372472, 8.535651], [47.395241, 8.508553], [47.397898, 8.534135], [47.381115, 8.548119], [47.411361, 8.525785], [47.405085, 8.535064], [47.408503, 8.543628], [47.379411, 8.529636], [47.371119, 8.531373], [47.383261, 8.513306], [47.337772, 8.535295], [47.358204, 8.554605], [47.343052, 8.534424], [47.366235, 8.534146], [47.363692, 8.526283], [47.37592, 8.521063], [47.416562, 8.545505], [47.373924, 8.517129], [47.384984, 8.531022], [47.326288, 8.518812], [47.349852, 8.576336], [47.369017, 8.529185], [47.391146, 8.489264], [47.405667, 8.549518], [47.366798, 8.51353], [47.386474, 8.496496], [47.400328, 8.505091], [47.390963, 8.522693], [47.38846, 8.53904], [47.389392, 8.54139], [47.412861, 8.517454], [47.380818, 8.533969], [47.372249, 8.535474], [47.377237, 8.498326], [47.400036, 8.519089], [47.374505, 8.546088], [47.386919, 8.530849], [47.376785, 8.538084], [47.369364, 8.529563], [47.371633, 8.538759], [47.370816, 8.519596], [47.360447, 8.569135], [47.381024, 8.561241], [47.358926, 8.516495], [47.367083, 8.56108], [47.396762, 8.540973], [47.385154, 8.531012], [47.388454, 8.492496], [47.352302, 8.52556], [47.392746, 8.523445], [47.352094, 8.558634], [47.364242, 8.566409], [47.368031, 8.556109], [47.410785, 8.567169], [47.427564, 8.546396], [47.375886, 8.544607], [47.366635, 8.51072], [47.375074, 8.540154], [47.368693, 8.532965], [47.386787, 8.502635], [47.386824, 8.502437], [47.35907, 8.585601], [47.405936, 8.566298], [47.35479, 8.526842], [47.366191, 8.553753], [47.372893, 8.529264], [47.40944, 8.540639], [47.387395, 8.519442], [47.406925, 8.550591], [47.401868, 8.504937], [47.37398, 8.520772], [47.325988, 8.513382], [47.428685, 8.488852], [47.375387, 8.486173], [47.373897, 8.483892], [47.383798, 8.530865], [47.37032, 8.491502], [47.429892, 8.538027], [47.386177, 8.497497], [47.38245, 8.540214], [47.376757, 8.541924], [47.36611, 8.561245], [47.385078, 8.508468], [47.400914, 8.535707], [47.398748, 8.58558], [47.372614, 8.514839], [47.367002, 8.54711], [47.378779, 8.523147], [47.381362, 8.534483], [47.375516, 8.541898], [47.351836, 8.505035], [47.370627, 8.524385], [47.378147, 8.509918], [47.363995, 8.546452], [47.376672, 8.538558], [47.360405, 8.526613], [47.372955, 8.520712], [47.417837, 8.554238], [47.422706, 8.540781], [47.375257, 8.547322], [47.376857, 8.52765], [47.393799, 8.50104], [47.376593, 8.494062], [47.424888, 8.541198], [47.372371, 8.520686], [47.364042, 8.556475], [47.418787, 8.506972], [47.397023, 8.530606], [47.39637, 8.531189], [47.389646, 8.51154], [47.369041, 8.537951], [47.348186, 8.528031], [47.350283, 8.56078], [47.360407, 8.564011], [47.40825, 8.546538], [47.419766, 8.548116], [47.370349, 8.548862], [47.394077, 8.493336], [47.380034, 8.520696], [47.368865, 8.529023], [47.362488, 8.534678], [47.371224, 8.516307], [47.379142, 8.518056], [47.368315, 8.524351], [47.378499, 8.540344], [47.37944, 8.537887], [47.383088, 8.484033], [47.411742, 8.506181], [47.41725, 8.54418], [47.36088, 8.598865], [47.417794, 8.509231], [47.377448, 8.512486], [47.361727, 8.518061], [47.376038, 8.516166], [47.375891, 8.51072], [47.35237, 8.576337], [47.372909, 8.536084], [47.406848, 8.578785], [47.398159, 8.536048], [47.365207, 8.530643], [47.379316, 8.537739], [47.36396, 8.546359], [47.353429, 8.511831], [47.362392, 8.532439], [47.405787, 8.552025], [47.418092, 8.560353], [47.370155, 8.51328], [47.36783, 8.496206], [47.423088, 8.503904], [47.386751, 8.547587], [47.364456, 8.498271], [47.39797, 8.474628], [47.413347, 8.476133], [47.377257, 8.551707], [47.375829, 8.535469], [47.376491, 8.5416], [47.421194, 8.507352], [47.42627, 8.55464], [47.39613, 8.527024], [47.393159, 8.5245], [47.381889, 8.512867], [47.375184, 8.528517], [47.374868, 8.484905], [47.412314, 8.539228], [47.366867, 8.549914], [47.401965, 8.499282], [47.40748, 8.486367], [47.362798, 8.552067], [47.383539, 8.574512], [47.385969, 8.545571], [47.376268, 8.525228], [47.390739, 8.54628], [47.389696, 8.511886], [47.367799, 8.560486], [47.374446, 8.539995], [47.363331, 8.506125], [47.360945, 8.571515], [47.409557, 8.537793], [47.382504, 8.514416], [47.415527, 8.54653], [47.37441, 8.529573], [47.36334, 8.557467], [47.366974, 8.555557], [47.369702, 8.520341], [47.378297, 8.530421], [47.357642, 8.521102], [47.375268, 8.526386], [47.392263, 8.524044], [47.387071, 8.519475], [47.393435, 8.52473], [47.380976, 8.528635], [47.397771, 8.529495], [47.400213, 8.54327], [47.393949, 8.493545], [47.378371, 8.574958], [47.373183, 8.557223], [47.379484, 8.527611], [47.401951, 8.496844], [47.372739, 8.515954], [47.362244, 8.548905], [47.388137, 8.486755], [47.368392, 8.556911], [47.366443, 8.540691], [47.415709, 8.546362], [47.380386, 8.51289], [47.378298, 8.530342], [47.3937, 8.493222], [47.377686, 8.525509], [47.377172, 8.539959], [47.382468, 8.540121], [47.396581, 8.542043], [47.369022, 8.540943], [47.376128, 8.515201], [47.400871, 8.517344], [47.390604, 8.522606], [47.369657, 8.531806], [47.387633, 8.499579], [47.361767, 8.526296], [47.366245, 8.562162], [47.373005, 8.534537], [47.37147, 8.515981], [47.374916, 8.518805], [47.37774, 8.537958], [47.394697, 8.525445], [47.390683, 8.508276], [47.421264, 8.549552], [47.360154, 8.500489], [47.363438, 8.550121], [47.372808, 8.525859], [47.387398, 8.500674], [47.392249, 8.476636], [47.386132, 8.548303], [47.391624, 8.513554], [47.387829, 8.519172], [47.405687, 8.591547], [47.343309, 8.53574], [47.386529, 8.541623], [47.3779, 8.543775], [47.378128, 8.510024], [47.370527, 8.515843], [47.368765, 8.50119], [47.365567, 8.53911], [47.370295, 8.54322], [47.369435, 8.520058], [47.37859, 8.542134], [47.402006, 8.497746], [47.384699, 8.529665], [47.374643, 8.527738], [47.3872, 8.519173], [47.381541, 8.492015], [47.383628, 8.574607], [47.337221, 8.53179], [47.391149, 8.523015], [47.404982, 8.557122], [47.379703, 8.520584], [47.376995, 8.544312], [47.426692, 8.549082], [47.369916, 8.529164], [47.386199, 8.524239], [47.42384, 8.522673], [47.407715, 8.583932], [47.375347, 8.533261], [47.373102, 8.503964], [47.392755, 8.529154], [47.386978, 8.547367], [47.398779, 8.533199], [47.414366, 8.518054], [47.375806, 8.527496], [47.413948, 8.544218], [47.365011, 8.531354], [47.371306, 8.54291], [47.390841, 8.539354], [47.379596, 8.543293], [47.413934, 8.548511], [47.413949, 8.548856], [47.374629, 8.525367], [47.40411, 8.534541], [47.379837, 8.527327], [47.409356, 8.546534], [47.365442, 8.535215], [47.376216, 8.544918], [47.37017, 8.548792], [47.373998, 8.549216], [47.413636, 8.481028], [47.364763, 8.519473], [47.371573, 8.515533], [47.377702, 8.541864], [47.390408, 8.484322], [47.374742, 8.552316], [47.374221, 8.544705], [47.382172, 8.556975], [47.386202, 8.504557], [47.377577, 8.543689], [47.409841, 8.549446], [47.406254, 8.581542], [47.393374, 8.499415], [47.38242, 8.530108], [47.373267, 8.542897], [47.372722, 8.534888], [47.380345, 8.569981], [47.366435, 8.557399], [47.398575, 8.509905], [47.352711, 8.58013], [47.391193, 8.523029], [47.351344, 8.576407], [47.400274, 8.491418], [47.378804, 8.54239], [47.410201, 8.548526], [47.364095, 8.560276], [47.393843, 8.493384], [47.37376, 8.545887], [47.376025, 8.553509], [47.368982, 8.501009], [47.396157, 8.527078], [47.360395, 8.521939], [47.352298, 8.558916], [47.388973, 8.535315], [47.370385, 8.548915], [47.361789, 8.566198], [47.377186, 8.525154], [47.381888, 8.546268], [47.414008, 8.542642], [47.377858, 8.508058], [47.418118, 8.546438], [47.404817, 8.483426], [47.402842, 8.500783], [47.369455, 8.528466], [47.361356, 8.560708], [47.430913, 8.549859], [47.380178, 8.490558], [47.371649, 8.550266], [47.370298, 8.514381], [47.370134, 8.548817], [47.413436, 8.531857], [47.414606, 8.520325], [47.377215, 8.540119], [47.352928, 8.524911], [47.3691, 8.525082], [47.424347, 8.552572], [47.419486, 8.508165], [47.4049, 8.557174], [47.378413, 8.540951], [47.3699, 8.510719], [47.36702, 8.493304], [47.374655, 8.535948], [47.386772, 8.525469], [47.389999, 8.510276], [47.368162, 8.492373], [47.38208, 8.508699], [47.364303, 8.531141], [47.396773, 8.504345], [47.378363, 8.540553], [47.373901, 8.503106], [47.376539, 8.534609], [47.389669, 8.511925], [47.40901, 8.539531], [47.356328, 8.591816], [47.385205, 8.489637], [47.415464, 8.551233], [47.380433, 8.537576], [47.364818, 8.554386], [47.384936, 8.531312], [47.404435, 8.494786], [47.416317, 8.545804], [47.387471, 8.527616], [47.356975, 8.555175], [47.40959, 8.53525], [47.382455, 8.549034], [47.393876, 8.481807], [47.39293, 8.528734], [47.363147, 8.530654], [47.370088, 8.548922], [47.386769, 8.547561], [47.403677, 8.546867], [47.405019, 8.577289], [47.369793, 8.508665], [47.385847, 8.474352], [47.369671, 8.525597], [47.379952, 8.54738], [47.365312, 8.546983], [47.381824, 8.509131], [47.407557, 8.584432], [47.376956, 8.541861], [47.384738, 8.531308], [47.405817, 8.591125], [47.372839, 8.535884], [47.393444, 8.524704], [47.373599, 8.500783], [47.385079, 8.537089], [47.373363, 8.535603], [47.380875, 8.549664], [47.368924, 8.538001], [47.3936, 8.512918], [47.365502, 8.563642], [47.411053, 8.571004], [47.427386, 8.546127], [47.373158, 8.494855], [47.383379, 8.540882], [47.390726, 8.521986], [47.374771, 8.536043], [47.409037, 8.511705], [47.376882, 8.524936], [47.394865, 8.525753], [47.372929, 8.528259], [47.401215, 8.534322], [47.357341, 8.550841], [47.327863, 8.518752], [47.372255, 8.520538], [47.384467, 8.548374], [47.374974, 8.544932], [47.365148, 8.534044], [47.369535, 8.548368], [47.414133, 8.518951], [47.334366, 8.514967], [47.364213, 8.526333], [47.4033, 8.560783], [47.388625, 8.537825], [47.411142, 8.526152], [47.414224, 8.518886], [47.403897, 8.4857], [47.379956, 8.544148], [47.373028, 8.52732], [47.381861, 8.546267], [47.403704, 8.492069], [47.370006, 8.510893], [47.365705, 8.535962], [47.383769, 8.540493], [47.387258, 8.518764], [47.366189, 8.537071], [47.388117, 8.539232], [47.390914, 8.488982], [47.378302, 8.510689], [47.42136, 8.549792], [47.413928, 8.551002], [47.389625, 8.48734], [47.386012, 8.535427], [47.388411, 8.520496], [47.367425, 8.552654], [47.382522, 8.540162], [47.384393, 8.510507], [47.355995, 8.556108], [47.384816, 8.544858], [47.366782, 8.566118], [47.40939, 8.538293], [47.425615, 8.494146], [47.367737, 8.494576], [47.393617, 8.512018], [47.378254, 8.51486], [47.387262, 8.488049], [47.377692, 8.509552], [47.403798, 8.534256], [47.366144, 8.537136], [47.361434, 8.517684], [47.351624, 8.524885], [47.392256, 8.494704], [47.422558, 8.495941], [47.362251, 8.55935], [47.365245, 8.556765], [47.354475, 8.55327], [47.37672, 8.543975], [47.346316, 8.564415], [47.373613, 8.519666], [47.366259, 8.546724], [47.368363, 8.522114], [47.373463, 8.534625], [47.373764, 8.524661], [47.383338, 8.53953], [47.35742, 8.521773], [47.374426, 8.541134], [47.369201, 8.523892], [47.382325, 8.544767], [47.375397, 8.48608], [47.335671, 8.518698], [47.377328, 8.499189], [47.384178, 8.534422], [47.382569, 8.540878], [47.369047, 8.541089], [47.377564, 8.522275], [47.386361, 8.540401], [47.373847, 8.537705], [47.384004, 8.543186], [47.37876, 8.559989], [47.377354, 8.499295], [47.365045, 8.531593], [47.370324, 8.513535], [47.361853, 8.515217], [47.407926, 8.5844], [47.371088, 8.53839], [47.38942, 8.511602], [47.406992, 8.585997], [47.370503, 8.508692], [47.359308, 8.549307], [47.360059, 8.550712], [47.354142, 8.575488], [47.386639, 8.546075], [47.388625, 8.486513], [47.368786, 8.528823], [47.367635, 8.489013], [47.426985, 8.491867], [47.378749, 8.519664], [47.374286, 8.522725], [47.406122, 8.553635], [47.391213, 8.522884], [47.380948, 8.518252], [47.372291, 8.535793], [47.339596, 8.531799], [47.385211, 8.530708], [47.399641, 8.518087], [47.374736, 8.528335], [47.415673, 8.545327], [47.399665, 8.52034], [47.387878, 8.535982], [47.428668, 8.543742], [47.388616, 8.537838], [47.403016, 8.552934], [47.361603, 8.526452], [47.411272, 8.549383], [47.377381, 8.510075], [47.411178, 8.545154], [47.402279, 8.499381], [47.4119, 8.549582], [47.36869, 8.49948], [47.370647, 8.519394], [47.385722, 8.532798], [47.391175, 8.523068], [47.381524, 8.531586], [47.36099, 8.531417], [47.367694, 8.519678], [47.361865, 8.507102], [47.359977, 8.621443], [47.37081, 8.54862], [47.376325, 8.483927], [47.357917, 8.520486], [47.375815, 8.549161], [47.379217, 8.559283], [47.406367, 8.583717], [47.369978, 8.564028], [47.365576, 8.539097], [47.398069, 8.536046], [47.426885, 8.491971], [47.36817, 8.53976], [47.38418, 8.511126], [47.385628, 8.528479], [47.381665, 8.490283], [47.38615, 8.54829], [47.390773, 8.545539], [47.36309, 8.519505], [47.408556, 8.540886], [47.372963, 8.531358], [47.366246, 8.553701], [47.392428, 8.492641], [47.362063, 8.533968], [47.362952, 8.567719], [47.406953, 8.586367], [47.356551, 8.534688], [47.361673, 8.549383], [47.405233, 8.491119], [47.369906, 8.541583], [47.39119, 8.517625], [47.409906, 8.47967], [47.399463, 8.505246], [47.364667, 8.537251], [47.375082, 8.529865], [47.412243, 8.556851], [47.391686, 8.481248], [47.357687, 8.521103], [47.413361, 8.553787], [47.347338, 8.566673], [47.362129, 8.51836], [47.373352, 8.523514], [47.384484, 8.53811], [47.377478, 8.538972], [47.372188, 8.543828], [47.392127, 8.490198], [47.414049, 8.5421], [47.36972, 8.508822], [47.398474, 8.538836], [47.363897, 8.549098], [47.373312, 8.519143], [47.364863, 8.532701], [47.373967, 8.50181], [47.366819, 8.541784], [47.386447, 8.496509], [47.420924, 8.550314], [47.407571, 8.548869], [47.372289, 8.536045], [47.369872, 8.529083], [47.378573, 8.510536], [47.375587, 8.52683], [47.375846, 8.537469], [47.366373, 8.515626], [47.373645, 8.52487], [47.381036, 8.536543], [47.368478, 8.505897], [47.380748, 8.512712], [47.392916, 8.524455], [47.373232, 8.535243], [47.398497, 8.502803], [47.415788, 8.476697], [47.382952, 8.529973], [47.359179, 8.58187], [47.379836, 8.521659], [47.383508, 8.539547], [47.421617, 8.550222], [47.38033, 8.513127], [47.381548, 8.532898], [47.374031, 8.501771], [47.418359, 8.546708], [47.37736, 8.512379], [47.397599, 8.532406], [47.37926, 8.525594], [47.384756, 8.531321], [47.384181, 8.531217], [47.381, 8.495116], [47.367346, 8.537413], [47.36715, 8.544796], [47.373368, 8.536967], [47.414543, 8.558145], [47.363687, 8.535364], [47.397821, 8.528927], [47.365478, 8.535229], [47.370179, 8.548818], [47.365813, 8.550065], [47.373812, 8.485321], [47.373956, 8.566548], [47.411097, 8.526124], [47.369282, 8.543861], [47.360022, 8.51285], [47.399816, 8.518607], [47.365372, 8.564076], [47.38823, 8.4933], [47.365451, 8.535242], [47.381175, 8.49169], [47.374666, 8.549945], [47.365063, 8.521107], [47.372987, 8.546811], [47.380523, 8.526149], [47.37695, 8.541491], [47.380894, 8.532567], [47.369897, 8.563947], [47.378888, 8.549503], [47.370288, 8.49889], [47.381173, 8.528732], [47.40461, 8.557379], [47.327913, 8.529615], [47.373174, 8.503899], [47.380225, 8.520555], [47.419256, 8.505802], [47.366358, 8.544846], [47.430137, 8.536932], [47.366175, 8.540487], [47.393933, 8.513812], [47.409941, 8.479724], [47.354338, 8.526105], [47.38502, 8.530969], [47.40346, 8.57018], [47.359546, 8.535637], [47.375587, 8.527849], [47.38322, 8.548097], [47.382473, 8.548134], [47.386212, 8.535272], [47.369041, 8.537937], [47.375577, 8.527889], [47.376031, 8.511067], [47.374141, 8.54089], [47.372193, 8.520431], [47.374326, 8.53079], [47.423077, 8.502181], [47.375609, 8.548203], [47.398228, 8.53442], [47.420748, 8.482347], [47.371594, 8.526722], [47.399794, 8.543739], [47.425806, 8.509565], [47.377766, 8.516029], [47.40951, 8.543609], [47.36654, 8.540825], [47.365451, 8.535229], [47.352326, 8.573477], [47.404774, 8.49213], [47.375499, 8.496636], [47.36978, 8.52544], [47.327185, 8.519042], [47.359189, 8.597067], [47.366684, 8.544628], [47.394223, 8.49012], [47.402091, 8.552862], [47.368085, 8.534422], [47.380984, 8.503658], [47.378502, 8.540066], [47.359602, 8.548704], [47.387619, 8.519499], [47.384813, 8.531932], [47.363986, 8.531319], [47.361972, 8.526512], [47.362914, 8.535256], [47.39076, 8.508688], [47.415802, 8.545038], [47.365828, 8.536243], [47.403955, 8.548913], [47.37939, 8.542216], [47.368031, 8.534514], [47.391558, 8.486425], [47.403661, 8.485881], [47.365256, 8.521548], [47.369419, 8.541785], [47.404133, 8.569479], [47.403459, 8.556468], [47.37235, 8.534325], [47.374478, 8.53944], [47.389755, 8.486839], [47.378974, 8.54242], [47.364532, 8.566243], [47.422886, 8.55111], [47.353298, 8.576198], [47.362344, 8.504874], [47.381651, 8.484799], [47.393534, 8.524733], [47.379051, 8.516147], [47.37753, 8.551408], [47.378373, 8.509777], [47.407666, 8.548314], [47.374382, 8.542973], [47.342655, 8.530777], [47.4188, 8.557837], [47.373217, 8.533005], [47.418891, 8.507332], [47.366339, 8.544899], [47.359994, 8.594861], [47.375376, 8.536757], [47.384582, 8.527861], [47.365338, 8.548042], [47.383134, 8.530639], [47.378363, 8.540553], [47.376839, 8.527676], [47.355556, 8.572539], [47.42119, 8.549762], [47.366815, 8.553488], [47.374039, 8.533552], [47.392476, 8.540501], [47.375867, 8.495743], [47.392791, 8.523459], [47.367833, 8.534444], [47.378555, 8.540213], [47.419494, 8.553981], [47.37408, 8.531142], [47.389122, 8.533769], [47.402466, 8.485791], [47.393296, 8.528092], [47.378316, 8.532196], [47.380165, 8.520183], [47.393426, 8.52473], [47.352389, 8.524848], [47.419347, 8.547763], [47.368111, 8.532675], [47.400268, 8.494015], [47.394352, 8.479883], [47.387555, 8.51967], [47.370536, 8.524529], [47.362196, 8.526517], [47.381851, 8.548214], [47.391547, 8.54268], [47.386333, 8.518506], [47.361945, 8.560337], [47.36955, 8.551559], [47.37314, 8.534539], [47.419169, 8.5476], [47.395745, 8.516313], [47.371852, 8.536579], [47.39322, 8.52462], [47.335118, 8.51919], [47.414704, 8.532797], [47.371848, 8.556639], [47.360938, 8.531151], [47.391148, 8.523081], [47.382602, 8.529807], [47.37494, 8.534418], [47.362073, 8.554541], [47.398197, 8.536764], [47.367077, 8.543987], [47.41897, 8.50569], [47.374537, 8.539865], [47.389588, 8.521606], [47.404427, 8.574361], [47.405307, 8.555102], [47.392077, 8.500489], [47.377497, 8.538893], [47.385216, 8.530218], [47.379711, 8.558393], [47.357038, 8.522123], [47.402652, 8.576483], [47.375461, 8.5221], [47.37037, 8.553192], [47.374627, 8.515992], [47.391059, 8.523026], [47.385197, 8.488551], [47.384394, 8.531566], [47.362605, 8.568228], [47.376896, 8.543436], [47.38864, 8.488844], [47.384068, 8.535598], [47.377814, 8.507938], [47.400239, 8.494213], [47.36876, 8.552324], [47.383327, 8.54255], [47.410186, 8.546286], [47.376885, 8.512184], [47.362851, 8.51623], [47.391062, 8.478653], [47.36908, 8.525307], [47.406023, 8.584929], [47.363464, 8.554848], [47.377983, 8.514047], [47.375644, 8.544549], [47.352145, 8.576398], [47.379931, 8.527899], [47.36464, 8.537251], [47.35908, 8.570006], [47.369515, 8.520165], [47.366809, 8.54475], [47.367893, 8.549896], [47.423664, 8.495009], [47.398157, 8.533425], [47.375257, 8.547322], [47.399333, 8.515445], [47.386064, 8.504925], [47.426599, 8.551294], [47.352168, 8.525478], [47.385168, 8.53239], [47.383837, 8.532455], [47.390297, 8.505275], [47.378208, 8.527479], [47.368863, 8.501245], [47.360412, 8.550429], [47.365451, 8.535202], [47.378957, 8.544207], [47.336383, 8.526215], [47.373457, 8.519993], [47.351881, 8.527299], [47.377551, 8.558493], [47.359044, 8.526916], [47.394779, 8.523433], [47.387658, 8.534467], [47.356595, 8.522378], [47.394024, 8.493189], [47.428256, 8.489599], [47.36743, 8.556811], [47.412903, 8.537756], [47.371517, 8.546264], [47.403553, 8.5066], [47.386804, 8.526887], [47.416389, 8.538199], [47.379341, 8.483642], [47.363913, 8.528577], [47.389962, 8.491811], [47.391859, 8.490947], [47.378904, 8.539386], [47.393937, 8.533523], [47.382021, 8.550177], [47.374455, 8.539969], [47.373384, 8.520098], [47.370169, 8.537656], [47.364604, 8.566191], [47.399685, 8.467931], [47.410117, 8.567354], [47.383394, 8.484079], [47.388997, 8.49505], [47.379781, 8.524744], [47.392703, 8.475161], [47.380035, 8.57314], [47.380461, 8.572804], [47.414448, 8.51897], [47.377905, 8.525275], [47.389234, 8.486789], [47.40408, 8.533864], [47.384038, 8.52638], [47.398933, 8.538832], [47.378107, 8.516128], [47.400807, 8.54886], [47.374536, 8.539984], [47.423115, 8.538484], [47.379034, 8.516081], [47.366511, 8.544876], [47.427742, 8.491723], [47.398898, 8.532976], [47.373751, 8.486127], [47.395757, 8.54543], [47.382627, 8.51467], [47.368181, 8.496134], [47.411957, 8.539857], [47.360414, 8.552097], [47.378021, 8.508975], [47.38, 8.5377], [47.36395, 8.531305], [47.363932, 8.531305], [47.348486, 8.534324], [47.374845, 8.530152], [47.368249, 8.551228], [47.404742, 8.585272], [47.374934, 8.518765], [47.366238, 8.545109], [47.369464, 8.541773], [47.382964, 8.551296], [47.367994, 8.52408], [47.38834, 8.483235], [47.362647, 8.547271], [47.379269, 8.527501], [47.363924, 8.533172], [47.363956, 8.528737], [47.361661, 8.532688], [47.36422, 8.547357], [47.386548, 8.509014], [47.406799, 8.550535], [47.380767, 8.54688], [47.409044, 8.550039], [47.369427, 8.525724], [47.391376, 8.53608], [47.382184, 8.492491], [47.410149, 8.541701], [47.423318, 8.494485], [47.404927, 8.557174], [47.377178, 8.541217], [47.385551, 8.483247], [47.372645, 8.521222], [47.35279, 8.559151], [47.407286, 8.549499], [47.38726, 8.54328], [47.366539, 8.540957], [47.367931, 8.524105], [47.397482, 8.532457], [47.384364, 8.477237], [47.357728, 8.521488], [47.387975, 8.485798], [47.369014, 8.538003], [47.367736, 8.537103], [47.376401, 8.537811], [47.367543, 8.535629], [47.393973, 8.54481], [47.42074, 8.54697], [47.362095, 8.547591], [47.37369, 8.54284], [47.353233, 8.52509], [47.371048, 8.547247], [47.35787, 8.521676], [47.373377, 8.53702], [47.388064, 8.520065], [47.373013, 8.518422], [47.375975, 8.541854], [47.389449, 8.53914], [47.33507, 8.52996], [47.387596, 8.499737], [47.396095, 8.526984], [47.386423, 8.518521], [47.3735, 8.503707], [47.375401, 8.547404], [47.382513, 8.529726], [47.378587, 8.540637], [47.383157, 8.51386], [47.376507, 8.539826], [47.385431, 8.529362], [47.377476, 8.542005], [47.37093, 8.531356], [47.37291, 8.533105], [47.384388, 8.528321], [47.365764, 8.556074], [47.38056, 8.517423], [47.373032, 8.534484], [47.391609, 8.517024], [47.378412, 8.520107], [47.365705, 8.535962], [47.352492, 8.508079], [47.369612, 8.55348], [47.373413, 8.533181], [47.366943, 8.543839], [47.420708, 8.502465], [47.373582, 8.534403], [47.380503, 8.519646], [47.401873, 8.499531], [47.373627, 8.534377], [47.354942, 8.552485], [47.366238, 8.522389], [47.378302, 8.510689], [47.377505, 8.529465], [47.378515, 8.503212], [47.424584, 8.53532], [47.424701, 8.537191], [47.372569, 8.529258], [47.338481, 8.52598], [47.408907, 8.545531], [47.381765, 8.490073], [47.342313, 8.519296], [47.391148, 8.523055], [47.352152, 8.573844], [47.365221, 8.521534], [47.389072, 8.527701], [47.38349, 8.512794], [47.370995, 8.502187], [47.410061, 8.546231], [47.379477, 8.527399], [47.381812, 8.515289], [47.382682, 8.53753], [47.36307, 8.499368], [47.366056, 8.53687], [47.415479, 8.550584], [47.375017, 8.53675], [47.37461, 8.536013], [47.371324, 8.522916], [47.35795, 8.532255], [47.431231, 8.539089], [47.368448, 8.499422], [47.376787, 8.522617], [47.369154, 8.504878], [47.405037, 8.552354], [47.370592, 8.470296], [47.370704, 8.535297], [47.398457, 8.591297], [47.361072, 8.531246], [47.373619, 8.561456], [47.362442, 8.53379], [47.353681, 8.556337], [47.36617, 8.53719], [47.39104, 8.522178], [47.366276, 8.54777], [47.378334, 8.53025], [47.384034, 8.532512], [47.393499, 8.524639], [47.381682, 8.516677], [47.376026, 8.527024], [47.381452, 8.542047], [47.363957, 8.55135], [47.340671, 8.530299], [47.370219, 8.558578], [47.375917, 8.553599], [47.370284, 8.522551], [47.399307, 8.515325], [47.371725, 8.519561], [47.371474, 8.51851], [47.380007, 8.548228], [47.389464, 8.511735], [47.362167, 8.547539], [47.395361, 8.508264], [47.385942, 8.532352], [47.370324, 8.537394], [47.372731, 8.534902], [47.389046, 8.520893], [47.369621, 8.533712], [47.365731, 8.536095], [47.421402, 8.549223], [47.392704, 8.52404], [47.371034, 8.538402], [47.371725, 8.519548], [47.368879, 8.540873], [47.375731, 8.537334], [47.389139, 8.486417], [47.403286, 8.545428], [47.373803, 8.537572], [47.36984, 8.552227], [47.389749, 8.491541], [47.401615, 8.553647], [47.387831, 8.520007], [47.410723, 8.55226], [47.382347, 8.515843], [47.373168, 8.531521], [47.373942, 8.524836], [47.354839, 8.601222], [47.369533, 8.520139], [47.371701, 8.473032], [47.379614, 8.537626], [47.417607, 8.546269], [47.353559, 8.57623], [47.369436, 8.506446], [47.370759, 8.515026], [47.367261, 8.545395], [47.415326, 8.517398], [47.373307, 8.524387], [47.388188, 8.525034], [47.373634, 8.536483], [47.398815, 8.533213], [47.373456, 8.520007], [47.392341, 8.50317], [47.379515, 8.495206], [47.381456, 8.535916], [47.369569, 8.525886], [47.404351, 8.560951], [47.370906, 8.520498], [47.377203, 8.512773], [47.374603, 8.541455], [47.400918, 8.491775], [47.408619, 8.569681], [47.372714, 8.534875], [47.364884, 8.502635], [47.384533, 8.50316], [47.359802, 8.522841], [47.391645, 8.517051], [47.392855, 8.522295], [47.374426, 8.522145], [47.38023, 8.52666], [47.406395, 8.549573], [47.39348, 8.50053], [47.413199, 8.538769], [47.363908, 8.566574], [47.39559, 8.527066], [47.400927, 8.591682], [47.37405, 8.502579], [47.370836, 8.546859], [47.371008, 8.524075], [47.385434, 8.529044], [47.35883, 8.521947], [47.360045, 8.523812], [47.394074, 8.541832], [47.369626, 8.53697], [47.411182, 8.570663], [47.370655, 8.531946], [47.370739, 8.546685], [47.372374, 8.534643], [47.378337, 8.506836], [47.370509, 8.549037], [47.384957, 8.50885], [47.399298, 8.522028], [47.375338, 8.490568], [47.385163, 8.528178], [47.369315, 8.481287], [47.370999, 8.498891], [47.389356, 8.521362], [47.369744, 8.525479], [47.36561, 8.552483], [47.38681, 8.534741], [47.386736, 8.525442], [47.350848, 8.560011], [47.422557, 8.4961], [47.381141, 8.541644], [47.348122, 8.562812], [47.408142, 8.546535], [47.386871, 8.502266], [47.394795, 8.490568], [47.37761, 8.492004], [47.37161, 8.528907], [47.387325, 8.48499], [47.425724, 8.536536], [47.409966, 8.535403], [47.385659, 8.532784], [47.39345, 8.539302], [47.403306, 8.497281], [47.365073, 8.555875], [47.34615, 8.533045], [47.367065, 8.523372], [47.407538, 8.489813], [47.375382, 8.549337], [47.393348, 8.498289], [47.370241, 8.548846], [47.419347, 8.547763], [47.370698, 8.51676], [47.405884, 8.573425], [47.42619, 8.493177], [47.363218, 8.513484], [47.405613, 8.570783], [47.390567, 8.539812], [47.410426, 8.528655], [47.377719, 8.509512], [47.335589, 8.518802], [47.392552, 8.516275], [47.391931, 8.482948], [47.388101, 8.51992], [47.398274, 8.53242], [47.368723, 8.538288], [47.370876, 8.54829], [47.367931, 8.544005], [47.37691, 8.528711], [47.355195, 8.600714], [47.38359, 8.530026], [47.384157, 8.527058], [47.375124, 8.518703], [47.378211, 8.544205], [47.354925, 8.554153], [47.396285, 8.48196], [47.37511, 8.529773], [47.375265, 8.5409], [47.391931, 8.528819], [47.389683, 8.536297], [47.37855, 8.504232], [47.378516, 8.533895], [47.384614, 8.486473], [47.399754, 8.531921], [47.383107, 8.540082], [47.3481, 8.534276], [47.367016, 8.545667], [47.348605, 8.533135], [47.373925, 8.535204], [47.386528, 8.520775], [47.379186, 8.538107], [47.380958, 8.538143], [47.391146, 8.489211], [47.379095, 8.556023], [47.374469, 8.549755], [47.408377, 8.544593], [47.368663, 8.524689], [47.404472, 8.489686], [47.404481, 8.489686], [47.362573, 8.535209], [47.370983, 8.53141], [47.369502, 8.506156], [47.403792, 8.567577], [47.373672, 8.546613], [47.385311, 8.508526], [47.399662, 8.515888], [47.377652, 8.541492], [47.408676, 8.507962], [47.377422, 8.539236], [47.370304, 8.548874], [47.364353, 8.563393], [47.367879, 8.560634], [47.372944, 8.53623], [47.425075, 8.537636], [47.413627, 8.481015], [47.38744, 8.532794], [47.367182, 8.544294], [47.374473, 8.495689], [47.379991, 8.554572], [47.394865, 8.525753], [47.375397, 8.517424], [47.358918, 8.516376], [47.399776, 8.543738], [47.379391, 8.542164], [47.405232, 8.504925], [47.368063, 8.541505], [47.407121, 8.586688], [47.379694, 8.507036], [47.363881, 8.535752], [47.383119, 8.514998], [47.391061, 8.522722], [47.370724, 8.5369], [47.376375, 8.52813], [47.370295, 8.54886], [47.390854, 8.488689], [47.367677, 8.495223], [47.366846, 8.531418], [47.375571, 8.511257], [47.377839, 8.509223], [47.372606, 8.53482], [47.401901, 8.499347], [47.357954, 8.520447], [47.37936, 8.545354], [47.377255, 8.529287], [47.409974, 8.54126], [47.377271, 8.510271], [47.367942, 8.497691], [47.372756, 8.499482], [47.368095, 8.536276], [47.398164, 8.534551], [47.389425, 8.494449], [47.406177, 8.48128], [47.358922, 8.570533], [47.372853, 8.566234], [47.363386, 8.534855], [47.371799, 8.559855], [47.377296, 8.547669], [47.354191, 8.555726], [47.367634, 8.535591], [47.367065, 8.544305], [47.359725, 8.587627], [47.414118, 8.550861], [47.384797, 8.531733], [47.36462, 8.532789], [47.370283, 8.52745], [47.369149, 8.555775], [47.416337, 8.541763], [47.378624, 8.519502], [47.351977, 8.525673], [47.37639, 8.544578], [47.378195, 8.510608], [47.38883, 8.520901], [47.368782, 8.53494], [47.367917, 8.544587], [47.413913, 8.54696], [47.392114, 8.500463], [47.354392, 8.573799], [47.365821, 8.537063], [47.360054, 8.568796], [47.370295, 8.54886], [47.400028, 8.545598], [47.389202, 8.491266], [47.387121, 8.477741], [47.380373, 8.520041], [47.373474, 8.568882], [47.376218, 8.536245], [47.358447, 8.54999], [47.39347, 8.529579], [47.406865, 8.536094], [47.370767, 8.535245], [47.375959, 8.55944], [47.374527, 8.539971], [47.377221, 8.532862], [47.377354, 8.529329], [47.361567, 8.526504], [47.383325, 8.510221], [47.413799, 8.546653], [47.390378, 8.539808], [47.366532, 8.540772], [47.400456, 8.58571], [47.42427, 8.549389], [47.380338, 8.493686], [47.372848, 8.550979], [47.369867, 8.52192], [47.369867, 8.52192], [47.39511, 8.524526], [47.36891, 8.540371], [47.402352, 8.499289], [47.37436, 8.523415], [47.378482, 8.509647], [47.426638, 8.544442], [47.370878, 8.52349], [47.400232, 8.546941], [47.431464, 8.516307], [47.379923, 8.521038], [47.378442, 8.510096], [47.371543, 8.515916], [47.39139, 8.536531], [47.365511, 8.546881], [47.381942, 8.529277], [47.382544, 8.548175], [47.380908, 8.536765], [47.407766, 8.557592], [47.387176, 8.485583], [47.40485, 8.505367], [47.398548, 8.538612], [47.395052, 8.529758], [47.385566, 8.533153], [47.352615, 8.524773], [47.410454, 8.538037], [47.385248, 8.494883], [47.389829, 8.51112], [47.377499, 8.518619], [47.374201, 8.521147], [47.375966, 8.541934], [47.393335, 8.495772], [47.394197, 8.489974], [47.37707, 8.544022], [47.364356, 8.546261], [47.38277, 8.550882], [47.387231, 8.486525], [47.368077, 8.494821], [47.409268, 8.55007], [47.37179, 8.530791], [47.370966, 8.548345], [47.402841, 8.500836], [47.357826, 8.57223], [47.376911, 8.526658], [47.372853, 8.475993], [47.356241, 8.561315], [47.391085, 8.523067], [47.341846, 8.530694], [47.384421, 8.548466], [47.367674, 8.538876], [47.386011, 8.535533], [47.410354, 8.538154], [47.373284, 8.531603], [47.331926, 8.517127], [47.366425, 8.540611], [47.361733, 8.552442], [47.344897, 8.533311], [47.392489, 8.50263], [47.380729, 8.512751], [47.378983, 8.548048], [47.3938, 8.472162], [47.383412, 8.484053], [47.342643, 8.531028], [47.374727, 8.551985], [47.385012, 8.508705], [47.375044, 8.545212], [47.388958, 8.546269], [47.392049, 8.518145], [47.369078, 8.537885], [47.383825, 8.530839], [47.371701, 8.540124], [47.380466, 8.519791], [47.369333, 8.557235], [47.374497, 8.539348], [47.387573, 8.522492], [47.374308, 8.524169], [47.371016, 8.524141], [47.418488, 8.548261], [47.389153, 8.536246], [47.387467, 8.519496], [47.410371, 8.542024], [47.420931, 8.507558], [47.378196, 8.556997], [47.374022, 8.54478], [47.394789, 8.532839], [47.36821, 8.537391], [47.379306, 8.525449], [47.365859, 8.545286], [47.377383, 8.529104], [47.383405, 8.481894], [47.376376, 8.534752], [47.378201, 8.509933], [47.406678, 8.54632], [47.366578, 8.533041], [47.414604, 8.561075], [47.369192, 8.55604], [47.383392, 8.515613], [47.377923, 8.530016], [47.392498, 8.50263], [47.384817, 8.531495], [47.36738, 8.496184], [47.373117, 8.536883], [47.3863, 8.518188], [47.382988, 8.529881], [47.369726, 8.536853], [47.361225, 8.502363], [47.32794, 8.529642], [47.373996, 8.502618], [47.384566, 8.499545], [47.405871, 8.553524], [47.390995, 8.523091], [47.364264, 8.555844], [47.368863, 8.501298], [47.392531, 8.523268], [47.385571, 8.526928], [47.370224, 8.548819], [47.412154, 8.547414], [47.376321, 8.537717], [47.375758, 8.539188], [47.413265, 8.541328], [47.35916, 8.558147], [47.379527, 8.529665], [47.37718, 8.510376], [47.377739, 8.509288], [47.3626, 8.504469], [47.369744, 8.525506], [47.377779, 8.507858], [47.402058, 8.498939], [47.397583, 8.481694], [47.420296, 8.503318], [47.419179, 8.50637], [47.41727, 8.545798], [47.411671, 8.567612], [47.391034, 8.522748], [47.426297, 8.55468], [47.377197, 8.544846], [47.378406, 8.548182], [47.393653, 8.538829], [47.357375, 8.590462], [47.387607, 8.543658], [47.398039, 8.532534], [47.402608, 8.499798], [47.414758, 8.516565], [47.363303, 8.557598], [47.387887, 8.520737], [47.377648, 8.543756], [47.390675, 8.522701], [47.387276, 8.547188], [47.368979, 8.528363], [47.376476, 8.536488], [47.370179, 8.513598], [47.364203, 8.531205], [47.373653, 8.536364], [47.420631, 8.548982], [47.377495, 8.543793], [47.390703, 8.522542], [47.39146, 8.525273], [47.414756, 8.516737], [47.386372, 8.497806], [47.368779, 8.551212], [47.376979, 8.542299], [47.373595, 8.534906], [47.361806, 8.515375], [47.404522, 8.534721], [47.372773, 8.518073], [47.380932, 8.581608], [47.374058, 8.536319], [47.391385, 8.53608], [47.377743, 8.522411], [47.366638, 8.535266], [47.390788, 8.486052], [47.382724, 8.531214], [47.363997, 8.533054], [47.390887, 8.481047], [47.394911, 8.487616], [47.386375, 8.482694], [47.349626, 8.527888], [47.369166, 8.532432], [47.377338, 8.541366], [47.366337, 8.54049], [47.370709, 8.547002], [47.410731, 8.553281], [47.373208, 8.533005], [47.428755, 8.489078], [47.427781, 8.491326], [47.378396, 8.534237], [47.374749, 8.489126], [47.378748, 8.554784], [47.387481, 8.486649], [47.407886, 8.583008], [47.380098, 8.520671], [47.405784, 8.59082], [47.350194, 8.560619], [47.359828, 8.594407], [47.408964, 8.539556], [47.403816, 8.53423], [47.384322, 8.50746], [47.37445, 8.540472], [47.363698, 8.500453], [47.365048, 8.519783], [47.403851, 8.485765], [47.39896, 8.51296], [47.373365, 8.531644], [47.404674, 8.57487], [47.38365, 8.527392], [47.364069, 8.566683], [47.403324, 8.497242], [47.385294, 8.494672], [47.370134, 8.548817], [47.380626, 8.525754], [47.396988, 8.512284], [47.381736, 8.52918], [47.382049, 8.529306], [47.359072, 8.586289], [47.329871, 8.514678], [47.407018, 8.550275], [47.38618, 8.498212], [47.376589, 8.513992], [47.335663, 8.518592], [47.39881, 8.533796], [47.372572, 8.527934], [47.403772, 8.497423], [47.401918, 8.499532], [47.397986, 8.53248], [47.377912, 8.509013], [47.380736, 8.525465], [47.407693, 8.532335], [47.377631, 8.498572], [47.379607, 8.573647], [47.405838, 8.590781], [47.3566, 8.523795], [47.40798, 8.548387], [47.369929, 8.510481], [47.376974, 8.541888], [47.362839, 8.565545], [47.362624, 8.568162], [47.419905, 8.50665], [47.376328, 8.544497], [47.36448, 8.531356], [47.366577, 8.540799], [47.370179, 8.548805], [47.378248, 8.510702], [47.353596, 8.576138], [47.376746, 8.559893], [47.378885, 8.556402], [47.371382, 8.527287], [47.38308, 8.530678], [47.409288, 8.537628], [47.363925, 8.56672], [47.376706, 8.53501], [47.376754, 8.536627], [47.372053, 8.529565], [47.376065, 8.559601], [47.375293, 8.544581], [47.377508, 8.525412], [47.367529, 8.538039], [47.370144, 8.490082], [47.370063, 8.511623], [47.372375, 8.540164], [47.380582, 8.556743], [47.426777, 8.546777], [47.376571, 8.537921], [47.38036, 8.528212], [47.390538, 8.524804], [47.419297, 8.547351], [47.369105, 8.537846], [47.365279, 8.508495], [47.356982, 8.53479], [47.365451, 8.535242], [47.407903, 8.546133], [47.415719, 8.531042], [47.382241, 8.540382], [47.410587, 8.572638], [47.414038, 8.542325], [47.382028, 8.498699], [47.382447, 8.537605], [47.400736, 8.5487], [47.396742, 8.595526], [47.37512, 8.522914], [47.429403, 8.545029], [47.390723, 8.508793], [47.36271, 8.54722], [47.363151, 8.52925], [47.393705, 8.502535], [47.404578, 8.493928], [47.424004, 8.548986], [47.420092, 8.535678], [47.387098, 8.486324], [47.370774, 8.470101], [47.398941, 8.513132], [47.366549, 8.540905], [47.422742, 8.540822], [47.361484, 8.561479], [47.361727, 8.576205], [47.375162, 8.485241], [47.387529, 8.488332], [47.379244, 8.526295], [47.392668, 8.524066], [47.378125, 8.541833], [47.375391, 8.528587], [47.399032, 8.513902], [47.416791, 8.54698], [47.377113, 8.543308], [47.388935, 8.489048], [47.371711, 8.547566], [47.374769, 8.523887], [47.383214, 8.540177], [47.395561, 8.532099], [47.410648, 8.548787], [47.374637, 8.53604], [47.398122, 8.591582], [47.377211, 8.529167], [47.340164, 8.531652], [47.364775, 8.502686], [47.371879, 8.522279], [47.366271, 8.54074], [47.369059, 8.550159], [47.374705, 8.527818], [47.370613, 8.470005], [47.364594, 8.537356], [47.409627, 8.549309], [47.387108, 8.534654], [47.39323, 8.524594], [47.377243, 8.526744], [47.375706, 8.537042], [47.392076, 8.500688], [47.392698, 8.537988], [47.338793, 8.527283], [47.368029, 8.601827], [47.372199, 8.536069], [47.373453, 8.534718], [47.409682, 8.550132], [47.392181, 8.499948], [47.374648, 8.549878], [47.382607, 8.546362], [47.38618, 8.521483], [47.3632, 8.575429], [47.367218, 8.533875], [47.391685, 8.516615], [47.373361, 8.474507], [47.394874, 8.525767], [47.374466, 8.521656], [47.37217, 8.547522], [47.413644, 8.528919], [47.370452, 8.514226], [47.363497, 8.534566], [47.37138, 8.510219], [47.374666, 8.537696], [47.40931, 8.544837], [47.398344, 8.537363], [47.408655, 8.537138], [47.373772, 8.524701], [47.383282, 8.529252], [47.383399, 8.499349], [47.354553, 8.601944], [47.369744, 8.525492], [47.381325, 8.510578], [47.366152, 8.532502], [47.357345, 8.598907], [47.406943, 8.550578], [47.410988, 8.545243], [47.376389, 8.52192], [47.353577, 8.576177], [47.372982, 8.531266], [47.38368, 8.528028], [47.377567, 8.543768], [47.373875, 8.546048], [47.40633, 8.584803], [47.355202, 8.52607], [47.380135, 8.548059], [47.374426, 8.541121], [47.365322, 8.537424], [47.378299, 8.527375], [47.386991, 8.546003], [47.399323, 8.501918], [47.375743, 8.544538], [47.377903, 8.508126], [47.391454, 8.523048], [47.365955, 8.53234], [47.414849, 8.551591], [47.38106, 8.503302], [47.381576, 8.513563], [47.353611, 8.524118], [47.355267, 8.526892], [47.371175, 8.555539], [47.374454, 8.539201], [47.38561, 8.487711], [47.414178, 8.551233], [47.390919, 8.488452], [47.374799, 8.522656], [47.374041, 8.544675], [47.37738, 8.573255], [47.327555, 8.518931], [47.407991, 8.54261], [47.369606, 8.528654], [47.376703, 8.526773], [47.362759, 8.559864], [47.373368, 8.534173], [47.387126, 8.494112], [47.366898, 8.520099], [47.401436, 8.501007], [47.399786, 8.542785], [47.385889, 8.528484], [47.367538, 8.541799], [47.375983, 8.538186], [47.369109, 8.492034], [47.390953, 8.522786], [47.398256, 8.537123], [47.350342, 8.563957], [47.351554, 8.602289], [47.366857, 8.544367], [47.377796, 8.507978], [47.382172, 8.556975], [47.357121, 8.521979], [47.40242, 8.495714], [47.387137, 8.519119], [47.424249, 8.543146], [47.396677, 8.529115], [47.391872, 8.517771], [47.370975, 8.537977], [47.406485, 8.575425], [47.378777, 8.542349], [47.393927, 8.525032], [47.362602, 8.558444], [47.371571, 8.522484], [47.375721, 8.559872], [47.404436, 8.574375], [47.353518, 8.602001], [47.379114, 8.520016], [47.348144, 8.534317], [47.414261, 8.483505], [47.421343, 8.549779], [47.381746, 8.513725], [47.405441, 8.50477], [47.374805, 8.54571], [47.338989, 8.529378], [47.372735, 8.538345], [47.365111, 8.520724], [47.373835, 8.499516], [47.383065, 8.514997], [47.376078, 8.535792], [47.381167, 8.517872], [47.377278, 8.522097], [47.375063, 8.539439], [47.389051, 8.525091], [47.381941, 8.531237], [47.410023, 8.479619], [47.37855, 8.575055], [47.377441, 8.499641], [47.397045, 8.493408], [47.384094, 8.503892], [47.363667, 8.528956], [47.394233, 8.492994], [47.354846, 8.554972], [47.378911, 8.545292], [47.399739, 8.492891], [47.379507, 8.528049], [47.327691, 8.518841], [47.365814, 8.550012], [47.378097, 8.544759], [47.392235, 8.493101], [47.381781, 8.545219], [47.37759, 8.510821], [47.379188, 8.52746], [47.39328, 8.523986], [47.37913, 8.538331], [47.370235, 8.513374], [47.328652, 8.513198], [47.400381, 8.538809], [47.398802, 8.592815], [47.375997, 8.538637], [47.390802, 8.522571], [47.365612, 8.526772], [47.364293, 8.547266], [47.382529, 8.55628], [47.370159, 8.543323], [47.348215, 8.531552], [47.370285, 8.518645], [47.378446, 8.514506], [47.399243, 8.505719], [47.414777, 8.560919], [47.372936, 8.547432], [47.374503, 8.539679], [47.38797, 8.485347], [47.371185, 8.52343], [47.354793, 8.556731], [47.370179, 8.548818], [47.378229, 8.509787], [47.370118, 8.535444], [47.376898, 8.513654], [47.386769, 8.547508], [47.397809, 8.533113], [47.410741, 8.57166], [47.385347, 8.517202], [47.356363, 8.531785], [47.377322, 8.527898], [47.424816, 8.537458], [47.360145, 8.568692], [47.368333, 8.524391], [47.411299, 8.570692], [47.391247, 8.532607], [47.375201, 8.522929], [47.382844, 8.528024], [47.366656, 8.534353], [47.361573, 8.549513], [47.408638, 8.546413], [47.373223, 8.535243], [47.358702, 8.517391], [47.370607, 8.469594], [47.333569, 8.528923], [47.382967, 8.513935], [47.377359, 8.512392], [47.379994, 8.527847], [47.377583, 8.550522], [47.390414, 8.532193], [47.358353, 8.558726], [47.374206, 8.475556], [47.371393, 8.54793], [47.410366, 8.548132], [47.408519, 8.580769], [47.366233, 8.537191], [47.392749, 8.534559], [47.426119, 8.543225], [47.376923, 8.537782], [47.348295, 8.527861], [47.386368, 8.534904], [47.39666, 8.529022], [47.378248, 8.52891], [47.418063, 8.546556], [47.370321, 8.535819], [47.383997, 8.508632], [47.395638, 8.542858], [47.380062, 8.536787], [47.402991, 8.575801], [47.405801, 8.593642], [47.389687, 8.511912], [47.414249, 8.518118], [47.370296, 8.548834], [47.406916, 8.550578], [47.365714, 8.535949], [47.391105, 8.522829], [47.37883, 8.531068], [47.407354, 8.586733], [47.42789, 8.536753], [47.409194, 8.578094], [47.375561, 8.578063], [47.426278, 8.543559], [47.368323, 8.560233], [47.387634, 8.516003], [47.40874, 8.580323], [47.334826, 8.538608], [47.389827, 8.536247], [47.378333, 8.530382], [47.358326, 8.558804], [47.392459, 8.532857], [47.369266, 8.525655], [47.37011, 8.521011], [47.380667, 8.537581], [47.374891, 8.520512], [47.362339, 8.547411], [47.389928, 8.53609], [47.372041, 8.515529], [47.397195, 8.531418], [47.372722, 8.534968], [47.376704, 8.538983], [47.414496, 8.480343], [47.378591, 8.542094], [47.409252, 8.547075], [47.41799, 8.554188], [47.371857, 8.534142], [47.340681, 8.532152], [47.374211, 8.524948], [47.369039, 8.541036], [47.40862, 8.546373], [47.384755, 8.531361], [47.383772, 8.526904], [47.41721, 8.514097], [47.36154, 8.561281], [47.368677, 8.5289], [47.369852, 8.51003], [47.381747, 8.490072], [47.37181, 8.601566], [47.405423, 8.592773], [47.359441, 8.585357], [47.390097, 8.525788], [47.378301, 8.52613], [47.364978, 8.537655], [47.374787, 8.54759], [47.344771, 8.533321], [47.408166, 8.558965], [47.378956, 8.542406], [47.415845, 8.548087], [47.390152, 8.475814], [47.360748, 8.550184], [47.361902, 8.56015], [47.365277, 8.55339], [47.368778, 8.528756], [47.383899, 8.528748], [47.366301, 8.540436], [47.369973, 8.510628], [47.384137, 8.497271], [47.341281, 8.527599], [47.370082, 8.536357], [47.421968, 8.498474], [47.388971, 8.527911], [47.365802, 8.536202], [47.361789, 8.515282], [47.426167, 8.553206], [47.376778, 8.535078], [47.378943, 8.559688], [47.381478, 8.503761], [47.415186, 8.547437], [47.364312, 8.531088], [47.35977, 8.565679], [47.362656, 8.547205], [47.366479, 8.545365], [47.383161, 8.530666], [47.425387, 8.494473], [47.370146, 8.539099], [47.382734, 8.550894], [47.373499, 8.53456], [47.415317, 8.517411], [47.399149, 8.521641], [47.368823, 8.524878], [47.365712, 8.51421], [47.344904, 8.533562], [47.369581, 8.541749], [47.418938, 8.507174], [47.387824, 8.529292], [47.390483, 8.522034], [47.399116, 8.547845], [47.376136, 8.484003], [47.357383, 8.521865], [47.379594, 8.525442], [47.382548, 8.514523], [47.390204, 8.512452], [47.378529, 8.540119], [47.370794, 8.535246], [47.366175, 8.5405], [47.375766, 8.533561], [47.379277, 8.528521], [47.38895, 8.52244], [47.404167, 8.562299], [47.379697, 8.516399], [47.384773, 8.509336], [47.380783, 8.518566], [47.393354, 8.524795], [47.33185, 8.516583], [47.410868, 8.562295], [47.397643, 8.533467], [47.365469, 8.535216], [47.377858, 8.52832], [47.388756, 8.480012], [47.354351, 8.561461], [47.39165, 8.523277], [47.353894, 8.601241], [47.374448, 8.541651], [47.391732, 8.48513], [47.388287, 8.491009], [47.407723, 8.53863], [47.373463, 8.544994], [47.383381, 8.506169], [47.374606, 8.549546], [47.369872, 8.510798], [47.382233, 8.540289], [47.385646, 8.5044], [47.37461, 8.525499], [47.35497, 8.506673], [47.385161, 8.537012], [47.375438, 8.545419], [47.377004, 8.544312], [47.375241, 8.559239], [47.368164, 8.524229], [47.367096, 8.543869], [47.363886, 8.551189], [47.368235, 8.536663], [47.385895, 8.525027], [47.379066, 8.52514], [47.364102, 8.521843], [47.406199, 8.547449], [47.407111, 8.586768], [47.375536, 8.486639], [47.363887, 8.534137], [47.372964, 8.547261], [47.396552, 8.52229], [47.38946, 8.487655], [47.3537, 8.575558], [47.379579, 8.555344], [47.37056, 8.524781], [47.372081, 8.516986], [47.38355, 8.488744], [47.373249, 8.532516], [47.370709, 8.547002], [47.386806, 8.547483], [47.388085, 8.491522], [47.379315, 8.525462], [47.379291, 8.51067], [47.422265, 8.551137], [47.419571, 8.553426], [47.368245, 8.511639], [47.373777, 8.531825], [47.406155, 8.552072], [47.360326, 8.566776], [47.387685, 8.52117], [47.368279, 8.504172], [47.363967, 8.528565], [47.351421, 8.568533], [47.369716, 8.536985], [47.396668, 8.529181], [47.369349, 8.523498], [47.378961, 8.526793], [47.375946, 8.490064], [47.37297, 8.536257], [47.389625, 8.521461], [47.424946, 8.548303], [47.380469, 8.536624], [47.395674, 8.519994], [47.392601, 8.46843], [47.364523, 8.555161], [47.365414, 8.516269], [47.412227, 8.546422], [47.42717, 8.536752], [47.372718, 8.563384], [47.392681, 8.524583], [47.379314, 8.528469], [47.369292, 8.541822], [47.374047, 8.51937], [47.383156, 8.514853], [47.405405, 8.504703], [47.372975, 8.485397], [47.394232, 8.490133], [47.369034, 8.529238], [47.392091, 8.511722], [47.369374, 8.541731], [47.371393, 8.535695], [47.405688, 8.498375], [47.414954, 8.545365], [47.430778, 8.542274], [47.419061, 8.506514], [47.370367, 8.548915], [47.356617, 8.551342], [47.357927, 8.526125], [47.394087, 8.493164], [47.391512, 8.540693], [47.403801, 8.565736], [47.394033, 8.493163], [47.383356, 8.515599], [47.42989, 8.549573], [47.371092, 8.55853], [47.37778, 8.507766], [47.361284, 8.550539], [47.372747, 8.517993], [47.37865, 8.54244], [47.371442, 8.522852], [47.376807, 8.54893], [47.378634, 8.559138], [47.406799, 8.550575], [47.368839, 8.528983], [47.392316, 8.502918], [47.369689, 8.525558], [47.393445, 8.529446], [47.360862, 8.53156], [47.361155, 8.506002], [47.376256, 8.544509], [47.375265, 8.544634], [47.379209, 8.522361], [47.37668, 8.560223], [47.409285, 8.566925], [47.37033, 8.535806], [47.38709, 8.545926], [47.414578, 8.520418], [47.4249, 8.550237], [47.374319, 8.542972], [47.376989, 8.532645], [47.368421, 8.523691], [47.39789, 8.534028], [47.368476, 8.54722], [47.419687, 8.548008], [47.369735, 8.536919], [47.369183, 8.527785], [47.380979, 8.491487], [47.378027, 8.526562], [47.378414, 8.525643], [47.361977, 8.559795], [47.388127, 8.520026], [47.371294, 8.52134], [47.420818, 8.508126], [47.411721, 8.509374], [47.365071, 8.498826], [47.372408, 8.510862], [47.362734, 8.511356], [47.411606, 8.545534], [47.329291, 8.514163], [47.367998, 8.501452], [47.343965, 8.530102], [47.3648, 8.532792], [47.355132, 8.526902], [47.364558, 8.502827], [47.389126, 8.494695], [47.340005, 8.530325], [47.429763, 8.543075], [47.370681, 8.516706], [47.38978, 8.511622], [47.366092, 8.536897], [47.387826, 8.514696], [47.369489, 8.520072], [47.421097, 8.502274], [47.408691, 8.546481], [47.365451, 8.535229], [47.352005, 8.558499], [47.370868, 8.548237], [47.430046, 8.544539], [47.37892, 8.50902], [47.354159, 8.553396], [47.378011, 8.509094], [47.375906, 8.527366], [47.400245, 8.547418], [47.404383, 8.493619], [47.397369, 8.516769], [47.375222, 8.531206], [47.373268, 8.518983], [47.391342, 8.535841], [47.377331, 8.512524], [47.379016, 8.516147], [47.402789, 8.5763], [47.3767, 8.538453], [47.384405, 8.531288], [47.390646, 8.508395], [47.348506, 8.534073], [47.411082, 8.562498], [47.397346, 8.53256], [47.37051, 8.55918], [47.387013, 8.52848], [47.372955, 8.520725], [47.378422, 8.545626], [47.375944, 8.540424], [47.390809, 8.522783], [47.370206, 8.548792], [47.382725, 8.47947], [47.366583, 8.542031], [47.38153, 8.503974], [47.377116, 8.541997], [47.379399, 8.520299], [47.393131, 8.524579], [47.375841, 8.552128], [47.389555, 8.521208], [47.365754, 8.520314], [47.375578, 8.526883], [47.381514, 8.513509], [47.370288, 8.548648], [47.37589, 8.537562], [47.371725, 8.519548], [47.366513, 8.540824], [47.380098, 8.537821], [47.413236, 8.532118], [47.35846, 8.556967], [47.419497, 8.548057], [47.384409, 8.531884], [47.382403, 8.549801], [47.386898, 8.490465], [47.373058, 8.536458], [47.400148, 8.537758], [47.393037, 8.489037], [47.353309, 8.575999], [47.389657, 8.471844], [47.382396, 8.540146], [47.372782, 8.547548], [47.386399, 8.496826], [47.392212, 8.476754], [47.404359, 8.561044], [47.400432, 8.593513], [47.349673, 8.562421], [47.423841, 8.51382], [47.387871, 8.529107], [47.362574, 8.534097], [47.364595, 8.566191], [47.378788, 8.528921], [47.382478, 8.492815], [47.358094, 8.549215], [47.393414, 8.499906], [47.368067, 8.541095], [47.391468, 8.540625], [47.379295, 8.529514], [47.414143, 8.551113], [47.374303, 8.518991], [47.364243, 8.547794], [47.383976, 8.531027], [47.361251, 8.52659], [47.359615, 8.551047], [47.399282, 8.539886], [47.394723, 8.525485], [47.427555, 8.546383], [47.359741, 8.549197], [47.399979, 8.545081], [47.378795, 8.542376], [47.368297, 8.546237], [47.362321, 8.516127], [47.357759, 8.552306], [47.369633, 8.548463], [47.364492, 8.547151], [47.392745, 8.529286], [47.36491, 8.556004], [47.410062, 8.569327], [47.407189, 8.586133], [47.371072, 8.512358], [47.377495, 8.529557], [47.406838, 8.58072], [47.356751, 8.511474], [47.413485, 8.546514], [47.419168, 8.546699], [47.40363, 8.496281], [47.394209, 8.526588], [47.38194, 8.543673], [47.40953, 8.537753], [47.3743, 8.490958], [47.41073, 8.553387], [47.385253, 8.536722], [47.407594, 8.585254], [47.357747, 8.554424], [47.369079, 8.533979], [47.373836, 8.536024], [47.40439, 8.546616], [47.393892, 8.524886], [47.366791, 8.544736], [47.410811, 8.553336], [47.412292, 8.557369], [47.369494, 8.526255], [47.362589, 8.548607], [47.39955, 8.547629], [47.379462, 8.526128], [47.413258, 8.550551], [47.326011, 8.518608], [47.373049, 8.53655], [47.391392, 8.53816], [47.368534, 8.518292], [47.396555, 8.528702], [47.409697, 8.54201], [47.406057, 8.552892], [47.32292, 8.514379], [47.397473, 8.532457], [47.419728, 8.50442], [47.365352, 8.502578], [47.333048, 8.529839], [47.351238, 8.576246], [47.358586, 8.585392], [47.36923, 8.541728], [47.366665, 8.53524], [47.3862, 8.527947], [47.376077, 8.526376], [47.382554, 8.528244], [47.391121, 8.523067], [47.357312, 8.508269], [47.368854, 8.501231], [47.383166, 8.557419], [47.368725, 8.52477], [47.403638, 8.497367], [47.362527, 8.520023], [47.404145, 8.563637], [47.369524, 8.536398], [47.354867, 8.601104], [47.391607, 8.519262], [47.380151, 8.537849], [47.380121, 8.526777], [47.416333, 8.506777], [47.357382, 8.572525], [47.350743, 8.577149], [47.386342, 8.517553], [47.404119, 8.56353], [47.373827, 8.524662], [47.41488, 8.545509], [47.380133, 8.490504], [47.379402, 8.523888], [47.363737, 8.551703], [47.358695, 8.585328], [47.362733, 8.517234], [47.382148, 8.529348], [47.375537, 8.548162], [47.409219, 8.544902], [47.335097, 8.541393], [47.370134, 8.548791], [47.413875, 8.544296], [47.412787, 8.544247], [47.328509, 8.517931], [47.370106, 8.512736], [47.374788, 8.525767], [47.408615, 8.483182], [47.399742, 8.519812], [47.358659, 8.58534], [47.3605, 8.53559], [47.370949, 8.548252], [47.369038, 8.541089], [47.369383, 8.541744], [47.361288, 8.534071], [47.378466, 8.563412], [47.430778, 8.542274], [47.407351, 8.48965], [47.406141, 8.534728], [47.37716, 8.526955], [47.386355, 8.497673], [47.376198, 8.544931], [47.380086, 8.512235], [47.41176, 8.525488], [47.404285, 8.564978], [47.356634, 8.507633], [47.376223, 8.559154], [47.374791, 8.515836], [47.378124, 8.526842], [47.397768, 8.533562], [47.364351, 8.566358], [47.345831, 8.534441], [47.37536, 8.485179], [47.363049, 8.507444], [47.364076, 8.530328], [47.380879, 8.57235], [47.380026, 8.524497], [47.37301, 8.547129], [47.373492, 8.536308], [47.384932, 8.49889], [47.376464, 8.534899], [47.347319, 8.533109], [47.360543, 8.561101], [47.36593, 8.530313], [47.395704, 8.52638], [47.382206, 8.504808], [47.396981, 8.530234], [47.391542, 8.486252], [47.387099, 8.534668], [47.369842, 8.512108], [47.367728, 8.496495], [47.338658, 8.532058], [47.38831, 8.519686], [47.401268, 8.534456], [47.38114, 8.517858], [47.413919, 8.478556], [47.356746, 8.53219], [47.370564, 8.531004], [47.420593, 8.482529], [47.388359, 8.491024], [47.392089, 8.511841], [47.369041, 8.537937], [47.3583, 8.587993], [47.383325, 8.539927], [47.394466, 8.54127], [47.388083, 8.48478], [47.395315, 8.491678], [47.38338, 8.539756], [47.387561, 8.515167], [47.377985, 8.530084], [47.384045, 8.534207], [47.405215, 8.500009], [47.374686, 8.549667], [47.376769, 8.535064], [47.376265, 8.541702], [47.389809, 8.540022], [47.367842, 8.533543], [47.419542, 8.542452], [47.367638, 8.50927], [47.377595, 8.498585], [47.366139, 8.520507], [47.382909, 8.540157], [47.428219, 8.489664], [47.362078, 8.551178], [47.368061, 8.554825], [47.377458, 8.51144], [47.363298, 8.549681], [47.382715, 8.543504], [47.388146, 8.51702], [47.373612, 8.519758], [47.386506, 8.547728], [47.360349, 8.506648], [47.378021, 8.548068], [47.37661, 8.536584], [47.416973, 8.523024], [47.416938, 8.522983], [47.373745, 8.519973], [47.402351, 8.499356], [47.390996, 8.526774], [47.388265, 8.540625], [47.393885, 8.505386], [47.409518, 8.549386], [47.372304, 8.543884], [47.38284, 8.551082], [47.379369, 8.515889], [47.379378, 8.515902], [47.388783, 8.518185], [47.366409, 8.545165], [47.378709, 8.529675], [47.397609, 8.546489], [47.40213, 8.570126], [47.389383, 8.513667], [47.368532, 8.550797], [47.335518, 8.518761], [47.403614, 8.571032], [47.37054, 8.540246], [47.393669, 8.472809], [47.375222, 8.531219], [47.363274, 8.535237], [47.369098, 8.547975], [47.412537, 8.523199], [47.377963, 8.492752], [47.403046, 8.589343], [47.387931, 8.486645], [47.37724, 8.499068], [47.369318, 8.525802], [47.379169, 8.49561], [47.3644, 8.548301], [47.366911, 8.544408], [47.421019, 8.50198], [47.418068, 8.508813], [47.418473, 8.547002], [47.363987, 8.505265], [47.369401, 8.534224], [47.39053, 8.527572], [47.388738, 8.479932], [47.395748, 8.545456], [47.398134, 8.535809], [47.365608, 8.518616], [47.409536, 8.543729], [47.357945, 8.520394], [47.372875, 8.535871], [47.347717, 8.524263], [47.391055, 8.522483], [47.354718, 8.574547], [47.369401, 8.533271], [47.365322, 8.516452], [47.359535, 8.50417], [47.379333, 8.537779], [47.37775, 8.540673], [47.388515, 8.518988], [47.407634, 8.581121], [47.375521, 8.528113], [47.373189, 8.525483], [47.375511, 8.484454], [47.394332, 8.516337], [47.372321, 8.556093], [47.377678, 8.525495], [47.364075, 8.55024], [47.391897, 8.523785], [47.366859, 8.543241], [47.35799, 8.571956], [47.380497, 8.512548], [47.361548, 8.561387], [47.343406, 8.524506], [47.369915, 8.549157], [47.415356, 8.54654], [47.386529, 8.52549], [47.37344, 8.537035], [47.393687, 8.47277], [47.394528, 8.53943], [47.415569, 8.509637], [47.390507, 8.479331], [47.369205, 8.527375], [47.374544, 8.532489], [47.386652, 8.535307], [47.386179, 8.492372], [47.365877, 8.53488], [47.420056, 8.508866], [47.38817, 8.520279], [47.379788, 8.526796], [47.370871, 8.525158], [47.392927, 8.491154], [47.393131, 8.524565], [47.357212, 8.554889], [47.365391, 8.521591], [47.356109, 8.553622], [47.372827, 8.525767], [47.353312, 8.575695], [47.399545, 8.521583], [47.39704, 8.511464], [47.359818, 8.547663], [47.377636, 8.538432], [47.383911, 8.54823], [47.376563, 8.540635], [47.362505, 8.533818], [47.367661, 8.544939], [47.391765, 8.518683], [47.387126, 8.545953], [47.382314, 8.531775], [47.421163, 8.549735], [47.36821, 8.510553], [47.338244, 8.530104], [47.34399, 8.530327], [47.413348, 8.532584], [47.431008, 8.550193], [47.369256, 8.541848], [47.362638, 8.520674], [47.376923, 8.54345], [47.406577, 8.587975], [47.387164, 8.545755], [47.371022, 8.537766], [47.378021, 8.513783], [47.411386, 8.526024], [47.404279, 8.54513], [47.387149, 8.535079], [47.387594, 8.487128], [47.412238, 8.55648], [47.412168, 8.553444], [47.398956, 8.540144], [47.355259, 8.557813], [47.363362, 8.499798], [47.374686, 8.549667], [47.368489, 8.496934], [47.394226, 8.489842], [47.370845, 8.527991], [47.376662, 8.551867], [47.371724, 8.515721], [47.408564, 8.558801], [47.347471, 8.533165], [47.384427, 8.545062], [47.377364, 8.529237], [47.371279, 8.520029], [47.385497, 8.542343], [47.373519, 8.553125], [47.366434, 8.545351], [47.402523, 8.58227], [47.384455, 8.507727], [47.417868, 8.548156], [47.366789, 8.545822], [47.376957, 8.539849], [47.356497, 8.534714], [47.374334, 8.524235], [47.34648, 8.498615], [47.357109, 8.507775], [47.404003, 8.534406], [47.390344, 8.541463], [47.359092, 8.521833], [47.405213, 8.559221], [47.409362, 8.549741], [47.366248, 8.545082], [47.382695, 8.541874], [47.364186, 8.533031], [47.351695, 8.559896], [47.370028, 8.51149], [47.425527, 8.547679], [47.378587, 8.542518], [47.395837, 8.511281], [47.369349, 8.528278], [47.377036, 8.540049], [47.37741, 8.5395], [47.392442, 8.502867], [47.378504, 8.541708], [47.340229, 8.535173], [47.362708, 8.548411], [47.381802, 8.516415], [47.37538, 8.496806], [47.362545, 8.535262], [47.370216, 8.557028], [47.366169, 8.538289], [47.413209, 8.538756], [47.358507, 8.521901], [47.371344, 8.530345], [47.36914, 8.505394], [47.384028, 8.515943], [47.370617, 8.516811], [47.373862, 8.529483], [47.373698, 8.528764], [47.39815, 8.535968], [47.400202, 8.546264], [47.41047, 8.532591], [47.370707, 8.520653], [47.399687, 8.516022], [47.39613, 8.527051], [47.413974, 8.540574], [47.386526, 8.475942], [47.350118, 8.56202], [47.40141, 8.490182], [47.357332, 8.550841], [47.369961, 8.510919], [47.381576, 8.513576], [47.410616, 8.55679], [47.411804, 8.537972], [47.409615, 8.543969], [47.39842, 8.591416], [47.392494, 8.523387], [47.373148, 8.527972], [47.414721, 8.530081], [47.389055, 8.52088], [47.393361, 8.496845], [47.394728, 8.521207], [47.366741, 8.533004], [47.426155, 8.554399], [47.370657, 8.535481], [47.381038, 8.528742], [47.414687, 8.566457], [47.39779, 8.529376], [47.368353, 8.497037], [47.398042, 8.534124], [47.391917, 8.517812], [47.406004, 8.581391], [47.375383, 8.484716], [47.373933, 8.517183], [47.335914, 8.533933], [47.403705, 8.485974], [47.368312, 8.551189], [47.38459, 8.527], [47.365469, 8.535216], [47.393435, 8.529526], [47.426598, 8.492893], [47.369398, 8.525909], [47.389974, 8.540634], [47.378886, 8.494174], [47.358419, 8.505259], [47.370169, 8.548898], [47.405944, 8.481116], [47.371874, 8.542802], [47.38844, 8.491026], [47.381419, 8.551079], [47.399996, 8.54524], [47.390368, 8.525635], [47.362512, 8.534943], [47.372271, 8.525557], [47.377037, 8.537122], [47.361531, 8.526516], [47.384313, 8.516187], [47.371253, 8.523775], [47.378849, 8.544205], [47.368833, 8.528638], [47.368001, 8.514653], [47.362205, 8.559429], [47.405574, 8.486236], [47.378941, 8.530752], [47.392145, 8.50098], [47.371796, 8.529215], [47.372153, 8.536174], [47.377987, 8.554344], [47.371202, 8.524463], [47.374723, 8.551442], [47.397386, 8.532124], [47.37777, 8.507871], [47.392513, 8.523308], [47.365549, 8.561511], [47.364941, 8.53784], [47.364182, 8.551288], [47.372591, 8.534555], [47.394856, 8.525753], [47.375929, 8.536318], [47.403853, 8.496457], [47.410962, 8.545163], [47.382301, 8.533112], [47.387135, 8.494086], [47.387401, 8.529349], [47.36378, 8.574991], [47.381381, 8.546575], [47.358429, 8.518669], [47.375953, 8.53857], [47.391076, 8.523066], [47.388441, 8.486973], [47.369523, 8.553412], [47.393721, 8.505648], [47.383825, 8.547844], [47.408946, 8.54801], [47.426587, 8.548815], [47.384783, 8.477696], [47.36794, 8.544071], [47.384462, 8.531991], [47.368645, 8.499493], [47.403418, 8.536288], [47.390047, 8.536834], [47.39728, 8.531035], [47.416108, 8.545031], [47.376656, 8.52321], [47.425115, 8.499663], [47.370196, 8.539524], [47.392349, 8.53308], [47.364657, 8.566365], [47.373742, 8.502798], [47.378238, 8.541372], [47.409073, 8.532854], [47.3348, 8.529967], [47.374128, 8.524205], [47.369805, 8.541833], [47.391592, 8.487617], [47.416139, 8.510285], [47.379935, 8.5159], [47.371665, 8.555139], [47.367989, 8.540776], [47.391023, 8.53345], [47.378682, 8.529674], [47.413994, 8.479153], [47.370771, 8.524375], [47.378491, 8.540264], [47.382071, 8.528869], [47.378779, 8.539343], [47.393592, 8.512732], [47.405378, 8.537336], [47.359633, 8.557561], [47.367694, 8.496375], [47.377951, 8.499029], [47.388129, 8.519841], [47.367135, 8.539765], [47.414231, 8.518091], [47.36143, 8.551244], [47.386049, 8.545758], [47.372553, 8.517565], [47.360345, 8.55371], [47.371281, 8.547411], [47.414016, 8.478717], [47.382465, 8.537605], [47.413838, 8.547211], [47.382377, 8.514453], [47.386777, 8.523032], [47.395517, 8.531979], [47.353459, 8.526855], [47.391558, 8.523487], [47.37282, 8.535036], [47.395276, 8.519363], [47.387445, 8.486662], [47.401788, 8.499901], [47.372411, 8.538285], [47.403435, 8.486049], [47.415537, 8.51401], [47.413851, 8.545886], [47.38498, 8.541855], [47.364343, 8.548564], [47.387522, 8.529882], [47.345148, 8.532508], [47.366815, 8.543134], [47.402199, 8.549022], [47.369248, 8.525641], [47.389664, 8.511501], [47.394901, 8.52578], [47.382102, 8.51413], [47.38681, 8.534741], [47.395558, 8.531464], [47.390474, 8.53634], [47.370272, 8.524868], [47.361409, 8.548768], [47.347998, 8.562624], [47.373235, 8.533045], [47.371342, 8.522969], [47.410657, 8.534688], [47.369245, 8.491984], [47.407055, 8.582394], [47.402357, 8.493818], [47.371601, 8.547775], [47.378647, 8.565111], [47.383671, 8.504891], [47.375258, 8.550063], [47.362628, 8.51886], [47.391996, 8.51025], [47.409407, 8.479157], [47.373054, 8.531201], [47.375823, 8.527563], [47.380822, 8.53728], [47.427993, 8.545702], [47.361801, 8.512012], [47.427464, 8.551113], [47.358129, 8.552142], [47.368595, 8.52907], [47.419587, 8.548046], [47.385478, 8.542369], [47.407933, 8.582744], [47.379013, 8.526039], [47.392698, 8.522742], [47.389632, 8.491499], [47.422503, 8.496086], [47.375892, 8.541124], [47.408574, 8.546505], [47.375783, 8.536567], [47.40882, 8.549001], [47.370986, 8.530232], [47.364208, 8.536355], [47.34365, 8.530175], [47.351973, 8.505858], [47.383588, 8.532092], [47.381411, 8.510024], [47.370003, 8.564174], [47.385531, 8.520623], [47.386158, 8.535271], [47.365714, 8.535949], [47.405618, 8.569352], [47.411252, 8.546812], [47.352321, 8.581299], [47.366522, 8.540904], [47.378746, 8.510261], [47.350853, 8.561321], [47.386679, 8.547573], [47.384253, 8.530278], [47.374335, 8.556267], [47.363242, 8.519627], [47.362489, 8.534559], [47.405929, 8.548477], [47.413799, 8.546653], [47.388524, 8.483782], [47.382522, 8.529726], [47.375895, 8.559544], [47.380195, 8.527533], [47.371721, 8.556742], [47.395831, 8.545246], [47.374355, 8.540139], [47.385542, 8.536675], [47.36182, 8.560202], [47.380837, 8.541359], [47.350687, 8.561754], [47.386979, 8.53497], [47.366635, 8.551551], [47.397528, 8.519952], [47.361114, 8.531578], [47.365444, 8.519778], [47.41023, 8.541756], [47.373879, 8.544751], [47.364409, 8.531341], [47.375757, 8.524119], [47.377014, 8.527217], [47.388634, 8.520619], [47.359963, 8.550366], [47.375653, 8.544549], [47.363784, 8.535525], [47.353605, 8.560466], [47.375279, 8.511728], [47.380982, 8.518491], [47.381879, 8.546307], [47.360784, 8.585108], [47.387919, 8.542022], [47.371021, 8.530259], [47.411655, 8.562788], [47.420193, 8.548642], [47.389727, 8.511476], [47.351923, 8.558604], [47.383556, 8.539283], [47.369764, 8.533808], [47.37621, 8.553049], [47.404529, 8.574973], [47.40362, 8.496307], [47.388055, 8.524899], [47.383385, 8.498872], [47.414651, 8.571001], [47.367391, 8.494066], [47.388101, 8.51992], [47.330189, 8.51524], [47.38445, 8.548294], [47.38808, 8.485058], [47.374336, 8.52401], [47.379251, 8.559456], [47.413799, 8.546653], [47.405274, 8.564098], [47.383986, 8.550761], [47.409044, 8.571346], [47.363883, 8.531728], [47.392167, 8.492689], [47.417239, 8.509909], [47.357, 8.53573], [47.346324, 8.564561], [47.352934, 8.57754], [47.38657, 8.483028], [47.369717, 8.525532], [47.403885, 8.555244], [47.377492, 8.528961], [47.40047, 8.543686], [47.392532, 8.523242], [47.366569, 8.535874], [47.415568, 8.544172], [47.412505, 8.483723], [47.41884, 8.503169], [47.399275, 8.542536], [47.370235, 8.53252], [47.383481, 8.512793], [47.405176, 8.557484], [47.366875, 8.54344], [47.378244, 8.530301], [47.422517, 8.512083], [47.374205, 8.491552], [47.38252, 8.487227], [47.426455, 8.492771], [47.374159, 8.544598], [47.356663, 8.523809], [47.373968, 8.542952], [47.386522, 8.496166], [47.357177, 8.552916], [47.39122, 8.523109], [47.382823, 8.548234], [47.379874, 8.498167], [47.386429, 8.496522], [47.377206, 8.540132], [47.406601, 8.551472], [47.380563, 8.56788], [47.362751, 8.548571], [47.361307, 8.534005], [47.369225, 8.528037], [47.346798, 8.530213], [47.39113, 8.523094], [47.353936, 8.578078], [47.356974, 8.526106], [47.391045, 8.522509], [47.375747, 8.527045], [47.410894, 8.57169], [47.392997, 8.534974], [47.371861, 8.531785], [47.405151, 8.480253], [47.348887, 8.570134], [47.357844, 8.572217], [47.380424, 8.512639], [47.372109, 8.547322], [47.381616, 8.490639], [47.388648, 8.522991], [47.391483, 8.514213], [47.36607, 8.53352], [47.410564, 8.550031], [47.369338, 8.513104], [47.390027, 8.491573], [47.366871, 8.520164], [47.397989, 8.474535], [47.37694, 8.541596], [47.393643, 8.519794], [47.40513, 8.481604], [47.394629, 8.488061], [47.421008, 8.502099], [47.355173, 8.527234], [47.390173, 8.509908], [47.375047, 8.540167], [47.380599, 8.512232], [47.37996, 8.541924], [47.411604, 8.512287], [47.406922, 8.58679], [47.378403, 8.520094], [47.375103, 8.491676], [47.363969, 8.53594], [47.375392, 8.540809], [47.370286, 8.513746], [47.368321, 8.551136], [47.403456, 8.487692], [47.400996, 8.501952], [47.381075, 8.518109], [47.377863, 8.529697], [47.403469, 8.556349], [47.377646, 8.50959], [47.380809, 8.512832], [47.42566, 8.494081], [47.374527, 8.539971], [47.366801, 8.544577], [47.369014, 8.537977], [47.38449, 8.531886], [47.369698, 8.525558], [47.378528, 8.503675], [47.399654, 8.517703], [47.390195, 8.512478], [47.380427, 8.524876], [47.373397, 8.524402], [47.374688, 8.527791], [47.365229, 8.521587], [47.381664, 8.51375], [47.373364, 8.568231], [47.358362, 8.558726], [47.381176, 8.491584], [47.366538, 8.541964], [47.37587, 8.527365], [47.368957, 8.50175], [47.380366, 8.541786], [47.368968, 8.550289], [47.393238, 8.530383], [47.36034, 8.56622], [47.374451, 8.5461], [47.33134, 8.53728], [47.355506, 8.529213], [47.364565, 8.566522], [47.369735, 8.536853], [47.363156, 8.533527], [47.388148, 8.497377], [47.377221, 8.521407], [47.366867, 8.537681], [47.387904, 8.520763], [47.367006, 8.531567], [47.377367, 8.498898], [47.407239, 8.538394], [47.378194, 8.510674], [47.368485, 8.519681], [47.387368, 8.543269], [47.396207, 8.527489], [47.368246, 8.536491], [47.4122, 8.546434], [47.362493, 8.534135], [47.356503, 8.532146], [47.386056, 8.545944], [47.387066, 8.539091], [47.360101, 8.595896], [47.374397, 8.543212], [47.397734, 8.533376], [47.403701, 8.570411], [47.36554, 8.53531], [47.343394, 8.523936], [47.385455, 8.530621], [47.373746, 8.52466], [47.376936, 8.541146], [47.369557, 8.531937], [47.365589, 8.521595], [47.375338, 8.560393], [47.373238, 8.535548], [47.386364, 8.535354], [47.375161, 8.525259], [47.392138, 8.503643], [47.38522, 8.530709], [47.378073, 8.510102], [47.370152, 8.548804], [47.36821, 8.494942], [47.385243, 8.530179], [47.378301, 8.541373], [47.381307, 8.528801], [47.361131, 8.60083], [47.378128, 8.526378], [47.362959, 8.559603], [47.364042, 8.566696], [47.359517, 8.522544], [47.364647, 8.566444], [47.398698, 8.547399], [47.37292, 8.531185], [47.371526, 8.515757], [47.411126, 8.570966], [47.370034, 8.543281], [47.409607, 8.549441], [47.376878, 8.540536], [47.36389, 8.574848], [47.371805, 8.522489], [47.384654, 8.502738], [47.387869, 8.520749], [47.371335, 8.530411], [47.365108, 8.553267], [47.372988, 8.536297], [47.378605, 8.553695], [47.410849, 8.571649], [47.400529, 8.544059], [47.410373, 8.538088], [47.370641, 8.557752], [47.380301, 8.512372], [47.405627, 8.549915], [47.383726, 8.547816], [47.402763, 8.491746], [47.414483, 8.557799], [47.365225, 8.564338], [47.368294, 8.551202], [47.413365, 8.553389], [47.384726, 8.529692], [47.396718, 8.554061], [47.405013, 8.548286], [47.379981, 8.548135], [47.414095, 8.550423], [47.391609, 8.514136], [47.343165, 8.53575], [47.390448, 8.509358], [47.366212, 8.522243], [47.364786, 8.547395], [47.351291, 8.576287], [47.371604, 8.51605], [47.397733, 8.533456], [47.353099, 8.512486], [47.402657, 8.498328], [47.392003, 8.48295], [47.419605, 8.548073], [47.403919, 8.541373], [47.393811, 8.533521], [47.375908, 8.541363], [47.386879, 8.490611], [47.368283, 8.495871], [47.366834, 8.543082], [47.375725, 8.539797], [47.390823, 8.522227], [47.364797, 8.537757], [47.373196, 8.531482], [47.409105, 8.541772], [47.379805, 8.553336], [47.379553, 8.542127], [47.369023, 8.53795], [47.398404, 8.547115], [47.385014, 8.500732], [47.376705, 8.483656], [47.430147, 8.540525], [47.382745, 8.529916], [47.410467, 8.532869], [47.373009, 8.547275], [47.38105, 8.503315], [47.386849, 8.544874], [47.391083, 8.522312], [47.410066, 8.542865], [47.358518, 8.517824], [47.374479, 8.579192], [47.36613, 8.540419], [47.384094, 8.526169], [47.381735, 8.529286], [47.398042, 8.535992], [47.416917, 8.551674], [47.383425, 8.529361], [47.367382, 8.494039], [47.371597, 8.515891], [47.409111, 8.48404], [47.377158, 8.533841], [47.409221, 8.571615], [47.384974, 8.531035], [47.418921, 8.507041], [47.379162, 8.523592], [47.403682, 8.497487], [47.363946, 8.500869], [47.380752, 8.519042], [47.380771, 8.50821], [47.416917, 8.551674], [47.360022, 8.532959], [47.37821, 8.526248], [47.366788, 8.542234], [47.37191, 8.54275], [47.370336, 8.507378], [47.370311, 8.513945], [47.354939, 8.52343], [47.3787, 8.541964], [47.378247, 8.526156], [47.398792, 8.542287], [47.396788, 8.529793], [47.365451, 8.535242], [47.376909, 8.535451], [47.398767, 8.506597], [47.361163, 8.525423], [47.385641, 8.517579], [47.373536, 8.546743], [47.366557, 8.540931], [47.381959, 8.516882], [47.373216, 8.533084], [47.367083, 8.544318], [47.374327, 8.543039], [47.407654, 8.547758], [47.387584, 8.487194], [47.361936, 8.534031], [47.381182, 8.537261], [47.366805, 8.5432], [47.391436, 8.51347], [47.37858, 8.519475], [47.37826, 8.519985], [47.378672, 8.513478], [47.386715, 8.522938], [47.336911, 8.518895], [47.403354, 8.486047], [47.372645, 8.538343], [47.379402, 8.523902], [47.415049, 8.513351], [47.402733, 8.577359], [47.377683, 8.538248], [47.374798, 8.518882], [47.378473, 8.526981], [47.357583, 8.554725], [47.390191, 8.473404], [47.354806, 8.556242], [47.376084, 8.515068], [47.364322, 8.555448], [47.381102, 8.528691], [47.381273, 8.510405], [47.409069, 8.570578], [47.332815, 8.51438], [47.365896, 8.557295], [47.382563, 8.54807], [47.405246, 8.480785], [47.376424, 8.54385], [47.410397, 8.542077], [47.364223, 8.566514], [47.392173, 8.49102], [47.385624, 8.542226], [47.37807, 8.492807], [47.394564, 8.528092], [47.36667, 8.542284], [47.382216, 8.544897], [47.383336, 8.506155], [47.394823, 8.525395], [47.358421, 8.521409], [47.367781, 8.560473], [47.387379, 8.527905], [47.412003, 8.524473], [47.387099, 8.517409], [47.372373, 8.503062], [47.391991, 8.510846], [47.391719, 8.518801], [47.360525, 8.516766], [47.39689, 8.519846], [47.39119, 8.520526], [47.373017, 8.520872], [47.365169, 8.500933], [47.387237, 8.488763], [47.384346, 8.489236], [47.377052, 8.544075], [47.424949, 8.551763], [47.382275, 8.530224], [47.370918, 8.549562], [47.363868, 8.559596], [47.369108, 8.547962], [47.409104, 8.578065], [47.364589, 8.556672], [47.377246, 8.570458], [47.386467, 8.529171], [47.370822, 8.510221], [47.377651, 8.535917], [47.3679, 8.498432], [47.373553, 8.575491], [47.388291, 8.537023], [47.38425, 8.540079], [47.390136, 8.491496], [47.360427, 8.516671], [47.362764, 8.547194], [47.373932, 8.524876], [47.410907, 8.543373], [47.374767, 8.49404], [47.376934, 8.540351], [47.397733, 8.480995], [47.378869, 8.526976], [47.389863, 8.539095], [47.402818, 8.553937], [47.381877, 8.502444], [47.376483, 8.525299], [47.339906, 8.53035], [47.425532, 8.553737], [47.369733, 8.549325], [47.412569, 8.546416], [47.371196, 8.523192], [47.383699, 8.573708], [47.385824, 8.548508], [47.36693, 8.544289], [47.377247, 8.538636], [47.364249, 8.546246], [47.354638, 8.525846], [47.369183, 8.527798], [47.378943, 8.515271], [47.404795, 8.57262], [47.388207, 8.52873], [47.38789, 8.544194], [47.371479, 8.519874], [47.402379, 8.499237], [47.364683, 8.546016], [47.366618, 8.540191], [47.405631, 8.57081], [47.371336, 8.546287], [47.384836, 8.495603], [47.375667, 8.533664], [47.399499, 8.497457], [47.426555, 8.492601], [47.3773, 8.529288], [47.379909, 8.527315], [47.400714, 8.593227], [47.379115, 8.511249], [47.379371, 8.525278], [47.338249, 8.530528], [47.394265, 8.489511], [47.412993, 8.546292], [47.353595, 8.576151], [47.38003, 8.570875], [47.36698, 8.520987], [47.365695, 8.553875], [47.378688, 8.489231], [47.378046, 8.496462], [47.373851, 8.481998], [47.390549, 8.545415], [47.367709, 8.545576], [47.399667, 8.547618], [47.37108, 8.538324], [47.378711, 8.53039], [47.377953, 8.532493], [47.370865, 8.542954], [47.377148, 8.512931], [47.369162, 8.525203], [47.366365, 8.546965], [47.412331, 8.539281], [47.399461, 8.54756], [47.367932, 8.544826], [47.385646, 8.548346], [47.356313, 8.555757], [47.41969, 8.508461], [47.400656, 8.548606], [47.335043, 8.529959], [47.370684, 8.558932], [47.37811, 8.532099], [47.361091, 8.522549], [47.417776, 8.513194], [47.378428, 8.526954], [47.368911, 8.540344], [47.375799, 8.527311], [47.413292, 8.544178], [47.378307, 8.499393], [47.391037, 8.522483], [47.403841, 8.548553], [47.406924, 8.585637], [47.366057, 8.536843], [47.351415, 8.525185], [47.402512, 8.499478], [47.349204, 8.564383], [47.366946, 8.560376], [47.404814, 8.483731], [47.366934, 8.545706], [47.365397, 8.554068], [47.35703, 8.552357], [47.357521, 8.554591], [47.370588, 8.549277], [47.403557, 8.578622], [47.391221, 8.479888], [47.376755, 8.559894], [47.391763, 8.472679], [47.391244, 8.515652], [47.374459, 8.540552], [47.414044, 8.516961], [47.365057, 8.565009], [47.379309, 8.542202], [47.421619, 8.550076], [47.389033, 8.495051], [47.385922, 8.524935], [47.373098, 8.547383], [47.409144, 8.545244], [47.388589, 8.535904], [47.374308, 8.522196], [47.382822, 8.530355], [47.383772, 8.57363], [47.367088, 8.54559], [47.363776, 8.535485], [47.382787, 8.479537], [47.378557, 8.575214], [47.378403, 8.54107], [47.371353, 8.536052], [47.36997, 8.543412], [47.370107, 8.512603], [47.387595, 8.529737], [47.398712, 8.532721], [47.370179, 8.548805], [47.366682, 8.545753], [47.3811, 8.537378], [47.38367, 8.515764], [47.381183, 8.538161], [47.390894, 8.523341], [47.364439, 8.555398], [47.347879, 8.528131], [47.419887, 8.547734], [47.398411, 8.591429], [47.379172, 8.538623], [47.374741, 8.488967], [47.382846, 8.500755], [47.368582, 8.546508], [47.382352, 8.541059], [47.398997, 8.533044], [47.407699, 8.547679], [47.414734, 8.51626], [47.383472, 8.536712], [47.3758, 8.516572], [47.377713, 8.528449], [47.37032, 8.491515], [47.365541, 8.552164], [47.370232, 8.537604], [47.391807, 8.523744], [47.372575, 8.533336], [47.378534, 8.541417], [47.369089, 8.547975], [47.391668, 8.519423], [47.349497, 8.56484], [47.379372, 8.542243], [47.383071, 8.530691], [47.349547, 8.532427], [47.403824, 8.485818], [47.356709, 8.558572], [47.429944, 8.549587], [47.40021, 8.546331], [47.384349, 8.548504], [47.405221, 8.480519], [47.409124, 8.543575], [47.370476, 8.519403], [47.374922, 8.544746], [47.369391, 8.54189], [47.360601, 8.507567], [47.408773, 8.546443], [47.390594, 8.539799], [47.376994, 8.539757], [47.371027, 8.536297], [47.393384, 8.537724], [47.370369, 8.514449], [47.365615, 8.54544], [47.367169, 8.550305], [47.399188, 8.542282], [47.376416, 8.523788], [47.401337, 8.534748], [47.398668, 8.539198], [47.366148, 8.540499], [47.376722, 8.522841], [47.384734, 8.497972], [47.373178, 8.542829], [47.382776, 8.552114], [47.389812, 8.509159], [47.39148, 8.477111], [47.384406, 8.481582], [47.369216, 8.528011], [47.395552, 8.532099], [47.391346, 8.487056], [47.382511, 8.53758], [47.41415, 8.551325], [47.405766, 8.590793], [47.374971, 8.539596], [47.327212, 8.52964], [47.374787, 8.54571], [47.413782, 8.546494], [47.366401, 8.541246], [47.373143, 8.537016], [47.387827, 8.527146], [47.374206, 8.528311], [47.376129, 8.536084], [47.381834, 8.531116], [47.334757, 8.529847], [47.418599, 8.507816], [47.378443, 8.510057], [47.422849, 8.494608], [47.383014, 8.529034], [47.367326, 8.54427], [47.36004, 8.516624], [47.359556, 8.535571], [47.376861, 8.528154], [47.397644, 8.546582], [47.373874, 8.526305], [47.374232, 8.544533], [47.372827, 8.525767], [47.414244, 8.541507], [47.372415, 8.536008], [47.401974, 8.499282], [47.366128, 8.51398], [47.415264, 8.508558], [47.374106, 8.502408], [47.369401, 8.526598], [47.371716, 8.519561], [47.367074, 8.523426], [47.375141, 8.552907], [47.391587, 8.519421], [47.387731, 8.490853], [47.365565, 8.509652], [47.395219, 8.5453], [47.392323, 8.492347], [47.389478, 8.487655], [47.37436, 8.552719], [47.370362, 8.514237], [47.384797, 8.531746], [47.413936, 8.545463], [47.378128, 8.526378], [47.37379, 8.481745], [47.375511, 8.563853], [47.380313, 8.527416], [47.356731, 8.535658], [47.392517, 8.539097], [47.391049, 8.523053], [47.371634, 8.515786], [47.392782, 8.524399], [47.359375, 8.522408], [47.364906, 8.531034], [47.378872, 8.542762], [47.380215, 8.483487], [47.359536, 8.592998], [47.366522, 8.540904], [47.412418, 8.529199], [47.406077, 8.553608], [47.390324, 8.490639], [47.399636, 8.543351], [47.384117, 8.532275], [47.374469, 8.539453], [47.383143, 8.540175], [47.335109, 8.519203], [47.36795, 8.494924], [47.37983, 8.525261], [47.393808, 8.493251], [47.376513, 8.499834], [47.38435, 8.548398], [47.367784, 8.496285], [47.386474, 8.497516], [47.37017, 8.548805], [47.391622, 8.538602], [47.419569, 8.548032], [47.380719, 8.541476], [47.36436, 8.555211], [47.360044, 8.526764], [47.378481, 8.54041], [47.41364, 8.514926], [47.369311, 8.520823], [47.36979, 8.536801], [47.378408, 8.540514], [47.362628, 8.531318], [47.391024, 8.526681], [47.373047, 8.532949], [47.386326, 8.522135], [47.366091, 8.532289], [47.38248, 8.552015], [47.365334, 8.530539], [47.39766, 8.533666], [47.408748, 8.579502], [47.391532, 8.545144], [47.373859, 8.50284], [47.414786, 8.560919], [47.397846, 8.533975], [47.344816, 8.533375], [47.369181, 8.527997], [47.366634, 8.54137], [47.412369, 8.546584], [47.368082, 8.522413], [47.391202, 8.539216], [47.371916, 8.550536], [47.388448, 8.491158], [47.383506, 8.549202], [47.379059, 8.511473], [47.365382, 8.521591], [47.371256, 8.550019], [47.39128, 8.546158], [47.424815, 8.537472], [47.36872, 8.558334], [47.421232, 8.500235], [47.371003, 8.516859], [47.364167, 8.546336], [47.379504, 8.537782], [47.366463, 8.53284], [47.374378, 8.55268], [47.378761, 8.527888], [47.399709, 8.495209], [47.387502, 8.496199], [47.372742, 8.53477], [47.383069, 8.505885], [47.375491, 8.486665], [47.394865, 8.525766], [47.40386, 8.568824], [47.377821, 8.50921], [47.399688, 8.517929], [47.387813, 8.520881], [47.391026, 8.545411], [47.360547, 8.527781], [47.370277, 8.518539], [47.382826, 8.515522], [47.372575, 8.473869], [47.38852, 8.523253], [47.383132, 8.513647], [47.363681, 8.498374], [47.35497, 8.526859], [47.406483, 8.567409], [47.41556, 8.513533], [47.385911, 8.53561], [47.363147, 8.55226], [47.399403, 8.49523], [47.360387, 8.523793], [47.389007, 8.489037], [47.363731, 8.535471], [47.379244, 8.525355], [47.382909, 8.506624], [47.369269, 8.537651], [47.390749, 8.524371], [47.382535, 8.554744], [47.360055, 8.579651], [47.392701, 8.515682], [47.351492, 8.534161], [47.420095, 8.547593], [47.368193, 8.546685], [47.354813, 8.532085], [47.417905, 8.505086], [47.401852, 8.492933], [47.379712, 8.542435], [47.414556, 8.484664], [47.364406, 8.546725], [47.383056, 8.514997], [47.384513, 8.53133], [47.386125, 8.546276], [47.383905, 8.530946], [47.364547, 8.532893], [47.380977, 8.549282], [47.383884, 8.529304], [47.376039, 8.541829], [47.386889, 8.534981], [47.387641, 8.499712], [47.370993, 8.508252], [47.383557, 8.554156], [47.381101, 8.491953], [47.358802, 8.534443], [47.375555, 8.535], [47.361896, 8.56906], [47.385987, 8.561426], [47.430702, 8.541795], [47.399103, 8.547394], [47.376803, 8.527649], [47.353839, 8.512236], [47.378945, 8.522753], [47.366833, 8.543135], [47.366392, 8.545085], [47.387129, 8.528589], [47.399894, 8.484707], [47.37747, 8.51499], [47.378454, 8.540436], [47.361399, 8.576635], [47.413919, 8.550989], [47.41313, 8.546003], [47.381011, 8.528715], [47.353548, 8.554296], [47.348847, 8.533246], [47.352177, 8.525452], [47.356897, 8.519022], [47.37639, 8.543624], [47.396829, 8.53398], [47.383227, 8.539859], [47.374292, 8.526856], [47.401636, 8.499845], [47.377335, 8.539804], [47.382495, 8.514416], [47.406589, 8.480374], [47.340957, 8.53716], [47.365698, 8.565698], [47.391812, 8.545096], [47.387748, 8.524985], [47.395561, 8.520561], [47.369045, 8.547908], [47.363627, 8.535006], [47.364005, 8.534034], [47.382422, 8.514507], [47.38153, 8.50396], [47.38618, 8.498212], [47.404932, 8.552948], [47.356274, 8.560694], [47.424121, 8.499179], [47.418431, 8.541925], [47.369437, 8.541746], [47.360578, 8.567629], [47.39889, 8.504069], [47.39108, 8.522643], [47.422743, 8.550961], [47.368382, 8.537275], [47.385572, 8.520067], [47.369905, 8.509223], [47.389247, 8.516698], [47.364656, 8.546029], [47.35137, 8.560855], [47.38151, 8.503232], [47.392065, 8.53832], [47.359694, 8.586157], [47.383923, 8.530934], [47.370717, 8.516734], [47.366398, 8.53787], [47.365828, 8.536243], [47.408345, 8.544141], [47.413083, 8.533082], [47.363459, 8.547924], [47.382318, 8.558527], [47.368743, 8.52477], [47.367094, 8.516462], [47.360064, 8.5227], [47.394788, 8.539542], [47.356265, 8.551441], [47.361401, 8.565409], [47.356866, 8.557185], [47.369303, 8.540737], [47.370153, 8.525024], [47.390968, 8.521197], [47.35518, 8.561267], [47.38396, 8.548761], [47.360654, 8.565406], [47.380506, 8.493028], [47.364935, 8.557116], [47.381716, 8.516877], [47.37118, 8.545701], [47.41478, 8.552186], [47.387952, 8.515639], [47.367363, 8.541385], [47.387965, 8.48593], [47.364983, 8.531472], [47.413903, 8.527149], [47.35656, 8.534688], [47.364248, 8.566714], [47.372194, 8.535566], [47.398268, 8.546251], [47.378434, 8.509964], [47.36821, 8.537377], [47.379787, 8.543085], [47.382282, 8.515974], [47.430301, 8.54982], [47.3919, 8.505135], [47.374326, 8.530803], [47.390107, 8.525656], [47.384483, 8.480974], [47.380363, 8.524981], [47.379364, 8.542123], [47.427079, 8.491431], [47.407418, 8.546984], [47.383106, 8.515382], [47.36925, 8.557445], [47.386908, 8.502108], [47.369732, 8.53341], [47.409956, 8.541193], [47.385115, 8.532282], [47.374497, 8.517419], [47.340515, 8.519127], [47.367896, 8.491957], [47.384437, 8.527011], [47.423084, 8.498483], [47.391341, 8.514912], [47.365406, 8.554054], [47.374236, 8.536495], [47.397526, 8.493841], [47.389625, 8.521461], [47.387815, 8.529305], [47.405807, 8.573052], [47.394528, 8.545179], [47.363731, 8.535458], [47.377182, 8.55299], [47.398256, 8.537149], [47.405709, 8.591123], [47.372611, 8.534277], [47.371503, 8.547654], [47.385406, 8.536725], [47.363771, 8.575057], [47.397039, 8.511623], [47.374114, 8.502422], [47.409048, 8.53924], [47.379523, 8.537717], [47.379452, 8.528114], [47.362581, 8.534322], [47.375915, 8.48854], [47.378282, 8.520515], [47.372698, 8.572864], [47.377104, 8.529125], [47.378625, 8.519449], [47.367481, 8.552496], [47.388867, 8.522637], [47.349984, 8.566557], [47.37589, 8.537575], [47.349807, 8.564409], [47.398281, 8.537335], [47.404417, 8.556965], [47.357153, 8.558237], [47.349874, 8.573173], [47.351039, 8.572708], [47.341818, 8.530826], [47.370299, 8.522856], [47.357009, 8.534777], [47.382065, 8.528565], [47.386302, 8.497619], [47.360447, 8.526931], [47.393858, 8.505426], [47.378537, 8.542027], [47.413589, 8.572052], [47.402137, 8.497178], [47.414526, 8.556104], [47.398842, 8.538923], [47.389621, 8.543753], [47.375616, 8.53712], [47.376784, 8.526748], [47.388818, 8.541193], [47.405671, 8.549995], [47.415411, 8.51406], [47.39146, 8.486383], [47.390889, 8.521897], [47.410221, 8.541689], [47.369622, 8.5203], [47.352911, 8.524805], [47.41062, 8.546985], [47.373014, 8.536364], [47.373532, 8.519584], [47.389516, 8.521538], [47.384781, 8.509376], [47.366538, 8.541964], [47.38245, 8.529711], [47.390433, 8.488455], [47.369826, 8.510916], [47.380135, 8.548059], [47.358301, 8.58156], [47.390975, 8.53945], [47.383905, 8.530893], [47.377127, 8.541825], [47.360382, 8.564739], [47.392144, 8.502027], [47.360593, 8.56338], [47.396187, 8.51713], [47.391556, 8.516996], [47.363827, 8.548924], [47.360747, 8.52564], [47.383393, 8.498938], [47.382835, 8.530845], [47.39314, 8.524592], [47.369146, 8.504746], [47.371599, 8.521399], [47.369716, 8.525585], [47.37715, 8.540396], [47.402351, 8.499395], [47.393866, 8.505505], [47.375112, 8.545584], [47.339609, 8.517984], [47.406735, 8.584719], [47.386931, 8.546585], [47.389212, 8.488272], [47.373925, 8.544632], [47.35737, 8.527014], [47.357981, 8.520368], [47.362313, 8.525632], [47.363913, 8.531477], [47.360933, 8.571806], [47.366266, 8.545016], [47.375899, 8.538529], [47.364145, 8.549527], [47.364519, 8.547165], [47.362417, 8.504783], [47.334736, 8.538686], [47.386861, 8.528424], [47.392277, 8.503235], [47.368418, 8.515363], [47.400826, 8.492025], [47.328359, 8.512821], [47.387101, 8.481979], [47.373768, 8.545066], [47.410492, 8.572331], [47.377648, 8.551238], [47.375903, 8.536251], [47.378344, 8.527283], [47.376538, 8.527088], [47.377803, 8.521724], [47.367373, 8.494026], [47.388017, 8.485163], [47.399774, 8.504723], [47.391055, 8.479381], [47.367767, 8.496231], [47.393573, 8.529237], [47.372613, 8.529325], [47.373178, 8.531468], [47.358375, 8.520588], [47.387852, 8.486471], [47.407732, 8.584038], [47.407722, 8.584051], [47.366056, 8.53687], [47.377762, 8.52898], [47.342182, 8.530317], [47.353012, 8.509175], [47.393805, 8.532262], [47.401803, 8.500232], [47.412028, 8.531391], [47.401785, 8.500258], [47.373856, 8.528172], [47.397778, 8.533549], [47.378436, 8.541389], [47.37966, 8.537534], [47.392501, 8.492483], [47.368946, 8.540385], [47.402894, 8.546943], [47.376144, 8.527834], [47.379307, 8.537752], [47.369479, 8.525884], [47.406388, 8.591601], [47.381827, 8.529977], [47.377077, 8.527231], [47.39069, 8.491918], [47.369604, 8.533593], [47.354605, 8.558448], [47.409438, 8.544548], [47.409374, 8.54468], [47.410874, 8.544896], [47.400576, 8.586243], [47.360275, 8.535665], [47.357945, 8.520447], [47.396671, 8.505707], [47.371981, 8.542818], [47.378714, 8.51475], [47.377061, 8.544035], [47.383948, 8.533993], [47.335143, 8.541288], [47.362539, 8.534096], [47.394165, 8.517884], [47.3909, 8.479577], [47.38239, 8.528479], [47.399637, 8.520459], [47.419826, 8.504461], [47.421646, 8.550077], [47.397381, 8.531753], [47.383696, 8.515804], [47.376929, 8.540868], [47.366292, 8.54511], [47.369122, 8.555748], [47.364023, 8.528381], [47.382228, 8.505352], [47.387646, 8.544229], [47.380314, 8.528304], [47.379213, 8.544769], [47.366205, 8.537336], [47.389726, 8.511568], [47.388147, 8.541762], [47.364149, 8.546349], [47.383116, 8.541035], [47.406521, 8.576354], [47.385003, 8.508718], [47.391342, 8.535867], [47.335353, 8.519062], [47.399699, 8.543379], [47.379378, 8.495362], [47.378974, 8.54242], [47.383741, 8.515792], [47.410076, 8.542826], [47.374439, 8.539744], [47.413219, 8.532966], [47.370562, 8.524556], [47.37821, 8.509959], [47.401322, 8.543916], [47.370197, 8.548805], [47.402818, 8.486646], [47.373192, 8.543161], [47.382998, 8.485117], [47.368053, 8.540618], [47.368778, 8.52877], [47.373596, 8.547062], [47.391722, 8.485183], [47.383081, 8.528625], [47.382839, 8.495643], [47.38482, 8.527363], [47.414775, 8.561078], [47.378307, 8.541704], [47.371057, 8.530286], [47.377392, 8.529091], [47.379049, 8.518359], [47.378084, 8.548056], [47.357053, 8.535784], [47.399943, 8.587567], [47.358238, 8.51893], [47.376575, 8.527035], [47.370038, 8.503545], [47.391293, 8.538237], [47.390722, 8.527285], [47.39378, 8.498231], [47.402519, 8.490787], [47.413984, 8.525242], [47.392941, 8.524628], [47.396188, 8.516997], [47.35435, 8.575307], [47.377184, 8.509051], [47.378966, 8.529084], [47.388781, 8.537497], [47.36647, 8.551919], [47.338595, 8.53109], [47.419179, 8.506397], [47.373471, 8.528958], [47.386815, 8.535139], [47.384038, 8.480476], [47.425852, 8.493766], [47.398196, 8.585926], [47.334819, 8.519395], [47.385519, 8.530489], [47.386873, 8.486253], [47.413531, 8.530322], [47.362483, 8.534254], [47.391291, 8.523203], [47.391099, 8.546287], [47.375762, 8.549093], [47.391837, 8.517651], [47.354713, 8.556571], [47.372241, 8.493897], [47.390291, 8.525249], [47.409337, 8.546666], [47.341865, 8.530562], [47.386915, 8.518863], [47.375598, 8.493698], [47.386886, 8.522915], [47.380738, 8.553634], [47.374369, 8.541437], [47.378868, 8.540405], [47.361981, 8.526512], [47.347601, 8.531804], [47.368047, 8.54128], [47.376912, 8.535147], [47.341498, 8.530356], [47.383279, 8.540032], [47.369797, 8.51024], [47.365076, 8.55937], [47.33428, 8.516474], [47.352526, 8.508239], [47.38415, 8.530647], [47.378473, 8.526995], [47.351394, 8.524536], [47.370485, 8.549738], [47.379279, 8.559311], [47.367042, 8.538214], [47.389529, 8.540135], [47.395398, 8.551967], [47.422938, 8.498705], [47.370292, 8.550131], [47.407111, 8.487353], [47.37577, 8.559476], [47.388564, 8.523293], [47.377234, 8.540093], [47.385971, 8.531201], [47.357936, 8.52046], [47.362452, 8.510702], [47.391529, 8.542693], [47.380756, 8.512791], [47.37897, 8.559715], [47.366824, 8.543161], [47.415501, 8.54645], [47.371468, 8.5429], [47.411191, 8.546533], [47.397338, 8.587127], [47.383459, 8.587092], [47.358246, 8.518017], [47.376753, 8.54334], [47.36393, 8.547563], [47.408189, 8.559376], [47.368733, 8.54761], [47.362473, 8.504599], [47.375369, 8.490225], [47.393835, 8.506922], [47.391781, 8.487608], [47.391637, 8.487631], [47.386784, 8.534688], [47.380174, 8.52789], [47.381359, 8.548892], [47.384408, 8.53195], [47.375879, 8.527392], [47.414904, 8.552348], [47.373029, 8.539516], [47.338383, 8.516252], [47.404846, 8.588388], [47.369566, 8.517597], [47.354658, 8.534173], [47.374616, 8.486886], [47.402396, 8.49937], [47.374178, 8.502383], [47.395105, 8.531732], [47.380996, 8.504387], [47.361412, 8.513223], [47.391019, 8.522469], [47.392002, 8.538358], [47.378057, 8.541461], [47.391013, 8.521184], [47.381295, 8.517676], [47.377753, 8.507818], [47.379577, 8.526302], [47.425083, 8.537663], [47.391427, 8.513417], [47.376288, 8.484032], [47.410537, 8.572279], [47.373017, 8.531332], [47.371731, 8.517893], [47.360625, 8.535712], [47.367102, 8.544173], [47.387126, 8.545966], [47.41086, 8.563156], [47.391078, 8.522894], [47.388706, 8.542489], [47.370071, 8.511729], [47.427413, 8.546168], [47.425084, 8.53765], [47.360446, 8.552587], [47.413822, 8.545169], [47.356466, 8.556727], [47.377652, 8.518622], [47.376698, 8.544359], [47.357917, 8.520486], [47.368946, 8.540372], [47.366807, 8.518296], [47.375112, 8.545637], [47.407647, 8.530519], [47.374608, 8.538118], [47.378226, 8.527427], [47.33651, 8.517485], [47.371883, 8.542803], [47.386372, 8.497806], [47.340103, 8.525709], [47.370032, 8.512006], [47.384072, 8.532288], [47.376955, 8.527771], [47.403479, 8.556296], [47.396665, 8.529446], [47.365477, 8.539122], [47.381166, 8.49165], [47.389669, 8.48142], [47.369892, 8.539266], [47.420977, 8.5494], [47.380441, 8.519552], [47.392568, 8.527998], [47.420327, 8.535616], [47.405493, 8.565613], [47.388183, 8.519882], [47.391114, 8.522855], [47.354412, 8.526874], [47.387687, 8.529527], [47.363713, 8.560718], [47.40922, 8.571721], [47.406752, 8.557305], [47.365101, 8.534189], [47.384931, 8.508783], [47.390371, 8.525383], [47.360516, 8.531142], [47.361326, 8.522422], [47.364431, 8.554418], [47.406163, 8.550297], [47.370868, 8.548277], [47.39839, 8.494786], [47.395374, 8.533712], [47.372613, 8.535005], [47.413487, 8.530254], [47.38656, 8.517372], [47.405169, 8.541426], [47.373672, 8.534352], [47.374833, 8.514195], [47.383308, 8.543569], [47.40772, 8.548302], [47.372291, 8.573014], [47.420012, 8.506771], [47.395357, 8.521259], [47.367247, 8.546837], [47.386778, 8.547495], [47.377341, 8.512431], [47.392071, 8.499204], [47.425861, 8.493766], [47.333607, 8.514277], [47.369275, 8.532328], [47.429899, 8.549533], [47.371364, 8.524387], [47.328075, 8.529618], [47.363422, 8.534869], [47.3471, 8.526778], [47.350278, 8.529318], [47.392302, 8.502454], [47.398294, 8.536978], [47.387472, 8.509258], [47.365469, 8.535229], [47.413807, 8.522032], [47.403787, 8.548591], [47.39131, 8.537324], [47.376594, 8.52689], [47.40161, 8.544836], [47.382395, 8.514467], [47.414905, 8.541018], [47.37302, 8.532908], [47.386508, 8.518126], [47.374637, 8.5293], [47.369009, 8.525186], [47.387909, 8.536486], [47.364891, 8.532649], [47.374711, 8.537657], [47.362594, 8.547178], [47.361522, 8.534102], [47.380171, 8.478348], [47.390603, 8.489585], [47.352814, 8.528417], [47.379645, 8.527707], [47.358279, 8.573736], [47.354868, 8.574762], [47.38728, 8.500857], [47.405391, 8.554786], [47.367468, 8.545412], [47.365492, 8.563708], [47.354238, 8.553636], [47.362502, 8.534149], [47.422323, 8.497103], [47.376011, 8.541921], [47.392533, 8.50279], [47.379296, 8.553868], [47.373618, 8.522936], [47.372455, 8.538379], [47.387679, 8.498534], [47.366546, 8.540269], [47.380133, 8.565924], [47.384938, 8.532067], [47.395688, 8.545217], [47.405481, 8.578769], [47.379387, 8.548149], [47.361467, 8.561412], [47.380247, 8.507563], [47.400415, 8.543738], [47.419569, 8.548072], [47.379299, 8.495215], [47.371254, 8.539903], [47.369155, 8.527811], [47.373195, 8.535335], [47.408982, 8.539543], [47.363619, 8.50024], [47.379402, 8.523902], [47.404836, 8.573959], [47.384269, 8.507445], [47.37503, 8.540113], [47.351042, 8.525641], [47.391116, 8.545373], [47.419569, 8.548059], [47.380043, 8.520763], [47.373467, 8.519874], [47.371334, 8.517117], [47.430662, 8.549775], [47.357556, 8.521617], [47.388581, 8.520605], [47.389341, 8.516236], [47.370831, 8.555757], [47.421103, 8.50059], [47.427564, 8.549127], [47.414587, 8.520391], [47.414821, 8.544223], [47.373929, 8.503001], [47.398827, 8.508903], [47.388789, 8.478317], [47.40428, 8.485111], [47.365556, 8.539335], [47.393507, 8.500504], [47.367686, 8.530098], [47.398391, 8.541868], [47.398295, 8.591373], [47.369283, 8.525682], [47.419113, 8.546817], [47.421961, 8.548148], [47.374648, 8.549891], [47.393988, 8.493188], [47.423582, 8.551668], [47.380414, 8.483371], [47.390901, 8.479564], [47.403828, 8.558264], [47.364626, 8.516875], [47.373156, 8.561831], [47.375736, 8.516676], [47.376868, 8.528352], [47.369774, 8.523216], [47.369772, 8.543447], [47.382516, 8.544546], [47.398201, 8.536366], [47.359874, 8.522882], [47.377882, 8.541867], [47.39111, 8.522352], [47.405887, 8.587669], [47.36097, 8.55138], [47.394865, 8.525753], [47.37989, 8.494538], [47.399701, 8.510656], [47.380995, 8.538091], [47.370971, 8.516461], [47.389773, 8.512324], [47.381809, 8.516587], [47.381827, 8.516561], [47.363459, 8.547937], [47.382099, 8.528804], [47.367936, 8.536908], [47.377543, 8.538815], [47.393874, 8.505625], [47.348735, 8.52607], [47.368643, 8.543848], [47.402043, 8.551271], [47.405275, 8.570471], [47.326519, 8.5133], [47.377397, 8.572435], [47.365086, 8.54899], [47.391823, 8.511518], [47.37074, 8.535298], [47.421121, 8.507416], [47.371744, 8.48814], [47.387563, 8.527392], [47.373786, 8.536592], [47.38342, 8.539399], [47.370887, 8.547178], [47.414212, 8.557886], [47.410366, 8.548145], [47.412292, 8.557382], [47.402698, 8.486975], [47.364621, 8.537396], [47.403801, 8.548022], [47.37351, 8.561547], [47.425841, 8.496921], [47.406799, 8.550575], [47.371767, 8.542681], [47.418842, 8.505886], [47.361108, 8.526468], [47.381104, 8.528492], [47.362541, 8.533818], [47.384864, 8.534092], [47.372823, 8.532798], [47.377561, 8.538802], [47.370007, 8.509874], [47.363191, 8.533633], [47.383249, 8.545025], [47.368434, 8.538468], [47.395412, 8.54019], [47.349996, 8.52775], [47.40078, 8.548873], [47.370488, 8.524859], [47.372948, 8.531026], [47.399559, 8.496823], [47.365571, 8.538673], [47.369269, 8.504046], [47.361708, 8.54851], [47.355839, 8.551789], [47.337082, 8.519759], [47.376947, 8.521905], [47.415361, 8.5628], [47.385159, 8.532389], [47.363372, 8.564338], [47.396754, 8.529527], [47.383515, 8.548262], [47.411308, 8.570665], [47.362434, 8.568264], [47.373904, 8.538303], [47.382852, 8.513748], [47.377111, 8.54164], [47.372875, 8.536864], [47.365162, 8.553228], [47.362055, 8.55454], [47.338236, 8.539473], [47.353599, 8.60195], [47.36741, 8.544855], [47.388977, 8.495248], [47.422411, 8.549032], [47.327419, 8.529618], [47.36106, 8.531577], [47.37376, 8.536446], [47.369107, 8.525307], [47.390841, 8.522201], [47.393368, 8.499004], [47.367563, 8.529698], [47.391781, 8.487621], [47.42069, 8.502477], [47.415038, 8.515471], [47.393721, 8.505622], [47.411498, 8.526556], [47.335229, 8.533139], [47.38179, 8.529195], [47.384979, 8.501632], [47.392341, 8.503117], [47.369595, 8.520273], [47.395744, 8.522221], [47.370024, 8.548987], [47.357944, 8.520473], [47.36607, 8.533547], [47.36771, 8.54641], [47.353663, 8.55635], [47.363767, 8.520207], [47.393991, 8.525921], [47.377469, 8.527636], [47.378464, 8.526995], [47.351856, 8.525168], [47.38277, 8.541505], [47.389648, 8.514136], [47.363967, 8.533318], [47.396825, 8.529675], [47.383784, 8.532295], [47.403836, 8.567698], [47.381942, 8.550957], [47.387345, 8.527692], [47.39634, 8.545614], [47.40483, 8.548613], [47.402689, 8.487001], [47.378095, 8.483194], [47.373247, 8.526027], [47.37894, 8.508756], [47.362431, 8.533115], [47.356339, 8.555917], [47.398533, 8.538254], [47.370079, 8.548896], [47.372062, 8.521898], [47.409919, 8.543193], [47.406853, 8.550576], [47.399062, 8.542293], [47.371734, 8.519548], [47.370732, 8.526585], [47.374187, 8.549233], [47.367111, 8.536627], [47.381142, 8.534929], [47.359985, 8.594887], [47.40712, 8.586702], [47.344843, 8.533402], [47.364344, 8.56612], [47.369709, 8.517706], [47.368208, 8.496134], [47.365747, 8.549494], [47.369898, 8.510918], [47.424676, 8.552923], [47.364733, 8.537875], [47.384483, 8.532627], [47.363775, 8.547771], [47.426315, 8.547112], [47.39737, 8.476312], [47.369766, 8.520276], [47.377278, 8.557031], [47.402645, 8.486908], [47.37765, 8.574201], [47.37009, 8.548737], [47.399348, 8.548075], [47.348773, 8.563435], [47.371876, 8.547291], [47.366648, 8.535147], [47.383414, 8.548458], [47.398827, 8.533875], [47.392096, 8.503364], [47.391067, 8.523093], [47.399837, 8.544018], [47.424084, 8.549094], [47.375992, 8.488899], [47.395452, 8.551968], [47.381881, 8.516549], [47.364193, 8.547356], [47.380425, 8.53457], [47.392275, 8.548338], [47.375687, 8.5372], [47.372615, 8.53486], [47.371785, 8.534167], [47.425742, 8.494003], [47.420845, 8.508113], [47.397789, 8.546466], [47.381792, 8.529883], [47.377332, 8.541975], [47.390978, 8.473922], [47.400147, 8.494489], [47.377505, 8.498543], [47.403071, 8.498363], [47.395195, 8.473103], [47.381809, 8.516587], [47.413391, 8.544167], [47.408711, 8.546256], [47.418597, 8.508028], [47.377117, 8.541017], [47.411073, 8.545762], [47.369158, 8.52752], [47.423728, 8.550531], [47.377349, 8.498911], [47.414185, 8.546688], [47.369379, 8.537401], [47.364275, 8.565867], [47.355905, 8.535522], [47.40346, 8.582992], [47.414777, 8.560919], [47.377224, 8.540198], [47.417718, 8.483149], [47.378804, 8.54239], [47.379343, 8.537726], [47.365741, 8.535963], [47.385444, 8.508714], [47.391811, 8.517637], [47.398759, 8.467874], [47.377256, 8.538676], [47.359923, 8.535724], [47.372472, 8.535731], [47.39626, 8.509236], [47.377605, 8.52654], [47.369436, 8.518959], [47.375934, 8.553626], [47.419715, 8.547823], [47.404447, 8.580536], [47.379205, 8.529486], [47.412244, 8.546502], [47.371335, 8.536104], [47.353577, 8.576164], [47.409487, 8.540442], [47.421471, 8.538264], [47.367193, 8.523176], [47.38687, 8.490571], [47.339496, 8.531823], [47.377161, 8.523975], [47.375622, 8.559896], [47.391466, 8.486635], [47.379554, 8.51625], [47.382142, 8.54038], [47.378615, 8.528176], [47.39378, 8.49337], [47.369501, 8.526414], [47.371317, 8.546406], [47.42744, 8.546128], [47.361351, 8.526526], [47.373102, 8.561882], [47.390757, 8.51298], [47.351516, 8.5607], [47.363749, 8.535419], [47.360448, 8.531684], [47.342154, 8.530449], [47.404909, 8.557174], [47.401495, 8.548345], [47.382865, 8.540024], [47.355752, 8.535479], [47.396351, 8.472556], [47.3763, 8.527546], [47.399712, 8.518208], [47.379428, 8.511427], [47.341917, 8.530775], [47.370164, 8.514233], [47.397571, 8.488941], [47.391802, 8.518511], [47.364754, 8.554451], [47.375204, 8.533165], [47.364773, 8.56642], [47.378827, 8.542774], [47.375974, 8.541007], [47.41063, 8.553491], [47.369126, 8.547949], [47.381799, 8.51668], [47.398034, 8.535886], [47.360978, 8.599052], [47.370263, 8.491792], [47.415141, 8.570614], [47.375278, 8.543297], [47.377791, 8.51632], [47.395624, 8.545229], [47.354411, 8.526014], [47.371111, 8.523561], [47.368608, 8.543728], [47.406592, 8.503826], [47.356484, 8.510185], [47.371618, 8.517493], [47.372629, 8.534291], [47.374454, 8.539175], [47.370771, 8.530055], [47.364005, 8.53312], [47.398836, 8.502081], [47.398644, 8.59154], [47.386629, 8.541532], [47.373007, 8.531438], [47.394865, 8.525766], [47.403055, 8.555452], [47.3426, 8.530881], [47.397252, 8.541527], [47.376592, 8.534716], [47.361709, 8.549344], [47.374413, 8.54157], [47.376717, 8.548968], [47.373061, 8.542748], [47.392434, 8.491025], [47.360783, 8.52568], [47.390906, 8.522957], [47.378582, 8.542067], [47.342671, 8.530896], [47.389691, 8.511462], [47.375425, 8.547643], [47.38996, 8.510633], [47.365916, 8.533649], [47.375882, 8.54217], [47.399376, 8.514637], [47.370304, 8.548861], [47.369447, 8.54348], [47.359844, 8.549675], [47.369707, 8.536985], [47.415901, 8.512573], [47.405826, 8.591099], [47.378381, 8.541414], [47.396094, 8.545066], [47.379467, 8.527518], [47.375056, 8.523072], [47.393511, 8.532905], [47.423547, 8.555352], [47.370989, 8.516421], [47.37965, 8.515656], [47.374644, 8.539947], [47.37094, 8.555706], [47.358994, 8.550134], [47.370257, 8.491487], [47.422042, 8.498277], [47.374195, 8.544572], [47.391372, 8.536477], [47.374807, 8.544611], [47.378369, 8.541732], [47.412543, 8.546335], [47.389594, 8.473776], [47.360808, 8.56627], [47.385137, 8.476272], [47.375159, 8.52551], [47.378165, 8.509879], [47.373545, 8.536375], [47.370274, 8.477665], [47.370026, 8.525194], [47.385338, 8.508473], [47.355659, 8.555518], [47.374421, 8.521721], [47.378327, 8.527257], [47.40859, 8.580943], [47.374607, 8.527776], [47.38495, 8.508664], [47.344233, 8.53507], [47.381772, 8.516706], [47.351087, 8.526581], [47.376945, 8.516356], [47.360532, 8.525636], [47.399377, 8.572929], [47.388634, 8.537812], [47.366148, 8.540512], [47.396279, 8.545428], [47.420808, 8.502347], [47.370961, 8.561003], [47.417379, 8.545654], [47.389745, 8.511489], [47.377264, 8.498327], [47.385493, 8.530462], [47.357442, 8.521337], [47.408001, 8.489385], [47.383333, 8.52765], [47.375134, 8.518597], [47.398898, 8.506056], [47.391114, 8.522842], [47.3666, 8.566273], [47.369122, 8.540799], [47.396311, 8.486001], [47.403656, 8.57037], [47.377299, 8.548304], [47.353551, 8.576071], [47.425175, 8.494986], [47.363093, 8.549492], [47.335716, 8.540612], [47.37432, 8.523838], [47.430737, 8.550386], [47.376556, 8.525194], [47.36468, 8.547247], [47.387233, 8.497094], [47.390576, 8.545428], [47.398192, 8.494808], [47.347962, 8.525009], [47.356676, 8.534836], [47.372037, 8.547295], [47.428538, 8.489207], [47.375619, 8.565776], [47.374499, 8.495782], [47.37555, 8.489103], [47.407741, 8.543347], [47.368393, 8.53517], [47.362978, 8.548337], [47.422811, 8.550472], [47.374457, 8.541651], [47.376716, 8.540546], [47.387049, 8.501501], [47.423039, 8.494519], [47.372561, 8.517632], [47.391022, 8.523079], [47.379721, 8.551772], [47.379072, 8.538806], [47.362261, 8.559311], [47.387323, 8.488196], [47.42998, 8.549508], [47.381102, 8.580817], [47.378023, 8.527939], [47.378979, 8.515192], [47.398282, 8.537229], [47.351468, 8.529064], [47.411999, 8.528806], [47.406907, 8.550577], [47.385502, 8.520807], [47.395327, 8.518702], [47.359692, 8.561653], [47.388541, 8.55132], [47.395296, 8.514264], [47.392689, 8.52755], [47.414867, 8.551565], [47.412363, 8.515827], [47.362967, 8.559736], [47.414938, 8.551713], [47.358615, 8.589774], [47.411245, 8.570704], [47.408958, 8.539318], [47.36787, 8.533412], [47.423853, 8.53838], [47.367936, 8.546296], [47.405211, 8.571476], [47.391244, 8.515665], [47.354778, 8.574839], [47.364801, 8.519302], [47.368552, 8.518358], [47.425629, 8.4975], [47.420325, 8.535749], [47.376738, 8.527807], [47.382192, 8.516025], [47.391876, 8.518341], [47.362498, 8.568172], [47.375837, 8.536568], [47.377008, 8.523045], [47.372208, 8.547338], [47.408736, 8.57978], [47.399809, 8.516435], [47.345674, 8.53015], [47.415949, 8.51427], [47.351262, 8.560853], [47.378282, 8.509855], [47.365618, 8.539469], [47.36199, 8.549124], [47.369463, 8.564189], [47.369209, 8.554227], [47.388238, 8.497366], [47.395098, 8.536276], [47.388856, 8.520942], [47.372066, 8.522521], [47.364116, 8.523206], [47.357968, 8.532255], [47.389709, 8.511449], [47.373316, 8.533047], [47.357906, 8.532241], [47.37654, 8.543919], [47.369696, 8.512383], [47.408554, 8.539203], [47.372332, 8.542812], [47.371725, 8.519561], [47.356314, 8.556591], [47.387071, 8.519488], [47.383916, 8.497903], [47.408756, 8.579555], [47.402421, 8.495687], [47.367599, 8.495884], [47.404741, 8.483848], [47.367606, 8.523291], [47.364366, 8.536822], [47.406907, 8.537407], [47.363517, 8.535215], [47.376007, 8.559123], [47.378288, 8.530408], [47.363368, 8.529189], [47.399722, 8.543777], [47.363898, 8.526353], [47.379546, 8.51033], [47.332444, 8.529932], [47.359865, 8.565151], [47.406911, 8.536003], [47.377036, 8.559714], [47.378607, 8.542253], [47.377744, 8.527059], [47.367995, 8.534513], [47.379285, 8.555947], [47.382158, 8.542486], [47.388579, 8.536976], [47.379241, 8.538082], [47.335946, 8.540974], [47.385048, 8.523182], [47.364595, 8.566191], [47.390666, 8.510104], [47.375484, 8.563839], [47.378475, 8.525816], [47.356668, 8.526166], [47.407482, 8.544084], [47.374196, 8.544545], [47.374658, 8.549799], [47.368786, 8.528783], [47.373067, 8.536551], [47.360151, 8.568149], [47.380358, 8.541641], [47.406844, 8.550589], [47.369575, 8.520537], [47.339407, 8.531808], [47.376098, 8.516445], [47.376832, 8.544507], [47.373931, 8.519248], [47.378097, 8.516274], [47.381188, 8.504046], [47.375098, 8.543319], [47.345155, 8.534626], [47.392231, 8.476702], [47.381001, 8.507698], [47.40377, 8.482836], [47.35904, 8.500307], [47.41965, 8.548087], [47.367589, 8.560853], [47.377833, 8.507926], [47.404084, 8.572658], [47.336803, 8.536995], [47.375985, 8.527566], [47.380905, 8.538089], [47.378325, 8.540711], [47.385683, 8.501355], [47.388346, 8.497368], [47.418386, 8.545755], [47.39096, 8.522998], [47.378434, 8.501197], [47.379952, 8.506366], [47.384271, 8.56029], [47.392397, 8.468188], [47.387704, 8.572654], [47.373758, 8.519523], [47.411869, 8.537774], [47.377522, 8.529584], [47.377521, 8.541992], [47.368498, 8.496921], [47.37769, 8.510743], [47.405811, 8.590781], [47.394215, 8.489987], [47.340528, 8.530243], [47.374286, 8.546428], [47.392614, 8.480127], [47.424657, 8.548417], [47.378671, 8.530813], [47.362866, 8.512616], [47.377768, 8.537813], [47.389583, 8.511512], [47.362555, 8.535209], [47.35821, 8.518069], [47.357483, 8.521748], [47.362618, 8.519985], [47.366765, 8.544577], [47.370277, 8.548847], [47.408309, 8.526081], [47.379635, 8.527787], [47.3795, 8.510449], [47.360615, 8.524446], [47.334665, 8.534768], [47.358244, 8.588111], [47.339622, 8.52996], [47.335048, 8.526585], [47.382785, 8.575277], [47.378216, 8.541715], [47.386016, 8.53785], [47.378183, 8.509959], [47.365267, 8.547035], [47.392207, 8.524295], [47.369453, 8.525831], [47.413975, 8.479299], [47.386472, 8.496722], [47.363102, 8.517281], [47.406374, 8.547029], [47.357308, 8.598112], [47.378966, 8.542353], [47.376707, 8.544412], [47.343885, 8.530074], [47.404956, 8.500772], [47.392728, 8.523458], [47.375341, 8.517595], [47.32689, 8.513096], [47.368531, 8.490394], [47.367693, 8.494482], [47.34845, 8.53427], [47.367113, 8.527901], [47.37589, 8.538502], [47.358262, 8.523074], [47.407018, 8.481733], [47.378699, 8.542017], [47.370765, 8.549598], [47.408456, 8.546674], [47.395903, 8.521469], [47.379575, 8.542631], [47.337847, 8.532213], [47.364294, 8.533934], [47.338163, 8.530129], [47.414233, 8.551035], [47.368583, 8.524635], [47.381738, 8.516493], [47.343154, 8.525506], [47.389898, 8.484008], [47.40296, 8.490849], [47.407811, 8.580502], [47.378614, 8.542426], [47.383285, 8.553488], [47.377903, 8.510019], [47.367784, 8.496298], [47.387659, 8.486917], [47.338092, 8.53857], [47.392878, 8.522745], [47.390968, 8.478068], [47.356434, 8.531866], [47.364872, 8.565495], [47.394113, 8.493284], [47.359547, 8.53561], [47.408835, 8.55022], [47.397587, 8.505845], [47.373094, 8.500945], [47.370571, 8.489574], [47.379165, 8.522294], [47.369115, 8.54158], [47.339874, 8.519392], [47.376069, 8.538665], [47.370662, 8.516812], [47.39629, 8.520536], [47.381144, 8.497993], [47.391052, 8.522801], [47.371323, 8.556059], [47.358548, 8.521372], [47.413793, 8.550112], [47.364384, 8.546222], [47.35738, 8.523136], [47.382905, 8.531072], [47.375969, 8.54155], [47.386212, 8.475763], [47.336047, 8.526579], [47.388305, 8.49101], [47.37722, 8.515779], [47.382573, 8.528178], [47.414088, 8.550237], [47.364721, 8.532592], [47.391846, 8.517717], [47.425424, 8.536861], [47.376599, 8.543403], [47.377656, 8.541969], [47.383632, 8.573296], [47.399695, 8.518049], [47.420471, 8.547826], [47.384015, 8.535505], [47.36903, 8.540996], [47.376016, 8.535684], [47.400262, 8.547498], [47.41457, 8.558993], [47.369428, 8.541745], [47.37598, 8.535684], [47.329855, 8.529734], [47.378782, 8.522843], [47.383208, 8.515092], [47.393883, 8.505664], [47.369039, 8.541049], [47.378872, 8.542749], [47.390054, 8.534172], [47.377363, 8.539751], [47.35019, 8.532903], [47.414911, 8.551672], [47.391133, 8.538923], [47.389883, 8.536076], [47.391616, 8.527846], [47.37754, 8.529584], [47.367611, 8.523714], [47.367775, 8.546253], [47.363281, 8.52213], [47.377483, 8.503946], [47.375713, 8.559779], [47.39147, 8.505841], [47.421564, 8.550168], [47.37572, 8.516543], [47.373095, 8.534525], [47.369039, 8.541022], [47.373163, 8.495332], [47.397482, 8.532457], [47.377434, 8.511149], [47.373785, 8.51947], [47.390414, 8.509158], [47.386607, 8.496698], [47.394555, 8.526157], [47.373861, 8.502615], [47.391361, 8.537616], [47.424052, 8.5134], [47.362502, 8.551055], [47.379452, 8.544257], [47.39084, 8.527181], [47.380517, 8.51721], [47.370956, 8.523809], [47.381579, 8.571623], [47.376184, 8.54452], [47.359427, 8.509039], [47.343623, 8.530121], [47.354998, 8.554101], [47.360565, 8.547691], [47.344062, 8.53504], [47.363959, 8.531306], [47.378442, 8.510083], [47.359793, 8.526733], [47.375548, 8.52434], [47.374713, 8.549641], [47.400307, 8.503514], [47.361766, 8.561127], [47.372506, 8.543478], [47.373181, 8.55186], [47.369398, 8.525909], [47.368404, 8.550992], [47.419831, 8.547932], [47.388837, 8.536293], [47.395646, 8.5354], [47.383033, 8.505845], [47.402504, 8.499398], [47.33118, 8.537025], [47.355434, 8.534917], [47.422058, 8.546494], [47.35945, 8.547628], [47.409701, 8.544408], [47.373163, 8.551807], [47.360878, 8.535611], [47.37018, 8.539338], [47.365732, 8.535923], [47.385352, 8.494329], [47.41404, 8.542126], [47.401315, 8.517962], [47.366873, 8.542752], [47.359897, 8.535684], [47.38308, 8.530691], [47.369098, 8.541474], [47.366807, 8.543081], [47.369124, 8.5254], [47.407635, 8.54781], [47.343645, 8.535455], [47.427288, 8.546099], [47.362423, 8.533035], [47.394751, 8.525446], [47.403478, 8.556309], [47.371124, 8.534644], [47.378299, 8.527349], [47.40236, 8.499316], [47.364615, 8.554938], [47.422782, 8.542228], [47.361059, 8.561748], [47.38696, 8.542665], [47.388608, 8.49132], [47.376484, 8.548844], [47.353196, 8.575653], [47.382109, 8.492794], [47.37885, 8.530909], [47.37438, 8.52707], [47.375027, 8.51555], [47.365714, 8.535936], [47.378706, 8.519385], [47.400186, 8.494132], [47.368923, 8.541867], [47.370109, 8.556947], [47.423872, 8.52502], [47.371988, 8.491071], [47.374244, 8.5243], [47.361635, 8.525963], [47.420806, 8.498703], [47.400683, 8.548633], [47.387927, 8.492009], [47.406629, 8.573653], [47.404099, 8.564656], [47.365135, 8.553215], [47.413959, 8.553349], [47.38566, 8.532691], [47.386735, 8.547335], [47.374572, 8.539932], [47.396177, 8.52684], [47.414905, 8.561638], [47.369662, 8.52565], [47.370499, 8.489612], [47.342636, 8.530895], [47.375809, 8.510772], [47.378582, 8.499809], [47.406063, 8.48088], [47.410897, 8.545294], [47.397, 8.594949], [47.369298, 8.540273], [47.374499, 8.556946], [47.390099, 8.510211], [47.40065, 8.534138], [47.364471, 8.572504], [47.40954, 8.549864], [47.37185, 8.55652], [47.380091, 8.528034], [47.383771, 8.547843], [47.389715, 8.511833], [47.406917, 8.550445], [47.403851, 8.480837], [47.368244, 8.54613], [47.380017, 8.524497], [47.382885, 8.575121], [47.377998, 8.532547], [47.353511, 8.554335], [47.393999, 8.518291], [47.412203, 8.514632], [47.366319, 8.561951], [47.393693, 8.512575], [47.378473, 8.526995], [47.400665, 8.548645], [47.385378, 8.5245], [47.369322, 8.528264], [47.370217, 8.521146], [47.384129, 8.504079], [47.361556, 8.569715], [47.347845, 8.531743], [47.383176, 8.505953], [47.391015, 8.522893], [47.379516, 8.525109], [47.426183, 8.547812], [47.430952, 8.540064], [47.366745, 8.536367], [47.409516, 8.580062], [47.368671, 8.530489], [47.375409, 8.529514], [47.386793, 8.534674], [47.36135, 8.512175], [47.40329, 8.53463], [47.381736, 8.529167], [47.369001, 8.556248], [47.37302, 8.528168], [47.373295, 8.531444], [47.388142, 8.528941], [47.369428, 8.541759], [47.386321, 8.53983], [47.368905, 8.559636], [47.364177, 8.526292], [47.378912, 8.526209], [47.367916, 8.538947], [47.379614, 8.510742], [47.380119, 8.527916], [47.392638, 8.524343], [47.376245, 8.55497], [47.38661, 8.541571], [47.348747, 8.53425], [47.39951, 8.495325], [47.420462, 8.54878], [47.411187, 8.526139], [47.354372, 8.523524], [47.403861, 8.568811], [47.402786, 8.577533], [47.380451, 8.528081], [47.365912, 8.5397], [47.368267, 8.541841], [47.371481, 8.530109], [47.391419, 8.516225], [47.358337, 8.586061], [47.372723, 8.534849], [47.377926, 8.536293], [47.352857, 8.524897], [47.377695, 8.525535], [47.414024, 8.52197], [47.366573, 8.541157], [47.361621, 8.526479], [47.406746, 8.580863], [47.366151, 8.521143], [47.377255, 8.538769], [47.338835, 8.538942], [47.398748, 8.532682], [47.37383, 8.536646], [47.383272, 8.530364], [47.370707, 8.516747], [47.374595, 8.5166], [47.406228, 8.543528], [47.374457, 8.541664], [47.39165, 8.504944], [47.413936, 8.542641], [47.362612, 8.533886], [47.370073, 8.52113], [47.366383, 8.541285], [47.378624, 8.548054], [47.371102, 8.538827], [47.378, 8.519847], [47.392831, 8.474952], [47.360687, 8.524421], [47.36507, 8.521293], [47.41524, 8.478687], [47.402146, 8.546186], [47.354009, 8.555921], [47.372044, 8.529565], [47.344942, 8.533351], [47.358037, 8.525942], [47.405599, 8.565801], [47.378195, 8.510608], [47.399569, 8.548437], [47.390498, 8.509822], [47.378351, 8.541745], [47.377233, 8.540106], [47.384959, 8.485076], [47.357947, 8.554216], [47.391497, 8.478264], [47.380347, 8.493687], [47.38542, 8.522925], [47.352177, 8.525426], [47.388538, 8.491094], [47.389653, 8.521395], [47.406655, 8.56732], [47.376683, 8.50679], [47.3747, 8.541669], [47.381736, 8.52918], [47.419641, 8.555575], [47.396297, 8.545428], [47.377788, 8.498085], [47.36708, 8.541763], [47.383519, 8.587372], [47.424213, 8.543092], [47.338146, 8.538597], [47.354851, 8.556269], [47.380703, 8.52516], [47.392186, 8.516982], [47.421298, 8.549751], [47.391149, 8.522988], [47.36876, 8.528743], [47.409269, 8.550017], [47.358331, 8.518561], [47.394111, 8.493522], [47.389368, 8.521045], [47.400204, 8.494146], [47.388327, 8.537011], [47.387518, 8.527458], [47.367978, 8.544774], [47.405092, 8.585359], [47.400182, 8.592448], [47.369014, 8.538003], [47.394537, 8.514672], [47.427395, 8.546141], [47.391201, 8.489146], [47.393426, 8.524744], [47.393543, 8.524772], [47.380411, 8.525644], [47.329846, 8.52972], [47.429493, 8.514477], [47.378334, 8.541705], [47.361243, 8.502417], [47.398167, 8.501471], [47.380766, 8.537544], [47.362224, 8.526398], [47.362428, 8.612151], [47.369324, 8.557182], [47.375028, 8.519297], [47.388532, 8.496723], [47.371952, 8.522214], [47.361786, 8.552615], [47.358759, 8.533277], [47.355102, 8.52718], [47.373143, 8.537016], [47.369213, 8.501318], [47.428746, 8.489092], [47.358738, 8.509634], [47.368695, 8.493138], [47.377443, 8.541713], [47.36616, 8.530662], [47.41323, 8.545899], [47.379428, 8.529729], [47.414777, 8.560919], [47.391071, 8.478587], [47.378881, 8.542762], [47.384171, 8.511139], [47.368148, 8.523937], [47.398041, 8.534177], [47.356511, 8.523647], [47.396977, 8.512456], [47.377349, 8.527872], [47.349981, 8.576908], [47.40627, 8.597111], [47.378037, 8.499375], [47.423443, 8.49454], [47.379072, 8.527391], [47.365346, 8.521643], [47.381661, 8.543681], [47.382411, 8.499157], [47.368531, 8.55081], [47.42048, 8.547839], [47.371404, 8.562588], [47.381175, 8.491703], [47.372306, 8.526657], [47.38857, 8.525572], [47.378879, 8.52495], [47.360378, 8.523779], [47.356659, 8.53469], [47.391028, 8.522443], [47.371784, 8.493729], [47.354875, 8.511026], [47.393286, 8.493214], [47.369434, 8.52591], [47.393221, 8.524594], [47.404083, 8.564496], [47.366558, 8.540905], [47.384787, 8.531825], [47.392989, 8.524377], [47.380653, 8.525702], [47.364032, 8.531201], [47.37011, 8.531498], [47.402165, 8.495112], [47.374992, 8.527983], [47.382399, 8.541762], [47.377504, 8.54378], [47.384197, 8.516119], [47.374436, 8.540075], [47.388976, 8.515845], [47.394167, 8.493311], [47.377355, 8.499282], [47.427404, 8.546154], [47.35741, 8.521852], [47.373975, 8.47624], [47.41589, 8.546246], [47.355631, 8.532167], [47.413083, 8.546307], [47.429892, 8.53808], [47.389583, 8.511526], [47.357881, 8.572112], [47.407517, 8.547039], [47.379771, 8.527683], [47.372629, 8.534317], [47.364745, 8.53761], [47.368902, 8.540358], [47.385413, 8.528368], [47.344025, 8.527589], [47.349929, 8.533943], [47.407846, 8.547444], [47.368959, 8.524788], [47.349722, 8.561125], [47.389829, 8.491636], [47.422595, 8.495849], [47.405875, 8.548423], [47.367673, 8.538982], [47.361083, 8.571187], [47.381459, 8.506753], [47.391421, 8.52563], [47.366447, 8.566283], [47.424968, 8.505837], [47.378725, 8.542163], [47.377389, 8.548293], [47.36162, 8.518946], [47.419569, 8.55556], [47.423892, 8.504437], [47.412827, 8.517175], [47.38674, 8.488038], [47.366941, 8.543111], [47.391648, 8.538735], [47.366893, 8.544367], [47.410042, 8.532105], [47.397747, 8.51377], [47.373942, 8.544699], [47.366536, 8.540322], [47.346258, 8.531142], [47.379613, 8.537652], [47.414947, 8.546094], [47.369409, 8.541824], [47.376466, 8.548857], [47.354053, 8.527754], [47.420725, 8.502597], [47.366297, 8.54082], [47.369577, 8.467072], [47.402792, 8.501285], [47.393872, 8.504896], [47.381194, 8.537897], [47.386913, 8.519048], [47.417779, 8.548074], [47.380265, 8.512384], [47.418854, 8.50749], [47.393721, 8.482029], [47.38423, 8.53931], [47.366562, 8.540455], [47.390763, 8.522875], [47.41405, 8.546685], [47.371572, 8.538532], [47.367922, 8.540298], [47.352119, 8.524868], [47.36764, 8.52345], [47.376903, 8.543622], [47.418519, 8.547812], [47.378794, 8.542429], [47.368366, 8.54645], [47.368152, 8.533047], [47.416726, 8.572225], [47.374921, 8.534457], [47.370798, 8.524335], [47.35534, 8.553129], [47.390698, 8.489004], [47.404753, 8.574156], [47.392512, 8.523414], [47.369111, 8.550411], [47.379195, 8.525778], [47.381278, 8.531952], [47.335317, 8.519022], [47.372737, 8.537153], [47.37398, 8.516005], [47.379344, 8.544202], [47.372062, 8.529578], [47.374686, 8.512563], [47.347889, 8.532723], [47.405001, 8.482953], [47.38149, 8.503417], [47.38221, 8.501405], [47.369129, 8.511405], [47.374597, 8.517276], [47.369689, 8.536971], [47.368337, 8.541048], [47.361412, 8.535252], [47.3657, 8.552498], [47.389512, 8.521035], [47.366729, 8.534196], [47.374668, 8.52411], [47.377888, 8.521302], [47.368446, 8.546624], [47.370466, 8.515656], [47.412215, 8.523987], [47.395104, 8.522274], [47.374044, 8.49241], [47.376045, 8.553337], [47.377779, 8.55818], [47.360368, 8.523858], [47.379819, 8.521619], [47.401803, 8.585924], [47.384544, 8.53186], [47.377766, 8.566933], [47.368458, 8.524513], [47.3582, 8.571642], [47.375047, 8.49194], [47.388606, 8.525559], [47.385536, 8.548542], [47.366938, 8.544342], [47.379451, 8.54431], [47.36515, 8.521427], [47.338101, 8.538557], [47.37136, 8.517223], [47.419179, 8.547481], [47.372376, 8.490881], [47.411062, 8.532736], [47.361865, 8.534016], [47.366833, 8.543095], [47.360423, 8.526653], [47.351535, 8.525823], [47.340338, 8.535109], [47.414062, 8.516882], [47.368207, 8.538688], [47.381907, 8.529091], [47.386189, 8.548039], [47.39133, 8.536145], [47.369912, 8.552242], [47.334557, 8.530002], [47.369836, 8.556358], [47.366161, 8.516152], [47.404883, 8.591927], [47.356542, 8.534688], [47.355309, 8.554505], [47.367767, 8.496191], [47.367915, 8.539119], [47.375069, 8.518742], [47.377304, 8.521171], [47.36549, 8.521606], [47.374514, 8.546088], [47.366638, 8.535266], [47.335573, 8.53296], [47.422228, 8.544695], [47.382425, 8.540915], [47.380725, 8.508315], [47.372734, 8.504857], [47.386223, 8.498346], [47.388335, 8.490679], [47.370344, 8.51813], [47.427431, 8.546181], [47.393861, 8.526302], [47.348883, 8.533234], [47.341127, 8.530573], [47.420706, 8.508588], [47.383059, 8.554477], [47.366262, 8.540766], [47.37976, 8.489967], [47.367209, 8.544268], [47.369275, 8.525668], [47.365153, 8.553228], [47.414065, 8.548911], [47.364324, 8.529777], [47.375379, 8.525038], [47.384196, 8.516238], [47.355578, 8.508009], [47.377359, 8.527819], [47.392487, 8.532752], [47.378102, 8.510844], [47.363387, 8.534749], [47.37574, 8.535414], [47.361296, 8.512201], [47.420766, 8.547023], [47.363626, 8.535098], [47.37722, 8.538636], [47.400313, 8.494069], [47.357682, 8.559294], [47.362646, 8.52078], [47.36039, 8.516723], [47.378439, 8.529643], [47.365807, 8.564575], [47.340931, 8.524707], [47.400365, 8.585761], [47.398898, 8.533003], [47.377522, 8.529571], [47.376499, 8.521657], [47.384782, 8.531401], [47.379644, 8.494851], [47.396204, 8.532576], [47.373702, 8.489556], [47.394644, 8.532981], [47.367162, 8.545472], [47.363616, 8.534291], [47.400996, 8.491088], [47.39866, 8.539184], [47.419623, 8.505107], [47.390653, 8.50866], [47.32606, 8.51341], [47.381399, 8.517162], [47.375191, 8.490989], [47.391085, 8.523093], [47.37288, 8.518181], [47.372054, 8.54082], [47.371067, 8.523454], [47.412506, 8.546388], [47.385736, 8.539831], [47.369133, 8.525387], [47.393404, 8.499985], [47.345022, 8.533472], [47.37599, 8.533658], [47.358383, 8.587797], [47.378009, 8.51896], [47.376584, 8.548766], [47.363753, 8.535948], [47.359065, 8.595119], [47.377692, 8.542009], [47.366121, 8.533813], [47.369031, 8.538043], [47.372387, 8.523719], [47.366675, 8.544654], [47.365046, 8.5315], [47.396795, 8.541371], [47.410305, 8.542367], [47.377655, 8.5383], [47.404573, 8.486548], [47.375943, 8.549018], [47.355691, 8.554103], [47.41657, 8.553085], [47.36239, 8.504796], [47.406416, 8.55388], [47.355158, 8.554317], [47.378045, 8.526589], [47.366319, 8.540423], [47.364273, 8.555818], [47.409948, 8.549568], [47.39777, 8.540027], [47.384787, 8.531799], [47.40586, 8.590477], [47.409699, 8.544593], [47.387378, 8.527044], [47.398259, 8.546237], [47.412869, 8.550702], [47.351697, 8.5258], [47.386486, 8.496219], [47.363965, 8.551456], [47.401869, 8.499902], [47.419547, 8.50651], [47.372873, 8.531316], [47.38366, 8.483528], [47.390876, 8.523354], [47.389726, 8.511555], [47.373529, 8.493671], [47.404174, 8.548507], [47.360386, 8.522906], [47.368848, 8.547864], [47.389706, 8.511846], [47.391004, 8.488069], [47.353636, 8.55447], [47.412703, 8.522765], [47.368852, 8.540807], [47.378948, 8.54234], [47.410667, 8.571897], [47.373816, 8.537188], [47.374169, 8.497418], [47.38454, 8.54831], [47.382842, 8.529216], [47.368806, 8.524798], [47.371725, 8.519548], [47.357454, 8.521893], [47.370536, 8.549077], [47.368652, 8.524888], [47.344054, 8.531176], [47.391054, 8.52251], [47.394134, 8.525049], [47.389946, 8.476671], [47.376897, 8.555513], [47.343736, 8.535312], [47.373356, 8.531591], [47.38094, 8.538156], [47.364025, 8.526276], [47.364696, 8.54742], [47.371731, 8.542627], [47.408712, 8.546243], [47.367985, 8.540246], [47.365705, 8.535949], [47.36689, 8.499643], [47.429345, 8.546314], [47.385973, 8.498208], [47.398017, 8.535833], [47.406909, 8.586299], [47.381175, 8.491663], [47.39194, 8.483041], [47.377069, 8.544115], [47.381885, 8.547526], [47.390745, 8.478845], [47.429269, 8.548698], [47.384756, 8.531321], [47.329819, 8.529746], [47.381286, 8.515769], [47.373366, 8.480916], [47.400815, 8.548887], [47.36968, 8.525624], [47.364791, 8.554399], [47.377741, 8.482577], [47.361285, 8.517218], [47.372746, 8.522892], [47.364276, 8.533947], [47.384386, 8.531446], [47.370416, 8.524765], [47.362748, 8.51178], [47.392229, 8.476887], [47.394901, 8.525767], [47.37822, 8.509787], [47.376504, 8.53927], [47.397891, 8.546137], [47.343911, 8.530101], [47.368913, 8.547653], [47.410535, 8.572504], [47.363399, 8.575407], [47.408616, 8.539271], [47.395821, 8.47456], [47.401376, 8.550502], [47.40516, 8.481313], [47.412227, 8.548264], [47.363482, 8.531389], [47.373858, 8.536514], [47.391114, 8.522842], [47.386931, 8.519022], [47.369481, 8.554007], [47.359803, 8.507273], [47.368903, 8.533565], [47.372815, 8.511652], [47.356935, 8.53504], [47.368532, 8.551697], [47.376843, 8.543276], [47.353517, 8.602054], [47.380356, 8.517114], [47.380155, 8.52793], [47.325916, 8.51342], [47.376556, 8.560035], [47.381628, 8.554566], [47.377047, 8.520755], [47.375872, 8.516547], [47.370918, 8.549575], [47.3962, 8.527238], [47.411984, 8.547318], [47.37144, 8.524984], [47.401724, 8.489221], [47.377018, 8.523853], [47.385505, 8.52049], [47.378916, 8.542842], [47.386751, 8.547508], [47.36959, 8.541722], [47.390267, 8.509566], [47.372818, 8.542795], [47.41462, 8.552885], [47.354271, 8.576073], [47.42778, 8.490491], [47.369043, 8.528338], [47.354295, 8.560771], [47.419043, 8.5065], [47.385215, 8.495531], [47.384417, 8.53195], [47.38604, 8.535374], [47.388101, 8.519959], [47.362134, 8.608398], [47.414306, 8.483466], [47.391087, 8.536193], [47.381052, 8.49431], [47.401737, 8.586188], [47.373576, 8.533145], [47.338046, 8.538635], [47.396197, 8.526641], [47.371123, 8.514597], [47.382269, 8.540316], [47.369036, 8.525213], [47.379981, 8.548135], [47.408846, 8.556594], [47.361743, 8.547716], [47.363774, 8.556324], [47.380265, 8.542923], [47.370625, 8.51599], [47.365705, 8.535989], [47.405785, 8.580803], [47.3929, 8.545079], [47.40489, 8.501009], [47.370948, 8.548291], [47.378726, 8.543037], [47.370052, 8.548855], [47.392652, 8.495652], [47.372762, 8.529765], [47.368367, 8.550118], [47.409252, 8.543392], [47.414811, 8.561052], [47.379213, 8.538134], [47.399269, 8.495081], [47.354799, 8.526869], [47.370319, 8.535978], [47.38147, 8.528764], [47.40935, 8.529216], [47.402058, 8.580167], [47.374735, 8.544623], [47.352119, 8.533472], [47.360642, 8.56297], [47.381609, 8.483567], [47.414337, 8.528854], [47.400295, 8.518326], [47.379204, 8.51137], [47.39988, 8.544217], [47.367287, 8.541767], [47.417464, 8.553727], [47.391236, 8.52046], [47.337259, 8.532479], [47.393104, 8.526486], [47.389996, 8.525985], [47.404203, 8.484659], [47.338064, 8.538662], [47.379868, 8.523116], [47.378983, 8.542433], [47.346898, 8.532875], [47.379327, 8.542215], [47.362569, 8.534693], [47.40941, 8.538121], [47.382852, 8.530038], [47.353044, 8.558905], [47.353555, 8.572047], [47.378495, 8.566022], [47.379662, 8.545784], [47.41975, 8.547943], [47.361433, 8.534034], [47.392427, 8.539029], [47.38114, 8.49161], [47.376436, 8.539732], [47.379235, 8.495254], [47.425614, 8.536733], [47.37802, 8.548174], [47.381274, 8.53713], [47.34122, 8.530324], [47.415003, 8.545883], [47.373013, 8.536457], [47.370148, 8.529433], [47.375002, 8.534485], [47.418046, 8.482705], [47.380881, 8.556484], [47.379464, 8.523943], [47.372748, 8.534995], [47.391551, 8.486173], [47.379667, 8.548102], [47.361365, 8.568096], [47.364455, 8.536863], [47.352857, 8.576228], [47.354763, 8.526828], [47.366945, 8.536133], [47.35844, 8.528955], [47.360485, 8.550364], [47.391103, 8.52308], [47.368981, 8.529144], [47.376898, 8.513667], [47.379963, 8.548148], [47.385539, 8.524609], [47.3807, 8.582292], [47.369868, 8.547474], [47.377394, 8.572766], [47.398147, 8.536365], [47.352129, 8.558714], [47.352146, 8.558741], [47.397467, 8.546353], [47.40078, 8.548886], [47.422489, 8.499531], [47.388257, 8.526347], [47.381477, 8.528963], [47.360279, 8.534235], [47.391132, 8.48782], [47.428581, 8.542547], [47.367808, 8.560526], [47.407725, 8.583786], [47.390547, 8.489782], [47.363258, 8.564018], [47.409818, 8.537798], [47.359811, 8.52386], [47.36965, 8.533501], [47.376549, 8.526902], [47.354052, 8.52696], [47.371604, 8.51605], [47.345004, 8.533419], [47.397258, 8.508342], [47.411579, 8.563224], [47.412612, 8.480783], [47.377759, 8.525431], [47.331734, 8.516475], [47.384048, 8.531042], [47.387306, 8.533692], [47.379804, 8.5068], [47.417428, 8.553699], [47.383934, 8.509571], [47.396425, 8.543298], [47.38954, 8.483762], [47.378371, 8.530211], [47.3987, 8.539662], [47.361476, 8.561399], [47.383024, 8.485171], [47.350792, 8.601994], [47.369945, 8.548813], [47.407732, 8.53863], [47.389022, 8.546204], [47.389163, 8.49455], [47.403807, 8.534256], [47.377695, 8.525575], [47.375534, 8.541885], [47.362576, 8.514821], [47.379706, 8.542064], [47.378323, 8.514239], [47.419152, 8.506409], [47.353512, 8.524089], [47.374805, 8.545737], [47.375384, 8.484584], [47.373269, 8.536965], [47.404646, 8.572153], [47.387309, 8.525784], [47.409655, 8.550105], [47.384235, 8.531231], [47.380346, 8.524861], [47.369649, 8.508715], [47.37619, 8.558769], [47.377699, 8.50685], [47.360721, 8.586894], [47.38066, 8.542004], [47.360259, 8.547645], [47.414206, 8.518846], [47.373329, 8.53159], [47.374243, 8.517705], [47.365374, 8.564791], [47.367138, 8.536654], [47.366203, 8.540341], [47.359927, 8.521996], [47.369503, 8.526216], [47.376121, 8.536044], [47.348343, 8.534162], [47.417198, 8.542973], [47.410868, 8.550263], [47.378189, 8.527519], [47.386815, 8.54747], [47.370545, 8.524529], [47.375065, 8.568108], [47.384436, 8.531831], [47.399753, 8.544268], [47.359865, 8.522868], [47.396539, 8.508248], [47.39772, 8.532939], [47.370298, 8.558818], [47.383431, 8.48396], [47.385065, 8.53093], [47.374555, 8.545559], [47.376934, 8.540391], [47.376138, 8.522776], [47.379999, 8.548136], [47.358434, 8.497793], [47.37123, 8.549846], [47.393836, 8.472229], [47.383326, 8.499427], [47.38007, 8.520737], [47.36093, 8.549976], [47.40971, 8.544395], [47.366824, 8.543161], [47.413793, 8.545407], [47.384546, 8.538244], [47.384311, 8.543126], [47.363088, 8.556588], [47.384259, 8.507458], [47.410341, 8.539532], [47.372959, 8.536469], [47.357676, 8.578343], [47.414858, 8.551552], [47.389174, 8.47047], [47.411994, 8.524473], [47.400655, 8.502793], [47.416377, 8.546071], [47.374509, 8.539997], [47.375836, 8.559119], [47.39933, 8.515763], [47.370544, 8.549236], [47.363939, 8.550423], [47.364623, 8.537184], [47.389789, 8.516457], [47.364696, 8.565982], [47.389946, 8.54919], [47.414082, 8.541544], [47.412136, 8.550236], [47.359824, 8.535828], [47.369582, 8.520709], [47.377024, 8.537572], [47.385572, 8.52008], [47.376185, 8.567681], [47.378957, 8.489342], [47.375121, 8.545584], [47.409117, 8.545191], [47.36921, 8.527732], [47.37446, 8.48826], [47.370458, 8.515563], [47.387253, 8.519227], [47.377114, 8.53376], [47.38326, 8.482023], [47.42084, 8.550617], [47.376674, 8.538399], [47.419562, 8.54786], [47.419168, 8.547653], [47.377214, 8.526969], [47.366629, 8.54468], [47.403974, 8.550636], [47.399702, 8.51732], [47.37665, 8.538055], [47.41498, 8.545445], [47.417768, 8.545424], [47.381588, 8.53719], [47.364217, 8.507613], [47.378557, 8.509357], [47.381471, 8.517097], [47.394783, 8.525791], [47.405227, 8.480811], [47.390919, 8.488478], [47.367108, 8.539751], [47.392222, 8.51693], [47.380255, 8.525905], [47.377524, 8.53888], [47.378476, 8.496629], [47.334748, 8.529781], [47.365471, 8.530238], [47.364376, 8.546129], [47.401208, 8.490615], [47.369182, 8.527904], [47.381593, 8.513656], [47.41191, 8.524855], [47.402035, 8.499455], [47.418616, 8.547058], [47.384544, 8.531847], [47.389326, 8.52168], [47.399488, 8.533386], [47.388144, 8.520172], [47.398806, 8.533226], [47.391952, 8.517905], [47.370709, 8.547002], [47.362153, 8.554648], [47.374487, 8.546101], [47.402296, 8.487669], [47.369081, 8.547961], [47.367101, 8.523439], [47.414405, 8.552788], [47.363422, 8.534869], [47.378453, 8.540489], [47.370713, 8.535231], [47.373487, 8.534851], [47.374601, 8.518772], [47.378361, 8.499355], [47.386786, 8.502675], [47.403107, 8.502272], [47.366932, 8.54311], [47.363728, 8.574858], [47.413836, 8.547462], [47.402472, 8.535567], [47.373465, 8.520007], [47.36019, 8.531308], [47.378597, 8.519515], [47.397708, 8.533283], [47.430946, 8.550125], [47.379262, 8.530136], [47.380945, 8.51853], [47.385706, 8.532626], [47.397869, 8.532491], [47.373226, 8.533045], [47.369605, 8.525887], [47.390824, 8.508676], [47.396416, 8.528236], [47.398551, 8.539209], [47.390182, 8.516756], [47.375062, 8.539518], [47.379709, 8.527536], [47.360321, 8.567253], [47.355888, 8.592561], [47.363324, 8.533742], [47.367416, 8.537666], [47.371308, 8.536038], [47.398768, 8.524866], [47.37084, 8.548289], [47.37211, 8.535948], [47.387807, 8.488443], [47.355173, 8.554635], [47.404521, 8.572084], [47.383437, 8.539506], [47.333625, 8.514277], [47.368578, 8.538431], [47.364854, 8.536567], [47.386399, 8.496826], [47.382678, 8.507228], [47.383735, 8.573735], [47.408788, 8.550444], [47.41391, 8.519755], [47.39831, 8.532447], [47.387765, 8.544099], [47.369869, 8.509169], [47.3853, 8.507784], [47.388509, 8.515716], [47.378843, 8.525003], [47.41065, 8.531588], [47.371223, 8.523192], [47.357067, 8.597961], [47.363391, 8.534352], [47.392048, 8.523947], [47.367074, 8.544305], [47.374506, 8.549743], [47.370243, 8.511534], [47.364623, 8.538085], [47.40281, 8.535057], [47.381412, 8.503124], [47.365153, 8.553189], [47.406164, 8.54827], [47.404163, 8.500942], [47.390369, 8.50917], [47.378894, 8.523348], [47.374456, 8.539863], [47.382916, 8.544091], [47.403478, 8.556322], [47.374397, 8.541385], [47.35659, 8.523901], [47.386397, 8.502005], [47.373545, 8.59444], [47.370106, 8.518575], [47.364888, 8.565681], [47.369115, 8.525387], [47.368105, 8.541797], [47.376527, 8.541548], [47.373364, 8.53171], [47.396842, 8.529715], [47.414345, 8.551621], [47.366806, 8.555289], [47.365221, 8.547073], [47.362702, 8.558287], [47.405738, 8.480993], [47.402031, 8.577437], [47.362587, 8.527068], [47.377601, 8.52115], [47.386335, 8.531764], [47.36524, 8.564629], [47.386216, 8.51763], [47.406719, 8.550494], [47.371641, 8.514051], [47.393984, 8.472709], [47.420105, 8.548467], [47.339756, 8.530042], [47.4268, 8.542497], [47.337925, 8.537164], [47.377909, 8.541855], [47.390303, 8.523037], [47.380494, 8.527341], [47.386508, 8.497716], [47.389927, 8.539017], [47.374859, 8.525835], [47.374273, 8.524009], [47.378046, 8.526522], [47.377552, 8.522579], [47.379806, 8.524863], [47.364714, 8.532327], [47.419776, 8.550873], [47.341847, 8.530548], [47.380443, 8.557084], [47.34037, 8.519296], [47.351135, 8.560096], [47.396563, 8.528782], [47.397402, 8.531409], [47.412539, 8.550404], [47.363894, 8.567037], [47.383677, 8.540676], [47.370508, 8.549222], [47.368513, 8.524368], [47.34094, 8.52656], [47.410227, 8.549587], [47.363707, 8.532293], [47.366341, 8.552207], [47.355775, 8.55932], [47.369507, 8.513306], [47.384225, 8.516027], [47.38677, 8.518025], [47.365373, 8.52159], [47.386825, 8.502331], [47.369982, 8.552455], [47.393585, 8.533688], [47.393856, 8.544861], [47.367827, 8.539885], [47.393496, 8.492953], [47.375081, 8.523284], [47.413432, 8.545466], [47.407533, 8.548113], [47.40163, 8.505382], [47.367896, 8.544838], [47.406816, 8.550642], [47.387697, 8.471726], [47.377164, 8.513077], [47.378652, 8.527144], [47.378669, 8.519569], [47.366973, 8.558536], [47.411544, 8.570485], [47.362761, 8.567966], [47.37244, 8.534287], [47.396623, 8.529101], [47.37138, 8.536039], [47.3298, 8.53267], [47.365997, 8.546798], [47.402644, 8.499785], [47.364774, 8.566341], [47.396309, 8.504958], [47.37722, 8.538715], [47.356614, 8.534676], [47.374554, 8.545639], [47.407468, 8.54839], [47.415502, 8.563108], [47.374485, 8.541598], [47.3745, 8.532462], [47.412289, 8.558654], [47.361278, 8.548368], [47.356637, 8.532254], [47.398659, 8.539198], [47.384314, 8.548398], [47.360342, 8.552161], [47.356156, 8.520265], [47.370188, 8.548805], [47.376744, 8.543287], [47.376288, 8.544867], [47.390142, 8.47886], [47.364612, 8.55425], [47.388526, 8.484537], [47.42189, 8.509844], [47.385225, 8.536828], [47.408938, 8.539516], [47.407103, 8.545136], [47.393457, 8.53762], [47.365705, 8.535975], [47.414633, 8.520273], [47.398054, 8.474245], [47.366031, 8.536737], [47.40512, 8.571607], [47.398026, 8.535859], [47.431372, 8.516543], [47.386, 8.496222], [47.420414, 8.503148], [47.377404, 8.500713], [47.348753, 8.56542], [47.408747, 8.54627], [47.353404, 8.550534], [47.3817, 8.530107], [47.378492, 8.540172], [47.417018, 8.523012], [47.414636, 8.546604], [47.371227, 8.539823], [47.3808, 8.528274], [47.354877, 8.574762], [47.35349, 8.554679], [47.364527, 8.533065], [47.419282, 8.548013], [47.401966, 8.499215], [47.405097, 8.549811], [47.36736, 8.541689], [47.415091, 8.546998], [47.381807, 8.513859], [47.408856, 8.574906], [47.378872, 8.542749], [47.366763, 8.545795], [47.422459, 8.55065], [47.375355, 8.516086], [47.374137, 8.522245], [47.356767, 8.522276], [47.387307, 8.547678], [47.41788, 8.555366], [47.397191, 8.530927], [47.381442, 8.534578], [47.376833, 8.540588], [47.344042, 8.531453], [47.35659, 8.554108], [47.367908, 8.532247], [47.368839, 8.531763], [47.369801, 8.508797], [47.389418, 8.521523], [47.404606, 8.550397], [47.369534, 8.52006], [47.395722, 8.532116], [47.392746, 8.523445], [47.387705, 8.490746], [47.38048, 8.490908], [47.386723, 8.547653], [47.36732, 8.545859], [47.418625, 8.530081], [47.407254, 8.550028], [47.420031, 8.547684], [47.362647, 8.547258], [47.384857, 8.508954], [47.372476, 8.543768], [47.378725, 8.542189], [47.357767, 8.580052], [47.366815, 8.555302], [47.407181, 8.585987], [47.362418, 8.567204], [47.40363, 8.496281], [47.384009, 8.532313], [47.376946, 8.540034], [47.398494, 8.542427], [47.373902, 8.476305], [47.360564, 8.563577], [47.410679, 8.544601], [47.396426, 8.472253], [47.36466, 8.556793], [47.404676, 8.551472], [47.360515, 8.596726], [47.400126, 8.545786], [47.393114, 8.521624], [47.378617, 8.492023], [47.392624, 8.490856], [47.385702, 8.530189], [47.370887, 8.547165], [47.365156, 8.521718], [47.355808, 8.522839], [47.36655, 8.545472], [47.34443, 8.526618], [47.386561, 8.517306], [47.340722, 8.537235], [47.393752, 8.512934], [47.339946, 8.529967], [47.400159, 8.494185], [47.372212, 8.502927], [47.370295, 8.54886], [47.384332, 8.548424], [47.42872, 8.544909], [47.370315, 8.518275], [47.362073, 8.557334], [47.385453, 8.517389], [47.368376, 8.498468], [47.399968, 8.545319], [47.379138, 8.48324], [47.391862, 8.538912], [47.387978, 8.4854], [47.367688, 8.560789], [47.332523, 8.517682], [47.372329, 8.523241], [47.392436, 8.516127], [47.377601, 8.527944], [47.360358, 8.566247], [47.377822, 8.508097], [47.34145, 8.529799], [47.373658, 8.503101], [47.402911, 8.54701], [47.407357, 8.536409], [47.425708, 8.509417], [47.375471, 8.547565], [47.372672, 8.521196], [47.372885, 8.531012], [47.360675, 8.521826], [47.37756, 8.541728], [47.427509, 8.546461], [47.424542, 8.537877], [47.390212, 8.491074], [47.411824, 8.525423], [47.377014, 8.543319], [47.40151, 8.581917], [47.361797, 8.547744], [47.368635, 8.509409], [47.41609, 8.50876], [47.393783, 8.537388], [47.341064, 8.526853], [47.388945, 8.527805], [47.387158, 8.535079], [47.393583, 8.540457], [47.376621, 8.526944], [47.404564, 8.548197], [47.375148, 8.525695], [47.406574, 8.567292], [47.387531, 8.493074], [47.424632, 8.543485], [47.369587, 8.553308], [47.391259, 8.516023], [47.378344, 8.527283], [47.373906, 8.483853], [47.373979, 8.535219], [47.414324, 8.483493], [47.373584, 8.519837], [47.407592, 8.530624], [47.369358, 8.528305], [47.397304, 8.53134], [47.362522, 8.547136], [47.367898, 8.539926], [47.357075, 8.522031], [47.402024, 8.497746], [47.430898, 8.540129], [47.356903, 8.522186], [47.382013, 8.531212], [47.364286, 8.555448], [47.375545, 8.52083], [47.381942, 8.529224], [47.32908, 8.514529], [47.398615, 8.494817], [47.370326, 8.49182], [47.414774, 8.561224], [47.401817, 8.499769], [47.376071, 8.55347], [47.381305, 8.537568], [47.389543, 8.539658], [47.377382, 8.541526], [47.38193, 8.583523], [47.375338, 8.545496], [47.366951, 8.543985], [47.346192, 8.534356], [47.408639, 8.546307], [47.38695, 8.481738], [47.351309, 8.576314], [47.349298, 8.562149], [47.374864, 8.520499], [47.413511, 8.536298], [47.392007, 8.526423], [47.38855, 8.483849], [47.388003, 8.485653], [47.378412, 8.52012], [47.361467, 8.561372], [47.378464, 8.526995], [47.383432, 8.549452], [47.37518, 8.540342], [47.409513, 8.549916], [47.376726, 8.544214], [47.364595, 8.566205], [47.379144, 8.508137], [47.36854, 8.524422], [47.3868, 8.528264], [47.37358, 8.546863], [47.39256, 8.52405], [47.370563, 8.524503], [47.376367, 8.561911], [47.378147, 8.517612], [47.380513, 8.54804], [47.413748, 8.528325], [47.390903, 8.50787], [47.396929, 8.530021], [47.370298, 8.513349], [47.387315, 8.533665], [47.403709, 8.496415], [47.373124, 8.495662], [47.412504, 8.544744], [47.335516, 8.51896], [47.375825, 8.51971], [47.362016, 8.549231], [47.36623, 8.540382], [47.377322, 8.527885], [47.377555, 8.492175], [47.377211, 8.538689], [47.359606, 8.551034], [47.378451, 8.575106], [47.374652, 8.537232], [47.391738, 8.517728], [47.370173, 8.513254], [47.380046, 8.567419], [47.396937, 8.512919], [47.409578, 8.537409], [47.377592, 8.49885], [47.378758, 8.510937], [47.384585, 8.533172], [47.365375, 8.546971], [47.391968, 8.51813], [47.405221, 8.480559], [47.368112, 8.54667], [47.406707, 8.553555], [47.375634, 8.517032], [47.386208, 8.528], [47.409433, 8.540427], [47.406557, 8.550438], [47.420574, 8.502382], [47.408737, 8.549224], [47.378571, 8.519435], [47.354332, 8.557873], [47.394541, 8.540927], [47.378107, 8.509388], [47.371093, 8.523613], [47.379134, 8.511143], [47.375749, 8.535427], [47.408283, 8.526027], [47.388603, 8.489969], [47.377786, 8.518704], [47.368927, 8.53195], [47.40358, 8.485972], [47.408982, 8.539543], [47.393416, 8.499734], [47.408547, 8.546544], [47.356576, 8.523503], [47.36029, 8.523605], [47.390319, 8.525197], [47.389118, 8.527543], [47.374806, 8.525741], [47.357205, 8.550944], [47.410347, 8.550119], [47.391401, 8.536279], [47.393343, 8.539207], [47.399514, 8.542991], [47.380304, 8.548221], [47.382592, 8.51459], [47.382512, 8.514496], [47.396084, 8.518466], [47.353198, 8.558869], [47.414384, 8.518055], [47.379191, 8.522401], [47.36536, 8.557853], [47.387615, 8.490784], [47.380753, 8.561289], [47.393283, 8.492644], [47.369585, 8.531884], [47.374924, 8.544613], [47.368382, 8.541022], [47.367445, 8.495973], [47.408928, 8.539595], [47.356144, 8.59033], [47.369398, 8.525909], [47.39137, 8.53106], [47.365964, 8.532326], [47.377553, 8.511906], [47.360484, 8.56343], [47.378409, 8.492231], [47.37151, 8.557214], [47.366365, 8.541285], [47.421307, 8.547843], [47.401248, 8.536601], [47.386064, 8.481297], [47.360204, 8.550583], [47.360423, 8.552137], [47.365723, 8.535989], [47.370197, 8.548805], [47.360359, 8.550388], [47.37722, 8.519606], [47.412329, 8.516622], [47.362019, 8.548979], [47.388671, 8.483374], [47.373616, 8.53643], [47.344067, 8.531666], [47.368449, 8.550967], [47.396762, 8.5297], [47.386811, 8.486199], [47.367196, 8.537105], [47.386714, 8.547613], [47.401188, 8.507414], [47.387116, 8.486324], [47.379209, 8.546993], [47.414389, 8.554457], [47.375412, 8.528256], [47.371402, 8.501957], [47.37052, 8.519497], [47.365532, 8.53621], [47.393852, 8.472442], [47.390842, 8.523088], [47.370604, 8.522067], [47.377056, 8.47973], [47.410349, 8.539611], [47.419825, 8.507483], [47.363607, 8.533377], [47.400847, 8.491695], [47.369644, 8.537036], [47.352932, 8.524581], [47.389534, 8.53685], [47.395579, 8.532087], [47.366702, 8.533229], [47.357052, 8.532183], [47.393113, 8.524578], [47.370689, 8.524479], [47.392475, 8.523506], [47.380435, 8.512507], [47.407719, 8.530454], [47.375809, 8.545175], [47.38089, 8.512874], [47.412045, 8.54659], [47.391467, 8.519723], [47.365011, 8.531367], [47.370717, 8.516734], [47.352283, 8.57791], [47.409639, 8.546169], [47.414106, 8.51895], [47.365054, 8.531553], [47.414768, 8.560919], [47.379912, 8.544108], [47.369652, 8.525663], [47.376114, 8.488346], [47.378238, 8.541332], [47.378164, 8.509972], [47.413465, 8.530665], [47.375967, 8.500525], [47.377567, 8.543781], [47.377621, 8.543769], [47.378095, 8.483194], [47.395191, 8.534039], [47.380801, 8.51564], [47.400991, 8.544664], [47.377513, 8.52769], [47.370888, 8.554527], [47.379561, 8.500955], [47.400815, 8.542382], [47.3868, 8.541456], [47.370077, 8.512047], [47.374405, 8.541438], [47.391246, 8.523149], [47.380663, 8.512141], [47.409453, 8.54586], [47.340218, 8.531627], [47.397443, 8.541292], [47.405917, 8.553419], [47.399871, 8.54892], [47.342498, 8.53117], [47.343637, 8.524828], [47.406778, 8.550919], [47.374316, 8.521441], [47.34139, 8.530393], [47.423138, 8.494521], [47.40716, 8.586292], [47.387673, 8.486361], [47.379764, 8.494549], [47.391462, 8.523154], [47.42176, 8.550318], [47.36655, 8.540786], [47.367158, 8.540176], [47.374068, 8.515212], [47.393405, 8.499893], [47.374718, 8.536015], [47.409524, 8.49702], [47.378511, 8.480977], [47.377899, 8.529711], [47.376956, 8.539955], [47.391986, 8.523919], [47.364283, 8.536979], [47.377872, 8.529671], [47.391648, 8.542457], [47.376715, 8.533183], [47.359901, 8.522896], [47.389033, 8.517449], [47.423756, 8.514255], [47.39942, 8.49527], [47.363439, 8.561149], [47.37582, 8.54209], [47.412115, 8.565488], [47.370708, 8.516667], [47.380064, 8.522392], [47.372235, 8.521677], [47.373918, 8.527339], [47.375643, 8.549329], [47.366173, 8.540685], [47.39033, 8.490957], [47.358321, 8.586789], [47.370912, 8.548291], [47.378751, 8.525213], [47.408761, 8.477951], [47.371558, 8.547602], [47.377929, 8.508179], [47.367108, 8.539751], [47.364623, 8.537198], [47.378156, 8.509892], [47.389191, 8.494471], [47.370179, 8.548818], [47.37859, 8.510655], [47.379178, 8.525725], [47.38386, 8.573857], [47.369981, 8.527046], [47.392662, 8.502487], [47.377389, 8.548293], [47.370925, 8.523252], [47.370305, 8.514554], [47.384074, 8.480476], [47.380421, 8.541668], [47.387207, 8.494087], [47.355112, 8.559094], [47.393593, 8.528999], [47.352706, 8.524655], [47.402186, 8.495802], [47.365656, 8.563539], [47.368371, 8.52132], [47.415887, 8.507378], [47.368341, 8.538744], [47.390995, 8.523091], [47.349286, 8.524903], [47.380981, 8.518504], [47.393719, 8.535665], [47.381297, 8.542229], [47.377122, 8.540501], [47.365705, 8.536002], [47.370026, 8.519394], [47.372757, 8.547283], [47.385196, 8.537026], [47.368905, 8.533367], [47.410861, 8.545293], [47.383126, 8.543751], [47.381221, 8.51786], [47.427447, 8.546367], [47.375312, 8.540649], [47.361802, 8.507114], [47.37031, 8.545405], [47.429965, 8.538864], [47.384538, 8.542866], [47.399061, 8.542346], [47.394216, 8.489908], [47.370621, 8.55709], [47.38555, 8.545218], [47.381086, 8.491582], [47.382646, 8.514644], [47.40553, 8.537432], [47.377536, 8.519454], [47.387527, 8.514915], [47.396889, 8.540963], [47.369213, 8.527401], [47.417334, 8.545653], [47.371492, 8.555307], [47.38882, 8.479894], [47.419873, 8.501388], [47.393354, 8.524808], [47.421295, 8.546292], [47.39008, 8.515125], [47.373761, 8.536353], [47.403138, 8.576467], [47.382682, 8.531862], [47.375842, 8.530278], [47.427246, 8.543831], [47.380479, 8.519355], [47.386788, 8.535191], [47.370731, 8.537204], [47.371168, 8.539451], [47.389607, 8.52146], [47.422375, 8.549032], [47.390285, 8.50954], [47.367108, 8.539778], [47.409347, 8.575314], [47.379491, 8.52679], [47.37436, 8.496216], [47.406625, 8.495293], [47.376292, 8.540762], [47.370581, 8.52449], [47.379065, 8.542369], [47.420673, 8.502437], [47.364406, 8.555106], [47.363648, 8.553501], [47.366409, 8.521413], [47.407486, 8.560448], [47.375934, 8.553626], [47.350031, 8.527857], [47.383877, 8.542362], [47.370091, 8.544844], [47.375708, 8.549079], [47.415953, 8.508969], [47.378894, 8.530976], [47.388564, 8.549837], [47.375836, 8.538528], [47.363749, 8.535419], [47.410815, 8.553866], [47.373274, 8.535535], [47.385626, 8.529697], [47.379444, 8.537543], [47.376888, 8.536735], [47.358776, 8.533437], [47.368625, 8.554175], [47.388888, 8.491207], [47.364611, 8.532789], [47.35498, 8.534325], [47.350039, 8.560814], [47.390986, 8.522124], [47.370322, 8.548887], [47.384257, 8.477169], [47.357811, 8.520312], [47.399535, 8.505274], [47.369418, 8.525711], [47.384984, 8.531022], [47.36747, 8.494239], [47.414336, 8.551647], [47.395701, 8.540077], [47.366893, 8.54348], [47.397254, 8.546018], [47.338687, 8.530841], [47.42126, 8.536762], [47.394754, 8.545038], [47.36369, 8.531274], [47.370794, 8.535259], [47.38232, 8.549932], [47.378514, 8.553852], [47.414768, 8.560919], [47.378641, 8.553736], [47.375807, 8.549068], [47.389087, 8.51745], [47.37358, 8.575558], [47.35533, 8.559721], [47.360481, 8.552694], [47.364349, 8.536676], [47.370736, 8.470285], [47.374686, 8.54968], [47.372763, 8.511439], [47.380635, 8.519027], [47.392763, 8.523525], [47.395825, 8.545895], [47.362398, 8.527103], [47.4041, 8.491057], [47.378564, 8.542054], [47.371235, 8.536235], [47.39595, 8.489107], [47.373786, 8.536592], [47.377906, 8.48319], [47.377309, 8.529302], [47.378938, 8.510914], [47.407204, 8.50666], [47.39401, 8.525789], [47.374642, 8.552407], [47.371227, 8.539823], [47.364633, 8.554899], [47.410882, 8.505753], [47.394769, 8.525447], [47.392312, 8.476637], [47.372783, 8.569635], [47.403827, 8.567631], [47.375082, 8.492033], [47.36766, 8.495117], [47.413888, 8.543899], [47.358571, 8.517957], [47.364604, 8.566205], [47.385352, 8.531016], [47.410162, 8.566427], [47.37734, 8.498924], [47.368285, 8.535208], [47.340816, 8.530157], [47.378795, 8.510832], [47.376319, 8.538803], [47.373308, 8.524347], [47.367969, 8.540007], [47.39202, 8.510647], [47.374484, 8.541651], [47.360039, 8.508072], [47.37968, 8.527734], [47.373133, 8.542749], [47.413908, 8.532383], [47.394639, 8.472894], [47.377259, 8.535525], [47.386456, 8.49647], [47.393713, 8.507476], [47.386701, 8.488342], [47.357669, 8.521024], [47.373459, 8.598569], [47.38525, 8.494578], [47.403606, 8.570926], [47.388388, 8.536283], [47.391103, 8.52308], [47.375695, 8.512411], [47.358278, 8.587437], [47.398255, 8.532486], [47.357454, 8.521906], [47.407515, 8.548152], [47.388296, 8.491036], [47.386073, 8.504912], [47.391783, 8.485475], [47.413267, 8.54586], [47.413111, 8.538635], [47.363731, 8.535498], [47.397978, 8.534189], [47.381141, 8.503211], [47.378965, 8.54242], [47.398262, 8.473163], [47.404953, 8.557294], [47.373232, 8.53519], [47.367006, 8.523027], [47.399515, 8.533386], [47.388959, 8.495314], [47.377528, 8.498967], [47.389736, 8.486958], [47.37058, 8.49254], [47.388118, 8.520026], [47.40791, 8.556588], [47.383431, 8.506594], [47.408356, 8.558916], [47.359, 8.516325], [47.391279, 8.515825], [47.376011, 8.552184], [47.340561, 8.530535], [47.370582, 8.516704], [47.367055, 8.544384], [47.419155, 8.506012], [47.37034, 8.548875], [47.374831, 8.497894], [47.370836, 8.546859], [47.373466, 8.552184], [47.4052, 8.480823], [47.365972, 8.533386], [47.373043, 8.533293], [47.362521, 8.554749], [47.361784, 8.507048], [47.367225, 8.545447], [47.40499, 8.557215], [47.376767, 8.538083], [47.366048, 8.504167], [47.378266, 8.496982], [47.370024, 8.549014], [47.425422, 8.494566], [47.381111, 8.518162], [47.368203, 8.529579], [47.412221, 8.555485], [47.374054, 8.513861], [47.382736, 8.529942], [47.373621, 8.553776], [47.357147, 8.522019], [47.419616, 8.547887], [47.390603, 8.539786], [47.375731, 8.535453], [47.381836, 8.533765], [47.389562, 8.473365], [47.377766, 8.543692], [47.362132, 8.526635], [47.373436, 8.535565], [47.38439, 8.53191], [47.382368, 8.488124], [47.370984, 8.531317], [47.366642, 8.532976], [47.388098, 8.539364], [47.399638, 8.520326], [47.38278, 8.510859], [47.326159, 8.513372], [47.372629, 8.534291], [47.366206, 8.520998], [47.372125, 8.536213], [47.379178, 8.51803], [47.42339, 8.508178], [47.379519, 8.529598], [47.372797, 8.511651], [47.369892, 8.513526], [47.378945, 8.516039], [47.374478, 8.539427], [47.389755, 8.512337], [47.38199, 8.52896], [47.410663, 8.572255], [47.366727, 8.545794], [47.377553, 8.518673], [47.371599, 8.54616], [47.398911, 8.533533], [47.37452, 8.518863], [47.391674, 8.51876], [47.40591, 8.590849], [47.391507, 8.487112], [47.364764, 8.545978], [47.370754, 8.547029], [47.38559, 8.506518], [47.366833, 8.543148], [47.406723, 8.566765], [47.368594, 8.499253], [47.356926, 8.535027], [47.409394, 8.544468], [47.352443, 8.5579], [47.329549, 8.529767], [47.359466, 8.511687], [47.416287, 8.545115], [47.371477, 8.524813], [47.393618, 8.509938], [47.33548, 8.518919], [47.362405, 8.577676], [47.408155, 8.556367], [47.399653, 8.515875], [47.374699, 8.529407], [47.365111, 8.564944], [47.425887, 8.555162], [47.382511, 8.529898], [47.353137, 8.511295], [47.36907, 8.528286], [47.353656, 8.524092], [47.36825, 8.501431], [47.390275, 8.522149], [47.414114, 8.550397], [47.406794, 8.578745], [47.378376, 8.510466], [47.396574, 8.545619], [47.419067, 8.506871], [47.370669, 8.535204], [47.358261, 8.520321], [47.351027, 8.582966], [47.370206, 8.548832], [47.396582, 8.528756], [47.389173, 8.494537], [47.387281, 8.522075], [47.362523, 8.533845], [47.376408, 8.527495], [47.37642, 8.528211], [47.368631, 8.547912], [47.388206, 8.520227], [47.383401, 8.515626], [47.38254, 8.540136], [47.376767, 8.538083], [47.380324, 8.556406], [47.360121, 8.516638], [47.382197, 8.498968], [47.428055, 8.489966], [47.36313, 8.535313], [47.384432, 8.531315], [47.378622, 8.496407], [47.361557, 8.52563], [47.364365, 8.548207], [47.393767, 8.529665], [47.366761, 8.53564], [47.398544, 8.500631], [47.369181, 8.52797], [47.412739, 8.541821], [47.370648, 8.535494], [47.378379, 8.541692], [47.377984, 8.541538], [47.373789, 8.517166], [47.374519, 8.52947], [47.371907, 8.522173], [47.393787, 8.521704], [47.395297, 8.532399], [47.374889, 8.518831], [47.388203, 8.526293], [47.383827, 8.539183], [47.374333, 8.552732], [47.368428, 8.505499], [47.366228, 8.533934], [47.392853, 8.50224], [47.413883, 8.551001], [47.377664, 8.538354], [47.358616, 8.58056], [47.339832, 8.518094], [47.379912, 8.551564], [47.36976, 8.533371], [47.389308, 8.472645], [47.414149, 8.519163], [47.377891, 8.51231], [47.375607, 8.537093], [47.363609, 8.535045], [47.41078, 8.54345], [47.369408, 8.526823], [47.375821, 8.535363], [47.381852, 8.540625], [47.376599, 8.560195], [47.370215, 8.548819], [47.385518, 8.548555], [47.378039, 8.548002], [47.40953, 8.537766], [47.358202, 8.571523], [47.406923, 8.586605], [47.373878, 8.502722], [47.380875, 8.537453], [47.377647, 8.529719], [47.368689, 8.541836], [47.337528, 8.534469], [47.414225, 8.479476], [47.3724, 8.534776], [47.353027, 8.487957], [47.383347, 8.515598], [47.371663, 8.517441], [47.330062, 8.502814], [47.398318, 8.532474], [47.377354, 8.499308], [47.388425, 8.488707], [47.384735, 8.542075], [47.380886, 8.535334], [47.360604, 8.552961], [47.424818, 8.540971], [47.396386, 8.512179], [47.412056, 8.513992], [47.363497, 8.532633], [47.360752, 8.566428], [47.376303, 8.559222], [47.397559, 8.531942], [47.374228, 8.536482], [47.362148, 8.557005], [47.402267, 8.487907], [47.324984, 8.511999], [47.389746, 8.511436], [47.371433, 8.524785], [47.414006, 8.546644], [47.360363, 8.553737], [47.423858, 8.513939], [47.399987, 8.508913], [47.392239, 8.494677], [47.370197, 8.548805], [47.365424, 8.545634], [47.420789, 8.50244], [47.3785, 8.519381], [47.349717, 8.561562], [47.351442, 8.53183], [47.413894, 8.545131], [47.32794, 8.529642], [47.409549, 8.537647], [47.377086, 8.529125], [47.382997, 8.529948], [47.390913, 8.489114], [47.365592, 8.561724], [47.382722, 8.540882], [47.361048, 8.525222], [47.410546, 8.550004], [47.409654, 8.525631], [47.394889, 8.51256], [47.375323, 8.484318], [47.37356, 8.526206], [47.397005, 8.530566], [47.367065, 8.544305], [47.391182, 8.486271], [47.366838, 8.544499], [47.384435, 8.531964], [47.427179, 8.491274], [47.357791, 8.572097], [47.375758, 8.539215], [47.374339, 8.537954], [47.370499, 8.515921], [47.375015, 8.539769], [47.402508, 8.543106], [47.370277, 8.54886], [47.420762, 8.502439], [47.405302, 8.566748], [47.383356, 8.515612], [47.380044, 8.528285], [47.361186, 8.547651], [47.365435, 8.564912], [47.393319, 8.492579], [47.41434, 8.551223], [47.357401, 8.521878], [47.361909, 8.548222], [47.371716, 8.519548], [47.393599, 8.511964], [47.351733, 8.560572], [47.356605, 8.535642], [47.380935, 8.537693], [47.355504, 8.529385], [47.386784, 8.534714], [47.344252, 8.534991], [47.425706, 8.493989], [47.374449, 8.541598], [47.361772, 8.516156], [47.398659, 8.539198], [47.368021, 8.556135], [47.370635, 8.516772], [47.38582, 8.530032], [47.38028, 8.494122], [47.370188, 8.548818], [47.364132, 8.55179], [47.399062, 8.522249], [47.371533, 8.515982], [47.373593, 8.54546], [47.384373, 8.531843], [47.397932, 8.531459], [47.3976, 8.532353], [47.369153, 8.525255], [47.365311, 8.56471], [47.36438, 8.546659], [47.370133, 8.512736], [47.34358, 8.53282], [47.370242, 8.558101], [47.368829, 8.547916], [47.370891, 8.559783], [47.377012, 8.499407], [47.381141, 8.534982], [47.371673, 8.530749], [47.3635, 8.535149], [47.389823, 8.511795], [47.429728, 8.51248], [47.3474, 8.563035], [47.369178, 8.525454], [47.365902, 8.532312], [47.385211, 8.508656], [47.394945, 8.486915], [47.359232, 8.499954], [47.36867, 8.543914], [47.405829, 8.590821], [47.36412, 8.547514], [47.374087, 8.540902], [47.361276, 8.517284], [47.339087, 8.527594], [47.364728, 8.554398], [47.359767, 8.579685], [47.397839, 8.481223], [47.377541, 8.49861], [47.371167, 8.518543], [47.378384, 8.547705], [47.375362, 8.524905], [47.360576, 8.550247], [47.364517, 8.521798], [47.383344, 8.548271], [47.394139, 8.493456], [47.342412, 8.530732], [47.369653, 8.52557], [47.373616, 8.536443], [47.399712, 8.495792], [47.386069, 8.539852], [47.398273, 8.532473], [47.401353, 8.501296], [47.372411, 8.566317], [47.398452, 8.538359], [47.368631, 8.530978], [47.376676, 8.556899], [47.36363, 8.550668], [47.368243, 8.538662], [47.377188, 8.526889], [47.376741, 8.514061], [47.367777, 8.545975], [47.367349, 8.519962], [47.385177, 8.508457], [47.388403, 8.48423], [47.401154, 8.499491], [47.373673, 8.536126], [47.380561, 8.51243], [47.381893, 8.516218], [47.382677, 8.529464], [47.371115, 8.55526], [47.377955, 8.529474], [47.383673, 8.574528], [47.360729, 8.56235], [47.413742, 8.546042], [47.372373, 8.534735], [47.414299, 8.561055], [47.385204, 8.508431], [47.408648, 8.546307], [47.395387, 8.519034], [47.372789, 8.535512], [47.389634, 8.521487], [47.379333, 8.537792], [47.389193, 8.488312], [47.372808, 8.525873], [47.3951, 8.536091], [47.370595, 8.469925], [47.36997, 8.525365], [47.407074, 8.56403], [47.354573, 8.555231], [47.358425, 8.55874], [47.37092, 8.523822], [47.378042, 8.527913], [47.371896, 8.513699], [47.377354, 8.499295], [47.406921, 8.586816], [47.358675, 8.526935], [47.374527, 8.539984], [47.385627, 8.529604], [47.371181, 8.512281], [47.370672, 8.51668], [47.410454, 8.538037], [47.366738, 8.534183], [47.378872, 8.542762], [47.405508, 8.591463], [47.355195, 8.530676], [47.39394, 8.493558], [47.37457, 8.517275], [47.372585, 8.529443], [47.342448, 8.530719], [47.373797, 8.545822], [47.415486, 8.562869], [47.39108, 8.522629], [47.403944, 8.569462], [47.380534, 8.517343], [47.382972, 8.499817], [47.357483, 8.521748], [47.392408, 8.489859], [47.374453, 8.539294], [47.369283, 8.532434], [47.372889, 8.503629], [47.37383, 8.531892], [47.349631, 8.561163], [47.377052, 8.544075], [47.375, 8.545052], [47.4019, 8.499519], [47.378616, 8.527104], [47.380485, 8.53771], [47.384625, 8.507784], [47.366025, 8.533506], [47.386399, 8.496826], [47.370457, 8.549817], [47.37581, 8.496987], [47.410787, 8.547386], [47.384476, 8.53811], [47.358969, 8.532011], [47.347168, 8.564724], [47.37057, 8.524715], [47.403805, 8.485884], [47.411219, 8.561388], [47.344353, 8.532876], [47.420514, 8.540498], [47.377333, 8.543856], [47.374913, 8.531596], [47.382436, 8.551921], [47.38065, 8.525066], [47.372677, 8.534914], [47.413574, 8.480868], [47.417878, 8.54145], [47.366378, 8.519956], [47.410587, 8.526882], [47.361557, 8.52559], [47.363446, 8.598656], [47.402565, 8.485727], [47.370197, 8.548805], [47.391252, 8.487425], [47.358064, 8.520145], [47.388783, 8.515324], [47.380884, 8.582839], [47.411081, 8.54771], [47.35151, 8.601242], [47.372496, 8.478661], [47.378573, 8.569056], [47.429085, 8.543485], [47.375322, 8.517727], [47.384263, 8.49734], [47.350951, 8.583388], [47.408826, 8.579822], [47.374272, 8.536522], [47.357446, 8.521787], [47.361657, 8.526479], [47.374957, 8.534497], [47.411192, 8.546466], [47.351144, 8.56007], [47.392807, 8.522678], [47.398264, 8.494823], [47.415573, 8.548307], [47.375997, 8.545271], [47.413382, 8.531816], [47.366694, 8.507278], [47.397181, 8.587613], [47.405034, 8.560038], [47.417184, 8.515845], [47.365327, 8.519829], [47.381241, 8.491347], [47.398026, 8.474377], [47.358073, 8.520198], [47.425678, 8.494094], [47.359561, 8.549219], [47.383152, 8.497781], [47.381692, 8.530914], [47.385939, 8.49891], [47.371002, 8.486669], [47.409717, 8.532231], [47.371067, 8.538734], [47.36808, 8.522585], [47.373626, 8.536377], [47.375094, 8.545597], [47.391178, 8.538911], [47.353565, 8.576468], [47.376839, 8.541846], [47.360729, 8.562363], [47.375103, 8.545597], [47.334177, 8.515929], [47.366501, 8.540255], [47.380667, 8.525199], [47.391513, 8.516704], [47.412851, 8.537543], [47.377677, 8.531282], [47.352109, 8.572757], [47.365673, 8.539298], [47.373354, 8.503916], [47.379615, 8.537454], [47.345443, 8.534632], [47.365786, 8.532217], [47.414445, 8.5543], [47.348417, 8.52257], [47.403894, 8.567248], [47.410935, 8.505887], [47.419596, 8.548059], [47.364562, 8.536932], [47.371807, 8.473232], [47.367782, 8.560446], [47.371191, 8.547409], [47.360768, 8.524422], [47.422734, 8.550974], [47.392974, 8.531702], [47.360559, 8.522737], [47.369886, 8.547488], [47.377644, 8.507922], [47.402057, 8.499018], [47.3583, 8.571565], [47.372868, 8.500014], [47.417036, 8.523038], [47.414315, 8.541562], [47.387692, 8.538481], [47.328318, 8.518152], [47.365647, 8.565353], [47.358416, 8.556887], [47.401609, 8.581893], [47.37011, 8.479846], [47.374312, 8.488668], [47.390771, 8.488912], [47.407039, 8.55645], [47.381267, 8.491453], [47.376834, 8.541435], [47.384476, 8.548401], [47.386673, 8.541559], [47.40513, 8.571448], [47.378636, 8.523038], [47.382971, 8.499831], [47.35266, 8.524813], [47.400205, 8.49408], [47.388683, 8.520223], [47.377349, 8.498911], [47.366824, 8.555315], [47.359156, 8.526481], [47.37981, 8.520679], [47.403847, 8.486255], [47.374129, 8.519292], [47.404715, 8.576156], [47.385118, 8.531077], [47.367727, 8.494642], [47.377233, 8.540106], [47.385536, 8.538251], [47.378708, 8.528827], [47.383559, 8.549256], [47.418349, 8.546761], [47.424623, 8.51202], [47.427224, 8.491262], [47.398669, 8.539185], [47.402779, 8.501775], [47.398687, 8.512398], [47.387455, 8.539787], [47.361608, 8.565413], [47.395164, 8.484588], [47.353601, 8.554377], [47.384984, 8.508864], [47.384551, 8.50316], [47.368464, 8.537171], [47.399939, 8.544603], [47.40424, 8.564924], [47.370173, 8.479847], [47.373968, 8.498817], [47.407844, 8.54478], [47.379094, 8.508706], [47.407884, 8.538673], [47.376912, 8.541768], [47.390508, 8.525174], [47.378468, 8.510242], [47.35623, 8.556033], [47.412959, 8.540394], [47.376749, 8.538057], [47.384517, 8.507781], [47.377201, 8.512932], [47.399888, 8.548974], [47.406328, 8.591335], [47.357994, 8.519984], [47.376837, 8.528802], [47.380596, 8.525091], [47.380614, 8.525105], [47.369848, 8.509526], [47.375632, 8.526857], [47.383389, 8.552895], [47.408644, 8.550455], [47.378965, 8.54242], [47.376695, 8.538982], [47.419699, 8.504618], [47.38671, 8.528196], [47.396703, 8.541502], [47.375499, 8.484718], [47.367667, 8.523451], [47.369411, 8.520746], [47.398596, 8.532586], [47.373392, 8.480996], [47.385769, 8.520164], [47.377014, 8.544286], [47.419577, 8.508127], [47.366035, 8.562462], [47.363154, 8.533659], [47.364321, 8.533921], [47.411009, 8.529766], [47.374726, 8.5228], [47.382352, 8.53155], [47.360166, 8.516639], [47.362194, 8.547527], [47.388742, 8.539721], [47.35399, 8.55596], [47.369153, 8.528036], [47.391099, 8.489396], [47.377229, 8.538636], [47.375311, 8.560406], [47.397869, 8.474904], [47.367887, 8.564407], [47.379599, 8.524939], [47.365166, 8.521613], [47.397148, 8.532543], [47.374084, 8.519304], [47.372145, 8.521741], [47.354579, 8.602037], [47.380024, 8.54268], [47.382004, 8.529345], [47.400558, 8.500711], [47.403914, 8.574403], [47.367496, 8.5378], [47.365687, 8.545375], [47.363166, 8.535261], [47.362076, 8.559783], [47.408644, 8.575392], [47.37034, 8.548888], [47.370152, 8.548804], [47.379094, 8.518333], [47.37777, 8.537627], [47.371226, 8.531428], [47.373527, 8.503668], [47.376998, 8.513497], [47.368419, 8.534376], [47.373942, 8.531497], [47.376269, 8.486164], [47.393963, 8.48108], [47.357549, 8.555426], [47.348799, 8.525899], [47.365768, 8.547283], [47.376459, 8.543957], [47.370188, 8.548805], [47.378043, 8.540136], [47.419695, 8.548022], [47.396456, 8.508471], [47.420659, 8.547949], [47.376025, 8.535711], [47.405262, 8.555154], [47.383394, 8.484105], [47.371133, 8.516398], [47.366231, 8.532663], [47.386223, 8.498346], [47.4188, 8.507502], [47.375875, 8.541084], [47.402696, 8.567422], [47.376791, 8.536548], [47.372372, 8.535848], [47.388489, 8.470669], [47.425128, 8.537757], [47.409531, 8.537633], [47.369695, 8.530735], [47.371961, 8.536488], [47.367514, 8.537773], [47.361502, 8.549405], [47.383099, 8.515249], [47.377206, 8.540145], [47.418936, 8.506365], [47.376271, 8.543913], [47.408932, 8.545757], [47.381909, 8.536561], [47.383585, 8.506491], [47.392703, 8.524106], [47.387567, 8.519339], [47.368149, 8.496715], [47.377263, 8.538862], [47.397917, 8.474561], [47.367854, 8.539833], [47.387582, 8.522518], [47.381306, 8.491176], [47.410148, 8.574324], [47.416765, 8.505792], [47.381221, 8.491558], [47.405449, 8.572899], [47.36923, 8.540775], [47.381834, 8.544426], [47.353335, 8.576132], [47.372506, 8.478503], [47.41085, 8.526583], [47.367101, 8.544319], [47.394783, 8.525804], [47.368277, 8.513996], [47.409017, 8.545374], [47.390105, 8.525947], [47.430725, 8.540285], [47.366598, 8.553603], [47.36467, 8.554754], [47.368189, 8.56019], [47.391743, 8.484892], [47.373379, 8.524481], [47.361672, 8.548522], [47.389083, 8.483581], [47.403384, 8.556824], [47.393837, 8.50667], [47.382913, 8.513921], [47.384454, 8.531885], [47.41457, 8.559007], [47.407037, 8.550143], [47.360678, 8.524421], [47.369865, 8.548732], [47.37621, 8.540866], [47.376228, 8.540853], [47.385208, 8.536774], [47.376428, 8.528237], [47.397896, 8.554033], [47.391099, 8.487502], [47.426986, 8.546623], [47.388578, 8.525625], [47.414095, 8.550436], [47.37542, 8.545405], [47.358324, 8.51545], [47.390217, 8.525446], [47.386834, 8.502398], [47.383096, 8.515514], [47.378522, 8.5752], [47.372304, 8.479955], [47.385048, 8.481237], [47.390619, 8.478882], [47.360766, 8.550118], [47.376685, 8.526773], [47.348649, 8.533216], [47.374619, 8.5322], [47.385446, 8.526846], [47.391237, 8.523136], [47.3932, 8.492842], [47.386795, 8.518158], [47.40606, 8.547022], [47.366652, 8.553604], [47.359825, 8.535695], [47.369152, 8.548069], [47.37466, 8.523063], [47.392144, 8.493231], [47.392148, 8.476886], [47.369216, 8.528037], [47.393618, 8.512826], [47.361738, 8.517902], [47.341963, 8.53063], [47.335087, 8.541419], [47.370423, 8.529757], [47.376945, 8.541067], [47.374898, 8.518791], [47.377191, 8.538874], [47.388825, 8.538531], [47.410687, 8.558766], [47.370179, 8.548805], [47.397247, 8.510474], [47.368039, 8.556122], [47.37017, 8.548818], [47.370668, 8.554098], [47.394766, 8.513273], [47.393653, 8.538816], [47.358927, 8.516363], [47.371616, 8.525332], [47.377025, 8.544048], [47.365355, 8.521603], [47.389785, 8.492443], [47.386687, 8.547626], [47.425599, 8.547681], [47.389945, 8.47679], [47.399399, 8.516069], [47.407821, 8.545297], [47.425814, 8.547791], [47.36655, 8.545446], [47.369576, 8.506833], [47.373022, 8.536497], [47.359856, 8.522855], [47.385678, 8.494057], [47.402055, 8.49927], [47.366618, 8.540178], [47.383192, 8.499319], [47.370553, 8.492539], [47.367056, 8.523425], [47.376154, 8.48595], [47.350936, 8.560158], [47.414776, 8.560932], [47.376575, 8.527009], [47.390894, 8.522294], [47.406687, 8.546333], [47.37745, 8.498688], [47.372774, 8.534227], [47.384286, 8.548529], [47.389396, 8.520953], [47.365548, 8.559803], [47.364202, 8.555803], [47.409581, 8.543783], [47.427659, 8.546729], [47.365895, 8.509963], [47.387962, 8.485215], [47.372678, 8.499202], [47.35617, 8.522648], [47.38364, 8.499539], [47.385683, 8.474641], [47.370397, 8.524897], [47.386806, 8.547483], [47.369153, 8.525255], [47.393824, 8.493437], [47.400815, 8.548914], [47.412805, 8.48137], [47.377359, 8.512405], [47.356576, 8.52349], [47.417313, 8.506836], [47.382454, 8.54824], [47.394939, 8.516892], [47.367854, 8.536973], [47.371509, 8.546132], [47.378401, 8.579236], [47.378344, 8.578639], [47.383715, 8.545193], [47.369848, 8.548586], [47.381362, 8.51724], [47.383055, 8.572422], [47.388126, 8.485019], [47.398656, 8.58942], [47.413867, 8.527161], [47.357917, 8.520512], [47.409557, 8.53778], [47.382403, 8.551629], [47.36182, 8.560241], [47.386233, 8.496359], [47.364843, 8.56666], [47.410168, 8.524489], [47.3654, 8.548123], [47.416692, 8.51072], [47.382149, 8.548088], [47.402227, 8.535774], [47.374918, 8.537608], [47.379386, 8.508208], [47.370648, 8.519248], [47.38811, 8.519933], [47.413102, 8.5508], [47.361766, 8.56024], [47.376354, 8.527508], [47.388673, 8.487202], [47.361691, 8.560556], [47.376529, 8.527154], [47.391574, 8.542681], [47.386132, 8.497536], [47.400752, 8.531928], [47.380531, 8.537605], [47.381692, 8.513698], [47.371834, 8.473259], [47.361536, 8.565346], [47.365611, 8.53923], [47.376785, 8.539024], [47.415845, 8.481403], [47.367011, 8.547111], [47.395794, 8.524461], [47.422439, 8.550769], [47.391519, 8.487801], [47.386751, 8.547601], [47.379324, 8.537832], [47.397413, 8.532151], [47.384782, 8.509336], [47.37981, 8.524519], [47.409628, 8.550104], [47.419134, 8.506422], [47.421265, 8.549433], [47.403274, 8.575383], [47.378554, 8.541232], [47.405763, 8.548871], [47.364877, 8.548258], [47.408024, 8.546692], [47.380739, 8.534682], [47.388285, 8.476387], [47.349897, 8.527735], [47.361518, 8.511504], [47.373371, 8.534822], [47.41891, 8.507266], [47.394713, 8.525604], [47.392427, 8.537201], [47.383814, 8.52721], [47.350179, 8.530348], [47.370544, 8.535016], [47.405986, 8.504184], [47.360294, 8.579153], [47.370798, 8.519569], [47.364029, 8.547578], [47.379192, 8.542239], [47.38973, 8.486706], [47.388071, 8.528846], [47.378018, 8.543698], [47.41442, 8.54664], [47.369642, 8.540055], [47.34101, 8.526852], [47.344933, 8.533351], [47.376608, 8.543417], [47.372713, 8.533961], [47.366063, 8.532342], [47.360493, 8.535391], [47.368645, 8.512216], [47.354396, 8.561462], [47.370795, 8.517914], [47.407, 8.481746], [47.371186, 8.547873], [47.396356, 8.51345], [47.391038, 8.522311], [47.375357, 8.528361], [47.414419, 8.55414], [47.375505, 8.547751], [47.40896, 8.578937], [47.361852, 8.547626], [47.336222, 8.533728], [47.384215, 8.516146], [47.409603, 8.537661], [47.369081, 8.547948], [47.398251, 8.536712], [47.374407, 8.541279], [47.384943, 8.523829], [47.377872, 8.497835], [47.378533, 8.523487], [47.381598, 8.530462], [47.352659, 8.558738], [47.370734, 8.5139], [47.379826, 8.494616], [47.386705, 8.547626], [47.365133, 8.53088], [47.414112, 8.519295], [47.373972, 8.492435], [47.36821, 8.536411], [47.364981, 8.54683], [47.373122, 8.534513], [47.409795, 8.541071], [47.380053, 8.526352], [47.351544, 8.525797], [47.393354, 8.524808], [47.411153, 8.5709], [47.387006, 8.53403], [47.397518, 8.532458], [47.412202, 8.51479], [47.392521, 8.529149], [47.329023, 8.51392], [47.399426, 8.505378], [47.370797, 8.519688], [47.402559, 8.546247], [47.333416, 8.528881], [47.402596, 8.546102], [47.404761, 8.574223], [47.370061, 8.511834], [47.373864, 8.538805], [47.383629, 8.574448], [47.379411, 8.489814], [47.36613, 8.545159], [47.378446, 8.51934], [47.383054, 8.528638], [47.408871, 8.548366], [47.384747, 8.527494], [47.38785, 8.520802], [47.390024, 8.525906], [47.37884, 8.530962], [47.39297, 8.529185], [47.364859, 8.554837], [47.358211, 8.571444], [47.386088, 8.537839], [47.404179, 8.579417], [47.387274, 8.537068], [47.362761, 8.548505], [47.369398, 8.525909], [47.360541, 8.525609], [47.359574, 8.535598], [47.377245, 8.54833], [47.370215, 8.548819], [47.399815, 8.467457], [47.377845, 8.529723], [47.43092, 8.550005], [47.388027, 8.486951], [47.397783, 8.533019], [47.407191, 8.53785], [47.418188, 8.547579], [47.405257, 8.480559], [47.378297, 8.530421], [47.36489, 8.554375], [47.377354, 8.499295], [47.372311, 8.523175], [47.388941, 8.520559], [47.41756, 8.55402], [47.36655, 8.545472], [47.366717, 8.54774], [47.340826, 8.529151], [47.38033, 8.527536], [47.387152, 8.54602], [47.416372, 8.525702], [47.37302, 8.528181], [47.391523, 8.546137], [47.412628, 8.483049], [47.3613, 8.53284], [47.380977, 8.535191], [47.3648, 8.545992], [47.340059, 8.530353], [47.378426, 8.509924], [47.36695, 8.544051], [47.372469, 8.543543], [47.411058, 8.545457], [47.418456, 8.546843], [47.362305, 8.561231], [47.420208, 8.540531], [47.361739, 8.526375], [47.369726, 8.525519], [47.369491, 8.553875], [47.392764, 8.524399], [47.409722, 8.575614], [47.366873, 8.545492], [47.370561, 8.549263], [47.376902, 8.546588], [47.375493, 8.548029], [47.359538, 8.535584], [47.387432, 8.482198], [47.411725, 8.512912], [47.371322, 8.547796], [47.396189, 8.52741], [47.383043, 8.52983], [47.359218, 8.596909], [47.376074, 8.559614], [47.405259, 8.533849], [47.398239, 8.537069], [47.384345, 8.531922], [47.430591, 8.538294], [47.401981, 8.504436], [47.36606, 8.538392], [47.371337, 8.538713], [47.376739, 8.535315], [47.374735, 8.544623], [47.408932, 8.545717], [47.366398, 8.54065], [47.37603, 8.54457], [47.337211, 8.53003], [47.399256, 8.542668], [47.385276, 8.495665], [47.382795, 8.514011], [47.38308, 8.530678], [47.382782, 8.530831], [47.409946, 8.575619], [47.36011, 8.595909], [47.377342, 8.543843], [47.37026, 8.5136], [47.407498, 8.546151], [47.430946, 8.550125], [47.374154, 8.47533], [47.380264, 8.493884], [47.393599, 8.52933], [47.370358, 8.513654], [47.431031, 8.515489], [47.397077, 8.530554], [47.377349, 8.498924], [47.358133, 8.521496], [47.360533, 8.563113], [47.343143, 8.530456], [47.366436, 8.545099], [47.403071, 8.585952], [47.428042, 8.511943], [47.405608, 8.565827], [47.390504, 8.54544], [47.418445, 8.547081], [47.378203, 8.510634], [47.386692, 8.488382], [47.374722, 8.543153], [47.409028, 8.578408], [47.356791, 8.532178], [47.368582, 8.524688], [47.400798, 8.548873], [47.373598, 8.544957], [47.424738, 8.548392], [47.41087, 8.550064], [47.410843, 8.550077], [47.377256, 8.538716], [47.376385, 8.488205], [47.357587, 8.550542], [47.414501, 8.546628], [47.420506, 8.502991], [47.375502, 8.563853], [47.353499, 8.602066], [47.387843, 8.486471], [47.370859, 8.516869], [47.365693, 8.548487], [47.378056, 8.513849], [47.398692, 8.539516], [47.365089, 8.55328], [47.395399, 8.546244], [47.396733, 8.53937], [47.335034, 8.529959], [47.3781, 8.497456], [47.365096, 8.546952], [47.364384, 8.546248], [47.382212, 8.488452], [47.418205, 8.512487], [47.374297, 8.552731], [47.394062, 8.518358], [47.33633, 8.529959], [47.390324, 8.490639], [47.397095, 8.482877], [47.392831, 8.543872], [47.374192, 8.52504], [47.37465, 8.545932], [47.385938, 8.508803], [47.370364, 8.508266], [47.381598, 8.530449], [47.344042, 8.529574], [47.369606, 8.528654], [47.378587, 8.542531], [47.412288, 8.51523], [47.372114, 8.535485], [47.393233, 8.531906], [47.399692, 8.543207], [47.357947, 8.596233], [47.381555, 8.548141], [47.409224, 8.550043], [47.413208, 8.571434], [47.400798, 8.54886], [47.360852, 8.566311], [47.375736, 8.487424], [47.385409, 8.536434], [47.388974, 8.538031], [47.406608, 8.480321], [47.369978, 8.512005], [47.373879, 8.546644], [47.382909, 8.500756], [47.384151, 8.541984], [47.356666, 8.523479], [47.404171, 8.563717], [47.360769, 8.561014], [47.340069, 8.530274], [47.426977, 8.546569], [47.335591, 8.530036], [47.360296, 8.521964], [47.408543, 8.545073], [47.414003, 8.544153], [47.383235, 8.539872], [47.380397, 8.526147], [47.408087, 8.576255], [47.411387, 8.526859], [47.354106, 8.526947], [47.380847, 8.502967], [47.3637, 8.563908], [47.377459, 8.543792], [47.406658, 8.531426], [47.388245, 8.538095], [47.398967, 8.533335], [47.382582, 8.537607], [47.364918, 8.554322], [47.377619, 8.509603], [47.377491, 8.509852], [47.37329, 8.524333], [47.382361, 8.560647], [47.334975, 8.516196], [47.414918, 8.54066], [47.373145, 8.53303], [47.358009, 8.553383], [47.379816, 8.526757], [47.395454, 8.517565], [47.399032, 8.513981], [47.370206, 8.548806], [47.416021, 8.521971], [47.336337, 8.530105], [47.359817, 8.535563], [47.411875, 8.524775], [47.403419, 8.487797], [47.372527, 8.521233], [47.377805, 8.507951], [47.369348, 8.533098], [47.41158, 8.528334], [47.381192, 8.538162], [47.364684, 8.537344], [47.347983, 8.533294], [47.383827, 8.526773], [47.356058, 8.556056], [47.370646, 8.52996], [47.388494, 8.491066], [47.412898, 8.537385], [47.365704, 8.553889], [47.369005, 8.538003], [47.378574, 8.540054], [47.390287, 8.492691], [47.391092, 8.522325], [47.358022, 8.55762], [47.36277, 8.519022], [47.357612, 8.590189], [47.364621, 8.55053], [47.38213, 8.544498], [47.373223, 8.535243], [47.375599, 8.544575], [47.364257, 8.531219], [47.391054, 8.522549], [47.374701, 8.532069], [47.421091, 8.501969], [47.373646, 8.514158], [47.398852, 8.540699], [47.382587, 8.511319], [47.376074, 8.559628], [47.367903, 8.546043], [47.376048, 8.541816], [47.38022, 8.527719], [47.367355, 8.537492], [47.392452, 8.524048], [47.369288, 8.557181], [47.393526, 8.524626], [47.359244, 8.553092], [47.358953, 8.55715], [47.3646, 8.53296], [47.391353, 8.477281], [47.411091, 8.545775], [47.368417, 8.547722], [47.339085, 8.519151], [47.376521, 8.558088], [47.343833, 8.528882], [47.370998, 8.536561], [47.383298, 8.530418], [47.377815, 8.5271], [47.410535, 8.550229], [47.382945, 8.484017], [47.362184, 8.532567], [47.371716, 8.519548], [47.39837, 8.537509], [47.376599, 8.540623], [47.367767, 8.496191], [47.414995, 8.551369], [47.366488, 8.533092], [47.373117, 8.525482], [47.368757, 8.534714], [47.366975, 8.543376], [47.380817, 8.569501], [47.403615, 8.534491], [47.380617, 8.519026], [47.410397, 8.571838], [47.370048, 8.534264], [47.359339, 8.592927], [47.372387, 8.534259], [47.369058, 8.550357], [47.386788, 8.547495], [47.361312, 8.535408], [47.378751, 8.527994], [47.382441, 8.529711], [47.377036, 8.540049], [47.382332, 8.488071], [47.35761, 8.509056], [47.375222, 8.525485], [47.385245, 8.536696], [47.376929, 8.546536], [47.419186, 8.546725], [47.369457, 8.506076], [47.378521, 8.521871], [47.38728, 8.498897], [47.398299, 8.591797], [47.377014, 8.544273], [47.362141, 8.559599], [47.372674, 8.537125], [47.388573, 8.54797], [47.384458, 8.548387], [47.37821, 8.509906], [47.358027, 8.523149], [47.378092, 8.51001], [47.383879, 8.504802], [47.378783, 8.543568], [47.358295, 8.572055], [47.369164, 8.52789], [47.422332, 8.550754], [47.40339, 8.534526], [47.374949, 8.534431], [47.366538, 8.541977], [47.376581, 8.540635], [47.372513, 8.543623], [47.364198, 8.54782], [47.387112, 8.489728], [47.392432, 8.527134], [47.402289, 8.49432], [47.360439, 8.523952], [47.42704, 8.546584], [47.382323, 8.488057], [47.374966, 8.534458], [47.382817, 8.496093], [47.378473, 8.526995], [47.357661, 8.554051], [47.380928, 8.515563], [47.391133, 8.538923], [47.407399, 8.548984], [47.384476, 8.496669], [47.3891, 8.541795], [47.391055, 8.544233], [47.378359, 8.532382], [47.372761, 8.499945], [47.373067, 8.538351], [47.366875, 8.543414], [47.364883, 8.531576], [47.38688, 8.528372], [47.377482, 8.535741], [47.384243, 8.51604], [47.364551, 8.555056], [47.372663, 8.529816], [47.359818, 8.50857], [47.367924, 8.560608], [47.37765, 8.541743], [47.379581, 8.527785], [47.391215, 8.522659], [47.423349, 8.549754], [47.370987, 8.473415], [47.367594, 8.519808], [47.364648, 8.531677], [47.363674, 8.531975], [47.411402, 8.544218], [47.386752, 8.518926], [47.377521, 8.504675], [47.394337, 8.519649], [47.377317, 8.510206], [47.364417, 8.546461], [47.399125, 8.547845], [47.37318, 8.543465], [47.369052, 8.528325], [47.370727, 8.524308], [47.370542, 8.469897], [47.373055, 8.520594], [47.366538, 8.54105], [47.376034, 8.535685], [47.366558, 8.545565], [47.402667, 8.55188], [47.375946, 8.565372], [47.370894, 8.548356], [47.376355, 8.527415], [47.37384, 8.536527], [47.421274, 8.549406], [47.385175, 8.530761], [47.37331, 8.513568], [47.385294, 8.494712], [47.414111, 8.519374], [47.362805, 8.519129], [47.408008, 8.484615], [47.399512, 8.540368], [47.408474, 8.546675], [47.383969, 8.540311], [47.386923, 8.490678], [47.419107, 8.506395], [47.361183, 8.506916], [47.395703, 8.545429], [47.387637, 8.47542], [47.39245, 8.524313], [47.378145, 8.520698], [47.363011, 8.557963], [47.376955, 8.540034], [47.372945, 8.531304], [47.362798, 8.516044], [47.370197, 8.548805], [47.385897, 8.498578], [47.409202, 8.564366], [47.393872, 8.472164], [47.394146, 8.488714], [47.360639, 8.548421], [47.353925, 8.55347], [47.365267, 8.538469], [47.348748, 8.562243], [47.370977, 8.514845], [47.423455, 8.54529], [47.379242, 8.537896], [47.340569, 8.519181], [47.388469, 8.520007], [47.38874, 8.53898], [47.405189, 8.593669], [47.42184, 8.545707], [47.399416, 8.50551], [47.398789, 8.494409], [47.41856, 8.506172], [47.337762, 8.528824], [47.378751, 8.54223], [47.335638, 8.540292], [47.380035, 8.526351], [47.357296, 8.550867], [47.374681, 8.541761], [47.379225, 8.495439], [47.365521, 8.568104], [47.384379, 8.529274], [47.392204, 8.511128], [47.366479, 8.533078], [47.365397, 8.508378], [47.381532, 8.492028], [47.377741, 8.548155], [47.401464, 8.508758], [47.406826, 8.550589], [47.383443, 8.529387], [47.378095, 8.483194], [47.368459, 8.5292], [47.341125, 8.530798], [47.367651, 8.555359], [47.382242, 8.540276], [47.406466, 8.583799], [47.372629, 8.534317], [47.355668, 8.555532], [47.373353, 8.531935], [47.427087, 8.546373], [47.406844, 8.550576], [47.358386, 8.526121], [47.399566, 8.517476], [47.362366, 8.504478], [47.367971, 8.532262], [47.370619, 8.530039], [47.378525, 8.541457], [47.40992, 8.541259], [47.41032, 8.549191], [47.388491, 8.538617], [47.408448, 8.580767], [47.40579, 8.591125], [47.378623, 8.496367], [47.382306, 8.488031], [47.369644, 8.525623], [47.368082, 8.496158], [47.357963, 8.520434], [47.390609, 8.478988], [47.414576, 8.483472], [47.38295, 8.49338], [47.385205, 8.53986], [47.36685, 8.543254], [47.413172, 8.546402], [47.388533, 8.483742], [47.338911, 8.530012], [47.414501, 8.555043], [47.375618, 8.543476], [47.396798, 8.505604], [47.3771, 8.55218], [47.370188, 8.548805], [47.373436, 8.503799], [47.366185, 8.540381], [47.351932, 8.53417], [47.378521, 8.575213], [47.370169, 8.53947], [47.358028, 8.520237], [47.394143, 8.525076], [47.392988, 8.541505], [47.37462, 8.520586], [47.397005, 8.530579], [47.377824, 8.507872], [47.371008, 8.518236], [47.404814, 8.483757], [47.365176, 8.547112], [47.364328, 8.547306], [47.41989, 8.504343], [47.369915, 8.549157], [47.388789, 8.542358], [47.38334, 8.484091], [47.374374, 8.529599], [47.397747, 8.532979], [47.377826, 8.517341], [47.391875, 8.545085], [47.417194, 8.543371], [47.36027, 8.534235], [47.382567, 8.588159], [47.378455, 8.526981], [47.382193, 8.492518], [47.372059, 8.518389], [47.414775, 8.561105], [47.38326, 8.541091], [47.38571, 8.535937], [47.375482, 8.544585], [47.38829, 8.518043], [47.374312, 8.521825], [47.39788, 8.474613], [47.374726, 8.525673], [47.376503, 8.526981], [47.375981, 8.542225], [47.391719, 8.511052], [47.374481, 8.540115], [47.392416, 8.502774], [47.354704, 8.558411], [47.376443, 8.544698], [47.373841, 8.536487], [47.362675, 8.555533], [47.374573, 8.538952], [47.403463, 8.55603], [47.405416, 8.480828], [47.386675, 8.528129], [47.386952, 8.534996], [47.375247, 8.51799], [47.422167, 8.513004], [47.384427, 8.531831], [47.380402, 8.525604], [47.374078, 8.540809], [47.373475, 8.519981], [47.393445, 8.52942], [47.393269, 8.523244], [47.413453, 8.53195], [47.403492, 8.571559], [47.374996, 8.544588], [47.413288, 8.531311], [47.406948, 8.585903], [47.379159, 8.538133], [47.421787, 8.550358], [47.397717, 8.533336], [47.413866, 8.5415], [47.408711, 8.546256], [47.382182, 8.544724], [47.382164, 8.544658], [47.372198, 8.522788], [47.420662, 8.50257], [47.37926, 8.525567], [47.374919, 8.538469], [47.35122, 8.576246], [47.375225, 8.484263], [47.418232, 8.508644], [47.358991, 8.549499], [47.403471, 8.486036], [47.394964, 8.546513], [47.386075, 8.51821], [47.370281, 8.524855], [47.364618, 8.502113], [47.37505, 8.544603], [47.342061, 8.530817], [47.393797, 8.487462], [47.372287, 8.535237], [47.393233, 8.474297], [47.410629, 8.544242], [47.37293, 8.53288], [47.385959, 8.487851], [47.392556, 8.515877], [47.340275, 8.535121], [47.377495, 8.543806], [47.364637, 8.550795], [47.39197, 8.517905], [47.371513, 8.542835], [47.352416, 8.524861], [47.369342, 8.547927], [47.363155, 8.563566], [47.365532, 8.526678], [47.408217, 8.547147], [47.384038, 8.531095], [47.353836, 8.511508], [47.402105, 8.496807], [47.366997, 8.545707], [47.370243, 8.557042], [47.376947, 8.497632], [47.351932, 8.558617], [47.393408, 8.500608], [47.372461, 8.525415], [47.39665, 8.529181], [47.402144, 8.508175], [47.371666, 8.547565], [47.365144, 8.553175], [47.399073, 8.522077], [47.377769, 8.537733], [47.370161, 8.548805], [47.372704, 8.534901], [47.413858, 8.544176], [47.420935, 8.502217], [47.354543, 8.512886], [47.394791, 8.490926], [47.400226, 8.546556], [47.379204, 8.51137], [47.360634, 8.535725], [47.392379, 8.49117], [47.417708, 8.54802], [47.384962, 8.517075], [47.38922, 8.546142], [47.379135, 8.559374], [47.36343, 8.52633], [47.390898, 8.511353], [47.373813, 8.49512], [47.391698, 8.528722], [47.371792, 8.543847], [47.397426, 8.531767], [47.385778, 8.520217], [47.371493, 8.517372], [47.377585, 8.511364], [47.406753, 8.569243], [47.336156, 8.526489], [47.378003, 8.548001], [47.371623, 8.515944], [47.390775, 8.52257], [47.373241, 8.519049], [47.392389, 8.502787], [47.414514, 8.544283], [47.429931, 8.539605], [47.33252, 8.528558], [47.413033, 8.543974], [47.369458, 8.526294], [47.384773, 8.509323], [47.352335, 8.524873], [47.392793, 8.524174], [47.38484, 8.502053], [47.351039, 8.581841], [47.380788, 8.572454], [47.390942, 8.468862], [47.366907, 8.520139], [47.368906, 8.48966], [47.411452, 8.525668], [47.356042, 8.520011], [47.4001, 8.51905], [47.423479, 8.494554], [47.410011, 8.54297], [47.428011, 8.545703], [47.391375, 8.516158], [47.358601, 8.553634], [47.377789, 8.52416], [47.377013, 8.507088], [47.375829, 8.535469], [47.383256, 8.49924], [47.395018, 8.516099], [47.381416, 8.517188], [47.386591, 8.479625], [47.364401, 8.531196], [47.378601, 8.528732], [47.359005, 8.510963], [47.406934, 8.550552], [47.35786, 8.525621], [47.382356, 8.537748], [47.378472, 8.540383], [47.366979, 8.520127], [47.391156, 8.505769], [47.378836, 8.542774], [47.413119, 8.517685], [47.40847, 8.581192], [47.429636, 8.541376], [47.379773, 8.525565], [47.377674, 8.509458], [47.377036, 8.540049], [47.36327, 8.567395], [47.398474, 8.533126], [47.407473, 8.544097], [47.376645, 8.543365], [47.398475, 8.591324], [47.391122, 8.522961], [47.373535, 8.525014], [47.377505, 8.495603], [47.358222, 8.554645], [47.3299, 8.529748], [47.346403, 8.532944], [47.333865, 8.528043], [47.412612, 8.550379], [47.412285, 8.542196], [47.352156, 8.558741], [47.392421, 8.492482], [47.352369, 8.559023], [47.376866, 8.526724], [47.370188, 8.548805], [47.374347, 8.532393], [47.358733, 8.585143], [47.413335, 8.531099], [47.399303, 8.542404], [47.408888, 8.548512], [47.335145, 8.51919], [47.369794, 8.508625], [47.371818, 8.517285], [47.427041, 8.49159], [47.382169, 8.563702], [47.382403, 8.479239], [47.374457, 8.541664], [47.339177, 8.52565], [47.401501, 8.543999], [47.390805, 8.522213], [47.39886, 8.540831], [47.377113, 8.498191], [47.416044, 8.54613], [47.376751, 8.529317], [47.375479, 8.517254], [47.428819, 8.48896], [47.364618, 8.555547], [47.393003, 8.534339], [47.359578, 8.593329], [47.390287, 8.490651], [47.368478, 8.550729], [47.370585, 8.54308], [47.37909, 8.538767], [47.346602, 8.565599], [47.398034, 8.535926], [47.358544, 8.5869], [47.364013, 8.533266], [47.418224, 8.508471], [47.406321, 8.584776], [47.40317, 8.537833], [47.380365, 8.505487], [47.374523, 8.546075], [47.372154, 8.521702], [47.369698, 8.525571], [47.369016, 8.528324], [47.388138, 8.52653], [47.376744, 8.543287], [47.410082, 8.545012], [47.373387, 8.547217], [47.419125, 8.506409], [47.370491, 8.532088], [47.405109, 8.585399], [47.379326, 8.51757], [47.376174, 8.540852], [47.403253, 8.574866], [47.390387, 8.490547], [47.375116, 8.518518], [47.40748, 8.546151], [47.369039, 8.540983], [47.396217, 8.545373], [47.381973, 8.530682], [47.381071, 8.492231], [47.384151, 8.516197], [47.410877, 8.563222], [47.41331, 8.544138], [47.369648, 8.466252], [47.389651, 8.511964], [47.37573, 8.526992], [47.378052, 8.526774], [47.388424, 8.483873], [47.387696, 8.499567], [47.393532, 8.473058], [47.394856, 8.525753], [47.412287, 8.476907], [47.413841, 8.544176], [47.338471, 8.529963], [47.37017, 8.548792], [47.381218, 8.537301], [47.346388, 8.564403], [47.373559, 8.503152], [47.335144, 8.519243], [47.369219, 8.508494], [47.375196, 8.518691], [47.37446, 8.48826], [47.386828, 8.534728], [47.406943, 8.550591], [47.393441, 8.539315], [47.369079, 8.528246], [47.415163, 8.508821], [47.380003, 8.527913], [47.360079, 8.561634], [47.402844, 8.553964], [47.398167, 8.53614], [47.390962, 8.51313], [47.391153, 8.48945], [47.414578, 8.558212], [47.39303, 8.531478], [47.378647, 8.575282], [47.404015, 8.578738], [47.408998, 8.574154], [47.361519, 8.561599], [47.353342, 8.530704], [47.371196, 8.524132], [47.388463, 8.540643], [47.377615, 8.512026], [47.391134, 8.526485], [47.357966, 8.519176], [47.37458, 8.487878], [47.364449, 8.555358], [47.37853, 8.541868], [47.36653, 8.540918], [47.365488, 8.538976], [47.366806, 8.555302], [47.374656, 8.525447], [47.378104, 8.483194], [47.378863, 8.516117], [47.383164, 8.530335], [47.412068, 8.524276], [47.376655, 8.538452], [47.420947, 8.538452], [47.398659, 8.5326], [47.327994, 8.52963], [47.393125, 8.521413], [47.386923, 8.54269], [47.37104, 8.548161], [47.346209, 8.534449], [47.372702, 8.534186], [47.392932, 8.492664], [47.359043, 8.550704], [47.400719, 8.548673], [47.372622, 8.567685], [47.374497, 8.488089], [47.369124, 8.52352], [47.376963, 8.548642], [47.371289, 8.547504], [47.369728, 8.53002], [47.361892, 8.560243], [47.384523, 8.530217], [47.361493, 8.561426], [47.368997, 8.52839], [47.407314, 8.586242], [47.410167, 8.541675], [47.416696, 8.547509], [47.426049, 8.554198], [47.39624, 8.54385], [47.38962, 8.471922], [47.389453, 8.524464], [47.408265, 8.506721], [47.381434, 8.528737], [47.3709, 8.523119], [47.362707, 8.548464], [47.377467, 8.541978], [47.375923, 8.559492], [47.37666, 8.559547], [47.358149, 8.55385], [47.373832, 8.53646], [47.37443, 8.539796], [47.418512, 8.515223], [47.332789, 8.51815], [47.378581, 8.54212], [47.406702, 8.569865], [47.369653, 8.525649], [47.375141, 8.552907], [47.378859, 8.530883], [47.383514, 8.527561], [47.379285, 8.491798], [47.361508, 8.54787], [47.370179, 8.548805], [47.364398, 8.548446], [47.375435, 8.51622], [47.39186, 8.538143], [47.365251, 8.520251], [47.344898, 8.528533], [47.369464, 8.518919], [47.383362, 8.513082], [47.399142, 8.538625], [47.374015, 8.544648], [47.363419, 8.535134], [47.38012, 8.527889], [47.420506, 8.502977], [47.403814, 8.485857], [47.382883, 8.515271], [47.389638, 8.541978], [47.371451, 8.510327], [47.370397, 8.52487], [47.394553, 8.533033], [47.344522, 8.533051], [47.407096, 8.580089], [47.383248, 8.549845], [47.402277, 8.587127], [47.386806, 8.548423], [47.359835, 8.587325], [47.378637, 8.540029], [47.378557, 8.575267], [47.371678, 8.515866], [47.42111, 8.501797], [47.426298, 8.547072], [47.405442, 8.504664], [47.414103, 8.519242], [47.352168, 8.558384], [47.385616, 8.520161], [47.409881, 8.563917], [47.393505, 8.539197], [47.372374, 8.494072], [47.33006, 8.534686], [47.423463, 8.551016], [47.388566, 8.478127], [47.410784, 8.544033], [47.385974, 8.534671], [47.419088, 8.506461], [47.3731, 8.527282], [47.381102, 8.537206], [47.390117, 8.491588], [47.351663, 8.530326], [47.354774, 8.534281], [47.358046, 8.553265], [47.365406, 8.545634], [47.36529, 8.545539], [47.363733, 8.575282], [47.358114, 8.525361], [47.422876, 8.551163], [47.368618, 8.547422], [47.379998, 8.524536], [47.376729, 8.521119], [47.37848, 8.541416], [47.380515, 8.512535], [47.393733, 8.529399], [47.359323, 8.569959], [47.41986, 8.506622], [47.35151, 8.525624], [47.375328, 8.523739], [47.382537, 8.546096], [47.394173, 8.525673], [47.421027, 8.502073], [47.374503, 8.566705], [47.35009, 8.561146], [47.367156, 8.530908], [47.404206, 8.573946], [47.352457, 8.507946], [47.376438, 8.528185], [47.373888, 8.544738], [47.396022, 8.526996], [47.385882, 8.517729], [47.369732, 8.533397], [47.360489, 8.578588], [47.402788, 8.577254], [47.396712, 8.534905], [47.376572, 8.532994], [47.390957, 8.521435], [47.413257, 8.545966], [47.419272, 8.506027], [47.391063, 8.479474], [47.390221, 8.509605], [47.362326, 8.504874], [47.402287, 8.487656], [47.406958, 8.547107], [47.366536, 8.540335], [47.430594, 8.485668], [47.366843, 8.520256], [47.377349, 8.498871], [47.427984, 8.545716], [47.391284, 8.538145], [47.386308, 8.531737], [47.393603, 8.538404], [47.366205, 8.55701], [47.36159, 8.549566], [47.392188, 8.492358], [47.385963, 8.475533], [47.403766, 8.556368], [47.419143, 8.506409], [47.376754, 8.543261], [47.377157, 8.498258], [47.39649, 8.486177], [47.35968, 8.594748], [47.370191, 8.51426], [47.403806, 8.485844], [47.376919, 8.540099], [47.369555, 8.543549], [47.394339, 8.54699], [47.378696, 8.510883], [47.389095, 8.533795], [47.381154, 8.491981], [47.332493, 8.528531], [47.372629, 8.534291], [47.377863, 8.529671], [47.366205, 8.516258], [47.383097, 8.484046], [47.385943, 8.548352], [47.340006, 8.530286], [47.357185, 8.554928], [47.392882, 8.514639], [47.357647, 8.572068], [47.397399, 8.531779], [47.376073, 8.533434], [47.399135, 8.591895], [47.412975, 8.537811], [47.403061, 8.535049], [47.371763, 8.517324], [47.371494, 8.547654], [47.35042, 8.577989], [47.37291, 8.536018], [47.351795, 8.50465], [47.364038, 8.547565], [47.367272, 8.53479], [47.410942, 8.546289], [47.364679, 8.553841], [47.414179, 8.518885], [47.419152, 8.506396], [47.378342, 8.530369], [47.388958, 8.520599], [47.380341, 8.526371], [47.367516, 8.539415], [47.430955, 8.550139], [47.373505, 8.512884], [47.36585, 8.539672], [47.335042, 8.541484], [47.37017, 8.548831], [47.425624, 8.494133], [47.378582, 8.542067], [47.403304, 8.585997], [47.370984, 8.548305], [47.363849, 8.559649], [47.406861, 8.481161], [47.381488, 8.503655], [47.369868, 8.547488], [47.389037, 8.486706], [47.354986, 8.558099], [47.396849, 8.529914], [47.370179, 8.548832], [47.36061, 8.563459], [47.366465, 8.544901], [47.340412, 8.519575], [47.395062, 8.525797], [47.377551, 8.538828], [47.359076, 8.596734], [47.337098, 8.532462], [47.401822, 8.50014], [47.353162, 8.512487], [47.376696, 8.544624], [47.371587, 8.53697], [47.324122, 8.51861], [47.389757, 8.471634], [47.409702, 8.549894], [47.359112, 8.550997], [47.391513, 8.523473], [47.391789, 8.542818], [47.372513, 8.543623], [47.390673, 8.517177], [47.360955, 8.525604], [47.369214, 8.499239], [47.379622, 8.548035], [47.369295, 8.523524], [47.416224, 8.562898], [47.361458, 8.561399], [47.352316, 8.576349], [47.399692, 8.543193], [47.387164, 8.528709], [47.348677, 8.53319], [47.35646, 8.535772], [47.406132, 8.547872], [47.388404, 8.487117], [47.367083, 8.523399], [47.366824, 8.555302], [47.370166, 8.515941], [47.366967, 8.544131], [47.386246, 8.480982], [47.376301, 8.52842], [47.36659, 8.544997], [47.369498, 8.520125], [47.404505, 8.544009], [47.406522, 8.546595], [47.362825, 8.516097], [47.405774, 8.480994], [47.391114, 8.522842], [47.362992, 8.522257], [47.403083, 8.589225], [47.366618, 8.561719], [47.381611, 8.564697], [47.367015, 8.553241], [47.377469, 8.529504], [47.379912, 8.544028], [47.377264, 8.529287], [47.408877, 8.581916], [47.362889, 8.56777], [47.36631, 8.540423], [47.390887, 8.522175], [47.368971, 8.511018], [47.389511, 8.540148], [47.354485, 8.52681], [47.352394, 8.524318], [47.376145, 8.527808], [47.359449, 8.535463], [47.373083, 8.527189], [47.378176, 8.517414], [47.388514, 8.492736], [47.388455, 8.480416], [47.398316, 8.473151], [47.385014, 8.508507], [47.376705, 8.544611], [47.361333, 8.525493], [47.367809, 8.535065], [47.387859, 8.52467], [47.388535, 8.520631], [47.379834, 8.526691], [47.372776, 8.534956], [47.36226, 8.5197], [47.419802, 8.548156], [47.361829, 8.534002], [47.412959, 8.540381], [47.406823, 8.584973], [47.358851, 8.516825], [47.402424, 8.499277], [47.411704, 8.545576], [47.390728, 8.489627], [47.369588, 8.541894], [47.3927, 8.524477], [47.377206, 8.540185], [47.372591, 8.535521], [47.363981, 8.520423], [47.359446, 8.522489], [47.391952, 8.523641], [47.420047, 8.508853], [47.371164, 8.518901], [47.38186, 8.546373], [47.383951, 8.530855], [47.372485, 8.500641], [47.377092, 8.539798], [47.398703, 8.53276], [47.381152, 8.542372], [47.380483, 8.548344], [47.406653, 8.532831], [47.382338, 8.537748], [47.361489, 8.556316], [47.355407, 8.514809], [47.384449, 8.480815], [47.397194, 8.491834], [47.378417, 8.509884], [47.387538, 8.547061], [47.427472, 8.511308], [47.405153, 8.572813], [47.383088, 8.484046], [47.361749, 8.5118], [47.392244, 8.491114], [47.367666, 8.535023], [47.391101, 8.486296], [47.379173, 8.53861], [47.378006, 8.545843], [47.37077, 8.524481], [47.412123, 8.5507], [47.40766, 8.58397], [47.423435, 8.494527], [47.370179, 8.548792], [47.399003, 8.541828], [47.3672, 8.544241], [47.387098, 8.486324], [47.388009, 8.490977], [47.426245, 8.493085], [47.423724, 8.516773], [47.386629, 8.541532], [47.358559, 8.586371], [47.386922, 8.547538], [47.405275, 8.480547], [47.378559, 8.519766], [47.400233, 8.546795], [47.379783, 8.507157], [47.368914, 8.502596], [47.354799, 8.526829], [47.399375, 8.542405], [47.420775, 8.482321], [47.364014, 8.531267], [47.414408, 8.513576], [47.397744, 8.533284], [47.364402, 8.53011], [47.38116, 8.504072], [47.362149, 8.526741], [47.383249, 8.484208], [47.409513, 8.544258], [47.422859, 8.550208], [47.385334, 8.531015], [47.397889, 8.534121], [47.430037, 8.544578], [47.415413, 8.513808], [47.389849, 8.529174], [47.415305, 8.509937], [47.381721, 8.51538], [47.376838, 8.528696], [47.377658, 8.52858], [47.369398, 8.525909], [47.377862, 8.526942], [47.405799, 8.591098], [47.368847, 8.481357], [47.368789, 8.540885], [47.42759, 8.546463], [47.392903, 8.543874], [47.409986, 8.532329], [47.36449, 8.536983], [47.370183, 8.513214], [47.419493, 8.506522], [47.392279, 8.508811], [47.403649, 8.546959], [47.385205, 8.495597], [47.37028, 8.513428], [47.380814, 8.549477], [47.403835, 8.546393], [47.396999, 8.523611], [47.356734, 8.507529], [47.40508, 8.593786], [47.37741, 8.5395], [47.379833, 8.527764], [47.353346, 8.555629], [47.387139, 8.50145], [47.360343, 8.523712], [47.377964, 8.529487], [47.387182, 8.519159], [47.332479, 8.517601], [47.4116, 8.509822], [47.366016, 8.533506], [47.372125, 8.536227], [47.389093, 8.479462], [47.399481, 8.505286], [47.377836, 8.541959], [47.387461, 8.519086], [47.377052, 8.544048], [47.360011, 8.59498], [47.375414, 8.564646], [47.342625, 8.531041], [47.376722, 8.54183], [47.365418, 8.521552], [47.42249, 8.503322], [47.389493, 8.512464], [47.422314, 8.55074], [47.370174, 8.513161], [47.375266, 8.496512], [47.378227, 8.507152], [47.38649, 8.481835], [47.358804, 8.517009], [47.364693, 8.568126], [47.421396, 8.549833], [47.411454, 8.52641], [47.390977, 8.523091], [47.37958, 8.524978], [47.369337, 8.525749], [47.351519, 8.530362], [47.383699, 8.547802], [47.374452, 8.549662], [47.360304, 8.567199], [47.370784, 8.508473], [47.414256, 8.521193], [47.397634, 8.532553], [47.391105, 8.522908], [47.355573, 8.523046], [47.36825, 8.529421], [47.343332, 8.519991], [47.404932, 8.552948], [47.361401, 8.565409], [47.376047, 8.559627], [47.364623, 8.537198], [47.37135, 8.536423], [47.414815, 8.532534], [47.366938, 8.544382], [47.367092, 8.523452], [47.387857, 8.518166], [47.403386, 8.548132], [47.354877, 8.523376], [47.403883, 8.569236], [47.418856, 8.507318], [47.378865, 8.545397], [47.349698, 8.573619], [47.379005, 8.525959], [47.347674, 8.532679], [47.351394, 8.525502], [47.380252, 8.525309], [47.36533, 8.546956], [47.379268, 8.538016], [47.381222, 8.548201], [47.377778, 8.522425], [47.413711, 8.5464], [47.368186, 8.521873], [47.360467, 8.550377], [47.414, 8.541555], [47.405642, 8.548312], [47.383103, 8.529129], [47.374457, 8.539771], [47.39012, 8.537644], [47.381051, 8.491476], [47.382108, 8.528791], [47.421869, 8.55024], [47.413978, 8.546697], [47.409358, 8.572293], [47.344081, 8.534988], [47.37423, 8.544731], [47.376813, 8.520803], [47.390865, 8.523512], [47.386337, 8.497726], [47.392736, 8.524504], [47.340588, 8.519115], [47.408456, 8.546648], [47.407879, 8.58371], [47.366991, 8.544502], [47.368784, 8.537614], [47.374586, 8.538528], [47.378491, 8.527008], [47.399445, 8.497496], [47.419234, 8.547402], [47.348809, 8.563396], [47.35672, 8.523466], [47.369705, 8.51237], [47.413261, 8.532264], [47.364002, 8.528698], [47.375697, 8.537042], [47.381166, 8.491703], [47.370902, 8.548396], [47.331959, 8.52983], [47.385581, 8.520081], [47.366358, 8.541033], [47.387659, 8.486944], [47.399898, 8.467193], [47.371673, 8.488099], [47.357986, 8.572379], [47.385448, 8.530448], [47.38922, 8.494299], [47.378895, 8.530923], [47.342516, 8.522595], [47.403137, 8.555321], [47.362975, 8.517332], [47.39224, 8.502333], [47.379912, 8.544028], [47.365651, 8.566796], [47.375595, 8.545899], [47.35788, 8.532121], [47.368349, 8.551058], [47.412942, 8.540341], [47.423294, 8.504014], [47.379288, 8.537844], [47.37392, 8.519486], [47.405979, 8.546981], [47.3795, 8.525877], [47.335342, 8.541107], [47.370853, 8.52427], [47.371464, 8.545217], [47.399188, 8.522291], [47.354378, 8.557795], [47.36894, 8.507575], [47.422368, 8.550675], [47.334868, 8.531358], [47.384254, 8.4973], [47.374255, 8.524975], [47.359061, 8.550678], [47.408631, 8.549951], [47.342009, 8.519131], [47.364615, 8.554925], [47.388111, 8.526543], [47.358246, 8.521935], [47.355235, 8.608326], [47.374736, 8.520681], [47.398195, 8.535055], [47.370498, 8.549288], [47.386788, 8.54184], [47.357232, 8.550918], [47.38974, 8.512045], [47.420813, 8.548774], [47.360262, 8.566841], [47.361782, 8.549279], [47.378446, 8.510666], [47.378071, 8.567006], [47.406916, 8.550564], [47.419704, 8.505029], [47.37707, 8.543996], [47.390614, 8.533932], [47.418777, 8.507064], [47.332967, 8.518313], [47.379751, 8.516373], [47.388656, 8.520275], [47.41489, 8.541653], [47.35437, 8.552963], [47.389218, 8.482564], [47.362167, 8.547553], [47.409693, 8.544209], [47.343624, 8.519494], [47.379981, 8.536865], [47.366414, 8.540836], [47.410586, 8.486017], [47.364529, 8.546106], [47.408126, 8.547317], [47.387158, 8.535066], [47.42935, 8.544869], [47.414, 8.519703], [47.366583, 8.542018], [47.335919, 8.524896], [47.353055, 8.552274], [47.391889, 8.511148], [47.377433, 8.538998], [47.353005, 8.559222], [47.373698, 8.528778], [47.39473, 8.531433], [47.38558, 8.508597], [47.373001, 8.52066], [47.361347, 8.568095], [47.374695, 8.549694], [47.362435, 8.50477], [47.376921, 8.540801], [47.366883, 8.543507], [47.370062, 8.519421], [47.379543, 8.511668], [47.394151, 8.525116], [47.411144, 8.570913], [47.349845, 8.561392], [47.341149, 8.536846], [47.373447, 8.52002], [47.381841, 8.548386], [47.399015, 8.533058], [47.360216, 8.526701], [47.367984, 8.540325], [47.375991, 8.52121], [47.413931, 8.541262], [47.388737, 8.544039], [47.410694, 8.532622], [47.397523, 8.505976], [47.377927, 8.541842], [47.387036, 8.519421], [47.365148, 8.560219], [47.364541, 8.562576], [47.360924, 8.571833], [47.368503, 8.564923], [47.406303, 8.481176], [47.393582, 8.529224], [47.384033, 8.499839], [47.378681, 8.575415], [47.378129, 8.529159], [47.376766, 8.528734], [47.408048, 8.54224], [47.413666, 8.537944], [47.373628, 8.561456], [47.388284, 8.497314], [47.404128, 8.572765], [47.426492, 8.492679], [47.387347, 8.536951], [47.413885, 8.546999], [47.365228, 8.526499], [47.356788, 8.5844], [47.374518, 8.539984], [47.377206, 8.526823], [47.367116, 8.539844], [47.351291, 8.5763], [47.365449, 8.54676], [47.377165, 8.547256], [47.344434, 8.529979], [47.41982, 8.548157], [47.419927, 8.548252], [47.369165, 8.532485], [47.393883, 8.505664], [47.375607, 8.520911], [47.381665, 8.490269], [47.383535, 8.573082], [47.361729, 8.526481], [47.388673, 8.491083], [47.408028, 8.536781], [47.383601, 8.512544], [47.362098, 8.549087], [47.40548, 8.480763], [47.429966, 8.538837], [47.401426, 8.501165], [47.377515, 8.538907], [47.387134, 8.494139], [47.373863, 8.537971], [47.403485, 8.476484], [47.415442, 8.544183], [47.380065, 8.527967], [47.361953, 8.560377], [47.392476, 8.523426], [47.393404, 8.499058], [47.369329, 8.554878], [47.390565, 8.527679], [47.364636, 8.554608], [47.397383, 8.493785], [47.378022, 8.528085], [47.363958, 8.528539], [47.377412, 8.539249], [47.377467, 8.541978], [47.368358, 8.546397], [47.350245, 8.56193], [47.390847, 8.536851], [47.390615, 8.539482], [47.372731, 8.534902], [47.368113, 8.495748], [47.422258, 8.503132], [47.39111, 8.522312], [47.399455, 8.497364], [47.373421, 8.55311], [47.428014, 8.536888], [47.368042, 8.494688], [47.364595, 8.566205], [47.378946, 8.559397], [47.360596, 8.596727], [47.37017, 8.548831], [47.338891, 8.535887], [47.34909, 8.526567], [47.366093, 8.536817], [47.359761, 8.552652], [47.377565, 8.521189], [47.370465, 8.534895], [47.373382, 8.531724], [47.371465, 8.547839], [47.381872, 8.516562], [47.343604, 8.530214], [47.388677, 8.516117], [47.362167, 8.547526], [47.335063, 8.519281], [47.374273, 8.524088], [47.369936, 8.551634], [47.366584, 8.545619], [47.381215, 8.517595], [47.410132, 8.542522], [47.366377, 8.563396], [47.360322, 8.579075], [47.398481, 8.591603], [47.357924, 8.521664], [47.363345, 8.546717], [47.377132, 8.540316], [47.393591, 8.529158], [47.399189, 8.591909], [47.375541, 8.525054], [47.379967, 8.487018], [47.345192, 8.534508], [47.40168, 8.487127], [47.359215, 8.570009], [47.362075, 8.567329], [47.401775, 8.531313], [47.393399, 8.524717], [47.36201, 8.557346], [47.370417, 8.509273], [47.353578, 8.576111], [47.40172, 8.552072], [47.380926, 8.537706], [47.415586, 8.559068], [47.391122, 8.522922], [47.382879, 8.530952], [47.368815, 8.506513], [47.391463, 8.514438], [47.415143, 8.51485], [47.335094, 8.526546], [47.385598, 8.528849], [47.370181, 8.524972], [47.367924, 8.560621], [47.385156, 8.485133], [47.349108, 8.564064], [47.379803, 8.506866], [47.413003, 8.536764], [47.409918, 8.563798], [47.370717, 8.51672], [47.35948, 8.552911], [47.410748, 8.568175], [47.375133, 8.528224], [47.375889, 8.525313], [47.375532, 8.555207], [47.373088, 8.495648], [47.392128, 8.524055], [47.380924, 8.51792], [47.394778, 8.525433], [47.41913, 8.510756], [47.373261, 8.536939], [47.387642, 8.490798], [47.389971, 8.522024], [47.359383, 8.522448], [47.389172, 8.49459], [47.376734, 8.561111], [47.417728, 8.559007], [47.377476, 8.491882], [47.366806, 8.555315], [47.374379, 8.517562], [47.406265, 8.553757], [47.355361, 8.532162], [47.409899, 8.543405], [47.364234, 8.536422], [47.399935, 8.543198], [47.370794, 8.535246], [47.369096, 8.529292], [47.392908, 8.522415], [47.364632, 8.537198], [47.360287, 8.512353], [47.390816, 8.523896], [47.358604, 8.52692], [47.406754, 8.550535], [47.3765, 8.549082], [47.393447, 8.512902], [47.36719, 8.544334], [47.402597, 8.49214], [47.386802, 8.534701], [47.370734, 8.47051], [47.373027, 8.533094], [47.380165, 8.552417], [47.381978, 8.541568], [47.416348, 8.532129], [47.416348, 8.532115], [47.40027, 8.503593], [47.370831, 8.548289], [47.369636, 8.518804], [47.371388, 8.537125], [47.411493, 8.486181], [47.4293, 8.489553], [47.366979, 8.545693], [47.378845, 8.542801], [47.341149, 8.536846], [47.370143, 8.548791], [47.35894, 8.549246], [47.373513, 8.513903], [47.37639, 8.527548], [47.39909, 8.547752], [47.376995, 8.527349], [47.382364, 8.541642], [47.364557, 8.566482], [47.364669, 8.566034], [47.372575, 8.563354], [47.413039, 8.5462], [47.4028, 8.55387], [47.403148, 8.517271], [47.380623, 8.519305], [47.37436, 8.541463], [47.4178, 8.543953], [47.361477, 8.526502], [47.369454, 8.541852], [47.352165, 8.558675], [47.365016, 8.53841], [47.354743, 8.574746], [47.358388, 8.577259], [47.373986, 8.544819], [47.390418, 8.491157], [47.377575, 8.528711], [47.391133, 8.478734], [47.356457, 8.532264], [47.42042, 8.508317], [47.389877, 8.535745], [47.377465, 8.503879], [47.365635, 8.539496], [47.423776, 8.514123], [47.383518, 8.573002], [47.371371, 8.492608], [47.403991, 8.503005], [47.377898, 8.497942], [47.384806, 8.531746], [47.373729, 8.534062], [47.40592, 8.548437], [47.392283, 8.506493], [47.356594, 8.53588], [47.405209, 8.558704], [47.399704, 8.494772], [47.365547, 8.539322], [47.39688, 8.493709], [47.416628, 8.507949], [47.383497, 8.511085], [47.369545, 8.55573], [47.357092, 8.52219], [47.391535, 8.487934], [47.413062, 8.558723], [47.366522, 8.540904], [47.368123, 8.533298], [47.379747, 8.507103], [47.379721, 8.520597], [47.369248, 8.525615], [47.358405, 8.598109], [47.373385, 8.54282], [47.380892, 8.549704], [47.404641, 8.556969], [47.388318, 8.485593], [47.378619, 8.528732], [47.369293, 8.525655], [47.399657, 8.468037], [47.353965, 8.575166], [47.407299, 8.548174], [47.40346, 8.556362], [47.381585, 8.513563], [47.376635, 8.533075], [47.377683, 8.538208], [47.399722, 8.520023], [47.366392, 8.541246], [47.368228, 8.536491], [47.367418, 8.492067], [47.386158, 8.535271], [47.36655, 8.540786], [47.372928, 8.520737], [47.415675, 8.545168], [47.426996, 8.54649], [47.354226, 8.5521], [47.348451, 8.534257], [47.369248, 8.525601], [47.416558, 8.555258], [47.367098, 8.53983], [47.373558, 8.519717], [47.382624, 8.543595], [47.418015, 8.508772], [47.362726, 8.548425], [47.370502, 8.53573], [47.403605, 8.572873], [47.420708, 8.502544], [47.413864, 8.527453], [47.36401, 8.55147], [47.381084, 8.538173], [47.34235, 8.536329], [47.389846, 8.539983], [47.402021, 8.49813], [47.391779, 8.540989], [47.384425, 8.50321], [47.386753, 8.50233], [47.374966, 8.534484], [47.373922, 8.538329], [47.369565, 8.540623], [47.35403, 8.601165], [47.378752, 8.52798], [47.374571, 8.532556], [47.394665, 8.527869], [47.397898, 8.534135], [47.389905, 8.492127], [47.409952, 8.550032], [47.413623, 8.550956], [47.379569, 8.537559], [47.382816, 8.529997], [47.367886, 8.52985], [47.399744, 8.54342], [47.364824, 8.537784], [47.371819, 8.542841], [47.378209, 8.557487], [47.399661, 8.543564], [47.384141, 8.497814], [47.391437, 8.516265], [47.384119, 8.531097], [47.351828, 8.57655], [47.379126, 8.50815], [47.408639, 8.546321], [47.411151, 8.525237], [47.376098, 8.516498], [47.359654, 8.548824], [47.378139, 8.510766], [47.401128, 8.546323], [47.364468, 8.54866], [47.377495, 8.496676], [47.415923, 8.521863], [47.37683, 8.533357], [47.378537, 8.541113], [47.342971, 8.511395], [47.368774, 8.547995], [47.431337, 8.516463], [47.362015, 8.551177], [47.366815, 8.555289], [47.388279, 8.520188], [47.369765, 8.529015], [47.356505, 8.523422], [47.377819, 8.516202], [47.41239, 8.537772], [47.394238, 8.493392], [47.366438, 8.54498], [47.37732, 8.539552], [47.374783, 8.537685], [47.3667, 8.559748], [47.408014, 8.569058], [47.379833, 8.527738], [47.376767, 8.524815], [47.414725, 8.546672], [47.355648, 8.508195], [47.392488, 8.502749], [47.364593, 8.537475], [47.414759, 8.516419], [47.365538, 8.539322], [47.374195, 8.555774], [47.352968, 8.578653], [47.372732, 8.534875], [47.378844, 8.522036], [47.366527, 8.540308], [47.373586, 8.535846], [47.371317, 8.536025], [47.380017, 8.524484], [47.427069, 8.546399], [47.368654, 8.543715], [47.390891, 8.488557], [47.418856, 8.507318], [47.37902, 8.542354], [47.367083, 8.544318], [47.389665, 8.492864], [47.426077, 8.555087], [47.356516, 8.510662], [47.369022, 8.540943], [47.379039, 8.525126], [47.391706, 8.518205], [47.413299, 8.545304], [47.397518, 8.532471], [47.337169, 8.519112], [47.373287, 8.535099], [47.384954, 8.5322], [47.387479, 8.516212], [47.369928, 8.513487], [47.359789, 8.531909], [47.382476, 8.529871], [47.367051, 8.558802], [47.391799, 8.487608], [47.410501, 8.569548], [47.35966, 8.549129], [47.379304, 8.529515], [47.372544, 8.518518], [47.431318, 8.516516], [47.362176, 8.54754], [47.375454, 8.547458], [47.402403, 8.495673], [47.388176, 8.491365], [47.382718, 8.528075], [47.381466, 8.537704], [47.374336, 8.52409], [47.382535, 8.548202], [47.403871, 8.558477], [47.366773, 8.558717], [47.372741, 8.534862], [47.386834, 8.502318], [47.386223, 8.498346], [47.388633, 8.484658], [47.362369, 8.507046], [47.358419, 8.505259], [47.389781, 8.477979], [47.372991, 8.531279], [47.373164, 8.530078], [47.352961, 8.559181], [47.36396, 8.530299], [47.356568, 8.522378], [47.354536, 8.556302], [47.359661, 8.550982], [47.364633, 8.554859], [47.388214, 8.525154], [47.377824, 8.507899], [47.39569, 8.487102], [47.390933, 8.523011], [47.393881, 8.472164], [47.375741, 8.538102], [47.37612, 8.543685], [47.41471, 8.551019], [47.403968, 8.485781], [47.3809, 8.491274], [47.370965, 8.531462], [47.378963, 8.518834], [47.383725, 8.547909], [47.379839, 8.490273], [47.343968, 8.528858], [47.351837, 8.504969], [47.363752, 8.533274], [47.363914, 8.566905], [47.377993, 8.509068], [47.405194, 8.557511], [47.368647, 8.520637], [47.413924, 8.54859], [47.355769, 8.561769], [47.419062, 8.538108], [47.393474, 8.473454], [47.358449, 8.571092], [47.410779, 8.534081], [47.369239, 8.541728], [47.373832, 8.536447], [47.363245, 8.533634], [47.37017, 8.548792], [47.405997, 8.557263], [47.371642, 8.515878], [47.407871, 8.565266], [47.357675, 8.552569], [47.381638, 8.5309], [47.366007, 8.533492], [47.383274, 8.499161], [47.374277, 8.495473], [47.382404, 8.514467], [47.415169, 8.510067], [47.41443, 8.55308], [47.37673, 8.524827], [47.412312, 8.515495], [47.351821, 8.559806], [47.36798, 8.540828], [47.41676, 8.482666], [47.378997, 8.531534], [47.374985, 8.536299], [47.357993, 8.525809], [47.396855, 8.534126], [47.372057, 8.522441], [47.378788, 8.523174], [47.420418, 8.503678], [47.404549, 8.572006], [47.419246, 8.507922], [47.375375, 8.484544], [47.368778, 8.528743], [47.374167, 8.540917], [47.391088, 8.522802], [47.402037, 8.498342], [47.389825, 8.509663], [47.370785, 8.535246], [47.385811, 8.530058], [47.410149, 8.568693], [47.377672, 8.506783], [47.405068, 8.482517], [47.375573, 8.536894], [47.364041, 8.536007], [47.397811, 8.533828], [47.37535, 8.517622], [47.393141, 8.474507], [47.335422, 8.519355], [47.362443, 8.612522], [47.370143, 8.548818], [47.372595, 8.574146], [47.37946, 8.544271], [47.369763, 8.5368], [47.378848, 8.542417], [47.376831, 8.541793], [47.360872, 8.588923], [47.398238, 8.534354], [47.362168, 8.547513], [47.386444, 8.52684], [47.364903, 8.519899], [47.348302, 8.563729], [47.415746, 8.512835], [47.410468, 8.532763], [47.343528, 8.53544], [47.367368, 8.541703], [47.380499, 8.493848], [47.376319, 8.499447], [47.376851, 8.520658], [47.374536, 8.539971], [47.400124, 8.586551], [47.369932, 8.547383], [47.399149, 8.521681], [47.366102, 8.506115], [47.373025, 8.533359], [47.391643, 8.513461], [47.370152, 8.548791], [47.382997, 8.514625], [47.395259, 8.519164], [47.371908, 8.539175], [47.377787, 8.507991], [47.378499, 8.519407], [47.369123, 8.529346], [47.375651, 8.512291], [47.386289, 8.551604], [47.361141, 8.600671], [47.367969, 8.53438], [47.370016, 8.5329], [47.386971, 8.534903], [47.367529, 8.546526], [47.37329, 8.52906], [47.369041, 8.537977], [47.393198, 8.493014], [47.411858, 8.563216], [47.365343, 8.545646], [47.382296, 8.488123], [47.370561, 8.528515], [47.361855, 8.526497], [47.361504, 8.561294], [47.388663, 8.496169], [47.354108, 8.561509], [47.384297, 8.528465], [47.372619, 8.534383], [47.397833, 8.541857], [47.373823, 8.536487], [47.388494, 8.487053], [47.387036, 8.485117], [47.378788, 8.528921], [47.35278, 8.572163], [47.390506, 8.487384], [47.373332, 8.531339], [47.366901, 8.536053], [47.366372, 8.540504], [47.37874, 8.494396], [47.388674, 8.510554], [47.383151, 8.541169], [47.353621, 8.576284], [47.387345, 8.495693], [47.366702, 8.563244], [47.3261, 8.514879], [47.376268, 8.522368], [47.374227, 8.52418], [47.392239, 8.494677], [47.383161, 8.53068], [47.3743, 8.543965], [47.377711, 8.538169], [47.386565, 8.490432], [47.390685, 8.508144], [47.409004, 8.579044], [47.368835, 8.52836], [47.371316, 8.531417], [47.414967, 8.527807], [47.366419, 8.545073], [47.375917, 8.541376], [47.376289, 8.536312], [47.377135, 8.541958], [47.359809, 8.558915], [47.413669, 8.529105], [47.358246, 8.587966], [47.362552, 8.548673], [47.377258, 8.528043], [47.4143, 8.518398], [47.360585, 8.550247], [47.387744, 8.52733], [47.377188, 8.540105], [47.378997, 8.494746], [47.403265, 8.547653], [47.376944, 8.554296], [47.364586, 8.566218], [47.3771, 8.540885], [47.404986, 8.576957], [47.374775, 8.489233], [47.358262, 8.587304], [47.408138, 8.580178], [47.428047, 8.545664], [47.396454, 8.472134], [47.380102, 8.486981], [47.377071, 8.535388], [47.392504, 8.532832], [47.374663, 8.525593], [47.374805, 8.551338], [47.403748, 8.565563], [47.373553, 8.536428], [47.391142, 8.538936], [47.365424, 8.545608], [47.417663, 8.546124], [47.374473, 8.495729], [47.409817, 8.543536], [47.376803, 8.522842], [47.375148, 8.525722], [47.376741, 8.521782], [47.369689, 8.525584], [47.388572, 8.520512], [47.37482, 8.543208], [47.393039, 8.50737], [47.382396, 8.537352], [47.395673, 8.506561], [47.417321, 8.522355], [47.37458, 8.487878], [47.372945, 8.531357], [47.389391, 8.521509], [47.366639, 8.505437], [47.392532, 8.491067], [47.370353, 8.539037], [47.362144, 8.559242], [47.391114, 8.522842], [47.383416, 8.499402], [47.384702, 8.531281], [47.369023, 8.53795], [47.376857, 8.541873], [47.356462, 8.53552], [47.423043, 8.543214], [47.340211, 8.535186], [47.395651, 8.545256], [47.41736, 8.538285], [47.391488, 8.519472], [47.399723, 8.491672], [47.368662, 8.543782], [47.399876, 8.504446], [47.416424, 8.514425], [47.412133, 8.523137], [47.417442, 8.545695], [47.368306, 8.547111], [47.388898, 8.540347], [47.381043, 8.532027], [47.40957, 8.544896], [47.342173, 8.530356], [47.391004, 8.523105], [47.41969, 8.508461], [47.3743, 8.524963], [47.361467, 8.561399], [47.387162, 8.533675], [47.371169, 8.527945], [47.406141, 8.535616], [47.361363, 8.576621], [47.368698, 8.540936], [47.367785, 8.539527], [47.376694, 8.526747], [47.40007, 8.490089], [47.377846, 8.541893], [47.363256, 8.535289], [47.411189, 8.546745], [47.373871, 8.576147], [47.405349, 8.578488], [47.388188, 8.480133], [47.390635, 8.491996], [47.379269, 8.537963], [47.370188, 8.548805], [47.369166, 8.532445], [47.409853, 8.549102], [47.373107, 8.523707], [47.365872, 8.548636], [47.431361, 8.516702], [47.374912, 8.53161], [47.398359, 8.539549], [47.362469, 8.53383], [47.373785, 8.51947], [47.411859, 8.512027], [47.364988, 8.553556], [47.356631, 8.522379], [47.378634, 8.51945], [47.375045, 8.52809], [47.393701, 8.474187], [47.338434, 8.539503], [47.370717, 8.516707], [47.378669, 8.519517], [47.400033, 8.546049], [47.361694, 8.560212], [47.371973, 8.601424], [47.409008, 8.550078], [47.35767, 8.554065], [47.393339, 8.495335], [47.384779, 8.529852], [47.374593, 8.538688], [47.383237, 8.53974], [47.363758, 8.535432], [47.377247, 8.512853], [47.385338, 8.508473], [47.404823, 8.565148], [47.354315, 8.557754], [47.395821, 8.506207], [47.338372, 8.53937], [47.381164, 8.53726], [47.377435, 8.526444], [47.40101, 8.546467], [47.340057, 8.530551], [47.388503, 8.491014], [47.37447, 8.543081], [47.374425, 8.521271], [47.377549, 8.543781], [47.376809, 8.544017], [47.416265, 8.544571], [47.410877, 8.563262], [47.391066, 8.522258], [47.372194, 8.535553], [47.378217, 8.527466], [47.390575, 8.545548], [47.367198, 8.545446], [47.377, 8.541889], [47.401336, 8.490379], [47.368046, 8.507928], [47.377231, 8.525168], [47.354916, 8.526845], [47.374786, 8.55241], [47.384152, 8.494662], [47.410379, 8.54588], [47.372888, 8.524047], [47.370281, 8.509442], [47.368194, 8.559713], [47.334945, 8.519372], [47.384954, 8.531326], [47.380128, 8.520327], [47.409485, 8.537752], [47.364973, 8.538264], [47.376112, 8.524603], [47.381726, 8.499356], [47.385831, 8.5299], [47.395723, 8.508046], [47.390405, 8.539809], [47.379731, 8.524279], [47.36073, 8.522687], [47.397393, 8.532336], [47.412862, 8.53639], [47.366797, 8.542207], [47.360864, 8.534221], [47.37019, 8.521092], [47.364765, 8.537399], [47.367269, 8.541754], [47.392414, 8.545149], [47.397898, 8.534135], [47.370058, 8.564122], [47.351916, 8.505222], [47.365808, 8.550568], [47.387051, 8.489422], [47.412166, 8.538668], [47.369801, 8.508784], [47.398702, 8.586626], [47.379312, 8.511319], [47.36575, 8.500401], [47.360033, 8.523176], [47.394724, 8.525432], [47.355891, 8.557509], [47.376356, 8.528315], [47.37111, 8.531333], [47.363478, 8.499946], [47.394212, 8.480383], [47.372486, 8.545556], [47.426831, 8.534558], [47.37539, 8.547589], [47.373526, 8.527874], [47.392129, 8.524028], [47.368933, 8.528468], [47.387511, 8.500106], [47.393022, 8.514059], [47.400337, 8.543472], [47.378659, 8.496368], [47.404423, 8.580244], [47.373439, 8.542808], [47.364249, 8.531113], [47.373842, 8.537308], [47.403551, 8.57107], [47.41956, 8.505105], [47.363453, 8.506525], [47.384181, 8.507205], [47.360418, 8.569307], [47.372311, 8.544136], [47.353746, 8.575492], [47.370886, 8.531249], [47.406952, 8.550552], [47.387456, 8.528278], [47.417697, 8.541632], [47.353308, 8.576145], [47.363642, 8.535364], [47.410786, 8.558702], [47.408942, 8.545611], [47.378208, 8.528353], [47.408972, 8.548169], [47.359613, 8.548453], [47.365402, 8.546945], [47.366935, 8.543812], [47.405255, 8.557685], [47.367164, 8.534867], [47.372311, 8.544096], [47.363771, 8.551002], [47.378294, 8.528805], [47.361427, 8.57653], [47.362602, 8.519734], [47.361303, 8.562494], [47.374471, 8.540234], [47.37892, 8.546219], [47.386226, 8.528027], [47.403483, 8.497523], [47.373949, 8.526015], [47.369364, 8.520016], [47.403345, 8.567303], [47.387678, 8.499593], [47.391808, 8.484615], [47.344263, 8.527104], [47.366656, 8.534366], [47.373334, 8.53306], [47.371306, 8.537282], [47.419924, 8.547655], [47.422708, 8.550934], [47.383246, 8.529291], [47.367251, 8.537053], [47.394197, 8.49004], [47.3779, 8.541868], [47.36908, 8.541487], [47.401749, 8.505133], [47.384901, 8.509034], [47.389254, 8.5274], [47.373033, 8.483968], [47.374682, 8.537882], [47.380224, 8.506146], [47.368119, 8.578367], [47.373147, 8.503939], [47.366821, 8.506103], [47.409394, 8.522697], [47.368565, 8.524608], [47.355219, 8.55449], [47.391802, 8.517611], [47.368409, 8.511444], [47.390746, 8.539908], [47.392266, 8.533343], [47.36051, 8.50771], [47.386231, 8.497525], [47.386233, 8.498319], [47.425806, 8.547712], [47.375032, 8.539888], [47.377837, 8.528664], [47.372033, 8.522149], [47.393676, 8.501753], [47.400444, 8.493515], [47.389024, 8.522283], [47.392133, 8.510107], [47.405572, 8.549967], [47.348315, 8.562406], [47.35477, 8.523294], [47.375875, 8.541084], [47.386344, 8.531751], [47.378326, 8.527349], [47.416789, 8.572266], [47.367908, 8.497558], [47.388265, 8.540639], [47.369022, 8.540956], [47.365502, 8.549687], [47.38457, 8.509809], [47.377256, 8.538716], [47.373807, 8.544736], [47.404814, 8.483731], [47.383973, 8.515982], [47.418589, 8.507975], [47.369582, 8.518776], [47.375568, 8.517322], [47.387264, 8.535227], [47.427274, 8.543766], [47.376776, 8.538084], [47.369744, 8.543486], [47.381133, 8.504085], [47.390921, 8.523315], [47.400018, 8.541981], [47.331349, 8.537266], [47.366556, 8.54485], [47.391371, 8.537524], [47.405239, 8.557525], [47.385173, 8.507914], [47.390923, 8.522123], [47.413598, 8.536538], [47.36315, 8.532176], [47.365413, 8.552386], [47.394819, 8.525818], [47.428817, 8.545097], [47.423012, 8.541663], [47.377149, 8.529126], [47.362344, 8.504848], [47.378235, 8.530314], [47.397938, 8.535619], [47.36095, 8.599118], [47.365933, 8.562777], [47.372965, 8.547128], [47.378004, 8.547988], [47.384368, 8.548438], [47.405139, 8.481591], [47.383717, 8.533684], [47.335297, 8.541145], [47.367134, 8.541724], [47.414036, 8.541556], [47.403178, 8.548314], [47.378137, 8.510024], [47.408804, 8.579291], [47.370206, 8.548819], [47.363987, 8.5312], [47.386027, 8.505017], [47.377118, 8.521855], [47.343274, 8.519434], [47.371768, 8.534048], [47.389041, 8.471328], [47.353933, 8.577469], [47.385947, 8.493188], [47.380034, 8.536972], [47.368557, 8.539741], [47.374031, 8.542926], [47.377896, 8.521368], [47.363986, 8.533173], [47.355244, 8.527368], [47.367539, 8.53036], [47.357821, 8.526931], [47.371596, 8.515944], [47.421717, 8.550131], [47.40375, 8.570889], [47.365179, 8.567197], [47.370289, 8.539142], [47.400211, 8.477546], [47.415205, 8.549174], [47.405275, 8.480533], [47.384596, 8.496314], [47.38831, 8.485553], [47.380737, 8.536815], [47.378839, 8.542457], [47.368167, 8.529604], [47.381597, 8.517113], [47.373832, 8.536487], [47.357567, 8.508843], [47.356577, 8.522418], [47.370288, 8.541207], [47.409206, 8.546293], [47.402512, 8.492549], [47.363355, 8.534299], [47.415922, 8.53815], [47.363601, 8.516788], [47.407622, 8.566824], [47.372666, 8.503373], [47.409703, 8.482223], [47.363859, 8.556776], [47.381083, 8.537325], [47.383316, 8.530418], [47.409338, 8.575288], [47.379046, 8.542474], [47.365046, 8.545666], [47.350889, 8.561282], [47.373506, 8.484295], [47.36651, 8.535462], [47.361626, 8.565414], [47.412261, 8.523816], [47.390286, 8.53623], [47.399004, 8.50529], [47.391131, 8.487886], [47.417094, 8.510118], [47.373532, 8.519664], [47.37762, 8.542008], [47.422345, 8.538971], [47.366903, 8.544328], [47.374108, 8.527237], [47.398404, 8.537669], [47.363354, 8.533425], [47.368456, 8.496563], [47.370444, 8.524673], [47.374158, 8.530508], [47.416821, 8.537227], [47.400701, 8.548673], [47.377713, 8.525562], [47.377233, 8.52685], [47.378884, 8.527268], [47.370637, 8.49119], [47.378281, 8.540631], [47.38799, 8.491017], [47.350253, 8.56287], [47.369597, 8.528654], [47.38802, 8.482766], [47.377467, 8.531609], [47.402351, 8.499329], [47.386426, 8.503674], [47.369532, 8.491023], [47.379394, 8.500554], [47.382521, 8.514483], [47.341408, 8.53038], [47.385032, 8.500746], [47.375959, 8.541642], [47.331003, 8.53677], [47.385559, 8.535801], [47.347743, 8.525415], [47.344103, 8.528821], [47.370703, 8.55876], [47.374467, 8.52155], [47.380924, 8.578747], [47.3764, 8.559462], [47.379356, 8.521133], [47.42099, 8.502139], [47.396402, 8.482943], [47.362513, 8.547149], [47.380203, 8.526672], [47.373524, 8.553536], [47.369324, 8.527099], [47.377162, 8.540052], [47.38125, 8.49136], [47.395541, 8.517872], [47.412533, 8.516864], [47.377173, 8.51305], [47.36244, 8.554734], [47.413747, 8.546467], [47.392112, 8.492727], [47.421887, 8.545496], [47.372005, 8.559966], [47.40872, 8.544388], [47.403164, 8.555388], [47.375623, 8.527824], [47.358028, 8.532627], [47.383714, 8.540571], [47.363842, 8.566877], [47.374906, 8.524631], [47.369178, 8.525454], [47.420862, 8.549199], [47.405747, 8.481006], [47.365098, 8.567221], [47.378057, 8.541487], [47.368341, 8.560312], [47.382103, 8.541663], [47.38583, 8.530019], [47.404173, 8.561703], [47.364686, 8.548452], [47.386899, 8.501207], [47.414733, 8.519188], [47.373867, 8.538408], [47.396878, 8.529795], [47.352677, 8.576211], [47.373311, 8.55516], [47.376243, 8.544932], [47.335771, 8.54052], [47.388153, 8.520186], [47.389841, 8.511796], [47.365724, 8.523464], [47.371592, 8.555217], [47.391373, 8.516291], [47.359184, 8.521623], [47.363607, 8.533364], [47.390153, 8.545526], [47.355153, 8.587806], [47.384624, 8.509889], [47.382388, 8.541007], [47.383208, 8.499531], [47.391454, 8.513484], [47.367234, 8.54072], [47.353717, 8.57201], [47.409597, 8.53733], [47.366661, 8.520425], [47.385383, 8.508554], [47.336352, 8.51416], [47.360402, 8.579222], [47.36473, 8.554199], [47.402929, 8.575747], [47.378543, 8.50402], [47.387373, 8.529441], [47.371864, 8.535308], [47.38677, 8.541787], [47.391618, 8.517077], [47.382637, 8.537542], [47.380486, 8.493213], [47.398714, 8.533396], [47.427178, 8.491393], [47.381096, 8.579572], [47.419607, 8.498997], [47.403277, 8.489557], [47.374931, 8.492877], [47.378748, 8.531238], [47.341066, 8.519879], [47.379549, 8.516806], [47.396296, 8.503461], [47.372347, 8.494124], [47.35429, 8.575967], [47.382168, 8.532023], [47.41221, 8.550052], [47.367291, 8.541383], [47.405106, 8.482279], [47.360633, 8.476497], [47.39141, 8.540081], [47.390838, 8.550957], [47.393275, 8.493439], [47.381918, 8.536534], [47.378005, 8.527952], [47.397726, 8.53331], [47.390829, 8.48547], [47.338471, 8.531842], [47.367074, 8.523373], [47.407162, 8.538022], [47.393901, 8.533496], [47.370143, 8.548804], [47.391221, 8.522937], [47.405111, 8.481749], [47.415132, 8.513087], [47.411079, 8.535651], [47.366349, 8.541033], [47.373493, 8.553072], [47.375563, 8.484693], [47.378357, 8.541109], [47.398606, 8.494803], [47.353245, 8.555825], [47.392206, 8.489378], [47.421107, 8.549946], [47.390058, 8.476196], [47.393683, 8.545056], [47.383859, 8.527211], [47.387068, 8.547356], [47.346245, 8.564361], [47.394183, 8.517924], [47.395597, 8.546169], [47.430955, 8.550125], [47.387773, 8.527118], [47.367377, 8.521777], [47.378536, 8.517448], [47.378692, 8.516127], [47.397936, 8.53391], [47.393487, 8.539184], [47.376938, 8.532353], [47.42836, 8.51737], [47.38351, 8.574697], [47.348451, 8.534217], [47.387103, 8.518946], [47.390958, 8.523223], [47.403297, 8.555537], [47.387429, 8.49731], [47.393468, 8.52701], [47.36402, 8.536272], [47.373094, 8.532671], [47.37445, 8.530077], [47.349005, 8.517353], [47.369242, 8.559193], [47.387014, 8.518798], [47.371424, 8.516099], [47.37405, 8.515186], [47.414251, 8.539785], [47.384903, 8.495141], [47.369106, 8.541567], [47.380926, 8.497274], [47.377732, 8.52543], [47.42383, 8.518949], [47.367644, 8.536346], [47.38516, 8.537078], [47.41124, 8.572174], [47.3448, 8.533163], [47.374282, 8.524989], [47.403046, 8.534823], [47.374281, 8.524128], [47.402068, 8.498793], [47.373137, 8.532964], [47.366788, 8.553461], [47.370234, 8.525079], [47.372515, 8.478516], [47.369726, 8.536945], [47.413557, 8.546529], [47.366478, 8.540758], [47.403692, 8.503211], [47.366745, 8.545755], [47.364542, 8.537209], [47.372349, 8.517217], [47.380432, 8.483411], [47.373968, 8.519223], [47.376496, 8.539111], [47.391565, 8.542654], [47.385336, 8.508712], [47.372891, 8.51985], [47.369707, 8.541764], [47.384984, 8.530982], [47.349874, 8.533995], [47.383073, 8.572423], [47.357594, 8.508896], [47.371019, 8.52381], [47.393629, 8.511673], [47.429007, 8.545034], [47.366764, 8.541902], [47.414235, 8.550916], [47.403871, 8.569619], [47.414559, 8.520576], [47.408596, 8.58032], [47.348118, 8.563249], [47.377873, 8.492737], [47.411448, 8.527085], [47.363075, 8.517254], [47.387545, 8.529326], [47.413695, 8.541536], [47.408422, 8.547403], [47.393401, 8.524571], [47.390213, 8.540189], [47.414042, 8.546671], [47.399563, 8.505222], [47.368154, 8.524255], [47.406631, 8.531452], [47.37262, 8.542818], [47.370896, 8.530163], [47.408178, 8.531457], [47.403398, 8.585628], [47.341318, 8.527533], [47.374975, 8.534498], [47.376648, 8.527898], [47.385221, 8.517199], [47.358641, 8.585366], [47.373533, 8.547087], [47.364137, 8.536287], [47.375056, 8.54014], [47.357597, 8.51341], [47.382198, 8.544937], [47.41508, 8.483495], [47.405252, 8.558016], [47.413949, 8.548777], [47.39206, 8.523709], [47.397794, 8.511678], [47.3832, 8.530362], [47.38623, 8.518067], [47.369652, 8.536176], [47.406922, 8.58679], [47.37465, 8.54964], [47.413884, 8.548126], [47.375923, 8.527446], [47.394269, 8.528841], [47.367954, 8.546283], [47.384903, 8.495154], [47.373807, 8.537228], [47.397042, 8.532382], [47.384178, 8.516198], [47.380617, 8.518987], [47.374479, 8.525112], [47.384057, 8.526248], [47.353369, 8.564339], [47.367653, 8.53922], [47.377773, 8.541958], [47.390471, 8.512709], [47.368546, 8.546533], [47.356379, 8.535757], [47.413589, 8.572039], [47.375974, 8.559705], [47.383594, 8.53143], [47.339496, 8.528026], [47.38426, 8.548396], [47.370066, 8.512245], [47.406687, 8.585089], [47.376882, 8.523983], [47.376109, 8.527741], [47.375658, 8.535505], [47.36989, 8.510864], [47.370723, 8.470695], [47.371567, 8.542889], [47.389435, 8.538769], [47.371271, 8.547504], [47.379999, 8.548149], [47.40524, 8.533901], [47.417727, 8.546006], [47.369366, 8.528424], [47.364101, 8.531547], [47.390118, 8.52355], [47.405637, 8.577514], [47.369763, 8.509922], [47.384823, 8.5318], [47.338915, 8.539037], [47.374937, 8.543237], [47.369783, 8.509737], [47.348785, 8.534052], [47.41587, 8.546378], [47.333913, 8.515262], [47.406327, 8.563139], [47.344869, 8.533442], [47.3462, 8.534449], [47.381709, 8.545205], [47.359635, 8.522427], [47.405232, 8.504911], [47.366492, 8.544889], [47.421638, 8.538626], [47.39364, 8.511488], [47.373424, 8.53489], [47.390698, 8.488977], [47.384655, 8.509387], [47.366857, 8.557474], [47.405682, 8.533751], [47.405366, 8.533957], [47.382799, 8.52993], [47.399657, 8.46805], [47.353502, 8.576533], [47.362974, 8.546921], [47.371751, 8.513855], [47.401573, 8.494942], [47.369601, 8.554645], [47.398696, 8.590786], [47.376057, 8.54183], [47.356572, 8.523927], [47.373617, 8.536377], [47.370581, 8.52453], [47.368538, 8.524581], [47.402938, 8.575747], [47.382799, 8.48616], [47.41015, 8.486538], [47.381183, 8.538161], [47.378556, 8.542001], [47.388976, 8.515831], [47.384399, 8.531923], [47.36273, 8.561915], [47.399195, 8.521523], [47.384846, 8.495484], [47.417027, 8.523012], [47.370161, 8.548831], [47.406764, 8.550429], [47.378789, 8.527822], [47.404371, 8.574519], [47.351598, 8.560582], [47.409273, 8.544929], [47.381484, 8.532976], [47.396764, 8.529422], [47.361159, 8.547664], [47.372743, 8.538358], [47.390984, 8.509766], [47.360224, 8.547618], [47.404819, 8.556324], [47.379121, 8.538344], [47.36719, 8.523521], [47.370161, 8.548844], [47.418734, 8.507766], [47.383412, 8.499906], [47.370689, 8.51676], [47.410472, 8.572516], [47.390801, 8.521763], [47.417799, 8.504845], [47.376864, 8.528789], [47.375866, 8.491876], [47.367395, 8.541756], [47.4193, 8.507936], [47.400171, 8.516217], [47.370075, 8.504394], [47.37829, 8.540618], [47.383298, 8.530431], [47.390594, 8.539786], [47.377638, 8.541995], [47.409947, 8.541233], [47.386858, 8.526782], [47.357494, 8.552671], [47.355868, 8.535574], [47.365066, 8.525596], [47.359801, 8.512422], [47.394525, 8.525561], [47.346838, 8.526931], [47.378904, 8.529016], [47.381776, 8.489914], [47.368759, 8.528796], [47.368779, 8.540898], [47.382305, 8.48807], [47.393354, 8.524782], [47.38077, 8.518976], [47.379702, 8.558393], [47.395494, 8.540046], [47.369571, 8.541801], [47.372072, 8.549361], [47.362685, 8.555401], [47.371402, 8.54789], [47.414095, 8.550436], [47.340105, 8.529308], [47.408395, 8.536987], [47.403465, 8.571572], [47.373388, 8.553652], [47.397069, 8.530448], [47.393046, 8.492931], [47.418034, 8.515372], [47.359572, 8.569395], [47.377491, 8.482281], [47.392671, 8.523721], [47.378289, 8.530275], [47.386232, 8.498333], [47.349979, 8.564215], [47.372362, 8.51772], [47.381526, 8.540804], [47.38077, 8.51899], [47.376052, 8.559137], [47.37076, 8.548248], [47.357333, 8.550801], [47.374449, 8.551887], [47.377725, 8.527099], [47.36993, 8.552203], [47.415368, 8.54809], [47.392297, 8.54516], [47.391695, 8.519397], [47.346297, 8.564507], [47.391952, 8.517905], [47.399591, 8.516695], [47.375266, 8.544581], [47.414385, 8.518956], [47.366806, 8.555315], [47.354071, 8.57534], [47.375872, 8.54515], [47.399144, 8.547832], [47.410783, 8.545941], [47.374163, 8.541353], [47.41441, 8.551344], [47.413634, 8.528999], [47.365421, 8.546866], [47.377226, 8.539907], [47.410706, 8.550259], [47.391931, 8.518209], [47.405803, 8.590701], [47.381808, 8.516667], [47.369284, 8.525668], [47.368884, 8.528984], [47.42724, 8.546376], [47.39241, 8.523729], [47.374974, 8.544946], [47.419161, 8.54748], [47.402014, 8.497812], [47.34292, 8.535943], [47.363209, 8.533567], [47.373391, 8.519277], [47.409816, 8.543629], [47.370581, 8.524477], [47.366927, 8.517968], [47.374665, 8.535921], [47.394549, 8.514368], [47.418197, 8.542027], [47.414402, 8.518996], [47.373059, 8.534498], [47.353985, 8.574981], [47.373617, 8.536377], [47.372312, 8.525995], [47.381373, 8.536126], [47.364993, 8.553066], [47.370542, 8.524767], [47.382902, 8.555825], [47.378491, 8.526995], [47.395456, 8.535555], [47.397493, 8.536021], [47.362541, 8.533885], [47.388031, 8.514925], [47.375555, 8.548228], [47.37749, 8.544322], [47.406365, 8.573011], [47.338222, 8.539036], [47.377717, 8.507817], [47.409484, 8.572323], [47.380092, 8.522273], [47.362509, 8.567034], [47.379961, 8.53709], [47.366846, 8.499576], [47.408986, 8.54385], [47.430946, 8.550152], [47.409268, 8.55007], [47.362356, 8.567084], [47.368497, 8.538429], [47.367963, 8.546296], [47.358237, 8.57159], [47.354332, 8.557847], [47.369984, 8.510416], [47.390683, 8.508276], [47.410082, 8.545012], [47.399999, 8.545836], [47.38368, 8.515645], [47.410958, 8.535211], [47.371993, 8.534966], [47.37732, 8.512735], [47.378979, 8.559636], [47.360357, 8.525089], [47.41274, 8.545438], [47.422079, 8.509914], [47.366461, 8.520686], [47.37102, 8.537952], [47.41912, 8.507933], [47.365627, 8.539469], [47.3676, 8.496744], [47.3695, 8.521793], [47.420096, 8.548454], [47.373271, 8.529179], [47.407157, 8.550728], [47.340006, 8.530286], [47.391758, 8.481183], [47.382727, 8.486158], [47.375398, 8.524972], [47.380386, 8.501223], [47.371177, 8.537584], [47.37505, 8.544603], [47.398978, 8.541642], [47.394207, 8.489921], [47.368067, 8.541095], [47.366779, 8.53564], [47.400394, 8.51642], [47.37297, 8.534417], [47.413731, 8.524442], [47.390362, 8.544351], [47.37994, 8.55608], [47.404659, 8.498766], [47.422832, 8.550194], [47.377278, 8.551429], [47.377224, 8.551402], [47.370168, 8.563846], [47.405505, 8.550455], [47.381548, 8.532885], [47.38504, 8.494958], [47.37302, 8.532948], [47.378534, 8.541404], [47.368386, 8.551005], [47.37304, 8.52695], [47.349305, 8.529497], [47.37876, 8.542309], [47.402056, 8.499138], [47.396769, 8.529859], [47.382948, 8.515061], [47.378428, 8.54029], [47.391767, 8.51753], [47.372608, 8.545916], [47.400728, 8.54866], [47.389109, 8.530444], [47.343214, 8.530576], [47.403766, 8.567471], [47.415004, 8.546691], [47.362303, 8.54835], [47.350186, 8.560592], [47.397042, 8.530447], [47.365479, 8.538883], [47.384922, 8.524146], [47.390592, 8.524845], [47.375202, 8.553068], [47.392701, 8.524384], [47.375009, 8.532764], [47.411139, 8.563148], [47.37659, 8.538729], [47.367871, 8.544639], [47.371001, 8.538137], [47.366334, 8.520829], [47.38728, 8.487996], [47.40225, 8.493749], [47.367978, 8.544774], [47.361548, 8.561387], [47.36711, 8.54424], [47.366473, 8.5366], [47.382423, 8.529698], [47.376074, 8.559641], [47.357907, 8.514807], [47.410365, 8.5436], [47.359703, 8.586184], [47.402883, 8.55464], [47.365006, 8.553503], [47.402083, 8.499191], [47.36634, 8.547653], [47.362181, 8.50499], [47.366798, 8.543081], [47.388966, 8.520745], [47.359698, 8.535799], [47.387866, 8.498696], [47.371203, 8.575785], [47.386761, 8.469761], [47.381554, 8.533123], [47.376528, 8.532888], [47.421952, 8.548161], [47.410971, 8.536616], [47.378768, 8.539502], [47.374476, 8.521643], [47.374631, 8.523301], [47.368191, 8.497021], [47.400253, 8.547484], [47.42069, 8.502517], [47.363377, 8.50794], [47.393181, 8.513479], [47.377672, 8.521258], [47.386243, 8.533868], [47.401103, 8.588466], [47.413044, 8.556828], [47.407206, 8.526747], [47.409301, 8.528738], [47.379908, 8.494512], [47.399716, 8.519732], [47.362186, 8.547513], [47.362593, 8.519707], [47.410883, 8.54491], [47.410892, 8.54491], [47.377657, 8.543743], [47.377143, 8.540131], [47.365391, 8.564805], [47.370167, 8.524495], [47.373067, 8.536511], [47.359481, 8.522596], [47.389944, 8.480949], [47.381346, 8.534284], [47.379315, 8.537831], [47.399765, 8.516341], [47.418874, 8.503329], [47.377467, 8.541978], [47.410877, 8.535157], [47.393761, 8.509106], [47.414621, 8.514892], [47.382731, 8.539928], [47.37256, 8.529218], [47.374856, 8.540428], [47.366864, 8.520853], [47.366869, 8.532729], [47.363044, 8.550867], [47.374564, 8.541733], [47.370125, 8.548804], [47.40524, 8.505031], [47.370785, 8.535285], [47.36659, 8.546003], [47.405255, 8.480732], [47.392303, 8.533225], [47.385104, 8.526839], [47.379475, 8.527611], [47.396529, 8.528596], [47.374789, 8.529475], [47.370992, 8.53141], [47.368216, 8.497233], [47.375102, 8.556866], [47.374353, 8.524183], [47.415095, 8.513179], [47.370561, 8.524715], [47.373972, 8.538794], [47.377898, 8.507662], [47.38675, 8.526872], [47.400709, 8.548699], [47.378417, 8.509884], [47.36712, 8.544187], [47.368547, 8.524581], [47.372992, 8.562092], [47.392672, 8.475664], [47.381992, 8.528722], [47.400719, 8.548673], [47.340939, 8.53143], [47.424861, 8.537393], [47.359868, 8.521637], [47.373457, 8.519993], [47.392988, 8.524417], [47.360203, 8.523312], [47.382857, 8.575239], [47.378095, 8.483194], [47.36573, 8.521836], [47.365976, 8.545275], [47.357954, 8.52046], [47.371197, 8.511553], [47.413634, 8.528999], [47.393003, 8.530471], [47.370802, 8.54952], [47.356551, 8.534688], [47.398953, 8.541456], [47.405043, 8.557269], [47.399172, 8.591803], [47.354106, 8.575487], [47.376733, 8.53505], [47.40766, 8.584023], [47.376092, 8.540956], [47.349846, 8.561273], [47.379153, 8.508084], [47.390652, 8.479228], [47.385358, 8.507308], [47.391196, 8.538911], [47.364984, 8.553053], [47.386197, 8.526318], [47.406925, 8.550565], [47.393001, 8.492917], [47.378749, 8.545328], [47.406842, 8.550735], [47.407428, 8.493984], [47.366799, 8.542896], [47.375879, 8.527405], [47.384737, 8.500488], [47.369027, 8.492165], [47.376948, 8.543609], [47.367626, 8.523066], [47.377252, 8.541907], [47.340284, 8.530371], [47.404318, 8.493804], [47.37017, 8.548805], [47.330046, 8.534302], [47.373399, 8.502897], [47.375106, 8.518689], [47.367149, 8.540189], [47.377569, 8.526486], [47.423731, 8.549338], [47.3801, 8.528048], [47.359713, 8.522733], [47.41762, 8.483068], [47.344245, 8.530055], [47.394712, 8.525724], [47.361006, 8.531629], [47.386173, 8.498928], [47.354936, 8.554894], [47.40446, 8.53362], [47.429644, 8.487227], [47.375054, 8.537532], [47.404605, 8.505628], [47.392733, 8.539088], [47.361059, 8.531657], [47.365478, 8.535229], [47.392056, 8.497919], [47.354077, 8.553526], [47.374463, 8.540075], [47.353954, 8.523926], [47.386768, 8.547614], [47.36474, 8.55412], [47.383028, 8.57519], [47.370886, 8.548211], [47.383948, 8.527279], [47.387064, 8.501766], [47.405938, 8.590677], [47.393274, 8.524608], [47.367082, 8.56394], [47.367147, 8.533754], [47.365472, 8.521579], [47.328799, 8.517712], [47.341405, 8.518232], [47.370152, 8.548804], [47.374536, 8.539971], [47.354877, 8.558189], [47.368776, 8.500991], [47.407175, 8.582118], [47.414374, 8.546678], [47.358636, 8.553648], [47.362755, 8.554687], [47.410946, 8.546806], [47.351245, 8.579119], [47.358347, 8.571368], [47.353483, 8.576572], [47.379426, 8.542177], [47.36357, 8.535375], [47.401169, 8.544827], [47.386273, 8.531657], [47.374914, 8.534324], [47.413419, 8.509634], [47.373726, 8.542867], [47.369094, 8.538111], [47.369276, 8.541689], [47.344269, 8.535045], [47.379541, 8.537704], [47.401726, 8.581008], [47.410708, 8.543462], [47.384978, 8.503685], [47.36129, 8.522514], [47.36276, 8.568032], [47.375597, 8.52679], [47.374713, 8.549654], [47.3755, 8.540812], [47.390104, 8.522172], [47.414986, 8.551329], [47.373109, 8.536803], [47.384337, 8.531869], [47.371097, 8.520303], [47.356776, 8.509807], [47.367845, 8.537039], [47.386496, 8.529026], [47.361356, 8.549614], [47.345555, 8.529446], [47.365223, 8.532695], [47.375701, 8.516649], [47.374458, 8.52159], [47.369467, 8.526202], [47.36842, 8.50538], [47.370224, 8.548819], [47.403229, 8.572666], [47.390293, 8.491009], [47.379531, 8.515826], [47.385537, 8.529536], [47.378715, 8.528072], [47.358882, 8.516415], [47.363967, 8.528565], [47.373535, 8.52504], [47.362188, 8.559389], [47.390715, 8.50878], [47.38046, 8.519434], [47.38901, 8.516971], [47.382196, 8.540354], [47.414307, 8.550891], [47.423084, 8.49847], [47.377318, 8.529342], [47.373993, 8.538463], [47.381066, 8.537219], [47.360368, 8.552241], [47.351291, 8.5763], [47.398361, 8.537443], [47.387184, 8.518987], [47.38899, 8.48893], [47.33515, 8.514718], [47.374177, 8.502436], [47.375922, 8.54086], [47.403995, 8.574405], [47.40953, 8.537726], [47.370952, 8.52324], [47.423738, 8.542963], [47.400092, 8.590591], [47.357797, 8.524666], [47.413873, 8.545436], [47.405298, 8.558785], [47.400109, 8.50159], [47.380221, 8.557781], [47.376065, 8.559614], [47.362713, 8.535583], [47.375644, 8.544549], [47.375931, 8.54086], [47.360413, 8.550376], [47.385795, 8.529833], [47.378643, 8.559125], [47.389756, 8.511277], [47.375581, 8.548295], [47.372726, 8.535484], [47.417093, 8.548352], [47.421297, 8.481297], [47.371686, 8.521758], [47.397936, 8.477462], [47.409269, 8.550057], [47.386744, 8.547362], [47.380883, 8.511668], [47.335448, 8.519408], [47.369408, 8.525817], [47.35823, 8.571405], [47.374015, 8.544595], [47.3741, 8.538518], [47.3764, 8.538831], [47.408583, 8.546478], [47.38188, 8.529091], [47.365796, 8.545258], [47.393166, 8.494603], [47.371423, 8.536239], [47.352341, 8.52523], [47.366484, 8.544796], [47.376111, 8.543658], [47.410926, 8.492146], [47.376388, 8.543836], [47.364257, 8.546285], [47.396573, 8.528702], [47.389336, 8.534952], [47.371611, 8.531595], [47.389717, 8.511568], [47.380104, 8.541834], [47.391282, 8.52323], [47.378983, 8.54242], [47.389578, 8.512016], [47.359944, 8.569005], [47.370179, 8.513585], [47.3808, 8.512832], [47.407099, 8.532363], [47.38835, 8.49105], [47.370263, 8.514262], [47.36808, 8.521645], [47.372545, 8.517446], [47.377661, 8.492336], [47.398953, 8.541429], [47.373681, 8.545647], [47.374252, 8.525346], [47.398523, 8.538426], [47.365071, 8.554246], [47.402377, 8.546402], [47.370372, 8.538005], [47.410704, 8.571752], [47.369471, 8.520071], [47.359321, 8.522381], [47.369645, 8.543471], [47.357694, 8.521236], [47.410574, 8.542412], [47.368473, 8.534338], [47.369254, 8.491984], [47.383118, 8.5502], [47.331003, 8.536757], [47.414141, 8.54662], [47.353481, 8.559338], [47.381462, 8.543743], [47.402721, 8.49829], [47.335894, 8.540827], [47.414896, 8.541057], [47.370143, 8.548804], [47.382514, 8.531487], [47.411325, 8.525851], [47.385124, 8.532336], [47.413955, 8.526448], [47.391805, 8.477992], [47.388434, 8.486707], [47.424453, 8.499266], [47.391678, 8.517436], [47.376063, 8.48898], [47.398595, 8.468122], [47.381897, 8.4894], [47.375083, 8.553264], [47.366191, 8.548192], [47.38704, 8.47876], [47.376904, 8.514886], [47.398364, 8.509384], [47.389495, 8.481814], [47.378317, 8.507088], [47.418987, 8.507639], [47.385484, 8.530449], [47.378021, 8.541473], [47.386174, 8.488994], [47.423403, 8.549676], [47.403453, 8.556136], [47.428844, 8.54515], [47.389256, 8.527255], [47.380039, 8.527848], [47.375602, 8.515627], [47.387074, 8.501727], [47.374699, 8.541722], [47.386199, 8.525126], [47.420543, 8.502872], [47.357292, 8.521969], [47.406754, 8.545937], [47.364022, 8.530393], [47.390696, 8.489282], [47.3776, 8.492096], [47.341066, 8.53044], [47.396165, 8.514626], [47.407321, 8.549606], [47.377769, 8.537733], [47.358425, 8.556913], [47.379108, 8.529325], [47.376618, 8.534849], [47.406691, 8.481131], [47.367854, 8.498471], [47.340762, 8.530195], [47.356065, 8.513684], [47.37859, 8.542187], [47.359625, 8.549102], [47.388366, 8.486282], [47.394874, 8.525727], [47.37036, 8.537356], [47.363453, 8.575329], [47.40731, 8.550745], [47.375399, 8.524813], [47.334783, 8.534704], [47.363621, 8.529048], [47.41417, 8.518872], [47.375656, 8.48831], [47.375393, 8.560342], [47.384875, 8.531986], [47.373183, 8.528078], [47.421004, 8.50744], [47.409316, 8.549766], [47.362747, 8.527256], [47.370345, 8.513204], [47.361995, 8.548661], [47.364582, 8.536733], [47.390117, 8.525617], [47.389978, 8.53274], [47.387312, 8.486434], [47.40886, 8.545755], [47.368723, 8.560718], [47.425645, 8.547655], [47.361403, 8.525706], [47.374387, 8.552667], [47.355674, 8.532288], [47.339572, 8.519002], [47.369048, 8.541062], [47.414657, 8.48342], [47.36906, 8.537911], [47.368208, 8.495181], [47.373704, 8.531969], [47.356511, 8.591502], [47.35258, 8.524653], [47.389244, 8.52185], [47.374184, 8.524947], [47.389389, 8.524582], [47.372177, 8.548635], [47.378064, 8.526496], [47.367914, 8.540178], [47.404667, 8.484072], [47.371177, 8.537531], [47.375111, 8.525787], [47.362791, 8.521631], [47.419806, 8.547706], [47.384628, 8.478911], [47.360194, 8.523246], [47.325665, 8.515254], [47.431499, 8.51636], [47.392597, 8.502725], [47.37109, 8.523891], [47.41632, 8.510076], [47.39805, 8.534217], [47.422327, 8.547454], [47.377549, 8.543781], [47.393112, 8.494628], [47.368609, 8.546521], [47.38326, 8.58628], [47.357718, 8.521594], [47.326069, 8.513397], [47.351407, 8.560816], [47.418855, 8.507331], [47.367949, 8.540205], [47.374602, 8.535894], [47.406204, 8.534729], [47.370733, 8.515953], [47.41388, 8.546642], [47.33825, 8.528516], [47.378342, 8.539838], [47.409685, 8.57931], [47.379246, 8.54228], [47.382798, 8.529997], [47.377817, 8.511567], [47.371749, 8.520753], [47.37436, 8.541424], [47.377273, 8.509093], [47.376501, 8.534873], [47.378561, 8.541431], [47.37274, 8.534955], [47.373107, 8.500442], [47.368122, 8.495762], [47.362539, 8.554736], [47.367336, 8.532805], [47.383187, 8.484035], [47.360484, 8.55235], [47.366117, 8.556823], [47.376399, 8.544578], [47.359722, 8.527539], [47.361816, 8.517255], [47.386963, 8.490281], [47.38974, 8.512032], [47.354532, 8.558553], [47.36901, 8.50285], [47.357968, 8.572379], [47.3355, 8.518761], [47.377788, 8.507885], [47.375899, 8.523301], [47.404883, 8.556206], [47.37847, 8.540608], [47.411, 8.544952], [47.374494, 8.539626], [47.381306, 8.49115], [47.396771, 8.523884], [47.410755, 8.543304], [47.387792, 8.544073], [47.369409, 8.526677], [47.364896, 8.531126], [47.375863, 8.488221], [47.377494, 8.541979], [47.377699, 8.510743], [47.389546, 8.488133], [47.364235, 8.536395], [47.390851, 8.522135], [47.369043, 8.528338], [47.386234, 8.503074], [47.371623, 8.514011], [47.368471, 8.521203], [47.383991, 8.515996], [47.391488, 8.546043], [47.407496, 8.548231], [47.364207, 8.548707], [47.371389, 8.510219], [47.385155, 8.541343], [47.366772, 8.494821], [47.367931, 8.496009], [47.402407, 8.556393], [47.368827, 8.496358], [47.415258, 8.53799], [47.404161, 8.563809], [47.369429, 8.540726], [47.389324, 8.511295], [47.356105, 8.509383], [47.336027, 8.524872], [47.378243, 8.514105], [47.370161, 8.548818], [47.395766, 8.54543], [47.369212, 8.519907], [47.394259, 8.480225], [47.397946, 8.481291], [47.350117, 8.56206], [47.397717, 8.533296], [47.366616, 8.555404], [47.385834, 8.548442], [47.376724, 8.534984], [47.365251, 8.500775], [47.370206, 8.548819], [47.39117, 8.522684], [47.397718, 8.532289], [47.373464, 8.539181], [47.390718, 8.478831], [47.378103, 8.540455], [47.369686, 8.556117], [47.369668, 8.556077], [47.364473, 8.536903], [47.391037, 8.479341], [47.406555, 8.570153], [47.390746, 8.515059], [47.391283, 8.515375], [47.368714, 8.528808], [47.369612, 8.529925], [47.403288, 8.497254], [47.373554, 8.524961], [47.370789, 8.519555], [47.408364, 8.50773], [47.409866, 8.544994], [47.390047, 8.480487], [47.396451, 8.528329], [47.429711, 8.549423], [47.409605, 8.544088], [47.413436, 8.539397], [47.411957, 8.517939], [47.366498, 8.54808], [47.412817, 8.540246], [47.341167, 8.536834], [47.356402, 8.555838], [47.369688, 8.508345], [47.400216, 8.516271], [47.390727, 8.478818], [47.381177, 8.515886], [47.353947, 8.523767], [47.36894, 8.52488], [47.359599, 8.521513], [47.417395, 8.509634], [47.367306, 8.545369], [47.352001, 8.559783], [47.383043, 8.499925], [47.347682, 8.562697], [47.415759, 8.569978], [47.399365, 8.505191], [47.370432, 8.515443], [47.374013, 8.501678], [47.381222, 8.537818], [47.373382, 8.531737], [47.381106, 8.504124], [47.368543, 8.528831], [47.414127, 8.541465], [47.374553, 8.495836], [47.41386, 8.545912], [47.407643, 8.531831], [47.39376, 8.493568], [47.404704, 8.549525], [47.395175, 8.510883], [47.375791, 8.516558], [47.371588, 8.515864], [47.373591, 8.524829], [47.385034, 8.541817], [47.375327, 8.485933], [47.369394, 8.554601], [47.382695, 8.539994], [47.352077, 8.523637], [47.3893, 8.491387], [47.388038, 8.489773], [47.428639, 8.489036], [47.424278, 8.508487], [47.410518, 8.54363], [47.400807, 8.54886], [47.377022, 8.544339], [47.378697, 8.528019], [47.370152, 8.548804], [47.39212, 8.513405], [47.370834, 8.530109], [47.379011, 8.542341], [47.372701, 8.535232], [47.420972, 8.501144], [47.41398, 8.543742], [47.398258, 8.537003], [47.373947, 8.51946], [47.337011, 8.520618], [47.375374, 8.545457], [47.36401, 8.55143], [47.369343, 8.557129], [47.374543, 8.539243], [47.343923, 8.528844], [47.376109, 8.533448], [47.362308, 8.526135], [47.374217, 8.524233], [47.366598, 8.52049], [47.374563, 8.562443], [47.393425, 8.500688], [47.373017, 8.531385], [47.388108, 8.474065], [47.388162, 8.536372], [47.379197, 8.553893], [47.369727, 8.551867], [47.395224, 8.521959], [47.377388, 8.529449], [47.370847, 8.492836], [47.359691, 8.593676], [47.40164, 8.548268], [47.39408, 8.489044], [47.38723, 8.485571], [47.376851, 8.528286], [47.383245, 8.53982], [47.381065, 8.537325], [47.37505, 8.54459], [47.37123, 8.54986], [47.397078, 8.530488], [47.359501, 8.508829], [47.390993, 8.539423], [47.382573, 8.515689], [47.410178, 8.574073], [47.376986, 8.543359], [47.392532, 8.532726], [47.36293, 8.517357], [47.411635, 8.567598], [47.377552, 8.548191], [47.377016, 8.542114], [47.423796, 8.544383], [47.360419, 8.584716], [47.399379, 8.542922], [47.373052, 8.550308], [47.359416, 8.551162], [47.389866, 8.491531], [47.412814, 8.481396], [47.372008, 8.529643], [47.397042, 8.521903], [47.367226, 8.522581], [47.369497, 8.547732], [47.384449, 8.548453], [47.413366, 8.512416], [47.393616, 8.524655], [47.404323, 8.50015], [47.375382, 8.540915], [47.388555, 8.523293], [47.371105, 8.523335], [47.388843, 8.491219], [47.402012, 8.49809], [47.405618, 8.549915], [47.360237, 8.576703], [47.410333, 8.539426], [47.359109, 8.526732], [47.380099, 8.515745], [47.355176, 8.557957], [47.37027, 8.531753], [47.380772, 8.533094], [47.351777, 8.526794], [47.333146, 8.518462], [47.39339, 8.524769], [47.377063, 8.523933], [47.366401, 8.545046], [47.367038, 8.523412], [47.400961, 8.535549], [47.391961, 8.517879], [47.410316, 8.563634], [47.36956, 8.466992], [47.38704, 8.546454], [47.3989, 8.511647], [47.377273, 8.539696], [47.354321, 8.575505], [47.376342, 8.516344], [47.372418, 8.510823], [47.423044, 8.50381], [47.4062, 8.533272], [47.38311, 8.515037], [47.427413, 8.546181], [47.380382, 8.517194], [47.357226, 8.591015], [47.367216, 8.545447], [47.389941, 8.535653], [47.385315, 8.500235], [47.381931, 8.532336], [47.37771, 8.541957], [47.366548, 8.541871], [47.409046, 8.547919], [47.376912, 8.535147], [47.367174, 8.552556], [47.387557, 8.500094], [47.366333, 8.533287], [47.370116, 8.525195], [47.367246, 8.552597], [47.364559, 8.56623], [47.392938, 8.543967], [47.387623, 8.499672], [47.375305, 8.543257], [47.335088, 8.54134], [47.386807, 8.502371], [47.374507, 8.540209], [47.377648, 8.541876], [47.382631, 8.540072], [47.376685, 8.526773], [47.338272, 8.529985], [47.392809, 8.522426], [47.417163, 8.54288], [47.397076, 8.53066], [47.363129, 8.517269], [47.405224, 8.481142], [47.410589, 8.53804], [47.391292, 8.532595], [47.402042, 8.579915], [47.358959, 8.557467], [47.37707, 8.535507], [47.379967, 8.544016], [47.376598, 8.538808], [47.3913, 8.52319], [47.37754, 8.543781], [47.407785, 8.584053], [47.367906, 8.494751], [47.376855, 8.528763], [47.406934, 8.550578], [47.357906, 8.532227], [47.373971, 8.528452], [47.374574, 8.53882], [47.391803, 8.545096], [47.370227, 8.513255], [47.392048, 8.539233], [47.397949, 8.531552], [47.385582, 8.530491], [47.419678, 8.547981], [47.378786, 8.542323], [47.367789, 8.521057], [47.41443, 8.551225], [47.373194, 8.527814], [47.391123, 8.522829], [47.363925, 8.571301], [47.383717, 8.532744], [47.359153, 8.527752], [47.374845, 8.551882], [47.405829, 8.590808], [47.397322, 8.59424], [47.414855, 8.561133], [47.368223, 8.506316], [47.401039, 8.588624], [47.358141, 8.587646], [47.426906, 8.546555], [47.343615, 8.530055], [47.393956, 8.535325], [47.388229, 8.540651], [47.399964, 8.519127], [47.365261, 8.520145], [47.380622, 8.534693], [47.362701, 8.527348], [47.355574, 8.60145], [47.378095, 8.483194], [47.376644, 8.540584], [47.400807, 8.548874], [47.373149, 8.52878], [47.40164, 8.581496], [47.379333, 8.537858], [47.412336, 8.54437], [47.381406, 8.528869], [47.357565, 8.52163], [47.373481, 8.534626], [47.393805, 8.500444], [47.420666, 8.547154], [47.333931, 8.515262], [47.371307, 8.530437], [47.374498, 8.521193], [47.370304, 8.548861], [47.417518, 8.511837], [47.405723, 8.563193], [47.37316, 8.531468], [47.40447, 8.572706], [47.39391, 8.537324], [47.383442, 8.533308], [47.364321, 8.555528], [47.391282, 8.523216], [47.38237, 8.529604], [47.373848, 8.503026], [47.369672, 8.603029], [47.371075, 8.53026], [47.383323, 8.495851], [47.376546, 8.509846], [47.36859, 8.560569], [47.38142, 8.510063], [47.338021, 8.516576], [47.364539, 8.55066], [47.363581, 8.535177], [47.342769, 8.530091], [47.381493, 8.535784], [47.340016, 8.530193], [47.374932, 8.539979], [47.383904, 8.511875], [47.375912, 8.541946], [47.389133, 8.517371], [47.360359, 8.523858], [47.380995, 8.538091], [47.362795, 8.522213], [47.369041, 8.537951], [47.384742, 8.531877], [47.362027, 8.548993], [47.37549, 8.541818], [47.366263, 8.54066], [47.384459, 8.510164], [47.372553, 8.534726], [47.412216, 8.546633], [47.369216, 8.528037], [47.391046, 8.522496], [47.362099, 8.548994], [47.398659, 8.539211], [47.394559, 8.521905], [47.37017, 8.548818], [47.411385, 8.544191], [47.366559, 8.559441], [47.382076, 8.529346], [47.418322, 8.483015], [47.369614, 8.528773], [47.422604, 8.550534], [47.374547, 8.518784], [47.370385, 8.548928], [47.356681, 8.570644], [47.377582, 8.543146], [47.385588, 8.546888], [47.373748, 8.503169], [47.375082, 8.539307], [47.414458, 8.552975], [47.370829, 8.542966], [47.370365, 8.491463], [47.373615, 8.527081], [47.374157, 8.521041], [47.411492, 8.526291], [47.385842, 8.532523], [47.369474, 8.523541], [47.356929, 8.555346], [47.376083, 8.540996], [47.402356, 8.49289], [47.34405, 8.53066], [47.392041, 8.500501], [47.374464, 8.544697], [47.369623, 8.53922], [47.383256, 8.528218], [47.40409, 8.50098], [47.368279, 8.504172], [47.353325, 8.558739], [47.376098, 8.521292], [47.366429, 8.510623], [47.402126, 8.499351], [47.412804, 8.543479], [47.374686, 8.51255], [47.383394, 8.484105], [47.37871, 8.516101], [47.368937, 8.529038], [47.379415, 8.50801], [47.409309, 8.546745], [47.392649, 8.475173], [47.391031, 8.523079], [47.387149, 8.509199], [47.411336, 8.570586], [47.412486, 8.550402], [47.370584, 8.538433], [47.376881, 8.544032], [47.397043, 8.530408], [47.427957, 8.545702], [47.374466, 8.539824], [47.336401, 8.518501], [47.407536, 8.546907], [47.383289, 8.53994], [47.376767, 8.538083], [47.387807, 8.471516], [47.379719, 8.525524], [47.340542, 8.519128], [47.391627, 8.511315], [47.367959, 8.544813], [47.418745, 8.553303], [47.356974, 8.53565], [47.401892, 8.536045], [47.338763, 8.538901], [47.39598, 8.473834], [47.424175, 8.54337], [47.376762, 8.543274], [47.377778, 8.537734], [47.388521, 8.520206], [47.379315, 8.537818], [47.403999, 8.561991], [47.37017, 8.548792], [47.377257, 8.528148], [47.355387, 8.554785], [47.390294, 8.50954], [47.350313, 8.567795], [47.414449, 8.483602], [47.390712, 8.539722], [47.37144, 8.522098], [47.391368, 8.514939], [47.369214, 8.527349], [47.377769, 8.53772], [47.369623, 8.508621], [47.381791, 8.516626], [47.398614, 8.590903], [47.342957, 8.535878], [47.374414, 8.496297], [47.36525, 8.494116], [47.366893, 8.521581], [47.391381, 8.523205], [47.346552, 8.534337], [47.354328, 8.552684], [47.398295, 8.536806], [47.409258, 8.571576], [47.363106, 8.517745], [47.371806, 8.559194], [47.399955, 8.51914], [47.383256, 8.499227], [47.399843, 8.480361], [47.407656, 8.578922], [47.372983, 8.528246], [47.366061, 8.533533], [47.382545, 8.548069], [47.351094, 8.526727], [47.391284, 8.536277], [47.375222, 8.531219], [47.377925, 8.535459], [47.384176, 8.543137], [47.368739, 8.496145], [47.380557, 8.548121], [47.397524, 8.505857], [47.359472, 8.585914], [47.371949, 8.556456], [47.361501, 8.52588], [47.387383, 8.521746], [47.389154, 8.494576], [47.407914, 8.580173], [47.370799, 8.546977], [47.360326, 8.566776], [47.409382, 8.558792], [47.39266, 8.53351], [47.368565, 8.524621], [47.395714, 8.536832], [47.385737, 8.539818], [47.373029, 8.532895], [47.335552, 8.518881], [47.363921, 8.547616], [47.410467, 8.532843], [47.354474, 8.553389], [47.342441, 8.520013], [47.372898, 8.550358], [47.368726, 8.52853], [47.377949, 8.525302], [47.418526, 8.547109], [47.389088, 8.536391], [47.389501, 8.511603], [47.391579, 8.517341], [47.386745, 8.547283], [47.370384, 8.52058], [47.403672, 8.534253], [47.355133, 8.561557], [47.397712, 8.488281], [47.328783, 8.514576], [47.376702, 8.523012], [47.360234, 8.522797], [47.342571, 8.531053], [47.372324, 8.513191], [47.410517, 8.550282], [47.384208, 8.497365], [47.380816, 8.518924], [47.376332, 8.526077], [47.410821, 8.558795], [47.37926, 8.537897], [47.375423, 8.549735], [47.411417, 8.52564], [47.378643, 8.52039], [47.407933, 8.578212], [47.376678, 8.54171], [47.403389, 8.48614], [47.400962, 8.538278], [47.382794, 8.532341], [47.373816, 8.542882], [47.370188, 8.548818], [47.41489, 8.54164], [47.355675, 8.57417], [47.371847, 8.557685], [47.364597, 8.554898], [47.409852, 8.575166], [47.357413, 8.521508], [47.422136, 8.504667], [47.414345, 8.551621], [47.365618, 8.539469], [47.376805, 8.535039], [47.372735, 8.534558], [47.369253, 8.511606], [47.402215, 8.535138], [47.385351, 8.529215], [47.42492, 8.50121], [47.364047, 8.547552], [47.373763, 8.534208], [47.384243, 8.5558], [47.335299, 8.519021], [47.360302, 8.576559], [47.370564, 8.532037], [47.398641, 8.539211], [47.390647, 8.489678], [47.382075, 8.529412], [47.401934, 8.499758], [47.390824, 8.489006], [47.384193, 8.575692], [47.403827, 8.567697], [47.372964, 8.520765], [47.366222, 8.544989], [47.359574, 8.535598], [47.378573, 8.542094], [47.37552, 8.548122], [47.413743, 8.571896], [47.394176, 8.493285], [47.36933, 8.533137], [47.363598, 8.534304], [47.386927, 8.47334], [47.376926, 8.540311], [47.353317, 8.576132], [47.372856, 8.535977], [47.402413, 8.499423], [47.420961, 8.549281], [47.42487, 8.537407], [47.377237, 8.499359], [47.339825, 8.530414], [47.383099, 8.528612], [47.3937, 8.508906], [47.393978, 8.481399], [47.378111, 8.541422], [47.341525, 8.529457], [47.391963, 8.512832], [47.354887, 8.574656], [47.392488, 8.502749], [47.369311, 8.527509], [47.361529, 8.563346], [47.395992, 8.52261], [47.345048, 8.533525], [47.37221, 8.511838], [47.366832, 8.542301], [47.366948, 8.544276], [47.379324, 8.528376], [47.358221, 8.571405], [47.390616, 8.510685], [47.369036, 8.547921], [47.353221, 8.572132], [47.392248, 8.494664], [47.363406, 8.533651], [47.398705, 8.471873], [47.386961, 8.534996], [47.368522, 8.499186], [47.421655, 8.499236], [47.427981, 8.54883], [47.374852, 8.541765], [47.425622, 8.556588], [47.413924, 8.546722], [47.368806, 8.49273], [47.41322, 8.546045], [47.347921, 8.524558], [47.371103, 8.538735], [47.364082, 8.517314], [47.378827, 8.542761], [47.357079, 8.535957], [47.378591, 8.530745], [47.398659, 8.539198], [47.409791, 8.537771], [47.379381, 8.542216], [47.409788, 8.540951], [47.390612, 8.5398], [47.406558, 8.550358], [47.389266, 8.531917], [47.406206, 8.483983], [47.398345, 8.537283], [47.342439, 8.530706], [47.393518, 8.483549], [47.411399, 8.525627], [47.390384, 8.522032], [47.411162, 8.570887], [47.366638, 8.54566], [47.377588, 8.525507], [47.383636, 8.483209], [47.406072, 8.563399], [47.370265, 8.552964], [47.384261, 8.52755], [47.42314, 8.502129], [47.388717, 8.520436], [47.378456, 8.51444], [47.397122, 8.530595], [47.414204, 8.519058], [47.372243, 8.513189], [47.354877, 8.574802], [47.369305, 8.528185], [47.386202, 8.518159], [47.394654, 8.518543], [47.362397, 8.552681], [47.391791, 8.484561], [47.413837, 8.545435], [47.396312, 8.527743], [47.360254, 8.534102], [47.373421, 8.561412], [47.386686, 8.523136], [47.375884, 8.541098], [47.359652, 8.59852], [47.373134, 8.523655], [47.355306, 8.55477], [47.367188, 8.539898], [47.358261, 8.581029], [47.376897, 8.554547], [47.381459, 8.497999], [47.355734, 8.560762], [47.408159, 8.55968], [47.372712, 8.547309], [47.37383, 8.537573], [47.376227, 8.527704], [47.379139, 8.530769], [47.400468, 8.592586], [47.403752, 8.565245], [47.402815, 8.577255], [47.384873, 8.495538], [47.419896, 8.506636], [47.377795, 8.537827], [47.380684, 8.525278], [47.417234, 8.545784], [47.399362, 8.542882], [47.376174, 8.536164], [47.354228, 8.598469], [47.356751, 8.553304], [47.364904, 8.537958], [47.374078, 8.540862], [47.374299, 8.524129], [47.411832, 8.537853], [47.417699, 8.546111], [47.429353, 8.54642], [47.36609, 8.556783], [47.410641, 8.553279], [47.376603, 8.548621], [47.377716, 8.51077], [47.352149, 8.525504], [47.374687, 8.532638], [47.361615, 8.50302], [47.38672, 8.528117], [47.38573, 8.525262], [47.37318, 8.55194], [47.394077, 8.493349], [47.373433, 8.552792], [47.388314, 8.490997], [47.393431, 8.545077], [47.363253, 8.522262], [47.362145, 8.548955], [47.354569, 8.60213], [47.384477, 8.528495], [47.426154, 8.554505], [47.354499, 8.511786], [47.353308, 8.576132], [47.377884, 8.529406], [47.390221, 8.512492], [47.349806, 8.529824], [47.373361, 8.532041], [47.413221, 8.545912], [47.425596, 8.536679], [47.378777, 8.542349], [47.384966, 8.50885], [47.363297, 8.567408], [47.371936, 8.517142], [47.388395, 8.536509], [47.359468, 8.553215], [47.413838, 8.553823], [47.374542, 8.51264], [47.401232, 8.534508], [47.355653, 8.535517], [47.358696, 8.516054], [47.393677, 8.472862], [47.362471, 8.568185], [47.342586, 8.531357], [47.412286, 8.55713], [47.390636, 8.49193], [47.369913, 8.547502], [47.403599, 8.588984], [47.378554, 8.54212], [47.373924, 8.502564], [47.374612, 8.524387], [47.384386, 8.548399], [47.35774, 8.599829], [47.407111, 8.586715], [47.396241, 8.527702], [47.374236, 8.526988], [47.391588, 8.52317], [47.377179, 8.540118], [47.375347, 8.56038], [47.381476, 8.542352], [47.364411, 8.532957], [47.37831, 8.541347], [47.383716, 8.547908], [47.369917, 8.542378], [47.377566, 8.54198], [47.375464, 8.486678], [47.413741, 8.546109], [47.41907, 8.506474], [47.358457, 8.571185], [47.354813, 8.560213], [47.385374, 8.517255], [47.371449, 8.525898], [47.377035, 8.523999], [47.384058, 8.576616], [47.38237, 8.505593], [47.351612, 8.576625], [47.365306, 8.545685], [47.357687, 8.557851], [47.365421, 8.546826], [47.356094, 8.556097], [47.361546, 8.531534], [47.374211, 8.524921], [47.381388, 8.517386], [47.412453, 8.529226], [47.386348, 8.534189], [47.41258, 8.544296], [47.368142, 8.539812], [47.393426, 8.524744], [47.378335, 8.52731], [47.360336, 8.527353], [47.36981, 8.516503], [47.417708, 8.546059], [47.394856, 8.525753], [47.396564, 8.528742], [47.388503, 8.532643], [47.399708, 8.543419], [47.370161, 8.548818], [47.385454, 8.576381], [47.370509, 8.54909], [47.397968, 8.532467], [47.392717, 8.523603], [47.388373, 8.540654], [47.425699, 8.509404], [47.346191, 8.534396], [47.39615, 8.516308], [47.352213, 8.525479], [47.370087, 8.524361], [47.383855, 8.528588], [47.356302, 8.553176], [47.379304, 8.529528], [47.381785, 8.489874], [47.375691, 8.529189], [47.351276, 8.53229], [47.369077, 8.540851], [47.37069, 8.531987], [47.407517, 8.538533], [47.374664, 8.536014], [47.364951, 8.525355], [47.382076, 8.515957], [47.367912, 8.521364], [47.388415, 8.516217], [47.378682, 8.541937], [47.387722, 8.518203], [47.381831, 8.541883], [47.367639, 8.565885], [47.39739, 8.540271], [47.37279, 8.547562], [47.357487, 8.550659], [47.360866, 8.550001], [47.376355, 8.527402], [47.387663, 8.488441], [47.417675, 8.554155], [47.358895, 8.58238], [47.402067, 8.497959], [47.39865, 8.539211], [47.391654, 8.519012], [47.369124, 8.541593], [47.339956, 8.531701], [47.422513, 8.550585], [47.406656, 8.584598], [47.412224, 8.483969], [47.371447, 8.546038], [47.376775, 8.548505], [47.364266, 8.531153], [47.342581, 8.530947], [47.368148, 8.523937], [47.389501, 8.511564], [47.414931, 8.530748], [47.411543, 8.563236], [47.410741, 8.571687], [47.376229, 8.525492], [47.377016, 8.543982], [47.38686, 8.547431], [47.393772, 8.502059], [47.413943, 8.571702], [47.388674, 8.520223], [47.373044, 8.531386], [47.417847, 8.554106], [47.405296, 8.551617], [47.366078, 8.533679], [47.369087, 8.537885], [47.419915, 8.482887], [47.400744, 8.544196], [47.416342, 8.546004], [47.381276, 8.517742], [47.413788, 8.536489], [47.378553, 8.541338], [47.382788, 8.486451], [47.397193, 8.49194], [47.368007, 8.540776], [47.397346, 8.53256], [47.386788, 8.547495], [47.404502, 8.59486], [47.422862, 8.494144], [47.357972, 8.520421], [47.403311, 8.488842], [47.376625, 8.514032], [47.360109, 8.595922], [47.387515, 8.516212], [47.429138, 8.543605], [47.373256, 8.535522], [47.429953, 8.549601], [47.385848, 8.52994], [47.373602, 8.519824], [47.388994, 8.496321], [47.351449, 8.601082], [47.325871, 8.51342], [47.369134, 8.503104], [47.40454, 8.556292], [47.377193, 8.538635], [47.407006, 8.55054], [47.38639, 8.496852], [47.378872, 8.542762], [47.374397, 8.541385], [47.41017, 8.564744], [47.389319, 8.527203], [47.398069, 8.536059], [47.380857, 8.537413], [47.37025, 8.513692], [47.367889, 8.539992], [47.366523, 8.545432], [47.376429, 8.534832], [47.387526, 8.529445], [47.374328, 8.542972], [47.367101, 8.544292], [47.407508, 8.547039], [47.401256, 8.545147], [47.377186, 8.54033], [47.369115, 8.525466], [47.389974, 8.485532], [47.354998, 8.511359], [47.415474, 8.516897], [47.380151, 8.537835], [47.376909, 8.535438], [47.369284, 8.527482], [47.391082, 8.489329], [47.406934, 8.550552], [47.42446, 8.537981], [47.36069, 8.565407], [47.395246, 8.537723], [47.38161, 8.509908], [47.366934, 8.543865], [47.360766, 8.548238], [47.407331, 8.585381], [47.385337, 8.508579], [47.366421, 8.544834], [47.382829, 8.532461], [47.374704, 8.549681], [47.381149, 8.491623], [47.379214, 8.525672], [47.354333, 8.557794], [47.374948, 8.534471], [47.362463, 8.535419], [47.376346, 8.538816], [47.368339, 8.535209], [47.387108, 8.534654], [47.38506, 8.508441], [47.370163, 8.532519], [47.369274, 8.541848], [47.422983, 8.551271], [47.410102, 8.52772], [47.41368, 8.554297], [47.385914, 8.524869], [47.407442, 8.574174], [47.398256, 8.537123], [47.385822, 8.493013], [47.388188, 8.524147], [47.38288, 8.528992], [47.377126, 8.526755], [47.373118, 8.53299], [47.388695, 8.546528], [47.371321, 8.544168], [47.387158, 8.535066], [47.417537, 8.553609], [47.3522, 8.526763], [47.366096, 8.50769], [47.37995, 8.543883], [47.373844, 8.576106], [47.393216, 8.474151], [47.370174, 8.529447], [47.382723, 8.540762], [47.368253, 8.52431], [47.392202, 8.495736], [47.374501, 8.541771], [47.383617, 8.532861], [47.367442, 8.55554], [47.366938, 8.544355], [47.381867, 8.54191], [47.381781, 8.516653], [47.377506, 8.527531], [47.368443, 8.533728], [47.386512, 8.545225], [47.377256, 8.538716], [47.375988, 8.515768], [47.406126, 8.58986], [47.35594, 8.535589], [47.356389, 8.534738], [47.38503, 8.547883], [47.367976, 8.524053], [47.398947, 8.541138], [47.376676, 8.557826], [47.384459, 8.548295], [47.369463, 8.541852], [47.371257, 8.527245], [47.401795, 8.500153], [47.381378, 8.537463], [47.374297, 8.52442], [47.378335, 8.540619], [47.382916, 8.54127], [47.385898, 8.498511], [47.378221, 8.528949], [47.399398, 8.533357], [47.422247, 8.506259], [47.371086, 8.523441], [47.409558, 8.537634], [47.369268, 8.554678], [47.407174, 8.498246], [47.375942, 8.527393], [47.408914, 8.558835], [47.420367, 8.50821], [47.418228, 8.506099], [47.408651, 8.580242], [47.369863, 8.525243], [47.379068, 8.525934], [47.390577, 8.491439], [47.388689, 8.496262], [47.341828, 8.530693], [47.368161, 8.531193], [47.361649, 8.503192], [47.376637, 8.511702], [47.364303, 8.533921], [47.369874, 8.523151], [47.325991, 8.518793], [47.396973, 8.513874], [47.367376, 8.530515], [47.370152, 8.548818], [47.343362, 8.530143], [47.402927, 8.57686], [47.381985, 8.516061], [47.361608, 8.5654], [47.376015, 8.515689], [47.370034, 8.543294], [47.349906, 8.569918], [47.422386, 8.550742], [47.372496, 8.505263], [47.387663, 8.488401], [47.377015, 8.498017], [47.403345, 8.585547], [47.37474, 8.55805], [47.417546, 8.553622], [47.350148, 8.527873], [47.413604, 8.539745], [47.407314, 8.587183], [47.368877, 8.547639], [47.377987, 8.526098], [47.386806, 8.535165], [47.375145, 8.537388], [47.37026, 8.548833], [47.369685, 8.522208], [47.362603, 8.514796], [47.410878, 8.562189], [47.399913, 8.592309], [47.354478, 8.597799], [47.419965, 8.504093], [47.358416, 8.556913], [47.378686, 8.51961], [47.399768, 8.543712], [47.398007, 8.534057], [47.366593, 8.521986], [47.393179, 8.5194], [47.369313, 8.550945], [47.367728, 8.546384], [47.37179, 8.530764], [47.378495, 8.575186], [47.399768, 8.543712], [47.386184, 8.518093], [47.375335, 8.524931], [47.412378, 8.543775], [47.378081, 8.509281], [47.356672, 8.524776], [47.376698, 8.540572], [47.368383, 8.556897], [47.382004, 8.548204], [47.3844, 8.531897], [47.384912, 8.531974], [47.370161, 8.548805], [47.381597, 8.53719], [47.372843, 8.600781], [47.373311, 8.519209], [47.370418, 8.602184], [47.364611, 8.545935], [47.394137, 8.530481], [47.356731, 8.522328], [47.413012, 8.536711], [47.374895, 8.544812], [47.40197, 8.585385], [47.414095, 8.550423], [47.374537, 8.539891], [47.385331, 8.495613], [47.414114, 8.550317], [47.400248, 8.494213], [47.364033, 8.549021], [47.410045, 8.563708], [47.365823, 8.549985], [47.369023, 8.53795], [47.360104, 8.548807], [47.362319, 8.550508], [47.375058, 8.531454], [47.392544, 8.538131], [47.373153, 8.536963], [47.381252, 8.555366], [47.378962, 8.559596], [47.417203, 8.544338], [47.42873, 8.488853], [47.370639, 8.535508], [47.36456, 8.531517], [47.359701, 8.524957], [47.399693, 8.495885], [47.384322, 8.50746], [47.36877, 8.524797], [47.376663, 8.548993], [47.383528, 8.536488], [47.365783, 8.550368], [47.3949, 8.522999], [47.37258, 8.534766], [47.37265, 8.529233], [47.405714, 8.587917], [47.367692, 8.545509], [47.373906, 8.544778], [47.385728, 8.533156], [47.383183, 8.510086], [47.363483, 8.535096], [47.372694, 8.534067], [47.387901, 8.491929], [47.370146, 8.532452], [47.377291, 8.519727], [47.403381, 8.534565], [47.39179, 8.481661], [47.374901, 8.543196], [47.386514, 8.529], [47.413976, 8.548857], [47.375356, 8.547311], [47.373853, 8.499503], [47.41092, 8.554213], [47.417059, 8.551889], [47.418544, 8.547123], [47.406939, 8.585929], [47.370374, 8.49145], [47.383218, 8.539859], [47.37264, 8.529299], [47.371117, 8.523905], [47.354108, 8.575288], [47.368494, 8.534047], [47.381594, 8.51355], [47.362752, 8.511383], [47.376182, 8.536165], [47.369459, 8.552537], [47.365159, 8.501012], [47.37552, 8.548095], [47.376611, 8.534598], [47.371457, 8.562682], [47.373076, 8.532711], [47.378574, 8.526798], [47.39809, 8.504901], [47.366069, 8.533586], [47.373861, 8.538116], [47.370048, 8.512218], [47.370199, 8.568071], [47.379906, 8.521925], [47.387925, 8.520525], [47.3532, 8.558657], [47.422115, 8.500173], [47.422127, 8.544878], [47.379956, 8.514616], [47.414367, 8.552111], [47.3772, 8.513038], [47.414646, 8.551137], [47.428668, 8.543834], [47.406835, 8.587384], [47.368104, 8.523844], [47.405183, 8.559538], [47.405025, 8.482251], [47.364752, 8.537796], [47.369179, 8.525296], [47.3651, 8.501646], [47.369069, 8.519812], [47.368083, 8.520335], [47.368035, 8.540644], [47.391223, 8.54266], [47.356722, 8.554455], [47.373858, 8.536527], [47.370326, 8.476924], [47.404514, 8.533595], [47.399151, 8.591193], [47.379934, 8.528561], [47.403218, 8.534681], [47.37038, 8.524764], [47.422882, 8.49889], [47.404268, 8.481441], [47.403486, 8.576766], [47.352908, 8.579247], [47.362838, 8.55637], [47.392127, 8.501907], [47.374387, 8.53863], [47.376146, 8.553127], [47.368201, 8.546804], [47.408618, 8.539072], [47.419725, 8.547797], [47.409355, 8.540108], [47.379104, 8.525855], [47.411357, 8.54427], [47.369204, 8.525534], [47.398155, 8.536458], [47.375375, 8.540703], [47.386026, 8.492342], [47.40388, 8.503294], [47.358471, 8.588897], [47.375843, 8.487466], [47.383647, 8.539139], [47.39416, 8.493072], [47.409328, 8.546706], [47.419169, 8.547626], [47.386467, 8.529158], [47.367268, 8.53712], [47.365297, 8.554105], [47.385964, 8.496169], [47.372736, 8.550461], [47.372793, 8.522615], [47.368169, 8.538873], [47.423713, 8.504327], [47.413339, 8.531643], [47.373943, 8.54646], [47.376803, 8.538124], [47.3864, 8.497661], [47.391175, 8.539255], [47.373907, 8.544645], [47.369627, 8.555665], [47.364048, 8.555866], [47.373884, 8.536634], [47.329007, 8.513761], [47.391869, 8.538117], [47.380241, 8.53789], [47.37222, 8.535699], [47.377486, 8.543793], [47.40952, 8.542629], [47.383753, 8.573788], [47.374341, 8.542536], [47.360572, 8.526113], [47.372345, 8.55461], [47.381764, 8.545166], [47.363506, 8.521116], [47.379683, 8.560339], [47.380573, 8.536997], [47.387801, 8.544033], [47.370976, 8.548199], [47.384064, 8.53879], [47.389733, 8.511847], [47.381127, 8.536425], [47.403932, 8.567898], [47.369914, 8.51019], [47.407897, 8.544848], [47.412384, 8.509706], [47.362196, 8.559468], [47.386283, 8.521009], [47.38696, 8.542651], [47.399015, 8.533058], [47.366671, 8.542218], [47.38024, 8.541797], [47.409556, 8.550116], [47.381336, 8.540999], [47.373952, 8.54462], [47.376222, 8.488308], [47.418424, 8.547412], [47.363598, 8.533377], [47.399768, 8.543659], [47.377139, 8.540528], [47.415003, 8.545857], [47.397625, 8.507581], [47.376526, 8.521711], [47.38952, 8.511498], [47.382512, 8.529845], [47.418856, 8.507318], [47.371873, 8.601514], [47.366923, 8.543137], [47.41032, 8.573308], [47.376258, 8.500121], [47.374541, 8.541361], [47.38199, 8.489137], [47.365967, 8.534855], [47.398494, 8.517587], [47.358719, 8.586507], [47.366845, 8.544737], [47.397886, 8.532558], [47.373744, 8.544774], [47.36881, 8.534887], [47.377914, 8.529976], [47.368673, 8.531257], [47.401994, 8.552634], [47.391523, 8.516625], [47.374675, 8.48739], [47.368509, 8.546625], [47.357111, 8.522058], [47.372758, 8.534942], [47.369069, 8.548186], [47.358552, 8.518063], [47.413754, 8.546599], [47.374652, 8.495838], [47.369672, 8.525544], [47.391899, 8.517771], [47.396358, 8.533361], [47.37777, 8.522412], [47.3606, 8.565418], [47.376997, 8.496149], [47.364003, 8.533332], [47.386871, 8.528358], [47.408195, 8.581769], [47.393628, 8.512813], [47.367752, 8.544862], [47.364803, 8.534381], [47.329873, 8.529734], [47.360094, 8.506934], [47.35485, 8.574788], [47.38029, 8.520291], [47.373744, 8.5372], [47.361104, 8.551502], [47.36497, 8.553582], [47.366232, 8.548577], [47.352015, 8.558407], [47.374386, 8.521601], [47.369295, 8.52731], [47.400411, 8.533776], [47.343839, 8.530126], [47.387852, 8.529239], [47.377119, 8.540792], [47.365873, 8.548556], [47.370475, 8.549765], [47.407378, 8.549262], [47.363976, 8.528565], [47.418966, 8.510925], [47.361695, 8.560159], [47.336921, 8.520629], [47.377957, 8.493454], [47.338415, 8.539635], [47.390947, 8.479445], [47.415286, 8.570498], [47.392835, 8.52444], [47.386019, 8.535612], [47.377505, 8.538933], [47.411879, 8.525252], [47.357392, 8.521852], [47.394134, 8.525023], [47.405718, 8.569327], [47.417202, 8.545412], [47.372551, 8.478517], [47.37002, 8.491801], [47.378668, 8.56482], [47.390956, 8.522415], [47.366486, 8.540903], [47.389384, 8.485097], [47.365388, 8.545594], [47.365955, 8.560487], [47.35134, 8.568611], [47.386592, 8.497426], [47.427215, 8.491301], [47.406599, 8.567504], [47.372256, 8.535739], [47.412279, 8.515203], [47.431391, 8.516398], [47.336378, 8.525805], [47.381633, 8.541932], [47.359984, 8.594993], [47.410667, 8.547728], [47.392094, 8.531538], [47.355828, 8.591435], [47.391089, 8.522669], [47.413146, 8.546229], [47.364717, 8.554623], [47.377515, 8.53888], [47.383371, 8.548219], [47.380265, 8.54291], [47.387192, 8.519093], [47.412914, 8.530892], [47.366842, 8.523222], [47.37112, 8.523654], [47.421191, 8.501785], [47.361548, 8.561387], [47.404268, 8.481428], [47.373025, 8.533292], [47.367153, 8.517813], [47.359838, 8.522828], [47.381728, 8.513712], [47.387544, 8.498465], [47.358417, 8.577935], [47.387219, 8.519014], [47.383578, 8.57687], [47.381451, 8.503747], [47.415627, 8.513044], [47.376962, 8.562639], [47.371919, 8.53989], [47.352511, 8.531984], [47.371695, 8.556675], [47.365111, 8.534123], [47.395566, 8.513315], [47.408993, 8.539332], [47.41718, 8.54398], [47.368016, 8.494581], [47.379927, 8.490407], [47.413224, 8.532396], [47.3866, 8.503347], [47.37711, 8.539799], [47.337448, 8.519184], [47.382994, 8.513949], [47.366568, 8.540733], [47.369074, 8.491928], [47.365967, 8.536841], [47.352778, 8.562275], [47.385944, 8.543491], [47.377626, 8.510755], [47.364234, 8.548721], [47.372134, 8.5362], [47.375107, 8.518584], [47.378441, 8.510242], [47.389016, 8.48901], [47.37388, 8.544658], [47.369753, 8.525479], [47.409017, 8.550078], [47.423812, 8.516934], [47.377108, 8.540964], [47.391632, 8.523316], [47.401187, 8.534427], [47.363224, 8.506084], [47.37404, 8.536385], [47.365534, 8.532172], [47.379214, 8.525659], [47.417065, 8.541884], [47.375137, 8.540142], [47.427336, 8.539101], [47.398041, 8.534217], [47.413308, 8.545358], [47.372589, 8.534687], [47.375946, 8.525076], [47.367545, 8.564466], [47.391115, 8.52271], [47.378721, 8.526483], [47.409919, 8.541312], [47.354886, 8.574762], [47.40741, 8.566475], [47.388862, 8.54036], [47.401846, 8.537011], [47.376916, 8.540364], [47.39071, 8.490686], [47.419271, 8.506107], [47.356762, 8.55116], [47.334791, 8.530007], [47.371801, 8.601566], [47.410006, 8.544481], [47.351448, 8.601175], [47.391759, 8.512589], [47.358819, 8.59097], [47.379586, 8.525362], [47.375846, 8.577434], [47.377555, 8.499008], [47.385009, 8.532135], [47.393464, 8.541647], [47.399794, 8.543752], [47.407492, 8.530741], [47.384176, 8.507708], [47.361936, 8.526459], [47.39784, 8.532689], [47.388323, 8.520295], [47.35151, 8.601295], [47.404779, 8.595051], [47.405032, 8.505199], [47.424974, 8.548171], [47.389127, 8.530365], [47.353017, 8.558997], [47.407005, 8.550633], [47.345093, 8.529768], [47.375909, 8.540357], [47.405488, 8.480856], [47.37181, 8.542854], [47.364864, 8.545914], [47.374051, 8.544582], [47.384377, 8.531459], [47.361825, 8.51523], [47.375187, 8.525405], [47.426199, 8.554572], [47.386406, 8.516521], [47.373617, 8.536377], [47.410927, 8.54499], [47.335047, 8.527723], [47.38338, 8.51303], [47.41056, 8.572637], [47.367198, 8.545446], [47.407891, 8.547378], [47.366673, 8.542033], [47.41417, 8.551127], [47.382984, 8.543562], [47.382478, 8.540095], [47.378463, 8.540436], [47.356737, 8.53219], [47.39453, 8.487079], [47.386777, 8.502688], [47.429099, 8.54664], [47.385898, 8.498511], [47.367469, 8.546233], [47.364928, 8.545757], [47.375918, 8.510734], [47.41318, 8.545501], [47.356754, 8.551147], [47.372956, 8.48545], [47.3589, 8.553376], [47.414287, 8.551103], [47.367678, 8.495104], [47.377228, 8.515912], [47.324888, 8.518467], [47.381827, 8.533764], [47.35796, 8.572273], [47.403964, 8.548873], [47.409597, 8.565408], [47.337912, 8.530058], [47.382485, 8.531699], [47.368264, 8.520206], [47.363358, 8.513858], [47.405726, 8.581239], [47.369722, 8.556992], [47.371367, 8.536449], [47.408261, 8.541649], [47.369323, 8.528211], [47.37552, 8.548109], [47.371146, 8.517034], [47.378631, 8.542611], [47.404344, 8.533591], [47.373407, 8.545125], [47.353022, 8.512074], [47.39915, 8.521495], [47.360875, 8.550001], [47.360525, 8.561114], [47.372388, 8.523613], [47.365812, 8.539804], [47.370659, 8.546591], [47.387464, 8.483549], [47.366556, 8.541103], [47.419106, 8.546618], [47.357423, 8.553504], [47.399929, 8.504527], [47.37381, 8.537771], [47.367235, 8.544322], [47.409337, 8.540134], [47.383437, 8.539466], [47.369472, 8.541865], [47.37082, 8.542966], [47.375174, 8.522928], [47.375546, 8.496452], [47.382212, 8.488452], [47.378496, 8.523645], [47.360495, 8.552085], [47.339112, 8.519125], [47.380627, 8.582396], [47.352022, 8.525621], [47.378647, 8.546558], [47.365606, 8.555727], [47.369943, 8.529177], [47.378864, 8.518898], [47.389715, 8.478388], [47.412021, 8.524487], [47.385831, 8.496007], [47.37336, 8.533074], [47.335982, 8.518135], [47.375542, 8.526882], [47.409627, 8.549296], [47.368845, 8.519701], [47.368261, 8.538663], [47.398111, 8.532536], [47.385035, 8.516957], [47.373017, 8.531359], [47.377324, 8.562461], [47.369162, 8.528023], [47.396299, 8.508958], [47.373814, 8.502773], [47.364111, 8.5475], [47.417136, 8.541912], [47.37718, 8.540052], [47.405161, 8.593748], [47.39122, 8.523109], [47.413876, 8.544243], [47.367342, 8.544443], [47.419203, 8.546832], [47.335374, 8.527306], [47.391045, 8.522509], [47.374758, 8.540333], [47.366699, 8.54962], [47.370382, 8.515032], [47.389633, 8.511937], [47.411471, 8.526569], [47.404292, 8.5605], [47.382304, 8.54037], [47.403598, 8.534451], [47.39173, 8.51084], [47.375004, 8.547515], [47.370986, 8.530192], [47.374901, 8.493142], [47.378219, 8.50992], [47.379361, 8.537726], [47.401794, 8.548205], [47.373377, 8.52746], [47.389349, 8.48507], [47.362233, 8.55939], [47.413999, 8.478624], [47.343688, 8.52999], [47.374692, 8.538729], [47.371178, 8.514545], [47.378495, 8.575186], [47.386778, 8.547561], [47.372483, 8.513446], [47.39865, 8.539224], [47.374623, 8.512588], [47.374755, 8.520642], [47.365442, 8.598739], [47.411401, 8.56208], [47.377178, 8.526982], [47.42255, 8.536404], [47.391681, 8.518972], [47.401256, 8.54516], [47.373617, 8.536377], [47.411927, 8.543911], [47.40414, 8.58881], [47.376731, 8.538096], [47.399707, 8.543445], [47.396589, 8.528875], [47.331902, 8.516809], [47.401993, 8.495202], [47.368583, 8.51207], [47.367621, 8.545402], [47.409584, 8.549971], [47.370179, 8.548818], [47.357544, 8.521881], [47.376002, 8.53816], [47.42255, 8.536418], [47.411179, 8.526086], [47.41335, 8.532398], [47.357849, 8.523013], [47.357637, 8.521605], [47.38154, 8.513628], [47.390759, 8.523338], [47.414944, 8.541654], [47.377129, 8.541627], [47.372972, 8.531371], [47.401111, 8.51772], [47.393405, 8.499906], [47.354526, 8.526254], [47.381207, 8.537553], [47.389562, 8.521459], [47.379468, 8.537821], [47.39055, 8.509068], [47.37746, 8.522829], [47.38656, 8.518339], [47.376285, 8.516701], [47.376455, 8.549015], [47.393752, 8.512934], [47.414913, 8.561651], [47.402449, 8.536043], [47.406063, 8.580849], [47.378556, 8.540107], [47.35167, 8.525786], [47.376182, 8.536244], [47.414249, 8.546623], [47.35483, 8.601182], [47.388354, 8.514004], [47.410552, 8.572624], [47.384773, 8.509336], [47.37773, 8.538064], [47.388334, 8.536269], [47.376102, 8.543684], [47.3795, 8.525877], [47.360316, 8.523712], [47.414225, 8.551009], [47.403962, 8.48545], [47.377125, 8.535376], [47.356989, 8.600263], [47.364868, 8.56678], [47.366307, 8.519862], [47.374155, 8.538387], [47.386193, 8.518093], [47.366934, 8.545719], [47.367749, 8.496218], [47.401348, 8.543956], [47.375909, 8.541257], [47.388632, 8.483731], [47.370045, 8.525035], [47.370759, 8.54834], [47.364356, 8.531234], [47.411312, 8.562039], [47.374014, 8.544767], [47.366885, 8.518589], [47.383008, 8.499739], [47.410798, 8.537779], [47.426987, 8.546477], [47.38769, 8.486401], [47.417347, 8.513834], [47.413262, 8.532198], [47.374474, 8.541784], [47.364347, 8.548141], [47.36533, 8.531837], [47.397708, 8.53327], [47.403335, 8.486166], [47.357638, 8.554594], [47.372292, 8.535674], [47.359136, 8.521993], [47.374486, 8.539533], [47.359348, 8.523361], [47.363725, 8.533273], [47.414313, 8.551143], [47.36905, 8.550212], [47.414077, 8.546752], [47.384392, 8.488125], [47.363672, 8.498387], [47.403205, 8.498472], [47.373607, 8.553392], [47.373471, 8.553535], [47.412359, 8.547617], [47.339539, 8.528265], [47.362048, 8.503876], [47.393864, 8.489993], [47.383104, 8.473319], [47.409116, 8.544356], [47.376029, 8.527647], [47.385254, 8.48434], [47.372055, 8.48763], [47.351467, 8.576754], [47.361848, 8.550816], [47.379043, 8.494694], [47.372708, 8.521117], [47.410136, 8.544987], [47.387092, 8.519171], [47.374108, 8.53391], [47.373774, 8.519669], [47.39776, 8.533496], [47.387183, 8.497716], [47.367227, 8.559164], [47.407818, 8.547456], [47.386015, 8.526579], [47.363125, 8.567577], [47.372394, 8.515284], [47.364964, 8.545771], [47.391576, 8.538707], [47.361038, 8.548045], [47.360697, 8.566506], [47.370992, 8.561507], [47.369031, 8.540969], [47.373016, 8.554068], [47.363073, 8.533671], [47.366883, 8.535073], [47.415495, 8.48133], [47.410789, 8.545318], [47.424538, 8.548639], [47.374985, 8.492826], [47.37453, 8.527298], [47.367626, 8.506609], [47.39865, 8.539197], [47.368633, 8.559829], [47.3642, 8.555975], [47.406866, 8.586935], [47.369342, 8.557235], [47.385188, 8.536933], [47.361388, 8.522568], [47.366936, 8.558615], [47.373273, 8.525154], [47.373841, 8.536487], [47.337635, 8.528887], [47.385, 8.532161], [47.383481, 8.573081], [47.353699, 8.556338], [47.368925, 8.492534], [47.364574, 8.558207], [47.341972, 8.530617], [47.377205, 8.540278], [47.370406, 8.537251], [47.370244, 8.513374], [47.374583, 8.518838], [47.386132, 8.548316], [47.375757, 8.535454], [47.384922, 8.529908], [47.376296, 8.526116], [47.378297, 8.530368], [47.389255, 8.496353], [47.371781, 8.488075], [47.394792, 8.525818], [47.395757, 8.54543], [47.386408, 8.51823], [47.378519, 8.540133], [47.357475, 8.585844], [47.386748, 8.489178], [47.38868, 8.51858], [47.394002, 8.523722], [47.357899, 8.520552], [47.398009, 8.531885], [47.364737, 8.554398], [47.400194, 8.546211], [47.377897, 8.545973], [47.377805, 8.507978], [47.36606, 8.540272], [47.418624, 8.547191], [47.411082, 8.545775], [47.39593, 8.492366], [47.381951, 8.509094], [47.373192, 8.503926], [47.362478, 8.53383], [47.372367, 8.517257], [47.359578, 8.57698], [47.406602, 8.551459], [47.36391, 8.531755], [47.373524, 8.534839], [47.360111, 8.550899], [47.419542, 8.548045], [47.376158, 8.540653], [47.410167, 8.542708], [47.41678, 8.536829], [47.414777, 8.560919], [47.391306, 8.537721], [47.391651, 8.513541], [47.409063, 8.545269], [47.366375, 8.499871], [47.399647, 8.468103], [47.367961, 8.532315], [47.380676, 8.525172], [47.344492, 8.53051], [47.398999, 8.505886], [47.396703, 8.523525], [47.375634, 8.487767], [47.377497, 8.538906], [47.383432, 8.549452], [47.389252, 8.516128], [47.343038, 8.53588], [47.39236, 8.516549], [47.41219, 8.54654], [47.412443, 8.546439], [47.375031, 8.539941], [47.408588, 8.580174], [47.41769, 8.546098], [47.378442, 8.510123], [47.412501, 8.523224], [47.399656, 8.543193], [47.374536, 8.539958], [47.33991, 8.529953], [47.376551, 8.541893], [47.363429, 8.554768], [47.405645, 8.549955], [47.367009, 8.544476], [47.370288, 8.513441], [47.386951, 8.51881], [47.356664, 8.52369], [47.370088, 8.511742], [47.37396, 8.540992], [47.377549, 8.543767], [47.338914, 8.538203], [47.379379, 8.544269], [47.376969, 8.543318], [47.396144, 8.527462], [47.359673, 8.516471], [47.388751, 8.472475], [47.369553, 8.52856], [47.393326, 8.524874], [47.377539, 8.54198], [47.369714, 8.509418], [47.391173, 8.489238], [47.393755, 8.545044], [47.373305, 8.535086], [47.417143, 8.557179], [47.394135, 8.54488], [47.381295, 8.517702], [47.374533, 8.549743], [47.370396, 8.515429], [47.374846, 8.515665], [47.368752, 8.524757], [47.34139, 8.53038], [47.368355, 8.541048], [47.396898, 8.509368], [47.369921, 8.552269], [47.386355, 8.535354], [47.373563, 8.525001], [47.397962, 8.507137], [47.378768, 8.542349], [47.385682, 8.548347], [47.357419, 8.521826], [47.380292, 8.512425], [47.409332, 8.545368], [47.376852, 8.543329], [47.365216, 8.545736], [47.411142, 8.526138], [47.383439, 8.549558], [47.366523, 8.545419], [47.362751, 8.548571], [47.381427, 8.503482], [47.370161, 8.548791], [47.391233, 8.487518], [47.368312, 8.523742], [47.375623, 8.526831], [47.368603, 8.49924], [47.367101, 8.544306], [47.390451, 8.491449], [47.388642, 8.52556], [47.407756, 8.565091], [47.359143, 8.586436], [47.377705, 8.525403], [47.38337, 8.530459], [47.376858, 8.491591], [47.326001, 8.513925], [47.414481, 8.51538], [47.374424, 8.527137], [47.358312, 8.583996], [47.3677, 8.523769], [47.384494, 8.547501], [47.408389, 8.541413], [47.406547, 8.584622], [47.355447, 8.532521], [47.389673, 8.524005], [47.377197, 8.540145], [47.397001, 8.480305], [47.37165, 8.512105], [47.360486, 8.596976], [47.371817, 8.525972], [47.393278, 8.526118], [47.377683, 8.538261], [47.357024, 8.553853], [47.348303, 8.56267], [47.399899, 8.545013], [47.386749, 8.523111], [47.417998, 8.559847], [47.361841, 8.560864], [47.350119, 8.560922], [47.359745, 8.599039], [47.387133, 8.485384], [47.376834, 8.548917], [47.397988, 8.534136], [47.393785, 8.529639], [47.391371, 8.53755], [47.367081, 8.536004], [47.32955, 8.529714], [47.39392, 8.499704], [47.38687, 8.490544], [47.355322, 8.507474], [47.412623, 8.529362], [47.377626, 8.519522], [47.399399, 8.542803], [47.371993, 8.489483], [47.370167, 8.551003], [47.382091, 8.551358], [47.364436, 8.536942], [47.369925, 8.529151], [47.378078, 8.483114], [47.41379, 8.509376], [47.407087, 8.580076], [47.36723, 8.501821], [47.369069, 8.537911], [47.38689, 8.5022], [47.322572, 8.501487], [47.412167, 8.546102], [47.397532, 8.531888], [47.395056, 8.484586], [47.344122, 8.528795], [47.385897, 8.538033], [47.37299, 8.531332], [47.36836, 8.524418], [47.339094, 8.519125], [47.377139, 8.547123], [47.409399, 8.538267], [47.386504, 8.529092], [47.370877, 8.534996], [47.366816, 8.545822], [47.399409, 8.50139], [47.368289, 8.524337], [47.37795, 8.530003], [47.378734, 8.54219], [47.36396, 8.530299], [47.364774, 8.566327], [47.370805, 8.544435], [47.378095, 8.483194], [47.406383, 8.573012], [47.363685, 8.547849], [47.369511, 8.526362], [47.375631, 8.559896], [47.333803, 8.528915], [47.400126, 8.494794], [47.360271, 8.534209], [47.409425, 8.549703], [47.41445, 8.517778], [47.351599, 8.525652], [47.414693, 8.561209], [47.412178, 8.550555], [47.378152, 8.527677], [47.379095, 8.518267], [47.397024, 8.530434], [47.373019, 8.54713], [47.375397, 8.527011], [47.418891, 8.507411], [47.327374, 8.529538], [47.383079, 8.529844], [47.405681, 8.585862], [47.426017, 8.547292], [47.357994, 8.519945], [47.367499, 8.552483], [47.398503, 8.534809], [47.423805, 8.496297], [47.409399, 8.53828], [47.376845, 8.513587], [47.358221, 8.571405], [47.397026, 8.530275], [47.337092, 8.519693], [47.397215, 8.491517], [47.393283, 8.492644], [47.371724, 8.515721], [47.409327, 8.546759], [47.407499, 8.547039], [47.376956, 8.512265], [47.376967, 8.543544], [47.366891, 8.536106], [47.414592, 8.559537], [47.371621, 8.547564], [47.326952, 8.529503], [47.414575, 8.551095], [47.373029, 8.547077], [47.378433, 8.510149], [47.383376, 8.484078], [47.356478, 8.535772], [47.373088, 8.550282], [47.375002, 8.534472], [47.398062, 8.474418], [47.375283, 8.544634], [47.415098, 8.562052], [47.40382, 8.486268], [47.371243, 8.523007], [47.376095, 8.488438], [47.373463, 8.546795], [47.430908, 8.550297], [47.378128, 8.528272], [47.415461, 8.562736], [47.36537, 8.530461], [47.376805, 8.535039], [47.385899, 8.517849], [47.411484, 8.506839], [47.370466, 8.549778], [47.364042, 8.515738], [47.381454, 8.503403], [47.367829, 8.53966], [47.386619, 8.529267], [47.415176, 8.547477], [47.368663, 8.546509], [47.407705, 8.584886], [47.423348, 8.549794], [47.364114, 8.566618], [47.422748, 8.550471], [47.413415, 8.48056], [47.35558, 8.535635], [47.389408, 8.527271], [47.41932, 8.50575], [47.404222, 8.562207], [47.427224, 8.491249], [47.375212, 8.547414], [47.374377, 8.54153], [47.407887, 8.582915], [47.390836, 8.545513], [47.37885, 8.528962], [47.401521, 8.587111], [47.403235, 8.516557], [47.411646, 8.509784], [47.414139, 8.536443], [47.406577, 8.482785], [47.353587, 8.576138], [47.378031, 8.528085], [47.408177, 8.555016], [47.364568, 8.521084], [47.407888, 8.478067], [47.394828, 8.523951], [47.393486, 8.473163], [47.358268, 8.584842], [47.379205, 8.525672], [47.379212, 8.544795], [47.363612, 8.552614], [47.412277, 8.542116], [47.372745, 8.534465], [47.385003, 8.508718], [47.38494, 8.50881], [47.326315, 8.514923], [47.375423, 8.564633], [47.377035, 8.520185], [47.382655, 8.514631], [47.326361, 8.518695], [47.378305, 8.540923], [47.361031, 8.577382], [47.383936, 8.538986], [47.371057, 8.530286], [47.389536, 8.489233], [47.388638, 8.543997], [47.36512, 8.53411], [47.387008, 8.539474], [47.414522, 8.550988], [47.375428, 8.485684], [47.37785, 8.507979], [47.401912, 8.500142], [47.405369, 8.504742], [47.377169, 8.526995], [47.414411, 8.518996], [47.382504, 8.529713], [47.382487, 8.551366], [47.377531, 8.543767], [47.369041, 8.537937], [47.363721, 8.54781], [47.373849, 8.536567], [47.398516, 8.494815], [47.384793, 8.524554], [47.374886, 8.544732], [47.385815, 8.520099], [47.425323, 8.494578], [47.366711, 8.544642], [47.344252, 8.534991], [47.414118, 8.550847], [47.414118, 8.550847], [47.424081, 8.538106], [47.362104, 8.559718], [47.370717, 8.51672], [47.378566, 8.575214], [47.395192, 8.510036], [47.3558, 8.572399], [47.375296, 8.48437], [47.428228, 8.545562], [47.338453, 8.529963], [47.398588, 8.532559], [47.399065, 8.521957], [47.365203, 8.547086], [47.373494, 8.529382], [47.370188, 8.548805], [47.378174, 8.509932], [47.384444, 8.531911], [47.394437, 8.525294], [47.389482, 8.546969], [47.389745, 8.478031], [47.36436, 8.555224], [47.410317, 8.542009], [47.405873, 8.481075], [47.386795, 8.522993], [47.387389, 8.487945], [47.39441, 8.519531], [47.372409, 8.521442], [47.371869, 8.526224], [47.386793, 8.534714], [47.371521, 8.528786], [47.391627, 8.517117], [47.370983, 8.53141], [47.339519, 8.518922], [47.338342, 8.532117], [47.388574, 8.491081], [47.386954, 8.473288], [47.382108, 8.528791], [47.365487, 8.552163], [47.376282, 8.555765], [47.378281, 8.512874], [47.400161, 8.590976], [47.364356, 8.531155], [47.380545, 8.517052], [47.389439, 8.511523], [47.369786, 8.508426], [47.409302, 8.57526], [47.398849, 8.533465], [47.41934, 8.50644], [47.374439, 8.525588], [47.388642, 8.525547], [47.369997, 8.510973], [47.39319, 8.479052], [47.365475, 8.564555], [47.430065, 8.545414], [47.373286, 8.531457], [47.370937, 8.531608], [47.370713, 8.535284], [47.383235, 8.515133], [47.385092, 8.501052], [47.381762, 8.540623], [47.370397, 8.507578], [47.401224, 8.534322], [47.381487, 8.503748], [47.3795, 8.559726], [47.378872, 8.542749], [47.414373, 8.546811], [47.387979, 8.485361], [47.421215, 8.500195], [47.409391, 8.53824], [47.383079, 8.484046], [47.408793, 8.555546], [47.39336, 8.493057], [47.39378, 8.498284], [47.370969, 8.564711], [47.392082, 8.51751], [47.357267, 8.521743], [47.390518, 8.479119], [47.367083, 8.523386], [47.406235, 8.480817], [47.365055, 8.562428], [47.414826, 8.551154], [47.397829, 8.47636], [47.364543, 8.53145], [47.366756, 8.547423], [47.429845, 8.542997], [47.381164, 8.53726], [47.382066, 8.550231], [47.387796, 8.471649], [47.384358, 8.548518], [47.359508, 8.522557], [47.368011, 8.535665], [47.361694, 8.574007], [47.379636, 8.546618], [47.36603, 8.504141], [47.393164, 8.488893], [47.365119, 8.534176], [47.377354, 8.529329], [47.373706, 8.518383], [47.354152, 8.576295], [47.408813, 8.545993], [47.373027, 8.562159], [47.363784, 8.535552], [47.371915, 8.473234], [47.354894, 8.574881], [47.370574, 8.529972], [47.358473, 8.551884], [47.390304, 8.54941], [47.371678, 8.515866], [47.368216, 8.495274], [47.375209, 8.515328], [47.389801, 8.521875], [47.418699, 8.507752], [47.355595, 8.560243], [47.388318, 8.523673], [47.378947, 8.544353], [47.362638, 8.548224], [47.388086, 8.485456], [47.394231, 8.47527], [47.385007, 8.541843], [47.349987, 8.56984], [47.359389, 8.577016], [47.393112, 8.524618], [47.431328, 8.516463], [47.37541, 8.530349], [47.364851, 8.5667], [47.405147, 8.564201], [47.399275, 8.53309], [47.338416, 8.530055], [47.408556, 8.546531], [47.368661, 8.543901], [47.36198, 8.568757], [47.386241, 8.498359], [47.377857, 8.559413], [47.369025, 8.532111], [47.402832, 8.580978], [47.409674, 8.563952], [47.391107, 8.511079], [47.374274, 8.542958], [47.377196, 8.540304], [47.386447, 8.496483], [47.330144, 8.529687], [47.40863, 8.543472], [47.378767, 8.515837], [47.414209, 8.518528], [47.414035, 8.545426], [47.37431, 8.490892], [47.414605, 8.571133], [47.357129, 8.522045], [47.419152, 8.506409], [47.365162, 8.553189], [47.378722, 8.510923], [47.378369, 8.528463], [47.387789, 8.488443], [47.377481, 8.535794], [47.392459, 8.532857], [47.375499, 8.541831], [47.376804, 8.537012], [47.380044, 8.536827], [47.380167, 8.535227], [47.379219, 8.54698], [47.358972, 8.51643], [47.373577, 8.534919], [47.35945, 8.535423], [47.374537, 8.539865], [47.357571, 8.554023], [47.349442, 8.527382], [47.369209, 8.527905], [47.396485, 8.504339], [47.397695, 8.51263], [47.374457, 8.538791], [47.374554, 8.541825], [47.377676, 8.525614], [47.375676, 8.516437], [47.378298, 8.543584], [47.368781, 8.524625], [47.352161, 8.558172], [47.373546, 8.534415], [47.35871, 8.527041], [47.368233, 8.56125], [47.389254, 8.527387], [47.337314, 8.524765], [47.356394, 8.523658], [47.367381, 8.534726], [47.360447, 8.531763], [47.373691, 8.537106], [47.383587, 8.50914], [47.373861, 8.524808], [47.368459, 8.524367], [47.405242, 8.555299], [47.359315, 8.569919], [47.369222, 8.565879], [47.391037, 8.52247], [47.383771, 8.547843], [47.378439, 8.563372], [47.379108, 8.548143], [47.381799, 8.51664], [47.371681, 8.535608], [47.379468, 8.537835], [47.419202, 8.546898], [47.382823, 8.575053], [47.410731, 8.55234], [47.402163, 8.584051], [47.375645, 8.525454], [47.381093, 8.535259], [47.366448, 8.544848], [47.428292, 8.545497], [47.399362, 8.542882], [47.381543, 8.506517], [47.394717, 8.478287], [47.409151, 8.508223], [47.380473, 8.538028], [47.381924, 8.529197], [47.366938, 8.544421], [47.411008, 8.545045], [47.379369, 8.528298], [47.384445, 8.531858], [47.370525, 8.511182], [47.381193, 8.491637], [47.427456, 8.546314], [47.370224, 8.557134], [47.429517, 8.54531], [47.378616, 8.527117], [47.375159, 8.52363], [47.37379, 8.536129], [47.377465, 8.51936], [47.359089, 8.516432], [47.388478, 8.486814], [47.373568, 8.525372], [47.34321, 8.535764], [47.373682, 8.533266], [47.380052, 8.512115], [47.364302, 8.5463], [47.360965, 8.534925], [47.405461, 8.503512], [47.409557, 8.537753], [47.41978, 8.504659], [47.385866, 8.508802], [47.395786, 8.545232], [47.376051, 8.49135], [47.38543, 8.530448], [47.398889, 8.509991], [47.372558, 8.478702], [47.393937, 8.5249], [47.348976, 8.563796], [47.395095, 8.5223], [47.370899, 8.559969], [47.405632, 8.588008], [47.363923, 8.534138], [47.370872, 8.559915], [47.430255, 8.54058], [47.410558, 8.527054], [47.395697, 8.522352], [47.421565, 8.549996], [47.376436, 8.538858], [47.35692, 8.522239], [47.40204, 8.498011], [47.353571, 8.511966], [47.356978, 8.552157], [47.380598, 8.500724], [47.410602, 8.550814], [47.355183, 8.530954], [47.358523, 8.521107], [47.390162, 8.510213], [47.353647, 8.554311], [47.369616, 8.528601], [47.378396, 8.539825], [47.410928, 8.564509], [47.368924, 8.528521], [47.376891, 8.544879], [47.359369, 8.507582], [47.379038, 8.542355], [47.368877, 8.513386], [47.379098, 8.500416], [47.369945, 8.48028], [47.368919, 8.523291], [47.428994, 8.543549], [47.377349, 8.498911], [47.34105, 8.530161], [47.414863, 8.51499], [47.380927, 8.518556], [47.375581, 8.520831], [47.398801, 8.542301], [47.416537, 8.522551], [47.415899, 8.546246], [47.399222, 8.511879], [47.413788, 8.536449], [47.35342, 8.51183], [47.365533, 8.598701], [47.396042, 8.544853], [47.352909, 8.573661], [47.358333, 8.588219], [47.389624, 8.550972], [47.371825, 8.473272], [47.420742, 8.508522], [47.39141, 8.523007], [47.390053, 8.491693], [47.3728, 8.550276], [47.397861, 8.533286], [47.391367, 8.536106], [47.414008, 8.525534], [47.403513, 8.57674], [47.374912, 8.553353], [47.377715, 8.498203], [47.398741, 8.50653], [47.389108, 8.527649], [47.401995, 8.499892], [47.360321, 8.548692], [47.386393, 8.497528], [47.336772, 8.525959], [47.387922, 8.486644], [47.383061, 8.530797], [47.379159, 8.518149], [47.422717, 8.495255], [47.360505, 8.525635], [47.383458, 8.531586], [47.367939, 8.549765], [47.360635, 8.570106], [47.376034, 8.535685], [47.364655, 8.568324], [47.340991, 8.52406], [47.379233, 8.527474], [47.430745, 8.550413], [47.370953, 8.560844], [47.400798, 8.548794], [47.354607, 8.531008], [47.375543, 8.526736], [47.364001, 8.551404], [47.383993, 8.57774], [47.352356, 8.509109], [47.367494, 8.541732], [47.406453, 8.49537], [47.382204, 8.553585], [47.383021, 8.575057], [47.378953, 8.515126], [47.390824, 8.474118], [47.43019, 8.549261], [47.407115, 8.536325], [47.40548, 8.480736], [47.385869, 8.492776], [47.398573, 8.493491], [47.390483, 8.524909], [47.3306, 8.515592], [47.370321, 8.547073], [47.377751, 8.541467], [47.41193, 8.563205], [47.375455, 8.545432], [47.377226, 8.539907], [47.368882, 8.554591], [47.408727, 8.549357], [47.415282, 8.547718], [47.390509, 8.50863], [47.369385, 8.548126], [47.367382, 8.494052], [47.362312, 8.526665], [47.373754, 8.536154], [47.381881, 8.516549], [47.393523, 8.51244], [47.376938, 8.535253], [47.371648, 8.520963], [47.405962, 8.481103], [47.349982, 8.56117], [47.400774, 8.499682], [47.425634, 8.49404], [47.386057, 8.533547], [47.390942, 8.522044], [47.384727, 8.531533], [47.40678, 8.557187], [47.414744, 8.561475], [47.384558, 8.54831], [47.364112, 8.530329], [47.384454, 8.531872], [47.38609, 8.528197], [47.353619, 8.55439], [47.351873, 8.572924], [47.360234, 8.56602], [47.36996, 8.51975], [47.379272, 8.515635], [47.360092, 8.595882], [47.369538, 8.555544], [47.359504, 8.557863], [47.382714, 8.531346], [47.430736, 8.550412], [47.386176, 8.518], [47.427492, 8.546395], [47.369619, 8.553666], [47.376293, 8.538776], [47.377959, 8.530043], [47.354012, 8.601191], [47.423971, 8.502742], [47.405237, 8.593392], [47.349442, 8.534039], [47.423794, 8.516947], [47.374478, 8.546101], [47.395511, 8.535423], [47.370446, 8.512954], [47.352127, 8.530759], [47.369002, 8.502783], [47.388475, 8.473225], [47.410468, 8.542198], [47.384222, 8.525973], [47.371752, 8.522369], [47.398237, 8.494822], [47.376958, 8.569499], [47.375547, 8.529213], [47.371994, 8.53204], [47.406236, 8.547344], [47.379252, 8.537857], [47.370197, 8.548805], [47.3438, 8.535207], [47.369717, 8.518779], [47.401266, 8.54785], [47.390508, 8.484232], [47.393221, 8.52458], [47.410522, 8.572875], [47.389886, 8.538593], [47.366333, 8.5409], [47.373613, 8.553723], [47.366811, 8.544525], [47.385916, 8.498538], [47.405613, 8.570796], [47.361294, 8.554207], [47.377081, 8.54197], [47.403184, 8.497795], [47.368632, 8.547806], [47.380108, 8.490278], [47.366261, 8.520907], [47.407509, 8.492038], [47.427421, 8.546287], [47.37834, 8.528714], [47.3937, 8.510774], [47.375063, 8.528064], [47.370143, 8.548818], [47.324598, 8.515828], [47.373075, 8.524236], [47.393426, 8.524744], [47.383852, 8.573724], [47.387247, 8.518922], [47.399204, 8.538705], [47.360588, 8.501172], [47.3951, 8.546503], [47.385115, 8.495556], [47.356236, 8.572871], [47.404278, 8.484383], [47.351679, 8.488857], [47.369963, 8.536593], [47.377829, 8.511236], [47.393952, 8.521443], [47.358212, 8.526502], [47.377609, 8.538458], [47.392706, 8.539075], [47.340198, 8.529932], [47.395777, 8.511836], [47.376967, 8.542564], [47.422705, 8.540927], [47.371471, 8.556552], [47.349165, 8.562874], [47.391086, 8.536286], [47.405832, 8.551059], [47.375607, 8.514118], [47.38859, 8.531109], [47.384364, 8.489144], [47.363431, 8.533837], [47.370125, 8.548817], [47.382171, 8.536394], [47.394688, 8.525458], [47.368313, 8.560418], [47.367759, 8.53942], [47.377669, 8.518715], [47.420941, 8.507492], [47.369455, 8.520799], [47.365424, 8.545661], [47.364533, 8.521044], [47.372589, 8.517553], [47.364568, 8.56623], [47.409709, 8.537836], [47.369589, 8.525675], [47.375802, 8.488022], [47.383237, 8.506127], [47.37017, 8.548805], [47.396907, 8.51321], [47.409575, 8.545293], [47.359408, 8.585078], [47.366797, 8.553488], [47.377972, 8.529554], [47.353843, 8.526227], [47.368163, 8.496173], [47.378138, 8.529107], [47.377701, 8.538182], [47.39956, 8.547576], [47.378761, 8.575536], [47.331397, 8.513068], [47.368805, 8.528704], [47.387686, 8.490812], [47.36006, 8.550646], [47.419197, 8.50637], [47.381022, 8.535258], [47.368513, 8.499185], [47.42515, 8.545802], [47.382697, 8.543543], [47.398641, 8.539211], [47.358433, 8.5551], [47.381772, 8.545246], [47.410664, 8.54521], [47.3694, 8.541811], [47.369483, 8.466567], [47.372683, 8.535258], [47.399484, 8.5405], [47.402875, 8.502108], [47.409623, 8.544062], [47.365459, 8.552308], [47.368646, 8.54643], [47.365111, 8.53411], [47.37126, 8.515367], [47.367903, 8.556265], [47.375181, 8.518373], [47.382976, 8.513882], [47.391003, 8.521316], [47.378687, 8.574859], [47.373353, 8.531962], [47.364466, 8.546144], [47.371093, 8.547275], [47.367566, 8.496532], [47.363897, 8.531251], [47.354037, 8.599616], [47.369726, 8.525532], [47.360024, 8.595457], [47.339689, 8.519044], [47.370461, 8.539993], [47.398148, 8.465755], [47.391637, 8.518905], [47.39603, 8.515656], [47.395994, 8.515655], [47.377301, 8.512828], [47.388167, 8.491378], [47.394447, 8.525268], [47.37806, 8.52786], [47.410575, 8.55728], [47.366473, 8.545034], [47.398647, 8.539595], [47.3854, 8.53646], [47.401324, 8.54181], [47.381785, 8.536359], [47.41115, 8.526231], [47.413843, 8.554247], [47.359142, 8.522218], [47.381291, 8.514259], [47.38673, 8.483244], [47.39119, 8.489292], [47.40972, 8.479375], [47.377441, 8.543805], [47.350119, 8.560961], [47.425792, 8.542608], [47.373232, 8.53519], [47.369475, 8.506142], [47.392183, 8.538256], [47.361807, 8.515282], [47.366231, 8.55709], [47.363086, 8.552099], [47.410378, 8.536617], [47.372893, 8.54714], [47.334471, 8.539038], [47.362792, 8.547168], [47.387858, 8.52471], [47.394017, 8.525021], [47.370398, 8.514278], [47.347005, 8.526379], [47.374014, 8.544753], [47.41323, 8.545899], [47.388266, 8.526347], [47.371879, 8.522279], [47.414015, 8.546671], [47.378503, 8.525764], [47.409118, 8.545111], [47.370236, 8.602419], [47.409008, 8.550038], [47.400619, 8.544074], [47.390959, 8.507686], [47.369688, 8.54187], [47.354781, 8.526842], [47.371863, 8.522119], [47.377072, 8.513326], [47.352988, 8.559208], [47.378512, 8.575213], [47.353373, 8.602117], [47.392, 8.51274], [47.409915, 8.479657], [47.375, 8.545039], [47.403495, 8.583152], [47.38726, 8.533757], [47.374154, 8.544187], [47.376689, 8.511981], [47.375402, 8.528322], [47.36253, 8.56583], [47.373832, 8.53646], [47.375441, 8.518484], [47.390594, 8.539813], [47.336531, 8.537228], [47.366424, 8.552024], [47.374992, 8.545012], [47.370367, 8.548902], [47.401778, 8.500086], [47.419411, 8.506547], [47.403516, 8.534581], [47.338122, 8.530671], [47.40456, 8.484004], [47.363213, 8.51686], [47.355104, 8.558935], [47.382774, 8.53736], [47.405246, 8.570589], [47.404184, 8.560524], [47.398163, 8.53459], [47.368549, 8.523482], [47.415619, 8.569564], [47.378055, 8.529383], [47.370293, 8.535937], [47.39903, 8.533283], [47.369504, 8.510751], [47.393629, 8.511713], [47.389908, 8.51234], [47.389021, 8.496309], [47.411669, 8.48462], [47.386187, 8.498372], [47.374502, 8.538884], [47.391926, 8.511069], [47.372247, 8.535673], [47.367384, 8.491815], [47.370396, 8.537409], [47.378652, 8.527144], [47.384434, 8.503211], [47.400296, 8.518286], [47.405668, 8.591639], [47.387863, 8.49806], [47.373422, 8.550157], [47.383385, 8.531677], [47.398692, 8.539503], [47.369446, 8.541759], [47.419178, 8.547613], [47.374862, 8.51879], [47.391564, 8.54276], [47.383281, 8.530377], [47.38219, 8.547559], [47.379375, 8.521954], [47.405964, 8.558746], [47.363241, 8.554684], [47.352878, 8.531237], [47.345467, 8.529193], [47.402154, 8.508082], [47.375943, 8.577595], [47.355358, 8.559602], [47.382492, 8.537632], [47.354432, 8.556763], [47.400862, 8.499922], [47.366812, 8.55836], [47.38949, 8.490278], [47.360466, 8.594421], [47.389651, 8.511964], [47.411214, 8.526206], [47.385161, 8.537012], [47.40852, 8.54657], [47.398229, 8.527624], [47.384248, 8.496002], [47.364586, 8.53161], [47.400133, 8.543163], [47.369606, 8.528654], [47.404697, 8.483795], [47.359251, 8.569957], [47.357745, 8.514883], [47.385292, 8.543941], [47.388228, 8.519869], [47.39117, 8.522618], [47.406885, 8.586829], [47.382664, 8.514605], [47.367866, 8.55359], [47.380548, 8.489373], [47.363092, 8.517294], [47.37496, 8.551129], [47.361746, 8.560385], [47.38676, 8.547521], [47.390827, 8.52179], [47.391234, 8.487412], [47.380765, 8.512805], [47.405165, 8.564188], [47.369424, 8.537455], [47.406647, 8.503654], [47.383495, 8.498702], [47.38418, 8.511126], [47.411904, 8.506198], [47.405637, 8.585689], [47.376582, 8.536676], [47.410733, 8.555838], [47.381584, 8.529058], [47.367401, 8.490001], [47.373016, 8.554055], [47.373316, 8.55373], [47.37302, 8.532908], [47.403583, 8.494504], [47.409565, 8.546393], [47.399749, 8.467853], [47.349602, 8.561387], [47.383102, 8.530228], [47.422864, 8.550632], [47.375835, 8.53768], [47.358085, 8.557621], [47.378288, 8.541743], [47.409683, 8.575904], [47.371907, 8.536474], [47.367367, 8.528555], [47.398659, 8.532627], [47.377985, 8.530084], [47.366557, 8.540931], [47.354788, 8.574707], [47.386996, 8.481606], [47.402699, 8.537228], [47.357259, 8.552878], [47.380681, 8.534178], [47.398551, 8.472043], [47.37813, 8.526193], [47.37056, 8.549356], [47.398618, 8.52934], [47.375639, 8.521296], [47.402034, 8.497667], [47.373558, 8.513971], [47.390738, 8.488581], [47.38073, 8.534695], [47.369079, 8.528259], [47.37429, 8.524195], [47.346995, 8.52839], [47.372846, 8.573357], [47.39822, 8.532472], [47.378135, 8.540826], [47.413141, 8.513445], [47.360504, 8.527594], [47.374291, 8.525003], [47.387805, 8.49847], [47.414636, 8.517092], [47.391146, 8.489172], [47.372471, 8.563829], [47.421871, 8.537795], [47.422724, 8.540822], [47.342464, 8.530984], [47.412312, 8.509678], [47.377324, 8.500632], [47.414176, 8.478932], [47.369726, 8.525505], [47.376048, 8.540889], [47.337268, 8.52581], [47.379524, 8.537597], [47.380429, 8.519897], [47.377932, 8.530016], [47.372889, 8.521054], [47.382929, 8.575254], [47.382269, 8.540329], [47.381195, 8.491452], [47.399535, 8.496531], [47.399647, 8.515517], [47.407069, 8.580115], [47.424, 8.539947], [47.373969, 8.544726], [47.397849, 8.532676], [47.339732, 8.535441], [47.407351, 8.549328], [47.414278, 8.551102], [47.362282, 8.559007], [47.364059, 8.546361], [47.372593, 8.542778], [47.397251, 8.53118], [47.38195, 8.545382], [47.381249, 8.48352], [47.411007, 8.529939], [47.364503, 8.555293], [47.379097, 8.542793], [47.393666, 8.539306], [47.395298, 8.52555], [47.391357, 8.513217], [47.349035, 8.526672], [47.408721, 8.546243], [47.380286, 8.541679], [47.378952, 8.559701], [47.381442, 8.497893], [47.405052, 8.557309], [47.375411, 8.512008], [47.369155, 8.532591], [47.406943, 8.550565], [47.391115, 8.520855], [47.37017, 8.548792], [47.396694, 8.529275], [47.374562, 8.495836], [47.369302, 8.561365], [47.41761, 8.559945], [47.364236, 8.53155], [47.369621, 8.533712], [47.36846, 8.498099], [47.362489, 8.568186], [47.416476, 8.545105], [47.383643, 8.483368], [47.418761, 8.550732], [47.358222, 8.554632], [47.366745, 8.545781], [47.430476, 8.540929], [47.372974, 8.529253], [47.422864, 8.510579], [47.396776, 8.5339], [47.381853, 8.529103], [47.397782, 8.474478], [47.378357, 8.541096], [47.391651, 8.526019], [47.378157, 8.52618], [47.376926, 8.541265], [47.375912, 8.538145], [47.360673, 8.578116], [47.386754, 8.518767], [47.363812, 8.52884], [47.373045, 8.531187], [47.414944, 8.550997], [47.36697, 8.536293], [47.410512, 8.527106], [47.388145, 8.536292], [47.363802, 8.550552], [47.381785, 8.489888], [47.358312, 8.571261], [47.376851, 8.520605], [47.411678, 8.562285], [47.360967, 8.535666], [47.338002, 8.538581], [47.414659, 8.520432], [47.393361, 8.529749], [47.385678, 8.498944], [47.389408, 8.487468], [47.374301, 8.544812], [47.377295, 8.535565], [47.373025, 8.531452], [47.405376, 8.549817], [47.392053, 8.51184], [47.393348, 8.537737], [47.367073, 8.544345], [47.334303, 8.535025], [47.388521, 8.491067], [47.427215, 8.543353], [47.369043, 8.528325], [47.367954, 8.555617], [47.370725, 8.532106], [47.40542, 8.550904], [47.360604, 8.525611], [47.407399, 8.562937], [47.363216, 8.516595], [47.367636, 8.529607], [47.409444, 8.557017], [47.365788, 8.56566], [47.409101, 8.573732], [47.422047, 8.55043], [47.387098, 8.485304], [47.370604, 8.517208], [47.373789, 8.542842], [47.360322, 8.567213], [47.366112, 8.566541], [47.36493, 8.534265], [47.377488, 8.494491], [47.378878, 8.526976], [47.380956, 8.499936], [47.386742, 8.547574], [47.373274, 8.520255], [47.371157, 8.530142], [47.371997, 8.522175], [47.390589, 8.470219], [47.408313, 8.58527], [47.418918, 8.507319], [47.374359, 8.488483], [47.370236, 8.514288], [47.375706, 8.526581], [47.392085, 8.500608], [47.34363, 8.535124], [47.378914, 8.530791], [47.372675, 8.529432], [47.351795, 8.50465], [47.378489, 8.544264], [47.409281, 8.481102], [47.397077, 8.530567], [47.367469, 8.537733], [47.365108, 8.553254], [47.372521, 8.523788], [47.410636, 8.556565], [47.335123, 8.514823], [47.356653, 8.558703], [47.349433, 8.533999], [47.382299, 8.501579], [47.42751, 8.538853], [47.37734, 8.498911], [47.420981, 8.502152], [47.3677, 8.523782], [47.391903, 8.518354], [47.385418, 8.536408], [47.430012, 8.537698], [47.385107, 8.526481], [47.390693, 8.508237], [47.377205, 8.540238], [47.390966, 8.521408], [47.373924, 8.524836], [47.407513, 8.584351], [47.353559, 8.576203], [47.398996, 8.533111], [47.364295, 8.533868], [47.370939, 8.548291], [47.399745, 8.544162], [47.396581, 8.528769], [47.35884, 8.51611], [47.386797, 8.547469], [47.396998, 8.505316], [47.396229, 8.485192], [47.366936, 8.558641], [47.369925, 8.525403], [47.382551, 8.540905], [47.38971, 8.51231], [47.382063, 8.584572], [47.398285, 8.536951], [47.378232, 8.520064], [47.370289, 8.514302], [47.386482, 8.500563], [47.380368, 8.48349], [47.37054, 8.535466], [47.3716, 8.522339], [47.374722, 8.549694], [47.378222, 8.547701], [47.36601, 8.496501], [47.387594, 8.521313], [47.389671, 8.521329], [47.371324, 8.542937], [47.333739, 8.531838], [47.414112, 8.519229], [47.392142, 8.500358], [47.427414, 8.551668], [47.364591, 8.532947], [47.376762, 8.506937], [47.398811, 8.468034], [47.398153, 8.535703], [47.388252, 8.490982], [47.383773, 8.512402], [47.382342, 8.514399], [47.417663, 8.546137], [47.39338, 8.523855], [47.378838, 8.520699], [47.381519, 8.533056], [47.366902, 8.549968], [47.42081, 8.548999], [47.403727, 8.503265], [47.376695, 8.538982], [47.370325, 8.524948], [47.366466, 8.499793], [47.37718, 8.540052], [47.38322, 8.506021], [47.372533, 8.529257], [47.379804, 8.543152], [47.407145, 8.550172], [47.363943, 8.53488], [47.377973, 8.529461], [47.381192, 8.538162], [47.414197, 8.545455], [47.408014, 8.546745], [47.371611, 8.54763], [47.408737, 8.562289], [47.339492, 8.524704], [47.386087, 8.52462], [47.367528, 8.495842], [47.374593, 8.535867], [47.388035, 8.520303], [47.381773, 8.516613], [47.340809, 8.52616], [47.371597, 8.522564], [47.375752, 8.559488], [47.404321, 8.557559], [47.377189, 8.539999], [47.390494, 8.538989], [47.405055, 8.478952], [47.377068, 8.544208], [47.430702, 8.541822], [47.369531, 8.538504], [47.38585, 8.525026], [47.364804, 8.567811], [47.365102, 8.534149], [47.365093, 8.534149], [47.383019, 8.575176], [47.413472, 8.536562], [47.373141, 8.537267], [47.381315, 8.542217], [47.360155, 8.568613], [47.394555, 8.514646], [47.354376, 8.5552], [47.393715, 8.510125], [47.387399, 8.500647], [47.360051, 8.550633], [47.38528, 8.536776], [47.391347, 8.522992], [47.400902, 8.548319], [47.4049, 8.497074], [47.383691, 8.588183], [47.386522, 8.529106], [47.391062, 8.521689], [47.350711, 8.602019], [47.383151, 8.540189], [47.384485, 8.548454], [47.364818, 8.554413], [47.386507, 8.475968], [47.418512, 8.541993], [47.358813, 8.515129], [47.368826, 8.501337], [47.373571, 8.553391], [47.380173, 8.527917], [47.360091, 8.533252], [47.362267, 8.53139], [47.344252, 8.533125], [47.428675, 8.489037], [47.370253, 8.52488], [47.369524, 8.529778], [47.364624, 8.554885], [47.409031, 8.547627], [47.37642, 8.528211], [47.381242, 8.534799], [47.38179, 8.516693], [47.376822, 8.54452], [47.354592, 8.526891], [47.365614, 8.553926], [47.426572, 8.492707], [47.352875, 8.576241], [47.388761, 8.520529], [47.388654, 8.520448], [47.374753, 8.518934], [47.395104, 8.522261], [47.396997, 8.530486], [47.397838, 8.542307], [47.412614, 8.54643], [47.395207, 8.532437], [47.368667, 8.519446], [47.380874, 8.511655], [47.406692, 8.550427], [47.407917, 8.547498], [47.389691, 8.511488], [47.41107, 8.571137], [47.409206, 8.547233], [47.37921, 8.523262], [47.40851, 8.580809], [47.340406, 8.519257], [47.396129, 8.527104], [47.380616, 8.534336], [47.40688, 8.550524], [47.378022, 8.528085], [47.407592, 8.530611], [47.391311, 8.537297], [47.325794, 8.518697], [47.394778, 8.525447], [47.362897, 8.567837], [47.394368, 8.544938], [47.375847, 8.535469], [47.375652, 8.537107], [47.397451, 8.531966], [47.393414, 8.499933], [47.402854, 8.553951], [47.377918, 8.497717], [47.326352, 8.518748], [47.369883, 8.523138], [47.396697, 8.495997], [47.378597, 8.542385], [47.421725, 8.538018], [47.400262, 8.518047], [47.384125, 8.497668], [47.36903, 8.541075], [47.372337, 8.544216], [47.369984, 8.492819], [47.380466, 8.519765], [47.360272, 8.567728], [47.386159, 8.49751], [47.375652, 8.537107], [47.386248, 8.518081], [47.365128, 8.52091], [47.3758, 8.48732], [47.362314, 8.513982], [47.365794, 8.539856], [47.404175, 8.560524], [47.349821, 8.533954], [47.381808, 8.516693], [47.415291, 8.508518], [47.383463, 8.549029], [47.38454, 8.54831], [47.390695, 8.489308], [47.384107, 8.534341], [47.351289, 8.53368], [47.377179, 8.540118], [47.367611, 8.541774], [47.388545, 8.512882], [47.410504, 8.527093], [47.415926, 8.530092], [47.403645, 8.571549], [47.369819, 8.536629], [47.366897, 8.494903], [47.352263, 8.506619], [47.364665, 8.554343], [47.397683, 8.487459], [47.377733, 8.525324], [47.343904, 8.514643], [47.406544, 8.547204], [47.410613, 8.521238], [47.414951, 8.474759], [47.371406, 8.49768], [47.372364, 8.537556], [47.40017, 8.515409], [47.368663, 8.524676], [47.374831, 8.539275], [47.37084, 8.548302], [47.369712, 8.528908], [47.418592, 8.542114], [47.375596, 8.486958], [47.429974, 8.539885], [47.375502, 8.563932], [47.391366, 8.516105], [47.375693, 8.518437], [47.360358, 8.55048], [47.402405, 8.499343], [47.407368, 8.577101], [47.374612, 8.533894], [47.372629, 8.477843], [47.378564, 8.542067], [47.39017, 8.525724], [47.408982, 8.53957], [47.378042, 8.510591], [47.360293, 8.535679], [47.387258, 8.518764], [47.369771, 8.536853], [47.36518, 8.545775], [47.420296, 8.503331], [47.364543, 8.558657], [47.429929, 8.537922], [47.386188, 8.524397], [47.370868, 8.514949], [47.363145, 8.533672], [47.357782, 8.55175], [47.428731, 8.4888], [47.370924, 8.514765], [47.397203, 8.58723], [47.376034, 8.535711], [47.375625, 8.553037], [47.365874, 8.532378], [47.376175, 8.544507], [47.376513, 8.53923], [47.408961, 8.545532], [47.38853, 8.491014], [47.380797, 8.518937], [47.407418, 8.492209], [47.367198, 8.545459], [47.404462, 8.557827], [47.396494, 8.528489], [47.381418, 8.57154], [47.400228, 8.547325], [47.413112, 8.544174], [47.362561, 8.50476], [47.378632, 8.553735], [47.374906, 8.550188], [47.38397, 8.509532], [47.393147, 8.530447], [47.405046, 8.479005], [47.378066, 8.51381], [47.383931, 8.530987], [47.380405, 8.5282], [47.392009, 8.510806], [47.382689, 8.541543], [47.358514, 8.52108], [47.400368, 8.489976], [47.421823, 8.550346], [47.397859, 8.591775], [47.388765, 8.479946], [47.393785, 8.539137], [47.351809, 8.527258], [47.405557, 8.48613], [47.39915, 8.54248], [47.399674, 8.493062], [47.398062, 8.53484], [47.399537, 8.469399], [47.349765, 8.561338], [47.374243, 8.486428], [47.394521, 8.544875], [47.409305, 8.545367], [47.374292, 8.543859], [47.381438, 8.535942], [47.367878, 8.564394], [47.358379, 8.555152], [47.408124, 8.554922], [47.378293, 8.510649], [47.368469, 8.550729], [47.368122, 8.560612], [47.381726, 8.516824], [47.374301, 8.524857], [47.38052, 8.528348], [47.370953, 8.549735], [47.325564, 8.513453], [47.369146, 8.524024], [47.418912, 8.507067], [47.373354, 8.534742], [47.370509, 8.549064], [47.378351, 8.541771], [47.366512, 8.557785], [47.329901, 8.512416], [47.376172, 8.527769], [47.369262, 8.51166], [47.399006, 8.532091], [47.353443, 8.560449], [47.373952, 8.544607], [47.373964, 8.53012], [47.378902, 8.527282], [47.383708, 8.573708], [47.380784, 8.53561], [47.364436, 8.534175], [47.39132, 8.537298], [47.425715, 8.494055], [47.380994, 8.538104], [47.375733, 8.544604], [47.403834, 8.567857], [47.376061, 8.535725], [47.365176, 8.547112], [47.369164, 8.556119], [47.391316, 8.473373], [47.409389, 8.543103], [47.380215, 8.48346], [47.359022, 8.550069], [47.372542, 8.529257], [47.368561, 8.528805], [47.360785, 8.598532], [47.372744, 8.477077], [47.38837, 8.490865], [47.391114, 8.522855], [47.380839, 8.535519], [47.430955, 8.550139], [47.418803, 8.506177], [47.393687, 8.510323], [47.379361, 8.525384], [47.351087, 8.515979], [47.378416, 8.50999], [47.425615, 8.494159], [47.38963, 8.539024], [47.391387, 8.514807], [47.379342, 8.495428], [47.371616, 8.534879], [47.370125, 8.548844], [47.370286, 8.54886], [47.337583, 8.525816], [47.351574, 8.524553], [47.414317, 8.529039], [47.395331, 8.519179], [47.383113, 8.540439], [47.379993, 8.527052], [47.377469, 8.529517], [47.363032, 8.548391], [47.387408, 8.527628], [47.379988, 8.546493], [47.347331, 8.532805], [47.410712, 8.57003], [47.369217, 8.527997], [47.431521, 8.543668], [47.366847, 8.542659], [47.388081, 8.539191], [47.415958, 8.51427], [47.362139, 8.531613], [47.392674, 8.515734], [47.374636, 8.528466], [47.387448, 8.525284], [47.396357, 8.485949], [47.374259, 8.537926], [47.389758, 8.471514], [47.365576, 8.532517], [47.360058, 8.53574], [47.36728, 8.523496], [47.377995, 8.528124], [47.375814, 8.559516], [47.38288, 8.541335], [47.364472, 8.536956], [47.386539, 8.490418], [47.413012, 8.546146], [47.41937, 8.50807], [47.371457, 8.525037], [47.343857, 8.530153], [47.39689, 8.530405], [47.378722, 8.542507], [47.377548, 8.54198], [47.374474, 8.516968], [47.376192, 8.540839], [47.37225, 8.538242], [47.358873, 8.516401], [47.370771, 8.531948], [47.39606, 8.526864], [47.36494, 8.548286], [47.403562, 8.485932], [47.364402, 8.536796], [47.410433, 8.571866], [47.364001, 8.551417], [47.373916, 8.544646], [47.370151, 8.539496], [47.378468, 8.523671], [47.394052, 8.539394], [47.390249, 8.509565], [47.411995, 8.52446], [47.369409, 8.541811], [47.369461, 8.525924], [47.372564, 8.534501], [47.369461, 8.529697], [47.379958, 8.486991], [47.375305, 8.521408], [47.40267, 8.499839], [47.408427, 8.550609], [47.375865, 8.51256], [47.385152, 8.529409], [47.369966, 8.491773], [47.371234, 8.520107], [47.399134, 8.547872], [47.366856, 8.543599], [47.39066, 8.512766], [47.38928, 8.521838], [47.409608, 8.549322], [47.378777, 8.542323], [47.367839, 8.546082], [47.374821, 8.520286], [47.381254, 8.5288], [47.421041, 8.512226], [47.377382, 8.539579], [47.4145, 8.546694], [47.386162, 8.518582], [47.364455, 8.531197], [47.34446, 8.532971], [47.373881, 8.554801], [47.378723, 8.510883], [47.392677, 8.548717], [47.360513, 8.550272], [47.368822, 8.528863], [47.363973, 8.551535], [47.383285, 8.484222], [47.361379, 8.563992], [47.410851, 8.566866], [47.389789, 8.511623], [47.378225, 8.538974], [47.373506, 8.598345], [47.396108, 8.54455], [47.377549, 8.543767], [47.379648, 8.526423], [47.335627, 8.532922], [47.391784, 8.51859], [47.369997, 8.543386], [47.409831, 8.544835], [47.369322, 8.527271], [47.327274, 8.529668], [47.410222, 8.548222], [47.391711, 8.485408], [47.375081, 8.528091], [47.396165, 8.545094], [47.366539, 8.540957], [47.371277, 8.523114], [47.39082, 8.48849], [47.370068, 8.504195], [47.397188, 8.531245], [47.364641, 8.566126], [47.377719, 8.54197], [47.368752, 8.518998], [47.42038, 8.50104], [47.356941, 8.567022], [47.372324, 8.532311], [47.3542, 8.523653], [47.430737, 8.550386], [47.354171, 8.598785], [47.360172, 8.503388], [47.36902, 8.525041], [47.372881, 8.517055], [47.37165, 8.553907], [47.370134, 8.548804], [47.401946, 8.501401], [47.369014, 8.537977], [47.392793, 8.534626], [47.351823, 8.525736], [47.360875, 8.52923], [47.34475, 8.532699], [47.365564, 8.533801], [47.403102, 8.555188], [47.369014, 8.537977], [47.377265, 8.529221], [47.324767, 8.511162], [47.411261, 8.525902], [47.386233, 8.482413], [47.37896, 8.524978], [47.370179, 8.548805], [47.368396, 8.563902], [47.387117, 8.545939], [47.393907, 8.505943], [47.368934, 8.501418], [47.381423, 8.503932], [47.370336, 8.491661], [47.367656, 8.545482], [47.37945, 8.527372], [47.361066, 8.535694], [47.379693, 8.523497], [47.381525, 8.571662], [47.387999, 8.491004], [47.374467, 8.538725], [47.381171, 8.542214], [47.366052, 8.533533], [47.409405, 8.569379], [47.370666, 8.525048], [47.361942, 8.515246], [47.390744, 8.522013], [47.370596, 8.517142], [47.354027, 8.555895], [47.366656, 8.535293], [47.361807, 8.515296], [47.373463, 8.528892], [47.381192, 8.538162], [47.373436, 8.528905], [47.369238, 8.519934], [47.369411, 8.540739], [47.359503, 8.535437], [47.359722, 8.522733], [47.355665, 8.572436], [47.403641, 8.572861], [47.391283, 8.506672], [47.407622, 8.585122], [47.381549, 8.503908], [47.372035, 8.529564], [47.380784, 8.497072], [47.372518, 8.513605], [47.400447, 8.585723], [47.407674, 8.497633], [47.359847, 8.522881], [47.386193, 8.518146], [47.422712, 8.510497], [47.375245, 8.545772], [47.416966, 8.510248], [47.428237, 8.489691], [47.339008, 8.535916], [47.378473, 8.526995], [47.396428, 8.472015], [47.387967, 8.488592], [47.384427, 8.531871], [47.366207, 8.544644], [47.393964, 8.537273], [47.37291, 8.527384], [47.412872, 8.516222], [47.379672, 8.494706], [47.39835, 8.537681], [47.420068, 8.548546], [47.413751, 8.545976], [47.406907, 8.550524], [47.413238, 8.541341], [47.375165, 8.522941], [47.356503, 8.523608], [47.38757, 8.527644], [47.391619, 8.487618], [47.375425, 8.516259], [47.351912, 8.576247], [47.376101, 8.540917], [47.39296, 8.489525], [47.401749, 8.505146], [47.36377, 8.566928], [47.360967, 8.558198], [47.408114, 8.576229], [47.39017, 8.510226], [47.378015, 8.545803], [47.33295, 8.528725], [47.3348, 8.53002], [47.372045, 8.512245], [47.375464, 8.544572], [47.370143, 8.548818], [47.403301, 8.547693], [47.429459, 8.544792], [47.359233, 8.516382], [47.377433, 8.538984], [47.370086, 8.512047], [47.405206, 8.487183], [47.371282, 8.535997], [47.374123, 8.513214], [47.429846, 8.549466], [47.364595, 8.566191], [47.379447, 8.523889], [47.378456, 8.567213], [47.407599, 8.545941], [47.381174, 8.543803], [47.371205, 8.554295], [47.393314, 8.545088], [47.375009, 8.545039], [47.395482, 8.522295], [47.424832, 8.537605], [47.393709, 8.531995], [47.394667, 8.521921], [47.3972, 8.530888], [47.379246, 8.546941], [47.381915, 8.540574], [47.373858, 8.536567], [47.378581, 8.542147], [47.38494, 8.524213], [47.376852, 8.513772], [47.387267, 8.518764], [47.376902, 8.512211], [47.376919, 8.527744], [47.386979, 8.534996], [47.366156, 8.536792], [47.417118, 8.545728], [47.392786, 8.548548], [47.390106, 8.525762], [47.369005, 8.53799], [47.361482, 8.554264], [47.396199, 8.48943], [47.365282, 8.5388], [47.388806, 8.53865], [47.363526, 8.530542], [47.356256, 8.531651], [47.419228, 8.507895], [47.405702, 8.480992], [47.402506, 8.495265], [47.360751, 8.561953], [47.389873, 8.539029], [47.365539, 8.552349], [47.403875, 8.496988], [47.428701, 8.489077], [47.351205, 8.576815], [47.404831, 8.572555], [47.369502, 8.520575], [47.343664, 8.53535], [47.385174, 8.47622], [47.3698, 8.536655], [47.364214, 8.497207], [47.34438, 8.532876], [47.407436, 8.579381], [47.33967, 8.528651], [47.363691, 8.535841], [47.387529, 8.488385], [47.384821, 8.531998], [47.368143, 8.506169], [47.369651, 8.548516], [47.411966, 8.563179], [47.397251, 8.531167], [47.37354, 8.514937], [47.36486, 8.5667], [47.368003, 8.524093], [47.408914, 8.485931], [47.397087, 8.530488], [47.386538, 8.52357], [47.423717, 8.513632], [47.378037, 8.526549], [47.410468, 8.532776], [47.366179, 8.555911], [47.364467, 8.546912], [47.409433, 8.549756], [47.379014, 8.518252], [47.404161, 8.563822], [47.378966, 8.508902], [47.395748, 8.531255], [47.374825, 8.519915], [47.422926, 8.510726], [47.393188, 8.513625], [47.412578, 8.516945], [47.391659, 8.523237], [47.366882, 8.544579], [47.412028, 8.546563], [47.39776, 8.533536], [47.405111, 8.571527], [47.358803, 8.552195], [47.413283, 8.544138], [47.358604, 8.57083], [47.373373, 8.531724], [47.370045, 8.513463], [47.382431, 8.540293], [47.358328, 8.57146], [47.366327, 8.50122], [47.376719, 8.559959], [47.408279, 8.541649], [47.419771, 8.554239], [47.395723, 8.531136], [47.395829, 8.483594], [47.397972, 8.533871], [47.380985, 8.528622], [47.360898, 8.530607], [47.403657, 8.496241], [47.393874, 8.533469], [47.377593, 8.541981], [47.361853, 8.54744], [47.380525, 8.534466], [47.35697, 8.551072], [47.397787, 8.533483], [47.356848, 8.557198], [47.383332, 8.53157], [47.384106, 8.511376], [47.36439, 8.546487], [47.367401, 8.517276], [47.374352, 8.521442], [47.37648, 8.506376], [47.370823, 8.514948], [47.377134, 8.53919], [47.372263, 8.554741], [47.371255, 8.507237], [47.405792, 8.48102], [47.411361, 8.525851], [47.344034, 8.53144], [47.395687, 8.532089], [47.38558, 8.508597], [47.349477, 8.561279], [47.375781, 8.577631], [47.366639, 8.531414], [47.336745, 8.535499], [47.360361, 8.523739], [47.398301, 8.532407], [47.406728, 8.550455], [47.366976, 8.544144], [47.371618, 8.517493], [47.388697, 8.519667], [47.382013, 8.54823], [47.378337, 8.541374], [47.358334, 8.588193], [47.380149, 8.512263], [47.394928, 8.519012], [47.387013, 8.528494], [47.411105, 8.526257], [47.402562, 8.535529], [47.369014, 8.537977], [47.366595, 8.533187], [47.399175, 8.521761], [47.409944, 8.546242], [47.417182, 8.541886], [47.376906, 8.524301], [47.380635, 8.525741], [47.403062, 8.49831], [47.358111, 8.596078], [47.358937, 8.526861], [47.382884, 8.532329], [47.379169, 8.555892], [47.378482, 8.51938], [47.378687, 8.490316], [47.368097, 8.541758], [47.418401, 8.547027], [47.388192, 8.497484], [47.385208, 8.536774], [47.392676, 8.475161], [47.426666, 8.544323], [47.364459, 8.566308], [47.372745, 8.521052], [47.39812, 8.494847], [47.37743, 8.512566], [47.396013, 8.526995], [47.409568, 8.576618], [47.3918, 8.518816], [47.40557, 8.495551], [47.390784, 8.52261], [47.40327, 8.516677], [47.353843, 8.553521], [47.373032, 8.52691], [47.374959, 8.524751], [47.397473, 8.53243], [47.386641, 8.520274], [47.379323, 8.527476], [47.36721, 8.541316], [47.375776, 8.541069], [47.395313, 8.488923], [47.366248, 8.540316], [47.36709, 8.53979], [47.373778, 8.495013], [47.372702, 8.527565], [47.364122, 8.546349], [47.370565, 8.530991], [47.402436, 8.535553], [47.399989, 8.507787], [47.429953, 8.549587], [47.399587, 8.54755], [47.376392, 8.543465], [47.391601, 8.506308], [47.372881, 8.547458], [47.408614, 8.507907], [47.368532, 8.563732], [47.390814, 8.508716], [47.385065, 8.530983], [47.389153, 8.524749], [47.362216, 8.55461], [47.37595, 8.5594], [47.361572, 8.535453], [47.417784, 8.554144], [47.397932, 8.528598], [47.370912, 8.510183], [47.409312, 8.546467], [47.36672, 8.541782], [47.381671, 8.546409], [47.326265, 8.515478], [47.349959, 8.527842], [47.392823, 8.526678], [47.366924, 8.544011], [47.358591, 8.551873], [47.422583, 8.507883], [47.37851, 8.510508], [47.376546, 8.50986], [47.407329, 8.568262], [47.369492, 8.506183], [47.355112, 8.559081], [47.335032, 8.541537], [47.366847, 8.534119], [47.371214, 8.523126], [47.356011, 8.553553], [47.387811, 8.490934], [47.364274, 8.551979], [47.379733, 8.543084], [47.372382, 8.534722], [47.360445, 8.56376], [47.409712, 8.549814], [47.376922, 8.544456], [47.364854, 8.554361], [47.379959, 8.522046], [47.413491, 8.553405], [47.381328, 8.538072], [47.351395, 8.532014], [47.402413, 8.499436], [47.402444, 8.535619], [47.410325, 8.537398], [47.386189, 8.540516], [47.414066, 8.521268], [47.409115, 8.545429], [47.367798, 8.54007], [47.355912, 8.535668], [47.358782, 8.525176], [47.380958, 8.538157], [47.33465, 8.52966], [47.382051, 8.544298], [47.382733, 8.57231], [47.381495, 8.513574], [47.384227, 8.497339], [47.352993, 8.524754], [47.410705, 8.550326], [47.374249, 8.544652], [47.364606, 8.554951], [47.364633, 8.554859], [47.36852, 8.499437], [47.335534, 8.518894], [47.355281, 8.530162], [47.370134, 8.548791], [47.364872, 8.532701], [47.407835, 8.572645], [47.383247, 8.506074], [47.393508, 8.500491], [47.372504, 8.545543], [47.383568, 8.549296], [47.409039, 8.547694], [47.389322, 8.487983], [47.407351, 8.544584], [47.406549, 8.575347], [47.382607, 8.545382], [47.357956, 8.505687], [47.406603, 8.549405], [47.392828, 8.52334], [47.360221, 8.579258], [47.346409, 8.564179], [47.364029, 8.528725], [47.372247, 8.535752], [47.357325, 8.558108], [47.373097, 8.550296], [47.344386, 8.526498], [47.361346, 8.512586], [47.380574, 8.526495], [47.378976, 8.528965], [47.377846, 8.54188], [47.377925, 8.497903], [47.389954, 8.476803], [47.374535, 8.54005], [47.407819, 8.547416], [47.385845, 8.517821], [47.369794, 8.538218], [47.343115, 8.530574], [47.377531, 8.543767], [47.402799, 8.49168], [47.362897, 8.56781], [47.383847, 8.48275], [47.384736, 8.531467], [47.384928, 8.538768], [47.397326, 8.531857], [47.361297, 8.525519], [47.364863, 8.545927], [47.426514, 8.553572], [47.356497, 8.534674], [47.379001, 8.542407], [47.398483, 8.538863], [47.420702, 8.507063], [47.396016, 8.526691], [47.368082, 8.541413], [47.362532, 8.533832], [47.377904, 8.496273], [47.417351, 8.538298], [47.373848, 8.536673], [47.371245, 8.530369], [47.370833, 8.534942], [47.370389, 8.539064], [47.356708, 8.523771], [47.366185, 8.49706], [47.378854, 8.542788], [47.395227, 8.521694], [47.392781, 8.523472], [47.378851, 8.489101], [47.400719, 8.54866], [47.390719, 8.517973], [47.391178, 8.538911], [47.400465, 8.548814], [47.374552, 8.560734], [47.365073, 8.492788], [47.343054, 8.531354], [47.408639, 8.542531], [47.352903, 8.512297], [47.361117, 8.525515], [47.413509, 8.553432], [47.383985, 8.531028], [47.400054, 8.501734], [47.382207, 8.505643], [47.376469, 8.525815], [47.372142, 8.505666], [47.37558, 8.54182], [47.373159, 8.531507], [47.350366, 8.578001], [47.392819, 8.475243], [47.373443, 8.53481], [47.366839, 8.5537], [47.368981, 8.529092], [47.399833, 8.544455], [47.409126, 8.531967], [47.397956, 8.533738], [47.37396, 8.516177], [47.36607, 8.53356], [47.38146, 8.503734], [47.366128, 8.494464], [47.3862, 8.527947], [47.413389, 8.553774], [47.363995, 8.546452], [47.358299, 8.571631], [47.417698, 8.546217], [47.377054, 8.521973], [47.392107, 8.511841], [47.354434, 8.574991], [47.373056, 8.539556], [47.399528, 8.542488], [47.338152, 8.538862], [47.406355, 8.584936], [47.367898, 8.539926], [47.416838, 8.538275], [47.381863, 8.516588], [47.388103, 8.488569], [47.379086, 8.556036], [47.381755, 8.516573], [47.41096, 8.526347], [47.370648, 8.519248], [47.390704, 8.491309], [47.366215, 8.520998], [47.376911, 8.51229], [47.388503, 8.491066], [47.381156, 8.537247], [47.387509, 8.528358], [47.377769, 8.537747], [47.407065, 8.484477], [47.366931, 8.544143], [47.381993, 8.5094], [47.376508, 8.5407], [47.363006, 8.550138], [47.404731, 8.540198], [47.388802, 8.484794], [47.38866, 8.535057], [47.3761, 8.533475], [47.343701, 8.535231], [47.399635, 8.536873], [47.348683, 8.525791], [47.368201, 8.496001], [47.393783, 8.501821], [47.384268, 8.525855], [47.408393, 8.546594], [47.393016, 8.485393], [47.397136, 8.594753], [47.388976, 8.515831], [47.403515, 8.497007], [47.397001, 8.480305], [47.407737, 8.580765], [47.382098, 8.505786], [47.375525, 8.486891], [47.377157, 8.55924], [47.366865, 8.542659], [47.430764, 8.550386], [47.411618, 8.512751], [47.419608, 8.507664], [47.410247, 8.541835], [47.385257, 8.47593], [47.404983, 8.491922], [47.343329, 8.519369], [47.370244, 8.532533], [47.39885, 8.510295], [47.377485, 8.542058], [47.354704, 8.529355], [47.335426, 8.518878], [47.370805, 8.548262], [47.370299, 8.532429], [47.369849, 8.515273], [47.381083, 8.518201], [47.362759, 8.548677], [47.382689, 8.572176], [47.373614, 8.494255], [47.430271, 8.536935], [47.392811, 8.524188], [47.373257, 8.552405], [47.389801, 8.539995], [47.389744, 8.537398], [47.391302, 8.538198], [47.370808, 8.524296], [47.360543, 8.561128], [47.37321, 8.5039], [47.370972, 8.535475], [47.387067, 8.547462], [47.390058, 8.5098], [47.397478, 8.509803], [47.369494, 8.526202], [47.367174, 8.493161], [47.381588, 8.537203], [47.368735, 8.524744], [47.358278, 8.597379], [47.405439, 8.570249], [47.408088, 8.54464], [47.358643, 8.596844], [47.414887, 8.561584], [47.369877, 8.508388], [47.365116, 8.567195], [47.392344, 8.5077], [47.365686, 8.521809], [47.411142, 8.526178], [47.40896, 8.545625], [47.40896, 8.545625], [47.381847, 8.536453], [47.37141, 8.547944], [47.372354, 8.531094], [47.398506, 8.47905], [47.407248, 8.538395], [47.403991, 8.496076], [47.374513, 8.53956], [47.371765, 8.547527], [47.399609, 8.535773], [47.374443, 8.521285], [47.373693, 8.535915], [47.389173, 8.494524], [47.399934, 8.543251], [47.36336, 8.562802], [47.364612, 8.531677], [47.368639, 8.529137], [47.378659, 8.542519], [47.383271, 8.510233], [47.368157, 8.496822], [47.385898, 8.54553], [47.391107, 8.469527], [47.393335, 8.497692], [47.393185, 8.528342], [47.365276, 8.547035], [47.413339, 8.545822], [47.391406, 8.545181], [47.370535, 8.524635], [47.346448, 8.529173], [47.393274, 8.508288], [47.3972, 8.594675], [47.406701, 8.550441], [47.377077, 8.544221], [47.36941, 8.543572], [47.389136, 8.52753], [47.387139, 8.490655], [47.372911, 8.535885], [47.37538, 8.560699], [47.361818, 8.549253], [47.386188, 8.540529], [47.365391, 8.521591], [47.385891, 8.532047], [47.39853, 8.59118], [47.350026, 8.562151], [47.398848, 8.506638], [47.391908, 8.517811], [47.368759, 8.528809], [47.36489, 8.530888], [47.390929, 8.55088], [47.409927, 8.574823], [47.369574, 8.513877], [47.365955, 8.532353], [47.397791, 8.530251], [47.410446, 8.550161], [47.373326, 8.529088], [47.384425, 8.503197], [47.362444, 8.567271], [47.388642, 8.483678], [47.410868, 8.53517], [47.386453, 8.518244], [47.37728, 8.54837], [47.378468, 8.528465], [47.377227, 8.546409], [47.407706, 8.535688], [47.365433, 8.545582], [47.411688, 8.511971], [47.371561, 8.515916], [47.363646, 8.551899], [47.374403, 8.5787], [47.428163, 8.547721], [47.363262, 8.533661], [47.386861, 8.528411], [47.378733, 8.567364], [47.426533, 8.546945], [47.355269, 8.600477], [47.389728, 8.512323], [47.381638, 8.509829], [47.402502, 8.581687], [47.363758, 8.535419], [47.391516, 8.505723], [47.391389, 8.538491], [47.363105, 8.548208], [47.363675, 8.574751], [47.385031, 8.508639], [47.367729, 8.560352], [47.368612, 8.53103], [47.395775, 8.532197], [47.39194, 8.518183], [47.369159, 8.565824], [47.358609, 8.532004], [47.379213, 8.51137], [47.369478, 8.506778], [47.367609, 8.563382], [47.370024, 8.524373], [47.367469, 8.494345], [47.412118, 8.52474], [47.404341, 8.561004], [47.385379, 8.536778], [47.376459, 8.539203], [47.396826, 8.540948], [47.398031, 8.532389], [47.409651, 8.543903], [47.357633, 8.554117], [47.391921, 8.518315], [47.370287, 8.511654], [47.38532, 8.508526], [47.373549, 8.519757], [47.398645, 8.585062], [47.365445, 8.521632], [47.394151, 8.520347], [47.374139, 8.542929], [47.385248, 8.517213], [47.383021, 8.514877], [47.414609, 8.546604], [47.431206, 8.539831], [47.387985, 8.536063], [47.36901, 8.54122], [47.372727, 8.521064], [47.398077, 8.536099], [47.383414, 8.530499], [47.370859, 8.535022], [47.375558, 8.516474], [47.374362, 8.524183], [47.363779, 8.575163], [47.390703, 8.489454], [47.392022, 8.52392], [47.376756, 8.560741], [47.379295, 8.495639], [47.420857, 8.507795], [47.388127, 8.484887], [47.37868, 8.530839], [47.369318, 8.525802], [47.373158, 8.53454], [47.386976, 8.498665], [47.388095, 8.485429], [47.395388, 8.532295], [47.371485, 8.547667], [47.369933, 8.510071], [47.413754, 8.545672], [47.408834, 8.542813], [47.361502, 8.561453], [47.39706, 8.530501], [47.364324, 8.529791], [47.406432, 8.552277], [47.388956, 8.538984], [47.373444, 8.545033], [47.383576, 8.496691], [47.371284, 8.547041], [47.374735, 8.553972], [47.388596, 8.538937], [47.40526, 8.555286], [47.365744, 8.552605], [47.369907, 8.556453], [47.374584, 8.525459], [47.371252, 8.542935], [47.366584, 8.540998], [47.371626, 8.518526], [47.375352, 8.549668], [47.410721, 8.554341], [47.377196, 8.540238], [47.386797, 8.535151], [47.417038, 8.541844], [47.397797, 8.53241], [47.365343, 8.545646], [47.355988, 8.524736], [47.378164, 8.557486], [47.351675, 8.525283], [47.355921, 8.535681], [47.351474, 8.525597], [47.370379, 8.524896], [47.405816, 8.591218], [47.333066, 8.514411], [47.379045, 8.527377], [47.356397, 8.535757], [47.402966, 8.576543], [47.377524, 8.558559], [47.376987, 8.543332], [47.405964, 8.533479], [47.363661, 8.562359], [47.385051, 8.536241], [47.40712, 8.586715], [47.368568, 8.529004], [47.375402, 8.484518], [47.401561, 8.487323], [47.377512, 8.541979], [47.368842, 8.528652], [47.406218, 8.581581], [47.413366, 8.553363], [47.383701, 8.539101], [47.388296, 8.490996], [47.391409, 8.536385], [47.362988, 8.563126], [47.398605, 8.465936], [47.394719, 8.527896], [47.344571, 8.529784], [47.373582, 8.53439], [47.387477, 8.519391], [47.386407, 8.496932], [47.360454, 8.522444], [47.325616, 8.518574], [47.379354, 8.542176], [47.400447, 8.469178], [47.359694, 8.550294], [47.389615, 8.491433], [47.375635, 8.516979], [47.414344, 8.538501], [47.376438, 8.528185], [47.382197, 8.540301], [47.343296, 8.519977], [47.363514, 8.535586], [47.355711, 8.531269], [47.378924, 8.55978], [47.382705, 8.529412], [47.378761, 8.575536], [47.409234, 8.547101], [47.370188, 8.548818], [47.370161, 8.548805], [47.418268, 8.542068], [47.390647, 8.489665], [47.379989, 8.494461], [47.37771, 8.541957], [47.400224, 8.547696], [47.390763, 8.521974], [47.367621, 8.538755], [47.380118, 8.522367], [47.399263, 8.506541], [47.377549, 8.543781], [47.380451, 8.51946], [47.388486, 8.519159], [47.411692, 8.57009], [47.407094, 8.573941], [47.373575, 8.519784], [47.407028, 8.550156], [47.375312, 8.560327], [47.409845, 8.537799], [47.375695, 8.5354], [47.365099, 8.553214], [47.381378, 8.537477], [47.378786, 8.527213], [47.383467, 8.515349], [47.329891, 8.529735], [47.389731, 8.481554], [47.386971, 8.534903], [47.406912, 8.586883], [47.409719, 8.544355], [47.395597, 8.545228], [47.403861, 8.49655], [47.401096, 8.488043], [47.370125, 8.548791], [47.391034, 8.52084], [47.393803, 8.505477], [47.375881, 8.523327], [47.375688, 8.514133], [47.38048, 8.481042], [47.374429, 8.539836], [47.388356, 8.484428], [47.382964, 8.562435], [47.378253, 8.52168], [47.391538, 8.542693], [47.365964, 8.532326], [47.387699, 8.517713], [47.395543, 8.475442], [47.399188, 8.547926], [47.371324, 8.555953], [47.399407, 8.497707], [47.405824, 8.550038], [47.388801, 8.515298], [47.366328, 8.561951], [47.399689, 8.517797], [47.381242, 8.555406], [47.375535, 8.564211], [47.406205, 8.562673], [47.380663, 8.512088], [47.360504, 8.550285], [47.362463, 8.510543], [47.371656, 8.531649], [47.392931, 8.489803], [47.369135, 8.502984], [47.402978, 8.490809], [47.369374, 8.541758], [47.39997, 8.587581], [47.400439, 8.500881], [47.385271, 8.529186], [47.394921, 8.524602], [47.358428, 8.588671], [47.417364, 8.511966], [47.368905, 8.496704], [47.383384, 8.484198], [47.370097, 8.548936], [47.409712, 8.545137], [47.392378, 8.491183], [47.375887, 8.55389], [47.418061, 8.505645], [47.398962, 8.505978], [47.399812, 8.510341], [47.414884, 8.550704], [47.387421, 8.497244], [47.377078, 8.525139], [47.372472, 8.517511], [47.362751, 8.568032], [47.408363, 8.541266], [47.366741, 8.541491], [47.364187, 8.566553], [47.431248, 8.516368], [47.357206, 8.550891], [47.386466, 8.497423], [47.379919, 8.514708], [47.378201, 8.541411], [47.410052, 8.574905], [47.329909, 8.529748], [47.387805, 8.548272], [47.383993, 8.480475], [47.377069, 8.538461], [47.410675, 8.552564], [47.37748, 8.499337], [47.371388, 8.537165], [47.372606, 8.517646], [47.38148, 8.556828], [47.369032, 8.53795], [47.357528, 8.521669], [47.369402, 8.554747], [47.389612, 8.483803], [47.366364, 8.54049], [47.364647, 8.566431], [47.374969, 8.541741], [47.365808, 8.520262], [47.377314, 8.498765], [47.403739, 8.556301], [47.378454, 8.540356], [47.371668, 8.534138], [47.395262, 8.508236], [47.369889, 8.525336], [47.369104, 8.540825], [47.354862, 8.526857], [47.353219, 8.512144], [47.374546, 8.495584], [47.406907, 8.550538], [47.362176, 8.547526], [47.376002, 8.541921], [47.382712, 8.5007], [47.377371, 8.522748], [47.383415, 8.533228], [47.376621, 8.49397], [47.381856, 8.51631], [47.427361, 8.491039], [47.349171, 8.570551], [47.386814, 8.547496], [47.38869, 8.492196], [47.37443, 8.539783], [47.362685, 8.497163], [47.383154, 8.515052], [47.383984, 8.482461], [47.379652, 8.490018], [47.368603, 8.499253], [47.386175, 8.518119], [47.409123, 8.545549], [47.35361, 8.554337], [47.369313, 8.527298], [47.374352, 8.536604], [47.412888, 8.540287], [47.378803, 8.519612], [47.376802, 8.524868], [47.362054, 8.549046], [47.413834, 8.544865], [47.367922, 8.540284], [47.370749, 8.535285], [47.376229, 8.544508], [47.381237, 8.546599], [47.390467, 8.545612], [47.40548, 8.575192], [47.412891, 8.543732], [47.405126, 8.577384], [47.404501, 8.576867], [47.384173, 8.508993], [47.376381, 8.527548], [47.373663, 8.534365], [47.363642, 8.567071], [47.361246, 8.532865], [47.370448, 8.535676], [47.383943, 8.509518], [47.403047, 8.589303], [47.338285, 8.539116], [47.387521, 8.519497], [47.365425, 8.545568], [47.373411, 8.520019], [47.408447, 8.546674], [47.370268, 8.506887], [47.385835, 8.51798], [47.376938, 8.540881], [47.380061, 8.520723], [47.353599, 8.56482], [47.391943, 8.517892], [47.371716, 8.542322], [47.402433, 8.499278], [47.373456, 8.494782], [47.371222, 8.524185], [47.364926, 8.508766], [47.371086, 8.54987], [47.38573, 8.51766], [47.39245, 8.548858], [47.3772, 8.53988], [47.355675, 8.532235], [47.369858, 8.56425], [47.367038, 8.523372], [47.377255, 8.539696], [47.369163, 8.523137], [47.368368, 8.513892], [47.368964, 8.556367], [47.380957, 8.537322], [47.375754, 8.543386], [47.408983, 8.553509], [47.343331, 8.520044], [47.393102, 8.48876], [47.397059, 8.530594], [47.428008, 8.490111], [47.394726, 8.486195], [47.341108, 8.530705], [47.405031, 8.48763], [47.382646, 8.537503], [47.419208, 8.548223], [47.376083, 8.529555], [47.399587, 8.547563], [47.423125, 8.551473], [47.366859, 8.543268], [47.385612, 8.536889], [47.405694, 8.480966], [47.418434, 8.508197], [47.378699, 8.519239], [47.367812, 8.506996], [47.399247, 8.521789], [47.417521, 8.518277], [47.392646, 8.486446], [47.365745, 8.532693], [47.364258, 8.533006], [47.398915, 8.499406], [47.367807, 8.540017], [47.377856, 8.519884], [47.428773, 8.489105], [47.381218, 8.541036], [47.374728, 8.534016], [47.377202, 8.541509], [47.381442, 8.51352], [47.349604, 8.534003], [47.383522, 8.530568], [47.390962, 8.522759], [47.408923, 8.54577], [47.378758, 8.494383], [47.381474, 8.535889], [47.393104, 8.524525], [47.370024, 8.51186], [47.42052, 8.498458], [47.371822, 8.533996], [47.376995, 8.483503], [47.380288, 8.505962], [47.37687, 8.54329], [47.356695, 8.506853], [47.368097, 8.49551], [47.374754, 8.536016], [47.382424, 8.529684], [47.416897, 8.545286], [47.354777, 8.555579], [47.40886, 8.545755], [47.377312, 8.541339], [47.370042, 8.519633], [47.366976, 8.516618], [47.373888, 8.544738], [47.388795, 8.522689], [47.414092, 8.548886], [47.375735, 8.549093], [47.369141, 8.512981], [47.421724, 8.550304], [47.381076, 8.535232], [47.372279, 8.532297], [47.419304, 8.506452], [47.362359, 8.561206], [47.392168, 8.498411], [47.339983, 8.529875], [47.369257, 8.525628], [47.378116, 8.527663], [47.388144, 8.536371], [47.38012, 8.527889], [47.396996, 8.51239], [47.377752, 8.53764], [47.380357, 8.493634], [47.369869, 8.559444], [47.361657, 8.52644], [47.367163, 8.534893], [47.376404, 8.561806], [47.368515, 8.54787], [47.395423, 8.508305], [47.378636, 8.523038], [47.390644, 8.492009], [47.334891, 8.528924], [47.391032, 8.523026], [47.392961, 8.474544], [47.425504, 8.553816], [47.397002, 8.480292], [47.384016, 8.532459], [47.377162, 8.540078], [47.371, 8.531582], [47.380179, 8.483446], [47.354251, 8.557819], [47.378014, 8.527939], [47.370047, 8.544724], [47.389176, 8.517584], [47.391121, 8.523094], [47.356654, 8.523783], [47.383453, 8.548154], [47.423524, 8.546471], [47.365778, 8.535911], [47.404068, 8.588769], [47.336484, 8.518304], [47.386224, 8.532107], [47.377634, 8.508054], [47.402452, 8.553598], [47.401244, 8.550194], [47.39241, 8.523716], [47.375535, 8.53047], [47.397447, 8.502504], [47.39999, 8.494963], [47.387426, 8.527654], [47.420604, 8.548942], [47.377553, 8.538709], [47.382038, 8.515148], [47.418278, 8.520055], [47.351084, 8.534457], [47.367695, 8.561994], [47.364276, 8.531127], [47.386104, 8.517985], [47.399031, 8.475682], [47.37659, 8.554699], [47.373932, 8.531576], [47.378434, 8.541548], [47.378147, 8.509905], [47.410728, 8.545171], [47.406342, 8.552222], [47.405288, 8.551524], [47.41427, 8.561227], [47.379649, 8.52053], [47.36612, 8.536752], [47.396338, 8.527823], [47.374992, 8.515509], [47.361792, 8.560307], [47.396206, 8.527569], [47.376487, 8.525802], [47.356856, 8.535767], [47.39499, 8.51235], [47.373326, 8.504008], [47.366824, 8.543161], [47.419732, 8.547943], [47.381881, 8.530031], [47.367698, 8.494946], [47.390687, 8.53947], [47.387403, 8.497257], [47.394853, 8.52317], [47.413958, 8.563738], [47.394619, 8.488074], [47.394741, 8.525512], [47.381313, 8.491362], [47.366376, 8.547653], [47.415329, 8.528596], [47.385747, 8.482536], [47.413973, 8.549108], [47.359626, 8.522414], [47.368533, 8.520317], [47.375473, 8.544559], [47.363579, 8.535349], [47.377264, 8.538769], [47.399124, 8.507916], [47.363731, 8.535458], [47.385838, 8.519529], [47.365365, 8.560104], [47.363631, 8.557089], [47.390848, 8.478357], [47.381317, 8.541025], [47.409518, 8.549373], [47.383116, 8.572622], [47.39285, 8.474806], [47.402159, 8.496715], [47.368821, 8.532756], [47.357799, 8.525448], [47.419197, 8.506397], [47.405252, 8.555273], [47.37397, 8.536185], [47.380333, 8.500189], [47.360792, 8.522808], [47.366434, 8.540611], [47.37732, 8.543312], [47.370916, 8.563717], [47.375787, 8.544592], [47.39108, 8.545412], [47.36816, 8.541759], [47.376988, 8.49803], [47.370828, 8.543006], [47.397926, 8.534069], [47.38994, 8.476406], [47.366953, 8.52292], [47.374282, 8.524976], [47.376733, 8.535037], [47.377531, 8.511296], [47.398285, 8.536898], [47.406581, 8.527132], [47.354534, 8.552795], [47.391596, 8.538522], [47.357423, 8.521376], [47.373988, 8.546514], [47.36838, 8.498044], [47.378741, 8.530973], [47.339134, 8.525477], [47.414707, 8.546725], [47.376017, 8.535645], [47.366163, 8.548245], [47.376115, 8.535647], [47.374618, 8.541734], [47.373359, 8.518839], [47.372994, 8.528088], [47.420699, 8.502504], [47.395358, 8.525922], [47.332319, 8.529811], [47.370804, 8.546474], [47.40876, 8.483106], [47.393503, 8.512638], [47.403989, 8.569516], [47.402723, 8.545058], [47.373069, 8.538179], [47.37865, 8.542479], [47.428221, 8.49042], [47.374787, 8.52394], [47.416864, 8.514474], [47.366019, 8.519803], [47.382082, 8.505614], [47.370188, 8.511652], [47.412196, 8.542181], [47.423831, 8.516841], [47.369647, 8.467364], [47.370122, 8.564018], [47.392942, 8.548246], [47.373139, 8.544034], [47.400397, 8.506404], [47.401313, 8.534457], [47.397654, 8.533321], [47.363195, 8.527504], [47.384018, 8.548338], [47.372138, 8.512856], [47.324769, 8.519602], [47.377728, 8.50946], [47.376914, 8.541556], [47.381151, 8.504072], [47.366951, 8.543932], [47.39615, 8.531621], [47.38599, 8.518685], [47.360114, 8.530856], [47.374796, 8.527794], [47.431365, 8.516265], [47.371214, 8.523218], [47.383486, 8.496689], [47.42811, 8.545678], [47.361089, 8.589748], [47.408544, 8.550598], [47.367947, 8.540483], [47.392727, 8.523537], [47.370134, 8.548817], [47.382988, 8.529948], [47.361568, 8.517714], [47.370407, 8.511352], [47.386058, 8.535322], [47.393931, 8.505255], [47.376186, 8.488413], [47.353797, 8.553626], [47.380042, 8.547408], [47.365056, 8.553928], [47.375493, 8.543407], [47.419089, 8.546511], [47.373147, 8.524224], [47.416084, 8.5522], [47.421613, 8.507731], [47.359137, 8.596907], [47.383863, 8.529687], [47.37718, 8.52673], [47.375471, 8.528628], [47.392378, 8.491183], [47.370735, 8.524334], [47.404719, 8.534831], [47.387187, 8.539583], [47.387826, 8.517636], [47.393335, 8.492857], [47.352223, 8.52536], [47.368735, 8.545518], [47.380027, 8.520537], [47.363758, 8.535432], [47.365834, 8.533701], [47.370224, 8.548819], [47.367099, 8.539777], [47.370392, 8.522526], [47.370059, 8.562136], [47.376767, 8.535223], [47.372796, 8.517491], [47.406907, 8.550538], [47.395188, 8.525866], [47.390007, 8.525839], [47.398924, 8.538819], [47.364417, 8.557741], [47.369154, 8.527983], [47.373913, 8.538303], [47.407468, 8.548376], [47.36949, 8.548367], [47.373856, 8.514824], [47.386609, 8.497466], [47.383348, 8.527955], [47.400245, 8.543616], [47.379866, 8.524308], [47.359259, 8.56915], [47.374334, 8.524262], [47.366479, 8.545325], [47.369671, 8.525557], [47.374315, 8.521467], [47.353096, 8.556418], [47.353096, 8.556405], [47.40384, 8.568201], [47.36283, 8.558105], [47.351478, 8.531857], [47.40639, 8.481522], [47.39217, 8.541541], [47.376851, 8.544309], [47.423713, 8.544633], [47.389633, 8.511924], [47.393743, 8.50231], [47.391045, 8.522549], [47.377339, 8.53938], [47.37297, 8.536271], [47.382307, 8.514346], [47.368934, 8.501405], [47.386474, 8.496483], [47.377265, 8.538703], [47.370769, 8.535086], [47.356821, 8.557211], [47.361363, 8.576608], [47.410867, 8.550355], [47.392052, 8.517775], [47.363723, 8.56706], [47.378656, 8.539963], [47.351314, 8.576738], [47.382556, 8.514602], [47.335643, 8.540703], [47.352406, 8.562558], [47.403836, 8.576866], [47.384412, 8.539115], [47.363609, 8.535045], [47.386357, 8.482627], [47.368874, 8.529023], [47.380052, 8.536893], [47.372676, 8.534106], [47.365627, 8.539482], [47.367468, 8.550059], [47.399636, 8.585851], [47.374849, 8.541116], [47.428273, 8.489665], [47.395072, 8.525757], [47.410653, 8.485594], [47.389544, 8.477365], [47.386242, 8.498306], [47.354278, 8.553239], [47.353989, 8.553326], [47.379226, 8.539578], [47.375591, 8.54815], [47.38939, 8.521628], [47.356663, 8.523743], [47.404303, 8.576863], [47.374291, 8.544018], [47.370085, 8.564123], [47.410537, 8.543458], [47.35761, 8.521631], [47.378775, 8.526471], [47.377996, 8.526071], [47.370228, 8.536135], [47.388418, 8.52639], [47.389201, 8.546221], [47.359721, 8.558675], [47.3906, 8.491863], [47.359067, 8.596734], [47.373281, 8.52432], [47.374496, 8.527125], [47.34417, 8.535095], [47.40258, 8.553428], [47.428811, 8.488894], [47.357499, 8.571628], [47.377423, 8.539103], [47.375014, 8.538882], [47.411442, 8.544736], [47.379672, 8.527668], [47.371296, 8.523074], [47.394829, 8.525726], [47.36063, 8.521851], [47.35484, 8.601156], [47.381373, 8.54084], [47.353338, 8.576715], [47.370632, 8.524835], [47.390145, 8.547287], [47.383235, 8.515133], [47.374031, 8.544794], [47.379689, 8.494839], [47.384568, 8.533119], [47.40367, 8.486928], [47.39875, 8.506504], [47.403839, 8.486176], [47.373798, 8.533361], [47.370887, 8.514883], [47.385195, 8.548495], [47.35481, 8.534295], [47.397317, 8.531804], [47.379566, 8.521746], [47.387994, 8.488593], [47.357, 8.535704], [47.347369, 8.52591], [47.379002, 8.542341], [47.375828, 8.492127], [47.392699, 8.523616], [47.382886, 8.500332], [47.389755, 8.486866], [47.369871, 8.530169], [47.357918, 8.519493], [47.369871, 8.543436], [47.348468, 8.534324], [47.381827, 8.516601], [47.391196, 8.522764], [47.374366, 8.521786], [47.373781, 8.536115], [47.42022, 8.547754], [47.378217, 8.530327], [47.37471, 8.550012], [47.359459, 8.523932], [47.365454, 8.521605], [47.374396, 8.541504], [47.365267, 8.564617], [47.396201, 8.482303], [47.418037, 8.482705], [47.3898, 8.486827], [47.369533, 8.520139], [47.417197, 8.554331], [47.382477, 8.514415], [47.407024, 8.550593], [47.41665, 8.535355], [47.406961, 8.550565], [47.36435, 8.55533], [47.367218, 8.534841], [47.379535, 8.524037], [47.388588, 8.525612], [47.367099, 8.539791], [47.37683, 8.526643], [47.366953, 8.52292], [47.352352, 8.570883], [47.344233, 8.535084], [47.400236, 8.543642], [47.430904, 8.544133], [47.402728, 8.535135], [47.390922, 8.527037], [47.359758, 8.549276], [47.383425, 8.54822], [47.391639, 8.513898], [47.421179, 8.548066], [47.421265, 8.549419], [47.390654, 8.544781], [47.363581, 8.53515], [47.361984, 8.5507], [47.374851, 8.504515], [47.345306, 8.535701], [47.414044, 8.545426], [47.384313, 8.50746], [47.380082, 8.520446], [47.416789, 8.536776], [47.373584, 8.519811], [47.368082, 8.541387], [47.366531, 8.540904], [47.395956, 8.532147], [47.388232, 8.514598], [47.373487, 8.598424], [47.388731, 8.516992], [47.372438, 8.515431], [47.37876, 8.539383], [47.360576, 8.525716], [47.40522, 8.559433], [47.355147, 8.527207], [47.378889, 8.527732], [47.379614, 8.537626], [47.388766, 8.539046], [47.399721, 8.547645], [47.377686, 8.531309], [47.381662, 8.534066], [47.364296, 8.566463], [47.408145, 8.555599], [47.417375, 8.523297], [47.381627, 8.534038], [47.383332, 8.533464], [47.355721, 8.559359], [47.389847, 8.51214], [47.393793, 8.533547], [47.377042, 8.529045], [47.391097, 8.522749], [47.367074, 8.541405], [47.40007, 8.536511], [47.359313, 8.516463], [47.408767, 8.57941], [47.378797, 8.523161], [47.390966, 8.488214], [47.401813, 8.500153], [47.37592, 8.542012], [47.36766, 8.495157], [47.408759, 8.580231], [47.399025, 8.542385], [47.382229, 8.501339], [47.389898, 8.491981], [47.396871, 8.493683], [47.375329, 8.552991], [47.379272, 8.542293], [47.377235, 8.510244], [47.3525, 8.508185], [47.399277, 8.521471], [47.378554, 8.514522], [47.38534, 8.539876], [47.418967, 8.53095], [47.366086, 8.540405], [47.409366, 8.478732], [47.407387, 8.549263], [47.381549, 8.492081], [47.427032, 8.491616], [47.371586, 8.526669], [47.399661, 8.516909], [47.354307, 8.523682], [47.33959, 8.524759], [47.35135, 8.525395], [47.348936, 8.534307], [47.368388, 8.538546], [47.381717, 8.531114], [47.343093, 8.535748], [47.378482, 8.540264], [47.370425, 8.514199], [47.387323, 8.488196], [47.353358, 8.554372], [47.375456, 8.554768], [47.38446, 8.503224], [47.366891, 8.544606], [47.397125, 8.505266], [47.36526, 8.501808], [47.366279, 8.533313], [47.356479, 8.53568], [47.39354, 8.492968], [47.380198, 8.520528], [47.39018, 8.51016], [47.382447, 8.51468], [47.372609, 8.538263], [47.379048, 8.54511], [47.414031, 8.546817], [47.373599, 8.544891], [47.389896, 8.49214], [47.373848, 8.519538], [47.383985, 8.531028], [47.3674, 8.5356], [47.387097, 8.52631], [47.37748, 8.512924], [47.385481, 8.4751], [47.374709, 8.541683], [47.393027, 8.531796], [47.401087, 8.488056], [47.368051, 8.538976], [47.379812, 8.523327], [47.391699, 8.518973], [47.38698, 8.534877], [47.412582, 8.544998], [47.399402, 8.497296], [47.383929, 8.508154], [47.387966, 8.536156], [47.358972, 8.516417], [47.357292, 8.555923], [47.369163, 8.527943], [47.37113, 8.523508], [47.417725, 8.546152], [47.358472, 8.521768], [47.363648, 8.574724], [47.36896, 8.538015], [47.411339, 8.544243], [47.385678, 8.49309], [47.343379, 8.530249], [47.369871, 8.51387], [47.397275, 8.493757], [47.405552, 8.495524], [47.379418, 8.55991], [47.393493, 8.532865], [47.404351, 8.560978], [47.366131, 8.533773], [47.411472, 8.525509], [47.377594, 8.559673], [47.371478, 8.524747], [47.380861, 8.552087], [47.407552, 8.584869], [47.416558, 8.555258], [47.35116, 8.57684], [47.380767, 8.500833], [47.348876, 8.562007], [47.421229, 8.507471], [47.3656, 8.539429], [47.384796, 8.531786], [47.384986, 8.537405], [47.363694, 8.528904], [47.369106, 8.541553], [47.377323, 8.521131], [47.380258, 8.541784], [47.398603, 8.472189], [47.384944, 8.548424], [47.360644, 8.576526], [47.367954, 8.546296], [47.373326, 8.525301], [47.37774, 8.52551], [47.337411, 8.519197], [47.377202, 8.552739], [47.36929, 8.517261], [47.377787, 8.537747], [47.356048, 8.535565], [47.376983, 8.54655], [47.378527, 8.575518], [47.388526, 8.531147], [47.410347, 8.548264], [47.356362, 8.535637], [47.366549, 8.540891], [47.385095, 8.508508], [47.369855, 8.510678], [47.410339, 8.548211], [47.364676, 8.554185], [47.386245, 8.531736], [47.386209, 8.531696], [47.377505, 8.543727], [47.373651, 8.536549], [47.363126, 8.54695], [47.366941, 8.543111], [47.394751, 8.525433], [47.376138, 8.53615], [47.394663, 8.473226], [47.386408, 8.518256], [47.395052, 8.51149], [47.374432, 8.521443], [47.39866, 8.539184], [47.36574, 8.521796], [47.36468, 8.554675], [47.351737, 8.559222], [47.377794, 8.537946], [47.375031, 8.547489], [47.367828, 8.551973], [47.407714, 8.550806], [47.373938, 8.503001], [47.360544, 8.524272], [47.376872, 8.548706], [47.387771, 8.529224], [47.404577, 8.59457], [47.397527, 8.532458], [47.377001, 8.546563], [47.380637, 8.542613], [47.367363, 8.506842], [47.404556, 8.569422], [47.354099, 8.575301], [47.426315, 8.547112], [47.404708, 8.556626], [47.386378, 8.480296], [47.356389, 8.535638], [47.378221, 8.510635], [47.413943, 8.557867], [47.376106, 8.53566], [47.393356, 8.524543], [47.418579, 8.547163], [47.380384, 8.542701], [47.394585, 8.534424], [47.424797, 8.537485], [47.37797, 8.527925], [47.363326, 8.53357], [47.374493, 8.538844], [47.378235, 8.541689], [47.377478, 8.529517], [47.360432, 8.526653], [47.388192, 8.532266], [47.382506, 8.48275], [47.405449, 8.539417], [47.371342, 8.555979], [47.357023, 8.572491], [47.41004, 8.53241], [47.365098, 8.55332], [47.414134, 8.518805], [47.405387, 8.504716], [47.380478, 8.537577], [47.394672, 8.473239], [47.39225, 8.524521], [47.368942, 8.528482], [47.377356, 8.51855], [47.364012, 8.536192], [47.421458, 8.505064], [47.377958, 8.525316], [47.367038, 8.523359], [47.387827, 8.49802], [47.390231, 8.512453], [47.375482, 8.564104], [47.382994, 8.530186], [47.36293, 8.517331], [47.37589, 8.538529], [47.372537, 8.538327], [47.364663, 8.547168], [47.374574, 8.536952], [47.392686, 8.475068], [47.414271, 8.518649], [47.369516, 8.513306], [47.390014, 8.484076], [47.384391, 8.531897], [47.414821, 8.519402], [47.377749, 8.548301], [47.420606, 8.50282], [47.37937, 8.53774], [47.371543, 8.515837], [47.38715, 8.534986], [47.375139, 8.545571], [47.375338, 8.49654], [47.32906, 8.513867], [47.376083, 8.527714], [47.386158, 8.535271], [47.403763, 8.534149], [47.368188, 8.531154], [47.366654, 8.553392], [47.41169, 8.525262], [47.37405, 8.517145], [47.37042, 8.508028], [47.373137, 8.53295], [47.364622, 8.566218], [47.409575, 8.537767], [47.368536, 8.546546], [47.382494, 8.529832], [47.368477, 8.5292], [47.357129, 8.555152], [47.399431, 8.495124], [47.378622, 8.542532], [47.396676, 8.529261], [47.369421, 8.53392], [47.408676, 8.540518], [47.362333, 8.547146], [47.386288, 8.517552], [47.417426, 8.553911], [47.404932, 8.552948], [47.430745, 8.550399], [47.402387, 8.49933], [47.369681, 8.525518], [47.407634, 8.538495], [47.37636, 8.525958], [47.367254, 8.541409], [47.403192, 8.497955], [47.398203, 8.535174], [47.376902, 8.541807], [47.407917, 8.547498], [47.374429, 8.540803], [47.400118, 8.545693], [47.374262, 8.533847], [47.363462, 8.569835], [47.37163, 8.547604], [47.37438, 8.527004], [47.374473, 8.495649], [47.430319, 8.549887], [47.383544, 8.543362], [47.370862, 8.537538], [47.387601, 8.540519], [47.409915, 8.47971], [47.373762, 8.537187], [47.369031, 8.540943], [47.364987, 8.563856], [47.373813, 8.536553], [47.422332, 8.550674], [47.390499, 8.512657], [47.403837, 8.536761], [47.379056, 8.542302], [47.387117, 8.545939], [47.375133, 8.51579], [47.374126, 8.503137], [47.352466, 8.507986], [47.38131, 8.51026], [47.417305, 8.509659], [47.399815, 8.544428], [47.380788, 8.538074], [47.413822, 8.531971], [47.367929, 8.546084], [47.361277, 8.535249], [47.408354, 8.550647], [47.377583, 8.550522], [47.378376, 8.545705], [47.365359, 8.530672], [47.383858, 8.529237], [47.42554, 8.55102], [47.361161, 8.550246], [47.420462, 8.547799], [47.365361, 8.5305], [47.411496, 8.526782], [47.364176, 8.546337], [47.368135, 8.544367], [47.388379, 8.536283], [47.369534, 8.466899], [47.362641, 8.527029], [47.399856, 8.504671], [47.359361, 8.569748], [47.373978, 8.517104], [47.373334, 8.534914], [47.358402, 8.583984], [47.389435, 8.521536], [47.394794, 8.490661], [47.377872, 8.529644], [47.37002, 8.520056], [47.358159, 8.553665], [47.391388, 8.54518], [47.367549, 8.496465], [47.403235, 8.582153], [47.421375, 8.502372], [47.36827, 8.560218], [47.362522, 8.547189], [47.367695, 8.496243], [47.365526, 8.556546], [47.351474, 8.534174], [47.377996, 8.517477], [47.377491, 8.483327], [47.375815, 8.538819], [47.377224, 8.540198], [47.327078, 8.519014], [47.392827, 8.488397], [47.39672, 8.517829], [47.401765, 8.500443], [47.425716, 8.509589], [47.3875, 8.486583], [47.408928, 8.539569], [47.379244, 8.526269], [47.381764, 8.545166], [47.378849, 8.553568], [47.410845, 8.545094], [47.378307, 8.530342], [47.369248, 8.525588], [47.371433, 8.510313], [47.369306, 8.538486], [47.400143, 8.489932], [47.364121, 8.547355], [47.346299, 8.534385], [47.39318, 8.479118], [47.376672, 8.525289], [47.388426, 8.528443], [47.377124, 8.540223], [47.391085, 8.523067], [47.373567, 8.519757], [47.406903, 8.580496], [47.377663, 8.522317], [47.37861, 8.480939], [47.377193, 8.543363], [47.367611, 8.523675], [47.372436, 8.521376], [47.3892, 8.516935], [47.36659, 8.510705], [47.394811, 8.54088], [47.374597, 8.517289], [47.374942, 8.536986], [47.400785, 8.48858], [47.370211, 8.522668], [47.349266, 8.564477], [47.353075, 8.556642], [47.397992, 8.474151], [47.371067, 8.53876], [47.35219, 8.557987], [47.365636, 8.539469], [47.375932, 8.544528], [47.36607, 8.533507], [47.380002, 8.522219], [47.414339, 8.551236], [47.373862, 8.538037], [47.38385, 8.511834], [47.355356, 8.529806], [47.384868, 8.53184], [47.393776, 8.539057], [47.375032, 8.541769], [47.366844, 8.545783], [47.405717, 8.577595], [47.340171, 8.529918], [47.374433, 8.51853], [47.379248, 8.520137], [47.359702, 8.586236], [47.374956, 8.545938], [47.383769, 8.556399], [47.36925, 8.558385], [47.362996, 8.52178], [47.384994, 8.508718], [47.397905, 8.532466], [47.413792, 8.524589], [47.415305, 8.51382], [47.391376, 8.536107], [47.383646, 8.539258], [47.35961, 8.593674], [47.36364, 8.52321], [47.364226, 8.536382], [47.42767, 8.54661], [47.366366, 8.52504], [47.338309, 8.527049], [47.374409, 8.54108], [47.377395, 8.523], [47.382206, 8.540315], [47.38245, 8.540121], [47.369488, 8.525911], [47.359368, 8.579994], [47.360969, 8.535481], [47.377061, 8.537388], [47.362678, 8.506668], [47.419771, 8.482924], [47.418532, 8.547454], [47.406427, 8.567607], [47.355717, 8.535412], [47.356963, 8.529137], [47.412382, 8.514807], [47.379029, 8.523351], [47.369467, 8.526228], [47.384975, 8.530968], [47.374843, 8.517929], [47.389472, 8.50604], [47.366487, 8.540731], [47.373493, 8.537063], [47.378647, 8.539937], [47.421294, 8.549274], [47.369043, 8.534018], [47.386824, 8.535152], [47.431451, 8.516717], [47.392474, 8.492496], [47.418035, 8.505565], [47.371385, 8.548737], [47.370187, 8.548871], [47.404512, 8.546129], [47.38532, 8.508526], [47.37218, 8.569662], [47.41013, 8.542734], [47.340068, 8.5303], [47.368113, 8.529656], [47.352656, 8.52713], [47.4027, 8.5352], [47.409698, 8.543772], [47.369312, 8.533084], [47.373055, 8.54713], [47.369691, 8.553681], [47.424748, 8.552965], [47.36509, 8.55324], [47.392042, 8.492607], [47.391922, 8.518183], [47.391819, 8.517651], [47.369105, 8.541646], [47.380445, 8.537246], [47.39782, 8.502087], [47.369288, 8.505874], [47.423786, 8.552004], [47.412677, 8.561352], [47.379967, 8.527912], [47.367825, 8.534417], [47.373305, 8.535099], [47.351323, 8.560153], [47.361196, 8.535313], [47.396989, 8.522723], [47.398209, 8.536406], [47.414785, 8.560933], [47.370115, 8.525248], [47.379134, 8.489663], [47.369057, 8.532562], [47.339878, 8.524712], [47.382265, 8.568618], [47.360336, 8.553723], [47.386365, 8.496653], [47.362334, 8.518616], [47.379442, 8.54431], [47.370296, 8.534693], [47.383166, 8.574915], [47.370538, 8.559074], [47.420394, 8.508237], [47.367536, 8.534477], [47.403467, 8.497324], [47.370653, 8.470522], [47.420421, 8.508211], [47.383297, 8.540999], [47.380845, 8.510992], [47.407764, 8.547548], [47.402137, 8.546172], [47.359383, 8.522448], [47.367645, 8.5344], [47.404396, 8.572042], [47.368086, 8.534369], [47.380073, 8.520446], [47.378951, 8.508623], [47.358249, 8.554686], [47.369337, 8.529536], [47.39194, 8.518196], [47.39484, 8.471533], [47.383711, 8.539088], [47.370707, 8.52444], [47.394193, 8.490411], [47.370982, 8.538202], [47.379203, 8.5763], [47.364595, 8.566205], [47.364171, 8.571822], [47.430772, 8.5504], [47.39073, 8.522516], [47.360348, 8.566379], [47.368225, 8.495261], [47.378262, 8.52748], [47.385886, 8.53259], [47.370272, 8.524841], [47.366747, 8.544589], [47.427404, 8.546194], [47.332353, 8.517572], [47.36953, 8.488335], [47.377243, 8.526731], [47.395686, 8.526432], [47.409149, 8.547484], [47.391805, 8.528764], [47.363683, 8.563802], [47.384621, 8.483653], [47.410556, 8.556431], [47.427623, 8.545867], [47.408834, 8.555905], [47.349146, 8.568499], [47.379521, 8.521706], [47.378731, 8.545328], [47.384826, 8.531495], [47.398498, 8.494801], [47.389241, 8.521122], [47.3937, 8.508919], [47.422467, 8.542248], [47.377692, 8.538209], [47.387874, 8.488988], [47.415415, 8.536589], [47.390899, 8.522732], [47.365841, 8.494339], [47.376955, 8.54006], [47.36787, 8.534405], [47.397866, 8.538426], [47.399132, 8.54244], [47.333607, 8.51429], [47.391274, 8.537336], [47.373401, 8.527871], [47.414974, 8.550693], [47.367973, 8.540616], [47.368814, 8.528691], [47.382683, 8.537451], [47.378526, 8.51268], [47.371344, 8.536038], [47.370295, 8.548847], [47.374439, 8.541637], [47.392378, 8.524272], [47.372952, 8.562528], [47.362452, 8.50485], [47.398846, 8.540394], [47.382329, 8.545337], [47.374447, 8.539889], [47.394849, 8.583231], [47.381921, 8.516166], [47.386177, 8.54833], [47.375099, 8.519444], [47.36859, 8.560569], [47.369357, 8.5566], [47.413207, 8.571487], [47.381095, 8.513116], [47.391454, 8.485032], [47.399277, 8.535686], [47.36125, 8.535301], [47.357528, 8.521669], [47.361981, 8.597671], [47.360923, 8.589215], [47.383781, 8.540228], [47.429085, 8.543472], [47.36716, 8.519945], [47.36063, 8.548434], [47.387827, 8.536603], [47.378419, 8.519326], [47.382493, 8.537579], [47.37609, 8.521225], [47.381638, 8.509843], [47.373626, 8.53639], [47.375499, 8.541831], [47.351589, 8.521985], [47.385033, 8.487793], [47.41572, 8.512768], [47.380283, 8.552273], [47.380544, 8.51239], [47.395623, 8.545401], [47.396468, 8.545471], [47.384484, 8.53815], [47.370792, 8.470088], [47.391172, 8.489318], [47.35374, 8.576035], [47.397193, 8.491927], [47.360926, 8.598839], [47.336648, 8.537137], [47.368249, 8.550301], [47.407686, 8.565818], [47.3525, 8.573189], [47.363895, 8.566958], [47.373122, 8.534539], [47.385331, 8.548379], [47.38577, 8.492867], [47.358103, 8.520847], [47.372935, 8.475849], [47.360545, 8.514622], [47.365223, 8.516424], [47.393572, 8.544444], [47.344832, 8.532661], [47.413664, 8.54567], [47.4237, 8.514532], [47.376254, 8.554944], [47.36086, 8.535624], [47.392378, 8.491183], [47.376946, 8.540021], [47.366307, 8.540767], [47.37405, 8.517159], [47.413731, 8.546188], [47.382148, 8.551994], [47.373001, 8.533001], [47.376766, 8.526748], [47.408982, 8.539636], [47.35425, 8.573637], [47.393128, 8.492827], [47.375089, 8.517603], [47.345004, 8.52966], [47.370143, 8.548844], [47.399806, 8.467457], [47.374432, 8.546126], [47.368355, 8.541048], [47.370911, 8.539949], [47.422486, 8.550638], [47.373241, 8.542751], [47.351147, 8.534458], [47.372338, 8.494111], [47.376684, 8.523038], [47.392301, 8.506481], [47.377759, 8.53776], [47.368109, 8.54144], [47.348441, 8.534363], [47.382329, 8.514849], [47.377364, 8.546213], [47.351396, 8.511777], [47.387008, 8.552666], [47.35361, 8.554337], [47.388568, 8.539069], [47.40449, 8.574349], [47.360616, 8.535712], [47.384617, 8.53463], [47.365104, 8.548064], [47.413229, 8.54419], [47.361281, 8.576672], [47.392217, 8.584725], [47.398286, 8.536858], [47.384808, 8.531455], [47.389859, 8.535744], [47.4189, 8.507372], [47.359644, 8.522414], [47.371371, 8.536065], [47.417574, 8.483159], [47.389284, 8.524209], [47.382146, 8.540896], [47.414366, 8.546638], [47.362281, 8.504886], [47.385224, 8.495531], [47.383089, 8.540161], [47.378582, 8.542067], [47.377034, 8.537427], [47.374565, 8.541653], [47.373312, 8.520083], [47.369831, 8.552267], [47.372773, 8.542794], [47.395071, 8.53254], [47.417916, 8.483113], [47.387155, 8.519159], [47.383886, 8.527224], [47.379224, 8.537975], [47.369047, 8.541102], [47.379153, 8.526466], [47.358147, 8.58795], [47.377222, 8.499054], [47.383238, 8.529145], [47.370673, 8.51946], [47.386341, 8.53489], [47.374458, 8.538711], [47.377661, 8.583975], [47.400194, 8.494305], [47.363114, 8.597748], [47.376313, 8.516542], [47.393404, 8.498992], [47.365669, 8.536001], [47.406845, 8.58541], [47.40007, 8.536524], [47.421293, 8.502423], [47.366654, 8.549645], [47.406853, 8.55059], [47.384573, 8.54296], [47.355156, 8.520443], [47.379455, 8.52969], [47.380377, 8.501222], [47.353572, 8.556441], [47.383473, 8.515667], [47.377205, 8.540291], [47.355051, 8.526861], [47.363472, 8.535294], [47.379072, 8.527391], [47.389656, 8.539118], [47.360898, 8.530674], [47.362131, 8.547552], [47.398985, 8.541867], [47.384993, 8.530995], [47.389989, 8.536277], [47.376256, 8.495446], [47.371329, 8.524386], [47.396718, 8.529527], [47.368963, 8.564761], [47.404336, 8.493804], [47.393901, 8.524978], [47.384405, 8.531288], [47.39798, 8.53407], [47.381379, 8.5174], [47.422677, 8.543842], [47.387579, 8.490757], [47.407539, 8.491734], [47.409338, 8.546613], [47.385061, 8.5484], [47.393041, 8.524537], [47.406717, 8.552521], [47.409814, 8.543814], [47.419583, 8.555945], [47.419016, 8.538187], [47.363386, 8.534868], [47.388448, 8.519423], [47.365798, 8.556274], [47.365558, 8.524864], [47.35047, 8.578401], [47.383367, 8.484052], [47.419101, 8.507972], [47.39544, 8.521049], [47.36118, 8.521704], [47.374957, 8.544879], [47.399206, 8.542216], [47.403408, 8.486075], [47.426288, 8.554641], [47.417774, 8.507561], [47.386486, 8.518536], [47.39499, 8.522033], [47.387199, 8.519292], [47.415458, 8.570356], [47.36268, 8.518146], [47.361909, 8.560309], [47.356497, 8.535693], [47.370907, 8.50204], [47.369969, 8.549092], [47.39854, 8.591087], [47.371701, 8.535384], [47.373959, 8.51337], [47.371393, 8.535695], [47.374894, 8.545778], [47.380168, 8.535134], [47.374638, 8.520574], [47.366139, 8.540473], [47.409257, 8.578068], [47.407592, 8.530571], [47.378407, 8.555624], [47.394254, 8.533238], [47.392063, 8.517576], [47.397844, 8.525589], [47.397989, 8.474509], [47.408853, 8.548405], [47.365549, 8.561525], [47.364239, 8.565853], [47.360426, 8.564845], [47.390787, 8.474157], [47.365062, 8.547719], [47.413392, 8.53933], [47.413364, 8.531869], [47.385238, 8.485108], [47.407001, 8.551971], [47.370262, 8.530667], [47.377567, 8.506464], [47.361359, 8.526566], [47.365864, 8.549443], [47.360659, 8.60209], [47.388874, 8.471895], [47.368113, 8.52391], [47.389945, 8.54372], [47.359154, 8.586198], [47.402706, 8.492062], [47.366958, 8.523357], [47.369057, 8.488882], [47.411895, 8.537868], [47.377202, 8.529194], [47.409697, 8.543891], [47.403313, 8.579637], [47.416314, 8.545102], [47.369417, 8.525843], [47.408465, 8.546675], [47.425029, 8.537728], [47.368919, 8.529077], [47.36954, 8.52619], [47.384862, 8.500689], [47.372743, 8.55062], [47.383005, 8.530928], [47.368321, 8.55115], [47.384939, 8.495181], [47.37946, 8.555527], [47.369082, 8.541275], [47.387769, 8.494549], [47.398525, 8.539142], [47.411173, 8.570662], [47.394229, 8.493405], [47.381725, 8.540715], [47.342902, 8.524575], [47.390742, 8.489111], [47.412452, 8.523608], [47.370152, 8.548831], [47.375346, 8.52664], [47.385456, 8.522886], [47.33536, 8.517329], [47.385348, 8.530526], [47.362145, 8.551709], [47.38535, 8.492541], [47.335535, 8.516856], [47.369588, 8.525847], [47.343696, 8.519509], [47.379163, 8.508071], [47.354895, 8.574789], [47.359404, 8.52315], [47.371944, 8.539242], [47.371908, 8.539175], [47.410499, 8.550268], [47.408173, 8.556421], [47.359482, 8.521484], [47.382003, 8.516035], [47.349532, 8.561187], [47.368668, 8.544034], [47.362199, 8.54893], [47.352041, 8.558527], [47.369316, 8.555275], [47.35533, 8.574494], [47.362872, 8.521632], [47.364368, 8.562784], [47.362807, 8.516031], [47.375863, 8.545163], [47.374201, 8.5212], [47.379811, 8.507038], [47.405312, 8.558348], [47.34292, 8.535983], [47.368538, 8.524581], [47.392267, 8.52174], [47.335333, 8.541093], [47.363927, 8.546927], [47.377137, 8.555796], [47.377395, 8.527807], [47.381888, 8.531104], [47.365547, 8.539308], [47.389272, 8.487545], [47.36847, 8.538455], [47.365274, 8.521575], [47.366772, 8.544802], [47.404805, 8.483744], [47.413886, 8.54696], [47.378464, 8.526995], [47.377596, 8.526527], [47.377724, 8.518676], [47.373158, 8.53732], [47.370178, 8.539457], [47.37762, 8.529679], [47.359189, 8.525913], [47.377089, 8.54201], [47.409924, 8.479683], [47.372095, 8.524163], [47.367379, 8.545318], [47.374633, 8.518283], [47.371998, 8.536383], [47.386469, 8.489119], [47.367798, 8.494802], [47.395617, 8.520364], [47.377031, 8.516782], [47.369652, 8.493713], [47.380365, 8.51326], [47.352067, 8.558593], [47.386824, 8.497616], [47.371393, 8.524242], [47.40188, 8.497717], [47.38985, 8.510856], [47.366909, 8.558561], [47.392085, 8.500648], [47.370143, 8.548831], [47.377091, 8.543718], [47.364321, 8.555515], [47.380592, 8.548201], [47.383678, 8.54065], [47.381693, 8.490084], [47.399209, 8.521934], [47.382224, 8.504835], [47.419155, 8.506052], [47.366473, 8.547894], [47.382166, 8.551955], [47.392643, 8.527655], [47.377006, 8.542273], [47.393363, 8.524795], [47.411082, 8.545788], [47.397509, 8.532431], [47.394883, 8.525754], [47.37108, 8.51633], [47.382085, 8.515931], [47.367678, 8.549799], [47.386185, 8.51808], [47.413918, 8.518814], [47.360229, 8.507917], [47.364001, 8.55143], [47.376068, 8.534057], [47.357019, 8.557188], [47.411631, 8.561595], [47.369195, 8.525508], [47.369467, 8.526202], [47.419215, 8.506384], [47.403784, 8.556302], [47.411656, 8.560893], [47.408129, 8.550749], [47.364531, 8.566283], [47.377723, 8.52543], [47.383737, 8.57351], [47.404175, 8.560577], [47.351073, 8.581961], [47.376131, 8.543486], [47.394805, 8.525408], [47.351581, 8.525665], [47.401816, 8.499822], [47.403826, 8.534124], [47.399938, 8.544709], [47.405242, 8.555286], [47.39205, 8.510224], [47.407082, 8.550144], [47.378092, 8.525411], [47.396564, 8.528702], [47.40884, 8.54594], [47.373055, 8.532975], [47.390177, 8.541102], [47.398311, 8.537018], [47.380869, 8.538075], [47.367583, 8.496678], [47.373382, 8.519277], [47.403162, 8.486348], [47.368395, 8.503287], [47.375974, 8.523037], [47.378804, 8.54239], [47.380561, 8.517317], [47.413636, 8.481041], [47.371842, 8.523377], [47.412025, 8.550592], [47.374469, 8.549768], [47.374808, 8.518856], [47.392745, 8.522544], [47.358235, 8.58545], [47.374886, 8.532483], [47.419044, 8.547478], [47.358424, 8.583667], [47.375791, 8.529112], [47.409383, 8.544666], [47.37793, 8.541524], [47.406299, 8.480712], [47.42803, 8.54565], [47.388916, 8.489114], [47.372247, 8.535752], [47.342762, 8.530845], [47.369502, 8.526348], [47.378272, 8.49926], [47.367057, 8.536639], [47.408033, 8.572596], [47.383796, 8.574001], [47.353579, 8.553847], [47.357251, 8.554559], [47.371643, 8.515772], [47.413703, 8.514887], [47.381939, 8.516166], [47.357876, 8.519135], [47.372423, 8.571548], [47.385403, 8.55491], [47.377104, 8.529112], [47.372756, 8.530387], [47.353581, 8.554601], [47.363785, 8.535446], [47.390318, 8.52521], [47.403954, 8.503044], [47.391944, 8.517852], [47.393758, 8.539123], [47.421466, 8.549079], [47.332674, 8.51787], [47.369494, 8.535788], [47.374695, 8.545933], [47.396794, 8.520494], [47.370606, 8.558572], [47.40345, 8.556467], [47.414103, 8.548713], [47.397907, 8.534148], [47.391609, 8.514136], [47.403324, 8.497268], [47.420359, 8.503279], [47.400185, 8.546184], [47.389054, 8.539052], [47.357685, 8.534659], [47.378991, 8.543519], [47.405998, 8.566352], [47.36773, 8.487492], [47.400411, 8.585709], [47.405711, 8.535501], [47.381562, 8.53609], [47.368437, 8.541857], [47.409992, 8.54501], [47.404364, 8.572518], [47.403968, 8.558731], [47.403244, 8.48627], [47.370896, 8.548105], [47.382983, 8.575189], [47.354434, 8.513055], [47.384158, 8.54315], [47.370924, 8.523451], [47.374061, 8.517927], [47.397368, 8.592241], [47.377358, 8.498885], [47.427582, 8.54637], [47.378535, 8.541325], [47.360743, 8.535635], [47.383979, 8.556125], [47.421211, 8.507458], [47.406595, 8.546543], [47.410379, 8.539281], [47.349658, 8.534044], [47.378726, 8.543037], [47.370244, 8.53256], [47.358729, 8.524129], [47.387836, 8.527054], [47.361574, 8.548441], [47.403243, 8.548076], [47.376217, 8.542032], [47.402532, 8.500234], [47.371328, 8.546273], [47.377785, 8.543547], [47.374807, 8.512129], [47.353233, 8.513534], [47.420759, 8.548693], [47.359552, 8.549193], [47.361525, 8.547883], [47.428002, 8.545663], [47.365594, 8.598822], [47.369187, 8.527335], [47.428677, 8.543821], [47.393727, 8.502045], [47.382512, 8.531752], [47.362894, 8.516417], [47.371159, 8.518477], [47.422512, 8.540393], [47.413365, 8.553389], [47.374776, 8.496026], [47.364331, 8.507919], [47.36843, 8.541738], [47.373956, 8.503041], [47.392534, 8.55041], [47.384326, 8.529167], [47.35369, 8.601885], [47.369134, 8.525361], [47.383013, 8.514824], [47.409653, 8.537106], [47.369288, 8.505861], [47.373962, 8.529339], [47.369071, 8.525346], [47.386253, 8.490214], [47.404665, 8.557288], [47.368975, 8.500863], [47.367772, 8.523837], [47.420949, 8.549519], [47.39189, 8.517771], [47.36922, 8.53998], [47.391398, 8.538465], [47.419177, 8.555154], [47.359644, 8.569396], [47.374466, 8.539757], [47.391952, 8.517892], [47.400254, 8.517914], [47.351892, 8.523209], [47.384906, 8.529696], [47.386631, 8.52038], [47.394165, 8.493483], [47.391952, 8.517879], [47.374092, 8.538465], [47.410577, 8.557134], [47.376583, 8.528029], [47.390289, 8.508109], [47.374673, 8.535961], [47.411725, 8.512899], [47.374144, 8.527198], [47.376965, 8.541875], [47.388918, 8.487896], [47.374443, 8.528925], [47.344474, 8.530536], [47.384315, 8.528438], [47.371974, 8.54732], [47.369596, 8.553295], [47.385208, 8.536774], [47.381224, 8.534732], [47.385886, 8.519266], [47.418526, 8.547056], [47.389809, 8.534339], [47.427177, 8.545487], [47.408924, 8.554065], [47.368934, 8.519783], [47.383115, 8.533619], [47.382194, 8.55189], [47.362399, 8.504743], [47.387257, 8.518843], [47.370865, 8.55875], [47.36787, 8.560633], [47.378405, 8.541799], [47.393115, 8.521426], [47.372521, 8.533322], [47.369733, 8.541791], [47.370644, 8.501214], [47.368654, 8.500512], [47.356761, 8.573492], [47.41965, 8.555509], [47.422145, 8.550498], [47.361885, 8.554444], [47.389944, 8.512354], [47.39023, 8.512492], [47.370566, 8.535572], [47.360328, 8.567491], [47.386208, 8.474187], [47.35884, 8.51611], [47.406172, 8.555001], [47.365487, 8.532436], [47.374167, 8.540917], [47.389183, 8.541611], [47.400419, 8.493249], [47.38021, 8.501736], [47.377602, 8.498757], [47.415024, 8.552973], [47.4275, 8.546435], [47.422572, 8.550984], [47.356137, 8.52041], [47.414194, 8.51825], [47.408772, 8.546469], [47.367842, 8.510506], [47.370944, 8.524113], [47.375644, 8.5778], [47.378778, 8.532788], [47.409374, 8.545673], [47.372055, 8.547361], [47.36729, 8.534856], [47.37869, 8.542017], [47.369132, 8.540746], [47.369199, 8.523217], [47.415404, 8.513875], [47.398858, 8.506519], [47.335932, 8.541489], [47.417416, 8.523775], [47.364375, 8.546222], [47.390551, 8.539639], [47.406008, 8.481051], [47.364642, 8.554899], [47.383545, 8.572989], [47.394769, 8.525447], [47.386203, 8.47575], [47.32958, 8.508215], [47.411342, 8.56257], [47.408334, 8.547109], [47.396728, 8.517922], [47.39862, 8.534799], [47.36968, 8.525584], [47.366339, 8.544899], [47.423075, 8.49843], [47.382601, 8.51459], [47.400427, 8.494376], [47.387955, 8.49095], [47.388927, 8.536295], [47.41116, 8.526205], [47.365728, 8.561608], [47.389671, 8.545992], [47.391371, 8.537511], [47.374384, 8.518966], [47.424619, 8.513438], [47.375229, 8.52857], [47.382745, 8.529929], [47.362813, 8.569093], [47.37821, 8.526261], [47.408791, 8.546443], [47.383061, 8.540226], [47.372711, 8.517926], [47.377864, 8.514243], [47.384217, 8.54825], [47.365075, 8.564957], [47.37752, 8.525942], [47.379892, 8.527289], [47.373133, 8.531441], [47.377513, 8.543793], [47.357371, 8.535446], [47.370236, 8.513308], [47.367495, 8.545413], [47.386637, 8.533996], [47.340488, 8.519193], [47.378531, 8.528439], [47.340748, 8.528872], [47.366718, 8.545741], [47.358186, 8.519657], [47.369142, 8.52544], [47.387638, 8.49803], [47.410966, 8.550331], [47.429205, 8.548763], [47.397126, 8.574086], [47.358946, 8.534486], [47.407723, 8.584038], [47.380515, 8.512548], [47.36946, 8.539376], [47.37174, 8.556676], [47.378633, 8.542373], [47.404129, 8.572606], [47.381473, 8.510157], [47.37399, 8.538781], [47.365592, 8.539389], [47.373031, 8.53651], [47.374325, 8.524301], [47.368557, 8.523535], [47.389632, 8.51203], [47.410746, 8.572111], [47.393837, 8.50569], [47.430763, 8.5504], [47.39501, 8.512138], [47.385813, 8.529847], [47.393635, 8.519688], [47.403953, 8.533968], [47.350208, 8.561069], [47.39694, 8.54874], [47.383062, 8.527817], [47.396564, 8.528689], [47.366602, 8.540946], [47.369959, 8.51023], [47.3883, 8.537023], [47.414673, 8.551137], [47.404909, 8.557174], [47.377026, 8.541995], [47.375905, 8.553837], [47.373177, 8.544723], [47.379593, 8.523667], [47.403941, 8.569753], [47.377882, 8.541841], [47.39221, 8.538243], [47.364621, 8.537409], [47.378326, 8.527336], [47.384843, 8.531575], [47.409315, 8.537629], [47.41547, 8.528877], [47.403853, 8.576893], [47.390704, 8.522489], [47.414236, 8.518542], [47.385053, 8.532202], [47.352619, 8.532013], [47.352142, 8.531964], [47.391068, 8.536272], [47.368959, 8.524761], [47.375812, 8.540143], [47.396126, 8.544563], [47.362965, 8.558081], [47.368171, 8.533021], [47.419579, 8.548006], [47.402286, 8.503528], [47.398164, 8.536432], [47.370821, 8.54], [47.419365, 8.547763], [47.377946, 8.549311], [47.369508, 8.545587], [47.364912, 8.533298], [47.35982, 8.522828], [47.389897, 8.542196], [47.382175, 8.551942], [47.420296, 8.503331], [47.375416, 8.484942], [47.410792, 8.570164], [47.358657, 8.534546], [47.355103, 8.562747], [47.37786, 8.5079], [47.392745, 8.522544], [47.358343, 8.571804], [47.370305, 8.548834], [47.371709, 8.557987], [47.386131, 8.518039], [47.371721, 8.54272], [47.362122, 8.547538], [47.368196, 8.539787], [47.402448, 8.548391], [47.374904, 8.527783], [47.366262, 8.555754], [47.370573, 8.55832], [47.375498, 8.528655], [47.353493, 8.576546], [47.398735, 8.539795], [47.390828, 8.521763], [47.373461, 8.598331], [47.378462, 8.540489], [47.361096, 8.535404], [47.375113, 8.547398], [47.384811, 8.524528], [47.352642, 8.524734], [47.381016, 8.542449], [47.37927, 8.537857], [47.377991, 8.54183], [47.379204, 8.538147], [47.427087, 8.546386], [47.406912, 8.496333], [47.411097, 8.526164], [47.365153, 8.553228], [47.398121, 8.535305], [47.410564, 8.556564], [47.370197, 8.548819], [47.387198, 8.519319], [47.428555, 8.543408], [47.411995, 8.524446], [47.363685, 8.535537], [47.378556, 8.542001], [47.365594, 8.532451], [47.355428, 8.574575], [47.373895, 8.538302], [47.357954, 8.520434], [47.383127, 8.572477], [47.392398, 8.543983], [47.408285, 8.546605], [47.413138, 8.546136], [47.358419, 8.520708], [47.403778, 8.57085], [47.364835, 8.530993], [47.369234, 8.527058], [47.370759, 8.515026], [47.422829, 8.541102], [47.382603, 8.529781], [47.407649, 8.491471], [47.366307, 8.540781], [47.361154, 8.590372], [47.378731, 8.539594], [47.379133, 8.516056], [47.426138, 8.547758], [47.375065, 8.55329], [47.387845, 8.492113], [47.388488, 8.492656], [47.377602, 8.542034], [47.399524, 8.585306], [47.411321, 8.562026], [47.376078, 8.559217], [47.383143, 8.530653], [47.361455, 8.576372], [47.398345, 8.532475], [47.369806, 8.51024], [47.374762, 8.518908], [47.3751, 8.550563], [47.376934, 8.540338], [47.362141, 8.559586], [47.376697, 8.533156], [47.372035, 8.529551], [47.367789, 8.523877], [47.349781, 8.561457], [47.366248, 8.545069], [47.377635, 8.522343], [47.374417, 8.54116], [47.374451, 8.521338], [47.428627, 8.536742], [47.393069, 8.521584], [47.341845, 8.530813], [47.40564, 8.591784], [47.378957, 8.542393], [47.382437, 8.528294], [47.37175, 8.553816], [47.360011, 8.569563], [47.378652, 8.540387], [47.378576, 8.545471], [47.370957, 8.548292], [47.362323, 8.577727], [47.354587, 8.602156], [47.373905, 8.544804], [47.401589, 8.499102], [47.408831, 8.579278], [47.375374, 8.560421], [47.404074, 8.563489], [47.378486, 8.5418], [47.397164, 8.594661], [47.365007, 8.535603], [47.375625, 8.512211], [47.398197, 8.536711], [47.391608, 8.505539], [47.369441, 8.512709], [47.365638, 8.539257], [47.361202, 8.576499], [47.409536, 8.549374], [47.383745, 8.542068], [47.373961, 8.538979], [47.391292, 8.54588], [47.375294, 8.528386], [47.368964, 8.540438], [47.404632, 8.54955], [47.348123, 8.532741], [47.411399, 8.52564], [47.404186, 8.588758], [47.371643, 8.515772], [47.418783, 8.506362], [47.369928, 8.5135], [47.393227, 8.478947], [47.37845, 8.541747], [47.376423, 8.515353], [47.369965, 8.510482], [47.370188, 8.548818], [47.379367, 8.527556], [47.389813, 8.478456], [47.369279, 8.527085], [47.389451, 8.538954], [47.356628, 8.523716], [47.389145, 8.494629], [47.367174, 8.544214], [47.367369, 8.541637], [47.404954, 8.557161], [47.370197, 8.548805], [47.388203, 8.497299], [47.38242, 8.537617], [47.369382, 8.541811], [47.374273, 8.543964], [47.3793, 8.542281], [47.405239, 8.593193], [47.371289, 8.531416], [47.413976, 8.548857], [47.373029, 8.532895], [47.4056, 8.549901], [47.375863, 8.515672], [47.369881, 8.561947], [47.377094, 8.552736], [47.38106, 8.569506], [47.380283, 8.512398], [47.379224, 8.52554], [47.398167, 8.536154], [47.378086, 8.483193], [47.39424, 8.480278], [47.393802, 8.500762], [47.406927, 8.587148], [47.369806, 8.51024], [47.368005, 8.567945], [47.41017, 8.57027], [47.360636, 8.565419], [47.405252, 8.555273], [47.386514, 8.528007], [47.376235, 8.536311], [47.38997, 8.484036], [47.364763, 8.554465], [47.390978, 8.526813], [47.382146, 8.51417], [47.393817, 8.472322], [47.408373, 8.550595], [47.377791, 8.498801], [47.389428, 8.511681], [47.375732, 8.523853], [47.376935, 8.540245], [47.411975, 8.512069], [47.373553, 8.530761], [47.379967, 8.527899], [47.378349, 8.545691], [47.374446, 8.540009], [47.369025, 8.571343], [47.385031, 8.494958], [47.411282, 8.570638], [47.420959, 8.502562], [47.36038, 8.533112], [47.374979, 8.539702], [47.403086, 8.575313], [47.397251, 8.53118], [47.386245, 8.531723], [47.379295, 8.527581], [47.400228, 8.547312], [47.416418, 8.533217], [47.393243, 8.513494], [47.368709, 8.521698], [47.385132, 8.532442], [47.377006, 8.528964], [47.369034, 8.528338], [47.364129, 8.547474], [47.36402, 8.549458], [47.39055, 8.513929], [47.358658, 8.53448], [47.398953, 8.541443], [47.394337, 8.47457], [47.369127, 8.524116], [47.403083, 8.497992], [47.357892, 8.534636], [47.379256, 8.544955], [47.392738, 8.545116], [47.373873, 8.530224], [47.36377, 8.533221], [47.357619, 8.521578], [47.353036, 8.557965], [47.383076, 8.54808], [47.361167, 8.560757], [47.377054, 8.513339], [47.359582, 8.522386], [47.390705, 8.508806], [47.362791, 8.554688], [47.370617, 8.524477], [47.36987, 8.510056], [47.396164, 8.540577], [47.413456, 8.521163], [47.366569, 8.533067], [47.418394, 8.546775], [47.358194, 8.553811], [47.379251, 8.527474], [47.36956, 8.467005], [47.374934, 8.518805], [47.380301, 8.512411], [47.391467, 8.51971], [47.409846, 8.545166], [47.364763, 8.554531], [47.386096, 8.518912], [47.417159, 8.506926], [47.379164, 8.544198], [47.380944, 8.548049], [47.41877, 8.540395], [47.378714, 8.544229], [47.389381, 8.521575], [47.397076, 8.532554], [47.376427, 8.538858], [47.378442, 8.540753], [47.408777, 8.555294], [47.368579, 8.538352], [47.368699, 8.524716], [47.377152, 8.540144], [47.391183, 8.489106], [47.372524, 8.529243], [47.376048, 8.559587], [47.367879, 8.49769], [47.422726, 8.550934], [47.419691, 8.500589], [47.378142, 8.54574], [47.385185, 8.532509], [47.415628, 8.529278], [47.414358, 8.517975], [47.353857, 8.553945], [47.330813, 8.515901], [47.409219, 8.544888], [47.373423, 8.527355], [47.389297, 8.539044], [47.369229, 8.491798], [47.375657, 8.533717], [47.355597, 8.601887], [47.377486, 8.543793], [47.34992, 8.53389], [47.381435, 8.517083], [47.376001, 8.524918], [47.358289, 8.555123], [47.41575, 8.552326], [47.378795, 8.542376], [47.389714, 8.511926], [47.420573, 8.509354], [47.379569, 8.543213], [47.415777, 8.569952], [47.364351, 8.555237], [47.391433, 8.534796], [47.364721, 8.55694], [47.379811, 8.490339], [47.360687, 8.524421], [47.368789, 8.506314], [47.366166, 8.540473], [47.386829, 8.4951], [47.33732, 8.519353], [47.398969, 8.538846], [47.408972, 8.539662], [47.400562, 8.534931], [47.40628, 8.492716], [47.362159, 8.547473], [47.414209, 8.518542], [47.365094, 8.559357], [47.380008, 8.526417], [47.380405, 8.548038], [47.35571, 8.572423], [47.395988, 8.521126], [47.377176, 8.539496], [47.398318, 8.532474], [47.420879, 8.549398], [47.38393, 8.515796], [47.385798, 8.548455], [47.394238, 8.52737], [47.357954, 8.520447], [47.370563, 8.524503], [47.382229, 8.492492], [47.386843, 8.519762], [47.370295, 8.548874], [47.370852, 8.554579], [47.378518, 8.527009], [47.428101, 8.545665], [47.391641, 8.525131], [47.382447, 8.537605], [47.385184, 8.530761], [47.402947, 8.575761], [47.390739, 8.52253], [47.405833, 8.553695], [47.381514, 8.491948], [47.399879, 8.495226], [47.403462, 8.486049], [47.376903, 8.512184], [47.385886, 8.532576], [47.368232, 8.506329], [47.361524, 8.517699], [47.371254, 8.530356], [47.41395, 8.548697], [47.403463, 8.55603], [47.378795, 8.542376], [47.392089, 8.517736], [47.401756, 8.545515], [47.359633, 8.557561], [47.369055, 8.553442], [47.36605, 8.521326], [47.355886, 8.595473], [47.400556, 8.544099], [47.357601, 8.554685], [47.354221, 8.502012], [47.390971, 8.488731], [47.361309, 8.505926], [47.417997, 8.554348], [47.408746, 8.546376], [47.388982, 8.539038], [47.404197, 8.561041], [47.393469, 8.511538], [47.384082, 8.532235], [47.383391, 8.574867], [47.403651, 8.572781], [47.379932, 8.541936], [47.369142, 8.525414], [47.371472, 8.556538], [47.386243, 8.533842], [47.366728, 8.49964], [47.419844, 8.504528], [47.384903, 8.537655], [47.387919, 8.490975], [47.37994, 8.495956], [47.374853, 8.518804], [47.406667, 8.551182], [47.393428, 8.47352], [47.403126, 8.547147], [47.396748, 8.532097], [47.385246, 8.530828], [47.377056, 8.520821], [47.39127, 8.514845], [47.36827, 8.554618], [47.385541, 8.54241], [47.368891, 8.539523], [47.379455, 8.529663], [47.34946, 8.534092], [47.382432, 8.487993], [47.371643, 8.515759], [47.375338, 8.516033], [47.378086, 8.510645], [47.369717, 8.525518], [47.357438, 8.52176], [47.388951, 8.515672], [47.388316, 8.520096], [47.377869, 8.521407], [47.383227, 8.484685], [47.403333, 8.497268], [47.431964, 8.543399], [47.385357, 8.530513], [47.369554, 8.541722], [47.385573, 8.530491], [47.375713, 8.476963], [47.425963, 8.493397], [47.379442, 8.544323], [47.37566, 8.537173], [47.393523, 8.54488], [47.36962, 8.551733], [47.363949, 8.549298], [47.391301, 8.523071], [47.366003, 8.545276], [47.405252, 8.555273], [47.378415, 8.540753], [47.383412, 8.498912], [47.389048, 8.486534], [47.39197, 8.517932], [47.429953, 8.549587], [47.402182, 8.496186], [47.391001, 8.487354], [47.392706, 8.539088], [47.3772, 8.513064], [47.387669, 8.529527], [47.36028, 8.534196], [47.381228, 8.551326], [47.363783, 8.551637], [47.381801, 8.535539], [47.3712, 8.512135], [47.382671, 8.532007], [47.421012, 8.549533], [47.374974, 8.544946], [47.398016, 8.532137], [47.373268, 8.599651], [47.38727, 8.488089], [47.35678, 8.55116], [47.383772, 8.573603], [47.366428, 8.545046], [47.402788, 8.500716], [47.372851, 8.532772], [47.373795, 8.536513], [47.370197, 8.548792], [47.377396, 8.543778], [47.348385, 8.532667], [47.343839, 8.530152], [47.420816, 8.549331], [47.354904, 8.574842], [47.379029, 8.542341], [47.39163, 8.523435], [47.391022, 8.523039], [47.371268, 8.528887], [47.365251, 8.520237], [47.40372, 8.578533], [47.370699, 8.516654], [47.394432, 8.526831], [47.385437, 8.526806], [47.364499, 8.536943], [47.391544, 8.505697], [47.387782, 8.519397], [47.370463, 8.510174], [47.402434, 8.503093], [47.3985, 8.538929], [47.430681, 8.550504], [47.381807, 8.548133], [47.375623, 8.541993], [47.401859, 8.493172], [47.376558, 8.548594], [47.378861, 8.524976], [47.395437, 8.526122], [47.368881, 8.548142], [47.358153, 8.519365], [47.379005, 8.508545], [47.387615, 8.486837], [47.423199, 8.535304], [47.379847, 8.524414], [47.37031, 8.602182], [47.365668, 8.510184], [47.371579, 8.472552], [47.382796, 8.529255], [47.372116, 8.519119], [47.376929, 8.539967], [47.413975, 8.544179], [47.384901, 8.509127], [47.415052, 8.551013], [47.348009, 8.534288], [47.365841, 8.545312], [47.3854, 8.542129], [47.368636, 8.524649], [47.389692, 8.511422], [47.405388, 8.592666], [47.363779, 8.553928], [47.38904, 8.510932], [47.346375, 8.527319], [47.404869, 8.574225], [47.370563, 8.526436], [47.358116, 8.519471], [47.364383, 8.546275], [47.372579, 8.517619], [47.405133, 8.480345], [47.403298, 8.497175], [47.412202, 8.546156], [47.414097, 8.550277], [47.37035, 8.513548], [47.370454, 8.514001], [47.396986, 8.539256], [47.353208, 8.511376], [47.374515, 8.54973], [47.411842, 8.525344], [47.396646, 8.541872], [47.374948, 8.534471], [47.393787, 8.472626], [47.380981, 8.492216], [47.369831, 8.547527], [47.381747, 8.541206], [47.372926, 8.535224], [47.371195, 8.535691], [47.405672, 8.549876], [47.378452, 8.540648], [47.406541, 8.553975], [47.349836, 8.561353], [47.384298, 8.485553], [47.368283, 8.541046], [47.359402, 8.522396], [47.388564, 8.535718], [47.381264, 8.540984], [47.386695, 8.534593], [47.383243, 8.540058], [47.404099, 8.483187], [47.359428, 8.584841], [47.378549, 8.496511], [47.387201, 8.51908], [47.409933, 8.576029], [47.394963, 8.522046], [47.385395, 8.539798], [47.378414, 8.540766], [47.37999, 8.536852], [47.373439, 8.5199], [47.37712, 8.49937], [47.391175, 8.523042], [47.379757, 8.524372], [47.36876, 8.524877], [47.354958, 8.557251], [47.361472, 8.54779], [47.397139, 8.530661], [47.366693, 8.544615], [47.372565, 8.534408], [47.392239, 8.516984], [47.403253, 8.48627], [47.371983, 8.535138], [47.358974, 8.591595], [47.379477, 8.527386], [47.364559, 8.56627], [47.389634, 8.521461], [47.336938, 8.518816], [47.358655, 8.582971], [47.367373, 8.494026], [47.36135, 8.525639], [47.369148, 8.564209], [47.383706, 8.529141], [47.37709, 8.540951], [47.409036, 8.548012], [47.398176, 8.536167], [47.369989, 8.510827], [47.366739, 8.565032], [47.427387, 8.546101], [47.382128, 8.51417], [47.409216, 8.54987], [47.398687, 8.590799], [47.414245, 8.534789], [47.38721, 8.519094], [47.413638, 8.545643], [47.392185, 8.503498], [47.405713, 8.494653], [47.410374, 8.543627], [47.3551, 8.532143], [47.374739, 8.537578], [47.392362, 8.502839], [47.398015, 8.503336], [47.369787, 8.537132], [47.376344, 8.527613], [47.411911, 8.51224], [47.378896, 8.526937], [47.382411, 8.505011], [47.377854, 8.529697], [47.377407, 8.501375], [47.368271, 8.536624], [47.427614, 8.54584], [47.398229, 8.532379], [47.396494, 8.528462], [47.36586, 8.547007], [47.393097, 8.521438], [47.39424, 8.480304], [47.413788, 8.536489], [47.382848, 8.557744], [47.370006, 8.548974], [47.410783, 8.545], [47.406514, 8.576195], [47.392143, 8.493311], [47.40585, 8.538843], [47.372388, 8.5236], [47.364846, 8.532674], [47.353454, 8.602105], [47.363219, 8.530629], [47.373952, 8.540846], [47.407713, 8.543452], [47.35933, 8.522368], [47.409678, 8.542089], [47.410347, 8.548277], [47.377692, 8.52584], [47.381022, 8.518015], [47.36996, 8.53123], [47.371824, 8.536684], [47.366446, 8.54506], [47.427789, 8.490478], [47.391979, 8.517853], [47.37787, 8.529909], [47.370994, 8.514912], [47.374035, 8.546303], [47.386145, 8.551641], [47.38187, 8.531156], [47.379902, 8.537632], [47.380144, 8.536723], [47.361386, 8.525693], [47.389249, 8.510698], [47.372771, 8.535472], [47.387678, 8.529527], [47.383004, 8.514837], [47.367898, 8.539953], [47.397452, 8.53182], [47.409073, 8.529011], [47.407705, 8.552714], [47.374508, 8.532475], [47.404028, 8.495984], [47.40022, 8.547245], [47.408574, 8.546558], [47.402203, 8.503711], [47.38423, 8.543098], [47.389989, 8.475903], [47.413532, 8.545402], [47.391979, 8.517945], [47.397976, 8.53252], [47.383127, 8.550201], [47.386012, 8.481985], [47.365046, 8.531527], [47.380309, 8.554247], [47.361209, 8.525385], [47.405334, 8.499786], [47.368796, 8.528717], [47.402148, 8.503843], [47.414395, 8.552934], [47.383327, 8.543437], [47.360612, 8.562294], [47.377721, 8.536104], [47.380041, 8.514181], [47.374547, 8.518784], [47.389426, 8.521563], [47.371039, 8.530272], [47.361489, 8.556329], [47.365249, 8.530922], [47.361963, 8.560364], [47.389741, 8.477435], [47.384979, 8.541895], [47.364637, 8.546055], [47.343963, 8.5303], [47.385007, 8.508334], [47.41982, 8.550065], [47.410681, 8.543435], [47.414607, 8.520206], [47.374641, 8.560829], [47.364213, 8.5667], [47.36655, 8.540772], [47.37061, 8.517539], [47.362766, 8.547049], [47.404176, 8.588771], [47.360616, 8.597429], [47.368306, 8.524377], [47.399065, 8.521944], [47.409385, 8.544454], [47.380747, 8.512765], [47.368076, 8.560678], [47.380763, 8.53312], [47.373984, 8.476241], [47.403606, 8.496929], [47.391521, 8.535924], [47.372732, 8.534875], [47.398378, 8.502986], [47.370606, 8.517036], [47.408833, 8.545821], [47.401335, 8.499282], [47.405812, 8.590741], [47.363053, 8.567496], [47.369514, 8.536477], [47.398249, 8.537003], [47.382148, 8.551981], [47.398172, 8.534617], [47.369041, 8.537951], [47.403944, 8.485502], [47.379289, 8.54432], [47.392122, 8.492688], [47.356924, 8.573363], [47.379706, 8.516372], [47.409418, 8.558832], [47.413857, 8.544322], [47.369809, 8.493213], [47.361022, 8.580149], [47.342701, 8.520084], [47.355878, 8.599855], [47.414544, 8.556183], [47.399031, 8.50537], [47.364086, 8.546348], [47.396993, 8.480265], [47.414515, 8.56098], [47.380122, 8.541821], [47.380652, 8.526748], [47.375905, 8.527432], [47.378795, 8.542403], [47.392239, 8.492611], [47.377216, 8.541946], [47.381809, 8.516614], [47.379022, 8.54495], [47.373118, 8.53683], [47.379591, 8.52768], [47.369504, 8.53849], [47.375537, 8.548188], [47.378733, 8.528046], [47.35546, 8.5566], [47.365921, 8.530287], [47.392763, 8.522518], [47.370957, 8.538003], [47.354782, 8.601486], [47.38593, 8.548749], [47.373324, 8.534967], [47.389718, 8.518284], [47.406649, 8.55032], [47.365539, 8.539282], [47.361822, 8.526205], [47.408641, 8.580268], [47.374133, 8.540691], [47.354914, 8.523258], [47.378435, 8.540462], [47.382805, 8.529268], [47.373422, 8.537048], [47.37626, 8.527943], [47.411153, 8.546784], [47.370206, 8.548806], [47.374434, 8.549675], [47.370709, 8.529948], [47.363699, 8.531247], [47.397979, 8.534176], [47.393209, 8.530634], [47.378326, 8.527349], [47.339902, 8.52986], [47.362825, 8.518931], [47.363379, 8.56275], [47.370146, 8.532465], [47.410582, 8.550084], [47.374185, 8.526695], [47.372998, 8.550254], [47.374682, 8.535975], [47.388453, 8.531344], [47.384903, 8.495154], [47.343307, 8.532166], [47.389719, 8.512323], [47.388289, 8.518135], [47.360358, 8.565374], [47.376842, 8.528259], [47.376796, 8.524603], [47.369107, 8.503063], [47.388934, 8.489168], [47.366586, 8.535067], [47.383956, 8.482606], [47.40261, 8.499559], [47.409109, 8.545125], [47.410541, 8.486069], [47.370052, 8.543294], [47.369844, 8.518636], [47.369446, 8.526572], [47.375791, 8.529112], [47.374258, 8.523691], [47.391973, 8.510779], [47.374958, 8.534418], [47.407792, 8.548357], [47.389649, 8.512123], [47.41033, 8.569492], [47.390832, 8.52224], [47.364267, 8.526294], [47.360432, 8.52472], [47.40011, 8.54931], [47.368033, 8.485816], [47.362657, 8.496262], [47.343322, 8.520097], [47.383245, 8.53982], [47.37907, 8.511208], [47.369142, 8.537794], [47.371399, 8.550035], [47.371046, 8.536178], [47.376534, 8.524638], [47.380155, 8.527916], [47.374482, 8.48683], [47.337582, 8.526901], [47.37382, 8.548073], [47.402383, 8.535499], [47.384224, 8.516093], [47.367671, 8.5221], [47.363699, 8.531261], [47.388844, 8.491153], [47.375321, 8.484516], [47.401126, 8.49953], [47.401878, 8.504791], [47.366762, 8.545834], [47.410779, 8.555773], [47.405572, 8.549967], [47.36475, 8.532341], [47.391538, 8.542693], [47.365011, 8.53138], [47.386586, 8.541293], [47.401278, 8.534403], [47.37085, 8.548276], [47.384967, 8.488189], [47.376002, 8.541921], [47.397797, 8.541935], [47.351871, 8.528305], [47.409027, 8.548025], [47.385007, 8.508321], [47.385333, 8.539704], [47.374335, 8.53753], [47.408556, 8.546531], [47.370161, 8.548818], [47.410102, 8.52772], [47.406898, 8.550524], [47.369041, 8.537937], [47.411124, 8.526204], [47.367462, 8.552548], [47.388358, 8.520375], [47.384814, 8.492146], [47.386792, 8.549853], [47.373365, 8.531684], [47.37028, 8.524974], [47.417617, 8.52533], [47.368283, 8.534413], [47.372891, 8.535143], [47.370611, 8.53556], [47.399579, 8.547497], [47.373291, 8.546923], [47.408965, 8.570244], [47.364332, 8.555329], [47.394232, 8.490133], [47.414048, 8.543133], [47.366625, 8.520477], [47.429953, 8.549574], [47.377621, 8.498691], [47.379353, 8.49519], [47.376406, 8.490854], [47.367411, 8.536328], [47.398001, 8.474218], [47.377557, 8.54198], [47.373543, 8.531873], [47.378413, 8.510334], [47.388084, 8.540741], [47.367951, 8.533413], [47.426906, 8.546515], [47.426511, 8.510189], [47.378575, 8.575214], [47.40929, 8.572875], [47.391131, 8.487873], [47.381122, 8.491623], [47.370161, 8.548805], [47.415107, 8.477439], [47.364965, 8.502623], [47.413619, 8.546663], [47.389662, 8.487248], [47.369207, 8.528024], [47.351427, 8.524854], [47.425425, 8.553681], [47.356499, 8.551446], [47.386374, 8.49664], [47.375425, 8.486928], [47.372025, 8.547692], [47.373961, 8.536132], [47.403413, 8.497323], [47.37176, 8.522541], [47.380934, 8.535044], [47.403672, 8.571497], [47.385645, 8.482865], [47.377971, 8.492911], [47.37856, 8.523527], [47.370088, 8.548909], [47.392294, 8.482651], [47.39345, 8.512584], [47.416315, 8.553424], [47.386184, 8.535311], [47.382386, 8.540305], [47.368031, 8.560716], [47.36424, 8.533019], [47.392298, 8.502931], [47.376443, 8.489769], [47.385025, 8.508268], [47.389867, 8.510896], [47.381785, 8.489888], [47.386988, 8.500295], [47.419395, 8.510284], [47.357138, 8.522058], [47.411161, 8.526059], [47.364586, 8.566204], [47.368503, 8.52454], [47.417531, 8.5616], [47.369041, 8.537937], [47.405173, 8.481817], [47.369607, 8.525688], [47.390315, 8.490639], [47.408978, 8.578924], [47.390317, 8.50803], [47.381478, 8.503761], [47.40386, 8.485739], [47.372927, 8.546479], [47.414133, 8.518977], [47.38568, 8.521063], [47.365859, 8.53202], [47.365263, 8.502457], [47.414809, 8.520687], [47.377229, 8.538636], [47.406925, 8.550538], [47.373867, 8.538408], [47.362231, 8.526637], [47.373814, 8.53642], [47.367486, 8.519806], [47.367825, 8.539157], [47.370197, 8.548805], [47.379006, 8.559702], [47.365015, 8.553517], [47.404569, 8.483964], [47.375015, 8.536895], [47.378449, 8.540886], [47.414697, 8.560732], [47.385061, 8.532308], [47.378147, 8.509945], [47.377612, 8.543756], [47.386699, 8.497428], [47.404767, 8.549552], [47.376371, 8.523827], [47.387156, 8.519093], [47.376089, 8.53942], [47.375242, 8.540449], [47.368454, 8.547604], [47.387026, 8.490216], [47.377799, 8.526968], [47.412344, 8.551102], [47.368078, 8.538937], [47.37706, 8.539454], [47.358713, 8.500698], [47.37388, 8.544671], [47.376211, 8.544521], [47.366661, 8.546084], [47.369919, 8.5135], [47.397714, 8.532674], [47.373814, 8.536487], [47.385043, 8.532374], [47.378072, 8.541805], [47.366577, 8.540799], [47.388235, 8.536254], [47.371684, 8.564342], [47.372705, 8.566588], [47.324727, 8.518397], [47.370586, 8.517247], [47.407112, 8.487234], [47.374859, 8.484904], [47.387946, 8.49095], [47.39803, 8.533448], [47.378531, 8.528439], [47.365433, 8.554029], [47.367058, 8.536533], [47.376136, 8.527794], [47.362777, 8.559904], [47.343374, 8.535542], [47.383292, 8.484434], [47.384816, 8.531588], [47.362458, 8.612734], [47.381653, 8.542621], [47.405838, 8.590781], [47.417816, 8.545199], [47.383098, 8.527818], [47.363197, 8.51956], [47.388638, 8.479056], [47.403445, 8.548531], [47.421618, 8.550116], [47.374612, 8.538648], [47.383768, 8.531103], [47.371643, 8.515772], [47.412712, 8.522818], [47.370158, 8.55847], [47.413907, 8.547609], [47.385688, 8.520202], [47.405116, 8.482186], [47.396581, 8.528769], [47.407988, 8.572582], [47.374548, 8.539693], [47.362196, 8.559442], [47.381424, 8.537411], [47.363182, 8.522115], [47.389033, 8.495051], [47.373306, 8.532146], [47.370307, 8.517295], [47.382075, 8.531359], [47.37341, 8.531658], [47.41349, 8.529989], [47.358991, 8.534447], [47.374111, 8.519292], [47.391312, 8.53898], [47.379854, 8.554767], [47.366168, 8.540261], [47.403823, 8.489846], [47.411018, 8.544965], [47.393806, 8.50618], [47.392834, 8.537938], [47.381041, 8.503328], [47.419113, 8.548752], [47.413897, 8.543912], [47.400211, 8.494318], [47.371634, 8.515772], [47.406482, 8.581269], [47.366377, 8.553148], [47.359874, 8.59605], [47.361825, 8.515256], [47.375286, 8.549918], [47.38419, 8.511033], [47.405695, 8.5916], [47.370134, 8.548817], [47.356907, 8.551084], [47.366565, 8.501689], [47.400728, 8.548607], [47.361575, 8.551102], [47.369703, 8.540308], [47.410295, 8.573996], [47.357727, 8.521581], [47.404874, 8.572768], [47.409215, 8.543417], [47.377216, 8.54196], [47.41709, 8.523053], [47.411244, 8.508477], [47.39119, 8.489292], [47.363665, 8.531975], [47.330162, 8.529634], [47.414318, 8.55439], [47.37047, 8.5142], [47.391829, 8.518512], [47.358731, 8.555], [47.405308, 8.577136], [47.373503, 8.519835], [47.388473, 8.490324], [47.393007, 8.524351], [47.35822, 8.587873], [47.374581, 8.53053], [47.362498, 8.568186], [47.406276, 8.58296], [47.371681, 8.529954], [47.425853, 8.493713], [47.387304, 8.517678], [47.366921, 8.544275], [47.375347, 8.533261], [47.391052, 8.479712], [47.370186, 8.549017], [47.408255, 8.550685], [47.409942, 8.47971], [47.409438, 8.564159], [47.360388, 8.566817], [47.38834, 8.520348], [47.419287, 8.537146], [47.373857, 8.527152], [47.366406, 8.54829], [47.387175, 8.535172], [47.40938, 8.54309], [47.370088, 8.511742], [47.369382, 8.54185], [47.399028, 8.54771], [47.37662, 8.545046], [47.364967, 8.547293], [47.356548, 8.523595], [47.375785, 8.535375], [47.376911, 8.526711], [47.372686, 8.534941], [47.391913, 8.518235], [47.402831, 8.501962], [47.359105, 8.526202], [47.381826, 8.516667], [47.384328, 8.531842], [47.345697, 8.520079], [47.391409, 8.523113], [47.369733, 8.525704], [47.367456, 8.501706], [47.374583, 8.534066], [47.385163, 8.53676], [47.349895, 8.576482], [47.373841, 8.536487], [47.359446, 8.509013], [47.355409, 8.554362], [47.393329, 8.52453], [47.40043, 8.59285], [47.367185, 8.540243], [47.360834, 8.535557], [47.397995, 8.532467], [47.413832, 8.54505], [47.420005, 8.509475], [47.414026, 8.545439], [47.33751, 8.519185], [47.373915, 8.544685], [47.375373, 8.496673], [47.384942, 8.537338], [47.355456, 8.572656], [47.398842, 8.53895], [47.409314, 8.545354], [47.38447, 8.534931], [47.398215, 8.516694], [47.375511, 8.548069], [47.427423, 8.551695], [47.386513, 8.529079], [47.358458, 8.518445], [47.377168, 8.540409], [47.358785, 8.521946], [47.366841, 8.543201], [47.395716, 8.522273], [47.411607, 8.528321], [47.366444, 8.545245], [47.354441, 8.527669], [47.425511, 8.557792], [47.377209, 8.539867], [47.378546, 8.540146], [47.370188, 8.548818], [47.377457, 8.5038], [47.386269, 8.498307], [47.377426, 8.550029], [47.403071, 8.589582], [47.379967, 8.527899], [47.36798, 8.540775], [47.37861, 8.526799], [47.37614, 8.500238], [47.370116, 8.54879], [47.35034, 8.577921], [47.386813, 8.516278], [47.363713, 8.520167], [47.421896, 8.550228], [47.369034, 8.528325], [47.373656, 8.534153], [47.365203, 8.547113], [47.373933, 8.546592], [47.347334, 8.534393], [47.378795, 8.5272], [47.3856, 8.530544], [47.378962, 8.559596], [47.377284, 8.541352], [47.356204, 8.555874], [47.409717, 8.544554], [47.410909, 8.563647], [47.360514, 8.561339], [47.371529, 8.511586], [47.328634, 8.51804], [47.364149, 8.546349], [47.416633, 8.555021], [47.371249, 8.535692], [47.402386, 8.495514], [47.418279, 8.546627], [47.363489, 8.575382], [47.36666, 8.541476], [47.395204, 8.519322], [47.363927, 8.546941], [47.378768, 8.542349], [47.375765, 8.529005], [47.403696, 8.48306], [47.403662, 8.571655], [47.382368, 8.488124], [47.401459, 8.548371], [47.38315, 8.515581], [47.36149, 8.502858], [47.366256, 8.545162], [47.430827, 8.550388], [47.361993, 8.5572], [47.378035, 8.526721], [47.328552, 8.518091], [47.358289, 8.55887], [47.384453, 8.542321], [47.374497, 8.517446], [47.392147, 8.5477], [47.399712, 8.495792], [47.410513, 8.54791], [47.375378, 8.536598], [47.374762, 8.536043], [47.373812, 8.537665], [47.402396, 8.49937], [47.428031, 8.542708], [47.387511, 8.528186], [47.388433, 8.520046], [47.368552, 8.528831], [47.370994, 8.537911], [47.391001, 8.522416], [47.368665, 8.564914], [47.335007, 8.529958], [47.41076, 8.544602], [47.393466, 8.500119], [47.426243, 8.554613], [47.418678, 8.547232], [47.391607, 8.519183], [47.392755, 8.523458], [47.386014, 8.495706], [47.38813, 8.535947], [47.396555, 8.528676], [47.394017, 8.52506], [47.373165, 8.503926], [47.344708, 8.528608], [47.364638, 8.566444], [47.347538, 8.532743], [47.377432, 8.539037], [47.40862, 8.546373], [47.381061, 8.54241], [47.365292, 8.521602], [47.372297, 8.526644], [47.364825, 8.566646], [47.375888, 8.527405], [47.411062, 8.532736], [47.403082, 8.570212], [47.373617, 8.536377], [47.385362, 8.500077], [47.387005, 8.528427], [47.37741, 8.539514], [47.348407, 8.533118], [47.376016, 8.535751], [47.385478, 8.536767], [47.395728, 8.518074], [47.395096, 8.520327], [47.377198, 8.540013], [47.374146, 8.533699], [47.374548, 8.533999], [47.367734, 8.487956], [47.373629, 8.597752], [47.376121, 8.540758], [47.35706, 8.59767], [47.373425, 8.519503], [47.389696, 8.511872], [47.428329, 8.545405], [47.405509, 8.579605], [47.37834, 8.493779], [47.37533, 8.561214], [47.414158, 8.482947], [47.373954, 8.538807], [47.36027, 8.568853], [47.372489, 8.563882], [47.417703, 8.554143], [47.374199, 8.568394], [47.348632, 8.533123], [47.373958, 8.526015], [47.403637, 8.570489], [47.373415, 8.534863], [47.364072, 8.556171], [47.380854, 8.511893], [47.407705, 8.535728], [47.377042, 8.544154], [47.377136, 8.552115], [47.426897, 8.546541], [47.377701, 8.538195], [47.36832, 8.504517], [47.39073, 8.545352], [47.366079, 8.533547], [47.400788, 8.5489], [47.372086, 8.523236], [47.402361, 8.499289], [47.381391, 8.533252], [47.367983, 8.540458], [47.389176, 8.509849], [47.376365, 8.510041], [47.393893, 8.521004], [47.418818, 8.530576], [47.376566, 8.548766], [47.370928, 8.535394], [47.395091, 8.524698], [47.365326, 8.598723], [47.378547, 8.528718], [47.388421, 8.486177], [47.369672, 8.525544], [47.391832, 8.484946], [47.424285, 8.54312], [47.364588, 8.554924], [47.34376, 8.525175], [47.375305, 8.485377], [47.385565, 8.530437], [47.368848, 8.54785], [47.388603, 8.477956], [47.359386, 8.596264], [47.387102, 8.489781], [47.373422, 8.552951], [47.402579, 8.582073], [47.364774, 8.532633], [47.382119, 8.540882], [47.421143, 8.548131], [47.414728, 8.551059], [47.360872, 8.524861], [47.371625, 8.515772], [47.364566, 8.532814], [47.36832, 8.484882], [47.391347, 8.522953], [47.38451, 8.542958], [47.393841, 8.50826], [47.3355, 8.518748], [47.370361, 8.518183], [47.357039, 8.52207], [47.411746, 8.525051], [47.377308, 8.509226], [47.371967, 8.556416], [47.37868, 8.567297], [47.367932, 8.48604], [47.350007, 8.570608], [47.377713, 8.525575], [47.389156, 8.532114], [47.380724, 8.582663], [47.396721, 8.529262], [47.401541, 8.548306], [47.381925, 8.512828], [47.382829, 8.555942], [47.336519, 8.518411], [47.362906, 8.567824], [47.387355, 8.487693], [47.349174, 8.562861], [47.4109, 8.562746], [47.385089, 8.532282], [47.37604, 8.48461], [47.380872, 8.53491], [47.403163, 8.500074], [47.371084, 8.514953], [47.385778, 8.53264], [47.411073, 8.545748], [47.378064, 8.495495], [47.359685, 8.515226], [47.364261, 8.536449], [47.41364, 8.545364], [47.364103, 8.546375], [47.396808, 8.540961], [47.361124, 8.517188], [47.414694, 8.56109], [47.374504, 8.521498], [47.393495, 8.492079], [47.380098, 8.508991], [47.403657, 8.496202], [47.393345, 8.524795], [47.358412, 8.521436], [47.359881, 8.594435], [47.366711, 8.544642], [47.382738, 8.575435], [47.405252, 8.55526], [47.384191, 8.497312], [47.355524, 8.600138], [47.370827, 8.470194], [47.368116, 8.536846], [47.362912, 8.556147], [47.359812, 8.527567], [47.369853, 8.518649], [47.416321, 8.545354], [47.383245, 8.548256], [47.386724, 8.547574], [47.386801, 8.534741], [47.38012, 8.535504], [47.375732, 8.526687], [47.409277, 8.545406], [47.411177, 8.526219], [47.370116, 8.548817], [47.414778, 8.519229], [47.367543, 8.540329], [47.377441, 8.499628], [47.340403, 8.519601], [47.386599, 8.481797], [47.392874, 8.496041], [47.370302, 8.545312], [47.367001, 8.523543], [47.366493, 8.566245], [47.395934, 8.493863], [47.376872, 8.510581], [47.37656, 8.538993], [47.370402, 8.5225], [47.370325, 8.514303], [47.361534, 8.560937], [47.40712, 8.586702], [47.398377, 8.54714], [47.399767, 8.543765], [47.38099, 8.492229], [47.370188, 8.548792], [47.354799, 8.526856], [47.378056, 8.513849], [47.375817, 8.529139], [47.372116, 8.515266], [47.404584, 8.491278], [47.391506, 8.528003], [47.360508, 8.535723], [47.376417, 8.564137], [47.369455, 8.528426], [47.409433, 8.546085], [47.363105, 8.556694], [47.359671, 8.522454], [47.41272, 8.482826], [47.388797, 8.520517], [47.384025, 8.480939], [47.357617, 8.553918], [47.404283, 8.54472], [47.410368, 8.539519], [47.389719, 8.512323], [47.373362, 8.547031], [47.372882, 8.535156], [47.37328, 8.533033], [47.404418, 8.557707], [47.396674, 8.510198], [47.417216, 8.522989], [47.369107, 8.525347], [47.375872, 8.559133], [47.385581, 8.542927], [47.356856, 8.52241], [47.358311, 8.556567], [47.378802, 8.526445], [47.376446, 8.549108], [47.362293, 8.532476], [47.372784, 8.535048], [47.36801, 8.540432], [47.38652, 8.540656], [47.375411, 8.484531], [47.353343, 8.576185], [47.387086, 8.547316], [47.369507, 8.525779], [47.410047, 8.535391], [47.388549, 8.479001], [47.410547, 8.556524], [47.367335, 8.544297], [47.378406, 8.516849], [47.340656, 8.52711], [47.371088, 8.516437], [47.381327, 8.541012], [47.37104, 8.537767], [47.389883, 8.539851], [47.398345, 8.53731], [47.378557, 8.504523], [47.363386, 8.534855], [47.329118, 8.529679], [47.376805, 8.535039], [47.412809, 8.514299], [47.394601, 8.494009], [47.407201, 8.585816], [47.374481, 8.540129], [47.355029, 8.562031], [47.414738, 8.519612], [47.383394, 8.548643], [47.371225, 8.523007], [47.419374, 8.508654], [47.378495, 8.575186], [47.364466, 8.566493], [47.381665, 8.513657], [47.416591, 8.513885], [47.375261, 8.525194], [47.369296, 8.528158], [47.376922, 8.540735], [47.416685, 8.568195], [47.36028, 8.523684], [47.356895, 8.522067], [47.393447, 8.537739], [47.376896, 8.554626], [47.373244, 8.533019], [47.402833, 8.577255], [47.37009, 8.518323], [47.358001, 8.554244], [47.326399, 8.516539], [47.394838, 8.525739], [47.411579, 8.54556], [47.396002, 8.545303], [47.386616, 8.468871], [47.3925, 8.516088], [47.372981, 8.547367], [47.374731, 8.495985], [47.366573, 8.54023], [47.337514, 8.530261], [47.389264, 8.54152], [47.386921, 8.544809], [47.393505, 8.539184], [47.409168, 8.571534], [47.379962, 8.547274], [47.367968, 8.544827], [47.37017, 8.548778], [47.397766, 8.530038], [47.382957, 8.557614], [47.370359, 8.513615], [47.414995, 8.551369], [47.376758, 8.538057], [47.366985, 8.523358], [47.370653, 8.516772], [47.37646, 8.543838], [47.416296, 8.545115], [47.390015, 8.536383], [47.356752, 8.523917], [47.4037, 8.571444], [47.373938, 8.503014], [47.377717, 8.507778], [47.378406, 8.555677], [47.403694, 8.5784], [47.355276, 8.574506], [47.36974, 8.54011], [47.374368, 8.521627], [47.380163, 8.528089], [47.370179, 8.548805], [47.368135, 8.54152], [47.361132, 8.531645], [47.35588, 8.531431], [47.360504, 8.550298], [47.427353, 8.545848], [47.414203, 8.519124], [47.387937, 8.490949], [47.357231, 8.506321], [47.388935, 8.489048], [47.357103, 8.556886], [47.362704, 8.496104], [47.413307, 8.531271], [47.37852, 8.506496], [47.371235, 8.531389], [47.394089, 8.475056], [47.405261, 8.555247], [47.380305, 8.483488], [47.407223, 8.585379], [47.375927, 8.523235], [47.399828, 8.544018], [47.377616, 8.507007], [47.366808, 8.499747], [47.361801, 8.560307], [47.378172, 8.5341], [47.376545, 8.529233], [47.373915, 8.524823], [47.393453, 8.539064], [47.384145, 8.497364], [47.365335, 8.545527], [47.365117, 8.553241], [47.379755, 8.526544], [47.364351, 8.555237], [47.386091, 8.521362], [47.378769, 8.510778], [47.419516, 8.547991], [47.373832, 8.536487], [47.366564, 8.540256], [47.385363, 8.532738], [47.352294, 8.507082], [47.368402, 8.546477], [47.380891, 8.492307], [47.416279, 8.544134], [47.390932, 8.523143], [47.369274, 8.541822], [47.368696, 8.493006], [47.362131, 8.547552], [47.391264, 8.485134], [47.366067, 8.548944], [47.37385, 8.536501], [47.389733, 8.51182], [47.370648, 8.535468], [47.376372, 8.539903], [47.374219, 8.521214], [47.414076, 8.514431], [47.410678, 8.550312], [47.389737, 8.486839], [47.405559, 8.550483], [47.37603, 8.541816], [47.431268, 8.543769], [47.393163, 8.528805], [47.408492, 8.546635], [47.401215, 8.588111], [47.375886, 8.540859], [47.384298, 8.554728], [47.347253, 8.532512], [47.402427, 8.535579], [47.391243, 8.538727], [47.386753, 8.502409], [47.331935, 8.535241], [47.412301, 8.52436], [47.415679, 8.563443], [47.376392, 8.536857], [47.360933, 8.525048], [47.369155, 8.491995], [47.404621, 8.484151], [47.361773, 8.505419], [47.392556, 8.475516], [47.371527, 8.558221], [47.413799, 8.546666], [47.391423, 8.535869], [47.402076, 8.545985], [47.386688, 8.539043], [47.3849, 8.550185], [47.370215, 8.548806], [47.372747, 8.550236], [47.388539, 8.487027], [47.385427, 8.517336], [47.368946, 8.540358], [47.32477, 8.510871], [47.365649, 8.520894], [47.383844, 8.52974], [47.344532, 8.532959], [47.41498, 8.551011], [47.362541, 8.533885], [47.351314, 8.576738], [47.382992, 8.575176], [47.364586, 8.566191], [47.361371, 8.512838], [47.357465, 8.524554], [47.370644, 8.517725], [47.404169, 8.563955], [47.41167, 8.537876], [47.379074, 8.522345], [47.407371, 8.579592], [47.378535, 8.555375], [47.401364, 8.508875], [47.357675, 8.521434], [47.377228, 8.551918], [47.37223, 8.540307], [47.379268, 8.495665], [47.406307, 8.492677], [47.358281, 8.584432], [47.370949, 8.548278], [47.386793, 8.534674], [47.386623, 8.547797], [47.422111, 8.549411], [47.334864, 8.529955], [47.415678, 8.546732], [47.368932, 8.559597], [47.361562, 8.554358], [47.374673, 8.535948], [47.375883, 8.541177], [47.365767, 8.496549], [47.361245, 8.506004], [47.415275, 8.514203], [47.360188, 8.522968], [47.390507, 8.522326], [47.415179, 8.5177], [47.376802, 8.528656], [47.432354, 8.528812], [47.367888, 8.494804], [47.41429, 8.550745], [47.372982, 8.533119], [47.386565, 8.490432], [47.340024, 8.530286], [47.375467, 8.560092], [47.362926, 8.549131], [47.37654, 8.515395], [47.410418, 8.543668], [47.365116, 8.553307], [47.383088, 8.540187], [47.356096, 8.562371], [47.369151, 8.503236], [47.369213, 8.540708], [47.414682, 8.545532], [47.376822, 8.541779], [47.373548, 8.519783], [47.416003, 8.552212], [47.400402, 8.501039], [47.394838, 8.525726], [47.430019, 8.544552], [47.376592, 8.514654], [47.361744, 8.516287], [47.400254, 8.547431], [47.371379, 8.530478], [47.356982, 8.535716], [47.424213, 8.496955], [47.39116, 8.52275], [47.37578, 8.549067], [47.393081, 8.544951], [47.376296, 8.55991], [47.424828, 8.499485], [47.376484, 8.552618], [47.397721, 8.532925], [47.37582, 8.537389], [47.364287, 8.555355], [47.41349, 8.52995], [47.366287, 8.548459], [47.41648, 8.55311], [47.377015, 8.548828], [47.397643, 8.588193], [47.375908, 8.541323], [47.386761, 8.535217], [47.361643, 8.526095], [47.360147, 8.523536], [47.351536, 8.530416], [47.351861, 8.53033], [47.354263, 8.57594], [47.365712, 8.532348], [47.382491, 8.572199], [47.341836, 8.530826], [47.375546, 8.548228], [47.413829, 8.545395], [47.39868, 8.471727], [47.363984, 8.54759], [47.367635, 8.540159], [47.399042, 8.533059], [47.362356, 8.516207], [47.369216, 8.550731], [47.385508, 8.508583], [47.372704, 8.517793], [47.370072, 8.525009], [47.422845, 8.542229], [47.370871, 8.524218], [47.396301, 8.526034], [47.369615, 8.528641], [47.378598, 8.523329], [47.362284, 8.532489], [47.366495, 8.494657], [47.372602, 8.534356], [47.409358, 8.545381], [47.370894, 8.548343], [47.35325, 8.527023], [47.393873, 8.472058], [47.363074, 8.51732], [47.363635, 8.535165], [47.375021, 8.549475], [47.423616, 8.510992], [47.377913, 8.50998], [47.391, 8.507143], [47.381852, 8.489465], [47.347025, 8.529053], [47.407138, 8.586742], [47.374509, 8.539944], [47.366095, 8.533733], [47.401965, 8.499308], [47.371398, 8.530346], [47.361507, 8.597396], [47.391628, 8.538933], [47.370204, 8.556459], [47.39698, 8.530433], [47.368577, 8.52903], [47.366788, 8.542234], [47.40949, 8.522978], [47.383151, 8.540255], [47.399545, 8.496398], [47.396172, 8.527303], [47.347331, 8.532778], [47.380369, 8.528172], [47.383435, 8.512912], [47.372768, 8.477369], [47.363377, 8.529162], [47.353253, 8.512317], [47.413056, 8.524495], [47.375176, 8.501437], [47.406835, 8.550576], [47.390925, 8.521937], [47.387308, 8.547599], [47.397194, 8.491781], [47.391371, 8.537537], [47.375646, 8.510967], [47.378123, 8.510606], [47.377673, 8.508598], [47.375714, 8.578066], [47.352375, 8.507071], [47.375567, 8.560001], [47.38252, 8.475215], [47.356003, 8.535604], [47.358856, 8.533518], [47.383179, 8.540123], [47.390682, 8.478897], [47.369212, 8.567838], [47.36923, 8.567825], [47.399357, 8.585885], [47.41161, 8.50973], [47.424944, 8.553128], [47.344404, 8.530283], [47.393445, 8.52942], [47.393904, 8.486656], [47.366921, 8.544275], [47.356991, 8.53569], [47.396526, 8.530808], [47.382846, 8.540116], [47.416956, 8.545751], [47.39342, 8.500277], [47.374901, 8.51944], [47.364908, 8.530822], [47.412253, 8.556771], [47.390748, 8.522583], [47.360298, 8.523698], [47.383557, 8.530608], [47.3612, 8.525345], [47.37298, 8.533397], [47.37385, 8.536487], [47.37302, 8.532908], [47.376842, 8.543448], [47.382421, 8.551656], [47.367292, 8.523165], [47.421358, 8.550005], [47.369398, 8.525883], [47.371879, 8.522279], [47.37307, 8.550309], [47.387894, 8.485823], [47.344057, 8.530911], [47.38184, 8.54191], [47.389933, 8.492009], [47.362095, 8.535332], [47.39008, 8.511231], [47.375945, 8.535603], [47.410774, 8.554355], [47.374149, 8.520934], [47.367128, 8.544266], [47.369112, 8.517151], [47.424557, 8.553239], [47.364332, 8.555316], [47.368513, 8.499172], [47.391122, 8.522988], [47.349522, 8.532214], [47.381176, 8.491544], [47.367942, 8.560608], [47.424669, 8.550007], [47.404819, 8.576543], [47.416268, 8.51474], [47.327451, 8.51279], [47.408585, 8.580505], [47.404764, 8.594799], [47.374227, 8.516487], [47.368527, 8.546546], [47.374292, 8.543819], [47.376794, 8.527649], [47.398026, 8.535833], [47.387482, 8.484609], [47.391097, 8.541797], [47.391062, 8.538882], [47.392553, 8.538131], [47.369209, 8.543899], [47.355944, 8.553936], [47.387616, 8.527579], [47.401043, 8.535392], [47.396998, 8.530327], [47.388458, 8.491079], [47.370277, 8.548873], [47.387089, 8.522389], [47.360373, 8.53572], [47.380869, 8.526673], [47.364869, 8.566727], [47.406297, 8.551294], [47.409568, 8.537568], [47.398829, 8.540301], [47.369694, 8.540268], [47.414575, 8.551029], [47.412169, 8.550542], [47.410711, 8.554433], [47.385199, 8.530112], [47.373065, 8.528116], [47.376648, 8.527845], [47.362677, 8.497097], [47.387281, 8.487956], [47.36815, 8.541772], [47.378518, 8.540291], [47.392829, 8.523168], [47.365877, 8.494353], [47.36414, 8.546309], [47.367544, 8.539363], [47.387286, 8.500142], [47.382342, 8.514399], [47.426297, 8.554667], [47.37558, 8.537079], [47.368636, 8.546509], [47.361363, 8.526182], [47.358027, 8.520276], [47.380091, 8.525174], [47.390664, 8.478857], [47.371922, 8.556455], [47.398336, 8.537297], [47.355953, 8.554902], [47.371041, 8.549856], [47.387898, 8.540472], [47.345165, 8.529743], [47.375066, 8.545663], [47.373217, 8.533005], [47.364729, 8.556172], [47.394939, 8.516826], [47.409685, 8.523273], [47.406862, 8.55059], [47.419774, 8.500352], [47.379435, 8.545939], [47.369844, 8.518636], [47.364985, 8.521728], [47.372265, 8.540454], [47.359766, 8.50845], [47.354168, 8.553436], [47.407187, 8.566258], [47.369899, 8.529071], [47.37729, 8.538849], [47.373465, 8.561506], [47.36048, 8.535855], [47.366629, 8.544706], [47.363195, 8.548249], [47.363717, 8.531261], [47.374574, 8.541706], [47.404418, 8.574308], [47.356593, 8.523583], [47.397341, 8.587789], [47.3925, 8.492603], [47.391382, 8.487017], [47.407386, 8.541922], [47.369678, 8.538215], [47.380025, 8.548216], [47.382475, 8.514614], [47.370858, 8.54829], [47.427921, 8.545701], [47.375599, 8.577865], [47.359189, 8.527806], [47.391296, 8.535059], [47.361189, 8.525517], [47.383293, 8.499095], [47.385963, 8.475507], [47.413218, 8.538717], [47.406414, 8.588992], [47.378896, 8.526924], [47.376676, 8.497732], [47.407006, 8.550553], [47.385541, 8.542397], [47.381192, 8.538162], [47.392546, 8.475635], [47.377546, 8.509694], [47.383736, 8.512467], [47.369164, 8.538284], [47.389306, 8.51609], [47.407574, 8.530637], [47.366976, 8.523318], [47.404148, 8.559662], [47.357524, 8.535489], [47.364664, 8.532896], [47.357434, 8.521217], [47.372139, 8.556393], [47.375759, 8.498694], [47.366894, 8.544301], [47.390411, 8.509489], [47.343016, 8.520051], [47.372716, 8.525103], [47.404946, 8.557095], [47.366809, 8.518124], [47.425995, 8.547742], [47.409044, 8.550052], [47.364472, 8.536943], [47.4057, 8.595601], [47.365109, 8.534321], [47.378398, 8.49235], [47.404696, 8.549471], [47.405053, 8.482185], [47.372044, 8.529565], [47.377974, 8.548199], [47.385546, 8.530477], [47.37865, 8.544373], [47.3771, 8.541812], [47.383147, 8.550055], [47.360454, 8.522364], [47.384986, 8.48509], [47.391118, 8.489277], [47.374881, 8.517718], [47.37413, 8.497748], [47.373554, 8.534429], [47.386006, 8.548287], [47.387339, 8.493375], [47.390998, 8.513157], [47.366493, 8.542002], [47.385007, 8.508334], [47.386462, 8.477], [47.378414, 8.543653], [47.368017, 8.540657], [47.406652, 8.578609], [47.371636, 8.53566], [47.343059, 8.519351], [47.328797, 8.517884], [47.361155, 8.600234], [47.373796, 8.486142], [47.413918, 8.551082], [47.373852, 8.517181], [47.353105, 8.572103], [47.36063, 8.529477], [47.412064, 8.545636], [47.385193, 8.530734], [47.37453, 8.54532], [47.372703, 8.534054], [47.386513, 8.529093], [47.407523, 8.548245], [47.428302, 8.542567], [47.383208, 8.515145], [47.374378, 8.55268], [47.408956, 8.53953], [47.369482, 8.553875], [47.377261, 8.510351], [47.378914, 8.518383], [47.373988, 8.54086], [47.366215, 8.520959], [47.371487, 8.524786], [47.397717, 8.533257], [47.399049, 8.514061], [47.393412, 8.537698], [47.415225, 8.544244], [47.374459, 8.539532], [47.410485, 8.573006], [47.3513, 8.576301], [47.36778, 8.522963], [47.360571, 8.535711], [47.353013, 8.572287], [47.360009, 8.568861], [47.421403, 8.550045], [47.375523, 8.526908], [47.363326, 8.533557], [47.390882, 8.466596], [47.366753, 8.5421], [47.353166, 8.575917], [47.360122, 8.571061], [47.366314, 8.534306], [47.377847, 8.50925], [47.416879, 8.547155], [47.390531, 8.490616], [47.374762, 8.518868], [47.361834, 8.51527], [47.363562, 8.519991], [47.381785, 8.536359], [47.387495, 8.476159], [47.398488, 8.500776], [47.360304, 8.550466], [47.391823, 8.513438], [47.369437, 8.525632], [47.358211, 8.550211], [47.376821, 8.526723], [47.366052, 8.521167], [47.369105, 8.54162], [47.420531, 8.501228], [47.369266, 8.525628], [47.356647, 8.52361], [47.370846, 8.491036], [47.368463, 8.498787], [47.363424, 8.499984], [47.40699, 8.550327], [47.348525, 8.534034], [47.372528, 8.534567], [47.367865, 8.532021], [47.402992, 8.494241], [47.411162, 8.54681], [47.383707, 8.481277], [47.370859, 8.535022], [47.339987, 8.530378], [47.349941, 8.569958], [47.365626, 8.556402], [47.388126, 8.521086], [47.402575, 8.492577], [47.374376, 8.502401], [47.429626, 8.541428], [47.389639, 8.540005], [47.414245, 8.518502], [47.421014, 8.507401], [47.388097, 8.485191], [47.412003, 8.547305], [47.371104, 8.538589], [47.378711, 8.526549], [47.393731, 8.513291], [47.379125, 8.51113], [47.385643, 8.480004], [47.383458, 8.531599], [47.387649, 8.48701], [47.410649, 8.57191], [47.37447, 8.549702], [47.371458, 8.521145], [47.37126, 8.528847], [47.38828, 8.528692], [47.373038, 8.532909], [47.377399, 8.526417], [47.368847, 8.529049], [47.412669, 8.526421], [47.370936, 8.531674], [47.367931, 8.556212], [47.391493, 8.534215], [47.368172, 8.496147], [47.354333, 8.511333], [47.399266, 8.542562], [47.408196, 8.557693], [47.368481, 8.556939], [47.377517, 8.499206], [47.376143, 8.553458], [47.360912, 8.549962], [47.410726, 8.572256], [47.372071, 8.529565], [47.375248, 8.547322], [47.391644, 8.519144], [47.367796, 8.544942], [47.366624, 8.532936], [47.371481, 8.556525], [47.399822, 8.542732], [47.362649, 8.530961], [47.370713, 8.535218], [47.360914, 8.571899], [47.376152, 8.521253], [47.427712, 8.545935], [47.350023, 8.527817], [47.370233, 8.518472], [47.401968, 8.552554], [47.367898, 8.49765], [47.383022, 8.530134], [47.380844, 8.511005], [47.36908, 8.523427], [47.372055, 8.534186], [47.390912, 8.523302], [47.364633, 8.554899], [47.384072, 8.492595], [47.405626, 8.565828], [47.342323, 8.536341], [47.376796, 8.511017], [47.407668, 8.58405], [47.411479, 8.526622], [47.375944, 8.530015], [47.386426, 8.518257], [47.364499, 8.53697], [47.37386, 8.536395], [47.388961, 8.525169], [47.395494, 8.540046], [47.388179, 8.525047], [47.378831, 8.530962], [47.359002, 8.553086], [47.394797, 8.523407], [47.3731, 8.53777], [47.393491, 8.483615], [47.367923, 8.523986], [47.365269, 8.500868], [47.370034, 8.543307], [47.383346, 8.574879], [47.383877, 8.542349], [47.370188, 8.548792], [47.377012, 8.539757], [47.389957, 8.491426], [47.373998, 8.546342], [47.370204, 8.53767], [47.41078, 8.567686], [47.393672, 8.509025], [47.405764, 8.591045], [47.400193, 8.546224], [47.378112, 8.493232], [47.381195, 8.537804], [47.391676, 8.492255], [47.413752, 8.546811], [47.368827, 8.548088], [47.382339, 8.530093], [47.361667, 8.529207], [47.365979, 8.562646], [47.394783, 8.525804], [47.399177, 8.521549], [47.374201, 8.521227], [47.418885, 8.507053], [47.370161, 8.548818], [47.368382, 8.517269], [47.408802, 8.549053], [47.351067, 8.513358], [47.362554, 8.519997], [47.361412, 8.525746], [47.374444, 8.540181], [47.380332, 8.483462], [47.375865, 8.54115], [47.404525, 8.550382], [47.367929, 8.540483], [47.377748, 8.537971], [47.413768, 8.520428], [47.430009, 8.486677], [47.411641, 8.507425], [47.404679, 8.581641], [47.370098, 8.539363], [47.401235, 8.550168], [47.402298, 8.499301], [47.368115, 8.541665], [47.369379, 8.526994], [47.355534, 8.53476], [47.367604, 8.538702], [47.402545, 8.553295], [47.383867, 8.534005], [47.38825, 8.518426], [47.376785, 8.528602], [47.364918, 8.554322], [47.398828, 8.540367], [47.410204, 8.541662], [47.374383, 8.519059], [47.40689, 8.550511], [47.375963, 8.53367], [47.373094, 8.532671], [47.426719, 8.549083], [47.387363, 8.487746], [47.411836, 8.525092], [47.404754, 8.594878], [47.389207, 8.539042], [47.40536, 8.592745], [47.414041, 8.519201], [47.361128, 8.601094], [47.361219, 8.502045], [47.378879, 8.539213], [47.361103, 8.549715], [47.373614, 8.529054], [47.40113, 8.549887], [47.39311, 8.484945], [47.361365, 8.565342], [47.334922, 8.518035], [47.377036, 8.512293], [47.409321, 8.535151], [47.361678, 8.523289], [47.363148, 8.525795], [47.391917, 8.517798], [47.393179, 8.474243], [47.403588, 8.559875], [47.370553, 8.487614], [47.358295, 8.587543], [47.384983, 8.531035], [47.39321, 8.524752], [47.373926, 8.54642], [47.370242, 8.548806], [47.407158, 8.586504], [47.385169, 8.532363], [47.412405, 8.550361], [47.381498, 8.503549], [47.370125, 8.548844], [47.370269, 8.513586], [47.380386, 8.515777], [47.387297, 8.488089], [47.373854, 8.537944], [47.414458, 8.552908], [47.359644, 8.569396], [47.38705, 8.528428], [47.38329, 8.486593], [47.391936, 8.533919], [47.42802, 8.54569], [47.37333, 8.52007], [47.387239, 8.486565], [47.383961, 8.53165], [47.352175, 8.525651], [47.363967, 8.528565], [47.373319, 8.535523], [47.409291, 8.528764], [47.354967, 8.574817], [47.391128, 8.489198], [47.36345, 8.533824], [47.375418, 8.535235], [47.419174, 8.505986], [47.41942, 8.556021], [47.359, 8.52207], [47.339541, 8.529919], [47.410981, 8.529859], [47.37386, 8.536368], [47.389263, 8.527387], [47.360538, 8.597176], [47.411673, 8.561861], [47.368737, 8.519659], [47.361096, 8.531565], [47.41551, 8.563148], [47.393067, 8.531306], [47.414335, 8.551673], [47.365176, 8.547112], [47.376749, 8.535196], [47.376509, 8.521631], [47.388355, 8.526389], [47.41406, 8.541901], [47.385164, 8.495159], [47.373223, 8.550246], [47.397565, 8.481694], [47.410742, 8.571581], [47.375972, 8.537537], [47.420697, 8.502663], [47.392388, 8.524193], [47.378819, 8.50923], [47.372838, 8.528376], [47.381306, 8.542216], [47.380331, 8.54164], [47.379973, 8.497242], [47.393109, 8.474003], [47.398678, 8.471873], [47.366686, 8.542496], [47.371187, 8.524118], [47.380774, 8.512792], [47.359348, 8.597428], [47.406759, 8.587767], [47.407227, 8.547219], [47.360336, 8.553723], [47.383647, 8.512439], [47.363868, 8.566931], [47.349006, 8.565332], [47.387262, 8.485095], [47.364398, 8.548499], [47.393757, 8.53352], [47.382583, 8.528085], [47.371499, 8.535817], [47.357121, 8.556846], [47.3952, 8.535947], [47.396661, 8.518371], [47.398851, 8.536062], [47.370984, 8.531317], [47.360556, 8.556998], [47.405951, 8.557315], [47.399264, 8.515112], [47.386731, 8.544898], [47.430736, 8.550399], [47.373574, 8.51609], [47.374377, 8.54063], [47.355069, 8.557942], [47.366528, 8.540255], [47.352604, 8.525024], [47.38516, 8.532376], [47.368717, 8.509265], [47.398863, 8.533863], [47.376787, 8.535012], [47.405116, 8.480173], [47.360414, 8.526692], [47.36877, 8.547558], [47.352873, 8.557141], [47.409427, 8.538228], [47.362061, 8.551085], [47.376334, 8.487966], [47.375121, 8.545584], [47.368672, 8.51893], [47.359522, 8.557863], [47.374803, 8.55151], [47.382271, 8.501631], [47.385956, 8.498023], [47.341047, 8.524736], [47.37523, 8.533192], [47.407412, 8.585396], [47.370306, 8.513481], [47.413615, 8.553606], [47.40071, 8.548673], [47.379969, 8.514232], [47.372184, 8.530984], [47.369098, 8.525334], [47.399092, 8.541975], [47.385414, 8.475536], [47.368946, 8.540398], [47.390685, 8.539722], [47.353483, 8.576572], [47.364188, 8.556227], [47.367161, 8.539924], [47.375112, 8.545597], [47.372314, 8.563336], [47.391715, 8.51341], [47.39671, 8.517948], [47.381924, 8.529277], [47.385369, 8.529294], [47.386511, 8.52545], [47.376656, 8.544001], [47.424979, 8.541054], [47.409506, 8.57651], [47.369056, 8.523108], [47.373017, 8.531332], [47.400815, 8.548887], [47.375232, 8.552803], [47.407187, 8.585457], [47.379171, 8.526426], [47.381303, 8.511981], [47.408262, 8.547147], [47.39121, 8.523175], [47.414566, 8.564095], [47.365236, 8.502443], [47.414313, 8.551156], [47.353171, 8.577267], [47.395131, 8.5194], [47.37257, 8.514758], [47.340875, 8.5316], [47.419726, 8.533444], [47.407916, 8.544821], [47.386187, 8.548238], [47.377522, 8.529597], [47.391485, 8.486542], [47.406509, 8.583972], [47.404152, 8.563888], [47.38395, 8.545105], [47.351051, 8.576931], [47.3709, 8.526906], [47.367074, 8.523426], [47.357634, 8.554024], [47.351306, 8.560986], [47.367784, 8.539593], [47.393369, 8.49307], [47.372467, 8.542801], [47.349241, 8.532473], [47.367945, 8.546296], [47.361607, 8.603581], [47.376119, 8.528602], [47.361486, 8.56124], [47.403884, 8.569196], [47.365108, 8.553241], [47.365681, 8.552538], [47.415529, 8.563135], [47.36043, 8.547636], [47.363832, 8.533329], [47.355668, 8.555545], [47.381248, 8.53701], [47.360685, 8.529359], [47.406984, 8.534043], [47.381815, 8.529328], [47.373591, 8.524843], [47.360373, 8.53572], [47.382383, 8.548106], [47.377067, 8.544314], [47.335251, 8.541224], [47.391054, 8.522563], [47.374977, 8.540933], [47.361247, 8.549665], [47.384657, 8.531306], [47.373106, 8.550283], [47.418671, 8.507818], [47.357059, 8.535215], [47.370306, 8.548649], [47.400676, 8.492672], [47.404936, 8.492133], [47.370261, 8.548727], [47.379002, 8.542367], [47.371681, 8.536602], [47.367462, 8.522348], [47.349633, 8.577562], [47.373224, 8.536964], [47.412962, 8.538248], [47.357739, 8.534633], [47.363766, 8.547784], [47.370343, 8.524935], [47.334757, 8.529794], [47.354764, 8.526736], [47.40324, 8.547414], [47.379126, 8.559361], [47.40308, 8.486466], [47.381913, 8.491599], [47.37747, 8.49845], [47.381948, 8.516153], [47.381948, 8.516153], [47.376173, 8.534337], [47.405387, 8.504702], [47.400178, 8.493986], [47.368186, 8.529552], [47.379675, 8.530171], [47.405272, 8.558732], [47.385213, 8.47585], [47.40965, 8.542168], [47.377327, 8.499308], [47.398028, 8.474218], [47.37017, 8.539444], [47.376983, 8.490746], [47.389278, 8.478949], [47.36844, 8.498363], [47.359644, 8.548996], [47.372238, 8.535726], [47.349765, 8.561338], [47.372638, 8.534304], [47.37237, 8.534126], [47.37511, 8.52976], [47.373898, 8.540898], [47.357525, 8.507558], [47.4071, 8.553854], [47.384421, 8.486893], [47.417688, 8.545356], [47.351624, 8.560675], [47.384985, 8.508797], [47.372363, 8.503075], [47.37549, 8.524709], [47.413248, 8.5459], [47.362969, 8.563218], [47.38198, 8.536615], [47.379918, 8.490394], [47.369173, 8.538284], [47.369019, 8.502916], [47.382404, 8.540253], [47.367613, 8.538729], [47.362399, 8.567244], [47.384367, 8.507527], [47.415888, 8.515978], [47.367926, 8.532234], [47.38143, 8.537743], [47.378292, 8.541306], [47.342194, 8.529073], [47.37509, 8.526171], [47.375482, 8.514976], [47.413844, 8.545647], [47.409166, 8.483882], [47.375366, 8.501282], [47.405261, 8.55526], [47.39021, 8.533857], [47.37062, 8.53564], [47.361788, 8.560731], [47.414917, 8.54168], [47.383494, 8.531547], [47.33991, 8.5299], [47.372684, 8.550248], [47.372917, 8.53521], [47.370859, 8.535022], [47.381518, 8.503324], [47.36904, 8.541896], [47.378621, 8.501492], [47.382032, 8.53018], [47.375874, 8.537443], [47.352138, 8.558727], [47.373833, 8.536381], [47.387687, 8.529501], [47.413307, 8.545371], [47.378867, 8.510886], [47.347091, 8.563386], [47.408367, 8.544619], [47.366444, 8.600191], [47.378156, 8.509958], [47.394742, 8.525433], [47.384332, 8.507433], [47.381827, 8.530944], [47.369657, 8.467219], [47.378372, 8.54148], [47.371177, 8.51853], [47.374653, 8.538106], [47.377799, 8.507647], [47.390472, 8.47925], [47.353608, 8.526289], [47.398176, 8.53426], [47.380959, 8.53809], [47.40219, 8.508083], [47.376956, 8.535214], [47.377645, 8.511669], [47.42657, 8.548669], [47.373201, 8.503913], [47.346352, 8.564416], [47.372468, 8.526594], [47.374959, 8.547474], [47.379853, 8.55486], [47.381625, 8.517007], [47.425615, 8.494159], [47.392155, 8.477137], [47.372927, 8.531344], [47.402322, 8.535193], [47.391056, 8.479315], [47.364992, 8.555886], [47.370169, 8.54045], [47.364306, 8.520218], [47.376718, 8.543221], [47.39208, 8.499191], [47.363011, 8.557963], [47.384818, 8.531442], [47.413265, 8.541328], [47.429259, 8.488081], [47.369938, 8.552322], [47.357493, 8.553743], [47.369081, 8.547961], [47.367674, 8.545469], [47.358666, 8.526921], [47.431041, 8.550538], [47.373858, 8.519392], [47.37485, 8.545698], [47.368608, 8.560596], [47.382068, 8.54153], [47.37776, 8.537707], [47.422112, 8.538927], [47.381147, 8.538174], [47.378725, 8.54215], [47.370284, 8.545312], [47.375312, 8.522587], [47.398768, 8.506584], [47.373065, 8.50403], [47.375607, 8.548415], [47.378063, 8.543699], [47.403711, 8.560209], [47.368104, 8.560625], [47.381362, 8.517227], [47.370776, 8.508433], [47.364879, 8.558333], [47.36825, 8.533194], [47.381864, 8.536493], [47.407168, 8.586438], [47.39763, 8.532937], [47.373447, 8.561492], [47.356733, 8.557037], [47.361327, 8.517523], [47.357121, 8.521992], [47.375273, 8.490871], [47.417335, 8.522859], [47.382718, 8.486251], [47.37069, 8.524386], [47.373888, 8.544751], [47.374058, 8.516245], [47.388646, 8.520355], [47.389568, 8.48171], [47.374318, 8.544958], [47.348177, 8.562707], [47.376961, 8.541266], [47.393696, 8.502548], [47.388668, 8.485758], [47.374465, 8.539916], [47.376967, 8.543557], [47.370004, 8.556693], [47.369512, 8.526216], [47.391375, 8.537127], [47.405161, 8.480187], [47.379215, 8.537896], [47.369464, 8.526572], [47.393712, 8.533519], [47.358413, 8.583813], [47.377863, 8.529671], [47.367475, 8.556825], [47.375482, 8.530403], [47.371341, 8.534529], [47.372731, 8.530161], [47.356439, 8.55576], [47.373147, 8.552548], [47.378315, 8.541731], [47.368046, 8.530039], [47.378408, 8.509897], [47.36553, 8.539282], [47.383374, 8.515586], [47.399051, 8.533059], [47.410488, 8.529703], [47.373192, 8.503926], [47.35824, 8.554633], [47.391249, 8.522871], [47.36445, 8.566321], [47.373156, 8.503912], [47.374967, 8.531531], [47.372926, 8.53525], [47.427251, 8.491302], [47.370279, 8.52504], [47.370941, 8.508039], [47.349428, 8.562694], [47.375443, 8.549577], [47.325952, 8.513408], [47.38945, 8.511271], [47.363443, 8.575421], [47.39242, 8.489621], [47.376747, 8.527794], [47.374335, 8.524129], [47.413253, 8.538837], [47.402325, 8.5528], [47.408502, 8.546569], [47.368247, 8.51144], [47.356071, 8.532163], [47.391488, 8.505908], [47.403698, 8.557784], [47.370983, 8.520009], [47.352184, 8.523692], [47.398743, 8.538908], [47.341863, 8.5308], [47.351617, 8.563256], [47.41305, 8.535573], [47.369144, 8.525242], [47.369166, 8.518106], [47.358861, 8.516745], [47.400316, 8.48975], [47.418854, 8.507437], [47.361858, 8.560931], [47.383202, 8.506007], [47.409575, 8.542524], [47.387632, 8.552308], [47.410521, 8.569323], [47.381799, 8.51668], [47.359721, 8.558675], [47.381507, 8.571661], [47.42039, 8.551575], [47.343364, 8.519463], [47.369913, 8.552176], [47.376587, 8.544661], [47.360144, 8.596056], [47.39306, 8.489434], [47.404927, 8.593796], [47.394751, 8.525446], [47.406074, 8.552071], [47.403651, 8.487007], [47.370574, 8.555434], [47.39786, 8.554058], [47.384618, 8.524922], [47.36446, 8.5467], [47.375806, 8.52743], [47.377075, 8.527403], [47.409986, 8.543751], [47.367467, 8.496596], [47.380013, 8.557883], [47.370122, 8.563951], [47.412993, 8.546226], [47.403424, 8.570246], [47.3835, 8.574763], [47.396674, 8.545555], [47.373607, 8.553392], [47.372034, 8.547639], [47.384473, 8.549699], [47.363857, 8.55332], [47.381588, 8.537176], [47.37375, 8.535651], [47.364948, 8.521807], [47.368916, 8.501391], [47.38536, 8.528274], [47.366046, 8.560383], [47.35932, 8.522513], [47.366392, 8.541272], [47.392283, 8.506467], [47.38879, 8.530821], [47.368235, 8.546103], [47.400735, 8.592936], [47.409599, 8.54377], [47.411991, 8.546642], [47.414035, 8.545426], [47.386595, 8.541293], [47.415344, 8.4791], [47.382076, 8.529333], [47.391634, 8.513474], [47.399078, 8.535828], [47.409269, 8.543445], [47.395811, 8.506312], [47.366903, 8.544288], [47.396069, 8.526798], [47.419189, 8.505323], [47.372638, 8.534278], [47.399733, 8.586039], [47.412095, 8.517545], [47.38595, 8.480884], [47.376092, 8.540956], [47.391316, 8.536741], [47.382879, 8.529111], [47.368879, 8.53988], [47.406451, 8.587959], [47.352447, 8.55925], [47.379645, 8.519007], [47.403834, 8.576985], [47.385512, 8.520794], [47.414185, 8.546674], [47.40858, 8.531744], [47.382473, 8.487398], [47.380007, 8.520709], [47.399088, 8.480386], [47.379511, 8.516991], [47.419731, 8.548062], [47.408295, 8.577054], [47.365083, 8.534268], [47.384124, 8.541997], [47.383261, 8.540045], [47.373979, 8.544594], [47.379059, 8.528768], [47.398282, 8.537256], [47.359117, 8.524018], [47.381222, 8.503266], [47.364097, 8.54607], [47.360609, 8.557092], [47.36499, 8.508621], [47.349246, 8.562849], [47.378804, 8.531014], [47.371141, 8.51845], [47.376704, 8.524787], [47.371206, 8.542987], [47.371187, 8.524105], [47.384166, 8.527045], [47.382897, 8.529072], [47.357917, 8.520486], [47.406874, 8.574307], [47.374584, 8.525459], [47.388404, 8.486031], [47.370971, 8.546862], [47.427354, 8.552343], [47.369454, 8.526665], [47.389463, 8.521524], [47.374759, 8.539234], [47.370088, 8.525274], [47.376081, 8.535514], [47.363819, 8.535632], [47.37163, 8.547604], [47.410638, 8.544242], [47.370957, 8.531343], [47.429827, 8.486965], [47.392514, 8.491159], [47.36887, 8.53988], [47.385845, 8.498418], [47.386796, 8.547496], [47.36787, 8.56062], [47.390657, 8.489573], [47.363443, 8.546785], [47.377474, 8.485221], [47.427652, 8.54653], [47.405233, 8.481129], [47.364597, 8.554925], [47.376638, 8.52701], [47.391148, 8.523094], [47.397005, 8.530606], [47.370301, 8.491528], [47.399084, 8.533298], [47.375994, 8.541802], [47.371383, 8.515661], [47.375712, 8.53736], [47.372728, 8.518032], [47.429937, 8.539022], [47.37153, 8.536373], [47.389565, 8.540149], [47.345085, 8.529635], [47.38307, 8.530717], [47.406834, 8.481147], [47.408918, 8.548128], [47.378137, 8.526352], [47.377069, 8.544168], [47.368751, 8.552324], [47.424354, 8.553672], [47.430034, 8.549589], [47.377367, 8.539327], [47.382221, 8.515801], [47.373058, 8.536511], [47.401363, 8.504066], [47.414332, 8.541695], [47.414886, 8.541176], [47.365491, 8.531946], [47.378984, 8.54238], [47.364728, 8.530832], [47.408954, 8.550077], [47.409567, 8.537634], [47.40932, 8.572531], [47.37873, 8.542534], [47.419887, 8.547761], [47.355504, 8.556601], [47.380457, 8.525525], [47.375528, 8.548162], [47.377475, 8.526021], [47.382085, 8.529346], [47.402477, 8.546391], [47.37385, 8.536501], [47.387935, 8.539413], [47.361187, 8.563379], [47.379687, 8.529854], [47.369144, 8.525229], [47.370252, 8.525026], [47.361892, 8.560243], [47.37152, 8.526985], [47.335467, 8.519382], [47.381534, 8.54189], [47.371716, 8.536695], [47.37119, 8.523854], [47.369705, 8.508464], [47.370931, 8.548278], [47.37079, 8.546977], [47.362831, 8.548731], [47.401196, 8.534428], [47.399502, 8.495179], [47.36907, 8.528286], [47.375122, 8.518902], [47.369709, 8.467379], [47.425516, 8.515643], [47.373231, 8.531549], [47.378509, 8.540331], [47.348435, 8.534005], [47.371227, 8.528436], [47.361502, 8.561479], [47.392487, 8.491119], [47.403035, 8.580532], [47.384586, 8.509147], [47.376224, 8.537529], [47.402761, 8.577267], [47.394063, 8.544839], [47.402905, 8.550467], [47.361032, 8.553301], [47.409346, 8.544758], [47.372634, 8.494209], [47.367125, 8.539884], [47.360167, 8.579323], [47.357044, 8.590362], [47.370152, 8.548804], [47.405703, 8.535395], [47.417153, 8.523081], [47.363413, 8.534882], [47.392745, 8.522557], [47.366918, 8.492613], [47.380747, 8.525253], [47.370733, 8.515966], [47.402342, 8.499316], [47.375294, 8.540649], [47.356677, 8.535617], [47.36828, 8.524324], [47.388498, 8.470656], [47.371143, 8.529798], [47.377548, 8.528764], [47.37405, 8.544767], [47.405975, 8.548292], [47.370672, 8.530132], [47.374453, 8.541148], [47.367983, 8.540444], [47.420041, 8.509449], [47.380347, 8.487807], [47.391429, 8.52571], [47.371818, 8.541993], [47.370822, 8.515041], [47.405716, 8.585015], [47.377924, 8.528016], [47.40277, 8.501735], [47.404412, 8.572215], [47.427404, 8.546207], [47.385209, 8.507915], [47.404307, 8.580096], [47.377726, 8.527059], [47.387595, 8.49783], [47.373518, 8.534521], [47.3792, 8.53861], [47.368496, 8.499132], [47.370952, 8.536639], [47.376689, 8.540571], [47.338049, 8.528883], [47.359069, 8.526175], [47.399535, 8.497471], [47.371945, 8.547504], [47.414044, 8.556637], [47.403103, 8.555148], [47.409347, 8.5466], [47.335126, 8.519269], [47.36535, 8.531639], [47.368863, 8.514816], [47.375227, 8.515315], [47.395213, 8.484125], [47.378154, 8.532166], [47.371615, 8.515918], [47.369266, 8.525642], [47.377068, 8.583896], [47.357321, 8.58874], [47.393275, 8.530278], [47.404608, 8.557591], [47.3613, 8.532827], [47.357462, 8.521099], [47.409615, 8.576433], [47.419643, 8.504842], [47.331698, 8.516421], [47.378921, 8.542379], [47.37214, 8.556221], [47.367495, 8.537853], [47.388805, 8.49543], [47.366859, 8.543268], [47.402364, 8.579193], [47.367336, 8.535625], [47.40387, 8.568745], [47.364559, 8.566217], [47.404832, 8.483691], [47.370981, 8.535422], [47.369339, 8.525497], [47.393364, 8.494514], [47.413705, 8.552667], [47.402281, 8.552746], [47.359472, 8.522556], [47.372582, 8.534515], [47.411442, 8.54667], [47.391829, 8.518512], [47.393399, 8.500515], [47.392068, 8.500515], [47.386082, 8.504899], [47.340922, 8.52464], [47.416102, 8.552227], [47.418552, 8.547203], [47.376209, 8.536231], [47.369562, 8.548435], [47.364586, 8.566231], [47.373162, 8.551952], [47.359089, 8.525077], [47.36729, 8.544309], [47.353456, 8.576638], [47.368948, 8.532613], [47.418112, 8.554549], [47.365949, 8.532048], [47.374489, 8.540248], [47.381843, 8.531143], [47.414422, 8.483561], [47.369444, 8.52681], [47.409847, 8.545087], [47.377211, 8.523446], [47.356876, 8.522212], [47.374465, 8.495623], [47.400316, 8.543723], [47.377707, 8.51179], [47.381616, 8.530423], [47.386846, 8.51853], [47.373581, 8.54489], [47.373642, 8.575639], [47.387827, 8.527106], [47.37017, 8.518404], [47.378091, 8.497469], [47.390172, 8.511021], [47.399512, 8.517435], [47.414102, 8.550661], [47.362195, 8.5475], [47.387636, 8.488387], [47.396094, 8.52705], [47.374386, 8.521654], [47.366527, 8.545022], [47.398279, 8.537534], [47.409556, 8.572298], [47.372376, 8.540138], [47.426148, 8.554266], [47.385616, 8.482997], [47.3751, 8.540221], [47.358544, 8.517944], [47.378272, 8.527348], [47.392378, 8.516615], [47.423541, 8.554093], [47.366474, 8.547775], [47.397937, 8.506938], [47.390046, 8.491534], [47.378216, 8.541768], [47.378164, 8.493392], [47.366954, 8.544581], [47.374078, 8.540835], [47.379434, 8.525266], [47.387981, 8.491003], [47.370438, 8.526341], [47.39104, 8.47803], [47.36452, 8.532879], [47.387265, 8.518949], [47.377294, 8.535592], [47.370336, 8.507365], [47.387234, 8.500909], [47.358818, 8.533729], [47.379012, 8.483251], [47.372716, 8.538424], [47.360882, 8.517011], [47.388579, 8.525612], [47.365229, 8.533993], [47.374695, 8.549667], [47.362438, 8.547505], [47.404373, 8.573433], [47.370796, 8.546395], [47.418654, 8.507738], [47.367534, 8.541322], [47.416991, 8.538238], [47.382914, 8.500227], [47.381976, 8.505373], [47.363344, 8.548676], [47.404541, 8.484136], [47.427422, 8.546155], [47.362659, 8.549681], [47.393511, 8.512757], [47.357747, 8.554503], [47.359455, 8.592996], [47.381948, 8.516179], [47.353402, 8.572017], [47.383131, 8.531964], [47.376979, 8.542259], [47.37052, 8.558147], [47.386592, 8.525452], [47.382377, 8.514466], [47.40537, 8.578158], [47.378777, 8.542363], [47.370225, 8.532652], [47.384894, 8.495141], [47.37751, 8.50976], [47.402446, 8.535434], [47.356427, 8.573643], [47.366451, 8.551984], [47.370134, 8.548831], [47.384293, 8.526994], [47.376946, 8.527732], [47.37788, 8.531671], [47.408371, 8.54703], [47.352383, 8.510155], [47.333271, 8.529949], [47.419904, 8.554387], [47.380395, 8.548157], [47.36652, 8.544836], [47.393469, 8.526824], [47.389915, 8.487041], [47.360912, 8.513874], [47.374454, 8.540075], [47.388189, 8.480994], [47.386221, 8.518054], [47.367657, 8.578689], [47.425834, 8.493779], [47.377698, 8.544221], [47.369973, 8.552429], [47.39348, 8.529566], [47.377011, 8.527468], [47.366113, 8.533773], [47.384163, 8.497444], [47.413855, 8.545488], [47.392183, 8.495881], [47.412204, 8.524159], [47.375737, 8.488325], [47.407072, 8.55396], [47.369473, 8.528426], [47.354855, 8.556825], [47.376357, 8.521496], [47.366533, 8.556594], [47.400505, 8.543753], [47.370534, 8.514161], [47.425257, 8.510601], [47.359148, 8.521636], [47.379793, 8.506958], [47.400008, 8.494884], [47.37384, 8.50288], [47.377769, 8.537747], [47.37937, 8.537713], [47.38304, 8.548053], [47.402017, 8.499548], [47.375838, 8.518307], [47.38671, 8.528196], [47.399815, 8.587776], [47.399828, 8.504763], [47.370958, 8.53129], [47.373878, 8.54103], [47.410087, 8.544429], [47.380209, 8.513562], [47.354153, 8.511342], [47.385428, 8.508555], [47.377013, 8.539625], [47.416467, 8.546059], [47.371765, 8.54754], [47.373113, 8.535439], [47.387191, 8.51912], [47.386862, 8.535007], [47.370114, 8.518641], [47.353459, 8.576333], [47.391765, 8.485448], [47.419852, 8.482873], [47.380487, 8.493146], [47.370717, 8.516707], [47.391898, 8.515029], [47.38977, 8.511675], [47.370015, 8.543333], [47.370281, 8.532494], [47.357135, 8.507894], [47.339628, 8.53786], [47.373378, 8.530254], [47.366315, 8.533327], [47.400169, 8.50383], [47.377134, 8.54013], [47.353317, 8.576132], [47.386202, 8.518146], [47.364577, 8.566231], [47.375201, 8.522942], [47.369363, 8.525816], [47.369292, 8.525682], [47.363613, 8.547808], [47.369819, 8.556292], [47.356263, 8.523272], [47.371438, 8.547918], [47.388167, 8.491364], [47.347367, 8.532766], [47.41236, 8.523858], [47.361344, 8.550819], [47.392442, 8.502854], [47.378793, 8.531226], [47.378784, 8.531239], [47.375052, 8.518635], [47.403933, 8.534153], [47.376744, 8.543327], [47.38362, 8.539112], [47.377765, 8.531496], [47.385877, 8.542112], [47.373035, 8.475759], [47.378601, 8.509437], [47.428781, 8.545175], [47.376402, 8.52821], [47.375663, 8.543503], [47.3524, 8.534166], [47.364081, 8.528912], [47.411318, 8.570586], [47.360927, 8.520918], [47.364843, 8.56666], [47.403468, 8.584013], [47.417239, 8.544392], [47.385203, 8.54386], [47.380128, 8.527969], [47.412244, 8.554929], [47.386943, 8.490479], [47.398645, 8.533156], [47.367208, 8.559282], [47.359362, 8.586136], [47.354391, 8.531017], [47.336456, 8.51751], [47.377354, 8.539685], [47.3818, 8.516627], [47.349672, 8.561561], [47.379056, 8.542368], [47.382431, 8.537419], [47.370488, 8.518093], [47.363547, 8.546297], [47.361829, 8.560202], [47.363388, 8.520319], [47.37982, 8.536796], [47.391012, 8.521237], [47.418261, 8.5466], [47.369895, 8.556757], [47.352952, 8.572113], [47.366577, 8.540799], [47.412124, 8.55062], [47.378482, 8.527048], [47.381236, 8.537315], [47.371536, 8.518591], [47.38568, 8.521076], [47.390428, 8.525014], [47.357766, 8.534647], [47.419819, 8.500366], [47.414632, 8.520379], [47.405211, 8.593245], [47.398525, 8.494828], [47.359797, 8.532028], [47.363903, 8.547576], [47.378776, 8.496317], [47.36745, 8.489565], [47.384511, 8.538137], [47.386036, 8.493256], [47.349818, 8.561339], [47.386985, 8.516215], [47.359788, 8.594764], [47.353865, 8.512329], [47.359242, 8.535511], [47.39442, 8.519518], [47.390497, 8.491344], [47.357526, 8.571655], [47.370703, 8.517263], [47.37503, 8.545688], [47.335067, 8.526493], [47.405626, 8.549994], [47.359095, 8.50702], [47.370161, 8.548818], [47.370975, 8.53133], [47.419579, 8.502044], [47.381867, 8.547525], [47.374668, 8.52411], [47.366321, 8.544925], [47.365565, 8.539349], [47.377771, 8.521313], [47.364685, 8.537305], [47.370143, 8.548804], [47.385093, 8.530865], [47.377883, 8.511264], [47.370169, 8.532889], [47.375805, 8.539931], [47.353382, 8.576835], [47.400286, 8.591032], [47.362189, 8.597543], [47.366917, 8.492746], [47.371057, 8.521666], [47.374677, 8.549667], [47.370652, 8.524611], [47.40414, 8.562245], [47.349905, 8.566357], [47.398849, 8.47185], [47.378578, 8.541498], [47.379434, 8.483352], [47.421281, 8.511594], [47.372564, 8.534501], [47.378797, 8.528908], [47.394309, 8.536008], [47.377843, 8.513541], [47.377641, 8.498427], [47.376758, 8.559642], [47.390337, 8.525197], [47.392458, 8.523386], [47.382332, 8.488084], [47.378114, 8.510593], [47.387253, 8.50079], [47.364335, 8.533418], [47.366155, 8.540632], [47.367578, 8.535749], [47.367076, 8.53656], [47.379797, 8.526797], [47.370391, 8.518806], [47.374468, 8.546114], [47.39089, 8.521831], [47.373416, 8.534823], [47.413624, 8.477304], [47.406844, 8.550576], [47.357602, 8.521538], [47.352695, 8.572545], [47.377544, 8.504093], [47.380387, 8.547998], [47.401585, 8.553977], [47.397011, 8.480292], [47.362752, 8.519114], [47.372728, 8.542794], [47.377895, 8.50794], [47.383327, 8.543437], [47.410395, 8.542316], [47.375959, 8.536001], [47.366375, 8.544926], [47.409517, 8.549532], [47.394339, 8.493182], [47.393338, 8.4945], [47.403527, 8.588916], [47.382887, 8.530091], [47.379131, 8.544833], [47.363901, 8.531702], [47.376551, 8.525684], [47.371934, 8.522147], [47.379331, 8.527542], [47.416803, 8.568078], [47.381603, 8.515471], [47.404499, 8.580776], [47.378607, 8.505888], [47.380292, 8.512411], [47.363255, 8.533489], [47.377602, 8.542021], [47.382265, 8.512067], [47.414772, 8.552995], [47.426141, 8.544683], [47.364588, 8.508295], [47.383763, 8.532652], [47.353573, 8.554469], [47.384077, 8.489072], [47.353619, 8.554364], [47.373023, 8.534471], [47.425615, 8.494172], [47.383347, 8.515598], [47.382887, 8.531124], [47.39197, 8.517905], [47.376467, 8.514572], [47.420987, 8.50251], [47.390994, 8.488135], [47.378706, 8.528059], [47.37845, 8.510189], [47.395848, 8.532132], [47.366481, 8.553587], [47.395632, 8.536843], [47.388976, 8.515831], [47.393562, 8.472688], [47.372302, 8.494123], [47.402974, 8.576675], [47.37422, 8.524961], [47.380671, 8.502526], [47.380653, 8.502513], [47.366429, 8.547721], [47.379782, 8.527419], [47.390189, 8.543619], [47.39365, 8.472928], [47.380474, 8.519831], [47.380808, 8.528301], [47.414204, 8.546635], [47.36718, 8.539753], [47.429948, 8.538757], [47.419097, 8.506448], [47.372535, 8.535639], [47.372763, 8.534412], [47.392028, 8.541273], [47.410595, 8.550601], [47.398837, 8.54038], [47.378504, 8.528505], [47.373073, 8.574925], [47.360122, 8.547894], [47.361973, 8.560231], [47.389485, 8.540108], [47.371501, 8.521291], [47.400461, 8.503345], [47.375595, 8.528909], [47.377739, 8.537984], [47.381763, 8.516732], [47.374538, 8.540686], [47.373789, 8.544736], [47.373373, 8.519356], [47.425682, 8.497567], [47.421327, 8.54958], [47.359341, 8.592755], [47.379375, 8.511373], [47.385974, 8.535677], [47.366914, 8.54311], [47.374452, 8.540327], [47.394516, 8.589596], [47.426067, 8.554225], [47.430933, 8.539228], [47.359742, 8.522509], [47.365964, 8.53234], [47.375713, 8.481002], [47.368263, 8.495129], [47.416507, 8.514188], [47.345111, 8.534519], [47.357411, 8.527452], [47.378797, 8.544071], [47.365629, 8.549544], [47.401265, 8.545174], [47.403191, 8.486203], [47.367261, 8.545395], [47.368061, 8.546378], [47.38057, 8.500763], [47.364323, 8.536596], [47.34331, 8.519475], [47.376603, 8.54486], [47.366322, 8.565354], [47.371208, 8.531401], [47.368912, 8.533526], [47.396729, 8.529289], [47.357634, 8.554011], [47.369099, 8.547935], [47.387931, 8.486645], [47.3666, 8.541157], [47.36174, 8.52247], [47.369764, 8.533808], [47.414769, 8.519229], [47.368011, 8.533772], [47.361383, 8.602517], [47.365054, 8.538252], [47.411689, 8.545311], [47.393776, 8.487833], [47.364559, 8.566217], [47.399229, 8.542667], [47.377666, 8.509432], [47.406826, 8.550563], [47.411507, 8.525616], [47.372903, 8.555522], [47.378975, 8.542327], [47.396732, 8.486222], [47.402999, 8.486477], [47.373886, 8.513514], [47.377972, 8.526746], [47.365732, 8.557517], [47.391625, 8.514375], [47.364544, 8.508242], [47.365254, 8.545485], [47.363067, 8.535299], [47.377131, 8.533814], [47.403846, 8.56844], [47.387233, 8.488273], [47.386271, 8.521353], [47.359437, 8.521509], [47.390509, 8.527916], [47.387298, 8.485056], [47.365227, 8.545538], [47.385994, 8.542009], [47.363313, 8.55744], [47.361658, 8.573993], [47.405802, 8.590794], [47.374389, 8.526991], [47.36996, 8.549079], [47.351196, 8.576815], [47.369732, 8.540097], [47.369123, 8.541607], [47.376529, 8.527101], [47.375799, 8.545201], [47.393405, 8.500926], [47.400304, 8.590105], [47.409158, 8.547511], [47.367233, 8.541766], [47.347753, 8.52433], [47.384895, 8.531841], [47.399321, 8.542404], [47.383912, 8.529265], [47.377142, 8.540237], [47.374968, 8.547461], [47.375812, 8.495861], [47.375821, 8.495848], [47.392216, 8.524295], [47.362683, 8.548172], [47.362174, 8.550558], [47.372228, 8.537712], [47.374034, 8.544555], [47.37869, 8.54203], [47.380644, 8.525728], [47.364388, 8.555132], [47.38812, 8.519827], [47.391437, 8.513351], [47.369748, 8.520289], [47.380756, 8.512752], [47.394899, 8.490915], [47.355404, 8.503438], [47.356748, 8.506986], [47.419152, 8.506409], [47.374992, 8.52605], [47.36482, 8.525829], [47.372662, 8.532729], [47.35555, 8.512006], [47.386979, 8.534956], [47.365227, 8.545538], [47.36855, 8.563706], [47.412786, 8.543425], [47.390832, 8.5222], [47.373465, 8.542835], [47.333931, 8.515262], [47.39391, 8.505665], [47.374542, 8.549743], [47.378537, 8.541126], [47.370714, 8.535205], [47.365618, 8.539482], [47.384414, 8.531367], [47.404144, 8.564697], [47.384446, 8.547831], [47.426159, 8.50146], [47.386309, 8.531671], [47.376822, 8.535105], [47.371993, 8.489469], [47.391652, 8.477989], [47.39804, 8.532455], [47.366945, 8.536146], [47.370347, 8.513959], [47.391036, 8.489448], [47.388817, 8.527961], [47.413158, 8.509668], [47.376711, 8.534494], [47.353646, 8.554325], [47.378384, 8.496839], [47.35147, 8.560831], [47.388334, 8.53815], [47.367147, 8.506904], [47.370555, 8.508931], [47.383472, 8.573094], [47.413293, 8.509658], [47.362079, 8.516943], [47.389702, 8.471739], [47.385023, 8.485011], [47.395847, 8.506287], [47.386513, 8.529093], [47.373523, 8.512911], [47.369148, 8.532365], [47.389554, 8.546069], [47.35745, 8.521403], [47.357276, 8.521757], [47.379065, 8.508838], [47.409483, 8.53803], [47.397856, 8.481249], [47.387117, 8.545939], [47.372276, 8.540255], [47.374997, 8.523574], [47.365906, 8.556263], [47.383258, 8.484222], [47.40828, 8.506112], [47.360322, 8.573594], [47.359449, 8.507623], [47.375323, 8.485377], [47.369293, 8.540776], [47.369899, 8.529097], [47.362037, 8.597474], [47.400221, 8.494226], [47.372132, 8.513492], [47.419578, 8.548046], [47.402405, 8.487512], [47.378993, 8.542367], [47.372935, 8.475849], [47.37098, 8.546849], [47.381175, 8.491677], [47.40512, 8.559537], [47.422794, 8.49963], [47.392221, 8.517023], [47.373665, 8.553896], [47.369062, 8.525267], [47.404964, 8.549662], [47.372714, 8.519608], [47.366565, 8.541077], [47.369074, 8.527822], [47.417977, 8.559211], [47.364906, 8.531021], [47.37639, 8.537069], [47.36562, 8.549584], [47.398624, 8.494804], [47.372805, 8.532785], [47.381174, 8.538174], [47.380934, 8.512967], [47.388656, 8.482116], [47.386201, 8.518212], [47.369469, 8.529856], [47.369969, 8.531243], [47.334553, 8.539026], [47.402676, 8.49238], [47.404965, 8.594499], [47.382564, 8.514656], [47.358481, 8.517982], [47.369116, 8.528207], [47.422613, 8.510508], [47.371361, 8.527631], [47.354747, 8.514174], [47.375657, 8.516555], [47.378836, 8.532339], [47.364825, 8.566633], [47.396967, 8.545972], [47.389152, 8.543836], [47.385566, 8.548278], [47.369182, 8.527877], [47.367808, 8.541818], [47.372921, 8.551762], [47.390732, 8.508794], [47.395552, 8.532099], [47.355084, 8.5619], [47.330175, 8.512898], [47.385979, 8.51789], [47.364786, 8.547395], [47.368716, 8.540936], [47.337983, 8.538634], [47.385712, 8.47439], [47.357419, 8.559553], [47.37693, 8.537001], [47.370463, 8.52462], [47.408895, 8.545862], [47.382278, 8.54025], [47.364975, 8.531379], [47.381808, 8.513793], [47.399335, 8.521923], [47.407535, 8.546072], [47.367817, 8.560487], [47.371575, 8.526867], [47.417924, 8.541398], [47.391583, 8.487604], [47.373895, 8.538302], [47.334499, 8.538999], [47.343822, 8.51087], [47.371346, 8.546261], [47.355204, 8.530623], [47.389926, 8.512288], [47.412804, 8.522515], [47.417171, 8.544908], [47.387616, 8.500479], [47.391123, 8.522855], [47.375266, 8.560365], [47.394758, 8.525619], [47.351875, 8.55982], [47.36672, 8.541782], [47.360227, 8.534049], [47.376787, 8.540653], [47.373894, 8.536607], [47.376796, 8.540653], [47.413983, 8.561088], [47.367967, 8.535558], [47.404611, 8.560149], [47.383877, 8.542349], [47.357582, 8.52167], [47.366309, 8.540595], [47.391014, 8.515303], [47.381055, 8.492019], [47.354841, 8.523415], [47.372008, 8.529577], [47.372737, 8.537113], [47.368669, 8.528873], [47.357528, 8.521669], [47.424284, 8.543187], [47.381899, 8.528998], [47.414593, 8.551056], [47.394596, 8.486709], [47.369023, 8.537977], [47.335584, 8.519384], [47.387135, 8.494112], [47.398267, 8.473587], [47.363765, 8.551677], [47.344456, 8.530496], [47.379913, 8.556133], [47.404066, 8.534407], [47.376949, 8.543517], [47.391517, 8.513419], [47.353697, 8.558442], [47.349479, 8.536819], [47.405256, 8.557632], [47.387206, 8.554498], [47.364894, 8.519899], [47.408312, 8.584461], [47.363449, 8.55735], [47.379703, 8.515763], [47.385968, 8.518141], [47.377904, 8.548092], [47.378047, 8.548121], [47.373821, 8.531892], [47.411318, 8.570612], [47.405221, 8.559353], [47.377583, 8.543106], [47.383308, 8.543596], [47.369675, 8.529953], [47.402137, 8.495218], [47.341291, 8.524714], [47.359591, 8.522386], [47.414333, 8.551872], [47.354498, 8.523474], [47.370704, 8.549359], [47.387474, 8.48751], [47.389081, 8.494734], [47.363638, 8.566595], [47.37874, 8.519637], [47.3896, 8.521222], [47.372964, 8.520712], [47.359122, 8.507087], [47.37918, 8.529313], [47.349637, 8.561534], [47.376693, 8.526866], [47.420287, 8.509122], [47.370676, 8.537256], [47.387523, 8.518305], [47.364612, 8.537369], [47.37395, 8.544818], [47.39391, 8.505625], [47.403686, 8.539421], [47.388225, 8.520161], [47.412018, 8.546643], [47.377095, 8.529072], [47.392449, 8.52434], [47.393378, 8.499932], [47.393404, 8.500065], [47.353647, 8.524119], [47.35881, 8.557133], [47.387357, 8.514858], [47.376758, 8.528615], [47.410686, 8.571778], [47.346632, 8.528714], [47.334904, 8.518047], [47.394847, 8.525753], [47.390414, 8.510152], [47.372533, 8.478582], [47.419762, 8.504619], [47.343818, 8.535194], [47.375497, 8.526828], [47.394664, 8.518371], [47.421521, 8.499207], [47.378516, 8.541404], [47.362098, 8.547233], [47.369072, 8.541381], [47.390959, 8.522084], [47.402246, 8.486277], [47.365101, 8.534229], [47.359398, 8.553068], [47.375329, 8.516019], [47.3788, 8.509375], [47.337921, 8.530071], [47.362488, 8.522273], [47.342552, 8.531158], [47.374911, 8.532656], [47.362551, 8.548752], [47.417188, 8.544007], [47.398291, 8.532473], [47.361281, 8.55087], [47.383208, 8.543673], [47.37026, 8.548833], [47.368886, 8.535379], [47.366976, 8.518512], [47.370187, 8.548911], [47.35949, 8.568559], [47.379291, 8.515596], [47.387145, 8.473027], [47.352022, 8.525634], [47.362602, 8.520713], [47.353564, 8.554482], [47.35316, 8.525168], [47.399062, 8.542293], [47.407189, 8.586146], [47.383877, 8.527238], [47.382163, 8.508516], [47.39208, 8.499217], [47.350557, 8.578733], [47.384544, 8.493147], [47.414064, 8.529166], [47.361464, 8.549577], [47.386256, 8.480916], [47.401576, 8.531415], [47.368973, 8.540438], [47.368825, 8.535113], [47.409234, 8.547101], [47.402342, 8.499316], [47.413807, 8.571831], [47.364402, 8.546209], [47.396325, 8.543455], [47.393096, 8.513848], [47.387672, 8.517699], [47.389104, 8.517543], [47.397491, 8.532431], [47.415041, 8.52093], [47.358186, 8.554618], [47.383051, 8.500018], [47.372224, 8.515188], [47.402307, 8.499315], [47.333519, 8.518906], [47.413627, 8.481028], [47.385021, 8.495024], [47.429927, 8.538187], [47.383167, 8.532838], [47.404871, 8.576782], [47.375149, 8.491571], [47.363431, 8.548042], [47.364882, 8.530782], [47.362159, 8.547513], [47.366416, 8.54821], [47.40871, 8.546402], [47.381224, 8.537646], [47.371734, 8.519508], [47.410572, 8.550177], [47.4226, 8.511939], [47.397778, 8.533483], [47.37674, 8.559655], [47.349612, 8.561335], [47.337064, 8.519811], [47.402809, 8.498477], [47.36415, 8.563004], [47.420147, 8.554406], [47.410909, 8.561792], [47.367976, 8.524106], [47.380417, 8.517327], [47.382203, 8.545347], [47.404093, 8.564338], [47.390836, 8.478741], [47.369868, 8.556783], [47.363244, 8.55344], [47.385378, 8.529281], [47.360422, 8.550416], [47.370561, 8.54929], [47.360032, 8.550672], [47.405162, 8.559908], [47.352368, 8.573848], [47.362173, 8.550677], [47.388271, 8.520082], [47.380444, 8.534451], [47.348359, 8.562526], [47.377674, 8.542022], [47.36457, 8.554924], [47.384543, 8.534761], [47.39526, 8.5085], [47.402352, 8.499303], [47.398743, 8.495521], [47.360099, 8.554036], [47.375785, 8.516293], [47.377909, 8.541855], [47.405609, 8.549914], [47.397683, 8.541589], [47.379596, 8.554524], [47.399909, 8.543079], [47.373328, 8.528902], [47.382236, 8.537163], [47.393327, 8.525669], [47.355341, 8.600505], [47.375934, 8.553626], [47.390868, 8.522281], [47.377397, 8.501494], [47.349521, 8.532307], [47.386072, 8.49625], [47.374034, 8.544555], [47.363781, 8.574912], [47.371259, 8.52314], [47.381861, 8.531116], [47.381717, 8.531114], [47.3607, 8.529703], [47.402656, 8.55396], [47.374236, 8.524127], [47.384574, 8.545701], [47.387116, 8.485331], [47.368331, 8.529396], [47.381151, 8.537737], [47.372638, 8.534291], [47.372947, 8.528246], [47.373942, 8.540912], [47.403336, 8.536499], [47.355472, 8.553463], [47.372673, 8.52101], [47.345031, 8.529661], [47.383746, 8.573576], [47.380352, 8.528066], [47.372714, 8.534809], [47.37768, 8.537586], [47.388642, 8.525613], [47.367653, 8.534519], [47.41, 8.543155], [47.398034, 8.535926], [47.417574, 8.513547], [47.405673, 8.585756], [47.401406, 8.485651], [47.402039, 8.499018], [47.3831, 8.57245], [47.387799, 8.53296], [47.389125, 8.494801], [47.424032, 8.550763], [47.361502, 8.525775], [47.36114, 8.535497], [47.402307, 8.55276], [47.342679, 8.531055], [47.375472, 8.541844], [47.373757, 8.515775], [47.33799, 8.537919], [47.405683, 8.492082], [47.377143, 8.535456], [47.36997, 8.520545], [47.340144, 8.529944], [47.412004, 8.52442], [47.385816, 8.5248], [47.378867, 8.531042], [47.380266, 8.527654], [47.366456, 8.547774], [47.387006, 8.53403], [47.374895, 8.501656], [47.366492, 8.517363], [47.372655, 8.534463], [47.370601, 8.529999], [47.375779, 8.530356], [47.388063, 8.490912], [47.352202, 8.558543], [47.347448, 8.532754], [47.366268, 8.548565], [47.4059, 8.533544], [47.388064, 8.537204], [47.396127, 8.544431], [47.33544, 8.519342], [47.39739, 8.520227], [47.38969, 8.537476], [47.363397, 8.535544], [47.374367, 8.521694], [47.353481, 8.53215], [47.422574, 8.507856], [47.398201, 8.516203], [47.419392, 8.547763], [47.377946, 8.541829], [47.369893, 8.552348], [47.360813, 8.509954], [47.377349, 8.498884], [47.386725, 8.547415], [47.391677, 8.519409], [47.418862, 8.530643], [47.405564, 8.549966], [47.410694, 8.571871], [47.377109, 8.54838], [47.382121, 8.475591], [47.365028, 8.548407], [47.386289, 8.518413], [47.393301, 8.478683], [47.345223, 8.528341], [47.40806, 8.572597], [47.386487, 8.518404], [47.366877, 8.541401], [47.365141, 8.530906], [47.365692, 8.549519], [47.374455, 8.539996], [47.410408, 8.53622], [47.374167, 8.540917], [47.380881, 8.512873], [47.364687, 8.547433], [47.367227, 8.539595], [47.370952, 8.52324], [47.385863, 8.485597], [47.376776, 8.559603], [47.360169, 8.54771], [47.358193, 8.55209], [47.411957, 8.517939], [47.378335, 8.557464], [47.425473, 8.542098], [47.40459, 8.486615], [47.353356, 8.511882], [47.405155, 8.478809], [47.401175, 8.593025], [47.377856, 8.526664], [47.370188, 8.548805], [47.367863, 8.539859], [47.348513, 8.534298], [47.371443, 8.550182], [47.408963, 8.550064], [47.366246, 8.527275], [47.370533, 8.524833], [47.370981, 8.493898], [47.383211, 8.506034], [47.389213, 8.544089], [47.376939, 8.535147], [47.412095, 8.517531], [47.373339, 8.531538], [47.378279, 8.577896], [47.387709, 8.532971], [47.380726, 8.533186], [47.394715, 8.525459], [47.41627, 8.544134], [47.397907, 8.534148], [47.373617, 8.536377], [47.368735, 8.52473], [47.364552, 8.558631], [47.37916, 8.542808], [47.402115, 8.535241], [47.357915, 8.52169], [47.41217, 8.550422], [47.393264, 8.49373], [47.396575, 8.538002], [47.36187, 8.547599], [47.37537, 8.557984], [47.425266, 8.55336], [47.380699, 8.518856], [47.357091, 8.552544], [47.370209, 8.495724], [47.386185, 8.51808], [47.372562, 8.517565], [47.37276, 8.53383], [47.39222, 8.517169], [47.411163, 8.570834], [47.377769, 8.53772], [47.392405, 8.491263], [47.402744, 8.554161], [47.350029, 8.52427], [47.378853, 8.568943], [47.343391, 8.535675], [47.380608, 8.512232], [47.378624, 8.559152], [47.402343, 8.552801], [47.368478, 8.544228], [47.36453, 8.55442], [47.381443, 8.534445], [47.419943, 8.503549], [47.379577, 8.527282], [47.378803, 8.519612], [47.359861, 8.549768], [47.404884, 8.572688], [47.339488, 8.527999], [47.406934, 8.550552], [47.380343, 8.528053], [47.380159, 8.541782], [47.405149, 8.481564], [47.382235, 8.509471], [47.368936, 8.529091], [47.37708, 8.543943], [47.374457, 8.541664], [47.358158, 8.548184], [47.425091, 8.5482], [47.407946, 8.583288], [47.393266, 8.530317], [47.362261, 8.559311], [47.358035, 8.519482], [47.410913, 8.563223], [47.362234, 8.54713], [47.37125, 8.507714], [47.388292, 8.497394], [47.379402, 8.523902], [47.400448, 8.595527], [47.377524, 8.538854], [47.356494, 8.510092], [47.363048, 8.546671], [47.382572, 8.546189], [47.368498, 8.53075], [47.334839, 8.530617], [47.370535, 8.513089], [47.37656, 8.541827], [47.377958, 8.548067], [47.354809, 8.556877], [47.409034, 8.545454], [47.359165, 8.532187], [47.366753, 8.549581], [47.360729, 8.54747], [47.383099, 8.543777], [47.384408, 8.53191], [47.372638, 8.534317], [47.366045, 8.532341], [47.370134, 8.548804], [47.379923, 8.541936], [47.374338, 8.525719], [47.383895, 8.542376], [47.364659, 8.537185], [47.369031, 8.540943], [47.373129, 8.528064], [47.391003, 8.521316], [47.378376, 8.541057], [47.379901, 8.511874], [47.388476, 8.491053], [47.366278, 8.544739], [47.360423, 8.526692], [47.375982, 8.524971], [47.359733, 8.535866], [47.393815, 8.547231], [47.36692, 8.544368], [47.409858, 8.549553], [47.375659, 8.537319], [47.36386, 8.53419], [47.348158, 8.562773], [47.404169, 8.574025], [47.364406, 8.552286], [47.357786, 8.550414], [47.382612, 8.48703], [47.393465, 8.483442], [47.374313, 8.542641], [47.378408, 8.50995], [47.386265, 8.518094], [47.394393, 8.541414], [47.389598, 8.521487], [47.394616, 8.521615], [47.362521, 8.518739], [47.392292, 8.511289], [47.373515, 8.598319], [47.411841, 8.53788], [47.391317, 8.537576], [47.41394, 8.519371], [47.403475, 8.497417], [47.387121, 8.542734], [47.377127, 8.541825], [47.366648, 8.547434], [47.387801, 8.544086], [47.366362, 8.55565], [47.378493, 8.514335], [47.375322, 8.48539], [47.376968, 8.543438], [47.425715, 8.494029], [47.369434, 8.52591], [47.368159, 8.541825], [47.398054, 8.534747], [47.403164, 8.540324], [47.381402, 8.535888], [47.390705, 8.522383], [47.368573, 8.541794], [47.37754, 8.511363], [47.37647, 8.483797], [47.384418, 8.500045], [47.37305, 8.495886], [47.416318, 8.50838], [47.367688, 8.495012], [47.404466, 8.559324], [47.389719, 8.511436], [47.363675, 8.563696], [47.369181, 8.527944], [47.40663, 8.545709], [47.364042, 8.531109], [47.387573, 8.497353], [47.351896, 8.50542], [47.39208, 8.499204], [47.41785, 8.556611], [47.370116, 8.54883], [47.395203, 8.540385], [47.361261, 8.521705], [47.360502, 8.524033], [47.393279, 8.521204], [47.364217, 8.556042], [47.400404, 8.500748], [47.358006, 8.525372], [47.40537, 8.503616], [47.394068, 8.493362], [47.36735, 8.519883], [47.388428, 8.526284], [47.408528, 8.546596], [47.367086, 8.540148], [47.402921, 8.491086], [47.378665, 8.539963], [47.371651, 8.534972], [47.353552, 8.55382], [47.367227, 8.559164], [47.395058, 8.522472], [47.366471, 8.541525], [47.388298, 8.536255], [47.373808, 8.536116], [47.367354, 8.507821], [47.377787, 8.522438], [47.398169, 8.585952], [47.397323, 8.531155], [47.419941, 8.506664], [47.372332, 8.542812], [47.399304, 8.495201], [47.389324, 8.520991], [47.338638, 8.538872], [47.365466, 8.546893], [47.418871, 8.530643], [47.359525, 8.548199], [47.378557, 8.575214], [47.392249, 8.516957], [47.365626, 8.539495], [47.369195, 8.525561], [47.370188, 8.548805], [47.388198, 8.536333], [47.38143, 8.537743], [47.369248, 8.525615], [47.362278, 8.547303], [47.357428, 8.521866], [47.367499, 8.552496], [47.388226, 8.473856], [47.3752, 8.518294], [47.353944, 8.526918], [47.353339, 8.55539], [47.394946, 8.486809], [47.326952, 8.518998], [47.372573, 8.534528], [47.391362, 8.537524], [47.393343, 8.539194], [47.366831, 8.54336], [47.370645, 8.532039], [47.406952, 8.550592], [47.352175, 8.525651], [47.357567, 8.555373], [47.374967, 8.560584], [47.361421, 8.52572], [47.364194, 8.554718], [47.373668, 8.553618], [47.368878, 8.539986], [47.383166, 8.506059], [47.364473, 8.53689], [47.410611, 8.544215], [47.375951, 8.541629], [47.387701, 8.53664], [47.377628, 8.522157], [47.343673, 8.535271], [47.373362, 8.534782], [47.362278, 8.547303], [47.393907, 8.50593], [47.335101, 8.518078], [47.382874, 8.540037], [47.360784, 8.548239], [47.376515, 8.543706], [47.370463, 8.510135], [47.387692, 8.53664], [47.360297, 8.566934], [47.385445, 8.536382], [47.37654, 8.548633], [47.389009, 8.488798], [47.385684, 8.519685], [47.380702, 8.525279], [47.404902, 8.585408], [47.420677, 8.503935], [47.392692, 8.486394], [47.348213, 8.562682], [47.410606, 8.568941], [47.386872, 8.502147], [47.380368, 8.549958], [47.385317, 8.536618], [47.36922, 8.518094], [47.371688, 8.5196], [47.384119, 8.531176], [47.369061, 8.528325], [47.366033, 8.521193], [47.376125, 8.535581], [47.366544, 8.545141], [47.427326, 8.552396], [47.387418, 8.484688], [47.383507, 8.495405], [47.393449, 8.512637], [47.373825, 8.544697], [47.416543, 8.553098], [47.391388, 8.538584], [47.396832, 8.529807], [47.377639, 8.543769], [47.376147, 8.541779], [47.396581, 8.528848], [47.39218, 8.517539], [47.378526, 8.50982], [47.385424, 8.500197], [47.384859, 8.531827], [47.408071, 8.494527], [47.338351, 8.532131], [47.376918, 8.524023], [47.384484, 8.538137], [47.4043, 8.54476], [47.341495, 8.518313], [47.388236, 8.551208], [47.379108, 8.538741], [47.355124, 8.561557], [47.343651, 8.519521], [47.370516, 8.493664], [47.373852, 8.517128], [47.376104, 8.512923], [47.378208, 8.525533], [47.37603, 8.559587], [47.369314, 8.528171], [47.379962, 8.547353], [47.360568, 8.567801], [47.397113, 8.530568], [47.377377, 8.498819], [47.376193, 8.544507], [47.405672, 8.489312], [47.38334, 8.515413], [47.34919, 8.56212], [47.368682, 8.501347], [47.370322, 8.548874], [47.391038, 8.522297], [47.359647, 8.547712], [47.380292, 8.512411], [47.369624, 8.532468], [47.385656, 8.501315], [47.377402, 8.479234], [47.370736, 8.524308], [47.37893, 8.523349], [47.374602, 8.514813], [47.422306, 8.550647], [47.393348, 8.525391], [47.372882, 8.53607], [47.361307, 8.533978], [47.378208, 8.530326], [47.361501, 8.560685], [47.378795, 8.542376], [47.364838, 8.532542], [47.352965, 8.57807], [47.404941, 8.552948], [47.378924, 8.526885], [47.392792, 8.52334], [47.361406, 8.533994], [47.406467, 8.583666], [47.379768, 8.528981], [47.376601, 8.521395], [47.373289, 8.533059], [47.368912, 8.500862], [47.427923, 8.490573], [47.378867, 8.544205], [47.368067, 8.560704], [47.370079, 8.548882], [47.381158, 8.536982], [47.370202, 8.558498], [47.380548, 8.519674], [47.381821, 8.533499], [47.389171, 8.515226], [47.364209, 8.555936], [47.410476, 8.53283], [47.367904, 8.495956], [47.368336, 8.522127], [47.373163, 8.532977], [47.371428, 8.546077], [47.394722, 8.540878], [47.348286, 8.562643], [47.35402, 8.559362], [47.357721, 8.534633], [47.359252, 8.535379], [47.412781, 8.51728], [47.371632, 8.472726], [47.326919, 8.517727], [47.358633, 8.555846], [47.341684, 8.530638], [47.390923, 8.523116], [47.377449, 8.500701], [47.367678, 8.495078], [47.392034, 8.517827], [47.388621, 8.481943], [47.415097, 8.510118], [47.386803, 8.489086], [47.380336, 8.536383], [47.391384, 8.537087], [47.426172, 8.554598], [47.377422, 8.541977], [47.397603, 8.586722], [47.398271, 8.537428], [47.370057, 8.564162], [47.369662, 8.525636], [47.375105, 8.516822], [47.367829, 8.546227], [47.394769, 8.52546], [47.372713, 8.517714], [47.379082, 8.522478], [47.381252, 8.51745], [47.357927, 8.519506], [47.371674, 8.535423], [47.376436, 8.529376], [47.37619, 8.529729], [47.360518, 8.549795], [47.350895, 8.53444], [47.404378, 8.550723], [47.414152, 8.518792], [47.373897, 8.544698], [47.370382, 8.518819], [47.41434, 8.572452], [47.41258, 8.525306], [47.369771, 8.543487], [47.422788, 8.535959], [47.365045, 8.531579], [47.359995, 8.522408], [47.382391, 8.548225], [47.364852, 8.56666], [47.377626, 8.522356], [47.37767, 8.519549], [47.378725, 8.527967], [47.38906, 8.517383], [47.373275, 8.535482], [47.385484, 8.530423], [47.378124, 8.527729], [47.381968, 8.529304], [47.362326, 8.553474], [47.358358, 8.583891], [47.36591, 8.532365], [47.421136, 8.50189], [47.397277, 8.50821], [47.371309, 8.546286], [47.392487, 8.491092], [47.368557, 8.524488], [47.37473, 8.543219], [47.390842, 8.522108], [47.383384, 8.548815], [47.378816, 8.559831], [47.394722, 8.540852], [47.382665, 8.575513], [47.378283, 8.541359], [47.37181, 8.540047], [47.375083, 8.553277], [47.374167, 8.54473], [47.40376, 8.548551], [47.377999, 8.529541], [47.378904, 8.530844], [47.379721, 8.51183], [47.370696, 8.537045], [47.371034, 8.518395], [47.369455, 8.526586], [47.374948, 8.541131], [47.386674, 8.473415], [47.37235, 8.545659], [47.356598, 8.552388], [47.368663, 8.552057], [47.371521, 8.519199], [47.373082, 8.532989], [47.367901, 8.49634], [47.388493, 8.486219], [47.373906, 8.544778], [47.408808, 8.546483], [47.378077, 8.483193], [47.377851, 8.507886], [47.376456, 8.509884], [47.384552, 8.503014], [47.370131, 8.539721], [47.372603, 8.53327], [47.346434, 8.564325], [47.386743, 8.519958], [47.40921, 8.544901], [47.366576, 8.545552], [47.378389, 8.54062], [47.405972, 8.590069], [47.376536, 8.534901], [47.378702, 8.543619], [47.350109, 8.56108], [47.39898, 8.54147], [47.384215, 8.528529], [47.357224, 8.508055], [47.382779, 8.531122], [47.382063, 8.536418], [47.347438, 8.532873], [47.355047, 8.523512], [47.376042, 8.565718], [47.341, 8.533601], [47.369108, 8.547949], [47.369809, 8.4932], [47.361802, 8.560228], [47.412722, 8.545425], [47.371444, 8.527368], [47.411682, 8.509784], [47.370714, 8.535205], [47.405851, 8.591312], [47.392781, 8.523485], [47.424729, 8.553031], [47.379128, 8.522413], [47.394171, 8.48996], [47.36951, 8.543535], [47.378, 8.511226], [47.335607, 8.540649], [47.387461, 8.545735], [47.37209, 8.549361], [47.39865, 8.539197], [47.383569, 8.54074], [47.387292, 8.545519], [47.402091, 8.552769], [47.371104, 8.537689], [47.359437, 8.521509], [47.402545, 8.535462], [47.378101, 8.526418], [47.404451, 8.594633], [47.375427, 8.526628], [47.366099, 8.562331], [47.399594, 8.543032], [47.400769, 8.542447], [47.383992, 8.548179], [47.409278, 8.550057], [47.375792, 8.527059], [47.404796, 8.483717], [47.350275, 8.560647], [47.420824, 8.501566], [47.370188, 8.539444], [47.361291, 8.547918], [47.378274, 8.509749], [47.38309, 8.528625], [47.373876, 8.536554], [47.367119, 8.52344], [47.390887, 8.486093], [47.358256, 8.550159], [47.387271, 8.500804], [47.395888, 8.494021], [47.362988, 8.549158], [47.381184, 8.491664], [47.377014, 8.539532], [47.367517, 8.494042], [47.406566, 8.576341], [47.358918, 8.516429], [47.361084, 8.549847], [47.366079, 8.496899], [47.354892, 8.558573], [47.373727, 8.53328], [47.370179, 8.548792], [47.405687, 8.591494], [47.375141, 8.518809], [47.38246, 8.492815], [47.378156, 8.509892], [47.387596, 8.486929], [47.364524, 8.531516], [47.418625, 8.547125], [47.371283, 8.529178], [47.412306, 8.568924], [47.374726, 8.527541], [47.369454, 8.531405], [47.378504, 8.566022], [47.35477, 8.57476], [47.367742, 8.545934], [47.415067, 8.551371], [47.373235, 8.529165], [47.431152, 8.515995], [47.376792, 8.543023], [47.380155, 8.527916], [47.361982, 8.505132], [47.349907, 8.570699], [47.347365, 8.566674], [47.407103, 8.545136], [47.381076, 8.518056], [47.383468, 8.483855], [47.376024, 8.577663], [47.36652, 8.561625], [47.366391, 8.540398], [47.402884, 8.554534], [47.419156, 8.505999], [47.389492, 8.521299], [47.393436, 8.524651], [47.351771, 8.559408], [47.399573, 8.50509], [47.358239, 8.571405], [47.372099, 8.521886], [47.403926, 8.572257], [47.376202, 8.544508], [47.368938, 8.540279], [47.35855, 8.534491], [47.356829, 8.509861], [47.422318, 8.510263], [47.370621, 8.535481], [47.371499, 8.518656], [47.374297, 8.537688], [47.415698, 8.513138], [47.36036, 8.566936], [47.412131, 8.569305], [47.380151, 8.537849], [47.377206, 8.540105], [47.358917, 8.516469], [47.378782, 8.516076], [47.335582, 8.540516], [47.378689, 8.523159], [47.399852, 8.516714], [47.377034, 8.524105], [47.35383, 8.534169], [47.365055, 8.545653], [47.374397, 8.518556], [47.360354, 8.564804], [47.38143, 8.537743], [47.336422, 8.537265], [47.372792, 8.534228], [47.411115, 8.526138], [47.372027, 8.554882], [47.417282, 8.544579], [47.365728, 8.561608], [47.39713, 8.530648], [47.36556, 8.553899], [47.392004, 8.500686], [47.413977, 8.541144], [47.369257, 8.525668], [47.392253, 8.524163], [47.381441, 8.517467], [47.371277, 8.525113], [47.372696, 8.534888], [47.362477, 8.533963], [47.406351, 8.520025], [47.38419, 8.53123], [47.3416, 8.528121], [47.373894, 8.538421], [47.410408, 8.572567], [47.388579, 8.484644], [47.378555, 8.526877], [47.383202, 8.506033], [47.370602, 8.522279], [47.403339, 8.498593], [47.357441, 8.534746], [47.351609, 8.56319], [47.364276, 8.566648], [47.361322, 8.551308], [47.388809, 8.515391], [47.414225, 8.53402], [47.389758, 8.471514], [47.368258, 8.551214], [47.373046, 8.532988], [47.366427, 8.541432], [47.383015, 8.530836], [47.389285, 8.488128], [47.378473, 8.540238], [47.364559, 8.566217], [47.39805, 8.535184], [47.374215, 8.524458], [47.380596, 8.53456], [47.368429, 8.498522], [47.38344, 8.482967], [47.374319, 8.52491], [47.384928, 8.489513], [47.415242, 8.506132], [47.366112, 8.548892], [47.362807, 8.567901], [47.342356, 8.530929], [47.37657, 8.541787], [47.365515, 8.536064], [47.365608, 8.518616], [47.37569, 8.539677], [47.357601, 8.521644], [47.377265, 8.538703], [47.341549, 8.519254], [47.369404, 8.533827], [47.361168, 8.557858], [47.363559, 8.567268], [47.375655, 8.53961], [47.368273, 8.546793], [47.403301, 8.50266], [47.377013, 8.539611], [47.415538, 8.563082], [47.369187, 8.527361], [47.383046, 8.549285], [47.413548, 8.546568], [47.329661, 8.516936], [47.344807, 8.533388], [47.365648, 8.598863], [47.378633, 8.559152], [47.385289, 8.481401], [47.376983, 8.526713], [47.376381, 8.527574], [47.364335, 8.529605], [47.409826, 8.538819], [47.365054, 8.508569], [47.390975, 8.522389], [47.366806, 8.543187], [47.371007, 8.516475], [47.39804, 8.535277], [47.369115, 8.54158], [47.36434, 8.532889], [47.412957, 8.537797], [47.401279, 8.551202], [47.3701, 8.504699], [47.388264, 8.497472], [47.381812, 8.489862], [47.377522, 8.550388], [47.372619, 8.53441], [47.366226, 8.532213], [47.414787, 8.519256], [47.358012, 8.532388], [47.387934, 8.520499], [47.392688, 8.539101], [47.378863, 8.542788], [47.38712, 8.519026], [47.362639, 8.548026], [47.361572, 8.576401], [47.376626, 8.543391], [47.361351, 8.534112], [47.3757, 8.545212], [47.366565, 8.544824], [47.39771, 8.533044], [47.402146, 8.552757], [47.385075, 8.478192], [47.372099, 8.521833], [47.388775, 8.485827], [47.410208, 8.565408], [47.389753, 8.512615], [47.376436, 8.529323], [47.377679, 8.522476], [47.371343, 8.492714], [47.333379, 8.535681], [47.375766, 8.518279], [47.388431, 8.487078], [47.397087, 8.530501], [47.37104, 8.543394], [47.373988, 8.544581], [47.378301, 8.509802], [47.360947, 8.548136], [47.387149, 8.535066], [47.339185, 8.525783], [47.385692, 8.519738], [47.424515, 8.522568], [47.364351, 8.496918], [47.365583, 8.513532], [47.33819, 8.530116], [47.402092, 8.552743], [47.375512, 8.5638], [47.382232, 8.541348], [47.399887, 8.506103], [47.368781, 8.521752], [47.403867, 8.585479], [47.360443, 8.566792], [47.370734, 8.51684], [47.380456, 8.54833], [47.389542, 8.512041], [47.370336, 8.513164], [47.389018, 8.488825], [47.378403, 8.520094], [47.407196, 8.585458], [47.374822, 8.54583], [47.374798, 8.518869], [47.390923, 8.522123], [47.403853, 8.57688], [47.350721, 8.60194], [47.419693, 8.54826], [47.366805, 8.532807], [47.398056, 8.535463], [47.367284, 8.534485], [47.410219, 8.538138], [47.381935, 8.529039], [47.401703, 8.54823], [47.370335, 8.53905], [47.391764, 8.486495], [47.415019, 8.560951], [47.419578, 8.548085], [47.371287, 8.524041], [47.389016, 8.48901], [47.387312, 8.547188], [47.395971, 8.52673], [47.371774, 8.54284], [47.373197, 8.539877], [47.395104, 8.522261], [47.371495, 8.53632], [47.378031, 8.528098], [47.367543, 8.560905], [47.379704, 8.567438], [47.41556, 8.558948], [47.377684, 8.528607], [47.395725, 8.516511], [47.360281, 8.523552], [47.371797, 8.523363], [47.396079, 8.520929], [47.397735, 8.541788], [47.378119, 8.510037], [47.369144, 8.525242], [47.364724, 8.522729], [47.376721, 8.522946], [47.389494, 8.519074], [47.374095, 8.520947], [47.370179, 8.548805], [47.400035, 8.54585], [47.376968, 8.542471], [47.350114, 8.534344], [47.370708, 8.470364], [47.335722, 8.540003], [47.37505, 8.544603], [47.398479, 8.500789], [47.373429, 8.517212], [47.401703, 8.552032], [47.375563, 8.516951], [47.375555, 8.524499], [47.418038, 8.527406], [47.376294, 8.499155], [47.3818, 8.529963], [47.37651, 8.52526], [47.377652, 8.522449], [47.397293, 8.493797], [47.422373, 8.553048], [47.412699, 8.540296], [47.369072, 8.529054], [47.413874, 8.527347], [47.359642, 8.58691], [47.383325, 8.53994], [47.365185, 8.538586], [47.348486, 8.562409], [47.378957, 8.54234], [47.376944, 8.554349], [47.423142, 8.546026], [47.414946, 8.544292], [47.404357, 8.572306], [47.386141, 8.548316], [47.417981, 8.554175], [47.367876, 8.545963], [47.410909, 8.567397], [47.376392, 8.510068], [47.384892, 8.50906], [47.380414, 8.528134], [47.409063, 8.544249], [47.369125, 8.548002], [47.366375, 8.541179], [47.381679, 8.537099], [47.38149, 8.503456], [47.354107, 8.561548], [47.414444, 8.553425], [47.364079, 8.546096], [47.413901, 8.551028], [47.399816, 8.495291], [47.407702, 8.57887], [47.370182, 8.51328], [47.36358, 8.533323], [47.387271, 8.488009], [47.37017, 8.548805], [47.386545, 8.498524], [47.377796, 8.537747], [47.39056, 8.522433], [47.410393, 8.548225], [47.398491, 8.538889], [47.418316, 8.510209], [47.362312, 8.547423], [47.366492, 8.547709], [47.36765, 8.495262], [47.390433, 8.53969], [47.388535, 8.52067], [47.388161, 8.520252], [47.400925, 8.517411], [47.419484, 8.500651], [47.371732, 8.536854], [47.364528, 8.547165], [47.406002, 8.590586], [47.410596, 8.531613], [47.384126, 8.516025], [47.374386, 8.538683], [47.380901, 8.55818], [47.376747, 8.534508], [47.373297, 8.553822], [47.364978, 8.563843], [47.379463, 8.559858], [47.383471, 8.548128], [47.39922, 8.54264], [47.367119, 8.54424], [47.388343, 8.470825], [47.382582, 8.537621], [47.366945, 8.560415], [47.379484, 8.527611], [47.375456, 8.554768], [47.36496, 8.531061], [47.382205, 8.540341], [47.413901, 8.518761], [47.383049, 8.486376], [47.385084, 8.530891], [47.387814, 8.485715], [47.363609, 8.554798], [47.410458, 8.532896], [47.365108, 8.553254], [47.376969, 8.514702], [47.370973, 8.531582], [47.362645, 8.504417], [47.375309, 8.515211], [47.405241, 8.504898], [47.384691, 8.50262], [47.419842, 8.556162], [47.33536, 8.54112], [47.370161, 8.548791], [47.378791, 8.491762], [47.387679, 8.500481], [47.377875, 8.519845], [47.375205, 8.491426], [47.402551, 8.547969], [47.359241, 8.522273], [47.383868, 8.475426], [47.389473, 8.511696], [47.352335, 8.524886], [47.42705, 8.491656], [47.413751, 8.546016], [47.375831, 8.489797], [47.375857, 8.541071], [47.419614, 8.548099], [47.404276, 8.484502], [47.381405, 8.503918], [47.384501, 8.53823], [47.374068, 8.544741], [47.359232, 8.52226], [47.385879, 8.519001], [47.373143, 8.537002], [47.362529, 8.518858], [47.386434, 8.534601], [47.391233, 8.51593], [47.384367, 8.550346], [47.387348, 8.486421], [47.382873, 8.540103], [47.416544, 8.54178], [47.409588, 8.576432], [47.381522, 8.492068], [47.386493, 8.517808], [47.390758, 8.55085], [47.392115, 8.511974], [47.392116, 8.511921], [47.408526, 8.550585], [47.37814, 8.509693], [47.412104, 8.566601], [47.378786, 8.542376], [47.423852, 8.544172], [47.335088, 8.52996], [47.393653, 8.541598], [47.401969, 8.545824], [47.398738, 8.532867], [47.370316, 8.524948], [47.397043, 8.530341], [47.383884, 8.529304], [47.392228, 8.493909], [47.400254, 8.547392], [47.369098, 8.547975], [47.39111, 8.489197], [47.367427, 8.558016], [47.376009, 8.488992], [47.368483, 8.496656], [47.40413, 8.559662], [47.427123, 8.546347], [47.352459, 8.524187], [47.372429, 8.546839], [47.372638, 8.534264], [47.360299, 8.567689], [47.343301, 8.519488], [47.414, 8.519717], [47.417568, 8.509386], [47.400967, 8.550944], [47.355431, 8.552151], [47.380462, 8.512481], [47.372683, 8.535232], [47.372576, 8.553066], [47.389512, 8.512359], [47.42657, 8.548669], [47.361444, 8.602769], [47.419753, 8.501677], [47.388645, 8.520421], [47.367876, 8.496061], [47.391089, 8.479594], [47.386033, 8.517931], [47.39675, 8.509762], [47.359161, 8.535496], [47.364231, 8.533946], [47.367981, 8.546363], [47.414725, 8.519148], [47.37253, 8.553078], [47.402508, 8.535501], [47.383664, 8.536438], [47.386585, 8.496181], [47.374256, 8.523929], [47.401844, 8.55234], [47.36607, 8.496873], [47.382418, 8.548199], [47.36525, 8.538455], [47.386665, 8.541533], [47.368987, 8.538016], [47.386515, 8.547728], [47.378697, 8.510724], [47.406853, 8.550603], [47.354977, 8.552526], [47.411697, 8.53785], [47.393259, 8.530105], [47.398466, 8.53873], [47.399067, 8.589655], [47.371389, 8.550154], [47.386906, 8.490518], [47.422873, 8.541236], [47.385933, 8.519055], [47.386098, 8.518674], [47.400798, 8.54886], [47.42244, 8.550743], [47.364487, 8.566282], [47.380036, 8.535741], [47.393274, 8.473715], [47.415866, 8.507616], [47.393796, 8.545442], [47.373349, 8.542806], [47.357312, 8.51306], [47.402032, 8.5801], [47.405588, 8.550245], [47.402827, 8.553897], [47.350978, 8.577075], [47.38922, 8.470312], [47.363443, 8.533612], [47.38244, 8.514534], [47.393487, 8.544893], [47.365133, 8.567354], [47.405971, 8.481156], [47.369042, 8.528351], [47.40782, 8.580542], [47.369256, 8.519948], [47.365232, 8.538441], [47.423483, 8.551719], [47.422304, 8.497182], [47.391591, 8.514136], [47.406853, 8.550576], [47.364887, 8.548152], [47.407706, 8.538457], [47.335952, 8.529991], [47.394542, 8.540874], [47.366932, 8.54311], [47.410731, 8.571779], [47.378227, 8.510052], [47.411124, 8.546094], [47.36916, 8.525454], [47.339547, 8.520735], [47.369968, 8.547357], [47.378098, 8.520975], [47.394438, 8.538488], [47.416565, 8.547996], [47.365429, 8.547025], [47.370598, 8.524609], [47.382447, 8.499184], [47.34315, 8.530681], [47.365721, 8.548434], [47.368857, 8.547864], [47.374452, 8.549702], [47.393871, 8.504962], [47.425228, 8.50005], [47.369662, 8.52565], [47.388513, 8.478007], [47.412112, 8.563884], [47.382483, 8.530003], [47.381836, 8.533751], [47.386501, 8.523636], [47.379919, 8.527276], [47.389678, 8.511872], [47.390294, 8.509474], [47.366409, 8.541405], [47.420782, 8.549184], [47.370122, 8.564018], [47.379062, 8.489582], [47.36653, 8.540918], [47.395062, 8.503582], [47.387071, 8.519528], [47.396366, 8.525824], [47.357916, 8.521558], [47.386832, 8.490835], [47.372217, 8.532216], [47.367962, 8.540828], [47.381644, 8.540767], [47.341183, 8.530349], [47.396014, 8.483068], [47.359902, 8.521744], [47.365949, 8.545314], [47.404424, 8.533606], [47.364235, 8.536408], [47.421887, 8.510175], [47.416081, 8.56919], [47.405915, 8.537691], [47.402194, 8.496915], [47.414133, 8.518924], [47.36443, 8.530005], [47.41037, 8.542143], [47.340526, 8.531381], [47.36359, 8.519926], [47.36554, 8.532516], [47.378274, 8.526196], [47.382425, 8.481755], [47.420035, 8.546412], [47.408144, 8.546337], [47.40501, 8.585464], [47.386629, 8.534843], [47.385375, 8.530526], [47.373422, 8.561359], [47.408874, 8.539647], [47.359829, 8.522881], [47.370423, 8.497939], [47.414285, 8.53911], [47.388799, 8.491086], [47.425738, 8.553873], [47.411962, 8.527957], [47.361726, 8.55415], [47.386182, 8.518344], [47.424511, 8.553331], [47.403926, 8.572257], [47.395348, 8.525975], [47.374607, 8.532491], [47.36993, 8.521934], [47.365277, 8.538389], [47.385824, 8.532469], [47.422487, 8.510479], [47.388588, 8.483691], [47.397463, 8.533556], [47.37841, 8.500905], [47.37953, 8.529413], [47.369445, 8.525751], [47.353465, 8.576611], [47.381033, 8.532119], [47.409539, 8.540628], [47.364901, 8.547583], [47.352202, 8.558543], [47.355415, 8.531184], [47.390001, 8.49144], [47.364202, 8.547357], [47.416719, 8.514656], [47.373129, 8.534672], [47.394229, 8.488424], [47.419835, 8.504488], [47.361802, 8.560228], [47.360748, 8.550144], [47.369092, 8.52303], [47.414345, 8.551621], [47.346459, 8.528896], [47.376341, 8.526011], [47.39824, 8.53699], [47.376944, 8.541199], [47.357102, 8.522111], [47.385982, 8.498156], [47.409114, 8.545496], [47.377842, 8.507899], [47.410149, 8.541674], [47.388593, 8.535506], [47.366396, 8.552089], [47.399753, 8.588543], [47.41231, 8.558297], [47.375148, 8.513235], [47.366912, 8.544302], [47.397243, 8.531154], [47.417081, 8.523026], [47.368496, 8.499159], [47.343559, 8.530239], [47.382414, 8.514361], [47.424717, 8.495971], [47.409603, 8.576711], [47.380607, 8.525807], [47.386996, 8.547367], [47.373361, 8.524467], [47.370179, 8.548792], [47.41969, 8.508474], [47.378863, 8.542735], [47.375177, 8.518744], [47.369275, 8.541769], [47.384206, 8.516106], [47.417824, 8.505004], [47.38247, 8.540943], [47.360139, 8.547987], [47.399813, 8.591539], [47.378809, 8.52287], [47.376228, 8.54088], [47.42699, 8.55549], [47.394464, 8.525295], [47.368941, 8.541881], [47.418516, 8.510041], [47.354321, 8.575584], [47.368198, 8.556456], [47.370452, 8.527665], [47.370152, 8.548791], [47.376222, 8.56755], [47.38234, 8.540344], [47.401295, 8.534443], [47.342032, 8.529083], [47.393203, 8.52458], [47.369265, 8.541848], [47.35911, 8.526613], [47.352747, 8.558065], [47.329331, 8.515633], [47.386825, 8.49061], [47.3901, 8.510053], [47.381561, 8.582575], [47.402133, 8.584368], [47.387383, 8.487587], [47.373235, 8.533005], [47.36903, 8.541049], [47.385529, 8.529457], [47.369329, 8.541796], [47.360933, 8.530754], [47.351041, 8.576997], [47.397194, 8.587216], [47.35553, 8.558587], [47.387316, 8.500778], [47.410321, 8.548197], [47.406853, 8.55059], [47.361185, 8.532692], [47.356936, 8.535848], [47.36641, 8.545072], [47.369538, 8.526322], [47.362627, 8.534244], [47.380027, 8.48343], [47.356202, 8.523059], [47.362185, 8.54754], [47.372749, 8.534982], [47.378615, 8.541472], [47.391744, 8.542817], [47.390566, 8.489716], [47.37519, 8.518334], [47.388385, 8.536522], [47.407139, 8.592055], [47.377153, 8.540091], [47.381532, 8.513522], [47.378212, 8.547833], [47.419587, 8.548033], [47.396906, 8.520032], [47.3849, 8.531271], [47.406503, 8.552384], [47.373296, 8.484675], [47.385266, 8.508538], [47.372719, 8.542807], [47.39311, 8.495728], [47.378516, 8.54143], [47.346495, 8.564498], [47.405923, 8.557447], [47.430381, 8.540582], [47.39178, 8.518935], [47.414299, 8.518517], [47.386857, 8.488094], [47.387047, 8.485912], [47.369783, 8.509803], [47.391359, 8.514939], [47.391379, 8.538637], [47.368741, 8.560731], [47.357849, 8.52296], [47.377317, 8.53983], [47.360478, 8.552045], [47.371004, 8.547207], [47.365492, 8.499125], [47.38105, 8.503315], [47.376266, 8.558347], [47.371105, 8.547911], [47.354313, 8.575491], [47.37762, 8.541994], [47.370922, 8.548264], [47.352195, 8.525386], [47.425733, 8.53651], [47.357365, 8.554906], [47.382997, 8.485144], [47.361915, 8.547627], [47.358177, 8.554631], [47.370457, 8.549804], [47.405028, 8.572691], [47.374096, 8.502474], [47.38435, 8.548398], [47.378262, 8.527388], [47.380984, 8.537336], [47.373183, 8.503886], [47.372089, 8.521925], [47.363763, 8.526363], [47.376038, 8.540995], [47.353124, 8.52706], [47.370725, 8.471477], [47.391181, 8.550859], [47.39252, 8.511055], [47.344124, 8.531415], [47.412126, 8.564295], [47.405877, 8.590504], [47.399971, 8.545041], [47.369384, 8.533138], [47.426024, 8.508376], [47.375874, 8.54119], [47.391221, 8.53919], [47.365211, 8.509102], [47.392332, 8.50313], [47.367424, 8.541558], [47.377927, 8.541921], [47.369141, 8.529333], [47.388334, 8.539104], [47.36413, 8.546375], [47.358442, 8.583615], [47.386504, 8.529119], [47.379242, 8.537976], [47.403, 8.591316], [47.36173, 8.561166], [47.374377, 8.551872], [47.373319, 8.531762], [47.36131, 8.563593], [47.401914, 8.552514], [47.365062, 8.547706], [47.373711, 8.535981], [47.367099, 8.539791], [47.38213, 8.515892], [47.364902, 8.53151], [47.367119, 8.544266], [47.368839, 8.496027], [47.372953, 8.475863], [47.374478, 8.528992], [47.407821, 8.545297], [47.392416, 8.506695], [47.408704, 8.580296], [47.380395, 8.548078], [47.365012, 8.531221], [47.386997, 8.490454], [47.409577, 8.549759], [47.378038, 8.527317], [47.398504, 8.546958], [47.40205, 8.584592], [47.426539, 8.546282], [47.391295, 8.520846], [47.376919, 8.539093], [47.430854, 8.550375], [47.402759, 8.491136], [47.378289, 8.551], [47.412073, 8.541794], [47.3759, 8.541297], [47.36988, 8.509024], [47.376983, 8.49076], [47.36366, 8.546657], [47.414437, 8.546666], [47.375442, 8.558065], [47.41718, 8.542973], [47.396232, 8.544711], [47.351869, 8.52571], [47.39, 8.539867], [47.384987, 8.484984], [47.379022, 8.518358], [47.391395, 8.514953], [47.389917, 8.512327], [47.377787, 8.531073], [47.357608, 8.553984], [47.371565, 8.562631], [47.419228, 8.507842], [47.411797, 8.537786], [47.358666, 8.585552], [47.378315, 8.543677], [47.422825, 8.535853], [47.367189, 8.545459], [47.364713, 8.554027], [47.411725, 8.537798], [47.398959, 8.505369], [47.378055, 8.509148], [47.40788, 8.565266], [47.370859, 8.535049], [47.363434, 8.515395], [47.394437, 8.525294], [47.400019, 8.545651], [47.413062, 8.558723], [47.399683, 8.543206], [47.387731, 8.521065], [47.415792, 8.553572], [47.381795, 8.489835], [47.374189, 8.54428], [47.362779, 8.548519], [47.377503, 8.541992], [47.402854, 8.549287], [47.396914, 8.541109], [47.408547, 8.529504], [47.381138, 8.518136], [47.363256, 8.499637], [47.364869, 8.566713], [47.356934, 8.535054], [47.377716, 8.537626], [47.410391, 8.543667], [47.411085, 8.545457], [47.398873, 8.533744], [47.372792, 8.534161], [47.40218, 8.55289], [47.369247, 8.541874], [47.397964, 8.533858], [47.369514, 8.536451], [47.369446, 8.526612], [47.379552, 8.537492], [47.390816, 8.469906], [47.392647, 8.48638], [47.409521, 8.537766], [47.398064, 8.535595], [47.383394, 8.484039], [47.41434, 8.517974], [47.356152, 8.532178], [47.376903, 8.537027], [47.357013, 8.52195], [47.387985, 8.545534], [47.399599, 8.50517], [47.368035, 8.540618], [47.351158, 8.582479], [47.375502, 8.545235], [47.399098, 8.547844], [47.408953, 8.54642], [47.383999, 8.5094], [47.372265, 8.535753], [47.383079, 8.540187], [47.371916, 8.519247], [47.374215, 8.532151], [47.393229, 8.524647], [47.372423, 8.53328], [47.339541, 8.529959], [47.412995, 8.544198], [47.386102, 8.518277], [47.402984, 8.576556], [47.399017, 8.522287], [47.416479, 8.511392], [47.388965, 8.537991], [47.383748, 8.534228], [47.40649, 8.562971], [47.38597, 8.517943], [47.388315, 8.520162], [47.348485, 8.534377], [47.41077, 8.55572], [47.389591, 8.521235], [47.381599, 8.536064], [47.377714, 8.541599], [47.369104, 8.555827], [47.408461, 8.503002], [47.365133, 8.567315], [47.387681, 8.486494], [47.384193, 8.489154], [47.370268, 8.548847], [47.388062, 8.520277], [47.387937, 8.491002], [47.364709, 8.554516], [47.36006, 8.59007], [47.407429, 8.494859], [47.404523, 8.571859], [47.37596, 8.535935], [47.382861, 8.529058], [47.39925, 8.542336], [47.365005, 8.56473], [47.379034, 8.524768], [47.370708, 8.516733], [47.397694, 8.596527], [47.360065, 8.568637], [47.379305, 8.49556], [47.370534, 8.524714], [47.372593, 8.534316], [47.403695, 8.570106], [47.370196, 8.550739], [47.393547, 8.529131], [47.375749, 8.496866], [47.364595, 8.566205], [47.373212, 8.535481], [47.363967, 8.549311], [47.402513, 8.499412], [47.367154, 8.523467], [47.394319, 8.493394], [47.363768, 8.53346], [47.400118, 8.549416], [47.365761, 8.565647], [47.387486, 8.499974], [47.416827, 8.506853], [47.421717, 8.550118], [47.388884, 8.479802], [47.39812, 8.536285], [47.3776, 8.538471], [47.363953, 8.566575], [47.428645, 8.552728], [47.367605, 8.544237], [47.374779, 8.527648], [47.386168, 8.545496], [47.340008, 8.530008], [47.363726, 8.563975], [47.415239, 8.550301], [47.414281, 8.518556], [47.36196, 8.547601], [47.417633, 8.538901], [47.406472, 8.549932], [47.40214, 8.487971], [47.410792, 8.544073], [47.380196, 8.506265], [47.359224, 8.535471], [47.425577, 8.494291], [47.400354, 8.477576], [47.393688, 8.472611], [47.376682, 8.555363], [47.373267, 8.519076], [47.389911, 8.517797], [47.420646, 8.504345], [47.430955, 8.550112], [47.338436, 8.531736], [47.420845, 8.549185], [47.391712, 8.485288], [47.36685, 8.543228], [47.377514, 8.548402], [47.363482, 8.535135], [47.397101, 8.594752], [47.403535, 8.485905], [47.413152, 8.483775], [47.405604, 8.490835], [47.372721, 8.535034], [47.397283, 8.594504], [47.392542, 8.502816], [47.375405, 8.549722], [47.363678, 8.520086], [47.358283, 8.553919], [47.33005, 8.534766], [47.374929, 8.54125], [47.406662, 8.495215], [47.388565, 8.48716], [47.398986, 8.505343], [47.349045, 8.562223], [47.363102, 8.517228], [47.343509, 8.535585], [47.330171, 8.529687], [47.379977, 8.541937], [47.383727, 8.50864], [47.412604, 8.517051], [47.358856, 8.534471], [47.394684, 8.52971], [47.384616, 8.502883], [47.394145, 8.529554], [47.372415, 8.5265], [47.369521, 8.526243], [47.373435, 8.531791], [47.418315, 8.508394], [47.427616, 8.54653], [47.376409, 8.527482], [47.341115, 8.53093], [47.372891, 8.535104], [47.417538, 8.513547], [47.390559, 8.484511], [47.371178, 8.516478], [47.374528, 8.537031], [47.379873, 8.542505], [47.368626, 8.543808], [47.430576, 8.550237], [47.361982, 8.526354], [47.373654, 8.534378], [47.382565, 8.514629], [47.389025, 8.477063], [47.387271, 8.488062], [47.369735, 8.543513], [47.378582, 8.542081], [47.411343, 8.525851], [47.384198, 8.516039], [47.381498, 8.534301], [47.372766, 8.535008], [47.39235, 8.503104], [47.382621, 8.529715], [47.357139, 8.514262], [47.408143, 8.552101], [47.366659, 8.55653], [47.377864, 8.516203], [47.404348, 8.572293], [47.420313, 8.503371], [47.328689, 8.513119], [47.419181, 8.506211], [47.387696, 8.486812], [47.369667, 8.533687], [47.391149, 8.487847], [47.364028, 8.551457], [47.340193, 8.535212], [47.429971, 8.549575], [47.376056, 8.559614], [47.37152, 8.517399], [47.394701, 8.525935], [47.396825, 8.541028], [47.360296, 8.532488], [47.373156, 8.503912], [47.363342, 8.557202], [47.381014, 8.535125], [47.409196, 8.538885], [47.416472, 8.534252], [47.379382, 8.524087], [47.405626, 8.565828], [47.376737, 8.548743], [47.397511, 8.532206], [47.388807, 8.530954], [47.393714, 8.50839], [47.390805, 8.522213], [47.3664, 8.540451], [47.394802, 8.525739], [47.371398, 8.522785], [47.381812, 8.541936], [47.354533, 8.556567], [47.360172, 8.523669], [47.369626, 8.525596], [47.398021, 8.534468], [47.406912, 8.586896], [47.406835, 8.550589], [47.406816, 8.550668], [47.409044, 8.550079], [47.419227, 8.506053], [47.365232, 8.547828], [47.363651, 8.598833], [47.377648, 8.543756], [47.383895, 8.546177], [47.398905, 8.586048], [47.41818, 8.546638], [47.340704, 8.537247], [47.390714, 8.508807], [47.385082, 8.498283], [47.399727, 8.504973], [47.406039, 8.550082], [47.386094, 8.518144], [47.38683, 8.512543], [47.372602, 8.53429], [47.364771, 8.554571], [47.402382, 8.535565], [47.427983, 8.545769], [47.376911, 8.499551], [47.390685, 8.489494], [47.366246, 8.553688], [47.368961, 8.528416], [47.363215, 8.567526], [47.420175, 8.548628], [47.379698, 8.516319], [47.422346, 8.538918], [47.378742, 8.510778], [47.380126, 8.528141], [47.375037, 8.519337], [47.360632, 8.524486], [47.416297, 8.545075], [47.354998, 8.52768], [47.388716, 8.537707], [47.333951, 8.528455], [47.397043, 8.530381], [47.369296, 8.528198], [47.376593, 8.52697], [47.363413, 8.547976], [47.367533, 8.545241], [47.385437, 8.521097], [47.364117, 8.536432], [47.391677, 8.519436], [47.41531, 8.562494], [47.410642, 8.551318], [47.391354, 8.537457], [47.424589, 8.536712], [47.371643, 8.521559], [47.373037, 8.547196], [47.370859, 8.535035], [47.402954, 8.486476], [47.383719, 8.539128], [47.381822, 8.541883], [47.385223, 8.517067], [47.347141, 8.563784], [47.361548, 8.561401], [47.377086, 8.543347], [47.370583, 8.531931], [47.369544, 8.541854], [47.382094, 8.537889], [47.383271, 8.493678], [47.401515, 8.487481], [47.355259, 8.534304], [47.383047, 8.51399], [47.376024, 8.53579], [47.403664, 8.57139], [47.335956, 8.515171], [47.367758, 8.496258], [47.387931, 8.486645], [47.419641, 8.548073], [47.340162, 8.529918], [47.378433, 8.534132], [47.37912, 8.522293], [47.402324, 8.499381], [47.37674, 8.53901], [47.37271, 8.534319], [47.375074, 8.553303], [47.356225, 8.558323], [47.409847, 8.567441], [47.367598, 8.539338], [47.373716, 8.536365], [47.376437, 8.528251], [47.404812, 8.576397], [47.382855, 8.5316], [47.427204, 8.546349], [47.358294, 8.586762], [47.39517, 8.52005], [47.391961, 8.517879], [47.394873, 8.517249], [47.405254, 8.480824], [47.400286, 8.588316], [47.375829, 8.563555], [47.370845, 8.519305], [47.378794, 8.542416], [47.378828, 8.542708], [47.373682, 8.553989], [47.373828, 8.537771], [47.377725, 8.511817], [47.414518, 8.556064], [47.406769, 8.584932], [47.369293, 8.527522], [47.417637, 8.50777], [47.372775, 8.519794], [47.334353, 8.539207], [47.369043, 8.528259], [47.369464, 8.525579], [47.403062, 8.49831], [47.368208, 8.496147], [47.372688, 8.538529], [47.409296, 8.553794], [47.356848, 8.527043], [47.378699, 8.542096], [47.3672, 8.528181], [47.400357, 8.585734], [47.416518, 8.511101], [47.367898, 8.539953], [47.377485, 8.541992], [47.405294, 8.528232], [47.368897, 8.489686], [47.378289, 8.528381], [47.368063, 8.541452], [47.377233, 8.526824], [47.36654, 8.544625], [47.382832, 8.533997], [47.384858, 8.531973], [47.410525, 8.550388], [47.420104, 8.548587], [47.366726, 8.53642], [47.380524, 8.512562], [47.383504, 8.498702], [47.376657, 8.515371], [47.388436, 8.53594], [47.405272, 8.558705], [47.418453, 8.508078], [47.373044, 8.53324], [47.386263, 8.53175], [47.409323, 8.545367], [47.363609, 8.535045], [47.412804, 8.543492], [47.414332, 8.547287], [47.368687, 8.528874], [47.390656, 8.509295], [47.360722, 8.52928], [47.409497, 8.49698], [47.367779, 8.535435], [47.399425, 8.517169], [47.386511, 8.497411], [47.410941, 8.571452], [47.367081, 8.53979], [47.401392, 8.490076], [47.375516, 8.48689], [47.376863, 8.540297], [47.413945, 8.544536], [47.415435, 8.52881], [47.425823, 8.547818], [47.339931, 8.535326], [47.384442, 8.503224], [47.371579, 8.515864], [47.386724, 8.516157], [47.360285, 8.600798], [47.405065, 8.565193], [47.371588, 8.515864], [47.351594, 8.525255], [47.361981, 8.549164], [47.370179, 8.548818], [47.382531, 8.529779], [47.363719, 8.551742], [47.358279, 8.555295], [47.371627, 8.517507], [47.354168, 8.553436], [47.369685, 8.520301], [47.368349, 8.551071], [47.379195, 8.544768], [47.375426, 8.528614], [47.371309, 8.518824], [47.416329, 8.54542], [47.372322, 8.523029], [47.374459, 8.530091], [47.370735, 8.524321], [47.391358, 8.515045], [47.368078, 8.54087], [47.40948, 8.549545], [47.39897, 8.533057], [47.378573, 8.542107], [47.373008, 8.531345], [47.381351, 8.534629], [47.370843, 8.570296], [47.363853, 8.549018], [47.365506, 8.545557], [47.425971, 8.493557], [47.37821, 8.532035], [47.403161, 8.537847], [47.383642, 8.548105], [47.354259, 8.575411], [47.414695, 8.519466], [47.377327, 8.538784], [47.382126, 8.512462], [47.402687, 8.547879], [47.402118, 8.548106], [47.385986, 8.518129], [47.419734, 8.53355], [47.374416, 8.541226], [47.403632, 8.550628], [47.376731, 8.524801], [47.356125, 8.557527], [47.39345, 8.491058], [47.427951, 8.536927], [47.397744, 8.533297], [47.36844, 8.565836], [47.418611, 8.503589], [47.368196, 8.538847], [47.377171, 8.540091], [47.359999, 8.595245], [47.356394, 8.510222], [47.397964, 8.533858], [47.425853, 8.493713], [47.414831, 8.551538], [47.36819, 8.524309], [47.40386, 8.569752], [47.386308, 8.531751], [47.370918, 8.543008], [47.385193, 8.530774], [47.378435, 8.540462], [47.387628, 8.47542], [47.416122, 8.531302], [47.365443, 8.545529], [47.427635, 8.546504], [47.36697, 8.520074], [47.376559, 8.541919], [47.361196, 8.600593], [47.36183, 8.561023], [47.397872, 8.534028], [47.425614, 8.494212], [47.385569, 8.517577], [47.376312, 8.48639], [47.377247, 8.538729], [47.369336, 8.536315], [47.425041, 8.539252], [47.369877, 8.508388], [47.398794, 8.499801], [47.377731, 8.537918], [47.333835, 8.514996], [47.369038, 8.541181], [47.383592, 8.548621], [47.414081, 8.51679], [47.375322, 8.48539], [47.421142, 8.548145], [47.374623, 8.514522], [47.380414, 8.483332], [47.379736, 8.527603], [47.379017, 8.54356], [47.414333, 8.483493], [47.408264, 8.550685], [47.381445, 8.571501], [47.365144, 8.553228], [47.390943, 8.473882], [47.377052, 8.533693], [47.406294, 8.582961], [47.371097, 8.520303], [47.386004, 8.535347], [47.373951, 8.502564], [47.362619, 8.55765], [47.355681, 8.560628], [47.387596, 8.486929], [47.369254, 8.491984], [47.374256, 8.544798], [47.408463, 8.546834], [47.368339, 8.551163], [47.356654, 8.523743], [47.405991, 8.580808], [47.386686, 8.534553], [47.354135, 8.527689], [47.388009, 8.490991], [47.368959, 8.524788], [47.35581, 8.531298], [47.366991, 8.535009], [47.386126, 8.514675], [47.354841, 8.574814], [47.370197, 8.548819], [47.363515, 8.569995], [47.379928, 8.537672], [47.410918, 8.545003], [47.362579, 8.568148], [47.357802, 8.547806], [47.366007, 8.562527], [47.370188, 8.511665], [47.363304, 8.548093], [47.37499, 8.545158], [47.379426, 8.542244], [47.378411, 8.54111], [47.404242, 8.561943], [47.339478, 8.535674], [47.370574, 8.548866], [47.411078, 8.52627], [47.387587, 8.486929], [47.405116, 8.4822], [47.424719, 8.495745], [47.414197, 8.545482], [47.388801, 8.48788], [47.379388, 8.555579], [47.372437, 8.524157], [47.387778, 8.52941], [47.383563, 8.475275], [47.39599, 8.545514], [47.364428, 8.531209], [47.384296, 8.528531], [47.378282, 8.509881], [47.374368, 8.521641], [47.414041, 8.525866], [47.367929, 8.546097], [47.419179, 8.506423], [47.369867, 8.54194], [47.358786, 8.516055], [47.414095, 8.550436], [47.371579, 8.51589], [47.400647, 8.502753], [47.409255, 8.544955], [47.406041, 8.553594], [47.391028, 8.52243], [47.376365, 8.528289], [47.376168, 8.551777], [47.381504, 8.513601], [47.403445, 8.579084], [47.361276, 8.517284], [47.368651, 8.483048], [47.376593, 8.534637], [47.377517, 8.511918], [47.37665, 8.541815], [47.397367, 8.531289], [47.376056, 8.515147], [47.387868, 8.479703], [47.365176, 8.547112], [47.402455, 8.582719], [47.366937, 8.492574], [47.384375, 8.531658], [47.380764, 8.518672], [47.382952, 8.530847], [47.382184, 8.492504], [47.389307, 8.494579], [47.382976, 8.543536], [47.329832, 8.530316], [47.350431, 8.532246], [47.364776, 8.531495], [47.375872, 8.516626], [47.404529, 8.574973], [47.372482, 8.538379], [47.368027, 8.530105], [47.371716, 8.519548], [47.387377, 8.52523], [47.403798, 8.497529], [47.371165, 8.530328], [47.391036, 8.522549], [47.379235, 8.525368], [47.36435, 8.53469], [47.397682, 8.533163], [47.409028, 8.539531], [47.376921, 8.527493], [47.379721, 8.50705], [47.373468, 8.531249], [47.419151, 8.506542], [47.403884, 8.569183], [47.357579, 8.571695], [47.361922, 8.51551], [47.384692, 8.509268], [47.409035, 8.550065], [47.386149, 8.518039], [47.364252, 8.536475], [47.366943, 8.522946], [47.407206, 8.558719], [47.397917, 8.534069], [47.359728, 8.562567], [47.368918, 8.54053], [47.367925, 8.538947], [47.393393, 8.537738], [47.384179, 8.516158], [47.39235, 8.503104], [47.375997, 8.538637], [47.375996, 8.559308], [47.396974, 8.496228], [47.420463, 8.51342], [47.357738, 8.554463], [47.388585, 8.536354], [47.365897, 8.521376], [47.375721, 8.53548], [47.337298, 8.53506], [47.38496, 8.495791], [47.392245, 8.537423], [47.354141, 8.557102], [47.350336, 8.56082], [47.409216, 8.547114], [47.374445, 8.578979], [47.400159, 8.548834], [47.329894, 8.512178], [47.391054, 8.489395], [47.378558, 8.575201], [47.387031, 8.547395], [47.384791, 8.531375], [47.3932, 8.530647], [47.407122, 8.554385], [47.379967, 8.527912], [47.382813, 8.532262], [47.361768, 8.552575], [47.374021, 8.475063], [47.361819, 8.525543], [47.401807, 8.552366], [47.375802, 8.537441], [47.414345, 8.551607], [47.404028, 8.558984], [47.397061, 8.530382], [47.405855, 8.590927], [47.370172, 8.540132], [47.374614, 8.549732], [47.4097, 8.544421], [47.369767, 8.508571], [47.359635, 8.522427], [47.383491, 8.515641], [47.392461, 8.528857], [47.373511, 8.561428], [47.347862, 8.532789], [47.375489, 8.547605], [47.379728, 8.542621], [47.372791, 8.497642], [47.40438, 8.533579], [47.381822, 8.541896], [47.382262, 8.5476], [47.400652, 8.533979], [47.419079, 8.506487], [47.377528, 8.50972], [47.410648, 8.571923], [47.383088, 8.540267], [47.413516, 8.539544], [47.371121, 8.530128], [47.411187, 8.570172], [47.363053, 8.550881], [47.373244, 8.533019], [47.388979, 8.494997], [47.402045, 8.544527], [47.365403, 8.546879], [47.378992, 8.538712], [47.389702, 8.492759], [47.368128, 8.511729], [47.409881, 8.54624], [47.384314, 8.548411], [47.375932, 8.494526], [47.381446, 8.536008], [47.38167, 8.533245], [47.387903, 8.519942], [47.354922, 8.574763], [47.385979, 8.517956], [47.363776, 8.535485], [47.37438, 8.525071], [47.394718, 8.473174], [47.3705, 8.54909], [47.374488, 8.539374], [47.350383, 8.527811], [47.363437, 8.535121], [47.358933, 8.570281], [47.376639, 8.548622], [47.374716, 8.527607], [47.413985, 8.541264], [47.383378, 8.533373], [47.356905, 8.555042], [47.387209, 8.51912], [47.408763, 8.546482], [47.394864, 8.525793], [47.403559, 8.54701], [47.374272, 8.524155], [47.367821, 8.510836], [47.358158, 8.51787], [47.391189, 8.51581], [47.386228, 8.518213], [47.398012, 8.534481], [47.374457, 8.484605], [47.385287, 8.494486], [47.339955, 8.529927], [47.364223, 8.531033], [47.403564, 8.588864], [47.37305, 8.534498], [47.425962, 8.49357], [47.414932, 8.570782], [47.340116, 8.519556], [47.378236, 8.544338], [47.416747, 8.549683], [47.351038, 8.58192], [47.408856, 8.554554], [47.369892, 8.513526], [47.348291, 8.529211], [47.41456, 8.571185], [47.416097, 8.546197], [47.384163, 8.531203], [47.338969, 8.538125], [47.409124, 8.541719], [47.333843, 8.515036], [47.400242, 8.542065], [47.371502, 8.525065], [47.351472, 8.525795], [47.377593, 8.541994], [47.366295, 8.552325], [47.382442, 8.514309], [47.374124, 8.502343], [47.406755, 8.550468], [47.354534, 8.523475], [47.379402, 8.528669], [47.361102, 8.555381], [47.37377, 8.546748], [47.367985, 8.540233], [47.362037, 8.59746], [47.357871, 8.572205], [47.378727, 8.542891], [47.35819, 8.51922], [47.385132, 8.548494], [47.357734, 8.520906], [47.371836, 8.48801], [47.367937, 8.54619], [47.396462, 8.543285], [47.36447, 8.546661], [47.377531, 8.543794], [47.399472, 8.5332], [47.414141, 8.551259], [47.405379, 8.592653], [47.389627, 8.487089], [47.391546, 8.539925], [47.360938, 8.553736], [47.377001, 8.569738], [47.372256, 8.535739], [47.377449, 8.541978], [47.386236, 8.527961], [47.361811, 8.560228], [47.371082, 8.523798], [47.372982, 8.547327], [47.380812, 8.504833], [47.380025, 8.520709], [47.356156, 8.559924], [47.387577, 8.486969], [47.36199, 8.526499], [47.393132, 8.530195], [47.397778, 8.533549], [47.38771, 8.486269], [47.3689, 8.525277], [47.416537, 8.522564], [47.396019, 8.518756], [47.361095, 8.525038], [47.360053, 8.564308], [47.374316, 8.529955], [47.404564, 8.548197], [47.354904, 8.574789], [47.376852, 8.543342], [47.375812, 8.54013], [47.394454, 8.474506], [47.373253, 8.514852], [47.389975, 8.485479], [47.393765, 8.488018], [47.373506, 8.534825], [47.369059, 8.53803], [47.368285, 8.529488], [47.359443, 8.549283], [47.373619, 8.537052], [47.37446, 8.539426], [47.370947, 8.523835], [47.417796, 8.546286], [47.378842, 8.559924], [47.374714, 8.551442], [47.368201, 8.536411], [47.369084, 8.52777], [47.37878, 8.523055], [47.384726, 8.529718], [47.353815, 8.52624], [47.370263, 8.513308], [47.403862, 8.57688], [47.369233, 8.528117], [47.390722, 8.522437], [47.335034, 8.529972], [47.375886, 8.540886], [47.403427, 8.530605], [47.377506, 8.498464], [47.377543, 8.538815], [47.38021, 8.501749], [47.383926, 8.532483], [47.383915, 8.532735], [47.377367, 8.498951], [47.399673, 8.543299], [47.386252, 8.518558], [47.420858, 8.507663], [47.407866, 8.531107], [47.353596, 8.576138], [47.383392, 8.515613], [47.413262, 8.545436], [47.37045, 8.566275], [47.366841, 8.543214], [47.373824, 8.538288], [47.402172, 8.499286], [47.397012, 8.52222], [47.360515, 8.567707], [47.378274, 8.541346], [47.374289, 8.524221], [47.39075, 8.508821], [47.386477, 8.529118], [47.409394, 8.572307], [47.391204, 8.52287], [47.362624, 8.519284], [47.362734, 8.567979], [47.385212, 8.517199], [47.416702, 8.545905], [47.37845, 8.510176], [47.328508, 8.529521], [47.394311, 8.525371], [47.398327, 8.537217], [47.361962, 8.560469], [47.383345, 8.499361], [47.383116, 8.515289], [47.427546, 8.546343], [47.402038, 8.499177], [47.37902, 8.542394], [47.377723, 8.507129], [47.420801, 8.51283], [47.373444, 8.531844], [47.375839, 8.541057], [47.411115, 8.526191], [47.372073, 8.554816], [47.376718, 8.544121], [47.370257, 8.519756], [47.377223, 8.540225], [47.371909, 8.517181], [47.383375, 8.498978], [47.404047, 8.568139], [47.369234, 8.539411], [47.367405, 8.523631], [47.372267, 8.540255], [47.357862, 8.572204], [47.402351, 8.499329], [47.410909, 8.545003], [47.398073, 8.535635], [47.39249, 8.475899], [47.409162, 8.549936], [47.40649, 8.581282], [47.37516, 8.518704], [47.369757, 8.556158], [47.362506, 8.568279], [47.414124, 8.542698], [47.365968, 8.504007], [47.360438, 8.552455], [47.391372, 8.537444], [47.346636, 8.533015], [47.370178, 8.539457], [47.36963, 8.553521], [47.421387, 8.549806], [47.356408, 8.535506], [47.354772, 8.574535], [47.39384, 8.505452], [47.370846, 8.519292], [47.405126, 8.565472], [47.419943, 8.535264], [47.376943, 8.513628], [47.398846, 8.540381], [47.395428, 8.526136], [47.414708, 8.56056], [47.362912, 8.55616], [47.379244, 8.50802], [47.364595, 8.566205], [47.40413, 8.559622], [47.372472, 8.545158], [47.412745, 8.544948], [47.379809, 8.527459], [47.369714, 8.533476], [47.343639, 8.535085], [47.420551, 8.502952], [47.402059, 8.584592], [47.38493, 8.508889], [47.367245, 8.559204], [47.397964, 8.533858], [47.38284, 8.513999], [47.377052, 8.544048], [47.358582, 8.553673], [47.419384, 8.547631], [47.370215, 8.548832], [47.343391, 8.535675], [47.366443, 8.533078], [47.359391, 8.594874], [47.390128, 8.532094], [47.371805, 8.522502], [47.413622, 8.553779], [47.369183, 8.518172], [47.419911, 8.506941], [47.356915, 8.532366], [47.387624, 8.490745], [47.370916, 8.549761], [47.356601, 8.523742], [47.374035, 8.546316], [47.361458, 8.561399], [47.366151, 8.521156], [47.381808, 8.51668], [47.368907, 8.501378], [47.383261, 8.499611], [47.385084, 8.530851], [47.366045, 8.532355], [47.356777, 8.527929], [47.363096, 8.508212], [47.388335, 8.519911], [47.379778, 8.527829], [47.354459, 8.557783], [47.412136, 8.550249], [47.369578, 8.525886], [47.419914, 8.547695], [47.401081, 8.544653], [47.376024, 8.538651], [47.328496, 8.514504], [47.385074, 8.501104], [47.41169, 8.562908], [47.414065, 8.550806], [47.410253, 8.549614], [47.418035, 8.505618], [47.389539, 8.536281], [47.383394, 8.548683], [47.41049, 8.550268], [47.412352, 8.523751], [47.377809, 8.531563], [47.407162, 8.586159], [47.397304, 8.531354], [47.380842, 8.538062], [47.391394, 8.537034], [47.395549, 8.517978], [47.356634, 8.553315], [47.381315, 8.542243], [47.396029, 8.485413], [47.391936, 8.533919], [47.376276, 8.557328], [47.369063, 8.525253], [47.377455, 8.543236], [47.385093, 8.530878], [47.374078, 8.546463], [47.371722, 8.517893], [47.387481, 8.486675], [47.371201, 8.547251], [47.381541, 8.51543], [47.404008, 8.496182], [47.391124, 8.538963], [47.407001, 8.481574], [47.358583, 8.519546], [47.374487, 8.53944], [47.392589, 8.539099], [47.390561, 8.50887], [47.36861, 8.546416], [47.356625, 8.553328], [47.364472, 8.536983], [47.364744, 8.557337], [47.369491, 8.553902], [47.420187, 8.503422], [47.369446, 8.540753], [47.384498, 8.531899], [47.36948, 8.533445], [47.399375, 8.495242], [47.339419, 8.519012], [47.400654, 8.502965], [47.397449, 8.546353], [47.378265, 8.509762], [47.372866, 8.535911], [47.362498, 8.568172], [47.365889, 8.501834], [47.367842, 8.564446], [47.378653, 8.544095], [47.405209, 8.593484], [47.378172, 8.530299], [47.377247, 8.538703], [47.414407, 8.554484], [47.373795, 8.535625], [47.35348, 8.556691], [47.391375, 8.528556], [47.370922, 8.508158], [47.340497, 8.51918], [47.368789, 8.540832], [47.365239, 8.501172], [47.408989, 8.572365], [47.362787, 8.548598], [47.399339, 8.542431], [47.376467, 8.491067], [47.373761, 8.536393], [47.363877, 8.497677], [47.374059, 8.544754], [47.370206, 8.548819], [47.37581, 8.535587], [47.388265, 8.493446], [47.364676, 8.537318], [47.38021, 8.501749], [47.37503, 8.549502], [47.41328, 8.545383], [47.379848, 8.543193], [47.363525, 8.535321], [47.368585, 8.499174], [47.374519, 8.545479], [47.358139, 8.572369], [47.374783, 8.503097], [47.410768, 8.567951], [47.389296, 8.543879], [47.398294, 8.536978], [47.393302, 8.524556], [47.385125, 8.516959], [47.389714, 8.511873], [47.386202, 8.529603], [47.382402, 8.530015], [47.375748, 8.53548], [47.373175, 8.527946], [47.378894, 8.527242], [47.376354, 8.537095], [47.397017, 8.530248], [47.41129, 8.545647], [47.387577, 8.486969], [47.387214, 8.476432], [47.38138, 8.534497], [47.365335, 8.564181], [47.401436, 8.50106], [47.391054, 8.489395], [47.371034, 8.535555], [47.371159, 8.53475], [47.379123, 8.533365], [47.364105, 8.546229], [47.378682, 8.54191], [47.41917, 8.506436], [47.373839, 8.537599], [47.376178, 8.539488], [47.374869, 8.527649], [47.378136, 8.519797], [47.362327, 8.504755], [47.368141, 8.541785], [47.370161, 8.548805], [47.379091, 8.538674], [47.386495, 8.529106], [47.374034, 8.531327], [47.430955, 8.550139], [47.374068, 8.544728], [47.425578, 8.494225], [47.43117, 8.516009], [47.368943, 8.496519], [47.392395, 8.503171], [47.362668, 8.551601], [47.387652, 8.533222], [47.382372, 8.487661], [47.392091, 8.498052], [47.373408, 8.525183], [47.365895, 8.545313], [47.360422, 8.597028], [47.392593, 8.524329], [47.382021, 8.551184], [47.408745, 8.550232], [47.335407, 8.51901], [47.370297, 8.518354], [47.368759, 8.492941], [47.355107, 8.534275], [47.402124, 8.496688], [47.367889, 8.52188], [47.376056, 8.559601], [47.377013, 8.543359], [47.378425, 8.50999], [47.3735, 8.534494], [47.364579, 8.537117], [47.375131, 8.525576], [47.375833, 8.544553], [47.379533, 8.554456], [47.399948, 8.504421], [47.374273, 8.524989], [47.407075, 8.586727], [47.383015, 8.529008], [47.378628, 8.499757], [47.388263, 8.519936], [47.410522, 8.572861], [47.403387, 8.497203], [47.394035, 8.525021], [47.394835, 8.473123], [47.376097, 8.488306], [47.347341, 8.563537], [47.356635, 8.551276], [47.374544, 8.54103], [47.409268, 8.545393], [47.419742, 8.547864], [47.377476, 8.541991], [47.358772, 8.551705], [47.367537, 8.540038], [47.40342, 8.574327], [47.380357, 8.542713], [47.423572, 8.551774], [47.380985, 8.511379], [47.387827, 8.527093], [47.425697, 8.556272], [47.377104, 8.540461], [47.3672, 8.533861], [47.351432, 8.52913], [47.379785, 8.537576], [47.388339, 8.526229], [47.35236, 8.558097], [47.393894, 8.54465], [47.376078, 8.537738], [47.383226, 8.539938], [47.353107, 8.512565], [47.406805, 8.567602], [47.355626, 8.526939], [47.386347, 8.551248], [47.369542, 8.466952], [47.386245, 8.53171], [47.385434, 8.542315], [47.404561, 8.572602], [47.389437, 8.52706], [47.41405, 8.546685], [47.41722, 8.510042], [47.391043, 8.522735], [47.374318, 8.516409], [47.363728, 8.551716], [47.369229, 8.491798], [47.373293, 8.503677], [47.37351, 8.542889], [47.37264, 8.529365], [47.393769, 8.472612], [47.376742, 8.540652], [47.374247, 8.544798], [47.370615, 8.511184], [47.402073, 8.49927], [47.335564, 8.516711], [47.385331, 8.494593], [47.37047, 8.537186], [47.4201, 8.50892], [47.419632, 8.505067], [47.368468, 8.529187], [47.371648, 8.547604], [47.378444, 8.540528], [47.370459, 8.537344], [47.409539, 8.54997], [47.366417, 8.540531], [47.362666, 8.555533], [47.378644, 8.528879], [47.399362, 8.542908], [47.362581, 8.534322], [47.38639, 8.518243], [47.376256, 8.544522], [47.371569, 8.515983], [47.37897, 8.524886], [47.360659, 8.529332], [47.35933, 8.522381], [47.37996, 8.55224], [47.393939, 8.541802], [47.378795, 8.542376], [47.377043, 8.533666], [47.354071, 8.575354], [47.419792, 8.500366], [47.420143, 8.53886], [47.422548, 8.4961], [47.373915, 8.535284], [47.401075, 8.491394], [47.375348, 8.561175], [47.36948, 8.520098], [47.369355, 8.525696], [47.367173, 8.533874], [47.395253, 8.485716], [47.403019, 8.572052], [47.379306, 8.553816], [47.40766, 8.584871], [47.339253, 8.529979], [47.376838, 8.544799], [47.364734, 8.56675], [47.398814, 8.540883], [47.372872, 8.567042], [47.364247, 8.531351], [47.424783, 8.548446], [47.379969, 8.541924], [47.408336, 8.565514], [47.374584, 8.550036], [47.400148, 8.590446], [47.369927, 8.510759], [47.360223, 8.551378], [47.414468, 8.475452], [47.349663, 8.56164], [47.358543, 8.518063], [47.375735, 8.549133], [47.375722, 8.559792], [47.370441, 8.529744], [47.364964, 8.508581], [47.403834, 8.546433], [47.376715, 8.541645], [47.399656, 8.468116], [47.374439, 8.541717], [47.395307, 8.491638], [47.388074, 8.519972], [47.381621, 8.513577], [47.386797, 8.547416], [47.369052, 8.528325], [47.426971, 8.491429], [47.360413, 8.552203], [47.369037, 8.527994], [47.358599, 8.517865], [47.394927, 8.525807], [47.386183, 8.518199], [47.37212, 8.487353], [47.374994, 8.545701], [47.416368, 8.544175], [47.357822, 8.519094], [47.373524, 8.556422], [47.370589, 8.526542], [47.342017, 8.530644], [47.408962, 8.550143], [47.358953, 8.516509], [47.372544, 8.517512], [47.399197, 8.541315], [47.381467, 8.55541], [47.414626, 8.54667], [47.37248, 8.478449], [47.386855, 8.489219], [47.420717, 8.502465], [47.372582, 8.521141], [47.36231, 8.557922], [47.373067, 8.500944], [47.383504, 8.530567], [47.365859, 8.550013], [47.368857, 8.560866], [47.376121, 8.525583], [47.403359, 8.497309], [47.359673, 8.516457], [47.391208, 8.545243], [47.386273, 8.518201], [47.413968, 8.542138], [47.356645, 8.523769], [47.378252, 8.541716], [47.382761, 8.540591], [47.361801, 8.560281], [47.357149, 8.52186], [47.409558, 8.544246], [47.372455, 8.515471], [47.372848, 8.533977], [47.363137, 8.549612], [47.368874, 8.519424], [47.383267, 8.484195], [47.409535, 8.575385], [47.37013, 8.551028], [47.368606, 8.547753], [47.386238, 8.518187], [47.380748, 8.515572], [47.411262, 8.57077], [47.350246, 8.560858], [47.387982, 8.524937], [47.37611, 8.540996], [47.385795, 8.496019], [47.371515, 8.550183], [47.381987, 8.54435], [47.362751, 8.548571], [47.394205, 8.490119], [47.392526, 8.538104], [47.386077, 8.481827], [47.405005, 8.505132], [47.355915, 8.592628], [47.376398, 8.489808], [47.363295, 8.513922], [47.394229, 8.493392], [47.408721, 8.546229], [47.383512, 8.530607], [47.36607, 8.533573], [47.393055, 8.539267], [47.404915, 8.534968], [47.368487, 8.524328], [47.381801, 8.516468], [47.379086, 8.483968], [47.360358, 8.548627], [47.369451, 8.555291], [47.381942, 8.52929], [47.399033, 8.542425], [47.419195, 8.54764], [47.364486, 8.552446], [47.404371, 8.533592], [47.3638, 8.535751], [47.375925, 8.553639], [47.372073, 8.53412], [47.384749, 8.502131], [47.370574, 8.546973], [47.373535, 8.544929], [47.372038, 8.53408], [47.413023, 8.550665], [47.356947, 8.555307], [47.369707, 8.525545], [47.338971, 8.527486], [47.393273, 8.493691], [47.3672, 8.533874], [47.369866, 8.520106], [47.38069, 8.516909], [47.364408, 8.546553], [47.347172, 8.534376], [47.374737, 8.537816], [47.36977, 8.552067], [47.408556, 8.546531], [47.410372, 8.538154], [47.414427, 8.519209], [47.364146, 8.551301], [47.354141, 8.575514], [47.369551, 8.525912], [47.36859, 8.560582], [47.37017, 8.548818], [47.399142, 8.514646], [47.360376, 8.550468], [47.384268, 8.507459], [47.379156, 8.522241], [47.42159, 8.550221], [47.362813, 8.559865], [47.413066, 8.546161], [47.374123, 8.515134], [47.340884, 8.519174], [47.370724, 8.535059], [47.389763, 8.537371], [47.375652, 8.553104], [47.392564, 8.536966], [47.370462, 8.539926], [47.368759, 8.528809], [47.38971, 8.512323], [47.370469, 8.551367], [47.366682, 8.559748], [47.347004, 8.528325], [47.382304, 8.499102], [47.365217, 8.533344], [47.364333, 8.529804], [47.393032, 8.524563], [47.407668, 8.58405], [47.397026, 8.530288], [47.367091, 8.544345], [47.36925, 8.525429], [47.377493, 8.504727], [47.369596, 8.52018], [47.422229, 8.497472], [47.344896, 8.533416], [47.362777, 8.559904], [47.378881, 8.542802], [47.389886, 8.531043], [47.376869, 8.520645], [47.379603, 8.525468], [47.363349, 8.55004], [47.384678, 8.531956], [47.410211, 8.534269], [47.376829, 8.543858], [47.377152, 8.541985], [47.368606, 8.547713], [47.376417, 8.527509], [47.366548, 8.540918], [47.367962, 8.544548], [47.369617, 8.525609], [47.397707, 8.584419], [47.356499, 8.551419], [47.372573, 8.535521], [47.39028, 8.514904], [47.361887, 8.547732], [47.389082, 8.488694], [47.382783, 8.57541], [47.37861, 8.565269], [47.375776, 8.500694], [47.372999, 8.531306], [47.37604, 8.54167], [47.380054, 8.522418], [47.377261, 8.510364], [47.344439, 8.530456], [47.383794, 8.529368], [47.351753, 8.559394], [47.367058, 8.536506], [47.3754, 8.518007], [47.368788, 8.541918], [47.424861, 8.53742], [47.390814, 8.522227], [47.423783, 8.535383], [47.368996, 8.537976], [47.42874, 8.48876], [47.360687, 8.524447], [47.396968, 8.539269], [47.372933, 8.534469], [47.371326, 8.536065], [47.378805, 8.483221], [47.377767, 8.537932], [47.353184, 8.526426], [47.416103, 8.547417], [47.395739, 8.545443], [47.362366, 8.504478], [47.367107, 8.545563], [47.370038, 8.511371], [47.407722, 8.584051], [47.414297, 8.55097], [47.407529, 8.489826], [47.36787, 8.560633], [47.375099, 8.485254], [47.385895, 8.532563], [47.371606, 8.515904], [47.401306, 8.551229], [47.372914, 8.524127], [47.403844, 8.576893], [47.384749, 8.502144], [47.412378, 8.546624], [47.329023, 8.513906], [47.369027, 8.525239], [47.385297, 8.500288], [47.37731, 8.539578], [47.36583, 8.539857], [47.374304, 8.543528], [47.375554, 8.535053], [47.380702, 8.525332], [47.385075, 8.530904], [47.341092, 8.527635], [47.364339, 8.531115], [47.373938, 8.503014], [47.389174, 8.512935], [47.38107, 8.49239], [47.380447, 8.506376], [47.357628, 8.520626], [47.361861, 8.51527], [47.360937, 8.506329], [47.37416, 8.544545], [47.375087, 8.518742], [47.369172, 8.52793], [47.370268, 8.537592], [47.364022, 8.497481], [47.391814, 8.541109], [47.37959, 8.537254], [47.372631, 8.535085], [47.382684, 8.487018], [47.377854, 8.529684], [47.370599, 8.524504], [47.370427, 8.51788], [47.376579, 8.568723], [47.370206, 8.548819], [47.334244, 8.516473], [47.399149, 8.521681], [47.349538, 8.561558], [47.406761, 8.49515], [47.418246, 8.506139], [47.376327, 8.513179], [47.368768, 8.528796], [47.366456, 8.561756], [47.369885, 8.547541], [47.399649, 8.538198], [47.402852, 8.577137], [47.387476, 8.487285], [47.40391, 8.548872], [47.393873, 8.505704], [47.414612, 8.563063], [47.37436, 8.541437], [47.368247, 8.541099], [47.361964, 8.560218], [47.360696, 8.524368], [47.361, 8.55383], [47.38443, 8.538215], [47.368299, 8.511693], [47.37556, 8.533556], [47.386085, 8.540064], [47.368714, 8.500844], [47.370886, 8.548211], [47.360243, 8.522863], [47.380138, 8.543027], [47.411291, 8.545554], [47.375435, 8.547524], [47.373841, 8.536447], [47.382275, 8.533072], [47.382229, 8.533111], [47.379042, 8.559703], [47.387158, 8.535093], [47.358312, 8.583096], [47.407442, 8.574187], [47.37413, 8.524893], [47.358321, 8.583149], [47.367856, 8.56111], [47.368324, 8.560219], [47.399326, 8.521976], [47.364822, 8.555856], [47.358937, 8.516323], [47.375695, 8.496812], [47.38878, 8.510807], [47.387965, 8.539149], [47.375438, 8.547273], [47.401747, 8.586162], [47.361516, 8.547923], [47.361643, 8.547846], [47.360928, 8.507282], [47.374894, 8.545791], [47.359383, 8.522462], [47.359162, 8.551369], [47.385661, 8.548624], [47.405636, 8.549941], [47.36475, 8.553975], [47.405243, 8.555246], [47.385069, 8.508375], [47.370188, 8.548805], [47.424351, 8.504472], [47.362611, 8.558444], [47.378008, 8.526667], [47.372515, 8.52923], [47.376528, 8.532914], [47.402786, 8.496118], [47.390549, 8.489623], [47.426898, 8.554799], [47.407857, 8.58041], [47.414252, 8.541574], [47.395703, 8.545455], [47.42096, 8.549387], [47.379325, 8.495308], [47.41525, 8.545424], [47.375653, 8.544576], [47.393973, 8.481981], [47.390104, 8.512583], [47.384796, 8.531786], [47.370939, 8.548318], [47.374755, 8.528322], [47.373888, 8.544751], [47.377528, 8.502953], [47.383193, 8.506073], [47.37782, 8.509236], [47.348558, 8.534352], [47.356969, 8.507401], [47.382054, 8.516314], [47.369452, 8.525884], [47.377112, 8.529152], [47.369025, 8.525385], [47.409511, 8.542576], [47.376783, 8.49784], [47.367408, 8.54128], [47.412959, 8.540394], [47.384409, 8.488218], [47.371424, 8.536186], [47.370125, 8.54883], [47.380652, 8.525808], [47.377223, 8.540225], [47.377935, 8.532519], [47.365696, 8.566771], [47.389028, 8.49562], [47.367271, 8.523535], [47.405972, 8.558879], [47.379062, 8.538846], [47.386797, 8.535231], [47.380824, 8.572468], [47.362162, 8.549062], [47.369097, 8.5254], [47.362699, 8.518928], [47.379516, 8.537465], [47.364919, 8.54761], [47.368252, 8.536782], [47.37827, 8.519906], [47.371633, 8.525452], [47.365728, 8.560694], [47.36274, 8.56087], [47.369372, 8.525869], [47.403665, 8.571298], [47.423032, 8.548051], [47.385508, 8.517311], [47.415351, 8.544274], [47.369986, 8.556653], [47.330786, 8.515847], [47.375485, 8.560118], [47.362768, 8.563571], [47.363277, 8.549972], [47.387949, 8.486658], [47.40596, 8.553579], [47.370134, 8.548791], [47.402228, 8.507872], [47.409399, 8.53828], [47.409007, 8.550091], [47.377858, 8.52828], [47.379259, 8.528573], [47.402241, 8.545605], [47.376713, 8.539023], [47.356626, 8.551289], [47.378274, 8.526156], [47.368125, 8.536846], [47.364647, 8.566431], [47.353807, 8.558206], [47.392402, 8.523636], [47.386477, 8.518536], [47.394856, 8.52574], [47.366149, 8.545054], [47.358352, 8.587227], [47.357144, 8.55825], [47.399501, 8.542487], [47.393282, 8.53902], [47.366889, 8.520165], [47.411248, 8.567629], [47.37273, 8.52934], [47.351996, 8.534118], [47.391946, 8.510778], [47.35427, 8.557793], [47.410618, 8.572294], [47.359924, 8.56183], [47.401277, 8.57909], [47.389209, 8.527492], [47.38138, 8.491932], [47.371924, 8.49111], [47.369097, 8.52348], [47.388189, 8.490968], [47.369319, 8.541889], [47.377556, 8.528843], [47.378429, 8.531695], [47.380431, 8.548118], [47.402419, 8.535433], [47.400949, 8.50411], [47.373889, 8.544671], [47.376895, 8.483607], [47.374892, 8.519466], [47.426986, 8.546609], [47.360295, 8.566233], [47.360298, 8.566868], [47.404249, 8.564964], [47.405195, 8.50507], [47.374169, 8.514049], [47.374853, 8.518843], [47.36648, 8.545272], [47.358639, 8.557143], [47.366889, 8.520165], [47.366989, 8.536214], [47.370653, 8.517765], [47.389543, 8.521618], [47.370188, 8.548818], [47.409486, 8.540468], [47.382743, 8.540604], [47.389989, 8.491785], [47.412246, 8.524505], [47.373828, 8.503211], [47.37277, 8.499945], [47.380418, 8.54286], [47.385339, 8.530539], [47.376383, 8.510068], [47.371939, 8.489455], [47.38322, 8.506047], [47.409084, 8.547774], [47.425744, 8.49383], [47.408053, 8.577857], [47.395357, 8.521259], [47.357963, 8.520447], [47.399465, 8.521568], [47.368709, 8.501334], [47.358455, 8.517783], [47.397672, 8.533348], [47.422703, 8.49878], [47.387402, 8.487482], [47.394249, 8.480278], [47.367967, 8.540298], [47.404632, 8.556969], [47.36268, 8.510362], [47.420753, 8.549342], [47.370188, 8.548805], [47.391632, 8.523237], [47.401474, 8.581916], [47.395595, 8.48563], [47.410781, 8.545212], [47.368095, 8.523844], [47.383316, 8.539914], [47.378062, 8.510327], [47.363114, 8.517864], [47.371795, 8.534048], [47.364595, 8.566218], [47.39072, 8.539749], [47.377581, 8.511814], [47.399614, 8.54759], [47.379354, 8.542269], [47.364077, 8.547222], [47.389623, 8.51199], [47.374477, 8.546127], [47.369639, 8.467179], [47.370434, 8.514199], [47.381021, 8.528689], [47.385111, 8.503847], [47.3734, 8.503864], [47.379124, 8.495675], [47.353032, 8.572115], [47.398386, 8.537642], [47.35612, 8.520317], [47.372011, 8.534966], [47.381472, 8.571528], [47.373707, 8.559803], [47.405802, 8.53541], [47.375212, 8.544593], [47.391493, 8.538877], [47.380313, 8.548222], [47.355913, 8.535536], [47.382274, 8.495499], [47.369775, 8.508677], [47.365559, 8.53907], [47.349119, 8.562065], [47.373808, 8.535162], [47.385926, 8.532153], [47.365741, 8.536016], [47.369893, 8.552334], [47.372855, 8.535116], [47.413697, 8.520373], [47.397863, 8.534001], [47.369503, 8.526203], [47.410724, 8.544588], [47.414533, 8.52047], [47.351956, 8.504746], [47.416677, 8.546713], [47.369292, 8.555923], [47.408546, 8.546597], [47.43116, 8.516102], [47.36171, 8.511203], [47.366756, 8.541836], [47.414234, 8.53402], [47.376779, 8.536839], [47.367117, 8.561266], [47.369945, 8.5488], [47.378602, 8.509398], [47.372256, 8.535739], [47.393209, 8.530647], [47.428157, 8.542631], [47.397533, 8.533716], [47.336063, 8.524872], [47.338359, 8.532224], [47.411275, 8.562104], [47.384229, 8.489181], [47.388646, 8.491136], [47.363174, 8.530641], [47.405794, 8.590714], [47.405867, 8.590676], [47.371223, 8.520253], [47.368855, 8.548036], [47.425719, 8.553913], [47.388026, 8.528912], [47.374546, 8.539905], [47.375838, 8.536409], [47.407148, 8.586609], [47.399047, 8.51422], [47.393212, 8.524593], [47.373672, 8.534391], [47.382843, 8.530011], [47.375643, 8.559552], [47.375502, 8.56384], [47.377276, 8.523262], [47.37036, 8.530788], [47.399362, 8.542908], [47.384702, 8.531334], [47.37996, 8.555948], [47.391933, 8.517984], [47.375763, 8.536752], [47.374044, 8.534055], [47.383971, 8.504579], [47.362196, 8.559455], [47.346023, 8.531269], [47.352133, 8.558237], [47.414037, 8.561076], [47.39447, 8.53417], [47.38061, 8.536931], [47.37606, 8.535765], [47.422674, 8.546944], [47.361327, 8.505926], [47.365337, 8.52159], [47.366233, 8.537217], [47.369767, 8.535437], [47.371419, 8.530095], [47.400866, 8.537018], [47.344792, 8.531125], [47.362778, 8.519128], [47.421333, 8.549871], [47.380434, 8.543999], [47.397215, 8.531193], [47.400176, 8.547059], [47.416865, 8.54017], [47.383399, 8.543412], [47.410804, 8.558729], [47.380375, 8.493634], [47.360998, 8.51712], [47.370809, 8.524111], [47.418132, 8.508721], [47.360433, 8.601291], [47.367195, 8.544784], [47.389228, 8.491372], [47.379235, 8.508046], [47.387009, 8.519381], [47.391363, 8.537497], [47.419512, 8.505383], [47.415796, 8.558741], [47.369112, 8.554079], [47.377071, 8.535402], [47.339411, 8.519885], [47.375957, 8.541854], [47.376316, 8.547569], [47.341794, 8.52], [47.339141, 8.519867], [47.381275, 8.533237], [47.381491, 8.503337], [47.361386, 8.551177], [47.390468, 8.539797], [47.390944, 8.489724], [47.368311, 8.50453], [47.377149, 8.540422], [47.374458, 8.521576], [47.413776, 8.546189], [47.375098, 8.518623], [47.375009, 8.52801], [47.347331, 8.532791], [47.414568, 8.561047], [47.389344, 8.537906], [47.37407, 8.528414], [47.380233, 8.483461], [47.331077, 8.53562], [47.348165, 8.529222], [47.363535, 8.532436], [47.369831, 8.55228], [47.413843, 8.545819], [47.40224, 8.556005], [47.40816, 8.57248], [47.396104, 8.526904], [47.350366, 8.560583], [47.413088, 8.558816], [47.417948, 8.546382], [47.381795, 8.489835], [47.37676, 8.535077], [47.411336, 8.544574], [47.38336, 8.474913], [47.369124, 8.525427], [47.378875, 8.526314], [47.399843, 8.543342], [47.367396, 8.545371], [47.409965, 8.541247], [47.404885, 8.572582], [47.366217, 8.548272], [47.395506, 8.545372], [47.374518, 8.530542], [47.389129, 8.551862], [47.401858, 8.531089], [47.369231, 8.541688], [47.350054, 8.562125], [47.374765, 8.529077], [47.419522, 8.508206], [47.372611, 8.534317], [47.379238, 8.538386], [47.379993, 8.527966], [47.387936, 8.536526], [47.361135, 8.522709], [47.414124, 8.518951], [47.393199, 8.53066], [47.368645, 8.524649], [47.383236, 8.574228], [47.354158, 8.531886], [47.418761, 8.540408], [47.386185, 8.51808], [47.393482, 8.512942], [47.429839, 8.544574], [47.371787, 8.529228], [47.399896, 8.495345], [47.386241, 8.517776], [47.424591, 8.495889], [47.367751, 8.534627], [47.393419, 8.529366], [47.409316, 8.549793], [47.414291, 8.539362], [47.344526, 8.529809], [47.373538, 8.537077], [47.355703, 8.556552], [47.377571, 8.546205], [47.397444, 8.553414], [47.390902, 8.523368], [47.353637, 8.554351], [47.415983, 8.527867], [47.378625, 8.519463], [47.37067, 8.56493], [47.378449, 8.523789], [47.383424, 8.511243], [47.359948, 8.559381], [47.383192, 8.506126], [47.380534, 8.53448], [47.377093, 8.540699], [47.370154, 8.521065], [47.376429, 8.534859], [47.406643, 8.548068], [47.382743, 8.540604], [47.364983, 8.531486], [47.396249, 8.487961], [47.364678, 8.548386], [47.372431, 8.532433], [47.409021, 8.543957], [47.367615, 8.555411], [47.40692, 8.487588], [47.375078, 8.518755], [47.373017, 8.547368], [47.365183, 8.519773], [47.37551, 8.536866], [47.35289, 8.557181], [47.414438, 8.51901], [47.363757, 8.547798], [47.384714, 8.548909], [47.370197, 8.548819], [47.376798, 8.543341], [47.36508, 8.553293], [47.371325, 8.52089], [47.373831, 8.545955], [47.356237, 8.535582], [47.39736, 8.527275], [47.410385, 8.548106], [47.415019, 8.515616], [47.374725, 8.518099], [47.385869, 8.492776], [47.369073, 8.530828], [47.380962, 8.492348], [47.373535, 8.545008], [47.387188, 8.488272], [47.383768, 8.540599], [47.35767, 8.572505], [47.370179, 8.548792], [47.344951, 8.533338], [47.378842, 8.525122], [47.386447, 8.534164], [47.398362, 8.537403], [47.40485, 8.548388], [47.381888, 8.531117], [47.391031, 8.521132], [47.384581, 8.52508], [47.362095, 8.551324], [47.407572, 8.546855], [47.37387, 8.544684], [47.388533, 8.483809], [47.397643, 8.588206], [47.348602, 8.563457], [47.378303, 8.528819], [47.397821, 8.538399], [47.386933, 8.490625], [47.421385, 8.550032], [47.369207, 8.528024], [47.356592, 8.523715], [47.38068, 8.538098], [47.359099, 8.550454], [47.414569, 8.56008], [47.360275, 8.566471], [47.404427, 8.572467], [47.340687, 8.529558], [47.395149, 8.524222], [47.381646, 8.51673], [47.357345, 8.550431], [47.418317, 8.552936], [47.349947, 8.533944], [47.4108, 8.545173], [47.376451, 8.489928], [47.422281, 8.547585], [47.355333, 8.600386], [47.359214, 8.522286], [47.402342, 8.499316], [47.365388, 8.54562], [47.361619, 8.514259], [47.393383, 8.500329], [47.357384, 8.588662], [47.380936, 8.492255], [47.381795, 8.489835], [47.404208, 8.573707], [47.367807, 8.560579], [47.373876, 8.546022], [47.409978, 8.552046], [47.399692, 8.504827], [47.393821, 8.524818], [47.399635, 8.50517], [47.368325, 8.536691], [47.328651, 8.52967], [47.369755, 8.540481], [47.378564, 8.542067], [47.404352, 8.533618], [47.361455, 8.56541], [47.365116, 8.55328], [47.375718, 8.564771], [47.391107, 8.46954], [47.412972, 8.538128], [47.416296, 8.545128], [47.358294, 8.586762], [47.366639, 8.547447], [47.402705, 8.535691], [47.365338, 8.494237], [47.380205, 8.558456], [47.369032, 8.528457], [47.377599, 8.492255], [47.377892, 8.537047], [47.37087, 8.520524], [47.362613, 8.497215], [47.369318, 8.525815], [47.395363, 8.546243], [47.426278, 8.554733], [47.37582, 8.512546], [47.415106, 8.510118], [47.374476, 8.541585], [47.397989, 8.474535], [47.405909, 8.480983], [47.377085, 8.527244], [47.409523, 8.549837], [47.373924, 8.53155], [47.407936, 8.583327], [47.393947, 8.494711], [47.379877, 8.527884], [47.377523, 8.498623], [47.35709, 8.535758], [47.365117, 8.553214], [47.402887, 8.580966], [47.405835, 8.591086], [47.373961, 8.517051], [47.37786, 8.544224], [47.381426, 8.517162], [47.414464, 8.553213], [47.334022, 8.531447], [47.410341, 8.544196], [47.378042, 8.510605], [47.412123, 8.5507], [47.3718, 8.516279], [47.374618, 8.487707], [47.406481, 8.550012], [47.399531, 8.496901], [47.40591, 8.491795], [47.405017, 8.571022], [47.423891, 8.502647], [47.386147, 8.524993], [47.377696, 8.525403], [47.413748, 8.545433], [47.373544, 8.527887], [47.393067, 8.524683], [47.370285, 8.515758], [47.372213, 8.553389], [47.379269, 8.537897], [47.368899, 8.54809], [47.374093, 8.489021], [47.393478, 8.512452], [47.356418, 8.51152], [47.425926, 8.493542], [47.375005, 8.513126], [47.390064, 8.485494], [47.373389, 8.531976], [47.42477, 8.537564], [47.367863, 8.539833], [47.402824, 8.499736], [47.421215, 8.511858], [47.383088, 8.530784], [47.404919, 8.557094], [47.386461, 8.51835], [47.428058, 8.547387], [47.383424, 8.533241], [47.376381, 8.527574], [47.392369, 8.491209], [47.378486, 8.528452], [47.392068, 8.500502], [47.374512, 8.541586], [47.363366, 8.557507], [47.375544, 8.541819], [47.395748, 8.545483], [47.431151, 8.516101], [47.366711, 8.542748], [47.410611, 8.557254], [47.369485, 8.526255], [47.366202, 8.545187], [47.387692, 8.538494], [47.359324, 8.569906], [47.376491, 8.528252], [47.408782, 8.549252], [47.36186, 8.547692], [47.365391, 8.53111], [47.41002, 8.527851], [47.366833, 8.543108], [47.40992, 8.541259], [47.360343, 8.523725], [47.397174, 8.594555], [47.375923, 8.559492], [47.352706, 8.524642], [47.360369, 8.523845], [47.410877, 8.563209], [47.389191, 8.48859], [47.335269, 8.541198], [47.337064, 8.519825], [47.386823, 8.547536], [47.403395, 8.548133], [47.416888, 8.545326], [47.402408, 8.582943], [47.364574, 8.546133], [47.380925, 8.572284], [47.383517, 8.533005], [47.419907, 8.535303], [47.36022, 8.562882], [47.386277, 8.493473], [47.373923, 8.502749], [47.387548, 8.537617], [47.405799, 8.591112], [47.379989, 8.520735], [47.400683, 8.532589], [47.396357, 8.485883], [47.406543, 8.584185], [47.379909, 8.527329], [47.377665, 8.538274], [47.36067, 8.566519], [47.384701, 8.527638], [47.378157, 8.52618], [47.376038, 8.488768], [47.403835, 8.546393], [47.378917, 8.527613], [47.374072, 8.527289], [47.390949, 8.507752], [47.33707, 8.520089], [47.394268, 8.484133], [47.3897, 8.511541], [47.410645, 8.550987], [47.367587, 8.545176], [47.354579, 8.53204], [47.414215, 8.51886], [47.365854, 8.546703], [47.374895, 8.536244], [47.379794, 8.53759], [47.404088, 8.548081], [47.375377, 8.485378], [47.35863, 8.517336], [47.359332, 8.507674], [47.378403, 8.52012], [47.382096, 8.505071], [47.37395, 8.544832], [47.367339, 8.530607], [47.37272, 8.56778], [47.376159, 8.526338], [47.367897, 8.494804], [47.413557, 8.554069], [47.377728, 8.517286], [47.3705, 8.492485], [47.368223, 8.544527], [47.364184, 8.54737], [47.367155, 8.54428], [47.414423, 8.537787], [47.385298, 8.536776], [47.39915, 8.521535], [47.373555, 8.534416], [47.357722, 8.599882], [47.409567, 8.5377], [47.378005, 8.521264], [47.368741, 8.543995], [47.375666, 8.537518], [47.365388, 8.535241], [47.372349, 8.505657], [47.416646, 8.555459], [47.411526, 8.54544], [47.368345, 8.527887], [47.381467, 8.529042], [47.39108, 8.522629], [47.373174, 8.503926], [47.379808, 8.546489], [47.411926, 8.538345], [47.391199, 8.488298], [47.42744, 8.539567], [47.369256, 8.527614], [47.366902, 8.544394], [47.395234, 8.508394], [47.357323, 8.550827], [47.342024, 8.530856], [47.420697, 8.551475], [47.414778, 8.519229], [47.359479, 8.551164], [47.349817, 8.575316], [47.385573, 8.536159], [47.373617, 8.536377], [47.354681, 8.575565], [47.373599, 8.527809], [47.373861, 8.544684], [47.356589, 8.527792], [47.418488, 8.549163], [47.378344, 8.52731], [47.356557, 8.532186], [47.391629, 8.512997], [47.386383, 8.48182], [47.429908, 8.54956], [47.359271, 8.534347], [47.414544, 8.558039], [47.4059, 8.580912], [47.352453, 8.557781], [47.371564, 8.535646], [47.402157, 8.585561], [47.388578, 8.483717], [47.336678, 8.533089], [47.388164, 8.484782], [47.397432, 8.509935], [47.353287, 8.525091], [47.41162, 8.544951], [47.391164, 8.489225], [47.36845, 8.54714], [47.361578, 8.561031], [47.378393, 8.519286], [47.381827, 8.533751], [47.377548, 8.54198], [47.38273, 8.532472], [47.377695, 8.541731], [47.374115, 8.502342], [47.406353, 8.537979], [47.378015, 8.508658], [47.421259, 8.542554], [47.370304, 8.548874], [47.402931, 8.581895], [47.356635, 8.551263], [47.390823, 8.52224], [47.40863, 8.503257], [47.386541, 8.52806], [47.387412, 8.497257], [47.358924, 8.557374], [47.401674, 8.50064], [47.383192, 8.547248], [47.403225, 8.497253], [47.359936, 8.522023], [47.377856, 8.508297], [47.369031, 8.540956], [47.404501, 8.558464], [47.364834, 8.566646], [47.392136, 8.509709], [47.376096, 8.535818], [47.380233, 8.515827], [47.373948, 8.476266], [47.374468, 8.502164], [47.410295, 8.54242], [47.358666, 8.585552], [47.377668, 8.512041], [47.374273, 8.526909], [47.391904, 8.518195], [47.374251, 8.517732], [47.370016, 8.511834], [47.374686, 8.52411], [47.383471, 8.528342], [47.414594, 8.483472], [47.398563, 8.538931], [47.37109, 8.520091], [47.369373, 8.525683], [47.366166, 8.540486], [47.381291, 8.528602], [47.373575, 8.51985], [47.348085, 8.571163], [47.33618, 8.524848], [47.378943, 8.478959], [47.402649, 8.49234], [47.385789, 8.528601], [47.359856, 8.531473], [47.37568, 8.544563], [47.417565, 8.483186], [47.407537, 8.579118], [47.36182, 8.560202], [47.431774, 8.543514], [47.36781, 8.539713], [47.406522, 8.550357], [47.375541, 8.526948], [47.359252, 8.592594], [47.376409, 8.527429], [47.409243, 8.547062], [47.405201, 8.585282], [47.378669, 8.519503], [47.365795, 8.532151], [47.40018, 8.546728], [47.386369, 8.51852], [47.36994, 8.564146], [47.398328, 8.54184], [47.393971, 8.525112], [47.364836, 8.554387], [47.408884, 8.557244], [47.361588, 8.503006], [47.359945, 8.522989], [47.376122, 8.534018], [47.400083, 8.590644], [47.405254, 8.502606], [47.380638, 8.548083], [47.354372, 8.555544], [47.382876, 8.474639], [47.403135, 8.486374], [47.397165, 8.530768], [47.38335, 8.515254], [47.402707, 8.552371], [47.364654, 8.536775], [47.363716, 8.562307], [47.393281, 8.501652], [47.39339, 8.500581], [47.376252, 8.484018], [47.383094, 8.532056], [47.420801, 8.549078], [47.3756, 8.548176], [47.341185, 8.536834], [47.419087, 8.546697], [47.419192, 8.507934], [47.388374, 8.545237], [47.369163, 8.527943], [47.38693, 8.544823], [47.35809, 8.553385], [47.369106, 8.549074], [47.365031, 8.531195], [47.389377, 8.521072], [47.362461, 8.54883], [47.373697, 8.544998], [47.385253, 8.536722], [47.364466, 8.555478], [47.383316, 8.539927], [47.417899, 8.554292], [47.398988, 8.541563], [47.373866, 8.49516], [47.396456, 8.528713], [47.394142, 8.493085], [47.360702, 8.55021], [47.418048, 8.502252], [47.376545, 8.540635], [47.389663, 8.511554], [47.373814, 8.502853], [47.410883, 8.54491], [47.404201, 8.561531], [47.368955, 8.540412], [47.366522, 8.536164], [47.415268, 8.510095], [47.407144, 8.586185], [47.38592, 8.521399], [47.390696, 8.508833], [47.409256, 8.54481], [47.378411, 8.541084], [47.377018, 8.537188], [47.365081, 8.531567], [47.378186, 8.517361], [47.378682, 8.54199], [47.408817, 8.55022], [47.37429, 8.522222], [47.379474, 8.527638], [47.381824, 8.483624], [47.372954, 8.522751], [47.379867, 8.525103], [47.363333, 8.52045], [47.373168, 8.494842], [47.364842, 8.566673], [47.375545, 8.548268], [47.378791, 8.522883], [47.374845, 8.518711], [47.370188, 8.548818], [47.38491, 8.495379], [47.392684, 8.524265], [47.425564, 8.497684], [47.36641, 8.541312], [47.386861, 8.528424], [47.374499, 8.540063], [47.365851, 8.55266], [47.410233, 8.546075], [47.384408, 8.542373], [47.357643, 8.572518], [47.39133, 8.536198], [47.367083, 8.523439], [47.373588, 8.553524], [47.364624, 8.554899], [47.407858, 8.536751], [47.367128, 8.544319], [47.394329, 8.48938], [47.401176, 8.58293], [47.365034, 8.536518], [47.395761, 8.482189], [47.369245, 8.49201], [47.362233, 8.526398], [47.371263, 8.530356], [47.364816, 8.570327], [47.367739, 8.530178], [47.404083, 8.563556], [47.362052, 8.52654], [47.370227, 8.539101], [47.364632, 8.537171], [47.392412, 8.538737], [47.379583, 8.510252], [47.384118, 8.548248], [47.369921, 8.508442], [47.377389, 8.529436], [47.390763, 8.521961], [47.368574, 8.499385], [47.383913, 8.542416], [47.361625, 8.526055], [47.357081, 8.535771], [47.401857, 8.548193], [47.391369, 8.550916], [47.431772, 8.531358], [47.402105, 8.579956], [47.335342, 8.541146], [47.383326, 8.486594], [47.373852, 8.535282], [47.342197, 8.526797], [47.361162, 8.526562], [47.366938, 8.544342], [47.364533, 8.531503], [47.420911, 8.548842], [47.381546, 8.548194], [47.378927, 8.519826], [47.396554, 8.528834], [47.391068, 8.52296], [47.391018, 8.522509], [47.361046, 8.571279], [47.361046, 8.571293], [47.36187, 8.515271], [47.39432, 8.489353], [47.399771, 8.544334], [47.339954, 8.529993], [47.366185, 8.545028], [47.411954, 8.528765], [47.375148, 8.525748], [47.364918, 8.565377], [47.430433, 8.542625], [47.356046, 8.553607], [47.360589, 8.535751], [47.381803, 8.533473], [47.355631, 8.55655], [47.35205, 8.50533], [47.37384, 8.53658], [47.38797, 8.485374], [47.424784, 8.495495], [47.357635, 8.553971], [47.390994, 8.486122], [47.418066, 8.51972], [47.380365, 8.513234], [47.386565, 8.540643], [47.378396, 8.54556], [47.378284, 8.510636], [47.381087, 8.555667], [47.362767, 8.522226], [47.405148, 8.500352], [47.385778, 8.520204], [47.364842, 8.566686], [47.40712, 8.586741], [47.410155, 8.566308], [47.369783, 8.556225], [47.370119, 8.532412], [47.366176, 8.540328], [47.3691, 8.525109], [47.426942, 8.546542], [47.369839, 8.510479], [47.348343, 8.534255], [47.379411, 8.489801], [47.338223, 8.527603], [47.370695, 8.549359], [47.358119, 8.518173], [47.405928, 8.540103], [47.381034, 8.569373], [47.415759, 8.481944], [47.387408, 8.500647], [47.399852, 8.495292], [47.382129, 8.488716], [47.373713, 8.503049], [47.378801, 8.478705], [47.378943, 8.478946], [47.394137, 8.508279], [47.397235, 8.540506], [47.369461, 8.525897], [47.419677, 8.548021], [47.326001, 8.518727], [47.39788, 8.534121], [47.370426, 8.524685], [47.386494, 8.529145], [47.371324, 8.520096], [47.40237, 8.545356], [47.369398, 8.525922], [47.369666, 8.533793], [47.38427, 8.52849], [47.407404, 8.549342], [47.33742, 8.519236], [47.376033, 8.488384], [47.431363, 8.51649], [47.415755, 8.531043], [47.381519, 8.548127], [47.38322, 8.506021], [47.404888, 8.576822], [47.361715, 8.547808], [47.361811, 8.560215], [47.393607, 8.512137], [47.371536, 8.511772], [47.407878, 8.565425], [47.409377, 8.550046], [47.390867, 8.522307], [47.380799, 8.512024], [47.406816, 8.550655], [47.404424, 8.533593], [47.409536, 8.535248], [47.375112, 8.545571], [47.378966, 8.542393], [47.376103, 8.536004], [47.382768, 8.514064], [47.416809, 8.547021], [47.366148, 8.540499], [47.394096, 8.493177], [47.375496, 8.518353], [47.37025, 8.556327], [47.366787, 8.54978], [47.40182, 8.548232], [47.375896, 8.494486], [47.384761, 8.497906], [47.361955, 8.560191], [47.365619, 8.552444], [47.366777, 8.520599], [47.377539, 8.54198], [47.387229, 8.518962], [47.380097, 8.522605], [47.409319, 8.546706], [47.408956, 8.566521], [47.414331, 8.518014], [47.373041, 8.534551], [47.401393, 8.588261], [47.429343, 8.542854], [47.372868, 8.562818], [47.393658, 8.512416], [47.409037, 8.539492], [47.375221, 8.550208], [47.424382, 8.544262], [47.385346, 8.493944], [47.404145, 8.532739], [47.373616, 8.538389], [47.380283, 8.512398], [47.370179, 8.548818], [47.376805, 8.535052], [47.381035, 8.503964], [47.379431, 8.527518], [47.379261, 8.517847], [47.358281, 8.585319], [47.413827, 8.509297], [47.387878, 8.520763], [47.36018, 8.534273], [47.328702, 8.517525], [47.372542, 8.529257], [47.35294, 8.524673], [47.389891, 8.538036], [47.386155, 8.525112], [47.375989, 8.559162], [47.375093, 8.528647], [47.373456, 8.52002], [47.381692, 8.547985], [47.382353, 8.547522], [47.363778, 8.567021], [47.393736, 8.502111], [47.365551, 8.566926], [47.351035, 8.582211], [47.389786, 8.471449], [47.360504, 8.526601], [47.387896, 8.524525], [47.368972, 8.540518], [47.377321, 8.563719], [47.387182, 8.478935], [47.379709, 8.566908], [47.379719, 8.566882], [47.398864, 8.533744], [47.387922, 8.498538], [47.393222, 8.524461], [47.400958, 8.491392], [47.392973, 8.522218], [47.391188, 8.515863], [47.385978, 8.548459], [47.372935, 8.536164], [47.384168, 8.575506], [47.397958, 8.532559], [47.353488, 8.55861], [47.378633, 8.559165], [47.402854, 8.536065], [47.373275, 8.520135], [47.377606, 8.558441], [47.34006, 8.530273], [47.359542, 8.549245], [47.362233, 8.55939], [47.379423, 8.51879], [47.375808, 8.487373], [47.39375, 8.502443], [47.383083, 8.514997], [47.423697, 8.54442], [47.378051, 8.510565], [47.383594, 8.545668], [47.367741, 8.509802], [47.366951, 8.543945], [47.377759, 8.498336], [47.388756, 8.536291], [47.378413, 8.496641], [47.369358, 8.528265], [47.366061, 8.533533], [47.374644, 8.538106], [47.424157, 8.549003], [47.368738, 8.501216], [47.370302, 8.522617], [47.379015, 8.495766], [47.363765, 8.551677], [47.377368, 8.512432], [47.372404, 8.505552], [47.38472, 8.527493], [47.39177, 8.513318], [47.406481, 8.550012], [47.36494, 8.537879], [47.379537, 8.558773], [47.386225, 8.51857], [47.389731, 8.512005], [47.392499, 8.50255], [47.393842, 8.481555], [47.378592, 8.542928], [47.387297, 8.533718], [47.369726, 8.536866], [47.414133, 8.518964], [47.371073, 8.523811], [47.396461, 8.543312], [47.373939, 8.476266], [47.39285, 8.474886], [47.415598, 8.563362], [47.377183, 8.521632], [47.383782, 8.549486], [47.360962, 8.588872], [47.411697, 8.537864], [47.3682, 8.546036], [47.413716, 8.536527], [47.375661, 8.537134], [47.336682, 8.517316], [47.372921, 8.528192], [47.426466, 8.55487], [47.400117, 8.547654], [47.385952, 8.517982], [47.35963, 8.593516], [47.363742, 8.575269], [47.354736, 8.555102], [47.401498, 8.578538], [47.392472, 8.487794], [47.391627, 8.480823], [47.379065, 8.542329], [47.374183, 8.543009], [47.403608, 8.534278], [47.410366, 8.548159], [47.426567, 8.544281], [47.341112, 8.536938], [47.368052, 8.546378], [47.380825, 8.503417], [47.400881, 8.517278], [47.366948, 8.541443], [47.337916, 8.5017], [47.358537, 8.551832], [47.382414, 8.529697], [47.416004, 8.530439], [47.387251, 8.501081], [47.397949, 8.532559], [47.412962, 8.538221], [47.371272, 8.536077], [47.361217, 8.502217], [47.364577, 8.566244], [47.382886, 8.513934], [47.346101, 8.534421], [47.386529, 8.523596], [47.396321, 8.543852], [47.39783, 8.529006], [47.37659, 8.525394], [47.35285, 8.510244], [47.360421, 8.549568], [47.369275, 8.527482], [47.379366, 8.511386], [47.424816, 8.537458], [47.344374, 8.526815], [47.377034, 8.53744], [47.383078, 8.530903], [47.409159, 8.547444], [47.413757, 8.524549], [47.37617, 8.546943], [47.36226, 8.559324], [47.375482, 8.520829], [47.384482, 8.492974], [47.39488, 8.544988], [47.369933, 8.549131], [47.355942, 8.555961], [47.370152, 8.548804], [47.41722, 8.543504], [47.429345, 8.546407], [47.358973, 8.549565], [47.403114, 8.588881], [47.411649, 8.562457], [47.3835, 8.515655], [47.367107, 8.545563], [47.374435, 8.541107], [47.385189, 8.536814], [47.422502, 8.551725], [47.381487, 8.530751], [47.34845, 8.534363], [47.411169, 8.526152], [47.42323, 8.498181], [47.40679, 8.550522], [47.347728, 8.563571], [47.370061, 8.548909], [47.358319, 8.571486], [47.361267, 8.487934], [47.337661, 8.521372], [47.356217, 8.55831], [47.352114, 8.523545], [47.369657, 8.467206], [47.333386, 8.518692], [47.36377, 8.57515], [47.376174, 8.528497], [47.360473, 8.535643], [47.40562, 8.537473], [47.388152, 8.520239], [47.395257, 8.540346], [47.344442, 8.53297], [47.379099, 8.538754], [47.389979, 8.522064], [47.373216, 8.550113], [47.355512, 8.56134], [47.343106, 8.534359], [47.363103, 8.518089], [47.386964, 8.488122], [47.386632, 8.518301], [47.361879, 8.547639], [47.37629, 8.547555], [47.390721, 8.522543], [47.377265, 8.53967], [47.374646, 8.487588], [47.376662, 8.549006], [47.396134, 8.527528], [47.357223, 8.552851], [47.413443, 8.530187], [47.394201, 8.488543], [47.392356, 8.539001], [47.376019, 8.528706], [47.377487, 8.538946], [47.38808, 8.485085], [47.38339, 8.543465], [47.376917, 8.544059], [47.365108, 8.553214], [47.406835, 8.550589], [47.404641, 8.556983], [47.374032, 8.544767], [47.366813, 8.535786], [47.419625, 8.50781], [47.402027, 8.499336], [47.358103, 8.498488], [47.39822, 8.532472], [47.379853, 8.554847], [47.393003, 8.525689], [47.419272, 8.507976], [47.3695, 8.52844], [47.387945, 8.526937], [47.344994, 8.533564], [47.408417, 8.57658], [47.363635, 8.531378], [47.381041, 8.532265], [47.396846, 8.534113], [47.363497, 8.546733], [47.397364, 8.502661], [47.35556, 8.507969], [47.430557, 8.547492], [47.407103, 8.585747], [47.35206, 8.558342], [47.367996, 8.544708], [47.36403, 8.511289], [47.342377, 8.530691], [47.335384, 8.525282], [47.369565, 8.520629], [47.381129, 8.538173], [47.381427, 8.53806], [47.335016, 8.528133], [47.42002, 8.508826], [47.371069, 8.518436], [47.406871, 8.55059], [47.387704, 8.478932], [47.413721, 8.54628], [47.373425, 8.513756], [47.422904, 8.511097], [47.369671, 8.525584], [47.367639, 8.565898], [47.395766, 8.54543], [47.370722, 8.535284], [47.417683, 8.51343], [47.3932, 8.530647], [47.401553, 8.495113], [47.401392, 8.53467], [47.41818, 8.546638], [47.372907, 8.567056], [47.34934, 8.534381], [47.373899, 8.52943], [47.379121, 8.552461], [47.36904, 8.538043], [47.381344, 8.542045], [47.405432, 8.592707], [47.372605, 8.509105], [47.359561, 8.55102], [47.397946, 8.510753], [47.363869, 8.535103], [47.416922, 8.51311], [47.378903, 8.523335], [47.375546, 8.529279], [47.379455, 8.529716], [47.397759, 8.533562], [47.379505, 8.547132], [47.3998, 8.53938], [47.365739, 8.516103], [47.41726, 8.523136], [47.381148, 8.491663], [47.36044, 8.561523], [47.397551, 8.501976], [47.394137, 8.530481], [47.354788, 8.556281], [47.360734, 8.585583], [47.397683, 8.509105], [47.405914, 8.581349], [47.38196, 8.548084], [47.393425, 8.503615], [47.42308, 8.542115], [47.383465, 8.484226], [47.402098, 8.497562], [47.422375, 8.53872], [47.402556, 8.492709], [47.374833, 8.527662], [47.369014, 8.53795], [47.386742, 8.547521], [47.421048, 8.549561], [47.40198, 8.499653], [47.360944, 8.505575], [47.38494, 8.508744], [47.370994, 8.548186], [47.347398, 8.516117], [47.376421, 8.560006], [47.353996, 8.53089], [47.37165, 8.502386], [47.365126, 8.553215], [47.393021, 8.526669], [47.352403, 8.573875], [47.396391, 8.528023], [47.374619, 8.541681], [47.391864, 8.53205], [47.367738, 8.533118], [47.375168, 8.492511], [47.363158, 8.594175], [47.369607, 8.528614], [47.357065, 8.55523], [47.37865, 8.519622], [47.370182, 8.51324], [47.370499, 8.510162], [47.417044, 8.548722], [47.382696, 8.529385], [47.371197, 8.490963], [47.368896, 8.538133], [47.40661, 8.551472], [47.329729, 8.530697], [47.373573, 8.503603], [47.40356, 8.572832], [47.36904, 8.538043], [47.364384, 8.536756], [47.383428, 8.515627], [47.375526, 8.520896], [47.373293, 8.552405], [47.365112, 8.526364], [47.367382, 8.535586], [47.361842, 8.547665], [47.369889, 8.510917], [47.382144, 8.512515], [47.372091, 8.547375], [47.381008, 8.50301], [47.400217, 8.592501], [47.401008, 8.534331], [47.371499, 8.546171], [47.427094, 8.491697], [47.381066, 8.507527], [47.3624, 8.612309], [47.373201, 8.520346], [47.36709, 8.53979], [47.414645, 8.519968], [47.404831, 8.548533], [47.404726, 8.546332], [47.378741, 8.531], [47.38456, 8.487413], [47.404327, 8.546615], [47.414257, 8.536366], [47.377945, 8.526706], [47.421741, 8.500736], [47.378786, 8.510845], [47.403418, 8.534473], [47.378528, 8.542066], [47.383163, 8.531355], [47.370689, 8.516746], [47.37326, 8.535072], [47.393575, 8.511686], [47.409777, 8.543933], [47.393507, 8.526706], [47.359529, 8.535583], [47.365392, 8.564791], [47.379346, 8.542163], [47.370022, 8.558573], [47.404705, 8.549472], [47.390223, 8.52485], [47.384629, 8.484752], [47.402623, 8.541452], [47.363658, 8.507787], [47.39047, 8.539611], [47.403844, 8.576893], [47.365614, 8.548286], [47.37929, 8.515609], [47.38064, 8.517543], [47.364126, 8.520307], [47.377547, 8.542072], [47.359733, 8.549077], [47.377696, 8.531216], [47.408096, 8.572571], [47.379757, 8.537668], [47.360682, 8.531636], [47.382731, 8.539902], [47.361625, 8.506833], [47.371881, 8.525894], [47.428006, 8.490349], [47.369088, 8.537819], [47.372574, 8.547623], [47.356766, 8.532853], [47.36214, 8.535333], [47.394405, 8.50851], [47.377135, 8.526716], [47.369551, 8.553294], [47.35001, 8.533879], [47.406512, 8.556094], [47.370157, 8.539801], [47.380819, 8.497139], [47.367147, 8.536627], [47.362506, 8.533699], [47.377056, 8.528436], [47.388894, 8.515949], [47.372467, 8.566119], [47.384373, 8.53183], [47.362761, 8.567966], [47.385434, 8.536686], [47.362594, 8.533965], [47.40411, 8.56353], [47.379824, 8.519129], [47.367974, 8.540431], [47.403794, 8.558104], [47.387982, 8.490977], [47.383342, 8.510314], [47.362251, 8.559324], [47.339526, 8.527762], [47.418224, 8.546679], [47.378055, 8.526496], [47.389877, 8.535731], [47.340496, 8.537389], [47.365639, 8.532518], [47.425853, 8.4937], [47.341327, 8.530379], [47.408652, 8.504781], [47.370134, 8.548804], [47.388969, 8.477248], [47.40569, 8.56934], [47.393409, 8.524611], [47.374645, 8.550156], [47.401997, 8.491797], [47.398696, 8.548578], [47.353586, 8.576164], [47.388572, 8.470366], [47.385409, 8.536461], [47.382955, 8.515273], [47.390549, 8.545441], [47.412019, 8.5503], [47.409149, 8.54751], [47.363044, 8.556401], [47.370106, 8.548883], [47.374916, 8.518818], [47.417486, 8.545789], [47.374977, 8.537093], [47.358374, 8.571381], [47.376037, 8.533526], [47.372548, 8.555912], [47.360447, 8.531776], [47.383088, 8.48406], [47.391996, 8.523761], [47.389702, 8.539039], [47.388421, 8.487197], [47.377658, 8.55496], [47.397491, 8.532484], [47.373245, 8.529073], [47.37328, 8.514852], [47.382625, 8.54823], [47.356446, 8.570745], [47.371751, 8.523494], [47.397037, 8.480399], [47.419549, 8.508246], [47.354855, 8.554959], [47.365673, 8.521212], [47.353492, 8.576559], [47.379353, 8.542295], [47.401468, 8.587017], [47.348385, 8.562553], [47.425889, 8.493634], [47.390509, 8.508643], [47.368919, 8.540437], [47.40247, 8.556447], [47.364861, 8.537679], [47.367315, 8.545382], [47.410102, 8.542866], [47.372524, 8.543398], [47.3867, 8.525428], [47.387125, 8.546019], [47.398976, 8.541841], [47.40944, 8.549968], [47.36005, 8.550673], [47.407785, 8.585033], [47.37082, 8.535326], [47.369911, 8.552295], [47.419632, 8.54806], [47.37493, 8.534457], [47.391298, 8.486313], [47.369768, 8.561574], [47.418792, 8.530429], [47.369127, 8.504878], [47.386828, 8.534715], [47.376812, 8.499602], [47.378525, 8.54147], [47.399248, 8.542522], [47.373438, 8.520033], [47.417245, 8.522804], [47.42611, 8.543171], [47.381169, 8.504099], [47.390719, 8.515125], [47.361811, 8.560241], [47.394907, 8.536484], [47.339048, 8.519256], [47.414728, 8.559434], [47.368815, 8.524838], [47.414422, 8.545487], [47.381015, 8.491435], [47.408556, 8.546518], [47.373223, 8.535177], [47.387314, 8.552592], [47.386082, 8.504912], [47.379596, 8.567462], [47.395819, 8.528581], [47.371537, 8.547893], [47.369379, 8.499878], [47.352791, 8.525187], [47.371876, 8.529336], [47.383701, 8.588131], [47.370147, 8.504474], [47.37287, 8.546742], [47.373201, 8.503913], [47.407381, 8.547076], [47.374468, 8.552655], [47.400632, 8.534151], [47.418539, 8.547653], [47.385769, 8.492906], [47.377152, 8.535416], [47.371745, 8.473152], [47.419447, 8.506574], [47.396463, 8.504802], [47.36971, 8.507908], [47.409026, 8.550065], [47.362485, 8.526417], [47.408611, 8.546413], [47.370197, 8.548819], [47.365321, 8.546983], [47.380328, 8.503672], [47.388513, 8.489901], [47.369375, 8.532224], [47.374643, 8.495838], [47.404234, 8.561002], [47.377739, 8.537984], [47.373002, 8.485318], [47.373067, 8.536537], [47.356649, 8.534849], [47.398979, 8.533044], [47.380823, 8.549477], [47.371357, 8.515542], [47.372167, 8.539379], [47.398688, 8.539079], [47.410375, 8.539718], [47.369628, 8.540571], [47.394726, 8.478274], [47.37741, 8.500117], [47.356364, 8.591777], [47.427825, 8.490465], [47.387036, 8.519355], [47.370925, 8.502054], [47.381119, 8.528784], [47.409056, 8.539359], [47.361545, 8.506659], [47.393309, 8.542783], [47.404399, 8.50361], [47.36814, 8.523911], [47.404659, 8.574578], [47.375844, 8.529205], [47.410859, 8.563222], [47.398778, 8.539015], [47.34761, 8.532731], [47.397717, 8.533309], [47.369922, 8.511236], [47.371186, 8.523244], [47.367393, 8.546668], [47.408958, 8.543969], [47.386872, 8.497233], [47.366466, 8.544862], [47.356942, 8.507361], [47.377674, 8.538195], [47.417172, 8.541939], [47.378929, 8.542459], [47.375382, 8.526667], [47.411703, 8.549512], [47.365251, 8.520158], [47.385232, 8.547397], [47.370461, 8.475881], [47.405581, 8.54998], [47.394529, 8.546888], [47.379492, 8.516156], [47.370568, 8.535413], [47.364478, 8.531608], [47.408874, 8.558357], [47.426497, 8.536579], [47.402478, 8.553678], [47.369407, 8.525896], [47.366657, 8.507304], [47.364167, 8.526425], [47.37461, 8.536], [47.366769, 8.532833], [47.381688, 8.541827], [47.379142, 8.495649], [47.370519, 8.51767], [47.37459, 8.566999], [47.388171, 8.486014], [47.40054, 8.588971], [47.373545, 8.534508], [47.390728, 8.536133], [47.386547, 8.539742], [47.396372, 8.543244], [47.369333, 8.547874], [47.40257, 8.469246], [47.381131, 8.517898], [47.396898, 8.509288], [47.340414, 8.537453], [47.392626, 8.494565], [47.378301, 8.509802], [47.399286, 8.495201], [47.337614, 8.530131], [47.3764, 8.54912], [47.382719, 8.515493], [47.419596, 8.548073], [47.369871, 8.533982], [47.362597, 8.568135], [47.370674, 8.516441], [47.374878, 8.527623], [47.391903, 8.518301], [47.391908, 8.517838], [47.357655, 8.509017], [47.392087, 8.517894], [47.371846, 8.60154], [47.367531, 8.537893], [47.377025, 8.544048], [47.375294, 8.550064], [47.367108, 8.539778], [47.331043, 8.536374], [47.370224, 8.518405], [47.358972, 8.516417], [47.422224, 8.512687], [47.410607, 8.538066], [47.381599, 8.548275], [47.348099, 8.534342], [47.419641, 8.555575], [47.370416, 8.514265], [47.384921, 8.537563], [47.381463, 8.490716], [47.37995, 8.521039], [47.387341, 8.543202], [47.378132, 8.509627], [47.370278, 8.51164], [47.358167, 8.526501], [47.36196, 8.559728], [47.364559, 8.566257], [47.375233, 8.518586], [47.360021, 8.500274], [47.401207, 8.492656], [47.397024, 8.540939], [47.386035, 8.492382], [47.37981, 8.520612], [47.403579, 8.53449], [47.379102, 8.561876], [47.366665, 8.535267], [47.368273, 8.5116], [47.385629, 8.533194], [47.385106, 8.532296], [47.375446, 8.544585], [47.394164, 8.525673], [47.399739, 8.541075], [47.387634, 8.533208], [47.419681, 8.535431], [47.394278, 8.539319], [47.374443, 8.549675], [47.392683, 8.515694], [47.419753, 8.482924], [47.40216, 8.535295], [47.351735, 8.563127], [47.359071, 8.550586], [47.397326, 8.531871], [47.370372, 8.518037], [47.396225, 8.522708], [47.375717, 8.536883], [47.39659, 8.528769], [47.368578, 8.528991], [47.37719, 8.539893], [47.37683, 8.52761], [47.337152, 8.520978], [47.389673, 8.511514], [47.372812, 8.529196], [47.411805, 8.512994], [47.358854, 8.553467], [47.413784, 8.545341], [47.366102, 8.548085], [47.376664, 8.534731], [47.35205, 8.505277], [47.374049, 8.54482], [47.387747, 8.498946], [47.368705, 8.500844], [47.376932, 8.507073], [47.398523, 8.494974], [47.41425, 8.566938], [47.379971, 8.515888], [47.360976, 8.535732], [47.390804, 8.47429], [47.402701, 8.517924], [47.373822, 8.519445], [47.361539, 8.531402], [47.380996, 8.532264], [47.366929, 8.547254], [47.351143, 8.560162], [47.366942, 8.492998], [47.374111, 8.516378], [47.381682, 8.51375], [47.330533, 8.514056], [47.351805, 8.534366], [47.360623, 8.561183], [47.367086, 8.544001], [47.382485, 8.529858], [47.408717, 8.549396], [47.406862, 8.550603], [47.365183, 8.526472], [47.347872, 8.562648], [47.377458, 8.541991], [47.375869, 8.544527], [47.339801, 8.529117], [47.422047, 8.550416], [47.397262, 8.536678], [47.376482, 8.549056], [47.373717, 8.513298], [47.386043, 8.539758], [47.382558, 8.529753], [47.390076, 8.544093], [47.375587, 8.528803], [47.373391, 8.538332], [47.40581, 8.481034], [47.354145, 8.523771], [47.370374, 8.522539], [47.366184, 8.497127], [47.413272, 8.545357], [47.393952, 8.513707], [47.359083, 8.578836], [47.409803, 8.549724], [47.385828, 8.519622], [47.36153, 8.561387], [47.359242, 8.569944], [47.399962, 8.495029], [47.369133, 8.557456], [47.358314, 8.520428], [47.376681, 8.548967], [47.383925, 8.529781], [47.373631, 8.518633], [47.37436, 8.541463], [47.391959, 8.518144], [47.393873, 8.497968], [47.368598, 8.520133], [47.379058, 8.522213], [47.381514, 8.528792], [47.378462, 8.515659], [47.37778, 8.507779], [47.371014, 8.548002], [47.379278, 8.537884], [47.38828, 8.48681], [47.399434, 8.520998], [47.392405, 8.524299], [47.352361, 8.56261], [47.39598, 8.527657], [47.373586, 8.534919], [47.393776, 8.510338], [47.387347, 8.529401], [47.373388, 8.534915], [47.389199, 8.527505], [47.373025, 8.531425], [47.363131, 8.548341], [47.36539, 8.535082], [47.38752, 8.488345], [47.425735, 8.547644], [47.376789, 8.517571], [47.416983, 8.545725], [47.360989, 8.567015], [47.403844, 8.576893], [47.37283, 8.529197], [47.409352, 8.544136], [47.361123, 8.567111], [47.367319, 8.490092], [47.384124, 8.497695], [47.37843, 8.51044], [47.375346, 8.523766], [47.410709, 8.524407], [47.352192, 8.529529], [47.371838, 8.510321], [47.375358, 8.543364], [47.385815, 8.533462], [47.380088, 8.553819], [47.406235, 8.551186], [47.393273, 8.492684], [47.383261, 8.531476], [47.401162, 8.49957], [47.371505, 8.534294], [47.377914, 8.530003], [47.377269, 8.557017], [47.399913, 8.591435], [47.408184, 8.577396], [47.370769, 8.515013], [47.369952, 8.543425], [47.372176, 8.530891], [47.378022, 8.536626], [47.381199, 8.528878], [47.376312, 8.489356], [47.40048, 8.550139], [47.372654, 8.550499], [47.390764, 8.522742], [47.421924, 8.510136], [47.421085, 8.548461], [47.371406, 8.5465], [47.423991, 8.511225], [47.423016, 8.543147], [47.362172, 8.533877], [47.3412, 8.52761], [47.414346, 8.539323], [47.349807, 8.575395], [47.39963, 8.520246], [47.34381, 8.535088], [47.357973, 8.555262], [47.394138, 8.527527], [47.381933, 8.529211], [47.396089, 8.483718], [47.396011, 8.54529], [47.406916, 8.481109], [47.415649, 8.570108], [47.37789, 8.533485], [47.374629, 8.553718], [47.369201, 8.532499], [47.38594, 8.542034], [47.361337, 8.512572], [47.407882, 8.547431], [47.366865, 8.562214], [47.38781, 8.49892], [47.391492, 8.538997], [47.392635, 8.524741], [47.359915, 8.548869], [47.383417, 8.499336], [47.394845, 8.529753], [47.387961, 8.474341], [47.394957, 8.540671], [47.383886, 8.531012], [47.393351, 8.495984], [47.369998, 8.54328], [47.370789, 8.524362], [47.377611, 8.528752], [47.363546, 8.571399], [47.372009, 8.554881], [47.391406, 8.541419], [47.364068, 8.533108], [47.401363, 8.593083], [47.361694, 8.574033], [47.391333, 8.478486], [47.36027, 8.56148], [47.374705, 8.568127], [47.411806, 8.537786], [47.375848, 8.521115], [47.367735, 8.498746], [47.365669, 8.545428], [47.372337, 8.523268], [47.406817, 8.550576], [47.375494, 8.563826], [47.377598, 8.518594], [47.374002, 8.526069], [47.407042, 8.585574], [47.382639, 8.529689], [47.397665, 8.509105], [47.386086, 8.539958], [47.377486, 8.543806], [47.357355, 8.553184], [47.373853, 8.57616], [47.375379, 8.516378], [47.371967, 8.556416], [47.390117, 8.510132], [47.363951, 8.531266], [47.375481, 8.524722], [47.390739, 8.522516], [47.368845, 8.501257], [47.373832, 8.536474], [47.41628, 8.545817], [47.421483, 8.55014], [47.407933, 8.50853], [47.349236, 8.522546], [47.370106, 8.548883], [47.370647, 8.522227], [47.372685, 8.53412], [47.392834, 8.532202], [47.394028, 8.493706], [47.388706, 8.520634], [47.367869, 8.523985], [47.374534, 8.490009], [47.379839, 8.506893], [47.377485, 8.541978], [47.39302, 8.492798], [47.402099, 8.499417], [47.363248, 8.53521], [47.375596, 8.539225], [47.400348, 8.537616], [47.35708, 8.535785], [47.336929, 8.518869], [47.377413, 8.499786], [47.427023, 8.491576], [47.394731, 8.524704], [47.371301, 8.549941], [47.373832, 8.536474], [47.378708, 8.575442], [47.372296, 8.518143], [47.399398, 8.540034], [47.375983, 8.528745], [47.422318, 8.53905], [47.364541, 8.537275], [47.367461, 8.494226], [47.408177, 8.558766], [47.38732, 8.499361], [47.37268, 8.53841], [47.368333, 8.524404], [47.363111, 8.517268], [47.388174, 8.540756], [47.379263, 8.524336], [47.351038, 8.563588], [47.398782, 8.532894], [47.361418, 8.532776], [47.421701, 8.550873], [47.385962, 8.528393], [47.403957, 8.590038], [47.370798, 8.519582], [47.379453, 8.529915], [47.37843, 8.532476], [47.377117, 8.559689], [47.373904, 8.538329], [47.367795, 8.534708], [47.410819, 8.545014], [47.373005, 8.512437], [47.363904, 8.547509], [47.400662, 8.492314], [47.374385, 8.552931], [47.382395, 8.534571], [47.419193, 8.546977], [47.390051, 8.546769], [47.369124, 8.53782], [47.383399, 8.586853], [47.381397, 8.542139], [47.330993, 8.515878], [47.369402, 8.540659], [47.391916, 8.48467], [47.360391, 8.535773], [47.398352, 8.585598], [47.399593, 8.468181], [47.413121, 8.541391], [47.370582, 8.515778], [47.410286, 8.53113], [47.374073, 8.5498], [47.414638, 8.542629], [47.355439, 8.513301], [47.363673, 8.532081], [47.387147, 8.519053], [47.369164, 8.556119], [47.367366, 8.487962], [47.370143, 8.548791], [47.398175, 8.53622], [47.406733, 8.547169], [47.411145, 8.550441], [47.370161, 8.548805], [47.383828, 8.497676], [47.374133, 8.502369], [47.379533, 8.544153], [47.385533, 8.517484], [47.378527, 8.568247], [47.389718, 8.511502], [47.364604, 8.566205], [47.357538, 8.553744], [47.388438, 8.473356], [47.407609, 8.546803], [47.399864, 8.504685], [47.414601, 8.551136], [47.390463, 8.479211], [47.407065, 8.576869], [47.375913, 8.53608], [47.394642, 8.513946], [47.363098, 8.506002], [47.358309, 8.580673], [47.376855, 8.54864], [47.360711, 8.525692], [47.404092, 8.534461], [47.391391, 8.512516], [47.360153, 8.534246], [47.359587, 8.524716], [47.362566, 8.54719], [47.338851, 8.538241], [47.350773, 8.579559], [47.367083, 8.523373], [47.400655, 8.501839], [47.416368, 8.546057], [47.38716, 8.494258], [47.365975, 8.545341], [47.369644, 8.539883], [47.363909, 8.520382], [47.385235, 8.536709], [47.379187, 8.538054], [47.42034, 8.503358], [47.421503, 8.501129], [47.361769, 8.578258], [47.373413, 8.531301], [47.391931, 8.518275], [47.363715, 8.575268], [47.409286, 8.553807], [47.397972, 8.533871], [47.376359, 8.527018], [47.380961, 8.528383], [47.362222, 8.547488], [47.418485, 8.503639], [47.385988, 8.51797], [47.410203, 8.543637], [47.395425, 8.540668], [47.412519, 8.568239], [47.393619, 8.535769], [47.365055, 8.54568], [47.367426, 8.53944], [47.352645, 8.508996], [47.37017, 8.548805], [47.390481, 8.512656], [47.367382, 8.494065], [47.373008, 8.562251], [47.360621, 8.550221], [47.363011, 8.512487], [47.414114, 8.546646], [47.38966, 8.512944], [47.379296, 8.508233], [47.369169, 8.527348], [47.351944, 8.525315], [47.349101, 8.533039], [47.383402, 8.484198], [47.368333, 8.524378], [47.38311, 8.50623], [47.409888, 8.549235], [47.402567, 8.556581], [47.38621, 8.518279], [47.365936, 8.58085], [47.371522, 8.542927], [47.369446, 8.526532], [47.36921, 8.543886], [47.366328, 8.536677], [47.403234, 8.534854], [47.394302, 8.541466], [47.375741, 8.540962], [47.360674, 8.553161], [47.391575, 8.53219], [47.410785, 8.556038], [47.368903, 8.500861], [47.363478, 8.564513], [47.392159, 8.492569], [47.387547, 8.572121], [47.346573, 8.533041], [47.378118, 8.520777], [47.375096, 8.582291], [47.427612, 8.491137], [47.396046, 8.545343], [47.374592, 8.520784], [47.37977, 8.526796], [47.37762, 8.516264], [47.375362, 8.557918], [47.368117, 8.515807], [47.360602, 8.56984], [47.378412, 8.540991], [47.365286, 8.553403], [47.388958, 8.515831], [47.377927, 8.537154], [47.385398, 8.545096], [47.36475, 8.56781], [47.417124, 8.544151], [47.391563, 8.534375], [47.375031, 8.545596], [47.411839, 8.51314], [47.393801, 8.502815], [47.357574, 8.521591], [47.401506, 8.487495], [47.353646, 8.554351], [47.41334, 8.53151], [47.395766, 8.532223], [47.371031, 8.547168], [47.364531, 8.534521], [47.398837, 8.54038], [47.366528, 8.542083], [47.372191, 8.547258], [47.404954, 8.557175], [47.377413, 8.515333], [47.387006, 8.534056], [47.340978, 8.518726], [47.405074, 8.481854], [47.382688, 8.543477], [47.366529, 8.544876], [47.366315, 8.540834], [47.379115, 8.508296], [47.362047, 8.518491], [47.405202, 8.557564], [47.385396, 8.528315], [47.381294, 8.510101], [47.384404, 8.548399], [47.407615, 8.584036], [47.367095, 8.543974], [47.366728, 8.541862], [47.368756, 8.501216], [47.370943, 8.523239], [47.379912, 8.544028], [47.408127, 8.553664], [47.369689, 8.52561], [47.3932, 8.530634], [47.340977, 8.536935], [47.371267, 8.529946], [47.40614, 8.553662], [47.413017, 8.536208], [47.381203, 8.491571], [47.376477, 8.518293], [47.404064, 8.563608], [47.425654, 8.509442], [47.374939, 8.527863], [47.413596, 8.477397], [47.368968, 8.538095], [47.38253, 8.514509], [47.422262, 8.539208], [47.375886, 8.540886], [47.376728, 8.548703], [47.408372, 8.550648], [47.427922, 8.490692], [47.411384, 8.485277], [47.413885, 8.547079], [47.355021, 8.562852], [47.379095, 8.525895], [47.407745, 8.583628], [47.369259, 8.534923], [47.3736, 8.53631], [47.357016, 8.55838], [47.371432, 8.534412], [47.35285, 8.526551], [47.385381, 8.5365], [47.385814, 8.532575], [47.359097, 8.531855], [47.387421, 8.539575], [47.399587, 8.547537], [47.36481, 8.502766], [47.374297, 8.538615], [47.389917, 8.512301], [47.384521, 8.539952], [47.35873, 8.517299], [47.341829, 8.530561], [47.36653, 8.540918], [47.407524, 8.584961], [47.404786, 8.57262], [47.383394, 8.484026], [47.344338, 8.526867], [47.357585, 8.552646], [47.373694, 8.481452], [47.354392, 8.509772], [47.378199, 8.534153], [47.376563, 8.543429], [47.40249, 8.493065], [47.37395, 8.517196], [47.370967, 8.548212], [47.372744, 8.547759], [47.375302, 8.484622], [47.367757, 8.533939], [47.376052, 8.497137], [47.361793, 8.507101], [47.431053, 8.550233], [47.370188, 8.548805], [47.383624, 8.532093], [47.349664, 8.561508], [47.377086, 8.529125], [47.392272, 8.526972], [47.392044, 8.499217], [47.375039, 8.558758], [47.406726, 8.574742], [47.371691, 8.517429], [47.381411, 8.550986], [47.370939, 8.53795], [47.383564, 8.515497], [47.406223, 8.582893], [47.377066, 8.515909], [47.365032, 8.567564], [47.397508, 8.493894], [47.375257, 8.522692], [47.376318, 8.525587], [47.383957, 8.508088], [47.414099, 8.54161], [47.40259, 8.581808], [47.375269, 8.511794], [47.359063, 8.549487], [47.401989, 8.537147], [47.41406, 8.541888], [47.393801, 8.496933], [47.414152, 8.551087], [47.344084, 8.529906], [47.354987, 8.556113], [47.344117, 8.531151], [47.365486, 8.539109], [47.356137, 8.53562], [47.358547, 8.531989], [47.381804, 8.543723], [47.360912, 8.53581], [47.387975, 8.485785], [47.38952, 8.540148], [47.380462, 8.512494], [47.376181, 8.53443], [47.383025, 8.515433], [47.391547, 8.542654], [47.414524, 8.53384], [47.387746, 8.48623], [47.37999, 8.536852], [47.390061, 8.537166], [47.374505, 8.546061], [47.377741, 8.537839], [47.389698, 8.524204], [47.364086, 8.56679], [47.385525, 8.527033], [47.383526, 8.573028], [47.35955, 8.593369], [47.355238, 8.523185], [47.377378, 8.512366], [47.420576, 8.550041], [47.369199, 8.527931], [47.391439, 8.538956], [47.381176, 8.513078], [47.390032, 8.511548], [47.343945, 8.5303], [47.423629, 8.543014], [47.362276, 8.564183], [47.370215, 8.548793], [47.364761, 8.566711], [47.397185, 8.493768], [47.349683, 8.527612], [47.339364, 8.527732], [47.389397, 8.493574], [47.377366, 8.51945], [47.373907, 8.544659], [47.373518, 8.531647], [47.362495, 8.547162], [47.37333, 8.531498], [47.39185, 8.542951], [47.364059, 8.531202], [47.39339, 8.542811], [47.3665, 8.540361], [47.376114, 8.488412], [47.369542, 8.466952], [47.385339, 8.507401], [47.398019, 8.474152], [47.42042, 8.50837], [47.339994, 8.530524], [47.384124, 8.497695], [47.37586, 8.577844], [47.358107, 8.551625], [47.351073, 8.580161], [47.364022, 8.497494], [47.409959, 8.532342], [47.369997, 8.525325], [47.36831, 8.546727], [47.397447, 8.489667], [47.371531, 8.534347], [47.365444, 8.545449], [47.360373, 8.564672], [47.374986, 8.547462], [47.382829, 8.497762], [47.360077, 8.535687], [47.368634, 8.483021], [47.360697, 8.5357], [47.369014, 8.53795], [47.414988, 8.527502], [47.363434, 8.533625], [47.368219, 8.546818], [47.389356, 8.469255], [47.378284, 8.510623], [47.393344, 8.497772], [47.370363, 8.550252], [47.405662, 8.585054], [47.377879, 8.546012], [47.382531, 8.551393], [47.414452, 8.553558], [47.410649, 8.571884], [47.403107, 8.547199], [47.403055, 8.534784], [47.387895, 8.520763], [47.380162, 8.528155], [47.399002, 8.541974], [47.343963, 8.5303], [47.388787, 8.489456], [47.421203, 8.550253], [47.388085, 8.488568], [47.418926, 8.507452], [47.3701, 8.544818], [47.374538, 8.539772], [47.393776, 8.510365], [47.373502, 8.542796], [47.3712, 8.510176], [47.381222, 8.503279], [47.408583, 8.546478], [47.364323, 8.555329], [47.383193, 8.506033], [47.402115, 8.535255], [47.382463, 8.528334], [47.343391, 8.519463], [47.360316, 8.553869], [47.426921, 8.510568], [47.397693, 8.508933], [47.397358, 8.531275], [47.366781, 8.540062], [47.365621, 8.532465], [47.392944, 8.530072], [47.377098, 8.541057], [47.410942, 8.567702], [47.359475, 8.522265], [47.377812, 8.482658], [47.379002, 8.544221], [47.366958, 8.544197], [47.37797, 8.536413], [47.367851, 8.601651], [47.406652, 8.553739], [47.392127, 8.51261], [47.368813, 8.557979], [47.404294, 8.500375], [47.39405, 8.493348], [47.409235, 8.537601], [47.360349, 8.500784], [47.384141, 8.574538], [47.349875, 8.533902], [47.412628, 8.512493], [47.340763, 8.530142], [47.379263, 8.515648], [47.358035, 8.555356], [47.358705, 8.516054], [47.388769, 8.489522], [47.340523, 8.537336], [47.360728, 8.597975], [47.366753, 8.545821], [47.37396, 8.542885], [47.402555, 8.469908], [47.354312, 8.575518], [47.358054, 8.526035], [47.399511, 8.540434], [47.389889, 8.54205], [47.371384, 8.555384], [47.40448, 8.55694], [47.378055, 8.526523], [47.366555, 8.559864], [47.361364, 8.549667], [47.363587, 8.575411], [47.374512, 8.521564], [47.373259, 8.542818], [47.370847, 8.508487], [47.398096, 8.532231], [47.390037, 8.480514], [47.373032, 8.534511], [47.382922, 8.513895], [47.402155, 8.497205], [47.331384, 8.512552], [47.379808, 8.494643], [47.392564, 8.515944], [47.352606, 8.503488], [47.374594, 8.538661], [47.410519, 8.550004], [47.377719, 8.541983], [47.425717, 8.526807], [47.420396, 8.53587], [47.3901, 8.474554], [47.35712, 8.522085], [47.409258, 8.571536], [47.379205, 8.538054], [47.365008, 8.545877], [47.395047, 8.486599], [47.417679, 8.546283], [47.397002, 8.480292], [47.396439, 8.506471], [47.391325, 8.544252], [47.379289, 8.544346], [47.366031, 8.545184], [47.412871, 8.543944], [47.392221, 8.523752], [47.382904, 8.543441], [47.374751, 8.512406], [47.38867, 8.537812], [47.352817, 8.527173], [47.391395, 8.47858], [47.370932, 8.548079], [47.409279, 8.5731], [47.408799, 8.546456], [47.38316, 8.540228], [47.364914, 8.537826], [47.384986, 8.508678], [47.358645, 8.515801], [47.368015, 8.540856], [47.392368, 8.503131], [47.339307, 8.531899], [47.335736, 8.518488], [47.37983, 8.525261], [47.369689, 8.525584], [47.3729, 8.535183], [47.390718, 8.536252], [47.368916, 8.534055], [47.362627, 8.519986], [47.387818, 8.52708], [47.373545, 8.538229], [47.369879, 8.466575], [47.404525, 8.549441], [47.389073, 8.529463], [47.349983, 8.533865], [47.359906, 8.535671], [47.409196, 8.550095], [47.336598, 8.539598], [47.400202, 8.537759], [47.367486, 8.545386], [47.35986, 8.535749], [47.370474, 8.534842], [47.359388, 8.549361], [47.395415, 8.514028], [47.378581, 8.510642], [47.389244, 8.515069], [47.404768, 8.483875], [47.379939, 8.544042], [47.390636, 8.522038], [47.379655, 8.529522], [47.424046, 8.500424], [47.408027, 8.542558], [47.37138, 8.510232], [47.375615, 8.530591], [47.370921, 8.531329], [47.363161, 8.520513], [47.369264, 8.556029], [47.430485, 8.540956], [47.373353, 8.531988], [47.430955, 8.550112], [47.355096, 8.556976], [47.378354, 8.5414], [47.421246, 8.549552], [47.367918, 8.512016], [47.400345, 8.489525], [47.34389, 8.535182], [47.352162, 8.558026], [47.386659, 8.495917], [47.37876, 8.575602], [47.34937, 8.53593], [47.357029, 8.552397], [47.392681, 8.52551], [47.366699, 8.494965], [47.364141, 8.529151], [47.369319, 8.541809], [47.385397, 8.542434], [47.427422, 8.546155], [47.42706, 8.546399], [47.381809, 8.529976], [47.419707, 8.546776], [47.375785, 8.487915], [47.379397, 8.555579], [47.384762, 8.527852], [47.389664, 8.511514], [47.369529, 8.520602], [47.376182, 8.536178], [47.40898, 8.55013], [47.36134, 8.554062], [47.374442, 8.517524], [47.384445, 8.531885], [47.412114, 8.546035], [47.345174, 8.534534], [47.40523, 8.577757], [47.36445, 8.5552], [47.403664, 8.571443], [47.351821, 8.526901], [47.39478, 8.536654], [47.384405, 8.531288], [47.375535, 8.520883], [47.363914, 8.553931], [47.392083, 8.497932], [47.377639, 8.543743], [47.373785, 8.519484], [47.361995, 8.548674], [47.373814, 8.536473], [47.414394, 8.537999], [47.38204, 8.492462], [47.341668, 8.519997], [47.37696, 8.543252], [47.402873, 8.557555], [47.386832, 8.481868], [47.344046, 8.528264], [47.374141, 8.502422], [47.381846, 8.528878], [47.378378, 8.521762], [47.410804, 8.558742], [47.354233, 8.563404], [47.378429, 8.541084], [47.370152, 8.548804], [47.390756, 8.53314], [47.373264, 8.547876], [47.370103, 8.56411], [47.410858, 8.546618], [47.369792, 8.513656], [47.399731, 8.518102], [47.390741, 8.528067], [47.386166, 8.518119], [47.368227, 8.496055], [47.404859, 8.548375], [47.360524, 8.523557], [47.377758, 8.543586], [47.377247, 8.538636], [47.357279, 8.572933], [47.394714, 8.525538], [47.36209, 8.549034], [47.358648, 8.547797], [47.378934, 8.510371], [47.399513, 8.54307], [47.396777, 8.541371], [47.420587, 8.538511], [47.37378, 8.544735], [47.379002, 8.544221], [47.424392, 8.512611], [47.359866, 8.507274], [47.389626, 8.521394], [47.408498, 8.574779], [47.370454, 8.510161], [47.413763, 8.546652], [47.373973, 8.495255], [47.397951, 8.474694], [47.418532, 8.552994], [47.37069, 8.51668], [47.408108, 8.547237], [47.38509, 8.536878], [47.36712, 8.5366], [47.412455, 8.523369], [47.41447, 8.51754], [47.386524, 8.48908], [47.3746, 8.484741], [47.366239, 8.540369], [47.373727, 8.533333], [47.388348, 8.480322], [47.402396, 8.499383], [47.386954, 8.473288], [47.400288, 8.516259], [47.405854, 8.581109], [47.400747, 8.588114], [47.38829, 8.519977], [47.390778, 8.524213], [47.361328, 8.547813], [47.379823, 8.527843], [47.358656, 8.535618], [47.346913, 8.56321], [47.37534, 8.516787], [47.385814, 8.532601], [47.369193, 8.571572], [47.406642, 8.546266], [47.354609, 8.555232], [47.348522, 8.534351], [47.374263, 8.525081], [47.390941, 8.523064], [47.379099, 8.553838], [47.391529, 8.538944], [47.375748, 8.558985], [47.374531, 8.551743], [47.365261, 8.53067], [47.370003, 8.52085], [47.364749, 8.554107], [47.417078, 8.512782], [47.362708, 8.562312], [47.335828, 8.540204], [47.392078, 8.492541], [47.384805, 8.531786], [47.378489, 8.541443], [47.396738, 8.529328], [47.373836, 8.502363], [47.402339, 8.493764], [47.393417, 8.500608], [47.386356, 8.496627], [47.386495, 8.496232], [47.369679, 8.525663], [47.371512, 8.519186], [47.358486, 8.527024], [47.371352, 8.547426], [47.384929, 8.531047], [47.36879, 8.524639], [47.362604, 8.614339], [47.426995, 8.54661], [47.374084, 8.527872], [47.42487, 8.537407], [47.392507, 8.549522], [47.379277, 8.550266], [47.353437, 8.57673], [47.391094, 8.523067], [47.369691, 8.553681], [47.40638, 8.480674], [47.387617, 8.500334], [47.41228, 8.546489], [47.389925, 8.491916], [47.371438, 8.547904], [47.399144, 8.542175], [47.364856, 8.563496], [47.391674, 8.513912], [47.371935, 8.518202], [47.377777, 8.537826], [47.343483, 8.535412], [47.426324, 8.554668], [47.385211, 8.485094], [47.349988, 8.527658], [47.346233, 8.564638], [47.397969, 8.515126], [47.394142, 8.475189], [47.350988, 8.52654], [47.383483, 8.534606], [47.38376, 8.498244], [47.392112, 8.511365], [47.411232, 8.52614], [47.369115, 8.541501], [47.357435, 8.572606], [47.368221, 8.496743], [47.372581, 8.534621], [47.38314, 8.513661], [47.376864, 8.525916], [47.377723, 8.507089], [47.380332, 8.519656], [47.42384, 8.516855], [47.426576, 8.492336], [47.405753, 8.577636], [47.386208, 8.525153], [47.387396, 8.519402], [47.366913, 8.52329], [47.373617, 8.536377], [47.368461, 8.517469], [47.368435, 8.517389], [47.401679, 8.5059], [47.389768, 8.522523], [47.374025, 8.544542], [47.392684, 8.545141], [47.37292, 8.526365], [47.392337, 8.523834], [47.401598, 8.586622], [47.366027, 8.532341], [47.376021, 8.541829], [47.380621, 8.512802], [47.366682, 8.535426], [47.369716, 8.525558], [47.373218, 8.519552], [47.3742, 8.52226], [47.372158, 8.520325], [47.351814, 8.525749], [47.376658, 8.559719], [47.377507, 8.504224], [47.373278, 8.532265], [47.392722, 8.524093], [47.420757, 8.547063], [47.383065, 8.575111], [47.379054, 8.522583], [47.414717, 8.546579], [47.402754, 8.530432], [47.388134, 8.520225], [47.383877, 8.577566], [47.366573, 8.540217], [47.401702, 8.553966], [47.412109, 8.566058], [47.379996, 8.528589], [47.371513, 8.542848], [47.387337, 8.518898], [47.378821, 8.519626], [47.373844, 8.535176], [47.368743, 8.528636], [47.364799, 8.566553], [47.365106, 8.500958], [47.329809, 8.529826], [47.365388, 8.539067], [47.36838, 8.547841], [47.361774, 8.525555], [47.385511, 8.520887], [47.40057, 8.477606], [47.390517, 8.491106], [47.415221, 8.546563], [47.38328, 8.530391], [47.34512, 8.53358], [47.364201, 8.547489], [47.366936, 8.536133], [47.374895, 8.534417], [47.372234, 8.532362], [47.420967, 8.549506], [47.381862, 8.515741], [47.392356, 8.539014], [47.358355, 8.55208], [47.372033, 8.538396], [47.388026, 8.539309], [47.389669, 8.511951], [47.370554, 8.512957], [47.391829, 8.517611], [47.377418, 8.535806], [47.377787, 8.537694], [47.369084, 8.527796], [47.356909, 8.535834], [47.36877, 8.524824], [47.410774, 8.545013], [47.371487, 8.5228], [47.375368, 8.485312], [47.350213, 8.53428], [47.37017, 8.548792], [47.352851, 8.573236], [47.412158, 8.546076], [47.379397, 8.544309], [47.339996, 8.530312], [47.406675, 8.582664], [47.381183, 8.538188], [47.369464, 8.526572], [47.380667, 8.568332], [47.3635, 8.550202], [47.340686, 8.537247], [47.37191, 8.542803], [47.361751, 8.515506], [47.3744, 8.516239], [47.397692, 8.522618], [47.410322, 8.53769], [47.390676, 8.48948], [47.390369, 8.539808], [47.369434, 8.52591], [47.357856, 8.588302], [47.367429, 8.489843], [47.370058, 8.564096], [47.37871, 8.529529], [47.369495, 8.536583], [47.370716, 8.516747], [47.40848, 8.574766], [47.353924, 8.526202], [47.357605, 8.550542], [47.376587, 8.544701], [47.370361, 8.522963], [47.369409, 8.513172], [47.362777, 8.548664], [47.392768, 8.523035], [47.378217, 8.527493], [47.371637, 8.547736], [47.367364, 8.494012], [47.354906, 8.556125], [47.377284, 8.543325], [47.380585, 8.558252], [47.377769, 8.540488], [47.392069, 8.524663], [47.414069, 8.482799], [47.353661, 8.553743], [47.36113, 8.53563], [47.377665, 8.529719], [47.365055, 8.54564], [47.37838, 8.530198], [47.380345, 8.494878], [47.34891, 8.533181], [47.399491, 8.495351], [47.363831, 8.531581], [47.358342, 8.515477], [47.401883, 8.500353], [47.416915, 8.5453], [47.387419, 8.486608], [47.377846, 8.509343], [47.367923, 8.564382], [47.360526, 8.535776], [47.370088, 8.511756], [47.361755, 8.51123], [47.392747, 8.545089], [47.379015, 8.559689], [47.377559, 8.555805], [47.422662, 8.540661], [47.377068, 8.55267], [47.37128, 8.522889], [47.372062, 8.521965], [47.384589, 8.493174], [47.342448, 8.530719], [47.36796, 8.501597], [47.357319, 8.521943], [47.36848, 8.528883], [47.429952, 8.549614], [47.394936, 8.517237], [47.349298, 8.570381], [47.389592, 8.511526], [47.365551, 8.566926], [47.411563, 8.525418], [47.356336, 8.527019], [47.369041, 8.537937], [47.366836, 8.544697], [47.383253, 8.530443], [47.3763, 8.544563], [47.348982, 8.574239], [47.403034, 8.536042], [47.356058, 8.535512], [47.397967, 8.532546], [47.367496, 8.555555], [47.396022, 8.545038], [47.384805, 8.531773], [47.377569, 8.574199], [47.363394, 8.534908], [47.401808, 8.499729], [47.374472, 8.562507], [47.357866, 8.520167], [47.395176, 8.524236], [47.410427, 8.543708], [47.380409, 8.542873], [47.368925, 8.501405], [47.358358, 8.583891], [47.383656, 8.588063], [47.37302, 8.532921], [47.411858, 8.515035], [47.370189, 8.525078], [47.375024, 8.518767], [47.3546, 8.555218], [47.394169, 8.493073], [47.341791, 8.530732], [47.369636, 8.526404], [47.378588, 8.523369], [47.376183, 8.540852], [47.377218, 8.553017], [47.383043, 8.530743], [47.377358, 8.527872], [47.377643, 8.574002], [47.368462, 8.521229], [47.372843, 8.533514], [47.368058, 8.560704], [47.370017, 8.543214], [47.374422, 8.541518], [47.392308, 8.544047], [47.373109, 8.532976], [47.367234, 8.545394], [47.383337, 8.543358], [47.36043, 8.547702], [47.407943, 8.582678], [47.367435, 8.541333], [47.366284, 8.557224], [47.37746, 8.522856], [47.385676, 8.530135], [47.354977, 8.557172], [47.372316, 8.502373], [47.366487, 8.556672], [47.38779, 8.532947], [47.401489, 8.499166], [47.366906, 8.545811], [47.369479, 8.520191], [47.359822, 8.57684], [47.380846, 8.549822], [47.425834, 8.493739], [47.396564, 8.541989], [47.398911, 8.533559], [47.363739, 8.535511], [47.368806, 8.500581], [47.374474, 8.529469], [47.420563, 8.502607], [47.420785, 8.53654], [47.42157, 8.538213], [47.341002, 8.519957], [47.380025, 8.547275], [47.370434, 8.514199], [47.364437, 8.536836], [47.408228, 8.569261], [47.367525, 8.600943], [47.426315, 8.554694], [47.359449, 8.535449], [47.419614, 8.507969], [47.372753, 8.535498], [47.383395, 8.515308], [47.383052, 8.53073], [47.405862, 8.581123], [47.368996, 8.537989], [47.397395, 8.532164], [47.373776, 8.519497], [47.38853, 8.536419], [47.360343, 8.523725], [47.344913, 8.52979], [47.410837, 8.545015], [47.375068, 8.524661], [47.400986, 8.491234], [47.364177, 8.556491], [47.404025, 8.556559], [47.347328, 8.533096], [47.385381, 8.5365], [47.37743, 8.512526], [47.365556, 8.546816], [47.363872, 8.535739], [47.369226, 8.527971], [47.375709, 8.54896], [47.360163, 8.533227], [47.358158, 8.550037], [47.430325, 8.542662], [47.353808, 8.571946], [47.41739, 8.553937], [47.363895, 8.546503], [47.37119, 8.488818], [47.404472, 8.55686], [47.377395, 8.500753], [47.371865, 8.542802], [47.379971, 8.528416], [47.389896, 8.50981], [47.354397, 8.523697], [47.37305, 8.534511], [47.37831, 8.556324], [47.368272, 8.536531], [47.336785, 8.537008], [47.349966, 8.560971], [47.350401, 8.534363], [47.381014, 8.535138], [47.359035, 8.551499], [47.326177, 8.513386], [47.427984, 8.545716], [47.389126, 8.542802], [47.428923, 8.488446], [47.370277, 8.548873], [47.399768, 8.542784], [47.415689, 8.548389], [47.383795, 8.550956], [47.365504, 8.539175], [47.362037, 8.506047], [47.363695, 8.520153], [47.381433, 8.506687], [47.37296, 8.546811], [47.399852, 8.477446], [47.407372, 8.562897], [47.388064, 8.488872], [47.378794, 8.519612], [47.352311, 8.507189], [47.363635, 8.549238], [47.387844, 8.490351], [47.338104, 8.538226], [47.375712, 8.539293], [47.341094, 8.536885], [47.386252, 8.518558], [47.364779, 8.53777], [47.395723, 8.508046], [47.376979, 8.52899], [47.376704, 8.544637], [47.360469, 8.552032], [47.353689, 8.553624], [47.376408, 8.527535], [47.37401, 8.554446], [47.423053, 8.551551], [47.371623, 8.515944], [47.37378, 8.537174], [47.374005, 8.501599], [47.414316, 8.53862], [47.374523, 8.546088], [47.379116, 8.516029], [47.384991, 8.495408], [47.426665, 8.492404], [47.393264, 8.478855], [47.409534, 8.479053], [47.405259, 8.578433], [47.36066, 8.524407], [47.391417, 8.477176], [47.393192, 8.52862], [47.404217, 8.573761], [47.376137, 8.553153], [47.413558, 8.546489], [47.360905, 8.502886], [47.42685, 8.491864], [47.384418, 8.547896], [47.377679, 8.511922], [47.334083, 8.518269], [47.357629, 8.588455], [47.387378, 8.488144], [47.376741, 8.483657], [47.377905, 8.530016], [47.423059, 8.542419], [47.363951, 8.533159], [47.344064, 8.53111], [47.362477, 8.518712], [47.383267, 8.484235], [47.384819, 8.534104], [47.366354, 8.540503], [47.378731, 8.514856], [47.36623, 8.540382], [47.391329, 8.522966], [47.364047, 8.56708], [47.377464, 8.518592], [47.383806, 8.533832], [47.339635, 8.528624], [47.364701, 8.545924], [47.376667, 8.497706], [47.405676, 8.549452], [47.377113, 8.540461], [47.431282, 8.54418], [47.392393, 8.492521], [47.353178, 8.527034], [47.377427, 8.535793], [47.382676, 8.483945], [47.404506, 8.55698], [47.403832, 8.565299], [47.368392, 8.546649], [47.360432, 8.526679], [47.354799, 8.526869], [47.375027, 8.539425], [47.377408, 8.526377], [47.374853, 8.538786], [47.39026, 8.510268], [47.373002, 8.485332], [47.430955, 8.550139], [47.402932, 8.580967], [47.357121, 8.555033], [47.409743, 8.544714], [47.370152, 8.548791], [47.38199, 8.571883], [47.402686, 8.492287], [47.375698, 8.526567], [47.358954, 8.527894], [47.384539, 8.480817], [47.406874, 8.556831], [47.387593, 8.535698], [47.385025, 8.495647], [47.380332, 8.540567], [47.42195, 8.538963], [47.353893, 8.559479], [47.4146, 8.559617], [47.387737, 8.544177], [47.402528, 8.490787], [47.368227, 8.536517], [47.353925, 8.600911], [47.371053, 8.528776], [47.371084, 8.547275], [47.37955, 8.532009], [47.354955, 8.554855], [47.375332, 8.549853], [47.356452, 8.535626], [47.341318, 8.530432], [47.364923, 8.51005], [47.375854, 8.488248], [47.36633, 8.544899], [47.367269, 8.54174], [47.34868, 8.573823], [47.40527, 8.555234], [47.369191, 8.527878], [47.408171, 8.556606], [47.366907, 8.543904], [47.366411, 8.547734], [47.377994, 8.530097], [47.355158, 8.557983], [47.375546, 8.513892], [47.34243, 8.530732], [47.367324, 8.541675], [47.380488, 8.519355], [47.365366, 8.54701], [47.378538, 8.52301], [47.388431, 8.487078], [47.364356, 8.547214], [47.382908, 8.481142], [47.364738, 8.554279], [47.367038, 8.544317], [47.413634, 8.528999], [47.4115, 8.567622], [47.370909, 8.543021], [47.406459, 8.576233], [47.408644, 8.550481], [47.378849, 8.527175], [47.378741, 8.527199], [47.378633, 8.559152], [47.370079, 8.548922], [47.370612, 8.543028], [47.375068, 8.547424], [47.377584, 8.509483], [47.424148, 8.49914], [47.376549, 8.543932], [47.423347, 8.551822], [47.41498, 8.545445], [47.373971, 8.540767], [47.399276, 8.542443], [47.406965, 8.495512], [47.414303, 8.546637], [47.376934, 8.540351], [47.373383, 8.536332], [47.384132, 8.528753], [47.373674, 8.534193], [47.373837, 8.524503], [47.383238, 8.499266], [47.384047, 8.52638], [47.37137, 8.562402], [47.377005, 8.543279], [47.373843, 8.540989], [47.391002, 8.52231], [47.357383, 8.572486], [47.391072, 8.522589], [47.367892, 8.519655], [47.387359, 8.516567], [47.373424, 8.524402], [47.397231, 8.532425], [47.425527, 8.547679], [47.378851, 8.527029], [47.375268, 8.516786], [47.377336, 8.499361], [47.396899, 8.519873], [47.374655, 8.550143], [47.371666, 8.525757], [47.416296, 8.545181], [47.370542, 8.469818], [47.402558, 8.492417], [47.387004, 8.494573], [47.368335, 8.524206], [47.367095, 8.521215], [47.371366, 8.515595], [47.350452, 8.57836], [47.334675, 8.528959], [47.374522, 8.539573], [47.368899, 8.501245], [47.378729, 8.556664], [47.397889, 8.534148], [47.368729, 8.548073], [47.387229, 8.518935], [47.378766, 8.542548], [47.374432, 8.539545], [47.369022, 8.538043], [47.390684, 8.538808], [47.39315, 8.474494], [47.405914, 8.581349], [47.410894, 8.563382], [47.387201, 8.519094], [47.403573, 8.547447], [47.393265, 8.530357], [47.393392, 8.50033], [47.355332, 8.527581], [47.3736, 8.534324], [47.394979, 8.512562], [47.373884, 8.546115], [47.380609, 8.514086], [47.335297, 8.541132], [47.369081, 8.541367], [47.406954, 8.587188], [47.400903, 8.502294], [47.425555, 8.547666], [47.383683, 8.573601], [47.404242, 8.561042], [47.368216, 8.538675], [47.378972, 8.543572], [47.369243, 8.528064], [47.40448, 8.556926], [47.402932, 8.580954], [47.378927, 8.527507], [47.383401, 8.586601], [47.359686, 8.557641], [47.391858, 8.538368], [47.367961, 8.539014], [47.38665, 8.520274], [47.390913, 8.522215], [47.392859, 8.489788], [47.378425, 8.548103], [47.396256, 8.540367], [47.404601, 8.557459], [47.394595, 8.524807], [47.353923, 8.511894], [47.392337, 8.523847], [47.371217, 8.536234], [47.415045, 8.544267], [47.333614, 8.528924], [47.398238, 8.541905], [47.381672, 8.529206], [47.371241, 8.523166], [47.371251, 8.523074], [47.339954, 8.537576], [47.369636, 8.543471], [47.390263, 8.523408], [47.347918, 8.56617], [47.377178, 8.526982], [47.396998, 8.512178], [47.398429, 8.591403], [47.370287, 8.556249], [47.357894, 8.550442], [47.37098, 8.546849], [47.420201, 8.549702], [47.371451, 8.550262], [47.367871, 8.494711], [47.402157, 8.552452], [47.386055, 8.521348], [47.366061, 8.533533], [47.392396, 8.524299], [47.387294, 8.499281], [47.351593, 8.525321], [47.37553, 8.560053], [47.381492, 8.483551], [47.361092, 8.506067], [47.407629, 8.489735], [47.377091, 8.541825], [47.37717, 8.522108], [47.343405, 8.530408], [47.372188, 8.522907], [47.340956, 8.524932], [47.367091, 8.544332], [47.388431, 8.487078], [47.387446, 8.52935], [47.384279, 8.528504], [47.377492, 8.509786], [47.382101, 8.530486], [47.382353, 8.530438], [47.357857, 8.596244], [47.421833, 8.503415], [47.377157, 8.510984], [47.366229, 8.545188], [47.374485, 8.521643], [47.375901, 8.535483], [47.380613, 8.525224], [47.360237, 8.523459], [47.363286, 8.548158], [47.363723, 8.535378], [47.37316, 8.512215], [47.35981, 8.525833], [47.386695, 8.547745], [47.404928, 8.557095], [47.378281, 8.540631], [47.349761, 8.564461], [47.346833, 8.564889], [47.367775, 8.49831], [47.363605, 8.567203], [47.369265, 8.525708], [47.375092, 8.553277], [47.369936, 8.524252], [47.367191, 8.533861], [47.363028, 8.533723], [47.364586, 8.566231], [47.352947, 8.524885], [47.340057, 8.530525], [47.405229, 8.593286], [47.409566, 8.537793], [47.376677, 8.5286], [47.391198, 8.469423], [47.379155, 8.546118], [47.378495, 8.521791], [47.358549, 8.526998], [47.379525, 8.488135], [47.380851, 8.538088], [47.364739, 8.554186], [47.363868, 8.531449], [47.360248, 8.566444], [47.370916, 8.525252], [47.400609, 8.54414], [47.334032, 8.534146], [47.391704, 8.518403], [47.373594, 8.534959], [47.367363, 8.55812], [47.372798, 8.554249], [47.390586, 8.479478], [47.365662, 8.539509], [47.411414, 8.546736], [47.385238, 8.530735], [47.354842, 8.574735], [47.403674, 8.571311], [47.363432, 8.54795], [47.400807, 8.50004], [47.369017, 8.529185], [47.406021, 8.484576], [47.384286, 8.507459], [47.367716, 8.534494], [47.358549, 8.526945], [47.360702, 8.570584], [47.409818, 8.537785], [47.351953, 8.558326], [47.371765, 8.488882], [47.413703, 8.553794], [47.363459, 8.532818], [47.334775, 8.529808], [47.378076, 8.526192], [47.378102, 8.541435], [47.363105, 8.5483], [47.351854, 8.505128], [47.368839, 8.552551], [47.378984, 8.54238], [47.376029, 8.522879], [47.367661, 8.509707], [47.366824, 8.543108], [47.373663, 8.542853], [47.423125, 8.538378], [47.426583, 8.51015], [47.371526, 8.515757], [47.385204, 8.537158], [47.385775, 8.548918], [47.394008, 8.50474], [47.410317, 8.52689], [47.38328, 8.530444], [47.369096, 8.537859], [47.360304, 8.567173], [47.373224, 8.494578], [47.356607, 8.551382], [47.372639, 8.534251], [47.37474, 8.549668], [47.395248, 8.540425], [47.366801, 8.522758], [47.363977, 8.546465], [47.403263, 8.534709], [47.343247, 8.535619], [47.363124, 8.559316], [47.376517, 8.524611], [47.367999, 8.540657], [47.362414, 8.554654], [47.425083, 8.537742], [47.352095, 8.573207], [47.374533, 8.5242], [47.395814, 8.530025], [47.359342, 8.56988], [47.361781, 8.518089], [47.370677, 8.514204], [47.366012, 8.536842], [47.359003, 8.554755], [47.409149, 8.547524], [47.378808, 8.509455], [47.376747, 8.52782], [47.401705, 8.581272], [47.429215, 8.487961], [47.392621, 8.488207], [47.367495, 8.529286], [47.374796, 8.525821], [47.39846, 8.538385], [47.399927, 8.494896], [47.409143, 8.571335], [47.376047, 8.510392], [47.360387, 8.523832], [47.379899, 8.494472], [47.379538, 8.527533], [47.366437, 8.54506], [47.379153, 8.526452], [47.386814, 8.514291], [47.369993, 8.518109], [47.37999, 8.536865], [47.377099, 8.541917], [47.391054, 8.522576], [47.397898, 8.534161], [47.404945, 8.557188], [47.399039, 8.541842], [47.378022, 8.51079], [47.373408, 8.52611], [47.375768, 8.52102], [47.372653, 8.525115], [47.375647, 8.477332], [47.377729, 8.507447], [47.364168, 8.531085], [47.408481, 8.578277], [47.358797, 8.558444], [47.404928, 8.557121], [47.424414, 8.538033], [47.366213, 8.548736], [47.413885, 8.54802], [47.362433, 8.533869], [47.387049, 8.489687], [47.357745, 8.521555], [47.390608, 8.524991], [47.370099, 8.552445], [47.348524, 8.522704], [47.41835, 8.546708], [47.393827, 8.524222], [47.368571, 8.495837], [47.377324, 8.543855], [47.405176, 8.478557], [47.399625, 8.540807], [47.402938, 8.575734], [47.378306, 8.530355], [47.363087, 8.513084], [47.374802, 8.496093], [47.402194, 8.488038], [47.389497, 8.48751], [47.377358, 8.498911], [47.370197, 8.548819], [47.38619, 8.525139], [47.391596, 8.525196], [47.365714, 8.535976], [47.367014, 8.556101], [47.414363, 8.536501], [47.362186, 8.547513], [47.402002, 8.531079], [47.399229, 8.542614], [47.407006, 8.550553], [47.36405, 8.498395], [47.392625, 8.50254], [47.385751, 8.492906], [47.363784, 8.535539], [47.402086, 8.49886], [47.402858, 8.500929], [47.383089, 8.530652], [47.369452, 8.52591], [47.419751, 8.50772], [47.371854, 8.506614], [47.379002, 8.570204], [47.393494, 8.526162], [47.399255, 8.542734], [47.403646, 8.531258], [47.414385, 8.506301], [47.342971, 8.520077], [47.360939, 8.515781], [47.37848, 8.576682], [47.40308, 8.554684], [47.372334, 8.536019], [47.404836, 8.55076], [47.365851, 8.552674], [47.384782, 8.531388], [47.38942, 8.529854], [47.362497, 8.533698], [47.375859, 8.538025], [47.37945, 8.537861], [47.370657, 8.519288], [47.393245, 8.587144], [47.369569, 8.54768], [47.390403, 8.536232], [47.371404, 8.521091], [47.359134, 8.585536], [47.368417, 8.497886], [47.36977, 8.490617], [47.376812, 8.538031], [47.416549, 8.545942], [47.377717, 8.532806], [47.403784, 8.565616], [47.41257, 8.537789], [47.351695, 8.55889], [47.370958, 8.548252], [47.402978, 8.56242], [47.392754, 8.524425], [47.381782, 8.529976], [47.381556, 8.514728], [47.397093, 8.480108], [47.372624, 8.518639], [47.350529, 8.51888], [47.409449, 8.561218], [47.368969, 8.538029], [47.36973, 8.530828], [47.419111, 8.546141], [47.380897, 8.517906], [47.412636, 8.514534], [47.381398, 8.510513], [47.379593, 8.526514], [47.357839, 8.520166], [47.374192, 8.542996], [47.375099, 8.519444], [47.369876, 8.552281], [47.419195, 8.546712], [47.353535, 8.556599], [47.364321, 8.533921], [47.375517, 8.535237], [47.356271, 8.556445], [47.37017, 8.548805], [47.412944, 8.538234], [47.369881, 8.529097], [47.377349, 8.498911], [47.360388, 8.596895], [47.385969, 8.519055], [47.368751, 8.54953], [47.374307, 8.522394], [47.384037, 8.511056], [47.373521, 8.537023], [47.361993, 8.5507], [47.371275, 8.486344], [47.411162, 8.562605], [47.381185, 8.516005], [47.371743, 8.515708], [47.356865, 8.53574], [47.383391, 8.574867], [47.39849, 8.474863], [47.402405, 8.499383], [47.378289, 8.527415], [47.378308, 8.527362], [47.372727, 8.529632], [47.393216, 8.493041], [47.370188, 8.548805], [47.398858, 8.59169], [47.387167, 8.489557], [47.393001, 8.485022], [47.389673, 8.511474], [47.413648, 8.524586], [47.366806, 8.543148], [47.417085, 8.545409], [47.412026, 8.528807], [47.399769, 8.586], [47.367819, 8.534073], [47.363742, 8.575255], [47.413139, 8.515578], [47.398978, 8.513993], [47.375779, 8.559489], [47.361408, 8.576596], [47.380164, 8.501947], [47.379101, 8.508891], [47.399888, 8.541449], [47.3623, 8.532675], [47.367839, 8.546095], [47.404543, 8.556941], [47.404605, 8.557022], [47.369236, 8.527839], [47.377552, 8.533107], [47.361661, 8.526069], [47.376346, 8.527468], [47.367411, 8.546642], [47.38861, 8.491122], [47.368241, 8.533181], [47.370188, 8.548805], [47.382877, 8.507139], [47.369804, 8.541886], [47.376356, 8.527375], [47.415181, 8.512624], [47.377264, 8.526387], [47.349658, 8.56119], [47.41701, 8.522985], [47.381269, 8.491268], [47.367179, 8.539898], [47.413883, 8.545396], [47.379428, 8.569895], [47.346075, 8.534341], [47.370188, 8.548805], [47.40527, 8.490974], [47.420771, 8.50839], [47.414086, 8.550436], [47.383155, 8.58604], [47.36143, 8.551284], [47.391112, 8.523054], [47.385979, 8.51793], [47.365585, 8.537204], [47.373434, 8.53481], [47.36561, 8.552496], [47.42296, 8.551787], [47.389438, 8.511642], [47.39467, 8.486419], [47.393328, 8.478644], [47.41433, 8.518107], [47.396604, 8.593999], [47.372569, 8.529284], [47.363797, 8.575111], [47.364699, 8.598458], [47.378108, 8.541819], [47.337024, 8.520194], [47.370209, 8.535327], [47.366907, 8.520152], [47.373725, 8.554162], [47.364918, 8.545902], [47.406278, 8.541131], [47.380561, 8.548664], [47.40925, 8.55007], [47.379572, 8.527746], [47.371196, 8.524132], [47.372762, 8.534492], [47.369957, 8.466814], [47.370161, 8.548805], [47.407504, 8.548311], [47.405448, 8.579405], [47.336628, 8.517394], [47.375639, 8.554361], [47.399846, 8.543064], [47.370464, 8.532141], [47.366407, 8.557505], [47.387851, 8.519756], [47.372753, 8.534478], [47.37818, 8.515097], [47.374728, 8.524495], [47.379949, 8.523078], [47.379437, 8.569869], [47.37384, 8.53658], [47.373365, 8.531671], [47.382066, 8.514103], [47.368672, 8.543623], [47.408355, 8.550634], [47.38576, 8.532614], [47.413092, 8.515802], [47.377985, 8.53011], [47.374734, 8.544636], [47.377116, 8.569926], [47.373452, 8.534771], [47.373969, 8.531445], [47.366953, 8.522933], [47.38233, 8.499129], [47.366739, 8.563165], [47.349957, 8.561011], [47.346629, 8.528992], [47.359994, 8.594874], [47.345345, 8.534498], [47.392564, 8.492538], [47.37347, 8.530984], [47.382175, 8.541665], [47.377946, 8.537101], [47.366755, 8.49968], [47.343563, 8.53552], [47.402979, 8.580703], [47.37235, 8.542825], [47.354435, 8.573972], [47.354958, 8.523378], [47.371695, 8.556662], [47.421374, 8.549302], [47.414474, 8.556818], [47.370152, 8.548791], [47.376075, 8.543657], [47.370345, 8.550212], [47.372928, 8.504318], [47.389581, 8.487194], [47.387853, 8.539531], [47.390002, 8.480433], [47.372272, 8.503206], [47.383664, 8.496891], [47.42195, 8.510203], [47.386246, 8.480996], [47.365642, 8.532161], [47.348778, 8.578484], [47.37974, 8.524253], [47.364351, 8.555237], [47.379801, 8.520652], [47.384454, 8.531858], [47.355002, 8.534934], [47.354731, 8.575024], [47.379263, 8.552636], [47.388664, 8.479162], [47.332158, 8.517344], [47.381086, 8.513076], [47.405337, 8.592374], [47.388521, 8.491014], [47.374576, 8.538661], [47.381324, 8.542217], [47.412886, 8.537703], [47.409845, 8.549976], [47.37938, 8.544229], [47.364323, 8.554442], [47.393587, 8.539133], [47.375749, 8.535427], [47.411279, 8.57093], [47.392142, 8.493403], [47.37056, 8.524794], [47.400364, 8.585894], [47.381836, 8.516574], [47.366928, 8.553822], [47.387963, 8.527016], [47.365184, 8.521626], [47.365995, 8.55265], [47.414307, 8.550918], [47.390684, 8.484593], [47.371697, 8.52536], [47.378189, 8.53418], [47.410678, 8.558752], [47.382014, 8.548151], [47.354448, 8.560682], [47.382144, 8.512515], [47.360056, 8.581399], [47.384076, 8.508832], [47.376541, 8.543892], [47.379347, 8.522086], [47.393395, 8.49311], [47.375211, 8.545573], [47.407694, 8.568627], [47.375669, 8.537187], [47.378281, 8.512887], [47.379148, 8.544953], [47.361222, 8.535354], [47.379588, 8.53748], [47.371061, 8.520316], [47.368723, 8.483129], [47.369868, 8.547488], [47.403909, 8.556464], [47.410666, 8.571937], [47.361511, 8.525735], [47.375406, 8.5645], [47.367859, 8.495995], [47.377635, 8.520449], [47.378614, 8.542478], [47.377643, 8.518635], [47.36123, 8.51731], [47.386797, 8.547482], [47.380764, 8.52536], [47.41489, 8.541653], [47.379474, 8.527651], [47.370188, 8.511652], [47.364256, 8.531259], [47.374927, 8.496214], [47.407316, 8.57967], [47.362532, 8.533884], [47.420342, 8.539632], [47.376074, 8.559667], [47.414423, 8.552868], [47.361901, 8.560243], [47.366521, 8.540931], [47.369257, 8.527561], [47.381442, 8.531691], [47.416232, 8.511837], [47.383279, 8.540946], [47.387049, 8.518945], [47.372412, 8.553208], [47.420834, 8.501526], [47.39073, 8.522569], [47.412658, 8.480731], [47.373095, 8.514385], [47.397555, 8.49461], [47.360611, 8.528695], [47.346945, 8.530759], [47.374536, 8.539958], [47.377543, 8.522606], [47.386296, 8.504188], [47.365176, 8.547112], [47.368862, 8.539787], [47.365176, 8.547112], [47.381195, 8.503252], [47.365186, 8.547933], [47.353166, 8.526425], [47.40725, 8.549525], [47.366627, 8.545911], [47.375314, 8.485337], [47.36861, 8.531308], [47.397017, 8.530261], [47.385342, 8.542512], [47.389119, 8.488575], [47.398193, 8.532471], [47.368469, 8.528101], [47.357317, 8.57909], [47.386585, 8.518591], [47.372792, 8.520867], [47.39476, 8.525433], [47.42559, 8.557104], [47.38508, 8.498482], [47.386631, 8.489149], [47.384446, 8.547831], [47.403616, 8.556087], [47.376628, 8.527089], [47.37482, 8.543208], [47.415049, 8.515232], [47.405957, 8.577905], [47.402785, 8.535759], [47.359074, 8.550215], [47.370933, 8.556461], [47.408843, 8.542813], [47.37166, 8.525518], [47.364366, 8.546248], [47.329313, 8.51464], [47.372688, 8.534755], [47.37436, 8.541437], [47.363116, 8.506028], [47.39126, 8.514911], [47.416964, 8.538251], [47.384452, 8.528203], [47.367182, 8.533861], [47.393658, 8.501713], [47.365237, 8.499372], [47.377647, 8.541982], [47.373054, 8.566754], [47.394197, 8.49], [47.371773, 8.524991], [47.35549, 8.574709], [47.410365, 8.542646], [47.387253, 8.500803], [47.393827, 8.500934], [47.377246, 8.498326], [47.388207, 8.52016], [47.390847, 8.512968], [47.401382, 8.545202], [47.368365, 8.496706], [47.371344, 8.523698], [47.398014, 8.534256], [47.400918, 8.477878], [47.395315, 8.532333], [47.366806, 8.543134], [47.373756, 8.535942], [47.335335, 8.519075], [47.366696, 8.542391], [47.372536, 8.534593], [47.36436, 8.555211], [47.403978, 8.572457], [47.401999, 8.499507], [47.408069, 8.572584], [47.387493, 8.496212], [47.375295, 8.485496], [47.369885, 8.547554], [47.428355, 8.490502], [47.387013, 8.48966], [47.40314, 8.575301], [47.362429, 8.547426], [47.38701, 8.498931], [47.368946, 8.540398], [47.387362, 8.50066], [47.404736, 8.556534], [47.363447, 8.550108], [47.408241, 8.572548], [47.373407, 8.53481], [47.379879, 8.528652], [47.362541, 8.533885], [47.399247, 8.521709], [47.378512, 8.541854], [47.373041, 8.534498], [47.389697, 8.511859], [47.370204, 8.547164], [47.373967, 8.544885], [47.359635, 8.522414], [47.387574, 8.540518], [47.371923, 8.531919], [47.386299, 8.531698], [47.378297, 8.54173], [47.396181, 8.545373], [47.378768, 8.542336], [47.388834, 8.483258], [47.376754, 8.560993], [47.408172, 8.547119], [47.350924, 8.527624], [47.39503, 8.522538], [47.392303, 8.476703], [47.373298, 8.528226], [47.397122, 8.530621], [47.378311, 8.51061], [47.367451, 8.537812], [47.394854, 8.524084], [47.419679, 8.50479], [47.386741, 8.547614], [47.387356, 8.493454], [47.384226, 8.530304], [47.359768, 8.594115], [47.388923, 8.483366], [47.35979, 8.521318], [47.387316, 8.537334], [47.370217, 8.532573], [47.37327, 8.48061], [47.419139, 8.507827], [47.403325, 8.555484], [47.394339, 8.489261], [47.377203, 8.52146], [47.377656, 8.538247], [47.388322, 8.487169], [47.431466, 8.543773], [47.382412, 8.500998], [47.412134, 8.549534], [47.375465, 8.486492], [47.38844, 8.509622], [47.355971, 8.522776], [47.400018, 8.494844], [47.363596, 8.550561], [47.373136, 8.532977], [47.377334, 8.548411], [47.380052, 8.528365], [47.361389, 8.554619], [47.371097, 8.555246], [47.428154, 8.489941], [47.426501, 8.492626], [47.338684, 8.532071], [47.370161, 8.548831], [47.36905, 8.537951], [47.428282, 8.489719], [47.371934, 8.522161], [47.411499, 8.526477], [47.377043, 8.53744], [47.373526, 8.527913], [47.376238, 8.544508], [47.411845, 8.550548], [47.367916, 8.5446], [47.374444, 8.540181], [47.421518, 8.537112], [47.415522, 8.544198], [47.39062, 8.54274], [47.406921, 8.586843], [47.359054, 8.5495], [47.390002, 8.489427], [47.398476, 8.591205], [47.411076, 8.545457], [47.369979, 8.543359], [47.357773, 8.55923], [47.360103, 8.535754], [47.396824, 8.529807], [47.366035, 8.53062], [47.418469, 8.508238], [47.37831, 8.541347], [47.388431, 8.491025], [47.370179, 8.548805], [47.414787, 8.519256], [47.356253, 8.507956], [47.388557, 8.491028], [47.404549, 8.534709], [47.410429, 8.56956], [47.381906, 8.52925], [47.424456, 8.549698], [47.420299, 8.508805], [47.375776, 8.554152], [47.388431, 8.487078], [47.37641, 8.534924], [47.391756, 8.518709], [47.396074, 8.540522], [47.380987, 8.513087], [47.340296, 8.530014], [47.379976, 8.527913], [47.360297, 8.567861], [47.390689, 8.483096], [47.364672, 8.537702], [47.364321, 8.531075], [47.370708, 8.516667], [47.373842, 8.492896], [47.367432, 8.523618], [47.381258, 8.494459], [47.378272, 8.540631], [47.369814, 8.510241], [47.390787, 8.522213], [47.414088, 8.551191], [47.374788, 8.544677], [47.363021, 8.561643], [47.382466, 8.501013], [47.364595, 8.566257], [47.379662, 8.553201], [47.382117, 8.528778], [47.38529, 8.507823], [47.365355, 8.533016], [47.415104, 8.513219], [47.380116, 8.52826], [47.372782, 8.534254], [47.405077, 8.557482], [47.398033, 8.532243], [47.415764, 8.531043], [47.405428, 8.491414], [47.356757, 8.535699], [47.369321, 8.525563], [47.407468, 8.54835], [47.353442, 8.558741], [47.344018, 8.530275], [47.406826, 8.550589], [47.37754, 8.543767], [47.359794, 8.507272], [47.367888, 8.560647], [47.410968, 8.550079], [47.409292, 8.558843], [47.425871, 8.537175], [47.379754, 8.515102], [47.388345, 8.540746], [47.374347, 8.519058], [47.371768, 8.536842], [47.377052, 8.544075], [47.361364, 8.549654], [47.404673, 8.572154], [47.375664, 8.545304], [47.361139, 8.549755], [47.3945, 8.525322], [47.414718, 8.551112], [47.422644, 8.499296], [47.333992, 8.515462], [47.393877, 8.475608], [47.390751, 8.492091], [47.407124, 8.492892], [47.365206, 8.534495], [47.38306, 8.530836], [47.413332, 8.538997], [47.408116, 8.554856], [47.406168, 8.534729], [47.381149, 8.491623], [47.381046, 8.491979], [47.370887, 8.548105], [47.397622, 8.53291], [47.400906, 8.537575], [47.37214, 8.520298], [47.375875, 8.541098], [47.41916, 8.506449], [47.356572, 8.523927], [47.399312, 8.542457], [47.374778, 8.549523], [47.366914, 8.544037], [47.378117, 8.522763], [47.408037, 8.489399], [47.417725, 8.546178], [47.376444, 8.525642], [47.40148, 8.545231], [47.361084, 8.525289], [47.339014, 8.538099], [47.408813, 8.548842], [47.37449, 8.495795], [47.38881, 8.479933], [47.376124, 8.516605], [47.368619, 8.524622], [47.397665, 8.53311], [47.375203, 8.523657], [47.414328, 8.538369], [47.390643, 8.52323], [47.364585, 8.537369], [47.419776, 8.548103], [47.382012, 8.550204], [47.355813, 8.560909], [47.410285, 8.572326], [47.382689, 8.514804], [47.375232, 8.524399], [47.358181, 8.50957], [47.40457, 8.556955], [47.427134, 8.491313], [47.377703, 8.525615], [47.393729, 8.500853], [47.398373, 8.534277], [47.406005, 8.591222], [47.379604, 8.54434], [47.347989, 8.532686], [47.370872, 8.512553], [47.41457, 8.55902], [47.380634, 8.488898], [47.386001, 8.535638], [47.404946, 8.557135], [47.414206, 8.571456], [47.372381, 8.534842], [47.359685, 8.507469], [47.366166, 8.533853], [47.364295, 8.533854], [47.407507, 8.568438], [47.374287, 8.552797], [47.364393, 8.546196], [47.405532, 8.588138], [47.373785, 8.519457], [47.39788, 8.474613], [47.383145, 8.572477], [47.415168, 8.562319], [47.377398, 8.529436], [47.374633, 8.524056], [47.393216, 8.493027], [47.365074, 8.553968], [47.42465, 8.552857], [47.365368, 8.531666], [47.367066, 8.547019], [47.374486, 8.540486], [47.3766, 8.532929], [47.377626, 8.522329], [47.349034, 8.532522], [47.381993, 8.584386], [47.39738, 8.533726], [47.420625, 8.502728], [47.37706, 8.544168], [47.396854, 8.540856], [47.382178, 8.54038], [47.417278, 8.546845], [47.377715, 8.519603], [47.428254, 8.489758], [47.36037, 8.523686], [47.346488, 8.564379], [47.376229, 8.528406], [47.367851, 8.523984], [47.340929, 8.537239], [47.357503, 8.52155], [47.387926, 8.485214], [47.407002, 8.481561], [47.362006, 8.559597], [47.364756, 8.557059], [47.407536, 8.544085], [47.402083, 8.495256], [47.407189, 8.586146], [47.367733, 8.513496], [47.404156, 8.561557], [47.380283, 8.512398], [47.404191, 8.561677], [47.376942, 8.544271], [47.413401, 8.53937], [47.422323, 8.55074], [47.387855, 8.540286], [47.409522, 8.54989], [47.409033, 8.545573], [47.374076, 8.535366], [47.405264, 8.557711], [47.397998, 8.474522], [47.343827, 8.535247], [47.402037, 8.495348], [47.37626, 8.55991], [47.407858, 8.578542], [47.352673, 8.580314], [47.399265, 8.542681], [47.383466, 8.534513], [47.381819, 8.556186], [47.382205, 8.572047], [47.397708, 8.533243], [47.361703, 8.503233], [47.365937, 8.539978], [47.377669, 8.498321], [47.329669, 8.531318], [47.374447, 8.544643], [47.369181, 8.527997], [47.373585, 8.519744], [47.407584, 8.489774], [47.40953, 8.537766], [47.411633, 8.542725], [47.361536, 8.560765], [47.348546, 8.570961], [47.372299, 8.510013], [47.369202, 8.554081], [47.354287, 8.557806], [47.35618, 8.553769], [47.362666, 8.55552], [47.364235, 8.536408], [47.377407, 8.548293], [47.415299, 8.562719], [47.386073, 8.521322], [47.386376, 8.496375], [47.376047, 8.566102], [47.410191, 8.548566], [47.392329, 8.538987], [47.364064, 8.551379], [47.399722, 8.516155], [47.389034, 8.537383], [47.32932, 8.512933], [47.355231, 8.557866], [47.395759, 8.531136], [47.404153, 8.562762], [47.376003, 8.5295], [47.360453, 8.522483], [47.411188, 8.526033], [47.347311, 8.566686], [47.386555, 8.497531], [47.409035, 8.550052], [47.378475, 8.522956], [47.373975, 8.476201], [47.378708, 8.542043], [47.343836, 8.535234], [47.378364, 8.541334], [47.365761, 8.494298], [47.421077, 8.546526], [47.376189, 8.529755], [47.364834, 8.566646], [47.374106, 8.517888], [47.400074, 8.590643], [47.390782, 8.539896], [47.361545, 8.525961], [47.37017, 8.548805], [47.41438, 8.513629], [47.366964, 8.535061], [47.417183, 8.542642], [47.371391, 8.530121], [47.396032, 8.481041], [47.40727, 8.58526], [47.387613, 8.529738], [47.407754, 8.583562], [47.369121, 8.527691], [47.418808, 8.507582], [47.372761, 8.538372], [47.343845, 8.535221], [47.352294, 8.507122], [47.389231, 8.479134], [47.362068, 8.535344], [47.367191, 8.533848], [47.375535, 8.541845], [47.3556, 8.556947], [47.374703, 8.523329], [47.425886, 8.555321], [47.350643, 8.579066], [47.386934, 8.490426], [47.371741, 8.53406], [47.364717, 8.554556], [47.369717, 8.543539], [47.361069, 8.53543], [47.385782, 8.545408], [47.37017, 8.548805], [47.377337, 8.535844], [47.389401, 8.539444], [47.377461, 8.514963], [47.422237, 8.552183], [47.383477, 8.486809], [47.360894, 8.513795], [47.366945, 8.558602], [47.380237, 8.525918], [47.37087, 8.554592], [47.375295, 8.485482], [47.360305, 8.5522], [47.370674, 8.519315], [47.390002, 8.476407], [47.377326, 8.570526], [47.391714, 8.519318], [47.404047, 8.495892], [47.358678, 8.500605], [47.380825, 8.518858], [47.374299, 8.524208], [47.335359, 8.528907], [47.394215, 8.490067], [47.422815, 8.494422], [47.411495, 8.546738], [47.38295, 8.540542], [47.391772, 8.538923], [47.409774, 8.545205], [47.368857, 8.531737], [47.365851, 8.509883], [47.370702, 8.558866], [47.392003, 8.523986], [47.365433, 8.539028], [47.37018, 8.490056], [47.344342, 8.530229], [47.387312, 8.518738], [47.402728, 8.535135], [47.400683, 8.548633], [47.405639, 8.59181], [47.356085, 8.55615], [47.378164, 8.526406], [47.364921, 8.550231], [47.367645, 8.495805], [47.350099, 8.570345], [47.38443, 8.496787], [47.398482, 8.538929], [47.391307, 8.487294], [47.385012, 8.481197], [47.341676, 8.53433], [47.388014, 8.52919], [47.384437, 8.499873], [47.385056, 8.530917], [47.385002, 8.530982], [47.383689, 8.547908], [47.378083, 8.530218], [47.427502, 8.547203], [47.39798, 8.474535], [47.376968, 8.544338], [47.392137, 8.525949], [47.39245, 8.516551], [47.376382, 8.527468], [47.347975, 8.564027], [47.37729, 8.52656], [47.345822, 8.527758], [47.370161, 8.548818], [47.409205, 8.566844], [47.424356, 8.540365], [47.379563, 8.527772], [47.378876, 8.530989], [47.376082, 8.533501], [47.347379, 8.534394], [47.419192, 8.507881], [47.37964, 8.523443], [47.387484, 8.488318], [47.383307, 8.530431], [47.369909, 8.536552], [47.369073, 8.525134], [47.426052, 8.547385], [47.416597, 8.534294], [47.383565, 8.539283], [47.395697, 8.522352], [47.387011, 8.575434], [47.398093, 8.532509], [47.402701, 8.517924], [47.376954, 8.523958], [47.367349, 8.57892], [47.407442, 8.574174], [47.387968, 8.517824], [47.394601, 8.527934], [47.374467, 8.52159], [47.380104, 8.518023], [47.374073, 8.555375], [47.378849, 8.520513], [47.40963, 8.537675], [47.385885, 8.493015], [47.412957, 8.537797], [47.381204, 8.483519], [47.428164, 8.547562], [47.384268, 8.548503], [47.403893, 8.569209], [47.368878, 8.539947], [47.368778, 8.524917], [47.397705, 8.52601], [47.387905, 8.524525], [47.386517, 8.503597], [47.367434, 8.541453], [47.355908, 8.562248], [47.424186, 8.496928], [47.374456, 8.517021], [47.413946, 8.518788], [47.420844, 8.502401], [47.412151, 8.528875], [47.379342, 8.555604], [47.359143, 8.559894], [47.403285, 8.586142], [47.376861, 8.543356], [47.344958, 8.532584], [47.367611, 8.541761], [47.354014, 8.558145], [47.429277, 8.548712], [47.389436, 8.52151], [47.410009, 8.541327], [47.371765, 8.521945], [47.351797, 8.560441], [47.407224, 8.564258], [47.382038, 8.515201], [47.396354, 8.504946], [47.373753, 8.544748], [47.37827, 8.53042], [47.380354, 8.512492], [47.40502, 8.572625], [47.373535, 8.525027], [47.347197, 8.531743], [47.411079, 8.543204], [47.37145, 8.531525], [47.363009, 8.559168], [47.381334, 8.542164], [47.415274, 8.546644], [47.415347, 8.546526], [47.409438, 8.538029], [47.392699, 8.52359], [47.385679, 8.508652], [47.37136, 8.514297], [47.365877, 8.54992], [47.370421, 8.535662], [47.409215, 8.547194], [47.40696, 8.550632], [47.406145, 8.551224], [47.37866, 8.559139], [47.408535, 8.53173], [47.38277, 8.541479], [47.402736, 8.554068], [47.41935, 8.502517], [47.366796, 8.54234], [47.366946, 8.543561], [47.36291, 8.558173], [47.404553, 8.557762], [47.356629, 8.52357], [47.392341, 8.503117], [47.366522, 8.540904], [47.366857, 8.543413], [47.350478, 8.578454], [47.369032, 8.537964], [47.368521, 8.539714], [47.400762, 8.548859], [47.377842, 8.532822], [47.401044, 8.535365], [47.377591, 8.543159], [47.393518, 8.483575], [47.365008, 8.557065], [47.388015, 8.485282], [47.38755, 8.518266], [47.366516, 8.553614], [47.405648, 8.527908], [47.37494, 8.534431], [47.351753, 8.4896], [47.413861, 8.545806], [47.388819, 8.479933], [47.394088, 8.525154], [47.417821, 8.511233], [47.368941, 8.524748], [47.335108, 8.519216], [47.369994, 8.466709], [47.383826, 8.540202], [47.403176, 8.588935], [47.329928, 8.51239], [47.369495, 8.526189], [47.386416, 8.527885], [47.391502, 8.514055], [47.363923, 8.566852], [47.36655, 8.54824], [47.341326, 8.530524], [47.399321, 8.585858], [47.380856, 8.518462], [47.364913, 8.547318], [47.359369, 8.507555], [47.3766, 8.532929], [47.421771, 8.550159], [47.353769, 8.558364], [47.375339, 8.56034], [47.387501, 8.487418], [47.391147, 8.489145], [47.393236, 8.47892], [47.416974, 8.538132], [47.369617, 8.525583], [47.399169, 8.542321], [47.391079, 8.522815], [47.33125, 8.536365], [47.37449, 8.495782], [47.374471, 8.495888], [47.427572, 8.546436], [47.366504, 8.533304], [47.418864, 8.507411], [47.378172, 8.514011], [47.36849, 8.546678], [47.376858, 8.535132], [47.344266, 8.531643], [47.385497, 8.536661], [47.374756, 8.553628], [47.369115, 8.54158], [47.391719, 8.48554], [47.377007, 8.524065], [47.374864, 8.541487], [47.38402, 8.501269], [47.406612, 8.584465], [47.393343, 8.547645], [47.391681, 8.518972], [47.402086, 8.49886], [47.410337, 8.547469], [47.371912, 8.506218], [47.370618, 8.470455], [47.343785, 8.534902], [47.36886, 8.528612], [47.415037, 8.551701], [47.398815, 8.533279], [47.358312, 8.550001], [47.385609, 8.543776], [47.385724, 8.489952], [47.362048, 8.557082], [47.408589, 8.531757], [47.35304, 8.526489], [47.352181, 8.524976], [47.37097, 8.554502], [47.396235, 8.545374], [47.362994, 8.518166], [47.37279, 8.521026], [47.419826, 8.482846], [47.361463, 8.565476], [47.425808, 8.547473], [47.373922, 8.513448], [47.414376, 8.537985], [47.384422, 8.5484], [47.380556, 8.528362], [47.406494, 8.55045], [47.383052, 8.484046], [47.405641, 8.542827], [47.386477, 8.525277], [47.370842, 8.516749], [47.382486, 8.529752], [47.37983, 8.525261], [47.365218, 8.50145], [47.356714, 8.553343], [47.380219, 8.501749], [47.370097, 8.548936], [47.407767, 8.578673], [47.374246, 8.525002], [47.401223, 8.534508], [47.381132, 8.534955], [47.372954, 8.531344], [47.391244, 8.515652], [47.365547, 8.539348], [47.386916, 8.490466], [47.418529, 8.547719], [47.370222, 8.521477], [47.381146, 8.528744], [47.39382, 8.524977], [47.374743, 8.544636], [47.376635, 8.534903], [47.373664, 8.537093], [47.369427, 8.541838], [47.427807, 8.490491], [47.373933, 8.536237], [47.370398, 8.514264], [47.367798, 8.53909], [47.362131, 8.547552], [47.391037, 8.522496], [47.410348, 8.550106], [47.364446, 8.53685], [47.402838, 8.491389], [47.410877, 8.563302], [47.398212, 8.536155], [47.394774, 8.546668], [47.359254, 8.518938], [47.419454, 8.556233], [47.417762, 8.54981], [47.37986, 8.515343], [47.369587, 8.547694], [47.404052, 8.55656], [47.378974, 8.54242], [47.369023, 8.53795], [47.418259, 8.508552], [47.379326, 8.56004], [47.368743, 8.540937], [47.373602, 8.519864], [47.38621, 8.518213], [47.359868, 8.549054], [47.400654, 8.502938], [47.361282, 8.576606], [47.349996, 8.52775], [47.3413, 8.524714], [47.357601, 8.554685], [47.414453, 8.553438], [47.371069, 8.547923], [47.350549, 8.560203], [47.41491, 8.549949], [47.37017, 8.548805], [47.419962, 8.500501], [47.373444, 8.526177], [47.363719, 8.551755], [47.375544, 8.520897], [47.358192, 8.555929], [47.359881, 8.594475], [47.380645, 8.528496], [47.361174, 8.521412], [47.37378, 8.537188], [47.376556, 8.548819], [47.40956, 8.545889], [47.392999, 8.545068], [47.377829, 8.574324], [47.420296, 8.503331], [47.347217, 8.53443], [47.400187, 8.494013], [47.341294, 8.536744], [47.401983, 8.499308], [47.37038, 8.489822], [47.361892, 8.560243], [47.359624, 8.549168], [47.387367, 8.497269], [47.37774, 8.551068], [47.327382, 8.529683], [47.343866, 8.530153], [47.380369, 8.483371], [47.360446, 8.552574], [47.390762, 8.522027], [47.379996, 8.555962], [47.381143, 8.542359], [47.412878, 8.522318], [47.387006, 8.490481], [47.377906, 8.529923], [47.387543, 8.527683], [47.367817, 8.5605], [47.366742, 8.56192], [47.385609, 8.548411], [47.382078, 8.533889], [47.414954, 8.55003], [47.391478, 8.481403], [47.368556, 8.534088], [47.349564, 8.565251], [47.417645, 8.546137], [47.375751, 8.537983], [47.361864, 8.52553], [47.37383, 8.537612], [47.396324, 8.545468], [47.364941, 8.570382], [47.380972, 8.491222], [47.378546, 8.540199], [47.393299, 8.52482], [47.408556, 8.540899], [47.359089, 8.525063], [47.383727, 8.58825], [47.382134, 8.512554], [47.379027, 8.543546], [47.370031, 8.55664], [47.422385, 8.548992], [47.424214, 8.543026], [47.385619, 8.519883], [47.410475, 8.533002], [47.40872, 8.546256], [47.376476, 8.511593], [47.386852, 8.535113], [47.362944, 8.563045], [47.407314, 8.544703], [47.397672, 8.533322], [47.363859, 8.531462], [47.403675, 8.570265], [47.369585, 8.558114], [47.385829, 8.517675], [47.403388, 8.493136], [47.382048, 8.532286], [47.366085, 8.545132], [47.375642, 8.496771], [47.379901, 8.483361], [47.353909, 8.575324], [47.358972, 8.516377], [47.369445, 8.526704], [47.369076, 8.541831], [47.376995, 8.544325], [47.391444, 8.523114], [47.361015, 8.531576], [47.387476, 8.487271], [47.390657, 8.483678], [47.364295, 8.533881], [47.372853, 8.518167], [47.411682, 8.561914], [47.389596, 8.512003], [47.381888, 8.531183], [47.364529, 8.532866], [47.404833, 8.574237], [47.398366, 8.53784], [47.373422, 8.552951], [47.356789, 8.514122], [47.364604, 8.566218], [47.328589, 8.517986], [47.361755, 8.525647], [47.366576, 8.559574], [47.37768, 8.51175], [47.41057, 8.572584], [47.391664, 8.514111], [47.376236, 8.533345], [47.37302, 8.532882], [47.384408, 8.53195], [47.380358, 8.527378], [47.375808, 8.529138], [47.368601, 8.558557], [47.341367, 8.529983], [47.377769, 8.537747], [47.376445, 8.536951], [47.38394, 8.527252], [47.371786, 8.556598], [47.347092, 8.534322], [47.404012, 8.534433], [47.406778, 8.541499], [47.336437, 8.52619], [47.345031, 8.529661], [47.374615, 8.576401], [47.391879, 8.538965], [47.370143, 8.548804], [47.418394, 8.546815], [47.36922, 8.532446], [47.37345, 8.533102], [47.410108, 8.509766], [47.384748, 8.516872], [47.386474, 8.541714], [47.409791, 8.537785], [47.375945, 8.53371], [47.378451, 8.510149], [47.364733, 8.547368], [47.408085, 8.580137], [47.36176, 8.604431], [47.410447, 8.569507], [47.376179, 8.567324], [47.387004, 8.536136], [47.370695, 8.546605], [47.384453, 8.542401], [47.373506, 8.519504], [47.373885, 8.536567], [47.413186, 8.513432], [47.368916, 8.501391], [47.367306, 8.522609], [47.369288, 8.505887], [47.375623, 8.548587], [47.367932, 8.544839], [47.404007, 8.556572], [47.380922, 8.541957], [47.329, 8.517372], [47.369515, 8.520165], [47.366764, 8.541876], [47.408991, 8.539583], [47.394229, 8.493405], [47.390924, 8.522043], [47.361663, 8.57627], [47.411244, 8.570849], [47.351542, 8.60164], [47.419306, 8.509235], [47.399288, 8.505707], [47.393703, 8.544884], [47.416402, 8.525411], [47.365559, 8.598768], [47.376328, 8.523627], [47.367135, 8.539752], [47.399241, 8.542323], [47.386245, 8.501856], [47.411339, 8.544257], [47.370233, 8.548806], [47.377314, 8.521158], [47.369305, 8.527178], [47.405155, 8.478862], [47.3833, 8.506102], [47.404515, 8.503691], [47.396304, 8.51329], [47.377487, 8.539012], [47.36877, 8.524784], [47.412657, 8.54003], [47.372391, 8.521362], [47.38443, 8.538175], [47.364754, 8.554478], [47.354761, 8.574667], [47.372814, 8.535645], [47.375743, 8.544551], [47.363842, 8.528497], [47.358661, 8.532256], [47.342648, 8.527706], [47.377908, 8.508536], [47.431357, 8.54385], [47.414025, 8.54842], [47.370286, 8.548847], [47.377166, 8.509051], [47.374606, 8.540158], [47.393656, 8.537571], [47.403029, 8.572013], [47.419185, 8.547772], [47.405023, 8.497355], [47.413433, 8.483555], [47.386786, 8.547628], [47.371837, 8.60154], [47.427793, 8.546905], [47.376428, 8.528251], [47.372966, 8.485397], [47.391065, 8.522298], [47.366497, 8.505156], [47.431151, 8.516101], [47.425017, 8.539941], [47.381212, 8.507212], [47.370233, 8.537538], [47.341496, 8.520986], [47.37869, 8.52304], [47.418226, 8.508299], [47.418341, 8.546708], [47.405269, 8.555287], [47.388296, 8.490996], [47.365429, 8.546932], [47.376643, 8.539749], [47.369726, 8.536853], [47.379888, 8.528586], [47.360946, 8.564989], [47.378056, 8.513849], [47.36227, 8.559311], [47.370523, 8.51624], [47.373828, 8.53025], [47.365898, 8.55621], [47.374736, 8.528335], [47.369901, 8.513526], [47.37897, 8.509484], [47.389222, 8.477173], [47.386389, 8.518388], [47.374451, 8.549768], [47.381137, 8.528731], [47.372713, 8.534968], [47.381682, 8.533947], [47.372498, 8.518663], [47.379785, 8.537576], [47.379825, 8.525724], [47.411076, 8.545457], [47.369717, 8.525532], [47.366435, 8.553626], [47.381333, 8.54219], [47.387642, 8.486798], [47.375266, 8.522732], [47.411328, 8.544495], [47.367181, 8.559268], [47.35834, 8.585717], [47.372892, 8.520684], [47.365144, 8.545708], [47.377107, 8.539163], [47.384408, 8.531937], [47.37539, 8.547603], [47.354271, 8.555794], [47.369087, 8.55012], [47.393246, 8.530542], [47.375819, 8.522293], [47.381863, 8.516601], [47.367504, 8.545386], [47.37437, 8.525203], [47.355563, 8.554259], [47.408241, 8.552142], [47.358407, 8.59705], [47.357838, 8.583787], [47.368349, 8.550144], [47.414591, 8.519066], [47.374231, 8.540865], [47.377755, 8.568112], [47.382496, 8.531527], [47.361137, 8.555514], [47.359888, 8.535697], [47.374459, 8.539545], [47.393042, 8.52157], [47.386113, 8.527575], [47.37017, 8.548805], [47.393369, 8.498978], [47.410545, 8.543538], [47.387818, 8.527146], [47.37384, 8.536514], [47.36714, 8.540202], [47.344886, 8.532635], [47.3757, 8.516689], [47.384765, 8.516885], [47.373732, 8.596404], [47.413422, 8.530505], [47.364896, 8.553792], [47.402005, 8.497812], [47.369014, 8.538016], [47.418114, 8.527977], [47.424641, 8.552856], [47.390924, 8.522057], [47.36264, 8.563807], [47.37556, 8.528776], [47.364107, 8.563705], [47.414073, 8.541491], [47.390335, 8.47546], [47.383322, 8.557065], [47.403623, 8.547793], [47.382028, 8.516221], [47.424797, 8.537524], [47.352754, 8.557337], [47.377246, 8.538795], [47.353194, 8.572145], [47.387645, 8.514891], [47.386017, 8.50511], [47.382156, 8.52948], [47.367429, 8.546629], [47.377831, 8.519698], [47.377329, 8.512762], [47.355785, 8.593036], [47.366935, 8.543786], [47.368923, 8.541854], [47.386495, 8.529106], [47.370161, 8.548805], [47.391872, 8.50524], [47.370687, 8.538991], [47.415591, 8.565972], [47.337465, 8.532563], [47.369527, 8.528507], [47.413002, 8.544424], [47.376776, 8.538084], [47.369595, 8.553401], [47.390422, 8.542723], [47.373896, 8.541057], [47.403607, 8.504601], [47.372133, 8.48399], [47.38329, 8.48854], [47.34964, 8.561163], [47.349827, 8.566011], [47.388161, 8.491086], [47.4124, 8.570384], [47.372675, 8.535179], [47.37563, 8.554374], [47.361117, 8.521742], [47.412215, 8.555167], [47.393921, 8.535152], [47.358684, 8.527875], [47.370143, 8.548791], [47.380348, 8.542713], [47.368772, 8.548286], [47.373278, 8.535165], [47.391381, 8.536517], [47.409403, 8.540678], [47.376784, 8.53815], [47.384791, 8.534209], [47.380475, 8.548212], [47.35814, 8.55569], [47.373822, 8.53654], [47.42487, 8.537407], [47.370556, 8.515671], [47.373956, 8.519461], [47.364574, 8.554461], [47.369912, 8.547515], [47.388331, 8.520414], [47.408885, 8.548817], [47.339991, 8.529968], [47.388582, 8.535691], [47.366787, 8.5432], [47.372435, 8.541463], [47.404659, 8.483966], [47.37004, 8.556654], [47.395154, 8.542636], [47.414521, 8.541725], [47.373031, 8.534564], [47.350988, 8.576916], [47.338689, 8.539151], [47.365723, 8.536002], [47.389677, 8.521713], [47.409567, 8.537687], [47.369957, 8.518069], [47.370967, 8.548212], [47.370298, 8.558804], [47.378953, 8.559595], [47.409817, 8.523527], [47.356407, 8.523235], [47.360866, 8.550014], [47.385208, 8.508007], [47.388167, 8.526358], [47.414673, 8.551124], [47.384445, 8.531858], [47.403341, 8.502277], [47.372672, 8.521196], [47.363634, 8.533298], [47.375357, 8.530255], [47.367972, 8.519763], [47.368835, 8.539813], [47.374067, 8.53632], [47.354065, 8.534147], [47.365949, 8.567597], [47.363136, 8.546911], [47.419531, 8.50533], [47.370206, 8.548806], [47.3728, 8.530494], [47.385227, 8.484274], [47.347806, 8.525337], [47.382573, 8.515702], [47.404016, 8.556559], [47.378091, 8.52651], [47.415913, 8.538136], [47.35303, 8.556694], [47.37572, 8.516517], [47.370106, 8.548883], [47.37553, 8.560066], [47.368603, 8.499267], [47.359815, 8.535801], [47.379618, 8.527707], [47.370905, 8.534957], [47.380537, 8.500458], [47.412476, 8.544797], [47.365559, 8.547478], [47.374364, 8.529639], [47.368995, 8.543723], [47.378509, 8.526982], [47.407913, 8.578384], [47.363452, 8.575421], [47.382895, 8.513947], [47.377785, 8.528411], [47.35356, 8.558572], [47.358631, 8.585379], [47.406908, 8.587214], [47.40438, 8.55703], [47.369188, 8.548003], [47.360349, 8.550454], [47.368664, 8.54643], [47.375049, 8.531401], [47.411577, 8.558771], [47.419066, 8.506911], [47.374078, 8.540849], [47.405444, 8.592456], [47.378415, 8.540753], [47.416538, 8.548062], [47.386504, 8.529106], [47.398767, 8.506597], [47.372341, 8.538138], [47.390957, 8.482306], [47.380848, 8.535506], [47.36647, 8.541631], [47.387384, 8.487495], [47.421111, 8.549509], [47.413296, 8.53139], [47.39482, 8.520917], [47.389697, 8.511846], [47.369105, 8.541659], [47.414056, 8.541437], [47.387174, 8.528656], [47.373969, 8.540939], [47.33579, 8.529988], [47.383763, 8.504694], [47.378725, 8.542189], [47.408635, 8.579963], [47.386171, 8.515642], [47.398534, 8.502684], [47.375962, 8.562817], [47.386208, 8.540424], [47.362951, 8.548324], [47.375471, 8.485843], [47.409692, 8.544408], [47.381092, 8.481954], [47.389309, 8.527282], [47.369417, 8.52007], [47.386632, 8.551519], [47.362131, 8.559639], [47.411703, 8.525805], [47.329615, 8.53133], [47.393238, 8.524607], [47.382365, 8.549019], [47.405154, 8.480968], [47.390055, 8.485521], [47.387589, 8.529406], [47.409835, 8.549115], [47.378941, 8.508703], [47.388934, 8.537513], [47.414095, 8.550423], [47.399295, 8.495241], [47.375987, 8.535869], [47.388554, 8.482392], [47.406678, 8.576914], [47.373452, 8.529104], [47.369063, 8.492192], [47.40284, 8.491085], [47.418855, 8.506364], [47.4143, 8.539335], [47.401833, 8.585607], [47.383707, 8.540385], [47.394146, 8.488741], [47.384399, 8.531937], [47.362727, 8.558486], [47.396857, 8.533861], [47.359636, 8.508858], [47.409812, 8.536486], [47.369212, 8.541754], [47.370286, 8.506913], [47.401241, 8.588138], [47.427294, 8.552952], [47.401492, 8.588303], [47.371104, 8.564767], [47.40678, 8.562765], [47.392678, 8.527735], [47.408359, 8.509214], [47.393929, 8.510421], [47.386187, 8.537814], [47.354679, 8.558238], [47.379359, 8.495547], [47.380246, 8.552352], [47.369901, 8.513539], [47.372899, 8.547445], [47.41048, 8.53817], [47.357122, 8.53515], [47.369715, 8.541778], [47.356706, 8.551384], [47.3744, 8.543861], [47.353235, 8.555944], [47.37385, 8.536487], [47.377134, 8.541998], [47.419454, 8.499935], [47.404173, 8.557052], [47.364007, 8.555442], [47.369238, 8.519961], [47.364185, 8.546363], [47.406073, 8.588945], [47.426586, 8.544255], [47.386991, 8.494123], [47.428072, 8.490059], [47.419447, 8.506561], [47.382411, 8.514666], [47.373905, 8.53825], [47.374229, 8.526776], [47.379196, 8.517991], [47.419933, 8.549551], [47.373449, 8.531355], [47.404329, 8.556751], [47.376831, 8.52659], [47.376803, 8.539051], [47.403323, 8.497295], [47.35546, 8.512944], [47.358248, 8.572239], [47.391365, 8.522966], [47.391625, 8.51917], [47.376394, 8.583868], [47.375426, 8.516206], [47.36985, 8.508321], [47.411124, 8.526204], [47.366888, 8.545824], [47.377394, 8.499892], [47.390561, 8.470272], [47.370737, 8.470219], [47.417156, 8.505296], [47.337015, 8.520274], [47.405579, 8.481705], [47.375414, 8.527078], [47.419348, 8.505565], [47.372766, 8.54731], [47.386263, 8.526054], [47.407997, 8.572622], [47.361892, 8.531131], [47.399611, 8.51553], [47.347594, 8.531645], [47.348517, 8.573951], [47.376946, 8.543848], [47.377303, 8.541299], [47.373624, 8.518474], [47.354972, 8.534232], [47.375563, 8.486666], [47.377784, 8.509249], [47.371643, 8.515772], [47.390352, 8.539728], [47.362636, 8.558657], [47.399304, 8.495201], [47.376958, 8.569578], [47.382601, 8.514564], [47.371969, 8.564639], [47.351377, 8.60108], [47.37416, 8.475701], [47.422825, 8.535827], [47.364481, 8.536943], [47.373619, 8.536204], [47.364803, 8.531508], [47.387155, 8.519119], [47.402153, 8.497417], [47.381507, 8.582627], [47.401562, 8.517583], [47.379451, 8.544323], [47.371203, 8.518557], [47.352206, 8.488272], [47.383088, 8.530797], [47.343005, 8.534635], [47.364257, 8.531193], [47.391239, 8.53919], [47.367638, 8.509217], [47.356836, 8.58407], [47.377752, 8.509818], [47.376238, 8.544508], [47.428558, 8.551507], [47.384761, 8.531732], [47.382879, 8.529124], [47.362122, 8.559639], [47.38359, 8.539429], [47.380375, 8.493634], [47.425179, 8.537082], [47.39559, 8.527093], [47.380421, 8.559414], [47.354172, 8.523679], [47.38803, 8.486647], [47.368627, 8.524728], [47.376418, 8.52739], [47.381719, 8.529988], [47.379324, 8.537858], [47.373278, 8.484662], [47.366973, 8.560376], [47.409521, 8.537766], [47.3644, 8.534108], [47.3932, 8.530647], [47.371756, 8.54754], [47.4313, 8.516555], [47.367771, 8.521056], [47.395645, 8.520272], [47.389245, 8.527427], [47.368351, 8.524392], [47.402527, 8.535462], [47.368895, 8.500729], [47.408922, 8.574563], [47.369339, 8.525511], [47.404652, 8.550279], [47.377726, 8.519418], [47.371673, 8.473097], [47.391381, 8.536557], [47.377337, 8.48343], [47.410597, 8.572624], [47.39896, 8.541655], [47.355785, 8.549948], [47.371372, 8.547281], [47.405986, 8.548094], [47.375517, 8.496597], [47.389358, 8.52119], [47.38567, 8.480071], [47.385432, 8.549043], [47.35733, 8.521705], [47.392736, 8.523524], [47.376304, 8.563791], [47.36811, 8.532821], [47.386948, 8.500691], [47.366469, 8.533224], [47.409513, 8.540482], [47.42589, 8.493595], [47.355051, 8.557915], [47.363598, 8.533324], [47.372878, 8.600821], [47.392071, 8.49923], [47.397051, 8.52185], [47.384134, 8.532408], [47.387402, 8.487482], [47.372652, 8.601015], [47.382556, 8.514576], [47.382967, 8.551892], [47.409282, 8.528764], [47.405149, 8.481538], [47.384871, 8.484902], [47.364851, 8.567693], [47.383755, 8.542956], [47.36698, 8.491741], [47.39376, 8.494522], [47.39952, 8.516628], [47.371482, 8.546157], [47.418937, 8.507266], [47.38998, 8.512302], [47.368309, 8.52218], [47.370189, 8.488057], [47.364272, 8.526718], [47.369401, 8.525644], [47.369392, 8.525591], [47.39166, 8.513528], [47.403711, 8.503106], [47.418141, 8.512605], [47.401959, 8.492021], [47.360506, 8.52259], [47.388023, 8.526369], [47.399057, 8.514141], [47.374335, 8.529876], [47.352493, 8.532024], [47.401539, 8.53148], [47.379705, 8.521286], [47.369455, 8.519846], [47.389174, 8.470536], [47.426693, 8.492298], [47.383588, 8.532158], [47.420673, 8.501404], [47.352948, 8.5247], [47.340026, 8.530061], [47.389656, 8.47187], [47.373785, 8.503064], [47.359681, 8.508806], [47.387192, 8.51904], [47.37775, 8.537852], [47.364165, 8.553062], [47.35876, 8.585117], [47.41964, 8.548219], [47.40806, 8.544758], [47.379327, 8.495136], [47.393247, 8.52466], [47.382634, 8.546323], [47.43127, 8.538811], [47.336315, 8.524811], [47.377265, 8.51292], [47.364477, 8.566308], [47.373527, 8.553311], [47.369591, 8.466529], [47.390714, 8.534729], [47.373744, 8.542881], [47.365514, 8.552124], [47.356399, 8.527961], [47.39894, 8.533308], [47.414181, 8.533926], [47.378203, 8.510648], [47.377692, 8.517259], [47.384122, 8.528858], [47.381984, 8.498659], [47.407839, 8.54527], [47.391983, 8.473174], [47.351877, 8.530529], [47.403767, 8.536547], [47.340617, 8.525547], [47.392269, 8.492333], [47.384085, 8.508832], [47.359665, 8.569979], [47.367595, 8.509004], [47.375914, 8.526545], [47.385924, 8.480791], [47.399215, 8.531883], [47.371083, 8.531346], [47.393001, 8.53924], [47.363041, 8.548365], [47.408928, 8.539556], [47.406938, 8.487588], [47.3586, 8.532003], [47.353471, 8.556624], [47.417757, 8.513273], [47.389172, 8.470708], [47.376521, 8.499927], [47.369733, 8.508372], [47.379606, 8.490109], [47.372204, 8.52406], [47.378444, 8.54805], [47.366055, 8.532289], [47.411792, 8.569973], [47.355394, 8.535287], [47.419012, 8.50308], [47.373084, 8.532777], [47.356814, 8.579026], [47.417419, 8.553713], [47.357817, 8.521635], [47.365876, 8.49442], [47.383162, 8.500576], [47.419929, 8.546145], [47.373688, 8.52887], [47.35279, 8.557272], [47.357587, 8.550581], [47.413012, 8.537719], [47.388021, 8.519825], [47.348479, 8.534138], [47.378679, 8.563669], [47.404373, 8.556778], [47.392968, 8.529397], [47.359811, 8.522867], [47.340781, 8.530129], [47.392212, 8.538985], [47.392286, 8.476491], [47.364577, 8.566231], [47.386459, 8.518535], [47.356606, 8.527025], [47.386935, 8.519578], [47.369091, 8.514516], [47.337818, 8.531419], [47.378223, 8.482984], [47.377265, 8.538703], [47.376987, 8.544285], [47.368034, 8.540737], [47.366544, 8.553562], [47.400195, 8.586605], [47.374726, 8.518907], [47.375936, 8.525129], [47.409557, 8.537793], [47.411149, 8.543471], [47.419228, 8.507922], [47.376501, 8.523392], [47.369964, 8.510654], [47.425611, 8.497513], [47.426007, 8.493557], [47.356423, 8.550888], [47.415361, 8.518406], [47.417274, 8.544499], [47.365, 8.562466], [47.358221, 8.571418], [47.419212, 8.547746], [47.387334, 8.533547], [47.377255, 8.538795], [47.402349, 8.535286], [47.369007, 8.528311], [47.404725, 8.576011], [47.371441, 8.520045], [47.392165, 8.533513], [47.383736, 8.550571], [47.404303, 8.564952], [47.382334, 8.487925], [47.358426, 8.585216], [47.374506, 8.557132], [47.36915, 8.550108], [47.35258, 8.524666], [47.367553, 8.565473], [47.409127, 8.545125], [47.428192, 8.489704], [47.399787, 8.547369], [47.374362, 8.556228], [47.398025, 8.532084], [47.398373, 8.538079], [47.364984, 8.560493], [47.368284, 8.551255], [47.371658, 8.550292], [47.380706, 8.582623], [47.401306, 8.541836], [47.398849, 8.533465], [47.377477, 8.543819], [47.35602, 8.535697], [47.37016, 8.548871], [47.378672, 8.543036], [47.413392, 8.539383], [47.37729, 8.526494], [47.386297, 8.518532], [47.371915, 8.522306], [47.347627, 8.562828], [47.370803, 8.518033], [47.398304, 8.547218], [47.376114, 8.583981], [47.417697, 8.509097], [47.371242, 8.568133], [47.368795, 8.499853], [47.356424, 8.526253], [47.382717, 8.514672], [47.387584, 8.546956], [47.383267, 8.557223], [47.35424, 8.508697], [47.374335, 8.524182], [47.361686, 8.560159], [47.358561, 8.580665], [47.385815, 8.546694], [47.390327, 8.525223], [47.399985, 8.494526], [47.367838, 8.522527], [47.366462, 8.545246], [47.406622, 8.591593], [47.384653, 8.542153], [47.390007, 8.512369], [47.368359, 8.559386], [47.385765, 8.517753], [47.399674, 8.496003], [47.373126, 8.536896], [47.428071, 8.490112], [47.363748, 8.547784], [47.413644, 8.528866], [47.422265, 8.538943], [47.387409, 8.544608], [47.408478, 8.552717], [47.358273, 8.587026], [47.379226, 8.525328], [47.40306, 8.589728], [47.392734, 8.492673], [47.356675, 8.534863], [47.376331, 8.52613], [47.383282, 8.506101], [47.378978, 8.559821], [47.418993, 8.507029], [47.378331, 8.52874], [47.377864, 8.511369], [47.412511, 8.508661], [47.381267, 8.49144], [47.365186, 8.547893], [47.361636, 8.552241], [47.374237, 8.536482], [47.382267, 8.572101], [47.388035, 8.493958], [47.34083, 8.5192], [47.357294, 8.552031], [47.391948, 8.5116], [47.376133, 8.559112], [47.414122, 8.550437], [47.360153, 8.523801], [47.381689, 8.531298], [47.391327, 8.538384], [47.37821, 8.526248], [47.403767, 8.536534], [47.344118, 8.530079], [47.384012, 8.527201], [47.36624, 8.548723], [47.395518, 8.522322], [47.346413, 8.529067], [47.370567, 8.54116], [47.369974, 8.522995], [47.378836, 8.542774], [47.411434, 8.52572], [47.393346, 8.474684], [47.370015, 8.548974], [47.368661, 8.543914], [47.42277, 8.535998], [47.408832, 8.545834], [47.423688, 8.551909], [47.403671, 8.571682], [47.39619, 8.545346], [47.369509, 8.528506], [47.392056, 8.497919], [47.401883, 8.535025], [47.388327, 8.540746], [47.375169, 8.524398], [47.408657, 8.546294], [47.370254, 8.524854], [47.382925, 8.486242], [47.370215, 8.548806], [47.387472, 8.49849], [47.379246, 8.538439], [47.383262, 8.530404], [47.373157, 8.537466], [47.403265, 8.497784], [47.353352, 8.576199], [47.355621, 8.559476], [47.357442, 8.521337], [47.368431, 8.534019], [47.373402, 8.524892], [47.386347, 8.548387], [47.365086, 8.567526], [47.390825, 8.523922], [47.37204, 8.522361], [47.397736, 8.533151], [47.36646, 8.513986], [47.41915, 8.547732], [47.356002, 8.526179], [47.377301, 8.512868], [47.381364, 8.494634], [47.426957, 8.506659], [47.361899, 8.52565], [47.406977, 8.573886], [47.374467, 8.52159], [47.366486, 8.53333], [47.387518, 8.527471], [47.372634, 8.52616], [47.366377, 8.533354], [47.391045, 8.522589], [47.419923, 8.554308], [47.365344, 8.556728], [47.390054, 8.48062], [47.367954, 8.540695], [47.369005, 8.53799], [47.429295, 8.540282], [47.37525, 8.518653], [47.403663, 8.534266], [47.392234, 8.503048], [47.378696, 8.564715], [47.36073, 8.551971], [47.377678, 8.507154], [47.376831, 8.535132], [47.376459, 8.51154], [47.384659, 8.487375], [47.376674, 8.559958], [47.380667, 8.525159], [47.365586, 8.598795], [47.35883, 8.552183], [47.366812, 8.558387], [47.40323, 8.502553], [47.368986, 8.524828], [47.363065, 8.517307], [47.367806, 8.54011], [47.368725, 8.528583], [47.396834, 8.529648], [47.410527, 8.543551], [47.418207, 8.546546], [47.394883, 8.525767], [47.369316, 8.504762], [47.375089, 8.496257], [47.391416, 8.551698], [47.385982, 8.52144], [47.37316, 8.552111], [47.409358, 8.546362], [47.34478, 8.533361], [47.368182, 8.49612], [47.374697, 8.497799], [47.364601, 8.554514], [47.389, 8.488811], [47.429507, 8.487529], [47.393616, 8.519886], [47.427231, 8.546402], [47.425998, 8.493531], [47.375573, 8.557459], [47.409111, 8.547775], [47.405161, 8.48016], [47.378402, 8.526927], [47.354297, 8.557753], [47.423558, 8.54956], [47.371627, 8.517507], [47.387218, 8.51912], [47.384745, 8.509402], [47.380045, 8.483404], [47.383536, 8.539495], [47.388535, 8.53875], [47.362651, 8.506694], [47.408726, 8.566145], [47.387904, 8.48271], [47.377548, 8.528777], [47.370052, 8.511821], [47.379324, 8.537858], [47.400195, 8.548887], [47.404364, 8.556818], [47.369467, 8.526228], [47.372444, 8.503143], [47.357469, 8.550672], [47.36949, 8.525726], [47.37027, 8.525013], [47.361955, 8.560218], [47.373915, 8.544751], [47.348267, 8.571008], [47.371173, 8.530355], [47.402653, 8.499799], [47.398032, 8.53423], [47.362622, 8.533873], [47.386851, 8.490637], [47.383721, 8.510189], [47.42735, 8.546193], [47.401722, 8.505212], [47.406984, 8.487483], [47.360525, 8.561128], [47.377079, 8.523113], [47.373149, 8.534526], [47.380581, 8.500578], [47.379261, 8.53787], [47.402709, 8.554067], [47.421306, 8.549884], [47.372986, 8.567282], [47.370161, 8.548818], [47.355103, 8.559041], [47.381391, 8.56509], [47.37161, 8.506741], [47.377152, 8.535403], [47.368882, 8.501113], [47.37068, 8.470456], [47.413541, 8.545415], [47.380497, 8.544054], [47.385261, 8.530193], [47.366266, 8.540303], [47.374482, 8.5568], [47.39114, 8.532539], [47.374496, 8.546101], [47.396041, 8.526983], [47.387488, 8.516265], [47.369878, 8.517961], [47.360326, 8.553803], [47.409823, 8.541005], [47.410724, 8.544615], [47.404016, 8.556532], [47.390215, 8.545553], [47.367632, 8.515678], [47.405871, 8.553524], [47.391504, 8.519644], [47.387607, 8.527579], [47.38755, 8.486981], [47.374554, 8.545625], [47.391195, 8.488828], [47.388335, 8.490759], [47.369045, 8.541393], [47.38793, 8.498592], [47.374598, 8.489918], [47.354429, 8.574646], [47.361433, 8.531201], [47.377766, 8.543706], [47.391006, 8.522827], [47.392191, 8.501869], [47.387412, 8.540542], [47.392172, 8.500928], [47.384316, 8.528359], [47.415419, 8.551246], [47.37972, 8.490496], [47.371094, 8.523481], [47.38855, 8.483822], [47.421495, 8.548894], [47.37514, 8.501449], [47.415329, 8.534228], [47.389125, 8.522007], [47.391109, 8.522484], [47.378645, 8.523025], [47.411334, 8.525824], [47.394148, 8.509087], [47.370206, 8.548832], [47.396006, 8.52681], [47.387117, 8.545939], [47.367067, 8.530866], [47.369098, 8.52532], [47.396629, 8.478708], [47.384115, 8.497695], [47.395036, 8.516126], [47.381886, 8.548334], [47.369023, 8.537963], [47.374728, 8.532043], [47.366738, 8.544589], [47.367111, 8.534773], [47.353619, 8.554337], [47.403121, 8.57542], [47.411096, 8.526217], [47.329903, 8.512217], [47.371574, 8.547815], [47.33896, 8.538111], [47.354469, 8.601307], [47.378306, 8.530434], [47.386941, 8.528572], [47.376995, 8.539611], [47.368577, 8.529057], [47.371369, 8.517223], [47.414255, 8.51841], [47.358946, 8.534446], [47.354289, 8.57512], [47.416202, 8.541826], [47.412647, 8.480903], [47.417865, 8.502593], [47.364965, 8.559646], [47.366374, 8.545032], [47.381354, 8.565182], [47.413043, 8.543894], [47.413795, 8.547024], [47.383414, 8.530499], [47.414749, 8.560932], [47.369238, 8.541861], [47.359633, 8.566775], [47.368548, 8.501318], [47.409148, 8.547616], [47.366332, 8.534373], [47.388035, 8.493958], [47.362597, 8.506693], [47.376924, 8.541384], [47.368796, 8.528691], [47.394828, 8.525792], [47.334857, 8.530643], [47.367543, 8.499034], [47.405723, 8.591521], [47.386177, 8.47571], [47.397063, 8.540635], [47.374943, 8.516859], [47.364801, 8.525934], [47.373646, 8.552095], [47.384208, 8.51008], [47.369355, 8.520003], [47.379156, 8.522294], [47.425706, 8.494055], [47.361667, 8.550905], [47.389726, 8.511582], [47.428954, 8.542077], [47.42487, 8.537354], [47.378879, 8.526924], [47.422143, 8.50297], [47.373506, 8.519504], [47.36954, 8.526177], [47.40338, 8.570086], [47.369728, 8.508915], [47.373744, 8.517126], [47.379979, 8.507373], [47.379993, 8.522205], [47.369569, 8.549587], [47.387818, 8.527133], [47.405302, 8.558467], [47.364075, 8.550293], [47.366756, 8.600449], [47.356462, 8.572797], [47.370591, 8.564822], [47.367101, 8.544306], [47.389341, 8.539164], [47.36949, 8.466779], [47.36661, 8.541025], [47.382506, 8.534321], [47.372827, 8.514154], [47.382593, 8.529807], [47.388748, 8.487826], [47.403625, 8.55606], [47.395234, 8.540001], [47.373155, 8.547053], [47.41343, 8.538138], [47.407727, 8.580845], [47.408056, 8.55076], [47.39197, 8.517866], [47.403726, 8.571511], [47.380017, 8.490409], [47.392964, 8.514574], [47.338173, 8.53001], [47.380365, 8.484814], [47.398983, 8.542013], [47.384376, 8.498706], [47.331867, 8.516689], [47.372725, 8.529883], [47.363715, 8.566967], [47.388248, 8.52632], [47.394593, 8.479013], [47.377534, 8.522592], [47.365251, 8.500828], [47.37814, 8.517427], [47.375848, 8.536383], [47.349805, 8.532736], [47.370847, 8.51912], [47.370234, 8.548727], [47.379435, 8.542191], [47.364651, 8.554873], [47.370107, 8.548777], [47.405154, 8.570813], [47.364845, 8.545967], [47.361163, 8.590385], [47.377217, 8.538967], [47.360392, 8.526123], [47.367858, 8.545963], [47.378951, 8.559807], [47.351666, 8.576613], [47.391458, 8.519763], [47.391551, 8.519473], [47.409919, 8.54322], [47.376438, 8.521444], [47.369223, 8.550016], [47.377292, 8.512841], [47.368076, 8.541095], [47.370796, 8.514974], [47.358312, 8.584049], [47.381604, 8.515444], [47.389263, 8.527387], [47.389723, 8.511913], [47.356023, 8.562529], [47.420789, 8.502519], [47.429277, 8.548751], [47.368329, 8.534348], [47.366623, 8.516823], [47.39182, 8.518604], [47.394205, 8.525091], [47.404113, 8.564139], [47.392348, 8.525516], [47.374158, 8.521014], [47.380239, 8.501524], [47.398227, 8.54205], [47.391848, 8.531825], [47.410803, 8.558782], [47.381253, 8.542109], [47.356344, 8.507878], [47.380147, 8.520235], [47.336249, 8.533702], [47.352311, 8.534098], [47.418772, 8.507621], [47.333923, 8.535229], [47.398496, 8.494059], [47.366104, 8.533786], [47.360768, 8.598426], [47.376849, 8.499457], [47.407562, 8.58483], [47.413693, 8.532313], [47.357387, 8.52618], [47.403971, 8.532047], [47.373502, 8.489751], [47.367217, 8.533954], [47.391122, 8.504603], [47.369442, 8.547797], [47.389391, 8.512793], [47.415631, 8.5702], [47.404646, 8.557393], [47.398373, 8.541855], [47.378804, 8.54239], [47.380451, 8.519447], [47.37017, 8.548792], [47.366464, 8.54788], [47.398437, 8.591482], [47.370266, 8.518697], [47.373636, 8.542865], [47.36499, 8.545877], [47.386, 8.521414], [47.374253, 8.535648], [47.364393, 8.546209], [47.375121, 8.54189], [47.402998, 8.536942], [47.417409, 8.524491], [47.351746, 8.527257], [47.386322, 8.49644], [47.393457, 8.473374], [47.400835, 8.548702], [47.372424, 8.512054], [47.3708, 8.491101], [47.41228, 8.51511], [47.381398, 8.517188], [47.335422, 8.519394], [47.377957, 8.519701], [47.363774, 8.55165], [47.35734, 8.552813], [47.366252, 8.518934], [47.391561, 8.514506], [47.367196, 8.515166], [47.366803, 8.562081], [47.364493, 8.532879], [47.365046, 8.531513], [47.397622, 8.47535], [47.371115, 8.52409], [47.423034, 8.543227], [47.336714, 8.53309], [47.425941, 8.493927], [47.385348, 8.530539], [47.382172, 8.555068], [47.368414, 8.547166], [47.371422, 8.562588], [47.357, 8.53569], [47.381087, 8.557482], [47.379437, 8.50756], [47.370713, 8.515158], [47.368549, 8.529122], [47.377168, 8.540396], [47.377596, 8.527467], [47.367562, 8.523157], [47.333463, 8.534373], [47.414315, 8.533028], [47.402528, 8.490787], [47.334175, 8.515109], [47.37449, 8.540076], [47.36702, 8.531077], [47.412058, 8.537752], [47.378976, 8.567423], [47.37841, 8.514479], [47.360203, 8.548875], [47.363607, 8.533311], [47.3772, 8.513051], [47.36745, 8.545425], [47.39721, 8.529855], [47.364508, 8.563118], [47.414686, 8.516563], [47.369465, 8.553782], [47.387394, 8.540554], [47.363423, 8.547963], [47.406915, 8.481135], [47.365257, 8.53864], [47.404404, 8.580336], [47.396688, 8.486181], [47.373253, 8.525405], [47.383563, 8.590273], [47.406815, 8.569324], [47.365448, 8.546879], [47.3469, 8.533683], [47.371158, 8.555499], [47.376967, 8.481582], [47.413768, 8.546109], [47.368209, 8.496108], [47.403436, 8.536342], [47.352543, 8.576129], [47.362196, 8.559468], [47.389562, 8.537619], [47.362433, 8.612548], [47.361586, 8.534037], [47.378601, 8.499757], [47.407149, 8.586556], [47.361278, 8.516966], [47.419528, 8.506563], [47.416231, 8.514845], [47.392612, 8.545126], [47.3571, 8.55257], [47.375134, 8.539493], [47.357684, 8.521434], [47.403836, 8.55837], [47.397037, 8.508854], [47.368461, 8.519362], [47.385856, 8.519556], [47.366611, 8.559654], [47.393383, 8.499362], [47.367308, 8.510892], [47.404717, 8.59501], [47.413294, 8.526858], [47.397008, 8.540661], [47.359865, 8.596036], [47.370187, 8.548845], [47.347358, 8.532805], [47.375967, 8.559546], [47.37715, 8.527074], [47.33908, 8.535891], [47.366283, 8.545176], [47.383688, 8.531988], [47.372013, 8.556378], [47.37875, 8.53288], [47.366331, 8.534505], [47.387117, 8.545939], [47.372886, 8.511772], [47.38194, 8.584265], [47.385593, 8.475645], [47.360652, 8.524288], [47.383048, 8.488456], [47.363017, 8.556454], [47.361511, 8.561466], [47.375099, 8.519457], [47.381966, 8.535237], [47.375631, 8.527903], [47.360524, 8.563074], [47.410492, 8.543484], [47.371682, 8.488099], [47.414622, 8.544245], [47.420213, 8.503555], [47.397098, 8.530237], [47.355464, 8.526896], [47.385436, 8.536395], [47.366732, 8.540538], [47.361372, 8.602741], [47.396345, 8.513715], [47.363387, 8.559109], [47.377372, 8.526443], [47.389721, 8.491594], [47.381519, 8.514846], [47.362744, 8.574307], [47.377776, 8.482631], [47.380898, 8.528369], [47.398409, 8.541882], [47.379525, 8.537465], [47.376581, 8.54343], [47.382102, 8.544564], [47.360917, 8.505521], [47.408548, 8.569626], [47.431309, 8.516555], [47.392706, 8.539101], [47.419931, 8.508731], [47.378632, 8.519635], [47.407946, 8.542583], [47.413147, 8.52439], [47.376021, 8.538055], [47.377925, 8.531724], [47.380756, 8.517586], [47.374041, 8.517158], [47.348344, 8.534136], [47.361206, 8.502429], [47.369002, 8.525001], [47.375579, 8.541899], [47.378202, 8.529029], [47.405025, 8.557282], [47.398581, 8.504394], [47.405141, 8.480451], [47.361972, 8.560284], [47.405053, 8.482212], [47.370617, 8.546232], [47.404042, 8.556599], [47.366202, 8.545187], [47.353968, 8.600131], [47.37721, 8.54727], [47.420654, 8.502477], [47.372657, 8.534198], [47.37504, 8.545569], [47.377138, 8.49933], [47.400213, 8.54327], [47.399323, 8.495122], [47.38566, 8.542227], [47.388082, 8.540079], [47.369826, 8.525388], [47.366789, 8.543028], [47.354132, 8.599049], [47.369806, 8.490565], [47.361594, 8.561269], [47.372307, 8.526525], [47.368373, 8.546662], [47.372034, 8.502711], [47.399362, 8.542895], [47.368522, 8.499186], [47.392136, 8.49902], [47.386919, 8.518399], [47.369863, 8.510851], [47.392721, 8.524186], [47.419973, 8.549141], [47.374994, 8.560585], [47.372766, 8.525514], [47.353644, 8.553703], [47.377561, 8.506159], [47.36651, 8.540268], [47.400821, 8.534181], [47.380437, 8.519923], [47.376967, 8.539783], [47.363933, 8.521667], [47.376895, 8.540682], [47.371253, 8.525669], [47.377768, 8.53776], [47.414197, 8.518833], [47.371214, 8.514493], [47.40449, 8.556847], [47.370717, 8.516681], [47.362137, 8.504963], [47.389467, 8.48792], [47.376785, 8.538084], [47.356957, 8.522161], [47.392646, 8.524463], [47.377134, 8.540157], [47.375677, 8.535399], [47.397844, 8.474639], [47.390973, 8.514892], [47.36448, 8.554896], [47.374482, 8.495729], [47.369671, 8.525557], [47.358111, 8.519987], [47.367061, 8.522829], [47.375154, 8.540288], [47.415529, 8.563095], [47.350666, 8.529246], [47.400804, 8.488554], [47.38983, 8.476562], [47.351977, 8.525699], [47.399349, 8.542391], [47.424373, 8.541412], [47.388598, 8.520658], [47.384847, 8.509126], [47.377939, 8.541564], [47.355578, 8.508022], [47.363801, 8.551611], [47.39085, 8.50869], [47.410395, 8.544184], [47.380599, 8.525714], [47.398276, 8.473574], [47.402382, 8.535552], [47.372556, 8.521074], [47.355268, 8.55502], [47.378108, 8.520803], [47.37711, 8.541706], [47.390266, 8.522162], [47.34848, 8.534006], [47.391375, 8.536226], [47.385243, 8.536815], [47.391877, 8.518248], [47.379545, 8.524951], [47.378733, 8.523226], [47.387006, 8.534043], [47.375403, 8.52819], [47.38335, 8.515267], [47.36226, 8.559337], [47.372731, 8.538755], [47.361977, 8.503782], [47.426805, 8.546765], [47.354018, 8.523888], [47.41083, 8.550421], [47.409234, 8.547128], [47.371299, 8.488608], [47.374221, 8.519082], [47.368352, 8.547006], [47.355285, 8.574479], [47.399001, 8.594462], [47.349913, 8.566397], [47.376843, 8.507018], [47.377095, 8.527205], [47.397288, 8.49438], [47.364392, 8.530216], [47.378521, 8.502523], [47.413788, 8.536423], [47.389118, 8.469648], [47.391024, 8.522906], [47.385477, 8.485457], [47.366765, 8.542736], [47.387482, 8.48653], [47.371519, 8.557254], [47.374925, 8.518778], [47.3642, 8.598805], [47.352342, 8.525111], [47.371586, 8.550238], [47.409148, 8.483961], [47.375666, 8.533744], [47.369385, 8.554681], [47.360123, 8.581043], [47.371879, 8.522292], [47.376919, 8.528671], [47.374524, 8.549743], [47.345536, 8.529512], [47.420795, 8.502864], [47.391002, 8.52235], [47.370341, 8.513614], [47.370484, 8.546997], [47.419561, 8.50003], [47.363696, 8.564292], [47.389678, 8.511938], [47.381035, 8.512784], [47.403962, 8.556505], [47.36693, 8.544315], [47.389926, 8.512288], [47.366691, 8.545793], [47.416749, 8.536285], [47.363472, 8.534354], [47.39049, 8.490112], [47.382348, 8.514744], [47.389263, 8.527387], [47.380412, 8.559375], [47.42255, 8.551448], [47.362974, 8.518444], [47.399511, 8.502094], [47.389927, 8.548448], [47.388487, 8.489834], [47.386535, 8.543848], [47.373635, 8.536403], [47.386002, 8.535559], [47.35026, 8.568654], [47.339978, 8.529372], [47.360712, 8.584206], [47.395281, 8.499334], [47.351452, 8.560778], [47.384913, 8.508809], [47.409529, 8.537912], [47.378569, 8.528281], [47.377719, 8.54197], [47.35413, 8.559166], [47.362311, 8.567109], [47.3667, 8.53164], [47.380982, 8.515564], [47.415264, 8.508558], [47.362712, 8.547034], [47.390627, 8.524925], [47.382644, 8.514776], [47.359748, 8.50841], [47.362698, 8.567965], [47.388634, 8.528341], [47.381351, 8.498977], [47.37855, 8.504258], [47.363971, 8.547074], [47.386751, 8.547534], [47.388871, 8.541247], [47.380386, 8.519604], [47.355002, 8.510989], [47.366769, 8.510749], [47.362134, 8.549088], [47.364349, 8.566544], [47.410488, 8.572662], [47.361797, 8.566278], [47.378272, 8.534036], [47.369044, 8.492298], [47.373878, 8.535402], [47.364214, 8.548866], [47.37432, 8.544654], [47.374338, 8.54472], [47.391154, 8.538672], [47.35959, 8.521486], [47.398603, 8.472229], [47.386843, 8.535126], [47.377737, 8.51338], [47.377358, 8.527899], [47.390343, 8.489513], [47.414313, 8.537984], [47.399916, 8.5875], [47.366168, 8.540275], [47.373457, 8.537115], [47.385377, 8.494528], [47.422632, 8.55129], [47.365449, 8.552414], [47.386756, 8.52331], [47.397913, 8.52877], [47.364285, 8.531127], [47.370854, 8.535525], [47.405824, 8.494403], [47.386362, 8.531752], [47.360403, 8.548601], [47.366529, 8.544876], [47.365819, 8.562444], [47.351245, 8.533679], [47.403874, 8.556357], [47.334522, 8.51849], [47.358182, 8.519154], [47.341618, 8.527182], [47.374292, 8.526843], [47.42869, 8.536783], [47.384894, 8.495154], [47.371352, 8.547479], [47.387018, 8.488163], [47.392348, 8.541664], [47.385797, 8.548561], [47.383392, 8.515599], [47.384367, 8.507527], [47.385863, 8.539755], [47.403909, 8.556451], [47.398073, 8.474153], [47.389945, 8.512261], [47.386324, 8.518519], [47.40319, 8.486322], [47.377028, 8.526661], [47.411189, 8.562606], [47.401124, 8.544906], [47.374431, 8.551913], [47.422971, 8.536572], [47.40924, 8.571536], [47.374466, 8.556654], [47.38287, 8.541375], [47.372871, 8.475981], [47.383181, 8.531395], [47.39131, 8.537403], [47.370352, 8.514316], [47.379677, 8.554499], [47.37592, 8.541959], [47.40529, 8.534287], [47.403188, 8.54728], [47.368879, 8.540834], [47.360946, 8.588712], [47.382703, 8.540007], [47.381363, 8.557819], [47.351205, 8.532196], [47.382066, 8.514089], [47.357383, 8.572472], [47.383818, 8.526786], [47.4044, 8.556792], [47.37811, 8.530192], [47.363616, 8.575239], [47.383045, 8.540067], [47.382068, 8.53018], [47.366103, 8.545212], [47.390667, 8.522528], [47.38728, 8.488023], [47.386891, 8.546994], [47.369408, 8.525817], [47.369332, 8.554507], [47.37597, 8.545244], [47.349903, 8.576615], [47.377609, 8.54316], [47.353729, 8.575413], [47.364041, 8.5473], [47.364411, 8.546196], [47.368238, 8.568096], [47.377549, 8.515203], [47.39805, 8.535145], [47.381045, 8.518399], [47.366665, 8.544694], [47.360423, 8.578865], [47.409558, 8.537634], [47.398109, 8.504875], [47.368428, 8.498707], [47.373005, 8.536377], [47.364327, 8.537086], [47.369401, 8.541745], [47.375016, 8.536803], [47.374744, 8.541776], [47.37516, 8.518691], [47.363453, 8.546719], [47.405059, 8.585955], [47.376466, 8.560033], [47.324777, 8.52066], [47.398721, 8.480087], [47.380705, 8.504659], [47.361933, 8.547627], [47.359499, 8.548093], [47.363498, 8.546693], [47.362923, 8.508408], [47.379553, 8.524024], [47.381548, 8.513642], [47.409206, 8.546279], [47.35919, 8.534359], [47.412272, 8.563199], [47.42511, 8.53769], [47.398328, 8.54184], [47.405694, 8.534441], [47.395759, 8.545231], [47.420277, 8.503437], [47.386466, 8.49639], [47.378555, 8.542054], [47.378971, 8.559609], [47.383745, 8.542068], [47.392542, 8.52405], [47.378482, 8.51938], [47.372261, 8.560448], [47.368398, 8.521294], [47.406263, 8.483706], [47.403864, 8.556397], [47.379155, 8.518507], [47.367841, 8.545896], [47.393078, 8.513901], [47.395902, 8.481503], [47.404214, 8.561121], [47.399509, 8.539666], [47.374214, 8.544533], [47.35947, 8.597841], [47.37408, 8.525488], [47.376949, 8.557487], [47.380766, 8.497019], [47.374687, 8.545787], [47.397444, 8.488117], [47.37674, 8.53901], [47.377652, 8.527309], [47.375508, 8.56331], [47.406763, 8.58468], [47.384762, 8.509548], [47.366647, 8.520027], [47.360014, 8.548871], [47.386794, 8.544966], [47.386848, 8.544887], [47.376191, 8.533371], [47.402433, 8.493342], [47.392761, 8.489694], [47.376976, 8.544404], [47.375165, 8.515248], [47.370117, 8.554246], [47.352407, 8.558759], [47.372408, 8.554611], [47.381643, 8.517021], [47.404583, 8.557445], [47.363226, 8.549719], [47.36768, 8.564376], [47.369486, 8.539482], [47.351693, 8.575647], [47.399336, 8.477781], [47.367081, 8.539751], [47.371018, 8.555086], [47.372141, 8.535472], [47.386177, 8.539854], [47.367808, 8.560553], [47.378463, 8.54037], [47.361757, 8.526323], [47.417747, 8.502697], [47.374645, 8.541747], [47.418678, 8.506135], [47.35187, 8.525538], [47.405792, 8.593642], [47.374563, 8.538991], [47.39737, 8.476299], [47.414627, 8.519067], [47.402369, 8.499329], [47.395362, 8.545369], [47.381131, 8.511183], [47.407072, 8.584329], [47.397343, 8.476298], [47.409527, 8.535222], [47.415011, 8.530816], [47.389709, 8.511541], [47.373208, 8.504112], [47.364491, 8.53693], [47.375436, 8.524761], [47.386417, 8.525859], [47.406121, 8.58774], [47.407624, 8.584023], [47.36464, 8.537251], [47.377703, 8.528515], [47.358027, 8.523202], [47.422039, 8.508323], [47.398299, 8.473097], [47.347921, 8.534154], [47.378718, 8.540084], [47.398771, 8.478618], [47.390464, 8.533571], [47.378081, 8.534257], [47.368297, 8.546171], [47.347692, 8.562657], [47.412133, 8.550594], [47.354375, 8.575572], [47.409654, 8.549297], [47.412415, 8.5237], [47.377004, 8.544326], [47.376938, 8.53716], [47.401569, 8.586873], [47.373041, 8.534471], [47.334342, 8.518473], [47.369608, 8.541749], [47.378553, 8.509834], [47.344161, 8.533229], [47.398051, 8.532217], [47.38762, 8.525248], [47.371241, 8.507767], [47.364991, 8.532518], [47.337575, 8.501587], [47.386764, 8.51772], [47.419381, 8.547975], [47.374842, 8.527675], [47.358369, 8.583732], [47.415618, 8.568676], [47.405547, 8.572994], [47.37859, 8.54212], [47.355924, 8.592549], [47.384314, 8.548398], [47.370188, 8.548805], [47.380801, 8.55639], [47.386742, 8.547574], [47.420537, 8.501573], [47.373372, 8.525129], [47.364159, 8.531124], [47.421391, 8.511278], [47.374823, 8.547631], [47.383416, 8.548286], [47.414921, 8.551606], [47.366638, 8.53528], [47.405836, 8.497981], [47.379255, 8.54228], [47.407056, 8.576869], [47.385321, 8.530538], [47.416439, 8.511855], [47.379409, 8.521174], [47.364403, 8.566558], [47.387298, 8.52887], [47.378306, 8.530355], [47.356663, 8.551158], [47.383319, 8.574918], [47.383238, 8.532933], [47.361109, 8.506121], [47.377291, 8.498367], [47.402838, 8.498292], [47.360432, 8.526679], [47.419789, 8.504646], [47.364213, 8.531126], [47.40449, 8.55686], [47.375535, 8.541845], [47.380999, 8.542303], [47.404144, 8.573878], [47.406922, 8.482368], [47.378189, 8.541794], [47.379931, 8.49593], [47.35862, 8.52136], [47.38114, 8.517898], [47.352493, 8.531984], [47.410445, 8.573377], [47.365759, 8.567738], [47.397149, 8.53245], [47.3593, 8.55758], [47.383572, 8.539429], [47.350802, 8.601928], [47.366745, 8.545794], [47.369848, 8.552373], [47.388604, 8.533414], [47.380558, 8.515675], [47.414049, 8.542153], [47.36162, 8.561389], [47.366992, 8.491489], [47.403614, 8.559942], [47.364753, 8.537677], [47.364455, 8.53685], [47.361411, 8.561543], [47.343578, 8.527288], [47.380357, 8.513088], [47.373664, 8.537053], [47.363961, 8.535873], [47.380044, 8.53778], [47.363271, 8.533635], [47.393603, 8.539292], [47.409019, 8.539504], [47.406945, 8.586221], [47.386066, 8.535414], [47.370646, 8.547014], [47.355573, 8.556907], [47.376218, 8.541846], [47.358258, 8.572213], [47.369517, 8.532333], [47.379317, 8.544188], [47.374158, 8.520935], [47.392139, 8.531499], [47.414086, 8.550449], [47.373599, 8.529689], [47.36615, 8.540261], [47.385773, 8.535965], [47.353221, 8.530172], [47.39347, 8.529593], [47.351834, 8.559409], [47.379137, 8.546131], [47.404814, 8.483744], [47.372736, 8.535312], [47.35651, 8.506439], [47.335151, 8.525211], [47.359004, 8.50028], [47.366338, 8.545018], [47.430917, 8.550323], [47.397932, 8.528598], [47.427643, 8.49074], [47.409311, 8.575287], [47.414135, 8.518712], [47.373562, 8.528828], [47.41483, 8.519389], [47.359621, 8.525829], [47.374388, 8.541371], [47.367949, 8.540258], [47.382318, 8.528517], [47.399508, 8.505327], [47.377936, 8.527672], [47.353161, 8.512553], [47.382942, 8.485315], [47.389572, 8.538533], [47.404766, 8.572752], [47.384696, 8.516593], [47.370659, 8.486835], [47.427798, 8.537865], [47.37337, 8.534955], [47.36112, 8.531962], [47.38141, 8.533133], [47.369385, 8.528305], [47.4044, 8.556792], [47.378183, 8.509906], [47.383152, 8.57265], [47.352497, 8.524863], [47.366627, 8.51064], [47.377221, 8.499107], [47.37125, 8.547821], [47.377288, 8.541948], [47.369119, 8.514464], [47.408726, 8.575367], [47.393765, 8.512577], [47.369214, 8.527375], [47.373721, 8.548111], [47.390577, 8.509029], [47.369546, 8.55381], [47.381147, 8.538187], [47.397495, 8.531993], [47.367481, 8.534648], [47.355649, 8.556524], [47.350993, 8.563614], [47.376964, 8.521932], [47.363699, 8.575029], [47.371827, 8.517259], [47.357446, 8.521813], [47.392632, 8.515362], [47.412766, 8.531406], [47.408887, 8.55421], [47.381679, 8.537072], [47.370188, 8.548805], [47.370887, 8.526403], [47.38501, 8.495275], [47.388458, 8.491052], [47.405153, 8.480067], [47.380293, 8.53711], [47.374771, 8.515028], [47.402315, 8.499408], [47.383911, 8.482592], [47.381305, 8.537581], [47.38263, 8.529702], [47.37367, 8.544958], [47.371016, 8.549657], [47.352368, 8.559129], [47.36136, 8.553798], [47.391644, 8.51713], [47.391268, 8.522792], [47.407085, 8.54703], [47.374482, 8.544684], [47.403283, 8.502647], [47.37387, 8.533349], [47.373849, 8.536514], [47.387982, 8.49099], [47.37573, 8.525019], [47.371178, 8.524092], [47.368209, 8.496121], [47.393751, 8.502363], [47.374537, 8.539878], [47.393081, 8.474122], [47.40518, 8.481101], [47.39095, 8.522097], [47.380054, 8.535741], [47.399479, 8.585345], [47.404751, 8.57613], [47.377532, 8.49857], [47.381215, 8.517595], [47.395558, 8.54279], [47.422903, 8.550289], [47.387304, 8.499162], [47.402171, 8.535017], [47.361883, 8.560243], [47.370509, 8.54905], [47.37673, 8.497773], [47.363678, 8.533498], [47.373638, 8.519785], [47.359773, 8.525991], [47.377068, 8.539533], [47.39187, 8.523732], [47.400253, 8.547564], [47.353193, 8.511972], [47.391909, 8.517745], [47.362779, 8.567927], [47.378044, 8.526721], [47.366884, 8.535907], [47.37054, 8.535453], [47.387385, 8.518607], [47.348195, 8.525119], [47.343664, 8.535297], [47.370433, 8.548559], [47.366221, 8.56273], [47.374526, 8.540103], [47.371784, 8.601472], [47.418845, 8.543882], [47.327589, 8.529648], [47.365145, 8.545682], [47.388257, 8.526373], [47.382157, 8.515866], [47.341389, 8.53046], [47.403368, 8.497322], [47.374178, 8.544505], [47.335634, 8.540716], [47.369245, 8.562582], [47.347322, 8.532804], [47.389679, 8.477407], [47.375637, 8.493342], [47.375257, 8.516018], [47.391154, 8.489317], [47.410876, 8.562454], [47.390355, 8.525198], [47.392815, 8.528533], [47.407403, 8.546692], [47.396536, 8.528794], [47.414825, 8.516142], [47.361803, 8.526244], [47.387165, 8.528629], [47.36968, 8.525571], [47.377275, 8.512761], [47.372583, 8.521062], [47.371801, 8.541927], [47.382667, 8.529663], [47.375599, 8.512158], [47.359423, 8.535422], [47.362835, 8.552968], [47.365567, 8.539084], [47.387107, 8.498151], [47.376636, 8.56295], [47.408641, 8.580308], [47.419186, 8.547719], [47.333116, 8.5359], [47.368851, 8.540025], [47.387277, 8.497188], [47.390795, 8.507828], [47.373879, 8.533363], [47.382333, 8.531603], [47.374494, 8.52159], [47.384951, 8.495791], [47.378962, 8.559596], [47.372395, 8.515245], [47.364069, 8.548982], [47.369519, 8.523621], [47.381231, 8.503266], [47.342599, 8.530961], [47.379718, 8.527603], [47.369392, 8.505373], [47.392745, 8.523538], [47.381397, 8.489999], [47.367438, 8.546616], [47.388677, 8.483706], [47.354342, 8.553055], [47.38312, 8.514892], [47.369893, 8.541067], [47.377794, 8.528385], [47.378042, 8.510552], [47.361588, 8.560978], [47.372943, 8.546638], [47.38726, 8.488221], [47.355638, 8.557715], [47.421034, 8.53689], [47.388589, 8.520671], [47.361552, 8.547871], [47.389473, 8.511722], [47.375528, 8.548162], [47.34349, 8.519478], [47.414128, 8.483277], [47.363226, 8.549719], [47.377029, 8.528488], [47.391147, 8.489132], [47.399673, 8.515637], [47.364393, 8.546209], [47.36841, 8.496668], [47.38297, 8.50583], [47.389008, 8.538243], [47.378437, 8.509725], [47.3593, 8.592331], [47.37307, 8.5314], [47.40675, 8.547196], [47.361545, 8.560752], [47.392408, 8.519159], [47.352998, 8.501021], [47.403585, 8.557384], [47.372287, 8.515163], [47.370998, 8.518328], [47.363821, 8.547653], [47.377819, 8.541946], [47.409562, 8.576273], [47.354286, 8.557925], [47.415991, 8.515543], [47.338923, 8.528715], [47.419969, 8.548557], [47.406819, 8.580759], [47.427232, 8.491434], [47.417649, 8.554088], [47.363454, 8.535254], [47.427624, 8.490766], [47.368618, 8.534195], [47.40913, 8.54759], [47.421467, 8.501154], [47.371012, 8.530259], [47.366469, 8.540744], [47.395515, 8.545372], [47.381212, 8.491598], [47.407729, 8.578804], [47.385435, 8.528938], [47.382446, 8.548067], [47.379012, 8.518451], [47.383246, 8.506127], [47.396183, 8.520468], [47.409309, 8.546758], [47.3685, 8.546638], [47.362483, 8.570595], [47.387337, 8.487679], [47.389706, 8.478388], [47.368763, 8.524599], [47.369202, 8.554015], [47.370434, 8.514186], [47.375755, 8.533785], [47.368166, 8.551424], [47.401807, 8.499888], [47.419548, 8.555904], [47.366746, 8.540035], [47.386309, 8.488997], [47.399727, 8.543313], [47.365901, 8.508401], [47.357341, 8.550854], [47.38288, 8.513589], [47.361337, 8.549693], [47.339486, 8.528118], [47.359701, 8.52497], [47.378575, 8.575241], [47.365982, 8.532353], [47.363761, 8.531288], [47.381183, 8.538161], [47.378333, 8.540817], [47.379288, 8.537804], [47.370408, 8.518025], [47.395955, 8.538824], [47.422572, 8.499294], [47.370372, 8.518024], [47.363376, 8.534908], [47.385544, 8.50857], [47.408803, 8.546059], [47.36554, 8.53911], [47.390805, 8.474224], [47.366616, 8.541356], [47.378469, 8.575053], [47.347181, 8.534416], [47.384057, 8.545174], [47.370794, 8.508446], [47.371363, 8.512006], [47.380337, 8.524927], [47.343202, 8.535645], [47.375189, 8.519446], [47.374509, 8.53997], [47.397491, 8.53247], [47.405972, 8.558879], [47.398353, 8.536462], [47.37006, 8.543374], [47.40244, 8.493541], [47.370659, 8.51423], [47.374049, 8.524931], [47.385777, 8.496006], [47.408843, 8.540018], [47.372966, 8.500201], [47.367101, 8.544239], [47.379914, 8.522985], [47.381629, 8.513696], [47.407206, 8.578926], [47.387651, 8.498613], [47.418758, 8.506242], [47.377084, 8.499356], [47.386941, 8.528519], [47.361829, 8.560228], [47.407211, 8.550743], [47.378793, 8.526458], [47.37803, 8.528164], [47.385929, 8.521386], [47.406501, 8.578407], [47.384497, 8.534866], [47.410662, 8.556645], [47.417545, 8.553689], [47.359845, 8.535418], [47.418193, 8.506032], [47.358436, 8.576903], [47.370347, 8.55008], [47.403436, 8.572671], [47.36527, 8.530578], [47.40432, 8.540852], [47.401378, 8.548395], [47.376758, 8.53807], [47.378345, 8.548022], [47.407383, 8.489134], [47.36493, 8.566913], [47.38636, 8.518507], [47.387988, 8.520487], [47.420968, 8.51233], [47.374151, 8.528469], [47.39575, 8.545218], [47.397675, 8.47445], [47.353127, 8.576247], [47.379423, 8.508143], [47.410671, 8.5426], [47.372298, 8.518871], [47.380591, 8.55673], [47.398245, 8.536447], [47.402481, 8.535554], [47.412851, 8.550715], [47.404725, 8.576024], [47.403053, 8.486505], [47.38858, 8.520658], [47.381555, 8.548194], [47.379959, 8.521026], [47.355386, 8.52565], [47.352013, 8.573298], [47.40757, 8.538574], [47.374626, 8.538053], [47.371627, 8.517493], [47.374032, 8.541006], [47.408988, 8.579798], [47.381707, 8.540768], [47.411479, 8.526689], [47.389598, 8.543368], [47.392632, 8.515415], [47.377092, 8.541705], [47.376785, 8.509361], [47.370188, 8.548792], [47.384875, 8.532039], [47.358741, 8.53333], [47.371431, 8.562602], [47.375767, 8.541069], [47.368314, 8.544397], [47.362185, 8.532527], [47.414188, 8.518886], [47.365585, 8.546684], [47.403898, 8.576867], [47.377761, 8.507858], [47.413961, 8.557867], [47.376522, 8.548672], [47.41146, 8.544763], [47.409133, 8.545443], [47.409223, 8.546333], [47.387234, 8.519386], [47.371021, 8.514912], [47.392432, 8.524286], [47.370722, 8.535244], [47.335744, 8.540453], [47.383229, 8.5061], [47.366187, 8.521104], [47.381317, 8.517292], [47.381249, 8.503266], [47.386522, 8.52908], [47.387323, 8.488262], [47.355262, 8.530227], [47.384791, 8.531375], [47.369982, 8.510615], [47.356864, 8.53582], [47.419729, 8.548248], [47.377, 8.541942], [47.368949, 8.524854], [47.385891, 8.518643], [47.355904, 8.535602], [47.356596, 8.535695], [47.387512, 8.581127], [47.36743, 8.521897], [47.366874, 8.543546], [47.365017, 8.483096], [47.391049, 8.523092], [47.39104, 8.521132], [47.407006, 8.537436], [47.377302, 8.539511], [47.384791, 8.531402], [47.415422, 8.483409], [47.415455, 8.508323], [47.372768, 8.494238], [47.374318, 8.543038], [47.402687, 8.535664], [47.360457, 8.569029], [47.385508, 8.528847], [47.371472, 8.54523], [47.379062, 8.511181], [47.36455, 8.566243], [47.389723, 8.511939], [47.377536, 8.544217], [47.409557, 8.537766], [47.361911, 8.560098], [47.374935, 8.512926], [47.363366, 8.533134], [47.3842, 8.510993], [47.366749, 8.537824], [47.370325, 8.514303], [47.372982, 8.516885], [47.394972, 8.525822], [47.380451, 8.519447], [47.388681, 8.531005], [47.358497, 8.52104], [47.390804, 8.474277], [47.400184, 8.494411], [47.374537, 8.541798], [47.39167, 8.511448], [47.373605, 8.553604], [47.36499, 8.54589], [47.363082, 8.533684], [47.412681, 8.540296], [47.36374, 8.535485], [47.410838, 8.571848], [47.388731, 8.538993], [47.353171, 8.512408], [47.367536, 8.53833], [47.370924, 8.537698], [47.409606, 8.576433], [47.370244, 8.513361], [47.370206, 8.548806], [47.408152, 8.531351], [47.405363, 8.534235], [47.402733, 8.577359], [47.356448, 8.55674], [47.370183, 8.529474], [47.381092, 8.518188], [47.40886, 8.545782], [47.373895, 8.538302], [47.380586, 8.512695], [47.361344, 8.563793], [47.377378, 8.543751], [47.414562, 8.570006], [47.367879, 8.560581], [47.369784, 8.508664], [47.386096, 8.56503], [47.372861, 8.538334], [47.393741, 8.524763], [47.395591, 8.489087], [47.365503, 8.546775], [47.374786, 8.53256], [47.375545, 8.513123], [47.387005, 8.528374], [47.411354, 8.544601], [47.37773, 8.526609], [47.373094, 8.532685], [47.372169, 8.522986], [47.366373, 8.561886], [47.395213, 8.489106], [47.411396, 8.572748], [47.398024, 8.508238], [47.37533, 8.477578], [47.383499, 8.530051], [47.404819, 8.576543], [47.368919, 8.540424], [47.384455, 8.488126], [47.415253, 8.563765], [47.391636, 8.517104], [47.37573, 8.558945], [47.413622, 8.514938], [47.358479, 8.556901], [47.373748, 8.515722], [47.385852, 8.518007], [47.377918, 8.518084], [47.360535, 8.535723], [47.370959, 8.537765], [47.344785, 8.533798], [47.358321, 8.550001], [47.370206, 8.548806], [47.372673, 8.523937], [47.385518, 8.548542], [47.391862, 8.469674], [47.405116, 8.482226], [47.378792, 8.539847], [47.376179, 8.56731], [47.405863, 8.553457], [47.377329, 8.500076], [47.40336, 8.579506], [47.386118, 8.521323], [47.403839, 8.5673], [47.402147, 8.502041], [47.410195, 8.542523], [47.361951, 8.515285], [47.403696, 8.556168], [47.377549, 8.543781], [47.353049, 8.556576], [47.376728, 8.516484], [47.368909, 8.548037], [47.343051, 8.529739], [47.371626, 8.517626], [47.369915, 8.530249], [47.371083, 8.51024], [47.370188, 8.548805], [47.391077, 8.523027], [47.357325, 8.52704], [47.373141, 8.542855], [47.374842, 8.527675], [47.390845, 8.5455], [47.390284, 8.509593], [47.367217, 8.523548], [47.383726, 8.573788], [47.414466, 8.556778], [47.370217, 8.532533], [47.384816, 8.531654], [47.365516, 8.565827], [47.404541, 8.557087], [47.375517, 8.535211], [47.382339, 8.530106], [47.384849, 8.531959], [47.414366, 8.52101], [47.413954, 8.551109], [47.374031, 8.524918], [47.354394, 8.55798], [47.382585, 8.52978], [47.358805, 8.516996], [47.405702, 8.556144], [47.393199, 8.53066], [47.374823, 8.552239], [47.379451, 8.54427], [47.360105, 8.561794], [47.382924, 8.496148], [47.392171, 8.495232], [47.363298, 8.533702], [47.383863, 8.528707], [47.364278, 8.554375], [47.407036, 8.550275], [47.412341, 8.560682], [47.376342, 8.567234], [47.368656, 8.518718], [47.389441, 8.539021], [47.389634, 8.521408], [47.363265, 8.553096], [47.424971, 8.553142], [47.37763, 8.529639], [47.398373, 8.541868], [47.383872, 8.532509], [47.426025, 8.493558], [47.388466, 8.520391], [47.386372, 8.496812], [47.403516, 8.506692], [47.376966, 8.539822], [47.373852, 8.542843], [47.365483, 8.546973], [47.42236, 8.550648], [47.365346, 8.534922], [47.354886, 8.574775], [47.389879, 8.477133], [47.358442, 8.518233], [47.417588, 8.54546], [47.377104, 8.529086], [47.428611, 8.543184], [47.382026, 8.473205], [47.355837, 8.532238], [47.368217, 8.546063], [47.360418, 8.535734], [47.410845, 8.564653], [47.368212, 8.541005], [47.374434, 8.54026], [47.386297, 8.500135], [47.370824, 8.536822], [47.416809, 8.547021], [47.368428, 8.498707], [47.386871, 8.528279], [47.427085, 8.546625], [47.399731, 8.518142], [47.376087, 8.533951], [47.38148, 8.503549], [47.378174, 8.526287], [47.329896, 8.514877], [47.383385, 8.484118], [47.39762, 8.502268], [47.399033, 8.586805], [47.386427, 8.541024], [47.372062, 8.521912], [47.399775, 8.547686], [47.376153, 8.5183], [47.366595, 8.521721], [47.357592, 8.521591], [47.366912, 8.555503], [47.366941, 8.544051], [47.348045, 8.534315], [47.378279, 8.530407], [47.383335, 8.539795], [47.367666, 8.494468], [47.406586, 8.513206], [47.404504, 8.594674], [47.336186, 8.529903], [47.361649, 8.52922], [47.379228, 8.545974], [47.365614, 8.503431], [47.422726, 8.550934], [47.361502, 8.561466], [47.372377, 8.565138], [47.399537, 8.502108], [47.354259, 8.524012], [47.371856, 8.557751], [47.396655, 8.522889], [47.409008, 8.574141], [47.381175, 8.50741], [47.377165, 8.552817], [47.416145, 8.553315], [47.367513, 8.537893], [47.41638, 8.551425], [47.400603, 8.585369], [47.413093, 8.541404], [47.371022, 8.530219], [47.390746, 8.521868], [47.371813, 8.518715], [47.358372, 8.519039], [47.378138, 8.499178], [47.403629, 8.548151], [47.409503, 8.537779], [47.41442, 8.519049], [47.383544, 8.515669], [47.341319, 8.530246], [47.3798, 8.521672], [47.383257, 8.560997], [47.380239, 8.501564], [47.362894, 8.516403], [47.377427, 8.509917], [47.363212, 8.568757], [47.373919, 8.520585], [47.390089, 8.492701], [47.373955, 8.591204], [47.383717, 8.573735], [47.385451, 8.536726], [47.396779, 8.507643], [47.371871, 8.512559], [47.384528, 8.483969], [47.365749, 8.519837], [47.381159, 8.549087], [47.389436, 8.472316], [47.41201, 8.54655], [47.388774, 8.479999], [47.37674, 8.524774], [47.399187, 8.542375], [47.359934, 8.594542], [47.365073, 8.553147], [47.401963, 8.501481], [47.410742, 8.557707], [47.3863, 8.526823], [47.409965, 8.574665], [47.376029, 8.559613], [47.412019, 8.563339], [47.373092, 8.504004], [47.370832, 8.531235], [47.391743, 8.518179], [47.356508, 8.551459], [47.40526, 8.555273], [47.384727, 8.534341], [47.392897, 8.474648], [47.393687, 8.502548], [47.373968, 8.541071], [47.386349, 8.496375], [47.355234, 8.575974], [47.370471, 8.524739], [47.385025, 8.548333], [47.390517, 8.4901], [47.377414, 8.53913], [47.382233, 8.540276], [47.386518, 8.517093], [47.37497, 8.523586], [47.369815, 8.510227], [47.408625, 8.539284], [47.398657, 8.532799], [47.373744, 8.544774], [47.384593, 8.53806], [47.368454, 8.555098], [47.408995, 8.54393], [47.392746, 8.521445], [47.376808, 8.513679], [47.361816, 8.515322], [47.347341, 8.532725], [47.359251, 8.535485], [47.40649, 8.589457], [47.351785, 8.509653], [47.37624, 8.500134], [47.39205, 8.532372], [47.424156, 8.549082], [47.365214, 8.538375], [47.382028, 8.498686], [47.373045, 8.547249], [47.385119, 8.495211], [47.363779, 8.575177], [47.401182, 8.517774], [47.370099, 8.518376], [47.356892, 8.535781], [47.385229, 8.54394], [47.415948, 8.566285], [47.375535, 8.530497], [47.383093, 8.497409], [47.383984, 8.538762], [47.407805, 8.543203], [47.415249, 8.570537], [47.356517, 8.55142], [47.36895, 8.524748], [47.342576, 8.536201], [47.367865, 8.520582], [47.382026, 8.489164], [47.365028, 8.534346], [47.378997, 8.559676], [47.379785, 8.53755], [47.412794, 8.533195], [47.381692, 8.549826], [47.37647, 8.544725], [47.373058, 8.532724], [47.366033, 8.562634], [47.407637, 8.538217], [47.372577, 8.529311], [47.356036, 8.509103], [47.377818, 8.541972], [47.376478, 8.534462], [47.391552, 8.534613], [47.357245, 8.526932], [47.386003, 8.535413], [47.354599, 8.55813], [47.339526, 8.527775], [47.390385, 8.491819], [47.412349, 8.54115], [47.340662, 8.519858], [47.367651, 8.554432], [47.36123, 8.547679], [47.398211, 8.541917], [47.41727, 8.544883], [47.36847, 8.505844], [47.380256, 8.54291], [47.383704, 8.548199], [47.404187, 8.540637], [47.358492, 8.578572], [47.367116, 8.539884], [47.382805, 8.529255], [47.386175, 8.518132], [47.368382, 8.546662], [47.381261, 8.534693], [47.397709, 8.533203], [47.335354, 8.541716], [47.388181, 8.536319], [47.387259, 8.542379], [47.427657, 8.545112], [47.366373, 8.541417], [47.372457, 8.532526], [47.385877, 8.542059], [47.373461, 8.519517], [47.392112, 8.476938], [47.382292, 8.530291], [47.332825, 8.536225], [47.362804, 8.535545], [47.360934, 8.530701], [47.358767, 8.533384], [47.394088, 8.493151], [47.40593, 8.555764], [47.404934, 8.552775], [47.356987, 8.512273], [47.375323, 8.485377], [47.3854, 8.517362], [47.370603, 8.524994], [47.368904, 8.502622], [47.363607, 8.535244], [47.411189, 8.562606], [47.41866, 8.530188], [47.390685, 8.491454], [47.384132, 8.530673], [47.397309, 8.533632], [47.354236, 8.575979], [47.370208, 8.535353], [47.370839, 8.518073], [47.372527, 8.534593], [47.426527, 8.548535], [47.386381, 8.518229], [47.38002, 8.544123], [47.390077, 8.522159], [47.391653, 8.519065], [47.376172, 8.527756], [47.390661, 8.523217], [47.359542, 8.549245], [47.381167, 8.491531], [47.36968, 8.525584], [47.354237, 8.598442], [47.375401, 8.526561], [47.394325, 8.510376], [47.373381, 8.534743], [47.359693, 8.535401], [47.37712, 8.541613], [47.383855, 8.526734], [47.379526, 8.555237], [47.364688, 8.521749], [47.369275, 8.527495], [47.36209, 8.529255], [47.366512, 8.541884], [47.353777, 8.534075], [47.363851, 8.533223], [47.369296, 8.527191], [47.356531, 8.510013], [47.413726, 8.546691], [47.379554, 8.524924], [47.369662, 8.525597], [47.3865, 8.554046], [47.37741, 8.535753], [47.370143, 8.548818], [47.357463, 8.521893], [47.36028, 8.534182], [47.410837, 8.544988], [47.363749, 8.535432], [47.3812, 8.528772], [47.393392, 8.525498], [47.380789, 8.503429], [47.42791, 8.491063], [47.403832, 8.571699], [47.340181, 8.529866], [47.392261, 8.503049], [47.417706, 8.545409], [47.410865, 8.554264], [47.361783, 8.505287], [47.375375, 8.560328], [47.379315, 8.537871], [47.359342, 8.569906], [47.386906, 8.534173], [47.397961, 8.474654], [47.376843, 8.522446], [47.378344, 8.52731], [47.360097, 8.563515], [47.385886, 8.544907], [47.410228, 8.565196], [47.373452, 8.52909], [47.415213, 8.570563], [47.403297, 8.497188], [47.387935, 8.520433], [47.374404, 8.496403], [47.355383, 8.600757], [47.36774, 8.496191], [47.414205, 8.518899], [47.422612, 8.553371], [47.407247, 8.550704], [47.37828, 8.528381], [47.388197, 8.520279], [47.358951, 8.558341], [47.412975, 8.537811], [47.362222, 8.52571], [47.386449, 8.491317], [47.365267, 8.564604], [47.414006, 8.549387], [47.40542, 8.59219], [47.373064, 8.511974], [47.397998, 8.474522], [47.394068, 8.489322], [47.367538, 8.496703], [47.3695, 8.506355], [47.36262, 8.558431], [47.35157, 8.525903], [47.378457, 8.530557], [47.370671, 8.516812], [47.39415, 8.490198], [47.349378, 8.534117], [47.401005, 8.535656], [47.379431, 8.537927], [47.375374, 8.547351], [47.388657, 8.516236], [47.390647, 8.508275], [47.379827, 8.527433], [47.383265, 8.543369], [47.381411, 8.551012], [47.363056, 8.51732], [47.364874, 8.533522], [47.336985, 8.520524], [47.372479, 8.547158], [47.394769, 8.52546], [47.354041, 8.557219], [47.369528, 8.543482], [47.383162, 8.572517], [47.371396, 8.521037], [47.398109, 8.541266], [47.376189, 8.525955], [47.427523, 8.551565], [47.386474, 8.534204], [47.414513, 8.558462], [47.356472, 8.558818], [47.339436, 8.527694], [47.361386, 8.522727], [47.399161, 8.542295], [47.378178, 8.515309], [47.368359, 8.547178], [47.387267, 8.499347], [47.37358, 8.544903], [47.3775, 8.537662], [47.369145, 8.556185], [47.389869, 8.488246], [47.405824, 8.550051], [47.375248, 8.544594], [47.388008, 8.491017], [47.369356, 8.554879], [47.375278, 8.485284], [47.356644, 8.573502], [47.379544, 8.527851], [47.387061, 8.51864], [47.348452, 8.534125], [47.426433, 8.547022], [47.384428, 8.507753], [47.359574, 8.535598], [47.424192, 8.543423], [47.355437, 8.574615], [47.37927, 8.53787], [47.37541, 8.514988], [47.41443, 8.51897], [47.365712, 8.520896], [47.376879, 8.520526], [47.381874, 8.51635], [47.344488, 8.532879], [47.37798, 8.508471], [47.378416, 8.510003], [47.374878, 8.540004], [47.372431, 8.542827], [47.415273, 8.547717], [47.366184, 8.545147], [47.390729, 8.539776], [47.37385, 8.536487], [47.369184, 8.51996], [47.398113, 8.479691], [47.363235, 8.549706], [47.399082, 8.542081], [47.423004, 8.546328], [47.381276, 8.503214], [47.378385, 8.567158], [47.407853, 8.582623], [47.362026, 8.550979], [47.374211, 8.54105], [47.366392, 8.541325], [47.364597, 8.537078], [47.376173, 8.518089], [47.402314, 8.487643], [47.374704, 8.560804], [47.37258, 8.534713], [47.427331, 8.552873], [47.375842, 8.577884], [47.402992, 8.559214], [47.34539, 8.535425], [47.343562, 8.51948], [47.354107, 8.55317], [47.402043, 8.498594], [47.412897, 8.537464], [47.379762, 8.527696], [47.354107, 8.575315], [47.374815, 8.519995], [47.398672, 8.492539], [47.362323, 8.554731], [47.392326, 8.502825], [47.364009, 8.551483], [47.406941, 8.493206], [47.364665, 8.554383], [47.386504, 8.529106], [47.35274, 8.602447], [47.384763, 8.509415], [47.377671, 8.537612], [47.373142, 8.531454], [47.412099, 8.546644], [47.369648, 8.533726], [47.353121, 8.524492], [47.373562, 8.526921], [47.3849, 8.542675], [47.414509, 8.55605], [47.359471, 8.504287], [47.419326, 8.50795], [47.367896, 8.524012], [47.402965, 8.572051], [47.374214, 8.544533], [47.373962, 8.546394], [47.394837, 8.48886], [47.398113, 8.546526], [47.399187, 8.547952], [47.351714, 8.558864], [47.387167, 8.53508], [47.364595, 8.566205], [47.408126, 8.54631], [47.390292, 8.510732], [47.372955, 8.533185], [47.369464, 8.541746], [47.365632, 8.553927], [47.375666, 8.500956], [47.363629, 8.532001], [47.36306, 8.567734], [47.378411, 8.567185], [47.371337, 8.530199], [47.366303, 8.544924], [47.374358, 8.552878], [47.408927, 8.548208], [47.365238, 8.538733], [47.374414, 8.52241], [47.366623, 8.516823], [47.375418, 8.524721], [47.355583, 8.556894], [47.36129, 8.548037], [47.364476, 8.555332], [47.409561, 8.546803], [47.389645, 8.487102], [47.378718, 8.521981], [47.376785, 8.541845], [47.368502, 8.519813], [47.397803, 8.529907], [47.355206, 8.51413], [47.413691, 8.546677], [47.397898, 8.534148], [47.364232, 8.547953], [47.3741, 8.52717], [47.370853, 8.524284], [47.389918, 8.512248], [47.374454, 8.539108], [47.409791, 8.538725], [47.427235, 8.553401], [47.37388, 8.521869], [47.393123, 8.537745], [47.368797, 8.540925], [47.397888, 8.534187], [47.410517, 8.550282], [47.355397, 8.53121], [47.41796, 8.508824], [47.367107, 8.554924], [47.40676, 8.541485], [47.383054, 8.479861], [47.410244, 8.56362], [47.418314, 8.510474], [47.376702, 8.534493], [47.392135, 8.477283], [47.404569, 8.557988], [47.362892, 8.548918], [47.369266, 8.494646], [47.383591, 8.577427], [47.361038, 8.560172], [47.390966, 8.479287], [47.398336, 8.591719], [47.372781, 8.534413], [47.414513, 8.520668], [47.38765, 8.476944], [47.358666, 8.585565], [47.376347, 8.559289], [47.370696, 8.510192], [47.383326, 8.529319], [47.409417, 8.538267], [47.370188, 8.548805], [47.368836, 8.563011], [47.395013, 8.52055], [47.326339, 8.51335], [47.377986, 8.528137], [47.37867, 8.530879], [47.385937, 8.516684], [47.383297, 8.5152], [47.374531, 8.524359], [47.379077, 8.51824], [47.36661, 8.544798], [47.37771, 8.538182], [47.387555, 8.519657], [47.403239, 8.502579], [47.393902, 8.505519], [47.401225, 8.490669], [47.383745, 8.573669], [47.379431, 8.528471], [47.37028, 8.513428], [47.364717, 8.554609], [47.374167, 8.54093], [47.368902, 8.540344], [47.412418, 8.514795], [47.364339, 8.548114], [47.414608, 8.519106], [47.371128, 8.547342], [47.359882, 8.594395], [47.362778, 8.548585], [47.413189, 8.534171], [47.383398, 8.52838], [47.404391, 8.556818], [47.375276, 8.522586], [47.36615, 8.540234], [47.363801, 8.551611], [47.369333, 8.505901], [47.427091, 8.544133], [47.38185, 8.509251], [47.380128, 8.49698], [47.383393, 8.498978], [47.358319, 8.55204], [47.379914, 8.521025], [47.38483, 8.52723], [47.37596, 8.540662], [47.39609, 8.522665], [47.368818, 8.539707], [47.370891, 8.52304], [47.364002, 8.531518], [47.395342, 8.518967], [47.387209, 8.551398], [47.368926, 8.537803], [47.411075, 8.570581], [47.357929, 8.554203], [47.408235, 8.547147], [47.391894, 8.518314], [47.330364, 8.512901], [47.367217, 8.523508], [47.393524, 8.500624], [47.370821, 8.559597], [47.364047, 8.528726], [47.386554, 8.496631], [47.374523, 8.546088], [47.394899, 8.490928], [47.399319, 8.505323], [47.398119, 8.53553], [47.358841, 8.51889], [47.37074, 8.549413], [47.36907, 8.528286], [47.368574, 8.524595], [47.36353, 8.50793], [47.365937, 8.532419], [47.377112, 8.543374], [47.324438, 8.518484], [47.406273, 8.581489], [47.375319, 8.529499], [47.423794, 8.549313], [47.375113, 8.491597], [47.352839, 8.602449], [47.38477, 8.526938], [47.414439, 8.554922], [47.357006, 8.573219], [47.391347, 8.542954], [47.369113, 8.554821], [47.395988, 8.536334], [47.403908, 8.57227], [47.375516, 8.486864], [47.429386, 8.544883], [47.357324, 8.53575], [47.412928, 8.524717], [47.38274, 8.539928], [47.410115, 8.553692], [47.367988, 8.540881], [47.374167, 8.540917], [47.365524, 8.545504], [47.348495, 8.534298], [47.403962, 8.556491], [47.369815, 8.466666], [47.364716, 8.554702], [47.376083, 8.559641], [47.364559, 8.566257], [47.350348, 8.577974], [47.380806, 8.518937], [47.378348, 8.528806], [47.42511, 8.537703], [47.374767, 8.549682], [47.375266, 8.517911], [47.380315, 8.528132], [47.373013, 8.50383], [47.376136, 8.515334], [47.361992, 8.56472], [47.418725, 8.557212], [47.339946, 8.529954], [47.367873, 8.536907], [47.364213, 8.526373], [47.34496, 8.533391], [47.373306, 8.550115], [47.372325, 8.518858], [47.395728, 8.474823], [47.364283, 8.529353], [47.380381, 8.534503], [47.419438, 8.505567], [47.366932, 8.54311], [47.410579, 8.550336], [47.371476, 8.519172], [47.35977, 8.550852], [47.364461, 8.534321], [47.380016, 8.520722], [47.368127, 8.562876], [47.390452, 8.491343], [47.379156, 8.4892], [47.349974, 8.56657], [47.377202, 8.526307], [47.353897, 8.526228], [47.374272, 8.523228], [47.36982, 8.552492], [47.361925, 8.515179], [47.371957, 8.556535], [47.388084, 8.545456], [47.373336, 8.534663], [47.384459, 8.498509], [47.381925, 8.516695], [47.365734, 8.532017], [47.373099, 8.518781], [47.373675, 8.528314], [47.348495, 8.534298], [47.375373, 8.540902], [47.366755, 8.564224], [47.397017, 8.530261], [47.354815, 8.574708], [47.410459, 8.539415], [47.40411, 8.563556], [47.354941, 8.557198], [47.410523, 8.569072], [47.414493, 8.512213], [47.413939, 8.539474], [47.387126, 8.54594], [47.40992, 8.541232], [47.374744, 8.541789], [47.371451, 8.550275], [47.410676, 8.571818], [47.414439, 8.51897], [47.374637, 8.487588], [47.368437, 8.547498], [47.412701, 8.482971], [47.420789, 8.508324], [47.369488, 8.525884], [47.398997, 8.533058], [47.389579, 8.511936], [47.360621, 8.552088], [47.368324, 8.524378], [47.376092, 8.559641], [47.372151, 8.51528], [47.377598, 8.522474], [47.40783, 8.545283], [47.389218, 8.482564], [47.357155, 8.554292], [47.364805, 8.548309], [47.409558, 8.537647], [47.356175, 8.598974], [47.374766, 8.52043], [47.399677, 8.543816], [47.372936, 8.531318], [47.420468, 8.498285], [47.371903, 8.536884], [47.394642, 8.52555], [47.365163, 8.531423], [47.379173, 8.561057], [47.424309, 8.535897], [47.36984, 8.552227], [47.376311, 8.522528], [47.337152, 8.539027], [47.38636, 8.518533], [47.365964, 8.53234], [47.364528, 8.561146], [47.396225, 8.522721], [47.385509, 8.521059], [47.364921, 8.552985], [47.364202, 8.529444], [47.374236, 8.537435], [47.376257, 8.538748], [47.358875, 8.521988], [47.400942, 8.507767], [47.396382, 8.543191], [47.345183, 8.534508], [47.391361, 8.54518], [47.378241, 8.541067], [47.405108, 8.487088], [47.379187, 8.542782], [47.388494, 8.491053], [47.385075, 8.528944], [47.384874, 8.508133], [47.376876, 8.535106], [47.353178, 8.511706], [47.366506, 8.545405], [47.361288, 8.525505], [47.372365, 8.494045], [47.398024, 8.535038], [47.370097, 8.509823], [47.371633, 8.513998], [47.375097, 8.518703], [47.371326, 8.536078], [47.350037, 8.533879], [47.392478, 8.502947], [47.375668, 8.523984], [47.382834, 8.530011], [47.378796, 8.530881], [47.383403, 8.484092], [47.373805, 8.545861], [47.386025, 8.518831], [47.384913, 8.508796], [47.378236, 8.5216], [47.375914, 8.527446], [47.410905, 8.544473], [47.374121, 8.52492], [47.390105, 8.512437], [47.382428, 8.53771], [47.369216, 8.523257], [47.403444, 8.486075], [47.368938, 8.540319], [47.387493, 8.496199], [47.403998, 8.556572], [47.390977, 8.522137], [47.373391, 8.531711], [47.349613, 8.561242], [47.359179, 8.558028], [47.385331, 8.494646], [47.343772, 8.535286], [47.345241, 8.535038], [47.378619, 8.540055], [47.395658, 8.545441], [47.409877, 8.48489], [47.407573, 8.582829], [47.407672, 8.582831], [47.377362, 8.522708], [47.389447, 8.511616], [47.363825, 8.515945], [47.357332, 8.550854], [47.3712, 8.531361], [47.36068, 8.587449], [47.391761, 8.538194], [47.364465, 8.546171], [47.411639, 8.572686], [47.361874, 8.507116], [47.417524, 8.546479], [47.346697, 8.563219], [47.36707, 8.545589], [47.385979, 8.517943], [47.378104, 8.483207], [47.393399, 8.500581], [47.382102, 8.531373], [47.380438, 8.519897], [47.378527, 8.540265], [47.331711, 8.538028], [47.39177, 8.54287], [47.361094, 8.549701], [47.372697, 8.534729], [47.376491, 8.540634], [47.379324, 8.537871], [47.384745, 8.529652], [47.372864, 8.53513], [47.352067, 8.505397], [47.356154, 8.535726], [47.398282, 8.532487], [47.36293, 8.517318], [47.353048, 8.53414], [47.362357, 8.566065], [47.366779, 8.540353], [47.3939, 8.525972], [47.412388, 8.516027], [47.370015, 8.543333], [47.383748, 8.512216], [47.335181, 8.524947], [47.408619, 8.546532], [47.37768, 8.538539], [47.396207, 8.545413], [47.342721, 8.536138], [47.401912, 8.581263], [47.393387, 8.498978], [47.381434, 8.517242], [47.404099, 8.48524], [47.374557, 8.521631], [47.359846, 8.568924], [47.374393, 8.518966], [47.406608, 8.506913], [47.351448, 8.566707], [47.385339, 8.530526], [47.3604, 8.516631], [47.385193, 8.530734], [47.385544, 8.528808], [47.381673, 8.516664], [47.368225, 8.531036], [47.380903, 8.518237], [47.363164, 8.517296], [47.374931, 8.544746], [47.371865, 8.547423], [47.374387, 8.535757], [47.396851, 8.529702], [47.368509, 8.558687], [47.387719, 8.538482], [47.383166, 8.473466], [47.38221, 8.530342], [47.361565, 8.535281], [47.370497, 8.539993], [47.389998, 8.512355], [47.388393, 8.515661], [47.389717, 8.511634], [47.399384, 8.495256], [47.396597, 8.533803], [47.393125, 8.479276], [47.390877, 8.522215], [47.404993, 8.555957], [47.3626, 8.535223], [47.380493, 8.519765], [47.381729, 8.529935], [47.42108, 8.502127], [47.374519, 8.544632], [47.391961, 8.517879], [47.380098, 8.528233], [47.409992, 8.504808], [47.37028, 8.513362], [47.410893, 8.547653], [47.377779, 8.507871], [47.411972, 8.525917], [47.39789, 8.54154], [47.375125, 8.511844], [47.371393, 8.528055], [47.408956, 8.53945], [47.372879, 8.538308], [47.382971, 8.527868], [47.371325, 8.530464], [47.401197, 8.543834], [47.411133, 8.526204], [47.380155, 8.501854], [47.362341, 8.547278], [47.355886, 8.535588], [47.363147, 8.517203], [47.369138, 8.504626], [47.359678, 8.512076], [47.386784, 8.530833], [47.348019, 8.534235], [47.385933, 8.518061], [47.396001, 8.545369], [47.368172, 8.496173], [47.395084, 8.524446], [47.421036, 8.50206], [47.369288, 8.505887], [47.369591, 8.543536], [47.376086, 8.535898], [47.374682, 8.514986], [47.374276, 8.5437], [47.376369, 8.534566], [47.368866, 8.547877], [47.363678, 8.546684], [47.368699, 8.540843], [47.37346, 8.534851], [47.381202, 8.497584], [47.333913, 8.53245], [47.385449, 8.529323], [47.371021, 8.510146], [47.371353, 8.520785], [47.383004, 8.530173], [47.389926, 8.512288], [47.365532, 8.553978], [47.377155, 8.536992], [47.418665, 8.50257], [47.394792, 8.525791], [47.386741, 8.490926], [47.370647, 8.546895], [47.366851, 8.543175], [47.369881, 8.52907], [47.378046, 8.526549], [47.345031, 8.529647], [47.377524, 8.536073], [47.396835, 8.540909], [47.374577, 8.538542], [47.378282, 8.563846], [47.361484, 8.561465], [47.377189, 8.540026], [47.36851, 8.517947], [47.410533, 8.5325], [47.369848, 8.515339], [47.405754, 8.503968], [47.359526, 8.521564], [47.379257, 8.559734], [47.360981, 8.565122], [47.364351, 8.555237], [47.369322, 8.528225], [47.340217, 8.529853], [47.364595, 8.566218], [47.390521, 8.489742], [47.379294, 8.543777], [47.404655, 8.55742], [47.383265, 8.506074], [47.375162, 8.517539], [47.399746, 8.519414], [47.329954, 8.529802], [47.398012, 8.532521], [47.393845, 8.501928], [47.367608, 8.506635], [47.369873, 8.52903], [47.379559, 8.526289], [47.400553, 8.589501], [47.406918, 8.587174], [47.388882, 8.488941], [47.370022, 8.564135], [47.373122, 8.547688], [47.388511, 8.49108], [47.370377, 8.514516], [47.382348, 8.572129], [47.374299, 8.497063], [47.388441, 8.492946], [47.355087, 8.557015], [47.370009, 8.536514], [47.389834, 8.544936], [47.35669, 8.558691], [47.386494, 8.490391], [47.363402, 8.520782], [47.382793, 8.483855], [47.369153, 8.528089], [47.398659, 8.505694], [47.377726, 8.507751], [47.368763, 8.534105], [47.398898, 8.533003], [47.37434, 8.542615], [47.375661, 8.537081], [47.345681, 8.529369], [47.425878, 8.493926], [47.37017, 8.548805], [47.370608, 8.524504], [47.375045, 8.526117], [47.410375, 8.548159], [47.386861, 8.535047], [47.371663, 8.535635], [47.396303, 8.513317], [47.335566, 8.519344], [47.389678, 8.511951], [47.407856, 8.531199], [47.357779, 8.548375], [47.378003, 8.548028], [47.388737, 8.491045], [47.367906, 8.534419], [47.373136, 8.536843], [47.40688, 8.550603], [47.399335, 8.542842], [47.379894, 8.528931], [47.361847, 8.560215], [47.381407, 8.541993], [47.394139, 8.531156], [47.402926, 8.557596], [47.404455, 8.557681], [47.393624, 8.501513], [47.370421, 8.519442], [47.422834, 8.493349], [47.390613, 8.489439], [47.378603, 8.542664], [47.37636, 8.518291], [47.395884, 8.515852], [47.353944, 8.512463], [47.381306, 8.54219], [47.371619, 8.506728], [47.389564, 8.543156], [47.388036, 8.485044], [47.380738, 8.52528], [47.397702, 8.532965], [47.370235, 8.53918], [47.364972, 8.545837], [47.378121, 8.512672], [47.375877, 8.538025], [47.39331, 8.524648], [47.409814, 8.541018], [47.378759, 8.542349], [47.377189, 8.52677], [47.399168, 8.521522], [47.367108, 8.539778], [47.40287, 8.554123], [47.413948, 8.544271], [47.376043, 8.529011], [47.375759, 8.523854], [47.424703, 8.55299], [47.377578, 8.514952], [47.368987, 8.538016], [47.3572, 8.526997], [47.371809, 8.506626], [47.380417, 8.505673], [47.390525, 8.52238], [47.386431, 8.496297], [47.373898, 8.53331], [47.340577, 8.537364], [47.351241, 8.565856], [47.390904, 8.522255], [47.424168, 8.502786], [47.369379, 8.547822], [47.371622, 8.547498], [47.376847, 8.559697], [47.378549, 8.5752], [47.381351, 8.517492], [47.41069, 8.543488], [47.375908, 8.54519], [47.380008, 8.526377], [47.368955, 8.540412], [47.397103, 8.492892], [47.374824, 8.540003], [47.364621, 8.566351], [47.38894, 8.515804], [47.408223, 8.546564], [47.376638, 8.536545], [47.386921, 8.46995], [47.367377, 8.541743], [47.375633, 8.520965], [47.382658, 8.529649], [47.414019, 8.549003], [47.393211, 8.524646], [47.363625, 8.533351], [47.403908, 8.536815], [47.380454, 8.534385], [47.41299, 8.538116], [47.406543, 8.584185], [47.374579, 8.494923], [47.377092, 8.540752], [47.41105, 8.545297], [47.361802, 8.560241], [47.408352, 8.548117], [47.395739, 8.545456], [47.38656, 8.541226], [47.376315, 8.522078], [47.386477, 8.529132], [47.368917, 8.501219], [47.376924, 8.541424], [47.350072, 8.562125], [47.374457, 8.541664], [47.426851, 8.491758], [47.380145, 8.528075], [47.375828, 8.536581], [47.371135, 8.542906], [47.427825, 8.490478], [47.367543, 8.535642], [47.389544, 8.521459], [47.372406, 8.547289], [47.367624, 8.513613], [47.393794, 8.524817], [47.408883, 8.539621], [47.39049, 8.479158], [47.366951, 8.543958], [47.354209, 8.523654], [47.399601, 8.543271], [47.35796, 8.552919], [47.421775, 8.546952], [47.393774, 8.506735], [47.385233, 8.526497], [47.416112, 8.547404], [47.372242, 8.542836], [47.343117, 8.530415], [47.35495, 8.557238], [47.363404, 8.534803], [47.413892, 8.545396], [47.372609, 8.532608], [47.360261, 8.534288], [47.366169, 8.526836], [47.376887, 8.528247], [47.382808, 8.515548], [47.424226, 8.506339], [47.359956, 8.5521], [47.349675, 8.561336], [47.419218, 8.547137], [47.407856, 8.532127], [47.395407, 8.514001], [47.402058, 8.498965], [47.354793, 8.553012], [47.351563, 8.525691], [47.365, 8.589859], [47.374353, 8.52703], [47.381061, 8.507063], [47.370081, 8.525049], [47.362516, 8.534586], [47.372203, 8.520339], [47.393617, 8.512004], [47.368779, 8.540938], [47.377766, 8.543692], [47.37305, 8.534498], [47.350843, 8.534306], [47.401149, 8.493118], [47.376204, 8.524406], [47.358482, 8.51777], [47.368167, 8.523871], [47.364627, 8.555547], [47.4079, 8.547392], [47.366523, 8.537925], [47.366994, 8.523344], [47.378404, 8.510374], [47.389411, 8.485124], [47.370197, 8.548819], [47.380193, 8.527798], [47.382677, 8.507413], [47.366661, 8.54137], [47.366346, 8.540477], [47.392878, 8.522759], [47.387243, 8.554366], [47.377256, 8.512906], [47.369551, 8.466979], [47.393375, 8.499203], [47.378535, 8.541378], [47.371837, 8.542815], [47.367126, 8.539778], [47.368252, 8.538649], [47.408317, 8.541424], [47.374543, 8.54111], [47.374131, 8.515161], [47.380413, 8.502203], [47.38295, 8.474429], [47.376192, 8.525597], [47.358204, 8.548159], [47.369959, 8.510217], [47.384187, 8.475976], [47.3587, 8.590252], [47.426256, 8.536362], [47.35525, 8.557826], [47.370253, 8.539167], [47.364955, 8.529724], [47.342676, 8.530433], [47.378149, 8.509706], [47.377577, 8.543689], [47.37475, 8.55237], [47.393298, 8.511521], [47.376547, 8.511713], [47.384295, 8.525816], [47.379802, 8.525327], [47.363435, 8.526847], [47.369521, 8.555438], [47.39839, 8.49778], [47.377061, 8.544022], [47.388748, 8.535271], [47.364993, 8.519914], [47.370545, 8.524516], [47.379352, 8.537766], [47.375361, 8.549681], [47.369589, 8.541815], [47.383419, 8.539466], [47.417186, 8.509869], [47.370152, 8.548804], [47.404798, 8.5769], [47.413832, 8.572018], [47.41543, 8.513902], [47.359645, 8.558183], [47.369799, 8.525388], [47.371289, 8.530503], [47.403871, 8.496444], [47.368815, 8.538145], [47.425705, 8.553528], [47.367875, 8.496247], [47.357179, 8.552691], [47.361758, 8.561021], [47.392867, 8.534455], [47.363309, 8.533437], [47.37024, 8.547138], [47.363626, 8.532279], [47.412262, 8.504363], [47.390592, 8.489796], [47.359048, 8.500427], [47.407854, 8.579814], [47.391996, 8.500553], [47.378963, 8.543572], [47.361544, 8.565438], [47.418395, 8.538161], [47.377735, 8.532806], [47.410526, 8.538065], [47.391098, 8.522696], [47.379156, 8.522307], [47.41461, 8.560478], [47.322863, 8.513796], [47.382622, 8.540005], [47.380718, 8.528312], [47.365696, 8.547295], [47.428581, 8.54256], [47.364258, 8.548046], [47.367561, 8.53371], [47.373085, 8.530831], [47.409799, 8.537811], [47.373084, 8.530897], [47.368025, 8.495561], [47.366455, 8.540347], [47.379215, 8.537975], [47.410776, 8.572642], [47.389938, 8.478618], [47.366897, 8.545811], [47.377587, 8.498505], [47.376093, 8.543658], [47.371573, 8.521306], [47.398909, 8.533705], [47.425899, 8.493542], [47.387049, 8.546468], [47.370926, 8.49403], [47.386358, 8.499315], [47.368735, 8.521818], [47.368237, 8.511612], [47.357183, 8.522046], [47.38212, 8.55018], [47.368211, 8.541058], [47.414702, 8.561209], [47.378195, 8.517335], [47.409168, 8.571521], [47.408252, 8.58507], [47.359861, 8.549795], [47.389121, 8.533875], [47.382911, 8.575267], [47.365026, 8.553371], [47.371334, 8.530477], [47.391069, 8.526696], [47.396952, 8.540911], [47.378912, 8.526183], [47.402065, 8.495269], [47.376004, 8.536002], [47.399109, 8.540108], [47.361495, 8.557534], [47.397896, 8.532492], [47.393189, 8.49304], [47.375041, 8.5247], [47.361227, 8.506017], [47.397927, 8.474442], [47.370572, 8.509024], [47.366142, 8.544868], [47.360719, 8.584418], [47.367396, 8.541611], [47.427014, 8.491589], [47.378357, 8.510545], [47.368284, 8.534373], [47.407111, 8.586768], [47.376048, 8.559574], [47.405414, 8.567267], [47.379001, 8.527337], [47.378174, 8.532034], [47.357945, 8.52042], [47.367057, 8.536612], [47.420893, 8.507809], [47.377115, 8.493066], [47.379185, 8.525857], [47.376141, 8.567548], [47.405295, 8.504913], [47.403801, 8.486374], [47.367887, 8.523985], [47.378988, 8.559676], [47.37034, 8.548901], [47.366123, 8.533601], [47.374352, 8.524236], [47.369454, 8.541892], [47.373444, 8.545046], [47.424293, 8.548793], [47.371925, 8.522147], [47.370313, 8.514673], [47.370336, 8.509324], [47.399109, 8.470026], [47.386372, 8.497806], [47.373933, 8.50161], [47.404234, 8.560975], [47.384655, 8.531531], [47.395777, 8.531124], [47.363242, 8.563793], [47.36993, 8.552203], [47.352694, 8.531657], [47.384178, 8.512357], [47.358082, 8.520224], [47.369325, 8.538433], [47.390736, 8.521947], [47.374976, 8.536259], [47.383377, 8.515321], [47.40291, 8.547102], [47.379083, 8.544183], [47.374284, 8.519017], [47.374083, 8.538452], [47.389035, 8.521104], [47.382951, 8.51375], [47.376326, 8.525719], [47.377599, 8.522368], [47.394653, 8.532968], [47.386704, 8.491004], [47.427696, 8.54286], [47.375323, 8.485377], [47.415724, 8.554141], [47.373595, 8.511892], [47.376077, 8.537751], [47.364981, 8.538291], [47.388286, 8.491168], [47.420165, 8.508709], [47.37741, 8.500091], [47.405269, 8.549775], [47.366555, 8.523137], [47.412219, 8.546342], [47.384705, 8.516659], [47.369699, 8.518765], [47.40514, 8.49537], [47.39341, 8.524571], [47.397142, 8.480639], [47.366506, 8.520673], [47.376528, 8.532888], [47.391539, 8.535925], [47.39807, 8.53594], [47.392695, 8.475095], [47.375352, 8.536478], [47.392282, 8.473961], [47.348263, 8.532241], [47.421305, 8.549911], [47.374988, 8.517813], [47.345305, 8.535886], [47.358991, 8.522083], [47.371928, 8.493626], [47.349542, 8.533988], [47.387649, 8.48701], [47.380088, 8.520684], [47.370909, 8.53166], [47.403743, 8.57073], [47.378974, 8.54528], [47.367487, 8.511902], [47.390986, 8.478029], [47.372936, 8.531318], [47.38057, 8.534467], [47.364809, 8.545966], [47.369575, 8.510845], [47.398878, 8.538924], [47.386268, 8.535021], [47.37832, 8.56084], [47.36804, 8.494833], [47.400913, 8.494306], [47.362199, 8.54893], [47.400894, 8.544503], [47.386428, 8.497635], [47.401951, 8.499785], [47.356712, 8.523413], [47.395185, 8.489211], [47.405145, 8.480968], [47.39418, 8.520162], [47.410274, 8.543651], [47.376864, 8.528789], [47.374747, 8.54988], [47.357856, 8.5544], [47.365091, 8.554008], [47.369973, 8.566305], [47.367416, 8.55264], [47.373256, 8.5617], [47.380084, 8.526908], [47.418095, 8.510762], [47.360489, 8.552734], [47.392864, 8.524308], [47.376739, 8.527727], [47.386152, 8.496331], [47.403767, 8.486161], [47.371866, 8.556639], [47.412396, 8.546624], [47.360533, 8.5631], [47.368902, 8.540318], [47.374992, 8.545012], [47.365997, 8.521246], [47.356572, 8.52394], [47.369039, 8.541009], [47.406773, 8.553251], [47.423826, 8.52034], [47.405694, 8.549479], [47.388735, 8.542278], [47.369852, 8.543462], [47.366519, 8.540255], [47.351215, 8.56113], [47.383908, 8.53247], [47.406547, 8.584622], [47.380331, 8.541653], [47.370152, 8.548818], [47.357252, 8.572973], [47.363661, 8.546604], [47.361514, 8.534009], [47.357658, 8.521275], [47.371009, 8.56156], [47.398221, 8.537069], [47.392565, 8.471476], [47.414092, 8.542339], [47.372088, 8.49392], [47.366448, 8.544848], [47.409037, 8.566523], [47.360809, 8.547564], [47.382671, 8.514777], [47.375918, 8.523261], [47.364232, 8.54794], [47.373905, 8.538263], [47.394874, 8.52578], [47.376794, 8.539024], [47.36405, 8.530248], [47.370945, 8.524007], [47.388003, 8.536103], [47.353767, 8.512168], [47.409309, 8.546772], [47.414751, 8.519215], [47.415365, 8.538072], [47.369545, 8.555756], [47.409596, 8.496995], [47.372158, 8.520311], [47.411685, 8.562497], [47.414075, 8.550701], [47.327347, 8.52963], [47.383783, 8.499595], [47.384381, 8.531936], [47.374177, 8.532349], [47.376336, 8.527534], [47.364926, 8.532769], [47.352194, 8.534056], [47.403488, 8.497033], [47.388511, 8.49108], [47.370134, 8.548817], [47.366085, 8.545185], [47.366079, 8.53352], [47.359277, 8.5223], [47.373487, 8.519584], [47.361102, 8.54986], [47.424064, 8.539868], [47.37291, 8.522697], [47.366557, 8.541938], [47.36788, 8.535199], [47.369861, 8.532102], [47.379066, 8.538502], [47.386861, 8.483617], [47.332103, 8.517395], [47.384471, 8.574823], [47.426813, 8.49193], [47.371615, 8.515891], [47.360543, 8.535843], [47.399968, 8.532071], [47.359335, 8.552061], [47.375158, 8.544605], [47.405195, 8.541466], [47.354177, 8.526102], [47.354986, 8.557146], [47.360457, 8.52206], [47.408973, 8.539636], [47.377636, 8.537519], [47.382537, 8.53762], [47.378491, 8.50966], [47.340559, 8.537377], [47.361689, 8.517319], [47.379213, 8.511357], [47.402436, 8.535513], [47.376408, 8.541797], [47.364992, 8.502624], [47.408595, 8.575815], [47.379016, 8.520874], [47.379829, 8.506986], [47.369223, 8.525402], [47.398664, 8.534031], [47.369361, 8.517355], [47.376056, 8.559601], [47.426196, 8.55489], [47.374398, 8.524184], [47.391342, 8.535854], [47.389342, 8.519071], [47.390486, 8.489569], [47.376683, 8.51553], [47.364102, 8.536128], [47.408664, 8.569721], [47.372701, 8.537112], [47.384953, 8.529511], [47.410724, 8.544602], [47.391043, 8.522761], [47.376187, 8.545103], [47.351456, 8.525543], [47.385848, 8.493133], [47.378761, 8.489139], [47.38677, 8.497615], [47.364022, 8.5464], [47.420497, 8.54886], [47.378645, 8.540122], [47.381156, 8.569853], [47.368855, 8.548036], [47.400316, 8.543723], [47.395177, 8.489119], [47.381255, 8.538176], [47.363109, 8.533698], [47.366611, 8.544719], [47.383316, 8.530405], [47.365778, 8.545271], [47.395854, 8.526714], [47.379592, 8.5218], [47.378718, 8.529662], [47.376797, 8.51389], [47.378478, 8.510084], [47.377228, 8.538742], [47.416509, 8.511087], [47.392887, 8.522772], [47.381128, 8.487994], [47.360651, 8.566624], [47.356753, 8.55116], [47.364559, 8.566217], [47.36249, 8.504639], [47.390715, 8.50878], [47.419059, 8.545875], [47.373425, 8.534823], [47.363403, 8.534922], [47.385184, 8.500881], [47.38971, 8.511422], [47.407623, 8.584977], [47.370221, 8.518736], [47.376144, 8.518287], [47.379398, 8.528086], [47.369096, 8.541699], [47.391048, 8.536524], [47.38724, 8.486525], [47.414392, 8.554219], [47.383243, 8.499637], [47.389373, 8.481388], [47.352304, 8.573053], [47.361441, 8.505254], [47.368208, 8.496134], [47.406611, 8.588175], [47.380082, 8.520419], [47.411168, 8.526258], [47.370069, 8.468432], [47.380623, 8.517424], [47.382512, 8.514456], [47.391394, 8.537034], [47.374544, 8.541004], [47.381896, 8.509146], [47.370576, 8.517287], [47.364061, 8.556409], [47.377692, 8.516305], [47.376536, 8.540608], [47.396668, 8.523445], [47.39553, 8.482899], [47.368865, 8.501099], [47.378473, 8.526995], [47.344775, 8.519557], [47.377264, 8.519687], [47.383747, 8.539075], [47.380966, 8.511498], [47.377442, 8.538932], [47.391952, 8.517931], [47.340839, 8.5192], [47.374573, 8.538925], [47.368288, 8.524351], [47.381932, 8.514034], [47.376499, 8.492472], [47.398601, 8.538693], [47.383777, 8.531116], [47.377061, 8.544009], [47.374236, 8.516474], [47.387336, 8.525745], [47.38651, 8.52553], [47.364293, 8.531246], [47.378597, 8.533897], [47.387367, 8.518633], [47.367999, 8.536936], [47.379955, 8.537672], [47.41737, 8.54568], [47.370161, 8.548791], [47.415754, 8.546362], [47.364772, 8.537651], [47.378518, 8.527009], [47.396684, 8.529314], [47.421597, 8.53824], [47.405047, 8.478886], [47.414098, 8.55298], [47.393338, 8.495467], [47.399457, 8.544248], [47.358221, 8.571418], [47.366226, 8.548312], [47.37758, 8.511853], [47.382958, 8.532185], [47.363805, 8.531448], [47.362501, 8.535221], [47.371334, 8.530451], [47.365247, 8.50905], [47.371855, 8.55501], [47.402445, 8.535593], [47.382345, 8.543668], [47.369823, 8.510254], [47.347002, 8.564165], [47.381285, 8.571392], [47.365277, 8.564564], [47.365199, 8.545617], [47.414562, 8.570006], [47.38722, 8.518895], [47.359861, 8.549821], [47.372227, 8.547232], [47.386545, 8.503491], [47.420685, 8.502027], [47.37233, 8.538283], [47.375978, 8.527394], [47.393073, 8.492972], [47.37433, 8.541794], [47.382863, 8.499921], [47.385799, 8.517953], [47.416612, 8.53558], [47.416639, 8.535607], [47.3542, 8.523653], [47.373501, 8.536308], [47.36625, 8.537311], [47.384909, 8.531338], [47.354207, 8.509371], [47.370864, 8.523066], [47.353618, 8.525203], [47.333607, 8.534455], [47.395357, 8.476127], [47.412788, 8.481303], [47.366375, 8.53452], [47.404722, 8.549512], [47.356244, 8.556444], [47.373253, 8.514799], [47.381416, 8.542033], [47.372937, 8.531225], [47.399426, 8.517076], [47.377043, 8.544022], [47.377265, 8.538716], [47.369898, 8.543384], [47.367997, 8.540842], [47.343683, 8.535218], [47.362343, 8.559114], [47.367458, 8.541744], [47.370456, 8.522422], [47.374583, 8.538833], [47.416172, 8.517349], [47.387859, 8.485623], [47.362501, 8.534307], [47.404118, 8.562709], [47.394251, 8.524999], [47.338286, 8.539011], [47.383524, 8.549163], [47.419944, 8.500475], [47.409257, 8.544743], [47.373332, 8.536993], [47.379257, 8.527779], [47.373509, 8.546769], [47.412696, 8.537765], [47.378531, 8.519818], [47.372881, 8.533369], [47.387887, 8.550128], [47.368447, 8.541844], [47.377562, 8.518647], [47.400174, 8.494437], [47.36127, 8.563103], [47.361434, 8.517631], [47.373878, 8.538262], [47.337079, 8.520103], [47.365542, 8.553978], [47.386827, 8.528265], [47.383732, 8.540611], [47.360688, 8.524302], [47.41732, 8.507009], [47.330483, 8.515576], [47.397086, 8.530607], [47.362496, 8.568398], [47.370154, 8.513346], [47.374527, 8.539971], [47.424574, 8.553253], [47.37414, 8.540969], [47.387806, 8.550139], [47.379703, 8.521484], [47.387809, 8.536589], [47.377465, 8.54321], [47.371532, 8.522881], [47.383473, 8.515641], [47.370879, 8.554606], [47.412269, 8.523948], [47.392431, 8.532923], [47.382035, 8.528935], [47.384377, 8.548399], [47.369821, 8.531638], [47.377056, 8.520821], [47.409778, 8.541017], [47.363742, 8.575269], [47.39888, 8.590432], [47.374319, 8.522063], [47.334557, 8.529989], [47.391088, 8.522775], [47.422592, 8.550812], [47.372968, 8.530855], [47.39137, 8.54522], [47.38728, 8.533585], [47.370876, 8.548343], [47.423075, 8.494507], [47.392858, 8.530613], [47.395509, 8.529979], [47.352832, 8.524698], [47.360813, 8.552701], [47.362975, 8.565442], [47.369723, 8.54003], [47.39974, 8.516129], [47.414345, 8.551594], [47.370188, 8.548805], [47.41014, 8.537977], [47.372499, 8.545093], [47.38673, 8.523177], [47.36442, 8.547123], [47.37223, 8.540373], [47.381046, 8.541218], [47.368529, 8.501344], [47.376911, 8.535186], [47.34925, 8.534353], [47.378306, 8.530395], [47.368365, 8.490828], [47.387836, 8.527093], [47.377327, 8.529342], [47.38284, 8.551082], [47.375074, 8.528806], [47.387438, 8.529218], [47.367989, 8.540762], [47.366543, 8.540521], [47.388676, 8.546568], [47.426706, 8.555087], [47.405275, 8.495373], [47.3672, 8.533835], [47.417071, 8.554328], [47.397682, 8.533163], [47.367582, 8.496744], [47.3962, 8.520548], [47.3689, 8.529103], [47.366889, 8.541971], [47.40601, 8.557793], [47.369134, 8.503077], [47.369458, 8.526268], [47.37917, 8.495583], [47.377143, 8.541998], [47.369568, 8.467058], [47.404884, 8.585487], [47.430571, 8.549839], [47.392294, 8.516932], [47.387408, 8.48784], [47.383154, 8.514151], [47.37786, 8.5079], [47.382555, 8.514669], [47.377182, 8.551997], [47.398865, 8.533678], [47.379136, 8.538662], [47.374616, 8.545693], [47.384323, 8.525697], [47.413244, 8.538823], [47.354804, 8.52352], [47.385382, 8.53642], [47.404267, 8.564924], [47.35367, 8.558376], [47.398969, 8.53307], [47.361824, 8.547678], [47.388335, 8.490759], [47.394211, 8.493405], [47.380825, 8.518898], [47.364633, 8.554886], [47.419384, 8.547644], [47.364031, 8.546413], [47.368315, 8.524391], [47.375652, 8.516992], [47.379078, 8.495714], [47.376975, 8.539849], [47.3824, 8.548225], [47.35343, 8.52704], [47.377511, 8.521162], [47.379728, 8.52751], [47.36981, 8.52323], [47.411445, 8.525482], [47.376793, 8.538137], [47.38571, 8.517871], [47.386073, 8.521336], [47.38531, 8.51728], [47.38214, 8.541545], [47.386948, 8.546757], [47.377638, 8.505617], [47.366104, 8.540379], [47.408535, 8.542131], [47.373824, 8.536368], [47.393072, 8.519332], [47.399274, 8.505335], [47.377826, 8.518294], [47.394808, 8.527977], [47.367642, 8.49517], [47.419808, 8.482872], [47.385184, 8.530787], [47.383396, 8.483801], [47.412924, 8.552492], [47.371067, 8.548109], [47.367486, 8.496411], [47.382121, 8.545385], [47.398704, 8.506635], [47.362293, 8.532503], [47.415376, 8.553802], [47.396182, 8.527237], [47.368568, 8.529004], [47.364887, 8.56674], [47.378394, 8.555995], [47.380418, 8.534345], [47.40416, 8.574051], [47.386343, 8.521288], [47.418742, 8.506984], [47.366877, 8.555383], [47.371594, 8.54759], [47.391008, 8.538881], [47.397963, 8.474402], [47.416754, 8.506944], [47.402444, 8.499066], [47.419475, 8.506482], [47.343678, 8.530003], [47.420707, 8.50261], [47.416216, 8.547883], [47.391943, 8.517892], [47.385202, 8.500855], [47.365027, 8.502677], [47.371925, 8.522121], [47.422668, 8.551357], [47.364186, 8.562979], [47.368324, 8.524391], [47.410375, 8.536869], [47.412141, 8.542219], [47.369068, 8.513139], [47.398749, 8.505669], [47.418451, 8.508224], [47.377769, 8.537747], [47.374261, 8.486442], [47.378427, 8.500084], [47.366636, 8.510574], [47.343371, 8.532035], [47.361674, 8.517914], [47.36524, 8.494129], [47.375744, 8.519762], [47.377176, 8.559187], [47.366816, 8.543002], [47.426592, 8.554819], [47.371691, 8.558052], [47.372682, 8.529617], [47.354456, 8.574581], [47.384093, 8.485324], [47.39482, 8.525739], [47.37443, 8.541664], [47.3687, 8.501427], [47.363751, 8.520008], [47.392496, 8.502921], [47.371824, 8.51947], [47.336383, 8.530026], [47.429046, 8.546639], [47.400719, 8.548647], [47.363386, 8.557375], [47.416269, 8.545127], [47.355887, 8.599855], [47.407731, 8.584065], [47.395003, 8.540632], [47.373533, 8.525252], [47.362122, 8.547552], [47.391056, 8.522311], [47.366891, 8.558587], [47.367535, 8.508672], [47.368114, 8.541771], [47.373831, 8.531786], [47.369531, 8.557213], [47.394685, 8.525776], [47.40631, 8.583146], [47.380666, 8.517571], [47.359235, 8.572578], [47.386933, 8.528413], [47.376319, 8.543557], [47.366921, 8.541468], [47.415483, 8.54645], [47.378581, 8.52701], [47.377787, 8.522491], [47.400857, 8.537031], [47.405251, 8.555286], [47.403415, 8.570232], [47.362505, 8.533884], [47.373379, 8.552725], [47.379587, 8.521416], [47.371214, 8.523152], [47.368861, 8.53988], [47.386426, 8.518257], [47.36009, 8.5229], [47.374609, 8.515978], [47.379616, 8.537401], [47.355609, 8.556934], [47.399141, 8.542467], [47.391396, 8.514874], [47.379575, 8.515999], [47.36509, 8.553267], [47.369851, 8.509195], [47.41024, 8.572325], [47.392528, 8.512075], [47.348585, 8.534313], [47.367602, 8.546434], [47.409197, 8.547246], [47.392388, 8.491156], [47.375113, 8.518928], [47.384594, 8.548284], [47.378987, 8.495831], [47.360889, 8.531587], [47.395697, 8.522432], [47.373529, 8.542784], [47.402941, 8.490915], [47.402396, 8.49937], [47.378226, 8.534088], [47.383787, 8.540493], [47.376865, 8.559671], [47.376216, 8.543952], [47.361795, 8.526111], [47.375903, 8.541005], [47.414026, 8.525535], [47.377725, 8.51179], [47.376729, 8.497866], [47.358288, 8.534618], [47.395161, 8.476905], [47.42589, 8.493608], [47.343772, 8.535259], [47.367288, 8.49936], [47.374777, 8.549536], [47.366557, 8.544718], [47.369041, 8.53803], [47.384866, 8.531986], [47.412245, 8.553008], [47.374953, 8.519613], [47.37773, 8.537997], [47.356235, 8.556404], [47.386202, 8.518173], [47.405541, 8.553265], [47.404552, 8.533476], [47.374288, 8.517706], [47.372293, 8.534681], [47.392319, 8.502534], [47.369129, 8.527731], [47.385181, 8.50798], [47.361738, 8.503287], [47.385047, 8.530917], [47.387976, 8.486659], [47.373233, 8.536965], [47.388857, 8.515127], [47.391952, 8.517865], [47.363775, 8.535565], [47.351366, 8.53032], [47.390803, 8.539618], [47.370644, 8.516785], [47.359963, 8.534414], [47.381157, 8.518057], [47.376985, 8.542604], [47.414215, 8.518873], [47.377247, 8.538663], [47.383066, 8.513977], [47.41058, 8.550283], [47.41058, 8.550296], [47.364519, 8.547178], [47.367158, 8.540163], [47.372175, 8.530944], [47.372927, 8.531291], [47.386157, 8.518158], [47.37295, 8.519387], [47.419079, 8.548539], [47.359764, 8.598947], [47.38338, 8.539783], [47.392432, 8.528128], [47.388997, 8.481129], [47.385788, 8.532521], [47.391427, 8.5231], [47.380679, 8.503626], [47.416129, 8.510298], [47.419604, 8.548179], [47.385538, 8.557641], [47.408882, 8.572283], [47.393345, 8.473809], [47.376051, 8.538651], [47.367419, 8.544921], [47.421065, 8.501836], [47.3956, 8.491988], [47.353625, 8.511993], [47.367165, 8.544214], [47.380109, 8.522327], [47.35982, 8.534305], [47.365323, 8.560765], [47.379627, 8.527707], [47.375088, 8.496337], [47.373663, 8.534378], [47.38665, 8.520274], [47.386307, 8.543207], [47.381892, 8.516324], [47.389047, 8.515899], [47.386915, 8.535074], [47.408692, 8.550177], [47.42132, 8.502411], [47.359613, 8.534314], [47.412823, 8.522462], [47.379144, 8.559401], [47.373036, 8.547302], [47.36947, 8.525911], [47.369142, 8.52544], [47.386055, 8.533745], [47.423338, 8.551809], [47.381816, 8.529222], [47.378601, 8.540081], [47.37304, 8.53655], [47.391042, 8.522894], [47.365486, 8.552269], [47.353075, 8.512128], [47.392074, 8.497906], [47.374083, 8.498025], [47.363439, 8.533969], [47.386453, 8.541078], [47.391394, 8.537047], [47.385263, 8.536696], [47.388686, 8.546542], [47.387394, 8.497243], [47.38597, 8.517943], [47.3911, 8.522405], [47.409855, 8.549857], [47.35427, 8.55308], [47.386237, 8.535392], [47.36733, 8.530594], [47.368266, 8.523873], [47.374814, 8.525834], [47.336239, 8.53005], [47.369401, 8.513158], [47.382474, 8.530003], [47.369938, 8.516307], [47.367564, 8.518126], [47.394073, 8.529632], [47.368141, 8.541811], [47.382639, 8.475058], [47.377994, 8.53011], [47.370097, 8.511756], [47.405981, 8.481011], [47.40309, 8.486426], [47.36672, 8.533308], [47.390044, 8.541815], [47.356391, 8.535479], [47.389114, 8.477158], [47.400042, 8.548897], [47.429926, 8.542959], [47.412569, 8.546363], [47.36382, 8.554299], [47.402386, 8.546429], [47.371251, 8.5231], [47.354461, 8.523619], [47.380585, 8.519489], [47.387778, 8.529397], [47.39262, 8.475411], [47.380475, 8.519805], [47.3795, 8.558826], [47.366069, 8.533679], [47.363627, 8.535085], [47.369448, 8.532054], [47.353322, 8.525131], [47.35873, 8.517299], [47.411201, 8.546506], [47.370769, 8.566825], [47.404329, 8.556685], [47.376458, 8.55712], [47.369406, 8.505757], [47.425212, 8.538381], [47.383343, 8.530379], [47.355725, 8.560722], [47.378734, 8.542163], [47.376169, 8.521359], [47.399996, 8.54524], [47.397946, 8.480244], [47.402925, 8.536119], [47.382897, 8.530952], [47.371977, 8.556403], [47.387468, 8.518437], [47.374805, 8.543843], [47.391476, 8.519737], [47.414098, 8.522647], [47.36187, 8.515257], [47.360866, 8.549114], [47.376399, 8.525628], [47.390034, 8.512382], [47.367708, 8.501645], [47.366566, 8.545685], [47.375263, 8.490911], [47.361011, 8.548098], [47.359166, 8.521636], [47.3764, 8.540764], [47.3642, 8.556942], [47.408008, 8.505298], [47.394268, 8.495009], [47.377054, 8.541903], [47.377229, 8.526373], [47.372225, 8.518989], [47.362176, 8.547553], [47.404294, 8.576849], [47.362636, 8.531424], [47.374339, 8.517972], [47.386618, 8.473705], [47.376965, 8.526686], [47.422569, 8.510414], [47.382731, 8.529466], [47.41443, 8.51897], [47.398783, 8.540366], [47.342953, 8.519163], [47.380929, 8.511577], [47.380068, 8.514261], [47.36716, 8.515166], [47.369902, 8.501729], [47.375409, 8.533315], [47.373718, 8.53426], [47.373736, 8.537121], [47.394298, 8.520059], [47.367921, 8.540364], [47.39913, 8.584211], [47.371801, 8.601539], [47.391703, 8.513767], [47.378889, 8.527718], [47.414687, 8.571055], [47.392549, 8.524315], [47.41182, 8.525834], [47.41468, 8.519108], [47.42598, 8.493557], [47.359705, 8.549196], [47.367201, 8.495148], [47.379509, 8.525864], [47.387945, 8.485148], [47.419718, 8.48287], [47.39801, 8.474231], [47.3932, 8.530647], [47.356321, 8.598766], [47.34486, 8.533442], [47.368959, 8.541828], [47.378941, 8.525044], [47.366952, 8.534386], [47.362886, 8.563454], [47.406354, 8.537859], [47.372719, 8.522905], [47.376767, 8.559602], [47.35761, 8.509016], [47.3793, 8.542254], [47.382504, 8.529726], [47.372732, 8.534875], [47.370689, 8.516746], [47.406847, 8.536121], [47.364028, 8.551417], [47.38633, 8.496507], [47.374175, 8.542982], [47.385162, 8.508059], [47.386779, 8.497562], [47.412108, 8.546658], [47.330349, 8.515481], [47.38254, 8.540163], [47.410523, 8.545883], [47.361387, 8.603086], [47.377485, 8.542018], [47.375976, 8.540822], [47.363172, 8.549652], [47.391083, 8.522378], [47.419589, 8.547913], [47.378786, 8.542389], [47.415637, 8.529305], [47.351256, 8.57618], [47.388598, 8.520672], [47.405179, 8.481128], [47.391389, 8.478235], [47.345003, 8.533564], [47.36379, 8.551796], [47.392207, 8.50983], [47.42553, 8.55766], [47.403589, 8.53445], [47.405921, 8.568762], [47.373868, 8.536501], [47.408998, 8.550104], [47.369437, 8.541732], [47.360323, 8.550427], [47.361909, 8.56027], [47.387023, 8.547355], [47.388336, 8.485606], [47.398742, 8.590668], [47.379819, 8.521645], [47.394799, 8.536535], [47.392831, 8.479972], [47.372543, 8.517631], [47.407829, 8.554797], [47.378683, 8.526668], [47.377063, 8.526741], [47.398892, 8.533652], [47.393399, 8.524783], [47.401052, 8.588227], [47.406737, 8.538212], [47.403968, 8.506383], [47.38712, 8.490748], [47.369333, 8.537533], [47.370179, 8.548805], [47.368855, 8.514803], [47.373826, 8.518054], [47.375568, 8.527902], [47.38772, 8.498892], [47.364955, 8.547611], [47.410348, 8.542593], [47.361084, 8.535695], [47.370391, 8.556635], [47.372229, 8.535752], [47.358559, 8.555142], [47.383128, 8.474617], [47.378493, 8.531564], [47.364423, 8.546805], [47.373059, 8.495899], [47.377873, 8.541854], [47.393361, 8.547725], [47.407875, 8.550889], [47.396392, 8.486082], [47.40713, 8.586675], [47.364851, 8.566673], [47.404663, 8.569504], [47.381028, 8.491978], [47.393796, 8.529348], [47.383433, 8.538923], [47.389592, 8.512519], [47.374903, 8.561695], [47.369453, 8.525791], [47.358907, 8.548888], [47.404062, 8.533877], [47.374376, 8.502334], [47.425825, 8.547619], [47.393109, 8.474056], [47.428346, 8.545431], [47.392516, 8.489848], [47.381087, 8.503289], [47.391547, 8.542654], [47.356906, 8.532366], [47.358582, 8.55186], [47.403137, 8.49798], [47.37761, 8.506729], [47.424466, 8.504687], [47.37025, 8.563795], [47.376968, 8.543358], [47.377978, 8.508776], [47.383389, 8.548246], [47.381031, 8.532331], [47.367669, 8.549812], [47.404128, 8.490938], [47.335115, 8.541327], [47.372954, 8.531344], [47.414188, 8.518872], [47.389664, 8.511501], [47.369236, 8.504761], [47.369726, 8.525492], [47.377476, 8.544878], [47.389254, 8.5274], [47.391629, 8.538814], [47.401996, 8.497918], [47.387284, 8.51883], [47.375101, 8.553251], [47.358994, 8.53221], [47.378581, 8.542173], [47.41977, 8.556108], [47.369708, 8.555627], [47.364453, 8.550248], [47.407987, 8.565387], [47.378538, 8.541907], [47.37302, 8.528155], [47.395569, 8.5454], [47.369619, 8.539618], [47.357597, 8.525827], [47.408719, 8.549171], [47.389249, 8.54409], [47.378022, 8.528085], [47.419518, 8.556155], [47.365139, 8.563065], [47.410549, 8.547844], [47.41193, 8.545541], [47.365414, 8.539187], [47.360072, 8.568862], [47.351946, 8.576513], [47.372368, 8.519044], [47.374031, 8.541112], [47.356982, 8.53479], [47.395323, 8.483862], [47.382739, 8.580759], [47.384907, 8.498677], [47.387023, 8.489554], [47.394816, 8.536654], [47.405811, 8.590807], [47.363251, 8.567526], [47.364615, 8.508349], [47.413184, 8.544136], [47.410329, 8.569598], [47.378822, 8.542364], [47.367511, 8.537138], [47.372954, 8.531344], [47.376871, 8.543184], [47.406754, 8.586508], [47.405552, 8.480764], [47.351957, 8.559756], [47.37557, 8.526737], [47.371725, 8.536708], [47.369859, 8.54186], [47.396937, 8.512945], [47.387346, 8.518885], [47.403689, 8.485855], [47.379031, 8.530741], [47.37902, 8.545188], [47.391294, 8.536237], [47.366461, 8.545391], [47.407154, 8.586], [47.378842, 8.499934], [47.370206, 8.548806], [47.39699, 8.530234], [47.386447, 8.49745], [47.383064, 8.500561], [47.417164, 8.541846], [47.39983, 8.544707], [47.372669, 8.534861], [47.379242, 8.537883], [47.377128, 8.520796], [47.371192, 8.535956], [47.38586, 8.498723], [47.390441, 8.522722], [47.339869, 8.530442], [47.409734, 8.544713], [47.369562, 8.541801], [47.36799, 8.540643], [47.38279, 8.529944], [47.363513, 8.50785], [47.373026, 8.533266], [47.380511, 8.519766], [47.361076, 8.551541], [47.393877, 8.538847], [47.34322, 8.519433], [47.378865, 8.524566], [47.349388, 8.533998], [47.376597, 8.541801], [47.378836, 8.542761], [47.367973, 8.540563], [47.370783, 8.543045], [47.369284, 8.541782], [47.381451, 8.531664], [47.370152, 8.548804], [47.421635, 8.546472], [47.409558, 8.537634], [47.376792, 8.559788], [47.41222, 8.53965], [47.416267, 8.547261], [47.35412, 8.574944], [47.369122, 8.540825], [47.356494, 8.532225], [47.357247, 8.521902], [47.361507, 8.556303], [47.410613, 8.486004], [47.404191, 8.56165], [47.402307, 8.5528], [47.341353, 8.530525], [47.369044, 8.541473], [47.408897, 8.54569], [47.380161, 8.520593], [47.381379, 8.561726], [47.372728, 8.550301], [47.37581, 8.535561], [47.407802, 8.54727], [47.35451, 8.558009], [47.414793, 8.51956], [47.421056, 8.501862], [47.414692, 8.51981], [47.37326, 8.535072], [47.388162, 8.524994], [47.384585, 8.531265], [47.377148, 8.544315], [47.343252, 8.534137], [47.383437, 8.539493], [47.353584, 8.531662], [47.413269, 8.531416], [47.334748, 8.529808], [47.40544, 8.539417], [47.365361, 8.530474], [47.361336, 8.547972], [47.334193, 8.531397], [47.36205, 8.54759], [47.374414, 8.541504], [47.385859, 8.532602], [47.405001, 8.491922], [47.377341, 8.546743], [47.402764, 8.535149], [47.366834, 8.545823], [47.378181, 8.510118], [47.360743, 8.576489], [47.394707, 8.532903], [47.379938, 8.514682], [47.366288, 8.54082], [47.36158, 8.547832], [47.396607, 8.528889], [47.395877, 8.510765], [47.377073, 8.528516], [47.367961, 8.538948], [47.362826, 8.552981], [47.366181, 8.529418], [47.366506, 8.551853], [47.410369, 8.537531], [47.365803, 8.537023], [47.37476, 8.527766], [47.366267, 8.532703], [47.371116, 8.545792], [47.376959, 8.543371], [47.385383, 8.530659], [47.366473, 8.531781], [47.384268, 8.507538], [47.398967, 8.505395], [47.386437, 8.534243], [47.383047, 8.51399], [47.376266, 8.489514], [47.37918, 8.527406], [47.3682, 8.546023], [47.367415, 8.544312], [47.409773, 8.575893], [47.37388, 8.544632], [47.36861, 8.524635], [47.373335, 8.534769], [47.378416, 8.509963], [47.36931, 8.525762], [47.36034, 8.547634], [47.386998, 8.474401], [47.366705, 8.542404], [47.387733, 8.471727], [47.370119, 8.519065], [47.376451, 8.544778], [47.386287, 8.522532], [47.359434, 8.551123], [47.389809, 8.539108], [47.381312, 8.480515], [47.367017, 8.516036], [47.403063, 8.486359], [47.383933, 8.529901], [47.373137, 8.532964], [47.36993, 8.541901], [47.377431, 8.499826], [47.367936, 8.536935], [47.379997, 8.530403], [47.389006, 8.495037], [47.407558, 8.563245], [47.36855, 8.499054], [47.377052, 8.544048], [47.367527, 8.559819], [47.367645, 8.495832], [47.397395, 8.532124], [47.398285, 8.536898], [47.392379, 8.49117], [47.36875, 8.493007], [47.368579, 8.544018], [47.414375, 8.55129], [47.384844, 8.500649], [47.383216, 8.559632], [47.375098, 8.522424], [47.407164, 8.585894], [47.373525, 8.531859], [47.358909, 8.516362], [47.390969, 8.522985], [47.390034, 8.512343], [47.398187, 8.473546], [47.378152, 8.527677], [47.36193, 8.554445], [47.375713, 8.496799], [47.381875, 8.516297], [47.371148, 8.575837], [47.382939, 8.575109], [47.353634, 8.553768], [47.387209, 8.51912], [47.374787, 8.547577], [47.384445, 8.531871], [47.35974, 8.579698], [47.374404, 8.512928], [47.392412, 8.476573], [47.370494, 8.519364], [47.361096, 8.547636], [47.378858, 8.526234], [47.368533, 8.53659], [47.379164, 8.5224], [47.369862, 8.502178], [47.37754, 8.543767], [47.359635, 8.522414], [47.413507, 8.539504], [47.408923, 8.495763], [47.371901, 8.557739], [47.375734, 8.544538], [47.363472, 8.530501], [47.380127, 8.505932], [47.37696, 8.543331], [47.368409, 8.493847], [47.354758, 8.556638], [47.353564, 8.571994], [47.351767, 8.566304], [47.412042, 8.523202], [47.37217, 8.536188], [47.378885, 8.532883], [47.396254, 8.53577], [47.428059, 8.536929], [47.402085, 8.498926], [47.369108, 8.564671], [47.37083, 8.55957], [47.409818, 8.537798], [47.36952, 8.553743], [47.372813, 8.519517], [47.405294, 8.569371], [47.374366, 8.522726], [47.406336, 8.553865], [47.379987, 8.515199], [47.409364, 8.54289], [47.393654, 8.472385], [47.366001, 8.549208], [47.392022, 8.469836], [47.361035, 8.55395], [47.368948, 8.502809], [47.371133, 8.554333], [47.368619, 8.564939], [47.392576, 8.524249], [47.386291, 8.528797], [47.41966, 8.504948], [47.361498, 8.532804], [47.362059, 8.54755], [47.384842, 8.531747], [47.387951, 8.52446], [47.36923, 8.505356], [47.357435, 8.51436], [47.369284, 8.525668], [47.377865, 8.519858], [47.38648, 8.485967], [47.367111, 8.544213], [47.366658, 8.544495], [47.378464, 8.526995], [47.356102, 8.555303], [47.421274, 8.549393], [47.426347, 8.543852], [47.366687, 8.542404], [47.354442, 8.511216], [47.376522, 8.543918], [47.366917, 8.492759], [47.382227, 8.531415], [47.381412, 8.482424], [47.377236, 8.538874], [47.384492, 8.543024], [47.391931, 8.518209], [47.361047, 8.5712], [47.367327, 8.541344], [47.397403, 8.532243], [47.373532, 8.518684], [47.405676, 8.591692], [47.377691, 8.511538], [47.358396, 8.583773], [47.372581, 8.494102], [47.378827, 8.510276], [47.426362, 8.54604], [47.383687, 8.540584], [47.352616, 8.526599], [47.397986, 8.586226], [47.362306, 8.547145], [47.37606, 8.535818], [47.373047, 8.532922], [47.375409, 8.528534], [47.362716, 8.548464], [47.426733, 8.506601], [47.391055, 8.522496], [47.371335, 8.536065], [47.385676, 8.493249], [47.327221, 8.52964], [47.420757, 8.547089], [47.429144, 8.541975], [47.391538, 8.542667], [47.4034, 8.483902], [47.377199, 8.526691], [47.38094, 8.535335], [47.37301, 8.529214], [47.368457, 8.556687], [47.366555, 8.542083], [47.391071, 8.522695], [47.367599, 8.565394], [47.358664, 8.517602], [47.390826, 8.521935], [47.388056, 8.519932], [47.404735, 8.569519], [47.361238, 8.549704], [47.415056, 8.515458], [47.420326, 8.549771], [47.37277, 8.535525], [47.377, 8.541889], [47.36942, 8.540739], [47.398105, 8.594178], [47.361243, 8.554762], [47.38073, 8.491112], [47.387588, 8.475856], [47.409238, 8.544822], [47.403899, 8.56122], [47.374633, 8.549533], [47.344042, 8.531467], [47.377594, 8.543768], [47.378039, 8.52149], [47.378306, 8.530355], [47.344287, 8.535032], [47.371394, 8.547745], [47.349326, 8.570342], [47.382433, 8.552292], [47.355885, 8.53572], [47.397329, 8.594346], [47.376567, 8.518229], [47.398033, 8.50331], [47.387003, 8.525725], [47.397699, 8.533256], [47.427965, 8.545768], [47.390714, 8.508807], [47.369697, 8.508411], [47.335063, 8.519321], [47.375836, 8.545175], [47.396182, 8.544313], [47.384575, 8.480804], [47.368446, 8.537131], [47.370368, 8.514529], [47.37181, 8.601566], [47.377866, 8.509144], [47.42067, 8.502716], [47.369648, 8.529953], [47.409273, 8.52879], [47.383415, 8.513123], [47.371375, 8.54879], [47.415655, 8.512939], [47.404154, 8.563637], [47.365099, 8.554207], [47.413658, 8.528376], [47.40255, 8.54153], [47.373183, 8.503926], [47.360841, 8.553562], [47.368402, 8.546477], [47.371588, 8.535977], [47.378665, 8.53999], [47.368828, 8.539615], [47.365741, 8.520698], [47.362751, 8.548597], [47.372058, 8.538529], [47.364426, 8.557688], [47.368434, 8.512623], [47.404596, 8.571755], [47.397035, 8.514895], [47.397769, 8.533509], [47.380121, 8.501734], [47.373673, 8.530459], [47.354299, 8.575981], [47.370774, 8.525037], [47.38383, 8.526442], [47.387023, 8.518852], [47.38558, 8.520239], [47.382549, 8.52978], [47.378067, 8.511731], [47.36903, 8.541062], [47.382684, 8.530723], [47.381629, 8.513657], [47.375587, 8.526883], [47.416314, 8.545115], [47.371733, 8.515721], [47.430693, 8.541769], [47.421275, 8.502476], [47.409194, 8.539945], [47.392421, 8.492455], [47.37302, 8.532921], [47.369233, 8.505078], [47.369177, 8.525521], [47.420086, 8.503605], [47.391371, 8.537511], [47.366865, 8.53122], [47.425953, 8.493609], [47.373451, 8.53489], [47.378795, 8.530961], [47.380046, 8.536655], [47.353188, 8.525036], [47.36561, 8.535589], [47.390845, 8.523777], [47.374524, 8.539322], [47.385042, 8.541883], [47.376338, 8.559329], [47.381187, 8.53199], [47.408841, 8.570056], [47.399973, 8.544789], [47.3743, 8.524989], [47.392572, 8.538926], [47.408827, 8.546444], [47.375247, 8.51799], [47.371312, 8.52522], [47.376301, 8.54353], [47.419158, 8.547732], [47.387927, 8.492009], [47.417787, 8.509085], [47.402929, 8.57576], [47.39262, 8.475398], [47.401152, 8.544774], [47.364632, 8.504589], [47.366444, 8.532998], [47.36468, 8.547181], [47.36847, 8.538455], [47.393873, 8.504737], [47.384221, 8.543111], [47.372601, 8.547584], [47.394372, 8.522683], [47.415496, 8.544184], [47.364519, 8.532985], [47.36455, 8.566257], [47.404796, 8.594283], [47.369637, 8.523451], [47.388253, 8.49775], [47.406878, 8.552631], [47.380296, 8.496387], [47.412132, 8.550687], [47.411424, 8.546657], [47.409305, 8.572292], [47.373784, 8.531997], [47.385771, 8.526733], [47.408341, 8.544552], [47.415899, 8.54622], [47.371844, 8.530739], [47.40688, 8.481081], [47.366676, 8.541636], [47.377368, 8.527846], [47.361717, 8.54851], [47.424259, 8.540138], [47.378391, 8.557253], [47.356966, 8.535517], [47.372015, 8.516349], [47.371444, 8.547229], [47.380447, 8.54833], [47.40875, 8.503829], [47.396804, 8.541332], [47.400081, 8.501642], [47.391334, 8.535814], [47.370996, 8.564698], [47.371332, 8.536435], [47.422497, 8.539067], [47.414573, 8.559643], [47.375732, 8.527667], [47.424462, 8.552747], [47.409359, 8.572254], [47.351633, 8.560689], [47.381416, 8.534445], [47.383628, 8.539218], [47.371581, 8.518578], [47.424756, 8.553044], [47.371046, 8.536178], [47.327197, 8.517825], [47.391418, 8.513417], [47.410979, 8.545243], [47.382721, 8.500673], [47.366362, 8.537842], [47.344465, 8.530549], [47.424673, 8.495811], [47.3744, 8.542974], [47.371339, 8.486199], [47.3737, 8.534273], [47.377469, 8.538932], [47.370453, 8.524739], [47.418503, 8.54198], [47.388605, 8.480817], [47.37714, 8.498112], [47.395534, 8.532033], [47.387272, 8.500737], [47.386769, 8.518065], [47.375305, 8.485297], [47.370543, 8.469765], [47.369892, 8.523125], [47.412287, 8.483997], [47.372464, 8.559949], [47.370543, 8.469765], [47.387229, 8.518922], [47.412532, 8.51697], [47.375982, 8.52501], [47.370717, 8.522427], [47.384974, 8.531035], [47.372427, 8.521363], [47.390644, 8.491943], [47.393508, 8.500491], [47.391374, 8.537193], [47.38321, 8.545395], [47.420305, 8.503318], [47.425587, 8.553698], [47.396413, 8.540834], [47.401909, 8.585225], [47.371825, 8.473259], [47.373754, 8.536168], [47.364913, 8.554759], [47.36536, 8.531599], [47.385293, 8.517187], [47.375347, 8.484623], [47.367648, 8.538756], [47.3482, 8.533193], [47.39052, 8.489755], [47.370516, 8.508282], [47.378745, 8.53149], [47.359543, 8.549206], [47.377242, 8.540119], [47.368921, 8.524999], [47.379847, 8.511859], [47.394225, 8.489881], [47.387852, 8.529252], [47.424861, 8.537406], [47.409292, 8.544797], [47.356478, 8.521489], [47.373789, 8.542895], [47.348404, 8.532509], [47.346338, 8.533142], [47.382481, 8.548187], [47.377019, 8.539956], [47.393379, 8.499773], [47.35614, 8.509489], [47.354651, 8.556477], [47.366174, 8.533946], [47.41922, 8.547839], [47.402182, 8.496199], [47.393479, 8.474951], [47.341715, 8.536858], [47.418535, 8.54707], [47.397416, 8.531873], [47.413227, 8.53873], [47.38744, 8.535668], [47.358733, 8.521747], [47.380274, 8.512398], [47.352124, 8.570282], [47.375123, 8.524569], [47.410003, 8.543778], [47.365964, 8.53234], [47.37616, 8.583916], [47.384536, 8.531701], [47.369573, 8.543536], [47.372823, 8.600939], [47.353626, 8.554615], [47.37846, 8.51015], [47.387479, 8.518172], [47.358335, 8.597909], [47.380854, 8.542419], [47.393618, 8.512826], [47.382504, 8.529713], [47.402986, 8.555093], [47.352983, 8.576204], [47.401072, 8.543725], [47.369248, 8.527508], [47.365011, 8.531354], [47.412955, 8.538035], [47.369601, 8.513838], [47.373542, 8.484336], [47.37997, 8.54832], [47.387145, 8.519251], [47.367931, 8.540205], [47.400692, 8.548633], [47.370766, 8.5485], [47.368067, 8.541108], [47.370668, 8.53531], [47.371648, 8.472858], [47.374524, 8.557119], [47.392307, 8.492056], [47.374576, 8.557332], [47.400222, 8.548822], [47.381938, 8.516219], [47.385331, 8.548379], [47.377772, 8.529801], [47.371154, 8.531413], [47.420601, 8.508241], [47.367731, 8.487373], [47.375712, 8.535506], [47.420478, 8.503056], [47.375726, 8.519682], [47.371967, 8.524386], [47.38041, 8.519962], [47.393725, 8.50231], [47.376055, 8.515279], [47.409418, 8.575342], [47.372354, 8.535834], [47.379712, 8.50701], [47.378431, 8.540952], [47.363618, 8.554772], [47.386793, 8.534714], [47.371573, 8.536533], [47.41088, 8.565727], [47.409584, 8.549984], [47.388575, 8.520287], [47.408042, 8.58264], [47.372975, 8.528207], [47.395775, 8.530329], [47.41394, 8.541316], [47.35155, 8.528987], [47.387506, 8.534398], [47.37302, 8.532882], [47.36754, 8.537893], [47.363932, 8.549271], [47.378967, 8.570137], [47.352201, 8.577948], [47.378574, 8.509503], [47.37754, 8.543767], [47.376927, 8.54488], [47.366203, 8.540315], [47.366345, 8.540503], [47.373284, 8.535482], [47.38042, 8.51987], [47.35212, 8.558687], [47.372671, 8.53837], [47.355392, 8.554295], [47.385718, 8.543659], [47.380394, 8.513989], [47.40604, 8.591276], [47.367497, 8.554535], [47.403251, 8.550051], [47.374163, 8.525185], [47.416323, 8.545129], [47.381456, 8.535929], [47.379153, 8.486538], [47.397703, 8.553552], [47.397656, 8.541601], [47.344442, 8.532957], [47.340596, 8.537325], [47.394807, 8.523315], [47.367117, 8.539791], [47.408732, 8.494037], [47.370325, 8.514316], [47.415501, 8.516951], [47.370918, 8.535421], [47.376949, 8.52074], [47.396622, 8.5302], [47.344994, 8.533551], [47.388996, 8.495156], [47.405013, 8.576931], [47.391494, 8.519724], [47.372771, 8.533552], [47.386616, 8.530538], [47.387552, 8.527683], [47.362997, 8.548298], [47.364033, 8.566696], [47.369304, 8.552785], [47.375872, 8.533775], [47.379434, 8.530021], [47.413251, 8.532423], [47.360294, 8.579153], [47.372736, 8.534425], [47.36529, 8.598723], [47.382715, 8.575024], [47.372733, 8.601016], [47.426869, 8.491772], [47.414074, 8.51948], [47.371196, 8.529892], [47.370251, 8.478207], [47.378298, 8.525574], [47.37017, 8.548805], [47.37782, 8.509276], [47.371521, 8.53636], [47.374418, 8.49586], [47.413816, 8.559773], [47.401296, 8.53435], [47.387748, 8.490906], [47.38004, 8.541939], [47.41387, 8.545846], [47.406943, 8.550578], [47.402375, 8.544786], [47.365733, 8.53591], [47.358203, 8.553824], [47.379228, 8.491201], [47.372361, 8.513099], [47.405204, 8.570284], [47.378672, 8.523079], [47.398394, 8.547154], [47.372261, 8.52659], [47.400662, 8.591239], [47.373904, 8.541123], [47.427658, 8.545908], [47.412952, 8.537373], [47.360633, 8.529146], [47.414485, 8.520787], [47.410438, 8.569547], [47.416342, 8.506724], [47.379088, 8.508361], [47.376568, 8.548554], [47.365967, 8.547115], [47.369211, 8.527653], [47.383157, 8.506046], [47.363463, 8.55032], [47.368761, 8.540924], [47.377073, 8.541851], [47.412427, 8.514808], [47.378462, 8.541456], [47.413736, 8.546665], [47.370708, 8.516694], [47.40421, 8.561545], [47.360109, 8.595922], [47.374167, 8.521014], [47.403713, 8.550643], [47.38537, 8.529109], [47.37001, 8.552363], [47.383442, 8.54932], [47.415984, 8.512402], [47.388234, 8.520134], [47.389213, 8.533665], [47.396927, 8.512998], [47.365425, 8.545568], [47.386622, 8.541293], [47.370179, 8.548805], [47.358677, 8.517152], [47.400977, 8.502084], [47.359867, 8.576867], [47.409883, 8.545074], [47.359187, 8.585577], [47.371686, 8.556688], [47.392315, 8.516601], [47.420702, 8.549023], [47.375371, 8.524905], [47.381842, 8.583323], [47.416648, 8.513529], [47.386055, 8.545997], [47.409166, 8.570832], [47.381184, 8.49169], [47.377285, 8.523223], [47.375187, 8.518691], [47.371204, 8.520385], [47.3684, 8.541036], [47.395502, 8.484952], [47.382905, 8.513841], [47.363259, 8.529226], [47.375022, 8.541835], [47.325446, 8.518465], [47.367029, 8.544331], [47.384432, 8.529394], [47.368148, 8.560666], [47.391208, 8.520513], [47.3589, 8.516402], [47.367009, 8.555677], [47.373907, 8.544619], [47.391128, 8.489237], [47.383915, 8.529874], [47.388455, 8.525318], [47.382284, 8.533059], [47.372209, 8.547245], [47.374407, 8.540299], [47.376087, 8.537725], [47.362571, 8.534455], [47.370881, 8.537512], [47.41735, 8.509673], [47.367588, 8.555398], [47.369665, 8.564736], [47.369073, 8.541195], [47.329873, 8.529761], [47.366991, 8.49946], [47.39776, 8.533496], [47.364887, 8.537772], [47.360325, 8.566882], [47.366501, 8.540228], [47.363679, 8.562333], [47.374085, 8.53636], [47.372816, 8.525952], [47.402736, 8.535188], [47.360096, 8.563607], [47.337866, 8.53011], [47.35752, 8.521616], [47.378439, 8.510441], [47.35289, 8.579273], [47.359861, 8.549768], [47.421941, 8.500461], [47.36595, 8.55731], [47.338523, 8.53011], [47.404611, 8.542368], [47.39442, 8.519518], [47.397691, 8.533229], [47.413025, 8.55044], [47.373541, 8.534918], [47.360425, 8.564925], [47.391928, 8.504009], [47.380868, 8.538155], [47.373553, 8.536521], [47.372283, 8.535753], [47.378433, 8.54074], [47.339919, 8.529953], [47.387956, 8.485837], [47.367108, 8.539778], [47.359094, 8.592181], [47.394718, 8.521286], [47.36295, 8.559603], [47.386723, 8.490965], [47.369727, 8.54338], [47.36801, 8.546099], [47.412748, 8.522739], [47.399649, 8.542941], [47.391591, 8.538985], [47.370342, 8.537368], [47.378404, 8.500574], [47.403615, 8.534504], [47.40479, 8.588546], [47.378922, 8.556337], [47.382139, 8.550061], [47.379469, 8.544324], [47.365486, 8.552269], [47.353578, 8.576071], [47.422042, 8.506136], [47.3879, 8.492048], [47.417314, 8.546819], [47.364904, 8.56678], [47.372521, 8.534288], [47.406516, 8.480531], [47.410851, 8.526517], [47.364199, 8.507559], [47.364732, 8.531427], [47.388026, 8.520316], [47.370065, 8.491841], [47.385318, 8.517466], [47.371766, 8.521879], [47.393728, 8.545057], [47.372216, 8.532375], [47.36756, 8.545242], [47.348662, 8.56191], [47.382438, 8.528201], [47.332976, 8.518339], [47.394836, 8.523991], [47.359233, 8.597188], [47.338258, 8.539129], [47.383829, 8.529462], [47.371121, 8.538735], [47.41421, 8.518422], [47.405549, 8.550509], [47.337183, 8.530082], [47.390977, 8.478068], [47.408648, 8.546294], [47.402881, 8.486594], [47.370906, 8.520498], [47.36214, 8.547539], [47.40395, 8.574325], [47.368573, 8.541834], [47.405165, 8.478716], [47.411066, 8.544609], [47.344589, 8.530763], [47.375987, 8.535882], [47.372131, 8.530891], [47.359148, 8.563918], [47.380304, 8.535044], [47.351003, 8.579961], [47.393756, 8.505741], [47.390545, 8.479106], [47.370361, 8.514303], [47.404577, 8.572775], [47.360125, 8.524833], [47.382701, 8.537425], [47.370463, 8.518834], [47.386066, 8.535481], [47.40945, 8.549928], [47.407503, 8.585305], [47.391011, 8.488215], [47.407738, 8.548342], [47.376543, 8.543601], [47.391055, 8.532934], [47.381933, 8.529211], [47.373329, 8.531643], [47.368044, 8.540658], [47.372753, 8.525964], [47.358028, 8.52025], [47.386639, 8.546075], [47.38681, 8.534741], [47.414097, 8.553961], [47.399998, 8.536496], [47.379614, 8.501035], [47.382003, 8.541807], [47.383208, 8.539925], [47.374512, 8.530158], [47.365455, 8.553579], [47.367427, 8.541241], [47.375192, 8.518175], [47.391731, 8.513622], [47.344614, 8.532881], [47.381983, 8.555077], [47.378831, 8.527214], [47.378379, 8.540752], [47.378502, 8.540079], [47.366257, 8.545096], [47.418424, 8.508263], [47.372602, 8.523869], [47.377866, 8.519845], [47.405396, 8.592706], [47.368331, 8.560405], [47.36043, 8.550429], [47.411161, 8.570132], [47.378512, 8.545588], [47.401931, 8.581224], [47.370912, 8.531382], [47.413487, 8.530215], [47.387276, 8.499307], [47.40924, 8.577975], [47.367289, 8.545355], [47.390817, 8.552189], [47.388228, 8.519883], [47.356581, 8.52672], [47.405627, 8.581237], [47.363063, 8.549769], [47.367362, 8.522425], [47.356293, 8.555955], [47.403839, 8.486176], [47.413991, 8.541608], [47.409539, 8.537766], [47.379237, 8.491162], [47.361758, 8.561074], [47.341327, 8.530366], [47.376079, 8.488305], [47.38187, 8.542546], [47.357946, 8.52316], [47.376006, 8.488343], [47.384099, 8.50919], [47.38676, 8.547561], [47.369708, 8.543525], [47.380295, 8.535071], [47.366532, 8.545472], [47.394823, 8.525395], [47.370125, 8.539416], [47.411116, 8.532737], [47.37007, 8.548895], [47.419111, 8.507919], [47.382708, 8.514658], [47.363105, 8.548221], [47.377695, 8.528475], [47.41399, 8.525547], [47.369153, 8.547963], [47.385638, 8.554743], [47.37637, 8.544829], [47.364462, 8.537062], [47.385805, 8.519198], [47.366212, 8.540381], [47.385025, 8.532347], [47.379997, 8.573377], [47.360529, 8.547664], [47.366521, 8.541884], [47.373397, 8.534889], [47.366232, 8.54675], [47.374678, 8.51251], [47.376749, 8.53807], [47.371013, 8.530192], [47.38033, 8.542699], [47.406915, 8.550644], [47.360296, 8.568894], [47.419578, 8.548032], [47.42092, 8.538505], [47.369392, 8.541745], [47.379717, 8.54658], [47.376057, 8.559587], [47.384743, 8.497946], [47.380839, 8.546855], [47.326256, 8.515504], [47.340051, 8.530247], [47.390567, 8.539786], [47.371364, 8.546182], [47.364279, 8.520231], [47.394164, 8.518016], [47.372296, 8.532456], [47.382421, 8.529962], [47.345536, 8.531378], [47.360943, 8.531575], [47.402769, 8.495932], [47.371563, 8.518512], [47.426103, 8.547718], [47.377051, 8.53752], [47.409504, 8.540469], [47.373502, 8.519941], [47.37181, 8.547528], [47.3684, 8.483957], [47.417315, 8.546766], [47.364366, 8.546195], [47.402927, 8.545341], [47.421339, 8.549222], [47.381212, 8.517899], [47.429423, 8.544751], [47.40305, 8.502642], [47.414093, 8.519374], [47.378156, 8.509918], [47.403861, 8.496497], [47.377778, 8.537747], [47.351597, 8.560635], [47.383005, 8.530941], [47.419651, 8.547994], [47.382851, 8.529177], [47.382777, 8.543558], [47.379496, 8.576677], [47.350223, 8.576066], [47.396081, 8.545463], [47.422985, 8.498454], [47.375323, 8.485377], [47.398316, 8.537508], [47.361338, 8.547694], [47.356457, 8.506305], [47.374416, 8.541266], [47.385302, 8.517241], [47.360407, 8.566804], [47.3797, 8.524729], [47.378425, 8.51003], [47.420379, 8.503094], [47.373345, 8.528942], [47.418966, 8.507002], [47.367916, 8.53998], [47.358357, 8.571288], [47.348461, 8.534072], [47.395871, 8.542982], [47.370326, 8.514289], [47.408102, 8.550735], [47.41365, 8.481439], [47.381478, 8.503761], [47.382486, 8.529739], [47.41309, 8.532287], [47.376749, 8.559602], [47.377038, 8.528462], [47.344061, 8.531427], [47.382569, 8.53427], [47.366989, 8.545654], [47.370677, 8.51521], [47.375496, 8.563548], [47.396135, 8.522692], [47.384241, 8.528649], [47.380006, 8.520881], [47.364577, 8.566231], [47.363823, 8.566969], [47.347349, 8.524215], [47.387239, 8.490591], [47.394055, 8.529605], [47.377493, 8.492028], [47.378804, 8.54239], [47.386281, 8.531737], [47.385688, 8.528824], [47.364852, 8.56666], [47.386767, 8.523071], [47.382742, 8.529307], [47.368097, 8.564094], [47.382656, 8.529848], [47.398399, 8.47294], [47.381663, 8.534052], [47.35426, 8.509504], [47.369164, 8.53263], [47.364646, 8.532908], [47.410576, 8.548786], [47.36336, 8.567423], [47.387679, 8.492653], [47.363404, 8.534816], [47.377715, 8.507036], [47.403563, 8.570739], [47.391301, 8.538277], [47.364899, 8.504833], [47.393155, 8.473951], [47.404419, 8.559522], [47.391675, 8.513886], [47.382352, 8.537272], [47.3897, 8.512508], [47.414191, 8.518528], [47.369497, 8.525911], [47.36098, 8.517146], [47.374265, 8.524856], [47.370994, 8.514912], [47.414376, 8.517922], [47.38014, 8.494662], [47.40555, 8.574452], [47.348245, 8.565885], [47.354806, 8.601791], [47.398079, 8.535887], [47.356911, 8.522292], [47.373017, 8.531346], [47.398474, 8.533113], [47.411985, 8.524565], [47.373431, 8.537035], [47.380933, 8.537984], [47.356295, 8.598686], [47.365693, 8.536266], [47.401932, 8.496949], [47.394788, 8.532971], [47.371877, 8.556507], [47.352173, 8.533447], [47.417269, 8.523096], [47.391899, 8.517798], [47.366523, 8.545432], [47.346439, 8.527267], [47.36277, 8.56798], [47.367682, 8.55773], [47.380443, 8.519327], [47.368018, 8.557406], [47.389464, 8.511762], [47.407337, 8.575748], [47.394422, 8.474029], [47.39553, 8.482913], [47.370992, 8.486828], [47.387789, 8.529225], [47.39697, 8.530472], [47.338226, 8.527272], [47.387277, 8.486393], [47.370263, 8.524854], [47.363779, 8.534215], [47.372005, 8.510748], [47.370107, 8.540303], [47.378883, 8.491525], [47.415499, 8.544714], [47.37301, 8.520646], [47.368233, 8.544461], [47.370688, 8.538832], [47.362069, 8.531386], [47.37649, 8.528345], [47.393621, 8.511541], [47.37798, 8.492898], [47.364541, 8.566256], [47.396961, 8.540911], [47.400235, 8.54751], [47.37562, 8.518528], [47.352523, 8.531707], [47.403531, 8.496265], [47.364913, 8.566794], [47.374377, 8.521628], [47.397551, 8.532776], [47.426648, 8.492258], [47.398391, 8.541868], [47.366394, 8.496839], [47.383263, 8.530377], [47.394309, 8.503355], [47.374741, 8.55233], [47.377603, 8.493804], [47.387304, 8.488341], [47.358527, 8.553791], [47.366934, 8.545719], [47.376529, 8.511726], [47.368131, 8.523831], [47.394865, 8.525753], [47.364029, 8.528633], [47.382799, 8.52997], [47.425, 8.548251], [47.403658, 8.578479], [47.425389, 8.553628], [47.367244, 8.533942], [47.343559, 8.530239], [47.387116, 8.534708], [47.370051, 8.511927], [47.378352, 8.517815], [47.380486, 8.529142], [47.36788, 8.560541], [47.400195, 8.494199], [47.36934, 8.540645], [47.348434, 8.534058], [47.406516, 8.480531], [47.392765, 8.523299], [47.397378, 8.532097], [47.413927, 8.540772], [47.426507, 8.544028], [47.377082, 8.541851], [47.366321, 8.544951], [47.376618, 8.521422], [47.391878, 8.504578], [47.376674, 8.538426], [47.375926, 8.516587], [47.418544, 8.547043], [47.408969, 8.550316], [47.404951, 8.505171], [47.390583, 8.483849], [47.379365, 8.490939], [47.407037, 8.547347], [47.389917, 8.476922], [47.369408, 8.525817], [47.370232, 8.537618], [47.34646, 8.52879], [47.368028, 8.540445], [47.374569, 8.552512], [47.369704, 8.552317], [47.373486, 8.50331], [47.373582, 8.534403], [47.362442, 8.518565], [47.403845, 8.576866], [47.392844, 8.529196], [47.365687, 8.502346], [47.3964, 8.472186], [47.405968, 8.59044], [47.37019, 8.524945], [47.382446, 8.507117], [47.368313, 8.529435], [47.386795, 8.547641], [47.365108, 8.501673], [47.396099, 8.482606], [47.368333, 8.524351], [47.374323, 8.546243], [47.37738, 8.529436], [47.384423, 8.54832], [47.376283, 8.552918], [47.387232, 8.4883], [47.388197, 8.525034], [47.37234, 8.543858], [47.391571, 8.472993], [47.419839, 8.505005], [47.367905, 8.523999], [47.381151, 8.534876], [47.389897, 8.477107], [47.360423, 8.526666], [47.37112, 8.523654], [47.367788, 8.539183], [47.390577, 8.491425], [47.361637, 8.531417], [47.369492, 8.553835], [47.398807, 8.533093], [47.370456, 8.521508], [47.376264, 8.525599], [47.378576, 8.543603], [47.370565, 8.517525], [47.400899, 8.548571], [47.415434, 8.559012], [47.336631, 8.533326], [47.370321, 8.492323], [47.426297, 8.554667], [47.414656, 8.55111], [47.425834, 8.493792], [47.369548, 8.526283], [47.380724, 8.582637], [47.374327, 8.543025], [47.41684, 8.522849], [47.378226, 8.492479], [47.364757, 8.554147], [47.389438, 8.494039], [47.399777, 8.542771], [47.41374, 8.536819], [47.379814, 8.50182], [47.414466, 8.556752], [47.422231, 8.508989], [47.365319, 8.521616], [47.370476, 8.549725], [47.367958, 8.540259], [47.350027, 8.533998], [47.409285, 8.577976], [47.38322, 8.506021], [47.384961, 8.495778], [47.367047, 8.547072], [47.365128, 8.520884], [47.383408, 8.530181], [47.360825, 8.56537], [47.384407, 8.528281], [47.383044, 8.540107], [47.390959, 8.523091], [47.366426, 8.545205], [47.364613, 8.566192], [47.369239, 8.525601], [47.328332, 8.512821], [47.380273, 8.505723], [47.369785, 8.548559], [47.378966, 8.54234], [47.430112, 8.549882], [47.390977, 8.523091], [47.376698, 8.541578], [47.390209, 8.532043], [47.376742, 8.53505], [47.423149, 8.502129], [47.371248, 8.575786], [47.410724, 8.544602], [47.354277, 8.558905], [47.378016, 8.526787], [47.360331, 8.567213], [47.379486, 8.527399], [47.356973, 8.53479], [47.403717, 8.586164], [47.415519, 8.546464], [47.364178, 8.566553], [47.363464, 8.516984], [47.376668, 8.524746], [47.367977, 8.497798], [47.377478, 8.543739], [47.374042, 8.517953], [47.384581, 8.531689], [47.385804, 8.496006], [47.35815, 8.557477], [47.420878, 8.549478], [47.380856, 8.511668], [47.401929, 8.581343], [47.397887, 8.474878], [47.407578, 8.554646], [47.367684, 8.53877], [47.370761, 8.536847], [47.381647, 8.513644], [47.381334, 8.542164], [47.368238, 8.510487], [47.371796, 8.522515], [47.365611, 8.539191], [47.370125, 8.548777], [47.40509, 8.565472], [47.420047, 8.503936], [47.347649, 8.564245], [47.36647, 8.540678], [47.412992, 8.536035], [47.373526, 8.534561], [47.374716, 8.544675], [47.349588, 8.577574], [47.365234, 8.53635], [47.393001, 8.539226], [47.397972, 8.533871], [47.394438, 8.505], [47.388568, 8.483836], [47.376377, 8.516451], [47.370392, 8.51392], [47.39361, 8.489326], [47.36666, 8.54149], [47.391652, 8.53541], [47.369251, 8.528117], [47.374572, 8.534264], [47.370335, 8.514276], [47.370269, 8.548833], [47.365541, 8.554018], [47.371644, 8.546108], [47.367772, 8.501594], [47.407866, 8.531146], [47.397139, 8.508618], [47.40501, 8.585411], [47.383386, 8.515268], [47.356973, 8.534776], [47.402075, 8.498052], [47.362621, 8.565766], [47.41889, 8.505516], [47.415943, 8.515847], [47.368714, 8.500805], [47.373234, 8.536912], [47.354027, 8.555948], [47.383226, 8.530469], [47.370179, 8.548805], [47.413934, 8.541925], [47.388122, 8.498304], [47.377585, 8.529572], [47.37212, 8.54621], [47.407613, 8.548273], [47.380854, 8.512899], [47.384315, 8.528438], [47.340033, 8.530286], [47.38343, 8.515375], [47.407165, 8.586702], [47.379034, 8.524755], [47.372201, 8.556474], [47.36295, 8.559603], [47.381224, 8.503027], [47.326529, 8.513208], [47.399033, 8.513875], [47.40973, 8.549815], [47.378932, 8.530752], [47.403762, 8.534215], [47.364809, 8.55718], [47.380979, 8.572233], [47.374543, 8.541163], [47.37958, 8.542075], [47.359053, 8.549606], [47.398767, 8.506597], [47.370984, 8.548292], [47.367272, 8.544296], [47.426634, 8.546735], [47.361434, 8.566654], [47.414305, 8.483599], [47.381563, 8.535997], [47.367844, 8.521919], [47.401424, 8.4916], [47.374895, 8.560622], [47.36474, 8.55412], [47.367969, 8.544708], [47.384506, 8.534932], [47.353244, 8.558724], [47.381645, 8.533986], [47.359894, 8.507235], [47.409588, 8.537383], [47.403565, 8.487628], [47.393172, 8.530673], [47.371116, 8.545792], [47.427957, 8.545675], [47.366757, 8.542657], [47.37791, 8.497624], [47.392579, 8.528713], [47.383949, 8.55084], [47.381166, 8.491676], [47.366558, 8.545565], [47.364105, 8.554636], [47.380484, 8.548212], [47.387939, 8.536182], [47.38154, 8.513628], [47.380782, 8.533995], [47.371983, 8.547333], [47.369928, 8.513553], [47.383267, 8.484209], [47.426684, 8.549029], [47.3883, 8.523712], [47.374928, 8.520407], [47.385508, 8.517364], [47.40534, 8.59301], [47.38597, 8.517943], [47.363149, 8.557688], [47.370747, 8.549572], [47.367933, 8.494765], [47.38294, 8.513935], [47.38898, 8.494983], [47.376021, 8.541829], [47.400186, 8.494199], [47.371461, 8.519874], [47.397793, 8.538531], [47.379545, 8.507576], [47.421757, 8.498019], [47.340875, 8.519187], [47.340857, 8.519187], [47.382115, 8.541359], [47.396063, 8.482658], [47.373865, 8.526265], [47.370669, 8.548392], [47.362637, 8.558485], [47.407544, 8.546059], [47.3835, 8.572975], [47.376754, 8.536574], [47.355392, 8.600758], [47.414339, 8.518067], [47.370527, 8.526369], [47.402028, 8.495335], [47.370681, 8.470443], [47.38005, 8.486847], [47.381112, 8.528505], [47.378747, 8.515969], [47.371317, 8.524651], [47.387424, 8.479072], [47.343371, 8.530143], [47.369437, 8.525632], [47.358586, 8.585405], [47.378006, 8.527872], [47.39216, 8.498345], [47.372855, 8.514129], [47.393436, 8.499496], [47.3897, 8.534483], [47.386009, 8.50503], [47.377864, 8.54192], [47.377116, 8.541057], [47.387043, 8.526282], [47.419909, 8.54079], [47.400237, 8.543589], [47.378284, 8.526104], [47.374317, 8.524169], [47.389945, 8.512261], [47.378454, 8.540343], [47.40735, 8.489783], [47.367949, 8.540245], [47.377504, 8.496689], [47.367103, 8.544041], [47.388605, 8.475717], [47.354126, 8.575289], [47.376959, 8.543358], [47.375917, 8.523274], [47.412002, 8.515012], [47.39995, 8.545292], [47.387334, 8.533547], [47.371185, 8.521483], [47.375223, 8.518665], [47.36575, 8.545416], [47.378492, 8.540211], [47.41714, 8.506992], [47.360403, 8.531656], [47.329972, 8.533573], [47.423084, 8.49843], [47.375385, 8.540571], [47.364322, 8.507919], [47.3904, 8.533702], [47.371172, 8.530513], [47.397011, 8.480292], [47.416455, 8.508184], [47.375358, 8.528269], [47.369467, 8.526202], [47.354594, 8.510332], [47.429483, 8.537581], [47.365334, 8.532459], [47.37181, 8.601552], [47.410844, 8.543319], [47.36575, 8.535989], [47.381735, 8.531114], [47.384447, 8.539169], [47.36319, 8.549692], [47.386823, 8.541947], [47.41474, 8.560932], [47.389402, 8.511641], [47.413128, 8.538702], [47.371473, 8.530069], [47.372849, 8.535805], [47.373225, 8.536951], [47.373832, 8.536447], [47.387087, 8.498323], [47.388539, 8.478087], [47.374393, 8.495581], [47.365135, 8.554128], [47.419774, 8.550104], [47.355006, 8.556087], [47.414545, 8.551426], [47.409521, 8.542509], [47.368006, 8.540908], [47.364605, 8.554978], [47.337925, 8.519128], [47.38598, 8.492447], [47.365584, 8.549583], [47.370088, 8.511742], [47.397692, 8.533137], [47.390284, 8.512533], [47.370088, 8.511756], [47.366585, 8.540852], [47.376209, 8.541925], [47.367316, 8.533983], [47.413554, 8.481133], [47.359114, 8.570232], [47.373858, 8.536514], [47.388021, 8.486646], [47.402959, 8.536372], [47.421047, 8.50772], [47.399568, 8.515317], [47.393241, 8.537695], [47.375112, 8.545597], [47.405116, 8.504843], [47.397023, 8.530553], [47.387832, 8.517914], [47.361393, 8.502711], [47.396916, 8.51321], [47.382505, 8.53056], [47.372416, 8.550043], [47.373085, 8.569099], [47.426565, 8.51015], [47.393131, 8.542567], [47.375471, 8.54191], [47.393759, 8.524764], [47.408871, 8.548353], [47.36984, 8.552241], [47.389049, 8.545251], [47.397046, 8.493209], [47.375304, 8.522547], [47.425962, 8.49357], [47.380542, 8.533606], [47.409328, 8.546679], [47.375771, 8.564892], [47.38628, 8.490122], [47.373008, 8.531306], [47.383694, 8.589667], [47.39903, 8.541855], [47.3759, 8.54131], [47.36227, 8.559311], [47.378866, 8.489406], [47.365118, 8.529582], [47.369257, 8.525668], [47.397069, 8.530435], [47.362844, 8.531336], [47.37101, 8.545671], [47.373003, 8.485305], [47.360273, 8.523472], [47.363733, 8.531433], [47.398776, 8.494939], [47.393998, 8.476193], [47.367647, 8.545522], [47.368959, 8.524761], [47.372663, 8.532636], [47.359606, 8.585996], [47.377799, 8.511567], [47.408721, 8.546216], [47.377108, 8.526768], [47.40594, 8.581469], [47.40418, 8.563783], [47.390106, 8.475905], [47.366885, 8.543387], [47.397581, 8.509408], [47.386369, 8.51852], [47.385134, 8.494563], [47.392099, 8.541393], [47.354795, 8.523427], [47.367543, 8.515544], [47.382221, 8.488466], [47.413236, 8.545356], [47.365487, 8.515119], [47.32986, 8.530197], [47.3871, 8.538297], [47.379641, 8.52139], [47.410708, 8.572229], [47.367733, 8.534627], [47.382184, 8.541665], [47.354865, 8.511132], [47.364178, 8.548892], [47.404713, 8.572685], [47.407174, 8.586689], [47.399793, 8.543845], [47.366728, 8.535308], [47.394783, 8.525804], [47.375849, 8.495756], [47.33997, 8.530272], [47.382864, 8.54013], [47.383056, 8.575124], [47.427562, 8.546595], [47.369933, 8.549131], [47.376457, 8.528106], [47.389768, 8.5119], [47.396217, 8.54442], [47.375229, 8.522784], [47.405907, 8.553511], [47.391767, 8.517504], [47.358501, 8.586753], [47.391809, 8.527439], [47.41972, 8.5483], [47.405189, 8.593682], [47.364394, 8.532903], [47.385305, 8.530326], [47.376219, 8.525611], [47.371738, 8.535332], [47.412996, 8.550678], [47.375659, 8.578118], [47.376988, 8.52225], [47.403056, 8.57563], [47.36803, 8.556122], [47.389724, 8.51182], [47.378813, 8.542403], [47.400114, 8.517527], [47.410827, 8.5591], [47.420584, 8.550068], [47.404505, 8.544009], [47.376479, 8.541852], [47.359979, 8.51649], [47.36953, 8.555478], [47.367434, 8.546113], [47.392225, 8.477311], [47.390939, 8.523302], [47.361884, 8.526285], [47.335611, 8.519332], [47.399708, 8.543339], [47.411878, 8.537788], [47.360177, 8.518414], [47.392781, 8.523499], [47.412344, 8.557648], [47.358354, 8.584328], [47.348899, 8.562445], [47.38639, 8.518216], [47.394886, 8.529251], [47.424861, 8.537406], [47.388923, 8.52248], [47.373198, 8.55198], [47.39118, 8.51581], [47.403079, 8.547305], [47.369133, 8.525387], [47.410138, 8.542854], [47.374923, 8.5475], [47.40219, 8.546239], [47.372946, 8.520778], [47.410503, 8.547923], [47.360294, 8.57922], [47.339248, 8.526644], [47.409518, 8.549386], [47.369254, 8.491984], [47.375094, 8.545557], [47.370161, 8.548805], [47.357437, 8.521787], [47.410939, 8.522822], [47.352433, 8.562532], [47.35477, 8.552601], [47.365452, 8.50826], [47.356008, 8.532188], [47.37024, 8.552779], [47.425861, 8.493727], [47.384209, 8.51098], [47.339526, 8.527762], [47.377153, 8.539998], [47.354215, 8.561551], [47.355041, 8.55806], [47.381352, 8.517306], [47.409197, 8.547246], [47.36947, 8.520151], [47.362639, 8.527241], [47.334159, 8.515889], [47.372926, 8.547445], [47.342797, 8.530978], [47.399681, 8.517677], [47.383122, 8.51366], [47.387992, 8.536262], [47.378909, 8.524673], [47.375675, 8.516543], [47.369408, 8.525817], [47.413074, 8.546254], [47.37328, 8.514865], [47.376047, 8.559667], [47.376356, 8.559276], [47.369828, 8.53561], [47.37453, 8.566693], [47.404432, 8.574719], [47.408133, 8.553041], [47.378324, 8.530382], [47.383003, 8.545364], [47.38563, 8.520585], [47.388622, 8.541944], [47.407221, 8.538407], [47.374281, 8.524168], [47.356094, 8.55615], [47.37017, 8.548792], [47.375847, 8.540223], [47.377032, 8.516689], [47.391794, 8.527121], [47.428685, 8.488865], [47.417654, 8.546124], [47.344775, 8.519571], [47.376317, 8.567949], [47.405458, 8.509712], [47.372934, 8.530563], [47.417038, 8.541844], [47.390101, 8.480435], [47.382952, 8.530847], [47.389905, 8.526089], [47.396504, 8.534119], [47.385267, 8.517094], [47.374344, 8.524116], [47.376444, 8.540778], [47.38648, 8.48598], [47.391016, 8.478692], [47.407382, 8.550707], [47.378389, 8.530185], [47.379287, 8.537977], [47.386665, 8.517679], [47.40744, 8.548508], [47.381611, 8.535654], [47.359523, 8.548438], [47.377014, 8.583934], [47.352059, 8.505331], [47.382539, 8.514483], [47.362224, 8.526411], [47.399526, 8.496464], [47.402726, 8.556903], [47.376683, 8.515437], [47.373192, 8.503926], [47.370051, 8.511914], [47.367484, 8.546578], [47.430155, 8.544475], [47.374681, 8.52562], [47.372908, 8.550332], [47.385108, 8.536905], [47.385739, 8.535779], [47.374807, 8.544611], [47.410074, 8.545807], [47.403673, 8.571404], [47.360028, 8.523706], [47.385879, 8.532444], [47.371855, 8.60154], [47.376438, 8.528185], [47.373458, 8.537049], [47.374342, 8.518647], [47.370016, 8.54332], [47.400185, 8.546198], [47.380985, 8.545719], [47.366675, 8.544628], [47.367874, 8.496326], [47.417641, 8.539908], [47.397277, 8.494538], [47.378825, 8.539265], [47.391104, 8.522921], [47.406896, 8.537645], [47.373506, 8.519518], [47.366999, 8.544634], [47.364459, 8.566321], [47.393234, 8.489067], [47.396997, 8.530486], [47.420305, 8.503305], [47.365171, 8.554169], [47.3932, 8.530647], [47.383509, 8.515641], [47.328634, 8.513237], [47.427815, 8.547422], [47.392153, 8.495165], [47.368538, 8.569638], [47.36927, 8.510706], [47.386994, 8.525738], [47.374147, 8.519253], [47.364595, 8.566205], [47.419041, 8.507653], [47.394778, 8.471493], [47.368806, 8.512299], [47.358769, 8.498436], [47.362284, 8.532516], [47.362163, 8.533864], [47.370521, 8.519391], [47.391684, 8.538722], [47.377469, 8.52279], [47.364676, 8.56618], [47.377595, 8.498558], [47.390935, 8.538998], [47.380135, 8.528128], [47.372937, 8.535992], [47.368278, 8.556617], [47.361776, 8.522484], [47.386594, 8.528074], [47.370952, 8.536639], [47.357069, 8.532197], [47.370861, 8.554592], [47.400491, 8.543316], [47.375586, 8.558068], [47.387623, 8.551301], [47.392052, 8.517775], [47.382545, 8.5722], [47.382432, 8.529698], [47.379391, 8.510605], [47.422485, 8.540406], [47.391305, 8.53784], [47.364189, 8.536474], [47.389135, 8.495675], [47.365217, 8.501582], [47.368809, 8.539654], [47.388159, 8.517577], [47.420551, 8.502925], [47.366929, 8.544355], [47.37933, 8.511385], [47.362196, 8.532236], [47.359904, 8.535869], [47.368308, 8.546926], [47.357477, 8.534747], [47.415153, 8.550803], [47.370233, 8.518432], [47.378202, 8.541397], [47.367426, 8.494185], [47.366308, 8.540635], [47.356942, 8.566956], [47.340754, 8.530116], [47.388592, 8.491121], [47.366878, 8.518364], [47.381827, 8.516561], [47.369398, 8.525909], [47.371314, 8.523048], [47.399358, 8.495229], [47.364436, 8.561289], [47.354251, 8.557845], [47.411499, 8.526437], [47.401731, 8.500231], [47.397387, 8.532071], [47.422357, 8.549058], [47.398823, 8.506399], [47.414095, 8.550423], [47.370103, 8.520786], [47.377028, 8.528554], [47.369124, 8.525414], [47.388423, 8.541132], [47.422284, 8.549215], [47.402913, 8.580993], [47.39111, 8.522378], [47.361891, 8.548209], [47.358012, 8.587987], [47.380847, 8.511694], [47.374886, 8.527756], [47.369215, 8.52339], [47.357638, 8.521552], [47.364848, 8.502634], [47.372768, 8.494278], [47.369926, 8.536658], [47.374749, 8.549668], [47.365093, 8.521704], [47.369169, 8.525454], [47.400388, 8.5371], [47.423724, 8.544368], [47.376355, 8.527428], [47.415589, 8.518106], [47.371566, 8.536361], [47.418314, 8.546668], [47.37754, 8.543767], [47.392797, 8.525592], [47.370726, 8.522467], [47.371948, 8.535018], [47.377593, 8.521124], [47.370307, 8.524974], [47.409901, 8.54322], [47.403143, 8.552897], [47.357585, 8.526171], [47.389088, 8.538311], [47.421608, 8.550195], [47.370164, 8.51332], [47.343409, 8.535649], [47.34411, 8.531892], [47.364788, 8.566778], [47.379973, 8.48335], [47.394634, 8.536823], [47.397839, 8.530821], [47.353249, 8.572053], [47.414444, 8.553425], [47.38428, 8.531259], [47.410093, 8.527734], [47.372533, 8.529244], [47.35508, 8.534261], [47.386736, 8.490528], [47.326611, 8.518872], [47.369047, 8.525002], [47.391963, 8.532065], [47.364363, 8.548393], [47.368924, 8.528508], [47.369446, 8.525645], [47.371166, 8.538696], [47.3639, 8.551653], [47.369679, 8.531396], [47.385499, 8.528847], [47.365856, 8.549298], [47.381539, 8.532884], [47.374387, 8.541464], [47.363887, 8.566904], [47.374416, 8.541253], [47.396847, 8.587712], [47.410445, 8.573443], [47.342897, 8.519361], [47.374263, 8.524128], [47.364595, 8.566205], [47.379447, 8.523902], [47.402529, 8.535276], [47.371748, 8.558663], [47.4215, 8.49755], [47.404761, 8.574209], [47.364605, 8.537224], [47.378912, 8.523322], [47.417686, 8.545528], [47.3529, 8.529822], [47.340197, 8.519504], [47.370086, 8.537813], [47.398503, 8.494232], [47.349972, 8.53221], [47.38914, 8.494218], [47.371862, 8.601686], [47.383206, 8.479969], [47.376992, 8.541889], [47.364614, 8.566165], [47.418737, 8.511331], [47.430434, 8.542519], [47.396601, 8.510382], [47.366766, 8.54455], [47.378022, 8.528124], [47.350949, 8.559827], [47.366772, 8.542021], [47.360298, 8.567835], [47.366811, 8.544498], [47.383255, 8.499333], [47.365372, 8.538855], [47.359455, 8.52245], [47.378349, 8.514306], [47.369999, 8.52518], [47.370638, 8.5222], [47.414482, 8.557918], [47.365948, 8.536934], [47.367025, 8.513217], [47.409372, 8.538266], [47.382291, 8.480667], [47.401096, 8.48803], [47.398726, 8.471529], [47.428002, 8.545729], [47.372601, 8.550392], [47.351621, 8.576625], [47.378003, 8.530097], [47.374227, 8.524114], [47.352875, 8.602371], [47.374316, 8.524248], [47.367666, 8.556551], [47.367566, 8.496558], [47.386784, 8.486225], [47.40722, 8.585763], [47.384688, 8.509772], [47.37999, 8.536852], [47.386894, 8.535379], [47.36848, 8.53075], [47.33942, 8.527481], [47.372781, 8.533512], [47.350072, 8.561172], [47.372013, 8.556378], [47.390566, 8.545547], [47.389046, 8.527582], [47.360434, 8.566752], [47.362676, 8.533834], [47.365269, 8.520172], [47.386711, 8.479283], [47.369288, 8.505887], [47.360687, 8.516769], [47.354967, 8.523378], [47.374717, 8.544622], [47.378841, 8.529042], [47.377241, 8.535484], [47.380437, 8.519923], [47.396778, 8.541199], [47.411042, 8.571203], [47.397433, 8.474366], [47.402827, 8.588795], [47.374677, 8.54972], [47.356564, 8.554055], [47.409498, 8.479079], [47.383741, 8.540611], [47.383941, 8.530934], [47.377087, 8.557199], [47.36877, 8.524771], [47.386688, 8.542897], [47.373814, 8.561738], [47.398345, 8.537283], [47.371921, 8.562083], [47.371265, 8.549966], [47.394847, 8.525753], [47.421401, 8.549369], [47.36718, 8.539766], [47.396948, 8.529995], [47.429108, 8.541988], [47.358812, 8.521947], [47.366942, 8.544011], [47.398684, 8.53949], [47.386313, 8.48252], [47.374237, 8.525028], [47.352744, 8.531129], [47.379614, 8.521456], [47.361544, 8.554305], [47.35296, 8.558361], [47.36215, 8.559586], [47.415825, 8.538903], [47.377808, 8.498841], [47.371371, 8.516045], [47.404911, 8.486939], [47.366051, 8.540272], [47.403863, 8.546274], [47.365978, 8.503967], [47.393519, 8.51289], [47.346141, 8.533071], [47.356094, 8.55615], [47.356556, 8.532266], [47.388909, 8.527764], [47.364072, 8.556145], [47.365755, 8.546727], [47.369042, 8.537911], [47.389669, 8.521515], [47.376646, 8.53477], [47.373784, 8.521496], [47.384385, 8.531566], [47.379063, 8.527378], [47.337865, 8.532187], [47.408946, 8.539609], [47.405686, 8.587996], [47.411416, 8.525667], [47.350558, 8.580401], [47.370408, 8.514159], [47.369123, 8.541607], [47.404191, 8.56165], [47.399229, 8.54268], [47.368995, 8.541842], [47.369186, 8.525481], [47.355941, 8.535496], [47.363336, 8.533517], [47.382941, 8.540555], [47.371905, 8.538526], [47.381444, 8.528684], [47.420159, 8.509345], [47.387375, 8.497283], [47.368016, 8.540763], [47.391046, 8.52247], [47.398438, 8.591469], [47.398998, 8.512815], [47.373779, 8.537333], [47.392665, 8.515774], [47.364833, 8.548151], [47.370717, 8.538674], [47.369452, 8.52591], [47.359344, 8.551201], [47.377629, 8.542021], [47.383332, 8.53157], [47.365055, 8.531513], [47.394317, 8.526643], [47.403381, 8.486087], [47.34872, 8.534302], [47.358403, 8.521449], [47.366469, 8.540718], [47.372506, 8.478516], [47.387313, 8.545268], [47.395592, 8.531583], [47.385441, 8.494357], [47.37385, 8.531734], [47.369807, 8.466507], [47.368304, 8.564999], [47.377567, 8.528684], [47.36721, 8.546929], [47.379713, 8.537628], [47.335512, 8.519343], [47.401358, 8.538207], [47.354915, 8.526964], [47.368921, 8.54772], [47.375134, 8.526251], [47.408575, 8.572383], [47.397957, 8.535487], [47.372194, 8.535579], [47.369292, 8.527602], [47.403158, 8.554977], [47.401662, 8.499964], [47.377483, 8.502926], [47.389921, 8.489386], [47.370672, 8.532026], [47.33753, 8.524757], [47.366988, 8.536267], [47.417652, 8.546269], [47.366734, 8.52032], [47.364759, 8.547474], [47.372789, 8.523992], [47.369063, 8.547908], [47.370104, 8.529313], [47.368922, 8.540133], [47.425862, 8.4937], [47.370927, 8.5317], [47.40718, 8.546489], [47.367935, 8.497545], [47.408781, 8.542746], [47.369981, 8.525179], [47.370097, 8.548909], [47.379228, 8.491175], [47.360727, 8.573576], [47.411207, 8.570915], [47.410913, 8.535184], [47.363739, 8.500891], [47.383894, 8.533979], [47.367985, 8.524053], [47.37175, 8.517827], [47.360367, 8.550454], [47.36054, 8.550272], [47.388597, 8.525533], [47.351865, 8.531799], [47.371672, 8.519401], [47.414059, 8.541066], [47.408556, 8.540913], [47.375102, 8.481956], [47.37875, 8.542336], [47.382586, 8.529648], [47.360167, 8.560034], [47.383365, 8.515599], [47.387983, 8.524831], [47.397537, 8.532325], [47.383211, 8.506007], [47.408355, 8.574657], [47.381487, 8.513495], [47.405154, 8.480968], [47.384409, 8.574716], [47.362189, 8.549023], [47.393747, 8.507728], [47.368075, 8.524121], [47.381623, 8.490891], [47.373895, 8.502815], [47.367137, 8.544227], [47.379245, 8.491228], [47.392425, 8.506695], [47.386362, 8.493965], [47.375418, 8.524734], [47.397017, 8.530275], [47.394197, 8.525064], [47.358845, 8.510709], [47.37965, 8.52143], [47.39313, 8.53042], [47.376272, 8.541914], [47.417755, 8.555257], [47.419752, 8.504765], [47.398986, 8.539893], [47.401594, 8.490663], [47.367411, 8.546642], [47.367411, 8.546669], [47.373048, 8.53659], [47.409575, 8.542458], [47.373639, 8.535013], [47.385716, 8.548546], [47.379419, 8.559764], [47.387926, 8.529042], [47.369637, 8.536811], [47.344739, 8.519557], [47.377864, 8.511369], [47.36585, 8.49434], [47.358837, 8.586403], [47.354481, 8.555428], [47.419091, 8.508065], [47.377086, 8.533892], [47.383498, 8.533017], [47.403674, 8.571364], [47.334837, 8.534665], [47.397095, 8.492839], [47.382789, 8.529997], [47.370887, 8.53497], [47.384733, 8.531824], [47.368955, 8.529064], [47.42231, 8.506353], [47.405733, 8.585996], [47.41492, 8.561903], [47.412315, 8.483851], [47.408754, 8.549304], [47.360089, 8.53537], [47.390513, 8.539784], [47.371748, 8.558649], [47.38473, 8.537864], [47.368895, 8.538173], [47.370508, 8.549156], [47.389732, 8.5119], [47.405126, 8.570918], [47.373299, 8.494249], [47.357799, 8.521582], [47.375918, 8.533723], [47.364586, 8.566244], [47.362511, 8.534136], [47.343248, 8.519381], [47.369465, 8.519767], [47.361873, 8.510068], [47.362569, 8.527014], [47.429144, 8.541988], [47.373122, 8.534526], [47.383252, 8.515199], [47.428002, 8.545729], [47.361043, 8.531497], [47.37454, 8.53956], [47.382514, 8.540083], [47.37959, 8.507616], [47.357428, 8.521826], [47.396988, 8.530473], [47.380073, 8.520393], [47.369288, 8.505847], [47.361034, 8.516194], [47.396989, 8.523664], [47.382086, 8.541517], [47.409114, 8.544648], [47.370139, 8.53604], [47.367856, 8.561123], [47.3827, 8.557198], [47.380344, 8.534608], [47.358318, 8.574266], [47.356336, 8.531798], [47.376459, 8.511553], [47.367734, 8.560737], [47.375854, 8.488221], [47.361821, 8.560122], [47.379162, 8.526439], [47.358944, 8.552569], [47.361364, 8.602622], [47.373588, 8.553511], [47.361362, 8.554592], [47.389237, 8.546248], [47.365346, 8.56765], [47.378552, 8.523434], [47.375722, 8.535414], [47.364497, 8.550355], [47.368888, 8.539867], [47.37845, 8.523763], [47.360152, 8.522993], [47.389853, 8.524922], [47.357102, 8.522045], [47.404089, 8.585828], [47.377028, 8.559595], [47.378207, 8.541768], [47.418274, 8.543327], [47.39098, 8.484718], [47.426424, 8.547048], [47.364559, 8.566257], [47.386569, 8.528855], [47.389241, 8.536434], [47.335889, 8.540337], [47.402444, 8.576585], [47.35396, 8.55535], [47.391574, 8.542668], [47.36678, 8.498886], [47.36782, 8.487441], [47.354018, 8.555921], [47.380165, 8.547728], [47.387684, 8.52513], [47.404161, 8.561954], [47.402792, 8.535971], [47.395316, 8.499441], [47.37596, 8.540636], [47.364842, 8.521672], [47.388575, 8.479055], [47.378574, 8.528679], [47.362311, 8.551355], [47.396162, 8.527475], [47.373166, 8.534553], [47.371477, 8.557796], [47.377255, 8.529287], [47.391792, 8.51867], [47.347252, 8.533571], [47.371408, 8.5197], [47.400335, 8.537073], [47.374774, 8.52047], [47.371826, 8.512532], [47.402938, 8.575747], [47.375777, 8.523828], [47.420376, 8.508236], [47.390912, 8.4882], [47.3823, 8.543641], [47.371679, 8.5225], [47.362379, 8.548868], [47.384403, 8.548505], [47.369038, 8.553296], [47.358237, 8.57159], [47.427474, 8.546341], [47.377286, 8.535565], [47.398569, 8.539209], [47.37175, 8.556624], [47.345717, 8.52941], [47.376103, 8.524629], [47.365168, 8.494207], [47.396851, 8.52015], [47.379379, 8.525358], [47.374375, 8.540802], [47.405133, 8.59388], [47.368483, 8.541819], [47.365401, 8.494265], [47.377854, 8.531551], [47.410639, 8.548787], [47.342025, 8.519343], [47.378959, 8.525031], [47.371377, 8.490953], [47.368391, 8.537288], [47.377343, 8.548398], [47.385275, 8.517227], [47.380674, 8.54807], [47.377014, 8.544207], [47.379722, 8.497104], [47.366314, 8.553133], [47.418698, 8.507765], [47.355503, 8.558613], [47.378502, 8.501622], [47.420275, 8.547649], [47.392576, 8.515639], [47.400124, 8.586564], [47.384845, 8.509298], [47.385954, 8.54814], [47.361517, 8.576466], [47.417335, 8.512217], [47.386387, 8.518521], [47.374377, 8.521614], [47.386504, 8.529119], [47.383656, 8.574475], [47.367084, 8.529053], [47.400862, 8.589177], [47.381479, 8.528765], [47.386121, 8.518131], [47.396514, 8.497305], [47.380098, 8.520645], [47.376865, 8.541926], [47.388964, 8.532414], [47.36076, 8.530035], [47.369488, 8.525884], [47.352594, 8.52509], [47.371404, 8.562588], [47.370188, 8.548805], [47.396762, 8.529673], [47.348195, 8.562681], [47.370545, 8.524529], [47.378087, 8.510553], [47.382345, 8.528464], [47.368946, 8.540385], [47.36512, 8.534123], [47.375784, 8.537375], [47.37325, 8.514137], [47.373082, 8.533015], [47.370232, 8.556393], [47.336207, 8.518166], [47.413861, 8.545833], [47.399762, 8.544268], [47.406961, 8.550592], [47.39173, 8.517569], [47.42699, 8.553688], [47.367947, 8.546124], [47.379142, 8.533339], [47.366649, 8.537941], [47.371477, 8.519146], [47.393634, 8.533173], [47.367108, 8.539764], [47.365254, 8.538945], [47.368726, 8.515118], [47.375094, 8.547424], [47.388838, 8.526756], [47.397213, 8.531431], [47.380414, 8.515711], [47.40001, 8.545651], [47.387432, 8.479165], [47.376919, 8.541013], [47.414749, 8.560932], [47.417773, 8.50279], [47.35971, 8.531655], [47.383136, 8.528507], [47.381232, 8.49132], [47.36236, 8.533934], [47.365037, 8.531513], [47.378564, 8.542054], [47.365139, 8.50223], [47.375959, 8.536014], [47.363503, 8.547991], [47.339946, 8.529967], [47.35779, 8.509033], [47.366943, 8.543892], [47.428155, 8.489769], [47.329124, 8.51756], [47.399865, 8.494868], [47.430228, 8.540592], [47.388108, 8.520185], [47.378786, 8.527226], [47.385045, 8.532149], [47.378102, 8.528166], [47.391182, 8.489186], [47.368254, 8.511626], [47.386382, 8.525779], [47.399605, 8.542821], [47.378699, 8.529714], [47.376841, 8.536959], [47.372373, 8.537609], [47.421272, 8.549605], [47.378838, 8.545397], [47.416481, 8.511233], [47.425366, 8.494817], [47.36224, 8.547475], [47.368512, 8.52454], [47.373664, 8.533279], [47.373067, 8.536498], [47.383817, 8.532587], [47.382639, 8.529702], [47.371133, 8.527917], [47.387796, 8.49847], [47.38346, 8.533255], [47.374503, 8.52163], [47.335901, 8.524895], [47.380466, 8.548225], [47.380097, 8.528432], [47.36947, 8.525911], [47.375376, 8.529156], [47.367047, 8.531064], [47.39897, 8.513848], [47.391556, 8.480702], [47.410162, 8.534718], [47.360962, 8.571635], [47.388003, 8.486659], [47.389726, 8.512562], [47.40045, 8.508472], [47.369385, 8.472457], [47.427608, 8.54649], [47.377722, 8.52841], [47.413989, 8.525693], [47.361969, 8.547562], [47.385195, 8.500603], [47.400686, 8.534152], [47.366426, 8.532971], [47.409476, 8.546272], [47.371699, 8.517455], [47.380257, 8.542804], [47.379233, 8.537975], [47.399077, 8.533072], [47.365108, 8.553241], [47.374741, 8.549562], [47.372685, 8.552883], [47.379124, 8.518029], [47.394847, 8.525753], [47.396462, 8.543285], [47.371798, 8.538458], [47.351945, 8.53188], [47.368955, 8.540398], [47.414197, 8.571455], [47.395642, 8.545242], [47.390567, 8.539812], [47.406416, 8.55388], [47.42069, 8.502544], [47.405042, 8.557428], [47.374094, 8.544795], [47.346017, 8.533797], [47.370178, 8.53947], [47.376075, 8.514141], [47.399958, 8.59235], [47.357886, 8.557802], [47.381626, 8.542634], [47.391833, 8.480867], [47.339249, 8.524725], [47.357862, 8.572204], [47.362196, 8.559455], [47.387807, 8.53402], [47.350177, 8.534306], [47.40991, 8.541272], [47.413791, 8.54554], [47.354526, 8.530967], [47.366512, 8.54187], [47.370087, 8.511862], [47.369679, 8.511284], [47.373525, 8.598266], [47.374536, 8.539984], [47.397717, 8.533309], [47.373671, 8.538218], [47.39174, 8.513662], [47.412217, 8.546554], [47.409717, 8.576117], [47.374173, 8.515572], [47.369558, 8.506833], [47.382278, 8.54025], [47.409627, 8.549309], [47.377937, 8.541829], [47.365829, 8.559637], [47.422894, 8.550222], [47.38254, 8.529753], [47.378912, 8.526222], [47.423861, 8.522276], [47.40915, 8.575178], [47.383933, 8.509717], [47.371459, 8.536239], [47.397439, 8.532284], [47.375137, 8.553238], [47.368552, 8.528831], [47.378545, 8.541219], [47.419382, 8.539414], [47.362224, 8.559403], [47.34083, 8.519186], [47.344645, 8.528647], [47.414012, 8.519412], [47.374727, 8.53975], [47.361333, 8.525506], [47.388521, 8.491067], [47.416206, 8.549804], [47.362375, 8.564159], [47.347827, 8.534535], [47.370179, 8.548805], [47.366932, 8.544117], [47.369538, 8.540609], [47.364719, 8.554424], [47.388099, 8.528728], [47.376492, 8.527272], [47.38711, 8.519198], [47.381132, 8.534995], [47.410986, 8.570526], [47.379342, 8.555657], [47.375163, 8.536501], [47.378561, 8.541484], [47.380547, 8.528361], [47.393931, 8.4994], [47.410584, 8.551701], [47.373053, 8.533266], [47.363724, 8.519955], [47.381966, 8.541859], [47.414048, 8.54039], [47.42599, 8.49642], [47.36984, 8.552241], [47.369445, 8.526625], [47.363281, 8.549641], [47.367032, 8.532587], [47.397599, 8.532446], [47.376798, 8.517638], [47.413052, 8.536262], [47.375976, 8.541749], [47.385378, 8.520646], [47.369598, 8.512236], [47.409782, 8.549975], [47.37135, 8.54295], [47.367445, 8.558029], [47.405678, 8.59152], [47.367058, 8.494999], [47.33819, 8.530116], [47.426032, 8.554184], [47.378699, 8.542056], [47.369448, 8.532054], [47.341427, 8.536945], [47.356179, 8.550076], [47.380521, 8.541498], [47.411553, 8.541598], [47.414091, 8.549005], [47.362921, 8.517344], [47.381487, 8.542061], [47.429988, 8.549654], [47.39509, 8.4937], [47.374301, 8.52491], [47.421958, 8.550295], [47.40765, 8.58768], [47.419099, 8.546459], [47.377925, 8.536465], [47.399159, 8.542493], [47.38732, 8.49058], [47.390759, 8.508874], [47.404213, 8.481573], [47.42029, 8.500945], [47.377783, 8.511315], [47.3812, 8.528772], [47.373626, 8.53639], [47.363018, 8.570209], [47.378682, 8.52292], [47.3611, 8.53596], [47.394184, 8.525421], [47.369446, 8.532239], [47.373248, 8.520122], [47.402315, 8.54546], [47.378332, 8.530461], [47.369412, 8.543466], [47.376936, 8.525904], [47.357605, 8.550555], [47.366394, 8.522048], [47.410067, 8.542826], [47.395539, 8.48286], [47.356666, 8.523439], [47.389928, 8.484631], [47.329782, 8.529918], [47.377256, 8.538689], [47.337747, 8.535122], [47.372611, 8.534317], [47.355858, 8.549764], [47.377164, 8.520823], [47.373826, 8.518054], [47.418945, 8.50732], [47.376889, 8.498015], [47.370188, 8.548818], [47.377021, 8.539744], [47.387165, 8.519093], [47.378419, 8.500945], [47.365042, 8.538477], [47.385015, 8.55869], [47.386852, 8.535047], [47.39128, 8.520474], [47.408148, 8.552498], [47.411011, 8.570725], [47.369576, 8.5516], [47.357871, 8.572191], [47.367675, 8.538823], [47.364577, 8.566231], [47.391465, 8.514173], [47.380847, 8.491193], [47.391045, 8.522549], [47.381542, 8.542049], [47.38663, 8.491241], [47.386901, 8.490081], [47.337101, 8.519693], [47.385146, 8.495172], [47.408591, 8.580824], [47.398767, 8.506597], [47.390748, 8.527365], [47.388422, 8.491065], [47.384793, 8.54164], [47.383765, 8.512256], [47.384209, 8.510967], [47.383612, 8.482798], [47.360345, 8.55371], [47.370344, 8.509351], [47.394883, 8.52578], [47.396475, 8.528608], [47.387449, 8.525244], [47.365196, 8.558075], [47.364997, 8.521358], [47.389739, 8.471633], [47.37754, 8.496716], [47.37469, 8.520866], [47.386655, 8.539705], [47.409909, 8.546161], [47.391301, 8.538344], [47.382752, 8.548113], [47.38146, 8.503747], [47.373268, 8.518983], [47.391476, 8.512054], [47.370041, 8.537865], [47.363291, 8.499757], [47.41017, 8.54239], [47.393113, 8.531268], [47.365379, 8.535227], [47.397927, 8.474428], [47.375819, 8.542222], [47.419193, 8.546991], [47.416189, 8.569232], [47.410381, 8.538141], [47.390016, 8.512303], [47.392485, 8.53862], [47.383253, 8.53986], [47.375248, 8.547322], [47.36639, 8.532971], [47.366232, 8.53825], [47.355784, 8.528305], [47.360679, 8.524302], [47.397385, 8.531355], [47.36695, 8.544117], [47.35435, 8.52682], [47.401892, 8.499346], [47.366432, 8.518937], [47.373032, 8.534497], [47.360039, 8.568531], [47.374272, 8.524115], [47.386927, 8.502068], [47.386384, 8.541726], [47.375229, 8.51807], [47.367587, 8.545163], [47.370188, 8.548818], [47.352425, 8.576298], [47.356928, 8.534789], [47.371825, 8.524237], [47.38852, 8.491093], [47.380909, 8.537613], [47.383079, 8.540214], [47.378921, 8.523322], [47.374923, 8.523757], [47.364296, 8.536529], [47.362623, 8.497109], [47.375839, 8.538197], [47.379899, 8.494499], [47.381918, 8.51647], [47.388162, 8.474], [47.365874, 8.53999], [47.418918, 8.508326], [47.400683, 8.548606], [47.374619, 8.550142], [47.373119, 8.529136], [47.375651, 8.535253], [47.375232, 8.534953], [47.365867, 8.532152], [47.367736, 8.552157], [47.405204, 8.551787], [47.375613, 8.516422], [47.345345, 8.534484], [47.369906, 8.52543], [47.373871, 8.544671], [47.399223, 8.542402], [47.378851, 8.49996], [47.354078, 8.557166], [47.355712, 8.556539], [47.378476, 8.510296], [47.361548, 8.561387], [47.393411, 8.500237], [47.422376, 8.548992], [47.368499, 8.555059], [47.426036, 8.493346], [47.3638, 8.551757], [47.36374, 8.547704], [47.399243, 8.522146], [47.366614, 8.533108], [47.386546, 8.541676], [47.37912, 8.522267], [47.41403, 8.526131], [47.406418, 8.481404], [47.355398, 8.520527], [47.366983, 8.491423], [47.391224, 8.538806], [47.358493, 8.571132], [47.335072, 8.518355], [47.357863, 8.514726], [47.372053, 8.529565], [47.388495, 8.475993], [47.36085, 8.513675], [47.42764, 8.549672], [47.406824, 8.552603], [47.407508, 8.547039], [47.395561, 8.526284], [47.388051, 8.49617], [47.370416, 8.514238], [47.372992, 8.547155], [47.366392, 8.559067], [47.431363, 8.51649], [47.374335, 8.524116], [47.375332, 8.516681], [47.352493, 8.531971], [47.371013, 8.555602], [47.39475, 8.525565], [47.374132, 8.502422], [47.36712, 8.52908], [47.363978, 8.546319], [47.410499, 8.550281], [47.370717, 8.51672], [47.382256, 8.533151], [47.374113, 8.540982], [47.3801, 8.52038], [47.355903, 8.535668], [47.407484, 8.489918], [47.375221, 8.547348], [47.368729, 8.501202], [47.358696, 8.516067], [47.359341, 8.580007], [47.414019, 8.519638], [47.384286, 8.525829], [47.414152, 8.518805], [47.360003, 8.594901], [47.400201, 8.54637], [47.417569, 8.554047], [47.361288, 8.522725], [47.393029, 8.474903], [47.371106, 8.524103], [47.369863, 8.529096], [47.387393, 8.486475], [47.3904, 8.475236], [47.409111, 8.48404], [47.377623, 8.52654], [47.386968, 8.51897], [47.362559, 8.563765], [47.391973, 8.492234], [47.367872, 8.501476], [47.399637, 8.495155], [47.391798, 8.518935], [47.355221, 8.574584], [47.366802, 8.544498], [47.340121, 8.525722], [47.40209, 8.498396], [47.40007, 8.536511], [47.408036, 8.577804], [47.413998, 8.549321], [47.382762, 8.514713], [47.371508, 8.546237], [47.423899, 8.54302], [47.377698, 8.537586], [47.407383, 8.585647], [47.366357, 8.544939], [47.356674, 8.532162], [47.375857, 8.495809], [47.386948, 8.48497], [47.364482, 8.553823], [47.402444, 8.576585], [47.379698, 8.527801], [47.403038, 8.547873], [47.403869, 8.568864], [47.389249, 8.510698], [47.382941, 8.514743], [47.378504, 8.539894], [47.328284, 8.52945], [47.391983, 8.529893], [47.402608, 8.498831], [47.370197, 8.548805], [47.359587, 8.576967], [47.374005, 8.544687], [47.366186, 8.540288], [47.414319, 8.53923], [47.364859, 8.602142], [47.356523, 8.52337], [47.405644, 8.556566], [47.362097, 8.531373], [47.377692, 8.538222], [47.367616, 8.534638], [47.336467, 8.520196], [47.409232, 8.573245], [47.403762, 8.534229], [47.382081, 8.498806], [47.352491, 8.508185], [47.367758, 8.496205], [47.419054, 8.537008], [47.389587, 8.511989], [47.344623, 8.533821], [47.388876, 8.495498], [47.329782, 8.529918], [47.37309, 8.533082], [47.363223, 8.560205], [47.37142, 8.556339], [47.407562, 8.550763], [47.376775, 8.535303], [47.398123, 8.535994], [47.377939, 8.541524], [47.376024, 8.510922], [47.401339, 8.58826], [47.391362, 8.53751], [47.40679, 8.536477], [47.391101, 8.522285], [47.422423, 8.55057], [47.369993, 8.522955], [47.402651, 8.535637], [47.36258, 8.534428], [47.373332, 8.515012], [47.403175, 8.580005], [47.388866, 8.539923], [47.418916, 8.544864], [47.397227, 8.491173], [47.364604, 8.566191], [47.39974, 8.518089], [47.374468, 8.535811], [47.367548, 8.546394], [47.378107, 8.509348], [47.414266, 8.546676], [47.40931, 8.577261], [47.368161, 8.544394], [47.372665, 8.498685], [47.338773, 8.538796], [47.382809, 8.527957], [47.378308, 8.517761], [47.40514, 8.481551], [47.40513, 8.481577], [47.367825, 8.523904], [47.372047, 8.568534], [47.37301, 8.562053], [47.385895, 8.492896], [47.409261, 8.543339], [47.340968, 8.536935], [47.384767, 8.537679], [47.386006, 8.51895], [47.386513, 8.529079], [47.395776, 8.526434], [47.372584, 8.534329], [47.38958, 8.521446], [47.381513, 8.502954], [47.414413, 8.483588], [47.369256, 8.529494], [47.400876, 8.594079], [47.386897, 8.534081], [47.385616, 8.508598], [47.369898, 8.510891], [47.37136, 8.542911], [47.364437, 8.536889], [47.366452, 8.540638], [47.374189, 8.544307], [47.359939, 8.559355], [47.391391, 8.52306], [47.409638, 8.505066], [47.362771, 8.53524], [47.393363, 8.497614], [47.36227, 8.559311], [47.374092, 8.553468], [47.397404, 8.532177], [47.412509, 8.538556], [47.398137, 8.465941], [47.353227, 8.534289], [47.383627, 8.536543], [47.363679, 8.532386], [47.37388, 8.524743], [47.386723, 8.523984], [47.348465, 8.523206], [47.398382, 8.541868], [47.389091, 8.53043], [47.384727, 8.534327], [47.383061, 8.530717], [47.373639, 8.535], [47.340314, 8.519467], [47.368574, 8.524595], [47.367373, 8.493999], [47.379803, 8.506853], [47.386796, 8.547496], [47.384781, 8.509363], [47.385408, 8.5087], [47.375418, 8.540876], [47.370406, 8.524897], [47.348031, 8.562876], [47.375655, 8.493316], [47.371173, 8.531374], [47.357817, 8.521622], [47.332427, 8.529839], [47.378865, 8.511072], [47.36225, 8.575991], [47.410432, 8.548756], [47.399518, 8.549165], [47.367081, 8.548264], [47.37048, 8.524739], [47.391321, 8.536225], [47.391087, 8.520921], [47.379024, 8.533469], [47.414457, 8.480673], [47.391855, 8.517704], [47.428677, 8.543808], [47.413137, 8.546242], [47.400803, 8.48862], [47.368162, 8.536807], [47.370188, 8.518431], [47.411701, 8.525978], [47.385769, 8.542123], [47.387136, 8.526946], [47.407604, 8.582379], [47.39087, 8.523022], [47.385193, 8.508682], [47.385084, 8.50872], [47.371444, 8.535961], [47.343998, 8.535185], [47.418869, 8.544161], [47.405168, 8.480399], [47.367639, 8.545402], [47.413624, 8.477291], [47.427195, 8.546362], [47.407229, 8.550743], [47.3706, 8.517671], [47.399707, 8.543432], [47.391299, 8.535628], [47.383718, 8.508653], [47.339785, 8.529818], [47.40034, 8.533681], [47.348267, 8.562656], [47.375349, 8.485417], [47.367715, 8.495052], [47.339182, 8.526008], [47.388134, 8.474066], [47.375918, 8.510721], [47.352971, 8.527096], [47.377202, 8.529207], [47.423707, 8.516627], [47.388305, 8.49101], [47.385515, 8.542317], [47.373354, 8.525195], [47.387824, 8.529292], [47.372577, 8.500392], [47.384019, 8.480608], [47.42324, 8.549818], [47.355403, 8.559656], [47.375341, 8.519515], [47.375713, 8.526832], [47.360449, 8.54945], [47.36431, 8.548259], [47.414054, 8.518737], [47.431327, 8.516476], [47.406766, 8.567852], [47.392425, 8.491012], [47.384686, 8.503189], [47.39064, 8.479532], [47.41075, 8.550326], [47.385014, 8.50852], [47.406446, 8.549866], [47.383406, 8.530473], [47.389743, 8.511688], [47.39885, 8.533293], [47.373988, 8.544594], [47.363099, 8.550763], [47.366355, 8.545111], [47.40779, 8.490838], [47.368025, 8.522664], [47.402309, 8.493154], [47.408854, 8.539846], [47.36035, 8.523884], [47.377477, 8.503628], [47.326706, 8.517379], [47.379016, 8.516107], [47.389356, 8.529018], [47.360862, 8.588141], [47.405325, 8.577269], [47.372571, 8.517552], [47.355816, 8.554105], [47.378036, 8.532349], [47.37719, 8.554897], [47.389558, 8.539023], [47.420945, 8.502125], [47.369508, 8.466779], [47.382404, 8.540279], [47.386652, 8.481878], [47.374306, 8.51764], [47.389165, 8.483503], [47.39476, 8.525433], [47.364981, 8.545877], [47.374823, 8.525848], [47.370359, 8.543181], [47.373067, 8.536524], [47.36651, 8.553336], [47.364374, 8.531248], [47.364102, 8.547487], [47.387344, 8.498699], [47.398387, 8.53943], [47.349923, 8.57459], [47.362141, 8.559613], [47.39303, 8.47477], [47.36844, 8.524486], [47.387102, 8.489781], [47.380071, 8.54815], [47.380189, 8.520527], [47.376602, 8.52697], [47.373748, 8.503116], [47.369031, 8.540943], [47.380477, 8.528108], [47.404674, 8.588477], [47.398701, 8.541477], [47.387187, 8.553676], [47.366924, 8.543057], [47.377514, 8.527611], [47.378885, 8.531042], [47.4026, 8.535304], [47.374937, 8.579295], [47.376327, 8.537055], [47.374067, 8.542901], [47.384773, 8.531362], [47.397111, 8.530793], [47.373162, 8.53687], [47.37902, 8.544235], [47.371635, 8.538626], [47.390709, 8.478805], [47.382772, 8.52993], [47.368859, 8.538212], [47.369301, 8.541849], [47.409386, 8.549967], [47.396715, 8.550656], [47.391075, 8.486163], [47.391082, 8.522404], [47.387819, 8.544047], [47.370411, 8.522487], [47.365816, 8.533727], [47.363206, 8.506017], [47.379234, 8.495426], [47.397131, 8.493741], [47.356569, 8.534662], [47.410759, 8.53432], [47.418711, 8.557768], [47.364651, 8.598722], [47.368105, 8.541797], [47.36747, 8.544287], [47.415909, 8.5452], [47.376329, 8.543464], [47.365274, 8.492395], [47.399533, 8.51521], [47.340029, 8.519157], [47.420945, 8.502111], [47.390124, 8.510397], [47.387061, 8.518667], [47.428554, 8.545356], [47.41877, 8.540395], [47.357104, 8.535242], [47.382696, 8.500408], [47.362249, 8.547422], [47.384155, 8.509046], [47.408832, 8.54867], [47.431756, 8.54354], [47.376061, 8.529024], [47.373733, 8.545847], [47.370793, 8.535365], [47.378228, 8.526248], [47.362503, 8.518805], [47.391084, 8.522272], [47.386575, 8.490406], [47.413927, 8.518827], [47.367772, 8.560473], [47.387861, 8.51769], [47.40174, 8.550046], [47.378766, 8.526484], [47.362131, 8.547552], [47.388254, 8.551208], [47.383067, 8.513845], [47.375148, 8.528569], [47.34093, 8.537186], [47.411614, 8.546594], [47.397673, 8.533203], [47.386214, 8.498346], [47.370672, 8.516733], [47.371551, 8.556739], [47.385, 8.487461], [47.374052, 8.532254], [47.354072, 8.523823], [47.386521, 8.490405], [47.380823, 8.54949], [47.357881, 8.508995], [47.368258, 8.529461], [47.375395, 8.519516], [47.361616, 8.554372], [47.380346, 8.542872], [47.359252, 8.569864], [47.390864, 8.533116], [47.38817, 8.520279], [47.376967, 8.569499], [47.362337, 8.52689], [47.378291, 8.53393], [47.368704, 8.499997], [47.380258, 8.541784], [47.409521, 8.537779], [47.391799, 8.518922], [47.391397, 8.538597], [47.362196, 8.559455], [47.390406, 8.539703], [47.366425, 8.540664], [47.34283, 8.536047], [47.39351, 8.529249], [47.395582, 8.535557], [47.36738, 8.496276], [47.375857, 8.53637], [47.379273, 8.491136], [47.364741, 8.568803], [47.389228, 8.541546], [47.367857, 8.546148], [47.358286, 8.581202], [47.378217, 8.527426], [47.397905, 8.532479], [47.373479, 8.534745], [47.381451, 8.542153], [47.356665, 8.523624], [47.374267, 8.518898], [47.382202, 8.550089], [47.394068, 8.493349], [47.378468, 8.528451], [47.383029, 8.57515], [47.381424, 8.54206], [47.422824, 8.494396], [47.364246, 8.521885], [47.358272, 8.515304], [47.399273, 8.533328], [47.364715, 8.532208], [47.383265, 8.529159], [47.337902, 8.538685], [47.379912, 8.528905], [47.383208, 8.539872], [47.383596, 8.52845], [47.362753, 8.518995], [47.369383, 8.541758], [47.376034, 8.538585], [47.358263, 8.585358], [47.336476, 8.521123], [47.387242, 8.48826], [47.419994, 8.506744], [47.390285, 8.509513], [47.402929, 8.57576], [47.369613, 8.533633], [47.398669, 8.539171], [47.397693, 8.4884], [47.421172, 8.549722], [47.369809, 8.536682], [47.414627, 8.551255], [47.377284, 8.525249], [47.367084, 8.541366], [47.406812, 8.58064], [47.36999, 8.510668], [47.398724, 8.590707], [47.37776, 8.53772], [47.378617, 8.492037], [47.405972, 8.558866], [47.396089, 8.485772], [47.368564, 8.496591], [47.411524, 8.544711], [47.381405, 8.53753], [47.376299, 8.511351], [47.356381, 8.551496], [47.378432, 8.543614], [47.425337, 8.54688], [47.419265, 8.547933], [47.362251, 8.547276], [47.391044, 8.522642], [47.373103, 8.527971], [47.363609, 8.554785], [47.373561, 8.529], [47.34876, 8.578523], [47.379372, 8.542229], [47.376964, 8.521932], [47.36795, 8.541132], [47.381167, 8.517898], [47.366562, 8.553602], [47.383211, 8.506034], [47.349143, 8.56421], [47.390269, 8.510268], [47.397017, 8.530261], [47.355278, 8.512172], [47.399809, 8.541262], [47.370188, 8.509732], [47.376955, 8.542841], [47.409012, 8.547733], [47.363443, 8.546745], [47.374534, 8.539269], [47.404176, 8.560471], [47.35236, 8.524092], [47.388048, 8.519852], [47.402854, 8.553938], [47.406736, 8.503723], [47.345385, 8.518829], [47.370088, 8.511742], [47.425604, 8.498241], [47.397891, 8.507043], [47.368619, 8.499465], [47.377523, 8.548402], [47.36342, 8.51983], [47.367719, 8.535077], [47.354713, 8.558411], [47.419809, 8.504355], [47.366809, 8.544723], [47.358284, 8.587742], [47.358586, 8.534452], [47.372402, 8.538285], [47.37211, 8.544409], [47.426831, 8.49197], [47.374299, 8.524115], [47.362222, 8.547474], [47.354806, 8.523229], [47.376342, 8.518238], [47.422545, 8.499334], [47.383399, 8.499349], [47.417191, 8.541887], [47.388516, 8.470629], [47.414244, 8.483399], [47.364455, 8.530257], [47.367117, 8.539751], [47.352404, 8.576576], [47.370695, 8.549385], [47.369844, 8.543436], [47.367831, 8.496087], [47.375248, 8.517924], [47.378929, 8.509033], [47.374751, 8.552264], [47.422845, 8.542202], [47.389128, 8.482628], [47.390939, 8.47824], [47.378385, 8.540977], [47.404344, 8.485033], [47.363094, 8.549386], [47.335067, 8.527459], [47.374453, 8.539294], [47.408712, 8.546229], [47.392916, 8.542523], [47.359562, 8.511954], [47.389301, 8.510818], [47.372959, 8.524168], [47.405139, 8.479577], [47.33419, 8.519317], [47.37018, 8.539311], [47.377909, 8.511291], [47.367612, 8.538821], [47.387927, 8.536473], [47.377489, 8.526405], [47.388783, 8.517258], [47.419255, 8.53574], [47.36127, 8.534084], [47.377171, 8.540025], [47.371718, 8.547804], [47.373626, 8.536377], [47.405073, 8.572706], [47.360381, 8.553698], [47.364511, 8.546119], [47.369683, 8.466293], [47.375722, 8.537347], [47.377322, 8.522204], [47.359128, 8.551156], [47.366419, 8.545046], [47.407723, 8.584038], [47.377335, 8.546372], [47.348548, 8.534378], [47.335059, 8.52734], [47.344045, 8.52833], [47.373486, 8.513916], [47.371612, 8.54759], [47.414235, 8.5405], [47.37474, 8.581052], [47.41406, 8.541928], [47.372173, 8.547271], [47.356715, 8.523043], [47.37435, 8.538735], [47.377197, 8.540171], [47.385863, 8.532179], [47.369671, 8.525637], [47.381129, 8.518163], [47.378547, 8.522997], [47.365814, 8.547165], [47.379504, 8.5274], [47.409982, 8.543195], [47.39984, 8.490708], [47.399877, 8.490576], [47.378768, 8.542323], [47.388334, 8.490772], [47.372406, 8.515947], [47.410225, 8.546963], [47.394454, 8.493436], [47.392745, 8.522557], [47.362482, 8.547559], [47.364814, 8.566792], [47.373118, 8.536816], [47.357092, 8.512593], [47.363607, 8.533377], [47.37236, 8.565098], [47.358287, 8.520387], [47.428766, 8.48888], [47.368738, 8.501216], [47.35843, 8.525288], [47.36531, 8.521563], [47.393326, 8.520993], [47.394604, 8.521906], [47.37289, 8.547445], [47.374779, 8.527648], [47.362779, 8.567914], [47.398243, 8.536659], [47.376948, 8.512159], [47.388688, 8.472474], [47.429754, 8.544029], [47.421013, 8.50748], [47.36908, 8.52528], [47.376726, 8.548981], [47.396042, 8.52685], [47.360753, 8.585491], [47.387592, 8.547035], [47.351869, 8.522746], [47.396805, 8.529833], [47.387121, 8.477794], [47.360957, 8.531046], [47.364689, 8.554715], [47.362159, 8.531441], [47.381087, 8.503289], [47.373943, 8.536118], [47.415484, 8.54637], [47.342466, 8.530693], [47.371718, 8.547791], [47.376, 8.537419], [47.383245, 8.484619], [47.407427, 8.587516], [47.374489, 8.540221], [47.402008, 8.535173], [47.413282, 8.56754], [47.389196, 8.543002], [47.388307, 8.536269], [47.371517, 8.53015], [47.423838, 8.552177], [47.370088, 8.511742], [47.393004, 8.514045], [47.357497, 8.526937], [47.376119, 8.503495], [47.369794, 8.53545], [47.374974, 8.517349], [47.344868, 8.533601], [47.385458, 8.524541], [47.348306, 8.562432], [47.368735, 8.534237], [47.422654, 8.499243], [47.364909, 8.545889], [47.38044, 8.548079], [47.390178, 8.536254], [47.369428, 8.541732], [47.38662, 8.518618], [47.400633, 8.534085], [47.39951, 8.503141], [47.364679, 8.554781], [47.364466, 8.532918], [47.403816, 8.496523], [47.370606, 8.558559], [47.369988, 8.549053], [47.370649, 8.54851], [47.396999, 8.530248], [47.417353, 8.554029], [47.374414, 8.530103], [47.409702, 8.549907], [47.408806, 8.54011], [47.403716, 8.557838], [47.364601, 8.532855], [47.40477, 8.488566], [47.36025, 8.566271], [47.375718, 8.510876], [47.377018, 8.5597], [47.399839, 8.54468], [47.409512, 8.537766], [47.383333, 8.515227], [47.420184, 8.535494], [47.407112, 8.573942], [47.385025, 8.532334], [47.398644, 8.512145], [47.36673, 8.54263], [47.378653, 8.529806], [47.360223, 8.594442], [47.370922, 8.53125], [47.369038, 8.541142], [47.377292, 8.512828], [47.404928, 8.557148], [47.379543, 8.542167], [47.423533, 8.548406], [47.389673, 8.512494], [47.367036, 8.541669], [47.386354, 8.518242], [47.403875, 8.569129], [47.369146, 8.52311], [47.418411, 8.546882], [47.364427, 8.534188], [47.361734, 8.517333], [47.390065, 8.523496], [47.358328, 8.505324], [47.377908, 8.54298], [47.335516, 8.51888], [47.407047, 8.576842], [47.39234, 8.476585], [47.391348, 8.516131], [47.366078, 8.533679], [47.373841, 8.536461], [47.360447, 8.53175], [47.374274, 8.543845], [47.396738, 8.529315], [47.370118, 8.524944], [47.391676, 8.518601], [47.425908, 8.493608], [47.369509, 8.525647], [47.385728, 8.482562], [47.368324, 8.538638], [47.379061, 8.53335], [47.422222, 8.549015], [47.362333, 8.547132], [47.37106, 8.547949], [47.363337, 8.514228], [47.371601, 8.535488], [47.367505, 8.494319], [47.3931, 8.47403], [47.387184, 8.539875], [47.384787, 8.55254], [47.365748, 8.521929], [47.356359, 8.522652], [47.390072, 8.511098], [47.384209, 8.510967], [47.38008, 8.520644], [47.390904, 8.492041], [47.393283, 8.586072], [47.37983, 8.544146], [47.337083, 8.519653], [47.357454, 8.521893], [47.377875, 8.57418], [47.35804, 8.519826], [47.427448, 8.536877], [47.390478, 8.488456], [47.414754, 8.553034], [47.377796, 8.537707], [47.378426, 8.540475], [47.379426, 8.52516], [47.378795, 8.54239], [47.377799, 8.511593], [47.393502, 8.48833], [47.369165, 8.503607], [47.390179, 8.52281], [47.404713, 8.572685], [47.36714, 8.531715], [47.387891, 8.498896], [47.375185, 8.553001], [47.394102, 8.527499], [47.378307, 8.530342], [47.374877, 8.549459], [47.374239, 8.519056], [47.401661, 8.547938], [47.368346, 8.493833], [47.393227, 8.512328], [47.390797, 8.523087], [47.377762, 8.521326], [47.404653, 8.550199], [47.411373, 8.544469], [47.381736, 8.529114], [47.378064, 8.526483], [47.387846, 8.536537], [47.364284, 8.53118], [47.349389, 8.527275], [47.370593, 8.543094], [47.340946, 8.526904], [47.396468, 8.528396], [47.377441, 8.499641], [47.337065, 8.519692], [47.379813, 8.506826], [47.396355, 8.513623], [47.38451, 8.543024], [47.377378, 8.512353], [47.375419, 8.529409], [47.380159, 8.527572], [47.39602, 8.4854], [47.398104, 8.536139], [47.382251, 8.504796], [47.357157, 8.522006], [47.37017, 8.548792], [47.383254, 8.539793], [47.376867, 8.527558], [47.380562, 8.534427], [47.408023, 8.546732], [47.405472, 8.503353], [47.372777, 8.558247], [47.412474, 8.509681], [47.37189, 8.522014], [47.387052, 8.533885], [47.386511, 8.497398], [47.389926, 8.512301], [47.404708, 8.552903], [47.356389, 8.523235], [47.369055, 8.553429], [47.384883, 8.532092], [47.361196, 8.53244], [47.373608, 8.536403], [47.368938, 8.540319], [47.376344, 8.558667], [47.3752, 8.515328], [47.376758, 8.538057], [47.414286, 8.51898], [47.377417, 8.52643], [47.38335, 8.515281], [47.392622, 8.523151], [47.368061, 8.538923], [47.363714, 8.533498], [47.397368, 8.541569], [47.376829, 8.538138], [47.369582, 8.54347], [47.376693, 8.538307], [47.386936, 8.53473], [47.372935, 8.547472], [47.349776, 8.533927], [47.378996, 8.530713], [47.368727, 8.548205], [47.361737, 8.549304], [47.37799, 8.526746], [47.372364, 8.534749], [47.413707, 8.556153], [47.421439, 8.550072], [47.384092, 8.531096], [47.377634, 8.527309], [47.39063, 8.508249], [47.397987, 8.539859], [47.367094, 8.5375], [47.388927, 8.550494], [47.391992, 8.51164], [47.343082, 8.519801], [47.351738, 8.575635], [47.372574, 8.534462], [47.350703, 8.601939], [47.374473, 8.495729], [47.376082, 8.577227], [47.399223, 8.542402], [47.403938, 8.568269], [47.398752, 8.590562], [47.385983, 8.490182], [47.380562, 8.534427], [47.393402, 8.537725], [47.368003, 8.540246], [47.413007, 8.536287], [47.395408, 8.518717], [47.373807, 8.542869], [47.344842, 8.533415], [47.389946, 8.536037], [47.374932, 8.536192], [47.392016, 8.526437], [47.343062, 8.530494], [47.372757, 8.538808], [47.378716, 8.527953], [47.358505, 8.555128], [47.376583, 8.528029], [47.386839, 8.551483], [47.364098, 8.546031], [47.41915, 8.547719], [47.367576, 8.529367], [47.423376, 8.549702], [47.379409, 8.521253], [47.398932, 8.520855], [47.413586, 8.553858], [47.392268, 8.516825], [47.376004, 8.527461], [47.370792, 8.543018], [47.392614, 8.523137], [47.335153, 8.519243], [47.421179, 8.548092], [47.363024, 8.548272], [47.412717, 8.552488], [47.375412, 8.545299], [47.374438, 8.544643], [47.395795, 8.545272], [47.421775, 8.546952], [47.409008, 8.53969], [47.421935, 8.537651], [47.408562, 8.550559], [47.415527, 8.54649], [47.370882, 8.549574], [47.369821, 8.552306], [47.386816, 8.518821], [47.385728, 8.493488], [47.371063, 8.542918], [47.378404, 8.525696], [47.38173, 8.536424], [47.404397, 8.574692], [47.382491, 8.515767], [47.383306, 8.530484], [47.397978, 8.524744], [47.379374, 8.490913], [47.370814, 8.548222], [47.374245, 8.527001], [47.383253, 8.539873], [47.374573, 8.517023], [47.371634, 8.502147], [47.356463, 8.535481], [47.355859, 8.535561], [47.387045, 8.485117], [47.375416, 8.484982], [47.402397, 8.503185], [47.375936, 8.525155], [47.384655, 8.542855], [47.389285, 8.521242], [47.38948, 8.521537], [47.382384, 8.530094], [47.420113, 8.500677], [47.426822, 8.491956], [47.361799, 8.549332], [47.374922, 8.525876], [47.365385, 8.546891], [47.37258, 8.534779], [47.373494, 8.519849], [47.386788, 8.547495], [47.367109, 8.558353], [47.415051, 8.527477], [47.393683, 8.537492], [47.368261, 8.524403], [47.358166, 8.518929], [47.409099, 8.545191], [47.361528, 8.565239], [47.373636, 8.542852], [47.40427, 8.485177], [47.380168, 8.550232], [47.407908, 8.574396], [47.414476, 8.553863], [47.339768, 8.535415], [47.390538, 8.53903], [47.369721, 8.531742], [47.373468, 8.513969], [47.362496, 8.534744], [47.37849, 8.523234], [47.37333, 8.531511], [47.337484, 8.524862], [47.388998, 8.515434], [47.378903, 8.523388], [47.383289, 8.530431], [47.389678, 8.511898], [47.367706, 8.495025], [47.399464, 8.477571], [47.377757, 8.507315], [47.405017, 8.557176], [47.380519, 8.552967], [47.427734, 8.490609], [47.387948, 8.519956], [47.392042, 8.512092], [47.40613, 8.504108], [47.365217, 8.545683], [47.373389, 8.531909], [47.388937, 8.530493], [47.377063, 8.54197], [47.363463, 8.551247], [47.386245, 8.531789], [47.368321, 8.551203], [47.367128, 8.564749], [47.373942, 8.474942], [47.364927, 8.53167], [47.37271, 8.542793], [47.399002, 8.541894], [47.386806, 8.547483], [47.389347, 8.521402], [47.379816, 8.526744], [47.381373, 8.538059], [47.388186, 8.514716], [47.395875, 8.532132], [47.371117, 8.542919], [47.360291, 8.567543], [47.409036, 8.548012], [47.370598, 8.52077], [47.388008, 8.528925], [47.427738, 8.548812], [47.340696, 8.519091], [47.377824, 8.532888], [47.382335, 8.48378], [47.365031, 8.548129], [47.379925, 8.546479], [47.398294, 8.536991], [47.413212, 8.545939], [47.36491, 8.529683], [47.370255, 8.539022], [47.388424, 8.488787], [47.397023, 8.53054], [47.36524, 8.564656], [47.376757, 8.538176], [47.373487, 8.534851], [47.34436, 8.530269], [47.353697, 8.558429], [47.372686, 8.534941], [47.356416, 8.523248], [47.380161, 8.520619], [47.366642, 8.524423], [47.397518, 8.532471], [47.364223, 8.526267], [47.410938, 8.550423], [47.357256, 8.521968], [47.407075, 8.552767], [47.414308, 8.550798], [47.403949, 8.561605], [47.370294, 8.492389], [47.39682, 8.534006], [47.356472, 8.551432], [47.365984, 8.531175], [47.362099, 8.554607], [47.406816, 8.569258], [47.370284, 8.535884], [47.370039, 8.534277], [47.357439, 8.58865], [47.366925, 8.545732], [47.362496, 8.533804], [47.356861, 8.507412], [47.365425, 8.538882], [47.378191, 8.52642], [47.421434, 8.548694], [47.421434, 8.548694], [47.364577, 8.566231], [47.383482, 8.531878], [47.374997, 8.539755], [47.36538, 8.530448], [47.386941, 8.528558], [47.363679, 8.549345], [47.375513, 8.486202], [47.370358, 8.548875], [47.42685, 8.491877], [47.351959, 8.558591], [47.40718, 8.546476], [47.37345, 8.531222], [47.325805, 8.518538], [47.369805, 8.526646], [47.386621, 8.54136], [47.383238, 8.506074], [47.37429, 8.47916], [47.393784, 8.502748], [47.408877, 8.545888], [47.360296, 8.56528], [47.419698, 8.546789], [47.385944, 8.498446], [47.374113, 8.540942], [47.352368, 8.559129], [47.375447, 8.549166], [47.395269, 8.508448], [47.365775, 8.547509], [47.374728, 8.520615], [47.374145, 8.529104], [47.355784, 8.559307], [47.39054, 8.491544], [47.40908, 8.55004], [47.390695, 8.550862], [47.391692, 8.513992], [47.41877, 8.540395], [47.397946, 8.48035], [47.368568, 8.529043], [47.36969, 8.543525], [47.365186, 8.547893], [47.382049, 8.529385], [47.38344, 8.530593], [47.369115, 8.541567], [47.368731, 8.537468], [47.383062, 8.530704], [47.36129, 8.529199], [47.426183, 8.502852], [47.41151, 8.526239], [47.378664, 8.54191], [47.360457, 8.547676], [47.418238, 8.482377], [47.369365, 8.541744], [47.36186, 8.553252], [47.335326, 8.519088], [47.418261, 8.5466], [47.385243, 8.54247], [47.385678, 8.542174], [47.38509, 8.499264], [47.35849, 8.517876], [47.343696, 8.530057], [47.378616, 8.505928], [47.38696, 8.5284], [47.399257, 8.542535], [47.405127, 8.5854], [47.377038, 8.528449], [47.356488, 8.53564], [47.366876, 8.549928], [47.357792, 8.554464], [47.425924, 8.493754], [47.373214, 8.542804], [47.36709, 8.53979], [47.421439, 8.536898], [47.360608, 8.504946], [47.399532, 8.494848], [47.389195, 8.521253], [47.369204, 8.527454], [47.376238, 8.544508], [47.402413, 8.553001], [47.383403, 8.484079], [47.369586, 8.539365], [47.353831, 8.601253], [47.363099, 8.522312], [47.351981, 8.560087], [47.365387, 8.5316], [47.350242, 8.530323], [47.348317, 8.533209], [47.349524, 8.533961], [47.403672, 8.571497], [47.398651, 8.532547], [47.343332, 8.518986], [47.381368, 8.512777], [47.417989, 8.544978], [47.371989, 8.51239], [47.37222, 8.520405], [47.410684, 8.571924], [47.369344, 8.526914], [47.388632, 8.485731], [47.413212, 8.475136], [47.335092, 8.518091], [47.365876, 8.531186], [47.360121, 8.535741], [47.385775, 8.548931], [47.358593, 8.52132], [47.392714, 8.523007], [47.406925, 8.550538], [47.384412, 8.532427], [47.373326, 8.531948], [47.376527, 8.521552], [47.380945, 8.518583], [47.375346, 8.540888], [47.378573, 8.542094], [47.343344, 8.525391], [47.389803, 8.529266], [47.372005, 8.522241], [47.380494, 8.528268], [47.363151, 8.52925], [47.370852, 8.554605], [47.378929, 8.545293], [47.38879, 8.530848], [47.376916, 8.541371], [47.375331, 8.530188], [47.395494, 8.531502], [47.366774, 8.535163], [47.389162, 8.520935], [47.399614, 8.542808], [47.385517, 8.508583], [47.370179, 8.548805], [47.373501, 8.542823], [47.373924, 8.533403], [47.365108, 8.553214], [47.335942, 8.537613], [47.408688, 8.580123], [47.378542, 8.565811], [47.396777, 8.541358], [47.389118, 8.524695], [47.328707, 8.517909], [47.354344, 8.523643], [47.388257, 8.497287], [47.391724, 8.518285], [47.36789, 8.522701], [47.394629, 8.487969], [47.368139, 8.508605], [47.381047, 8.528756], [47.37058, 8.524543], [47.350045, 8.566731], [47.383457, 8.515402], [47.370175, 8.540808], [47.392984, 8.528735], [47.388493, 8.491093], [47.372211, 8.520471], [47.379604, 8.54426], [47.377137, 8.554803], [47.360371, 8.523633], [47.357008, 8.571246], [47.368632, 8.544086], [47.367928, 8.557431], [47.368966, 8.519293], [47.385635, 8.482931], [47.422108, 8.504759], [47.396357, 8.482942], [47.368739, 8.523274], [47.397816, 8.541856], [47.372289, 8.521678], [47.409735, 8.543667], [47.365557, 8.539203], [47.402418, 8.535552], [47.412262, 8.546475], [47.40081, 8.491866], [47.370399, 8.514158], [47.378055, 8.526509], [47.406826, 8.48703], [47.373287, 8.535099], [47.39013, 8.525153], [47.360143, 8.54763], [47.374815, 8.515122], [47.371236, 8.525629], [47.387709, 8.540508], [47.376468, 8.51154], [47.414103, 8.519228], [47.363878, 8.566851], [47.391422, 8.478554], [47.376473, 8.528278], [47.383362, 8.548298], [47.36927, 8.510786], [47.376747, 8.49784], [47.411053, 8.546941], [47.387252, 8.488168], [47.356936, 8.535808], [47.364918, 8.554322], [47.413075, 8.517631], [47.359327, 8.569628], [47.409439, 8.54639], [47.369371, 8.537348], [47.366577, 8.540799], [47.36909, 8.539448], [47.381506, 8.530672], [47.402088, 8.497615], [47.364831, 8.53797], [47.404497, 8.533502], [47.38374, 8.51211], [47.364656, 8.566418], [47.429736, 8.543048], [47.395534, 8.532099], [47.408866, 8.574787], [47.412591, 8.525161], [47.366148, 8.545186], [47.374552, 8.489957], [47.41212, 8.564057], [47.410877, 8.563262], [47.388967, 8.515831], [47.36412, 8.537147], [47.380371, 8.507778], [47.335911, 8.540867], [47.383116, 8.540175], [47.366121, 8.533813], [47.374469, 8.53944], [47.419139, 8.507787], [47.387563, 8.529353], [47.360804, 8.551827], [47.386661, 8.497692], [47.377468, 8.54844], [47.374344, 8.524116], [47.392142, 8.524505], [47.427886, 8.490639], [47.419782, 8.548394], [47.403065, 8.588403], [47.368423, 8.54714], [47.391288, 8.473438], [47.409093, 8.562588], [47.374166, 8.542982], [47.373093, 8.52421], [47.38655, 8.528047], [47.375728, 8.527203], [47.384427, 8.531858], [47.398567, 8.591141], [47.370088, 8.512775], [47.363913, 8.566971], [47.410721, 8.556183], [47.351763, 8.525483], [47.368911, 8.540331], [47.356011, 8.551687], [47.393363, 8.524795], [47.351661, 8.524872], [47.36598, 8.540178], [47.375419, 8.513134], [47.409853, 8.537826], [47.373933, 8.53151], [47.382846, 8.5316], [47.374016, 8.546382], [47.407488, 8.562064], [47.373871, 8.544658], [47.390253, 8.491485], [47.388048, 8.519813], [47.357325, 8.570049], [47.409252, 8.543365], [47.377362, 8.548253], [47.405963, 8.558852], [47.37581, 8.484221], [47.375257, 8.517911], [47.370464, 8.532075], [47.368274, 8.534413], [47.368765, 8.50119], [47.386175, 8.535324], [47.409432, 8.54048], [47.378804, 8.54239], [47.370161, 8.548805], [47.371433, 8.524719], [47.376804, 8.535091], [47.398864, 8.542275], [47.373182, 8.529111], [47.373288, 8.533099], [47.37959, 8.524965], [47.338025, 8.52474], [47.366922, 8.523317], [47.391031, 8.521171], [47.379995, 8.521013], [47.366612, 8.535147], [47.380133, 8.540735], [47.403427, 8.570842], [47.375304, 8.485456], [47.374823, 8.525834], [47.413754, 8.520043], [47.373174, 8.503926], [47.355434, 8.603763], [47.372384, 8.53455], [47.330269, 8.516287], [47.37818, 8.527545], [47.397037, 8.503992], [47.365107, 8.553307], [47.410571, 8.538039], [47.412288, 8.51523], [47.368052, 8.53981], [47.356694, 8.523413], [47.365667, 8.5465], [47.415508, 8.546622], [47.340184, 8.519981], [47.357944, 8.520473], [47.397136, 8.530979], [47.409834, 8.51787], [47.398628, 8.53301], [47.373617, 8.536377], [47.334776, 8.533487], [47.393337, 8.527497], [47.385279, 8.494367], [47.378174, 8.526247], [47.375634, 8.553103], [47.353268, 8.561862], [47.37445, 8.54614], [47.378138, 8.493285], [47.379196, 8.538054], [47.377715, 8.51183], [47.421727, 8.550012], [47.378849, 8.530962], [47.401784, 8.517866], [47.412441, 8.517114], [47.399434, 8.517182], [47.409708, 8.54458], [47.392483, 8.515902], [47.376182, 8.536191], [47.411996, 8.56102], [47.36329, 8.575458], [47.39569, 8.516444], [47.362428, 8.551291], [47.367707, 8.539181], [47.37607, 8.488305], [47.383139, 8.529169], [47.368163, 8.545122], [47.385906, 8.498578], [47.37602, 8.541842], [47.405312, 8.547126], [47.397849, 8.535525], [47.394126, 8.488939], [47.374889, 8.516858], [47.389612, 8.512268], [47.33125, 8.513435], [47.374048, 8.475156], [47.340983, 8.526852], [47.432598, 8.527743], [47.37518, 8.518453], [47.356539, 8.523608], [47.393535, 8.483655], [47.369573, 8.543483], [47.393434, 8.500622], [47.39792, 8.501904], [47.403452, 8.488129], [47.367506, 8.535761], [47.370572, 8.512957], [47.377537, 8.492174], [47.379875, 8.558145], [47.374064, 8.486293], [47.377207, 8.540013], [47.402929, 8.57576], [47.422586, 8.550507], [47.373271, 8.533019], [47.367397, 8.544351], [47.419502, 8.506522], [47.382639, 8.529702], [47.380982, 8.518491], [47.370188, 8.539444], [47.374397, 8.542325], [47.384979, 8.495738], [47.370251, 8.54882], [47.393726, 8.512854], [47.406773, 8.532595], [47.356572, 8.551315], [47.368172, 8.496147], [47.410402, 8.548159], [47.397854, 8.533975], [47.395142, 8.525931], [47.41411, 8.548899], [47.400026, 8.545824], [47.357621, 8.557267], [47.383131, 8.531964], [47.372509, 8.517405], [47.362723, 8.53549], [47.40676, 8.541485], [47.374451, 8.546047], [47.36795, 8.541119], [47.371501, 8.547879], [47.383334, 8.539861], [47.368167, 8.523885], [47.360832, 8.561041], [47.363993, 8.547591], [47.402171, 8.499418], [47.391185, 8.539189], [47.402955, 8.498268], [47.403472, 8.487917], [47.365346, 8.538761], [47.373968, 8.542978], [47.372374, 8.532776], [47.428226, 8.48985], [47.39317, 8.524222], [47.404929, 8.486966], [47.369494, 8.526282], [47.355386, 8.55677], [47.358839, 8.582564], [47.382127, 8.528725], [47.377477, 8.543806], [47.386144, 8.528131], [47.389012, 8.484454], [47.384385, 8.531526], [47.360588, 8.597574], [47.366037, 8.51983], [47.372829, 8.520709], [47.364061, 8.556396], [47.36522, 8.492474], [47.358252, 8.508658], [47.351901, 8.504877], [47.401224, 8.543821], [47.394759, 8.523605], [47.368769, 8.52489], [47.372953, 8.546585], [47.34801, 8.534248], [47.41717, 8.512585], [47.36261, 8.535064], [47.393004, 8.534246], [47.389701, 8.486918], [47.387277, 8.499214], [47.400963, 8.518074], [47.372882, 8.519836], [47.366607, 8.541409], [47.380985, 8.538197], [47.40309, 8.547159], [47.369548, 8.538557], [47.373181, 8.528224], [47.353702, 8.556947], [47.406211, 8.53306], [47.417239, 8.553682], [47.377666, 8.543757], [47.36453, 8.497054], [47.387935, 8.499042], [47.397527, 8.588032], [47.362346, 8.526824], [47.366204, 8.530729], [47.379748, 8.529126], [47.381623, 8.520159], [47.360932, 8.571978], [47.413919, 8.551042], [47.374523, 8.546075], [47.374385, 8.521747], [47.398861, 8.506201], [47.408399, 8.546938], [47.377353, 8.498434], [47.362876, 8.533653], [47.37198, 8.53633], [47.372339, 8.538297], [47.362159, 8.547513], [47.379576, 8.516767], [47.381925, 8.536693], [47.386257, 8.548412], [47.378006, 8.512551], [47.364965, 8.534279], [47.389682, 8.511541], [47.38814, 8.49143], [47.370178, 8.53759], [47.388102, 8.519854], [47.391705, 8.518377], [47.419809, 8.500459], [47.364604, 8.595358], [47.370182, 8.52958], [47.360202, 8.535743], [47.386529, 8.539729], [47.361591, 8.535401], [47.370331, 8.548888], [47.374214, 8.544519], [47.35664, 8.523385], [47.34405, 8.530699], [47.370516, 8.516107], [47.360596, 8.524512], [47.36798, 8.540828], [47.390768, 8.508874], [47.383886, 8.542376], [47.364371, 8.552272], [47.36468, 8.547181], [47.361616, 8.526028], [47.403837, 8.570281], [47.357702, 8.588391], [47.363826, 8.562097], [47.357392, 8.521865], [47.403173, 8.497968], [47.382011, 8.516167], [47.363344, 8.533597], [47.390909, 8.521712], [47.385126, 8.508059], [47.431376, 8.543784], [47.425259, 8.543737], [47.339277, 8.529358], [47.367672, 8.539088], [47.367009, 8.541656], [47.339805, 8.530546], [47.37803, 8.528178], [47.386344, 8.518308], [47.396254, 8.51472], [47.385993, 8.529824], [47.357479, 8.572726], [47.41739, 8.512059], [47.380617, 8.537156], [47.383723, 8.540611], [47.405177, 8.487342], [47.37302, 8.532908], [47.419728, 8.50442], [47.369081, 8.541341], [47.368446, 8.54665], [47.392359, 8.503077], [47.357903, 8.520115], [47.398115, 8.585951], [47.380636, 8.512153], [47.371169, 8.514545], [47.421009, 8.501993], [47.365254, 8.509235], [47.398564, 8.591472], [47.403663, 8.534266], [47.370408, 8.528565], [47.373006, 8.546653], [47.393419, 8.50033], [47.377441, 8.499628], [47.37669, 8.501123], [47.365753, 8.565594], [47.355398, 8.534837], [47.354022, 8.553605], [47.420533, 8.502965], [47.399786, 8.542785], [47.335754, 8.529974], [47.396336, 8.513649], [47.368936, 8.529104], [47.379925, 8.545538], [47.379884, 8.524309], [47.370732, 8.565024], [47.383865, 8.492617], [47.329934, 8.514652], [47.399538, 8.495166], [47.364259, 8.546153], [47.371463, 8.515742], [47.409092, 8.573785], [47.411874, 8.528671], [47.391426, 8.492051], [47.360423, 8.526653], [47.418515, 8.508172], [47.416462, 8.511272], [47.386195, 8.504305], [47.376861, 8.543329], [47.397109, 8.492296], [47.375841, 8.540885], [47.393347, 8.527457], [47.351228, 8.559727], [47.409485, 8.544337], [47.422668, 8.551357], [47.360711, 8.585226], [47.376459, 8.52694], [47.370253, 8.489951], [47.326405, 8.515957], [47.348365, 8.562817], [47.387491, 8.48653], [47.404714, 8.549472], [47.378647, 8.541804], [47.426301, 8.505572], [47.35613, 8.556111], [47.374886, 8.544758], [47.35439, 8.523498], [47.420743, 8.502585], [47.372549, 8.547385], [47.387642, 8.486838], [47.368834, 8.539866], [47.362489, 8.51057], [47.34482, 8.519585], [47.392448, 8.492456], [47.403077, 8.575339], [47.383272, 8.539833], [47.374789, 8.536056], [47.403489, 8.48601], [47.387231, 8.486512], [47.381038, 8.537271], [47.382709, 8.493151], [47.378583, 8.541021], [47.43078, 8.54022], [47.367284, 8.544892], [47.374403, 8.541663], [47.376934, 8.541292], [47.374978, 8.551077], [47.359783, 8.534397], [47.381534, 8.571635], [47.36753, 8.523713], [47.359279, 8.569918], [47.390705, 8.50882], [47.411206, 8.544108], [47.373816, 8.533441], [47.403676, 8.571179], [47.38619, 8.49612], [47.383075, 8.574992], [47.383896, 8.577539], [47.374555, 8.538952], [47.329383, 8.516824], [47.372245, 8.535964], [47.360164, 8.568653], [47.370953, 8.524153], [47.41964, 8.548219], [47.403091, 8.589357], [47.402351, 8.499316], [47.384483, 8.542971], [47.369513, 8.526176], [47.428327, 8.489666], [47.361344, 8.550845], [47.362499, 8.53448], [47.409133, 8.545443], [47.373772, 8.524674], [47.370325, 8.524948], [47.426589, 8.54676], [47.367364, 8.494025], [47.370822, 8.548302], [47.428572, 8.54256], [47.354973, 8.554829], [47.383229, 8.506034], [47.378026, 8.516166], [47.401169, 8.501677], [47.368724, 8.51243], [47.373742, 8.538339], [47.397568, 8.532922], [47.392163, 8.495086], [47.374813, 8.551431], [47.385101, 8.530918], [47.361944, 8.548342], [47.385068, 8.48492], [47.388417, 8.536032], [47.36719, 8.535926], [47.387133, 8.524364], [47.377371, 8.496528], [47.372154, 8.56316], [47.396274, 8.527981], [47.370571, 8.526516], [47.412583, 8.523133], [47.378189, 8.522725], [47.37741, 8.500064], [47.362856, 8.512722], [47.397026, 8.530288], [47.367651, 8.495104], [47.375616, 8.544601], [47.373479, 8.534745], [47.410479, 8.532538], [47.35254, 8.525089], [47.366157, 8.540499], [47.386446, 8.493688], [47.38649, 8.493729], [47.376861, 8.54329], [47.378392, 8.519299], [47.367025, 8.522882], [47.378858, 8.542338], [47.37867, 8.527105], [47.386967, 8.489791], [47.363737, 8.526283], [47.37806, 8.510565], [47.367924, 8.494765], [47.3616, 8.549474], [47.386941, 8.528545], [47.380492, 8.54265], [47.367495, 8.519727], [47.383124, 8.530719], [47.361417, 8.548914], [47.409503, 8.542522], [47.35076, 8.534529], [47.386843, 8.490623], [47.392082, 8.517523], [47.409548, 8.537753], [47.407857, 8.583127], [47.373645, 8.546639], [47.369488, 8.525911], [47.420817, 8.502347], [47.36366, 8.533418], [47.389705, 8.511952], [47.378256, 8.541385], [47.389473, 8.511709], [47.373241, 8.519036], [47.381984, 8.51614], [47.353232, 8.527035], [47.427871, 8.511939], [47.390598, 8.467186], [47.356381, 8.522189], [47.359359, 8.596343], [47.388275, 8.526307], [47.375881, 8.510786], [47.404654, 8.554757], [47.398032, 8.532309], [47.408472, 8.578264], [47.373747, 8.535982], [47.367888, 8.564328], [47.425982, 8.493384], [47.406984, 8.541635], [47.38803, 8.519812], [47.383011, 8.57507], [47.375569, 8.496797], [47.391659, 8.513634], [47.398445, 8.494734], [47.357015, 8.52559], [47.382472, 8.528388], [47.420506, 8.548887], [47.360295, 8.591743], [47.414833, 8.546675], [47.387871, 8.519557], [47.362256, 8.532595], [47.368489, 8.562606], [47.374794, 8.549643], [47.368863, 8.502291], [47.369433, 8.537442], [47.369454, 8.541892], [47.336337, 8.530091], [47.374889, 8.518778], [47.394338, 8.48938], [47.396745, 8.532402], [47.378637, 8.499705], [47.344306, 8.535006], [47.372062, 8.521898], [47.405822, 8.590622], [47.378867, 8.526195], [47.370688, 8.564943], [47.385616, 8.508598], [47.373168, 8.531521], [47.375551, 8.544799], [47.368745, 8.540765], [47.396404, 8.540873], [47.392258, 8.533197], [47.375161, 8.515671], [47.36969, 8.525531], [47.366252, 8.540846], [47.361616, 8.506753], [47.409964, 8.535668], [47.398515, 8.494934], [47.366647, 8.494792], [47.370768, 8.526559], [47.365835, 8.556195], [47.400557, 8.548683], [47.374685, 8.537604], [47.393859, 8.504353], [47.384747, 8.531335], [47.383021, 8.545377], [47.363133, 8.560282], [47.366521, 8.540944], [47.403635, 8.485774], [47.398479, 8.500789], [47.381382, 8.540894], [47.385855, 8.517715], [47.358741, 8.516121], [47.367328, 8.545965], [47.377399, 8.510049], [47.342535, 8.531039], [47.391032, 8.536298], [47.425349, 8.543726], [47.364705, 8.548413], [47.389751, 8.485356], [47.369333, 8.526159], [47.392551, 8.502803], [47.364527, 8.530271], [47.388136, 8.520093], [47.382714, 8.529399], [47.353636, 8.601897], [47.353445, 8.602118], [47.382515, 8.483823], [47.362824, 8.508472], [47.399638, 8.468182], [47.378789, 8.523042], [47.343074, 8.535827], [47.361952, 8.548409], [47.382725, 8.48641], [47.378966, 8.542327], [47.417232, 8.544101], [47.370115, 8.548896], [47.392695, 8.475068], [47.378561, 8.523434], [47.386748, 8.486158], [47.381478, 8.503761], [47.380876, 8.543889], [47.376133, 8.488267], [47.365559, 8.554018], [47.39352, 8.532958], [47.370251, 8.557214], [47.37504, 8.539941], [47.336134, 8.541057], [47.38279, 8.548856], [47.377808, 8.529802], [47.36904, 8.540956], [47.399295, 8.54239], [47.380249, 8.541784], [47.377031, 8.540592], [47.393674, 8.490109], [47.37326, 8.51889], [47.393649, 8.505673], [47.404811, 8.576503], [47.413039, 8.55643], [47.413011, 8.556496], [47.35293, 8.510312], [47.368628, 8.524543], [47.368768, 8.528796], [47.384237, 8.538582], [47.378406, 8.523656], [47.37017, 8.548805], [47.391504, 8.519644], [47.420368, 8.503226], [47.367984, 8.540352], [47.396273, 8.514654], [47.360975, 8.531033], [47.408844, 8.55674], [47.389295, 8.479002], [47.401346, 8.545175], [47.371971, 8.493852], [47.377303, 8.541339], [47.394925, 8.48612], [47.392148, 8.495761], [47.388561, 8.483664], [47.388025, 8.485189], [47.406183, 8.537896], [47.372063, 8.547388], [47.391113, 8.478919], [47.372601, 8.547598], [47.35059, 8.576299], [47.366639, 8.547434], [47.385894, 8.54496], [47.38921, 8.541546], [47.365862, 8.533648], [47.429917, 8.53926], [47.387571, 8.529459], [47.377478, 8.543726], [47.364973, 8.502703], [47.362586, 8.561952], [47.392679, 8.539101], [47.405108, 8.572733], [47.388503, 8.491066], [47.342536, 8.530999], [47.377458, 8.510527], [47.370932, 8.548106], [47.355006, 8.556074], [47.405306, 8.486973], [47.393794, 8.501623], [47.392365, 8.539015], [47.366504, 8.541817], [47.416394, 8.546151], [47.366242, 8.537218], [47.374914, 8.5475], [47.392714, 8.532491], [47.378082, 8.52651], [47.364203, 8.531165], [47.373931, 8.538383], [47.38963, 8.492744], [47.421439, 8.549131], [47.374816, 8.517955], [47.373852, 8.538103], [47.365565, 8.546869], [47.364051, 8.526369], [47.36593, 8.51007], [47.381452, 8.534432], [47.376299, 8.554945], [47.389547, 8.513485], [47.363974, 8.551456], [47.407151, 8.586305], [47.41734, 8.523257], [47.372808, 8.525873], [47.369793, 8.53553], [47.374326, 8.525136], [47.388003, 8.519812], [47.409133, 8.545443], [47.369164, 8.53263], [47.393865, 8.506618], [47.420487, 8.50303], [47.337492, 8.519185], [47.404391, 8.556792], [47.378036, 8.543698], [47.370108, 8.51925], [47.399597, 8.542741], [47.379052, 8.554022], [47.359121, 8.592221], [47.36262, 8.562165], [47.385401, 8.522951], [47.32468, 8.516637], [47.345129, 8.53358], [47.408964, 8.539623], [47.401501, 8.543006], [47.39278, 8.502318], [47.376003, 8.543629], [47.371797, 8.536644], [47.402989, 8.503383], [47.375917, 8.538516], [47.408747, 8.54627], [47.383657, 8.506427], [47.369444, 8.533404], [47.369943, 8.556467], [47.399847, 8.544786], [47.409937, 8.545062], [47.396126, 8.520798], [47.365007, 8.538437], [47.399946, 8.544788], [47.404509, 8.569673], [47.415686, 8.570056], [47.369369, 8.533813], [47.398925, 8.541561], [47.367092, 8.544292], [47.361712, 8.574034], [47.384064, 8.532195], [47.32859, 8.51313], [47.372695, 8.53404], [47.374922, 8.544746], [47.392041, 8.500528], [47.393429, 8.473493], [47.429371, 8.487672], [47.394824, 8.486343], [47.373137, 8.547039], [47.415542, 8.529873], [47.352031, 8.519863], [47.375746, 8.516623], [47.408156, 8.52613], [47.388434, 8.517013], [47.420444, 8.547772], [47.369544, 8.541801], [47.388446, 8.520536], [47.385369, 8.538764], [47.359045, 8.549473], [47.398712, 8.532681], [47.39458, 8.487411], [47.374316, 8.524248], [47.371176, 8.535717], [47.408801, 8.544389], [47.398997, 8.533058], [47.378534, 8.541417], [47.392102, 8.523975], [47.394907, 8.486093], [47.370313, 8.548861], [47.411055, 8.545748], [47.394856, 8.525726], [47.371078, 8.518462], [47.413851, 8.547807], [47.332485, 8.517906], [47.37831, 8.541333], [47.385109, 8.550851], [47.354042, 8.558092], [47.364284, 8.546339], [47.384209, 8.51098], [47.383408, 8.499349], [47.430544, 8.549799], [47.377815, 8.507912], [47.358964, 8.534433], [47.362209, 8.504951], [47.359715, 8.594008], [47.378962, 8.559596], [47.367816, 8.506533], [47.415227, 8.553388], [47.369521, 8.526282], [47.369296, 8.528171], [47.356663, 8.551211], [47.33688, 8.53922], [47.371748, 8.521826], [47.405029, 8.577143], [47.386776, 8.502781], [47.39016, 8.510358], [47.408548, 8.565929], [47.359218, 8.547385], [47.372736, 8.511451], [47.382874, 8.499723], [47.365407, 8.545541], [47.372979, 8.546705], [47.392118, 8.545063], [47.404688, 8.554042], [47.376731, 8.524801], [47.365498, 8.521672], [47.366727, 8.561563], [47.375228, 8.515209], [47.375013, 8.545569], [47.360261, 8.52285], [47.389254, 8.546381], [47.393168, 8.531083], [47.413203, 8.545938], [47.378884, 8.542431], [47.359861, 8.549768], [47.382914, 8.548117], [47.375695, 8.524025], [47.364411, 8.546156], [47.385151, 8.508298], [47.362556, 8.534136], [47.367992, 8.551712], [47.390282, 8.525262], [47.383061, 8.530717], [47.392103, 8.535274], [47.362619, 8.558497], [47.430003, 8.537751], [47.357862, 8.572204], [47.356566, 8.532147], [47.369414, 8.539402], [47.374885, 8.501749], [47.365433, 8.545582], [47.398776, 8.494899], [47.369796, 8.533358], [47.409608, 8.549335], [47.386788, 8.519867], [47.377599, 8.538551], [47.376169, 8.553525], [47.377004, 8.544339], [47.395401, 8.526122], [47.37724, 8.48221], [47.377346, 8.526323], [47.383871, 8.529807], [47.34972, 8.532258], [47.393385, 8.483295], [47.383301, 8.506022], [47.360518, 8.528031], [47.376823, 8.535065], [47.376907, 8.541304], [47.372838, 8.536917], [47.377516, 8.548203], [47.369293, 8.525669], [47.360981, 8.565109], [47.394564, 8.514673], [47.398466, 8.537776], [47.375085, 8.54565], [47.396508, 8.5289], [47.35328, 8.512331], [47.380945, 8.492228], [47.369187, 8.527282], [47.373855, 8.530237], [47.365178, 8.518409], [47.365967, 8.531108], [47.363851, 8.566904], [47.396235, 8.514839], [47.39258, 8.533336], [47.37246, 8.550084], [47.371662, 8.547949], [47.367266, 8.523125], [47.427174, 8.554195], [47.396982, 8.486385], [47.340138, 8.530527], [47.397189, 8.531113], [47.39331, 8.524635], [47.398149, 8.465689], [47.383289, 8.488672], [47.400134, 8.489985], [47.369089, 8.56201], [47.396931, 8.513581], [47.34181, 8.525955], [47.36882, 8.518509], [47.382859, 8.543454], [47.37758, 8.511853], [47.376026, 8.515556], [47.394693, 8.490897], [47.404123, 8.56402], [47.377043, 8.533666], [47.394808, 8.524176], [47.381836, 8.536599], [47.378727, 8.522974], [47.374027, 8.513821], [47.408983, 8.539464], [47.374263, 8.540296], [47.363471, 8.534433], [47.40628, 8.558726], [47.392135, 8.499099], [47.378432, 8.510202], [47.366288, 8.519901], [47.387681, 8.488388], [47.422976, 8.494558], [47.383832, 8.531051], [47.373895, 8.513448], [47.378233, 8.499604], [47.405142, 8.480332], [47.372517, 8.517525], [47.391389, 8.478248], [47.376985, 8.539743], [47.369345, 8.525802], [47.374362, 8.521309], [47.364902, 8.547504], [47.365379, 8.567889], [47.362363, 8.504822], [47.3699, 8.510772], [47.372078, 8.510551], [47.357369, 8.521415], [47.379418, 8.55983], [47.367336, 8.523325], [47.422468, 8.540233], [47.403399, 8.550531], [47.420167, 8.50366], [47.390579, 8.539534], [47.387633, 8.518069], [47.395085, 8.522393], [47.389761, 8.511675], [47.367363, 8.541305], [47.396084, 8.545132], [47.367092, 8.523386], [47.420122, 8.509411], [47.335127, 8.51919], [47.419203, 8.546858], [47.377239, 8.528082], [47.417428, 8.511875], [47.4076, 8.486051], [47.371115, 8.520277], [47.405148, 8.557629], [47.392887, 8.525633], [47.368957, 8.502809], [47.396937, 8.512945], [47.368873, 8.552737], [47.389895, 8.475305], [47.427022, 8.54657], [47.414038, 8.548884], [47.376858, 8.541767], [47.3777, 8.543095], [47.38841, 8.520522], [47.371151, 8.516398], [47.372987, 8.514409], [47.369701, 8.516647], [47.368879, 8.539894], [47.375887, 8.553863], [47.377139, 8.529166], [47.368592, 8.528435], [47.33131, 8.514707], [47.37758, 8.53867], [47.414321, 8.518093], [47.392673, 8.51584], [47.362104, 8.547565], [47.374049, 8.541073], [47.37658, 8.538874], [47.386754, 8.531137], [47.385312, 8.539995], [47.365647, 8.532558], [47.412055, 8.546564], [47.340171, 8.519372], [47.387608, 8.529367], [47.390369, 8.479619], [47.376731, 8.524787], [47.378669, 8.510842], [47.374487, 8.539453], [47.359253, 8.581633], [47.394061, 8.525167], [47.392882, 8.514652], [47.374534, 8.580014], [47.35361, 8.554337], [47.407027, 8.547413], [47.378097, 8.557856], [47.367682, 8.520949], [47.372861, 8.47602], [47.419632, 8.555575], [47.363242, 8.5675], [47.378532, 8.502364], [47.381383, 8.503348], [47.324745, 8.518384], [47.396176, 8.544949], [47.362825, 8.567901], [47.358407, 8.556887], [47.394838, 8.525753], [47.380304, 8.519801], [47.410359, 8.524307], [47.396884, 8.530034], [47.375911, 8.537285], [47.378209, 8.530247], [47.371166, 8.538749], [47.362186, 8.526662], [47.369314, 8.528185], [47.386047, 8.482091], [47.394588, 8.521694], [47.364056, 8.550385], [47.388273, 8.516996], [47.42121, 8.537252], [47.386587, 8.520286], [47.378064, 8.526523], [47.377996, 8.526045], [47.408981, 8.571358], [47.387544, 8.496518], [47.390495, 8.522723], [47.376935, 8.541199], [47.392427, 8.492707], [47.380154, 8.528062], [47.39655, 8.504181], [47.414778, 8.481037], [47.397585, 8.586735], [47.386302, 8.497579], [47.374428, 8.539995], [47.378053, 8.51038], [47.367638, 8.541761], [47.378369, 8.528529], [47.365742, 8.550884], [47.411768, 8.513046], [47.410444, 8.569812], [47.399266, 8.53305], [47.378312, 8.496851], [47.373732, 8.476262], [47.349885, 8.576548], [47.391191, 8.489252], [47.358291, 8.553998], [47.383591, 8.574646], [47.363331, 8.548133], [47.403661, 8.571735], [47.369228, 8.527746], [47.386791, 8.523443], [47.427306, 8.552581], [47.375736, 8.584926], [47.407752, 8.47817], [47.383878, 8.542336], [47.405075, 8.560543], [47.371635, 8.522393], [47.353892, 8.561438], [47.368033, 8.538989], [47.395127, 8.493555], [47.364972, 8.55431], [47.353943, 8.578342], [47.374413, 8.49631], [47.367965, 8.540444], [47.408617, 8.550481], [47.420982, 8.502086], [47.374627, 8.541747], [47.410559, 8.572743], [47.391327, 8.538424], [47.37429, 8.522222], [47.381836, 8.533751], [47.353595, 8.576151], [47.368396, 8.524432], [47.399437, 8.548143], [47.407341, 8.58713], [47.369468, 8.555318], [47.383121, 8.486457], [47.422868, 8.499406], [47.374826, 8.518816], [47.388429, 8.520443], [47.37914, 8.53065], [47.351554, 8.525678], [47.363038, 8.518273], [47.406357, 8.5039], [47.361983, 8.533913], [47.37868, 8.523145], [47.366549, 8.540891], [47.390845, 8.5455], [47.374971, 8.536828], [47.368294, 8.551228], [47.390091, 8.491456], [47.362454, 8.504731], [47.354043, 8.526893], [47.422622, 8.510442], [47.363802, 8.535552], [47.424401, 8.543163], [47.37262, 8.534317], [47.393636, 8.491327], [47.367109, 8.539711], [47.372979, 8.546705], [47.360246, 8.504171], [47.414822, 8.519376], [47.398796, 8.506386], [47.371515, 8.515982], [47.371756, 8.54284], [47.370734, 8.516827], [47.367315, 8.541622], [47.413945, 8.540799], [47.383222, 8.529913], [47.368467, 8.54722], [47.368574, 8.524595], [47.370681, 8.532], [47.363992, 8.55143], [47.366406, 8.548263], [47.379838, 8.564739], [47.385222, 8.527715], [47.38618, 8.548039], [47.360225, 8.566019], [47.374455, 8.539956], [47.374922, 8.545699], [47.381388, 8.513466], [47.37396, 8.524863], [47.37477, 8.527621], [47.373266, 8.535469], [47.346995, 8.528404], [47.37387, 8.542883], [47.36056, 8.552881], [47.370805, 8.491564], [47.357461, 8.523151], [47.380004, 8.528681], [47.37909, 8.538807], [47.391187, 8.538898], [47.390897, 8.522069], [47.392412, 8.492442], [47.376674, 8.559958], [47.386433, 8.518495], [47.372732, 8.534875], [47.367498, 8.545095], [47.410593, 8.527187], [47.36909, 8.541368], [47.357181, 8.523211], [47.366666, 8.535174], [47.378341, 8.510293], [47.354273, 8.575861], [47.394973, 8.525689], [47.379129, 8.54229], [47.414589, 8.517277], [47.375886, 8.536092], [47.361111, 8.555368], [47.375541, 8.517414], [47.402159, 8.502611], [47.400093, 8.590564], [47.403452, 8.488103], [47.372978, 8.536443], [47.341692, 8.526032], [47.3932, 8.530647], [47.369239, 8.525628], [47.357317, 8.598986], [47.364528, 8.547165], [47.404257, 8.579724], [47.328076, 8.529539], [47.352852, 8.511012], [47.396316, 8.540646], [47.372858, 8.535725], [47.375183, 8.550339], [47.370143, 8.548804], [47.391016, 8.542709], [47.373761, 8.544841], [47.412693, 8.517119], [47.371361, 8.547506], [47.373122, 8.534499], [47.37393, 8.476253], [47.412991, 8.536062], [47.407529, 8.543833], [47.399673, 8.495142], [47.360273, 8.565703], [47.37434, 8.514953], [47.39672, 8.529288], [47.355259, 8.555007], [47.390192, 8.491259], [47.422613, 8.550521], [47.371185, 8.555513], [47.374811, 8.529012], [47.371541, 8.487726], [47.400698, 8.538564], [47.419862, 8.507404], [47.381469, 8.513495], [47.38837, 8.539118], [47.364057, 8.536193], [47.371352, 8.547426], [47.375064, 8.529865], [47.400807, 8.5385], [47.375155, 8.550524], [47.376428, 8.528237], [47.382808, 8.515535], [47.383076, 8.514785], [47.367411, 8.546655], [47.415958, 8.507419], [47.384835, 8.531548], [47.372989, 8.475811], [47.392873, 8.514652], [47.379448, 8.527544], [47.366934, 8.544765], [47.414278, 8.551102], [47.384333, 8.531273], [47.375662, 8.487635], [47.380088, 8.520697], [47.409928, 8.543167], [47.380923, 8.53809], [47.370088, 8.525208], [47.375936, 8.535617], [47.369922, 8.547502], [47.390257, 8.509579], [47.362735, 8.518995], [47.409367, 8.544534], [47.412798, 8.540338], [47.401694, 8.548243], [47.426711, 8.492299], [47.426841, 8.49189], [47.379352, 8.495282], [47.409466, 8.537897], [47.360138, 8.595777], [47.38696, 8.5284], [47.392264, 8.517236], [47.361162, 8.521677], [47.355622, 8.560296], [47.354356, 8.574777], [47.41424, 8.518092], [47.386194, 8.497564], [47.397534, 8.540287], [47.369338, 8.525603], [47.38286, 8.529164], [47.364834, 8.566646], [47.388767, 8.488688], [47.417185, 8.507019], [47.376596, 8.544701], [47.37028, 8.514315], [47.382639, 8.529689], [47.369616, 8.488747], [47.396827, 8.540829], [47.373133, 8.53148], [47.367099, 8.541684], [47.421149, 8.509246], [47.408511, 8.546556], [47.377247, 8.538716], [47.375196, 8.518705], [47.369359, 8.527219], [47.366425, 8.540624], [47.39358, 8.524614], [47.409548, 8.537753], [47.397431, 8.532191], [47.332096, 8.532439], [47.379188, 8.537908], [47.368069, 8.540883], [47.366435, 8.545219], [47.390054, 8.538927], [47.393976, 8.530385], [47.397482, 8.532457], [47.412721, 8.529457], [47.369829, 8.535504], [47.380894, 8.518251], [47.40156, 8.545339], [47.403384, 8.556784], [47.389709, 8.511502], [47.391486, 8.519644], [47.367021, 8.544145], [47.349521, 8.565065], [47.386951, 8.528386], [47.392479, 8.502775], [47.394916, 8.486093], [47.389918, 8.512248], [47.373699, 8.54476], [47.389064, 8.535198], [47.399425, 8.497641], [47.374776, 8.501839], [47.380036, 8.520484], [47.413829, 8.52455], [47.400828, 8.517144], [47.378478, 8.510097], [47.413267, 8.532582], [47.386121, 8.526793], [47.388466, 8.519424], [47.342491, 8.530906], [47.362269, 8.559337], [47.423634, 8.539727], [47.383272, 8.530298], [47.386209, 8.525047], [47.364742, 8.521697], [47.381288, 8.535634], [47.384417, 8.531911], [47.385019, 8.531022], [47.369108, 8.547949], [47.36823, 8.55124], [47.407718, 8.583561], [47.408186, 8.558753], [47.391061, 8.489647], [47.392165, 8.495801], [47.363333, 8.553561], [47.347424, 8.533376], [47.412104, 8.543305], [47.379083, 8.542369], [47.390729, 8.489614], [47.382443, 8.540929], [47.367036, 8.541669], [47.411115, 8.526178], [47.33509, 8.519295], [47.366504, 8.519919], [47.427204, 8.546336], [47.357564, 8.520796], [47.357515, 8.523125], [47.375024, 8.539769], [47.36583, 8.532231], [47.37733, 8.535619], [47.358162, 8.527017], [47.36456, 8.595211], [47.375155, 8.550537], [47.385236, 8.507875], [47.369437, 8.528479], [47.36794, 8.544071], [47.33262, 8.517882], [47.377016, 8.538393], [47.378581, 8.540253], [47.385069, 8.508468], [47.388632, 8.533295], [47.378381, 8.540461], [47.387661, 8.49954], [47.375346, 8.561426], [47.386898, 8.535008], [47.378265, 8.541332], [47.355211, 8.530848], [47.37058, 8.492553], [47.407489, 8.546151], [47.35135, 8.576725], [47.422018, 8.502902], [47.409568, 8.544193], [47.37655, 8.543866], [47.396777, 8.541345], [47.370783, 8.558947], [47.360248, 8.566483], [47.365184, 8.56484], [47.403128, 8.537488], [47.377053, 8.542062], [47.398666, 8.539476], [47.373884, 8.53662], [47.357881, 8.549912], [47.430915, 8.543947], [47.406549, 8.550385], [47.391379, 8.514714], [47.379467, 8.527439], [47.38578, 8.548402], [47.35784, 8.519174], [47.351202, 8.559647], [47.390886, 8.522215], [47.432448, 8.528456], [47.412393, 8.516517], [47.38775, 8.518098], [47.369408, 8.52583], [47.4004, 8.548136], [47.411611, 8.509611], [47.383447, 8.539374], [47.388514, 8.488815], [47.393627, 8.512918], [47.383295, 8.484103], [47.412227, 8.554876], [47.347921, 8.524558], [47.377309, 8.53873], [47.380342, 8.528145], [47.338297, 8.531164], [47.376047, 8.540969], [47.369735, 8.525492], [47.375887, 8.515964], [47.386705, 8.547639], [47.360288, 8.534262], [47.370919, 8.535407], [47.372007, 8.520123], [47.355058, 8.562786], [47.417898, 8.504873], [47.406899, 8.481002], [47.389218, 8.48459], [47.374386, 8.541596], [47.425935, 8.493609], [47.425935, 8.493596], [47.383045, 8.528598], [47.379959, 8.52876], [47.385163, 8.50798], [47.405261, 8.555247], [47.359646, 8.593675], [47.374041, 8.49764], [47.40514, 8.481471], [47.35969, 8.586567], [47.370399, 8.538045], [47.390777, 8.470276], [47.37689, 8.542191], [47.387293, 8.539771], [47.39721, 8.587336], [47.419669, 8.546987], [47.394511, 8.487132], [47.371692, 8.473071], [47.372452, 8.518715], [47.378965, 8.542433], [47.386118, 8.52131], [47.35478, 8.574614], [47.368539, 8.562064], [47.378984, 8.542367], [47.377293, 8.539551], [47.409594, 8.537675], [47.383632, 8.573243], [47.361811, 8.560228], [47.410365, 8.479613], [47.392877, 8.489802], [47.36897, 8.528442], [47.408283, 8.574629], [47.372074, 8.487472], [47.38168, 8.516849], [47.42856, 8.542891], [47.371003, 8.530245], [47.352812, 8.57624], [47.369306, 8.538472], [47.36941, 8.505347], [47.360064, 8.595921], [47.398524, 8.494921], [47.365116, 8.55328], [47.371065, 8.515033], [47.391885, 8.511585], [47.341406, 8.521024], [47.357727, 8.554635], [47.37361, 8.536204], [47.36051, 8.512582], [47.369858, 8.552201], [47.399831, 8.542759], [47.383748, 8.549273], [47.403964, 8.569237], [47.418029, 8.506241], [47.409596, 8.479174], [47.377716, 8.51175], [47.379882, 8.494379], [47.36799, 8.536936], [47.380024, 8.485695], [47.413873, 8.544521], [47.339911, 8.52986], [47.365622, 8.532372], [47.370382, 8.524605], [47.377178, 8.535523], [47.414293, 8.518238], [47.411398, 8.544669], [47.407382, 8.554496], [47.377975, 8.548146], [47.397401, 8.540086], [47.391389, 8.538478], [47.373915, 8.540978], [47.339815, 8.53048], [47.406919, 8.481758], [47.367889, 8.539992], [47.394907, 8.48608], [47.360938, 8.553802], [47.398684, 8.53941], [47.374457, 8.539757], [47.371747, 8.547527], [47.355982, 8.572191], [47.362273, 8.513584], [47.3977, 8.533177], [47.412931, 8.522398], [47.394856, 8.525753], [47.39476, 8.52542], [47.392796, 8.474858], [47.376319, 8.544497], [47.365923, 8.545142], [47.38121, 8.54383], [47.375517, 8.563297], [47.375506, 8.563482], [47.40891, 8.539582], [47.391662, 8.519105], [47.390791, 8.538982], [47.38691, 8.526995], [47.391372, 8.537471], [47.380869, 8.538075], [47.363336, 8.499771], [47.421035, 8.502113], [47.381174, 8.517144], [47.364677, 8.548452], [47.374255, 8.536429], [47.366014, 8.545091], [47.390241, 8.467802], [47.362446, 8.533393], [47.380276, 8.51992], [47.374558, 8.53866], [47.36402, 8.528725], [47.361493, 8.561479], [47.355996, 8.552296], [47.402822, 8.491151], [47.410353, 8.540155], [47.428339, 8.490329], [47.380109, 8.52038], [47.386915, 8.53416], [47.367887, 8.540204], [47.385989, 8.516817], [47.382001, 8.584478], [47.373092, 8.504057], [47.388352, 8.536256], [47.416776, 8.513279], [47.377149, 8.498152], [47.421888, 8.508161], [47.418261, 8.546627], [47.38615, 8.517973], [47.42308, 8.542075], [47.377093, 8.540699], [47.391625, 8.519157], [47.364182, 8.551302], [47.391467, 8.486595], [47.393727, 8.493196], [47.375614, 8.541052], [47.353377, 8.575471], [47.42377, 8.545244], [47.378775, 8.545409], [47.37772, 8.53809], [47.404171, 8.56373], [47.388847, 8.479868], [47.423866, 8.539838], [47.34974, 8.533913], [47.383876, 8.529251], [47.400555, 8.493106], [47.368185, 8.529618], [47.393718, 8.47228], [47.377227, 8.539815], [47.392055, 8.497985], [47.370692, 8.519368], [47.391354, 8.49201], [47.36596, 8.503941], [47.392895, 8.473854], [47.391363, 8.537404], [47.379014, 8.542977], [47.39073, 8.508065], [47.369527, 8.511201], [47.388582, 8.49124], [47.380308, 8.505803], [47.353799, 8.556181], [47.377229, 8.498299], [47.378928, 8.559383], [47.372797, 8.535552], [47.377845, 8.52971], [47.397235, 8.530968], [47.353026, 8.577317], [47.378996, 8.559742], [47.379014, 8.559809], [47.386223, 8.498346], [47.373858, 8.536554], [47.373145, 8.53683], [47.363508, 8.535228], [47.370188, 8.548792], [47.376175, 8.515003], [47.364817, 8.532872], [47.364638, 8.566457], [47.36248, 8.568212], [47.403769, 8.545729], [47.388613, 8.472896], [47.366315, 8.53804], [47.370595, 8.494791], [47.348972, 8.562406], [47.387247, 8.518962], [47.413318, 8.572113], [47.356493, 8.510172], [47.411037, 8.545787], [47.35823, 8.571405], [47.349885, 8.576548], [47.361223, 8.5503], [47.382765, 8.535452], [47.378883, 8.545384], [47.358002, 8.525836], [47.42627, 8.55468], [47.402048, 8.546077], [47.367872, 8.532299], [47.38654, 8.520444], [47.358328, 8.57146], [47.344039, 8.529905], [47.370541, 8.527746], [47.365818, 8.546728], [47.376278, 8.522196], [47.377716, 8.510784], [47.391782, 8.518776], [47.364936, 8.531683], [47.398067, 8.534376], [47.374487, 8.539493], [47.371234, 8.515301], [47.394738, 8.529645], [47.381369, 8.542178], [47.374955, 8.496135], [47.341514, 8.519147], [47.38933, 8.488076], [47.32976, 8.516938], [47.369022, 8.540956], [47.377614, 8.498466], [47.366824, 8.555315], [47.366565, 8.541977], [47.379049, 8.518372], [47.369089, 8.541487], [47.373885, 8.536567], [47.385518, 8.521033], [47.36807, 8.554799], [47.430472, 8.540452], [47.38078, 8.528432], [47.374015, 8.544581], [47.375445, 8.535156], [47.383402, 8.574708], [47.386266, 8.475804], [47.415867, 8.512453], [47.400328, 8.543458], [47.362765, 8.527283], [47.368332, 8.546317], [47.350017, 8.576856], [47.356001, 8.528151], [47.37017, 8.548792], [47.39157, 8.478093], [47.393314, 8.496102], [47.366609, 8.540217], [47.399947, 8.587156], [47.404965, 8.491842], [47.397579, 8.532631], [47.414318, 8.518424], [47.373928, 8.536754], [47.369357, 8.532184], [47.378634, 8.505849], [47.399376, 8.54793], [47.387882, 8.539319], [47.395552, 8.532099], [47.370316, 8.524948], [47.422445, 8.499464], [47.413254, 8.545356], [47.367689, 8.53922], [47.386768, 8.523018], [47.390441, 8.539796], [47.366978, 8.543919], [47.370039, 8.534264], [47.365267, 8.564617], [47.384756, 8.531348], [47.366883, 8.534119], [47.39651, 8.542001], [47.376477, 8.534555], [47.392565, 8.471463], [47.384341, 8.548385], [47.400217, 8.546556], [47.407388, 8.544453], [47.4089, 8.549056], [47.378543, 8.541444], [47.402333, 8.499315], [47.365621, 8.532452], [47.372398, 8.521561], [47.361786, 8.526164], [47.347114, 8.528155], [47.403327, 8.547734], [47.378184, 8.483248], [47.383371, 8.499375], [47.408319, 8.55062], [47.356339, 8.555864], [47.386946, 8.501936], [47.363598, 8.533311], [47.388588, 8.538884], [47.393776, 8.528645], [47.36804, 8.534514], [47.337106, 8.519124], [47.371852, 8.538499], [47.392839, 8.490026], [47.391595, 8.478319], [47.39236, 8.503064], [47.420478, 8.50307], [47.36277, 8.567953], [47.362816, 8.572469], [47.373271, 8.533019], [47.362243, 8.55931], [47.364425, 8.548513], [47.36844, 8.524486], [47.393385, 8.499111], [47.366629, 8.547553], [47.378682, 8.54199], [47.392396, 8.528087], [47.371334, 8.530464], [47.377467, 8.544838], [47.40071, 8.548673], [47.370804, 8.510194], [47.39164, 8.525277], [47.414134, 8.52172], [47.376474, 8.534873], [47.415383, 8.546527], [47.398387, 8.53947], [47.392071, 8.499217], [47.3835, 8.531865], [47.380531, 8.5128], [47.400193, 8.546291], [47.35818, 8.59543], [47.389698, 8.535688], [47.351661, 8.525812], [47.362556, 8.53411], [47.375323, 8.525222], [47.34228, 8.524761], [47.377486, 8.543806], [47.371981, 8.520056], [47.378267, 8.526911], [47.418912, 8.507067], [47.370802, 8.526798], [47.344984, 8.53363], [47.409703, 8.549828], [47.391366, 8.515125], [47.378785, 8.542495], [47.380321, 8.542712], [47.400461, 8.543686], [47.378654, 8.569045], [47.367338, 8.537333], [47.408047, 8.542346], [47.360423, 8.526679], [47.372191, 8.473504], [47.386235, 8.518451], [47.392468, 8.476336], [47.359249, 8.569229], [47.399132, 8.542466], [47.375936, 8.577396], [47.364358, 8.526256], [47.387142, 8.485424], [47.36605, 8.548838], [47.378054, 8.510287], [47.381298, 8.510644], [47.373426, 8.535684], [47.395813, 8.524382], [47.33896, 8.538111], [47.426867, 8.491931], [47.364338, 8.531155], [47.382735, 8.486278], [47.389915, 8.492088], [47.380343, 8.528066], [47.366305, 8.534319], [47.427582, 8.546396], [47.370106, 8.548883], [47.37893, 8.531017], [47.39553, 8.482873], [47.420702, 8.547155], [47.379445, 8.529809], [47.370718, 8.547016], [47.366707, 8.523219], [47.388001, 8.484937], [47.364869, 8.566713], [47.377707, 8.510797], [47.368148, 8.534476], [47.412719, 8.540137], [47.377628, 8.538366], [47.377017, 8.548616], [47.395201, 8.537709], [47.359597, 8.54918], [47.384855, 8.509205], [47.398178, 8.473519], [47.382901, 8.515232], [47.381182, 8.551378], [47.369491, 8.528466], [47.406961, 8.550592], [47.388893, 8.516042], [47.371533, 8.504356], [47.375176, 8.560377], [47.372987, 8.500837], [47.397399, 8.533674], [47.383327, 8.539676], [47.42534, 8.494657], [47.374853, 8.493512], [47.387326, 8.498712], [47.386259, 8.482519], [47.382193, 8.492491], [47.393654, 8.529146], [47.376059, 8.53595], [47.363503, 8.526318], [47.390305, 8.510308], [47.34531, 8.529613], [47.419004, 8.538492], [47.417163, 8.541038], [47.391529, 8.525606], [47.363355, 8.533359], [47.417056, 8.510277], [47.368708, 8.528556], [47.359353, 8.557661], [47.406186, 8.493178], [47.375967, 8.541841], [47.37959, 8.553292], [47.377386, 8.512393], [47.392692, 8.524331], [47.408737, 8.549251], [47.384975, 8.485289], [47.374984, 8.553262], [47.425989, 8.49357], [47.36424, 8.53486], [47.364808, 8.532859], [47.371951, 8.51652], [47.399408, 8.516095], [47.419513, 8.555784], [47.368963, 8.540478], [47.403191, 8.491092], [47.390172, 8.525512], [47.386181, 8.482292], [47.401926, 8.581701], [47.390585, 8.539799], [47.372346, 8.538495], [47.358201, 8.554036], [47.375887, 8.543587], [47.395741, 8.539667], [47.366834, 8.543082], [47.357454, 8.521893], [47.364013, 8.546386], [47.357272, 8.52316], [47.359675, 8.587176], [47.374742, 8.518205], [47.391282, 8.505771], [47.394907, 8.486119], [47.393621, 8.510627], [47.384004, 8.543252], [47.376563, 8.540556], [47.409886, 8.543816], [47.397491, 8.532457], [47.429962, 8.549574], [47.404302, 8.55577], [47.420414, 8.503174], [47.419988, 8.482796], [47.372052, 8.536371], [47.38681, 8.486238], [47.366682, 8.560688], [47.370676, 8.537269], [47.381694, 8.513486], [47.368706, 8.528728], [47.363605, 8.574551], [47.373041, 8.534484], [47.405863, 8.58111], [47.387954, 8.536447], [47.406698, 8.584837], [47.391828, 8.517651], [47.378549, 8.575187], [47.380988, 8.503208], [47.401653, 8.499951], [47.364559, 8.566243], [47.393313, 8.495175], [47.405015, 8.496229], [47.362278, 8.547303], [47.367637, 8.53432], [47.357312, 8.554746], [47.369858, 8.491864], [47.421005, 8.549387], [47.370939, 8.548291], [47.369782, 8.50983], [47.362805, 8.56806], [47.396979, 8.530499], [47.395174, 8.545299], [47.426533, 8.544108], [47.395188, 8.48484], [47.369332, 8.554507], [47.374921, 8.534457], [47.370161, 8.548805], [47.342745, 8.533571], [47.413624, 8.477304], [47.372454, 8.55452], [47.373859, 8.538328], [47.373894, 8.536568], [47.399379, 8.522043], [47.406585, 8.551313], [47.425294, 8.5523], [47.404659, 8.549537], [47.385608, 8.548517], [47.386356, 8.493633], [47.36861, 8.524635], [47.374523, 8.546075], [47.363002, 8.533603], [47.375722, 8.557859], [47.35529, 8.530096], [47.412859, 8.537662], [47.343837, 8.521709], [47.372254, 8.537792], [47.368516, 8.496921], [47.420114, 8.548454], [47.353341, 8.525039], [47.367764, 8.563226], [47.383553, 8.543349], [47.410166, 8.538018], [47.389723, 8.511913], [47.375283, 8.541853], [47.378572, 8.542133], [47.378582, 8.542067], [47.39335, 8.493109], [47.352532, 8.602548], [47.373438, 8.52002], [47.369377, 8.526266], [47.370332, 8.513548], [47.38342, 8.572841], [47.369426, 8.52677], [47.368979, 8.528416], [47.350199, 8.561095], [47.373885, 8.536567], [47.361748, 8.526362], [47.366765, 8.535203], [47.394715, 8.525472], [47.368732, 8.528808], [47.369421, 8.511928], [47.392232, 8.524547], [47.412206, 8.549588], [47.365119, 8.554922], [47.401188, 8.543834], [47.38532, 8.508513], [47.387492, 8.487457], [47.369445, 8.525751], [47.354839, 8.528352], [47.384065, 8.50123], [47.376064, 8.52774], [47.370307, 8.532574], [47.383247, 8.532933], [47.374209, 8.536508], [47.364501, 8.550898], [47.392407, 8.5028], [47.358382, 8.574188], [47.374438, 8.540856], [47.397204, 8.491742], [47.34942, 8.561595], [47.368867, 8.547732], [47.370994, 8.530245], [47.386941, 8.528558], [47.375409, 8.52476], [47.374112, 8.515293], [47.377256, 8.538716], [47.387679, 8.519858], [47.379143, 8.511196], [47.375522, 8.562728], [47.402341, 8.499448], [47.381668, 8.5153], [47.387308, 8.537294], [47.41185, 8.554736], [47.371063, 8.523917], [47.39489, 8.485987], [47.374509, 8.53907], [47.424861, 8.537406], [47.376293, 8.522541], [47.39212, 8.524015], [47.370215, 8.548819], [47.378341, 8.540884], [47.374214, 8.524564], [47.371792, 8.601539], [47.388936, 8.530586], [47.394132, 8.493218], [47.414148, 8.551484], [47.333451, 8.535709], [47.365101, 8.534255], [47.397172, 8.540518], [47.3864, 8.525753], [47.362457, 8.556693], [47.371178, 8.524078], [47.389723, 8.511913], [47.380244, 8.52037], [47.409512, 8.537766], [47.392266, 8.523726], [47.345031, 8.529647], [47.371279, 8.528715], [47.419696, 8.504962], [47.366619, 8.548559], [47.360741, 8.598385], [47.392395, 8.532975], [47.404965, 8.491842], [47.367181, 8.490487], [47.373063, 8.500335], [47.405636, 8.58129], [47.409521, 8.537766], [47.379295, 8.527541], [47.373314, 8.536979], [47.360925, 8.547646], [47.372346, 8.523281], [47.370161, 8.548818], [47.412389, 8.523659], [47.382298, 8.514319], [47.375698, 8.544563], [47.427593, 8.546118], [47.356577, 8.535787], [47.371095, 8.523362], [47.364137, 8.570696], [47.394306, 8.526841], [47.392061, 8.517748], [47.378912, 8.526196], [47.361539, 8.561374], [47.37326, 8.535111], [47.396935, 8.530366], [47.408382, 8.581071], [47.372088, 8.515331], [47.380414, 8.519552], [47.396813, 8.541372], [47.358456, 8.532106], [47.370555, 8.531957], [47.400872, 8.588143], [47.374629, 8.538701], [47.372001, 8.529365], [47.367577, 8.549929], [47.387684, 8.525103], [47.388749, 8.538966], [47.371906, 8.536527], [47.350808, 8.579678], [47.413973, 8.548181], [47.35349, 8.559351], [47.372812, 8.502237], [47.361194, 8.517362], [47.369564, 8.538769], [47.354421, 8.553322], [47.376026, 8.535592], [47.402736, 8.535201], [47.378113, 8.510686], [47.373487, 8.518643], [47.373885, 8.536528], [47.369823, 8.549301], [47.375824, 8.543546], [47.388436, 8.541556], [47.374151, 8.502409], [47.414494, 8.554764], [47.404243, 8.561877], [47.366634, 8.520504], [47.389775, 8.521808], [47.413822, 8.545209], [47.36114, 8.560823], [47.387669, 8.529514], [47.403327, 8.4861], [47.382569, 8.534296], [47.364905, 8.531193], [47.376025, 8.52431], [47.366727, 8.544827], [47.367957, 8.540338], [47.417144, 8.523027], [47.374859, 8.547592], [47.347394, 8.531866], [47.375544, 8.538058], [47.374573, 8.520864], [47.413308, 8.545358], [47.384111, 8.547069], [47.389205, 8.489027], [47.385302, 8.517241], [47.354589, 8.523423], [47.353716, 8.553691], [47.377369, 8.512366], [47.40529, 8.490802], [47.385365, 8.517268], [47.3895, 8.521326], [47.400034, 8.536484], [47.409015, 8.545507], [47.364661, 8.598656], [47.372098, 8.521912], [47.361684, 8.52648], [47.364338, 8.533061], [47.409243, 8.547088], [47.410724, 8.555865], [47.37513, 8.547452], [47.388748, 8.485813], [47.387515, 8.534385], [47.363515, 8.521155], [47.35588, 8.5257], [47.404186, 8.54913], [47.357537, 8.521683], [47.40002, 8.584336], [47.425913, 8.544082], [47.379815, 8.52775], [47.366055, 8.549249], [47.364713, 8.556913], [47.378368, 8.579792], [47.390677, 8.522515], [47.386071, 8.528209], [47.408118, 8.553703], [47.431393, 8.517193], [47.412543, 8.546309], [47.379256, 8.55992], [47.395054, 8.493673], [47.363211, 8.535262], [47.370152, 8.548804], [47.396221, 8.493948], [47.371514, 8.541855], [47.366866, 8.543493], [47.388405, 8.547648], [47.378131, 8.510633], [47.379863, 8.520719], [47.397703, 8.532912], [47.416686, 8.55322], [47.386198, 8.518557], [47.347384, 8.532845], [47.366753, 8.542114], [47.415296, 8.553681], [47.373019, 8.520647], [47.363789, 8.498443], [47.370197, 8.548819], [47.370331, 8.548888], [47.412847, 8.482682], [47.367632, 8.534797], [47.417976, 8.546289], [47.37937, 8.495323], [47.381969, 8.483455], [47.414261, 8.483518], [47.344406, 8.532917], [47.370306, 8.530734], [47.397169, 8.531298], [47.387238, 8.518949], [47.367197, 8.541765], [47.414203, 8.546715], [47.365215, 8.530762], [47.403106, 8.516939], [47.353915, 8.554436], [47.376834, 8.540482], [47.391506, 8.514611], [47.351001, 8.582873], [47.387948, 8.536195], [47.367905, 8.540191], [47.4051, 8.589109], [47.379768, 8.528981], [47.367833, 8.541143], [47.387886, 8.48663], [47.362976, 8.550416], [47.371254, 8.555805], [47.385627, 8.520929], [47.382376, 8.534663], [47.387601, 8.539512], [47.375722, 8.535414], [47.419572, 8.55613], [47.419572, 8.556196], [47.358407, 8.5569], [47.40542, 8.550878], [47.414763, 8.551179], [47.367951, 8.494739], [47.340839, 8.519187], [47.378416, 8.540554], [47.382292, 8.533099], [47.3975, 8.53247], [47.38902, 8.491487], [47.369111, 8.527704], [47.394973, 8.48673], [47.357792, 8.572044], [47.387868, 8.538882], [47.39073, 8.489455], [47.396786, 8.534734], [47.367355, 8.545926], [47.424828, 8.54838], [47.424742, 8.537603], [47.384277, 8.525829], [47.382679, 8.545384], [47.370304, 8.548887], [47.398024, 8.503336], [47.369163, 8.52793], [47.368863, 8.548155], [47.385918, 8.517743], [47.384199, 8.531178], [47.371428, 8.546103], [47.416017, 8.515596], [47.386372, 8.518256], [47.398103, 8.501603], [47.40435, 8.572134], [47.387294, 8.529254], [47.374824, 8.537116], [47.380613, 8.51941], [47.401347, 8.543188], [47.378256, 8.526143], [47.370167, 8.547282], [47.390603, 8.539786], [47.365185, 8.547126], [47.391864, 8.532037], [47.371881, 8.525907], [47.386725, 8.547415], [47.390007, 8.536317], [47.374173, 8.515572], [47.380322, 8.541653], [47.38082, 8.497113], [47.399237, 8.54745], [47.397052, 8.530328], [47.374718, 8.530281], [47.365529, 8.546908], [47.414222, 8.519006], [47.358156, 8.519948], [47.378432, 8.510189], [47.366748, 8.53315], [47.393696, 8.502548], [47.362619, 8.518873], [47.370147, 8.536106], [47.35343, 8.525094], [47.36734, 8.556862], [47.407221, 8.549696], [47.368039, 8.524094], [47.387624, 8.499619], [47.358552, 8.585192], [47.414452, 8.507839], [47.369689, 8.525571], [47.370152, 8.548778], [47.406638, 8.5672], [47.398424, 8.500933], [47.377616, 8.518661], [47.378498, 8.54143], [47.374482, 8.556827], [47.357351, 8.523334], [47.368918, 8.529103], [47.42588, 8.493714], [47.372766, 8.535048], [47.37811, 8.509984], [47.360472, 8.549808], [47.374378, 8.538643], [47.369662, 8.525636], [47.376677, 8.524786], [47.364638, 8.566444], [47.368887, 8.539973], [47.371896, 8.522411], [47.390918, 8.521672], [47.367093, 8.529053], [47.35761, 8.521658], [47.398129, 8.59088], [47.377702, 8.538076], [47.36748, 8.541308], [47.383943, 8.531702], [47.388708, 8.496157], [47.358279, 8.555295], [47.372219, 8.518671], [47.402651, 8.546011], [47.367997, 8.539902], [47.38264, 8.529676], [47.421878, 8.55028], [47.425934, 8.493622], [47.38095, 8.538011], [47.378344, 8.527283], [47.37436, 8.541424], [47.379713, 8.497104], [47.374091, 8.527183], [47.418731, 8.530282], [47.393331, 8.530027], [47.404158, 8.549235], [47.40513, 8.478583], [47.397986, 8.532467], [47.372978, 8.514436], [47.369633, 8.525834], [47.405216, 8.481049], [47.335163, 8.519164], [47.430851, 8.544105], [47.408535, 8.53173], [47.408217, 8.547173], [47.375078, 8.518742], [47.38709, 8.534667], [47.397535, 8.532564], [47.431264, 8.516541], [47.371618, 8.517493], [47.386243, 8.540517], [47.361431, 8.512177], [47.370511, 8.52327], [47.370226, 8.524893], [47.378581, 8.54212], [47.387716, 8.479568], [47.403772, 8.485605], [47.401541, 8.58788], [47.371006, 8.545989], [47.395054, 8.516074], [47.367726, 8.540042], [47.37325, 8.494632], [47.374228, 8.524088], [47.379218, 8.549801], [47.357954, 8.520447], [47.365766, 8.548395], [47.370052, 8.518561], [47.353313, 8.525144], [47.375768, 8.535269], [47.368429, 8.541817], [47.352495, 8.572765], [47.374553, 8.547598], [47.393387, 8.529829], [47.370146, 8.536265], [47.372855, 8.535116], [47.359069, 8.570218], [47.378949, 8.508742], [47.388588, 8.483691], [47.385307, 8.520539], [47.374448, 8.541664], [47.364316, 8.548604], [47.404376, 8.59487], [47.391081, 8.52255], [47.37642, 8.528171], [47.382129, 8.531321], [47.381709, 8.531007], [47.368228, 8.524111], [47.37141, 8.54613], [47.430065, 8.486506], [47.382802, 8.485842], [47.367905, 8.523972], [47.401376, 8.550489], [47.414035, 8.518843], [47.351995, 8.525634], [47.365208, 8.545603], [47.430846, 8.543654], [47.375845, 8.545176], [47.416641, 8.569003], [47.376385, 8.528117], [47.379621, 8.507114], [47.377557, 8.528724], [47.391032, 8.533477], [47.40513, 8.481617], [47.351571, 8.525797], [47.387401, 8.493455], [47.397949, 8.534414], [47.417003, 8.549304], [47.37935, 8.542692], [47.381388, 8.537371], [47.407759, 8.531065], [47.38143, 8.535809], [47.372769, 8.600991], [47.376146, 8.577096], [47.370512, 8.535571], [47.394119, 8.475798], [47.397934, 8.477634], [47.351395, 8.601068], [47.374157, 8.535434], [47.398995, 8.533256], [47.364541, 8.566243], [47.386613, 8.518446], [47.406534, 8.584118], [47.405635, 8.549968], [47.369079, 8.529279], [47.410367, 8.548119], [47.421332, 8.549977], [47.362668, 8.52703], [47.375589, 8.548335], [47.403255, 8.497876], [47.350976, 8.576307], [47.383463, 8.499178], [47.355269, 8.515071], [47.353865, 8.523858], [47.363749, 8.535419], [47.368833, 8.528638], [47.37493, 8.534457], [47.370197, 8.548805], [47.388803, 8.520821], [47.37392, 8.476279], [47.377496, 8.527597], [47.374967, 8.534431], [47.377472, 8.494331], [47.39194, 8.518249], [47.379011, 8.529058], [47.391104, 8.522988], [47.365, 8.502677], [47.399842, 8.49345], [47.373035, 8.533253], [47.371759, 8.542575], [47.370188, 8.548805], [47.382028, 8.516208], [47.424901, 8.548329], [47.38018, 8.528155], [47.397492, 8.587991], [47.378642, 8.494288], [47.390841, 8.508703], [47.376422, 8.516505], [47.41957, 8.548019], [47.378512, 8.541854], [47.387269, 8.488234], [47.372735, 8.535511], [47.363159, 8.548209], [47.416217, 8.522187], [47.374363, 8.523097], [47.408834, 8.579848], [47.371434, 8.550182], [47.357037, 8.570135], [47.378479, 8.509978], [47.399812, 8.529564], [47.364228, 8.536183], [47.364183, 8.536116], [47.376386, 8.534606], [47.37554, 8.558107], [47.364638, 8.566457], [47.378602, 8.575294], [47.388746, 8.491058], [47.425763, 8.547499], [47.388314, 8.51452], [47.369794, 8.557907], [47.381407, 8.517215], [47.392886, 8.485802], [47.367082, 8.544332], [47.367688, 8.495038], [47.377738, 8.53809], [47.370161, 8.548831], [47.359596, 8.576967], [47.386751, 8.547574], [47.3977, 8.533163], [47.343921, 8.530022], [47.370197, 8.548792], [47.412244, 8.558679], [47.365539, 8.568118], [47.37276, 8.600938], [47.377957, 8.541564], [47.422279, 8.499885], [47.378088, 8.50944], [47.381651, 8.582537], [47.406952, 8.550578], [47.371098, 8.524064], [47.37135, 8.542977], [47.369671, 8.525597], [47.367169, 8.553151], [47.366455, 8.547893], [47.376556, 8.528055], [47.409949, 8.543843], [47.41566, 8.563522], [47.374245, 8.540322], [47.364715, 8.547301], [47.408011, 8.536754], [47.371038, 8.536125], [47.36319, 8.549732], [47.387939, 8.536195], [47.403671, 8.588972], [47.351808, 8.575861], [47.361812, 8.526218], [47.411918, 8.524935], [47.370497, 8.52858], [47.378858, 8.542338], [47.369855, 8.53659], [47.385032, 8.484932], [47.38046, 8.519434], [47.396647, 8.540799], [47.3765, 8.521578], [47.373896, 8.54103], [47.359325, 8.5698], [47.376626, 8.543404], [47.390859, 8.52228], [47.368386, 8.539725], [47.370307, 8.548622], [47.371477, 8.519053], [47.363382, 8.534339], [47.391312, 8.515163], [47.371906, 8.49111], [47.400591, 8.544179], [47.370761, 8.53118], [47.425084, 8.537636], [47.378479, 8.509978], [47.39392, 8.534384], [47.425037, 8.548199], [47.390986, 8.522084], [47.365142, 8.532747], [47.377004, 8.584013], [47.351944, 8.505117], [47.411341, 8.544098], [47.397336, 8.541197], [47.376491, 8.525418], [47.428336, 8.48968], [47.378733, 8.542216], [47.382201, 8.534222], [47.362261, 8.559311], [47.35505, 8.557041], [47.372964, 8.547301], [47.405849, 8.590636], [47.386914, 8.547458], [47.379286, 8.495652], [47.368904, 8.540119], [47.330896, 8.536635], [47.375722, 8.496813], [47.36029, 8.567715], [47.403673, 8.571457], [47.391419, 8.513324], [47.404427, 8.556806], [47.406605, 8.584266], [47.366248, 8.548763], [47.402453, 8.535633], [47.366345, 8.522497], [47.39509, 8.53621], [47.354728, 8.526748], [47.382396, 8.537352], [47.369398, 8.525896], [47.406623, 8.58783], [47.344202, 8.532674], [47.386842, 8.535179], [47.3774, 8.509956], [47.411197, 8.54595], [47.373452, 8.529104], [47.360838, 8.505361], [47.387579, 8.515167], [47.394847, 8.52574], [47.366764, 8.541849], [47.37552, 8.548122], [47.377294, 8.541312], [47.422332, 8.550674], [47.376629, 8.52795], [47.382848, 8.532355], [47.367288, 8.519802], [47.386525, 8.498762], [47.356542, 8.523238], [47.416856, 8.535412], [47.377446, 8.509864], [47.378427, 8.540382], [47.365868, 8.509936], [47.403759, 8.493925], [47.370188, 8.548792], [47.345157, 8.533448], [47.40816, 8.546536], [47.348149, 8.52807], [47.386734, 8.547402], [47.374581, 8.5456], [47.374328, 8.542919], [47.37004, 8.564082], [47.399755, 8.492084], [47.373545, 8.534521], [47.386338, 8.52093], [47.37693, 8.537014], [47.338426, 8.531828], [47.399385, 8.547943], [47.413909, 8.518814], [47.376304, 8.563777], [47.408806, 8.550445], [47.373186, 8.475894], [47.376043, 8.535738], [47.418052, 8.515373], [47.419185, 8.546831], [47.366847, 8.534132], [47.378464, 8.54029], [47.408084, 8.577513], [47.370998, 8.518341], [47.363159, 8.557595], [47.402882, 8.498359], [47.374025, 8.543602], [47.41999, 8.554813], [47.383986, 8.543225], [47.378293, 8.560879], [47.379916, 8.506325], [47.364427, 8.534148], [47.388, 8.490964], [47.37397, 8.544647], [47.420515, 8.502925], [47.380418, 8.542847], [47.37302, 8.532908], [47.407964, 8.583248], [47.368735, 8.524744], [47.402142, 8.584382], [47.362089, 8.5491], [47.364854, 8.532701], [47.393821, 8.506471], [47.366215, 8.537204], [47.369203, 8.527507], [47.377651, 8.498347], [47.378783, 8.564068], [47.389583, 8.472041], [47.363387, 8.557256]],\n", - " {"blur": 15, "maxZoom": 18, "minOpacity": 0.5, "radius": 25}\n", + "\n", + " var times = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];\n", + "\n", + " map_2bbaa23ebb5ac3954d579adb4bcaf7f6.timeDimension = L.timeDimension(\n", + " {times : times, currentTime: new Date(1)}\n", " );\n", + "\n", + " var heat_map_535e8e464fa07987ea30ec400ee5e018Control = new L.Control.TimeDimensionCustom(['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11'], {\n", + " autoPlay: false,\n", + " backwardButton: true,\n", + " displayDate: true,\n", + " forwardButton: true,\n", + " limitMinimumRange: 5,\n", + " limitSliders: true,\n", + " loopButton: true,\n", + " maxSpeed: 10,\n", + " minSpeed: 0.1,\n", + " playButton: true,\n", + " playReverseButton: true,\n", + " position: "bottomleft",\n", + " speedSlider: true,\n", + " speedStep: 0.1,\n", + " styleNS: "leaflet-control-timecontrol",\n", + " timeSlider: true,\n", + " timeSliderDrapUpdate: false,\n", + " timeSteps: 1\n", + " })\n", + " .addTo(map_2bbaa23ebb5ac3954d579adb4bcaf7f6);\n", + "\n", + " var heat_map_535e8e464fa07987ea30ec400ee5e018 = new TDHeatmap([[[47.352168, 8.55841], [47.368512, 8.52932], [47.375376, 8.534877], [47.369756, 8.513682], [47.401865, 8.531288], [47.428652, 8.543582], [47.391125, 8.522617], [47.376931, 8.541636], [47.374602, 8.535854], [47.366542, 8.540613], [47.387107, 8.519462], [47.394692, 8.546759], [47.404676, 8.557116], [47.367753, 8.545709], [47.37445, 8.546113], [47.403796, 8.485857], [47.367773, 8.494523], [47.387926, 8.485241], [47.373877, 8.5135], [47.39161, 8.527568], [47.384609, 8.531597], [47.421708, 8.550131], [47.363555, 8.554744], [47.388514, 8.483835], [47.377256, 8.538689], [47.409028, 8.566496], [47.352644, 8.572305], [47.363447, 8.554768], [47.377263, 8.510179], [47.39341, 8.525459], [47.375442, 8.547763], [47.421067, 8.549495], [47.41099, 8.543149], [47.410956, 8.542937], [47.373272, 8.531947], [47.396116, 8.505378], [47.34129, 8.530524], [47.356698, 8.57349], [47.366118, 8.53229], [47.400643, 8.549069], [47.407342, 8.565996], [47.370233, 8.548819], [47.369283, 8.541901], [47.377485, 8.542005], [47.417596, 8.553995], [47.374397, 8.518503], [47.364218, 8.551263], [47.371403, 8.53645], [47.370147, 8.602311], [47.413218, 8.53873], [47.358105, 8.524408], [47.391821, 8.500047], [47.357968, 8.532268], [47.368238, 8.520166], [47.351863, 8.527285], [47.407434, 8.563004], [47.369667, 8.53366], [47.419423, 8.508177], [47.422315, 8.512583], [47.35768, 8.552053], [47.397972, 8.47435], [47.386281, 8.531737], [47.408712, 8.546229], [47.372678, 8.534795], [47.388015, 8.520448], [47.361218, 8.552709], [47.375944, 8.54139], [47.389535, 8.51281], [47.393999, 8.543989], [47.421475, 8.511042], [47.378301, 8.54132], [47.407516, 8.548073], [47.388406, 8.520032], [47.401769, 8.581194], [47.350735, 8.577043], [47.379003, 8.556286], [47.371053, 8.516343], [47.379671, 8.545771], [47.408017, 8.547407], [47.396566, 8.540784], [47.392391, 8.487779], [47.406853, 8.550603], [47.374376, 8.521707], [47.336727, 8.516404], [47.416753, 8.572252], [47.36069, 8.56542], [47.394205, 8.517434], [47.375645, 8.516807], [47.387956, 8.49087], [47.374194, 8.491737], [47.377228, 8.539762], [47.413983, 8.548088], [47.36765, 8.495262], [47.362623, 8.527068], [47.400357, 8.585721], [47.362708, 8.567886], [47.377521, 8.542006], [47.375891, 8.510667], [47.427058, 8.546637], [47.388324, 8.548614], [47.37063, 8.527854], [47.378502, 8.510468], [47.402744, 8.491785], [47.375415, 8.517372], [47.376857, 8.535198], [47.375142, 8.51865], [47.421599, 8.550208], [47.334593, 8.52999], [47.380295, 8.541666], [47.385078, 8.547526], [47.409537, 8.543623], [47.379452, 8.544244], [47.421691, 8.499303], [47.38648, 8.541039], [47.405212, 8.505123], [47.373017, 8.531359], [47.397216, 8.5311], [47.365265, 8.521588], [47.381359, 8.512737], [47.386961, 8.534956], [47.385109, 8.476404], [47.359661, 8.549036], [47.375257, 8.523698], [47.379241, 8.5286], [47.37565, 8.537332], [47.354234, 8.554986], [47.385807, 8.526734], [47.364907, 8.530994], [47.378324, 8.530395], [47.359178, 8.596458], [47.381372, 8.518075], [47.375548, 8.524313], [47.379301, 8.525992], [47.390691, 8.478844], [47.420592, 8.540804], [47.383768, 8.515792], [47.384964, 8.532147], [47.383683, 8.588104], [47.415446, 8.54462], [47.374697, 8.55789], [47.37935, 8.495494], [47.376592, 8.53665], [47.4244, 8.552692], [47.389996, 8.484063], [47.366961, 8.543905], [47.36677, 8.501918], [47.370977, 8.530205], [47.414524, 8.54419], [47.386315, 8.499116], [47.406837, 8.550364], [47.378083, 8.530178], [47.372117, 8.521847], [47.399555, 8.496319], [47.369434, 8.52591], [47.392108, 8.510821], [47.375349, 8.485404], [47.354979, 8.554233], [47.371146, 8.53038], [47.39006, 8.525854], [47.371124, 8.520277], [47.407189, 8.50344], [47.41151, 8.532864], [47.359925, 8.580099], [47.399946, 8.544841], [47.403344, 8.48614], [47.382009, 8.530749], [47.387185, 8.509186], [47.378417, 8.540514], [47.40754, 8.503368], [47.379197, 8.564143], [47.378414, 8.543653], [47.378516, 8.541404], [47.361626, 8.5486], [47.394143, 8.525063], [47.370985, 8.535938], [47.398832, 8.533306], [47.372442, 8.523641], [47.407711, 8.578817], [47.369841, 8.510294], [47.371042, 8.535701], [47.387614, 8.498678], [47.378235, 8.528394], [47.381164, 8.582673], [47.373317, 8.524347], [47.414166, 8.546793], [47.38457, 8.509835], [47.384491, 8.51639], [47.351648, 8.576599], [47.370713, 8.535231], [47.370013, 8.564121], [47.370463, 8.524633], [47.360324, 8.562394], [47.370394, 8.534774], [47.380655, 8.556651], [47.362489, 8.534585], [47.371212, 8.527204], [47.356772, 8.573293], [47.385062, 8.495462], [47.377758, 8.52845], [47.378155, 8.548163], [47.361911, 8.531039], [47.385484, 8.529456], [47.365242, 8.53071], [47.409837, 8.545166], [47.357632, 8.521142], [47.373663, 8.54664], [47.408737, 8.579661], [47.380399, 8.512493], [47.406725, 8.584825], [47.373444, 8.512657], [47.373845, 8.537878], [47.399668, 8.517121], [47.386642, 8.547704], [47.366437, 8.5413], [47.376157, 8.544507], [47.363434, 8.546758], [47.338792, 8.530195], [47.359436, 8.521589], [47.37086, 8.548144], [47.33881, 8.530169], [47.373961, 8.538992], [47.413271, 8.53885], [47.379779, 8.527737], [47.391631, 8.492294], [47.398208, 8.536512], [47.381223, 8.532017], [47.373546, 8.534336], [47.357638, 8.551814], [47.397914, 8.508461], [47.400808, 8.492025], [47.399896, 8.544443], [47.394119, 8.525632], [47.387543, 8.490783], [47.38828, 8.49081], [47.414734, 8.519148], [47.36371, 8.551768], [47.372631, 8.547307], [47.373544, 8.528827], [47.410358, 8.548105], [47.374337, 8.542973], [47.372706, 8.525222], [47.370434, 8.549419], [47.38135, 8.535754], [47.391607, 8.519209], [47.375382, 8.526654], [47.391063, 8.479474], [47.386225, 8.531921], [47.378413, 8.53049], [47.372008, 8.53629], [47.377373, 8.509995], [47.414977, 8.551382], [47.409795, 8.549538], [47.377683, 8.538248], [47.343638, 8.53519], [47.378156, 8.48734], [47.366909, 8.558561], [47.390762, 8.522027], [47.416784, 8.54588], [47.410161, 8.57394], [47.363824, 8.56689], [47.367852, 8.539078], [47.374924, 8.534166], [47.374363, 8.543026], [47.369932, 8.533202], [47.36475, 8.553935], [47.398004, 8.494765], [47.397815, 8.532411], [47.377043, 8.544075], [47.378014, 8.515504], [47.361652, 8.532701], [47.373541, 8.519664], [47.378544, 8.530016], [47.364501, 8.547138], [47.391654, 8.538987], [47.378173, 8.509972], [47.355464, 8.559869], [47.38127, 8.53272], [47.334931, 8.527588], [47.393324, 8.529802], [47.381279, 8.531833], [47.361546, 8.547659], [47.364643, 8.517868], [47.362016, 8.52654], [47.395044, 8.525863], [47.363204, 8.557583], [47.38885, 8.515816], [47.367909, 8.522661], [47.353443, 8.576134], [47.378189, 8.541781], [47.412205, 8.523099], [47.378896, 8.526924], [47.374769, 8.55135], [47.39006, 8.525854], [47.42587, 8.49378], [47.392522, 8.527149], [47.384624, 8.530074], [47.407568, 8.584233], [47.387834, 8.498272], [47.386171, 8.498212], [47.395506, 8.545359], [47.367515, 8.545201], [47.408835, 8.550273], [47.43021, 8.540592], [47.385208, 8.536774], [47.385967, 8.518287], [47.381482, 8.482677], [47.419154, 8.506118], [47.38, 8.51667], [47.370098, 8.548843], [47.38095, 8.535164], [47.394099, 8.529738], [47.378312, 8.523985], [47.391517, 8.514373], [47.342498, 8.53121], [47.371335, 8.536065], [47.37204, 8.516641], [47.378048, 8.513823], [47.363924, 8.530312], [47.412136, 8.483782], [47.409217, 8.53287], [47.379057, 8.525153], [47.407502, 8.491866], [47.378296, 8.554086], [47.394395, 8.489024], [47.369684, 8.53374], [47.411294, 8.562025], [47.369698, 8.536097], [47.376894, 8.557632], [47.372675, 8.555835], [47.390633, 8.515613], [47.397719, 8.47453], [47.368982, 8.541299], [47.365185, 8.52152], [47.36026, 8.552239], [47.347345, 8.533189], [47.413384, 8.539277], [47.415042, 8.515961], [47.389764, 8.536325], [47.37829, 8.507047], [47.39118, 8.487503], [47.381096, 8.517844], [47.379532, 8.548113], [47.392477, 8.506908], [47.394041, 8.493269], [47.370069, 8.518614], [47.368627, 8.546535], [47.419116, 8.506409], [47.424591, 8.508639], [47.412498, 8.525437], [47.370054, 8.541189], [47.363643, 8.535205], [47.384442, 8.503224], [47.417397, 8.545734], [47.364743, 8.565784], [47.371059, 8.537622], [47.369541, 8.531738], [47.369313, 8.522557], [47.420574, 8.502409], [47.36958, 8.525701], [47.427247, 8.54566], [47.367815, 8.495835], [47.372087, 8.546792], [47.375887, 8.515938], [47.418268, 8.546773], [47.408747, 8.546283], [47.400191, 8.54743], [47.373371, 8.531936], [47.378912, 8.526209], [47.340412, 8.519588], [47.417734, 8.546152], [47.349907, 8.5615], [47.42267, 8.495479], [47.351996, 8.558499], [47.371847, 8.520941], [47.380455, 8.542821], [47.386039, 8.529732], [47.379044, 8.559491], [47.412037, 8.54655], [47.356208, 8.558257], [47.352387, 8.571903], [47.356004, 8.556135], [47.359691, 8.586435], [47.391162, 8.515796], [47.405593, 8.577473], [47.377881, 8.532492], [47.398131, 8.536074], [47.419116, 8.506409], [47.363977, 8.555785], [47.384211, 8.499087], [47.376833, 8.515811], [47.364087, 8.526304], [47.373576, 8.519705], [47.372675, 8.528452], [47.36092, 8.591333], [47.326904, 8.513533], [47.373484, 8.537102], [47.415342, 8.547997], [47.360197, 8.522955], [47.403671, 8.546548], [47.407437, 8.584708], [47.348415, 8.523761], [47.415106, 8.514915], [47.367974, 8.540458], [47.376964, 8.527692], [47.371094, 8.523534], [47.410578, 8.572637], [47.374668, 8.549667], [47.383834, 8.509701], [47.370553, 8.524542], [47.377595, 8.498611], [47.384809, 8.509284], [47.352632, 8.524826], [47.384759, 8.531957], [47.366594, 8.545566], [47.412227, 8.546408], [47.390782, 8.478793], [47.373764, 8.536062], [47.389099, 8.510311], [47.358922, 8.582394], [47.376968, 8.493315], [47.370188, 8.548792], [47.369206, 8.54803], [47.390889, 8.547501], [47.371307, 8.528623], [47.409696, 8.569094], [47.377112, 8.540554], [47.377579, 8.508132], [47.355113, 8.574542], [47.372399, 8.534802], [47.382308, 8.545601], [47.364855, 8.530715], [47.384417, 8.531924], [47.354821, 8.532111], [47.368608, 8.528673], [47.369024, 8.537937], [47.419561, 8.548006], [47.390678, 8.522383], [47.390195, 8.490928], [47.388143, 8.528848], [47.407783, 8.583364], [47.378435, 8.540462], [47.377788, 8.507845], [47.418107, 8.544768], [47.387763, 8.500112], [47.420795, 8.546878], [47.361807, 8.515256], [47.366211, 8.545174], [47.39835, 8.537721], [47.376025, 8.537618], [47.373885, 8.536541], [47.407895, 8.565584], [47.376909, 8.527784], [47.379353, 8.544162], [47.400648, 8.548513], [47.426181, 8.495165], [47.377258, 8.512615], [47.373374, 8.551401], [47.353493, 8.527041], [47.400065, 8.49462], [47.425414, 8.55384], [47.387597, 8.529499], [47.372758, 8.534969], [47.394178, 8.525103], [47.381905, 8.509173], [47.344813, 8.53364], [47.368064, 8.492225], [47.392958, 8.492757], [47.374444, 8.540207], [47.371353, 8.547386], [47.378146, 8.532086], [47.372529, 8.54757], [47.378637, 8.531554], [47.35973, 8.565201], [47.402571, 8.547824], [47.378384, 8.526953], [47.376821, 8.559577], [47.402574, 8.492669], [47.390658, 8.491427], [47.363048, 8.530691], [47.387812, 8.490881], [47.418503, 8.542006], [47.359809, 8.53543], [47.368201, 8.559872], [47.390466, 8.491834], [47.405754, 8.547003], [47.383538, 8.534541], [47.383366, 8.498991], [47.401848, 8.554658], [47.359033, 8.558223], [47.373729, 8.514888], [47.370936, 8.518247], [47.38697, 8.528334], [47.41228, 8.515044], [47.383294, 8.572838], [47.352142, 8.558317], [47.382305, 8.488057], [47.368273, 8.546806], [47.376578, 8.541893], [47.376484, 8.528106], [47.371362, 8.536039], [47.385371, 8.475284], [47.361727, 8.593336], [47.373509, 8.534454], [47.36422, 8.526505], [47.377279, 8.514284], [47.385976, 8.489984], [47.386115, 8.537892], [47.36632, 8.600029], [47.365899, 8.548636], [47.387566, 8.487207], [47.36108, 8.531392], [47.369403, 8.528253], [47.380626, 8.525728], [47.376109, 8.527741], [47.381308, 8.53733], [47.380465, 8.542676], [47.36886, 8.528586], [47.367653, 8.534519], [47.398992, 8.506615], [47.378879, 8.52209], [47.391147, 8.489105], [47.414279, 8.550943], [47.391227, 8.52042], [47.358017, 8.555356], [47.373204, 8.515235], [47.385436, 8.508568], [47.391964, 8.482353], [47.409636, 8.549283], [47.427012, 8.491814], [47.364277, 8.536674], [47.370796, 8.5351], [47.373072, 8.52556], [47.372788, 8.535618], [47.381244, 8.51541], [47.379874, 8.527288], [47.374316, 8.524275], [47.378444, 8.541455], [47.360111, 8.579507], [47.39857, 8.539116], [47.41149, 8.525536], [47.351566, 8.602024], [47.382607, 8.54819], [47.39133, 8.536198], [47.415859, 8.514281], [47.377761, 8.507858], [47.360649, 8.551122], [47.366409, 8.545112], [47.376601, 8.527115], [47.390738, 8.479627], [47.363639, 8.550694], [47.364587, 8.548503], [47.375741, 8.527707], [47.399665, 8.468103], [47.38242, 8.530068], [47.390995, 8.523078], [47.366899, 8.533405], [47.37278, 8.535512], [47.374255, 8.525028], [47.381798, 8.529208], [47.363058, 8.548445], [47.409473, 8.542787], [47.384998, 8.495659], [47.389229, 8.546195], [47.385646, 8.506374], [47.391647, 8.511024], [47.409885, 8.487951], [47.414439, 8.518003], [47.383238, 8.506074], [47.381247, 8.513225], [47.364153, 8.563614], [47.415049, 8.513337], [47.402763, 8.535215], [47.356907, 8.535053], [47.378599, 8.51933], [47.395491, 8.526097], [47.3698, 8.529042], [47.370348, 8.557375], [47.4117, 8.509718], [47.416762, 8.572226], [47.396749, 8.537648], [47.359226, 8.549437], [47.40582, 8.544818], [47.370173, 8.540993], [47.369957, 8.510429], [47.355619, 8.532419], [47.393113, 8.526433], [47.35031, 8.577285], [47.384115, 8.52866], [47.370906, 8.548065], [47.3777, 8.511551], [47.376735, 8.543327], [47.379513, 8.537862], [47.405104, 8.478556], [47.388449, 8.484085], [47.373165, 8.552588], [47.376961, 8.543226], [47.380385, 8.525484], [47.370673, 8.508841], [47.375479, 8.486929], [47.369023, 8.53795], [47.389265, 8.527242], [47.383246, 8.488526], [47.408255, 8.569262], [47.376961, 8.522289], [47.377237, 8.538835], [47.356865, 8.534761], [47.378015, 8.517384], [47.36807, 8.550151], [47.377075, 8.540646], [47.3695, 8.528493], [47.376225, 8.544919], [47.369426, 8.526797], [47.428536, 8.542493], [47.402127, 8.497337], [47.375499, 8.557709], [47.383238, 8.506074], [47.404445, 8.574375], [47.353725, 8.558311], [47.408736, 8.550231], [47.413878, 8.5534], [47.365898, 8.501927], [47.387752, 8.50035], [47.391846, 8.533904], [47.364713, 8.520028], [47.387577, 8.497909], [47.408063, 8.538809], [47.393842, 8.497332], [47.366016, 8.533506], [47.42108, 8.502127], [47.395468, 8.520917], [47.364845, 8.554347], [47.413227, 8.538704], [47.410316, 8.542115], [47.374602, 8.538674], [47.360669, 8.524407], [47.383197, 8.483995], [47.357256, 8.521955], [47.390142, 8.510438], [47.399578, 8.542807], [47.375466, 8.484493], [47.377599, 8.538524], [47.383238, 8.505994], [47.382056, 8.481828], [47.410825, 8.56766], [47.368845, 8.539721], [47.429032, 8.489283], [47.385524, 8.51751], [47.387202, 8.535173], [47.363398, 8.564485], [47.370479, 8.516146], [47.379273, 8.546041], [47.354623, 8.573221], [47.389767, 8.492429], [47.425084, 8.53765], [47.381033, 8.504229], [47.419896, 8.506623], [47.368203, 8.560614], [47.400133, 8.545958], [47.357275, 8.521836], [47.392111, 8.532559], [47.370596, 8.535308], [47.369673, 8.554581], [47.39607, 8.515193], [47.401238, 8.54512], [47.403505, 8.487216], [47.391091, 8.522418], [47.379156, 8.495093], [47.376903, 8.512184], [47.371917, 8.522028], [47.363489, 8.520135], [47.367334, 8.52355], [47.413462, 8.530082], [47.373488, 8.519478], [47.382878, 8.530091], [47.354443, 8.523632], [47.383607, 8.529152], [47.378432, 8.510202], [47.378124, 8.530656], [47.375038, 8.536393], [47.381362, 8.528696], [47.408741, 8.539379], [47.378521, 8.541854], [47.370106, 8.548883], [47.414033, 8.541914], [47.377452, 8.498502], [47.357669, 8.581732], [47.390405, 8.539769], [47.376192, 8.540839], [47.354506, 8.525552], [47.429415, 8.540006], [47.381111, 8.518083], [47.370805, 8.526454], [47.390196, 8.539089], [47.418796, 8.506959], [47.416161, 8.546066], [47.35401, 8.57338], [47.369197, 8.548003], [47.390018, 8.491613], [47.381586, 8.54205], [47.381837, 8.509648], [47.377497, 8.538853], [47.375528, 8.548201], [47.382004, 8.514035], [47.366834, 8.520256], [47.392572, 8.494604], [47.381282, 8.514259], [47.396717, 8.540999], [47.385797, 8.548534], [47.392904, 8.534363], [47.374412, 8.541676], [47.403847, 8.547957], [47.384444, 8.532918], [47.386814, 8.490795], [47.381528, 8.554683], [47.356687, 8.553329], [47.373931, 8.536449], [47.37077, 8.536887], [47.362921, 8.522189], [47.373576, 8.519691], [47.376566, 8.526982], [47.391176, 8.488868], [47.426297, 8.554667], [47.374852, 8.517943], [47.37702, 8.541783], [47.387253, 8.522128], [47.414787, 8.519229], [47.358889, 8.51664], [47.369972, 8.548774], [47.422458, 8.55073], [47.386683, 8.518686], [47.367715, 8.494986], [47.390718, 8.517165], [47.384491, 8.516376], [47.391254, 8.487253], [47.367663, 8.545747], [47.425082, 8.510982], [47.372945, 8.531318], [47.336391, 8.53962], [47.375925, 8.530081], [47.372894, 8.539593], [47.377783, 8.565173], [47.381469, 8.503721], [47.407356, 8.550666], [47.369704, 8.50857], [47.382009, 8.530749], [47.362655, 8.518887], [47.381246, 8.513238], [47.370668, 8.469834], [47.358118, 8.534548], [47.362632, 8.615147], [47.384689, 8.509639], [47.378507, 8.54143], [47.373458, 8.537009], [47.395017, 8.489884], [47.407713, 8.543466], [47.374638, 8.529287], [47.400708, 8.507868], [47.378882, 8.522686], [47.359853, 8.549715], [47.379346, 8.526019], [47.402939, 8.547871], [47.367462, 8.545094], [47.385975, 8.51834], [47.398094, 8.532443], [47.397934, 8.546442], [47.362741, 8.521232], [47.378784, 8.542575], [47.354292, 8.575755], [47.364586, 8.537342], [47.355199, 8.531219], [47.411442, 8.54671], [47.399551, 8.547576], [47.388634, 8.528302], [47.360058, 8.550818], [47.371169, 8.514531], [47.383181, 8.539924], [47.375219, 8.515222], [47.359517, 8.522544], [47.383633, 8.548171], [47.381475, 8.532989], [47.375405, 8.517438], [47.389779, 8.521305], [47.42557, 8.494105], [47.378541, 8.528413], [47.370151, 8.548924], [47.369347, 8.541704], [47.391218, 8.549786], [47.369459, 8.526149], [47.35763, 8.554487], [47.367906, 8.494751], [47.375713, 8.548629], [47.34102, 8.524762], [47.378291, 8.509855], [47.387369, 8.52707], [47.370357, 8.518606], [47.3669, 8.539906], [47.402871, 8.554004], [47.376222, 8.548944], [47.369053, 8.525306], [47.412278, 8.554228], [47.39142, 8.538982], [47.431398, 8.516676], [47.376316, 8.527772], [47.37081, 8.542979], [47.430219, 8.544344], [47.392114, 8.524637], [47.420604, 8.508851], [47.4189, 8.506365], [47.37772, 8.517153], [47.428121, 8.490524], [47.370182, 8.513307], [47.414218, 8.518568], [47.374797, 8.527661], [47.410921, 8.558771], [47.369156, 8.532524], [47.364001, 8.551457], [47.370804, 8.548315], [47.361951, 8.547614], [47.385493, 8.530462], [47.367729, 8.546371], [47.38695, 8.547393], [47.374397, 8.521363], [47.379649, 8.521536], [47.375886, 8.538026], [47.421118, 8.501903], [47.341081, 8.519231], [47.342536, 8.53092], [47.414793, 8.561052], [47.369569, 8.493963], [47.386465, 8.49651], [47.376929, 8.535226], [47.410865, 8.563514], [47.373918, 8.54634], [47.365375, 8.552597], [47.356702, 8.52344], [47.382354, 8.530425], [47.373247, 8.535495], [47.378939, 8.52907], [47.365677, 8.553901], [47.427536, 8.547429], [47.429183, 8.546417], [47.387925, 8.529135], [47.374148, 8.5192], [47.409082, 8.573931], [47.369053, 8.525293], [47.380355, 8.542872], [47.387933, 8.477439], [47.379645, 8.527694], [47.383633, 8.548145], [47.413889, 8.52483], [47.405663, 8.481362], [47.403137, 8.555308], [47.37946, 8.544297], [47.401354, 8.545255], [47.381469, 8.503734], [47.394249, 8.490186], [47.380503, 8.519686], [47.364003, 8.547485], [47.368185, 8.550339], [47.372125, 8.542794], [47.373511, 8.54277], [47.373825, 8.483918], [47.402552, 8.487157], [47.398759, 8.506531], [47.381314, 8.53574], [47.37377, 8.53826], [47.383625, 8.51567], [47.383724, 8.515752], [47.372705, 8.534861], [47.405133, 8.555469], [47.365885, 8.545379], [47.357995, 8.532282], [47.411789, 8.525304], [47.38817, 8.5251], [47.375354, 8.516179], [47.372974, 8.511893], [47.369039, 8.541022], [47.371705, 8.521666], [47.367169, 8.555905], [47.378518, 8.531763], [47.412951, 8.540354], [47.368188, 8.554708], [47.360274, 8.589399], [47.369014, 8.538003], [47.370302, 8.547205], [47.39804, 8.532402], [47.328314, 8.514712], [47.37202, 8.53494], [47.368207, 8.546156], [47.383757, 8.510216], [47.375471, 8.528655], [47.369736, 8.536839], [47.399814, 8.544521], [47.343887, 8.534587], [47.38814, 8.48449], [47.350978, 8.534282], [47.371515, 8.522682], [47.373047, 8.532949], [47.38416, 8.52866], [47.37331, 8.535536], [47.388461, 8.52851], [47.388498, 8.490537], [47.413586, 8.545416], [47.40376, 8.548604], [47.405813, 8.590635], [47.372874, 8.547272], [47.430715, 8.549789], [47.364194, 8.551977], [47.364899, 8.554348], [47.39866, 8.539171], [47.391041, 8.522986], [47.359708, 8.594709], [47.4163, 8.506432], [47.408903, 8.539356], [47.378901, 8.519786], [47.404984, 8.577182], [47.39133, 8.536198], [47.381536, 8.571384], [47.375641, 8.487939], [47.409228, 8.564433], [47.378423, 8.510202], [47.363348, 8.552939], [47.39019, 8.516796], [47.34846, 8.534191], [47.412086, 8.563844], [47.394706, 8.471465], [47.377716, 8.507936], [47.374224, 8.551908], [47.400037, 8.545625], [47.380316, 8.50587], [47.38565, 8.535684], [47.418393, 8.554422], [47.350916, 8.576954], [47.387756, 8.485131], [47.353088, 8.512658], [47.332811, 8.534849], [47.410506, 8.542], [47.380276, 8.542659], [47.373904, 8.538355], [47.343355, 8.535688], [47.371069, 8.538549], [47.392191, 8.492981], [47.409521, 8.545358], [47.373283, 8.535509], [47.370522, 8.535492], [47.361908, 8.548328], [47.361827, 8.505367], [47.410038, 8.542957], [47.363429, 8.550094], [47.406427, 8.532998], [47.378451, 8.540714], [47.37267, 8.498103], [47.373032, 8.534471], [47.379047, 8.544209], [47.381583, 8.532938], [47.367039, 8.491186], [47.368269, 8.538809], [47.381066, 8.52861], [47.355053, 8.509322], [47.368988, 8.511151], [47.363157, 8.556801], [47.369134, 8.548015], [47.381718, 8.513778], [47.371379, 8.516072], [47.36726, 8.544587], [47.36205, 8.547537], [47.366815, 8.543161], [47.3909, 8.488531], [47.367607, 8.534651], [47.399645, 8.495301], [47.375168, 8.522584], [47.409243, 8.547115], [47.427538, 8.546303], [47.368661, 8.543901], [47.421048, 8.5496], [47.392918, 8.522309], [47.364422, 8.497105], [47.378734, 8.54219], [47.386731, 8.502833], [47.376025, 8.539485], [47.37169, 8.518448], [47.372496, 8.478622], [47.392029, 8.528874], [47.387751, 8.529436], [47.377622, 8.498572], [47.396096, 8.526851], [47.372622, 8.547293], [47.387869, 8.522604], [47.387315, 8.533665], [47.391108, 8.515795], [47.390677, 8.522515], [47.391603, 8.523475], [47.37027, 8.548714], [47.381279, 8.542229], [47.378479, 8.488405], [47.396833, 8.541121], [47.377265, 8.538703], [47.410765, 8.567394], [47.360276, 8.568165], [47.412173, 8.546434], [47.391824, 8.52389], [47.371498, 8.534969], [47.354035, 8.520089], [47.372867, 8.535818], [47.42174, 8.553339], [47.348826, 8.532557], [47.378248, 8.520289], [47.369129, 8.52777], [47.377523, 8.527598], [47.37352, 8.519915], [47.410471, 8.54188], [47.374292, 8.52495], [47.393803, 8.524844], [47.368232, 8.539788], [47.377174, 8.523618], [47.370735, 8.487406], [47.364058, 8.536021], [47.364812, 8.504566], [47.396474, 8.52874], [47.383171, 8.530521], [47.380755, 8.518672], [47.3848, 8.531402], [47.410044, 8.549874], [47.399739, 8.543923], [47.376129, 8.536097], [47.39067, 8.523191], [47.351395, 8.601094], [47.374424, 8.540419], [47.365676, 8.503564], [47.378665, 8.541817], [47.398645, 8.539767], [47.38082, 8.536618], [47.378905, 8.522143], [47.367725, 8.490987], [47.398752, 8.524693], [47.390165, 8.547009], [47.375719, 8.529057], [47.377228, 8.52926], [47.386939, 8.484996], [47.417146, 8.54561], [47.375581, 8.514064], [47.413997, 8.521983], [47.390675, 8.489573], [47.364164, 8.561535], [47.362225, 8.54717], [47.380349, 8.550116], [47.380622, 8.549777], [47.397255, 8.594557], [47.37383, 8.476304], [47.379989, 8.520695], [47.360275, 8.56557], [47.390779, 8.488979], [47.374966, 8.544892], [47.395334, 8.546402], [47.38321, 8.528323], [47.368984, 8.5326], [47.402238, 8.486091], [47.40369, 8.5888], [47.382544, 8.548228], [47.389663, 8.521236], [47.369866, 8.521165], [47.389581, 8.485207], [47.376065, 8.5277], [47.360225, 8.567026], [47.375849, 8.524849], [47.378436, 8.567464], [47.378793, 8.49445], [47.405059, 8.48253], [47.398291, 8.537309], [47.426014, 8.547623], [47.377965, 8.51398], [47.362278, 8.54729], [47.365098, 8.55328], [47.37216, 8.540094], [47.380608, 8.517066], [47.413401, 8.539343], [47.405596, 8.481838], [47.398435, 8.538252], [47.387008, 8.486295], [47.369994, 8.508391], [47.388604, 8.53903], [47.373226, 8.525418], [47.392354, 8.489911], [47.373163, 8.533017], [47.394758, 8.525658], [47.362818, 8.506128], [47.373299, 8.52432], [47.378841, 8.523254], [47.409603, 8.537661], [47.346322, 8.563833], [47.400905, 8.54612], [47.400258, 8.494174], [47.391159, 8.487755], [47.366429, 8.544927], [47.3834, 8.49915], [47.378089, 8.509401], [47.373241, 8.518956], [47.345012, 8.534517], [47.409562, 8.493762], [47.379645, 8.527694], [47.381105, 8.555641], [47.415241, 8.558464], [47.385349, 8.494607], [47.369184, 8.554014], [47.335949, 8.531169], [47.410567, 8.486109], [47.367108, 8.539751], [47.371723, 8.556623], [47.367807, 8.544717], [47.352599, 8.559425], [47.3729, 8.520803], [47.347129, 8.531345], [47.366893, 8.544381], [47.383146, 8.530308], [47.373904, 8.536409], [47.379647, 8.524595], [47.360953, 8.571661], [47.422458, 8.550743], [47.361979, 8.56047], [47.36711, 8.529106], [47.360934, 8.598959], [47.40285, 8.500823], [47.374261, 8.561059], [47.387016, 8.486335], [47.381417, 8.571606], [47.393148, 8.492642], [47.378146, 8.548123], [47.407009, 8.550248], [47.411592, 8.509716], [47.385539, 8.520782], [47.391542, 8.486212], [47.3782, 8.525453], [47.370323, 8.513601], [47.378376, 8.510479], [47.388515, 8.486789], [47.365451, 8.545595], [47.378522, 8.5752], [47.370101, 8.556894], [47.361871, 8.515138], [47.383723, 8.505117], [47.380715, 8.492833], [47.370027, 8.519249], [47.345086, 8.529569], [47.404013, 8.574366], [47.41388, 8.520059], [47.414793, 8.5196], [47.368047, 8.560902], [47.356893, 8.555332], [47.386993, 8.501739], [47.368385, 8.537024], [47.368384, 8.537103], [47.365097, 8.530826], [47.385619, 8.536054], [47.383012, 8.500348], [47.359935, 8.532653], [47.368036, 8.540578], [47.383878, 8.530933], [47.366801, 8.60049], [47.391626, 8.517143], [47.376974, 8.543769], [47.394097, 8.493151], [47.344713, 8.530925], [47.374983, 8.52601], [47.402145, 8.499272], [47.404838, 8.594602], [47.351325, 8.560921], [47.377014, 8.514663], [47.370623, 8.557765], [47.390108, 8.538942], [47.385223, 8.517027], [47.398904, 8.540859], [47.413568, 8.553804], [47.379008, 8.509234], [47.370534, 8.549276], [47.400975, 8.588676], [47.399743, 8.517718], [47.376578, 8.544688], [47.378546, 8.510575], [47.356408, 8.526955], [47.395723, 8.529228], [47.3764, 8.543519], [47.386217, 8.52514], [47.391381, 8.487123], [47.38206, 8.547119], [47.37971, 8.542581], [47.375203, 8.547334], [47.37838, 8.530211], [47.408498, 8.58114], [47.39115, 8.47782], [47.350081, 8.56112], [47.40767, 8.54418], [47.375136, 8.558959], [47.36727, 8.545381], [47.411333, 8.562609], [47.418411, 8.546921], [47.374887, 8.523783], [47.388492, 8.490311], [47.35889, 8.516468], [47.353938, 8.560446], [47.363381, 8.533478], [47.348431, 8.562448], [47.376975, 8.539876], [47.37382, 8.537692], [47.36404, 8.53602], [47.408804, 8.579304], [47.417673, 8.483148], [47.36226, 8.547303], [47.372191, 8.521596], [47.3721, 8.57505], [47.36479, 8.554439], [47.375908, 8.541376], [47.410944, 8.543268], [47.372533, 8.505211], [47.399823, 8.544508], [47.359756, 8.588038], [47.383608, 8.483288], [47.338878, 8.538176], [47.376747, 8.525013], [47.370426, 8.514172], [47.366424, 8.533197], [47.38072, 8.550839], [47.391192, 8.523162], [47.385774, 8.517753], [47.40832, 8.581812], [47.369549, 8.52615], [47.359181, 8.553183], [47.375467, 8.517571], [47.378041, 8.510658], [47.373252, 8.553782], [47.356527, 8.55134], [47.366901, 8.535073], [47.383988, 8.556086], [47.382667, 8.540046], [47.400259, 8.50868], [47.373707, 8.538232], [47.364963, 8.557104], [47.380137, 8.528009], [47.404347, 8.565032], [47.383302, 8.515611], [47.387584, 8.519459], [47.328952, 8.512833], [47.369009, 8.541379], [47.330763, 8.536487], [47.414405, 8.537827], [47.358248, 8.557479], [47.41681, 8.510577], [47.374974, 8.519296], [47.386067, 8.535322], [47.409571, 8.578088], [47.380974, 8.503764], [47.360298, 8.523645], [47.369723, 8.501632], [47.384888, 8.526848], [47.373228, 8.520373], [47.385079, 8.508362], [47.363358, 8.557507], [47.391086, 8.522934], [47.375777, 8.523828], [47.38968, 8.493169], [47.357456, 8.524567], [47.390105, 8.510463], [47.370553, 8.509196], [47.369586, 8.531765], [47.419354, 8.556337], [47.419134, 8.556836], [47.372015, 8.522162], [47.394937, 8.486809], [47.421351, 8.49813], [47.366789, 8.543055], [47.41119, 8.545764], [47.36462, 8.566417], [47.374015, 8.544581], [47.425916, 8.555865], [47.388592, 8.480181], [47.38163, 8.532754], [47.375733, 8.544604], [47.367906, 8.494764], [47.417281, 8.512203], [47.430065, 8.544433], [47.362195, 8.5475], [47.378523, 8.517871], [47.404749, 8.594534], [47.363068, 8.565987], [47.366531, 8.540891], [47.386673, 8.488448], [47.37607, 8.559085], [47.367317, 8.539517], [47.393048, 8.488772], [47.373762, 8.500667], [47.377451, 8.538998], [47.380496, 8.567362], [47.378032, 8.493098], [47.333765, 8.53201], [47.402369, 8.499396], [47.427073, 8.544106], [47.385589, 8.483036], [47.395652, 8.522391], [47.387334, 8.516328], [47.361531, 8.526464], [47.374632, 8.524136], [47.376567, 8.543906], [47.416252, 8.506762], [47.365718, 8.550592], [47.369006, 8.528417], [47.409171, 8.541482], [47.379154, 8.54241], [47.414048, 8.549733], [47.383105, 8.500005], [47.374565, 8.540673], [47.389156, 8.47043], [47.376346, 8.558534], [47.39048, 8.522418], [47.360096, 8.595512], [47.409641, 8.545931], [47.393246, 8.478868], [47.369274, 8.519948], [47.370448, 8.54983], [47.373132, 8.53536], [47.394187, 8.52509], [47.370599, 8.516784], [47.378099, 8.541766], [47.364116, 8.534711], [47.409172, 8.545126], [47.400224, 8.489933], [47.385585, 8.532994], [47.37672, 8.516365], [47.374898, 8.518765], [47.39026, 8.521897], [47.411499, 8.526424], [47.374776, 8.485128], [47.379349, 8.521888], [47.378671, 8.523132], [47.381442, 8.497906], [47.365247, 8.521575], [47.417496, 8.541946], [47.372972, 8.496507], [47.376392, 8.524476], [47.363896, 8.566891], [47.3787, 8.529674], [47.389463, 8.511854], [47.370653, 8.516772], [47.393928, 8.543935], [47.415429, 8.544514], [47.367737, 8.546384], [47.371833, 8.52241], [47.374035, 8.551931], [47.419737, 8.50438], [47.37335, 8.536967], [47.385353, 8.536605], [47.357777, 8.514367], [47.419669, 8.504909], [47.381299, 8.541024], [47.382814, 8.529255], [47.392328, 8.52382], [47.392121, 8.494781], [47.364373, 8.548234], [47.374565, 8.516891], [47.376231, 8.56755], [47.358946, 8.534446], [47.374753, 8.54171], [47.390113, 8.510583], [47.386485, 8.496311], [47.385803, 8.529926], [47.344025, 8.530408], [47.369606, 8.548462], [47.420865, 8.512739], [47.41402, 8.508838], [47.373576, 8.519705], [47.368874, 8.560919], [47.375984, 8.514205], [47.377923, 8.525222], [47.379701, 8.527497], [47.391715, 8.51341], [47.376875, 8.541833], [47.413056, 8.517697], [47.353702, 8.512366], [47.393769, 8.508272], [47.426347, 8.541891], [47.410829, 8.554317], [47.369548, 8.53383], [47.409154, 8.549843], [47.382698, 8.500262], [47.39029, 8.516706], [47.366354, 8.540503], [47.379324, 8.507187], [47.368271, 8.522351], [47.393189, 8.474151], [47.36329, 8.549602], [47.368722, 8.500924], [47.372688, 8.534702], [47.336378, 8.524799], [47.346191, 8.534396], [47.371894, 8.536884], [47.366907, 8.545784], [47.356724, 8.553317], [47.366348, 8.499844], [47.358527, 8.551912], [47.335162, 8.54109], [47.396493, 8.528661], [47.358487, 8.534503], [47.375636, 8.496427], [47.376974, 8.535227], [47.37186, 8.522371], [47.387873, 8.486074], [47.369065, 8.527862], [47.412389, 8.546425], [47.366332, 8.53436], [47.370043, 8.543307], [47.385269, 8.487625], [47.333767, 8.514571], [47.363299, 8.533569], [47.380931, 8.535335], [47.370085, 8.540792], [47.369391, 8.525671], [47.342664, 8.531663], [47.382475, 8.52999], [47.411225, 8.525994], [47.405059, 8.482517], [47.419605, 8.548086], [47.391529, 8.539898], [47.366316, 8.540794], [47.382411, 8.530095], [47.398848, 8.49494], [47.390609, 8.522991], [47.370817, 8.52427], [47.367289, 8.545329], [47.419623, 8.5481], [47.391751, 8.519173], [47.365635, 8.521516], [47.408642, 8.580215], [47.37485, 8.534376], [47.376983, 8.546537], [47.427152, 8.49134], [47.360426, 8.564793], [47.383004, 8.513843], [47.365867, 8.530246], [47.366497, 8.516873], [47.370948, 8.538003], [47.378317, 8.527349], [47.406907, 8.550577], [47.361173, 8.529144], [47.375057, 8.528686], [47.344015, 8.532498], [47.367965, 8.540418], [47.375523, 8.516434], [47.390564, 8.489889], [47.36674, 8.527364], [47.400299, 8.548346], [47.375565, 8.494333], [47.397958, 8.532546], [47.378324, 8.540804], [47.355422, 8.525651], [47.388977, 8.51762], [47.382081, 8.49882], [47.37599, 8.512642], [47.41143, 8.563711], [47.36135, 8.506337], [47.369971, 8.541399], [47.409079, 8.572327], [47.429926, 8.539181], [47.385488, 8.542329], [47.37541, 8.540823], [47.390739, 8.546266], [47.375577, 8.526909], [47.406002, 8.484655], [47.366499, 8.531901], [47.361721, 8.574074], [47.418892, 8.507292], [47.406096, 8.584824], [47.421172, 8.549762], [47.369179, 8.54803], [47.393373, 8.473651], [47.403732, 8.550591], [47.409347, 8.540889], [47.361357, 8.512401], [47.358923, 8.549087], [47.329559, 8.529622], [47.391291, 8.487148], [47.415105, 8.570574], [47.391323, 8.542636], [47.392689, 8.523695], [47.385512, 8.533112], [47.396279, 8.509144], [47.374518, 8.53997], [47.378674, 8.541844], [47.397043, 8.530355], [47.364277, 8.555474], [47.38651, 8.527516], [47.37069, 8.516733], [47.39364, 8.510548], [47.411166, 8.543524], [47.411268, 8.532793], [47.36911, 8.52781], [47.399785, 8.543805], [47.364167, 8.546284], [47.400184, 8.546264], [47.35344, 8.554281], [47.38305, 8.514718], [47.391347, 8.522926], [47.38227, 8.488043], [47.364348, 8.546168], [47.384019, 8.482608], [47.377905, 8.528056], [47.367487, 8.54532], [47.419272, 8.508029], [47.391036, 8.527331], [47.416519, 8.508079], [47.404633, 8.571663], [47.378348, 8.52976], [47.417723, 8.545423], [47.404204, 8.561293], [47.412283, 8.553645], [47.354413, 8.558775], [47.414486, 8.483496], [47.363441, 8.507902], [47.411957, 8.563192], [47.391465, 8.511285], [47.400587, 8.548313], [47.412167, 8.481251], [47.372542, 8.529257], [47.39181, 8.51765], [47.365196, 8.537474], [47.378538, 8.510456], [47.41784, 8.553894], [47.37352, 8.519915], [47.421802, 8.546886], [47.363014, 8.548365], [47.370767, 8.535259], [47.403674, 8.571338], [47.387492, 8.536861], [47.379845, 8.554794], [47.374103, 8.544822], [47.414418, 8.513484], [47.360571, 8.535684], [47.365791, 8.526934], [47.377318, 8.4994], [47.392222, 8.476675], [47.403476, 8.548187], [47.36009, 8.522873], [47.413205, 8.531508], [47.362482, 8.53436], [47.370667, 8.469913], [47.424512, 8.522886], [47.362431, 8.526429], [47.373886, 8.538302], [47.385878, 8.532457], [47.373328, 8.50377], [47.382933, 8.530966], [47.376813, 8.514116], [47.392386, 8.524351], [47.389897, 8.48108], [47.37548, 8.564303], [47.385193, 8.539277], [47.367487, 8.54532], [47.378951, 8.510491], [47.377007, 8.542154], [47.419186, 8.547653], [47.387077, 8.535038], [47.386694, 8.520342], [47.335831, 8.532331], [47.364674, 8.546016], [47.383081, 8.528652], [47.333422, 8.518706], [47.370073, 8.541044], [47.362545, 8.504534], [47.36653, 8.541884], [47.389423, 8.543762], [47.386193, 8.526795], [47.372722, 8.534928], [47.383172, 8.539924], [47.382558, 8.52978], [47.406907, 8.550577], [47.370121, 8.479727], [47.377063, 8.523933], [47.388012, 8.488646], [47.3666, 8.544891], [47.369956, 8.52306], [47.3745, 8.532449], [47.400239, 8.585851], [47.362916, 8.554744], [47.36909, 8.525161], [47.407153, 8.551152], [47.388045, 8.490991], [47.387614, 8.541023], [47.376621, 8.527897], [47.391385, 8.519814], [47.3861, 8.508833], [47.407876, 8.580305], [47.431, 8.550126], [47.381667, 8.528795], [47.369036, 8.525213], [47.376855, 8.543038], [47.37443, 8.53973], [47.399764, 8.544056], [47.376039, 8.541816], [47.415072, 8.544254], [47.387963, 8.494049], [47.378464, 8.531735], [47.407599, 8.547862], [47.422914, 8.550063], [47.360615, 8.501239], [47.373446, 8.481037], [47.3588, 8.583821], [47.382313, 8.499102], [47.405976, 8.548213], [47.380567, 8.519542], [47.379763, 8.494615], [47.401473, 8.491124], [47.357161, 8.552691], [47.406894, 8.586869], [47.387866, 8.524908], [47.3786, 8.55886], [47.37477, 8.527608], [47.421141, 8.500419], [47.403263, 8.534656], [47.410613, 8.550562], [47.430519, 8.485998], [47.386099, 8.492238], [47.381666, 8.490097], [47.428073, 8.489913], [47.376715, 8.544465], [47.37235, 8.574393], [47.383216, 8.540985], [47.394018, 8.524968], [47.385275, 8.494844], [47.357665, 8.521513], [47.360678, 8.524434], [47.364473, 8.536863], [47.396058, 8.545012], [47.37112, 8.5303], [47.386901, 8.545988], [47.405894, 8.548357], [47.410858, 8.546618], [47.384997, 8.508453], [47.36687, 8.513465], [47.391373, 8.520172], [47.338388, 8.532079], [47.399713, 8.543777], [47.365781, 8.538413], [47.377797, 8.532834], [47.398313, 8.533044], [47.391439, 8.519868], [47.369846, 8.554452], [47.404344, 8.572677], [47.364629, 8.566417], [47.398685, 8.542166], [47.37012, 8.5512], [47.366427, 8.545152], [47.422876, 8.550314], [47.376592, 8.527102], [47.38743, 8.525284], [47.378675, 8.517954], [47.413992, 8.541489], [47.351126, 8.582981], [47.372545, 8.534593], [47.372036, 8.534212], [47.37737, 8.548346], [47.383004, 8.513843], [47.389462, 8.512927], [47.389694, 8.533184], [47.385106, 8.495555], [47.385896, 8.533451], [47.403105, 8.575274], [47.374111, 8.516339], [47.403881, 8.558424], [47.378802, 8.529359], [47.343768, 8.534836], [47.37318, 8.536963], [47.392596, 8.502778], [47.393869, 8.505174], [47.373419, 8.53824], [47.374372, 8.542987], [47.417895, 8.509088], [47.38413, 8.539467], [47.361852, 8.547586], [47.381574, 8.550883], [47.426482, 8.54192], [47.370081, 8.525089], [47.374035, 8.498315], [47.369417, 8.52579], [47.336121, 8.514804], [47.348145, 8.527527], [47.378934, 8.524832], [47.375946, 8.533591], [47.385118, 8.531077], [47.386543, 8.482975], [47.375732, 8.526767], [47.364484, 8.546131], [47.385929, 8.498102], [47.395023, 8.545097], [47.375941, 8.529353], [47.427875, 8.490904], [47.392878, 8.522759], [47.369814, 8.509301], [47.355574, 8.532431], [47.370357, 8.518633], [47.389326, 8.524514], [47.383996, 8.511638], [47.378786, 8.542363], [47.379896, 8.521091], [47.374013, 8.544806], [47.374034, 8.520773], [47.371892, 8.521895], [47.3836, 8.529934], [47.372043, 8.502698], [47.359575, 8.524994], [47.367756, 8.523559], [47.389519, 8.473099], [47.377924, 8.528016], [47.406255, 8.566768], [47.375613, 8.526976], [47.377264, 8.538769], [47.370166, 8.540807], [47.358937, 8.534459], [47.39131, 8.537311], [47.377619, 8.521151], [47.361836, 8.549227], [47.368973, 8.556327], [47.383995, 8.529041], [47.410796, 8.557682], [47.372964, 8.520751], [47.419175, 8.507828], [47.379398, 8.495164], [47.407433, 8.57416], [47.412287, 8.509465], [47.365094, 8.549096], [47.364413, 8.566479], [47.362855, 8.558304], [47.370372, 8.524737], [47.371589, 8.519651], [47.393755, 8.53748], [47.367651, 8.496123], [47.357547, 8.52159], [47.385665, 8.493527], [47.381728, 8.516599], [47.370962, 8.516447], [47.335235, 8.534422], [47.412189, 8.55033], [47.407657, 8.548301], [47.377945, 8.497665], [47.374531, 8.525352], [47.371948, 8.534952], [47.380088, 8.548217], [47.37766, 8.508068], [47.377494, 8.521082], [47.380455, 8.537113], [47.370627, 8.532051], [47.37927, 8.537844], [47.388653, 8.492288], [47.424577, 8.513066], [47.391565, 8.511155], [47.379571, 8.524991], [47.36716, 8.532444], [47.366944, 8.520033], [47.379239, 8.522084], [47.366855, 8.518032], [47.38785, 8.519888], [47.373011, 8.532908], [47.389997, 8.522038], [47.36596, 8.500988], [47.379396, 8.53778], [47.367372, 8.494184], [47.352876, 8.527571], [47.375692, 8.529057], [47.382235, 8.514265], [47.370287, 8.541234], [47.374454, 8.540049], [47.388076, 8.540727], [47.374965, 8.519375], [47.429936, 8.540003], [47.417617, 8.553717], [47.406238, 8.55373], [47.3594, 8.585859], [47.361715, 8.526044], [47.381099, 8.502879], [47.36621, 8.553714], [47.380543, 8.567231], [47.398443, 8.494893], [47.368118, 8.555475], [47.361202, 8.525159], [47.358502, 8.553619], [47.357118, 8.527035], [47.372864, 8.542717], [47.369389, 8.525882], [47.363317, 8.533583], [47.396026, 8.541793], [47.374776, 8.549629], [47.403705, 8.534519], [47.395384, 8.533672], [47.374509, 8.53997], [47.402342, 8.499316], [47.379999, 8.520669], [47.379719, 8.549176], [47.395678, 8.536765], [47.376463, 8.548247], [47.38332, 8.505983], [47.383012, 8.514863], [47.354086, 8.553513], [47.377954, 8.541895], [47.391621, 8.505142], [47.379652, 8.542129], [47.387151, 8.540549], [47.374112, 8.515266], [47.372563, 8.535547], [47.406902, 8.586909], [47.373965, 8.526174], [47.369832, 8.547487], [47.341329, 8.530154], [47.394769, 8.525433], [47.359747, 8.550415], [47.371111, 8.530327], [47.370686, 8.53523], [47.370053, 8.541321], [47.360256, 8.566536], [47.387262, 8.519201], [47.391686, 8.513581], [47.363506, 8.569941], [47.412974, 8.551009], [47.393799, 8.472321], [47.376434, 8.543718], [47.383526, 8.573042], [47.418489, 8.508], [47.377536, 8.504013], [47.409745, 8.531211], [47.382155, 8.514197], [47.346573, 8.563878], [47.367354, 8.490225], [47.369526, 8.52856], [47.407525, 8.584908], [47.374672, 8.539907], [47.403628, 8.554815], [47.390747, 8.479614], [47.35437, 8.557676], [47.381808, 8.529169], [47.414008, 8.543636], [47.357656, 8.588483], [47.372556, 8.532541], [47.419706, 8.50483], [47.378123, 8.536469], [47.37931, 8.559894], [47.409683, 8.545282], [47.378423, 8.543653], [47.385172, 8.536787], [47.36578, 8.552579], [47.357943, 8.519705], [47.374011, 8.519396], [47.414366, 8.551263], [47.409853, 8.537826], [47.384971, 8.532319], [47.369298, 8.510614], [47.372782, 8.518033], [47.36442, 8.546183], [47.362412, 8.547333], [47.41358, 8.572025], [47.377572, 8.522328], [47.368154, 8.548935], [47.36422, 8.547317], [47.365934, 8.52703], [47.358468, 8.50575], [47.3706, 8.516691], [47.344021, 8.529905], [47.402342, 8.499316], [47.391533, 8.519446], [47.391961, 8.517879], [47.385749, 8.532786], [47.411199, 8.570769], [47.385017, 8.532267], [47.391195, 8.516168], [47.38435, 8.548385], [47.371418, 8.471477], [47.365516, 8.521712], [47.369909, 8.536591], [47.392253, 8.524177], [47.376112, 8.535978], [47.35479, 8.526829], [47.395134, 8.532462], [47.370106, 8.548883], [47.372514, 8.478609], [47.379124, 8.511262], [47.382361, 8.544755], [47.425825, 8.556023], [47.420157, 8.507609], [47.368068, 8.494728], [47.380954, 8.526198], [47.395146, 8.491449], [47.393774, 8.502801], [47.349816, 8.575409], [47.379402, 8.523888], [47.347484, 8.532808], [47.382125, 8.512567], [47.401035, 8.548534], [47.395356, 8.518477], [47.378519, 8.523076], [47.388488, 8.486722], [47.369126, 8.547922], [47.370344, 8.524776], [47.376402, 8.528171], [47.383269, 8.513332], [47.376925, 8.544192], [47.378371, 8.530237], [47.412151, 8.524105], [47.387376, 8.488329], [47.380239, 8.526673], [47.368136, 8.522348], [47.351394, 8.525476], [47.364505, 8.566256], [47.364231, 8.531086], [47.369458, 8.526294], [47.334921, 8.524862], [47.371954, 8.517103], [47.380024, 8.546467], [47.374904, 8.54946], [47.377767, 8.525524], [47.395937, 8.5455], [47.364822, 8.555843], [47.376999, 8.543888], [47.364719, 8.545964], [47.369014, 8.538003], [47.379389, 8.507917], [47.401928, 8.488563], [47.376648, 8.527831], [47.382107, 8.50972], [47.401587, 8.48951], [47.381266, 8.548228], [47.393373, 8.520769], [47.367092, 8.544279], [47.390824, 8.474065], [47.340021, 8.51913], [47.393364, 8.520835], [47.383554, 8.480254], [47.420853, 8.549252], [47.422822, 8.551215], [47.364536, 8.553785], [47.356709, 8.523691], [47.382503, 8.500934], [47.373766, 8.515762], [47.413034, 8.553183], [47.39289, 8.522454], [47.385061, 8.529513], [47.3906, 8.522964], [47.371089, 8.520171], [47.430153, 8.549313], [47.381219, 8.49773], [47.3638, 8.55177], [47.366756, 8.535216], [47.374413, 8.521642], [47.343985, 8.528064], [47.367888, 8.560621], [47.365722, 8.532269], [47.387158, 8.535093], [47.398779, 8.533199], [47.417905, 8.508916], [47.38512, 8.503873], [47.362478, 8.533883], [47.386764, 8.490396], [47.37782, 8.574324], [47.381313, 8.506976], [47.390915, 8.522017], [47.362813, 8.533599], [47.379208, 8.526334], [47.402929, 8.575747], [47.388852, 8.496186], [47.378529, 8.575319], [47.374477, 8.540499], [47.382766, 8.575343], [47.394366, 8.541321], [47.39106, 8.477792], [47.381438, 8.537862], [47.388591, 8.523281], [47.385812, 8.482285], [47.362408, 8.592782], [47.405628, 8.585715], [47.377095, 8.529112], [47.402297, 8.543552], [47.376041, 8.526402], [47.369633, 8.525848], [47.361784, 8.576776], [47.360039, 8.568518], [47.370275, 8.52741], [47.361526, 8.554304], [47.369616, 8.538969], [47.38826, 8.546798], [47.388009, 8.48503], [47.417243, 8.512427], [47.40438, 8.533592], [47.38108, 8.542371], [47.399906, 8.544337], [47.371423, 8.517225], [47.407076, 8.586687], [47.410223, 8.546181], [47.415509, 8.56605], [47.405453, 8.592456], [47.383733, 8.498243], [47.386788, 8.547482], [47.365342, 8.545725], [47.377217, 8.539894], [47.419908, 8.548344], [47.369143, 8.528142], [47.406912, 8.586856], [47.374325, 8.531902], [47.37394, 8.576387], [47.369868, 8.547474], [47.393074, 8.492799], [47.411681, 8.512792], [47.344486, 8.518705], [47.368188, 8.553821], [47.407908, 8.547498], [47.368733, 8.519183], [47.376714, 8.511147], [47.376264, 8.525652], [47.377417, 8.526404], [47.371382, 8.509028], [47.384576, 8.500392], [47.366711, 8.541755], [47.352853, 8.557326], [47.391913, 8.543006], [47.341336, 8.530432], [47.416259, 8.532935], [47.379638, 8.507194], [47.328917, 8.513732], [47.398671, 8.547425], [47.390878, 8.522109], [47.384964, 8.53216], [47.367312, 8.537226], [47.402459, 8.499371], [47.383076, 8.513871], [47.413268, 8.531496], [47.391886, 8.542992], [47.411586, 8.558772], [47.385643, 8.532651], [47.413971, 8.548406], [47.363841, 8.531422], [47.380304, 8.50138], [47.3864, 8.527739], [47.370545, 8.51289], [47.379076, 8.555241], [47.385347, 8.517202], [47.396807, 8.529648], [47.403926, 8.569501], [47.39162, 8.505182], [47.386815, 8.547456], [47.413507, 8.539504], [47.383546, 8.512662], [47.356939, 8.522174], [47.374176, 8.544744], [47.389786, 8.526378], [47.373814, 8.546868], [47.398778, 8.524707], [47.368827, 8.563024], [47.393776, 8.500695], [47.39718, 8.531126], [47.373769, 8.538339], [47.381379, 8.5174], [47.36125, 8.535301], [47.385845, 8.485597], [47.377716, 8.522397], [47.397482, 8.532457], [47.360925, 8.57178], [47.373515, 8.529078], [47.342508, 8.526261], [47.419086, 8.506726], [47.415189, 8.550777], [47.399979, 8.545134], [47.407314, 8.549433], [47.387407, 8.487932], [47.428765, 8.489039], [47.370824, 8.522562], [47.393737, 8.496111], [47.396992, 8.480305], [47.37485, 8.534376], [47.370804, 8.548328], [47.370607, 8.52077], [47.406844, 8.550589], [47.364533, 8.548449], [47.410954, 8.563635], [47.380025, 8.548269], [47.404024, 8.534049], [47.381232, 8.536798], [47.366807, 8.543028], [47.366622, 8.541661], [47.332652, 8.529857], [47.391589, 8.513473], [47.365887, 8.549854], [47.367888, 8.560621], [47.352964, 8.556944], [47.407206, 8.564245], [47.400661, 8.534006], [47.36442, 8.546156], [47.370788, 8.491458], [47.364634, 8.549153], [47.348898, 8.573602], [47.379508, 8.525082], [47.414505, 8.520522], [47.393223, 8.526276], [47.366554, 8.545022], [47.374903, 8.525902], [47.415709, 8.548151], [47.364711, 8.560832], [47.37459, 8.527697], [47.399786, 8.495595], [47.412227, 8.546422], [47.414557, 8.551095], [47.384007, 8.532511], [47.346565, 8.563798], [47.356421, 8.523712], [47.374007, 8.546342], [47.381065, 8.541125], [47.418608, 8.50783], [47.406411, 8.538444], [47.375608, 8.544548], [47.39213, 8.511391], [47.405759, 8.532309], [47.376749, 8.499561], [47.38034, 8.501314], [47.351644, 8.534217], [47.383067, 8.513858], [47.360453, 8.522497], [47.368366, 8.541843], [47.37047, 8.518039], [47.384741, 8.531957], [47.378153, 8.557632], [47.375212, 8.54458], [47.375545, 8.518844], [47.373391, 8.531764], [47.346645, 8.532049], [47.367056, 8.544331], [47.376848, 8.535278], [47.375607, 8.53704], [47.365451, 8.535202], [47.383202, 8.506086], [47.36893, 8.547667], [47.376908, 8.535531], [47.36243, 8.54736], [47.360648, 8.548382], [47.410768, 8.546564], [47.396816, 8.529701], [47.40459, 8.594173], [47.395052, 8.529758], [47.353619, 8.55439], [47.37999, 8.548122], [47.367999, 8.54627], [47.388312, 8.525249], [47.412396, 8.525806], [47.375375, 8.484544], [47.364864, 8.531655], [47.41059, 8.55296], [47.413775, 8.550959], [47.359393, 8.522396], [47.377589, 8.522448], [47.362553, 8.534441], [47.356325, 8.553613], [47.372994, 8.552624], [47.411877, 8.537867], [47.373213, 8.552218], [47.38405, 8.540273], [47.378491, 8.509647], [47.403034, 8.536029], [47.344943, 8.531392], [47.370681, 8.516733], [47.402095, 8.543985], [47.401399, 8.545229], [47.413633, 8.529052], [47.344132, 8.531495], [47.39986, 8.587698], [47.369882, 8.510719], [47.348378, 8.534361], [47.407553, 8.550763], [47.369025, 8.525372], [47.412343, 8.523751], [47.4228, 8.499007], [47.364766, 8.530647], [47.360856, 8.505361], [47.344615, 8.529904], [47.391642, 8.513514], [47.410396, 8.572011], [47.376319, 8.527494], [47.390859, 8.539328], [47.364173, 8.551328], [47.41227, 8.523816], [47.360278, 8.552213], [47.364316, 8.60074], [47.39813, 8.536193], [47.358083, 8.588081], [47.378153, 8.541807], [47.405936, 8.587259], [47.408681, 8.544718], [47.388064, 8.520078], [47.393523, 8.539198], [47.411258, 8.548031], [47.372661, 8.499096], [47.367852, 8.549472], [47.42706, 8.491484], [47.397626, 8.596128], [47.387523, 8.519246], [47.322968, 8.514062], [47.380359, 8.547137], [47.361838, 8.567589], [47.367216, 8.545433], [47.402249, 8.535377], [47.387833, 8.488497], [47.369044, 8.525293], [47.377682, 8.506731], [47.378356, 8.526039], [47.364361, 8.555118], [47.414895, 8.541176], [47.370297, 8.548635], [47.352531, 8.533706], [47.360024, 8.552512], [47.401806, 8.506777], [47.414216, 8.550929], [47.376289, 8.567167], [47.361571, 8.532779], [47.410131, 8.541727], [47.410885, 8.562467], [47.370215, 8.548806], [47.362944, 8.549118], [47.370297, 8.513468], [47.365105, 8.501991], [47.372011, 8.53494], [47.367286, 8.563296], [47.390617, 8.523123], [47.391048, 8.479143], [47.399499, 8.50534], [47.404581, 8.572377], [47.339175, 8.5191], [47.396971, 8.577898], [47.384041, 8.528923], [47.362426, 8.504783], [47.370546, 8.548932], [47.390539, 8.474801], [47.37999, 8.536839], [47.372676, 8.534133], [47.378156, 8.541436], [47.385159, 8.539965], [47.378039, 8.541473], [47.370708, 8.517607], [47.368638, 8.52449], [47.417908, 8.50376], [47.393817, 8.472269], [47.368534, 8.528831], [47.374319, 8.542906], [47.390923, 8.522136], [47.387014, 8.489593], [47.391529, 8.54268], [47.374993, 8.534485], [47.372611, 8.534317], [47.393342, 8.545009], [47.379296, 8.523701], [47.364824, 8.554651], [47.412036, 8.549479], [47.366513, 8.540864], [47.39091, 8.482504], [47.413176, 8.545951], [47.369484, 8.506103], [47.411198, 8.543989], [47.390627, 8.522978], [47.420963, 8.501224], [47.375761, 8.543545], [47.376886, 8.512051], [47.379645, 8.527694], [47.405879, 8.573041], [47.380833, 8.528606], [47.383506, 8.573214], [47.385744, 8.487794], [47.4083, 8.546976], [47.387368, 8.498117], [47.348299, 8.533142], [47.391536, 8.513313], [47.386787, 8.469801], [47.347947, 8.520892], [47.368107, 8.578685], [47.406522, 8.573545], [47.380913, 8.52866], [47.393421, 8.537699], [47.410543, 8.572557], [47.389627, 8.512533], [47.402399, 8.585699], [47.409178, 8.547273], [47.379014, 8.494865], [47.380695, 8.504778], [47.367991, 8.519591], [47.366443, 8.540677], [47.342594, 8.536188], [47.40177, 8.489063], [47.362325, 8.55918], [47.370216, 8.521212], [47.375768, 8.487836], [47.380026, 8.520656], [47.388334, 8.536269], [47.386945, 8.490228], [47.424109, 8.505289], [47.368909, 8.496214], [47.346979, 8.531964], [47.374315, 8.552731], [47.381589, 8.537018], [47.403162, 8.587703], [47.372665, 8.528598], [47.405378, 8.591845], [47.407407, 8.56299], [47.379513, 8.5245], [47.379958, 8.527833], [47.391673, 8.518933], [47.377432, 8.539064], [47.37026, 8.54882], [47.396798, 8.483905], [47.379773, 8.494562], [47.387068, 8.547356], [47.385204, 8.50059], [47.384778, 8.496052], [47.375033, 8.511988], [47.368451, 8.524288], [47.36923, 8.553009], [47.41445, 8.556592], [47.359153, 8.535443], [47.363152, 8.563804], [47.364989, 8.537443], [47.388999, 8.524892], [47.382252, 8.547653], [47.409453, 8.538308], [47.385093, 8.528984], [47.37197, 8.536462], [47.393918, 8.525019], [47.373459, 8.519768], [47.371781, 8.530738], [47.335697, 8.51596], [47.413872, 8.545634], [47.390716, 8.483123], [47.377419, 8.529105], [47.369145, 8.527969], [47.348142, 8.562588], [47.387142, 8.499198], [47.401443, 8.491494], [47.399953, 8.591078], [47.3412, 8.527637], [47.386263, 8.53171], [47.362612, 8.547151], [47.386181, 8.528], [47.385375, 8.517163], [47.398187, 8.473466], [47.381698, 8.51685], [47.379179, 8.529446], [47.411751, 8.512992], [47.368537, 8.556755], [47.366702, 8.531388], [47.378332, 8.578043], [47.386906, 8.535087], [47.365819, 8.561517], [47.362866, 8.517409], [47.374591, 8.484727], [47.386171, 8.498212], [47.330108, 8.515291], [47.3906, 8.491889], [47.397446, 8.531568], [47.386905, 8.528505], [47.370612, 8.470097], [47.360504, 8.522828], [47.385493, 8.529443], [47.377325, 8.526627], [47.395023, 8.545097], [47.399494, 8.517435], [47.377058, 8.483478], [47.383727, 8.496932], [47.375212, 8.544593], [47.397002, 8.514642], [47.402141, 8.495787], [47.411859, 8.543512], [47.370271, 8.529687], [47.360041, 8.550659], [47.39812, 8.53251], [47.379039, 8.525139], [47.37831, 8.509829], [47.356721, 8.509885], [47.371057, 8.523652], [47.428988, 8.545166], [47.363898, 8.56668], [47.410627, 8.542559], [47.365398, 8.532302], [47.382973, 8.540013], [47.402436, 8.535593], [47.360786, 8.530115], [47.379514, 8.544298], [47.40367, 8.578161], [47.401514, 8.545417], [47.388438, 8.491198], [47.35278, 8.572163], [47.416278, 8.545114], [47.373057, 8.53279], [47.37709, 8.496708], [47.366918, 8.558641], [47.408625, 8.550574], [47.355219, 8.554516], [47.384355, 8.534704], [47.386443, 8.543091], [47.386706, 8.547533], [47.391179, 8.515942], [47.407946, 8.54253], [47.408932, 8.543928], [47.356527, 8.551367], [47.406871, 8.550577], [47.370278, 8.563703], [47.374758, 8.489074], [47.369665, 8.523412], [47.407093, 8.531051], [47.394249, 8.49318], [47.37074, 8.540012], [47.408635, 8.57995], [47.373615, 8.546957], [47.394416, 8.526605], [47.351003, 8.579947], [47.370056, 8.54099], [47.368399, 8.562591], [47.378531, 8.502444], [47.376565, 8.534769], [47.394542, 8.472733], [47.417176, 8.510001], [47.378538, 8.526797], [47.374288, 8.486429], [47.409337, 8.528685], [47.389781, 8.483979], [47.369369, 8.5271], [47.38034, 8.526463], [47.389263, 8.546381], [47.417843, 8.502977], [47.37137, 8.519938], [47.344338, 8.528746], [47.369172, 8.52797], [47.393094, 8.492614], [47.37719, 8.539893], [47.362753, 8.535213], [47.373437, 8.493868], [47.383496, 8.488716], [47.385531, 8.536821], [47.417198, 8.512466], [47.399735, 8.495263], [47.3694, 8.541864], [47.36063, 8.522791], [47.397485, 8.489482], [47.407601, 8.530651], [47.38861, 8.480247], [47.366935, 8.522906], [47.366764, 8.540035], [47.377671, 8.54324], [47.393803, 8.52295], [47.359048, 8.520747], [47.399896, 8.495359], [47.376563, 8.549017], [47.387718, 8.532879], [47.408978, 8.550303], [47.335099, 8.519282], [47.370351, 8.518342], [47.403277, 8.49846], [47.40395, 8.534299], [47.362587, 8.519389], [47.386766, 8.53082], [47.37487, 8.517983], [47.41223, 8.555499], [47.370203, 8.518696], [47.389793, 8.512086], [47.38985, 8.477331], [47.399178, 8.495172], [47.386028, 8.498117], [47.388379, 8.539078], [47.368392, 8.556911], [47.403084, 8.490043], [47.390932, 8.52215], [47.372545, 8.534607], [47.379727, 8.527524], [47.367192, 8.533755], [47.369339, 8.531204], [47.384366, 8.516295], [47.377494, 8.541992], [47.366392, 8.559067], [47.412179, 8.550436], [47.372388, 8.523587], [47.335937, 8.515237], [47.382722, 8.539915], [47.374683, 8.529274], [47.329443, 8.514246], [47.366815, 8.543174], [47.366337, 8.600083], [47.365584, 8.559804], [47.38601, 8.498116], [47.378589, 8.54224], [47.377927, 8.526666], [47.360439, 8.569042], [47.385043, 8.49562], [47.366429, 8.54494], [47.357199, 8.571039], [47.383132, 8.505873], [47.385576, 8.499326], [47.343718, 8.535285], [47.407894, 8.583114], [47.371194, 8.549925], [47.376536, 8.541535], [47.386842, 8.535139], [47.414056, 8.548938], [47.376723, 8.544558], [47.425037, 8.551963], [47.388648, 8.522977], [47.354225, 8.553145], [47.362568, 8.547971], [47.409679, 8.543811], [47.377123, 8.529033], [47.378822, 8.508925], [47.384336, 8.534783], [47.394244, 8.47384], [47.366195, 8.52219], [47.357075, 8.535427], [47.398614, 8.53925], [47.402089, 8.498529], [47.370083, 8.512298], [47.371581, 8.558262], [47.380181, 8.525215], [47.354327, 8.555623], [47.385502, 8.530436], [47.382864, 8.547612], [47.3846, 8.531623], [47.35445, 8.553071], [47.425898, 8.547515], [47.412344, 8.523645], [47.404466, 8.556489], [47.391303, 8.513256], [47.389218, 8.485584], [47.380987, 8.52845], [47.374345, 8.543012], [47.38793, 8.498578], [47.377559, 8.498558], [47.37913, 8.495013], [47.378839, 8.542443], [47.3857, 8.543645], [47.409502, 8.542562], [47.403207, 8.587637], [47.381604, 8.492003], [47.403343, 8.54886], [47.381325, 8.534509], [47.389997, 8.543893], [47.392676, 8.529934], [47.393785, 8.502656], [47.362242, 8.518733], [47.377849, 8.509091], [47.396848, 8.595727], [47.365441, 8.537241], [47.377385, 8.498885], [47.377788, 8.507845], [47.426279, 8.554654], [47.413936, 8.544536], [47.35114, 8.582518], [47.376291, 8.527506], [47.369217, 8.532698], [47.394595, 8.531457], [47.386517, 8.503557], [47.404686, 8.572724], [47.367783, 8.515867], [47.410712, 8.572812], [47.411725, 8.512912], [47.397592, 8.502334], [47.368999, 8.529158], [47.384645, 8.509559], [47.352274, 8.509279], [47.357958, 8.572511], [47.391852, 8.510339], [47.372252, 8.53419], [47.374184, 8.544836], [47.372816, 8.486056], [47.401787, 8.534705], [47.377246, 8.538756], [47.367912, 8.540364], [47.419888, 8.482953], [47.370558, 8.53544], [47.410041, 8.537962], [47.375539, 8.554518], [47.375671, 8.545437], [47.368177, 8.565102], [47.344708, 8.528622], [47.398369, 8.537562], [47.370197, 8.548792], [47.372602, 8.547478], [47.403779, 8.546577], [47.38318, 8.483889], [47.406633, 8.548174], [47.38971, 8.511435], [47.366081, 8.529469], [47.376383, 8.513882], [47.393492, 8.532057], [47.371309, 8.538779], [47.385493, 8.530462], [47.365273, 8.519748], [47.399367, 8.515657], [47.39104, 8.479036], [47.378977, 8.522198], [47.379304, 8.495586], [47.360573, 8.528827], [47.378598, 8.542306], [47.403146, 8.49798], [47.37746, 8.491683], [47.364419, 8.550989], [47.39002, 8.480407], [47.377135, 8.540091], [47.381735, 8.545298], [47.367547, 8.546592], [47.36721, 8.537516], [47.405808, 8.581214], [47.393392, 8.499363], [47.356416, 8.553549], [47.378252, 8.541716], [47.366617, 8.551591], [47.387181, 8.519292], [47.388388, 8.483872], [47.375784, 8.537388], [47.420642, 8.513543], [47.364735, 8.554623], [47.406518, 8.584834], [47.369306, 8.527099], [47.407402, 8.53641], [47.390753, 8.522027], [47.371675, 8.510358], [47.365837, 8.521944], [47.397364, 8.533541], [47.36355, 8.521289], [47.397751, 8.533496], [47.380479, 8.519355], [47.401803, 8.500232], [47.378222, 8.544934], [47.395777, 8.511876], [47.398902, 8.533493], [47.357395, 8.521561], [47.369064, 8.541208], [47.353337, 8.576847], [47.41165, 8.562338], [47.380403, 8.541602], [47.400165, 8.501392], [47.366851, 8.553423], [47.429841, 8.549081], [47.365028, 8.553107], [47.379277, 8.495586], [47.388589, 8.528354], [47.378951, 8.495884], [47.368865, 8.519477], [47.378794, 8.542509], [47.349973, 8.561197], [47.366316, 8.520828], [47.366307, 8.520841], [47.384156, 8.504013], [47.377386, 8.542003], [47.377184, 8.52922], [47.360751, 8.553547], [47.388614, 8.486777], [47.417592, 8.546003], [47.403638, 8.496334], [47.377311, 8.512762], [47.378584, 8.542782], [47.371102, 8.547328], [47.378591, 8.558899], [47.362252, 8.559297], [47.369166, 8.519986], [47.376988, 8.537505], [47.375771, 8.543479], [47.355499, 8.528988], [47.382342, 8.487978], [47.402442, 8.546205], [47.362846, 8.527298], [47.341463, 8.536959], [47.427446, 8.538944], [47.391853, 8.510207], [47.41789, 8.559872], [47.430718, 8.541955], [47.338703, 8.532045], [47.376226, 8.542032], [47.373035, 8.520806], [47.377037, 8.539996], [47.38834, 8.516494], [47.355249, 8.552359], [47.36689, 8.520019], [47.367418, 8.531787], [47.379454, 8.524035], [47.387841, 8.485716], [47.402616, 8.553456], [47.352859, 8.526525], [47.340666, 8.529915], [47.379645, 8.527694], [47.410597, 8.572571], [47.374841, 8.545684], [47.3847, 8.50262], [47.381875, 8.535408], [47.426377, 8.554722], [47.35644, 8.510117], [47.361969, 8.503662], [47.361721, 8.574074], [47.38829, 8.486784], [47.370188, 8.548792], [47.37256, 8.529297], [47.378164, 8.509985], [47.375855, 8.51072], [47.387632, 8.499698], [47.389807, 8.536511], [47.401018, 8.535179], [47.400447, 8.548906], [47.377513, 8.529571], [47.362615, 8.5048], [47.371837, 8.601527], [47.398113, 8.532298], [47.383511, 8.539256], [47.374565, 8.538859], [47.413339, 8.539196], [47.359688, 8.549063], [47.405604, 8.569855], [47.358937, 8.534459], [47.378996, 8.525959], [47.386498, 8.485981], [47.37154, 8.534334], [47.373502, 8.519928], [47.336083, 8.517965], [47.40118, 8.538004], [47.38325, 8.513438], [47.393182, 8.492854], [47.370978, 8.534826], [47.363641, 8.547716], [47.358981, 8.516351], [47.371674, 8.472978], [47.372641, 8.529246], [47.377042, 8.529045], [47.402342, 8.499316], [47.357376, 8.521666], [47.400055, 8.545652], [47.368066, 8.495999], [47.396727, 8.548418], [47.401254, 8.501321], [47.371023, 8.52532], [47.357621, 8.585662], [47.419596, 8.50508], [47.397889, 8.511097], [47.371019, 8.538984], [47.402208, 8.4993], [47.366728, 8.545701], [47.40513, 8.551985], [47.358986, 8.570428], [47.391431, 8.514967], [47.381176, 8.491584], [47.420997, 8.507281], [47.37271, 8.563304], [47.423366, 8.549808], [47.366904, 8.52329], [47.404077, 8.573307], [47.399824, 8.544415], [47.382705, 8.529399], [47.365163, 8.502614], [47.364274, 8.547371], [47.395211, 8.545154], [47.419773, 8.504381], [47.403214, 8.547374], [47.366416, 8.540637], [47.395182, 8.49153], [47.378066, 8.521544], [47.373989, 8.525592], [47.390818, 8.521869], [47.381342, 8.537516], [47.383496, 8.488716], [47.362656, 8.520648], [47.391398, 8.478249], [47.36844, 8.524486], [47.376867, 8.527558], [47.395991, 8.545448], [47.405288, 8.492948], [47.362517, 8.53444], [47.394696, 8.513973], [47.355132, 8.557917], [47.397493, 8.489641], [47.366432, 8.541856], [47.384244, 8.497353], [47.391068, 8.522947], [47.387832, 8.49847], [47.351633, 8.560676], [47.407474, 8.53832], [47.378984, 8.542367], [47.386865, 8.518438], [47.365081, 8.502652], [47.384035, 8.516089], [47.387309, 8.525745], [47.387045, 8.546017], [47.402342, 8.546375], [47.413902, 8.548033], [47.414032, 8.525879], [47.361411, 8.501745], [47.412938, 8.537876], [47.384414, 8.531314], [47.34485, 8.533574], [47.374209, 8.537528], [47.371001, 8.53145], [47.409693, 8.549894], [47.364374, 8.546275], [47.366903, 8.544328], [47.422363, 8.499595], [47.374865, 8.512726], [47.405993, 8.484681], [47.389818, 8.536326], [47.370545, 8.54913], [47.420565, 8.502435], [47.373624, 8.476247], [47.392841, 8.539038], [47.371725, 8.519548], [47.389446, 8.521325], [47.375975, 8.541921], [47.389219, 8.541559], [47.370541, 8.516253], [47.37232, 8.510662], [47.357616, 8.55409], [47.395951, 8.4861], [47.385135, 8.508072], [47.380403, 8.502296], [47.377016, 8.544021], [47.364505, 8.566256], [47.368809, 8.556522], [47.407674, 8.538059], [47.383016, 8.499885], [47.378775, 8.526471], [47.387004, 8.528507], [47.38737, 8.527918], [47.366116, 8.537242], [47.363464, 8.535201], [47.369481, 8.51704], [47.369895, 8.508389], [47.385246, 8.507743], [47.405381, 8.584306], [47.419543, 8.548018], [47.406062, 8.590044], [47.402427, 8.535592], [47.373897, 8.538183], [47.374685, 8.537577], [47.35789, 8.508902], [47.375112, 8.525721], [47.409871, 8.569561], [47.412384, 8.537507], [47.383421, 8.484079], [47.399398, 8.542816], [47.375206, 8.518599], [47.374836, 8.518684], [47.365219, 8.521653], [47.397167, 8.493834], [47.40451, 8.53692], [47.372727, 8.535378], [47.377683, 8.507578], [47.380211, 8.542949], [47.371509, 8.488268], [47.399477, 8.54303], [47.407487, 8.58508], [47.410777, 8.558755], [47.393195, 8.528223], [47.363386, 8.557335], [47.42284, 8.551255], [47.376867, 8.535172], [47.419727, 8.504526], [47.369909, 8.528025], [47.385415, 8.475364], [47.389792, 8.540008], [47.377332, 8.512458], [47.37137, 8.547519], [47.374164, 8.524152], [47.370679, 8.516878], [47.377573, 8.509735], [47.413852, 8.54578], [47.371381, 8.502288], [47.358116, 8.519444], [47.37842, 8.514413], [47.35783, 8.579988], [47.4093, 8.546758], [47.377539, 8.54198], [47.377454, 8.507044], [47.421138, 8.501704], [47.41216, 8.550594], [47.373365, 8.531644], [47.365312, 8.538562], [47.364452, 8.548527], [47.397881, 8.534002], [47.408628, 8.567892], [47.419236, 8.507948], [47.365416, 8.548322], [47.392664, 8.515853], [47.402491, 8.544881], [47.374436, 8.540048], [47.41305, 8.550653], [47.403919, 8.54609], [47.380502, 8.505198], [47.366412, 8.544847], [47.373056, 8.532949], [47.427025, 8.549062], [47.365681, 8.539457], [47.390603, 8.489624], [47.366455, 8.54036], [47.396471, 8.543193], [47.371404, 8.547732], [47.394185, 8.525368], [47.3667, 8.542033], [47.383994, 8.531028], [47.358368, 8.583812], [47.377298, 8.510245], [47.373354, 8.565556], [47.397104, 8.492813], [47.394276, 8.490253], [47.38472, 8.509242], [47.335574, 8.532841], [47.36616, 8.545756], [47.381113, 8.491636], [47.356221, 8.589868], [47.389395, 8.493799], [47.366574, 8.542031], [47.378043, 8.527767], [47.413531, 8.553896], [47.41027, 8.549773], [47.364267, 8.531074], [47.381632, 8.532502], [47.352284, 8.534098], [47.397989, 8.474549], [47.37455, 8.546023], [47.366289, 8.494507], [47.384278, 8.525723], [47.40559, 8.549994], [47.374371, 8.544973], [47.370054, 8.541176], [47.390953, 8.478743], [47.377495, 8.567974], [47.398753, 8.525528], [47.352103, 8.558634], [47.37711, 8.541759], [47.363941, 8.553944], [47.374338, 8.514251], [47.385887, 8.487836], [47.40903, 8.543944], [47.377611, 8.529665], [47.418198, 8.546572], [47.410713, 8.545728], [47.371317, 8.547399], [47.398096, 8.536007], [47.376546, 8.532914], [47.39413, 8.493403], [47.389859, 8.477331], [47.383822, 8.511966], [47.393435, 8.524717], [47.390433, 8.509026], [47.36459, 8.508163], [47.357027, 8.534751], [47.406826, 8.550523], [47.373554, 8.538229], [47.384993, 8.531008], [47.410942, 8.545361], [47.405264, 8.482733], [47.375919, 8.515409], [47.399064, 8.522103], [47.375372, 8.53338], [47.404606, 8.54943], [47.407634, 8.531831], [47.374168, 8.502423], [47.386113, 8.53523], [47.378119, 8.548096], [47.373891, 8.530278], [47.386486, 8.529119], [47.389233, 8.542937], [47.378956, 8.548101], [47.379718, 8.542687], [47.376821, 8.526683], [47.364145, 8.549566], [47.365922, 8.545248], [47.367734, 8.539168], [47.365181, 8.553096], [47.360956, 8.531151], [47.358667, 8.526908], [47.405754, 8.548884], [47.370022, 8.564121], [47.390923, 8.522136], [47.369115, 8.537806], [47.368471, 8.551523], [47.36587, 8.549722], [47.36876, 8.53821], [47.377319, 8.541472], [47.405866, 8.560599], [47.369962, 8.532898], [47.383493, 8.574551], [47.382145, 8.515309], [47.390724, 8.523165], [47.369257, 8.525655], [47.368, 8.562993], [47.418733, 8.547127], [47.390877, 8.489127], [47.391936, 8.510911], [47.375976, 8.541828], [47.364706, 8.549207], [47.390649, 8.491493], [47.340226, 8.51932], [47.391114, 8.522816], [47.395755, 8.486838], [47.369735, 8.525519], [47.401882, 8.499545], [47.363622, 8.560809], [47.427502, 8.550928], [47.369028, 8.528007], [47.410841, 8.563274], [47.383958, 8.550827], [47.373113, 8.544841], [47.381176, 8.491584], [47.373265, 8.520294], [47.37673, 8.497733], [47.372788, 8.535618], [47.421678, 8.502669], [47.427486, 8.543253], [47.393399, 8.524756], [47.376281, 8.511271], [47.368718, 8.546365], [47.380367, 8.547309], [47.380082, 8.528127], [47.360542, 8.596779], [47.355407, 8.512903], [47.33745, 8.53423], [47.369541, 8.55336], [47.379908, 8.52174], [47.374868, 8.527729], [47.371725, 8.519561], [47.425781, 8.493646], [47.367844, 8.539991], [47.408965, 8.531937], [47.402474, 8.544788], [47.409079, 8.550172], [47.415741, 8.551411], [47.42006, 8.482811], [47.366308, 8.540661], [47.379545, 8.524911], [47.376657, 8.523104], [47.399959, 8.541569], [47.363451, 8.567266], [47.387851, 8.539769], [47.367444, 8.512709], [47.381363, 8.491826], [47.423741, 8.511074], [47.378781, 8.522922], [47.399423, 8.543082], [47.41425, 8.517973], [47.383133, 8.529818], [47.422472, 8.499398], [47.361289, 8.525413], [47.426269, 8.554733], [47.421478, 8.548827], [47.373802, 8.537731], [47.364071, 8.556304], [47.373288, 8.533073], [47.371354, 8.518759], [47.376365, 8.552814], [47.368256, 8.524019], [47.366937, 8.548248], [47.363778, 8.566942], [47.39788, 8.4746], [47.38654, 8.52904], [47.413923, 8.554315], [47.411704, 8.525673], [47.380714, 8.526895], [47.398332, 8.537667], [47.368924, 8.543642], [47.372723, 8.525341], [47.402092, 8.499205], [47.371724, 8.519574], [47.358759, 8.516108], [47.385914, 8.553212], [47.378455, 8.526981], [47.430527, 8.511661], [47.363966, 8.547617], [47.367164, 8.563876], [47.364947, 8.50261], [47.406651, 8.506185], [47.387319, 8.487679], [47.377231, 8.499067], [47.363987, 8.535993], [47.424982, 8.548264], [47.393462, 8.524731], [47.378582, 8.526838], [47.402547, 8.553083], [47.384408, 8.534784], [47.414566, 8.560398], [47.411829, 8.524841], [47.361773, 8.560452], [47.409078, 8.481734], [47.422495, 8.550611], [47.36922, 8.541874], [47.336356, 8.526241], [47.367512, 8.523673], [47.412336, 8.506193], [47.391606, 8.51354], [47.374216, 8.475398], [47.362577, 8.612604], [47.344966, 8.533696], [47.377107, 8.523034], [47.418553, 8.547123], [47.335067, 8.527419], [47.388597, 8.483691], [47.379606, 8.537453], [47.376271, 8.494798], [47.376775, 8.527755], [47.362275, 8.532516], [47.376089, 8.489153], [47.357784, 8.527009], [47.379946, 8.483349], [47.413585, 8.530389], [47.37642, 8.528184], [47.386379, 8.518494], [47.374518, 8.539957], [47.369605, 8.533566], [47.366455, 8.540333], [47.375401, 8.526574], [47.388361, 8.539117], [47.372618, 8.521221], [47.39425, 8.490173], [47.376438, 8.534859], [47.370627, 8.524332], [47.346387, 8.528907], [47.392891, 8.53476], [47.419836, 8.504395], [47.383495, 8.530567], [47.367068, 8.543947], [47.362761, 8.567966], [47.37466, 8.549587], [47.399742, 8.492507], [47.370908, 8.535526], [47.419967, 8.506757], [47.403296, 8.493465], [47.383619, 8.530742], [47.348387, 8.534335], [47.360793, 8.550106], [47.411133, 8.526138], [47.371551, 8.550184], [47.405671, 8.585915], [47.371456, 8.562735], [47.365998, 8.533585], [47.382337, 8.549125], [47.343419, 8.535583], [47.37803, 8.541473], [47.354206, 8.557818], [47.388392, 8.480468], [47.411062, 8.571018], [47.40588, 8.586609], [47.391138, 8.489079], [47.373281, 8.52432], [47.399854, 8.544098], [47.378462, 8.567478], [47.390976, 8.517408], [47.374, 8.524414], [47.404073, 8.564523], [47.420898, 8.507293], [47.344288, 8.535018], [47.378948, 8.508888], [47.378388, 8.541692], [47.370707, 8.538687], [47.372724, 8.534729], [47.369897, 8.541623], [47.383472, 8.512806], [47.375222, 8.525498], [47.32923, 8.518779], [47.391367, 8.536106], [47.398223, 8.536831], [47.372981, 8.531345], [47.373376, 8.494701], [47.382334, 8.487872], [47.374306, 8.522474], [47.372364, 8.537635], [47.373896, 8.538263], [47.39619, 8.505154], [47.430964, 8.550152], [47.370188, 8.548792], [47.368879, 8.539867], [47.376363, 8.54369], [47.359387, 8.535422], [47.374509, 8.53997], [47.40378, 8.534163], [47.354099, 8.575288], [47.364891, 8.545875], [47.381996, 8.529278], [47.366636, 8.540178], [47.387527, 8.498372], [47.389358, 8.536396], [47.373612, 8.519745], [47.376067, 8.537923], [47.355534, 8.553583], [47.370334, 8.518235], [47.382451, 8.529645], [47.375686, 8.556958], [47.377214, 8.512561], [47.363087, 8.547294], [47.353471, 8.558544], [47.369886, 8.510269], [47.393206, 8.494153], [47.375836, 8.523313], [47.396162, 8.532231], [47.40228, 8.57678], [47.348259, 8.562643], [47.373959, 8.544832], [47.387861, 8.498325], [47.389713, 8.511979], [47.368858, 8.528824], [47.409992, 8.543115], [47.355601, 8.532405], [47.375491, 8.524616], [47.375613, 8.526963], [47.404588, 8.533437], [47.364446, 8.536929], [47.402804, 8.57744], [47.366496, 8.545432], [47.384868, 8.493074], [47.32315, 8.504171], [47.372889, 8.554132], [47.429901, 8.53808], [47.356579, 8.522179], [47.369533, 8.533552], [47.392231, 8.476675], [47.387832, 8.524696], [47.384216, 8.511139], [47.406236, 8.588816], [47.410629, 8.551676], [47.370214, 8.537591], [47.372035, 8.519117], [47.374416, 8.541253], [47.374407, 8.541226], [47.365128, 8.534163], [47.392387, 8.524285], [47.37859, 8.542187], [47.414015, 8.549427], [47.368105, 8.546498], [47.426315, 8.554668], [47.415949, 8.51427], [47.412976, 8.541494], [47.363031, 8.535245], [47.339872, 8.530124], [47.36823, 8.560562], [47.395588, 8.475469], [47.370116, 8.548843], [47.379901, 8.527289], [47.381201, 8.582567], [47.412295, 8.557978], [47.372629, 8.52857], [47.392116, 8.509921], [47.429814, 8.549054], [47.372711, 8.534173], [47.354352, 8.553042], [47.364412, 8.546143], [47.377796, 8.541495], [47.384697, 8.544114], [47.411133, 8.526151], [47.375975, 8.541921], [47.381789, 8.540611], [47.371494, 8.547667], [47.375491, 8.544559], [47.392441, 8.503013], [47.378866, 8.527281], [47.374457, 8.53981], [47.369083, 8.556131], [47.364429, 8.54617], [47.411406, 8.525786], [47.378387, 8.517034], [47.414706, 8.551469], [47.380395, 8.528252], [47.386105, 8.548342], [47.385329, 8.530631], [47.403262, 8.548011], [47.394474, 8.541323], [47.382138, 8.531321], [47.425368, 8.494592], [47.431345, 8.516476], [47.358937, 8.534459], [47.410742, 8.555865], [47.364305, 8.566463], [47.379838, 8.524387], [47.381925, 8.559234], [47.40175, 8.499224], [47.358312, 8.584962], [47.36328, 8.546848], [47.368988, 8.52839], [47.386545, 8.503478], [47.418705, 8.547153], [47.375535, 8.540879], [47.414106, 8.51895], [47.369663, 8.518778], [47.350957, 8.559907], [47.372936, 8.531318], [47.362098, 8.529268], [47.38206, 8.502077], [47.360768, 8.550833], [47.392371, 8.481076], [47.409094, 8.578118], [47.367334, 8.52355], [47.406907, 8.550577], [47.357861, 8.509193], [47.386971, 8.53485], [47.419958, 8.506757], [47.379367, 8.527556], [47.414802, 8.561052], [47.341068, 8.530241], [47.380458, 8.519606], [47.358799, 8.585754], [47.403867, 8.486031], [47.395903, 8.510924], [47.370713, 8.535218], [47.388292, 8.497354], [47.381022, 8.538079], [47.383094, 8.513805], [47.364836, 8.55436], [47.405117, 8.481126], [47.413682, 8.546611], [47.390344, 8.51676], [47.36359, 8.535164], [47.381384, 8.533093], [47.392415, 8.509715], [47.390102, 8.509907], [47.393426, 8.524717], [47.375829, 8.540183], [47.376671, 8.534956], [47.392351, 8.47632], [47.381041, 8.535126], [47.367155, 8.544254], [47.399133, 8.507942], [47.389493, 8.526928], [47.367082, 8.544385], [47.37929, 8.559192], [47.374094, 8.535433], [47.362601, 8.574225], [47.402351, 8.499316], [47.379783, 8.527379], [47.388183, 8.497497], [47.370003, 8.520863], [47.394663, 8.526146], [47.371903, 8.52069], [47.371861, 8.601792], [47.37124, 8.558122], [47.363255, 8.575404], [47.360212, 8.551669], [47.323053, 8.514633], [47.369187, 8.602978], [47.34, 8.529902], [47.369456, 8.520733], [47.37923, 8.552357], [47.3702, 8.491831], [47.371952, 8.536475], [47.410357, 8.548225], [47.397011, 8.480266], [47.391864, 8.482404], [47.369646, 8.536824], [47.387233, 8.488247], [47.39988, 8.585764], [47.349749, 8.53112], [47.362366, 8.561405], [47.378531, 8.5752], [47.373324, 8.533087], [47.399509, 8.50126], [47.361422, 8.506405], [47.348335, 8.533116], [47.354772, 8.55509], [47.376928, 8.517137], [47.377473, 8.509825], [47.347494, 8.564493], [47.357433, 8.553464], [47.387368, 8.498143], [47.383683, 8.588104], [47.368253, 8.536716], [47.37774, 8.543573], [47.366087, 8.533666], [47.407449, 8.585357], [47.373636, 8.542852], [47.408897, 8.54569], [47.359453, 8.551097], [47.365404, 8.537399], [47.378769, 8.530881], [47.416507, 8.506489], [47.397285, 8.510277], [47.370562, 8.48956], [47.396013, 8.527022], [47.372185, 8.520378], [47.36817, 8.538793], [47.369103, 8.57157], [47.41393, 8.544231], [47.360514, 8.569666], [47.371124, 8.520264], [47.36778, 8.54477], [47.416116, 8.565586], [47.378944, 8.509378], [47.369808, 8.530128], [47.427389, 8.539275], [47.412087, 8.546034], [47.382093, 8.5539], [47.367967, 8.568235], [47.42079, 8.508205], [47.408917, 8.546432], [47.4057, 8.489194], [47.391033, 8.522867], [47.384315, 8.531286], [47.423769, 8.496363], [47.39105, 8.522933], [47.368364, 8.541035], [47.422459, 8.550637], [47.391321, 8.536238], [47.369878, 8.540762], [47.35783, 8.580001], [47.370997, 8.535647], [47.425019, 8.539756], [47.36956, 8.547667], [47.405121, 8.48163], [47.405121, 8.481657], [47.381201, 8.538162], [47.357855, 8.520405], [47.405813, 8.590648], [47.375052, 8.545239], [47.384306, 8.531273], [47.409189, 8.544252], [47.368264, 8.511586], [47.337799, 8.519151], [47.369435, 8.525844], [47.39106, 8.52096], [47.358193, 8.571444], [47.378549, 8.560395], [47.357884, 8.571848], [47.420293, 8.50846], [47.36173, 8.526375], [47.38836, 8.536323], [47.37674, 8.523821], [47.388833, 8.477417], [47.370515, 8.549395], [47.363756, 8.535657], [47.362901, 8.556319]], [[47.368651, 8.534527], [47.381456, 8.535902], [47.364672, 8.536815], [47.366747, 8.542683], [47.366373, 8.540477], [47.369319, 8.541849], [47.365272, 8.538919], [47.384418, 8.516547], [47.370776, 8.535246], [47.357772, 8.521621], [47.380824, 8.538088], [47.407642, 8.584036], [47.349663, 8.529729], [47.349663, 8.529729], [47.368516, 8.530697], [47.354588, 8.552756], [47.356879, 8.514164], [47.378192, 8.509906], [47.386705, 8.547639], [47.3832, 8.53031], [47.372454, 8.535651], [47.376483, 8.521525], [47.39423, 8.493326], [47.375506, 8.547698], [47.365099, 8.545773], [47.410654, 8.543447], [47.37328, 8.533059], [47.37454, 8.538607], [47.387519, 8.519709], [47.345473, 8.532369], [47.390575, 8.48965], [47.366938, 8.564877], [47.388899, 8.483021], [47.377242, 8.541987], [47.361537, 8.565293], [47.370574, 8.470295], [47.38048, 8.517262], [47.38429, 8.53208], [47.38972, 8.486825], [47.407993, 8.58672], [47.390903, 8.523328], [47.403984, 8.573636], [47.363556, 8.52154], [47.403674, 8.571324], [47.411669, 8.563226], [47.370089, 8.548843], [47.3905, 8.479119], [47.420726, 8.502452], [47.38551, 8.488756], [47.36641, 8.545072], [47.369749, 8.522116], [47.404831, 8.542889], [47.366432, 8.540836], [47.368323, 8.546304], [47.408893, 8.532837], [47.378481, 8.540397], [47.360981, 8.531417], [47.373426, 8.51745], [47.365182, 8.531344], [47.395258, 8.526013], [47.406349, 8.582869], [47.375489, 8.537157], [47.371167, 8.548058], [47.357085, 8.555006], [47.367594, 8.519782], [47.3299, 8.529775], [47.377629, 8.529692], [47.363148, 8.535234], [47.378887, 8.526937], [47.344007, 8.531426], [47.376938, 8.540908], [47.388316, 8.536269], [47.359227, 8.553065], [47.410616, 8.572519], [47.378852, 8.524976], [47.37125, 8.537453], [47.367893, 8.54607], [47.360781, 8.548583], [47.374507, 8.540209], [47.377749, 8.48855], [47.368853, 8.511082], [47.387456, 8.525417], [47.398787, 8.506438], [47.377005, 8.543346], [47.376742, 8.483617], [47.38209, 8.49886], [47.369614, 8.513454], [47.39417, 8.482104], [47.40055, 8.492749], [47.415954, 8.515595], [47.365487, 8.598767], [47.373224, 8.550193], [47.399799, 8.541367], [47.384455, 8.516455], [47.415745, 8.546336], [47.393832, 8.500444], [47.393766, 8.499741], [47.392098, 8.549037], [47.417065, 8.541897], [47.375553, 8.541793], [47.393443, 8.512319], [47.407912, 8.536699], [47.41387, 8.546694], [47.387677, 8.497699], [47.353103, 8.528396], [47.386351, 8.533871], [47.382284, 8.551838], [47.369166, 8.527612], [47.376647, 8.548754], [47.415587, 8.509571], [47.37329, 8.494235], [47.390741, 8.523311], [47.395714, 8.532076], [47.40952, 8.542642], [47.373342, 8.5331], [47.400645, 8.544127], [47.375191, 8.537336], [47.359591, 8.569302], [47.361288, 8.525519], [47.370253, 8.514354], [47.370197, 8.548792], [47.374389, 8.52511], [47.417325, 8.554135], [47.369048, 8.518222], [47.358312, 8.5206], [47.409004, 8.545758], [47.393807, 8.503093], [47.351404, 8.576726], [47.369071, 8.525293], [47.381272, 8.556969], [47.401457, 8.489852], [47.413318, 8.521479], [47.416237, 8.545644], [47.373297, 8.533086], [47.395867, 8.506062], [47.382801, 8.556021], [47.414522, 8.551002], [47.369041, 8.502479], [47.361684, 8.561205], [47.356546, 8.558701], [47.386953, 8.534903], [47.410358, 8.548119], [47.369657, 8.533713], [47.378858, 8.531002], [47.366358, 8.534453], [47.397531, 8.489364], [47.370289, 8.514315], [47.376649, 8.495785], [47.395908, 8.526755], [47.4145, 8.554221], [47.416238, 8.532352], [47.395402, 8.526069], [47.413885, 8.546059], [47.388449, 8.484098], [47.373171, 8.551992], [47.376002, 8.577146], [47.374168, 8.502423], [47.377127, 8.521829], [47.423714, 8.539795], [47.393183, 8.530474], [47.382454, 8.544439], [47.382539, 8.529793], [47.391439, 8.519882], [47.374283, 8.524949], [47.370464, 8.526407], [47.368437, 8.534337], [47.388608, 8.545229], [47.377912, 8.510046], [47.383833, 8.530892], [47.369665, 8.506994], [47.425791, 8.49354], [47.382675, 8.507639], [47.39878, 8.590549], [47.405201, 8.480757], [47.368183, 8.524097], [47.410929, 8.542923], [47.359224, 8.516435], [47.40688, 8.550537], [47.378217, 8.54353], [47.373189, 8.551913], [47.374206, 8.47557], [47.369603, 8.55348], [47.378722, 8.542441], [47.37158, 8.522484], [47.369772, 8.53684], [47.409755, 8.544316], [47.372685, 8.547321], [47.370417, 8.518038], [47.372872, 8.547471], [47.381852, 8.51386], [47.363026, 8.556467], [47.400729, 8.548541], [47.387147, 8.519026], [47.39688, 8.493656], [47.38439, 8.531976], [47.357784, 8.554385], [47.393601, 8.529132], [47.381387, 8.510738], [47.386447, 8.496509], [47.377189, 8.540052], [47.409506, 8.549704], [47.355927, 8.522682], [47.422539, 8.550745], [47.41144, 8.528], [47.377689, 8.537573], [47.393741, 8.472731], [47.376784, 8.538163], [47.405492, 8.549872], [47.386051, 8.539851], [47.413184, 8.533733], [47.37774, 8.54356], [47.37639, 8.527548], [47.371096, 8.535623], [47.367182, 8.523454], [47.412702, 8.517067], [47.37339, 8.528957], [47.372034, 8.502711], [47.397472, 8.493827], [47.365207, 8.545696], [47.388477, 8.536325], [47.387242, 8.48532], [47.376874, 8.541939], [47.385322, 8.475706], [47.399754, 8.5185], [47.40027, 8.493869], [47.377218, 8.539881], [47.391396, 8.5453], [47.354878, 8.574696], [47.37376, 8.500839], [47.361463, 8.532764], [47.384417, 8.528123], [47.376642, 8.544596], [47.36844, 8.536919], [47.387989, 8.485229], [47.383263, 8.548256], [47.338293, 8.530648], [47.373297, 8.533086], [47.37745, 8.541964], [47.391477, 8.486423], [47.358273, 8.584352], [47.360254, 8.566761], [47.392368, 8.476466], [47.365215, 8.501768], [47.372488, 8.526383], [47.406752, 8.585779], [47.365789, 8.556326], [47.364, 8.546889], [47.381397, 8.542099], [47.405557, 8.562726], [47.410864, 8.562718], [47.366487, 8.540771], [47.410044, 8.569327], [47.3704, 8.549207], [47.334841, 8.531344], [47.372309, 8.572128], [47.364738, 8.534539], [47.400627, 8.508754], [47.413341, 8.531457], [47.378755, 8.539926], [47.386924, 8.535088], [47.387837, 8.4861], [47.378482, 8.526995], [47.414747, 8.519666], [47.384755, 8.532355], [47.419697, 8.556212], [47.392383, 8.539015], [47.386105, 8.548342], [47.366418, 8.540399], [47.3852, 8.529079], [47.373289, 8.533046], [47.407696, 8.546129], [47.386242, 8.49824], [47.395533, 8.482582], [47.387368, 8.49813], [47.384408, 8.531924], [47.381495, 8.513561], [47.415787, 8.552247], [47.372445, 8.537544], [47.409646, 8.575983], [47.383158, 8.505913], [47.387637, 8.519553], [47.377031, 8.553702], [47.383986, 8.547874], [47.369277, 8.548137], [47.378691, 8.509452], [47.370575, 8.546933], [47.367584, 8.523701], [47.39093, 8.523302], [47.419678, 8.548008], [47.369482, 8.566003], [47.403274, 8.497784], [47.373377, 8.514099], [47.372829, 8.514035], [47.389354, 8.491401], [47.40067, 8.492327], [47.391413, 8.519775], [47.366206, 8.548471], [47.367951, 8.560582], [47.411153, 8.545803], [47.372159, 8.555215], [47.37606, 8.535752], [47.377495, 8.543793], [47.369772, 8.532007], [47.369561, 8.525806], [47.368161, 8.521647], [47.377216, 8.526784], [47.382182, 8.512224], [47.372156, 8.473398], [47.377358, 8.512524], [47.374159, 8.54089], [47.375891, 8.51652], [47.362162, 8.529257], [47.392513, 8.523294], [47.354325, 8.51124], [47.376519, 8.534847], [47.378429, 8.526914], [47.363642, 8.567138], [47.373536, 8.544902], [47.376078, 8.524337], [47.379222, 8.511357], [47.391532, 8.486278], [47.362195, 8.547487], [47.380735, 8.512089], [47.394011, 8.532386], [47.360841, 8.553602], [47.360287, 8.570773], [47.369269, 8.52535], [47.411284, 8.486442], [47.407795, 8.578501], [47.381127, 8.49202], [47.385312, 8.530565], [47.347672, 8.528073], [47.357086, 8.593355], [47.333931, 8.515276], [47.379969, 8.541924], [47.409272, 8.549713], [47.403916, 8.503322], [47.37836, 8.517948], [47.363922, 8.533304], [47.378939, 8.544273], [47.427816, 8.536964], [47.428465, 8.489311], [47.348272, 8.533142], [47.376916, 8.527996], [47.371001, 8.531437], [47.375318, 8.531552], [47.377372, 8.511081], [47.414488, 8.554513], [47.37939, 8.54219], [47.379435, 8.537556], [47.402031, 8.545998], [47.387834, 8.488457], [47.382012, 8.475774], [47.417114, 8.506978], [47.357668, 8.535439], [47.38353, 8.513337], [47.402145, 8.497351], [47.363794, 8.598928], [47.394604, 8.531417], [47.378491, 8.502906], [47.397363, 8.531766], [47.407645, 8.538323], [47.42387, 8.522316], [47.339402, 8.518946], [47.428742, 8.543544], [47.373226, 8.533045], [47.396348, 8.513384], [47.36999, 8.548814], [47.378564, 8.54208], [47.376909, 8.527837], [47.377018, 8.541916], [47.360579, 8.516754], [47.379758, 8.536635], [47.406489, 8.550052], [47.380382, 8.534397], [47.380411, 8.513089], [47.364499, 8.554843], [47.399589, 8.497433], [47.359581, 8.558235], [47.368044, 8.540618], [47.381435, 8.517123], [47.403137, 8.555321], [47.376512, 8.559902], [47.363901, 8.551494], [47.381262, 8.571802], [47.410746, 8.545185], [47.385913, 8.492909], [47.419366, 8.505579], [47.378191, 8.52634], [47.419523, 8.50814], [47.370663, 8.47035], [47.386726, 8.547335], [47.356399, 8.519343], [47.391529, 8.54268], [47.363046, 8.522205], [47.386922, 8.519022], [47.36163, 8.561283], [47.427546, 8.546316], [47.4138, 8.545553], [47.36119, 8.532136], [47.370191, 8.514273], [47.384432, 8.548307], [47.365751, 8.545337], [47.398024, 8.534097], [47.408821, 8.504003], [47.405395, 8.565465], [47.373991, 8.530134], [47.383666, 8.52865], [47.370324, 8.469099], [47.378256, 8.541345], [47.3623, 8.504768], [47.392283, 8.514282], [47.367102, 8.54412], [47.371563, 8.517611], [47.390919, 8.52354], [47.421288, 8.549897], [47.391784, 8.505013], [47.376086, 8.512949], [47.386369, 8.518507], [47.378866, 8.510913], [47.414097, 8.51895], [47.361869, 8.532626], [47.376222, 8.526247], [47.392324, 8.503037], [47.35414, 8.530932], [47.398168, 8.535041], [47.332637, 8.518028], [47.380008, 8.52643], [47.398614, 8.593579], [47.389249, 8.521268], [47.423843, 8.521321], [47.391421, 8.5342], [47.368022, 8.485962], [47.378957, 8.529123], [47.353393, 8.51179], [47.407702, 8.578804], [47.376584, 8.494076], [47.414287, 8.572398], [47.378552, 8.541444], [47.347775, 8.530537], [47.331394, 8.537294], [47.370389, 8.514251], [47.363548, 8.500119], [47.360984, 8.560197], [47.361657, 8.526479], [47.399463, 8.543626], [47.3878, 8.527092], [47.374775, 8.520444], [47.375297, 8.486198], [47.366513, 8.540838], [47.384033, 8.497825], [47.375949, 8.529446], [47.361581, 8.565386], [47.386704, 8.488038], [47.372446, 8.550613], [47.4114, 8.54443], [47.404213, 8.562234], [47.383754, 8.526904], [47.334773, 8.52998], [47.406784, 8.536119], [47.365391, 8.564818], [47.379151, 8.495596], [47.394685, 8.531472], [47.354386, 8.557888], [47.392285, 8.502361], [47.370561, 8.549316], [47.374708, 8.588784], [47.385668, 8.499023], [47.408943, 8.574338], [47.368608, 8.540947], [47.375435, 8.560581], [47.375264, 8.490832], [47.415493, 8.563121], [47.424304, 8.508514], [47.400123, 8.58663], [47.349682, 8.562448], [47.422368, 8.542259], [47.370233, 8.548819], [47.405483, 8.549872], [47.386245, 8.535498], [47.394853, 8.527952], [47.398059, 8.536085], [47.367038, 8.544278], [47.359571, 8.522611], [47.357721, 8.554397], [47.377228, 8.539775], [47.410272, 8.544884], [47.430843, 8.544012], [47.39102, 8.522297], [47.366043, 8.530647], [47.354953, 8.554127], [47.3764, 8.544525], [47.375682, 8.512888], [47.388882, 8.495829], [47.388927, 8.515301], [47.383403, 8.484079], [47.378733, 8.542269], [47.370139, 8.5217], [47.361607, 8.506753], [47.380853, 8.517826], [47.402018, 8.495441], [47.369912, 8.537214], [47.359789, 8.588383], [47.393426, 8.524717], [47.368822, 8.528863], [47.388356, 8.526283], [47.387914, 8.488552], [47.422705, 8.543764], [47.375283, 8.544647], [47.387173, 8.551411], [47.367583, 8.520934], [47.364604, 8.566191], [47.338648, 8.538793], [47.385065, 8.54791], [47.389419, 8.511695], [47.372981, 8.54738], [47.385849, 8.48214], [47.390548, 8.489716], [47.371547, 8.519266], [47.375142, 8.51865], [47.413359, 8.531405], [47.39923, 8.542588], [47.398648, 8.542271], [47.373957, 8.48919], [47.370579, 8.528475], [47.379825, 8.528651], [47.398206, 8.536724], [47.390178, 8.528678], [47.338225, 8.528317], [47.414326, 8.538501], [47.374454, 8.539175], [47.377355, 8.548107], [47.374131, 8.51908], [47.426869, 8.546567], [47.388998, 8.48897], [47.367061, 8.545602], [47.380651, 8.52688], [47.426626, 8.555045], [47.367906, 8.494778], [47.389741, 8.511913], [47.393592, 8.501115], [47.409862, 8.479563], [47.370708, 8.470391], [47.372222, 8.524033], [47.36768, 8.539194], [47.392139, 8.476872], [47.419596, 8.548073], [47.378577, 8.519713], [47.392072, 8.499151], [47.383398, 8.548246], [47.416152, 8.546079], [47.411118, 8.57086], [47.377105, 8.527126], [47.38309, 8.528625], [47.377016, 8.535573], [47.420745, 8.501445], [47.376319, 8.495434], [47.387247, 8.518975], [47.373966, 8.476267], [47.378501, 8.540198], [47.370197, 8.548792], [47.391522, 8.516704], [47.370188, 8.548792], [47.363659, 8.55983], [47.368519, 8.541819], [47.361378, 8.513089], [47.403056, 8.576531], [47.385781, 8.548309], [47.381853, 8.583998], [47.370078, 8.548988], [47.370061, 8.548895], [47.407258, 8.568128], [47.390587, 8.489412], [47.388355, 8.54072], [47.374861, 8.519876], [47.362948, 8.518337], [47.357369, 8.550723], [47.360305, 8.565253], [47.407564, 8.53069], [47.374577, 8.538555], [47.383282, 8.548164], [47.372727, 8.510458], [47.36331, 8.527678], [47.374089, 8.513928], [47.363342, 8.520477], [47.390703, 8.522595], [47.373004, 8.546904], [47.362828, 8.521472], [47.372836, 8.518074], [47.374529, 8.540699], [47.415133, 8.562239], [47.369725, 8.525585], [47.367855, 8.551934], [47.406008, 8.481051], [47.378444, 8.540515], [47.40411, 8.541099], [47.378065, 8.530165], [47.390539, 8.52283], [47.328158, 8.529408], [47.400474, 8.531922], [47.369511, 8.538702], [47.394744, 8.536679], [47.384376, 8.531526], [47.415755, 8.512888], [47.363709, 8.551874], [47.405237, 8.561368], [47.347312, 8.528119], [47.375109, 8.529839], [47.360796, 8.548848], [47.3825, 8.548108], [47.370197, 8.548805], [47.382048, 8.514062], [47.388582, 8.486247], [47.377281, 8.548291], [47.407041, 8.55066], [47.359447, 8.552619], [47.348396, 8.534296], [47.391209, 8.48916], [47.369678, 8.532456], [47.414008, 8.549202], [47.369462, 8.541918], [47.409561, 8.569091], [47.375102, 8.52482], [47.401878, 8.504871], [47.374554, 8.539031], [47.369161, 8.548029], [47.362, 8.560232], [47.398969, 8.513954], [47.398969, 8.51398], [47.337696, 8.530106], [47.38729, 8.527811], [47.398614, 8.547755], [47.388865, 8.484809], [47.409204, 8.538939], [47.404628, 8.594915], [47.370504, 8.535518], [47.395903, 8.545261], [47.366738, 8.541769], [47.365977, 8.55727], [47.374318, 8.544892], [47.368103, 8.529709], [47.371389, 8.522719], [47.355235, 8.527394], [47.405201, 8.56138], [47.404345, 8.574413], [47.40677, 8.585766], [47.417724, 8.54537], [47.410986, 8.562178], [47.366613, 8.547341], [47.36612, 8.531999], [47.37017, 8.548778], [47.384835, 8.539985], [47.36956, 8.466992], [47.422074, 8.550444], [47.429435, 8.54165], [47.361086, 8.535496], [47.405612, 8.591836], [47.374794, 8.55245], [47.374105, 8.546503], [47.376306, 8.534485], [47.406627, 8.567359], [47.353125, 8.577293], [47.344247, 8.532688], [47.360624, 8.524459], [47.36875, 8.528835], [47.372872, 8.567042], [47.38241, 8.558331], [47.364535, 8.53701], [47.363642, 8.546617], [47.370123, 8.543335], [47.405629, 8.54969], [47.410741, 8.550326], [47.408619, 8.529532], [47.395876, 8.515772], [47.376877, 8.540668], [47.387147, 8.519053], [47.386048, 8.545824], [47.338922, 8.539288], [47.3768, 8.517439], [47.365346, 8.521603], [47.35711, 8.523117], [47.409484, 8.543569], [47.408531, 8.580504], [47.39361, 8.511792], [47.352033, 8.558368], [47.393219, 8.492696], [47.376902, 8.517097], [47.377599, 8.522342], [47.377255, 8.529274], [47.381334, 8.510605], [47.374103, 8.542954], [47.378607, 8.504961], [47.390629, 8.489638], [47.342789, 8.530793], [47.357756, 8.554477], [47.378796, 8.530921], [47.384307, 8.528359], [47.406779, 8.584826], [47.410389, 8.487895], [47.366473, 8.540347], [47.37702, 8.537056], [47.38308, 8.541074], [47.359479, 8.557677], [47.366507, 8.534853], [47.372414, 8.523773], [47.338896, 8.539169], [47.377338, 8.546081], [47.362743, 8.519048], [47.368096, 8.536117], [47.361527, 8.525907], [47.402919, 8.554641], [47.404519, 8.575079], [47.408668, 8.546136], [47.341747, 8.530731], [47.384476, 8.538097], [47.381939, 8.555937], [47.372814, 8.535645], [47.38848, 8.528471], [47.359688, 8.549063], [47.361352, 8.522607], [47.370703, 8.535363], [47.374977, 8.483795], [47.377159, 8.52518], [47.368164, 8.510684], [47.369981, 8.548841], [47.376936, 8.533518], [47.358322, 8.509864], [47.419755, 8.504447], [47.37707, 8.539348], [47.38408, 8.525745], [47.365935, 8.548598], [47.391941, 8.51809], [47.375623, 8.537318], [47.378461, 8.548156], [47.387927, 8.485148], [47.37466, 8.545879], [47.390846, 8.514969], [47.370547, 8.517564], [47.387666, 8.525143], [47.38599, 8.498235], [47.408503, 8.564987], [47.406912, 8.586869], [47.368599, 8.534353], [47.382981, 8.540159], [47.37042, 8.518661], [47.390486, 8.509133], [47.392833, 8.532295], [47.389673, 8.534509], [47.353254, 8.577044], [47.373943, 8.544606], [47.374979, 8.492508], [47.378581, 8.5422], [47.378698, 8.544016], [47.332674, 8.517949], [47.381321, 8.483548], [47.40362, 8.49636], [47.392695, 8.524093], [47.376696, 8.511187], [47.403938, 8.549681], [47.423985, 8.549026], [47.399479, 8.583503], [47.428101, 8.489848], [47.35479, 8.526829], [47.410038, 8.542997], [47.393462, 8.524731], [47.367895, 8.541184], [47.384964, 8.53212], [47.37639, 8.525615], [47.382683, 8.537411], [47.42874, 8.488826], [47.348303, 8.562697], [47.392327, 8.523926], [47.380442, 8.51946], [47.391253, 8.515666], [47.370481, 8.52462], [47.373437, 8.538227], [47.354715, 8.558265], [47.419552, 8.548019], [47.374784, 8.520365], [47.388487, 8.488788], [47.364399, 8.55022], [47.350669, 8.579146], [47.406701, 8.538291], [47.408005, 8.546745], [47.375081, 8.519391], [47.36833, 8.546542], [47.351401, 8.534238], [47.36637, 8.533222], [47.403777, 8.548671], [47.394223, 8.490159], [47.378802, 8.542588], [47.402598, 8.49993], [47.37273, 8.529393], [47.364357, 8.556442], [47.369622, 8.533646], [47.381968, 8.551064], [47.36844, 8.55], [47.360854, 8.531507], [47.389898, 8.491981], [47.428029, 8.545663], [47.37759, 8.506901], [47.368583, 8.524621], [47.36712, 8.544134], [47.411209, 8.570743], [47.422586, 8.550507], [47.383428, 8.539453], [47.362419, 8.535299], [47.36509, 8.553267], [47.369222, 8.525561], [47.368987, 8.538016], [47.355574, 8.532458], [47.35981, 8.508544], [47.366388, 8.520764], [47.412143, 8.54858], [47.381528, 8.548194], [47.388317, 8.490745], [47.379125, 8.511196], [47.347414, 8.526824], [47.362627, 8.519933], [47.370776, 8.535219], [47.388599, 8.528261], [47.372239, 8.535554], [47.367108, 8.539751], [47.375544, 8.52091], [47.396172, 8.505207], [47.379972, 8.548122], [47.376952, 8.528963], [47.37149, 8.515783], [47.418536, 8.54695], [47.365461, 8.546456], [47.374776, 8.501945], [47.390681, 8.48895], [47.379278, 8.537937], [47.386373, 8.473939], [47.404635, 8.550225], [47.410804, 8.560544], [47.414862, 8.545562], [47.381959, 8.513968], [47.358936, 8.577311], [47.406907, 8.550577], [47.365334, 8.532446], [47.372971, 8.55126], [47.377654, 8.537546], [47.366228, 8.553727], [47.363031, 8.525779], [47.419794, 8.533936], [47.374461, 8.521325], [47.379025, 8.494654], [47.374264, 8.525028], [47.37268, 8.534609], [47.393857, 8.505479], [47.38058, 8.512377], [47.390712, 8.539722], [47.36374, 8.535432], [47.383029, 8.575137], [47.418132, 8.510709], [47.392098, 8.502158], [47.37094, 8.548265], [47.404685, 8.557129], [47.361037, 8.548165], [47.402963, 8.535988], [47.36473, 8.554159], [47.362831, 8.548731], [47.38154, 8.513575], [47.42501, 8.55195], [47.373235, 8.533058], [47.370644, 8.516772], [47.400109, 8.545693], [47.408832, 8.557057], [47.37311, 8.532937], [47.386716, 8.495627], [47.419124, 8.506462], [47.419037, 8.539778], [47.407877, 8.550757], [47.414074, 8.541371], [47.38409, 8.509243], [47.407534, 8.584895], [47.380015, 8.546494], [47.39133, 8.536198], [47.36812, 8.547796], [47.389265, 8.527228], [47.371834, 8.536605], [47.363977, 8.530366], [47.380453, 8.524956], [47.416685, 8.509567], [47.358722, 8.517179], [47.404812, 8.557039], [47.374584, 8.541587], [47.375711, 8.539346], [47.369185, 8.538947], [47.372536, 8.528926], [47.361544, 8.514589], [47.362473, 8.53526], [47.373157, 8.534606], [47.378892, 8.566825], [47.378297, 8.530368], [47.365181, 8.566045], [47.390487, 8.522591], [47.387669, 8.5295], [47.355638, 8.532274], [47.376861, 8.543329], [47.416309, 8.508393], [47.416089, 8.508786], [47.416354, 8.508381], [47.416062, 8.508826], [47.399565, 8.49616], [47.417512, 8.483105], [47.365476, 8.552388], [47.423124, 8.538471], [47.377411, 8.539368], [47.37814, 8.483221], [47.418571, 8.547137], [47.386697, 8.5476], [47.40405, 8.578871], [47.406684, 8.561517], [47.422589, 8.537055], [47.420883, 8.507849], [47.415567, 8.521445], [47.378489, 8.509912], [47.369014, 8.53799], [47.378822, 8.563791], [47.384941, 8.508691], [47.363357, 8.519775], [47.395661, 8.522365], [47.363902, 8.531635], [47.364757, 8.502685], [47.413851, 8.546813], [47.364349, 8.555422], [47.384233, 8.497578], [47.387093, 8.48982], [47.412289, 8.553963], [47.390789, 8.488913], [47.378305, 8.540923], [47.34928, 8.577753], [47.343886, 8.529915], [47.40347, 8.556296], [47.394589, 8.525483], [47.376905, 8.540616], [47.424701, 8.537218], [47.365254, 8.556765], [47.39179, 8.487595], [47.337786, 8.535732], [47.395437, 8.494078], [47.377149, 8.543296], [47.371405, 8.547559], [47.391279, 8.514845], [47.382196, 8.540367], [47.343491, 8.535545], [47.368209, 8.555305], [47.367983, 8.546111], [47.352018, 8.576488], [47.36989, 8.525217], [47.38817, 8.525087], [47.357478, 8.526116], [47.381469, 8.503747], [47.406934, 8.526927], [47.407885, 8.583034], [47.38151, 8.548193], [47.365886, 8.532073], [47.357462, 8.572659], [47.330027, 8.534355], [47.37327, 8.535032], [47.38652, 8.520722], [47.393104, 8.526472], [47.410777, 8.555945], [47.357448, 8.588624], [47.380863, 8.536804], [47.380231, 8.541784], [47.352211, 8.565982], [47.342206, 8.530635], [47.370059, 8.537852], [47.375719, 8.529057], [47.366077, 8.533693], [47.382092, 8.488781], [47.380623, 8.525092], [47.403013, 8.490863], [47.429751, 8.549], [47.373226, 8.533058], [47.373456, 8.561506], [47.361934, 8.548395], [47.378422, 8.540899], [47.375955, 8.541126], [47.372734, 8.53273], [47.393435, 8.52473], [47.368307, 8.524338], [47.370084, 8.540845], [47.378579, 8.541485], [47.391674, 8.485513], [47.402083, 8.499204], [47.409587, 8.537462], [47.41476, 8.519215], [47.414234, 8.483478], [47.369602, 8.536691], [47.36733, 8.489907], [47.359199, 8.523901], [47.407549, 8.54643], [47.410061, 8.546231], [47.384809, 8.531415], [47.418645, 8.507751], [47.382101, 8.530486], [47.391486, 8.486436], [47.389405, 8.513244], [47.373262, 8.523472], [47.376976, 8.539743], [47.385907, 8.498459], [47.426446, 8.492771], [47.391031, 8.523066], [47.425815, 8.493858], [47.368712, 8.532846], [47.398533, 8.538281], [47.392244, 8.524163], [47.376572, 8.540648], [47.374797, 8.539989], [47.367526, 8.523143], [47.382351, 8.5144], [47.392504, 8.503054], [47.37924, 8.528626], [47.360747, 8.488731], [47.408887, 8.558821], [47.373047, 8.532949], [47.378134, 8.527703], [47.424521, 8.535318], [47.37494, 8.544786], [47.41861, 8.546819], [47.428018, 8.490005], [47.375808, 8.529152], [47.372646, 8.550419], [47.369035, 8.525279], [47.406912, 8.586843], [47.378315, 8.528475], [47.37642, 8.528184], [47.428619, 8.54329], [47.371422, 8.524931], [47.361829, 8.507128], [47.377185, 8.528187], [47.39558, 8.526205], [47.393378, 8.545036], [47.374605, 8.512601], [47.393233, 8.522302], [47.328673, 8.517749], [47.375777, 8.512307], [47.370689, 8.524466], [47.383099, 8.515262], [47.401148, 8.549888], [47.404243, 8.48519], [47.343606, 8.530015], [47.385497, 8.494133], [47.373489, 8.531845], [47.363427, 8.533387], [47.384701, 8.492634], [47.42598, 8.493517], [47.363994, 8.536152], [47.376454, 8.541692], [47.367898, 8.539979], [47.383992, 8.500341], [47.39116, 8.522803], [47.386897, 8.526557], [47.413087, 8.550521], [47.359259, 8.597334], [47.384994, 8.524201], [47.429891, 8.542905], [47.364441, 8.566373], [47.354448, 8.520243], [47.370215, 8.548806], [47.388813, 8.515947], [47.37669, 8.540532], [47.41923, 8.546872], [47.354649, 8.534173], [47.375964, 8.535524], [47.406907, 8.550577], [47.369435, 8.525844], [47.393426, 8.524717], [47.362751, 8.548544], [47.410627, 8.542519], [47.407681, 8.583732], [47.361999, 8.526473], [47.385446, 8.499747], [47.392244, 8.524203], [47.371272, 8.525643], [47.377731, 8.537878], [47.42493, 8.501197], [47.386227, 8.474148], [47.402728, 8.501456], [47.403024, 8.588879], [47.356542, 8.522298], [47.372871, 8.533422], [47.386905, 8.547418], [47.361288, 8.53411], [47.385086, 8.48496], [47.376427, 8.527483], [47.427884, 8.545806], [47.344647, 8.527456], [47.377016, 8.542101], [47.380424, 8.504865], [47.382459, 8.540201], [47.362425, 8.548816], [47.38769, 8.488388], [47.410149, 8.542681], [47.403002, 8.542229], [47.379064, 8.527258], [47.392244, 8.524163], [47.37386, 8.553251], [47.379422, 8.52177], [47.371544, 8.546265], [47.376749, 8.53803], [47.411042, 8.547139], [47.369322, 8.533971], [47.374946, 8.485224], [47.394071, 8.525035], [47.364204, 8.530185], [47.37466, 8.545879], [47.371351, 8.554099], [47.366829, 8.544498], [47.375019, 8.52221], [47.380332, 8.520636], [47.370215, 8.548793], [47.375435, 8.518166], [47.36455, 8.566243], [47.375261, 8.485204], [47.384978, 8.48501], [47.372096, 8.502832], [47.401948, 8.577634], [47.379045, 8.527351], [47.37019, 8.521053], [47.40381, 8.486387], [47.420698, 8.50265], [47.397845, 8.534067], [47.408178, 8.557746], [47.374559, 8.521406], [47.422503, 8.550757], [47.374966, 8.534511], [47.384274, 8.538477], [47.353892, 8.561438], [47.37773, 8.537997], [47.358036, 8.553358], [47.386441, 8.518509], [47.370202, 8.522721], [47.377689, 8.522384], [47.371487, 8.5248], [47.366912, 8.544302], [47.366332, 8.54098], [47.423072, 8.541995], [47.380057, 8.543038], [47.397521, 8.532126], [47.396789, 8.529687], [47.413857, 8.527241], [47.371093, 8.558464], [47.380116, 8.537742], [47.398711, 8.53284], [47.370811, 8.549467], [47.418823, 8.544213], [47.372877, 8.532839], [47.363977, 8.549205], [47.410392, 8.548331], [47.375311, 8.528426], [47.423464, 8.551811], [47.386319, 8.497699], [47.409804, 8.57543], [47.393408, 8.524743], [47.358205, 8.525323], [47.365788, 8.538612], [47.375905, 8.488606], [47.375064, 8.529865], [47.415673, 8.512992], [47.379158, 8.556024], [47.374673, 8.514973], [47.335037, 8.524891], [47.379189, 8.508112], [47.388524, 8.485703], [47.377641, 8.526501], [47.363888, 8.566812], [47.372287, 8.558767], [47.384666, 8.53128], [47.375596, 8.527797], [47.367852, 8.50652], [47.393426, 8.524717], [47.41228, 8.546555], [47.406322, 8.582882], [47.417448, 8.546], [47.387165, 8.519093], [47.376265, 8.528406], [47.387849, 8.524736], [47.371475, 8.526057], [47.367673, 8.541802], [47.377597, 8.535916], [47.429848, 8.544575], [47.369719, 8.523347], [47.366069, 8.533639], [47.403808, 8.485619], [47.367999, 8.54063], [47.409428, 8.542812], [47.381646, 8.492361], [47.403588, 8.57274], [47.380234, 8.548048], [47.378235, 8.514992], [47.390863, 8.478768], [47.375177, 8.525471], [47.373834, 8.54663], [47.367542, 8.545215], [47.381186, 8.503238], [47.376116, 8.516472], [47.374067, 8.524879], [47.412218, 8.546368], [47.406352, 8.570639], [47.360956, 8.56855], [47.424997, 8.537277], [47.389375, 8.528966], [47.337342, 8.517051], [47.414012, 8.541277], [47.378655, 8.488872], [47.373297, 8.533086], [47.370589, 8.538803], [47.374407, 8.5412], [47.403759, 8.567206], [47.37989, 8.494459], [47.358624, 8.558639], [47.390044, 8.537099], [47.422264, 8.547545], [47.384154, 8.497378], [47.365665, 8.559793], [47.377284, 8.512748], [47.373334, 8.534901], [47.378777, 8.542376], [47.374501, 8.53895], [47.345885, 8.534456], [47.392238, 8.539131], [47.356395, 8.532143], [47.382844, 8.529945], [47.413456, 8.530665], [47.429901, 8.538054], [47.376563, 8.562962], [47.391338, 8.536252], [47.389728, 8.486852], [47.367781, 8.544704], [47.351352, 8.560921], [47.39078, 8.508503], [47.386226, 8.533736], [47.359378, 8.5523], [47.413595, 8.532191], [47.378174, 8.509932], [47.354304, 8.525945], [47.373603, 8.519692], [47.37846, 8.543535], [47.377199, 8.539973], [47.36074, 8.516836], [47.366618, 8.540178], [47.374584, 8.538674], [47.413541, 8.55383], [47.412177, 8.551615], [47.37772, 8.509353], [47.37626, 8.538417], [47.403557, 8.487429], [47.392504, 8.503027], [47.400098, 8.545851], [47.372658, 8.547254], [47.378829, 8.519692], [47.414134, 8.551046], [47.362961, 8.535072], [47.421467, 8.501194], [47.365267, 8.547882], [47.387832, 8.529438], [47.35937, 8.592491], [47.384975, 8.508863], [47.374444, 8.495874], [47.39004, 8.536596], [47.410268, 8.542459], [47.369353, 8.537361], [47.413933, 8.526898], [47.385132, 8.508403], [47.361333, 8.525546], [47.377284, 8.512722], [47.394747, 8.490912], [47.39405, 8.493309], [47.385022, 8.508639], [47.367096, 8.540042], [47.385863, 8.527384], [47.350965, 8.582951], [47.375169, 8.528251], [47.363929, 8.547642], [47.403215, 8.547215], [47.33569, 8.53287], [47.372008, 8.529551], [47.372854, 8.542783], [47.378564, 8.541166], [47.381808, 8.540505], [47.359754, 8.535562], [47.350886, 8.534466], [47.363797, 8.575124], [47.368407, 8.560009], [47.358192, 8.571576], [47.369476, 8.526255], [47.368333, 8.524444], [47.394967, 8.519622], [47.406893, 8.584232], [47.363427, 8.535253], [47.399265, 8.502381], [47.384295, 8.54853], [47.37978, 8.554951], [47.362703, 8.515658], [47.42029, 8.548816], [47.383291, 8.499347], [47.37985, 8.527831], [47.419899, 8.500447], [47.37687, 8.536655], [47.367655, 8.523782], [47.37157, 8.515903], [47.391035, 8.478612], [47.386697, 8.496753], [47.366271, 8.540753], [47.404778, 8.565174], [47.3702, 8.521026], [47.409845, 8.541549], [47.412672, 8.514495], [47.382655, 8.529888], [47.357904, 8.510319], [47.37222, 8.54326], [47.388307, 8.536255], [47.367373, 8.52314], [47.376349, 8.528064], [47.3687, 8.521684], [47.414101, 8.544248], [47.398182, 8.536393], [47.395842, 8.540358], [47.40218, 8.496384], [47.404216, 8.560962], [47.352151, 8.558251], [47.39133, 8.536198], [47.370405, 8.518316], [47.366122, 8.54038], [47.373367, 8.480863], [47.41445, 8.517804], [47.341462, 8.530421], [47.420416, 8.538534], [47.374456, 8.529495], [47.384533, 8.534866], [47.377072, 8.541943], [47.388294, 8.517619], [47.37715, 8.523207], [47.362747, 8.550888], [47.386938, 8.539234], [47.364721, 8.554173], [47.372341, 8.545632], [47.351031, 8.559697], [47.373647, 8.597766], [47.374266, 8.542852], [47.427464, 8.551126], [47.366426, 8.545258], [47.416674, 8.514669], [47.384967, 8.547868], [47.414139, 8.549602], [47.382089, 8.528896], [47.405086, 8.560318], [47.362092, 8.550649], [47.36631, 8.531936], [47.418138, 8.50615], [47.404528, 8.576881], [47.364411, 8.546156], [47.374992, 8.52601], [47.426063, 8.493373], [47.365117, 8.553188], [47.374013, 8.544846], [47.358076, 8.519867], [47.431097, 8.550274], [47.402306, 8.543513], [47.408712, 8.54619], [47.413245, 8.532078], [47.385618, 8.518108], [47.399531, 8.538341], [47.358937, 8.534459], [47.391004, 8.523078], [47.429961, 8.549614], [47.427106, 8.545366], [47.407883, 8.503242], [47.371561, 8.51589], [47.376927, 8.538312], [47.372992, 8.547142], [47.362208, 8.548944], [47.422457, 8.55077], [47.362412, 8.547319], [47.372574, 8.521088], [47.353583, 8.554429], [47.389491, 8.521339], [47.338479, 8.530056], [47.361323, 8.525691], [47.365674, 8.549572], [47.372648, 8.534225], [47.356128, 8.559129], [47.372745, 8.510485], [47.351747, 8.566502], [47.377982, 8.511186], [47.370883, 8.544808], [47.41589, 8.545212], [47.39567, 8.522431], [47.371173, 8.530381], [47.399557, 8.586578], [47.420086, 8.51043], [47.417137, 8.545623], [47.357918, 8.520473], [47.369849, 8.552201], [47.388658, 8.488805], [47.373026, 8.475732], [47.344209, 8.52615], [47.372358, 8.486921], [47.344398, 8.529952], [47.365675, 8.563447], [47.37089, 8.544954], [47.363572, 8.535111], [47.378786, 8.542363], [47.398501, 8.591404], [47.377263, 8.538888], [47.410371, 8.539188], [47.380686, 8.504765], [47.380431, 8.541576], [47.364392, 8.533115], [47.390803, 8.50608], [47.422466, 8.536708], [47.419528, 8.506536], [47.373987, 8.540012], [47.385994, 8.518235], [47.361361, 8.522608], [47.413721, 8.545419], [47.427518, 8.547376], [47.400198, 8.489906], [47.367216, 8.545433], [47.390442, 8.509106], [47.355545, 8.528843], [47.369182, 8.532565], [47.378306, 8.530408], [47.388249, 8.49126], [47.377599, 8.522342], [47.394428, 8.534871], [47.376136, 8.527728], [47.386721, 8.488131], [47.390432, 8.509172], [47.394742, 8.536825], [47.348587, 8.534061], [47.390697, 8.55159], [47.366239, 8.52227], [47.39146, 8.519538], [47.379135, 8.559361], [47.361069, 8.535403], [47.40906, 8.543666], [47.414868, 8.54111], [47.385541, 8.532927], [47.370353, 8.51429], [47.389544, 8.521419], [47.401521, 8.581705], [47.373852, 8.546644], [47.414785, 8.512696], [47.379206, 8.53036], [47.371326, 8.536078], [47.370577, 8.519207], [47.377143, 8.540157], [47.422841, 8.494555], [47.422266, 8.549202], [47.412199, 8.546527], [47.419066, 8.537592], [47.381086, 8.565918], [47.393602, 8.501976], [47.366745, 8.544854], [47.361648, 8.56127], [47.373101, 8.547092], [47.408867, 8.54879], [47.385204, 8.50059], [47.387436, 8.5189], [47.371412, 8.53461], [47.379152, 8.529445], [47.373135, 8.567656], [47.389017, 8.469964], [47.422901, 8.538254], [47.371617, 8.546081], [47.374304, 8.502399], [47.370805, 8.517901], [47.361153, 8.590504], [47.371055, 8.519998], [47.350924, 8.577007], [47.388168, 8.516623], [47.383249, 8.484169], [47.373048, 8.555366], [47.399979, 8.490194], [47.395127, 8.536051], [47.376092, 8.527688], [47.374222, 8.544586], [47.366638, 8.54566], [47.363481, 8.551234], [47.410212, 8.54361], [47.369699, 8.536905], [47.365903, 8.500312], [47.368077, 8.546603], [47.387644, 8.486559], [47.368088, 8.485645], [47.384665, 8.477733], [47.370313, 8.556342], [47.408269, 8.577001], [47.377113, 8.535773], [47.379754, 8.527537], [47.366197, 8.516245], [47.377816, 8.507819], [47.406581, 8.56292], [47.379307, 8.537712], [47.365099, 8.55324], [47.413321, 8.545782], [47.399952, 8.587541], [47.368064, 8.541426], [47.352228, 8.509331], [47.428753, 8.545215], [47.406019, 8.548452], [47.376762, 8.543288], [47.364102, 8.536207], [47.396859, 8.548765], [47.365723, 8.535962], [47.366827, 8.54475], [47.381949, 8.5437], [47.36869, 8.482784], [47.377936, 8.5324], [47.376592, 8.527115], [47.378775, 8.514923], [47.392578, 8.502817], [47.384483, 8.543011], [47.371588, 8.515917], [47.358789, 8.558338], [47.356661, 8.522049], [47.370537, 8.548958], [47.361344, 8.563832], [47.358244, 8.588125], [47.414918, 8.545298], [47.384493, 8.480856], [47.353631, 8.554033], [47.413115, 8.563468], [47.365538, 8.56825], [47.382763, 8.529983], [47.396473, 8.579146], [47.380695, 8.496951], [47.419052, 8.506474], [47.41401, 8.550872], [47.350168, 8.534306], [47.380212, 8.526673], [47.388518, 8.520524], [47.348396, 8.534349], [47.343256, 8.535699], [47.368396, 8.497303], [47.404857, 8.59182], [47.365539, 8.513478], [47.350489, 8.561737], [47.394795, 8.490502], [47.411202, 8.546361], [47.361989, 8.525665], [47.363931, 8.553971], [47.36641, 8.545059], [47.374571, 8.545718], [47.369665, 8.5089], [47.378484, 8.493875], [47.349979, 8.527657], [47.373147, 8.503925], [47.383415, 8.540869], [47.392828, 8.506902], [47.373896, 8.538263], [47.364815, 8.537797], [47.393388, 8.499786], [47.383683, 8.510427], [47.382945, 8.540145], [47.360414, 8.526679], [47.419061, 8.544722], [47.36789, 8.551988], [47.380058, 8.570796], [47.392784, 8.532771], [47.391339, 8.536225], [47.408928, 8.539556], [47.41976, 8.509708], [47.381617, 8.516861], [47.368302, 8.534387], [47.385794, 8.525171], [47.392224, 8.541502], [47.393597, 8.538047], [47.389356, 8.528979], [47.377256, 8.538729], [47.369014, 8.537977], [47.402377, 8.546416], [47.375528, 8.548188], [47.364757, 8.54946], [47.371344, 8.547333], [47.404416, 8.57456], [47.418152, 8.554218], [47.397958, 8.532493], [47.400772, 8.54878], [47.378618, 8.569084], [47.374264, 8.542998], [47.366756, 8.541836], [47.389765, 8.511291], [47.36984, 8.552241], [47.373163, 8.536844], [47.399345, 8.505456], [47.381407, 8.52871], [47.369873, 8.536564], [47.376585, 8.526903], [47.374966, 8.52789], [47.374576, 8.538661], [47.376044, 8.553416], [47.409891, 8.541404], [47.361347, 8.549588], [47.370946, 8.535408], [47.38182, 8.516375], [47.401986, 8.545944], [47.397319, 8.553332], [47.405568, 8.539115], [47.379148, 8.538411], [47.390905, 8.522096], [47.359613, 8.563306], [47.371883, 8.542789], [47.372499, 8.517498], [47.379568, 8.527282], [47.390761, 8.489005], [47.380394, 8.541615], [47.361516, 8.547883], [47.366315, 8.53428], [47.386423, 8.518508], [47.368651, 8.537373], [47.412882, 8.520953], [47.377492, 8.509759], [47.369881, 8.509858], [47.371999, 8.601477], [47.372113, 8.539431], [47.370698, 8.516746], [47.383224, 8.553222], [47.418067, 8.510893], [47.341657, 8.530677], [47.403268, 8.547335], [47.376417, 8.527509], [47.369708, 8.543486], [47.373094, 8.503818], [47.398346, 8.591679], [47.389953, 8.536236], [47.371258, 8.558176], [47.409852, 8.529385], [47.384401, 8.531725], [47.359604, 8.593436], [47.374691, 8.535935], [47.425389, 8.536781], [47.384791, 8.531402], [47.398192, 8.536287], [47.3664, 8.522353], [47.393602, 8.537583], [47.374788, 8.527648], [47.408693, 8.546348], [47.408054, 8.547289], [47.362627, 8.535224], [47.369606, 8.525768], [47.38531, 8.51732], [47.370079, 8.543295], [47.407418, 8.56095], [47.398145, 8.546937], [47.397898, 8.534148], [47.374896, 8.540005], [47.365268, 8.547816], [47.373286, 8.531444], [47.374697, 8.523925], [47.344059, 8.52968], [47.363881, 8.53194], [47.378365, 8.526039], [47.33986, 8.524738], [47.403442, 8.556374], [47.377987, 8.521304], [47.358872, 8.557161], [47.366715, 8.541411], [47.364577, 8.566217], [47.378601, 8.499744], [47.325903, 8.518619], [47.369631, 8.467073], [47.398301, 8.479854], [47.363394, 8.533028], [47.379544, 8.542127], [47.37886, 8.525069], [47.340252, 8.529894], [47.402511, 8.492642], [47.383763, 8.539248], [47.387564, 8.519657], [47.326838, 8.517659], [47.366944, 8.562454], [47.393871, 8.504949], [47.406946, 8.536149], [47.370613, 8.516242], [47.368119, 8.541334], [47.380512, 8.519647], [47.405126, 8.482041], [47.339928, 8.529966], [47.376843, 8.522446], [47.376561, 8.524638], [47.41194, 8.528341], [47.345138, 8.53448], [47.392693, 8.510727], [47.390873, 8.48861], [47.376043, 8.535711], [47.410705, 8.550312], [47.378562, 8.510774], [47.383298, 8.543662], [47.367191, 8.528168], [47.383905, 8.530946], [47.38112, 8.553178], [47.362204, 8.547514], [47.371435, 8.522667], [47.419631, 8.548179], [47.400122, 8.494224], [47.384443, 8.503211], [47.357056, 8.555204], [47.369207, 8.505859], [47.422476, 8.55073], [47.361915, 8.566135], [47.427367, 8.546259], [47.368489, 8.53075], [47.368447, 8.564181], [47.368836, 8.501284], [47.389609, 8.538415], [47.376911, 8.532352], [47.387385, 8.52915], [47.396992, 8.480305], [47.367102, 8.5442], [47.389145, 8.527597], [47.389605, 8.491512], [47.384728, 8.484794], [47.401335, 8.582298], [47.384409, 8.531831], [47.377684, 8.543744], [47.381361, 8.514419], [47.370613, 8.54945], [47.364182, 8.554095], [47.373961, 8.501452], [47.416387, 8.545978], [47.385867, 8.493014], [47.386942, 8.535062], [47.385011, 8.530956], [47.393447, 8.544375], [47.410739, 8.5534], [47.38515, 8.537157], [47.378677, 8.514789], [47.378929, 8.542419], [47.38752, 8.488372], [47.377387, 8.51136], [47.381935, 8.529025], [47.41236, 8.55036], [47.3962, 8.48535], [47.37571, 8.529057], [47.37446, 8.527111], [47.403168, 8.489713], [47.36736, 8.545357], [47.378521, 8.541907], [47.362667, 8.563741], [47.42216, 8.512831], [47.376358, 8.528077], [47.390074, 8.517695], [47.387449, 8.51943], [47.386438, 8.496469], [47.379866, 8.537618], [47.381298, 8.515464], [47.37426, 8.532152], [47.405544, 8.581434], [47.410521, 8.553555], [47.390547, 8.52287], [47.39984, 8.490681], [47.411555, 8.545189], [47.372583, 8.534448], [47.377688, 8.510915], [47.380195, 8.541809], [47.387557, 8.500041], [47.382576, 8.532628], [47.380956, 8.551533], [47.373612, 8.519758], [47.40292, 8.57576], [47.367591, 8.537245], [47.370117, 8.512524], [47.372754, 8.534439], [47.373164, 8.532911], [47.376204, 8.489394], [47.379395, 8.522683], [47.361286, 8.535302], [47.37647, 8.541838], [47.406889, 8.481108], [47.389231, 8.510697], [47.382604, 8.552229], [47.370895, 8.53121], [47.413168, 8.550549], [47.356879, 8.514164], [47.387751, 8.529383], [47.394134, 8.525063], [47.377498, 8.511984], [47.352956, 8.556944], [47.370814, 8.559424], [47.377628, 8.509603], [47.369461, 8.525924], [47.43093, 8.549899], [47.377078, 8.527032], [47.366711, 8.544589], [47.384037, 8.504315], [47.380702, 8.512724], [47.377585, 8.529638], [47.374335, 8.524116], [47.380715, 8.492859], [47.384711, 8.500448], [47.414904, 8.541084], [47.391469, 8.48237], [47.391801, 8.481436], [47.368788, 8.528651], [47.346788, 8.535083], [47.379687, 8.510651], [47.374796, 8.484917], [47.371554, 8.518604], [47.372737, 8.529605], [47.384908, 8.531351], [47.409322, 8.545407], [47.373032, 8.534484], [47.362577, 8.522407], [47.376958, 8.520727], [47.429108, 8.548602], [47.393787, 8.472626], [47.373683, 8.530353], [47.416108, 8.565559], [47.368128, 8.545942], [47.378496, 8.528399], [47.370946, 8.535408], [47.421316, 8.547883], [47.371379, 8.54744], [47.345579, 8.534436], [47.343329, 8.535594], [47.400569, 8.506262], [47.389776, 8.511993], [47.373063, 8.533094], [47.378624, 8.542399], [47.381885, 8.48981], [47.414072, 8.550011], [47.387874, 8.540127], [47.390419, 8.527875], [47.381522, 8.513535], [47.408883, 8.539581], [47.374487, 8.539453], [47.36997, 8.510932], [47.345129, 8.53448], [47.357975, 8.579872], [47.415368, 8.483447], [47.391584, 8.52358], [47.380698, 8.528537], [47.375333, 8.485232], [47.371864, 8.517207], [47.397603, 8.481417], [47.392968, 8.524655], [47.407266, 8.490099], [47.389458, 8.53914], [47.369877, 8.547435], [47.373226, 8.514772], [47.383822, 8.527289], [47.371291, 8.536011], [47.358145, 8.520146], [47.374669, 8.549627], [47.369137, 8.544877], [47.35912, 8.521781], [47.354395, 8.526794], [47.39523, 8.540372], [47.372233, 8.542797], [47.3804, 8.54286], [47.404003, 8.563408], [47.368279, 8.546197], [47.407129, 8.586728], [47.408547, 8.546557], [47.356025, 8.522737], [47.373122, 8.534513], [47.397367, 8.531275], [47.354867, 8.560148], [47.397473, 8.53243], [47.397033, 8.512219], [47.386832, 8.490782], [47.377073, 8.548392], [47.402176, 8.495841], [47.37844, 8.566034], [47.387369, 8.519349], [47.359273, 8.557606], [47.373096, 8.475958], [47.424357, 8.548689], [47.377593, 8.498757], [47.377421, 8.533581], [47.396787, 8.53749], [47.385135, 8.48851], [47.354018, 8.555908], [47.386055, 8.518501], [47.370139, 8.547321], [47.364518, 8.533051], [47.395397, 8.532295], [47.370102, 8.519012], [47.369365, 8.506352], [47.358421, 8.526254], [47.368367, 8.492615], [47.370635, 8.561168], [47.333466, 8.518812], [47.413762, 8.546692], [47.390609, 8.522991], [47.409474, 8.561417], [47.374921, 8.544878], [47.419723, 8.504923], [47.375408, 8.547537], [47.355315, 8.554796], [47.412295, 8.558031], [47.361306, 8.525506], [47.355415, 8.531197], [47.376633, 8.544622], [47.387331, 8.530063], [47.422884, 8.547531], [47.371592, 8.536494], [47.377045, 8.535295], [47.372753, 8.535485], [47.372046, 8.534133], [47.389274, 8.529096], [47.345969, 8.531281], [47.37, 8.566359], [47.376897, 8.554547], [47.403322, 8.49748], [47.402753, 8.535294], [47.375817, 8.577658], [47.385502, 8.530449], [47.390873, 8.48861], [47.394133, 8.493125], [47.376353, 8.543769], [47.37137, 8.516151], [47.406705, 8.535985], [47.357388, 8.597346], [47.380927, 8.542394], [47.41234, 8.542117], [47.370208, 8.557015], [47.370443, 8.539026], [47.427505, 8.543134], [47.420122, 8.54758], [47.382021, 8.550164], [47.3796, 8.52772], [47.369059, 8.538004], [47.377256, 8.539656], [47.35031, 8.534494], [47.398922, 8.538965], [47.411091, 8.545788], [47.353592, 8.55439], [47.421443, 8.497867], [47.377153, 8.541958], [47.367498, 8.494107], [47.366793, 8.521685], [47.425871, 8.547474], [47.340713, 8.537221], [47.388781, 8.530808], [47.409409, 8.545727], [47.37492, 8.553419], [47.369353, 8.537308], [47.389016, 8.548628], [47.367793, 8.539633], [47.371103, 8.523521], [47.377265, 8.538676], [47.380714, 8.504712], [47.341126, 8.530692], [47.359361, 8.552207], [47.379308, 8.495229], [47.383778, 8.530096], [47.373543, 8.495128], [47.385499, 8.52886], [47.378024, 8.554279], [47.374713, 8.549641], [47.40779, 8.552239], [47.370723, 8.535205], [47.401031, 8.488254], [47.369772, 8.480515], [47.38607, 8.493482], [47.36931, 8.525762], [47.400196, 8.494066], [47.371775, 8.493676], [47.338272, 8.530012], [47.356773, 8.523534], [47.378096, 8.51054], [47.365422, 8.539226], [47.365028, 8.53146], [47.42706, 8.546412], [47.408952, 8.545572], [47.380193, 8.542961], [47.358238, 8.518891], [47.356458, 8.510158], [47.369298, 8.505768], [47.352946, 8.556984], [47.370489, 8.549275], [47.364257, 8.533139], [47.338042, 8.525839], [47.380301, 8.520106], [47.367166, 8.523176], [47.388812, 8.522782], [47.370116, 8.511663], [47.390941, 8.522097], [47.368461, 8.559971], [47.407651, 8.584023], [47.367076, 8.495013], [47.404619, 8.594929], [47.366948, 8.548023], [47.36647, 8.533105], [47.370759, 8.522733], [47.355154, 8.532158], [47.357797, 8.521847], [47.372951, 8.533556], [47.368327, 8.548687], [47.385914, 8.532498], [47.386272, 8.53179], [47.372758, 8.534969], [47.338842, 8.538228], [47.360971, 8.531456], [47.409344, 8.549714], [47.335707, 8.540611], [47.366955, 8.544448], [47.383729, 8.512242], [47.391909, 8.483491], [47.382137, 8.514197], [47.421161, 8.549947], [47.399767, 8.543738], [47.400836, 8.491906], [47.360008, 8.532535], [47.396122, 8.493946], [47.375139, 8.547438], [47.38871, 8.520276], [47.420207, 8.509015], [47.392461, 8.502762], [47.360396, 8.526692], [47.366959, 8.543098], [47.372508, 8.517538], [47.405152, 8.504897], [47.378748, 8.49441], [47.385961, 8.517943], [47.361804, 8.526191], [47.409158, 8.547497], [47.359448, 8.511661], [47.397941, 8.532479], [47.373288, 8.533073], [47.37525, 8.53302], [47.37884, 8.508952], [47.390362, 8.47946], [47.387816, 8.488457], [47.384848, 8.508053], [47.378671, 8.523132], [47.397996, 8.474695], [47.369495, 8.526123], [47.362997, 8.535033], [47.409584, 8.53778], [47.384316, 8.531246], [47.36363, 8.558188], [47.386751, 8.547601], [47.359701, 8.566313], [47.375626, 8.54823], [47.398225, 8.542355], [47.34528, 8.535621], [47.377809, 8.525869], [47.366041, 8.540365], [47.353685, 8.600588], [47.366747, 8.541822], [47.363792, 8.517481], [47.364309, 8.52182], [47.427602, 8.549949], [47.364436, 8.531249], [47.369158, 8.527559], [47.42967, 8.537797], [47.402227, 8.552719], [47.396658, 8.504197], [47.409319, 8.546692], [47.355509, 8.527889], [47.386918, 8.486307], [47.371782, 8.516331], [47.410753, 8.542561], [47.393373, 8.513099], [47.372685, 8.534106], [47.361547, 8.535241], [47.378736, 8.529675], [47.354297, 8.557727], [47.372273, 8.53578], [47.345005, 8.529594], [47.387384, 8.518726], [47.390585, 8.508208], [47.376491, 8.543467], [47.357428, 8.521879], [47.368411, 8.546504], [47.391696, 8.513555], [47.397991, 8.47431], [47.336844, 8.539245], [47.376861, 8.543316], [47.394122, 8.540574], [47.367378, 8.523577], [47.376876, 8.535106], [47.361496, 8.551907], [47.34031, 8.524721], [47.371633, 8.521625], [47.356608, 8.551329], [47.384801, 8.531336], [47.354039, 8.557417], [47.418149, 8.528044], [47.397087, 8.493687], [47.375314, 8.485377], [47.369333, 8.557195], [47.387667, 8.521182], [47.407793, 8.560375], [47.40895, 8.543915], [47.376035, 8.535645], [47.377486, 8.543806], [47.38936, 8.51617], [47.405165, 8.552105], [47.367013, 8.544118], [47.393778, 8.493608], [47.36751, 8.546631], [47.415629, 8.508035], [47.334289, 8.532722], [47.327122, 8.529599], [47.419645, 8.548551], [47.358918, 8.516416], [47.367422, 8.495523], [47.391025, 8.489633], [47.380223, 8.542618], [47.389718, 8.542086], [47.381558, 8.513615], [47.379645, 8.527681], [47.378219, 8.531969], [47.4057, 8.591096], [47.419247, 8.505828], [47.353454, 8.530217], [47.405169, 8.480293], [47.392212, 8.476715], [47.405811, 8.590807], [47.405811, 8.590807], [47.363596, 8.575411], [47.398535, 8.541911], [47.34005, 8.530339], [47.358218, 8.519115], [47.364798, 8.537678], [47.421645, 8.550183], [47.39086, 8.522082], [47.383342, 8.511374], [47.393514, 8.473018], [47.378085, 8.526179], [47.373337, 8.53559], [47.379187, 8.518057], [47.403822, 8.560755], [47.384498, 8.480379], [47.355942, 8.535417], [47.389991, 8.52564], [47.36218, 8.50413], [47.378707, 8.54211], [47.405262, 8.55791], [47.390844, 8.504478], [47.385839, 8.530006], [47.387767, 8.51529], [47.409549, 8.529153], [47.394294, 8.525212], [47.361326, 8.570332], [47.399556, 8.516589], [47.366192, 8.540593], [47.386807, 8.502357], [47.407449, 8.548456], [47.375242, 8.518586], [47.367293, 8.520226], [47.378386, 8.530476], [47.359843, 8.535669], [47.373908, 8.527484], [47.375198, 8.484209], [47.380772, 8.519758], [47.392196, 8.524533], [47.377258, 8.543152], [47.413049, 8.540396], [47.410439, 8.532975], [47.377256, 8.529195], [47.37598, 8.559175], [47.405175, 8.480611], [47.399175, 8.521774], [47.406862, 8.550577], [47.351148, 8.568925], [47.363007, 8.526374], [47.362136, 8.503997], [47.391478, 8.514677], [47.382371, 8.530438], [47.382563, 8.563022], [47.384368, 8.548399], [47.422903, 8.551256], [47.369012, 8.524882], [47.381875, 8.556942], [47.369122, 8.503368], [47.410272, 8.529712], [47.383085, 8.513845], [47.375561, 8.517149], [47.383937, 8.530444], [47.367361, 8.544337], [47.354896, 8.574696], [47.403374, 8.49866], [47.397473, 8.532417], [47.420287, 8.503318], [47.367099, 8.539777], [47.408291, 8.529883], [47.385317, 8.521373], [47.389008, 8.536336], [47.379179, 8.527446], [47.364532, 8.566243], [47.392244, 8.524176], [47.386919, 8.534624], [47.345345, 8.536337], [47.377641, 8.526488], [47.368154, 8.541441], [47.379374, 8.517279], [47.372892, 8.535951], [47.419098, 8.506368], [47.405244, 8.49092], [47.390976, 8.523184], [47.3874, 8.518965], [47.382491, 8.501185], [47.381717, 8.531206], [47.373132, 8.535373], [47.359745, 8.594617], [47.374386, 8.502242], [47.424305, 8.549417], [47.359715, 8.550904], [47.380014, 8.543752], [47.379663, 8.527668], [47.368488, 8.530856], [47.37454, 8.539547], [47.35631, 8.573641], [47.373987, 8.544713], [47.39198, 8.530264], [47.374463, 8.537255], [47.40931, 8.54485], [47.389758, 8.512072], [47.378417, 8.540501], [47.370381, 8.509272], [47.368311, 8.5344], [47.41078, 8.550036], [47.371402, 8.555372], [47.410691, 8.572189], [47.347709, 8.562764], [47.364436, 8.531262], [47.358144, 8.558959], [47.371521, 8.547628], [47.414189, 8.550067], [47.358693, 8.586413], [47.382231, 8.551784], [47.405893, 8.548423], [47.406866, 8.536055], [47.38068, 8.50054], [47.378691, 8.529648], [47.413029, 8.516795], [47.399501, 8.540513], [47.388868, 8.515829], [47.369571, 8.5286], [47.37831, 8.541333], [47.37845, 8.510229], [47.385282, 8.508711], [47.371704, 8.524619], [47.410491, 8.479628], [47.360915, 8.525061], [47.36918, 8.528063], [47.334981, 8.519333], [47.382261, 8.533535], [47.394194, 8.527223], [47.353444, 8.55759], [47.344302, 8.532584], [47.368042, 8.53895], [47.368342, 8.498229], [47.3585, 8.510119], [47.376301, 8.525573], [47.407261, 8.503428], [47.374098, 8.525396], [47.375483, 8.549114], [47.3877, 8.486388], [47.396616, 8.510687], [47.366529, 8.566219], [47.374391, 8.522025], [47.376175, 8.528418], [47.374237, 8.535476], [47.37252, 8.534407], [47.412293, 8.556361], [47.391792, 8.518644], [47.361447, 8.551311], [47.403188, 8.547254], [47.398956, 8.59001], [47.373429, 8.520033], [47.37187, 8.522278], [47.368737, 8.537746], [47.363337, 8.533318], [47.373846, 8.530211], [47.404181, 8.485109], [47.377724, 8.525324], [47.382094, 8.488596], [47.410875, 8.561592], [47.36577, 8.539578], [47.414798, 8.551219], [47.376603, 8.543933], [47.374717, 8.52758], [47.372889, 8.521081], [47.381894, 8.5475], [47.391529, 8.54268], [47.419669, 8.547995], [47.39386, 8.493477], [47.401869, 8.551532], [47.370179, 8.513585], [47.382411, 8.532955], [47.366718, 8.545767], [47.352306, 8.576494], [47.352797, 8.524512], [47.376056, 8.559614], [47.392598, 8.475848], [47.342035, 8.530645], [47.379951, 8.520999], [47.370553, 8.54447], [47.370886, 8.548237], [47.346368, 8.564628], [47.369069, 8.537872], [47.385661, 8.532585], [47.388337, 8.540653], [47.360014, 8.51661], [47.377386, 8.501785], [47.366482, 8.540334], [47.421256, 8.501601], [47.387311, 8.518844], [47.391624, 8.513554], [47.376031, 8.511081], [47.353818, 8.557055], [47.377664, 8.496878], [47.368339, 8.54645], [47.414982, 8.515735], [47.357531, 8.600076], [47.391015, 8.520972], [47.374394, 8.525561], [47.375585, 8.501021], [47.375908, 8.523288], [47.397767, 8.533734], [47.375652, 8.54835], [47.38619, 8.521338], [47.373699, 8.517125], [47.39866, 8.539184], [47.413452, 8.530134], [47.381427, 8.484795], [47.363822, 8.559674], [47.378246, 8.548059], [47.370278, 8.548834], [47.386714, 8.547613], [47.410999, 8.54315], [47.368629, 8.518691], [47.380249, 8.541771], [47.400698, 8.544274], [47.411621, 8.559819], [47.379708, 8.515154], [47.361273, 8.52336], [47.369831, 8.538152], [47.412179, 8.550423], [47.385069, 8.508455], [47.380507, 8.512482], [47.374223, 8.502345], [47.36787, 8.560607], [47.376119, 8.494702], [47.378032, 8.493098], [47.394174, 8.527461], [47.370499, 8.517908], [47.39754, 8.489324], [47.357853, 8.572178], [47.377846, 8.54188], [47.355028, 8.529256], [47.38, 8.553671], [47.375176, 8.54736], [47.339569, 8.53553], [47.369337, 8.525736], [47.408156, 8.545992], [47.375055, 8.48516], [47.383175, 8.506073], [47.383789, 8.532745], [47.414076, 8.541186], [47.388435, 8.52847], [47.354945, 8.509373], [47.348558, 8.563351], [47.389262, 8.521837], [47.356902, 8.555319], [47.373348, 8.531511], [47.37068, 8.516746], [47.376381, 8.525615], [47.387028, 8.501858], [47.384732, 8.543294], [47.37893, 8.542406], [47.377669, 8.525455], [47.338254, 8.528172], [47.418887, 8.498002], [47.38216, 8.488213], [47.383313, 8.484037], [47.369335, 8.491946], [47.374161, 8.513943], [47.36671, 8.541914], [47.408068, 8.544878], [47.37434, 8.495527], [47.420133, 8.508258], [47.414209, 8.518555], [47.378692, 8.516153], [47.371513, 8.542835], [47.348478, 8.534191], [47.370235, 8.532533], [47.37513, 8.549345], [47.39161, 8.485697], [47.361257, 8.560733], [47.366404, 8.538188], [47.36799, 8.51975], [47.388636, 8.509785], [47.41553, 8.541547], [47.392232, 8.502293], [47.33658, 8.530123], [47.394084, 8.475691], [47.372271, 8.536044], [47.361793, 8.560241], [47.40591, 8.590796], [47.393845, 8.512671], [47.378804, 8.527227], [47.384633, 8.530061], [47.381736, 8.545258], [47.392776, 8.534506], [47.393369, 8.49303], [47.360466, 8.535378], [47.360059, 8.531835], [47.372805, 8.543206], [47.374151, 8.515015], [47.418252, 8.548482], [47.424705, 8.543381], [47.360071, 8.547615], [47.372919, 8.520764], [47.377396, 8.521], [47.403673, 8.571444], [47.373511, 8.552158], [47.40036, 8.543803], [47.377525, 8.522566], [47.351422, 8.57674], [47.392815, 8.522784], [47.389742, 8.511767], [47.389228, 8.541546], [47.403887, 8.567937], [47.381531, 8.498001], [47.381749, 8.541947], [47.364564, 8.536812], [47.378435, 8.550857], [47.375744, 8.549106], [47.354936, 8.534245], [47.375416, 8.561653], [47.368448, 8.548306], [47.396006, 8.5211], [47.378861, 8.524976], [47.388804, 8.522716], [47.370462, 8.549261], [47.378253, 8.52748], [47.378977, 8.551557], [47.368762, 8.540818], [47.391917, 8.517825], [47.393108, 8.474162], [47.416508, 8.553071], [47.417986, 8.560139], [47.381077, 8.503316], [47.373862, 8.529509], [47.368126, 8.532993], [47.406722, 8.586971], [47.397275, 8.493757], [47.418241, 8.543048], [47.375789, 8.549121], [47.372716, 8.534663], [47.368449, 8.550927], [47.380732, 8.5782], [47.378074, 8.529225], [47.3825, 8.505172], [47.362478, 8.533817], [47.41418, 8.535026], [47.36929, 8.491972], [47.369589, 8.564231], [47.41342, 8.54581], [47.37126, 8.520148], [47.368283, 8.550474], [47.397465, 8.532337], [47.3666, 8.536417], [47.398159, 8.536048], [47.373995, 8.501771], [47.410861, 8.563076], [47.386573, 8.479651], [47.382682, 8.529915], [47.411267, 8.567577], [47.368964, 8.501035], [47.373622, 8.549963], [47.358848, 8.55221], [47.412899, 8.547589], [47.375597, 8.535305], [47.377045, 8.521947], [47.377344, 8.529422], [47.371177, 8.534711], [47.369532, 8.553346], [47.382544, 8.548189], [47.349774, 8.532286], [47.38008, 8.537808], [47.374291, 8.541131], [47.386318, 8.525897], [47.37055, 8.469924], [47.365124, 8.516488], [47.40324, 8.547427], [47.413456, 8.532586], [47.378954, 8.538857], [47.425174, 8.546095], [47.409847, 8.545087], [47.399225, 8.59187], [47.380256, 8.552273], [47.389867, 8.526393], [47.390362, 8.491368], [47.371162, 8.54288], [47.366196, 8.557023], [47.378495, 8.575186], [47.372398, 8.547183], [47.378966, 8.542393], [47.412714, 8.537792], [47.387724, 8.499515], [47.378624, 8.519502], [47.377765, 8.498707], [47.422359, 8.550675], [47.361865, 8.507102], [47.378454, 8.509765], [47.375817, 8.547108], [47.422247, 8.538969], [47.422415, 8.512412], [47.365703, 8.537154], [47.369546, 8.543496], [47.412151, 8.546831], [47.410422, 8.572051], [47.42029, 8.508778], [47.376508, 8.524584], [47.371586, 8.51025], [47.387661, 8.529447], [47.398859, 8.506427], [47.384617, 8.53463], [47.375512, 8.563827], [47.363752, 8.530361], [47.374683, 8.537723], [47.383509, 8.536607], [47.366931, 8.544209], [47.378018, 8.524694], [47.389313, 8.54021], [47.397482, 8.532444], [47.367898, 8.544613], [47.376454, 8.52551], [47.366058, 8.545211], [47.376021, 8.541816], [47.391332, 8.50621], [47.365923, 8.534841], [47.378299, 8.527375], [47.381915, 8.52925], [47.410886, 8.563275], [47.418123, 8.510709], [47.386723, 8.544858], [47.378463, 8.550752], [47.379634, 8.542102], [47.37239, 8.547156], [47.379828, 8.542477], [47.386936, 8.473288], [47.385007, 8.537075], [47.375906, 8.529313], [47.376229, 8.544508], [47.42751, 8.547323], [47.43, 8.549337], [47.409065, 8.54788], [47.386109, 8.521389], [47.388448, 8.491105], [47.366897, 8.533603], [47.34706, 8.528207], [47.411193, 8.485525], [47.360351, 8.552188], [47.388402, 8.525264], [47.379634, 8.542102], [47.370179, 8.548792], [47.372822, 8.535831], [47.377515, 8.527531], [47.376774, 8.559775], [47.369523, 8.526031], [47.41256, 8.546389], [47.398334, 8.479205], [47.349382, 8.562733], [47.390789, 8.508556], [47.382302, 8.533006], [47.361298, 8.5254], [47.385302, 8.507585], [47.373041, 8.51927], [47.370215, 8.548806], [47.366527, 8.545088], [47.374486, 8.536699], [47.370161, 8.548791], [47.404656, 8.574883], [47.358944, 8.551589], [47.389904, 8.475358], [47.382219, 8.530356], [47.411099, 8.535506], [47.406493, 8.584648], [47.371498, 8.557479], [47.407587, 8.564889], [47.361411, 8.54763], [47.416923, 8.545459], [47.39863, 8.506872], [47.373736, 8.546549], [47.389386, 8.51625], [47.377944, 8.492871], [47.407206, 8.564298], [47.366738, 8.541782], [47.369397, 8.537481], [47.402436, 8.535579], [47.409013, 8.542989], [47.374298, 8.521414], [47.370188, 8.548792], [47.367611, 8.552935], [47.359781, 8.594565], [47.427178, 8.536818], [47.378173, 8.509972], [47.386417, 8.531647], [47.386961, 8.533976], [47.40762, 8.543716], [47.368599, 8.520067], [47.329972, 8.533547], [47.364908, 8.504846], [47.378232, 8.51723], [47.408117, 8.53881], [47.383087, 8.530837], [47.377262, 8.556832], [47.41941, 8.547777], [47.373047, 8.532949], [47.353033, 8.553531], [47.366989, 8.523795], [47.385575, 8.528424], [47.393677, 8.491765], [47.3684, 8.556924], [47.389053, 8.538191], [47.393408, 8.524703], [47.355443, 8.600189], [47.370361, 8.514396], [47.391532, 8.519499], [47.369436, 8.541838], [47.373972, 8.527327], [47.366065, 8.559404], [47.378638, 8.539976], [47.363898, 8.549045], [47.41919, 8.508106], [47.373266, 8.531589], [47.388762, 8.491178], [47.420132, 8.548481], [47.350027, 8.56673], [47.374488, 8.539321], [47.3783, 8.509855], [47.414215, 8.518886], [47.404578, 8.483965], [47.374415, 8.527137], [47.365184, 8.555639], [47.409878, 8.540874], [47.393799, 8.509849], [47.380046, 8.554454], [47.371392, 8.546129], [47.382514, 8.540083], [47.375375, 8.560341], [47.41384, 8.527187], [47.391023, 8.521012], [47.370642, 8.535137], [47.347628, 8.566402], [47.403265, 8.555125], [47.364084, 8.547447], [47.425944, 8.493583], [47.391556, 8.54268], [47.371942, 8.516494], [47.378802, 8.539794], [47.379981, 8.548135], [47.409608, 8.537132], [47.373629, 8.519785], [47.391358, 8.538954], [47.381038, 8.503659], [47.366354, 8.540556], [47.355289, 8.596731], [47.387199, 8.519226], [47.378048, 8.513836], [47.375182, 8.518254], [47.408956, 8.539437], [47.371707, 8.519561], [47.378003, 8.508949], [47.374749, 8.48906], [47.369181, 8.527997], [47.404273, 8.560658], [47.400311, 8.494267], [47.374833, 8.527635], [47.374284, 8.543792], [47.409988, 8.550059], [47.368951, 8.524722], [47.40017, 8.586459], [47.380381, 8.512453], [47.386824, 8.502517], [47.366392, 8.559067], [47.388596, 8.48675], [47.360976, 8.531006], [47.383699, 8.5155], [47.406385, 8.583744], [47.374109, 8.502011], [47.403169, 8.547333], [47.370544, 8.549236], [47.376521, 8.526995], [47.402391, 8.535539], [47.390752, 8.548624], [47.398109, 8.535623], [47.375695, 8.537333], [47.360305, 8.550426], [47.392477, 8.506908], [47.371109, 8.530512], [47.38453, 8.539052], [47.397012, 8.530752], [47.41072, 8.553413], [47.377461, 8.541673], [47.380501, 8.525659], [47.403325, 8.534803], [47.400374, 8.548931], [47.361589, 8.547779], [47.415221, 8.562373], [47.391058, 8.523066], [47.378129, 8.509918], [47.379612, 8.542579], [47.37253, 8.528582], [47.365806, 8.539512], [47.364402, 8.55643], [47.366443, 8.540691], [47.41996, 8.548544], [47.357803, 8.552413], [47.404501, 8.575012], [47.388282, 8.485605], [47.364523, 8.566229], [47.37962, 8.523628], [47.385841, 8.525013], [47.381576, 8.513603], [47.358546, 8.532082], [47.373494, 8.519835], [47.420226, 8.508936], [47.394494, 8.479091], [47.390923, 8.52211], [47.366679, 8.501995], [47.374407, 8.517484], [47.368272, 8.536571], [47.370233, 8.548819], [47.390694, 8.522582], [47.377856, 8.519884], [47.402534, 8.535648], [47.382367, 8.49909], [47.350169, 8.532307], [47.410641, 8.543924], [47.364276, 8.546259], [47.423053, 8.503797], [47.357457, 8.521628], [47.361338, 8.549601], [47.381935, 8.529025], [47.409443, 8.549703], [47.336878, 8.520482], [47.396694, 8.537753], [47.374821, 8.520299], [47.363959, 8.530326], [47.374762, 8.54461], [47.385031, 8.508639], [47.427187, 8.536818], [47.374184, 8.5192], [47.391061, 8.538895], [47.36454, 8.531688], [47.363993, 8.531584], [47.368258, 8.561449], [47.370372, 8.527544], [47.388954, 8.485896], [47.385306, 8.542485], [47.386538, 8.541636], [47.376608, 8.54339], [47.385722, 8.508786], [47.372422, 8.545647], [47.368843, 8.501496], [47.375009, 8.545118], [47.365987, 8.546997], [47.404243, 8.560949], [47.41771, 8.483056], [47.378767, 8.519651], [47.37843, 8.525881], [47.367973, 8.495361], [47.39595, 8.540307], [47.391835, 8.484615], [47.374308, 8.530803], [47.391099, 8.52259], [47.423119, 8.542778], [47.382457, 8.537592], [47.430624, 8.541529], [47.374751, 8.523873], [47.409168, 8.547458], [47.373657, 8.519719], [47.33854, 8.530176], [47.372531, 8.528542], [47.37718, 8.522002], [47.372775, 8.528441], [47.393767, 8.53915], [47.356887, 8.553201], [47.374281, 8.525121], [47.371278, 8.536434], [47.387256, 8.539863], [47.378586, 8.540664], [47.419306, 8.556734], [47.377071, 8.569978], [47.373662, 8.536351], [47.364789, 8.554624], [47.385966, 8.504804], [47.388705, 8.546436], [47.391039, 8.481169], [47.35479, 8.526829], [47.370027, 8.519262], [47.368409, 8.556924], [47.354552, 8.574001], [47.378731, 8.542507], [47.335594, 8.525008], [47.360476, 8.563404], [47.382749, 8.514143], [47.346614, 8.528714], [47.369755, 8.540428], [47.35159, 8.53039], [47.365911, 8.501437], [47.36652, 8.501754], [47.398276, 8.536964], [47.399798, 8.544255], [47.380989, 8.556526], [47.377995, 8.510776], [47.391625, 8.513395], [47.368836, 8.501244], [47.382219, 8.530342], [47.413672, 8.554217], [47.371935, 8.519221], [47.379062, 8.538846], [47.373671, 8.536338], [47.413023, 8.550612], [47.380524, 8.512562], [47.379124, 8.519963], [47.363034, 8.527355], [47.366496, 8.540784], [47.389527, 8.521353], [47.37214, 8.539431], [47.352104, 8.558488], [47.394072, 8.475996], [47.385563, 8.53061], [47.378388, 8.523656], [47.422439, 8.550822], [47.392196, 8.494464], [47.387272, 8.519121], [47.380219, 8.542988], [47.353827, 8.600737], [47.419062, 8.538055], [47.364853, 8.530927], [47.392086, 8.500502], [47.398093, 8.501682], [47.36167, 8.532755], [47.415512, 8.553712], [47.411667, 8.561596], [47.337956, 8.538686], [47.377459, 8.539038], [47.37305, 8.51923], [47.373334, 8.553691], [47.376402, 8.528131], [47.364149, 8.565811], [47.374261, 8.524327], [47.37868, 8.523132], [47.374527, 8.539971], [47.341489, 8.530409], [47.353644, 8.554589], [47.414837, 8.541533], [47.386327, 8.52591], [47.374858, 8.532655], [47.41403, 8.550673], [47.398861, 8.533148], [47.422716, 8.550961], [47.374405, 8.55182], [47.390612, 8.489625], [47.368946, 8.540358], [47.364707, 8.554689], [47.364614, 8.566139], [47.368953, 8.501233], [47.364295, 8.546101], [47.38786, 8.486603], [47.381728, 8.530928], [47.406277, 8.562741], [47.417336, 8.55387], [47.351626, 8.583429], [47.369814, 8.552161], [47.377817, 8.529815], [47.366426, 8.548065], [47.39276, 8.532453], [47.394365, 8.489328], [47.373573, 8.534363], [47.412813, 8.522515], [47.344518, 8.530656], [47.373662, 8.536351], [47.349466, 8.532412], [47.37553, 8.524352], [47.340635, 8.530272], [47.391405, 8.55089], [47.362729, 8.515712], [47.415503, 8.545244], [47.367788, 8.534469], [47.367427, 8.506764], [47.372817, 8.483938], [47.374238, 8.542984], [47.383035, 8.473967], [47.370152, 8.548791], [47.420645, 8.502477], [47.378279, 8.530381], [47.402454, 8.53558], [47.387361, 8.519282], [47.403725, 8.485803], [47.377339, 8.535619], [47.37865, 8.496368], [47.409566, 8.53778], [47.395531, 8.493709], [47.369312, 8.543517], [47.373779, 8.537333], [47.389487, 8.483708], [47.371448, 8.562642], [47.364758, 8.554067], [47.372982, 8.533133], [47.371159, 8.518517], [47.379495, 8.544417], [47.375614, 8.527797], [47.334639, 8.529964], [47.414423, 8.4805], [47.376168, 8.516698], [47.412921, 8.54629], [47.401715, 8.581153], [47.39408, 8.525035], [47.371881, 8.52592], [47.391273, 8.523229], [47.364291, 8.52182], [47.377486, 8.543793], [47.374753, 8.541723], [47.385117, 8.508125], [47.361537, 8.565293], [47.370088, 8.548909], [47.394857, 8.520799], [47.386096, 8.548342], [47.402544, 8.487131], [47.42263, 8.550574], [47.392705, 8.490898], [47.365258, 8.501027], [47.415646, 8.512952], [47.398164, 8.534524], [47.378759, 8.519571], [47.371494, 8.54768], [47.398015, 8.534163], [47.36922, 8.516121], [47.35839, 8.505444], [47.369434, 8.537297], [47.413714, 8.550773], [47.379885, 8.516482], [47.389438, 8.485111], [47.379487, 8.537742], [47.383945, 8.532404], [47.374677, 8.545933], [47.419134, 8.506356], [47.387493, 8.519523], [47.401277, 8.534456], [47.376655, 8.534744], [47.38709, 8.497052], [47.364336, 8.529553], [47.380993, 8.507578], [47.376528, 8.527233], [47.411126, 8.542039], [47.367209, 8.544321], [47.397952, 8.534122], [47.371862, 8.522133], [47.381406, 8.517347], [47.370769, 8.515013], [47.385278, 8.550113], [47.421257, 8.507366], [47.387961, 8.485387], [47.393788, 8.472586], [47.403885, 8.569103], [47.36767, 8.495051], [47.376178, 8.488254], [47.41236, 8.550373], [47.387966, 8.485811], [47.376758, 8.538097], [47.371456, 8.547852], [47.374823, 8.552226], [47.371716, 8.523388], [47.362198, 8.526398], [47.373077, 8.525931], [47.360966, 8.531072], [47.37869, 8.54203], [47.367325, 8.545316], [47.372816, 8.524006], [47.431364, 8.516464], [47.405176, 8.557524], [47.364347, 8.5501], [47.379481, 8.52977], [47.375939, 8.541946], [47.37278, 8.538293], [47.385193, 8.530708], [47.429636, 8.487227], [47.361466, 8.5258], [47.35761, 8.521618], [47.348896, 8.528019], [47.369027, 8.503009], [47.39036, 8.505316], [47.381158, 8.491531], [47.403539, 8.496358], [47.38959, 8.493115], [47.414181, 8.541533], [47.382147, 8.533215], [47.404731, 8.59452], [47.382387, 8.514347], [47.378624, 8.519529], [47.411882, 8.546706], [47.414639, 8.475429], [47.40505, 8.482543], [47.366744, 8.535494], [47.397923, 8.531472], [47.373897, 8.544778], [47.367016, 8.513216], [47.364814, 8.566778], [47.395757, 8.54543], [47.398987, 8.541589], [47.398718, 8.539702], [47.369909, 8.602663], [47.412944, 8.481955], [47.404671, 8.595062], [47.386775, 8.499959], [47.364577, 8.566204], [47.36058, 8.597468], [47.370667, 8.524942], [47.350178, 8.532307], [47.426312, 8.541877], [47.367136, 8.534893], [47.334935, 8.529983], [47.426297, 8.554641], [47.420521, 8.482568], [47.377003, 8.539757], [47.372011, 8.534953], [47.4106, 8.549992], [47.350952, 8.583269], [47.422914, 8.54345], [47.347114, 8.563783], [47.362332, 8.526427], [47.376647, 8.528957], [47.367853, 8.560514], [47.392459, 8.50304], [47.395384, 8.533672], [47.375987, 8.488436], [47.377031, 8.539678], [47.427089, 8.551754], [47.396675, 8.494526], [47.366763, 8.541995], [47.398876, 8.547575], [47.371335, 8.530331], [47.402418, 8.535579], [47.36891, 8.540424], [47.422993, 8.551192], [47.368924, 8.524708], [47.372572, 8.517486], [47.390168, 8.491934], [47.369292, 8.525761], [47.405271, 8.480918], [47.383667, 8.573376], [47.391229, 8.515427], [47.357287, 8.600177], [47.360277, 8.568986], [47.408673, 8.546507], [47.378732, 8.539554], [47.382953, 8.528914], [47.378057, 8.513836], [47.36115, 8.535378], [47.360286, 8.568999], [47.36034, 8.569001], [47.360242, 8.568879], [47.384609, 8.502711], [47.371379, 8.547506], [47.423335, 8.494551], [47.402707, 8.501761], [47.414492, 8.533323], [47.389163, 8.482722], [47.351093, 8.559738], [47.370609, 8.512799], [47.364313, 8.557315], [47.352614, 8.576276], [47.379528, 8.527639], [47.381952, 8.512763], [47.377008, 8.543915], [47.371878, 8.522358], [47.352027, 8.576435], [47.410461, 8.569905], [47.375615, 8.526777], [47.413577, 8.523538], [47.374429, 8.55672], [47.393604, 8.538219], [47.361739, 8.526362], [47.334368, 8.533822], [47.369184, 8.527666], [47.407662, 8.583785], [47.402143, 8.579705], [47.409188, 8.546279], [47.384161, 8.528581], [47.399405, 8.476126], [47.405591, 8.549941], [47.369305, 8.523418], [47.399055, 8.542094], [47.410841, 8.537979], [47.398032, 8.532309], [47.375203, 8.54458], [47.408209, 8.546166], [47.369399, 8.525803], [47.393766, 8.502735], [47.356282, 8.551521], [47.384972, 8.508201], [47.393385, 8.493296], [47.367825, 8.494749], [47.360477, 8.596963], [47.362533, 8.520394], [47.398259, 8.536858], [47.376847, 8.542852], [47.371486, 8.547535], [47.365099, 8.521121], [47.375381, 8.557865], [47.391644, 8.519117], [47.413111, 8.479308], [47.363627, 8.535085], [47.37776, 8.537707], [47.359954, 8.532547], [47.364006, 8.526315], [47.368984, 8.541127], [47.377606, 8.537862], [47.406088, 8.590071], [47.387574, 8.488386], [47.419819, 8.500379], [47.372766, 8.535022], [47.373486, 8.529276], [47.419202, 8.546898], [47.381171, 8.5422], [47.36868, 8.541862], [47.359024, 8.558237], [47.366775, 8.534157], [47.410155, 8.574576], [47.390283, 8.509699], [47.402126, 8.495456], [47.374509, 8.539957], [47.370242, 8.548833], [47.385415, 8.542434], [47.369453, 8.529684], [47.373328, 8.525036], [47.38958, 8.5224], [47.399865, 8.5448], [47.377638, 8.516331], [47.391319, 8.536384], [47.411445, 8.525469], [47.417187, 8.543172], [47.385012, 8.528956], [47.372031, 8.522361], [47.380817, 8.512011], [47.365912, 8.506204], [47.374318, 8.578248], [47.363756, 8.55169], [47.382409, 8.54167], [47.397923, 8.532479], [47.355773, 8.532276], [47.369043, 8.523505], [47.391513, 8.519618], [47.343874, 8.530259], [47.370024, 8.518666], [47.370323, 8.513561], [47.372941, 8.524141], [47.393688, 8.49558], [47.421065, 8.549614], [47.420313, 8.508288], [47.369453, 8.52587], [47.419212, 8.547733], [47.367833, 8.495875], [47.367216, 8.54448], [47.361108, 8.600379], [47.388363, 8.485646], [47.35944, 8.535462], [47.384463, 8.531845], [47.382222, 8.488373], [47.391184, 8.523095], [47.362067, 8.559836], [47.37854, 8.5752], [47.413338, 8.509632], [47.387023, 8.528467], [47.372612, 8.528543], [47.375616, 8.537133], [47.360298, 8.566908], [47.374533, 8.549743], [47.386488, 8.547754], [47.378934, 8.559688], [47.398362, 8.526951], [47.395872, 8.526701], [47.371399, 8.535947], [47.417627, 8.546097], [47.337061, 8.539118], [47.364553, 8.521746], [47.378628, 8.499691], [47.351552, 8.524883], [47.394844, 8.52313], [47.33922, 8.519101], [47.38136, 8.542178], [47.366703, 8.537929], [47.402181, 8.499286], [47.364384, 8.56661], [47.409241, 8.546373], [47.374272, 8.524115], [47.362516, 8.548659], [47.365886, 8.545313], [47.410487, 8.556165], [47.351881, 8.527286], [47.389246, 8.527387], [47.386463, 8.517171], [47.373654, 8.522871], [47.410893, 8.558823], [47.378766, 8.543501], [47.425075, 8.537636], [47.377554, 8.518567], [47.368097, 8.496542], [47.37437, 8.521376], [47.377517, 8.522499], [47.374477, 8.535825], [47.412378, 8.523871], [47.415179, 8.528275], [47.405631, 8.591784], [47.391729, 8.518616], [47.374329, 8.514238], [47.354858, 8.510946], [47.370755, 8.512656], [47.361254, 8.56297], [47.398184, 8.532458], [47.342762, 8.530792], [47.387089, 8.519489], [47.364618, 8.555508], [47.376459, 8.548671], [47.36263, 8.547099], [47.377652, 8.527283], [47.363061, 8.529235], [47.377383, 8.525304], [47.378414, 8.54364], [47.373416, 8.53481], [47.360453, 8.52247], [47.386309, 8.53538], [47.414113, 8.55045], [47.374196, 8.475622], [47.388549, 8.53638], [47.367742, 8.534614], [47.381456, 8.535902], [47.366909, 8.558561], [47.367396, 8.496489], [47.401983, 8.499282], [47.40752, 8.54382], [47.374485, 8.541612], [47.408252, 8.541609], [47.385274, 8.507638], [47.387245, 8.519094], [47.377331, 8.527872], [47.345271, 8.535608], [47.376893, 8.537119], [47.406684, 8.56153], [47.41455, 8.559258], [47.345116, 8.534916], [47.396188, 8.517011], [47.372624, 8.515726]], [[47.357032, 8.506423], [47.372131, 8.539418], [47.387024, 8.519659], [47.388342, 8.516348], [47.388437, 8.49039], [47.383796, 8.54048], [47.376704, 8.555006], [47.373077, 8.517284], [47.373893, 8.495174], [47.37948, 8.527982], [47.386885, 8.484955], [47.418954, 8.506352], [47.399667, 8.467931], [47.364094, 8.528422], [47.383959, 8.530948], [47.374709, 8.535949], [47.413083, 8.515802], [47.373511, 8.519942], [47.388172, 8.520014], [47.34245, 8.536251], [47.430165, 8.549963], [47.360748, 8.550158], [47.406511, 8.583747], [47.375137, 8.523047], [47.402981, 8.576848], [47.359159, 8.563707], [47.375804, 8.521021], [47.381158, 8.491597], [47.354802, 8.558532], [47.3729, 8.535117], [47.369994, 8.519963], [47.361345, 8.554486], [47.375401, 8.547312], [47.378266, 8.481197], [47.415416, 8.518301], [47.375204, 8.528332], [47.376948, 8.535174], [47.382468, 8.529685], [47.377654, 8.537506], [47.372437, 8.517391], [47.360131, 8.547921], [47.329792, 8.532643], [47.374395, 8.521601], [47.365898, 8.538402], [47.364915, 8.505058], [47.361027, 8.571398], [47.364015, 8.549008], [47.376592, 8.534677], [47.360517, 8.535749], [47.371539, 8.51924], [47.409319, 8.558817], [47.357952, 8.529223], [47.366183, 8.540579], [47.404592, 8.557406], [47.342744, 8.530831], [47.365098, 8.55328], [47.414015, 8.546658], [47.399028, 8.506629], [47.37025, 8.548846], [47.376767, 8.559602], [47.388581, 8.520592], [47.376964, 8.526765], [47.418131, 8.512684], [47.389662, 8.521316], [47.378181, 8.543582], [47.385145, 8.508019], [47.389218, 8.527453], [47.376048, 8.529501], [47.362195, 8.547513], [47.417904, 8.50319], [47.375074, 8.485054], [47.35606, 8.522857], [47.361381, 8.602728], [47.378293, 8.526051], [47.39793, 8.533579], [47.400055, 8.493746], [47.388308, 8.536202], [47.353497, 8.558623], [47.36927, 8.564622], [47.376623, 8.511318], [47.393489, 8.524732], [47.407816, 8.546794], [47.352285, 8.507069], [47.358619, 8.553608], [47.386516, 8.547715], [47.408742, 8.483066], [47.375493, 8.524458], [47.405431, 8.539404], [47.413746, 8.545592], [47.408099, 8.54725], [47.413257, 8.516481], [47.365307, 8.56426], [47.395614, 8.522589], [47.37759, 8.522342], [47.376028, 8.510511], [47.352738, 8.525133], [47.421119, 8.549695], [47.383304, 8.549568], [47.412722, 8.546352], [47.380394, 8.501329], [47.35505, 8.558034], [47.370085, 8.529366], [47.34485, 8.533535], [47.397914, 8.474852], [47.390441, 8.539796], [47.405825, 8.561022], [47.377665, 8.513405], [47.364907, 8.512777], [47.384454, 8.531858], [47.377542, 8.574146], [47.351369, 8.600974], [47.419882, 8.504264], [47.396024, 8.526863], [47.367381, 8.544126], [47.380448, 8.527446], [47.369919, 8.513487], [47.374732, 8.55801], [47.400565, 8.548789], [47.369588, 8.46686], [47.386121, 8.526793], [47.395057, 8.515822], [47.328048, 8.529631], [47.393609, 8.489353], [47.375093, 8.52298], [47.422053, 8.502929], [47.368006, 8.564224], [47.403119, 8.580229], [47.376504, 8.5164], [47.325296, 8.514255], [47.41484, 8.551538], [47.370138, 8.540899], [47.363443, 8.575421], [47.373023, 8.534511], [47.368661, 8.543901], [47.379399, 8.559936], [47.360629, 8.529583], [47.412254, 8.51499], [47.362473, 8.53526], [47.400771, 8.548846], [47.364537, 8.533012], [47.373345, 8.503903], [47.394148, 8.525487], [47.398492, 8.526529], [47.410304, 8.548078], [47.385541, 8.485392], [47.36158, 8.547792], [47.375496, 8.486069], [47.431038, 8.549888], [47.374546, 8.538885], [47.377652, 8.508028], [47.402974, 8.494214], [47.387646, 8.544229], [47.363455, 8.535135], [47.376156, 8.541779], [47.394709, 8.545011], [47.364007, 8.556395], [47.387553, 8.527551], [47.38318, 8.53999], [47.397929, 8.480178], [47.369643, 8.536189], [47.369282, 8.491812], [47.400791, 8.548582], [47.405233, 8.504872], [47.363762, 8.564016], [47.3702, 8.53624], [47.37559, 8.536973], [47.416481, 8.511153], [47.368312, 8.560431], [47.373248, 8.538276], [47.400956, 8.534171], [47.370224, 8.548806], [47.370197, 8.548792], [47.368524, 8.53083], [47.377722, 8.52841], [47.342966, 8.535918], [47.385391, 8.536434], [47.409112, 8.558799], [47.375881, 8.577514], [47.386565, 8.50324], [47.410829, 8.553389], [47.387639, 8.521248], [47.365106, 8.536519], [47.373174, 8.503899], [47.370358, 8.548888], [47.408897, 8.54569], [47.395767, 8.53115], [47.3615, 8.549551], [47.412175, 8.546209], [47.384499, 8.531886], [47.375387, 8.518497], [47.389607, 8.511818], [47.362381, 8.504796], [47.38432, 8.526995], [47.335857, 8.532371], [47.383062, 8.483966], [47.391616, 8.51917], [47.367359, 8.480772], [47.408319, 8.525988], [47.415276, 8.51411], [47.379143, 8.530306], [47.404546, 8.548157], [47.371211, 8.520583], [47.40485, 8.548375], [47.369724, 8.490683], [47.378638, 8.541896], [47.366522, 8.540851], [47.425327, 8.547967], [47.37733, 8.549749], [47.41594, 8.512322], [47.381504, 8.513561], [47.393489, 8.524732], [47.414536, 8.546695], [47.372725, 8.534584], [47.378574, 8.547563], [47.377541, 8.505404], [47.417533, 8.55402], [47.38975, 8.549054], [47.357465, 8.521774], [47.411145, 8.570847], [47.378731, 8.542468], [47.369406, 8.534582], [47.378886, 8.551635], [47.414082, 8.518671], [47.367978, 8.535334], [47.378463, 8.509805], [47.375548, 8.524326], [47.365071, 8.553333], [47.402062, 8.497574], [47.364234, 8.536435], [47.404741, 8.57621], [47.410307, 8.542128], [47.364471, 8.56791], [47.37262, 8.528663], [47.379464, 8.529664], [47.405038, 8.491751], [47.399573, 8.495326], [47.385842, 8.548575], [47.369089, 8.52528], [47.373352, 8.553678], [47.383406, 8.533227], [47.375195, 8.527378], [47.40769, 8.489962], [47.405187, 8.481287], [47.359319, 8.521639], [47.365117, 8.553214], [47.391261, 8.487399], [47.359839, 8.50824], [47.409855, 8.549884], [47.370334, 8.48892], [47.359578, 8.593343], [47.370179, 8.548792], [47.378503, 8.525764], [47.389187, 8.488974], [47.388478, 8.488828], [47.417296, 8.523097], [47.42079, 8.502347], [47.410817, 8.561114], [47.375431, 8.528124], [47.406593, 8.576329], [47.387131, 8.518814], [47.372073, 8.473608], [47.406907, 8.550564], [47.376239, 8.567616], [47.373573, 8.534403], [47.373319, 8.534636], [47.378671, 8.523132], [47.386749, 8.544899], [47.372053, 8.529565], [47.418009, 8.505525], [47.403878, 8.485819], [47.366682, 8.535386], [47.366918, 8.54556], [47.402096, 8.498728], [47.358083, 8.518173], [47.381484, 8.533016], [47.391105, 8.522908], [47.379077, 8.51052], [47.395387, 8.527658], [47.364388, 8.555172], [47.390141, 8.51049], [47.395842, 8.519441], [47.378501, 8.540212], [47.389593, 8.541951], [47.363239, 8.535157], [47.392238, 8.523819], [47.427529, 8.546303], [47.37091, 8.518181], [47.381119, 8.536319], [47.370508, 8.515975], [47.365185, 8.549853], [47.367353, 8.522425], [47.38341, 8.539492], [47.397383, 8.486831], [47.398774, 8.54226], [47.404206, 8.573933], [47.384871, 8.531496], [47.375666, 8.516529], [47.37348, 8.519398], [47.421821, 8.502712], [47.391944, 8.517852], [47.410835, 8.542378], [47.387174, 8.519027], [47.377113, 8.527179], [47.409807, 8.549286], [47.369605, 8.525874], [47.374395, 8.521641], [47.363947, 8.551442], [47.382852, 8.530051], [47.361522, 8.526516], [47.360568, 8.528496], [47.417928, 8.503535], [47.387616, 8.486625], [47.368636, 8.547369], [47.363975, 8.531558], [47.429458, 8.544858], [47.377362, 8.538837], [47.359834, 8.521359], [47.385088, 8.532308], [47.368549, 8.55081], [47.373698, 8.528738], [47.371469, 8.534227], [47.398103, 8.541849], [47.420585, 8.507061], [47.364101, 8.54758], [47.372665, 8.529551], [47.40689, 8.550431], [47.362126, 8.559268], [47.399062, 8.521387], [47.371389, 8.522706], [47.377637, 8.538313], [47.366903, 8.518576], [47.349189, 8.57787], [47.401729, 8.545501], [47.386343, 8.518493], [47.373113, 8.551435], [47.354623, 8.601244], [47.364596, 8.537144], [47.357159, 8.521781], [47.373779, 8.536327], [47.386593, 8.518604], [47.354514, 8.53417], [47.408741, 8.539379], [47.414461, 8.554499], [47.361363, 8.576621], [47.368872, 8.501218], [47.367865, 8.520555], [47.33252, 8.517973], [47.373798, 8.544723], [47.386782, 8.490397], [47.429977, 8.549853], [47.342008, 8.530618], [47.374821, 8.544015], [47.370743, 8.53878], [47.382227, 8.514198], [47.378101, 8.530205], [47.366105, 8.546867], [47.391646, 8.538881], [47.373339, 8.520044], [47.362465, 8.504506], [47.370063, 8.541163], [47.379792, 8.520625], [47.389878, 8.49214], [47.376881, 8.528882], [47.41709, 8.523039], [47.394276, 8.490266], [47.369071, 8.525307], [47.377769, 8.53768], [47.369852, 8.516796], [47.372566, 8.550272], [47.376166, 8.544507], [47.348403, 8.570931], [47.375307, 8.518362], [47.38151, 8.483539], [47.388926, 8.488982], [47.379464, 8.525929], [47.335332, 8.528906], [47.425815, 8.493938], [47.409598, 8.558796], [47.400983, 8.542624], [47.372847, 8.539737], [47.374015, 8.528479], [47.385143, 8.495464], [47.373971, 8.529339], [47.394389, 8.488666], [47.405831, 8.590609], [47.403199, 8.486296], [47.37442, 8.544643], [47.37029, 8.514236], [47.377078, 8.538434], [47.399303, 8.542417], [47.372149, 8.520324], [47.359919, 8.521916], [47.377317, 8.529355], [47.386444, 8.541065], [47.39873, 8.506755], [47.357215, 8.558265], [47.422272, 8.539102], [47.372422, 8.523812], [47.374779, 8.539976], [47.377337, 8.519609], [47.394287, 8.494916], [47.32803, 8.529657], [47.35931, 8.509116], [47.366909, 8.562295], [47.397332, 8.531195], [47.388752, 8.548026], [47.376946, 8.526765], [47.429949, 8.538718], [47.412096, 8.550659], [47.369161, 8.528221], [47.410908, 8.543267], [47.416947, 8.514303], [47.394223, 8.490146], [47.369878, 8.540762], [47.358711, 8.517417], [47.349164, 8.562927], [47.372908, 8.533316], [47.416647, 8.544141], [47.373016, 8.518012], [47.379954, 8.552849], [47.411828, 8.524973], [47.361853, 8.553053], [47.36966, 8.508437], [47.3736, 8.534403], [47.38794, 8.486658], [47.410928, 8.564442], [47.372034, 8.536384], [47.370288, 8.478075], [47.362274, 8.557894], [47.378144, 8.527571], [47.393169, 8.494245], [47.417877, 8.548156], [47.36833, 8.541776], [47.378265, 8.526196], [47.365933, 8.536589], [47.369547, 8.520576], [47.363514, 8.558993], [47.403859, 8.571766], [47.336141, 8.5337], [47.385164, 8.529012], [47.378778, 8.53941], [47.379035, 8.538912], [47.414233, 8.551035], [47.377403, 8.512552], [47.356867, 8.527004], [47.335088, 8.52996], [47.385656, 8.535962], [47.429232, 8.510641], [47.33598, 8.528854], [47.397923, 8.532439], [47.388059, 8.524383], [47.381523, 8.513482], [47.41874, 8.547273], [47.36508, 8.553333], [47.37746, 8.522789], [47.373406, 8.524402], [47.366648, 8.534247], [47.363473, 8.535135], [47.349982, 8.561157], [47.417567, 8.509479], [47.383711, 8.539048], [47.388992, 8.486745], [47.367354, 8.541292], [47.375541, 8.528828], [47.407854, 8.548411], [47.383052, 8.530744], [47.408986, 8.543876], [47.38266, 8.540774], [47.373029, 8.532895], [47.372748, 8.531247], [47.390352, 8.528284], [47.375701, 8.52907], [47.382318, 8.528464], [47.403198, 8.588538], [47.374236, 8.52418], [47.371471, 8.502276], [47.382556, 8.500961], [47.373925, 8.536145], [47.368868, 8.524918], [47.412218, 8.550158], [47.40064, 8.477846], [47.373278, 8.494606], [47.374062, 8.530255], [47.403625, 8.48588], [47.408015, 8.582679], [47.384241, 8.493843], [47.377721, 8.538063], [47.353616, 8.51198], [47.378265, 8.574731], [47.377013, 8.544326], [47.37069, 8.51664], [47.369334, 8.505822], [47.389478, 8.486662], [47.352416, 8.602453], [47.3893, 8.527295], [47.361263, 8.547997], [47.386417, 8.526839], [47.403961, 8.572337], [47.392226, 8.524163], [47.344281, 8.529976], [47.385839, 8.52998], [47.370005, 8.556613], [47.383336, 8.53308], [47.369769, 8.525665], [47.429368, 8.544869], [47.37041, 8.602091], [47.376685, 8.56891], [47.369241, 8.534883], [47.370161, 8.548791], [47.36442, 8.53677], [47.407153, 8.551152], [47.39213, 8.523896], [47.370952, 8.523306], [47.376567, 8.518256], [47.361094, 8.549688], [47.394147, 8.5275], [47.390184, 8.491179], [47.412375, 8.524163], [47.408625, 8.580069], [47.332121, 8.52986], [47.340739, 8.528871], [47.373238, 8.535495], [47.371599, 8.522405], [47.375621, 8.524182], [47.405291, 8.585231], [47.415647, 8.507996], [47.389667, 8.512097], [47.364361, 8.529672], [47.390318, 8.52521], [47.372247, 8.520459], [47.363802, 8.547746], [47.410441, 8.546], [47.378318, 8.509882], [47.388387, 8.536376], [47.379498, 8.527996], [47.378032, 8.526085], [47.369495, 8.536583], [47.383746, 8.512348], [47.378743, 8.527901], [47.369347, 8.534197], [47.361737, 8.547385], [47.378564, 8.542067], [47.421177, 8.546383], [47.376842, 8.528259], [47.369776, 8.515364], [47.364425, 8.546567], [47.374657, 8.494223], [47.392197, 8.517698], [47.340009, 8.529955], [47.420823, 8.501725], [47.361918, 8.576911], [47.406743, 8.481291], [47.352685, 8.524959], [47.38232, 8.549084], [47.387344, 8.52201], [47.371971, 8.493852], [47.39424, 8.490186], [47.373233, 8.535124], [47.40402, 8.571848], [47.386717, 8.541706], [47.398004, 8.532468], [47.386549, 8.520431], [47.395785, 8.526461], [47.3536, 8.554456], [47.412224, 8.55424], [47.413357, 8.53925], [47.381237, 8.582568], [47.401995, 8.497957], [47.414237, 8.518423], [47.379213, 8.543842], [47.40897, 8.546526], [47.3823, 8.509234], [47.370418, 8.509233], [47.370243, 8.526006], [47.378031, 8.528098], [47.3348, 8.529994], [47.393417, 8.524717], [47.410571, 8.550243], [47.418209, 8.542584], [47.371782, 8.488009], [47.397358, 8.531275], [47.376417, 8.525628], [47.383329, 8.484316], [47.378866, 8.546245], [47.413632, 8.562114], [47.387283, 8.545506], [47.379572, 8.507537], [47.383503, 8.530594], [47.350075, 8.560815], [47.370469, 8.545752], [47.399778, 8.544494], [47.391051, 8.484785], [47.375924, 8.487508], [47.367603, 8.55659], [47.378014, 8.483192], [47.370508, 8.524581], [47.387366, 8.518726], [47.360619, 8.535407], [47.395773, 8.534396], [47.375811, 8.518346], [47.36997, 8.543398], [47.402578, 8.582112], [47.356601, 8.523663], [47.367575, 8.523727], [47.413765, 8.540782], [47.377339, 8.539459], [47.373284, 8.552392], [47.378605, 8.505134], [47.368051, 8.564172], [47.391956, 8.545086], [47.377703, 8.528555], [47.389217, 8.515108], [47.398373, 8.541841], [47.393385, 8.537632], [47.362429, 8.547465], [47.424299, 8.511019], [47.413803, 8.514796], [47.393675, 8.528882], [47.411203, 8.546241], [47.389254, 8.5274], [47.390107, 8.539008], [47.38038, 8.534609], [47.377743, 8.511791], [47.393741, 8.510324], [47.399637, 8.520419], [47.370129, 8.56423], [47.368483, 8.546492], [47.401971, 8.486762], [47.374714, 8.545801], [47.410372, 8.541931], [47.383416, 8.529387], [47.374413, 8.521642], [47.399186, 8.521523], [47.398004, 8.532481], [47.402409, 8.535565], [47.383237, 8.506153], [47.410321, 8.544461], [47.413843, 8.547661], [47.396462, 8.543272], [47.372431, 8.523813], [47.348998, 8.575285], [47.394267, 8.49024], [47.386243, 8.518518], [47.378661, 8.569217], [47.388246, 8.519817], [47.375665, 8.496203], [47.378626, 8.509703], [47.366048, 8.520598], [47.37777, 8.507911], [47.403499, 8.485931], [47.373226, 8.529165], [47.370103, 8.561276], [47.360101, 8.594956], [47.369847, 8.508692], [47.379506, 8.526181], [47.425732, 8.542289], [47.369005, 8.538003], [47.370959, 8.537778], [47.337533, 8.530169], [47.368275, 8.540954], [47.428667, 8.488918], [47.409021, 8.547693], [47.414143, 8.551113], [47.384507, 8.531992], [47.363341, 8.554554], [47.366143, 8.521063], [47.362795, 8.514455], [47.402686, 8.535717], [47.402632, 8.535729], [47.39554, 8.484754], [47.370352, 8.51433], [47.371456, 8.547865], [47.374633, 8.545839], [47.372677, 8.574042], [47.360687, 8.524447], [47.350333, 8.567597], [47.375804, 8.55222], [47.406729, 8.569799], [47.376852, 8.513759], [47.385562, 8.528769], [47.388874, 8.479829], [47.405678, 8.591533], [47.387868, 8.514127], [47.375085, 8.547451], [47.371786, 8.556571], [47.429499, 8.510925], [47.409046, 8.578488], [47.389686, 8.511991], [47.376925, 8.541358], [47.370466, 8.517549], [47.39974, 8.543777], [47.372247, 8.511759], [47.426015, 8.536184], [47.3912, 8.489226], [47.376602, 8.54878], [47.380648, 8.515703], [47.394137, 8.524692], [47.368316, 8.546992], [47.390401, 8.523092], [47.373671, 8.52879], [47.38573, 8.525262], [47.368761, 8.528663], [47.359616, 8.549062], [47.360524, 8.563087], [47.336325, 8.514186], [47.392639, 8.488221], [47.371531, 8.542928], [47.39133, 8.536238], [47.383726, 8.573761], [47.353927, 8.561558], [47.414009, 8.525481], [47.409335, 8.544122], [47.38322, 8.506007], [47.417081, 8.523026], [47.360106, 8.595353], [47.401738, 8.500469], [47.396594, 8.486563], [47.36647, 8.545365], [47.363868, 8.566931], [47.430401, 8.511646], [47.340392, 8.52942], [47.376944, 8.497949], [47.425835, 8.49362], [47.373951, 8.502538], [47.363324, 8.533782], [47.374714, 8.514365], [47.403447, 8.58437], [47.398294, 8.536991], [47.39394, 8.526556], [47.38324, 8.531794], [47.358132, 8.532073], [47.361253, 8.562983], [47.372792, 8.520801], [47.396208, 8.527383], [47.371999, 8.522003], [47.350121, 8.577308], [47.367682, 8.539061], [47.409482, 8.538136], [47.38216, 8.540433], [47.35521, 8.55449], [47.377675, 8.521973], [47.364266, 8.531206], [47.400166, 8.546237], [47.378593, 8.521925], [47.397237, 8.491054], [47.370289, 8.514395], [47.384412, 8.496787], [47.383004, 8.513843], [47.421026, 8.5021], [47.396797, 8.529793], [47.369793, 8.524116], [47.410579, 8.569828], [47.366538, 8.54767], [47.383155, 8.530295], [47.355846, 8.532159], [47.367174, 8.546968], [47.385472, 8.536462], [47.343361, 8.523578], [47.343692, 8.535231], [47.377003, 8.53977], [47.359879, 8.580164], [47.374822, 8.531648], [47.364552, 8.521865], [47.376334, 8.521019], [47.405705, 8.591507], [47.410486, 8.542185], [47.378054, 8.543698], [47.360524, 8.5631], [47.367927, 8.519736], [47.374828, 8.562912], [47.3909, 8.521751], [47.427032, 8.546544], [47.390854, 8.538904], [47.390006, 8.522051], [47.378057, 8.510896], [47.376299, 8.53524], [47.359706, 8.55093], [47.386481, 8.503556], [47.388035, 8.493971], [47.376649, 8.497705], [47.369188, 8.54799], [47.40535, 8.572857], [47.364335, 8.567947], [47.365843, 8.50787], [47.38394, 8.527199], [47.371423, 8.517225], [47.384518, 8.502868], [47.384534, 8.509835], [47.365899, 8.54677], [47.376699, 8.543366], [47.364807, 8.524399], [47.3806, 8.514073], [47.359468, 8.535423], [47.371033, 8.523241], [47.388163, 8.52004], [47.387779, 8.517873], [47.36285, 8.516257], [47.38848, 8.531292], [47.403636, 8.548363], [47.360511, 8.597123], [47.424584, 8.53532], [47.417928, 8.503535], [47.405896, 8.573107], [47.388591, 8.534791], [47.385156, 8.500907], [47.373802, 8.489412], [47.386001, 8.498116], [47.37077, 8.536887], [47.346327, 8.564296], [47.384966, 8.508877], [47.416683, 8.514642], [47.348288, 8.562432], [47.405945, 8.561647], [47.379269, 8.527488], [47.370748, 8.508472], [47.398519, 8.591458], [47.378897, 8.526911], [47.378275, 8.526077], [47.387926, 8.485214], [47.405275, 8.570444], [47.390491, 8.527916], [47.374067, 8.544781], [47.367817, 8.5605], [47.415181, 8.514639], [47.42576, 8.547817], [47.368042, 8.55399], [47.378855, 8.542682], [47.392487, 8.491105], [47.405098, 8.564597], [47.364542, 8.555043], [47.379586, 8.525362], [47.390991, 8.523542], [47.390391, 8.533676], [47.406338, 8.573011], [47.387575, 8.537591], [47.423084, 8.498403], [47.372381, 8.535755], [47.370147, 8.5409], [47.419817, 8.504501], [47.374272, 8.524115], [47.361894, 8.569219], [47.40208, 8.579743], [47.370547, 8.517551], [47.349446, 8.527911], [47.370994, 8.548226], [47.388238, 8.55191], [47.395216, 8.53241], [47.37467, 8.549521], [47.39103, 8.505846], [47.353412, 8.528958], [47.340415, 8.537387], [47.408645, 8.537151], [47.38328, 8.539926], [47.36853, 8.533994], [47.401292, 8.545187], [47.385859, 8.532589], [47.39998, 8.545929], [47.371428, 8.546077], [47.383577, 8.5734], [47.404646, 8.55742], [47.328508, 8.529548], [47.393529, 8.512744], [47.389079, 8.538298], [47.383595, 8.529457], [47.363342, 8.567409], [47.384528, 8.542959], [47.370326, 8.509417], [47.37067, 8.536951], [47.376995, 8.544299], [47.373211, 8.52024], [47.378174, 8.509892], [47.377063, 8.541903], [47.382156, 8.529467], [47.428076, 8.545532], [47.377026, 8.548577], [47.365072, 8.502652], [47.387233, 8.48822], [47.383536, 8.587465], [47.364286, 8.546127], [47.372937, 8.536018], [47.406206, 8.570888], [47.40916, 8.572302], [47.383223, 8.54023], [47.375215, 8.51852], [47.400338, 8.533907], [47.377155, 8.523684], [47.360004, 8.535779], [47.371953, 8.601595], [47.370335, 8.509377], [47.370161, 8.548791], [47.41571, 8.51286], [47.391932, 8.518103], [47.378445, 8.541376], [47.410274, 8.548422], [47.412179, 8.554226], [47.390932, 8.522097], [47.405213, 8.557432], [47.367102, 8.544133], [47.364413, 8.600954], [47.401456, 8.581889], [47.361466, 8.503546], [47.416794, 8.556019], [47.379931, 8.558], [47.385682, 8.536095], [47.406916, 8.550538], [47.426332, 8.554694], [47.369818, 8.533875], [47.366451, 8.537924], [47.37773, 8.537997], [47.372974, 8.533066], [47.387742, 8.486707], [47.366663, 8.549592], [47.368908, 8.530242], [47.382299, 8.530437], [47.376207, 8.525916], [47.36684, 8.543307], [47.366192, 8.540566], [47.371823, 8.533969], [47.356549, 8.519598], [47.412157, 8.546235], [47.362403, 8.547372], [47.383412, 8.574615], [47.37706, 8.510731], [47.37301, 8.504134], [47.390056, 8.509985], [47.358355, 8.586022], [47.429936, 8.486862], [47.422247, 8.538969], [47.422256, 8.538956], [47.364539, 8.546887], [47.373714, 8.545012], [47.368762, 8.543638], [47.378324, 8.530382], [47.354499, 8.523434], [47.403817, 8.503267], [47.365989, 8.533532], [47.370705, 8.535204], [47.378014, 8.536507], [47.383896, 8.540403], [47.402453, 8.553505], [47.374096, 8.553005], [47.386957, 8.498744], [47.372647, 8.52093], [47.381371, 8.571738], [47.379399, 8.542203], [47.377739, 8.531429], [47.376751, 8.536878], [47.4091, 8.545124], [47.419462, 8.507913], [47.414449, 8.545474], [47.360242, 8.552225], [47.380438, 8.542728], [47.364717, 8.566657], [47.385528, 8.530476], [47.384999, 8.53224], [47.421861, 8.545456], [47.374482, 8.495702], [47.366936, 8.53616], [47.366408, 8.540558], [47.363319, 8.564205], [47.396468, 8.520765], [47.390728, 8.523695], [47.379242, 8.537923], [47.377957, 8.548146], [47.369507, 8.505614], [47.384808, 8.509377], [47.368346, 8.497858], [47.38624, 8.504306], [47.370553, 8.549184], [47.335938, 8.526683], [47.400456, 8.54884], [47.349579, 8.564709], [47.404628, 8.594889], [47.376918, 8.538285], [47.382148, 8.541638], [47.395637, 8.491949], [47.390396, 8.539808], [47.40939, 8.543037], [47.410891, 8.562785], [47.378456, 8.51444], [47.373751, 8.493], [47.37386, 8.517208], [47.370714, 8.538899], [47.372381, 8.554571], [47.378459, 8.510269], [47.402142, 8.535282], [47.39096, 8.526813], [47.358972, 8.516417], [47.373817, 8.527615], [47.399714, 8.497594], [47.397145, 8.530979], [47.408933, 8.545677], [47.36729, 8.544283], [47.409205, 8.5473], [47.378577, 8.540743], [47.363896, 8.592377], [47.369716, 8.490669], [47.378018, 8.526575], [47.365964, 8.532326], [47.419844, 8.507417], [47.37924, 8.495691], [47.387351, 8.52707], [47.364061, 8.592089], [47.387476, 8.51943], [47.387141, 8.486457], [47.424766, 8.548339], [47.360044, 8.526751], [47.429114, 8.489139], [47.377105, 8.539388], [47.380954, 8.526171], [47.398926, 8.506004], [47.341756, 8.530732], [47.368858, 8.523118], [47.370398, 8.514264], [47.378202, 8.541384], [47.357173, 8.595409], [47.392157, 8.476873], [47.379214, 8.528586], [47.378319, 8.509789], [47.38497, 8.548451], [47.377596, 8.508225], [47.411019, 8.544846], [47.378749, 8.542481], [47.39049, 8.479158], [47.384877, 8.495127], [47.370636, 8.470455], [47.37427, 8.5234], [47.358972, 8.506766], [47.367327, 8.545118], [47.343216, 8.530365], [47.373354, 8.49417], [47.398354, 8.53731], [47.375892, 8.538317], [47.367004, 8.536492], [47.403901, 8.548859], [47.367651, 8.49517], [47.397356, 8.531527], [47.393417, 8.524717], [47.403559, 8.571097], [47.344251, 8.527474], [47.369686, 8.508583], [47.374099, 8.561122], [47.405919, 8.566218], [47.364287, 8.536529], [47.367919, 8.55371], [47.395751, 8.507861], [47.377278, 8.522984], [47.394169, 8.52509], [47.37212, 8.518589], [47.386881, 8.5022], [47.37026, 8.531766], [47.377603, 8.525772], [47.387213, 8.488432], [47.377936, 8.532426], [47.393361, 8.547712], [47.412664, 8.514482], [47.378837, 8.518858], [47.373787, 8.538393], [47.375937, 8.521169], [47.386736, 8.490528], [47.373911, 8.519447], [47.344633, 8.529891], [47.37614, 8.538706], [47.389507, 8.487417], [47.363626, 8.535098], [47.364482, 8.536917], [47.357993, 8.505635], [47.338881, 8.527404], [47.372527, 8.517472], [47.388148, 8.540636], [47.370713, 8.535218], [47.370549, 8.535439], [47.369002, 8.532574], [47.421699, 8.550118], [47.347104, 8.5283], [47.382557, 8.529793], [47.408682, 8.579792], [47.374624, 8.532623], [47.373761, 8.53634], [47.353469, 8.576175], [47.374435, 8.540167], [47.391819, 8.574053], [47.386666, 8.546062], [47.378855, 8.542709], [47.384332, 8.548385], [47.362231, 8.547435], [47.36877, 8.540898], [47.41484, 8.545018], [47.389833, 8.51165], [47.381183, 8.543763], [47.376978, 8.498135], [47.406243, 8.55597], [47.378412, 8.520081], [47.372053, 8.537232], [47.369635, 8.539817], [47.388878, 8.51575], [47.392091, 8.511642], [47.392832, 8.522917], [47.369285, 8.491482], [47.37818, 8.541728], [47.412081, 8.546644], [47.417609, 8.546096], [47.40278, 8.576234], [47.409805, 8.540992], [47.405668, 8.588035], [47.378378, 8.525616], [47.382068, 8.544325], [47.369796, 8.541859], [47.344059, 8.52878], [47.364596, 8.566165], [47.344744, 8.533321], [47.408925, 8.579757], [47.370283, 8.602194], [47.365895, 8.532047], [47.393312, 8.473491], [47.393815, 8.493397], [47.364023, 8.531241], [47.364749, 8.525775], [47.392081, 8.512728], [47.422874, 8.49877], [47.378801, 8.542668], [47.381197, 8.534811], [47.373241, 8.484833], [47.406481, 8.549999], [47.3916, 8.480796], [47.404533, 8.571806], [47.403096, 8.575274], [47.366924, 8.514459], [47.379623, 8.537586], [47.398285, 8.536978], [47.372149, 8.520324], [47.367761, 8.545776], [47.401981, 8.538895], [47.3846, 8.531649], [47.3966, 8.545726], [47.410619, 8.549953], [47.381775, 8.516388], [47.366156, 8.526293], [47.366914, 8.54413], [47.376184, 8.528458], [47.36231, 8.567189], [47.390734, 8.489057], [47.365575, 8.561671], [47.403538, 8.548242], [47.382422, 8.500919], [47.407194, 8.549722], [47.377318, 8.526481], [47.37495, 8.545594], [47.36771, 8.509245], [47.369915, 8.511077], [47.350357, 8.578014], [47.413065, 8.545326], [47.35493, 8.510961], [47.387236, 8.519094], [47.410152, 8.566626], [47.373359, 8.537033], [47.426861, 8.542697], [47.382262, 8.531522], [47.360467, 8.550337], [47.342321, 8.509781], [47.383298, 8.530418], [47.396843, 8.529675], [47.345158, 8.531423], [47.36035, 8.552201], [47.384417, 8.53195], [47.421311, 8.50738], [47.329541, 8.514327], [47.374156, 8.519266], [47.391123, 8.522842], [47.379094, 8.525074], [47.371054, 8.523877], [47.37371, 8.537014], [47.430654, 8.550583], [47.365506, 8.51218], [47.427013, 8.491775], [47.384403, 8.548466], [47.431336, 8.516476], [47.36465, 8.566073], [47.414264, 8.554389], [47.377767, 8.528424], [47.335554, 8.516751], [47.329934, 8.512694], [47.362144, 8.549988], [47.334018, 8.529925], [47.384417, 8.574849], [47.393415, 8.4998], [47.382683, 8.530789], [47.352951, 8.558334], [47.387612, 8.521261], [47.366673, 8.54198], [47.375012, 8.545675], [47.391603, 8.492399], [47.405866, 8.590729], [47.390301, 8.487168], [47.385956, 8.535651], [47.38545, 8.533071], [47.388821, 8.522742], [47.427486, 8.543227], [47.37853, 8.545576], [47.370823, 8.55573], [47.370922, 8.531263], [47.40921, 8.544954], [47.369896, 8.55673], [47.370315, 8.517308], [47.410486, 8.545948], [47.37323, 8.520187], [47.408395, 8.537001], [47.42392, 8.504411], [47.369239, 8.525588], [47.374862, 8.518804], [47.357231, 8.524628], [47.369926, 8.551713], [47.384845, 8.534211], [47.356089, 8.532177], [47.401722, 8.500297], [47.387126, 8.546006], [47.356367, 8.555732], [47.385839, 8.529993], [47.421058, 8.549481], [47.393458, 8.545064], [47.419166, 8.507841], [47.372926, 8.53623], [47.366346, 8.522431], [47.36242, 8.5333], [47.373041, 8.534471], [47.36707, 8.545669], [47.380258, 8.527548], [47.387135, 8.519331], [47.397034, 8.530355], [47.367435, 8.494146], [47.377189, 8.540039], [47.383262, 8.51022], [47.384524, 8.530098], [47.36257, 8.548713], [47.383252, 8.515159], [47.383266, 8.555435], [47.345143, 8.534904], [47.360316, 8.523712], [47.377122, 8.529139], [47.373348, 8.531485], [47.384935, 8.511286], [47.358265, 8.586033], [47.382351, 8.514386], [47.39777, 8.474849], [47.376588, 8.544555], [47.328692, 8.517591], [47.376907, 8.540377], [47.40722, 8.550717], [47.364865, 8.5085], [47.351268, 8.532171], [47.385192, 8.500895], [47.360005, 8.580206], [47.410948, 8.550384], [47.377368, 8.500712], [47.427285, 8.546417], [47.365123, 8.537605], [47.370286, 8.548847], [47.371906, 8.601766], [47.405917, 8.481102], [47.388871, 8.515472], [47.422529, 8.550771], [47.407267, 8.585565], [47.365628, 8.551557], [47.353073, 8.518137], [47.337483, 8.528845], [47.412675, 8.546643], [47.373056, 8.504043], [47.387809, 8.527119], [47.40347, 8.516522], [47.372676, 8.529392], [47.3787, 8.541977], [47.378352, 8.53029], [47.364484, 8.555452], [47.379544, 8.537439], [47.393417, 8.524717], [47.398309, 8.532514], [47.402157, 8.488143], [47.418291, 8.5435], [47.364993, 8.553066], [47.407102, 8.582183], [47.379682, 8.524689], [47.420123, 8.547567], [47.372027, 8.54932], [47.365256, 8.555614], [47.414252, 8.527315], [47.386216, 8.518531], [47.418845, 8.507463], [47.369926, 8.529098], [47.400431, 8.543924], [47.356625, 8.572681], [47.384453, 8.531925], [47.365286, 8.564551], [47.37759, 8.522368], [47.388357, 8.480322], [47.398341, 8.537668], [47.388731, 8.525641], [47.374486, 8.540486], [47.379989, 8.512087], [47.374314, 8.537781], [47.364577, 8.566217], [47.402578, 8.495187], [47.358046, 8.523109], [47.403249, 8.587082], [47.363635, 8.535138], [47.373911, 8.52616], [47.410439, 8.572197], [47.374076, 8.524879], [47.409973, 8.563693], [47.376753, 8.543274], [47.410424, 8.542117], [47.377052, 8.544009], [47.365126, 8.553241], [47.370316, 8.529728], [47.408782, 8.544548], [47.376381, 8.494614], [47.384027, 8.532287], [47.364619, 8.554501], [47.386123, 8.548316], [47.410567, 8.486109], [47.413732, 8.546069], [47.357936, 8.572021], [47.363423, 8.53377], [47.416753, 8.573166], [47.403989, 8.563912], [47.41753, 8.52505], [47.381379, 8.528815], [47.390053, 8.525721], [47.373752, 8.538233], [47.369005, 8.537976], [47.381237, 8.54101], [47.396983, 8.480331], [47.413917, 8.542813], [47.358787, 8.590585], [47.389393, 8.52992], [47.367682, 8.541789], [47.353978, 8.575669], [47.404065, 8.563529], [47.391885, 8.538409], [47.37865, 8.542492], [47.412188, 8.550476], [47.409025, 8.546382], [47.426306, 8.554641], [47.390773, 8.537048], [47.388936, 8.519115], [47.3674, 8.494092], [47.369249, 8.541675], [47.381609, 8.510028], [47.377602, 8.498757], [47.37763, 8.498665], [47.359547, 8.535557], [47.422513, 8.540261], [47.360108, 8.52286], [47.387844, 8.490325], [47.373636, 8.542839], [47.371058, 8.548148], [47.364955, 8.54765], [47.414067, 8.514417], [47.414319, 8.551474], [47.369727, 8.509034], [47.421678, 8.550462], [47.381407, 8.54198], [47.385188, 8.494537], [47.411601, 8.526161], [47.351165, 8.563445], [47.397904, 8.532532], [47.369089, 8.52532], [47.393951, 8.49328], [47.417917, 8.483073], [47.383628, 8.574593], [47.421077, 8.548448], [47.404515, 8.571806], [47.378776, 8.542455], [47.382826, 8.530885], [47.358397, 8.534541], [47.398581, 8.500446], [47.373212, 8.535468], [47.395376, 8.525883], [47.393999, 8.542122], [47.369668, 8.533515], [47.405879, 8.537691], [47.383778, 8.54048], [47.391838, 8.484297], [47.392677, 8.523139], [47.36768, 8.539194], [47.380202, 8.542948], [47.369443, 8.505626], [47.370165, 8.529473], [47.384476, 8.528534], [47.388988, 8.515474], [47.366756, 8.535216], [47.371705, 8.524566], [47.367338, 8.537359], [47.382414, 8.514414], [47.424971, 8.553128], [47.36669, 8.549646], [47.37777, 8.507911], [47.35123, 8.568794], [47.403907, 8.558451], [47.405254, 8.490788], [47.410575, 8.552602], [47.396367, 8.479882], [47.358262, 8.585424], [47.364446, 8.536929], [47.405825, 8.591218], [47.36523, 8.532047], [47.384674, 8.492713], [47.402091, 8.499231], [47.414458, 8.556619], [47.388624, 8.484658], [47.398891, 8.59022], [47.371877, 8.520584], [47.337187, 8.519139], [47.427993, 8.545702], [47.374449, 8.541598], [47.374919, 8.541356], [47.388772, 8.514569], [47.361609, 8.561534], [47.405389, 8.480814], [47.394181, 8.518083], [47.379255, 8.546041], [47.378531, 8.5752], [47.390455, 8.479144], [47.401823, 8.581208], [47.377033, 8.529044], [47.396686, 8.493295], [47.394756, 8.529698], [47.372829, 8.531289], [47.376292, 8.552905], [47.372844, 8.504647], [47.38388, 8.487055], [47.372461, 8.529242], [47.382862, 8.530885], [47.375364, 8.544596], [47.413762, 8.545831], [47.361951, 8.560575], [47.383191, 8.530349], [47.370197, 8.548792], [47.420861, 8.549318], [47.411145, 8.57086], [47.376047, 8.5277], [47.41494, 8.540157], [47.37819, 8.543582], [47.389423, 8.5209], [47.409196, 8.546359], [47.378655, 8.575375], [47.376303, 8.539584], [47.357913, 8.520022], [47.415108, 8.547118], [47.378647, 8.521887], [47.355839, 8.554529], [47.371937, 8.53519], [47.372432, 8.523773], [47.372835, 8.517213], [47.375009, 8.526103], [47.374686, 8.54776], [47.392477, 8.506908], [47.377304, 8.498963], [47.378565, 8.516177], [47.394164, 8.488661], [47.372615, 8.529139], [47.40959, 8.543717], [47.391359, 8.536901], [47.381588, 8.537176], [47.372856, 8.535964], [47.41038, 8.542024], [47.40638, 8.552037], [47.393507, 8.500517], [47.407771, 8.54772], [47.421564, 8.550155], [47.376517, 8.524584], [47.408607, 8.580135], [47.359711, 8.547634], [47.36844, 8.524513], [47.386797, 8.547482], [47.390661, 8.532741], [47.378832, 8.530948], [47.374022, 8.535365], [47.3995, 8.505181], [47.392182, 8.474078], [47.367137, 8.544253], [47.38807, 8.47119], [47.381977, 8.529291], [47.372755, 8.550289], [47.381588, 8.537163], [47.366214, 8.54863], [47.368574, 8.524608], [47.36694, 8.545163], [47.378566, 8.539988], [47.390975, 8.488201], [47.355874, 8.551883], [47.376633, 8.538968], [47.372043, 8.547652], [47.380785, 8.50478], [47.379065, 8.506944], [47.397413, 8.546273], [47.420785, 8.512698], [47.405901, 8.497704], [47.391059, 8.523013], [47.379547, 8.542696], [47.360904, 8.530978], [47.394689, 8.491295], [47.388293, 8.497314], [47.366633, 8.548082], [47.387578, 8.534452], [47.390889, 8.521923], [47.378849, 8.544258], [47.40649, 8.548104], [47.364685, 8.554185], [47.387324, 8.52801], [47.377921, 8.487494], [47.413885, 8.545171], [47.372325, 8.513059], [47.368778, 8.492915], [47.406838, 8.53612], [47.375247, 8.553069], [47.380494, 8.54808], [47.381583, 8.481395], [47.399406, 8.521077], [47.42154, 8.50105], [47.365921, 8.539766], [47.374577, 8.502021], [47.398228, 8.504665], [47.374714, 8.537353], [47.353067, 8.524557], [47.367364, 8.494012], [47.402058, 8.498952], [47.360777, 8.510893], [47.352572, 8.559345], [47.402158, 8.495934], [47.355992, 8.535762], [47.405989, 8.590149], [47.354403, 8.525921], [47.369155, 8.527864], [47.414917, 8.541627], [47.386913, 8.500611], [47.421353, 8.549686], [47.377322, 8.522177], [47.364164, 8.521936], [47.358267, 8.584021], [47.381193, 8.491637], [47.362684, 8.547153], [47.380243, 8.520475], [47.398744, 8.504212], [47.369878, 8.541675], [47.403538, 8.578807], [47.351892, 8.576525], [47.385715, 8.548639], [47.376049, 8.53407], [47.37302, 8.529081], [47.409789, 8.541693], [47.344094, 8.531693], [47.389169, 8.471039], [47.358788, 8.585025], [47.405126, 8.482094], [47.391756, 8.484494], [47.409789, 8.54172], [47.388533, 8.486709], [47.404458, 8.546088], [47.355736, 8.593379], [47.366962, 8.54568], [47.37828, 8.557529], [47.372706, 8.525222], [47.363523, 8.557179], [47.370088, 8.511809], [47.367951, 8.535333], [47.411031, 8.533119], [47.402138, 8.503962], [47.369455, 8.555781], [47.369699, 8.536905], [47.360032, 8.531874], [47.369091, 8.519322], [47.377954, 8.526693], [47.373898, 8.544645], [47.363482, 8.535135], [47.414438, 8.551238], [47.4145, 8.546681], [47.374388, 8.522396], [47.360259, 8.548598], [47.379962, 8.520721], [47.383268, 8.511518], [47.378666, 8.545525], [47.39373, 8.528737], [47.364819, 8.530767], [47.383074, 8.498495], [47.408685, 8.546189], [47.412877, 8.537663], [47.38139, 8.570705], [47.377169, 8.541164], [47.371953, 8.522082], [47.35132, 8.578829], [47.386345, 8.518202], [47.371521, 8.522099], [47.386954, 8.473328], [47.364771, 8.554544], [47.38824, 8.518585], [47.378852, 8.524976], [47.409531, 8.53762], [47.40411, 8.563503], [47.3938, 8.505822], [47.383699, 8.573721], [47.364548, 8.566429], [47.369503, 8.538582], [47.411568, 8.54666], [47.373113, 8.534526], [47.410601, 8.571233], [47.383805, 8.509926], [47.366503, 8.54473], [47.378803, 8.542496], [47.379075, 8.542289], [47.371722, 8.517866], [47.368863, 8.501284], [47.36694, 8.544143], [47.409357, 8.540876], [47.374511, 8.539745], [47.375214, 8.515818], [47.37514, 8.523656], [47.369062, 8.52532], [47.373355, 8.531697], [47.377558, 8.529558], [47.411581, 8.545255], [47.379355, 8.520232], [47.405613, 8.539169], [47.377656, 8.509498], [47.346538, 8.563811], [47.369409, 8.520004], [47.396253, 8.524457], [47.391019, 8.522469], [47.426728, 8.553841], [47.351769, 8.525761], [47.381231, 8.503226], [47.411567, 8.546752], [47.401717, 8.544918], [47.362372, 8.533683], [47.427277, 8.546297], [47.403478, 8.583894], [47.369014, 8.538003], [47.399348, 8.469355], [47.409425, 8.549742], [47.358902, 8.522015], [47.373017, 8.531359], [47.390959, 8.517368], [47.369795, 8.552279], [47.367853, 8.541819], [47.409187, 8.550095], [47.377729, 8.543798], [47.391664, 8.54263], [47.382083, 8.547464], [47.373433, 8.518682], [47.364913, 8.547332], [47.370166, 8.519794], [47.388807, 8.496145], [47.388485, 8.473145], [47.376823, 8.543514], [47.42385, 8.524476], [47.379642, 8.537481], [47.385493, 8.530449], [47.339652, 8.528717], [47.373374, 8.517304], [47.371135, 8.48887], [47.4021, 8.495296], [47.421018, 8.502086], [47.334818, 8.529968], [47.412342, 8.483786], [47.374324, 8.5225], [47.380645, 8.51218], [47.415375, 8.514033], [47.402048, 8.499018], [47.35967, 8.54905], [47.401777, 8.588521], [47.370791, 8.537497], [47.328494, 8.512811], [47.425871, 8.554049], [47.382418, 8.535975], [47.374385, 8.532248], [47.360412, 8.531643], [47.373555, 8.561495], [47.375242, 8.549811], [47.384306, 8.528504], [47.357065, 8.55519], [47.367655, 8.494706], [47.367281, 8.533916], [47.376889, 8.522288], [47.401137, 8.550947], [47.429426, 8.554746], [47.364103, 8.530316], [47.366639, 8.547407], [47.377102, 8.541626], [47.393724, 8.472638], [47.38825, 8.491101], [47.376762, 8.543301], [47.379645, 8.527694], [47.354352, 8.576061], [47.375519, 8.490545], [47.427467, 8.546169], [47.40925, 8.57147], [47.368973, 8.525185], [47.382717, 8.514698], [47.400879, 8.545974], [47.360729, 8.526619], [47.370263, 8.514288], [47.365162, 8.553228], [47.420388, 8.548937], [47.378544, 8.541285], [47.388583, 8.520353], [47.387146, 8.47296], [47.375649, 8.524103], [47.378618, 8.569084], [47.369769, 8.547499], [47.414152, 8.518805], [47.377318, 8.499347], [47.369777, 8.510372], [47.372298, 8.518844], [47.409929, 8.543127], [47.386715, 8.5476], [47.391321, 8.536238], [47.37642, 8.528184], [47.363261, 8.549852], [47.430383, 8.511592], [47.353682, 8.554365], [47.414244, 8.521497], [47.347262, 8.525815], [47.415777, 8.516254], [47.376098, 8.535607], [47.390612, 8.489611], [47.3835, 8.515668], [47.360317, 8.566816], [47.363224, 8.524353], [47.381633, 8.556831], [47.394757, 8.518108], [47.364319, 8.520841], [47.363716, 8.549253], [47.383867, 8.52925], [47.410159, 8.541648], [47.369348, 8.513052], [47.337313, 8.519168], [47.369475, 8.466408], [47.372349, 8.486908], [47.360851, 8.535611], [47.377896, 8.528056], [47.373829, 8.489347], [47.406391, 8.535846], [47.369418, 8.541838], [47.376526, 8.524598], [47.387062, 8.48623], [47.395149, 8.524275], [47.389701, 8.542854], [47.378536, 8.542119], [47.373327, 8.49417], [47.376244, 8.525837], [47.397239, 8.531538], [47.371362, 8.507319], [47.379102, 8.483253], [47.430963, 8.542729], [47.368021, 8.556135], [47.362064, 8.533888], [47.377538, 8.528869], [47.382852, 8.529044], [47.4014, 8.582074], [47.371025, 8.513522], [47.374688, 8.522945], [47.410576, 8.5422], [47.39923, 8.542574], [47.410569, 8.57265], [47.391702, 8.523516], [47.366549, 8.565054], [47.365739, 8.558629], [47.373582, 8.50355], [47.383602, 8.498797], [47.367915, 8.560608], [47.395261, 8.484749], [47.404425, 8.533567], [47.381881, 8.530018], [47.429168, 8.510759], [47.370488, 8.521959], [47.375376, 8.485405], [47.380614, 8.512563], [47.391186, 8.538103], [47.372629, 8.550339], [47.377709, 8.521219], [47.35967, 8.549103], [47.376592, 8.527102], [47.382785, 8.532354], [47.377264, 8.538769], [47.370363, 8.539011], [47.365569, 8.545518], [47.364102, 8.54746], [47.381785, 8.515276], [47.39224, 8.516944], [47.387681, 8.488467], [47.369512, 8.533869], [47.399562, 8.497459], [47.369899, 8.536644], [47.371784, 8.5428], [47.360955, 8.506329], [47.385417, 8.508687], [47.359479, 8.502448], [47.428845, 8.489133], [47.389764, 8.486853], [47.383788, 8.54044], [47.420867, 8.482058], [47.375243, 8.497121], [47.405423, 8.532646], [47.393435, 8.524717], [47.431319, 8.516423], [47.341408, 8.53038], [47.373151, 8.535255], [47.368221, 8.495697], [47.370772, 8.471292], [47.344034, 8.530421], [47.409791, 8.543469], [47.37908, 8.548262], [47.332574, 8.528546], [47.393202, 8.530422], [47.369725, 8.490669], [47.407556, 8.579052], [47.379353, 8.570198], [47.398489, 8.494841], [47.370185, 8.558418], [47.36957, 8.54192], [47.389801, 8.511292], [47.369072, 8.491173], [47.404092, 8.491003], [47.364191, 8.536302], [47.35478, 8.526061], [47.399095, 8.513916], [47.383747, 8.529579], [47.400175, 8.546237], [47.354237, 8.508048], [47.377972, 8.52476], [47.380956, 8.50379], [47.369292, 8.520028], [47.393354, 8.524782], [47.385671, 8.548545], [47.377966, 8.541525], [47.402017, 8.499521], [47.368973, 8.482313], [47.352518, 8.508212], [47.393244, 8.492909], [47.376994, 8.515854], [47.381844, 8.583998], [47.369106, 8.534033], [47.37069, 8.51668], [47.420682, 8.502358], [47.384302, 8.534623], [47.42516, 8.550362], [47.376796, 8.513943], [47.391248, 8.539098], [47.37069, 8.516733], [47.396631, 8.534003], [47.386225, 8.498213], [47.407332, 8.585328], [47.403567, 8.570342], [47.372013, 8.556351], [47.370377, 8.518448], [47.377779, 8.537628], [47.377931, 8.541511], [47.413905, 8.546867], [47.350485, 8.560307], [47.384687, 8.49613], [47.379286, 8.489706], [47.372945, 8.527557], [47.370179, 8.548779], [47.368492, 8.546532], [47.370161, 8.548791], [47.384048, 8.526234], [47.37017, 8.548792], [47.365099, 8.55324], [47.368661, 8.543901], [47.346416, 8.564391], [47.372464, 8.476158], [47.409473, 8.538043], [47.370067, 8.515012], [47.351851, 8.560455], [47.37414, 8.520987], [47.393691, 8.539532], [47.390931, 8.523183], [47.375938, 8.52877], [47.381373, 8.540907], [47.396276, 8.527756], [47.40259, 8.535476], [47.335342, 8.54108], [47.414452, 8.517486], [47.417162, 8.523014], [47.366544, 8.546095], [47.379588, 8.500915], [47.399024, 8.513796], [47.38337, 8.540869], [47.426437, 8.492757], [47.391969, 8.518011], [47.352221, 8.558504], [47.385878, 8.532457], [47.374527, 8.539971], [47.376957, 8.560427], [47.383071, 8.540174], [47.425808, 8.547552], [47.378274, 8.541346], [47.363689, 8.549252], [47.376427, 8.527483], [47.367719, 8.54641], [47.409012, 8.482037], [47.387095, 8.5188], [47.366358, 8.541113], [47.380421, 8.541602], [47.378878, 8.559885], [47.417634, 8.545394], [47.354808, 8.526829], [47.350951, 8.534242], [47.367029, 8.547124], [47.358937, 8.534459], [47.377593, 8.528698], [47.39237, 8.50782], [47.414906, 8.551208], [47.367512, 8.537919], [47.399704, 8.543763], [47.36643, 8.544821], [47.404441, 8.574733], [47.345475, 8.529259], [47.38875, 8.525562], [47.358125, 8.534694], [47.392508, 8.475833], [47.389037, 8.527528], [47.351766, 8.566436], [47.394235, 8.483854], [47.353815, 8.558312], [47.380529, 8.52648], [47.379441, 8.537861], [47.371539, 8.536334], [47.384562, 8.560958], [47.366656, 8.535293], [47.378217, 8.543569], [47.391152, 8.534115], [47.378952, 8.494798], [47.399856, 8.543859], [47.361854, 8.560388], [47.373398, 8.513782], [47.358219, 8.587939], [47.404938, 8.556035], [47.396923, 8.532551], [47.406899, 8.480976], [47.378972, 8.543585], [47.417215, 8.543133], [47.357674, 8.520547], [47.397228, 8.536532], [47.356237, 8.551586], [47.343986, 8.530777], [47.369745, 8.536826], [47.362224, 8.559389], [47.373316, 8.533047], [47.356702, 8.523466], [47.36361, 8.500293], [47.382148, 8.53695], [47.329764, 8.515496], [47.367772, 8.522791], [47.36913, 8.527638], [47.370757, 8.546659], [47.345984, 8.534445], [47.37818, 8.527518], [47.373655, 8.530432], [47.427067, 8.491709], [47.380212, 8.501564], [47.369903, 8.587184], [47.417278, 8.546832], [47.348559, 8.522758], [47.39643, 8.520976], [47.399703, 8.495858], [47.374512, 8.495425], [47.377566, 8.528711], [47.407226, 8.53222], [47.372864, 8.517042], [47.369171, 8.554451], [47.374187, 8.544453], [47.377054, 8.521947], [47.377468, 8.498675], [47.397719, 8.533058], [47.395598, 8.526258], [47.360332, 8.578969], [47.370163, 8.525845], [47.368614, 8.48322], [47.423495, 8.53535], [47.392253, 8.511646], [47.374113, 8.51712], [47.390207, 8.485683], [47.369014, 8.537977], [47.39319, 8.530713], [47.373078, 8.537279], [47.362454, 8.547704], [47.381179, 8.510774], [47.366757, 8.563112], [47.362534, 8.534613], [47.357529, 8.52159], [47.370317, 8.539049], [47.379203, 8.544861], [47.364004, 8.56692], [47.370523, 8.522026], [47.37043, 8.514689], [47.375802, 8.537428], [47.346596, 8.52874], [47.3773, 8.49838], [47.377257, 8.512774], [47.383066, 8.513937], [47.402188, 8.496504], [47.388187, 8.491166], [47.354352, 8.553016], [47.370621, 8.470018], [47.411047, 8.545682], [47.391497, 8.519472], [47.373573, 8.53435], [47.422154, 8.547768], [47.383215, 8.541051], [47.367749, 8.496204], [47.376554, 8.541522], [47.373485, 8.568657], [47.398564, 8.591472], [47.364642, 8.537105], [47.375115, 8.51575], [47.377769, 8.507951], [47.394707, 8.536758], [47.354886, 8.574775], [47.377003, 8.527388], [47.418907, 8.507557], [47.357294, 8.508268], [47.382802, 8.540049], [47.375825, 8.515897], [47.357241, 8.552878], [47.374877, 8.53435], [47.378422, 8.510295], [47.406672, 8.479183], [47.366738, 8.541769], [47.366644, 8.541304], [47.37344, 8.531354], [47.355659, 8.555545], [47.418538, 8.483006], [47.369768, 8.501633], [47.362437, 8.504625], [47.397668, 8.532805], [47.386221, 8.518001], [47.387667, 8.492891], [47.365771, 8.552566], [47.385245, 8.536696], [47.333564, 8.51896], [47.386903, 8.539206], [47.396059, 8.544973], [47.37663, 8.54396], [47.383376, 8.484092], [47.368324, 8.544304], [47.369515, 8.525885], [47.383517, 8.543308], [47.348305, 8.5344], [47.376806, 8.536787], [47.369096, 8.537859], [47.368301, 8.578133], [47.391099, 8.545307], [47.373101, 8.490325], [47.367946, 8.560211], [47.387021, 8.539977], [47.341336, 8.527494], [47.404924, 8.502269], [47.374566, 8.533973], [47.406808, 8.550522], [47.390452, 8.539651], [47.377572, 8.522341], [47.398417, 8.494826], [47.382037, 8.530617], [47.372751, 8.600937], [47.369837, 8.529016], [47.421565, 8.550022], [47.378827, 8.542735], [47.409159, 8.547471], [47.341174, 8.530349], [47.389936, 8.536196], [47.41064, 8.542148], [47.379578, 8.543306], [47.375752, 8.559502], [47.377838, 8.509303], [47.380673, 8.511995], [47.357102, 8.522071], [47.379912, 8.524164], [47.364632, 8.545697], [47.398976, 8.533335], [47.409602, 8.480472], [47.418597, 8.554691], [47.357473, 8.521853], [47.384948, 8.495234], [47.390835, 8.509365], [47.362943, 8.549184], [47.41384, 8.527174], [47.410499, 8.56976], [47.420123, 8.548468], [47.428792, 8.543956], [47.393849, 8.505386], [47.383882, 8.504524], [47.381194, 8.556716], [47.355577, 8.513912], [47.367944, 8.544575], [47.374264, 8.524962], [47.384082, 8.511057], [47.400771, 8.548793], [47.404461, 8.557019], [47.387982, 8.539242], [47.387507, 8.519073], [47.37541, 8.517941], [47.393466, 8.512743], [47.378947, 8.54524], [47.35745, 8.535686], [47.385456, 8.522873], [47.362352, 8.559114], [47.399442, 8.543016], [47.372534, 8.505012], [47.368491, 8.548426], [47.407356, 8.530791], [47.412165, 8.539728], [47.370653, 8.516772], [47.380626, 8.512219], [47.335517, 8.518814], [47.362478, 8.533844], [47.380431, 8.515778], [47.407516, 8.548073], [47.352075, 8.534331], [47.381206, 8.537566], [47.397147, 8.530794], [47.374268, 8.513018], [47.369005, 8.537976], [47.390935, 8.488717], [47.36112, 8.571122], [47.390712, 8.509032], [47.378394, 8.520107], [47.364757, 8.502672], [47.419187, 8.547613], [47.366757, 8.563126], [47.358484, 8.571145], [47.365408, 8.521657], [47.404369, 8.533764], [47.369333, 8.527086], [47.358808, 8.585701], [47.413401, 8.53933], [47.375118, 8.540314], [47.36289, 8.526438], [47.394458, 8.51928], [47.371343, 8.547505], [47.372238, 8.523345], [47.381829, 8.535499], [47.369389, 8.525896], [47.382833, 8.531057], [47.375371, 8.485947], [47.371997, 8.521182], [47.368182, 8.557224], [47.385462, 8.526025], [47.409676, 8.54511], [47.416919, 8.538263], [47.371057, 8.531239], [47.366671, 8.553498], [47.360998, 8.524851], [47.396351, 8.489539], [47.375129, 8.553225], [47.392626, 8.538954], [47.35928, 8.500603], [47.394854, 8.529727], [47.376001, 8.538174], [47.360193, 8.579403], [47.39633, 8.47294], [47.376862, 8.543197], [47.412943, 8.538287], [47.365698, 8.55643], [47.368751, 8.528743], [47.360561, 8.566622], [47.407607, 8.58389], [47.361001, 8.506211], [47.363649, 8.574684], [47.362607, 8.598055], [47.419942, 8.506597], [47.37853, 8.575226], [47.377275, 8.512721], [47.398721, 8.532734], [47.368865, 8.501006], [47.429365, 8.543345], [47.372544, 8.546974], [47.374743, 8.565161], [47.363199, 8.549706], [47.383134, 8.540162], [47.406771, 8.572888], [47.428712, 8.488879], [47.394859, 8.539702], [47.375481, 8.496649], [47.378642, 8.519489], [47.388019, 8.537243], [47.375258, 8.515925], [47.369599, 8.525648], [47.400417, 8.54819], [47.373922, 8.54491], [47.398461, 8.500815], [47.369437, 8.526585], [47.367694, 8.488418], [47.375578, 8.526896], [47.371917, 8.522107], [47.340088, 8.530115], [47.367304, 8.546574], [47.35199, 8.560061], [47.378656, 8.526681], [47.414207, 8.552863], [47.378441, 8.540859], [47.389686, 8.512058], [47.427599, 8.539915], [47.380355, 8.542872], [47.380337, 8.542898], [47.375582, 8.521652], [47.378512, 8.575213], [47.372917, 8.533383], [47.3747, 8.535935], [47.367994, 8.495984], [47.376591, 8.529154], [47.386186, 8.475683], [47.376801, 8.528775], [47.392788, 8.528493], [47.371033, 8.546982], [47.391529, 8.54268], [47.332736, 8.528576], [47.377243, 8.54196], [47.376924, 8.524354], [47.38339, 8.543452], [47.361477, 8.56124], [47.384801, 8.524621], [47.391598, 8.519222], [47.375287, 8.54331], [47.361352, 8.522607], [47.401453, 8.503074], [47.402387, 8.493514], [47.398942, 8.542582], [47.375866, 8.537323], [47.393453, 8.524731], [47.371893, 8.53413], [47.387814, 8.485715], [47.369437, 8.526572], [47.375693, 8.527097], [47.377844, 8.498868], [47.378057, 8.541434], [47.428069, 8.552769], [47.378555, 8.54204], [47.410184, 8.526636], [47.426589, 8.546773], [47.429901, 8.544615], [47.351332, 8.525395], [47.373599, 8.523055], [47.414195, 8.519032], [47.406725, 8.584825], [47.356167, 8.556032], [47.414158, 8.546674], [47.378846, 8.542682], [47.360412, 8.594407], [47.377161, 8.537297], [47.390133, 8.478886], [47.37295, 8.519361], [47.388941, 8.52248], [47.371808, 8.530791], [47.394258, 8.490213], [47.369238, 8.527601], [47.381905, 8.51692], [47.361765, 8.511138], [47.414459, 8.550974], [47.365596, 8.50535], [47.369164, 8.556132], [47.406916, 8.550591], [47.381201, 8.538148], [47.378364, 8.541348], [47.390918, 8.47959], [47.352087, 8.573167], [47.374435, 8.495887], [47.371926, 8.529695], [47.398465, 8.533139], [47.397544, 8.48894], [47.427496, 8.545997], [47.370481, 8.52462], [47.427474, 8.551087], [47.389832, 8.511822], [47.414778, 8.551497], [47.376726, 8.543327], [47.410909, 8.505847], [47.402633, 8.547852], [47.406889, 8.550537], [47.371177, 8.493134], [47.364699, 8.557389], [47.373582, 8.534337], [47.373067, 8.538365], [47.388117, 8.520145], [47.365001, 8.567021], [47.366687, 8.541464], [47.387993, 8.519904], [47.371452, 8.513067], [47.369862, 8.525389], [47.37038, 8.518051], [47.378802, 8.542588], [47.40629, 8.480686], [47.373683, 8.5341], [47.3691, 8.492034], [47.383122, 8.529063], [47.363876, 8.598864], [47.362122, 8.607815], [47.379882, 8.548146], [47.37335, 8.536993], [47.367364, 8.523193], [47.347259, 8.532803], [47.372397, 8.523613], [47.3862, 8.525073], [47.375753, 8.549107], [47.36095, 8.530887], [47.360918, 8.5549], [47.376566, 8.527022], [47.423426, 8.494513], [47.380649, 8.496142], [47.378349, 8.52388], [47.350894, 8.563625], [47.405995, 8.591275], [47.373171, 8.536897], [47.383312, 8.48421], [47.373233, 8.537031], [47.393889, 8.509837], [47.366988, 8.520087], [47.384976, 8.508784], [47.377203, 8.499093], [47.370215, 8.548806], [47.419176, 8.547732], [47.365037, 8.545679], [47.362604, 8.504946], [47.380729, 8.556441], [47.371867, 8.529309], [47.373987, 8.502591], [47.366148, 8.540486], [47.383079, 8.527857], [47.411593, 8.559938], [47.395263, 8.491452], [47.38265, 8.513148], [47.410993, 8.545654], [47.360193, 8.579403], [47.36393, 8.528631], [47.370093, 8.540832], [47.383424, 8.533254], [47.413022, 8.544132], [47.417912, 8.505271], [47.366745, 8.545768], [47.422467, 8.550743], [47.41075, 8.555905], [47.324581, 8.509875], [47.373239, 8.525974], [47.375121, 8.545584], [47.413877, 8.524206], [47.393794, 8.489807], [47.37097, 8.502028], [47.384381, 8.531936], [47.377647, 8.541995], [47.40763, 8.543689], [47.3809, 8.492201], [47.387289, 8.519201], [47.378553, 8.519461], [47.426617, 8.555019], [47.397618, 8.48869], [47.374839, 8.553431], [47.404322, 8.576837], [47.370188, 8.548792], [47.369605, 8.552395], [47.378379, 8.541613], [47.378947, 8.5443], [47.368464, 8.540931], [47.358237, 8.51807], [47.352509, 8.508172], [47.398801, 8.540353], [47.370264, 8.536096], [47.384334, 8.53126], [47.371467, 8.547653], [47.378892, 8.519759], [47.362117, 8.51096], [47.351413, 8.576727], [47.392391, 8.538128], [47.376372, 8.537082], [47.402109, 8.499231], [47.404275, 8.548297], [47.363028, 8.522271], [47.363746, 8.574819], [47.369389, 8.525896], [47.414091, 8.51675], [47.365822, 8.56774], [47.336908, 8.533517], [47.394347, 8.519623], [47.408764, 8.504293], [47.39805, 8.541795], [47.366503, 8.519985], [47.372926, 8.52091], [47.370748, 8.474959], [47.391923, 8.518103], [47.391463, 8.513391], [47.36956, 8.551467], [47.363898, 8.549085], [47.368959, 8.528575], [47.393372, 8.524769], [47.399587, 8.542834], [47.382861, 8.530011], [47.368802, 8.528995], [47.378761, 8.528881], [47.373351, 8.534994], [47.415032, 8.545592], [47.415005, 8.545645], [47.402013, 8.497971], [47.400788, 8.5489], [47.362249, 8.547448], [47.377855, 8.508416], [47.391349, 8.526622], [47.380195, 8.535174], [47.404667, 8.551511], [47.361148, 8.600843], [47.369999, 8.51848], [47.359688, 8.549063], [47.408509, 8.550518], [47.363286, 8.5292], [47.401262, 8.590616], [47.363425, 8.533545], [47.382553, 8.548189], [47.350748, 8.560128], [47.369614, 8.513388], [47.373044, 8.533187], [47.366411, 8.541153], [47.360314, 8.550413], [47.361198, 8.532229], [47.323024, 8.513852], [47.390753, 8.521987], [47.367758, 8.496205], [47.355622, 8.574076], [47.371916, 8.52212], [47.369817, 8.532061], [47.377063, 8.521934], [47.406701, 8.538211], [47.386245, 8.531696], [47.380524, 8.512562], [47.377761, 8.507898], [47.37641, 8.543466], [47.340948, 8.53143], [47.367095, 8.543961], [47.377207, 8.541959], [47.391141, 8.522909], [47.364177, 8.526306], [47.377231, 8.547853], [47.405102, 8.481789], [47.36524, 8.494129], [47.338454, 8.519284], [47.37775, 8.5416], [47.420286, 8.508261], [47.362708, 8.518915], [47.383805, 8.509913], [47.377145, 8.552155], [47.371177, 8.520371], [47.370665, 8.519341], [47.366373, 8.545178], [47.373913, 8.538382], [47.383611, 8.530676], [47.408137, 8.503048], [47.370852, 8.536757], [47.362269, 8.54729], [47.388515, 8.528551], [47.370538, 8.546972], [47.37346, 8.529223], [47.372, 8.487695], [47.378208, 8.543569], [47.381028, 8.553388], [47.386788, 8.547482], [47.379836, 8.55478], [47.398382, 8.504509], [47.370285, 8.557387], [47.421154, 8.549722], [47.377259, 8.521262], [47.369284, 8.541729], [47.413854, 8.539936], [47.351331, 8.525435], [47.410778, 8.538043], [47.370783, 8.546765], [47.377032, 8.52723], [47.38508, 8.532268], [47.388471, 8.485582], [47.37925, 8.538029], [47.405183, 8.559551], [47.378544, 8.541365], [47.390891, 8.488531], [47.388428, 8.540549], [47.361173, 8.506056], [47.419882, 8.501375], [47.382009, 8.530735], [47.366513, 8.540864], [47.379039, 8.545096], [47.364031, 8.554794], [47.407814, 8.580277], [47.410056, 8.542984], [47.37004, 8.540805], [47.38033, 8.542699], [47.372796, 8.535658], [47.374665, 8.535921], [47.378857, 8.510992], [47.36923, 8.527574], [47.387823, 8.485702], [47.41966, 8.504975], [47.372289, 8.536031], [47.416745, 8.54523], [47.354822, 8.510972], [47.379143, 8.500403], [47.371093, 8.5236], [47.379045, 8.527364], [47.393693, 8.501832], [47.379371, 8.525252], [47.353824, 8.558313], [47.413531, 8.545455], [47.422811, 8.494819], [47.372121, 8.550726], [47.399834, 8.543329], [47.376926, 8.528897], [47.370054, 8.54871], [47.378599, 8.505809], [47.419213, 8.54772], [47.382137, 8.501615], [47.388171, 8.520173], [47.377275, 8.515648], [47.395611, 8.535333], [47.361028, 8.506145], [47.380828, 8.541399], [47.358709, 8.599241], [47.389037, 8.478706], [47.378198, 8.520858], [47.376912, 8.527546], [47.399712, 8.547632], [47.378528, 8.541113], [47.391351, 8.487467], [47.377255, 8.538769], [47.378288, 8.530381], [47.424163, 8.506258], [47.397364, 8.503707], [47.411651, 8.528494], [47.385618, 8.493711], [47.398731, 8.532641], [47.376993, 8.527507], [47.385041, 8.508573], [47.376443, 8.544738], [47.383274, 8.506101], [47.374798, 8.544598], [47.417027, 8.523012], [47.369222, 8.540669], [47.363247, 8.525704], [47.381389, 8.513374], [47.369005, 8.537963], [47.370061, 8.548909], [47.401572, 8.578328], [47.377515, 8.538827], [47.360661, 8.524288], [47.359919, 8.534347], [47.375831, 8.559622], [47.373239, 8.538276], [47.370657, 8.508589], [47.388606, 8.483691], [47.365289, 8.530486], [47.393258, 8.533946], [47.403579, 8.547752], [47.390603, 8.489598], [47.377847, 8.519897], [47.373093, 8.537597], [47.394668, 8.514052], [47.374635, 8.537126], [47.370173, 8.513293], [47.400497, 8.500511], [47.373657, 8.535901], [47.407279, 8.544596], [47.383869, 8.511715], [47.414916, 8.515031], [47.376214, 8.52238], [47.370767, 8.535245], [47.38154, 8.513602], [47.385069, 8.547566], [47.371928, 8.535203], [47.37179, 8.530778], [47.3456, 8.529434], [47.369752, 8.49059], [47.40688, 8.585517], [47.375881, 8.537562], [47.382163, 8.505576], [47.410552, 8.550336], [47.423646, 8.538402], [47.37325, 8.519009], [47.383758, 8.512084], [47.418641, 8.547257], [47.375264, 8.490818], [47.400319, 8.505144], [47.409508, 8.567089], [47.362087, 8.507411], [47.3627, 8.518915], [47.369231, 8.525561], [47.397889, 8.534134], [47.365618, 8.539442], [47.366262, 8.534173], [47.402391, 8.535539], [47.390583, 8.522884], [47.378918, 8.515059], [47.40188, 8.54573], [47.383858, 8.515821], [47.384375, 8.531605], [47.360271, 8.523671], [47.384815, 8.529773], [47.386851, 8.525616], [47.370777, 8.515066], [47.393182, 8.492801], [47.377953, 8.492898], [47.407966, 8.53674], [47.371912, 8.52069], [47.374379, 8.522382], [47.410071, 8.546152], [47.410854, 8.5432], [47.383231, 8.531807], [47.404377, 8.572148], [47.365169, 8.53746], [47.383054, 8.499634], [47.391676, 8.504958], [47.341881, 8.530747], [47.394197, 8.490053], [47.388821, 8.522756], [47.385342, 8.542472], [47.36905, 8.537991], [47.372685, 8.53122], [47.366551, 8.548187], [47.426262, 8.547045], [47.362037, 8.533888], [47.40798, 8.578028], [47.405135, 8.50479], [47.397935, 8.534043], [47.375819, 8.545056], [47.393328, 8.492592], [47.375503, 8.5629], [47.37946, 8.54431], [47.375569, 8.526896], [47.383289, 8.530417], [47.373501, 8.536215], [47.360457, 8.594421], [47.414339, 8.551249], [47.355971, 8.579696], [47.37013, 8.540714], [47.380169, 8.542564], [47.369673, 8.518712], [47.373352, 8.534915], [47.389763, 8.477992], [47.394829, 8.525726], [47.393751, 8.472665], [47.385192, 8.53933], [47.344424, 8.53293], [47.365865, 8.532417], [47.377623, 8.526527], [47.367626, 8.541112], [47.370179, 8.548792], [47.390802, 8.50906], [47.392116, 8.498211], [47.401462, 8.499219], [47.366509, 8.540295], [47.371141, 8.53945], [47.344383, 8.526868], [47.37068, 8.516746], [47.404752, 8.488605], [47.409672, 8.54458], [47.372364, 8.523335], [47.393204, 8.530157], [47.362737, 8.547181], [47.376446, 8.536872], [47.377531, 8.529598], [47.423048, 8.498389], [47.37846, 8.540727], [47.371654, 8.519454], [47.36435, 8.536623], [47.405708, 8.502086], [47.369083, 8.518263], [47.37157, 8.515903], [47.366738, 8.541769], [47.367343, 8.545357], [47.393742, 8.51308], [47.389969, 8.531733], [47.3664, 8.540478], [47.393729, 8.505754], [47.403708, 8.496508], [47.377911, 8.508192], [47.330737, 8.514364], [47.400676, 8.550315], [47.357629, 8.521499], [47.358249, 8.586721], [47.414198, 8.529275], [47.366576, 8.545526], [47.367086, 8.544001], [47.405719, 8.59103], [47.344904, 8.533562], [47.377551, 8.498491], [47.373761, 8.528805], [47.376862, 8.528048], [47.3778, 8.516307], [47.372458, 8.511366], [47.370197, 8.548805], [47.377689, 8.527204], [47.374873, 8.520525], [47.366867, 8.549928], [47.397658, 8.526208], [47.422458, 8.55073], [47.389381, 8.488395], [47.373797, 8.537334], [47.372543, 8.505012], [47.420678, 8.513557], [47.405592, 8.572929], [47.389301, 8.529083], [47.381479, 8.542021], [47.373642, 8.528975], [47.377374, 8.537659], [47.373056, 8.532896], [47.396657, 8.529353], [47.389703, 8.526535], [47.42705, 8.491576], [47.377966, 8.548133], [47.390131, 8.522146], [47.363085, 8.535246], [47.362144, 8.559282], [47.409544, 8.575398], [47.388771, 8.528119], [47.364015, 8.526342], [47.415035, 8.483494], [47.366487, 8.540731], [47.397623, 8.487127], [47.394696, 8.525525], [47.386033, 8.554817], [47.374648, 8.547998], [47.344029, 8.53189], [47.362337, 8.504662], [47.37964, 8.526264], [47.397667, 8.532924], [47.41413, 8.519256], [47.410323, 8.546117], [47.422466, 8.550836], [47.381579, 8.537189], [47.393975, 8.473769], [47.381424, 8.5174], [47.414073, 8.541491], [47.364131, 8.53021], [47.387528, 8.51963], [47.409946, 8.535641], [47.382047, 8.540907], [47.397304, 8.531301], [47.375872, 8.523287], [47.351881, 8.527286], [47.378521, 8.575213], [47.356808, 8.558587], [47.36416, 8.569346], [47.380144, 8.494239], [47.417167, 8.551865], [47.363108, 8.503989], [47.351215, 8.561064], [47.379016, 8.562351], [47.329882, 8.529761], [47.357524, 8.535489], [47.368583, 8.524595], [47.364656, 8.554423], [47.386653, 8.553069], [47.396736, 8.529554], [47.381764, 8.513726], [47.407735, 8.574564], [47.42705, 8.49159], [47.359547, 8.535557], [47.371818, 8.487996], [47.377162, 8.540025], [47.375187, 8.518678], [47.398158, 8.536087], [47.41405, 8.546685], [47.408651, 8.540371], [47.330232, 8.529834], [47.38583, 8.529993], [47.373756, 8.519682], [47.387042, 8.494362], [47.411889, 8.523291], [47.384993, 8.530995], [47.376381, 8.540777], [47.395201, 8.535854], [47.383814, 8.509886], [47.389156, 8.530246], [47.359681, 8.587454], [47.388839, 8.49559], [47.361285, 8.56158], [47.38164, 8.528861], [47.371765, 8.547554], [47.415962, 8.508956], [47.357057, 8.598054], [47.391081, 8.479527], [47.372883, 8.535938], [47.369079, 8.565823], [47.376883, 8.548561], [47.363635, 8.535125], [47.365539, 8.526876], [47.399304, 8.542377], [47.375446, 8.524602], [47.366807, 8.543028], [47.42576, 8.547803], [47.362752, 8.567966], [47.397898, 8.534095], [47.405456, 8.593039], [47.386884, 8.493935], [47.39126, 8.520779], [47.425934, 8.493649], [47.343999, 8.535079], [47.360067, 8.580274], [47.379877, 8.495902], [47.377887, 8.507887], [47.381473, 8.564999], [47.371115, 8.493054], [47.403737, 8.560223], [47.415307, 8.518458], [47.357911, 8.519268], [47.375152, 8.518518], [47.368806, 8.524838], [47.390219, 8.52334], [47.371218, 8.530382], [47.360027, 8.521905], [47.362459, 8.568489], [47.352881, 8.558174], [47.371486, 8.547548], [47.408217, 8.547133], [47.376411, 8.528144], [47.391668, 8.513647], [47.405684, 8.549638], [47.393831, 8.505465], [47.36646, 8.509233], [47.377398, 8.529436], [47.339793, 8.52995], [47.411553, 8.545387], [47.400122, 8.494224], [47.417416, 8.552109], [47.412288, 8.523896], [47.386959, 8.528572], [47.368457, 8.524566], [47.360689, 8.55062], [47.371293, 8.555422], [47.385502, 8.530449], [47.375659, 8.548628], [47.384149, 8.55152], [47.374038, 8.476175], [47.403435, 8.556109], [47.372513, 8.539876], [47.356696, 8.522155], [47.364378, 8.529805], [47.369553, 8.5257], [47.411281, 8.570665], [47.412894, 8.540592], [47.39778, 8.530396], [47.397772, 8.53033], [47.372938, 8.531106], [47.376982, 8.541915], [47.369686, 8.525875], [47.377759, 8.52547], [47.371377, 8.51725], [47.412332, 8.554242], [47.372882, 8.520856], [47.369958, 8.51125], [47.421773, 8.509895], [47.395767, 8.52454], [47.368221, 8.560575], [47.415318, 8.514376], [47.356705, 8.522156], [47.373085, 8.534565], [47.391944, 8.517852], [47.399806, 8.502233], [47.3984, 8.468834], [47.374586, 8.54601], [47.357729, 8.554423], [47.415653, 8.513151], [47.368274, 8.520193], [47.413972, 8.545491], [47.373754, 8.536128], [47.385307, 8.536697], [47.396868, 8.54589], [47.38614, 8.53527], [47.415095, 8.51514], [47.372597, 8.534793], [47.39062, 8.489691], [47.378474, 8.568114], [47.379206, 8.559468], [47.355704, 8.573985], [47.414424, 8.536701], [47.414328, 8.538316], [47.414424, 8.536741], [47.389422, 8.521059], [47.366591, 8.54117], [47.386978, 8.547367], [47.376807, 8.544269], [47.381578, 8.541944], [47.414119, 8.544235], [47.370108, 8.528863], [47.368073, 8.54136], [47.405453, 8.480722], [47.344631, 8.532987], [47.377644, 8.506876], [47.395811, 8.545511], [47.387938, 8.539095], [47.348478, 8.562264], [47.363169, 8.526365], [47.375031, 8.519032], [47.366943, 8.545719], [47.365171, 8.553215], [47.414121, 8.519295], [47.376278, 8.540298], [47.425555, 8.54764], [47.326028, 8.514865], [47.374769, 8.523953], [47.414615, 8.520325], [47.397902, 8.535579], [47.397673, 8.494493], [47.368203, 8.560574], [47.413008, 8.562459], [47.370767, 8.535272], [47.366525, 8.540533], [47.370785, 8.535259], [47.374678, 8.550567], [47.375239, 8.545507], [47.37964, 8.515762], [47.417181, 8.541939], [47.370052, 8.548908], [47.367258, 8.545725], [47.376702, 8.497812], [47.375034, 8.518728], [47.374265, 8.524909], [47.373963, 8.50324], [47.383143, 8.497834], [47.409476, 8.544324], [47.408555, 8.546624], [47.376882, 8.540165], [47.360919, 8.531296], [47.366985, 8.491238], [47.373406, 8.534863], [47.406843, 8.563667], [47.397603, 8.481403], [47.394533, 8.49455], [47.371058, 8.525453], [47.388442, 8.486853], [47.370557, 8.508733], [47.408703, 8.546242], [47.369204, 8.543581], [47.371407, 8.522693], [47.358851, 8.516811], [47.392885, 8.490848], [47.387049, 8.547395], [47.421405, 8.499033], [47.364228, 8.521872], [47.362727, 8.518902], [47.386363, 8.487991], [47.378531, 8.5752], [47.400701, 8.548646], [47.427549, 8.546011], [47.372909, 8.53517], [47.368095, 8.534356], [47.383929, 8.528364], [47.391423, 8.516742], [47.386758, 8.490966], [47.37442, 8.539849], [47.387809, 8.527119], [47.388961, 8.491155], [47.343015, 8.534476], [47.370351, 8.534562], [47.388653, 8.483414], [47.395224, 8.521972], [47.373365, 8.531644], [47.410038, 8.542971], [47.37615, 8.489313], [47.413097, 8.543895], [47.37553, 8.486361], [47.366007, 8.533506], [47.389305, 8.536289], [47.378014, 8.526072], [47.404205, 8.561134], [47.410978, 8.567663], [47.385123, 8.537223], [47.372959, 8.524141], [47.356706, 8.535433], [47.373261, 8.535045], [47.337716, 8.519309], [47.384975, 8.508903], [47.371757, 8.493702], [47.388906, 8.515578], [47.385258, 8.527703], [47.414746, 8.545454], [47.351279, 8.560033], [47.375886, 8.500537], [47.353362, 8.576093], [47.375431, 8.528138], [47.374022, 8.54294], [47.361316, 8.525479], [47.415982, 8.515529], [47.360934, 8.547633], [47.345759, 8.534466], [47.383229, 8.506021], [47.419595, 8.505172], [47.378769, 8.539423], [47.402441, 8.499384], [47.387183, 8.519027], [47.375688, 8.541848], [47.356013, 8.556148], [47.38533, 8.530525], [47.401532, 8.548319], [47.369649, 8.533647], [47.366989, 8.520021], [47.378948, 8.523402], [47.388233, 8.520254], [47.378111, 8.497258], [47.365541, 8.539004], [47.354791, 8.526816], [47.413996, 8.549533], [47.342491, 8.530932], [47.382711, 8.537319], [47.333029, 8.518473], [47.372575, 8.537203], [47.370127, 8.521091], [47.376924, 8.543317], [47.411543, 8.52661], [47.370534, 8.492605], [47.343555, 8.535387], [47.350158, 8.560631], [47.362779, 8.510404], [47.366474, 8.547788], [47.342348, 8.530863], [47.37102, 8.523757], [47.406907, 8.550577], [47.374681, 8.536041], [47.381277, 8.517676], [47.407593, 8.558701], [47.375229, 8.539005], [47.420234, 8.538756], [47.37554, 8.563721], [47.370904, 8.53881], [47.373949, 8.498896], [47.410651, 8.550338], [47.363903, 8.547562], [47.364469, 8.566281], [47.366282, 8.537722], [47.377505, 8.529451], [47.429313, 8.548739], [47.383719, 8.573509], [47.40848, 8.581152], [47.386768, 8.547601], [47.38619, 8.52804], [47.378682, 8.542003], [47.370188, 8.548792], [47.380323, 8.52637], [47.375532, 8.518314], [47.403018, 8.534876], [47.380829, 8.541293], [47.366481, 8.540493], [47.338434, 8.529976], [47.373692, 8.534101], [47.405785, 8.555947], [47.382116, 8.571926], [47.375975, 8.53816], [47.370683, 8.501969], [47.376477, 8.534542], [47.392729, 8.523272], [47.404434, 8.533567], [47.375876, 8.540978], [47.352923, 8.534071], [47.369754, 8.536813], [47.369749, 8.552305], [47.394, 8.54485], [47.380152, 8.513839], [47.354446, 8.559093], [47.378014, 8.512564], [47.377508, 8.574], [47.387477, 8.479218], [47.368003, 8.52408], [47.370762, 8.543296], [47.373763, 8.536128], [47.388613, 8.488843], [47.353599, 8.554549], [47.370259, 8.513758], [47.380795, 8.581791], [47.387008, 8.546123], [47.359706, 8.55089], [47.416023, 8.50628], [47.366966, 8.537696], [47.38676, 8.553177], [47.385123, 8.50839], [47.348024, 8.528041], [47.358527, 8.551898], [47.42274, 8.539086], [47.372508, 8.517511], [47.404225, 8.561002], [47.374096, 8.54457], [47.391252, 8.541575], [47.414249, 8.534312], [47.405952, 8.581111], [47.374702, 8.487325], [47.398265, 8.53711], [47.377397, 8.509281], [47.381478, 8.503721], [47.370915, 8.547046], [47.411939, 8.545515], [47.365713, 8.567764], [47.37748, 8.499337], [47.35869, 8.590332], [47.363298, 8.533649], [47.399672, 8.51769], [47.367903, 8.52997], [47.373652, 8.536457], [47.425712, 8.493379], [47.405282, 8.480692], [47.391688, 8.517317], [47.381461, 8.517216], [47.398122, 8.591582], [47.373567, 8.519718], [47.35144, 8.576701], [47.354088, 8.57542], [47.375882, 8.510733], [47.369233, 8.52817], [47.413995, 8.54304], [47.39813, 8.536219], [47.40518, 8.503797], [47.36648, 8.532999], [47.394982, 8.524762], [47.379393, 8.523888], [47.367781, 8.560459], [47.378784, 8.514937], [47.388317, 8.519977], [47.373966, 8.538436], [47.384979, 8.537167], [47.377125, 8.535389], [47.392649, 8.534596], [47.389429, 8.511655], [47.407577, 8.585068], [47.38436, 8.548332], [47.392397, 8.491117], [47.387247, 8.518936], [47.410529, 8.549911], [47.337814, 8.53474], [47.371317, 8.53041], [47.391379, 8.540518], [47.372523, 8.478649], [47.378777, 8.542389], [47.426683, 8.553787], [47.392167, 8.492702], [47.37868, 8.523145], [47.376585, 8.54392], [47.377734, 8.507924], [47.371476, 8.547667], [47.393839, 8.505558], [47.370435, 8.521839], [47.408842, 8.537248], [47.39378, 8.54527], [47.37579, 8.536713], [47.400251, 8.586408], [47.389552, 8.491379], [47.413618, 8.480988], [47.387495, 8.518384], [47.398912, 8.53348], [47.365136, 8.564217], [47.39589, 8.526768], [47.362233, 8.559363], [47.387075, 8.477873], [47.391803, 8.491198], [47.387278, 8.488274], [47.378673, 8.541976], [47.357321, 8.554746], [47.398857, 8.533571], [47.419116, 8.507336], [47.371349, 8.515449], [47.370789, 8.524375], [47.373992, 8.538596], [47.39462, 8.488048], [47.392062, 8.499204], [47.384652, 8.549795], [47.382224, 8.499961], [47.382155, 8.514184], [47.370792, 8.537351], [47.383879, 8.509729], [47.383466, 8.530765], [47.36499, 8.532651], [47.387701, 8.538481], [47.426279, 8.55464], [47.356762, 8.573372], [47.40809, 8.547303], [47.361716, 8.552349], [47.373047, 8.532949], [47.386489, 8.483], [47.410813, 8.547492], [47.403146, 8.588338], [47.402032, 8.496898], [47.373485, 8.519848], [47.383799, 8.5326], [47.403117, 8.486427], [47.377711, 8.509366], [47.39963, 8.502825], [47.37239, 8.509895], [47.388388, 8.528614], [47.381886, 8.541805], [47.380336, 8.542964], [47.373014, 8.534484], [47.411005, 8.526334], [47.369134, 8.528128], [47.364255, 8.547464], [47.427332, 8.546126], [47.383782, 8.539116], [47.378089, 8.541885], [47.339935, 8.530178], [47.413191, 8.55377], [47.414237, 8.550704], [47.36662, 8.541873], [47.367343, 8.532116], [47.367102, 8.54412], [47.381076, 8.569758], [47.372505, 8.478675], [47.375485, 8.547949], [47.372496, 8.511076], [47.407972, 8.494591], [47.368528, 8.54652], [47.341774, 8.530719], [47.403823, 8.568055], [47.368154, 8.55725], [47.361012, 8.549872], [47.370164, 8.540966], [47.383858, 8.529224], [47.365712, 8.521862], [47.383639, 8.573428], [47.411209, 8.546546], [47.335375, 8.525308], [47.391797, 8.528644], [47.384368, 8.548399], [47.378048, 8.513836], [47.380107, 8.537821], [47.383184, 8.506099], [47.376954, 8.54206], [47.367079, 8.522843], [47.410192, 8.548539], [47.372047, 8.53498], [47.35809, 8.520304], [47.380089, 8.526352], [47.358931, 8.557626], [47.38339, 8.548206], [47.368486, 8.524368], [47.414101, 8.550794], [47.364565, 8.553613], [47.37705, 8.543347], [47.394258, 8.490213], [47.373383, 8.538226], [47.390618, 8.485942], [47.388372, 8.485647], [47.391078, 8.484773], [47.374368, 8.523508], [47.362102, 8.564484], [47.370435, 8.549247], [47.393737, 8.509768], [47.371824, 8.543318], [47.361797, 8.562544], [47.373413, 8.552991], [47.427259, 8.549134], [47.359589, 8.549088], [47.385547, 8.529483], [47.394214, 8.4931], [47.408804, 8.546006], [47.364276, 8.566648], [47.368966, 8.501803], [47.374978, 8.541794], [47.36494, 8.519821], [47.407583, 8.579026], [47.361026, 8.571544], [47.391876, 8.51838], [47.357465, 8.521774], [47.373463, 8.534586], [47.36518, 8.545696], [47.368634, 8.537293], [47.426481, 8.492811], [47.375041, 8.544589], [47.392933, 8.474583], [47.35772, 8.554423], [47.409841, 8.543868], [47.346865, 8.526866], [47.38466, 8.479322], [47.371691, 8.517402], [47.3717, 8.517402], [47.373242, 8.543665], [47.404022, 8.572498], [47.356898, 8.514071], [47.356962, 8.513993], [47.419403, 8.505553], [47.409769, 8.540991], [47.424366, 8.502816], [47.420797, 8.501618], [47.366436, 8.545113], [47.419188, 8.50637], [47.386186, 8.498451], [47.429215, 8.488001], [47.389147, 8.546313], [47.417088, 8.506885], [47.328021, 8.529683], [47.367874, 8.546162], [47.370611, 8.470137], [47.377596, 8.574147], [47.405461, 8.503485], [47.3754, 8.484769], [47.386023, 8.49866], [47.403601, 8.548296], [47.404985, 8.560488], [47.419161, 8.506357], [47.3905, 8.527889], [47.393556, 8.529091], [47.36446, 8.54858], [47.39018, 8.480662], [47.388886, 8.495405], [47.397363, 8.531779], [47.394841, 8.512877], [47.388483, 8.491199], [47.390356, 8.522164], [47.421187, 8.546356], [47.360597, 8.524419], [47.400853, 8.591866], [47.408712, 8.546203], [47.384971, 8.548411], [47.387902, 8.539095], [47.411436, 8.570456], [47.40254, 8.492483], [47.402036, 8.499415], [47.382943, 8.529947], [47.389555, 8.534639], [47.36238, 8.559088], [47.385975, 8.504804], [47.368109, 8.555422], [47.361316, 8.525493], [47.361022, 8.551593], [47.383263, 8.486646], [47.42704, 8.491735], [47.377463, 8.53578], [47.390442, 8.543479], [47.379564, 8.527639], [47.358836, 8.583769], [47.378031, 8.547975], [47.377209, 8.489599], [47.360962, 8.524784], [47.41571, 8.545222], [47.390677, 8.489308], [47.376247, 8.528432], [47.383242, 8.586359], [47.373653, 8.536404], [47.356572, 8.526759], [47.369649, 8.4671], [47.367906, 8.560608], [47.341783, 8.530719], [47.373181, 8.533031], [47.374519, 8.539891], [47.370689, 8.51676], [47.364276, 8.54618], [47.404925, 8.56943], [47.36924, 8.541622], [47.364498, 8.531396], [47.361086, 8.599862], [47.38827, 8.486996], [47.377519, 8.50972], [47.36814, 8.495788], [47.367443, 8.520507], [47.409845, 8.549075], [47.366501, 8.560816], [47.415474, 8.51699], [47.373725, 8.54292], [47.381925, 8.483427], [47.376853, 8.543184], [47.34722, 8.56679], [47.372281, 8.554715], [47.376538, 8.528054], [47.38375, 8.531115], [47.364446, 8.531236], [47.365466, 8.559934], [47.372422, 8.519032], [47.380186, 8.541783], [47.372382, 8.534736], [47.368988, 8.528443], [47.39208, 8.499217], [47.389473, 8.47229], [47.390215, 8.479828], [47.394468, 8.472957], [47.373553, 8.544943], [47.37822, 8.509853], [47.368364, 8.555123], [47.426325, 8.548027], [47.426387, 8.548108]], [[47.369699, 8.536905], [47.39214, 8.473773], [47.373017, 8.531359], [47.375614, 8.526817], [47.397218, 8.530915], [47.392629, 8.50703], [47.413379, 8.513039], [47.397027, 8.505118], [47.363356, 8.535119], [47.365984, 8.50226], [47.383743, 8.533777], [47.377257, 8.53861], [47.382077, 8.529267], [47.374993, 8.534472], [47.388773, 8.520185], [47.407791, 8.582555], [47.372963, 8.531371], [47.399638, 8.520326], [47.380207, 8.520567], [47.369872, 8.518583], [47.366048, 8.535797], [47.37704, 8.539612], [47.420468, 8.549018], [47.418509, 8.547003], [47.370106, 8.54887], [47.381772, 8.536703], [47.376955, 8.540987], [47.372659, 8.513899], [47.382741, 8.546444], [47.419942, 8.507472], [47.398651, 8.539171], [47.38467, 8.509798], [47.38666, 8.547652], [47.368744, 8.556706], [47.387924, 8.520645], [47.398023, 8.532349], [47.379635, 8.559702], [47.374159, 8.502423], [47.366135, 8.520931], [47.35964, 8.54848], [47.353664, 8.601805], [47.373494, 8.529356], [47.381115, 8.542451], [47.374386, 8.518715], [47.361435, 8.547948], [47.378341, 8.55026], [47.3738, 8.503342], [47.37883, 8.510991], [47.379962, 8.520708], [47.36792, 8.54611], [47.371351, 8.522983], [47.374086, 8.544755], [47.368835, 8.534067], [47.382923, 8.540515], [47.403402, 8.588847], [47.374483, 8.53131], [47.383968, 8.506843], [47.37165, 8.524671], [47.420912, 8.543077], [47.405822, 8.532297], [47.367629, 8.498519], [47.354846, 8.534309], [47.366952, 8.5201], [47.397751, 8.533496], [47.393444, 8.524704], [47.412153, 8.550356], [47.374996, 8.537014], [47.413972, 8.543596], [47.36905, 8.538017], [47.39554, 8.539955], [47.375757, 8.558893], [47.391948, 8.518382], [47.373628, 8.543699], [47.411424, 8.572616], [47.35764, 8.518442], [47.377414, 8.51622], [47.37017, 8.548805], [47.388635, 8.518659], [47.359922, 8.557421], [47.415141, 8.546443], [47.374609, 8.532318], [47.387129, 8.540006], [47.37549, 8.513162], [47.366468, 8.557691], [47.425879, 8.493727], [47.373157, 8.517352], [47.355299, 8.583057], [47.405608, 8.552816], [47.389303, 8.479201], [47.332947, 8.534746], [47.374467, 8.541611], [47.369458, 8.538621], [47.413875, 8.548987], [47.386828, 8.486239], [47.397832, 8.47497], [47.375915, 8.523566], [47.375203, 8.501397], [47.412055, 8.546551], [47.358946, 8.534433], [47.395992, 8.534956], [47.415904, 8.514216], [47.386914, 8.525644], [47.364477, 8.555187], [47.367065, 8.544292], [47.372732, 8.534822], [47.346868, 8.528533], [47.382103, 8.515957], [47.378769, 8.542257], [47.387509, 8.499378], [47.377119, 8.547413], [47.397332, 8.531208], [47.387246, 8.519081], [47.377617, 8.522395], [47.372771, 8.535485], [47.373438, 8.52002], [47.381833, 8.545393], [47.377045, 8.521947], [47.370711, 8.470113], [47.340563, 8.528471], [47.394948, 8.52451], [47.370206, 8.550712], [47.374723, 8.549575], [47.372487, 8.505276], [47.374119, 8.476177], [47.429962, 8.549535], [47.361751, 8.5174], [47.370165, 8.517014], [47.365119, 8.553943], [47.40954, 8.53762], [47.412587, 8.516892], [47.395965, 8.545355], [47.371725, 8.536708], [47.370106, 8.548883], [47.361474, 8.506605], [47.366184, 8.53388], [47.408532, 8.542396], [47.405132, 8.481445], [47.392542, 8.502763], [47.358826, 8.548926], [47.366439, 8.544821], [47.368044, 8.546351], [47.375618, 8.548137], [47.40996, 8.479671], [47.37447, 8.527059], [47.409072, 8.531993], [47.389242, 8.539189], [47.385848, 8.49316], [47.369448, 8.526321], [47.428191, 8.547602], [47.380565, 8.524508], [47.371837, 8.542881], [47.367208, 8.539621], [47.380807, 8.512104], [47.391394, 8.519814], [47.371535, 8.546185], [47.386162, 8.530013], [47.390649, 8.487466], [47.383629, 8.541986], [47.373912, 8.476266], [47.391972, 8.510925], [47.372834, 8.515346], [47.409584, 8.537741], [47.401975, 8.588538], [47.365732, 8.536942], [47.373949, 8.47616], [47.377075, 8.549108], [47.382992, 8.575202], [47.373137, 8.495252], [47.397389, 8.531885], [47.397597, 8.532684], [47.378756, 8.512102], [47.38892, 8.520877], [47.424992, 8.552851], [47.419808, 8.504554], [47.382024, 8.505003], [47.4118, 8.509667], [47.367584, 8.546447], [47.355786, 8.592877], [47.376895, 8.516819], [47.37835, 8.525721], [47.353406, 8.527701], [47.378083, 8.530152], [47.389445, 8.527192], [47.376156, 8.534244], [47.357487, 8.526129], [47.3797, 8.527602], [47.33589, 8.528918], [47.3701, 8.513358], [47.362086, 8.559651], [47.363741, 8.517188], [47.362048, 8.559849], [47.408672, 8.579911], [47.417199, 8.5419], [47.371478, 8.570693], [47.377166, 8.528266], [47.360296, 8.5522], [47.36156, 8.571224], [47.374877, 8.527729], [47.373425, 8.529116], [47.414368, 8.537945], [47.394715, 8.525432], [47.414324, 8.483506], [47.40952, 8.537925], [47.406035, 8.481052], [47.377539, 8.541966], [47.370686, 8.535217], [47.377067, 8.541506], [47.4113, 8.532317], [47.37996, 8.54191], [47.37515, 8.538765], [47.385497, 8.54229], [47.378691, 8.541937], [47.365243, 8.54571], [47.412094, 8.554674], [47.39566, 8.522458], [47.367374, 8.53736], [47.376488, 8.525683], [47.384205, 8.476943], [47.372739, 8.529341], [47.365071, 8.547679], [47.372943, 8.536257], [47.414301, 8.553382], [47.408091, 8.550894], [47.36794, 8.56176], [47.404994, 8.493618], [47.430248, 8.536576], [47.415548, 8.545245], [47.388973, 8.515209], [47.378937, 8.519787], [47.370215, 8.548819], [47.402203, 8.495895], [47.351907, 8.527326], [47.387574, 8.4873], [47.369947, 8.491958], [47.371065, 8.523679], [47.37368, 8.545806], [47.385078, 8.508455], [47.413157, 8.565603], [47.357608, 8.553931], [47.383572, 8.531946], [47.362458, 8.554694], [47.368255, 8.5116], [47.377625, 8.532937], [47.373992, 8.576666], [47.420287, 8.503331], [47.369118, 8.504864], [47.383133, 8.530758], [47.379054, 8.522557], [47.379388, 8.544309], [47.376594, 8.543907], [47.391907, 8.550145], [47.42209, 8.537442], [47.403225, 8.559271], [47.340434, 8.519125], [47.380555, 8.52562], [47.391299, 8.520422], [47.395978, 8.526889], [47.38321, 8.562148], [47.377256, 8.538676], [47.428803, 8.488735], [47.3762, 8.552215], [47.374357, 8.577892], [47.32954, 8.514486], [47.431381, 8.516477], [47.37024, 8.53775], [47.397485, 8.489508], [47.385654, 8.548492], [47.391693, 8.52345], [47.381978, 8.544389], [47.399381, 8.54271], [47.391207, 8.47855], [47.424203, 8.552542], [47.383602, 8.48697], [47.365723, 8.535976], [47.383238, 8.506021], [47.364554, 8.554725], [47.389045, 8.527714], [47.39958, 8.51696], [47.417737, 8.506673], [47.390314, 8.490665], [47.404935, 8.571166], [47.390069, 8.537272], [47.377479, 8.541687], [47.339326, 8.526977], [47.366035, 8.562448], [47.336924, 8.535621], [47.369073, 8.541275], [47.373862, 8.524755], [47.405147, 8.481776], [47.399034, 8.513716], [47.385267, 8.530498], [47.392598, 8.539019], [47.373594, 8.530245], [47.383359, 8.528724], [47.367487, 8.545346], [47.413842, 8.546813], [47.377017, 8.546776], [47.426489, 8.492944], [47.363975, 8.531505], [47.410731, 8.534412], [47.403876, 8.571832], [47.360354, 8.52538], [47.396871, 8.54087], [47.414587, 8.558199], [47.36379, 8.574939], [47.36449, 8.554843], [47.377328, 8.526349], [47.382888, 8.482334], [47.413979, 8.546657], [47.383227, 8.530323], [47.364585, 8.566323], [47.38005, 8.514221], [47.39129, 8.520382], [47.401928, 8.499387], [47.393894, 8.529456], [47.36109, 8.522642], [47.408821, 8.579331], [47.383654, 8.508731], [47.389757, 8.521781], [47.353587, 8.576098], [47.379855, 8.5206], [47.378245, 8.520581], [47.400701, 8.584602], [47.358729, 8.526976], [47.368099, 8.52154], [47.378108, 8.532284], [47.379415, 8.537688], [47.37588, 8.549043], [47.373002, 8.561986], [47.383465, 8.58745], [47.381448, 8.503098], [47.392104, 8.500489], [47.358035, 8.523255], [47.380506, 8.544014], [47.386724, 8.547534], [47.387611, 8.500016], [47.396347, 8.52018], [47.370112, 8.529419], [47.396112, 8.527064], [47.389147, 8.527332], [47.33502, 8.531441], [47.371753, 8.491133], [47.368863, 8.501231], [47.406959, 8.586619], [47.363083, 8.563498], [47.387772, 8.527185], [47.3754, 8.524747], [47.375375, 8.48559], [47.363094, 8.549412], [47.369561, 8.525767], [47.393878, 8.506168], [47.372731, 8.534889], [47.34376, 8.529952], [47.374859, 8.525848], [47.387482, 8.525563], [47.405203, 8.577717], [47.384112, 8.543255], [47.389949, 8.545137], [47.354026, 8.556014], [47.403898, 8.56962], [47.387665, 8.527116], [47.382256, 8.512054], [47.366409, 8.545191], [47.361016, 8.520959], [47.367424, 8.555619], [47.370476, 8.515497], [47.377636, 8.505869], [47.394696, 8.525485], [47.373269, 8.535125], [47.37764, 8.498599], [47.387651, 8.5295], [47.383264, 8.506101], [47.36828, 8.524297], [47.376989, 8.543107], [47.356694, 8.534757], [47.413152, 8.540942], [47.386044, 8.548142], [47.39127, 8.515785], [47.391253, 8.526302], [47.374322, 8.537887], [47.369153, 8.528089], [47.370686, 8.557727], [47.412259, 8.556215], [47.405866, 8.566098], [47.375627, 8.493461], [47.368429, 8.534257], [47.413957, 8.525215], [47.373605, 8.536668], [47.381085, 8.528505], [47.383548, 8.545746], [47.36859, 8.534313], [47.38937, 8.486633], [47.360717, 8.553361], [47.419744, 8.504645], [47.423402, 8.539497], [47.339103, 8.519125], [47.419115, 8.506448], [47.370981, 8.526921], [47.370358, 8.548915], [47.388671, 8.51768], [47.39377, 8.49635], [47.426008, 8.493491], [47.405544, 8.585078], [47.408436, 8.550596], [47.397197, 8.531166], [47.418497, 8.508159], [47.388939, 8.520771], [47.362479, 8.533725], [47.382289, 8.514266], [47.336347, 8.529986], [47.358268, 8.55458], [47.39147, 8.505881], [47.378841, 8.528962], [47.373508, 8.534573], [47.362424, 8.510794], [47.400286, 8.494055], [47.418375, 8.546881], [47.394723, 8.525538], [47.410369, 8.536524], [47.377189, 8.539999], [47.390865, 8.523552], [47.387607, 8.529393], [47.368173, 8.559951], [47.326261, 8.514975], [47.363496, 8.499959], [47.380138, 8.54304], [47.379061, 8.524702], [47.376884, 8.540933], [47.424266, 8.501011], [47.37247, 8.526409], [47.366946, 8.560376], [47.366874, 8.545413], [47.352043, 8.573007], [47.366123, 8.533601], [47.399193, 8.520834], [47.365517, 8.521567], [47.381824, 8.5482], [47.384136, 8.527415], [47.35148, 8.560712], [47.368637, 8.559431], [47.349916, 8.534327], [47.373932, 8.502657], [47.376604, 8.568961], [47.379677, 8.511724], [47.388079, 8.529019], [47.382509, 8.548069], [47.415506, 8.550598], [47.354779, 8.523268], [47.415003, 8.54579], [47.368475, 8.523692], [47.37003, 8.54091], [47.376491, 8.528331], [47.365099, 8.521095], [47.332885, 8.529902], [47.391028, 8.488335], [47.364614, 8.504562], [47.377666, 8.551265], [47.373442, 8.534877], [47.354133, 8.563468], [47.407561, 8.584949], [47.413332, 8.531484], [47.378836, 8.542761], [47.343273, 8.535712], [47.36075, 8.551852], [47.383146, 8.513979], [47.361364, 8.602622], [47.337941, 8.536463], [47.356478, 8.535799], [47.36986, 8.519815], [47.381459, 8.513547], [47.395845, 8.53343], [47.359959, 8.589379], [47.367001, 8.563965], [47.387672, 8.53962], [47.377858, 8.509105], [47.374323, 8.543436], [47.373639, 8.536867], [47.376447, 8.528185], [47.410901, 8.557975], [47.409717, 8.576051], [47.379002, 8.547082], [47.376834, 8.544256], [47.378816, 8.539225], [47.364616, 8.516901], [47.368312, 8.534228], [47.39971, 8.491142], [47.422273, 8.537101], [47.393615, 8.524774], [47.378468, 8.51019], [47.384857, 8.531999], [47.349407, 8.527249], [47.360415, 8.552017], [47.386031, 8.515255], [47.377749, 8.537932], [47.374069, 8.475752], [47.397358, 8.531262], [47.373492, 8.485924], [47.352773, 8.509779], [47.404294, 8.569562], [47.412207, 8.555008], [47.3909, 8.478663], [47.366838, 8.534079], [47.378685, 8.575044], [47.365782, 8.520195], [47.364286, 8.546127], [47.356603, 8.510028], [47.369005, 8.53799], [47.376083, 8.559628], [47.411107, 8.526098], [47.426329, 8.492742], [47.378139, 8.499125], [47.365956, 8.49556], [47.410859, 8.57157], [47.366398, 8.520711], [47.357659, 8.535452], [47.376438, 8.534872], [47.36434, 8.534769], [47.425615, 8.494146], [47.387886, 8.482683], [47.373414, 8.503295], [47.405906, 8.58494], [47.37025, 8.548846], [47.387565, 8.488372], [47.392952, 8.485485], [47.40834, 8.544632], [47.366728, 8.545675], [47.357157, 8.522006], [47.413783, 8.54546], [47.412921, 8.537743], [47.379079, 8.500508], [47.383306, 8.51328], [47.365679, 8.505166], [47.365693, 8.526813], [47.382156, 8.529467], [47.364509, 8.530271], [47.425962, 8.49357], [47.368159, 8.560481], [47.366416, 8.540624], [47.410819, 8.529842], [47.384432, 8.528467], [47.366856, 8.544459], [47.406606, 8.575044], [47.379465, 8.523916], [47.398194, 8.536154], [47.365894, 8.530246], [47.382594, 8.55052], [47.387368, 8.519428], [47.372169, 8.522006], [47.398776, 8.494886], [47.375011, 8.528751], [47.407353, 8.547195], [47.400362, 8.477655], [47.38599, 8.498275], [47.379794, 8.506866], [47.414154, 8.527273], [47.367712, 8.519625], [47.369137, 8.527903], [47.405085, 8.478675], [47.373385, 8.519966], [47.375786, 8.53997], [47.364306, 8.548722], [47.421461, 8.497894], [47.365088, 8.530839], [47.391744, 8.484799], [47.373258, 8.531549], [47.40123, 8.545067], [47.393631, 8.511435], [47.380226, 8.536592], [47.375091, 8.540247], [47.377877, 8.5215], [47.393501, 8.541568], [47.409332, 8.550058], [47.373892, 8.503093], [47.385568, 8.532927], [47.377499, 8.535794], [47.393208, 8.539244], [47.382557, 8.529793], [47.37535, 8.561003], [47.40271, 8.535161], [47.362881, 8.530224], [47.376692, 8.548729], [47.389634, 8.521434], [47.392036, 8.51082], [47.424484, 8.536378], [47.419613, 8.548179], [47.360511, 8.524047], [47.405553, 8.585131], [47.369289, 8.547846], [47.377628, 8.538393], [47.382766, 8.539995], [47.388505, 8.488815], [47.378094, 8.510831], [47.382105, 8.488305], [47.407266, 8.585631], [47.414239, 8.509531], [47.380041, 8.547488], [47.42553, 8.55766], [47.381211, 8.518005], [47.366728, 8.541928], [47.40303, 8.555213], [47.378294, 8.520198], [47.392678, 8.532544], [47.407346, 8.550706], [47.418598, 8.554585], [47.385922, 8.542074], [47.365036, 8.566174], [47.37908, 8.559439], [47.401953, 8.499639], [47.374615, 8.549546], [47.38809, 8.520131], [47.388763, 8.515536], [47.375807, 8.551915], [47.372372, 8.531107], [47.386701, 8.488342], [47.376822, 8.52467], [47.371778, 8.536829], [47.405669, 8.591546], [47.378883, 8.519759], [47.385868, 8.532589], [47.378429, 8.526941], [47.398632, 8.53925], [47.386227, 8.52506], [47.335036, 8.527921], [47.391533, 8.545117], [47.377815, 8.507925], [47.376596, 8.539007], [47.418097, 8.538354], [47.362804, 8.548731], [47.3377, 8.525819], [47.368292, 8.52684], [47.377389, 8.54824], [47.378164, 8.509985], [47.396598, 8.542228], [47.401606, 8.551792], [47.391796, 8.518233], [47.411487, 8.546671], [47.335127, 8.519203], [47.373265, 8.552418], [47.395554, 8.5299], [47.39941, 8.548169], [47.384773, 8.509323], [47.38293, 8.515007], [47.40186, 8.485183], [47.37369, 8.537199], [47.355907, 8.555947], [47.406853, 8.550603], [47.3767, 8.544174], [47.363987, 8.535913], [47.39769, 8.533269], [47.396262, 8.545361], [47.357902, 8.554228], [47.387341, 8.516553], [47.390872, 8.478755], [47.387807, 8.488443], [47.359221, 8.527303], [47.41383, 8.52728], [47.409167, 8.547484], [47.404748, 8.494011], [47.366286, 8.552352], [47.407479, 8.585901], [47.389873, 8.512247], [47.367382, 8.494039], [47.411107, 8.571072], [47.365922, 8.545248], [47.382362, 8.563283], [47.380501, 8.525646], [47.408712, 8.546216], [47.370344, 8.514237], [47.370503, 8.515551], [47.368295, 8.539776], [47.378918, 8.519813], [47.377392, 8.529052], [47.3753, 8.543853], [47.378993, 8.511816], [47.408138, 8.536624], [47.378195, 8.510608], [47.386057, 8.529706], [47.398813, 8.529649], [47.383397, 8.548392], [47.3858, 8.545448], [47.363228, 8.549521], [47.388425, 8.539913], [47.377214, 8.540212], [47.370163, 8.539205], [47.378618, 8.528785], [47.379462, 8.527982], [47.366858, 8.549927], [47.369014, 8.537963], [47.394909, 8.522985], [47.366921, 8.544302], [47.379934, 8.528561], [47.372544, 8.534739], [47.389632, 8.527395], [47.361908, 8.514067], [47.379516, 8.528936], [47.390078, 8.547657], [47.385829, 8.474392], [47.354488, 8.52358], [47.39159, 8.514308], [47.372517, 8.534712], [47.404966, 8.555956], [47.42604, 8.54765], [47.377329, 8.512736], [47.368365, 8.496746], [47.370287, 8.556275], [47.414234, 8.483478], [47.403504, 8.497272], [47.363259, 8.554671], [47.368021, 8.556135], [47.375823, 8.538938], [47.376749, 8.538123], [47.3779, 8.51137], [47.391806, 8.477952], [47.388323, 8.547739], [47.403612, 8.497234], [47.407448, 8.548562], [47.38475, 8.531957], [47.389087, 8.486151], [47.389899, 8.476895], [47.40904, 8.547601], [47.366932, 8.545043], [47.406816, 8.550629], [47.381682, 8.516651], [47.374093, 8.544914], [47.384313, 8.516174], [47.388147, 8.497457], [47.355622, 8.508142], [47.359996, 8.511751], [47.375277, 8.485403], [47.383702, 8.498666], [47.361036, 8.521754], [47.392818, 8.524413], [47.379046, 8.529192], [47.360757, 8.524594], [47.413754, 8.546586], [47.383274, 8.506075], [47.366418, 8.545139], [47.365354, 8.538868], [47.406178, 8.484062], [47.387306, 8.488116], [47.356583, 8.600426], [47.367338, 8.537359], [47.403136, 8.486268], [47.432504, 8.528192], [47.374966, 8.544892], [47.411201, 8.54648], [47.333516, 8.534506], [47.374398, 8.521271], [47.398312, 8.536965], [47.411172, 8.570848], [47.377737, 8.509552], [47.39625, 8.527663], [47.382946, 8.550382], [47.36772, 8.488511], [47.374857, 8.528947], [47.411325, 8.572666], [47.35107, 8.579618], [47.374818, 8.530151], [47.369467, 8.526255], [47.354032, 8.508891], [47.406866, 8.586921], [47.332941, 8.518259], [47.403869, 8.485779], [47.378576, 8.575148], [47.383256, 8.532959], [47.343848, 8.530126], [47.378552, 8.528162], [47.353484, 8.576466], [47.428002, 8.545742], [47.398841, 8.510321], [47.370057, 8.540858], [47.370188, 8.548792], [47.375767, 8.491888], [47.396588, 8.493187], [47.381131, 8.517871], [47.403141, 8.502485], [47.360126, 8.551177], [47.425241, 8.494722], [47.413837, 8.545435], [47.35935, 8.592716], [47.339898, 8.530244], [47.330064, 8.515118], [47.426748, 8.49222], [47.372981, 8.531318], [47.39314, 8.5265], [47.39118, 8.489464], [47.348395, 8.562513], [47.374845, 8.518658], [47.378174, 8.507032], [47.384408, 8.528162], [47.387419, 8.5398], [47.396013, 8.545038], [47.370271, 8.514315], [47.365723, 8.562204], [47.354181, 8.555792], [47.375426, 8.539075], [47.366946, 8.539814], [47.37653, 8.536463], [47.373493, 8.529502], [47.353034, 8.500982], [47.399637, 8.495115], [47.357365, 8.521851], [47.370152, 8.548791], [47.405894, 8.59061], [47.374803, 8.49792], [47.361138, 8.600989], [47.367382, 8.494026], [47.390592, 8.489796], [47.378371, 8.54058], [47.375258, 8.550036], [47.366714, 8.537691], [47.364486, 8.552433], [47.371715, 8.519574], [47.385821, 8.530006], [47.404386, 8.572082], [47.369601, 8.555612], [47.395549, 8.542816], [47.381334, 8.542151], [47.418088, 8.538367], [47.420583, 8.513051], [47.377083, 8.539798], [47.392843, 8.537938], [47.383577, 8.488691], [47.381819, 8.490074], [47.363833, 8.534136], [47.366752, 8.542167], [47.366557, 8.544718], [47.408304, 8.577054], [47.33415, 8.515902], [47.378881, 8.542762], [47.413747, 8.553874], [47.351035, 8.580425], [47.371907, 8.536461], [47.38323, 8.505994], [47.414152, 8.518805], [47.361324, 8.535038], [47.378403, 8.520094], [47.399582, 8.539574], [47.418504, 8.54752], [47.415492, 8.546463], [47.409964, 8.535602], [47.378048, 8.508963], [47.376944, 8.528897], [47.370895, 8.508144], [47.416518, 8.554807], [47.428811, 8.48892], [47.361466, 8.565119], [47.407888, 8.478027], [47.39267, 8.52286], [47.408719, 8.550165], [47.344551, 8.519513], [47.351046, 8.581973], [47.386802, 8.489192], [47.370794, 8.535259], [47.368157, 8.53445], [47.402735, 8.499694], [47.374752, 8.527647], [47.390845, 8.478794], [47.40963, 8.576698], [47.334984, 8.528661], [47.387411, 8.493389], [47.383589, 8.543297], [47.359477, 8.535424], [47.354806, 8.574721], [47.384618, 8.494897], [47.383068, 8.529062], [47.368489, 8.530736], [47.388395, 8.491011], [47.374478, 8.539453], [47.3677, 8.495634], [47.355369, 8.554837], [47.376349, 8.488231], [47.391103, 8.487965], [47.367111, 8.5442], [47.376119, 8.510354], [47.369155, 8.556145], [47.405618, 8.549941], [47.413439, 8.536323], [47.37747, 8.548308], [47.409531, 8.53762], [47.352888, 8.488431], [47.351755, 8.527283], [47.427752, 8.537055], [47.356457, 8.523686], [47.374826, 8.516843], [47.415725, 8.529479], [47.37017, 8.548792], [47.36839, 8.493993], [47.378117, 8.539859], [47.37004, 8.564082], [47.370653, 8.516772], [47.373198, 8.547305], [47.368632, 8.553447], [47.376061, 8.535738], [47.386942, 8.498426], [47.372449, 8.523839], [47.371346, 8.546221], [47.375882, 8.510733], [47.414676, 8.520499], [47.368835, 8.500397], [47.385644, 8.521102], [47.378225, 8.515111], [47.366488, 8.540692], [47.371818, 8.488009], [47.379433, 8.54427], [47.418553, 8.54711], [47.35839, 8.505457], [47.335072, 8.518355], [47.381238, 8.494591], [47.422467, 8.550743], [47.35245, 8.572751], [47.366034, 8.562528], [47.379521, 8.516965], [47.367109, 8.539711], [47.366104, 8.540353], [47.359674, 8.535467], [47.39393, 8.483703], [47.39908, 8.498986], [47.391334, 8.51568], [47.415364, 8.551337], [47.402564, 8.492762], [47.370152, 8.548804], [47.399612, 8.468036], [47.375404, 8.528177], [47.336413, 8.521069], [47.334935, 8.53001], [47.376503, 8.511607], [47.424971, 8.529536], [47.359245, 8.592422], [47.353272, 8.576144], [47.385012, 8.508785], [47.409362, 8.549701], [47.380774, 8.536709], [47.38934, 8.521163], [47.398294, 8.536938], [47.369951, 8.551899], [47.353559, 8.576216], [47.403722, 8.486121], [47.378579, 8.519501], [47.387671, 8.48656], [47.357918, 8.520473], [47.35762, 8.521486], [47.377903, 8.509079], [47.387287, 8.484235], [47.363032, 8.563219], [47.388183, 8.497471], [47.373785, 8.536671], [47.375765, 8.516544], [47.373786, 8.537479], [47.418124, 8.538354], [47.410708, 8.550021], [47.391411, 8.53616], [47.39484, 8.538801], [47.356266, 8.526753], [47.384431, 8.498575], [47.381522, 8.515482], [47.371894, 8.56579], [47.376132, 8.516737], [47.374433, 8.51853], [47.383238, 8.49924], [47.36555, 8.598741], [47.377652, 8.527269], [47.370063, 8.503837], [47.389621, 8.512255], [47.373765, 8.534036], [47.423552, 8.502376], [47.354464, 8.553481], [47.422827, 8.535668], [47.358263, 8.585332], [47.386815, 8.535165], [47.381841, 8.529447], [47.373648, 8.519772], [47.377247, 8.538716], [47.35651, 8.488727], [47.378408, 8.540501], [47.381342, 8.508724], [47.369824, 8.510241], [47.414273, 8.534617], [47.369651, 8.577182], [47.373056, 8.552692], [47.360454, 8.516605], [47.355025, 8.554076], [47.340171, 8.529918], [47.370842, 8.548117], [47.379872, 8.554781], [47.349855, 8.561287], [47.419126, 8.506237], [47.378112, 8.526206], [47.377044, 8.548577], [47.392489, 8.502722], [47.391114, 8.522842], [47.361315, 8.525585], [47.387097, 8.489357], [47.368997, 8.50138], [47.386089, 8.54809], [47.373175, 8.527959], [47.386166, 8.528701], [47.387797, 8.529291], [47.34294, 8.535825], [47.396097, 8.539993], [47.36401, 8.551457], [47.375667, 8.527004], [47.397065, 8.480254], [47.403216, 8.559232], [47.390556, 8.536196], [47.424771, 8.502837], [47.384431, 8.531461], [47.379985, 8.52786], [47.366161, 8.521024], [47.383328, 8.543358], [47.367396, 8.545358], [47.392589, 8.523826], [47.379865, 8.524375], [47.4041, 8.564576], [47.383651, 8.548159], [47.380268, 8.541612], [47.372389, 8.5207], [47.370456, 8.532048], [47.36801, 8.520466], [47.394164, 8.51799], [47.373453, 8.598278], [47.356912, 8.55524], [47.397547, 8.48168], [47.387276, 8.488499], [47.393417, 8.500569], [47.378606, 8.542346], [47.374669, 8.545787], [47.377398, 8.529436], [47.37921, 8.522295], [47.376376, 8.528077], [47.370783, 8.546779], [47.371915, 8.564612], [47.380743, 8.578902], [47.385135, 8.536839], [47.341443, 8.529574], [47.397311, 8.531513], [47.385797, 8.548534], [47.399169, 8.542335], [47.379654, 8.527694], [47.396783, 8.540682], [47.363839, 8.5317], [47.373362, 8.529128], [47.412099, 8.546631], [47.394171, 8.524971], [47.359306, 8.592569], [47.374455, 8.539956], [47.362077, 8.547577], [47.373902, 8.536621], [47.387733, 8.529409], [47.370184, 8.535988], [47.364204, 8.526333], [47.409323, 8.543459], [47.414432, 8.475518], [47.349557, 8.532374], [47.379108, 8.522585], [47.354057, 8.525398], [47.389247, 8.494313], [47.368058, 8.560704], [47.373072, 8.533095], [47.369837, 8.52903], [47.361548, 8.561374], [47.363701, 8.532015], [47.361846, 8.52647], [47.414213, 8.518091], [47.37016, 8.51271], [47.377958, 8.548067], [47.361859, 8.569178], [47.368921, 8.525012], [47.383348, 8.49903], [47.408027, 8.547315], [47.367951, 8.534393], [47.39419, 8.518056], [47.402479, 8.49325], [47.399207, 8.505731], [47.372843, 8.554197], [47.390164, 8.509961], [47.375957, 8.541933], [47.409266, 8.544744], [47.366094, 8.540445], [47.422104, 8.506164], [47.367146, 8.54616], [47.421306, 8.500117], [47.372627, 8.550524], [47.38628, 8.531843], [47.406311, 8.562914], [47.370707, 8.566705], [47.381818, 8.533778], [47.381097, 8.511845], [47.409929, 8.541259], [47.370859, 8.548223], [47.398164, 8.518309], [47.37539, 8.489854], [47.377702, 8.509406], [47.400312, 8.582103], [47.353678, 8.512047], [47.36457, 8.537077], [47.423794, 8.516933], [47.352188, 8.558133], [47.362803, 8.548784], [47.360453, 8.561073], [47.380626, 8.525754], [47.385981, 8.518658], [47.408786, 8.540348], [47.386089, 8.543362], [47.363234, 8.517509], [47.390841, 8.522214], [47.397146, 8.518487], [47.397012, 8.530765], [47.384966, 8.50885], [47.40896, 8.482858], [47.426418, 8.54392], [47.372937, 8.520738], [47.388517, 8.531226], [47.382949, 8.551892], [47.373434, 8.529116], [47.378443, 8.540647], [47.419237, 8.507856], [47.412175, 8.546222], [47.377161, 8.540131], [47.379288, 8.544386], [47.377247, 8.538729], [47.369696, 8.541923], [47.360356, 8.51659], [47.366595, 8.533187], [47.374748, 8.550741], [47.369222, 8.525548], [47.370794, 8.535246], [47.386154, 8.482226], [47.390565, 8.491822], [47.383207, 8.530535], [47.379463, 8.525942], [47.3558, 8.557653], [47.369247, 8.519987], [47.373745, 8.546536], [47.380889, 8.481606], [47.366396, 8.519877], [47.385572, 8.520107], [47.373759, 8.500018], [47.408878, 8.495842], [47.409474, 8.535128], [47.366936, 8.53616], [47.387054, 8.534667], [47.373256, 8.535508], [47.404468, 8.571951], [47.366587, 8.533081], [47.377068, 8.539507], [47.370208, 8.524933], [47.412955, 8.543694], [47.366475, 8.544875], [47.369346, 8.536169], [47.398474, 8.591377], [47.33642, 8.520354], [47.372893, 8.520657], [47.400006, 8.545108], [47.40238, 8.583049], [47.39054, 8.545414], [47.383281, 8.4787], [47.397363, 8.533647], [47.393762, 8.493343], [47.354887, 8.574683], [47.370501, 8.548997], [47.372784, 8.535048], [47.383714, 8.540598], [47.376718, 8.5442], [47.42069, 8.502517], [47.370015, 8.509993], [47.430234, 8.542714], [47.355985, 8.57374], [47.374042, 8.544648], [47.386924, 8.535114], [47.389633, 8.511964], [47.377305, 8.521144], [47.376928, 8.543808], [47.365324, 8.532552], [47.369342, 8.557209], [47.359352, 8.551267], [47.369716, 8.525545], [47.374986, 8.537173], [47.39381, 8.501888], [47.383166, 8.574888], [47.378464, 8.567359], [47.368732, 8.528822], [47.359972, 8.594397], [47.378606, 8.510801], [47.354333, 8.557794], [47.387246, 8.500591], [47.357747, 8.554424], [47.374218, 8.537475], [47.384231, 8.493883], [47.350339, 8.577948], [47.393414, 8.499906], [47.38792, 8.52483], [47.406912, 8.586843], [47.368809, 8.501257], [47.391941, 8.51813], [47.394395, 8.474055], [47.357786, 8.522945], [47.360534, 8.561101], [47.404233, 8.561996], [47.384574, 8.54288], [47.357882, 8.526164], [47.384474, 8.481054], [47.372344, 8.535953], [47.413885, 8.527202], [47.408881, 8.546445], [47.37437, 8.541384], [47.358179, 8.574779], [47.365063, 8.531567], [47.391014, 8.523025], [47.383212, 8.505981], [47.398989, 8.499103], [47.369287, 8.547992], [47.382521, 8.588291], [47.368369, 8.547165], [47.387119, 8.48198], [47.377153, 8.526769], [47.368915, 8.535194], [47.378468, 8.540794], [47.378067, 8.547923], [47.370856, 8.549508], [47.39743, 8.532257], [47.384472, 8.516509], [47.363606, 8.575305], [47.387991, 8.526898], [47.362545, 8.535315], [47.361508, 8.576465], [47.362167, 8.547526], [47.368564, 8.547474], [47.38463, 8.531292], [47.378087, 8.483087], [47.380315, 8.48333], [47.425887, 8.493926], [47.397378, 8.532018], [47.36545, 8.539174], [47.393795, 8.52854], [47.376938, 8.541808], [47.374774, 8.551774], [47.369595, 8.533632], [47.370151, 8.548937], [47.406987, 8.550632], [47.360414, 8.526679], [47.365998, 8.533492], [47.374948, 8.544839], [47.393347, 8.529338], [47.386197, 8.498226], [47.382134, 8.5719], [47.358562, 8.508254], [47.342, 8.530604], [47.37859, 8.54216], [47.382699, 8.488316], [47.378773, 8.491748], [47.356361, 8.535783], [47.411305, 8.527944], [47.371502, 8.547773], [47.362389, 8.559062], [47.387247, 8.537094], [47.371891, 8.542829], [47.35178, 8.530328], [47.377027, 8.540075], [47.431346, 8.516463], [47.358446, 8.532133], [47.415459, 8.48333], [47.407166, 8.550729], [47.353507, 8.553911], [47.384643, 8.53471], [47.374931, 8.544746], [47.36129, 8.576712], [47.359639, 8.593543], [47.405195, 8.50503], [47.409154, 8.549856], [47.406657, 8.551288], [47.430397, 8.536076], [47.362685, 8.575749], [47.359552, 8.522637], [47.411108, 8.570913], [47.414525, 8.517461], [47.376503, 8.511607], [47.364001, 8.551457], [47.390108, 8.52563], [47.37896, 8.508597], [47.399936, 8.467022], [47.418314, 8.548523], [47.415298, 8.51749], [47.378128, 8.509984], [47.418114, 8.53838], [47.389329, 8.521375], [47.382412, 8.505832], [47.348405, 8.534296], [47.414683, 8.544458], [47.366263, 8.553821], [47.356987, 8.553031], [47.410428, 8.543615], [47.415971, 8.50893], [47.374601, 8.532239], [47.384688, 8.549717], [47.389814, 8.511755], [47.387921, 8.48577], [47.426312, 8.545548], [47.369603, 8.535685], [47.387555, 8.519697], [47.393862, 8.505028], [47.414897, 8.546596], [47.359131, 8.573012], [47.358085, 8.555808], [47.415056, 8.546878], [47.408069, 8.572584], [47.385811, 8.547065], [47.376611, 8.518349], [47.377, 8.535281], [47.369992, 8.491919], [47.359309, 8.55762], [47.382101, 8.501601], [47.374789, 8.527582], [47.378987, 8.508531], [47.378014, 8.536507], [47.401715, 8.581166], [47.38145, 8.528949], [47.39341, 8.512941], [47.379846, 8.542478], [47.416797, 8.567787], [47.405162, 8.481101], [47.34411, 8.531878], [47.417428, 8.553726], [47.361001, 8.54819], [47.352872, 8.572866], [47.377197, 8.526902], [47.3734, 8.531698], [47.406112, 8.568501], [47.377246, 8.538808], [47.370545, 8.49144], [47.383421, 8.484066], [47.378786, 8.542363], [47.380545, 8.517025], [47.377189, 8.540026], [47.375358, 8.540597], [47.366512, 8.544743], [47.383451, 8.533268], [47.407939, 8.5367], [47.376865, 8.538165], [47.357276, 8.536027], [47.398389, 8.548677], [47.38753, 8.487233], [47.381462, 8.537227], [47.377122, 8.543308], [47.373217, 8.533005], [47.368713, 8.500897], [47.397473, 8.532443], [47.367581, 8.509613], [47.377871, 8.517381], [47.429953, 8.549561], [47.371396, 8.542859], [47.38363, 8.573468], [47.368164, 8.557237], [47.375705, 8.523866], [47.417912, 8.505284], [47.382541, 8.531514], [47.366082, 8.532249], [47.367637, 8.501578], [47.403089, 8.547199], [47.366567, 8.531439], [47.370703, 8.546671], [47.410971, 8.536669], [47.389954, 8.538978], [47.409442, 8.537579], [47.383217, 8.539872], [47.386446, 8.548415], [47.358395, 8.581999], [47.407713, 8.543479], [47.380835, 8.534963], [47.389826, 8.486934], [47.380429, 8.547376], [47.412924, 8.537425], [47.366444, 8.545205], [47.350348, 8.577988], [47.393335, 8.524821], [47.391433, 8.487296], [47.374185, 8.521001], [47.392303, 8.531317], [47.420212, 8.500718], [47.363585, 8.521408], [47.399434, 8.506451], [47.373199, 8.529191], [47.369922, 8.511236], [47.35957, 8.52269], [47.363061, 8.526362], [47.406495, 8.549429], [47.374078, 8.526653], [47.358983, 8.591622], [47.40395, 8.571622], [47.422538, 8.550771], [47.384495, 8.548309], [47.364257, 8.547278], [47.3892, 8.513968], [47.357547, 8.553705], [47.405702, 8.533619], [47.390681, 8.488964], [47.359744, 8.593836], [47.371964, 8.535217], [47.373029, 8.528115], [47.379424, 8.555513], [47.404573, 8.54817], [47.375507, 8.517175], [47.368327, 8.548714], [47.376935, 8.522183], [47.380309, 8.493964], [47.42423, 8.548858], [47.354781, 8.526829], [47.373853, 8.538063], [47.413117, 8.474737], [47.386256, 8.535326], [47.370859, 8.557585], [47.377033, 8.544154], [47.368583, 8.534141], [47.398932, 8.513131], [47.368105, 8.541811], [47.370994, 8.548239], [47.403042, 8.484769], [47.351677, 8.55889], [47.408785, 8.57941], [47.381172, 8.515435], [47.421023, 8.507322], [47.418115, 8.538367], [47.37017, 8.548765], [47.36342, 8.554794], [47.403885, 8.567248], [47.384358, 8.548518], [47.379176, 8.544861], [47.410384, 8.548212], [47.374961, 8.536868], [47.376667, 8.527792], [47.359687, 8.549129], [47.379952, 8.528548], [47.374014, 8.54474], [47.381933, 8.529198], [47.370571, 8.524543], [47.384658, 8.541584], [47.393295, 8.494274], [47.32956, 8.529609], [47.357424, 8.521323], [47.363205, 8.563911], [47.337795, 8.534779], [47.365029, 8.502519], [47.396029, 8.545237], [47.402309, 8.486172], [47.350703, 8.601966], [47.36838, 8.548768], [47.396136, 8.538775], [47.37197, 8.538316], [47.429909, 8.542892], [47.37079, 8.546977], [47.330108, 8.529673], [47.379363, 8.542216], [47.417776, 8.509244], [47.361245, 8.525359], [47.40576, 8.577808], [47.370658, 8.546644], [47.393872, 8.505889], [47.388032, 8.529216], [47.378639, 8.541737], [47.396999, 8.530288], [47.407229, 8.55073], [47.413601, 8.523896], [47.362655, 8.558551], [47.403641, 8.496957], [47.415682, 8.512913], [47.362204, 8.5475], [47.391733, 8.519159], [47.405578, 8.5753], [47.405676, 8.575395], [47.367565, 8.534306], [47.354375, 8.526], [47.361999, 8.525507], [47.369653, 8.525583], [47.393202, 8.528501], [47.426128, 8.495084], [47.361937, 8.526392], [47.373103, 8.538405], [47.356564, 8.524734], [47.398414, 8.537537], [47.399733, 8.517837], [47.37518, 8.534701], [47.392341, 8.476373], [47.391414, 8.550956], [47.35506, 8.557002], [47.390258, 8.490955], [47.383258, 8.55713], [47.36306, 8.563114], [47.410107, 8.569368], [47.394016, 8.5251], [47.387322, 8.539613], [47.418883, 8.544532], [47.374174, 8.52116], [47.390895, 8.522189], [47.371588, 8.515904], [47.353474, 8.525214], [47.369561, 8.541907], [47.386615, 8.534446], [47.373912, 8.536515], [47.354388, 8.52367], [47.377005, 8.544246], [47.360751, 8.553533], [47.42932, 8.543318], [47.382501, 8.500152], [47.375729, 8.538459], [47.404575, 8.588502], [47.364401, 8.531182], [47.383656, 8.573588], [47.381817, 8.545233], [47.375372, 8.524799], [47.368753, 8.554005], [47.381066, 8.518095], [47.378224, 8.530486], [47.40686, 8.550736], [47.368815, 8.524798], [47.405733, 8.591455], [47.376533, 8.525697], [47.366898, 8.545771], [47.354868, 8.574762], [47.375953, 8.515608], [47.376182, 8.536178], [47.407518, 8.579237], [47.377339, 8.488145], [47.367351, 8.54541], [47.411829, 8.524827], [47.396582, 8.521099], [47.37246, 8.533148], [47.372986, 8.517442], [47.339927, 8.530046], [47.402307, 8.499302], [47.381469, 8.503734], [47.411091, 8.545762], [47.394165, 8.527448], [47.3462, 8.534449], [47.394026, 8.525007], [47.37009, 8.512524], [47.392837, 8.490198], [47.357102, 8.522058], [47.400909, 8.548558], [47.428302, 8.489507], [47.371783, 8.54284], [47.366461, 8.498403], [47.367687, 8.522273], [47.392044, 8.499203], [47.360307, 8.523659], [47.371964, 8.519923], [47.367051, 8.543881], [47.384704, 8.531996], [47.396002, 8.545289], [47.367165, 8.546995], [47.369029, 8.519295], [47.377354, 8.525422], [47.338906, 8.538124], [47.388076, 8.540714], [47.35968, 8.522441], [47.376494, 8.511633], [47.378495, 8.523684], [47.371102, 8.531227], [47.352268, 8.573012], [47.360414, 8.526679], [47.36396, 8.533159], [47.407563, 8.544099], [47.408961, 8.579798], [47.360863, 8.554966], [47.37478, 8.515108], [47.389543, 8.521591], [47.369331, 8.533998], [47.363751, 8.575203], [47.369483, 8.540701], [47.368443, 8.538441], [47.368474, 8.541845], [47.369586, 8.533632], [47.379462, 8.49506], [47.400031, 8.494408], [47.360857, 8.585017], [47.417126, 8.523027], [47.384872, 8.531364], [47.374142, 8.532243], [47.373056, 8.547104], [47.369134, 8.548015], [47.372559, 8.478689], [47.414072, 8.541597], [47.390897, 8.526864], [47.369032, 8.532336], [47.375551, 8.526895], [47.371429, 8.546064], [47.392638, 8.51572], [47.383482, 8.530024], [47.366977, 8.544104], [47.36702, 8.539551], [47.363408, 8.575394], [47.378369, 8.541745], [47.381018, 8.518438], [47.384539, 8.480737], [47.407465, 8.530701], [47.382137, 8.516117], [47.387683, 8.519434], [47.38278, 8.514673], [47.399885, 8.504447], [47.394188, 8.490053], [47.387457, 8.519549], [47.338778, 8.528792], [47.344755, 8.533162], [47.384349, 8.494786], [47.363687, 8.535325], [47.385875, 8.535662], [47.360544, 8.562875], [47.389848, 8.477596], [47.389839, 8.477609], [47.374551, 8.539362], [47.416521, 8.553535], [47.344141, 8.532435], [47.370224, 8.541232], [47.379026, 8.540805], [47.381158, 8.518812], [47.389754, 8.524006], [47.37735, 8.512392], [47.426919, 8.536667], [47.370692, 8.519342], [47.414071, 8.541663], [47.37653, 8.527021], [47.38157, 8.541917], [47.403117, 8.486413], [47.363386, 8.534882], [47.385537, 8.530503], [47.392054, 8.517589], [47.357843, 8.521662], [47.368961, 8.528429], [47.371975, 8.534992], [47.370637, 8.519433], [47.360533, 8.566728], [47.37808, 8.509347], [47.381593, 8.555373], [47.369014, 8.53795], [47.380091, 8.528074], [47.375942, 8.541602], [47.337195, 8.519232], [47.381309, 8.540945], [47.41053, 8.569271], [47.406321, 8.58479], [47.371756, 8.525812], [47.378362, 8.510055], [47.404242, 8.561943], [47.408741, 8.539379], [47.364556, 8.54698], [47.377907, 8.540266], [47.38376, 8.540519], [47.370174, 8.540874], [47.376865, 8.52675], [47.385364, 8.536473], [47.366943, 8.542952], [47.392802, 8.523247], [47.373871, 8.517075], [47.349076, 8.574705], [47.368028, 8.540445], [47.388799, 8.530901], [47.393361, 8.492924], [47.360502, 8.527793], [47.394229, 8.493392], [47.394912, 8.516892], [47.384577, 8.50912], [47.378886, 8.515588], [47.427319, 8.539034], [47.372341, 8.542786], [47.39323, 8.524567], [47.378608, 8.519383], [47.354972, 8.534285], [47.390405, 8.538881], [47.402558, 8.46951], [47.405138, 8.478782], [47.39617, 8.485667], [47.402971, 8.589699], [47.393442, 8.539262], [47.361721, 8.574074], [47.380232, 8.546339], [47.386296, 8.482507], [47.365074, 8.531421], [47.363867, 8.528669], [47.419874, 8.548211], [47.382736, 8.493151], [47.371415, 8.510299], [47.380365, 8.512294], [47.4091, 8.553605], [47.379402, 8.523888], [47.37296, 8.536363], [47.375966, 8.536226], [47.409075, 8.482012], [47.378337, 8.541347], [47.358319, 8.50531], [47.37824, 8.526884], [47.388322, 8.520388], [47.343726, 8.535378], [47.368287, 8.49734], [47.352283, 8.53415], [47.422615, 8.551277], [47.370895, 8.508184], [47.342645, 8.519422], [47.396338, 8.513424], [47.362162, 8.608279], [47.377513, 8.543793], [47.377002, 8.546458], [47.360955, 8.51594], [47.377914, 8.530016], [47.409455, 8.542853], [47.373096, 8.535373], [47.366756, 8.542696], [47.385922, 8.542021], [47.369521, 8.526216], [47.405158, 8.480478], [47.367235, 8.544401], [47.371056, 8.531292], [47.369333, 8.557208], [47.350122, 8.530612], [47.342939, 8.53593], [47.408899, 8.579664], [47.376502, 8.511779], [47.376581, 8.525407], [47.377689, 8.507896], [47.354815, 8.510786], [47.417288, 8.546792], [47.387013, 8.528494], [47.377253, 8.550277], [47.400923, 8.502109], [47.373888, 8.538104], [47.354472, 8.573933], [47.420782, 8.549118], [47.377213, 8.512641], [47.371209, 8.530421], [47.370857, 8.566099], [47.372957, 8.48541], [47.39724, 8.531405], [47.365013, 8.493423], [47.360879, 8.525034], [47.364123, 8.54619], [47.379364, 8.54211], [47.370473, 8.526394], [47.365115, 8.553453], [47.398014, 8.541754], [47.384864, 8.509219], [47.375448, 8.563918], [47.376454, 8.52837], [47.368624, 8.490065], [47.367773, 8.546385], [47.354397, 8.525616], [47.34051, 8.53023], [47.360316, 8.523645], [47.377812, 8.509183], [47.402048, 8.499058], [47.362558, 8.55835], [47.405809, 8.560889], [47.378935, 8.522833], [47.343629, 8.535164], [47.37663, 8.518244], [47.366694, 8.564978], [47.37403, 8.536491], [47.36867, 8.543888], [47.338483, 8.519099], [47.373808, 8.527628], [47.402341, 8.495593], [47.409463, 8.52295], [47.379084, 8.538515], [47.375599, 8.53508], [47.378022, 8.547975], [47.399558, 8.496968], [47.367056, 8.523399], [47.383915, 8.529874], [47.398489, 8.494841], [47.41077, 8.535102], [47.410734, 8.535088], [47.381268, 8.537713], [47.389684, 8.52476], [47.354818, 8.555011], [47.377165, 8.512957], [47.36117, 8.550219], [47.408381, 8.574777], [47.397974, 8.47423], [47.407006, 8.554276], [47.381951, 8.541594], [47.337303, 8.519287], [47.393006, 8.474465], [47.384323, 8.507341], [47.405972, 8.590943], [47.351652, 8.525759], [47.378525, 8.540477], [47.391443, 8.519444], [47.387622, 8.54391], [47.368881, 8.537828], [47.331617, 8.529823], [47.367151, 8.54003], [47.383617, 8.483302], [47.395318, 8.541526], [47.375114, 8.518796], [47.372983, 8.53684], [47.369533, 8.525912], [47.35801, 8.523082], [47.364033, 8.526356], [47.378441, 8.54556], [47.371077, 8.523375], [47.351926, 8.505037], [47.377059, 8.543307], [47.407156, 8.573969], [47.359104, 8.50706], [47.366842, 8.543188], [47.339787, 8.530559], [47.376024, 8.55919], [47.402904, 8.490993], [47.359723, 8.56769], [47.370175, 8.513028], [47.335108, 8.519229], [47.409608, 8.549415], [47.412583, 8.550577], [47.378769, 8.54227], [47.37069, 8.516733], [47.386133, 8.497417], [47.373297, 8.536953], [47.391542, 8.486226], [47.376598, 8.510059], [47.369997, 8.532939], [47.372259, 8.523928], [47.373352, 8.557385], [47.394232, 8.490146], [47.36932, 8.513104], [47.391845, 8.518751], [47.370078, 8.55643], [47.383609, 8.484176], [47.371401, 8.546116], [47.381438, 8.478531], [47.423367, 8.538449], [47.413299, 8.512865], [47.386449, 8.496297], [47.420688, 8.502689], [47.405021, 8.482794], [47.37466, 8.549534], [47.35479, 8.526829], [47.37449, 8.495769], [47.368264, 8.546819], [47.391718, 8.51888], [47.421038, 8.500801], [47.391496, 8.53856], [47.376299, 8.521879], [47.378301, 8.509802], [47.371322, 8.514455], [47.375142, 8.51869], [47.378189, 8.522804], [47.389651, 8.511938], [47.378542, 8.504179], [47.41303, 8.550864], [47.370219, 8.514142], [47.378441, 8.510229], [47.398569, 8.539209], [47.34845, 8.53435], [47.379346, 8.542149], [47.38798, 8.520394], [47.387573, 8.519671], [47.376194, 8.539634], [47.408909, 8.548194], [47.364482, 8.547243], [47.348298, 8.534254], [47.380249, 8.541784], [47.422529, 8.550771], [47.406686, 8.550149], [47.374904, 8.492811], [47.392257, 8.525673], [47.386061, 8.539706], [47.390591, 8.52201], [47.423844, 8.51932], [47.353628, 8.554364], [47.396963, 8.530287], [47.400112, 8.504199], [47.383249, 8.55713], [47.379307, 8.517702], [47.37198, 8.522016], [47.384695, 8.507984], [47.400111, 8.590512], [47.366236, 8.562108], [47.371912, 8.520637], [47.346195, 8.53302], [47.369479, 8.525897], [47.360666, 8.506429], [47.339928, 8.529914], [47.395835, 8.530661], [47.399821, 8.490734], [47.40238, 8.499184], [47.328789, 8.517831], [47.352791, 8.557245], [47.366556, 8.541964], [47.418015, 8.483102], [47.360981, 8.524758], [47.393336, 8.524781], [47.406957, 8.487496], [47.376274, 8.541622], [47.386613, 8.518393], [47.400214, 8.547788], [47.423664, 8.545984], [47.373888, 8.536289], [47.405361, 8.557925], [47.363214, 8.564918], [47.385589, 8.517352], [47.4021, 8.49735], [47.418225, 8.546613], [47.390362, 8.490375], [47.431355, 8.532689], [47.387051, 8.534984], [47.373666, 8.535914], [47.357112, 8.522918], [47.41442, 8.551291], [47.378439, 8.489914], [47.37364, 8.532021], [47.341817, 8.530839], [47.364349, 8.532902], [47.377349, 8.498898], [47.371792, 8.529599], [47.391542, 8.486226], [47.377274, 8.541458], [47.372609, 8.532608], [47.3341, 8.513559], [47.373326, 8.517634], [47.360953, 8.598814], [47.376238, 8.544495], [47.386531, 8.518537], [47.371801, 8.542841], [47.390953, 8.539939], [47.365167, 8.549892], [47.398521, 8.46828], [47.37651, 8.532953], [47.402636, 8.498672], [47.41316, 8.521979], [47.4063, 8.575951], [47.385017, 8.495554], [47.383172, 8.543646], [47.364457, 8.532905], [47.36933, 8.541677], [47.416075, 8.552187], [47.40751, 8.572718], [47.363913, 8.531464], [47.373886, 8.513461], [47.409323, 8.533058], [47.392738, 8.524239], [47.384095, 8.49988], [47.373119, 8.495225], [47.376248, 8.495353], [47.403861, 8.534231], [47.386583, 8.520644], [47.354646, 8.509565], [47.416974, 8.507439], [47.340395, 8.519469], [47.364389, 8.521915], [47.379756, 8.520624], [47.404689, 8.556692], [47.348118, 8.533271], [47.402442, 8.499304], [47.397313, 8.531301], [47.370476, 8.549738], [47.412287, 8.515322], [47.385001, 8.533896], [47.371725, 8.519548], [47.352544, 8.508318], [47.35979, 8.523158], [47.427537, 8.546356], [47.357866, 8.519293], [47.36413, 8.556702], [47.375956, 8.538252], [47.398985, 8.505422], [47.377837, 8.541866], [47.365467, 8.516323], [47.427321, 8.543568], [47.365405, 8.516255], [47.378441, 8.510255], [47.373478, 8.534917], [47.411912, 8.52846], [47.36696, 8.520179], [47.357954, 8.522313], [47.374132, 8.535195], [47.366638, 8.535266], [47.390324, 8.537886], [47.387428, 8.487628], [47.376186, 8.495299], [47.406358, 8.583744], [47.377069, 8.538434], [47.378829, 8.539715], [47.373204, 8.542896], [47.367552, 8.541283], [47.402031, 8.580193], [47.358209, 8.571629], [47.347085, 8.520676], [47.378948, 8.544273], [47.411316, 8.570824], [47.357389, 8.572777], [47.360946, 8.571449], [47.377557, 8.528724], [47.366129, 8.520547], [47.372945, 8.531291], [47.370503, 8.529891], [47.379654, 8.506519], [47.370857, 8.474803], [47.374369, 8.533903], [47.402541, 8.495279], [47.369, 8.502942], [47.37079, 8.531843], [47.369034, 8.503168], [47.370295, 8.548847], [47.36686, 8.545982], [47.372969, 8.53639], [47.360614, 8.516807], [47.407827, 8.54747], [47.375908, 8.541337], [47.37889, 8.527652], [47.387807, 8.529185], [47.402195, 8.537217], [47.356023, 8.557869], [47.402537, 8.553229], [47.375421, 8.558303], [47.365631, 8.566955], [47.413627, 8.480975], [47.391318, 8.536516], [47.360737, 8.578091], [47.379039, 8.545109], [47.379006, 8.508492], [47.405243, 8.481049], [47.385498, 8.475233], [47.371117, 8.539119], [47.413618, 8.480975], [47.384906, 8.558886], [47.387484, 8.519589], [47.364501, 8.536785], [47.387028, 8.485117], [47.360358, 8.547674], [47.379921, 8.543128], [47.413128, 8.538675], [47.373001, 8.500281], [47.375223, 8.518652], [47.389791, 8.512338], [47.416287, 8.545115], [47.378725, 8.528933], [47.369484, 8.526401], [47.372467, 8.51996], [47.35602, 8.553501], [47.37361, 8.534297], [47.388484, 8.491185], [47.339645, 8.528452], [47.340076, 8.53521], [47.390999, 8.478572], [47.367362, 8.544284], [47.377255, 8.538756], [47.367924, 8.560608], [47.371633, 8.519705], [47.407551, 8.556553], [47.350978, 8.53423], [47.360126, 8.534272], [47.373437, 8.481023], [47.389428, 8.513708], [47.352493, 8.531984], [47.369085, 8.503566], [47.3653, 8.526527], [47.41852, 8.542073], [47.393515, 8.472899], [47.369604, 8.507694], [47.371708, 8.547831], [47.379971, 8.520735], [47.343391, 8.535649], [47.377135, 8.541984], [47.387841, 8.485716], [47.367851, 8.564446], [47.332085, 8.516495], [47.357469, 8.550658], [47.37578, 8.524477], [47.392304, 8.503209], [47.374841, 8.545671], [47.377498, 8.503244], [47.410886, 8.563275], [47.373645, 8.534364], [47.383448, 8.531718], [47.418295, 8.538305], [47.371999, 8.566096], [47.375808, 8.536806], [47.368219, 8.546818], [47.405764, 8.591946], [47.377423, 8.500607], [47.400214, 8.494], [47.414389, 8.552602], [47.368074, 8.540393], [47.374009, 8.492383], [47.381048, 8.550369], [47.373646, 8.530432], [47.387779, 8.499344], [47.377653, 8.510809], [47.360872, 8.598852], [47.402361, 8.499303], [47.36681, 8.558638], [47.365661, 8.523542], [47.361601, 8.547461], [47.366185, 8.548801], [47.390431, 8.542723], [47.36747, 8.54614], [47.378647, 8.54183], [47.360271, 8.522784], [47.393327, 8.524795], [47.360935, 8.531495], [47.405186, 8.480452], [47.361897, 8.503581], [47.421357, 8.502385], [47.352264, 8.559604], [47.373451, 8.548079], [47.363527, 8.535096], [47.408602, 8.546452], [47.351421, 8.525503], [47.380089, 8.536801], [47.397437, 8.591673], [47.378312, 8.510584], [47.391913, 8.528806], [47.415958, 8.547506], [47.372602, 8.534356], [47.366272, 8.562096], [47.374768, 8.552344], [47.361739, 8.56114], [47.36966, 8.523889], [47.34539, 8.534485], [47.371854, 8.522027], [47.405047, 8.478912], [47.378038, 8.548134], [47.368846, 8.521449], [47.375546, 8.548149], [47.402122, 8.501775], [47.366556, 8.547604], [47.385437, 8.536368], [47.36821, 8.536424], [47.37639, 8.527495], [47.408876, 8.564624], [47.402077, 8.580101], [47.393623, 8.539094], [47.389758, 8.526417], [47.395065, 8.484586], [47.384998, 8.53232], [47.384198, 8.511192], [47.356227, 8.571971], [47.41393, 8.548909], [47.406836, 8.532583], [47.368518, 8.543752], [47.358699, 8.590372], [47.390888, 8.522069], [47.401552, 8.586767], [47.35046, 8.51864], [47.393369, 8.495031], [47.369315, 8.547873], [47.391638, 8.523581], [47.365228, 8.501424], [47.369108, 8.547949], [47.391551, 8.486226], [47.388254, 8.486704], [47.358059, 8.519761], [47.384227, 8.497326], [47.399757, 8.533444], [47.367881, 8.523654], [47.386574, 8.5032], [47.407128, 8.586821], [47.368228, 8.511612], [47.388063, 8.524952], [47.40976, 8.479932], [47.389111, 8.546259], [47.390779, 8.52306], [47.373066, 8.524223], [47.377398, 8.550121], [47.362746, 8.547207], [47.376274, 8.540761], [47.378517, 8.541351], [47.365731, 8.537048], [47.400909, 8.591682], [47.36024, 8.548691], [47.375511, 8.548082], [47.364366, 8.566597], [47.427402, 8.538877], [47.341756, 8.530732], [47.358834, 8.533914], [47.414308, 8.550719], [47.406504, 8.573518], [47.422493, 8.550784], [47.40951, 8.543636], [47.409435, 8.543038], [47.374974, 8.544959], [47.407093, 8.58678], [47.40564, 8.591718], [47.36455, 8.56623], [47.369305, 8.548059], [47.378982, 8.511034], [47.41079, 8.567606], [47.36907, 8.528259], [47.378877, 8.526169], [47.384336, 8.531909], [47.426491, 8.541933], [47.371084, 8.523613], [47.36063, 8.59788], [47.423697, 8.539662], [47.376749, 8.538043], [47.390754, 8.521934], [47.37606, 8.533898], [47.403104, 8.558699], [47.374732, 8.545788], [47.37454, 8.539534], [47.366475, 8.544875], [47.375261, 8.485204], [47.388591, 8.496168], [47.417893, 8.482768], [47.410208, 8.546817], [47.369977, 8.511118], [47.398951, 8.533096], [47.364441, 8.555279], [47.371235, 8.513235], [47.408382, 8.550582], [47.386769, 8.547588], [47.369615, 8.525847], [47.349017, 8.526658], [47.363062, 8.49917], [47.408754, 8.546455], [47.374528, 8.544618], [47.377435, 8.526457], [47.381213, 8.491452], [47.388599, 8.528235], [47.341175, 8.530336], [47.365686, 8.525661], [47.357893, 8.520154], [47.405332, 8.55815], [47.360542, 8.566781], [47.359129, 8.526534], [47.392023, 8.487772], [47.367549, 8.545414], [47.367501, 8.530597], [47.365758, 8.563237], [47.376648, 8.527805], [47.364033, 8.531148], [47.402787, 8.557076], [47.368141, 8.521819], [47.338006, 8.525812], [47.378931, 8.508782], [47.372802, 8.535062], [47.417182, 8.545624], [47.374723, 8.520178], [47.413496, 8.563119], [47.37509, 8.48524], [47.326405, 8.527467], [47.37617, 8.488108], [47.373365, 8.531644], [47.369656, 8.564723], [47.380118, 8.528048], [47.388496, 8.488815], [47.349837, 8.576031], [47.373167, 8.53642], [47.359436, 8.509026], [47.402209, 8.496266], [47.410895, 8.563223], [47.380635, 8.525728], [47.3729, 8.547418], [47.371105, 8.539436], [47.391421, 8.536041], [47.35664, 8.555446], [47.360107, 8.526765], [47.362209, 8.484233], [47.384778, 8.527031], [47.376734, 8.540546], [47.388197, 8.480146], [47.374531, 8.549876], [47.355577, 8.556523], [47.365428, 8.564739], [47.418125, 8.554165], [47.392093, 8.538294], [47.410671, 8.572374], [47.374708, 8.52566], [47.39949, 8.5208], [47.36277, 8.567993], [47.403574, 8.548256], [47.374415, 8.524211], [47.375183, 8.539137], [47.377153, 8.541971], [47.382808, 8.529944], [47.383478, 8.549294], [47.421484, 8.550087], [47.374518, 8.54001], [47.364862, 8.53094], [47.381094, 8.513169], [47.37822, 8.520461], [47.376706, 8.544465], [47.367219, 8.565611], [47.382703, 8.500673], [47.387149, 8.535066], [47.376746, 8.559907], [47.41995, 8.506637], [47.376502, 8.534767], [47.372631, 8.529312], [47.362894, 8.523142], [47.379194, 8.525857], [47.364555, 8.555546], [47.37745, 8.498688], [47.374109, 8.538545], [47.355773, 8.584312], [47.427449, 8.546155], [47.361577, 8.51774], [47.380362, 8.528], [47.361721, 8.565773], [47.380524, 8.493081], [47.374013, 8.544793], [47.372064, 8.534107], [47.356337, 8.511558], [47.382504, 8.529686], [47.418686, 8.547285], [47.354745, 8.574547], [47.370714, 8.557648], [47.373887, 8.536303], [47.420868, 8.550511], [47.391005, 8.521012], [47.365752, 8.550844], [47.357533, 8.535489], [47.385848, 8.529927], [47.409563, 8.549361], [47.41023, 8.54365], [47.403848, 8.570069], [47.381865, 8.51541], [47.388891, 8.495816], [47.377154, 8.553042], [47.409338, 8.544679], [47.369072, 8.521334], [47.341131, 8.536846], [47.37766, 8.508094], [47.383751, 8.548916], [47.404427, 8.574375], [47.370984, 8.531397], [47.40884, 8.54594], [47.366218, 8.49444], [47.351564, 8.525625], [47.41654, 8.545902], [47.392038, 8.538359], [47.364044, 8.55163], [47.420001, 8.538631], [47.386211, 8.535298], [47.373795, 8.536513], [47.370063, 8.541136], [47.373652, 8.544905], [47.363866, 8.517257], [47.397569, 8.505818], [47.374263, 8.538389], [47.386243, 8.540504], [47.360027, 8.589725], [47.403864, 8.569407], [47.407424, 8.574173], [47.413563, 8.48108], [47.372275, 8.535634], [47.377889, 8.498829], [47.378287, 8.530487], [47.370328, 8.602169], [47.383175, 8.506073], [47.367869, 8.494843], [47.371006, 8.535674], [47.410449, 8.544251], [47.382423, 8.540147], [47.397774, 8.532953], [47.416307, 8.545831], [47.360351, 8.525711], [47.333631, 8.52997], [47.38642, 8.496509], [47.410419, 8.550121], [47.411082, 8.545749], [47.354705, 8.57493], [47.34851, 8.57096], [47.405444, 8.480735], [47.376135, 8.55608], [47.388245, 8.486757], [47.373132, 8.53728], [47.409009, 8.539623], [47.396063, 8.522651], [47.371177, 8.539411], [47.399635, 8.543523], [47.37981, 8.547231], [47.408116, 8.58243], [47.406096, 8.547911], [47.381487, 8.530751], [47.378323, 8.52282], [47.404317, 8.557002], [47.405838, 8.573517], [47.33716, 8.519099], [47.373258, 8.53151], [47.395511, 8.484952], [47.361667, 8.503206], [47.369916, 8.490382], [47.375154, 8.519286], [47.396544, 8.528927], [47.403725, 8.534281], [47.368979, 8.543563], [47.378336, 8.548061], [47.415323, 8.483473], [47.368515, 8.530843], [47.374301, 8.519123], [47.405705, 8.591494], [47.347231, 8.532869], [47.379617, 8.559782], [47.342769, 8.531017], [47.397448, 8.532297], [47.38175, 8.543815], [47.381694, 8.509632], [47.365714, 8.535936], [47.38409, 8.497562], [47.380518, 8.556847], [47.399405, 8.547718], [47.354455, 8.553534], [47.371851, 8.499172], [47.377189, 8.539999], [47.387739, 8.484998], [47.378458, 8.545601], [47.378446, 8.54033], [47.35852, 8.531988], [47.354984, 8.510935], [47.366521, 8.540917], [47.418277, 8.510527], [47.393381, 8.524782], [47.369521, 8.555491], [47.390091, 8.52257], [47.379806, 8.542], [47.38618, 8.498212], [47.417865, 8.554093], [47.393862, 8.505015], [47.374537, 8.539852], [47.368333, 8.524431], [47.366456, 8.544888], [47.414329, 8.546691], [47.41425, 8.508299], [47.411471, 8.526569], [47.378929, 8.542432], [47.390339, 8.522111], [47.364069, 8.520558], [47.377075, 8.540672], [47.378903, 8.511761], [47.359085, 8.526427], [47.367919, 8.490369], [47.387936, 8.531718], [47.330783, 8.529634], [47.376543, 8.535099], [47.378402, 8.541084], [47.339924, 8.530324], [47.379774, 8.518678], [47.362206, 8.551962], [47.380306, 8.517576], [47.360299, 8.566802], [47.379937, 8.483441], [47.409449, 8.545304], [47.385151, 8.532323], [47.369417, 8.541904], [47.413722, 8.546188], [47.369644, 8.539856], [47.427032, 8.546504], [47.374286, 8.53786], [47.368533, 8.53083], [47.418322, 8.538305], [47.390942, 8.522017], [47.366655, 8.545713], [47.389883, 8.521771], [47.427078, 8.491484], [47.365759, 8.563078], [47.426424, 8.547062], [47.419507, 8.500029], [47.39776, 8.533496], [47.37332, 8.549519], [47.386014, 8.535268], [47.367452, 8.537666], [47.366817, 8.54573], [47.374314, 8.535861], [47.398222, 8.53691], [47.367735, 8.521969], [47.378535, 8.541325], [47.360455, 8.48723], [47.353995, 8.600198], [47.421218, 8.549617], [47.366525, 8.522514], [47.369405, 8.549755], [47.376995, 8.544339], [47.408712, 8.546216], [47.409291, 8.544877], [47.377028, 8.52862], [47.369213, 8.512969], [47.36519, 8.502601], [47.376239, 8.562107], [47.398122, 8.53614], [47.369216, 8.547871], [47.364773, 8.554425], [47.414858, 8.551592], [47.378934, 8.559688], [47.401575, 8.489814], [47.40382, 8.556369], [47.329926, 8.512588], [47.372201, 8.560116], [47.36686, 8.532702], [47.362167, 8.547526], [47.353064, 8.518177], [47.330929, 8.515943], [47.397596, 8.532804], [47.359061, 8.531841], [47.365826, 8.556208], [47.379485, 8.516964], [47.399428, 8.516838], [47.364434, 8.520075], [47.358642, 8.589788], [47.381436, 8.540842], [47.384399, 8.531937], [47.340956, 8.526785], [47.397768, 8.532688], [47.381211, 8.481811], [47.348279, 8.534293], [47.391293, 8.522952], [47.375766, 8.535547], [47.391383, 8.536292], [47.379118, 8.549958], [47.386589, 8.488883], [47.372656, 8.520957], [47.405697, 8.59148], [47.375121, 8.545584], [47.397776, 8.494045], [47.386934, 8.490453], [47.378639, 8.526614], [47.380895, 8.528673], [47.393651, 8.511263], [47.349977, 8.56076], [47.40391, 8.546103], [47.381499, 8.571529], [47.375936, 8.537537], [47.366594, 8.53516], [47.415009, 8.544266], [47.378036, 8.509307], [47.367503, 8.578765], [47.369174, 8.49189], [47.410508, 8.550282], [47.375767, 8.556973], [47.375032, 8.544576], [47.367749, 8.487373], [47.359253, 8.586187], [47.383661, 8.549006], [47.387266, 8.51879], [47.35962, 8.593582], [47.37954, 8.516806], [47.377466, 8.512553], [47.408456, 8.548516], [47.366591, 8.54121], [47.358149, 8.519802], [47.408804, 8.579318], [47.402166, 8.496013], [47.406612, 8.551327], [47.402671, 8.486921], [47.368938, 8.518353], [47.35178, 8.52555], [47.401245, 8.586893], [47.376512, 8.536476], [47.394249, 8.4902], [47.407899, 8.579802], [47.3791, 8.549918], [47.376504, 8.543905], [47.419829, 8.54817], [47.377317, 8.526587], [47.357564, 8.578724], [47.371288, 8.520122], [47.413975, 8.525202], [47.413489, 8.539557], [47.344118, 8.532024], [47.372736, 8.550408], [47.367308, 8.561045], [47.405846, 8.480982], [47.390269, 8.485724], [47.368835, 8.539774], [47.38878, 8.483244], [47.368759, 8.500859], [47.377321, 8.521303], [47.370268, 8.518525], [47.379885, 8.544081], [47.376721, 8.538136], [47.396298, 8.540619], [47.368439, 8.536071], [47.410564, 8.550071], [47.365099, 8.553187], [47.388992, 8.538972], [47.374294, 8.524685], [47.390566, 8.545547], [47.427387, 8.546061], [47.391057, 8.522232], [47.374141, 8.54089], [47.377632, 8.533175], [47.368467, 8.524526], [47.380191, 8.501947], [47.380599, 8.517092], [47.390856, 8.533076], [47.382468, 8.514415], [47.376775, 8.528668], [47.373831, 8.53654], [47.41133, 8.485356], [47.387642, 8.499593], [47.376374, 8.541598], [47.365703, 8.54564], [47.361616, 8.50674], [47.370858, 8.531315], [47.395097, 8.525904], [47.380256, 8.542923], [47.409791, 8.537771], [47.364777, 8.554015], [47.377539, 8.505668], [47.362534, 8.510571], [47.365763, 8.532733], [47.396927, 8.50917], [47.375906, 8.538807], [47.379909, 8.527329], [47.408712, 8.546243], [47.408136, 8.547145], [47.371986, 8.556364], [47.398723, 8.539106], [47.417081, 8.545767], [47.366565, 8.494883], [47.360087, 8.56084], [47.416434, 8.514359], [47.360423, 8.526666], [47.362344, 8.510699], [47.375039, 8.537214], [47.366848, 8.535893], [47.358812, 8.58259], [47.380991, 8.518425], [47.337468, 8.532338], [47.36685, 8.553502], [47.393587, 8.5248], [47.397036, 8.483472], [47.372719, 8.563304], [47.363404, 8.505981], [47.357888, 8.554811], [47.377845, 8.541973], [47.368775, 8.537614], [47.396874, 8.530206], [47.389166, 8.541426], [47.401329, 8.545056], [47.371819, 8.601566], [47.364482, 8.536917], [47.400789, 8.548886], [47.406893, 8.580588], [47.374533, 8.552498], [47.335092, 8.518051], [47.366662, 8.542231], [47.372667, 8.575048], [47.414508, 8.558939], [47.370041, 8.540646], [47.415221, 8.527626], [47.366846, 8.542711], [47.38866, 8.483679], [47.365118, 8.534269], [47.407899, 8.579802], [47.33521, 8.531365], [47.403826, 8.53415], [47.384232, 8.541933], [47.330771, 8.516469], [47.395526, 8.545227], [47.375399, 8.52386], [47.378336, 8.509882], [47.354631, 8.526561], [47.413098, 8.567019], [47.361989, 8.526552], [47.368188, 8.53024], [47.385259, 8.517041], [47.365018, 8.567127], [47.419179, 8.50637], [47.376591, 8.529154], [47.373501, 8.515241], [47.382054, 8.528856], [47.413702, 8.545472], [47.391313, 8.516011], [47.370161, 8.548791], [47.413319, 8.476212], [47.413357, 8.532611], [47.379588, 8.527097], [47.42888, 8.545124], [47.381579, 8.537203], [47.353456, 8.576611], [47.396357, 8.492891], [47.37006, 8.511901], [47.332672, 8.518095], [47.413966, 8.541422], [47.381518, 8.56504], [47.359779, 8.548946], [47.355984, 8.573832], [47.384673, 8.542842], [47.345446, 8.533362], [47.379958, 8.519265], [47.402588, 8.553468], [47.374931, 8.544759], [47.362122, 8.559665], [47.383271, 8.53043], [47.382178, 8.588363], [47.401363, 8.593083], [47.415423, 8.544222], [47.372511, 8.534447], [47.378661, 8.519477], [47.373159, 8.538208], [47.363389, 8.575446], [47.346101, 8.534447], [47.409062, 8.545389], [47.389246, 8.491399], [47.378915, 8.549556], [47.375525, 8.480945], [47.364577, 8.566217], [47.354858, 8.574867], [47.380851, 8.53336], [47.365091, 8.50256], [47.391209, 8.489266], [47.382031, 8.529359], [47.376074, 8.559641], [47.38645, 8.518522], [47.373506, 8.519504], [47.391899, 8.517785], [47.367547, 8.538039], [47.367808, 8.560539], [47.373453, 8.531831], [47.378607, 8.523289], [47.370403, 8.547009], [47.38809, 8.539165], [47.336974, 8.520709], [47.376498, 8.525683], [47.385887, 8.53255], [47.377746, 8.544804], [47.374691, 8.535935], [47.408409, 8.550622], [47.382427, 8.528413], [47.375713, 8.518238], [47.385276, 8.494711], [47.367596, 8.54515], [47.379734, 8.51534], [47.401753, 8.580968], [47.3939, 8.525031], [47.375302, 8.547309], [47.37157, 8.51589], [47.392294, 8.509169], [47.392207, 8.509843], [47.375094, 8.518994], [47.358513, 8.518327], [47.367696, 8.496097], [47.373786, 8.519431], [47.380194, 8.535241], [47.367017, 8.536121], [47.373613, 8.549976], [47.387483, 8.518702], [47.377311, 8.512735], [47.359103, 8.532172], [47.370704, 8.537151], [47.379145, 8.549998], [47.393677, 8.502653], [47.385826, 8.51798], [47.375433, 8.526959], [47.407923, 8.578305], [47.387974, 8.490831], [47.380987, 8.504387], [47.381102, 8.518109], [47.367991, 8.540603], [47.327797, 8.529586], [47.391379, 8.545193], [47.378989, 8.542804], [47.368926, 8.54809], [47.399498, 8.515117], [47.374438, 8.495596], [47.384396, 8.548333], [47.399058, 8.533271], [47.411379, 8.545688], [47.381454, 8.540842], [47.403008, 8.486544], [47.403136, 8.486268], [47.391078, 8.522841], [47.370197, 8.548792], [47.379973, 8.516656], [47.382531, 8.540136], [47.386772, 8.49045], [47.410236, 8.549521], [47.398732, 8.505563], [47.366847, 8.558467], [47.388407, 8.517065], [47.369755, 8.509829], [47.373471, 8.534732], [47.383335, 8.530365], [47.393384, 8.537711], [47.374594, 8.538621], [47.363609, 8.535058], [47.380995, 8.538091], [47.409557, 8.55005], [47.376943, 8.522262], [47.377073, 8.541864], [47.384643, 8.532829], [47.386561, 8.542987], [47.402871, 8.535204], [47.383559, 8.573307], [47.37128, 8.525669], [47.41053, 8.572106], [47.391035, 8.522628], [47.387473, 8.528357], [47.392623, 8.47504], [47.363437, 8.533268], [47.376642, 8.535128], [47.399475, 8.495178], [47.427963, 8.551653], [47.363357, 8.533186], [47.395571, 8.486278], [47.370686, 8.537124], [47.374513, 8.539547], [47.359681, 8.508806], [47.408005, 8.546745], [47.378893, 8.542445], [47.379189, 8.527407], [47.362276, 8.526691], [47.324365, 8.518549], [47.363381, 8.533452], [47.344508, 8.529782], [47.36727, 8.545368], [47.36344, 8.53385], [47.394916, 8.491061], [47.367251, 8.546427], [47.382804, 8.532222], [47.37942, 8.529636], [47.340867, 8.531455], [47.374984, 8.534498], [47.366629, 8.535266], [47.396049, 8.527009], [47.359191, 8.563204], [47.400461, 8.543673], [47.377791, 8.498761], [47.383355, 8.539584], [47.367933, 8.544707], [47.339869, 8.529529], [47.3975, 8.532444], [47.401781, 8.499742], [47.348036, 8.534354], [47.35976, 8.557431], [47.414281, 8.550784], [47.361847, 8.507062], [47.376601, 8.527089], [47.41209, 8.524806], [47.390323, 8.509289], [47.366457, 8.566257], [47.377742, 8.537667], [47.363164, 8.533619], [47.388783, 8.536292], [47.402563, 8.49981], [47.420803, 8.547011], [47.370304, 8.548861], [47.3577, 8.559281], [47.324853, 8.504826], [47.410139, 8.565155], [47.398312, 8.536912], [47.378301, 8.509842], [47.387954, 8.546857], [47.391489, 8.523128], [47.368228, 8.537365], [47.361105, 8.547636], [47.378325, 8.525561], [47.391096, 8.522828], [47.414306, 8.48348], [47.370952, 8.523279], [47.370057, 8.564162], [47.377666, 8.541956], [47.364772, 8.554531], [47.37677, 8.517743], [47.414107, 8.545427], [47.3629, 8.548945], [47.417537, 8.546095], [47.403508, 8.485918], [47.420942, 8.539009], [47.374066, 8.519317], [47.370558, 8.519259], [47.354361, 8.511241], [47.367993, 8.540352], [47.413222, 8.55336], [47.33159, 8.529875], [47.370755, 8.548751], [47.374485, 8.535878], [47.36402, 8.528712], [47.358414, 8.518312], [47.381777, 8.55686], [47.374007, 8.546369], [47.369336, 8.555103], [47.387167, 8.518881], [47.415347, 8.514165], [47.335704, 8.516158], [47.403548, 8.483494], [47.357298, 8.572828], [47.374319, 8.52393], [47.427431, 8.546141], [47.369212, 8.465635], [47.367843, 8.534417], [47.362181, 8.548917], [47.4139, 8.526486], [47.366156, 8.540513], [47.390601, 8.478842], [47.384739, 8.496409], [47.368494, 8.5245], [47.39054, 8.490577], [47.397031, 8.511464], [47.414083, 8.548872], [47.413209, 8.538716], [47.360678, 8.524447], [47.387381, 8.527653], [47.364878, 8.566714], [47.415109, 8.562795], [47.414544, 8.558927], [47.415358, 8.570513], [47.379758, 8.506878], [47.386823, 8.52004], [47.378201, 8.509866], [47.36655, 8.540759], [47.385895, 8.542113], [47.366991, 8.558483], [47.3499, 8.561314], [47.365164, 8.564151], [47.359139, 8.555591], [47.369116, 8.52536], [47.392063, 8.526226], [47.374998, 8.518648], [47.377256, 8.538689], [47.361802, 8.550934], [47.362436, 8.504691], [47.413793, 8.545354], [47.364316, 8.529751], [47.406602, 8.588227], [47.369304, 8.522557], [47.387582, 8.525393], [47.360271, 8.567768], [47.408821, 8.539447], [47.372011, 8.534079], [47.368688, 8.524875], [47.373032, 8.534497], [47.364764, 8.545965], [47.379681, 8.519047], [47.373612, 8.519758], [47.37074, 8.535232], [47.338073, 8.538636], [47.399386, 8.572015], [47.356163, 8.520477], [47.389266, 8.485254], [47.367806, 8.535476], [47.357537, 8.521683], [47.399162, 8.547832], [47.370998, 8.563652], [47.406212, 8.573021], [47.377177, 8.543204], [47.402566, 8.588776], [47.376037, 8.488953], [47.367308, 8.53953], [47.36765, 8.495262], [47.397404, 8.532177], [47.37552, 8.513851], [47.366313, 8.541085], [47.380073, 8.520459], [47.386393, 8.534189], [47.366754, 8.544801], [47.386085, 8.541958], [47.367821, 8.546068], [47.364611, 8.566443], [47.339541, 8.529985], [47.366582, 8.536404], [47.366242, 8.521052], [47.37954, 8.527321], [47.397583, 8.532273], [47.389062, 8.494813], [47.408712, 8.546216], [47.391064, 8.479408], [47.392304, 8.503209], [47.3793, 8.51749], [47.371431, 8.517238], [47.399144, 8.547819], [47.41015, 8.524475], [47.379201, 8.522295], [47.357873, 8.571966], [47.363473, 8.535135], [47.369441, 8.533748], [47.369771, 8.518754], [47.392659, 8.524039], [47.41488, 8.545496], [47.412959, 8.537625], [47.373837, 8.532117], [47.329882, 8.529721], [47.42212, 8.50354], [47.422246, 8.503529], [47.380291, 8.520145], [47.362039, 8.503875], [47.414102, 8.519334], [47.393351, 8.493056], [47.372467, 8.519973], [47.397643, 8.493883], [47.383851, 8.530919], [47.37017, 8.548831], [47.369184, 8.527679], [47.391318, 8.515468], [47.377803, 8.509196], [47.354153, 8.57525], [47.363789, 8.566744], [47.409116, 8.546304], [47.374325, 8.543237], [47.419116, 8.506435], [47.385337, 8.508579], [47.396019, 8.545316], [47.381514, 8.513482], [47.404346, 8.503529], [47.386213, 8.539854], [47.364057, 8.567014], [47.353559, 8.576216], [47.380608, 8.512298], [47.361407, 8.573921], [47.426306, 8.554681], [47.368107, 8.536846], [47.408971, 8.550144], [47.392438, 8.496509], [47.397477, 8.532073], [47.384367, 8.548518], [47.407608, 8.486144], [47.375203, 8.544566], [47.419986, 8.503696], [47.377494, 8.498742], [47.392088, 8.499284], [47.390725, 8.522132], [47.394936, 8.512336], [47.409967, 8.525796], [47.350464, 8.567984], [47.37749, 8.518605], [47.416947, 8.538171], [47.413228, 8.531998], [47.371041, 8.523414], [47.388091, 8.536238], [47.39184, 8.528831], [47.399315, 8.515405], [47.384753, 8.527825], [47.360588, 8.566689], [47.401256, 8.54516], [47.36983, 8.509566], [47.414131, 8.53635], [47.407881, 8.576144], [47.380324, 8.528145], [47.363933, 8.56676], [47.394106, 8.493138], [47.362242, 8.55935], [47.407795, 8.584], [47.417837, 8.554238], [47.35573, 8.574079], [47.365523, 8.53241], [47.338302, 8.53917], [47.370264, 8.495579], [47.393363, 8.524782], [47.374426, 8.542087], [47.378288, 8.530394], [47.399682, 8.477271], [47.403504, 8.487375], [47.36392, 8.547669], [47.376075, 8.522788], [47.39813, 8.536232], [47.391307, 8.515733], [47.387668, 8.529686], [47.417675, 8.546734], [47.366669, 8.541463], [47.34058, 8.524753], [47.368014, 8.544735], [47.37513, 8.528608], [47.332043, 8.535217], [47.377521, 8.54484], [47.380119, 8.544112], [47.418106, 8.538327], [47.418115, 8.538367], [47.411536, 8.523509], [47.37833, 8.526873], [47.378319, 8.509829], [47.378428, 8.483147], [47.418856, 8.507265], [47.364347, 8.550087], [47.387183, 8.519027], [47.380591, 8.536984], [47.386381, 8.498799], [47.373495, 8.52925], [47.3592, 8.511285], [47.365513, 8.539149], [47.358504, 8.518393], [47.413949, 8.54883], [47.416612, 8.513594], [47.369903, 8.564251], [47.391885, 8.485053], [47.380653, 8.547447], [47.382147, 8.543664], [47.387488, 8.53343], [47.344412, 8.530402], [47.363272, 8.557028], [47.352482, 8.508185], [47.387735, 8.519661], [47.375264, 8.490885], [47.388588, 8.539851], [47.376038, 8.527673], [47.378326, 8.527323], [47.360199, 8.523696], [47.430771, 8.540219], [47.373247, 8.535574], [47.37838, 8.530184], [47.384241, 8.531576], [47.39066, 8.508885], [47.387438, 8.544357], [47.419186, 8.546752], [47.36969, 8.539765], [47.369622, 8.51544], [47.425918, 8.552949], [47.369644, 8.525596], [47.375762, 8.549093], [47.374568, 8.538515], [47.390989, 8.51309], [47.35347, 8.576069], [47.409027, 8.539597], [47.376207, 8.527836], [47.388844, 8.52514], [47.381133, 8.531989], [47.371011, 8.538878], [47.370534, 8.549276], [47.376582, 8.534849], [47.385767, 8.499012], [47.38599, 8.498248], [47.388181, 8.485908], [47.393354, 8.524795], [47.373222, 8.531562], [47.385975, 8.535545], [47.375422, 8.528137], [47.376906, 8.54333], [47.374262, 8.538535], [47.382539, 8.51447], [47.326487, 8.515827], [47.374627, 8.537086], [47.373752, 8.53822], [47.374503, 8.533985], [47.374029, 8.519343], [47.379353, 8.495216], [47.363703, 8.553397], [47.362195, 8.5475], [47.359558, 8.548504], [47.373794, 8.537638], [47.381436, 8.553026], [47.419261, 8.54739], [47.419283, 8.547854], [47.382475, 8.514574], [47.367192, 8.546955], [47.373486, 8.503296], [47.398968, 8.538913], [47.359648, 8.522983], [47.39316, 8.546158], [47.382431, 8.514481], [47.366161, 8.497682], [47.38963, 8.512215], [47.368105, 8.495642], [47.376626, 8.533062], [47.368122, 8.523831], [47.378056, 8.513876], [47.390364, 8.525092], [47.364618, 8.547153], [47.371474, 8.55532], [47.39143, 8.536041], [47.364632, 8.537198], [47.380703, 8.525199], [47.386958, 8.483831], [47.40458, 8.556809], [47.401596, 8.499261], [47.376395, 8.518345], [47.395455, 8.531885], [47.418699, 8.507726], [47.397691, 8.533216], [47.41104, 8.545456], [47.422593, 8.55068], [47.35157, 8.602435], [47.430153, 8.549326], [47.374094, 8.535433], [47.379764, 8.527418], [47.404607, 8.550304], [47.40841, 8.551444], [47.426637, 8.492496], [47.369179, 8.54803], [47.36584, 8.531199], [47.363626, 8.535151], [47.36066, 8.531132], [47.365986, 8.53479], [47.368495, 8.524355], [47.368382, 8.602497], [47.368543, 8.530751], [47.361956, 8.531053], [47.422323, 8.512636], [47.390705, 8.508806], [47.403288, 8.497201], [47.411235, 8.570783], [47.417791, 8.483071], [47.411254, 8.544732], [47.326697, 8.517352], [47.377845, 8.498788], [47.426272, 8.554441], [47.402074, 8.498197], [47.389145, 8.494629], [47.427548, 8.54617], [47.397616, 8.532592], [47.41221, 8.546329], [47.39343, 8.512809], [47.365427, 8.502262], [47.375322, 8.485483], [47.369695, 8.508583], [47.371579, 8.51593], [47.384616, 8.516525], [47.384908, 8.531391], [47.379464, 8.529677], [47.367381, 8.494158], [47.408676, 8.564792], [47.380267, 8.546406], [47.390538, 8.489782], [47.381807, 8.540571], [47.358357, 8.520561], [47.365332, 8.564406], [47.376488, 8.483811], [47.361564, 8.535374], [47.395451, 8.527474], [47.373027, 8.531213], [47.411118, 8.5354], [47.3662, 8.534052], [47.376979, 8.542272], [47.363358, 8.533001], [47.418852, 8.553371], [47.419012, 8.50308], [47.419762, 8.508542], [47.384342, 8.531313], [47.388296, 8.490996], [47.414833, 8.519164], [47.366745, 8.545781], [47.385839, 8.530933], [47.381845, 8.516535], [47.373894, 8.546009], [47.388714, 8.520727], [47.374159, 8.528549], [47.353178, 8.575586], [47.391282, 8.520315], [47.391152, 8.522644], [47.369782, 8.554517], [47.391627, 8.517077], [47.36507, 8.530865], [47.37464, 8.53849], [47.373275, 8.520122], [47.410709, 8.543316], [47.369266, 8.525628], [47.401773, 8.580823], [47.390213, 8.522042], [47.393264, 8.501506], [47.345249, 8.535144], [47.411674, 8.562683], [47.393214, 8.530104], [47.38838, 8.482799], [47.369081, 8.528048], [47.362222, 8.547435], [47.365371, 8.538894], [47.373011, 8.532921], [47.364808, 8.566566], [47.385732, 8.508706], [47.390896, 8.48106], [47.419666, 8.543568], [47.39384, 8.507386], [47.374523, 8.557211], [47.422602, 8.550667], [47.372957, 8.48541], [47.405376, 8.504941], [47.382564, 8.537607], [47.410302, 8.543625], [47.398226, 8.509739], [47.407556, 8.579039], [47.377547, 8.528869], [47.399318, 8.542762], [47.391339, 8.532423], [47.384788, 8.531706], [47.379099, 8.527405], [47.426153, 8.547175], [47.369186, 8.513022], [47.380663, 8.537025], [47.4111, 8.545775], [47.412226, 8.553948], [47.399782, 8.504895], [47.410647, 8.551689], [47.402034, 8.497653], [47.379129, 8.52228], [47.367127, 8.544399], [47.370052, 8.548869], [47.375641, 8.526818], [47.376907, 8.541344], [47.335764, 8.518422], [47.384154, 8.531177], [47.382457, 8.537578], [47.369043, 8.528245], [47.366149, 8.548761], [47.374888, 8.527491], [47.350965, 8.559973], [47.41918, 8.506264], [47.373836, 8.527469], [47.360412, 8.552348], [47.391526, 8.523102], [47.398764, 8.512797], [47.333708, 8.528529], [47.410445, 8.546491], [47.431283, 8.538401], [47.397617, 8.540077], [47.369587, 8.525939], [47.37742, 8.543209], [47.398861, 8.590485]], [[47.376602, 8.536504], [47.367095, 8.543974], [47.369121, 8.541845], [47.390508, 8.523187], [47.3966, 8.510395], [47.368856, 8.52901], [47.385576, 8.499313], [47.374594, 8.538635], [47.370844, 8.546992], [47.393279, 8.493082], [47.384573, 8.526881], [47.374677, 8.549654], [47.381644, 8.530304], [47.384044, 8.48086], [47.418232, 8.54208], [47.409338, 8.563309], [47.403752, 8.534308], [47.378265, 8.509748], [47.378724, 8.542216], [47.378433, 8.499436], [47.390068, 8.510608], [47.387411, 8.514859], [47.414241, 8.508312], [47.362263, 8.609844], [47.387805, 8.482722], [47.40824, 8.546604], [47.376902, 8.541807], [47.330814, 8.516681], [47.367067, 8.494999], [47.404973, 8.572743], [47.405945, 8.480984], [47.420848, 8.48215], [47.384016, 8.574416], [47.408217, 8.503143], [47.383106, 8.530745], [47.389637, 8.486996], [47.361829, 8.52635], [47.383099, 8.499688], [47.387141, 8.528271], [47.368844, 8.501363], [47.351865, 8.576538], [47.367095, 8.521175], [47.392376, 8.533054], [47.3872, 8.551372], [47.405863, 8.553431], [47.376647, 8.538439], [47.359253, 8.581686], [47.414179, 8.518846], [47.414143, 8.518818], [47.376516, 8.544554], [47.373112, 8.503845], [47.425299, 8.548019], [47.369726, 8.536853], [47.378265, 8.541385], [47.352992, 8.576191], [47.364669, 8.566008], [47.37835, 8.493673], [47.391097, 8.473713], [47.385607, 8.553365], [47.390556, 8.544713], [47.339573, 8.528517], [47.373298, 8.53302], [47.41271, 8.544868], [47.404928, 8.480129], [47.33471, 8.534742], [47.375855, 8.54507], [47.387211, 8.518922], [47.378017, 8.492766], [47.375434, 8.547683], [47.387261, 8.533717], [47.3724, 8.521389], [47.406712, 8.47978], [47.39989, 8.543131], [47.378416, 8.540634], [47.392872, 8.515725], [47.370554, 8.51775], [47.378279, 8.5256], [47.384226, 8.497405], [47.397138, 8.594554], [47.386005, 8.548433], [47.373506, 8.519504], [47.386788, 8.547495], [47.375817, 8.488406], [47.408721, 8.546203], [47.371416, 8.522706], [47.402004, 8.497958], [47.347454, 8.56301], [47.373864, 8.537865], [47.381478, 8.503761], [47.373031, 8.53459], [47.373046, 8.532988], [47.374306, 8.537688], [47.364569, 8.519985], [47.367674, 8.52079], [47.418678, 8.547232], [47.362967, 8.495818], [47.369115, 8.541554], [47.376069, 8.538691], [47.374205, 8.544493], [47.41096, 8.562151], [47.383652, 8.557363], [47.35211, 8.524868], [47.364676, 8.537291], [47.370568, 8.516294], [47.399249, 8.532983], [47.365748, 8.537128], [47.381149, 8.491597], [47.413611, 8.480816], [47.408817, 8.550207], [47.410139, 8.479714], [47.388251, 8.491035], [47.414134, 8.518818], [47.382927, 8.540157], [47.369521, 8.526256], [47.408847, 8.554593], [47.405094, 8.479682], [47.387192, 8.519014], [47.366616, 8.520464], [47.408983, 8.53953], [47.378487, 8.528399], [47.386326, 8.48905], [47.374189, 8.486374], [47.364142, 8.526186], [47.390856, 8.533076], [47.378441, 8.510202], [47.372575, 8.547478], [47.370125, 8.548804], [47.367727, 8.538956], [47.420996, 8.507361], [47.344124, 8.535134], [47.357669, 8.554104], [47.384252, 8.497552], [47.381822, 8.54187], [47.414101, 8.550794], [47.402584, 8.553879], [47.37557, 8.53059], [47.372499, 8.535731], [47.369124, 8.537793], [47.373082, 8.533029], [47.363129, 8.549466], [47.429908, 8.549533], [47.388266, 8.485472], [47.353342, 8.558845], [47.377247, 8.538729], [47.384944, 8.534239], [47.380244, 8.528117], [47.379847, 8.524414], [47.382749, 8.514143], [47.37006, 8.54054], [47.368984, 8.482101], [47.376352, 8.483927], [47.370045, 8.541176], [47.375251, 8.5195], [47.349134, 8.565136], [47.376857, 8.543766], [47.368078, 8.54467], [47.370215, 8.548806], [47.344143, 8.535095], [47.389731, 8.512005], [47.366546, 8.536416], [47.380605, 8.537487], [47.389791, 8.512391], [47.380351, 8.518544], [47.376291, 8.541742], [47.418686, 8.506201], [47.377769, 8.53772], [47.350431, 8.560346], [47.407522, 8.54647], [47.373335, 8.531908], [47.33616, 8.52506], [47.376734, 8.54338], [47.376677, 8.559627], [47.367355, 8.506815], [47.390846, 8.521684], [47.399751, 8.47661], [47.360943, 8.571687], [47.378734, 8.52892], [47.411672, 8.56198], [47.362462, 8.504744], [47.396772, 8.532363], [47.373866, 8.476318], [47.411939, 8.524604], [47.351233, 8.601077], [47.414738, 8.519612], [47.39129, 8.47822], [47.422622, 8.495849], [47.36621, 8.553727], [47.362779, 8.568006], [47.388454, 8.540629], [47.35735, 8.550828], [47.3762, 8.558756], [47.350328, 8.527863], [47.374498, 8.539215], [47.413347, 8.550593], [47.370785, 8.535219], [47.336641, 8.533181], [47.419206, 8.506357], [47.378151, 8.5457], [47.373647, 8.517879], [47.39701, 8.480319], [47.361967, 8.55336], [47.358354, 8.584367], [47.38666, 8.547652], [47.35144, 8.601082], [47.406907, 8.550577], [47.390248, 8.509605], [47.372991, 8.531279], [47.402479, 8.535713], [47.363794, 8.535499], [47.37946, 8.524419], [47.387864, 8.539332], [47.373039, 8.547011], [47.378841, 8.484268], [47.410463, 8.56972], [47.36907, 8.528272], [47.374247, 8.519162], [47.40968, 8.576143], [47.375743, 8.543545], [47.37319, 8.547199], [47.403151, 8.489541], [47.370365, 8.519653], [47.383921, 8.510935], [47.392387, 8.524298], [47.372523, 8.478622], [47.386968, 8.490692], [47.36624, 8.530823], [47.413771, 8.554259], [47.37842, 8.541084], [47.417537, 8.546095], [47.414582, 8.559603], [47.414133, 8.518924], [47.390194, 8.509684], [47.372582, 8.534501], [47.379984, 8.527926], [47.421131, 8.481745], [47.337329, 8.519327], [47.393599, 8.537848], [47.39903, 8.514154], [47.371633, 8.521651], [47.406916, 8.550564], [47.353773, 8.601636], [47.384184, 8.575678], [47.390639, 8.523667], [47.388585, 8.479041], [47.389499, 8.477337], [47.377913, 8.538677], [47.417371, 8.545641], [47.39357, 8.519964], [47.373729, 8.517827], [47.40276, 8.501881], [47.371745, 8.550546], [47.365411, 8.553538], [47.362261, 8.559297], [47.362216, 8.54901], [47.37699, 8.544842], [47.357275, 8.521836], [47.380799, 8.536895], [47.362851, 8.51623], [47.394503, 8.542145], [47.377215, 8.540132], [47.38223, 8.515841], [47.358053, 8.508773], [47.377549, 8.529611], [47.408936, 8.548155], [47.369592, 8.466384], [47.353339, 8.52717], [47.381877, 8.513092], [47.399039, 8.524726], [47.369758, 8.466943], [47.360199, 8.523683], [47.39229, 8.506692], [47.383575, 8.530675], [47.373663, 8.524857], [47.392209, 8.478079], [47.394412, 8.546939], [47.371136, 8.546587], [47.392338, 8.538988], [47.370887, 8.546251], [47.382873, 8.515337], [47.374181, 8.475331], [47.38421, 8.504027], [47.375319, 8.549296], [47.423747, 8.54295], [47.423801, 8.542938], [47.402974, 8.494254], [47.371004, 8.54816], [47.377272, 8.538875], [47.36009, 8.522847], [47.36948, 8.525858], [47.380044, 8.548176], [47.376932, 8.54157], [47.379124, 8.495636], [47.385214, 8.500524], [47.375578, 8.526856], [47.357601, 8.521578], [47.385675, 8.519685], [47.372645, 8.498817], [47.374122, 8.51904], [47.381123, 8.534995], [47.340878, 8.526519], [47.426564, 8.554938], [47.417188, 8.542152], [47.38006, 8.494568], [47.418106, 8.538327], [47.371545, 8.506925], [47.360761, 8.550674], [47.378145, 8.541674], [47.39306, 8.47946], [47.377482, 8.499099], [47.377398, 8.522709], [47.400807, 8.54886], [47.366123, 8.5327], [47.364577, 8.566231], [47.3779, 8.541894], [47.37314, 8.5354], [47.38511, 8.498125], [47.399006, 8.533045], [47.393761, 8.52838], [47.372676, 8.534106], [47.391569, 8.513659], [47.41788, 8.555299], [47.375073, 8.529891], [47.396165, 8.527184], [47.365658, 8.532347], [47.386939, 8.484996], [47.409574, 8.480538], [47.372198, 8.54081], [47.385659, 8.520426], [47.399316, 8.515352], [47.364267, 8.54806], [47.380016, 8.52455], [47.384326, 8.52918], [47.387096, 8.486456], [47.409235, 8.547048], [47.399602, 8.591932], [47.373312, 8.531484], [47.373857, 8.503066], [47.36002, 8.522633], [47.371588, 8.51593], [47.373824, 8.536315], [47.364776, 8.504566], [47.368696, 8.493946], [47.369634, 8.541869], [47.405214, 8.504938], [47.406602, 8.551459], [47.367076, 8.494999], [47.374959, 8.524804], [47.387555, 8.51971], [47.366131, 8.508776], [47.414386, 8.480592], [47.398443, 8.469046], [47.362581, 8.504614], [47.328412, 8.514794], [47.401525, 8.548014], [47.377857, 8.509171], [47.380764, 8.518672], [47.369191, 8.556093], [47.374494, 8.541585], [47.36371, 8.533922], [47.370689, 8.516773], [47.410347, 8.548277], [47.373673, 8.485742], [47.373516, 8.545101], [47.409321, 8.544559], [47.383381, 8.543465], [47.369278, 8.5564], [47.410049, 8.53237], [47.38292, 8.575254], [47.395739, 8.54543], [47.3764, 8.540685], [47.377651, 8.548126], [47.383699, 8.573708], [47.354389, 8.523631], [47.399876, 8.516052], [47.403852, 8.485739], [47.392284, 8.523714], [47.369935, 8.510826], [47.355831, 8.500085], [47.398155, 8.536418], [47.387241, 8.528141], [47.369015, 8.543564], [47.360793, 8.568732], [47.386975, 8.546665], [47.386171, 8.518569], [47.386564, 8.503386], [47.370695, 8.535297], [47.375367, 8.485471], [47.408712, 8.546229], [47.37583, 8.577208], [47.37311, 8.532937], [47.367158, 8.540176], [47.374318, 8.52209], [47.387869, 8.520749], [47.374414, 8.535797], [47.387752, 8.471529], [47.379486, 8.544404], [47.388309, 8.53607], [47.376666, 8.527819], [47.358234, 8.58831], [47.431856, 8.531069], [47.360483, 8.552403], [47.391668, 8.519423], [47.421796, 8.545653], [47.419757, 8.548116], [47.39363, 8.530788], [47.391844, 8.500458], [47.376925, 8.527996], [47.382154, 8.512409], [47.393487, 8.54488], [47.402929, 8.575747], [47.368404, 8.547272], [47.360697, 8.566493], [47.357978, 8.532216], [47.405786, 8.58613], [47.375039, 8.545675], [47.406624, 8.546265], [47.397956, 8.534666], [47.390757, 8.539644], [47.424088, 8.552421], [47.385668, 8.475303], [47.373851, 8.536328], [47.363473, 8.535135], [47.362584, 8.558404], [47.392425, 8.507636], [47.38204, 8.515969], [47.410825, 8.545332], [47.373119, 8.532937], [47.380894, 8.54483], [47.408565, 8.546557], [47.414912, 8.551579], [47.368265, 8.54858], [47.366907, 8.545798], [47.376079, 8.488305], [47.388595, 8.539096], [47.387463, 8.518966], [47.410175, 8.566017], [47.406744, 8.586534], [47.382834, 8.529097], [47.419147, 8.557354], [47.378841, 8.529028], [47.386024, 8.526526], [47.393507, 8.524758], [47.375302, 8.528426], [47.386602, 8.541478], [47.388068, 8.520581], [47.37028, 8.524881], [47.391033, 8.522867], [47.360295, 8.566233], [47.377525, 8.538761], [47.389681, 8.511634], [47.371443, 8.550155], [47.419955, 8.501217], [47.396236, 8.535809], [47.386475, 8.516867], [47.407275, 8.530803], [47.36856, 8.498988], [47.361823, 8.532705], [47.39292, 8.543994], [47.386352, 8.54787], [47.356916, 8.51116], [47.374627, 8.54176], [47.378562, 8.483242], [47.413176, 8.541287], [47.388641, 8.485784], [47.37034, 8.548901], [47.413184, 8.541366], [47.368819, 8.501191], [47.385733, 8.492919], [47.417943, 8.54503], [47.378702, 8.55669], [47.381237, 8.528654], [47.382781, 8.529917], [47.366068, 8.548865], [47.382936, 8.540144], [47.3419, 8.530695], [47.377074, 8.539825], [47.368196, 8.539813], [47.372022, 8.520441], [47.375294, 8.528373], [47.373387, 8.51398], [47.405912, 8.548318], [47.414875, 8.544211], [47.378299, 8.541518], [47.360276, 8.568165], [47.391386, 8.5149], [47.367971, 8.540802], [47.387209, 8.551372], [47.398123, 8.535981], [47.398138, 8.536352], [47.359182, 8.509246], [47.380565, 8.53693], [47.384794, 8.537772], [47.371944, 8.520122], [47.359882, 8.568925], [47.407017, 8.549401], [47.39237, 8.502932], [47.360707, 8.522303], [47.390548, 8.48969], [47.403134, 8.547226], [47.38384, 8.515781], [47.379277, 8.495586], [47.409787, 8.575377], [47.409815, 8.575271], [47.375333, 8.485205], [47.381157, 8.491663], [47.399082, 8.542041], [47.400173, 8.592474], [47.400119, 8.494542], [47.369114, 8.603016], [47.376172, 8.527782], [47.368716, 8.528596], [47.399091, 8.542028], [47.401649, 8.548282], [47.374582, 8.538886], [47.362386, 8.568554], [47.413217, 8.521688], [47.371151, 8.527957], [47.356643, 8.507593], [47.386718, 8.490528], [47.391478, 8.519485], [47.376064, 8.562501], [47.385243, 8.529279], [47.37333, 8.500632], [47.381824, 8.484591], [47.379244, 8.508007], [47.380797, 8.518937], [47.366007, 8.533492], [47.351178, 8.532129], [47.410511, 8.549964], [47.36949, 8.553981], [47.414263, 8.551751], [47.356885, 8.555266], [47.400152, 8.586459], [47.378324, 8.530408], [47.388717, 8.510819], [47.376092, 8.559654], [47.334611, 8.519457], [47.37821, 8.532022], [47.378804, 8.542376], [47.364075, 8.547486], [47.363959, 8.546412], [47.378018, 8.518947], [47.366473, 8.561782], [47.374921, 8.527796], [47.371918, 8.540936], [47.367704, 8.534785], [47.397068, 8.530633], [47.395573, 8.531729], [47.389728, 8.512323], [47.36041, 8.58469], [47.410542, 8.572676], [47.368075, 8.520308], [47.33711, 8.536803], [47.359307, 8.592556], [47.403864, 8.569394], [47.377611, 8.529679], [47.407462, 8.566622], [47.354171, 8.575223], [47.416803, 8.5372], [47.377364, 8.529184], [47.37772, 8.509406], [47.385014, 8.508493], [47.371252, 8.520068], [47.389816, 8.542128], [47.38828, 8.496678], [47.38819, 8.496729], [47.369778, 8.466811], [47.42269, 8.49927], [47.377552, 8.548177], [47.380028, 8.496183], [47.370034, 8.527153], [47.370639, 8.543081], [47.400136, 8.505512], [47.377705, 8.525403], [47.368194, 8.550339], [47.38776, 8.484681], [47.372373, 8.534788], [47.377918, 8.526692], [47.360916, 8.5354], [47.400262, 8.516139], [47.37501, 8.526024], [47.366318, 8.532943], [47.384142, 8.530594], [47.326531, 8.518804], [47.374567, 8.524373], [47.384289, 8.531259], [47.377376, 8.567256], [47.390379, 8.539702], [47.378869, 8.526976], [47.334045, 8.528946], [47.371126, 8.546666], [47.389781, 8.477979], [47.410724, 8.555852], [47.344773, 8.533149], [47.385022, 8.54779], [47.366756, 8.541823], [47.378833, 8.499934], [47.334386, 8.529985], [47.405835, 8.569237], [47.376729, 8.516339], [47.38778, 8.529225], [47.37674, 8.538043], [47.417332, 8.509633], [47.385307, 8.529134], [47.406755, 8.550508], [47.39372, 8.493965], [47.388533, 8.483769], [47.370745, 8.547016], [47.369269, 8.55636], [47.391234, 8.487412], [47.386328, 8.535327], [47.367001, 8.543483], [47.388336, 8.536044], [47.375932, 8.529393], [47.358696, 8.516107], [47.364402, 8.546169], [47.378292, 8.509789], [47.372591, 8.532635], [47.385659, 8.520387], [47.365542, 8.500516], [47.370184, 8.518841], [47.360493, 8.547624], [47.356594, 8.523451], [47.369042, 8.537924], [47.400119, 8.494568], [47.37666, 8.535102], [47.375895, 8.538026], [47.382743, 8.550908], [47.364091, 8.556026], [47.374541, 8.546062], [47.366471, 8.545259], [47.374673, 8.529354], [47.371449, 8.557981], [47.418919, 8.507306], [47.372765, 8.534227], [47.389009, 8.532376], [47.413093, 8.513775], [47.412795, 8.507077], [47.338118, 8.530115], [47.397288, 8.531062], [47.403843, 8.49651], [47.418664, 8.507632], [47.381282, 8.514259], [47.350245, 8.567384], [47.403619, 8.497446], [47.381942, 8.502247], [47.37104, 8.514886], [47.381041, 8.497448], [47.365023, 8.521517], [47.382676, 8.529584], [47.362645, 8.55863], [47.392212, 8.476728], [47.390885, 8.522308], [47.387603, 8.527049], [47.386397, 8.547858], [47.41434, 8.551223], [47.370899, 8.48917], [47.364386, 8.555357], [47.38966, 8.526362], [47.400181, 8.539004], [47.396503, 8.540796], [47.378164, 8.534947], [47.38041, 8.493661], [47.346105, 8.535016], [47.374556, 8.538819], [47.393756, 8.537441], [47.334548, 8.530002], [47.409504, 8.540469], [47.38126, 8.537607], [47.393464, 8.500358], [47.366341, 8.533433], [47.365025, 8.521279], [47.37338, 8.548024], [47.408621, 8.54632], [47.365372, 8.538828], [47.367932, 8.523973], [47.366046, 8.532262], [47.371962, 8.536316], [47.370511, 8.519497], [47.367936, 8.546309], [47.417406, 8.546662], [47.37705, 8.554484], [47.368941, 8.538107], [47.378708, 8.542096], [47.347481, 8.511089], [47.372941, 8.530841], [47.36052, 8.547624], [47.357493, 8.55193], [47.37765, 8.531295], [47.364032, 8.534061], [47.38162, 8.513656], [47.391196, 8.522764], [47.368726, 8.56228], [47.407593, 8.489748], [47.410705, 8.534385], [47.382405, 8.514414], [47.378356, 8.509724], [47.370215, 8.548766], [47.417436, 8.553832], [47.354133, 8.575501], [47.369001, 8.547814], [47.376065, 8.536228], [47.41116, 8.529041], [47.372562, 8.478279], [47.404597, 8.543812], [47.373833, 8.544816], [47.383062, 8.530704], [47.377597, 8.527387], [47.385123, 8.547514], [47.371738, 8.547553], [47.370767, 8.535272], [47.376749, 8.524801], [47.420749, 8.538461], [47.353709, 8.601727], [47.369179, 8.525256], [47.372277, 8.523968], [47.37514, 8.518902], [47.366962, 8.536187], [47.387033, 8.518719], [47.398824, 8.533187], [47.378673, 8.52198], [47.369061, 8.534005], [47.402938, 8.500043], [47.427532, 8.543108], [47.375593, 8.524314], [47.377362, 8.509214], [47.389139, 8.54618], [47.381843, 8.540625], [47.373979, 8.546527], [47.364599, 8.516875], [47.375222, 8.525472], [47.407572, 8.546855], [47.380912, 8.518224], [47.413523, 8.550981], [47.36923, 8.567812], [47.387113, 8.490536], [47.375095, 8.539863], [47.360997, 8.553287], [47.366207, 8.537151], [47.398709, 8.539689], [47.414864, 8.561213], [47.382264, 8.501432], [47.404101, 8.563556], [47.402147, 8.503975], [47.363127, 8.549678], [47.350622, 8.563778], [47.423004, 8.541609], [47.376821, 8.509349], [47.406912, 8.586856], [47.414143, 8.518792], [47.397095, 8.540993], [47.401209, 8.551041], [47.362399, 8.504809], [47.373539, 8.536997], [47.378732, 8.527185], [47.391205, 8.504432], [47.405278, 8.558162], [47.417898, 8.545082], [47.3932, 8.530634], [47.38519, 8.507994], [47.387973, 8.49099], [47.414465, 8.518984], [47.409349, 8.550138], [47.418618, 8.546912], [47.38012, 8.527876], [47.40046, 8.543739], [47.419583, 8.548536], [47.400663, 8.544128], [47.335579, 8.518895], [47.390845, 8.478741], [47.400179, 8.590977], [47.37675, 8.48269], [47.372658, 8.540753], [47.413, 8.515999], [47.391218, 8.52042], [47.377621, 8.498665], [47.376722, 8.559615], [47.384883, 8.50906], [47.40866, 8.580215], [47.392211, 8.495749], [47.353911, 8.560432], [47.41014, 8.542615], [47.380617, 8.534283], [47.375371, 8.494925], [47.397675, 8.533004], [47.405169, 8.480266], [47.3741, 8.527144], [47.414923, 8.546663], [47.363029, 8.51254], [47.387004, 8.51897], [47.417065, 8.541884], [47.397006, 8.5305], [47.399419, 8.521686], [47.36996, 8.511012], [47.370447, 8.532048], [47.412213, 8.549708], [47.379254, 8.526256], [47.412993, 8.546292], [47.377239, 8.543337], [47.414519, 8.513274], [47.361594, 8.526518], [47.3873, 8.493678], [47.372107, 8.519119], [47.360913, 8.552637], [47.414152, 8.521774], [47.383837, 8.547514], [47.391217, 8.520566], [47.362931, 8.512459], [47.370941, 8.519664], [47.384996, 8.484958], [47.386579, 8.526842], [47.410731, 8.529681], [47.414139, 8.548688], [47.388594, 8.534473], [47.352841, 8.524645], [47.35906, 8.592047], [47.407562, 8.536573], [47.366447, 8.527914], [47.385505, 8.520529], [47.378914, 8.530778], [47.414306, 8.479517], [47.412888, 8.517455], [47.373603, 8.519732], [47.375547, 8.516725], [47.357891, 8.519479], [47.365158, 8.547098], [47.384693, 8.500434], [47.365651, 8.547294], [47.397196, 8.531351], [47.359162, 8.549502], [47.370301, 8.53607], [47.375766, 8.518359], [47.341874, 8.530549], [47.417064, 8.556886], [47.371741, 8.55661], [47.375073, 8.529865], [47.397565, 8.481694], [47.365803, 8.54927], [47.374853, 8.493512], [47.358111, 8.552141], [47.397907, 8.534148], [47.357646, 8.521632], [47.373819, 8.530223], [47.354218, 8.523588], [47.430144, 8.5493], [47.400186, 8.494119], [47.362394, 8.516022], [47.427573, 8.54641], [47.430001, 8.486611], [47.377978, 8.527978], [47.365209, 8.545577], [47.399662, 8.51777], [47.376289, 8.527745], [47.353612, 8.513383], [47.368489, 8.530723], [47.371149, 8.521496], [47.397691, 8.533243], [47.375065, 8.558852], [47.391276, 8.522859], [47.37059, 8.516758], [47.368572, 8.54566], [47.379887, 8.541949], [47.383173, 8.541725], [47.38343, 8.515362], [47.379854, 8.543511], [47.415395, 8.570368], [47.358021, 8.519998], [47.359715, 8.549103], [47.381399, 8.540934], [47.376293, 8.541609], [47.37519, 8.534621], [47.367328, 8.535519], [47.374307, 8.521375], [47.366048, 8.504141], [47.384547, 8.542919], [47.364519, 8.547165], [47.370696, 8.535204], [47.402001, 8.499269], [47.383805, 8.540467], [47.397916, 8.534095], [47.414608, 8.520047], [47.419215, 8.547442], [47.372909, 8.535144], [47.394392, 8.525306], [47.378872, 8.542749], [47.407608, 8.547849], [47.35705, 8.521898], [47.371009, 8.488934], [47.362041, 8.549417], [47.39353, 8.512652], [47.384737, 8.548406], [47.398149, 8.546473], [47.377327, 8.499321], [47.395746, 8.524817], [47.364711, 8.534525], [47.372766, 8.497456], [47.364312, 8.531141], [47.409206, 8.566698], [47.35002, 8.533852], [47.389019, 8.527568], [47.38209, 8.528817], [47.405121, 8.479643], [47.371108, 8.542906], [47.369146, 8.527837], [47.356546, 8.52382], [47.371097, 8.520303], [47.376332, 8.518344], [47.372138, 8.545297], [47.410367, 8.548119], [47.383323, 8.53157], [47.367442, 8.601139], [47.362593, 8.517761], [47.37714, 8.540435], [47.400068, 8.53202], [47.390264, 8.523355], [47.376952, 8.510742], [47.376628, 8.511689], [47.374441, 8.541478], [47.360967, 8.551671], [47.39127, 8.514831], [47.366557, 8.541938], [47.383593, 8.577255], [47.377032, 8.544194], [47.373935, 8.546434], [47.39225, 8.492412], [47.380208, 8.52809], [47.377117, 8.541984], [47.377, 8.541982], [47.338571, 8.526022], [47.396893, 8.513806], [47.398456, 8.50724], [47.381077, 8.513076], [47.400049, 8.586801], [47.400798, 8.548847], [47.370698, 8.522586], [47.409269, 8.550057], [47.419592, 8.554089], [47.381352, 8.542098], [47.373572, 8.536402], [47.402369, 8.499316], [47.402418, 8.535513], [47.410852, 8.545306], [47.386106, 8.514979], [47.393684, 8.501898], [47.366883, 8.54638], [47.36818, 8.560203], [47.374579, 8.545838], [47.373588, 8.553458], [47.390433, 8.509053], [47.397009, 8.514815], [47.377358, 8.512538], [47.360849, 8.553641], [47.406201, 8.548231], [47.374833, 8.527675], [47.375882, 8.54123], [47.35988, 8.557182], [47.373871, 8.544671], [47.407422, 8.58533], [47.388675, 8.489944], [47.378997, 8.559716], [47.377705, 8.525496], [47.378932, 8.508676], [47.389374, 8.529946], [47.408955, 8.539556], [47.357998, 8.519587], [47.372893, 8.535925], [47.387844, 8.540497], [47.365135, 8.554115], [47.429589, 8.539612], [47.391795, 8.53838], [47.394428, 8.525281], [47.417008, 8.539365], [47.370537, 8.558293], [47.357507, 8.57172], [47.410226, 8.546804], [47.372456, 8.524025], [47.372856, 8.535964], [47.414684, 8.527377], [47.419247, 8.546899], [47.388441, 8.486973], [47.418986, 8.55352], [47.361616, 8.547806], [47.390945, 8.488598], [47.370725, 8.51684], [47.387278, 8.488287], [47.378339, 8.528819], [47.378637, 8.499678], [47.356725, 8.522024], [47.395633, 8.545242], [47.370615, 8.516983], [47.367082, 8.539711], [47.386355, 8.489859], [47.403424, 8.547908], [47.3974, 8.503642], [47.407635, 8.538442], [47.419161, 8.506383], [47.375383, 8.549192], [47.3982, 8.536419], [47.381824, 8.542585], [47.383274, 8.549886], [47.341865, 8.530535], [47.365813, 8.553838], [47.389736, 8.516271], [47.374787, 8.551311], [47.344534, 8.529875], [47.404974, 8.57273], [47.366616, 8.553537], [47.391427, 8.488038], [47.413353, 8.550924], [47.367598, 8.534558], [47.418224, 8.547607], [47.382345, 8.495593], [47.399321, 8.548048], [47.366845, 8.544711], [47.406566, 8.549497], [47.378948, 8.529137], [47.37659, 8.543417], [47.364614, 8.566165], [47.412359, 8.524003], [47.38322, 8.531105], [47.365893, 8.537012], [47.383063, 8.514242], [47.360008, 8.522951], [47.380853, 8.511032], [47.381716, 8.516877], [47.418545, 8.546977], [47.37653, 8.527008], [47.370689, 8.516746], [47.389715, 8.478414], [47.392071, 8.499244], [47.369337, 8.525736], [47.385304, 8.488739], [47.36994, 8.51121], [47.348377, 8.5625], [47.387547, 8.488332], [47.362073, 8.548941], [47.368955, 8.540412], [47.372191, 8.521649], [47.36064, 8.525625], [47.363506, 8.527854], [47.382711, 8.547715], [47.381134, 8.504058], [47.375582, 8.548216], [47.362489, 8.553384], [47.369408, 8.53727], [47.397004, 8.530712], [47.365761, 8.545218], [47.390938, 8.532958], [47.369402, 8.532172], [47.417048, 8.539869], [47.384395, 8.547512], [47.393737, 8.502006], [47.370364, 8.602143], [47.378113, 8.481234], [47.372713, 8.534941], [47.371838, 8.535188], [47.373536, 8.528801], [47.379817, 8.554912], [47.380739, 8.578359], [47.366748, 8.542643], [47.352034, 8.532028], [47.402958, 8.536464], [47.364182, 8.556015], [47.371309, 8.563976], [47.344333, 8.530242], [47.375018, 8.519403], [47.423729, 8.514308], [47.369532, 8.491036], [47.37776, 8.522425], [47.380806, 8.518937], [47.344245, 8.529989], [47.368921, 8.547667], [47.378734, 8.528947], [47.399824, 8.518714], [47.397719, 8.474543], [47.38406, 8.488979], [47.369981, 8.502962], [47.406771, 8.586535], [47.376829, 8.535344], [47.375746, 8.529045], [47.391237, 8.520341], [47.382429, 8.537697], [47.395225, 8.521906], [47.390715, 8.50878], [47.396157, 8.517407], [47.368495, 8.533014], [47.38042, 8.525644], [47.384452, 8.503198], [47.369022, 8.538043], [47.341918, 8.525891], [47.364403, 8.566558], [47.381201, 8.538162], [47.377521, 8.541966], [47.415492, 8.546476], [47.375544, 8.520923], [47.360339, 8.579128], [47.368081, 8.561154], [47.38322, 8.5061], [47.35474, 8.574984], [47.390638, 8.489652], [47.419641, 8.555561], [47.382108, 8.473022], [47.390743, 8.489031], [47.384314, 8.548437], [47.387681, 8.529275], [47.404862, 8.574039], [47.379977, 8.541964], [47.351305, 8.525395], [47.402811, 8.535799], [47.394481, 8.50712], [47.374368, 8.541583], [47.367937, 8.51967], [47.381924, 8.52925], [47.414868, 8.546768], [47.396031, 8.527009], [47.383227, 8.54362], [47.404835, 8.571283], [47.374509, 8.532422], [47.369014, 8.53795], [47.390744, 8.508529], [47.378174, 8.509958], [47.394106, 8.525128], [47.422467, 8.550664], [47.375139, 8.541877], [47.362551, 8.506811], [47.369048, 8.541076], [47.39347, 8.526718], [47.372809, 8.535208], [47.40325, 8.498433], [47.38698, 8.539619], [47.38689, 8.539604], [47.385322, 8.489706], [47.389258, 8.510711], [47.394232, 8.490146], [47.402306, 8.546388], [47.373659, 8.519534], [47.393891, 8.544928], [47.386605, 8.486102], [47.40632, 8.495234], [47.36414, 8.546309], [47.362812, 8.548784], [47.384315, 8.531286], [47.424865, 8.541727], [47.374554, 8.530556], [47.371149, 8.558279], [47.404676, 8.557116], [47.397038, 8.4802], [47.367287, 8.544534], [47.396343, 8.512934], [47.374756, 8.52051], [47.37799, 8.526694], [47.364499, 8.53129], [47.376802, 8.524908], [47.388181, 8.520001], [47.364998, 8.546923], [47.358194, 8.498371], [47.36414, 8.546349], [47.353151, 8.527034], [47.376999, 8.524051], [47.383798, 8.530865], [47.374803, 8.55151], [47.355565, 8.572513], [47.358326, 8.518138], [47.386242, 8.493406], [47.414315, 8.515827], [47.380908, 8.511947], [47.381401, 8.483603], [47.335437, 8.540593], [47.377213, 8.512627], [47.383315, 8.474846], [47.356035, 8.508177], [47.373311, 8.520216], [47.356657, 8.532069], [47.365061, 8.567326], [47.366029, 8.532182], [47.335483, 8.530087], [47.358005, 8.519773], [47.406853, 8.550576], [47.373162, 8.53687], [47.371587, 8.515957], [47.368655, 8.53123], [47.41877, 8.540408], [47.366802, 8.507188], [47.360253, 8.580595], [47.377401, 8.51279], [47.382273, 8.505379], [47.386171, 8.498212], [47.352817, 8.559205], [47.382344, 8.505447], [47.36684, 8.537693], [47.324758, 8.507312], [47.3638, 8.528178], [47.364105, 8.526304], [47.362279, 8.559285], [47.366271, 8.514009], [47.335396, 8.541161], [47.407546, 8.530702], [47.382809, 8.514475], [47.370843, 8.570269], [47.38344, 8.515309], [47.378402, 8.567185], [47.375933, 8.549044], [47.382814, 8.529255], [47.404712, 8.481079], [47.406844, 8.550576], [47.380735, 8.512155], [47.360687, 8.516703], [47.417707, 8.546165], [47.367738, 8.535037], [47.393489, 8.536216], [47.376959, 8.53773], [47.369045, 8.503923], [47.389312, 8.521269], [47.366565, 8.541977], [47.41049, 8.550255], [47.398837, 8.540394], [47.383252, 8.531503], [47.360296, 8.50073], [47.367039, 8.523345], [47.364092, 8.547526], [47.389599, 8.537554], [47.385307, 8.53679], [47.409781, 8.54918], [47.38638, 8.503859], [47.337116, 8.519045], [47.373872, 8.55202], [47.402989, 8.587831], [47.407529, 8.530662], [47.357954, 8.52042], [47.382322, 8.499076], [47.417717, 8.548007], [47.393095, 8.526459], [47.383828, 8.548401], [47.328245, 8.51827], [47.350337, 8.560741], [47.387141, 8.518721], [47.40454, 8.581134], [47.389361, 8.484659], [47.380488, 8.519342], [47.370708, 8.516641], [47.369528, 8.543469], [47.371884, 8.506257], [47.375729, 8.527018], [47.386786, 8.551442], [47.373071, 8.547409], [47.364756, 8.537346], [47.413627, 8.481015], [47.395633, 8.532088], [47.362091, 8.597488], [47.376803, 8.524736], [47.386896, 8.547405], [47.392449, 8.52434], [47.401706, 8.581153], [47.384014, 8.49801], [47.386671, 8.547493], [47.383388, 8.488661], [47.42888, 8.545177], [47.341309, 8.530339], [47.381636, 8.490428], [47.394772, 8.513564], [47.360443, 8.578654], [47.389674, 8.479897], [47.392366, 8.487593], [47.373869, 8.481959], [47.367336, 8.534738], [47.409381, 8.543023], [47.358144, 8.55524], [47.427724, 8.538115], [47.426921, 8.510568], [47.36214, 8.607736], [47.369096, 8.529306], [47.424421, 8.508583], [47.382049, 8.51593], [47.40262, 8.499493], [47.41086, 8.563169], [47.418221, 8.503926], [47.374527, 8.539971], [47.369568, 8.522245], [47.383657, 8.510307], [47.386833, 8.547457], [47.40255, 8.500181], [47.389879, 8.492008], [47.380412, 8.525551], [47.405326, 8.480866], [47.3745, 8.532449], [47.370525, 8.549302], [47.408795, 8.579304], [47.397817, 8.541658], [47.329531, 8.514459], [47.372802, 8.535089], [47.410632, 8.569896], [47.409053, 8.550053], [47.375891, 8.51072], [47.359654, 8.508832], [47.40655, 8.538022], [47.386261, 8.54514], [47.378784, 8.514937], [47.370885, 8.570561], [47.375173, 8.579048], [47.364751, 8.555709], [47.384432, 8.531302], [47.392146, 8.501881], [47.371863, 8.525946], [47.389913, 8.510804], [47.365895, 8.545287], [47.418873, 8.507358], [47.427668, 8.542992], [47.373431, 8.553004], [47.415689, 8.548389], [47.373711, 8.535015], [47.356572, 8.523953], [47.369088, 8.541527], [47.404792, 8.494051], [47.401337, 8.49026], [47.381837, 8.533725], [47.37488, 8.517798], [47.377471, 8.499311], [47.35735, 8.550828], [47.379623, 8.515589], [47.380635, 8.525728], [47.404709, 8.49136], [47.366452, 8.541551], [47.371464, 8.490306], [47.360758, 8.548225], [47.370178, 8.539457], [47.373147, 8.503912], [47.409538, 8.542576], [47.410103, 8.542773], [47.392736, 8.523551], [47.341064, 8.526853], [47.381856, 8.481109], [47.378545, 8.509688], [47.39579, 8.528753], [47.361537, 8.565293], [47.379031, 8.522225], [47.399999, 8.49491], [47.404341, 8.561017], [47.363729, 8.528084], [47.3899, 8.512234], [47.379924, 8.528587], [47.359198, 8.523967], [47.402346, 8.49399], [47.373895, 8.54491], [47.39515, 8.519374], [47.364182, 8.527762], [47.396313, 8.543759], [47.382396, 8.540146], [47.367805, 8.534589], [47.386673, 8.488461], [47.402895, 8.485097], [47.369886, 8.510269], [47.410185, 8.537978], [47.399143, 8.542202], [47.366047, 8.536869], [47.390794, 8.539565], [47.393717, 8.506112], [47.377504, 8.543806], [47.390591, 8.522063], [47.382652, 8.540708], [47.378943, 8.527693], [47.357538, 8.521577], [47.373694, 8.523415], [47.324203, 8.518559], [47.383681, 8.515512], [47.390746, 8.511178], [47.38639, 8.518229], [47.375595, 8.516422], [47.377678, 8.525416], [47.373207, 8.533071], [47.366927, 8.536159], [47.374387, 8.54149], [47.392977, 8.524655], [47.374208, 8.53856], [47.383801, 8.508443], [47.418811, 8.506283], [47.345518, 8.53237], [47.370516, 8.551169], [47.401253, 8.517934], [47.349988, 8.534342], [47.409077, 8.57984], [47.33543, 8.529954], [47.396191, 8.527237], [47.335612, 8.540186], [47.362363, 8.504742], [47.373488, 8.598371], [47.395581, 8.527092], [47.343979, 8.530513], [47.373932, 8.513422], [47.377487, 8.527584], [47.378687, 8.564702], [47.412231, 8.542195], [47.372789, 8.521198], [47.373929, 8.503001], [47.382119, 8.528619], [47.403722, 8.49203], [47.372022, 8.564733], [47.345528, 8.530412], [47.403963, 8.48537], [47.378387, 8.528516], [47.376164, 8.533383], [47.33529, 8.519034], [47.402458, 8.495595], [47.387143, 8.494218], [47.374526, 8.541083], [47.405752, 8.584976], [47.370756, 8.554233], [47.361608, 8.565387], [47.376542, 8.52575], [47.381898, 8.52917], [47.373093, 8.551673], [47.367609, 8.534373], [47.378455, 8.526968], [47.377747, 8.493741], [47.411179, 8.526033], [47.383339, 8.49903], [47.382422, 8.537392], [47.409296, 8.550044], [47.360135, 8.533332], [47.409521, 8.542536], [47.418005, 8.55452], [47.365749, 8.531356], [47.376898, 8.541344], [47.359695, 8.50731], [47.392432, 8.523359], [47.385602, 8.51979], [47.359971, 8.522156], [47.360079, 8.595339], [47.379494, 8.515944], [47.408944, 8.55013], [47.372704, 8.533961], [47.392339, 8.523662], [47.360997, 8.573608], [47.385443, 8.494172], [47.408569, 8.502037], [47.406807, 8.550628], [47.368965, 8.528932], [47.393858, 8.505373], [47.359705, 8.566829], [47.362523, 8.533884], [47.389402, 8.521257], [47.412142, 8.550621], [47.364531, 8.502787], [47.376284, 8.523534], [47.381562, 8.490625], [47.369191, 8.527878], [47.373088, 8.531453], [47.368683, 8.521658], [47.372433, 8.520794], [47.373072, 8.527441], [47.386085, 8.532448], [47.371865, 8.543676], [47.36423, 8.536845], [47.364647, 8.566444], [47.375007, 8.536855], [47.404141, 8.548188], [47.369677, 8.540162], [47.373646, 8.534285], [47.406928, 8.586114], [47.377243, 8.520958], [47.415154, 8.514651], [47.368818, 8.539707], [47.400047, 8.553985], [47.383034, 8.527869], [47.360996, 8.576402], [47.391968, 8.482883], [47.415364, 8.527669], [47.39942, 8.495243], [47.380161, 8.513852], [47.399266, 8.505242], [47.368504, 8.499172], [47.379279, 8.525488], [47.377043, 8.544035], [47.378093, 8.528166], [47.379277, 8.528508], [47.378435, 8.530106], [47.412553, 8.525385], [47.420941, 8.549492], [47.402129, 8.497139], [47.41391, 8.5091], [47.371986, 8.556403], [47.360636, 8.557079], [47.409709, 8.576011], [47.362118, 8.510854], [47.3692, 8.532644], [47.376477, 8.534542], [47.338396, 8.532092], [47.363571, 8.503482], [47.409522, 8.540456], [47.382132, 8.548048], [47.363531, 8.547965], [47.361919, 8.526313], [47.406512, 8.552371], [47.398659, 8.532574], [47.37675, 8.514075], [47.382058, 8.529293], [47.331366, 8.537333], [47.410632, 8.5477], [47.398206, 8.536751], [47.378468, 8.541734], [47.384988, 8.495686], [47.370965, 8.554939], [47.377333, 8.540068], [47.40175, 8.499238], [47.357704, 8.535427], [47.367879, 8.56062], [47.358855, 8.557121], [47.380016, 8.520696], [47.367572, 8.534504], [47.356634, 8.554175], [47.368284, 8.529554], [47.373392, 8.531684], [47.384839, 8.495325], [47.374148, 8.521067], [47.383458, 8.549453], [47.396153, 8.485627], [47.365479, 8.538976], [47.359415, 8.557768], [47.36903, 8.540982], [47.375633, 8.487833], [47.377275, 8.512721], [47.383271, 8.515147], [47.402369, 8.499316], [47.390364, 8.512628], [47.416117, 8.565506], [47.377513, 8.52765], [47.374886, 8.534363], [47.37959, 8.516291], [47.388426, 8.514072], [47.3801, 8.520406], [47.411443, 8.526701], [47.391882, 8.483437], [47.376552, 8.486712], [47.383643, 8.483355], [47.380129, 8.513507], [47.363226, 8.514504], [47.369456, 8.5407], [47.401013, 8.537683], [47.388495, 8.536339], [47.370127, 8.521144], [47.382517, 8.543539], [47.372212, 8.520299], [47.393305, 8.529947], [47.377769, 8.522425], [47.39101, 8.522403], [47.373771, 8.537148], [47.412516, 8.523476], [47.39978, 8.544335], [47.377281, 8.538836], [47.358774, 8.557119], [47.387395, 8.519468], [47.41428, 8.518596], [47.416903, 8.555955], [47.418726, 8.507726], [47.421054, 8.502021], [47.379229, 8.538399], [47.390615, 8.524329], [47.369174, 8.532459], [47.370655, 8.56285], [47.378016, 8.492872], [47.349983, 8.533878], [47.398112, 8.536192], [47.379528, 8.537213], [47.368825, 8.51704], [47.407401, 8.530806], [47.355006, 8.534458], [47.363889, 8.548992], [47.373049, 8.52025], [47.379365, 8.521146], [47.410747, 8.556276], [47.383252, 8.533343], [47.419033, 8.507613], [47.388585, 8.489876], [47.390913, 8.523182], [47.383349, 8.484091], [47.410425, 8.545801], [47.361655, 8.560542], [47.410888, 8.545294], [47.33716, 8.539133], [47.367603, 8.55659], [47.398152, 8.536723], [47.397846, 8.533961], [47.35819, 8.556061], [47.390272, 8.481392], [47.391894, 8.512513], [47.368716, 8.524849], [47.372986, 8.546838], [47.413474, 8.532626], [47.389759, 8.533], [47.380501, 8.536095], [47.406047, 8.550215], [47.360932, 8.535612], [47.428041, 8.536915], [47.360767, 8.585942], [47.397761, 8.529614], [47.351403, 8.525489], [47.376304, 8.537557], [47.361348, 8.562469], [47.381885, 8.509331], [47.38508, 8.50819], [47.378261, 8.54173], [47.368348, 8.536096], [47.364427, 8.561302], [47.368699, 8.524716], [47.359139, 8.594922], [47.360212, 8.550676], [47.377199, 8.539907], [47.377199, 8.539893], [47.414335, 8.538514], [47.402472, 8.535501], [47.35565, 8.532049], [47.382796, 8.529281], [47.345147, 8.53452], [47.413418, 8.539436], [47.36249, 8.53444], [47.383849, 8.511993], [47.397539, 8.532127], [47.368905, 8.538054], [47.367373, 8.494026], [47.368402, 8.490709], [47.382187, 8.464176], [47.364449, 8.529899], [47.378831, 8.527214], [47.406007, 8.566366], [47.384444, 8.531911], [47.364423, 8.546792], [47.405815, 8.584951], [47.421779, 8.510253], [47.35514, 8.526042], [47.40278, 8.501577], [47.399158, 8.533074], [47.353462, 8.557617], [47.415061, 8.514954], [47.399771, 8.495303], [47.358353, 8.581759], [47.364814, 8.519858], [47.37426, 8.522579], [47.408142, 8.546535], [47.383877, 8.511861], [47.416735, 8.572225], [47.401625, 8.501077], [47.374431, 8.540591], [47.414448, 8.557719], [47.392489, 8.50263], [47.395775, 8.545444], [47.397988, 8.534136], [47.37262, 8.534304], [47.370684, 8.524969], [47.373924, 8.502564], [47.389733, 8.535715], [47.422475, 8.55077], [47.362167, 8.547526], [47.380607, 8.492871], [47.363169, 8.560243], [47.414386, 8.537946], [47.38332, 8.515585], [47.40529, 8.548437], [47.393115, 8.530089], [47.415565, 8.563043], [47.376618, 8.511808], [47.35637, 8.535757], [47.376934, 8.543185], [47.381632, 8.548593], [47.369312, 8.525497], [47.376002, 8.528679], [47.353555, 8.554482], [47.332493, 8.528544], [47.378306, 8.530408], [47.419709, 8.504552], [47.372847, 8.546345], [47.376952, 8.543239], [47.376951, 8.543265], [47.403242, 8.58687], [47.396657, 8.5293], [47.359919, 8.52193], [47.363364, 8.535252], [47.381665, 8.49219], [47.369949, 8.51121], [47.375631, 8.52887], [47.396174, 8.527158], [47.370266, 8.492401], [47.419898, 8.55497], [47.363954, 8.520344], [47.377083, 8.540765], [47.369257, 8.525628], [47.347247, 8.566791], [47.365757, 8.537115], [47.367915, 8.533426], [47.402978, 8.4849], [47.375758, 8.535441], [47.415172, 8.544164], [47.370188, 8.548805], [47.405551, 8.492728], [47.368779, 8.501627], [47.415722, 8.563603], [47.383214, 8.540177], [47.386704, 8.534593], [47.374151, 8.52839], [47.364776, 8.549434], [47.40931, 8.546719], [47.416241, 8.552734], [47.370461, 8.521892], [47.386695, 8.534593], [47.401133, 8.487964], [47.356085, 8.556136], [47.377116, 8.53923], [47.380006, 8.547447], [47.371136, 8.470862], [47.387275, 8.486552], [47.403642, 8.485973], [47.383325, 8.486686], [47.377594, 8.529639], [47.39476, 8.525433], [47.384491, 8.526998], [47.360471, 8.535854], [47.36828, 8.538584], [47.365974, 8.519815], [47.399924, 8.587633], [47.38793, 8.498592], [47.385304, 8.494593], [47.376842, 8.520632], [47.374972, 8.536722], [47.406535, 8.548132], [47.376474, 8.534873], [47.378118, 8.526471], [47.395152, 8.525838], [47.36703, 8.536598], [47.376776, 8.53807], [47.400701, 8.548646], [47.36186, 8.515337], [47.37434, 8.496481], [47.387966, 8.536142], [47.375616, 8.517071], [47.387357, 8.486514], [47.37803, 8.541447], [47.362444, 8.504771], [47.35622, 8.535423], [47.390106, 8.525789], [47.378663, 8.528773], [47.370462, 8.549261], [47.374465, 8.53891], [47.396168, 8.526853], [47.386806, 8.535152], [47.380144, 8.548059], [47.414064, 8.54149], [47.360869, 8.535611], [47.416589, 8.541781], [47.413885, 8.544203], [47.357888, 8.554797], [47.345049, 8.53342], [47.397831, 8.528874], [47.399731, 8.495673], [47.362933, 8.525658], [47.359294, 8.522341], [47.378524, 8.565744], [47.368757, 8.532847], [47.374417, 8.54112], [47.337477, 8.517014], [47.375314, 8.485364], [47.368326, 8.59998], [47.357455, 8.521827], [47.372582, 8.534501], [47.369349, 8.527325], [47.374464, 8.529588], [47.356034, 8.489724], [47.378669, 8.51949], [47.365158, 8.547098], [47.393385, 8.531989], [47.377143, 8.526915], [47.399856, 8.547661], [47.407075, 8.533899], [47.373915, 8.544765], [47.374104, 8.517146], [47.372965, 8.494335], [47.375909, 8.523182], [47.404225, 8.572886], [47.39703, 8.530778], [47.380622, 8.525132], [47.39254, 8.478311], [47.371011, 8.538004], [47.369452, 8.525897], [47.378441, 8.54172], [47.359241, 8.507751], [47.394727, 8.526029], [47.364694, 8.556992], [47.393838, 8.524964], [47.402186, 8.496769], [47.389227, 8.52744], [47.375109, 8.540261], [47.378642, 8.519542], [47.371434, 8.550169], [47.366307, 8.540781], [47.360305, 8.550426], [47.367601, 8.539973], [47.374193, 8.54297], [47.393564, 8.51293], [47.382483, 8.507939], [47.357521, 8.552698], [47.413212, 8.533615], [47.352608, 8.534131], [47.389999, 8.548384], [47.379551, 8.526209], [47.431319, 8.516436], [47.354562, 8.526242], [47.359217, 8.581646], [47.383552, 8.50518], [47.385253, 8.484354], [47.405448, 8.572952], [47.391502, 8.471667], [47.35709, 8.535758], [47.370645, 8.516732], [47.391098, 8.522617], [47.399524, 8.515197], [47.373118, 8.529269], [47.368307, 8.524338], [47.373082, 8.533055], [47.387586, 8.529764], [47.381129, 8.53816], [47.34045, 8.537547], [47.41905, 8.50764], [47.364928, 8.531537], [47.419438, 8.508483], [47.377059, 8.53948], [47.38138, 8.542046], [47.366953, 8.52292], [47.369645, 8.539751], [47.371863, 8.525933], [47.38493, 8.495194], [47.364581, 8.554699], [47.398234, 8.536619], [47.388997, 8.49501], [47.380576, 8.541473], [47.369484, 8.523501], [47.366885, 8.545201], [47.393308, 8.5249], [47.375427, 8.524708], [47.410895, 8.563236], [47.396522, 8.471566], [47.410909, 8.545069], [47.384036, 8.534167], [47.378564, 8.542093], [47.383917, 8.499717], [47.369417, 8.526757], [47.419537, 8.556076], [47.369221, 8.525588], [47.411521, 8.540258], [47.409524, 8.576471], [47.366619, 8.535345], [47.365354, 8.565929], [47.362261, 8.559311], [47.387871, 8.539518], [47.416633, 8.546553], [47.37444, 8.540657], [47.377174, 8.547216], [47.390149, 8.512544], [47.361684, 8.561218], [47.334892, 8.528897], [47.392744, 8.52359], [47.375077, 8.524635], [47.384979, 8.523856], [47.398023, 8.539913], [47.369735, 8.525532], [47.356013, 8.556095], [47.407993, 8.583077], [47.36366, 8.575399], [47.366707, 8.510668], [47.361892, 8.526405], [47.374283, 8.544852], [47.362679, 8.515313], [47.402402, 8.550417], [47.388014, 8.520567], [47.408851, 8.557879], [47.349712, 8.534058], [47.420006, 8.500582], [47.365766, 8.537102], [47.370585, 8.535533], [47.410582, 8.572253], [47.416596, 8.535381], [47.383622, 8.548317], [47.379142, 8.525671], [47.400767, 8.54833], [47.367816, 8.490883], [47.365274, 8.521575], [47.391189, 8.489451], [47.377189, 8.539999], [47.380254, 8.494055], [47.374921, 8.544878], [47.404505, 8.544009], [47.361595, 8.551857], [47.425681, 8.50943], [47.389408, 8.491429], [47.375083, 8.553264], [47.378912, 8.523322], [47.372954, 8.547406], [47.373241, 8.535243], [47.359307, 8.581687], [47.386389, 8.518296], [47.369783, 8.533782], [47.372987, 8.53635], [47.387014, 8.509156], [47.372973, 8.531252], [47.366546, 8.547736], [47.363277, 8.548105], [47.398439, 8.530185], [47.402825, 8.499709], [47.370277, 8.518539], [47.375914, 8.488593], [47.358738, 8.557092], [47.357745, 8.52444], [47.369124, 8.497331], [47.369858, 8.538113], [47.369453, 8.52587], [47.37812, 8.497231], [47.369539, 8.515703], [47.389012, 8.486494], [47.392045, 8.51082], [47.391589, 8.519262], [47.3779, 8.541894], [47.387521, 8.500014], [47.339902, 8.531726], [47.39583, 8.532105], [47.411, 8.507584], [47.375344, 8.524945], [47.387613, 8.499791], [47.389426, 8.551908], [47.375, 8.539384], [47.379151, 8.500523], [47.368913, 8.540119], [47.351077, 8.534285], [47.3854, 8.536421], [47.374499, 8.539136], [47.392869, 8.522758], [47.405098, 8.559947], [47.372964, 8.533172], [47.403531, 8.573945], [47.397696, 8.532686], [47.411084, 8.570647], [47.37103, 8.530246], [47.377405, 8.500687], [47.356481, 8.551419], [47.364224, 8.554414], [47.376736, 8.536573], [47.364197, 8.554413], [47.378597, 8.504974], [47.392541, 8.523255], [47.378647, 8.539963], [47.369732, 8.541897], [47.378403, 8.520094], [47.388234, 8.520148], [47.370106, 8.548883], [47.377345, 8.510048], [47.388021, 8.519812], [47.345714, 8.534439], [47.391604, 8.523395], [47.403806, 8.496655], [47.369854, 8.509897], [47.390549, 8.545415], [47.367917, 8.560396], [47.402082, 8.499257], [47.372062, 8.521951], [47.41406, 8.541941], [47.373753, 8.544761], [47.427725, 8.538022], [47.388005, 8.485414], [47.369305, 8.528145], [47.358977, 8.585029], [47.408537, 8.54665], [47.380902, 8.54679], [47.366892, 8.564068], [47.390195, 8.522055], [47.428311, 8.542554], [47.369726, 8.536905], [47.392772, 8.523485], [47.36054, 8.581621], [47.361421, 8.551217], [47.382915, 8.514702], [47.406009, 8.53344], [47.373238, 8.527934], [47.425185, 8.54583], [47.389374, 8.521416], [47.395349, 8.518226], [47.375047, 8.53638], [47.375266, 8.533166], [47.356226, 8.523364], [47.356572, 8.523953], [47.393384, 8.50025], [47.400176, 8.494212], [47.385068, 8.508481], [47.378957, 8.54234], [47.388178, 8.525127], [47.367868, 8.545937], [47.3729, 8.535104], [47.338044, 8.537047], [47.391855, 8.517731], [47.342639, 8.536189], [47.366519, 8.536442], [47.421429, 8.549251], [47.401858, 8.588575], [47.419161, 8.506396], [47.383061, 8.54024], [47.365098, 8.55328], [47.354853, 8.556971], [47.429455, 8.545229], [47.383726, 8.533684], [47.37859, 8.542147], [47.384564, 8.526881], [47.336382, 8.520578], [47.393776, 8.502563], [47.373221, 8.513434], [47.410062, 8.569327], [47.363746, 8.574792], [47.391264, 8.523203], [47.412896, 8.540419], [47.426176, 8.553207], [47.368778, 8.538184], [47.397926, 8.474547], [47.413244, 8.538797], [47.410825, 8.55005], [47.376904, 8.540682], [47.365376, 8.537412], [47.402186, 8.496795], [47.402644, 8.491902], [47.389329, 8.516607], [47.389671, 8.511739], [47.360966, 8.568511], [47.39072, 8.522662], [47.413084, 8.535746], [47.374958, 8.534444], [47.384965, 8.533935], [47.385084, 8.530878], [47.391402, 8.519987], [47.375685, 8.526925], [47.375841, 8.538978], [47.371725, 8.519548], [47.36948, 8.520098], [47.409446, 8.566982], [47.388016, 8.485176], [47.383271, 8.53043], [47.37252, 8.521034], [47.430549, 8.485734], [47.387831, 8.524709], [47.389845, 8.486921], [47.367109, 8.528325], [47.365456, 8.518534], [47.354187, 8.55791], [47.376909, 8.535398], [47.369418, 8.533337], [47.374286, 8.517878], [47.390595, 8.479531], [47.363342, 8.567436], [47.379721, 8.520584], [47.404891, 8.55716], [47.370895, 8.548237], [47.386483, 8.496483], [47.335, 8.51932], [47.402718, 8.535201], [47.368925, 8.489608], [47.368552, 8.55988], [47.364691, 8.532856], [47.41418, 8.529248], [47.376848, 8.512236], [47.404763, 8.498224], [47.409131, 8.545602], [47.380423, 8.515645], [47.387043, 8.486375], [47.373115, 8.53144], [47.411935, 8.52797], [47.386396, 8.518508], [47.396619, 8.540891], [47.393741, 8.502469], [47.363047, 8.517333], [47.359256, 8.520698], [47.402056, 8.495229], [47.383857, 8.57779], [47.37412, 8.541167], [47.366617, 8.54129], [47.388232, 8.531883], [47.382257, 8.533071], [47.386819, 8.534768], [47.359044, 8.551446], [47.383209, 8.530323], [47.428016, 8.536716], [47.373682, 8.537066], [47.356608, 8.523861], [47.416766, 8.545827], [47.363634, 8.533351], [47.420029, 8.503962], [47.373866, 8.540447], [47.405407, 8.548479], [47.377368, 8.541976], [47.374996, 8.538908], [47.365475, 8.546867], [47.413738, 8.564171], [47.422489, 8.499518], [47.368016, 8.540789], [47.375101, 8.536434], [47.355313, 8.559615], [47.365272, 8.538906], [47.372249, 8.505748], [47.38913, 8.54614], [47.411441, 8.527801], [47.388287, 8.491009], [47.381417, 8.517109], [47.37989, 8.494459], [47.387803, 8.515251], [47.413452, 8.530174], [47.395295, 8.484021], [47.366709, 8.560675], [47.372845, 8.547483], [47.392449, 8.523465], [47.421638, 8.538626], [47.389664, 8.511541], [47.371238, 8.547132], [47.392532, 8.523255], [47.409578, 8.496955], [47.384585, 8.54831], [47.376325, 8.48394], [47.391303, 8.538118], [47.385005, 8.484998], [47.389126, 8.527623], [47.352263, 8.506605], [47.366585, 8.540866], [47.349555, 8.565331], [47.385716, 8.528666], [47.398033, 8.535966], [47.379856, 8.524388], [47.366238, 8.545175], [47.328479, 8.529706], [47.399535, 8.497431], [47.391942, 8.518011], [47.366029, 8.520664], [47.391118, 8.487383], [47.3731, 8.536763], [47.410368, 8.572991], [47.41189, 8.525094], [47.377265, 8.535843], [47.380512, 8.548067], [47.36314, 8.535221], [47.369319, 8.525696], [47.35107, 8.576878], [47.372901, 8.536018], [47.370611, 8.548774], [47.368532, 8.499159], [47.39866, 8.539184], [47.383175, 8.506086], [47.377975, 8.536877], [47.377405, 8.543764], [47.405849, 8.590676], [47.369091, 8.525082], [47.361587, 8.55179], [47.380031, 8.486953], [47.387313, 8.488328], [47.378039, 8.54142], [47.376048, 8.559587], [47.379507, 8.525096], [47.386452, 8.527952], [47.369881, 8.52907], [47.387798, 8.529212], [47.375409, 8.517967], [47.38975, 8.526324], [47.405116, 8.56734], [47.384858, 8.537575], [47.382185, 8.488452], [47.421265, 8.549446], [47.383026, 8.527763], [47.364, 8.568178], [47.382188, 8.504795], [47.372655, 8.53445], [47.366792, 8.535137], [47.3734, 8.519304], [47.364867, 8.547423], [47.360008, 8.522938], [47.358064, 8.520158], [47.40953, 8.542536], [47.378656, 8.539923], [47.408923, 8.57447], [47.381728, 8.516546], [47.362233, 8.559376], [47.362233, 8.55939], [47.385927, 8.517743], [47.390746, 8.523748], [47.402226, 8.508044], [47.368489, 8.530736], [47.370727, 8.50197], [47.36214, 8.531493], [47.378449, 8.566087], [47.386775, 8.534701], [47.364789, 8.536791], [47.366604, 8.540773], [47.362193, 8.532593], [47.359246, 8.551953], [47.364696, 8.566008], [47.387108, 8.534654], [47.377775, 8.543693], [47.36708, 8.55025], [47.379314, 8.537884], [47.364231, 8.53106], [47.364873, 8.531669], [47.363724, 8.566941], [47.41852, 8.542073], [47.41852, 8.542073], [47.362528, 8.535208], [47.369748, 8.509644], [47.381489, 8.503536], [47.370839, 8.508421], [47.378921, 8.500121], [47.378441, 8.540859], [47.373506, 8.519504], [47.424112, 8.499166], [47.410403, 8.532961], [47.384084, 8.485324], [47.385996, 8.53242], [47.371495, 8.521013], [47.3732, 8.547014], [47.392036, 8.51082], [47.358404, 8.517477], [47.374554, 8.538991], [47.335226, 8.53822], [47.389781, 8.486972], [47.385538, 8.53045], [47.335235, 8.538167], [47.38007, 8.520697], [47.395551, 8.517806], [47.360023, 8.516584], [47.37453, 8.53964], [47.3817, 8.52914], [47.389445, 8.521444], [47.367328, 8.537412], [47.360423, 8.526653], [47.376911, 8.540854], [47.373789, 8.536208], [47.405489, 8.480736], [47.380729, 8.52524], [47.381724, 8.494575], [47.36493, 8.553925], [47.370313, 8.548861], [47.361897, 8.547626], [47.377749, 8.528384], [47.369702, 8.467246], [47.357038, 8.535545], [47.351985, 8.525726], [47.351153, 8.560057], [47.391449, 8.519776], [47.392531, 8.523281], [47.391132, 8.489781], [47.378367, 8.534395], [47.373023, 8.534484], [47.396883, 8.481509], [47.385382, 8.517375], [47.350866, 8.559971], [47.365391, 8.521617], [47.391023, 8.523026], [47.383424, 8.53046], [47.377904, 8.4963], [47.374767, 8.549655], [47.368369, 8.538625], [47.374661, 8.545707], [47.369445, 8.526691], [47.354133, 8.557022], [47.372289, 8.518831], [47.402262, 8.499287], [47.417257, 8.509976], [47.374501, 8.538897], [47.377394, 8.498938], [47.387165, 8.519027], [47.378498, 8.541417], [47.360305, 8.567067], [47.375763, 8.543373], [47.405701, 8.533725], [47.38355, 8.488744], [47.409587, 8.496995], [47.381051, 8.503262], [47.384107, 8.51613], [47.393619, 8.538564], [47.369964, 8.539294], [47.359657, 8.547659], [47.369471, 8.520032], [47.373361, 8.524388], [47.40513, 8.560398], [47.366381, 8.540597], [47.374743, 8.544663], [47.371955, 8.519936], [47.405624, 8.548391], [47.368953, 8.540663], [47.389221, 8.488246], [47.364992, 8.553079], [47.380876, 8.561675], [47.410079, 8.546191], [47.381378, 8.537477], [47.37691, 8.528711], [47.408973, 8.539636], [47.420299, 8.508778], [47.391637, 8.542682], [47.371657, 8.544797], [47.388999, 8.488931], [47.418533, 8.506225], [47.364641, 8.566126], [47.389437, 8.511708], [47.359653, 8.522427], [47.400176, 8.494225], [47.369206, 8.525283], [47.405772, 8.591177], [47.381462, 8.510329], [47.372089, 8.521925], [47.387018, 8.485143], [47.384679, 8.544167], [47.422029, 8.550403], [47.373844, 8.538063], [47.358282, 8.515105], [47.422256, 8.53897], [47.392543, 8.493875], [47.383687, 8.498322], [47.380067, 8.556003], [47.393298, 8.530649], [47.391514, 8.519539], [47.384188, 8.548421], [47.375601, 8.545303], [47.374457, 8.541651], [47.364821, 8.538075], [47.367919, 8.555603], [47.362841, 8.579023], [47.385734, 8.526838], [47.386655, 8.4905], [47.366115, 8.540168], [47.422226, 8.550566], [47.377786, 8.518691], [47.384691, 8.54283], [47.374504, 8.546194], [47.350159, 8.534332], [47.377864, 8.498643], [47.382735, 8.541451], [47.407508, 8.548854], [47.37454, 8.53956], [47.37866, 8.519556], [47.377539, 8.542006], [47.357496, 8.535634], [47.340479, 8.519193], [47.34566, 8.534451], [47.335738, 8.540136], [47.405083, 8.572626], [47.378831, 8.508952], [47.388175, 8.534981], [47.367056, 8.493291], [47.428573, 8.54529], [47.374041, 8.502619], [47.360688, 8.583941], [47.373906, 8.517169], [47.373153, 8.536883], [47.386792, 8.534727], [47.374458, 8.538777], [47.379566, 8.510106], [47.380922, 8.525826], [47.379352, 8.537687], [47.368954, 8.523358], [47.389447, 8.511629], [47.399892, 8.544827], [47.390563, 8.508684], [47.375767, 8.535441], [47.403642, 8.486993], [47.371153, 8.525839], [47.389687, 8.511965], [47.374588, 8.518308], [47.378984, 8.542367], [47.329625, 8.53129], [47.384961, 8.500665], [47.371084, 8.5303], [47.361093, 8.535695], [47.408107, 8.577872], [47.370055, 8.54483], [47.384189, 8.548368], [47.357619, 8.521592], [47.379663, 8.527721], [47.393575, 8.492134], [47.384471, 8.532892], [47.373655, 8.533292], [47.36765, 8.538637], [47.393078, 8.531187], [47.414029, 8.542351], [47.410907, 8.546142], [47.358972, 8.516417], [47.403253, 8.576655], [47.361316, 8.525466], [47.373777, 8.536578], [47.37418, 8.544346], [47.404837, 8.594668], [47.373292, 8.535496], [47.387233, 8.501015], [47.386176, 8.535231], [47.383629, 8.506519], [47.367117, 8.539751], [47.378092, 8.497363], [47.372013, 8.524254], [47.366618, 8.541184], [47.376759, 8.482691], [47.383353, 8.484674], [47.419652, 8.547848], [47.36767, 8.495064], [47.383298, 8.530418], [47.362508, 8.510517], [47.366208, 8.546445], [47.381069, 8.504176], [47.387841, 8.520828], [47.383418, 8.539545], [47.363422, 8.534869], [47.38112, 8.538173], [47.39182, 8.517637], [47.371998, 8.483961], [47.391961, 8.517932], [47.373283, 8.513581], [47.378519, 8.526943], [47.392035, 8.517708], [47.403208, 8.554501], [47.391917, 8.517825], [47.386166, 8.535311], [47.41263, 8.480849], [47.38111, 8.537299], [47.351598, 8.602356], [47.355318, 8.555472], [47.397459, 8.489428], [47.37709, 8.541957], [47.422458, 8.550756], [47.400602, 8.492882], [47.358483, 8.549991], [47.37751, 8.509746], [47.417928, 8.503522], [47.367481, 8.528915], [47.374477, 8.540473], [47.391051, 8.522841], [47.37083, 8.539987], [47.359259, 8.551622], [47.357091, 8.552517], [47.395472, 8.531925], [47.414124, 8.518937], [47.372915, 8.538269], [47.401803, 8.585924], [47.326574, 8.518964], [47.378403, 8.520094], [47.397877, 8.532584], [47.376319, 8.541623], [47.372695, 8.534914], [47.405613, 8.53534], [47.405425, 8.480815], [47.374274, 8.52487], [47.355446, 8.574602], [47.422466, 8.55081], [47.378081, 8.511201], [47.404566, 8.484309], [47.367989, 8.572407], [47.371039, 8.530259], [47.369256, 8.527614], [47.356581, 8.523953], [47.382629, 8.530735], [47.393198, 8.521242], [47.387465, 8.486516], [47.384792, 8.503337], [47.381905, 8.51304], [47.389579, 8.511936], [47.381976, 8.516061], [47.383184, 8.506046], [47.391714, 8.518351], [47.387252, 8.488154], [47.370485, 8.549752], [47.384894, 8.531934], [47.370466, 8.549857], [47.392045, 8.517615], [47.365723, 8.535936], [47.370233, 8.525132], [47.376733, 8.524602], [47.386171, 8.498212], [47.390062, 8.53898], [47.37383, 8.519524], [47.385712, 8.517606], [47.389757, 8.512085], [47.403901, 8.568308], [47.423908, 8.524013], [47.352391, 8.534219], [47.373578, 8.519532], [47.344615, 8.529851], [47.365291, 8.53884], [47.377834, 8.521274], [47.363014, 8.563272], [47.370886, 8.538849], [47.366426, 8.546238], [47.398239, 8.537056], [47.366928, 8.558548], [47.408241, 8.552195], [47.365694, 8.54846], [47.389962, 8.512355], [47.411517, 8.526411], [47.385004, 8.508692], [47.377134, 8.540157], [47.368663, 8.521869], [47.3746, 8.502484], [47.370709, 8.516588], [47.365966, 8.536855], [47.368586, 8.53095], [47.366909, 8.558561], [47.389475, 8.51151], [47.376694, 8.499745], [47.386733, 8.547587], [47.405517, 8.592391], [47.386171, 8.498212], [47.381644, 8.533204], [47.364452, 8.548514], [47.412072, 8.524832], [47.373602, 8.519824], [47.331587, 8.535909], [47.377876, 8.541576], [47.372855, 8.543604], [47.368706, 8.528768], [47.390988, 8.522919], [47.338014, 8.52691], [47.376972, 8.5421], [47.375744, 8.54912], [47.372766, 8.531261], [47.373029, 8.532908], [47.372765, 8.529434], [47.358324, 8.526014], [47.378581, 8.542134], [47.374418, 8.502719], [47.380444, 8.54396], [47.366747, 8.534223], [47.403252, 8.497227], [47.361891, 8.560269], [47.408711, 8.546256], [47.393265, 8.524621], [47.360311, 8.525194], [47.384217, 8.511113], [47.362537, 8.551201], [47.407838, 8.547298], [47.387663, 8.488401], [47.382315, 8.505724], [47.34052, 8.527252], [47.371058, 8.499262], [47.361342, 8.534098], [47.372, 8.542778], [47.329889, 8.529999], [47.357132, 8.532225], [47.381233, 8.555405], [47.383236, 8.539833], [47.383437, 8.539493], [47.373145, 8.536791], [47.36272, 8.54714], [47.41439, 8.554444], [47.36844, 8.523586], [47.385743, 8.54856], [47.367269, 8.53708], [47.373129, 8.528077], [47.373462, 8.519424], [47.391489, 8.523128], [47.373454, 8.528918], [47.357011, 8.522135], [47.392912, 8.539132], [47.415638, 8.543378], [47.373113, 8.547648], [47.393327, 8.524808], [47.361082, 8.50616], [47.369239, 8.527561], [47.351648, 8.576599], [47.409201, 8.544901], [47.370522, 8.54962], [47.380226, 8.513681], [47.404869, 8.595066], [47.373823, 8.536473], [47.363163, 8.533659], [47.377359, 8.499825], [47.392013, 8.527722], [47.376312, 8.516648], [47.365124, 8.55344], [47.381081, 8.492085], [47.37377, 8.53638], [47.378647, 8.565164], [47.374628, 8.53596], [47.355023, 8.526026], [47.375779, 8.530369], [47.350054, 8.562085], [47.375908, 8.522414], [47.368966, 8.50175], [47.366142, 8.521156], [47.417146, 8.510292], [47.359864, 8.594342], [47.378344, 8.557437], [47.407121, 8.586688], [47.386657, 8.483295], [47.365892, 8.561426], [47.387977, 8.488513], [47.371579, 8.515904], [47.369951, 8.531203], [47.377004, 8.539598], [47.363959, 8.546438], [47.376381, 8.537069], [47.395518, 8.481243], [47.353144, 8.57728], [47.380898, 8.492426], [47.375927, 8.537484], [47.355095, 8.557042], [47.378674, 8.516087], [47.383007, 8.499871], [47.369099, 8.547935], [47.385478, 8.532899], [47.355223, 8.554967], [47.362711, 8.547154], [47.392213, 8.52456], [47.369083, 8.527902], [47.385654, 8.477858], [47.366576, 8.540826], [47.415158, 8.570654], [47.370054, 8.539269], [47.379654, 8.537163], [47.376838, 8.514249], [47.371512, 8.542954], [47.378403, 8.520094], [47.378872, 8.542762], [47.37745, 8.539064], [47.412227, 8.546422], [47.36728, 8.561164], [47.386604, 8.536525], [47.421915, 8.510109], [47.346355, 8.564098], [47.378587, 8.528215], [47.392323, 8.503116], [47.394365, 8.493315], [47.380547, 8.525514], [47.382334, 8.514254], [47.390434, 8.50896], [47.344975, 8.53363], [47.371071, 8.538337], [47.419685, 8.50031], [47.372814, 8.493167], [47.362373, 8.550456], [47.361504, 8.534088], [47.412284, 8.537637], [47.370533, 8.548415], [47.374321, 8.532366], [47.374179, 8.475569], [47.363861, 8.534084], [47.370917, 8.535553], [47.352694, 8.525013], [47.366954, 8.558562], [47.404074, 8.563556], [47.368437, 8.537183], [47.397055, 8.493223], [47.375417, 8.540942], [47.386778, 8.547508], [47.339978, 8.530312], [47.403201, 8.576468], [47.414777, 8.560906], [47.35673, 8.535791], [47.414791, 8.520727], [47.386218, 8.517431], [47.398042, 8.536045], [47.367507, 8.541361], [47.385382, 8.536473], [47.423072, 8.542048], [47.385208, 8.536774], [47.374304, 8.514979], [47.373029, 8.532935], [47.375719, 8.529057], [47.4142, 8.562868], [47.361262, 8.506124], [47.378007, 8.536348], [47.417978, 8.554546], [47.428839, 8.548464], [47.374438, 8.539836], [47.419725, 8.504764], [47.391677, 8.51937], [47.371539, 8.51916], [47.392153, 8.545183], [47.368704, 8.5289], [47.35816, 8.554591], [47.365433, 8.539015], [47.419303, 8.510468], [47.403563, 8.588943], [47.383279, 8.53055], [47.367743, 8.534481], [47.344154, 8.531998], [47.389908, 8.531546], [47.37011, 8.522865], [47.369724, 8.549378], [47.372, 8.521844], [47.386123, 8.548316], [47.353178, 8.511667], [47.376867, 8.536986], [47.375095, 8.544591], [47.404024, 8.485583], [47.359678, 8.550148], [47.397922, 8.532506], [47.391392, 8.522967], [47.377663, 8.50971], [47.405794, 8.590688], [47.373186, 8.535375], [47.366212, 8.545068], [47.398121, 8.474803], [47.420808, 8.502334], [47.387632, 8.499712], [47.372089, 8.543813], [47.380148, 8.547582], [47.418056, 8.546437], [47.409887, 8.549354], [47.384478, 8.534971], [47.3635, 8.554822], [47.39822, 8.534313], [47.352615, 8.573403], [47.390947, 8.521501], [47.409928, 8.54318], [47.398212, 8.536088], [47.382503, 8.540241], [47.378903, 8.523348], [47.380279, 8.557359], [47.36925, 8.556465], [47.379489, 8.50776], [47.403471, 8.583708], [47.366745, 8.56159], [47.3764, 8.527482], [47.379296, 8.494593], [47.383133, 8.540228], [47.412322, 8.566354], [47.404762, 8.57413], [47.405149, 8.480557], [47.386989, 8.534851], [47.369271, 8.548693], [47.383903, 8.533993], [47.404511, 8.489409], [47.408527, 8.550505], [47.366857, 8.564875], [47.402349, 8.493685], [47.380281, 8.520251], [47.378155, 8.510038], [47.414603, 8.483459], [47.371781, 8.525958], [47.39961, 8.553578], [47.383904, 8.542389], [47.369173, 8.527838], [47.376594, 8.526903], [47.360992, 8.54819], [47.398982, 8.509688], [47.364339, 8.531102], [47.379827, 8.494471], [47.378309, 8.509855], [47.399115, 8.495171], [47.393354, 8.524795], [47.418433, 8.508303], [47.381712, 8.532663], [47.375254, 8.513422], [47.377541, 8.51025], [47.39114, 8.487847], [47.388126, 8.528728], [47.375991, 8.526891], [47.40914, 8.547563], [47.387396, 8.535548], [47.382468, 8.529685], [47.369828, 8.53659], [47.418921, 8.507041], [47.380204, 8.54181], [47.369232, 8.499292], [47.386898, 8.534995], [47.392137, 8.524042], [47.380652, 8.525821], [47.378984, 8.544221], [47.387538, 8.527193], [47.378035, 8.526708], [47.387824, 8.48659], [47.411141, 8.547075], [47.377112, 8.544315], [47.413738, 8.546453], [47.413071, 8.532393], [47.402561, 8.582099], [47.38782, 8.519252], [47.416533, 8.547598], [47.366243, 8.548352], [47.375276, 8.484582], [47.405233, 8.481195], [47.371334, 8.513184], [47.364303, 8.546167], [47.375172, 8.518307], [47.374396, 8.542391], [47.361458, 8.561372], [47.388792, 8.479946], [47.389043, 8.536416], [47.371863, 8.51722], [47.413482, 8.518315], [47.376947, 8.521905], [47.382307, 8.482932], [47.375618, 8.488548], [47.364786, 8.553975], [47.376015, 8.548993], [47.368268, 8.564998], [47.371829, 8.510281], [47.369956, 8.501796], [47.396884, 8.53002], [47.361088, 8.589788], [47.386211, 8.535351], [47.354636, 8.601734], [47.39113, 8.523081], [47.383327, 8.533067], [47.36329, 8.535515], [47.360761, 8.510747], [47.387771, 8.48843], [47.364826, 8.565561], [47.362242, 8.559337], [47.35889, 8.525152], [47.371823, 8.548124], [47.353857, 8.523726], [47.383727, 8.530757], [47.3642, 8.536302], [47.380357, 8.493634], [47.370188, 8.548818], [47.37381, 8.537784], [47.392669, 8.502713], [47.405705, 8.591534], [47.364384, 8.546248], [47.377608, 8.519495], [47.405821, 8.573477], [47.385431, 8.5207], [47.407645, 8.485959], [47.375767, 8.535441], [47.368428, 8.547511], [47.377232, 8.523195], [47.378089, 8.516141], [47.375824, 8.530317], [47.408712, 8.546243], [47.399574, 8.535732], [47.392466, 8.49639], [47.415738, 8.512715], [47.367828, 8.539753], [47.392497, 8.524089], [47.365945, 8.532472], [47.373541, 8.534852], [47.393713, 8.551269], [47.357844, 8.520643], [47.354068, 8.526152], [47.38686, 8.490729], [47.40323, 8.587121], [47.360737, 8.507516], [47.376858, 8.535079], [47.405014, 8.53501], [47.404584, 8.499161], [47.366584, 8.519973], [47.3911, 8.522431], [47.370791, 8.53183], [47.414885, 8.551605], [47.365619, 8.513559], [47.365472, 8.521566], [47.429669, 8.549118], [47.401861, 8.581885], [47.367023, 8.548607], [47.412159, 8.484127], [47.431248, 8.543954], [47.355128, 8.507047], [47.383446, 8.572974], [47.367576, 8.509123], [47.425625, 8.494027], [47.408854, 8.546418], [47.362807, 8.504394], [47.403497, 8.55627], [47.375788, 8.53037], [47.382558, 8.529753], [47.359016, 8.525128], [47.372964, 8.520725], [47.364393, 8.546196], [47.361932, 8.532588], [47.385181, 8.536774], [47.40288, 8.48674], [47.387351, 8.527971], [47.373154, 8.53683], [47.362204, 8.513252], [47.414769, 8.519215], [47.357529, 8.521577], [47.39461, 8.542201], [47.38452, 8.480949], [47.382477, 8.529752], [47.400454, 8.508976], [47.378526, 8.509807], [47.4042, 8.534489], [47.373098, 8.517894], [47.390575, 8.474802], [47.363158, 8.527516], [47.422318, 8.547493], [47.361013, 8.535601], [47.381768, 8.515235], [47.399502, 8.497153], [47.377378, 8.550332], [47.388503, 8.491053], [47.371625, 8.525425], [47.393827, 8.472242], [47.365978, 8.545103], [47.394318, 8.474597], [47.425991, 8.493332], [47.368348, 8.541842], [47.382791, 8.495947], [47.404282, 8.484939], [47.367121, 8.530881], [47.360431, 8.550402], [47.361254, 8.562957], [47.423022, 8.550026], [47.373501, 8.542823], [47.40198, 8.499587], [47.374238, 8.542944], [47.362057, 8.566349], [47.392119, 8.500847], [47.375502, 8.563853], [47.364481, 8.531277], [47.386559, 8.528047], [47.396306, 8.504322], [47.368905, 8.540027], [47.421018, 8.502073], [47.367708, 8.495806], [47.39821, 8.494795], [47.366753, 8.542061], [47.364315, 8.529777], [47.380537, 8.542638], [47.378186, 8.510594], [47.394101, 8.541766], [47.37673, 8.524827], [47.427724, 8.537094], [47.370146, 8.521038], [47.376924, 8.554494], [47.368953, 8.54065], [47.399767, 8.51809], [47.408677, 8.543274], [47.383749, 8.588688], [47.373769, 8.536433], [47.368053, 8.541571], [47.385537, 8.53049], [47.381656, 8.492242], [47.391078, 8.536259], [47.378372, 8.509909], [47.397381, 8.49005], [47.38991, 8.549203], [47.369781, 8.525414], [47.378324, 8.530382], [47.387819, 8.519278], [47.364038, 8.547552], [47.363774, 8.57474], [47.370161, 8.548791], [47.373518, 8.503694], [47.397683, 8.474503], [47.367618, 8.537206], [47.39566, 8.545243], [47.419228, 8.507882], [47.391096, 8.522842], [47.375537, 8.548162], [47.39139, 8.538345], [47.378442, 8.510083], [47.407659, 8.554687], [47.374403, 8.516941], [47.363642, 8.575399], [47.363033, 8.548286], [47.374352, 8.578421], [47.372973, 8.520699], [47.368885, 8.547719], [47.408827, 8.54643], [47.374227, 8.544069], [47.359637, 8.516457], [47.410235, 8.546844], [47.41375, 8.546069], [47.402773, 8.554863], [47.402672, 8.581757], [47.420635, 8.502622], [47.374993, 8.528764], [47.409794, 8.549631], [47.37388, 8.540858], [47.385651, 8.508745], [47.377237, 8.538822], [47.37017, 8.548792], [47.383876, 8.529264], [47.375958, 8.53804], [47.39786, 8.532451], [47.387072, 8.486151], [47.364896, 8.553779], [47.386299, 8.522148], [47.381064, 8.491979], [47.336863, 8.533516], [47.369014, 8.538003], [47.408904, 8.579147], [47.427319, 8.539048], [47.366565, 8.541964], [47.364758, 8.55412], [47.374171, 8.544267], [47.388451, 8.539106], [47.374754, 8.531236], [47.359322, 8.513564], [47.377254, 8.510205], [47.363564, 8.554718], [47.362637, 8.558511], [47.34305, 8.527053], [47.364122, 8.53021], [47.35486, 8.574735], [47.404832, 8.565148], [47.356876, 8.527004], [47.385044, 8.516904], [47.376522, 8.557055], [47.39105, 8.536272], [47.417839, 8.559619], [47.38229, 8.528543], [47.379068, 8.556075], [47.398274, 8.532433], [47.386545, 8.503504], [47.391499, 8.485059], [47.359622, 8.557733], [47.386205, 8.548159], [47.381721, 8.492032], [47.372472, 8.535651], [47.395241, 8.508553], [47.397898, 8.534135], [47.381115, 8.548119], [47.411361, 8.525785], [47.405085, 8.535064], [47.408503, 8.543628], [47.379411, 8.529636], [47.371119, 8.531373], [47.383261, 8.513306], [47.337772, 8.535295], [47.358204, 8.554605], [47.343052, 8.534424], [47.366235, 8.534146], [47.363692, 8.526283], [47.37592, 8.521063], [47.416562, 8.545505], [47.373924, 8.517129], [47.384984, 8.531022], [47.326288, 8.518812], [47.349852, 8.576336], [47.369017, 8.529185], [47.391146, 8.489264], [47.405667, 8.549518], [47.366798, 8.51353], [47.386474, 8.496496], [47.400328, 8.505091], [47.390963, 8.522693], [47.38846, 8.53904], [47.389392, 8.54139], [47.412861, 8.517454], [47.380818, 8.533969], [47.372249, 8.535474], [47.377237, 8.498326], [47.400036, 8.519089], [47.374505, 8.546088], [47.386919, 8.530849], [47.376785, 8.538084], [47.369364, 8.529563], [47.371633, 8.538759], [47.370816, 8.519596], [47.360447, 8.569135], [47.381024, 8.561241], [47.358926, 8.516495], [47.367083, 8.56108], [47.396762, 8.540973], [47.385154, 8.531012], [47.388454, 8.492496], [47.352302, 8.52556], [47.392746, 8.523445], [47.352094, 8.558634], [47.364242, 8.566409], [47.368031, 8.556109], [47.410785, 8.567169], [47.427564, 8.546396], [47.375886, 8.544607], [47.366635, 8.51072], [47.375074, 8.540154], [47.368693, 8.532965], [47.386787, 8.502635], [47.386824, 8.502437], [47.35907, 8.585601], [47.405936, 8.566298], [47.35479, 8.526842], [47.366191, 8.553753], [47.372893, 8.529264], [47.40944, 8.540639], [47.387395, 8.519442], [47.406925, 8.550591], [47.401868, 8.504937], [47.37398, 8.520772], [47.325988, 8.513382], [47.428685, 8.488852], [47.375387, 8.486173], [47.373897, 8.483892], [47.383798, 8.530865], [47.37032, 8.491502], [47.429892, 8.538027], [47.386177, 8.497497], [47.38245, 8.540214], [47.376757, 8.541924], [47.36611, 8.561245], [47.385078, 8.508468], [47.400914, 8.535707], [47.398748, 8.58558], [47.372614, 8.514839], [47.367002, 8.54711], [47.378779, 8.523147], [47.381362, 8.534483], [47.375516, 8.541898], [47.351836, 8.505035], [47.370627, 8.524385], [47.378147, 8.509918], [47.363995, 8.546452], [47.376672, 8.538558], [47.360405, 8.526613], [47.372955, 8.520712], [47.417837, 8.554238], [47.422706, 8.540781], [47.375257, 8.547322], [47.376857, 8.52765], [47.393799, 8.50104], [47.376593, 8.494062], [47.424888, 8.541198], [47.372371, 8.520686], [47.364042, 8.556475], [47.418787, 8.506972], [47.397023, 8.530606], [47.39637, 8.531189], [47.389646, 8.51154], [47.369041, 8.537951], [47.348186, 8.528031], [47.350283, 8.56078], [47.360407, 8.564011], [47.40825, 8.546538], [47.419766, 8.548116], [47.370349, 8.548862], [47.394077, 8.493336], [47.380034, 8.520696], [47.368865, 8.529023], [47.362488, 8.534678], [47.371224, 8.516307], [47.379142, 8.518056], [47.368315, 8.524351], [47.378499, 8.540344], [47.37944, 8.537887], [47.383088, 8.484033], [47.411742, 8.506181], [47.41725, 8.54418], [47.36088, 8.598865], [47.417794, 8.509231], [47.377448, 8.512486], [47.361727, 8.518061], [47.376038, 8.516166], [47.375891, 8.51072], [47.35237, 8.576337], [47.372909, 8.536084], [47.406848, 8.578785], [47.398159, 8.536048], [47.365207, 8.530643], [47.379316, 8.537739], [47.36396, 8.546359], [47.353429, 8.511831], [47.362392, 8.532439], [47.405787, 8.552025], [47.418092, 8.560353], [47.370155, 8.51328], [47.36783, 8.496206], [47.423088, 8.503904], [47.386751, 8.547587], [47.364456, 8.498271], [47.39797, 8.474628], [47.413347, 8.476133], [47.377257, 8.551707], [47.375829, 8.535469], [47.376491, 8.5416], [47.421194, 8.507352], [47.42627, 8.55464], [47.39613, 8.527024], [47.393159, 8.5245], [47.381889, 8.512867], [47.375184, 8.528517], [47.374868, 8.484905], [47.412314, 8.539228], [47.366867, 8.549914], [47.401965, 8.499282], [47.40748, 8.486367], [47.362798, 8.552067], [47.383539, 8.574512], [47.385969, 8.545571], [47.376268, 8.525228], [47.390739, 8.54628], [47.389696, 8.511886], [47.367799, 8.560486], [47.374446, 8.539995], [47.363331, 8.506125], [47.360945, 8.571515], [47.409557, 8.537793], [47.382504, 8.514416], [47.415527, 8.54653], [47.37441, 8.529573], [47.36334, 8.557467], [47.366974, 8.555557], [47.369702, 8.520341], [47.378297, 8.530421], [47.357642, 8.521102], [47.375268, 8.526386], [47.392263, 8.524044], [47.387071, 8.519475], [47.393435, 8.52473], [47.380976, 8.528635], [47.397771, 8.529495], [47.400213, 8.54327], [47.393949, 8.493545], [47.378371, 8.574958], [47.373183, 8.557223], [47.379484, 8.527611], [47.401951, 8.496844], [47.372739, 8.515954], [47.362244, 8.548905], [47.388137, 8.486755], [47.368392, 8.556911], [47.366443, 8.540691], [47.415709, 8.546362], [47.380386, 8.51289], [47.378298, 8.530342], [47.3937, 8.493222], [47.377686, 8.525509], [47.377172, 8.539959], [47.382468, 8.540121], [47.396581, 8.542043], [47.369022, 8.540943], [47.376128, 8.515201], [47.400871, 8.517344], [47.390604, 8.522606], [47.369657, 8.531806], [47.387633, 8.499579], [47.361767, 8.526296], [47.366245, 8.562162], [47.373005, 8.534537], [47.37147, 8.515981], [47.374916, 8.518805], [47.37774, 8.537958], [47.394697, 8.525445], [47.390683, 8.508276], [47.421264, 8.549552], [47.360154, 8.500489], [47.363438, 8.550121], [47.372808, 8.525859], [47.387398, 8.500674], [47.392249, 8.476636], [47.386132, 8.548303], [47.391624, 8.513554], [47.387829, 8.519172], [47.405687, 8.591547], [47.343309, 8.53574], [47.386529, 8.541623], [47.3779, 8.543775], [47.378128, 8.510024], [47.370527, 8.515843], [47.368765, 8.50119], [47.365567, 8.53911], [47.370295, 8.54322], [47.369435, 8.520058], [47.37859, 8.542134], [47.402006, 8.497746], [47.384699, 8.529665], [47.374643, 8.527738], [47.3872, 8.519173], [47.381541, 8.492015], [47.383628, 8.574607], [47.337221, 8.53179], [47.391149, 8.523015], [47.404982, 8.557122], [47.379703, 8.520584], [47.376995, 8.544312], [47.426692, 8.549082], [47.369916, 8.529164], [47.386199, 8.524239], [47.42384, 8.522673], [47.407715, 8.583932], [47.375347, 8.533261], [47.373102, 8.503964], [47.392755, 8.529154], [47.386978, 8.547367], [47.398779, 8.533199], [47.414366, 8.518054], [47.375806, 8.527496], [47.413948, 8.544218], [47.365011, 8.531354], [47.371306, 8.54291], [47.390841, 8.539354], [47.379596, 8.543293], [47.413934, 8.548511], [47.413949, 8.548856], [47.374629, 8.525367], [47.40411, 8.534541], [47.379837, 8.527327], [47.409356, 8.546534], [47.365442, 8.535215], [47.376216, 8.544918], [47.37017, 8.548792], [47.373998, 8.549216], [47.413636, 8.481028], [47.364763, 8.519473], [47.371573, 8.515533], [47.377702, 8.541864], [47.390408, 8.484322], [47.374742, 8.552316], [47.374221, 8.544705], [47.382172, 8.556975], [47.386202, 8.504557], [47.377577, 8.543689], [47.409841, 8.549446], [47.406254, 8.581542], [47.393374, 8.499415], [47.38242, 8.530108], [47.373267, 8.542897], [47.372722, 8.534888], [47.380345, 8.569981], [47.366435, 8.557399], [47.398575, 8.509905], [47.352711, 8.58013], [47.391193, 8.523029], [47.351344, 8.576407], [47.400274, 8.491418], [47.378804, 8.54239], [47.410201, 8.548526], [47.364095, 8.560276], [47.393843, 8.493384], [47.37376, 8.545887], [47.376025, 8.553509], [47.368982, 8.501009], [47.396157, 8.527078], [47.360395, 8.521939], [47.352298, 8.558916], [47.388973, 8.535315], [47.370385, 8.548915], [47.361789, 8.566198], [47.377186, 8.525154], [47.381888, 8.546268], [47.414008, 8.542642], [47.377858, 8.508058], [47.418118, 8.546438], [47.404817, 8.483426], [47.402842, 8.500783], [47.369455, 8.528466], [47.361356, 8.560708], [47.430913, 8.549859], [47.380178, 8.490558], [47.371649, 8.550266], [47.370298, 8.514381], [47.370134, 8.548817], [47.413436, 8.531857], [47.414606, 8.520325], [47.377215, 8.540119], [47.352928, 8.524911], [47.3691, 8.525082], [47.424347, 8.552572], [47.419486, 8.508165], [47.4049, 8.557174], [47.378413, 8.540951], [47.3699, 8.510719], [47.36702, 8.493304], [47.374655, 8.535948], [47.386772, 8.525469], [47.389999, 8.510276], [47.368162, 8.492373], [47.38208, 8.508699], [47.364303, 8.531141], [47.396773, 8.504345], [47.378363, 8.540553], [47.373901, 8.503106], [47.376539, 8.534609], [47.389669, 8.511925], [47.40901, 8.539531], [47.356328, 8.591816], [47.385205, 8.489637], [47.415464, 8.551233], [47.380433, 8.537576], [47.364818, 8.554386], [47.384936, 8.531312], [47.404435, 8.494786], [47.416317, 8.545804], [47.387471, 8.527616], [47.356975, 8.555175], [47.40959, 8.53525], [47.382455, 8.549034], [47.393876, 8.481807], [47.39293, 8.528734], [47.363147, 8.530654], [47.370088, 8.548922], [47.386769, 8.547561], [47.403677, 8.546867], [47.405019, 8.577289], [47.369793, 8.508665], [47.385847, 8.474352], [47.369671, 8.525597], [47.379952, 8.54738], [47.365312, 8.546983], [47.381824, 8.509131], [47.407557, 8.584432], [47.376956, 8.541861], [47.384738, 8.531308], [47.405817, 8.591125], [47.372839, 8.535884], [47.393444, 8.524704], [47.373599, 8.500783], [47.385079, 8.537089], [47.373363, 8.535603], [47.380875, 8.549664], [47.368924, 8.538001], [47.3936, 8.512918], [47.365502, 8.563642], [47.411053, 8.571004], [47.427386, 8.546127], [47.373158, 8.494855], [47.383379, 8.540882], [47.390726, 8.521986], [47.374771, 8.536043], [47.409037, 8.511705], [47.376882, 8.524936], [47.394865, 8.525753], [47.372929, 8.528259], [47.401215, 8.534322], [47.357341, 8.550841], [47.327863, 8.518752], [47.372255, 8.520538], [47.384467, 8.548374], [47.374974, 8.544932], [47.365148, 8.534044], [47.369535, 8.548368], [47.414133, 8.518951], [47.334366, 8.514967], [47.364213, 8.526333], [47.4033, 8.560783], [47.388625, 8.537825], [47.411142, 8.526152], [47.414224, 8.518886], [47.403897, 8.4857], [47.379956, 8.544148], [47.373028, 8.52732], [47.381861, 8.546267], [47.403704, 8.492069], [47.370006, 8.510893], [47.365705, 8.535962], [47.383769, 8.540493], [47.387258, 8.518764], [47.366189, 8.537071], [47.388117, 8.539232], [47.390914, 8.488982], [47.378302, 8.510689], [47.42136, 8.549792], [47.413928, 8.551002], [47.389625, 8.48734], [47.386012, 8.535427], [47.388411, 8.520496], [47.367425, 8.552654], [47.382522, 8.540162], [47.384393, 8.510507], [47.355995, 8.556108], [47.384816, 8.544858], [47.366782, 8.566118], [47.40939, 8.538293], [47.425615, 8.494146], [47.367737, 8.494576], [47.393617, 8.512018], [47.378254, 8.51486], [47.387262, 8.488049], [47.377692, 8.509552], [47.403798, 8.534256], [47.366144, 8.537136], [47.361434, 8.517684], [47.351624, 8.524885], [47.392256, 8.494704], [47.422558, 8.495941], [47.362251, 8.55935], [47.365245, 8.556765], [47.354475, 8.55327], [47.37672, 8.543975], [47.346316, 8.564415], [47.373613, 8.519666], [47.366259, 8.546724], [47.368363, 8.522114], [47.373463, 8.534625], [47.373764, 8.524661], [47.383338, 8.53953], [47.35742, 8.521773], [47.374426, 8.541134], [47.369201, 8.523892], [47.382325, 8.544767], [47.375397, 8.48608], [47.335671, 8.518698], [47.377328, 8.499189], [47.384178, 8.534422], [47.382569, 8.540878], [47.369047, 8.541089], [47.377564, 8.522275], [47.386361, 8.540401], [47.373847, 8.537705], [47.384004, 8.543186], [47.37876, 8.559989], [47.377354, 8.499295], [47.365045, 8.531593], [47.370324, 8.513535], [47.361853, 8.515217], [47.407926, 8.5844], [47.371088, 8.53839], [47.38942, 8.511602], [47.406992, 8.585997], [47.370503, 8.508692], [47.359308, 8.549307], [47.360059, 8.550712], [47.354142, 8.575488], [47.386639, 8.546075], [47.388625, 8.486513], [47.368786, 8.528823], [47.367635, 8.489013], [47.426985, 8.491867], [47.378749, 8.519664], [47.374286, 8.522725], [47.406122, 8.553635], [47.391213, 8.522884], [47.380948, 8.518252], [47.372291, 8.535793], [47.339596, 8.531799], [47.385211, 8.530708], [47.399641, 8.518087], [47.374736, 8.528335], [47.415673, 8.545327], [47.399665, 8.52034], [47.387878, 8.535982], [47.428668, 8.543742], [47.388616, 8.537838], [47.403016, 8.552934], [47.361603, 8.526452], [47.411272, 8.549383], [47.377381, 8.510075], [47.411178, 8.545154], [47.402279, 8.499381], [47.4119, 8.549582], [47.36869, 8.49948], [47.370647, 8.519394], [47.385722, 8.532798], [47.391175, 8.523068], [47.381524, 8.531586], [47.36099, 8.531417], [47.367694, 8.519678], [47.361865, 8.507102], [47.359977, 8.621443], [47.37081, 8.54862], [47.376325, 8.483927], [47.357917, 8.520486], [47.375815, 8.549161], [47.379217, 8.559283], [47.406367, 8.583717], [47.369978, 8.564028], [47.365576, 8.539097], [47.398069, 8.536046], [47.426885, 8.491971], [47.36817, 8.53976], [47.38418, 8.511126], [47.385628, 8.528479], [47.381665, 8.490283], [47.38615, 8.54829], [47.390773, 8.545539], [47.36309, 8.519505], [47.408556, 8.540886], [47.372963, 8.531358], [47.366246, 8.553701], [47.392428, 8.492641], [47.362063, 8.533968], [47.362952, 8.567719], [47.406953, 8.586367], [47.356551, 8.534688], [47.361673, 8.549383], [47.405233, 8.491119], [47.369906, 8.541583], [47.39119, 8.517625], [47.409906, 8.47967], [47.399463, 8.505246], [47.364667, 8.537251], [47.375082, 8.529865], [47.412243, 8.556851], [47.391686, 8.481248], [47.357687, 8.521103], [47.413361, 8.553787], [47.347338, 8.566673], [47.362129, 8.51836], [47.373352, 8.523514], [47.384484, 8.53811], [47.377478, 8.538972], [47.372188, 8.543828], [47.392127, 8.490198], [47.414049, 8.5421], [47.36972, 8.508822], [47.398474, 8.538836], [47.363897, 8.549098], [47.373312, 8.519143], [47.364863, 8.532701], [47.373967, 8.50181], [47.366819, 8.541784], [47.386447, 8.496509], [47.420924, 8.550314], [47.407571, 8.548869], [47.372289, 8.536045], [47.369872, 8.529083], [47.378573, 8.510536], [47.375587, 8.52683], [47.375846, 8.537469], [47.366373, 8.515626], [47.373645, 8.52487], [47.381036, 8.536543], [47.368478, 8.505897], [47.380748, 8.512712], [47.392916, 8.524455], [47.373232, 8.535243], [47.398497, 8.502803], [47.415788, 8.476697], [47.382952, 8.529973], [47.359179, 8.58187], [47.379836, 8.521659], [47.383508, 8.539547], [47.421617, 8.550222], [47.38033, 8.513127], [47.381548, 8.532898], [47.374031, 8.501771], [47.418359, 8.546708], [47.37736, 8.512379], [47.397599, 8.532406], [47.37926, 8.525594], [47.384756, 8.531321], [47.384181, 8.531217], [47.381, 8.495116], [47.367346, 8.537413], [47.36715, 8.544796], [47.373368, 8.536967], [47.414543, 8.558145], [47.363687, 8.535364], [47.397821, 8.528927], [47.365478, 8.535229], [47.370179, 8.548818], [47.365813, 8.550065], [47.373812, 8.485321], [47.373956, 8.566548], [47.411097, 8.526124], [47.369282, 8.543861], [47.360022, 8.51285], [47.399816, 8.518607], [47.365372, 8.564076], [47.38823, 8.4933], [47.365451, 8.535242], [47.381175, 8.49169], [47.374666, 8.549945], [47.365063, 8.521107], [47.372987, 8.546811], [47.380523, 8.526149], [47.37695, 8.541491], [47.380894, 8.532567], [47.369897, 8.563947], [47.378888, 8.549503], [47.370288, 8.49889], [47.381173, 8.528732], [47.40461, 8.557379], [47.327913, 8.529615], [47.373174, 8.503899], [47.380225, 8.520555], [47.419256, 8.505802], [47.366358, 8.544846], [47.430137, 8.536932], [47.366175, 8.540487], [47.393933, 8.513812], [47.409941, 8.479724], [47.354338, 8.526105], [47.38502, 8.530969], [47.40346, 8.57018], [47.359546, 8.535637], [47.375587, 8.527849], [47.38322, 8.548097], [47.382473, 8.548134], [47.386212, 8.535272], [47.369041, 8.537937], [47.375577, 8.527889], [47.376031, 8.511067], [47.374141, 8.54089], [47.372193, 8.520431], [47.374326, 8.53079], [47.423077, 8.502181], [47.375609, 8.548203], [47.398228, 8.53442], [47.420748, 8.482347], [47.371594, 8.526722], [47.399794, 8.543739], [47.425806, 8.509565], [47.377766, 8.516029], [47.40951, 8.543609], [47.36654, 8.540825], [47.365451, 8.535229], [47.352326, 8.573477], [47.404774, 8.49213], [47.375499, 8.496636], [47.36978, 8.52544], [47.327185, 8.519042], [47.359189, 8.597067], [47.366684, 8.544628], [47.394223, 8.49012], [47.402091, 8.552862], [47.368085, 8.534422], [47.380984, 8.503658], [47.378502, 8.540066], [47.359602, 8.548704], [47.387619, 8.519499], [47.384813, 8.531932], [47.363986, 8.531319], [47.361972, 8.526512], [47.362914, 8.535256], [47.39076, 8.508688], [47.415802, 8.545038], [47.365828, 8.536243], [47.403955, 8.548913], [47.37939, 8.542216], [47.368031, 8.534514], [47.391558, 8.486425], [47.403661, 8.485881], [47.365256, 8.521548], [47.369419, 8.541785], [47.404133, 8.569479], [47.403459, 8.556468], [47.37235, 8.534325], [47.374478, 8.53944], [47.389755, 8.486839], [47.378974, 8.54242], [47.364532, 8.566243], [47.422886, 8.55111], [47.353298, 8.576198], [47.362344, 8.504874], [47.381651, 8.484799], [47.393534, 8.524733], [47.379051, 8.516147], [47.37753, 8.551408], [47.378373, 8.509777], [47.407666, 8.548314], [47.374382, 8.542973], [47.342655, 8.530777], [47.4188, 8.557837], [47.373217, 8.533005], [47.418891, 8.507332], [47.366339, 8.544899], [47.359994, 8.594861], [47.375376, 8.536757], [47.384582, 8.527861], [47.365338, 8.548042], [47.383134, 8.530639], [47.378363, 8.540553], [47.376839, 8.527676], [47.355556, 8.572539], [47.42119, 8.549762], [47.366815, 8.553488], [47.374039, 8.533552], [47.392476, 8.540501], [47.375867, 8.495743], [47.392791, 8.523459], [47.367833, 8.534444], [47.378555, 8.540213], [47.419494, 8.553981], [47.37408, 8.531142], [47.389122, 8.533769], [47.402466, 8.485791], [47.393296, 8.528092], [47.378316, 8.532196], [47.380165, 8.520183], [47.393426, 8.52473], [47.352389, 8.524848], [47.419347, 8.547763], [47.368111, 8.532675], [47.400268, 8.494015], [47.394352, 8.479883], [47.387555, 8.51967], [47.370536, 8.524529], [47.362196, 8.526517], [47.381851, 8.548214], [47.391547, 8.54268], [47.386333, 8.518506], [47.361945, 8.560337], [47.36955, 8.551559], [47.37314, 8.534539], [47.419169, 8.5476], [47.395745, 8.516313], [47.371852, 8.536579], [47.39322, 8.52462], [47.335118, 8.51919], [47.414704, 8.532797], [47.371848, 8.556639], [47.360938, 8.531151], [47.391148, 8.523081], [47.382602, 8.529807], [47.37494, 8.534418], [47.362073, 8.554541], [47.398197, 8.536764], [47.367077, 8.543987], [47.41897, 8.50569], [47.374537, 8.539865], [47.389588, 8.521606], [47.404427, 8.574361], [47.405307, 8.555102], [47.392077, 8.500489], [47.377497, 8.538893], [47.385216, 8.530218], [47.379711, 8.558393], [47.357038, 8.522123], [47.402652, 8.576483], [47.375461, 8.5221], [47.37037, 8.553192], [47.374627, 8.515992], [47.391059, 8.523026], [47.385197, 8.488551], [47.384394, 8.531566], [47.362605, 8.568228], [47.376896, 8.543436], [47.38864, 8.488844], [47.384068, 8.535598], [47.377814, 8.507938], [47.400239, 8.494213], [47.36876, 8.552324], [47.383327, 8.54255], [47.410186, 8.546286], [47.376885, 8.512184], [47.362851, 8.51623], [47.391062, 8.478653], [47.36908, 8.525307], [47.406023, 8.584929], [47.363464, 8.554848], [47.377983, 8.514047], [47.375644, 8.544549], [47.352145, 8.576398], [47.379931, 8.527899], [47.36464, 8.537251], [47.35908, 8.570006], [47.369515, 8.520165], [47.366809, 8.54475], [47.367893, 8.549896], [47.423664, 8.495009], [47.398157, 8.533425], [47.375257, 8.547322], [47.399333, 8.515445], [47.386064, 8.504925], [47.426599, 8.551294], [47.352168, 8.525478], [47.385168, 8.53239], [47.383837, 8.532455], [47.390297, 8.505275], [47.378208, 8.527479], [47.368863, 8.501245], [47.360412, 8.550429], [47.365451, 8.535202], [47.378957, 8.544207], [47.336383, 8.526215], [47.373457, 8.519993], [47.351881, 8.527299], [47.377551, 8.558493], [47.359044, 8.526916], [47.394779, 8.523433], [47.387658, 8.534467], [47.356595, 8.522378], [47.394024, 8.493189], [47.428256, 8.489599], [47.36743, 8.556811], [47.412903, 8.537756], [47.371517, 8.546264], [47.403553, 8.5066], [47.386804, 8.526887], [47.416389, 8.538199], [47.379341, 8.483642], [47.363913, 8.528577], [47.389962, 8.491811], [47.391859, 8.490947], [47.378904, 8.539386], [47.393937, 8.533523], [47.382021, 8.550177], [47.374455, 8.539969], [47.373384, 8.520098], [47.370169, 8.537656], [47.364604, 8.566191], [47.399685, 8.467931], [47.410117, 8.567354], [47.383394, 8.484079], [47.388997, 8.49505], [47.379781, 8.524744], [47.392703, 8.475161], [47.380035, 8.57314], [47.380461, 8.572804], [47.414448, 8.51897], [47.377905, 8.525275], [47.389234, 8.486789], [47.40408, 8.533864], [47.384038, 8.52638], [47.398933, 8.538832], [47.378107, 8.516128], [47.400807, 8.54886], [47.374536, 8.539984], [47.423115, 8.538484], [47.379034, 8.516081], [47.366511, 8.544876], [47.427742, 8.491723], [47.398898, 8.532976], [47.373751, 8.486127], [47.395757, 8.54543], [47.382627, 8.51467], [47.368181, 8.496134], [47.411957, 8.539857], [47.360414, 8.552097], [47.378021, 8.508975], [47.38, 8.5377], [47.36395, 8.531305], [47.363932, 8.531305], [47.348486, 8.534324], [47.374845, 8.530152], [47.368249, 8.551228], [47.404742, 8.585272], [47.374934, 8.518765], [47.366238, 8.545109], [47.369464, 8.541773], [47.382964, 8.551296], [47.367994, 8.52408], [47.38834, 8.483235], [47.362647, 8.547271], [47.379269, 8.527501], [47.363924, 8.533172], [47.363956, 8.528737], [47.361661, 8.532688], [47.36422, 8.547357], [47.386548, 8.509014], [47.406799, 8.550535], [47.380767, 8.54688], [47.409044, 8.550039], [47.369427, 8.525724], [47.391376, 8.53608], [47.382184, 8.492491], [47.410149, 8.541701], [47.423318, 8.494485], [47.404927, 8.557174], [47.377178, 8.541217], [47.385551, 8.483247], [47.372645, 8.521222], [47.35279, 8.559151], [47.407286, 8.549499], [47.38726, 8.54328], [47.366539, 8.540957], [47.367931, 8.524105], [47.397482, 8.532457], [47.384364, 8.477237], [47.357728, 8.521488], [47.387975, 8.485798], [47.369014, 8.538003], [47.367736, 8.537103], [47.376401, 8.537811], [47.367543, 8.535629], [47.393973, 8.54481], [47.42074, 8.54697], [47.362095, 8.547591], [47.37369, 8.54284], [47.353233, 8.52509], [47.371048, 8.547247], [47.35787, 8.521676], [47.373377, 8.53702], [47.388064, 8.520065], [47.373013, 8.518422], [47.375975, 8.541854], [47.389449, 8.53914], [47.33507, 8.52996], [47.387596, 8.499737], [47.396095, 8.526984], [47.386423, 8.518521], [47.3735, 8.503707], [47.375401, 8.547404], [47.382513, 8.529726], [47.378587, 8.540637], [47.383157, 8.51386], [47.376507, 8.539826], [47.385431, 8.529362], [47.377476, 8.542005], [47.37093, 8.531356], [47.37291, 8.533105], [47.384388, 8.528321], [47.365764, 8.556074], [47.38056, 8.517423], [47.373032, 8.534484], [47.391609, 8.517024], [47.378412, 8.520107], [47.365705, 8.535962], [47.352492, 8.508079], [47.369612, 8.55348], [47.373413, 8.533181], [47.366943, 8.543839], [47.420708, 8.502465], [47.373582, 8.534403], [47.380503, 8.519646], [47.401873, 8.499531], [47.373627, 8.534377], [47.354942, 8.552485], [47.366238, 8.522389], [47.378302, 8.510689], [47.377505, 8.529465], [47.378515, 8.503212], [47.424584, 8.53532], [47.424701, 8.537191], [47.372569, 8.529258], [47.338481, 8.52598], [47.408907, 8.545531], [47.381765, 8.490073], [47.342313, 8.519296], [47.391148, 8.523055], [47.352152, 8.573844], [47.365221, 8.521534], [47.389072, 8.527701], [47.38349, 8.512794], [47.370995, 8.502187], [47.410061, 8.546231], [47.379477, 8.527399], [47.381812, 8.515289], [47.382682, 8.53753], [47.36307, 8.499368], [47.366056, 8.53687], [47.415479, 8.550584], [47.375017, 8.53675], [47.37461, 8.536013], [47.371324, 8.522916], [47.35795, 8.532255], [47.431231, 8.539089], [47.368448, 8.499422], [47.376787, 8.522617], [47.369154, 8.504878], [47.405037, 8.552354], [47.370592, 8.470296], [47.370704, 8.535297], [47.398457, 8.591297], [47.361072, 8.531246], [47.373619, 8.561456], [47.362442, 8.53379], [47.353681, 8.556337], [47.36617, 8.53719], [47.39104, 8.522178], [47.366276, 8.54777], [47.378334, 8.53025], [47.384034, 8.532512], [47.393499, 8.524639], [47.381682, 8.516677], [47.376026, 8.527024], [47.381452, 8.542047], [47.363957, 8.55135], [47.340671, 8.530299], [47.370219, 8.558578], [47.375917, 8.553599], [47.370284, 8.522551], [47.399307, 8.515325], [47.371725, 8.519561], [47.371474, 8.51851], [47.380007, 8.548228], [47.389464, 8.511735], [47.362167, 8.547539], [47.395361, 8.508264], [47.385942, 8.532352], [47.370324, 8.537394], [47.372731, 8.534902], [47.389046, 8.520893], [47.369621, 8.533712], [47.365731, 8.536095], [47.421402, 8.549223], [47.392704, 8.52404], [47.371034, 8.538402], [47.371725, 8.519548], [47.368879, 8.540873], [47.375731, 8.537334], [47.389139, 8.486417], [47.403286, 8.545428], [47.373803, 8.537572], [47.36984, 8.552227], [47.389749, 8.491541], [47.401615, 8.553647], [47.387831, 8.520007], [47.410723, 8.55226], [47.382347, 8.515843], [47.373168, 8.531521], [47.373942, 8.524836], [47.354839, 8.601222], [47.369533, 8.520139], [47.371701, 8.473032], [47.379614, 8.537626], [47.417607, 8.546269], [47.353559, 8.57623], [47.369436, 8.506446], [47.370759, 8.515026], [47.367261, 8.545395], [47.415326, 8.517398], [47.373307, 8.524387], [47.388188, 8.525034], [47.373634, 8.536483], [47.398815, 8.533213], [47.373456, 8.520007], [47.392341, 8.50317], [47.379515, 8.495206], [47.381456, 8.535916], [47.369569, 8.525886], [47.404351, 8.560951], [47.370906, 8.520498], [47.377203, 8.512773], [47.374603, 8.541455], [47.400918, 8.491775], [47.408619, 8.569681], [47.372714, 8.534875], [47.364884, 8.502635], [47.384533, 8.50316], [47.359802, 8.522841], [47.391645, 8.517051], [47.392855, 8.522295], [47.374426, 8.522145], [47.38023, 8.52666], [47.406395, 8.549573], [47.39348, 8.50053], [47.413199, 8.538769], [47.363908, 8.566574], [47.39559, 8.527066], [47.400927, 8.591682], [47.37405, 8.502579], [47.370836, 8.546859], [47.371008, 8.524075], [47.385434, 8.529044], [47.35883, 8.521947], [47.360045, 8.523812], [47.394074, 8.541832], [47.369626, 8.53697], [47.411182, 8.570663], [47.370655, 8.531946], [47.370739, 8.546685], [47.372374, 8.534643], [47.378337, 8.506836], [47.370509, 8.549037], [47.384957, 8.50885], [47.399298, 8.522028], [47.375338, 8.490568], [47.385163, 8.528178], [47.369315, 8.481287], [47.370999, 8.498891], [47.389356, 8.521362], [47.369744, 8.525479], [47.36561, 8.552483], [47.38681, 8.534741], [47.386736, 8.525442], [47.350848, 8.560011], [47.422557, 8.4961], [47.381141, 8.541644], [47.348122, 8.562812], [47.408142, 8.546535], [47.386871, 8.502266], [47.394795, 8.490568], [47.37761, 8.492004], [47.37161, 8.528907], [47.387325, 8.48499], [47.425724, 8.536536], [47.409966, 8.535403], [47.385659, 8.532784], [47.39345, 8.539302], [47.403306, 8.497281], [47.365073, 8.555875], [47.34615, 8.533045], [47.367065, 8.523372], [47.407538, 8.489813], [47.375382, 8.549337], [47.393348, 8.498289], [47.370241, 8.548846], [47.419347, 8.547763], [47.370698, 8.51676], [47.405884, 8.573425], [47.42619, 8.493177], [47.363218, 8.513484], [47.405613, 8.570783], [47.390567, 8.539812], [47.410426, 8.528655], [47.377719, 8.509512], [47.335589, 8.518802], [47.392552, 8.516275], [47.391931, 8.482948], [47.388101, 8.51992], [47.398274, 8.53242], [47.368723, 8.538288], [47.370876, 8.54829], [47.367931, 8.544005], [47.37691, 8.528711], [47.355195, 8.600714], [47.38359, 8.530026], [47.384157, 8.527058], [47.375124, 8.518703], [47.378211, 8.544205], [47.354925, 8.554153], [47.396285, 8.48196], [47.37511, 8.529773], [47.375265, 8.5409], [47.391931, 8.528819], [47.389683, 8.536297], [47.37855, 8.504232], [47.378516, 8.533895], [47.384614, 8.486473], [47.399754, 8.531921], [47.383107, 8.540082], [47.3481, 8.534276], [47.367016, 8.545667], [47.348605, 8.533135], [47.373925, 8.535204], [47.386528, 8.520775], [47.379186, 8.538107], [47.380958, 8.538143], [47.391146, 8.489211], [47.379095, 8.556023], [47.374469, 8.549755], [47.408377, 8.544593], [47.368663, 8.524689], [47.404472, 8.489686], [47.404481, 8.489686], [47.362573, 8.535209], [47.370983, 8.53141], [47.369502, 8.506156], [47.403792, 8.567577], [47.373672, 8.546613], [47.385311, 8.508526], [47.399662, 8.515888], [47.377652, 8.541492], [47.408676, 8.507962], [47.377422, 8.539236], [47.370304, 8.548874], [47.364353, 8.563393], [47.367879, 8.560634], [47.372944, 8.53623], [47.425075, 8.537636], [47.413627, 8.481015], [47.38744, 8.532794], [47.367182, 8.544294], [47.374473, 8.495689], [47.379991, 8.554572], [47.394865, 8.525753], [47.375397, 8.517424], [47.358918, 8.516376], [47.399776, 8.543738], [47.379391, 8.542164], [47.405232, 8.504925], [47.368063, 8.541505], [47.407121, 8.586688], [47.379694, 8.507036], [47.363881, 8.535752], [47.383119, 8.514998], [47.391061, 8.522722], [47.370724, 8.5369], [47.376375, 8.52813], [47.370295, 8.54886], [47.390854, 8.488689], [47.367677, 8.495223], [47.366846, 8.531418], [47.375571, 8.511257], [47.377839, 8.509223], [47.372606, 8.53482], [47.401901, 8.499347], [47.357954, 8.520447], [47.37936, 8.545354], [47.377255, 8.529287], [47.409974, 8.54126], [47.377271, 8.510271], [47.367942, 8.497691], [47.372756, 8.499482], [47.368095, 8.536276], [47.398164, 8.534551], [47.389425, 8.494449], [47.406177, 8.48128], [47.358922, 8.570533], [47.372853, 8.566234], [47.363386, 8.534855], [47.371799, 8.559855], [47.377296, 8.547669], [47.354191, 8.555726], [47.367634, 8.535591], [47.367065, 8.544305], [47.359725, 8.587627], [47.414118, 8.550861], [47.384797, 8.531733], [47.36462, 8.532789], [47.370283, 8.52745], [47.369149, 8.555775], [47.416337, 8.541763], [47.378624, 8.519502], [47.351977, 8.525673], [47.37639, 8.544578], [47.378195, 8.510608], [47.38883, 8.520901], [47.368782, 8.53494], [47.367917, 8.544587], [47.413913, 8.54696], [47.392114, 8.500463], [47.354392, 8.573799], [47.365821, 8.537063], [47.360054, 8.568796], [47.370295, 8.54886], [47.400028, 8.545598], [47.389202, 8.491266], [47.387121, 8.477741], [47.380373, 8.520041], [47.373474, 8.568882], [47.376218, 8.536245], [47.358447, 8.54999], [47.39347, 8.529579], [47.406865, 8.536094], [47.370767, 8.535245], [47.375959, 8.55944], [47.374527, 8.539971], [47.377221, 8.532862], [47.377354, 8.529329], [47.361567, 8.526504], [47.383325, 8.510221], [47.413799, 8.546653], [47.390378, 8.539808], [47.366532, 8.540772], [47.400456, 8.58571], [47.42427, 8.549389], [47.380338, 8.493686], [47.372848, 8.550979], [47.369867, 8.52192], [47.369867, 8.52192], [47.39511, 8.524526], [47.36891, 8.540371], [47.402352, 8.499289], [47.37436, 8.523415], [47.378482, 8.509647], [47.426638, 8.544442], [47.370878, 8.52349], [47.400232, 8.546941], [47.431464, 8.516307], [47.379923, 8.521038], [47.378442, 8.510096], [47.371543, 8.515916], [47.39139, 8.536531], [47.365511, 8.546881], [47.381942, 8.529277], [47.382544, 8.548175], [47.380908, 8.536765], [47.407766, 8.557592], [47.387176, 8.485583], [47.40485, 8.505367], [47.398548, 8.538612], [47.395052, 8.529758], [47.385566, 8.533153], [47.352615, 8.524773], [47.410454, 8.538037], [47.385248, 8.494883], [47.389829, 8.51112], [47.377499, 8.518619], [47.374201, 8.521147], [47.375966, 8.541934], [47.393335, 8.495772], [47.394197, 8.489974], [47.37707, 8.544022], [47.364356, 8.546261], [47.38277, 8.550882], [47.387231, 8.486525], [47.368077, 8.494821], [47.409268, 8.55007], [47.37179, 8.530791], [47.370966, 8.548345], [47.402841, 8.500836], [47.357826, 8.57223], [47.376911, 8.526658], [47.372853, 8.475993], [47.356241, 8.561315], [47.391085, 8.523067], [47.341846, 8.530694], [47.384421, 8.548466], [47.367674, 8.538876], [47.386011, 8.535533], [47.410354, 8.538154], [47.373284, 8.531603], [47.331926, 8.517127], [47.366425, 8.540611], [47.361733, 8.552442], [47.344897, 8.533311], [47.392489, 8.50263], [47.380729, 8.512751], [47.378983, 8.548048], [47.3938, 8.472162], [47.383412, 8.484053], [47.342643, 8.531028], [47.374727, 8.551985], [47.385012, 8.508705], [47.375044, 8.545212], [47.388958, 8.546269], [47.392049, 8.518145], [47.369078, 8.537885], [47.383825, 8.530839], [47.371701, 8.540124], [47.380466, 8.519791], [47.369333, 8.557235], [47.374497, 8.539348], [47.387573, 8.522492], [47.374308, 8.524169], [47.371016, 8.524141], [47.418488, 8.548261], [47.389153, 8.536246], [47.387467, 8.519496], [47.410371, 8.542024], [47.420931, 8.507558], [47.378196, 8.556997], [47.374022, 8.54478], [47.394789, 8.532839], [47.36821, 8.537391], [47.379306, 8.525449], [47.365859, 8.545286], [47.377383, 8.529104], [47.383405, 8.481894], [47.376376, 8.534752], [47.378201, 8.509933], [47.406678, 8.54632], [47.366578, 8.533041], [47.414604, 8.561075], [47.369192, 8.55604], [47.383392, 8.515613], [47.377923, 8.530016], [47.392498, 8.50263], [47.384817, 8.531495], [47.36738, 8.496184], [47.373117, 8.536883], [47.3863, 8.518188], [47.382988, 8.529881], [47.369726, 8.536853], [47.361225, 8.502363], [47.32794, 8.529642], [47.373996, 8.502618], [47.384566, 8.499545], [47.405871, 8.553524], [47.390995, 8.523091], [47.364264, 8.555844], [47.368863, 8.501298], [47.392531, 8.523268], [47.385571, 8.526928], [47.370224, 8.548819], [47.412154, 8.547414], [47.376321, 8.537717], [47.375758, 8.539188], [47.413265, 8.541328], [47.35916, 8.558147], [47.379527, 8.529665], [47.37718, 8.510376], [47.377739, 8.509288], [47.3626, 8.504469], [47.369744, 8.525506], [47.377779, 8.507858], [47.402058, 8.498939], [47.397583, 8.481694], [47.420296, 8.503318], [47.419179, 8.50637], [47.41727, 8.545798], [47.411671, 8.567612], [47.391034, 8.522748], [47.426297, 8.55468], [47.377197, 8.544846], [47.378406, 8.548182], [47.393653, 8.538829], [47.357375, 8.590462], [47.387607, 8.543658], [47.398039, 8.532534], [47.402608, 8.499798], [47.414758, 8.516565], [47.363303, 8.557598], [47.387887, 8.520737], [47.377648, 8.543756], [47.390675, 8.522701], [47.387276, 8.547188], [47.368979, 8.528363], [47.376476, 8.536488], [47.370179, 8.513598], [47.364203, 8.531205], [47.373653, 8.536364], [47.420631, 8.548982], [47.377495, 8.543793], [47.390703, 8.522542], [47.39146, 8.525273], [47.414756, 8.516737], [47.386372, 8.497806], [47.368779, 8.551212], [47.376979, 8.542299], [47.373595, 8.534906], [47.361806, 8.515375], [47.404522, 8.534721], [47.372773, 8.518073], [47.380932, 8.581608], [47.374058, 8.536319], [47.391385, 8.53608], [47.377743, 8.522411], [47.366638, 8.535266], [47.390788, 8.486052], [47.382724, 8.531214], [47.363997, 8.533054], [47.390887, 8.481047], [47.394911, 8.487616], [47.386375, 8.482694], [47.349626, 8.527888], [47.369166, 8.532432], [47.377338, 8.541366], [47.366337, 8.54049], [47.370709, 8.547002], [47.410731, 8.553281], [47.373208, 8.533005], [47.428755, 8.489078], [47.427781, 8.491326], [47.378396, 8.534237], [47.374749, 8.489126], [47.378748, 8.554784], [47.387481, 8.486649], [47.407886, 8.583008], [47.380098, 8.520671], [47.405784, 8.59082], [47.350194, 8.560619], [47.359828, 8.594407], [47.408964, 8.539556], [47.403816, 8.53423], [47.384322, 8.50746], [47.37445, 8.540472], [47.363698, 8.500453], [47.365048, 8.519783], [47.403851, 8.485765], [47.39896, 8.51296], [47.373365, 8.531644], [47.404674, 8.57487], [47.38365, 8.527392], [47.364069, 8.566683], [47.403324, 8.497242], [47.385294, 8.494672], [47.370134, 8.548817], [47.380626, 8.525754], [47.396988, 8.512284], [47.381736, 8.52918], [47.382049, 8.529306], [47.359072, 8.586289], [47.329871, 8.514678], [47.407018, 8.550275], [47.38618, 8.498212], [47.376589, 8.513992], [47.335663, 8.518592], [47.39881, 8.533796], [47.372572, 8.527934], [47.403772, 8.497423], [47.401918, 8.499532], [47.397986, 8.53248], [47.377912, 8.509013]], [[47.380736, 8.525465], [47.407693, 8.532335], [47.377631, 8.498572], [47.379607, 8.573647], [47.405838, 8.590781], [47.3566, 8.523795], [47.40798, 8.548387], [47.369929, 8.510481], [47.376974, 8.541888], [47.362839, 8.565545], [47.362624, 8.568162], [47.419905, 8.50665], [47.376328, 8.544497], [47.36448, 8.531356], [47.366577, 8.540799], [47.370179, 8.548805], [47.378248, 8.510702], [47.353596, 8.576138], [47.376746, 8.559893], [47.378885, 8.556402], [47.371382, 8.527287], [47.38308, 8.530678], [47.409288, 8.537628], [47.363925, 8.56672], [47.376706, 8.53501], [47.376754, 8.536627], [47.372053, 8.529565], [47.376065, 8.559601], [47.375293, 8.544581], [47.377508, 8.525412], [47.367529, 8.538039], [47.370144, 8.490082], [47.370063, 8.511623], [47.372375, 8.540164], [47.380582, 8.556743], [47.426777, 8.546777], [47.376571, 8.537921], [47.38036, 8.528212], [47.390538, 8.524804], [47.419297, 8.547351], [47.369105, 8.537846], [47.365279, 8.508495], [47.356982, 8.53479], [47.365451, 8.535242], [47.407903, 8.546133], [47.415719, 8.531042], [47.382241, 8.540382], [47.410587, 8.572638], [47.414038, 8.542325], [47.382028, 8.498699], [47.382447, 8.537605], [47.400736, 8.5487], [47.396742, 8.595526], [47.37512, 8.522914], [47.429403, 8.545029], [47.390723, 8.508793], [47.36271, 8.54722], [47.363151, 8.52925], [47.393705, 8.502535], [47.404578, 8.493928], [47.424004, 8.548986], [47.420092, 8.535678], [47.387098, 8.486324], [47.370774, 8.470101], [47.398941, 8.513132], [47.366549, 8.540905], [47.422742, 8.540822], [47.361484, 8.561479], [47.361727, 8.576205], [47.375162, 8.485241], [47.387529, 8.488332], [47.379244, 8.526295], [47.392668, 8.524066], [47.378125, 8.541833], [47.375391, 8.528587], [47.399032, 8.513902], [47.416791, 8.54698], [47.377113, 8.543308], [47.388935, 8.489048], [47.371711, 8.547566], [47.374769, 8.523887], [47.383214, 8.540177], [47.395561, 8.532099], [47.410648, 8.548787], [47.374637, 8.53604], [47.398122, 8.591582], [47.377211, 8.529167], [47.340164, 8.531652], [47.364775, 8.502686], [47.371879, 8.522279], [47.366271, 8.54074], [47.369059, 8.550159], [47.374705, 8.527818], [47.370613, 8.470005], [47.364594, 8.537356], [47.409627, 8.549309], [47.387108, 8.534654], [47.39323, 8.524594], [47.377243, 8.526744], [47.375706, 8.537042], [47.392076, 8.500688], [47.392698, 8.537988], [47.338793, 8.527283], [47.368029, 8.601827], [47.372199, 8.536069], [47.373453, 8.534718], [47.409682, 8.550132], [47.392181, 8.499948], [47.374648, 8.549878], [47.382607, 8.546362], [47.38618, 8.521483], [47.3632, 8.575429], [47.367218, 8.533875], [47.391685, 8.516615], [47.373361, 8.474507], [47.394874, 8.525767], [47.374466, 8.521656], [47.37217, 8.547522], [47.413644, 8.528919], [47.370452, 8.514226], [47.363497, 8.534566], [47.37138, 8.510219], [47.374666, 8.537696], [47.40931, 8.544837], [47.398344, 8.537363], [47.408655, 8.537138], [47.373772, 8.524701], [47.383282, 8.529252], [47.383399, 8.499349], [47.354553, 8.601944], [47.369744, 8.525492], [47.381325, 8.510578], [47.366152, 8.532502], [47.357345, 8.598907], [47.406943, 8.550578], [47.410988, 8.545243], [47.376389, 8.52192], [47.353577, 8.576177], [47.372982, 8.531266], [47.38368, 8.528028], [47.377567, 8.543768], [47.373875, 8.546048], [47.40633, 8.584803], [47.355202, 8.52607], [47.380135, 8.548059], [47.374426, 8.541121], [47.365322, 8.537424], [47.378299, 8.527375], [47.386991, 8.546003], [47.399323, 8.501918], [47.375743, 8.544538], [47.377903, 8.508126], [47.391454, 8.523048], [47.365955, 8.53234], [47.414849, 8.551591], [47.38106, 8.503302], [47.381576, 8.513563], [47.353611, 8.524118], [47.355267, 8.526892], [47.371175, 8.555539], [47.374454, 8.539201], [47.38561, 8.487711], [47.414178, 8.551233], [47.390919, 8.488452], [47.374799, 8.522656], [47.374041, 8.544675], [47.37738, 8.573255], [47.327555, 8.518931], [47.407991, 8.54261], [47.369606, 8.528654], [47.376703, 8.526773], [47.362759, 8.559864], [47.373368, 8.534173], [47.387126, 8.494112], [47.366898, 8.520099], [47.401436, 8.501007], [47.399786, 8.542785], [47.385889, 8.528484], [47.367538, 8.541799], [47.375983, 8.538186], [47.369109, 8.492034], [47.390953, 8.522786], [47.398256, 8.537123], [47.350342, 8.563957], [47.351554, 8.602289], [47.366857, 8.544367], [47.377796, 8.507978], [47.382172, 8.556975], [47.357121, 8.521979], [47.40242, 8.495714], [47.387137, 8.519119], [47.424249, 8.543146], [47.396677, 8.529115], [47.391872, 8.517771], [47.370975, 8.537977], [47.406485, 8.575425], [47.378777, 8.542349], [47.393927, 8.525032], [47.362602, 8.558444], [47.371571, 8.522484], [47.375721, 8.559872], [47.404436, 8.574375], [47.353518, 8.602001], [47.379114, 8.520016], [47.348144, 8.534317], [47.414261, 8.483505], [47.421343, 8.549779], [47.381746, 8.513725], [47.405441, 8.50477], [47.374805, 8.54571], [47.338989, 8.529378], [47.372735, 8.538345], [47.365111, 8.520724], [47.373835, 8.499516], [47.383065, 8.514997], [47.376078, 8.535792], [47.381167, 8.517872], [47.377278, 8.522097], [47.375063, 8.539439], [47.389051, 8.525091], [47.381941, 8.531237], [47.410023, 8.479619], [47.37855, 8.575055], [47.377441, 8.499641], [47.397045, 8.493408], [47.384094, 8.503892], [47.363667, 8.528956], [47.394233, 8.492994], [47.354846, 8.554972], [47.378911, 8.545292], [47.399739, 8.492891], [47.379507, 8.528049], [47.327691, 8.518841], [47.365814, 8.550012], [47.378097, 8.544759], [47.392235, 8.493101], [47.381781, 8.545219], [47.37759, 8.510821], [47.379188, 8.52746], [47.39328, 8.523986], [47.37913, 8.538331], [47.370235, 8.513374], [47.328652, 8.513198], [47.400381, 8.538809], [47.398802, 8.592815], [47.375997, 8.538637], [47.390802, 8.522571], [47.365612, 8.526772], [47.364293, 8.547266], [47.382529, 8.55628], [47.370159, 8.543323], [47.348215, 8.531552], [47.370285, 8.518645], [47.378446, 8.514506], [47.399243, 8.505719], [47.414777, 8.560919], [47.372936, 8.547432], [47.374503, 8.539679], [47.38797, 8.485347], [47.371185, 8.52343], [47.354793, 8.556731], [47.370179, 8.548818], [47.378229, 8.509787], [47.370118, 8.535444], [47.376898, 8.513654], [47.386769, 8.547508], [47.397809, 8.533113], [47.410741, 8.57166], [47.385347, 8.517202], [47.356363, 8.531785], [47.377322, 8.527898], [47.424816, 8.537458], [47.360145, 8.568692], [47.368333, 8.524391], [47.411299, 8.570692], [47.391247, 8.532607], [47.375201, 8.522929], [47.382844, 8.528024], [47.366656, 8.534353], [47.361573, 8.549513], [47.408638, 8.546413], [47.373223, 8.535243], [47.358702, 8.517391], [47.370607, 8.469594], [47.333569, 8.528923], [47.382967, 8.513935], [47.377359, 8.512392], [47.379994, 8.527847], [47.377583, 8.550522], [47.390414, 8.532193], [47.358353, 8.558726], [47.374206, 8.475556], [47.371393, 8.54793], [47.410366, 8.548132], [47.408519, 8.580769], [47.366233, 8.537191], [47.392749, 8.534559], [47.426119, 8.543225], [47.376923, 8.537782], [47.348295, 8.527861], [47.386368, 8.534904], [47.39666, 8.529022], [47.378248, 8.52891], [47.418063, 8.546556], [47.370321, 8.535819], [47.383997, 8.508632], [47.395638, 8.542858], [47.380062, 8.536787], [47.402991, 8.575801], [47.405801, 8.593642], [47.389687, 8.511912], [47.414249, 8.518118], [47.370296, 8.548834], [47.406916, 8.550578], [47.365714, 8.535949], [47.391105, 8.522829], [47.37883, 8.531068], [47.407354, 8.586733], [47.42789, 8.536753], [47.409194, 8.578094], [47.375561, 8.578063], [47.426278, 8.543559], [47.368323, 8.560233], [47.387634, 8.516003], [47.40874, 8.580323], [47.334826, 8.538608], [47.389827, 8.536247], [47.378333, 8.530382], [47.358326, 8.558804], [47.392459, 8.532857], [47.369266, 8.525655], [47.37011, 8.521011], [47.380667, 8.537581], [47.374891, 8.520512], [47.362339, 8.547411], [47.389928, 8.53609], [47.372041, 8.515529], [47.397195, 8.531418], [47.372722, 8.534968], [47.376704, 8.538983], [47.414496, 8.480343], [47.378591, 8.542094], [47.409252, 8.547075], [47.41799, 8.554188], [47.371857, 8.534142], [47.340681, 8.532152], [47.374211, 8.524948], [47.369039, 8.541036], [47.40862, 8.546373], [47.384755, 8.531361], [47.383772, 8.526904], [47.41721, 8.514097], [47.36154, 8.561281], [47.368677, 8.5289], [47.369852, 8.51003], [47.381747, 8.490072], [47.37181, 8.601566], [47.405423, 8.592773], [47.359441, 8.585357], [47.390097, 8.525788], [47.378301, 8.52613], [47.364978, 8.537655], [47.374787, 8.54759], [47.344771, 8.533321], [47.408166, 8.558965], [47.378956, 8.542406], [47.415845, 8.548087], [47.390152, 8.475814], [47.360748, 8.550184], [47.361902, 8.56015], [47.365277, 8.55339], [47.368778, 8.528756], [47.383899, 8.528748], [47.366301, 8.540436], [47.369973, 8.510628], [47.384137, 8.497271], [47.341281, 8.527599], [47.370082, 8.536357], [47.421968, 8.498474], [47.388971, 8.527911], [47.365802, 8.536202], [47.361789, 8.515282], [47.426167, 8.553206], [47.376778, 8.535078], [47.378943, 8.559688], [47.381478, 8.503761], [47.415186, 8.547437], [47.364312, 8.531088], [47.35977, 8.565679], [47.362656, 8.547205], [47.366479, 8.545365], [47.383161, 8.530666], [47.425387, 8.494473], [47.370146, 8.539099], [47.382734, 8.550894], [47.373499, 8.53456], [47.415317, 8.517411], [47.399149, 8.521641], [47.368823, 8.524878], [47.365712, 8.51421], [47.344904, 8.533562], [47.369581, 8.541749], [47.418938, 8.507174], [47.387824, 8.529292], [47.390483, 8.522034], [47.399116, 8.547845], [47.376136, 8.484003], [47.357383, 8.521865], [47.379594, 8.525442], [47.382548, 8.514523], [47.390204, 8.512452], [47.378529, 8.540119], [47.370794, 8.535246], [47.366175, 8.5405], [47.375766, 8.533561], [47.379277, 8.528521], [47.38895, 8.52244], [47.404167, 8.562299], [47.379697, 8.516399], [47.384773, 8.509336], [47.380783, 8.518566], [47.393354, 8.524795], [47.33185, 8.516583], [47.410868, 8.562295], [47.397643, 8.533467], [47.365469, 8.535216], [47.377858, 8.52832], [47.388756, 8.480012], [47.354351, 8.561461], [47.39165, 8.523277], [47.353894, 8.601241], [47.374448, 8.541651], [47.391732, 8.48513], [47.388287, 8.491009], [47.407723, 8.53863], [47.373463, 8.544994], [47.383381, 8.506169], [47.374606, 8.549546], [47.369872, 8.510798], [47.382233, 8.540289], [47.385646, 8.5044], [47.37461, 8.525499], [47.35497, 8.506673], [47.385161, 8.537012], [47.375438, 8.545419], [47.377004, 8.544312], [47.375241, 8.559239], [47.368164, 8.524229], [47.367096, 8.543869], [47.363886, 8.551189], [47.368235, 8.536663], [47.385895, 8.525027], [47.379066, 8.52514], [47.364102, 8.521843], [47.406199, 8.547449], [47.407111, 8.586768], [47.375536, 8.486639], [47.363887, 8.534137], [47.372964, 8.547261], [47.396552, 8.52229], [47.38946, 8.487655], [47.3537, 8.575558], [47.379579, 8.555344], [47.37056, 8.524781], [47.372081, 8.516986], [47.38355, 8.488744], [47.373249, 8.532516], [47.370709, 8.547002], [47.386806, 8.547483], [47.388085, 8.491522], [47.379315, 8.525462], [47.379291, 8.51067], [47.422265, 8.551137], [47.419571, 8.553426], [47.368245, 8.511639], [47.373777, 8.531825], [47.406155, 8.552072], [47.360326, 8.566776], [47.387685, 8.52117], [47.368279, 8.504172], [47.363967, 8.528565], [47.351421, 8.568533], [47.369716, 8.536985], [47.396668, 8.529181], [47.369349, 8.523498], [47.378961, 8.526793], [47.375946, 8.490064], [47.37297, 8.536257], [47.389625, 8.521461], [47.424946, 8.548303], [47.380469, 8.536624], [47.395674, 8.519994], [47.392601, 8.46843], [47.364523, 8.555161], [47.365414, 8.516269], [47.412227, 8.546422], [47.42717, 8.536752], [47.372718, 8.563384], [47.392681, 8.524583], [47.379314, 8.528469], [47.369292, 8.541822], [47.374047, 8.51937], [47.383156, 8.514853], [47.405405, 8.504703], [47.372975, 8.485397], [47.394232, 8.490133], [47.369034, 8.529238], [47.392091, 8.511722], [47.369374, 8.541731], [47.371393, 8.535695], [47.405688, 8.498375], [47.414954, 8.545365], [47.430778, 8.542274], [47.419061, 8.506514], [47.370367, 8.548915], [47.356617, 8.551342], [47.357927, 8.526125], [47.394087, 8.493164], [47.391512, 8.540693], [47.403801, 8.565736], [47.394033, 8.493163], [47.383356, 8.515599], [47.42989, 8.549573], [47.371092, 8.55853], [47.37778, 8.507766], [47.361284, 8.550539], [47.372747, 8.517993], [47.37865, 8.54244], [47.371442, 8.522852], [47.376807, 8.54893], [47.378634, 8.559138], [47.406799, 8.550575], [47.368839, 8.528983], [47.392316, 8.502918], [47.369689, 8.525558], [47.393445, 8.529446], [47.360862, 8.53156], [47.361155, 8.506002], [47.376256, 8.544509], [47.375265, 8.544634], [47.379209, 8.522361], [47.37668, 8.560223], [47.409285, 8.566925], [47.37033, 8.535806], [47.38709, 8.545926], [47.414578, 8.520418], [47.4249, 8.550237], [47.374319, 8.542972], [47.376989, 8.532645], [47.368421, 8.523691], [47.39789, 8.534028], [47.368476, 8.54722], [47.419687, 8.548008], [47.369735, 8.536919], [47.369183, 8.527785], [47.380979, 8.491487], [47.378027, 8.526562], [47.378414, 8.525643], [47.361977, 8.559795], [47.388127, 8.520026], [47.371294, 8.52134], [47.420818, 8.508126], [47.411721, 8.509374], [47.365071, 8.498826], [47.372408, 8.510862], [47.362734, 8.511356], [47.411606, 8.545534], [47.329291, 8.514163], [47.367998, 8.501452], [47.343965, 8.530102], [47.3648, 8.532792], [47.355132, 8.526902], [47.364558, 8.502827], [47.389126, 8.494695], [47.340005, 8.530325], [47.429763, 8.543075], [47.370681, 8.516706], [47.38978, 8.511622], [47.366092, 8.536897], [47.387826, 8.514696], [47.369489, 8.520072], [47.421097, 8.502274], [47.408691, 8.546481], [47.365451, 8.535229], [47.352005, 8.558499], [47.370868, 8.548237], [47.430046, 8.544539], [47.37892, 8.50902], [47.354159, 8.553396], [47.378011, 8.509094], [47.375906, 8.527366], [47.400245, 8.547418], [47.404383, 8.493619], [47.397369, 8.516769], [47.375222, 8.531206], [47.373268, 8.518983], [47.391342, 8.535841], [47.377331, 8.512524], [47.379016, 8.516147], [47.402789, 8.5763], [47.3767, 8.538453], [47.384405, 8.531288], [47.390646, 8.508395], [47.348506, 8.534073], [47.411082, 8.562498], [47.397346, 8.53256], [47.37051, 8.55918], [47.387013, 8.52848], [47.372955, 8.520725], [47.378422, 8.545626], [47.375944, 8.540424], [47.390809, 8.522783], [47.370206, 8.548792], [47.382725, 8.47947], [47.366583, 8.542031], [47.38153, 8.503974], [47.377116, 8.541997], [47.379399, 8.520299], [47.393131, 8.524579], [47.375841, 8.552128], [47.389555, 8.521208], [47.365754, 8.520314], [47.375578, 8.526883], [47.381514, 8.513509], [47.370288, 8.548648], [47.37589, 8.537562], [47.371725, 8.519548], [47.366513, 8.540824], [47.380098, 8.537821], [47.413236, 8.532118], [47.35846, 8.556967], [47.419497, 8.548057], [47.384409, 8.531884], [47.382403, 8.549801], [47.386898, 8.490465], [47.373058, 8.536458], [47.400148, 8.537758], [47.393037, 8.489037], [47.353309, 8.575999], [47.389657, 8.471844], [47.382396, 8.540146], [47.372782, 8.547548], [47.386399, 8.496826], [47.392212, 8.476754], [47.404359, 8.561044], [47.400432, 8.593513], [47.349673, 8.562421], [47.423841, 8.51382], [47.387871, 8.529107], [47.362574, 8.534097], [47.364595, 8.566191], [47.378788, 8.528921], [47.382478, 8.492815], [47.358094, 8.549215], [47.393414, 8.499906], [47.368067, 8.541095], [47.391468, 8.540625], [47.379295, 8.529514], [47.414143, 8.551113], [47.374303, 8.518991], [47.364243, 8.547794], [47.383976, 8.531027], [47.361251, 8.52659], [47.359615, 8.551047], [47.399282, 8.539886], [47.394723, 8.525485], [47.427555, 8.546383], [47.359741, 8.549197], [47.399979, 8.545081], [47.378795, 8.542376], [47.368297, 8.546237], [47.362321, 8.516127], [47.357759, 8.552306], [47.369633, 8.548463], [47.364492, 8.547151], [47.392745, 8.529286], [47.36491, 8.556004], [47.410062, 8.569327], [47.407189, 8.586133], [47.371072, 8.512358], [47.377495, 8.529557], [47.406838, 8.58072], [47.356751, 8.511474], [47.413485, 8.546514], [47.419168, 8.546699], [47.40363, 8.496281], [47.394209, 8.526588], [47.38194, 8.543673], [47.40953, 8.537753], [47.3743, 8.490958], [47.41073, 8.553387], [47.385253, 8.536722], [47.407594, 8.585254], [47.357747, 8.554424], [47.369079, 8.533979], [47.373836, 8.536024], [47.40439, 8.546616], [47.393892, 8.524886], [47.366791, 8.544736], [47.410811, 8.553336], [47.412292, 8.557369], [47.369494, 8.526255], [47.362589, 8.548607], [47.39955, 8.547629], [47.379462, 8.526128], [47.413258, 8.550551], [47.326011, 8.518608], [47.373049, 8.53655], [47.391392, 8.53816], [47.368534, 8.518292], [47.396555, 8.528702], [47.409697, 8.54201], [47.406057, 8.552892], [47.32292, 8.514379], [47.397473, 8.532457], [47.419728, 8.50442], [47.365352, 8.502578], [47.333048, 8.529839], [47.351238, 8.576246], [47.358586, 8.585392], [47.36923, 8.541728], [47.366665, 8.53524], [47.3862, 8.527947], [47.376077, 8.526376], [47.382554, 8.528244], [47.391121, 8.523067], [47.357312, 8.508269], [47.368854, 8.501231], [47.383166, 8.557419], [47.368725, 8.52477], [47.403638, 8.497367], [47.362527, 8.520023], [47.404145, 8.563637], [47.369524, 8.536398], [47.354867, 8.601104], [47.391607, 8.519262], [47.380151, 8.537849], [47.380121, 8.526777], [47.416333, 8.506777], [47.357382, 8.572525], [47.350743, 8.577149], [47.386342, 8.517553], [47.404119, 8.56353], [47.373827, 8.524662], [47.41488, 8.545509], [47.380133, 8.490504], [47.379402, 8.523888], [47.363737, 8.551703], [47.358695, 8.585328], [47.362733, 8.517234], [47.382148, 8.529348], [47.375537, 8.548162], [47.409219, 8.544902], [47.335097, 8.541393], [47.370134, 8.548791], [47.413875, 8.544296], [47.412787, 8.544247], [47.328509, 8.517931], [47.370106, 8.512736], [47.374788, 8.525767], [47.408615, 8.483182], [47.399742, 8.519812], [47.358659, 8.58534], [47.3605, 8.53559], [47.370949, 8.548252], [47.369038, 8.541089], [47.369383, 8.541744], [47.361288, 8.534071], [47.378466, 8.563412], [47.430778, 8.542274], [47.407351, 8.48965], [47.406141, 8.534728], [47.37716, 8.526955], [47.386355, 8.497673], [47.376198, 8.544931], [47.380086, 8.512235], [47.41176, 8.525488], [47.404285, 8.564978], [47.356634, 8.507633], [47.376223, 8.559154], [47.374791, 8.515836], [47.378124, 8.526842], [47.397768, 8.533562], [47.364351, 8.566358], [47.345831, 8.534441], [47.37536, 8.485179], [47.363049, 8.507444], [47.364076, 8.530328], [47.380879, 8.57235], [47.380026, 8.524497], [47.37301, 8.547129], [47.373492, 8.536308], [47.384932, 8.49889], [47.376464, 8.534899], [47.347319, 8.533109], [47.360543, 8.561101], [47.36593, 8.530313], [47.395704, 8.52638], [47.382206, 8.504808], [47.396981, 8.530234], [47.391542, 8.486252], [47.387099, 8.534668], [47.369842, 8.512108], [47.367728, 8.496495], [47.338658, 8.532058], [47.38831, 8.519686], [47.401268, 8.534456], [47.38114, 8.517858], [47.413919, 8.478556], [47.356746, 8.53219], [47.370564, 8.531004], [47.420593, 8.482529], [47.388359, 8.491024], [47.392089, 8.511841], [47.369041, 8.537937], [47.3583, 8.587993], [47.383325, 8.539927], [47.394466, 8.54127], [47.388083, 8.48478], [47.395315, 8.491678], [47.38338, 8.539756], [47.387561, 8.515167], [47.377985, 8.530084], [47.384045, 8.534207], [47.405215, 8.500009], [47.374686, 8.549667], [47.376769, 8.535064], [47.376265, 8.541702], [47.389809, 8.540022], [47.367842, 8.533543], [47.419542, 8.542452], [47.367638, 8.50927], [47.377595, 8.498585], [47.366139, 8.520507], [47.382909, 8.540157], [47.428219, 8.489664], [47.362078, 8.551178], [47.368061, 8.554825], [47.377458, 8.51144], [47.363298, 8.549681], [47.382715, 8.543504], [47.388146, 8.51702], [47.373612, 8.519758], [47.386506, 8.547728], [47.360349, 8.506648], [47.378021, 8.548068], [47.37661, 8.536584], [47.416973, 8.523024], [47.416938, 8.522983], [47.373745, 8.519973], [47.402351, 8.499356], [47.390996, 8.526774], [47.388265, 8.540625], [47.393885, 8.505386], [47.409518, 8.549386], [47.372304, 8.543884], [47.38284, 8.551082], [47.379369, 8.515889], [47.379378, 8.515902], [47.388783, 8.518185], [47.366409, 8.545165], [47.378709, 8.529675], [47.397609, 8.546489], [47.40213, 8.570126], [47.389383, 8.513667], [47.368532, 8.550797], [47.335518, 8.518761], [47.403614, 8.571032], [47.37054, 8.540246], [47.393669, 8.472809], [47.375222, 8.531219], [47.363274, 8.535237], [47.369098, 8.547975], [47.412537, 8.523199], [47.377963, 8.492752], [47.403046, 8.589343], [47.387931, 8.486645], [47.37724, 8.499068], [47.369318, 8.525802], [47.379169, 8.49561], [47.3644, 8.548301], [47.366911, 8.544408], [47.421019, 8.50198], [47.418068, 8.508813], [47.418473, 8.547002], [47.363987, 8.505265], [47.369401, 8.534224], [47.39053, 8.527572], [47.388738, 8.479932], [47.395748, 8.545456], [47.398134, 8.535809], [47.365608, 8.518616], [47.409536, 8.543729], [47.357945, 8.520394], [47.372875, 8.535871], [47.347717, 8.524263], [47.391055, 8.522483], [47.354718, 8.574547], [47.369401, 8.533271], [47.365322, 8.516452], [47.359535, 8.50417], [47.379333, 8.537779], [47.37775, 8.540673], [47.388515, 8.518988], [47.407634, 8.581121], [47.375521, 8.528113], [47.373189, 8.525483], [47.375511, 8.484454], [47.394332, 8.516337], [47.372321, 8.556093], [47.377678, 8.525495], [47.364075, 8.55024], [47.391897, 8.523785], [47.366859, 8.543241], [47.35799, 8.571956], [47.380497, 8.512548], [47.361548, 8.561387], [47.343406, 8.524506], [47.369915, 8.549157], [47.415356, 8.54654], [47.386529, 8.52549], [47.37344, 8.537035], [47.393687, 8.47277], [47.394528, 8.53943], [47.415569, 8.509637], [47.390507, 8.479331], [47.369205, 8.527375], [47.374544, 8.532489], [47.386652, 8.535307], [47.386179, 8.492372], [47.365877, 8.53488], [47.420056, 8.508866], [47.38817, 8.520279], [47.379788, 8.526796], [47.370871, 8.525158], [47.392927, 8.491154], [47.393131, 8.524565], [47.357212, 8.554889], [47.365391, 8.521591], [47.356109, 8.553622], [47.372827, 8.525767], [47.353312, 8.575695], [47.399545, 8.521583], [47.39704, 8.511464], [47.359818, 8.547663], [47.377636, 8.538432], [47.383911, 8.54823], [47.376563, 8.540635], [47.362505, 8.533818], [47.367661, 8.544939], [47.391765, 8.518683], [47.387126, 8.545953], [47.382314, 8.531775], [47.421163, 8.549735], [47.36821, 8.510553], [47.338244, 8.530104], [47.34399, 8.530327], [47.413348, 8.532584], [47.431008, 8.550193], [47.369256, 8.541848], [47.362638, 8.520674], [47.376923, 8.54345], [47.406577, 8.587975], [47.387164, 8.545755], [47.371022, 8.537766], [47.378021, 8.513783], [47.411386, 8.526024], [47.404279, 8.54513], [47.387149, 8.535079], [47.387594, 8.487128], [47.412238, 8.55648], [47.412168, 8.553444], [47.398956, 8.540144], [47.355259, 8.557813], [47.363362, 8.499798], [47.374686, 8.549667], [47.368489, 8.496934], [47.394226, 8.489842], [47.370845, 8.527991], [47.376662, 8.551867], [47.371724, 8.515721], [47.408564, 8.558801], [47.347471, 8.533165], [47.384427, 8.545062], [47.377364, 8.529237], [47.371279, 8.520029], [47.385497, 8.542343], [47.373519, 8.553125], [47.366434, 8.545351], [47.402523, 8.58227], [47.384455, 8.507727], [47.417868, 8.548156], [47.366789, 8.545822], [47.376957, 8.539849], [47.356497, 8.534714], [47.374334, 8.524235], [47.34648, 8.498615], [47.357109, 8.507775], [47.404003, 8.534406], [47.390344, 8.541463], [47.359092, 8.521833], [47.405213, 8.559221], [47.409362, 8.549741], [47.366248, 8.545082], [47.382695, 8.541874], [47.364186, 8.533031], [47.351695, 8.559896], [47.370028, 8.51149], [47.425527, 8.547679], [47.378587, 8.542518], [47.395837, 8.511281], [47.369349, 8.528278], [47.377036, 8.540049], [47.37741, 8.5395], [47.392442, 8.502867], [47.378504, 8.541708], [47.340229, 8.535173], [47.362708, 8.548411], [47.381802, 8.516415], [47.37538, 8.496806], [47.362545, 8.535262], [47.370216, 8.557028], [47.366169, 8.538289], [47.413209, 8.538756], [47.358507, 8.521901], [47.371344, 8.530345], [47.36914, 8.505394], [47.384028, 8.515943], [47.370617, 8.516811], [47.373862, 8.529483], [47.373698, 8.528764], [47.39815, 8.535968], [47.400202, 8.546264], [47.41047, 8.532591], [47.370707, 8.520653], [47.399687, 8.516022], [47.39613, 8.527051], [47.413974, 8.540574], [47.386526, 8.475942], [47.350118, 8.56202], [47.40141, 8.490182], [47.357332, 8.550841], [47.369961, 8.510919], [47.381576, 8.513576], [47.410616, 8.55679], [47.411804, 8.537972], [47.409615, 8.543969], [47.39842, 8.591416], [47.392494, 8.523387], [47.373148, 8.527972], [47.414721, 8.530081], [47.389055, 8.52088], [47.393361, 8.496845], [47.394728, 8.521207], [47.366741, 8.533004], [47.426155, 8.554399], [47.370657, 8.535481], [47.381038, 8.528742], [47.414687, 8.566457], [47.39779, 8.529376], [47.368353, 8.497037], [47.398042, 8.534124], [47.391917, 8.517812], [47.406004, 8.581391], [47.375383, 8.484716], [47.373933, 8.517183], [47.335914, 8.533933], [47.403705, 8.485974], [47.368312, 8.551189], [47.38459, 8.527], [47.365469, 8.535216], [47.393435, 8.529526], [47.426598, 8.492893], [47.369398, 8.525909], [47.389974, 8.540634], [47.378886, 8.494174], [47.358419, 8.505259], [47.370169, 8.548898], [47.405944, 8.481116], [47.371874, 8.542802], [47.38844, 8.491026], [47.381419, 8.551079], [47.399996, 8.54524], [47.390368, 8.525635], [47.362512, 8.534943], [47.372271, 8.525557], [47.377037, 8.537122], [47.361531, 8.526516], [47.384313, 8.516187], [47.371253, 8.523775], [47.378849, 8.544205], [47.368833, 8.528638], [47.368001, 8.514653], [47.362205, 8.559429], [47.405574, 8.486236], [47.378941, 8.530752], [47.392145, 8.50098], [47.371796, 8.529215], [47.372153, 8.536174], [47.377987, 8.554344], [47.371202, 8.524463], [47.374723, 8.551442], [47.397386, 8.532124], [47.37777, 8.507871], [47.392513, 8.523308], [47.365549, 8.561511], [47.364941, 8.53784], [47.364182, 8.551288], [47.372591, 8.534555], [47.394856, 8.525753], [47.375929, 8.536318], [47.403853, 8.496457], [47.410962, 8.545163], [47.382301, 8.533112], [47.387135, 8.494086], [47.387401, 8.529349], [47.36378, 8.574991], [47.381381, 8.546575], [47.358429, 8.518669], [47.375953, 8.53857], [47.391076, 8.523066], [47.388441, 8.486973], [47.369523, 8.553412], [47.393721, 8.505648], [47.383825, 8.547844], [47.408946, 8.54801], [47.426587, 8.548815], [47.384783, 8.477696], [47.36794, 8.544071], [47.384462, 8.531991], [47.368645, 8.499493], [47.403418, 8.536288], [47.390047, 8.536834], [47.39728, 8.531035], [47.416108, 8.545031], [47.376656, 8.52321], [47.425115, 8.499663], [47.370196, 8.539524], [47.392349, 8.53308], [47.364657, 8.566365], [47.373742, 8.502798], [47.378238, 8.541372], [47.409073, 8.532854], [47.3348, 8.529967], [47.374128, 8.524205], [47.369805, 8.541833], [47.391592, 8.487617], [47.416139, 8.510285], [47.379935, 8.5159], [47.371665, 8.555139], [47.367989, 8.540776], [47.391023, 8.53345], [47.378682, 8.529674], [47.413994, 8.479153], [47.370771, 8.524375], [47.378491, 8.540264], [47.382071, 8.528869], [47.378779, 8.539343], [47.393592, 8.512732], [47.405378, 8.537336], [47.359633, 8.557561], [47.367694, 8.496375], [47.377951, 8.499029], [47.388129, 8.519841], [47.367135, 8.539765], [47.414231, 8.518091], [47.36143, 8.551244], [47.386049, 8.545758], [47.372553, 8.517565], [47.360345, 8.55371], [47.371281, 8.547411], [47.414016, 8.478717], [47.382465, 8.537605], [47.413838, 8.547211], [47.382377, 8.514453], [47.386777, 8.523032], [47.395517, 8.531979], [47.353459, 8.526855], [47.391558, 8.523487], [47.37282, 8.535036], [47.395276, 8.519363], [47.387445, 8.486662], [47.401788, 8.499901], [47.372411, 8.538285], [47.403435, 8.486049], [47.415537, 8.51401], [47.413851, 8.545886], [47.38498, 8.541855], [47.364343, 8.548564], [47.387522, 8.529882], [47.345148, 8.532508], [47.366815, 8.543134], [47.402199, 8.549022], [47.369248, 8.525641], [47.389664, 8.511501], [47.394901, 8.52578], [47.382102, 8.51413], [47.38681, 8.534741], [47.395558, 8.531464], [47.390474, 8.53634], [47.370272, 8.524868], [47.361409, 8.548768], [47.347998, 8.562624], [47.373235, 8.533045], [47.371342, 8.522969], [47.410657, 8.534688], [47.369245, 8.491984], [47.407055, 8.582394], [47.402357, 8.493818], [47.371601, 8.547775], [47.378647, 8.565111], [47.383671, 8.504891], [47.375258, 8.550063], [47.362628, 8.51886], [47.391996, 8.51025], [47.409407, 8.479157], [47.373054, 8.531201], [47.375823, 8.527563], [47.380822, 8.53728], [47.427993, 8.545702], [47.361801, 8.512012], [47.427464, 8.551113], [47.358129, 8.552142], [47.368595, 8.52907], [47.419587, 8.548046], [47.385478, 8.542369], [47.407933, 8.582744], [47.379013, 8.526039], [47.392698, 8.522742], [47.389632, 8.491499], [47.422503, 8.496086], [47.375892, 8.541124], [47.408574, 8.546505], [47.375783, 8.536567], [47.40882, 8.549001], [47.370986, 8.530232], [47.364208, 8.536355], [47.34365, 8.530175], [47.351973, 8.505858], [47.383588, 8.532092], [47.381411, 8.510024], [47.370003, 8.564174], [47.385531, 8.520623], [47.386158, 8.535271], [47.365714, 8.535949], [47.405618, 8.569352], [47.411252, 8.546812], [47.352321, 8.581299], [47.366522, 8.540904], [47.378746, 8.510261], [47.350853, 8.561321], [47.386679, 8.547573], [47.384253, 8.530278], [47.374335, 8.556267], [47.363242, 8.519627], [47.362489, 8.534559], [47.405929, 8.548477], [47.413799, 8.546653], [47.388524, 8.483782], [47.382522, 8.529726], [47.375895, 8.559544], [47.380195, 8.527533], [47.371721, 8.556742], [47.395831, 8.545246], [47.374355, 8.540139], [47.385542, 8.536675], [47.36182, 8.560202], [47.380837, 8.541359], [47.350687, 8.561754], [47.386979, 8.53497], [47.366635, 8.551551], [47.397528, 8.519952], [47.361114, 8.531578], [47.365444, 8.519778], [47.41023, 8.541756], [47.373879, 8.544751], [47.364409, 8.531341], [47.375757, 8.524119], [47.377014, 8.527217], [47.388634, 8.520619], [47.359963, 8.550366], [47.375653, 8.544549], [47.363784, 8.535525], [47.353605, 8.560466], [47.375279, 8.511728], [47.380982, 8.518491], [47.381879, 8.546307], [47.360784, 8.585108], [47.387919, 8.542022], [47.371021, 8.530259], [47.411655, 8.562788], [47.420193, 8.548642], [47.389727, 8.511476], [47.351923, 8.558604], [47.383556, 8.539283], [47.369764, 8.533808], [47.37621, 8.553049], [47.404529, 8.574973], [47.40362, 8.496307], [47.388055, 8.524899], [47.383385, 8.498872], [47.414651, 8.571001], [47.367391, 8.494066], [47.388101, 8.51992], [47.330189, 8.51524], [47.38445, 8.548294], [47.38808, 8.485058], [47.374336, 8.52401], [47.379251, 8.559456], [47.413799, 8.546653], [47.405274, 8.564098], [47.383986, 8.550761], [47.409044, 8.571346], [47.363883, 8.531728], [47.392167, 8.492689], [47.417239, 8.509909], [47.357, 8.53573], [47.346324, 8.564561], [47.352934, 8.57754], [47.38657, 8.483028], [47.369717, 8.525532], [47.403885, 8.555244], [47.377492, 8.528961], [47.40047, 8.543686], [47.392532, 8.523242], [47.366569, 8.535874], [47.415568, 8.544172], [47.412505, 8.483723], [47.41884, 8.503169], [47.399275, 8.542536], [47.370235, 8.53252], [47.383481, 8.512793], [47.405176, 8.557484], [47.366875, 8.54344], [47.378244, 8.530301], [47.422517, 8.512083], [47.374205, 8.491552], [47.38252, 8.487227], [47.426455, 8.492771], [47.374159, 8.544598], [47.356663, 8.523809], [47.373968, 8.542952], [47.386522, 8.496166], [47.357177, 8.552916], [47.39122, 8.523109], [47.382823, 8.548234], [47.379874, 8.498167], [47.386429, 8.496522], [47.377206, 8.540132], [47.406601, 8.551472], [47.380563, 8.56788], [47.362751, 8.548571], [47.361307, 8.534005], [47.369225, 8.528037], [47.346798, 8.530213], [47.39113, 8.523094], [47.353936, 8.578078], [47.356974, 8.526106], [47.391045, 8.522509], [47.375747, 8.527045], [47.410894, 8.57169], [47.392997, 8.534974], [47.371861, 8.531785], [47.405151, 8.480253], [47.348887, 8.570134], [47.357844, 8.572217], [47.380424, 8.512639], [47.372109, 8.547322], [47.381616, 8.490639], [47.388648, 8.522991], [47.391483, 8.514213], [47.36607, 8.53352], [47.410564, 8.550031], [47.369338, 8.513104], [47.390027, 8.491573], [47.366871, 8.520164], [47.397989, 8.474535], [47.37694, 8.541596], [47.393643, 8.519794], [47.40513, 8.481604], [47.394629, 8.488061], [47.421008, 8.502099], [47.355173, 8.527234], [47.390173, 8.509908], [47.375047, 8.540167], [47.380599, 8.512232], [47.37996, 8.541924], [47.411604, 8.512287], [47.406922, 8.58679], [47.378403, 8.520094], [47.375103, 8.491676], [47.363969, 8.53594], [47.375392, 8.540809], [47.370286, 8.513746], [47.368321, 8.551136], [47.403456, 8.487692], [47.400996, 8.501952], [47.381075, 8.518109], [47.377863, 8.529697], [47.403469, 8.556349], [47.377646, 8.50959], [47.380809, 8.512832], [47.42566, 8.494081], [47.374527, 8.539971], [47.366801, 8.544577], [47.369014, 8.537977], [47.38449, 8.531886], [47.369698, 8.525558], [47.378528, 8.503675], [47.399654, 8.517703], [47.390195, 8.512478], [47.380427, 8.524876], [47.373397, 8.524402], [47.374688, 8.527791], [47.365229, 8.521587], [47.381664, 8.51375], [47.373364, 8.568231], [47.358362, 8.558726], [47.381176, 8.491584], [47.366538, 8.541964], [47.37587, 8.527365], [47.368957, 8.50175], [47.380366, 8.541786], [47.368968, 8.550289], [47.393238, 8.530383], [47.36034, 8.56622], [47.374451, 8.5461], [47.33134, 8.53728], [47.355506, 8.529213], [47.364565, 8.566522], [47.369735, 8.536853], [47.363156, 8.533527], [47.388148, 8.497377], [47.377221, 8.521407], [47.366867, 8.537681], [47.387904, 8.520763], [47.367006, 8.531567], [47.377367, 8.498898], [47.407239, 8.538394], [47.378194, 8.510674], [47.368485, 8.519681], [47.387368, 8.543269], [47.396207, 8.527489], [47.368246, 8.536491], [47.4122, 8.546434], [47.362493, 8.534135], [47.356503, 8.532146], [47.386056, 8.545944], [47.387066, 8.539091], [47.360101, 8.595896], [47.374397, 8.543212], [47.397734, 8.533376], [47.403701, 8.570411], [47.36554, 8.53531], [47.343394, 8.523936], [47.385455, 8.530621], [47.373746, 8.52466], [47.376936, 8.541146], [47.369557, 8.531937], [47.365589, 8.521595], [47.375338, 8.560393], [47.373238, 8.535548], [47.386364, 8.535354], [47.375161, 8.525259], [47.392138, 8.503643], [47.38522, 8.530709], [47.378073, 8.510102], [47.370152, 8.548804], [47.36821, 8.494942], [47.385243, 8.530179], [47.378301, 8.541373], [47.381307, 8.528801], [47.361131, 8.60083], [47.378128, 8.526378], [47.362959, 8.559603], [47.364042, 8.566696], [47.359517, 8.522544], [47.364647, 8.566444], [47.398698, 8.547399], [47.37292, 8.531185], [47.371526, 8.515757], [47.411126, 8.570966], [47.370034, 8.543281], [47.409607, 8.549441], [47.376878, 8.540536], [47.36389, 8.574848], [47.371805, 8.522489], [47.384654, 8.502738], [47.387869, 8.520749], [47.371335, 8.530411], [47.365108, 8.553267], [47.372988, 8.536297], [47.378605, 8.553695], [47.410849, 8.571649], [47.400529, 8.544059], [47.410373, 8.538088], [47.370641, 8.557752], [47.380301, 8.512372], [47.405627, 8.549915], [47.383726, 8.547816], [47.402763, 8.491746], [47.414483, 8.557799], [47.365225, 8.564338], [47.368294, 8.551202], [47.413365, 8.553389], [47.384726, 8.529692], [47.396718, 8.554061], [47.405013, 8.548286], [47.379981, 8.548135], [47.414095, 8.550423], [47.391609, 8.514136], [47.343165, 8.53575], [47.390448, 8.509358], [47.366212, 8.522243], [47.364786, 8.547395], [47.351291, 8.576287], [47.371604, 8.51605], [47.397733, 8.533456], [47.353099, 8.512486], [47.402657, 8.498328], [47.392003, 8.48295], [47.419605, 8.548073], [47.403919, 8.541373], [47.393811, 8.533521], [47.375908, 8.541363], [47.386879, 8.490611], [47.368283, 8.495871], [47.366834, 8.543082], [47.375725, 8.539797], [47.390823, 8.522227], [47.364797, 8.537757], [47.373196, 8.531482], [47.409105, 8.541772], [47.379805, 8.553336], [47.379553, 8.542127], [47.369023, 8.53795], [47.398404, 8.547115], [47.385014, 8.500732], [47.376705, 8.483656], [47.430147, 8.540525], [47.382745, 8.529916], [47.410467, 8.532869], [47.373009, 8.547275], [47.38105, 8.503315], [47.386849, 8.544874], [47.391083, 8.522312], [47.410066, 8.542865], [47.358518, 8.517824], [47.374479, 8.579192], [47.36613, 8.540419], [47.384094, 8.526169], [47.381735, 8.529286], [47.398042, 8.535992], [47.416917, 8.551674], [47.383425, 8.529361], [47.367382, 8.494039], [47.371597, 8.515891], [47.409111, 8.48404], [47.377158, 8.533841], [47.409221, 8.571615], [47.384974, 8.531035], [47.418921, 8.507041], [47.379162, 8.523592], [47.403682, 8.497487], [47.363946, 8.500869], [47.380752, 8.519042], [47.380771, 8.50821], [47.416917, 8.551674], [47.360022, 8.532959], [47.37821, 8.526248], [47.366788, 8.542234], [47.37191, 8.54275], [47.370336, 8.507378], [47.370311, 8.513945], [47.354939, 8.52343], [47.3787, 8.541964], [47.378247, 8.526156], [47.398792, 8.542287], [47.396788, 8.529793], [47.365451, 8.535242], [47.376909, 8.535451], [47.398767, 8.506597], [47.361163, 8.525423], [47.385641, 8.517579], [47.373536, 8.546743], [47.366557, 8.540931], [47.381959, 8.516882], [47.373216, 8.533084], [47.367083, 8.544318], [47.374327, 8.543039], [47.407654, 8.547758], [47.387584, 8.487194], [47.361936, 8.534031], [47.381182, 8.537261], [47.366805, 8.5432], [47.391436, 8.51347], [47.37858, 8.519475], [47.37826, 8.519985], [47.378672, 8.513478], [47.386715, 8.522938], [47.336911, 8.518895], [47.403354, 8.486047], [47.372645, 8.538343], [47.379402, 8.523902], [47.415049, 8.513351], [47.402733, 8.577359], [47.377683, 8.538248], [47.374798, 8.518882], [47.378473, 8.526981], [47.357583, 8.554725], [47.390191, 8.473404], [47.354806, 8.556242], [47.376084, 8.515068], [47.364322, 8.555448], [47.381102, 8.528691], [47.381273, 8.510405], [47.409069, 8.570578], [47.332815, 8.51438], [47.365896, 8.557295], [47.382563, 8.54807], [47.405246, 8.480785], [47.376424, 8.54385], [47.410397, 8.542077], [47.364223, 8.566514], [47.392173, 8.49102], [47.385624, 8.542226], [47.37807, 8.492807], [47.394564, 8.528092], [47.36667, 8.542284], [47.382216, 8.544897], [47.383336, 8.506155], [47.394823, 8.525395], [47.358421, 8.521409], [47.367781, 8.560473], [47.387379, 8.527905], [47.412003, 8.524473], [47.387099, 8.517409], [47.372373, 8.503062], [47.391991, 8.510846], [47.391719, 8.518801], [47.360525, 8.516766], [47.39689, 8.519846], [47.39119, 8.520526], [47.373017, 8.520872], [47.365169, 8.500933], [47.387237, 8.488763], [47.384346, 8.489236], [47.377052, 8.544075], [47.424949, 8.551763], [47.382275, 8.530224], [47.370918, 8.549562], [47.363868, 8.559596], [47.369108, 8.547962], [47.409104, 8.578065], [47.364589, 8.556672], [47.377246, 8.570458], [47.386467, 8.529171], [47.370822, 8.510221], [47.377651, 8.535917], [47.3679, 8.498432], [47.373553, 8.575491], [47.388291, 8.537023], [47.38425, 8.540079], [47.390136, 8.491496], [47.360427, 8.516671], [47.362764, 8.547194], [47.373932, 8.524876], [47.410907, 8.543373], [47.374767, 8.49404], [47.376934, 8.540351], [47.397733, 8.480995], [47.378869, 8.526976], [47.389863, 8.539095], [47.402818, 8.553937], [47.381877, 8.502444], [47.376483, 8.525299], [47.339906, 8.53035], [47.425532, 8.553737], [47.369733, 8.549325], [47.412569, 8.546416], [47.371196, 8.523192], [47.383699, 8.573708], [47.385824, 8.548508], [47.36693, 8.544289], [47.377247, 8.538636], [47.364249, 8.546246], [47.354638, 8.525846], [47.369183, 8.527798], [47.378943, 8.515271], [47.404795, 8.57262], [47.388207, 8.52873], [47.38789, 8.544194], [47.371479, 8.519874], [47.402379, 8.499237], [47.364683, 8.546016], [47.366618, 8.540191], [47.405631, 8.57081], [47.371336, 8.546287], [47.384836, 8.495603], [47.375667, 8.533664], [47.399499, 8.497457], [47.426555, 8.492601], [47.3773, 8.529288], [47.379909, 8.527315], [47.400714, 8.593227], [47.379115, 8.511249], [47.379371, 8.525278], [47.338249, 8.530528], [47.394265, 8.489511], [47.412993, 8.546292], [47.353595, 8.576151], [47.38003, 8.570875], [47.36698, 8.520987], [47.365695, 8.553875], [47.378688, 8.489231], [47.378046, 8.496462], [47.373851, 8.481998], [47.390549, 8.545415], [47.367709, 8.545576], [47.399667, 8.547618], [47.37108, 8.538324], [47.378711, 8.53039], [47.377953, 8.532493], [47.370865, 8.542954], [47.377148, 8.512931], [47.369162, 8.525203], [47.366365, 8.546965], [47.412331, 8.539281], [47.399461, 8.54756], [47.367932, 8.544826], [47.385646, 8.548346], [47.356313, 8.555757], [47.41969, 8.508461], [47.400656, 8.548606], [47.335043, 8.529959], [47.370684, 8.558932], [47.37811, 8.532099], [47.361091, 8.522549], [47.417776, 8.513194], [47.378428, 8.526954], [47.368911, 8.540344], [47.375799, 8.527311], [47.413292, 8.544178], [47.378307, 8.499393], [47.391037, 8.522483], [47.403841, 8.548553], [47.406924, 8.585637], [47.366057, 8.536843], [47.351415, 8.525185], [47.402512, 8.499478], [47.349204, 8.564383], [47.366946, 8.560376], [47.404814, 8.483731], [47.366934, 8.545706], [47.365397, 8.554068], [47.35703, 8.552357], [47.357521, 8.554591], [47.370588, 8.549277], [47.403557, 8.578622], [47.391221, 8.479888], [47.376755, 8.559894], [47.391763, 8.472679], [47.391244, 8.515652], [47.374459, 8.540552], [47.414044, 8.516961], [47.365057, 8.565009], [47.379309, 8.542202], [47.421619, 8.550076], [47.389033, 8.495051], [47.385922, 8.524935], [47.373098, 8.547383], [47.409144, 8.545244], [47.388589, 8.535904], [47.374308, 8.522196], [47.382822, 8.530355], [47.383772, 8.57363], [47.367088, 8.54559], [47.363776, 8.535485], [47.382787, 8.479537], [47.378557, 8.575214], [47.378403, 8.54107], [47.371353, 8.536052], [47.36997, 8.543412], [47.370107, 8.512603], [47.387595, 8.529737], [47.398712, 8.532721], [47.370179, 8.548805], [47.366682, 8.545753], [47.3811, 8.537378], [47.38367, 8.515764], [47.381183, 8.538161], [47.390894, 8.523341], [47.364439, 8.555398], [47.347879, 8.528131], [47.419887, 8.547734], [47.398411, 8.591429], [47.379172, 8.538623], [47.374741, 8.488967], [47.382846, 8.500755], [47.368582, 8.546508], [47.382352, 8.541059], [47.398997, 8.533044], [47.407699, 8.547679], [47.414734, 8.51626], [47.383472, 8.536712], [47.3758, 8.516572], [47.377713, 8.528449], [47.37032, 8.491515], [47.365541, 8.552164], [47.370232, 8.537604], [47.391807, 8.523744], [47.372575, 8.533336], [47.378534, 8.541417], [47.369089, 8.547975], [47.391668, 8.519423], [47.349497, 8.56484], [47.379372, 8.542243], [47.383071, 8.530691], [47.349547, 8.532427], [47.403824, 8.485818], [47.356709, 8.558572], [47.429944, 8.549587], [47.40021, 8.546331], [47.384349, 8.548504], [47.405221, 8.480519], [47.409124, 8.543575], [47.370476, 8.519403], [47.374922, 8.544746], [47.369391, 8.54189], [47.360601, 8.507567], [47.408773, 8.546443], [47.390594, 8.539799], [47.376994, 8.539757], [47.371027, 8.536297], [47.393384, 8.537724], [47.370369, 8.514449], [47.365615, 8.54544], [47.367169, 8.550305], [47.399188, 8.542282], [47.376416, 8.523788], [47.401337, 8.534748], [47.398668, 8.539198], [47.366148, 8.540499], [47.376722, 8.522841], [47.384734, 8.497972], [47.373178, 8.542829], [47.382776, 8.552114], [47.389812, 8.509159], [47.39148, 8.477111], [47.384406, 8.481582], [47.369216, 8.528011], [47.395552, 8.532099], [47.391346, 8.487056], [47.382511, 8.53758], [47.41415, 8.551325], [47.405766, 8.590793], [47.374971, 8.539596], [47.327212, 8.52964], [47.374787, 8.54571], [47.413782, 8.546494], [47.366401, 8.541246], [47.373143, 8.537016], [47.387827, 8.527146], [47.374206, 8.528311], [47.376129, 8.536084], [47.381834, 8.531116], [47.334757, 8.529847], [47.418599, 8.507816], [47.378443, 8.510057], [47.422849, 8.494608], [47.383014, 8.529034], [47.367326, 8.54427], [47.36004, 8.516624], [47.359556, 8.535571], [47.376861, 8.528154], [47.397644, 8.546582], [47.373874, 8.526305], [47.374232, 8.544533], [47.372827, 8.525767], [47.414244, 8.541507], [47.372415, 8.536008], [47.401974, 8.499282], [47.366128, 8.51398], [47.415264, 8.508558], [47.374106, 8.502408], [47.369401, 8.526598], [47.371716, 8.519561], [47.367074, 8.523426], [47.375141, 8.552907], [47.391587, 8.519421], [47.387731, 8.490853], [47.365565, 8.509652], [47.395219, 8.5453], [47.392323, 8.492347], [47.389478, 8.487655], [47.37436, 8.552719], [47.370362, 8.514237], [47.384797, 8.531746], [47.413936, 8.545463], [47.378128, 8.526378], [47.37379, 8.481745], [47.375511, 8.563853], [47.380313, 8.527416], [47.356731, 8.535658], [47.392517, 8.539097], [47.391049, 8.523053], [47.371634, 8.515786], [47.392782, 8.524399], [47.359375, 8.522408], [47.364906, 8.531034], [47.378872, 8.542762], [47.380215, 8.483487], [47.359536, 8.592998], [47.366522, 8.540904], [47.412418, 8.529199], [47.406077, 8.553608], [47.390324, 8.490639], [47.399636, 8.543351], [47.384117, 8.532275], [47.374469, 8.539453], [47.383143, 8.540175], [47.335109, 8.519203], [47.36795, 8.494924], [47.37983, 8.525261], [47.393808, 8.493251], [47.376513, 8.499834], [47.38435, 8.548398], [47.367784, 8.496285], [47.386474, 8.497516], [47.37017, 8.548805], [47.391622, 8.538602], [47.419569, 8.548032], [47.380719, 8.541476], [47.36436, 8.555211], [47.360044, 8.526764], [47.378481, 8.54041], [47.41364, 8.514926], [47.369311, 8.520823], [47.36979, 8.536801], [47.378408, 8.540514], [47.362628, 8.531318], [47.391024, 8.526681], [47.373047, 8.532949], [47.386326, 8.522135], [47.366091, 8.532289], [47.38248, 8.552015], [47.365334, 8.530539], [47.39766, 8.533666], [47.408748, 8.579502], [47.391532, 8.545144], [47.373859, 8.50284], [47.414786, 8.560919], [47.397846, 8.533975], [47.344816, 8.533375], [47.369181, 8.527997], [47.366634, 8.54137], [47.412369, 8.546584], [47.368082, 8.522413], [47.391202, 8.539216], [47.371916, 8.550536], [47.388448, 8.491158], [47.383506, 8.549202], [47.379059, 8.511473], [47.365382, 8.521591], [47.371256, 8.550019], [47.39128, 8.546158], [47.424815, 8.537472], [47.36872, 8.558334], [47.421232, 8.500235], [47.371003, 8.516859], [47.364167, 8.546336], [47.379504, 8.537782], [47.366463, 8.53284], [47.374378, 8.55268], [47.378761, 8.527888], [47.399709, 8.495209], [47.387502, 8.496199], [47.372742, 8.53477], [47.383069, 8.505885], [47.375491, 8.486665], [47.394865, 8.525766], [47.40386, 8.568824], [47.377821, 8.50921], [47.399688, 8.517929], [47.387813, 8.520881], [47.391026, 8.545411], [47.360547, 8.527781], [47.370277, 8.518539], [47.382826, 8.515522], [47.372575, 8.473869], [47.38852, 8.523253], [47.383132, 8.513647], [47.363681, 8.498374], [47.35497, 8.526859], [47.406483, 8.567409], [47.41556, 8.513533], [47.385911, 8.53561], [47.363147, 8.55226], [47.399403, 8.49523], [47.360387, 8.523793], [47.389007, 8.489037], [47.363731, 8.535471], [47.379244, 8.525355], [47.382909, 8.506624], [47.369269, 8.537651], [47.390749, 8.524371], [47.382535, 8.554744], [47.360055, 8.579651], [47.392701, 8.515682], [47.351492, 8.534161], [47.420095, 8.547593], [47.368193, 8.546685], [47.354813, 8.532085], [47.417905, 8.505086], [47.401852, 8.492933], [47.379712, 8.542435], [47.414556, 8.484664], [47.364406, 8.546725], [47.383056, 8.514997], [47.384513, 8.53133], [47.386125, 8.546276], [47.383905, 8.530946], [47.364547, 8.532893], [47.380977, 8.549282], [47.383884, 8.529304], [47.376039, 8.541829], [47.386889, 8.534981], [47.387641, 8.499712], [47.370993, 8.508252], [47.383557, 8.554156], [47.381101, 8.491953], [47.358802, 8.534443], [47.375555, 8.535], [47.361896, 8.56906], [47.385987, 8.561426], [47.430702, 8.541795], [47.399103, 8.547394], [47.376803, 8.527649], [47.353839, 8.512236], [47.378945, 8.522753], [47.366833, 8.543135], [47.366392, 8.545085], [47.387129, 8.528589], [47.399894, 8.484707], [47.37747, 8.51499], [47.378454, 8.540436], [47.361399, 8.576635], [47.413919, 8.550989], [47.41313, 8.546003], [47.381011, 8.528715], [47.353548, 8.554296], [47.348847, 8.533246], [47.352177, 8.525452], [47.356897, 8.519022], [47.37639, 8.543624], [47.396829, 8.53398], [47.383227, 8.539859], [47.374292, 8.526856], [47.401636, 8.499845], [47.377335, 8.539804], [47.382495, 8.514416], [47.406589, 8.480374], [47.340957, 8.53716], [47.365698, 8.565698], [47.391812, 8.545096], [47.387748, 8.524985], [47.395561, 8.520561], [47.369045, 8.547908], [47.363627, 8.535006], [47.364005, 8.534034], [47.382422, 8.514507], [47.38153, 8.50396], [47.38618, 8.498212], [47.404932, 8.552948], [47.356274, 8.560694], [47.424121, 8.499179], [47.418431, 8.541925], [47.369437, 8.541746], [47.360578, 8.567629], [47.39889, 8.504069], [47.39108, 8.522643], [47.422743, 8.550961], [47.368382, 8.537275], [47.385572, 8.520067], [47.369905, 8.509223], [47.389247, 8.516698], [47.364656, 8.546029], [47.35137, 8.560855], [47.38151, 8.503232], [47.392065, 8.53832], [47.359694, 8.586157], [47.383923, 8.530934], [47.370717, 8.516734], [47.366398, 8.53787], [47.365828, 8.536243], [47.408345, 8.544141], [47.413083, 8.533082], [47.363459, 8.547924], [47.382318, 8.558527], [47.368743, 8.52477], [47.367094, 8.516462], [47.360064, 8.5227], [47.394788, 8.539542], [47.356265, 8.551441], [47.361401, 8.565409], [47.356866, 8.557185], [47.369303, 8.540737], [47.370153, 8.525024], [47.390968, 8.521197], [47.35518, 8.561267], [47.38396, 8.548761], [47.360654, 8.565406], [47.380506, 8.493028], [47.364935, 8.557116], [47.381716, 8.516877], [47.37118, 8.545701], [47.41478, 8.552186], [47.387952, 8.515639], [47.367363, 8.541385], [47.387965, 8.48593], [47.364983, 8.531472], [47.413903, 8.527149], [47.35656, 8.534688], [47.364248, 8.566714], [47.372194, 8.535566], [47.398268, 8.546251], [47.378434, 8.509964], [47.36821, 8.537377], [47.379787, 8.543085], [47.382282, 8.515974], [47.430301, 8.54982], [47.3919, 8.505135], [47.374326, 8.530803], [47.390107, 8.525656], [47.384483, 8.480974], [47.380363, 8.524981], [47.379364, 8.542123], [47.427079, 8.491431], [47.407418, 8.546984], [47.383106, 8.515382], [47.36925, 8.557445], [47.386908, 8.502108], [47.369732, 8.53341], [47.409956, 8.541193], [47.385115, 8.532282], [47.374497, 8.517419], [47.340515, 8.519127], [47.367896, 8.491957], [47.384437, 8.527011], [47.423084, 8.498483], [47.391341, 8.514912], [47.365406, 8.554054], [47.374236, 8.536495], [47.397526, 8.493841], [47.389625, 8.521461], [47.387815, 8.529305], [47.405807, 8.573052], [47.394528, 8.545179], [47.363731, 8.535458], [47.377182, 8.55299], [47.398256, 8.537149], [47.405709, 8.591123], [47.372611, 8.534277], [47.371503, 8.547654], [47.385406, 8.536725], [47.363771, 8.575057], [47.397039, 8.511623], [47.374114, 8.502422], [47.409048, 8.53924], [47.379523, 8.537717], [47.379452, 8.528114], [47.362581, 8.534322], [47.375915, 8.48854], [47.378282, 8.520515], [47.372698, 8.572864], [47.377104, 8.529125], [47.378625, 8.519449], [47.367481, 8.552496], [47.388867, 8.522637], [47.349984, 8.566557], [47.37589, 8.537575], [47.349807, 8.564409], [47.398281, 8.537335], [47.404417, 8.556965], [47.357153, 8.558237], [47.349874, 8.573173], [47.351039, 8.572708], [47.341818, 8.530826], [47.370299, 8.522856], [47.357009, 8.534777], [47.382065, 8.528565], [47.386302, 8.497619], [47.360447, 8.526931], [47.393858, 8.505426], [47.378537, 8.542027], [47.413589, 8.572052], [47.402137, 8.497178], [47.414526, 8.556104], [47.398842, 8.538923], [47.389621, 8.543753], [47.375616, 8.53712], [47.376784, 8.526748], [47.388818, 8.541193], [47.405671, 8.549995], [47.415411, 8.51406], [47.39146, 8.486383], [47.390889, 8.521897], [47.410221, 8.541689], [47.369622, 8.5203], [47.352911, 8.524805], [47.41062, 8.546985], [47.373014, 8.536364], [47.373532, 8.519584], [47.389516, 8.521538], [47.384781, 8.509376], [47.366538, 8.541964], [47.38245, 8.529711], [47.390433, 8.488455], [47.369826, 8.510916], [47.380135, 8.548059], [47.358301, 8.58156], [47.390975, 8.53945], [47.383905, 8.530893], [47.377127, 8.541825], [47.360382, 8.564739], [47.392144, 8.502027], [47.360593, 8.56338], [47.396187, 8.51713], [47.391556, 8.516996], [47.363827, 8.548924], [47.360747, 8.52564], [47.383393, 8.498938], [47.382835, 8.530845], [47.39314, 8.524592], [47.369146, 8.504746], [47.371599, 8.521399], [47.369716, 8.525585], [47.37715, 8.540396], [47.402351, 8.499395], [47.393866, 8.505505], [47.375112, 8.545584], [47.339609, 8.517984], [47.406735, 8.584719], [47.386931, 8.546585], [47.389212, 8.488272], [47.373925, 8.544632], [47.35737, 8.527014], [47.357981, 8.520368], [47.362313, 8.525632], [47.363913, 8.531477], [47.360933, 8.571806], [47.366266, 8.545016], [47.375899, 8.538529], [47.364145, 8.549527], [47.364519, 8.547165], [47.362417, 8.504783], [47.334736, 8.538686], [47.386861, 8.528424], [47.392277, 8.503235], [47.368418, 8.515363], [47.400826, 8.492025], [47.328359, 8.512821], [47.387101, 8.481979], [47.373768, 8.545066], [47.410492, 8.572331], [47.377648, 8.551238], [47.375903, 8.536251], [47.378344, 8.527283], [47.376538, 8.527088], [47.377803, 8.521724], [47.367373, 8.494026], [47.388017, 8.485163], [47.399774, 8.504723], [47.391055, 8.479381], [47.367767, 8.496231], [47.393573, 8.529237], [47.372613, 8.529325], [47.373178, 8.531468], [47.358375, 8.520588], [47.387852, 8.486471], [47.407732, 8.584038], [47.407722, 8.584051], [47.366056, 8.53687], [47.377762, 8.52898], [47.342182, 8.530317], [47.353012, 8.509175], [47.393805, 8.532262], [47.401803, 8.500232], [47.412028, 8.531391], [47.401785, 8.500258], [47.373856, 8.528172], [47.397778, 8.533549], [47.378436, 8.541389], [47.37966, 8.537534], [47.392501, 8.492483], [47.368946, 8.540385], [47.402894, 8.546943], [47.376144, 8.527834], [47.379307, 8.537752], [47.369479, 8.525884], [47.406388, 8.591601], [47.381827, 8.529977], [47.377077, 8.527231], [47.39069, 8.491918], [47.369604, 8.533593], [47.354605, 8.558448], [47.409438, 8.544548], [47.409374, 8.54468], [47.410874, 8.544896], [47.400576, 8.586243], [47.360275, 8.535665], [47.357945, 8.520447], [47.396671, 8.505707], [47.371981, 8.542818], [47.378714, 8.51475], [47.377061, 8.544035], [47.383948, 8.533993], [47.335143, 8.541288], [47.362539, 8.534096], [47.394165, 8.517884], [47.3909, 8.479577], [47.38239, 8.528479], [47.399637, 8.520459], [47.419826, 8.504461], [47.421646, 8.550077], [47.397381, 8.531753], [47.383696, 8.515804], [47.376929, 8.540868], [47.366292, 8.54511], [47.369122, 8.555748], [47.364023, 8.528381], [47.382228, 8.505352], [47.387646, 8.544229], [47.380314, 8.528304], [47.379213, 8.544769], [47.366205, 8.537336], [47.389726, 8.511568], [47.388147, 8.541762], [47.364149, 8.546349], [47.383116, 8.541035], [47.406521, 8.576354], [47.385003, 8.508718], [47.391342, 8.535867], [47.335353, 8.519062], [47.399699, 8.543379], [47.379378, 8.495362], [47.378974, 8.54242], [47.383741, 8.515792], [47.410076, 8.542826], [47.374439, 8.539744], [47.413219, 8.532966], [47.370562, 8.524556], [47.37821, 8.509959], [47.401322, 8.543916], [47.370197, 8.548805], [47.402818, 8.486646], [47.373192, 8.543161], [47.382998, 8.485117], [47.368053, 8.540618], [47.368778, 8.52877], [47.373596, 8.547062], [47.391722, 8.485183], [47.383081, 8.528625], [47.382839, 8.495643], [47.38482, 8.527363], [47.414775, 8.561078], [47.378307, 8.541704], [47.371057, 8.530286], [47.377392, 8.529091], [47.379049, 8.518359], [47.378084, 8.548056], [47.357053, 8.535784], [47.399943, 8.587567], [47.358238, 8.51893], [47.376575, 8.527035], [47.370038, 8.503545], [47.391293, 8.538237], [47.390722, 8.527285], [47.39378, 8.498231], [47.402519, 8.490787], [47.413984, 8.525242], [47.392941, 8.524628], [47.396188, 8.516997], [47.35435, 8.575307], [47.377184, 8.509051], [47.378966, 8.529084], [47.388781, 8.537497], [47.36647, 8.551919], [47.338595, 8.53109], [47.419179, 8.506397], [47.373471, 8.528958], [47.386815, 8.535139], [47.384038, 8.480476], [47.425852, 8.493766], [47.398196, 8.585926], [47.334819, 8.519395], [47.385519, 8.530489], [47.386873, 8.486253], [47.413531, 8.530322], [47.362483, 8.534254], [47.391291, 8.523203], [47.391099, 8.546287], [47.375762, 8.549093], [47.391837, 8.517651], [47.354713, 8.556571], [47.372241, 8.493897], [47.390291, 8.525249], [47.409337, 8.546666], [47.341865, 8.530562], [47.386915, 8.518863], [47.375598, 8.493698], [47.386886, 8.522915], [47.380738, 8.553634], [47.374369, 8.541437], [47.378868, 8.540405], [47.361981, 8.526512], [47.347601, 8.531804], [47.368047, 8.54128], [47.376912, 8.535147], [47.341498, 8.530356], [47.383279, 8.540032], [47.369797, 8.51024], [47.365076, 8.55937], [47.33428, 8.516474], [47.352526, 8.508239], [47.38415, 8.530647], [47.378473, 8.526995], [47.351394, 8.524536], [47.370485, 8.549738], [47.379279, 8.559311], [47.367042, 8.538214], [47.389529, 8.540135], [47.395398, 8.551967], [47.422938, 8.498705], [47.370292, 8.550131], [47.407111, 8.487353], [47.37577, 8.559476], [47.388564, 8.523293], [47.377234, 8.540093], [47.385971, 8.531201], [47.357936, 8.52046], [47.362452, 8.510702], [47.391529, 8.542693], [47.380756, 8.512791], [47.37897, 8.559715], [47.366824, 8.543161], [47.415501, 8.54645], [47.371468, 8.5429], [47.411191, 8.546533], [47.397338, 8.587127], [47.383459, 8.587092], [47.358246, 8.518017], [47.376753, 8.54334], [47.36393, 8.547563], [47.408189, 8.559376], [47.368733, 8.54761], [47.362473, 8.504599], [47.375369, 8.490225], [47.393835, 8.506922], [47.391781, 8.487608], [47.391637, 8.487631], [47.386784, 8.534688], [47.380174, 8.52789], [47.381359, 8.548892], [47.384408, 8.53195], [47.375879, 8.527392], [47.414904, 8.552348], [47.373029, 8.539516], [47.338383, 8.516252], [47.404846, 8.588388], [47.369566, 8.517597], [47.354658, 8.534173], [47.374616, 8.486886], [47.402396, 8.49937], [47.374178, 8.502383], [47.395105, 8.531732], [47.380996, 8.504387], [47.361412, 8.513223], [47.391019, 8.522469], [47.392002, 8.538358], [47.378057, 8.541461], [47.391013, 8.521184], [47.381295, 8.517676], [47.377753, 8.507818], [47.379577, 8.526302], [47.425083, 8.537663], [47.391427, 8.513417], [47.376288, 8.484032], [47.410537, 8.572279], [47.373017, 8.531332], [47.371731, 8.517893], [47.360625, 8.535712], [47.367102, 8.544173], [47.387126, 8.545966], [47.41086, 8.563156], [47.391078, 8.522894], [47.388706, 8.542489], [47.370071, 8.511729], [47.427413, 8.546168], [47.425084, 8.53765], [47.360446, 8.552587], [47.413822, 8.545169], [47.356466, 8.556727], [47.377652, 8.518622], [47.376698, 8.544359], [47.357917, 8.520486], [47.368946, 8.540372], [47.366807, 8.518296], [47.375112, 8.545637], [47.407647, 8.530519], [47.374608, 8.538118], [47.378226, 8.527427], [47.33651, 8.517485], [47.371883, 8.542803], [47.386372, 8.497806], [47.340103, 8.525709], [47.370032, 8.512006], [47.384072, 8.532288], [47.376955, 8.527771], [47.403479, 8.556296], [47.396665, 8.529446], [47.365477, 8.539122], [47.381166, 8.49165], [47.389669, 8.48142], [47.369892, 8.539266], [47.420977, 8.5494], [47.380441, 8.519552], [47.392568, 8.527998], [47.420327, 8.535616], [47.405493, 8.565613], [47.388183, 8.519882], [47.391114, 8.522855], [47.354412, 8.526874], [47.387687, 8.529527], [47.363713, 8.560718], [47.40922, 8.571721], [47.406752, 8.557305], [47.365101, 8.534189], [47.384931, 8.508783], [47.390371, 8.525383], [47.360516, 8.531142], [47.361326, 8.522422], [47.364431, 8.554418], [47.406163, 8.550297], [47.370868, 8.548277], [47.39839, 8.494786], [47.395374, 8.533712], [47.372613, 8.535005], [47.413487, 8.530254], [47.38656, 8.517372], [47.405169, 8.541426], [47.373672, 8.534352], [47.374833, 8.514195], [47.383308, 8.543569], [47.40772, 8.548302], [47.372291, 8.573014], [47.420012, 8.506771], [47.395357, 8.521259], [47.367247, 8.546837], [47.386778, 8.547495], [47.377341, 8.512431], [47.392071, 8.499204], [47.425861, 8.493766], [47.333607, 8.514277], [47.369275, 8.532328], [47.429899, 8.549533], [47.371364, 8.524387], [47.328075, 8.529618], [47.363422, 8.534869], [47.3471, 8.526778], [47.350278, 8.529318], [47.392302, 8.502454], [47.398294, 8.536978], [47.387472, 8.509258], [47.365469, 8.535229], [47.413807, 8.522032], [47.403787, 8.548591], [47.39131, 8.537324], [47.376594, 8.52689], [47.40161, 8.544836], [47.382395, 8.514467], [47.414905, 8.541018], [47.37302, 8.532908], [47.386508, 8.518126], [47.374637, 8.5293], [47.369009, 8.525186], [47.387909, 8.536486], [47.364891, 8.532649], [47.374711, 8.537657], [47.362594, 8.547178], [47.361522, 8.534102], [47.380171, 8.478348], [47.390603, 8.489585], [47.352814, 8.528417], [47.379645, 8.527707], [47.358279, 8.573736], [47.354868, 8.574762], [47.38728, 8.500857], [47.405391, 8.554786], [47.367468, 8.545412], [47.365492, 8.563708], [47.354238, 8.553636], [47.362502, 8.534149], [47.422323, 8.497103], [47.376011, 8.541921], [47.392533, 8.50279], [47.379296, 8.553868], [47.373618, 8.522936], [47.372455, 8.538379], [47.387679, 8.498534], [47.366546, 8.540269], [47.380133, 8.565924], [47.384938, 8.532067], [47.395688, 8.545217], [47.405481, 8.578769], [47.379387, 8.548149], [47.361467, 8.561412], [47.380247, 8.507563], [47.400415, 8.543738], [47.419569, 8.548072], [47.379299, 8.495215], [47.371254, 8.539903], [47.369155, 8.527811], [47.373195, 8.535335], [47.408982, 8.539543], [47.363619, 8.50024], [47.379402, 8.523902], [47.404836, 8.573959], [47.384269, 8.507445], [47.37503, 8.540113], [47.351042, 8.525641], [47.391116, 8.545373], [47.419569, 8.548059], [47.380043, 8.520763], [47.373467, 8.519874], [47.371334, 8.517117], [47.430662, 8.549775], [47.357556, 8.521617], [47.388581, 8.520605], [47.389341, 8.516236], [47.370831, 8.555757], [47.421103, 8.50059], [47.427564, 8.549127], [47.414587, 8.520391], [47.414821, 8.544223], [47.373929, 8.503001], [47.398827, 8.508903], [47.388789, 8.478317], [47.40428, 8.485111], [47.365556, 8.539335], [47.393507, 8.500504], [47.367686, 8.530098], [47.398391, 8.541868], [47.398295, 8.591373], [47.369283, 8.525682], [47.419113, 8.546817], [47.421961, 8.548148], [47.374648, 8.549891], [47.393988, 8.493188], [47.423582, 8.551668], [47.380414, 8.483371], [47.390901, 8.479564], [47.403828, 8.558264], [47.364626, 8.516875], [47.373156, 8.561831], [47.375736, 8.516676], [47.376868, 8.528352], [47.369774, 8.523216], [47.369772, 8.543447], [47.382516, 8.544546], [47.398201, 8.536366], [47.359874, 8.522882], [47.377882, 8.541867], [47.39111, 8.522352], [47.405887, 8.587669], [47.36097, 8.55138], [47.394865, 8.525753], [47.37989, 8.494538], [47.399701, 8.510656], [47.380995, 8.538091], [47.370971, 8.516461], [47.389773, 8.512324], [47.381809, 8.516587], [47.381827, 8.516561], [47.363459, 8.547937], [47.382099, 8.528804], [47.367936, 8.536908], [47.377543, 8.538815], [47.393874, 8.505625], [47.348735, 8.52607], [47.368643, 8.543848], [47.402043, 8.551271], [47.405275, 8.570471], [47.326519, 8.5133], [47.377397, 8.572435], [47.365086, 8.54899], [47.391823, 8.511518], [47.37074, 8.535298], [47.421121, 8.507416], [47.371744, 8.48814], [47.387563, 8.527392], [47.373786, 8.536592], [47.38342, 8.539399], [47.370887, 8.547178], [47.414212, 8.557886], [47.410366, 8.548145], [47.412292, 8.557382], [47.402698, 8.486975], [47.364621, 8.537396], [47.403801, 8.548022], [47.37351, 8.561547], [47.425841, 8.496921], [47.406799, 8.550575], [47.371767, 8.542681], [47.418842, 8.505886], [47.361108, 8.526468], [47.381104, 8.528492], [47.362541, 8.533818], [47.384864, 8.534092], [47.372823, 8.532798], [47.377561, 8.538802], [47.370007, 8.509874], [47.363191, 8.533633], [47.383249, 8.545025], [47.368434, 8.538468], [47.395412, 8.54019], [47.349996, 8.52775], [47.40078, 8.548873], [47.370488, 8.524859], [47.372948, 8.531026], [47.399559, 8.496823], [47.365571, 8.538673], [47.369269, 8.504046], [47.361708, 8.54851], [47.355839, 8.551789], [47.337082, 8.519759], [47.376947, 8.521905], [47.415361, 8.5628], [47.385159, 8.532389], [47.363372, 8.564338], [47.396754, 8.529527], [47.383515, 8.548262], [47.411308, 8.570665], [47.362434, 8.568264], [47.373904, 8.538303], [47.382852, 8.513748], [47.377111, 8.54164], [47.372875, 8.536864], [47.365162, 8.553228], [47.362055, 8.55454], [47.338236, 8.539473], [47.353599, 8.60195], [47.36741, 8.544855], [47.388977, 8.495248], [47.422411, 8.549032], [47.327419, 8.529618], [47.36106, 8.531577], [47.37376, 8.536446], [47.369107, 8.525307], [47.390841, 8.522201], [47.393368, 8.499004], [47.367563, 8.529698], [47.391781, 8.487621], [47.42069, 8.502477], [47.415038, 8.515471], [47.393721, 8.505622], [47.411498, 8.526556], [47.335229, 8.533139], [47.38179, 8.529195], [47.384979, 8.501632], [47.392341, 8.503117], [47.369595, 8.520273], [47.395744, 8.522221], [47.370024, 8.548987], [47.357944, 8.520473], [47.36607, 8.533547], [47.36771, 8.54641], [47.353663, 8.55635], [47.363767, 8.520207], [47.393991, 8.525921], [47.377469, 8.527636], [47.378464, 8.526995], [47.351856, 8.525168], [47.38277, 8.541505], [47.389648, 8.514136], [47.363967, 8.533318], [47.396825, 8.529675], [47.383784, 8.532295], [47.403836, 8.567698], [47.381942, 8.550957], [47.387345, 8.527692], [47.39634, 8.545614], [47.40483, 8.548613], [47.402689, 8.487001], [47.378095, 8.483194], [47.373247, 8.526027], [47.37894, 8.508756], [47.362431, 8.533115], [47.356339, 8.555917], [47.398533, 8.538254], [47.370079, 8.548896], [47.372062, 8.521898], [47.409919, 8.543193], [47.406853, 8.550576], [47.399062, 8.542293], [47.371734, 8.519548], [47.370732, 8.526585], [47.374187, 8.549233], [47.367111, 8.536627], [47.381142, 8.534929], [47.359985, 8.594887], [47.40712, 8.586702], [47.344843, 8.533402], [47.364344, 8.56612], [47.369709, 8.517706], [47.368208, 8.496134], [47.365747, 8.549494], [47.369898, 8.510918], [47.424676, 8.552923], [47.364733, 8.537875], [47.384483, 8.532627], [47.363775, 8.547771], [47.426315, 8.547112], [47.39737, 8.476312], [47.369766, 8.520276], [47.377278, 8.557031], [47.402645, 8.486908], [47.37765, 8.574201], [47.37009, 8.548737], [47.399348, 8.548075], [47.348773, 8.563435], [47.371876, 8.547291], [47.366648, 8.535147], [47.383414, 8.548458], [47.398827, 8.533875], [47.392096, 8.503364], [47.391067, 8.523093], [47.399837, 8.544018], [47.424084, 8.549094], [47.375992, 8.488899], [47.395452, 8.551968], [47.381881, 8.516549], [47.364193, 8.547356], [47.380425, 8.53457], [47.392275, 8.548338], [47.375687, 8.5372], [47.372615, 8.53486], [47.371785, 8.534167], [47.425742, 8.494003], [47.420845, 8.508113], [47.397789, 8.546466], [47.381792, 8.529883], [47.377332, 8.541975], [47.390978, 8.473922], [47.400147, 8.494489], [47.377505, 8.498543], [47.403071, 8.498363], [47.395195, 8.473103], [47.381809, 8.516587], [47.413391, 8.544167], [47.408711, 8.546256], [47.418597, 8.508028], [47.377117, 8.541017], [47.411073, 8.545762], [47.369158, 8.52752], [47.423728, 8.550531], [47.377349, 8.498911], [47.414185, 8.546688], [47.369379, 8.537401], [47.364275, 8.565867], [47.355905, 8.535522], [47.40346, 8.582992], [47.414777, 8.560919], [47.377224, 8.540198], [47.417718, 8.483149], [47.378804, 8.54239], [47.379343, 8.537726], [47.365741, 8.535963], [47.385444, 8.508714], [47.391811, 8.517637], [47.398759, 8.467874], [47.377256, 8.538676], [47.359923, 8.535724], [47.372472, 8.535731], [47.39626, 8.509236], [47.377605, 8.52654], [47.369436, 8.518959], [47.375934, 8.553626], [47.419715, 8.547823], [47.404447, 8.580536], [47.379205, 8.529486], [47.412244, 8.546502], [47.371335, 8.536104], [47.353577, 8.576164], [47.409487, 8.540442], [47.421471, 8.538264], [47.367193, 8.523176], [47.38687, 8.490571], [47.339496, 8.531823], [47.377161, 8.523975], [47.375622, 8.559896], [47.391466, 8.486635], [47.379554, 8.51625], [47.382142, 8.54038], [47.378615, 8.528176], [47.39378, 8.49337], [47.369501, 8.526414], [47.371317, 8.546406], [47.42744, 8.546128], [47.361351, 8.526526], [47.373102, 8.561882], [47.390757, 8.51298], [47.351516, 8.5607], [47.363749, 8.535419], [47.360448, 8.531684], [47.342154, 8.530449], [47.404909, 8.557174], [47.401495, 8.548345], [47.382865, 8.540024], [47.355752, 8.535479], [47.396351, 8.472556], [47.3763, 8.527546], [47.399712, 8.518208], [47.379428, 8.511427], [47.341917, 8.530775], [47.370164, 8.514233], [47.397571, 8.488941], [47.391802, 8.518511], [47.364754, 8.554451], [47.375204, 8.533165], [47.364773, 8.56642], [47.378827, 8.542774], [47.375974, 8.541007], [47.41063, 8.553491], [47.369126, 8.547949], [47.381799, 8.51668], [47.398034, 8.535886], [47.360978, 8.599052], [47.370263, 8.491792], [47.415141, 8.570614], [47.375278, 8.543297], [47.377791, 8.51632], [47.395624, 8.545229], [47.354411, 8.526014], [47.371111, 8.523561], [47.368608, 8.543728], [47.406592, 8.503826], [47.356484, 8.510185], [47.371618, 8.517493], [47.372629, 8.534291], [47.374454, 8.539175], [47.370771, 8.530055], [47.364005, 8.53312], [47.398836, 8.502081], [47.398644, 8.59154], [47.386629, 8.541532], [47.373007, 8.531438], [47.394865, 8.525766], [47.403055, 8.555452], [47.3426, 8.530881], [47.397252, 8.541527], [47.376592, 8.534716], [47.361709, 8.549344], [47.374413, 8.54157], [47.376717, 8.548968], [47.373061, 8.542748], [47.392434, 8.491025], [47.360783, 8.52568], [47.390906, 8.522957], [47.378582, 8.542067], [47.342671, 8.530896], [47.389691, 8.511462], [47.375425, 8.547643], [47.38996, 8.510633], [47.365916, 8.533649], [47.375882, 8.54217], [47.399376, 8.514637], [47.370304, 8.548861], [47.369447, 8.54348], [47.359844, 8.549675], [47.369707, 8.536985], [47.415901, 8.512573], [47.405826, 8.591099], [47.378381, 8.541414], [47.396094, 8.545066], [47.379467, 8.527518], [47.375056, 8.523072], [47.393511, 8.532905], [47.423547, 8.555352], [47.370989, 8.516421], [47.37965, 8.515656], [47.374644, 8.539947], [47.37094, 8.555706], [47.358994, 8.550134], [47.370257, 8.491487], [47.422042, 8.498277], [47.374195, 8.544572], [47.391372, 8.536477], [47.374807, 8.544611], [47.378369, 8.541732], [47.412543, 8.546335], [47.389594, 8.473776], [47.360808, 8.56627], [47.385137, 8.476272], [47.375159, 8.52551], [47.378165, 8.509879], [47.373545, 8.536375], [47.370274, 8.477665], [47.370026, 8.525194], [47.385338, 8.508473], [47.355659, 8.555518], [47.374421, 8.521721], [47.378327, 8.527257], [47.40859, 8.580943], [47.374607, 8.527776], [47.38495, 8.508664], [47.344233, 8.53507], [47.381772, 8.516706], [47.351087, 8.526581], [47.376945, 8.516356], [47.360532, 8.525636], [47.399377, 8.572929], [47.388634, 8.537812], [47.366148, 8.540512], [47.396279, 8.545428], [47.420808, 8.502347], [47.370961, 8.561003], [47.417379, 8.545654], [47.389745, 8.511489], [47.377264, 8.498327], [47.385493, 8.530462], [47.357442, 8.521337], [47.408001, 8.489385], [47.383333, 8.52765], [47.375134, 8.518597], [47.398898, 8.506056], [47.391114, 8.522842], [47.3666, 8.566273], [47.369122, 8.540799], [47.396311, 8.486001], [47.403656, 8.57037], [47.377299, 8.548304], [47.353551, 8.576071], [47.425175, 8.494986], [47.363093, 8.549492], [47.335716, 8.540612], [47.37432, 8.523838], [47.430737, 8.550386], [47.376556, 8.525194], [47.36468, 8.547247], [47.387233, 8.497094], [47.390576, 8.545428], [47.398192, 8.494808], [47.347962, 8.525009], [47.356676, 8.534836], [47.372037, 8.547295], [47.428538, 8.489207], [47.375619, 8.565776], [47.374499, 8.495782], [47.37555, 8.489103], [47.407741, 8.543347], [47.368393, 8.53517], [47.362978, 8.548337], [47.422811, 8.550472], [47.374457, 8.541651], [47.376716, 8.540546], [47.387049, 8.501501], [47.423039, 8.494519], [47.372561, 8.517632], [47.391022, 8.523079], [47.379721, 8.551772], [47.379072, 8.538806], [47.362261, 8.559311], [47.387323, 8.488196], [47.42998, 8.549508], [47.381102, 8.580817], [47.378023, 8.527939], [47.378979, 8.515192], [47.398282, 8.537229], [47.351468, 8.529064], [47.411999, 8.528806], [47.406907, 8.550577], [47.385502, 8.520807], [47.395327, 8.518702], [47.359692, 8.561653], [47.388541, 8.55132], [47.395296, 8.514264], [47.392689, 8.52755], [47.414867, 8.551565], [47.412363, 8.515827], [47.362967, 8.559736], [47.414938, 8.551713], [47.358615, 8.589774], [47.411245, 8.570704], [47.408958, 8.539318], [47.36787, 8.533412], [47.423853, 8.53838], [47.367936, 8.546296], [47.405211, 8.571476], [47.391244, 8.515665], [47.354778, 8.574839], [47.364801, 8.519302], [47.368552, 8.518358], [47.425629, 8.4975], [47.420325, 8.535749], [47.376738, 8.527807], [47.382192, 8.516025], [47.391876, 8.518341], [47.362498, 8.568172], [47.375837, 8.536568], [47.377008, 8.523045], [47.372208, 8.547338], [47.408736, 8.57978], [47.399809, 8.516435], [47.345674, 8.53015], [47.415949, 8.51427], [47.351262, 8.560853], [47.378282, 8.509855], [47.365618, 8.539469], [47.36199, 8.549124], [47.369463, 8.564189], [47.369209, 8.554227], [47.388238, 8.497366], [47.395098, 8.536276], [47.388856, 8.520942], [47.372066, 8.522521], [47.364116, 8.523206], [47.357968, 8.532255], [47.389709, 8.511449], [47.373316, 8.533047], [47.357906, 8.532241], [47.37654, 8.543919], [47.369696, 8.512383], [47.408554, 8.539203], [47.372332, 8.542812], [47.371725, 8.519561], [47.356314, 8.556591], [47.387071, 8.519488], [47.383916, 8.497903], [47.408756, 8.579555], [47.402421, 8.495687], [47.367599, 8.495884], [47.404741, 8.483848], [47.367606, 8.523291], [47.364366, 8.536822], [47.406907, 8.537407], [47.363517, 8.535215], [47.376007, 8.559123], [47.378288, 8.530408], [47.363368, 8.529189], [47.399722, 8.543777], [47.363898, 8.526353], [47.379546, 8.51033], [47.332444, 8.529932], [47.359865, 8.565151], [47.406911, 8.536003], [47.377036, 8.559714], [47.378607, 8.542253], [47.377744, 8.527059], [47.367995, 8.534513], [47.379285, 8.555947], [47.382158, 8.542486], [47.388579, 8.536976], [47.379241, 8.538082], [47.335946, 8.540974], [47.385048, 8.523182], [47.364595, 8.566191], [47.390666, 8.510104], [47.375484, 8.563839], [47.378475, 8.525816], [47.356668, 8.526166], [47.407482, 8.544084], [47.374196, 8.544545], [47.374658, 8.549799], [47.368786, 8.528783], [47.373067, 8.536551], [47.360151, 8.568149], [47.380358, 8.541641], [47.406844, 8.550589], [47.369575, 8.520537], [47.339407, 8.531808], [47.376098, 8.516445], [47.376832, 8.544507], [47.373931, 8.519248], [47.378097, 8.516274], [47.381188, 8.504046], [47.375098, 8.543319], [47.345155, 8.534626], [47.392231, 8.476702], [47.381001, 8.507698], [47.40377, 8.482836], [47.35904, 8.500307], [47.41965, 8.548087], [47.367589, 8.560853], [47.377833, 8.507926], [47.404084, 8.572658], [47.336803, 8.536995], [47.375985, 8.527566], [47.380905, 8.538089], [47.378325, 8.540711], [47.385683, 8.501355], [47.388346, 8.497368], [47.418386, 8.545755], [47.39096, 8.522998], [47.378434, 8.501197], [47.379952, 8.506366], [47.384271, 8.56029], [47.392397, 8.468188], [47.387704, 8.572654], [47.373758, 8.519523], [47.411869, 8.537774], [47.377522, 8.529584], [47.377521, 8.541992], [47.368498, 8.496921], [47.37769, 8.510743], [47.405811, 8.590781], [47.394215, 8.489987], [47.340528, 8.530243], [47.374286, 8.546428], [47.392614, 8.480127], [47.424657, 8.548417], [47.378671, 8.530813], [47.362866, 8.512616], [47.377768, 8.537813], [47.389583, 8.511512], [47.362555, 8.535209], [47.35821, 8.518069], [47.357483, 8.521748], [47.362618, 8.519985], [47.366765, 8.544577], [47.370277, 8.548847], [47.408309, 8.526081], [47.379635, 8.527787], [47.3795, 8.510449], [47.360615, 8.524446], [47.334665, 8.534768], [47.358244, 8.588111], [47.339622, 8.52996], [47.335048, 8.526585], [47.382785, 8.575277], [47.378216, 8.541715], [47.386016, 8.53785], [47.378183, 8.509959], [47.365267, 8.547035], [47.392207, 8.524295], [47.369453, 8.525831], [47.413975, 8.479299], [47.386472, 8.496722], [47.363102, 8.517281], [47.406374, 8.547029], [47.357308, 8.598112], [47.378966, 8.542353], [47.376707, 8.544412], [47.343885, 8.530074], [47.404956, 8.500772], [47.392728, 8.523458], [47.375341, 8.517595], [47.32689, 8.513096], [47.368531, 8.490394], [47.367693, 8.494482], [47.34845, 8.53427], [47.367113, 8.527901], [47.37589, 8.538502], [47.358262, 8.523074], [47.407018, 8.481733], [47.378699, 8.542017], [47.370765, 8.549598], [47.408456, 8.546674], [47.395903, 8.521469], [47.379575, 8.542631], [47.337847, 8.532213], [47.364294, 8.533934], [47.338163, 8.530129], [47.414233, 8.551035], [47.368583, 8.524635], [47.381738, 8.516493], [47.343154, 8.525506], [47.389898, 8.484008], [47.40296, 8.490849], [47.407811, 8.580502], [47.378614, 8.542426], [47.383285, 8.553488], [47.377903, 8.510019], [47.367784, 8.496298], [47.387659, 8.486917], [47.338092, 8.53857], [47.392878, 8.522745], [47.390968, 8.478068], [47.356434, 8.531866], [47.364872, 8.565495], [47.394113, 8.493284], [47.359547, 8.53561], [47.408835, 8.55022], [47.397587, 8.505845], [47.373094, 8.500945], [47.370571, 8.489574], [47.379165, 8.522294], [47.369115, 8.54158], [47.339874, 8.519392], [47.376069, 8.538665], [47.370662, 8.516812], [47.39629, 8.520536], [47.381144, 8.497993], [47.391052, 8.522801], [47.371323, 8.556059], [47.358548, 8.521372], [47.413793, 8.550112], [47.364384, 8.546222], [47.35738, 8.523136], [47.382905, 8.531072], [47.375969, 8.54155], [47.386212, 8.475763], [47.336047, 8.526579], [47.388305, 8.49101], [47.37722, 8.515779], [47.382573, 8.528178], [47.414088, 8.550237], [47.364721, 8.532592], [47.391846, 8.517717], [47.425424, 8.536861], [47.376599, 8.543403], [47.377656, 8.541969], [47.383632, 8.573296], [47.399695, 8.518049], [47.420471, 8.547826], [47.384015, 8.535505], [47.36903, 8.540996], [47.376016, 8.535684], [47.400262, 8.547498], [47.41457, 8.558993], [47.369428, 8.541745], [47.37598, 8.535684], [47.329855, 8.529734], [47.378782, 8.522843], [47.383208, 8.515092], [47.393883, 8.505664], [47.369039, 8.541049], [47.378872, 8.542749], [47.390054, 8.534172], [47.377363, 8.539751], [47.35019, 8.532903], [47.414911, 8.551672], [47.391133, 8.538923], [47.389883, 8.536076], [47.391616, 8.527846], [47.37754, 8.529584], [47.367611, 8.523714], [47.367775, 8.546253], [47.363281, 8.52213], [47.377483, 8.503946], [47.375713, 8.559779], [47.39147, 8.505841], [47.421564, 8.550168], [47.37572, 8.516543], [47.373095, 8.534525], [47.369039, 8.541022], [47.373163, 8.495332], [47.397482, 8.532457], [47.377434, 8.511149], [47.373785, 8.51947], [47.390414, 8.509158], [47.386607, 8.496698], [47.394555, 8.526157], [47.373861, 8.502615], [47.391361, 8.537616], [47.424052, 8.5134], [47.362502, 8.551055], [47.379452, 8.544257], [47.39084, 8.527181], [47.380517, 8.51721], [47.370956, 8.523809], [47.381579, 8.571623], [47.376184, 8.54452], [47.359427, 8.509039], [47.343623, 8.530121], [47.354998, 8.554101], [47.360565, 8.547691], [47.344062, 8.53504], [47.363959, 8.531306], [47.378442, 8.510083], [47.359793, 8.526733], [47.375548, 8.52434], [47.374713, 8.549641], [47.400307, 8.503514], [47.361766, 8.561127], [47.372506, 8.543478], [47.373181, 8.55186], [47.369398, 8.525909], [47.368404, 8.550992], [47.419831, 8.547932], [47.388837, 8.536293], [47.395646, 8.5354], [47.383033, 8.505845], [47.402504, 8.499398], [47.33118, 8.537025], [47.355434, 8.534917], [47.422058, 8.546494], [47.35945, 8.547628], [47.409701, 8.544408], [47.373163, 8.551807], [47.360878, 8.535611], [47.37018, 8.539338], [47.365732, 8.535923], [47.385352, 8.494329], [47.41404, 8.542126], [47.401315, 8.517962], [47.366873, 8.542752], [47.359897, 8.535684], [47.38308, 8.530691], [47.369098, 8.541474], [47.366807, 8.543081], [47.369124, 8.5254], [47.407635, 8.54781], [47.343645, 8.535455], [47.427288, 8.546099], [47.362423, 8.533035], [47.394751, 8.525446], [47.403478, 8.556309], [47.371124, 8.534644], [47.378299, 8.527349], [47.40236, 8.499316], [47.364615, 8.554938], [47.422782, 8.542228], [47.361059, 8.561748], [47.38696, 8.542665], [47.388608, 8.49132], [47.376484, 8.548844], [47.353196, 8.575653], [47.382109, 8.492794], [47.37885, 8.530909], [47.37438, 8.52707], [47.375027, 8.51555], [47.365714, 8.535936], [47.378706, 8.519385], [47.400186, 8.494132], [47.368923, 8.541867], [47.370109, 8.556947], [47.423872, 8.52502], [47.371988, 8.491071], [47.374244, 8.5243], [47.361635, 8.525963], [47.420806, 8.498703], [47.400683, 8.548633], [47.387927, 8.492009], [47.406629, 8.573653], [47.404099, 8.564656], [47.365135, 8.553215], [47.413959, 8.553349], [47.38566, 8.532691], [47.386735, 8.547335], [47.374572, 8.539932], [47.396177, 8.52684], [47.414905, 8.561638], [47.369662, 8.52565], [47.370499, 8.489612], [47.342636, 8.530895], [47.375809, 8.510772], [47.378582, 8.499809], [47.406063, 8.48088], [47.410897, 8.545294], [47.397, 8.594949], [47.369298, 8.540273], [47.374499, 8.556946], [47.390099, 8.510211], [47.40065, 8.534138], [47.364471, 8.572504], [47.40954, 8.549864], [47.37185, 8.55652], [47.380091, 8.528034], [47.383771, 8.547843], [47.389715, 8.511833], [47.406917, 8.550445], [47.403851, 8.480837], [47.368244, 8.54613], [47.380017, 8.524497], [47.382885, 8.575121], [47.377998, 8.532547], [47.353511, 8.554335], [47.393999, 8.518291], [47.412203, 8.514632], [47.366319, 8.561951], [47.393693, 8.512575], [47.378473, 8.526995], [47.400665, 8.548645], [47.385378, 8.5245], [47.369322, 8.528264], [47.370217, 8.521146], [47.384129, 8.504079], [47.361556, 8.569715], [47.347845, 8.531743], [47.383176, 8.505953], [47.391015, 8.522893], [47.379516, 8.525109], [47.426183, 8.547812], [47.430952, 8.540064], [47.366745, 8.536367], [47.409516, 8.580062], [47.368671, 8.530489], [47.375409, 8.529514], [47.386793, 8.534674], [47.36135, 8.512175], [47.40329, 8.53463], [47.381736, 8.529167], [47.369001, 8.556248], [47.37302, 8.528168], [47.373295, 8.531444], [47.388142, 8.528941], [47.369428, 8.541759], [47.386321, 8.53983], [47.368905, 8.559636], [47.364177, 8.526292], [47.378912, 8.526209], [47.367916, 8.538947], [47.379614, 8.510742], [47.380119, 8.527916], [47.392638, 8.524343], [47.376245, 8.55497], [47.38661, 8.541571], [47.348747, 8.53425], [47.39951, 8.495325], [47.420462, 8.54878], [47.411187, 8.526139], [47.354372, 8.523524], [47.403861, 8.568811], [47.402786, 8.577533], [47.380451, 8.528081], [47.365912, 8.5397], [47.368267, 8.541841], [47.371481, 8.530109], [47.391419, 8.516225], [47.358337, 8.586061], [47.372723, 8.534849], [47.377926, 8.536293], [47.352857, 8.524897], [47.377695, 8.525535], [47.414024, 8.52197], [47.366573, 8.541157], [47.361621, 8.526479], [47.406746, 8.580863], [47.366151, 8.521143], [47.377255, 8.538769], [47.338835, 8.538942], [47.398748, 8.532682], [47.37383, 8.536646], [47.383272, 8.530364], [47.370707, 8.516747], [47.374595, 8.5166], [47.406228, 8.543528], [47.374457, 8.541664], [47.39165, 8.504944], [47.413936, 8.542641], [47.362612, 8.533886], [47.370073, 8.52113], [47.366383, 8.541285], [47.378624, 8.548054], [47.371102, 8.538827], [47.378, 8.519847], [47.392831, 8.474952], [47.360687, 8.524421], [47.36507, 8.521293], [47.41524, 8.478687], [47.402146, 8.546186], [47.354009, 8.555921], [47.372044, 8.529565], [47.344942, 8.533351], [47.358037, 8.525942], [47.405599, 8.565801], [47.378195, 8.510608], [47.399569, 8.548437], [47.390498, 8.509822], [47.378351, 8.541745], [47.377233, 8.540106], [47.384959, 8.485076], [47.357947, 8.554216], [47.391497, 8.478264], [47.380347, 8.493687], [47.38542, 8.522925], [47.352177, 8.525426], [47.388538, 8.491094], [47.389653, 8.521395], [47.406655, 8.56732], [47.376683, 8.50679], [47.3747, 8.541669], [47.381736, 8.52918], [47.419641, 8.555575], [47.396297, 8.545428], [47.377788, 8.498085], [47.36708, 8.541763], [47.383519, 8.587372], [47.424213, 8.543092], [47.338146, 8.538597], [47.354851, 8.556269], [47.380703, 8.52516], [47.392186, 8.516982], [47.421298, 8.549751], [47.391149, 8.522988], [47.36876, 8.528743], [47.409269, 8.550017], [47.358331, 8.518561], [47.394111, 8.493522], [47.389368, 8.521045], [47.400204, 8.494146], [47.388327, 8.537011], [47.387518, 8.527458], [47.367978, 8.544774], [47.405092, 8.585359], [47.400182, 8.592448], [47.369014, 8.538003], [47.394537, 8.514672], [47.427395, 8.546141], [47.391201, 8.489146], [47.393426, 8.524744], [47.393543, 8.524772], [47.380411, 8.525644], [47.329846, 8.52972], [47.429493, 8.514477], [47.378334, 8.541705], [47.361243, 8.502417], [47.398167, 8.501471], [47.380766, 8.537544], [47.362224, 8.526398], [47.362428, 8.612151], [47.369324, 8.557182], [47.375028, 8.519297], [47.388532, 8.496723], [47.371952, 8.522214], [47.361786, 8.552615], [47.358759, 8.533277], [47.355102, 8.52718], [47.373143, 8.537016], [47.369213, 8.501318], [47.428746, 8.489092], [47.358738, 8.509634], [47.368695, 8.493138], [47.377443, 8.541713], [47.36616, 8.530662], [47.41323, 8.545899], [47.379428, 8.529729], [47.414777, 8.560919], [47.391071, 8.478587], [47.378881, 8.542762], [47.384171, 8.511139], [47.368148, 8.523937], [47.398041, 8.534177], [47.356511, 8.523647], [47.396977, 8.512456], [47.377349, 8.527872], [47.349981, 8.576908], [47.40627, 8.597111], [47.378037, 8.499375], [47.423443, 8.49454], [47.379072, 8.527391], [47.365346, 8.521643], [47.381661, 8.543681], [47.382411, 8.499157], [47.368531, 8.55081], [47.42048, 8.547839], [47.371404, 8.562588], [47.381175, 8.491703], [47.372306, 8.526657], [47.38857, 8.525572], [47.378879, 8.52495], [47.360378, 8.523779], [47.356659, 8.53469], [47.391028, 8.522443], [47.371784, 8.493729], [47.354875, 8.511026], [47.393286, 8.493214], [47.369434, 8.52591], [47.393221, 8.524594], [47.404083, 8.564496], [47.366558, 8.540905], [47.384787, 8.531825], [47.392989, 8.524377], [47.380653, 8.525702], [47.364032, 8.531201], [47.37011, 8.531498], [47.402165, 8.495112], [47.374992, 8.527983], [47.382399, 8.541762], [47.377504, 8.54378], [47.384197, 8.516119], [47.374436, 8.540075], [47.388976, 8.515845], [47.394167, 8.493311], [47.377355, 8.499282], [47.427404, 8.546154], [47.35741, 8.521852], [47.373975, 8.47624], [47.41589, 8.546246], [47.355631, 8.532167], [47.413083, 8.546307], [47.429892, 8.53808], [47.389583, 8.511526], [47.357881, 8.572112], [47.407517, 8.547039], [47.379771, 8.527683], [47.372629, 8.534317], [47.364745, 8.53761], [47.368902, 8.540358], [47.385413, 8.528368], [47.344025, 8.527589], [47.349929, 8.533943], [47.407846, 8.547444], [47.368959, 8.524788], [47.349722, 8.561125], [47.389829, 8.491636], [47.422595, 8.495849], [47.405875, 8.548423], [47.367673, 8.538982], [47.361083, 8.571187], [47.381459, 8.506753], [47.391421, 8.52563], [47.366447, 8.566283], [47.424968, 8.505837], [47.378725, 8.542163], [47.377389, 8.548293], [47.36162, 8.518946], [47.419569, 8.55556], [47.423892, 8.504437], [47.412827, 8.517175], [47.38674, 8.488038], [47.366941, 8.543111], [47.391648, 8.538735], [47.366893, 8.544367], [47.410042, 8.532105], [47.397747, 8.51377], [47.373942, 8.544699], [47.366536, 8.540322], [47.346258, 8.531142], [47.379613, 8.537652], [47.414947, 8.546094], [47.369409, 8.541824], [47.376466, 8.548857], [47.354053, 8.527754], [47.420725, 8.502597], [47.366297, 8.54082], [47.369577, 8.467072], [47.402792, 8.501285], [47.393872, 8.504896], [47.381194, 8.537897], [47.386913, 8.519048], [47.417779, 8.548074], [47.380265, 8.512384], [47.418854, 8.50749], [47.393721, 8.482029], [47.38423, 8.53931], [47.366562, 8.540455], [47.390763, 8.522875], [47.41405, 8.546685], [47.371572, 8.538532], [47.367922, 8.540298], [47.352119, 8.524868], [47.36764, 8.52345], [47.376903, 8.543622], [47.418519, 8.547812], [47.378794, 8.542429], [47.368366, 8.54645], [47.368152, 8.533047], [47.416726, 8.572225], [47.374921, 8.534457], [47.370798, 8.524335], [47.35534, 8.553129], [47.390698, 8.489004], [47.404753, 8.574156], [47.392512, 8.523414], [47.369111, 8.550411], [47.379195, 8.525778], [47.381278, 8.531952], [47.335317, 8.519022], [47.372737, 8.537153], [47.37398, 8.516005], [47.379344, 8.544202], [47.372062, 8.529578], [47.374686, 8.512563], [47.347889, 8.532723], [47.405001, 8.482953], [47.38149, 8.503417], [47.38221, 8.501405], [47.369129, 8.511405], [47.374597, 8.517276], [47.369689, 8.536971], [47.368337, 8.541048], [47.361412, 8.535252], [47.3657, 8.552498], [47.389512, 8.521035], [47.366729, 8.534196], [47.374668, 8.52411], [47.377888, 8.521302], [47.368446, 8.546624], [47.370466, 8.515656], [47.412215, 8.523987], [47.395104, 8.522274], [47.374044, 8.49241], [47.376045, 8.553337], [47.377779, 8.55818], [47.360368, 8.523858], [47.379819, 8.521619], [47.401803, 8.585924], [47.384544, 8.53186], [47.377766, 8.566933], [47.368458, 8.524513], [47.3582, 8.571642], [47.375047, 8.49194], [47.388606, 8.525559], [47.385536, 8.548542], [47.366938, 8.544342], [47.379451, 8.54431], [47.36515, 8.521427], [47.338101, 8.538557], [47.37136, 8.517223], [47.419179, 8.547481], [47.372376, 8.490881], [47.411062, 8.532736], [47.361865, 8.534016], [47.366833, 8.543095], [47.360423, 8.526653], [47.351535, 8.525823], [47.340338, 8.535109], [47.414062, 8.516882], [47.368207, 8.538688], [47.381907, 8.529091], [47.386189, 8.548039], [47.39133, 8.536145], [47.369912, 8.552242], [47.334557, 8.530002], [47.369836, 8.556358], [47.366161, 8.516152], [47.404883, 8.591927], [47.356542, 8.534688], [47.355309, 8.554505], [47.367767, 8.496191], [47.367915, 8.539119], [47.375069, 8.518742], [47.377304, 8.521171], [47.36549, 8.521606], [47.374514, 8.546088], [47.366638, 8.535266], [47.335573, 8.53296], [47.422228, 8.544695], [47.382425, 8.540915], [47.380725, 8.508315], [47.372734, 8.504857], [47.386223, 8.498346], [47.388335, 8.490679], [47.370344, 8.51813], [47.427431, 8.546181], [47.393861, 8.526302], [47.348883, 8.533234], [47.341127, 8.530573], [47.420706, 8.508588], [47.383059, 8.554477], [47.366262, 8.540766], [47.37976, 8.489967], [47.367209, 8.544268], [47.369275, 8.525668], [47.365153, 8.553228], [47.414065, 8.548911], [47.364324, 8.529777], [47.375379, 8.525038], [47.384196, 8.516238], [47.355578, 8.508009], [47.377359, 8.527819], [47.392487, 8.532752], [47.378102, 8.510844], [47.363387, 8.534749], [47.37574, 8.535414], [47.361296, 8.512201], [47.420766, 8.547023], [47.363626, 8.535098], [47.37722, 8.538636], [47.400313, 8.494069], [47.357682, 8.559294], [47.362646, 8.52078], [47.36039, 8.516723], [47.378439, 8.529643], [47.365807, 8.564575], [47.340931, 8.524707], [47.400365, 8.585761], [47.398898, 8.533003], [47.377522, 8.529571], [47.376499, 8.521657], [47.384782, 8.531401], [47.379644, 8.494851], [47.396204, 8.532576], [47.373702, 8.489556], [47.394644, 8.532981], [47.367162, 8.545472], [47.363616, 8.534291], [47.400996, 8.491088], [47.39866, 8.539184], [47.419623, 8.505107], [47.390653, 8.50866], [47.32606, 8.51341], [47.381399, 8.517162], [47.375191, 8.490989], [47.391085, 8.523093], [47.37288, 8.518181], [47.372054, 8.54082], [47.371067, 8.523454], [47.412506, 8.546388], [47.385736, 8.539831], [47.369133, 8.525387], [47.393404, 8.499985], [47.345022, 8.533472], [47.37599, 8.533658], [47.358383, 8.587797], [47.378009, 8.51896], [47.376584, 8.548766], [47.363753, 8.535948], [47.359065, 8.595119], [47.377692, 8.542009], [47.366121, 8.533813], [47.369031, 8.538043], [47.372387, 8.523719], [47.366675, 8.544654], [47.365046, 8.5315], [47.396795, 8.541371], [47.410305, 8.542367], [47.377655, 8.5383], [47.404573, 8.486548], [47.375943, 8.549018], [47.355691, 8.554103], [47.41657, 8.553085], [47.36239, 8.504796], [47.406416, 8.55388], [47.355158, 8.554317], [47.378045, 8.526589], [47.366319, 8.540423], [47.364273, 8.555818], [47.409948, 8.549568], [47.39777, 8.540027], [47.384787, 8.531799], [47.40586, 8.590477], [47.409699, 8.544593], [47.387378, 8.527044], [47.398259, 8.546237], [47.412869, 8.550702], [47.351697, 8.5258], [47.386486, 8.496219], [47.363965, 8.551456], [47.401869, 8.499902], [47.419547, 8.50651], [47.372873, 8.531316], [47.38366, 8.483528], [47.390876, 8.523354], [47.389726, 8.511555], [47.373529, 8.493671], [47.404174, 8.548507], [47.360386, 8.522906], [47.368848, 8.547864], [47.389706, 8.511846], [47.391004, 8.488069], [47.353636, 8.55447], [47.412703, 8.522765], [47.368852, 8.540807], [47.378948, 8.54234], [47.410667, 8.571897], [47.373816, 8.537188], [47.374169, 8.497418], [47.38454, 8.54831], [47.382842, 8.529216], [47.368806, 8.524798], [47.371725, 8.519548], [47.357454, 8.521893], [47.370536, 8.549077], [47.368652, 8.524888], [47.344054, 8.531176], [47.391054, 8.52251], [47.394134, 8.525049], [47.389946, 8.476671], [47.376897, 8.555513], [47.343736, 8.535312], [47.373356, 8.531591], [47.38094, 8.538156], [47.364025, 8.526276], [47.364696, 8.54742], [47.371731, 8.542627], [47.408712, 8.546243], [47.367985, 8.540246], [47.365705, 8.535949], [47.36689, 8.499643], [47.429345, 8.546314], [47.385973, 8.498208], [47.398017, 8.535833], [47.406909, 8.586299], [47.381175, 8.491663], [47.39194, 8.483041], [47.377069, 8.544115], [47.381885, 8.547526], [47.390745, 8.478845], [47.429269, 8.548698], [47.384756, 8.531321], [47.329819, 8.529746], [47.381286, 8.515769], [47.373366, 8.480916], [47.400815, 8.548887], [47.36968, 8.525624], [47.364791, 8.554399], [47.377741, 8.482577], [47.361285, 8.517218], [47.372746, 8.522892], [47.364276, 8.533947], [47.384386, 8.531446], [47.370416, 8.524765], [47.362748, 8.51178], [47.392229, 8.476887], [47.394901, 8.525767], [47.37822, 8.509787], [47.376504, 8.53927], [47.397891, 8.546137], [47.343911, 8.530101], [47.368913, 8.547653], [47.410535, 8.572504], [47.363399, 8.575407], [47.408616, 8.539271], [47.395821, 8.47456], [47.401376, 8.550502], [47.40516, 8.481313], [47.412227, 8.548264], [47.363482, 8.531389], [47.373858, 8.536514], [47.391114, 8.522842], [47.386931, 8.519022], [47.369481, 8.554007], [47.359803, 8.507273], [47.368903, 8.533565], [47.372815, 8.511652], [47.356935, 8.53504], [47.368532, 8.551697], [47.376843, 8.543276], [47.353517, 8.602054], [47.380356, 8.517114], [47.380155, 8.52793], [47.325916, 8.51342], [47.376556, 8.560035], [47.381628, 8.554566], [47.377047, 8.520755], [47.375872, 8.516547], [47.370918, 8.549575], [47.3962, 8.527238], [47.411984, 8.547318], [47.37144, 8.524984], [47.401724, 8.489221], [47.377018, 8.523853], [47.385505, 8.52049], [47.378916, 8.542842], [47.386751, 8.547508], [47.36959, 8.541722], [47.390267, 8.509566], [47.372818, 8.542795], [47.41462, 8.552885], [47.354271, 8.576073], [47.42778, 8.490491], [47.369043, 8.528338], [47.354295, 8.560771], [47.419043, 8.5065], [47.385215, 8.495531], [47.384417, 8.53195], [47.38604, 8.535374], [47.388101, 8.519959], [47.362134, 8.608398], [47.414306, 8.483466], [47.391087, 8.536193], [47.381052, 8.49431], [47.401737, 8.586188], [47.373576, 8.533145], [47.338046, 8.538635], [47.396197, 8.526641], [47.371123, 8.514597], [47.382269, 8.540316], [47.369036, 8.525213], [47.379981, 8.548135], [47.408846, 8.556594], [47.361743, 8.547716], [47.363774, 8.556324], [47.380265, 8.542923], [47.370625, 8.51599], [47.365705, 8.535989], [47.405785, 8.580803], [47.3929, 8.545079], [47.40489, 8.501009], [47.370948, 8.548291], [47.378726, 8.543037], [47.370052, 8.548855], [47.392652, 8.495652], [47.372762, 8.529765], [47.368367, 8.550118], [47.409252, 8.543392], [47.414811, 8.561052], [47.379213, 8.538134], [47.399269, 8.495081], [47.354799, 8.526869], [47.370319, 8.535978], [47.38147, 8.528764], [47.40935, 8.529216], [47.402058, 8.580167], [47.374735, 8.544623], [47.352119, 8.533472], [47.360642, 8.56297], [47.381609, 8.483567], [47.414337, 8.528854], [47.400295, 8.518326], [47.379204, 8.51137], [47.39988, 8.544217], [47.367287, 8.541767], [47.417464, 8.553727], [47.391236, 8.52046], [47.337259, 8.532479], [47.393104, 8.526486], [47.389996, 8.525985], [47.404203, 8.484659], [47.338064, 8.538662], [47.379868, 8.523116], [47.378983, 8.542433], [47.346898, 8.532875], [47.379327, 8.542215], [47.362569, 8.534693], [47.40941, 8.538121], [47.382852, 8.530038], [47.353044, 8.558905], [47.353555, 8.572047], [47.378495, 8.566022], [47.379662, 8.545784], [47.41975, 8.547943], [47.361433, 8.534034], [47.392427, 8.539029], [47.38114, 8.49161], [47.376436, 8.539732], [47.379235, 8.495254], [47.425614, 8.536733], [47.37802, 8.548174], [47.381274, 8.53713], [47.34122, 8.530324], [47.415003, 8.545883], [47.373013, 8.536457], [47.370148, 8.529433], [47.375002, 8.534485], [47.418046, 8.482705], [47.380881, 8.556484], [47.379464, 8.523943], [47.372748, 8.534995], [47.391551, 8.486173], [47.379667, 8.548102], [47.361365, 8.568096], [47.364455, 8.536863], [47.352857, 8.576228], [47.354763, 8.526828], [47.366945, 8.536133], [47.35844, 8.528955], [47.360485, 8.550364], [47.391103, 8.52308], [47.368981, 8.529144], [47.376898, 8.513667], [47.379963, 8.548148], [47.385539, 8.524609], [47.3807, 8.582292], [47.369868, 8.547474], [47.377394, 8.572766], [47.398147, 8.536365], [47.352129, 8.558714], [47.352146, 8.558741], [47.397467, 8.546353], [47.40078, 8.548886], [47.422489, 8.499531], [47.388257, 8.526347], [47.381477, 8.528963], [47.360279, 8.534235], [47.391132, 8.48782], [47.428581, 8.542547], [47.367808, 8.560526], [47.407725, 8.583786], [47.390547, 8.489782], [47.363258, 8.564018], [47.409818, 8.537798], [47.359811, 8.52386], [47.36965, 8.533501], [47.376549, 8.526902], [47.354052, 8.52696], [47.371604, 8.51605], [47.345004, 8.533419], [47.397258, 8.508342], [47.411579, 8.563224], [47.412612, 8.480783], [47.377759, 8.525431], [47.331734, 8.516475], [47.384048, 8.531042], [47.387306, 8.533692], [47.379804, 8.5068], [47.417428, 8.553699], [47.383934, 8.509571], [47.396425, 8.543298], [47.38954, 8.483762], [47.378371, 8.530211], [47.3987, 8.539662], [47.361476, 8.561399], [47.383024, 8.485171], [47.350792, 8.601994], [47.369945, 8.548813], [47.407732, 8.53863], [47.389022, 8.546204], [47.389163, 8.49455], [47.403807, 8.534256], [47.377695, 8.525575], [47.375534, 8.541885], [47.362576, 8.514821], [47.379706, 8.542064], [47.378323, 8.514239], [47.419152, 8.506409], [47.353512, 8.524089], [47.374805, 8.545737], [47.375384, 8.484584], [47.373269, 8.536965], [47.404646, 8.572153], [47.387309, 8.525784], [47.409655, 8.550105], [47.384235, 8.531231], [47.380346, 8.524861], [47.369649, 8.508715], [47.37619, 8.558769], [47.377699, 8.50685], [47.360721, 8.586894], [47.38066, 8.542004], [47.360259, 8.547645], [47.414206, 8.518846], [47.373329, 8.53159], [47.374243, 8.517705], [47.365374, 8.564791], [47.367138, 8.536654], [47.366203, 8.540341], [47.359927, 8.521996], [47.369503, 8.526216], [47.376121, 8.536044], [47.348343, 8.534162], [47.417198, 8.542973], [47.410868, 8.550263], [47.378189, 8.527519], [47.386815, 8.54747], [47.370545, 8.524529], [47.375065, 8.568108], [47.384436, 8.531831], [47.399753, 8.544268], [47.359865, 8.522868], [47.396539, 8.508248], [47.39772, 8.532939], [47.370298, 8.558818], [47.383431, 8.48396], [47.385065, 8.53093], [47.374555, 8.545559], [47.376934, 8.540391], [47.376138, 8.522776], [47.379999, 8.548136], [47.358434, 8.497793], [47.37123, 8.549846], [47.393836, 8.472229], [47.383326, 8.499427], [47.38007, 8.520737], [47.36093, 8.549976], [47.40971, 8.544395], [47.366824, 8.543161], [47.413793, 8.545407], [47.384546, 8.538244], [47.384311, 8.543126], [47.363088, 8.556588], [47.384259, 8.507458], [47.410341, 8.539532], [47.372959, 8.536469], [47.357676, 8.578343], [47.414858, 8.551552], [47.389174, 8.47047], [47.411994, 8.524473], [47.400655, 8.502793], [47.416377, 8.546071], [47.374509, 8.539997], [47.375836, 8.559119], [47.39933, 8.515763], [47.370544, 8.549236], [47.363939, 8.550423], [47.364623, 8.537184], [47.389789, 8.516457], [47.364696, 8.565982], [47.389946, 8.54919], [47.414082, 8.541544], [47.412136, 8.550236], [47.359824, 8.535828], [47.369582, 8.520709], [47.377024, 8.537572], [47.385572, 8.52008], [47.376185, 8.567681], [47.378957, 8.489342], [47.375121, 8.545584], [47.409117, 8.545191], [47.36921, 8.527732], [47.37446, 8.48826], [47.370458, 8.515563], [47.387253, 8.519227], [47.377114, 8.53376], [47.38326, 8.482023], [47.42084, 8.550617], [47.376674, 8.538399], [47.419562, 8.54786], [47.419168, 8.547653], [47.377214, 8.526969], [47.366629, 8.54468], [47.403974, 8.550636], [47.399702, 8.51732], [47.37665, 8.538055], [47.41498, 8.545445], [47.417768, 8.545424], [47.381588, 8.53719], [47.364217, 8.507613], [47.378557, 8.509357], [47.381471, 8.517097], [47.394783, 8.525791], [47.405227, 8.480811], [47.390919, 8.488478], [47.367108, 8.539751], [47.392222, 8.51693], [47.380255, 8.525905], [47.377524, 8.53888], [47.378476, 8.496629], [47.334748, 8.529781], [47.365471, 8.530238], [47.364376, 8.546129], [47.401208, 8.490615], [47.369182, 8.527904], [47.381593, 8.513656], [47.41191, 8.524855], [47.402035, 8.499455], [47.418616, 8.547058], [47.384544, 8.531847], [47.389326, 8.52168], [47.399488, 8.533386], [47.388144, 8.520172], [47.398806, 8.533226], [47.391952, 8.517905], [47.370709, 8.547002], [47.362153, 8.554648], [47.374487, 8.546101], [47.402296, 8.487669], [47.369081, 8.547961], [47.367101, 8.523439], [47.414405, 8.552788], [47.363422, 8.534869], [47.378453, 8.540489], [47.370713, 8.535231], [47.373487, 8.534851], [47.374601, 8.518772], [47.378361, 8.499355], [47.386786, 8.502675], [47.403107, 8.502272], [47.366932, 8.54311], [47.363728, 8.574858], [47.413836, 8.547462], [47.402472, 8.535567], [47.373465, 8.520007], [47.36019, 8.531308], [47.378597, 8.519515], [47.397708, 8.533283], [47.430946, 8.550125], [47.379262, 8.530136], [47.380945, 8.51853], [47.385706, 8.532626], [47.397869, 8.532491], [47.373226, 8.533045], [47.369605, 8.525887], [47.390824, 8.508676], [47.396416, 8.528236], [47.398551, 8.539209], [47.390182, 8.516756], [47.375062, 8.539518], [47.379709, 8.527536], [47.360321, 8.567253], [47.355888, 8.592561], [47.363324, 8.533742], [47.367416, 8.537666], [47.371308, 8.536038], [47.398768, 8.524866], [47.37084, 8.548289], [47.37211, 8.535948], [47.387807, 8.488443], [47.355173, 8.554635], [47.404521, 8.572084], [47.383437, 8.539506], [47.333625, 8.514277], [47.368578, 8.538431], [47.364854, 8.536567], [47.386399, 8.496826], [47.382678, 8.507228], [47.383735, 8.573735], [47.408788, 8.550444], [47.41391, 8.519755], [47.39831, 8.532447], [47.387765, 8.544099], [47.369869, 8.509169], [47.3853, 8.507784], [47.388509, 8.515716], [47.378843, 8.525003], [47.41065, 8.531588], [47.371223, 8.523192], [47.357067, 8.597961], [47.363391, 8.534352], [47.392048, 8.523947], [47.367074, 8.544305], [47.374506, 8.549743], [47.370243, 8.511534], [47.364623, 8.538085], [47.40281, 8.535057], [47.381412, 8.503124], [47.365153, 8.553189], [47.406164, 8.54827], [47.404163, 8.500942], [47.390369, 8.50917], [47.378894, 8.523348], [47.374456, 8.539863], [47.382916, 8.544091], [47.403478, 8.556322], [47.374397, 8.541385], [47.35659, 8.523901], [47.386397, 8.502005], [47.373545, 8.59444], [47.370106, 8.518575], [47.364888, 8.565681], [47.369115, 8.525387], [47.368105, 8.541797], [47.376527, 8.541548], [47.373364, 8.53171], [47.396842, 8.529715], [47.414345, 8.551621], [47.366806, 8.555289], [47.365221, 8.547073], [47.362702, 8.558287], [47.405738, 8.480993], [47.402031, 8.577437], [47.362587, 8.527068], [47.377601, 8.52115], [47.386335, 8.531764], [47.36524, 8.564629], [47.386216, 8.51763], [47.406719, 8.550494], [47.371641, 8.514051], [47.393984, 8.472709], [47.420105, 8.548467], [47.339756, 8.530042], [47.4268, 8.542497], [47.337925, 8.537164], [47.377909, 8.541855], [47.390303, 8.523037], [47.380494, 8.527341], [47.386508, 8.497716], [47.389927, 8.539017], [47.374859, 8.525835], [47.374273, 8.524009], [47.378046, 8.526522], [47.377552, 8.522579], [47.379806, 8.524863], [47.364714, 8.532327], [47.419776, 8.550873], [47.341847, 8.530548], [47.380443, 8.557084], [47.34037, 8.519296], [47.351135, 8.560096], [47.396563, 8.528782], [47.397402, 8.531409], [47.412539, 8.550404], [47.363894, 8.567037], [47.383677, 8.540676], [47.370508, 8.549222], [47.368513, 8.524368], [47.34094, 8.52656], [47.410227, 8.549587], [47.363707, 8.532293], [47.366341, 8.552207], [47.355775, 8.55932], [47.369507, 8.513306], [47.384225, 8.516027], [47.38677, 8.518025], [47.365373, 8.52159], [47.386825, 8.502331], [47.369982, 8.552455], [47.393585, 8.533688], [47.393856, 8.544861], [47.367827, 8.539885], [47.393496, 8.492953], [47.375081, 8.523284], [47.413432, 8.545466], [47.407533, 8.548113], [47.40163, 8.505382], [47.367896, 8.544838], [47.406816, 8.550642], [47.387697, 8.471726], [47.377164, 8.513077], [47.378652, 8.527144], [47.378669, 8.519569], [47.366973, 8.558536], [47.411544, 8.570485], [47.362761, 8.567966], [47.37244, 8.534287], [47.396623, 8.529101], [47.37138, 8.536039], [47.3298, 8.53267], [47.365997, 8.546798], [47.402644, 8.499785], [47.364774, 8.566341], [47.396309, 8.504958], [47.37722, 8.538715], [47.356614, 8.534676], [47.374554, 8.545639], [47.407468, 8.54839], [47.415502, 8.563108], [47.374485, 8.541598], [47.3745, 8.532462], [47.412289, 8.558654], [47.361278, 8.548368], [47.356637, 8.532254], [47.398659, 8.539198], [47.384314, 8.548398], [47.360342, 8.552161], [47.356156, 8.520265], [47.370188, 8.548805], [47.376744, 8.543287], [47.376288, 8.544867], [47.390142, 8.47886], [47.364612, 8.55425], [47.388526, 8.484537], [47.42189, 8.509844], [47.385225, 8.536828], [47.408938, 8.539516], [47.407103, 8.545136], [47.393457, 8.53762], [47.365705, 8.535975], [47.414633, 8.520273], [47.398054, 8.474245], [47.366031, 8.536737], [47.40512, 8.571607], [47.398026, 8.535859], [47.431372, 8.516543], [47.386, 8.496222], [47.420414, 8.503148], [47.377404, 8.500713], [47.348753, 8.56542], [47.408747, 8.54627], [47.353404, 8.550534], [47.3817, 8.530107], [47.378492, 8.540172], [47.417018, 8.523012], [47.414636, 8.546604], [47.371227, 8.539823], [47.3808, 8.528274], [47.354877, 8.574762], [47.35349, 8.554679], [47.364527, 8.533065], [47.419282, 8.548013], [47.401966, 8.499215], [47.405097, 8.549811], [47.36736, 8.541689], [47.415091, 8.546998], [47.381807, 8.513859], [47.408856, 8.574906], [47.378872, 8.542749], [47.366763, 8.545795], [47.422459, 8.55065], [47.375355, 8.516086], [47.374137, 8.522245], [47.356767, 8.522276], [47.387307, 8.547678], [47.41788, 8.555366], [47.397191, 8.530927], [47.381442, 8.534578], [47.376833, 8.540588], [47.344042, 8.531453], [47.35659, 8.554108], [47.367908, 8.532247], [47.368839, 8.531763], [47.369801, 8.508797], [47.389418, 8.521523], [47.404606, 8.550397], [47.369534, 8.52006], [47.395722, 8.532116], [47.392746, 8.523445], [47.387705, 8.490746], [47.38048, 8.490908], [47.386723, 8.547653], [47.36732, 8.545859], [47.418625, 8.530081], [47.407254, 8.550028], [47.420031, 8.547684], [47.362647, 8.547258], [47.384857, 8.508954], [47.372476, 8.543768], [47.378725, 8.542189], [47.357767, 8.580052], [47.366815, 8.555302], [47.407181, 8.585987], [47.362418, 8.567204], [47.40363, 8.496281], [47.384009, 8.532313], [47.376946, 8.540034], [47.398494, 8.542427], [47.373902, 8.476305], [47.360564, 8.563577], [47.410679, 8.544601], [47.396426, 8.472253], [47.36466, 8.556793], [47.404676, 8.551472], [47.360515, 8.596726], [47.400126, 8.545786], [47.393114, 8.521624], [47.378617, 8.492023], [47.392624, 8.490856], [47.385702, 8.530189], [47.370887, 8.547165], [47.365156, 8.521718], [47.355808, 8.522839], [47.36655, 8.545472], [47.34443, 8.526618], [47.386561, 8.517306], [47.340722, 8.537235], [47.393752, 8.512934], [47.339946, 8.529967], [47.400159, 8.494185], [47.372212, 8.502927], [47.370295, 8.54886], [47.384332, 8.548424], [47.42872, 8.544909], [47.370315, 8.518275], [47.362073, 8.557334], [47.385453, 8.517389], [47.368376, 8.498468], [47.399968, 8.545319], [47.379138, 8.48324], [47.391862, 8.538912], [47.387978, 8.4854], [47.367688, 8.560789], [47.332523, 8.517682], [47.372329, 8.523241], [47.392436, 8.516127], [47.377601, 8.527944], [47.360358, 8.566247], [47.377822, 8.508097], [47.34145, 8.529799], [47.373658, 8.503101], [47.402911, 8.54701], [47.407357, 8.536409], [47.425708, 8.509417], [47.375471, 8.547565], [47.372672, 8.521196], [47.372885, 8.531012], [47.360675, 8.521826], [47.37756, 8.541728], [47.427509, 8.546461], [47.424542, 8.537877], [47.390212, 8.491074], [47.411824, 8.525423], [47.377014, 8.543319], [47.40151, 8.581917], [47.361797, 8.547744], [47.368635, 8.509409], [47.41609, 8.50876], [47.393783, 8.537388], [47.341064, 8.526853], [47.388945, 8.527805], [47.387158, 8.535079], [47.393583, 8.540457], [47.376621, 8.526944], [47.404564, 8.548197], [47.375148, 8.525695], [47.406574, 8.567292], [47.387531, 8.493074], [47.424632, 8.543485], [47.369587, 8.553308], [47.391259, 8.516023], [47.378344, 8.527283], [47.373906, 8.483853], [47.373979, 8.535219], [47.414324, 8.483493], [47.373584, 8.519837], [47.407592, 8.530624], [47.369358, 8.528305], [47.397304, 8.53134], [47.362522, 8.547136], [47.367898, 8.539926], [47.357075, 8.522031], [47.402024, 8.497746], [47.430898, 8.540129], [47.356903, 8.522186], [47.382013, 8.531212], [47.364286, 8.555448], [47.375545, 8.52083], [47.381942, 8.529224], [47.32908, 8.514529], [47.398615, 8.494817], [47.370326, 8.49182], [47.414774, 8.561224], [47.401817, 8.499769], [47.376071, 8.55347], [47.381305, 8.537568], [47.389543, 8.539658], [47.377382, 8.541526], [47.38193, 8.583523], [47.375338, 8.545496], [47.366951, 8.543985], [47.346192, 8.534356], [47.408639, 8.546307], [47.38695, 8.481738], [47.351309, 8.576314], [47.349298, 8.562149], [47.374864, 8.520499], [47.413511, 8.536298], [47.392007, 8.526423], [47.38855, 8.483849], [47.388003, 8.485653], [47.378412, 8.52012], [47.361467, 8.561372], [47.378464, 8.526995], [47.383432, 8.549452], [47.37518, 8.540342], [47.409513, 8.549916], [47.376726, 8.544214], [47.364595, 8.566205], [47.379144, 8.508137], [47.36854, 8.524422], [47.3868, 8.528264], [47.37358, 8.546863], [47.39256, 8.52405], [47.370563, 8.524503], [47.376367, 8.561911], [47.378147, 8.517612], [47.380513, 8.54804], [47.413748, 8.528325], [47.390903, 8.50787], [47.396929, 8.530021], [47.370298, 8.513349], [47.387315, 8.533665], [47.403709, 8.496415], [47.373124, 8.495662], [47.412504, 8.544744], [47.335516, 8.51896], [47.375825, 8.51971], [47.362016, 8.549231], [47.36623, 8.540382], [47.377322, 8.527885], [47.377555, 8.492175], [47.377211, 8.538689], [47.359606, 8.551034], [47.378451, 8.575106], [47.374652, 8.537232], [47.391738, 8.517728], [47.370173, 8.513254], [47.380046, 8.567419], [47.396937, 8.512919], [47.409578, 8.537409], [47.377592, 8.49885], [47.378758, 8.510937], [47.384585, 8.533172], [47.365375, 8.546971], [47.391968, 8.51813], [47.405221, 8.480559], [47.368112, 8.54667], [47.406707, 8.553555], [47.375634, 8.517032], [47.386208, 8.528], [47.409433, 8.540427], [47.406557, 8.550438], [47.420574, 8.502382], [47.408737, 8.549224], [47.378571, 8.519435], [47.354332, 8.557873], [47.394541, 8.540927], [47.378107, 8.509388], [47.371093, 8.523613], [47.379134, 8.511143], [47.375749, 8.535427], [47.408283, 8.526027], [47.388603, 8.489969], [47.377786, 8.518704], [47.368927, 8.53195], [47.40358, 8.485972], [47.408982, 8.539543], [47.393416, 8.499734], [47.408547, 8.546544], [47.356576, 8.523503], [47.36029, 8.523605], [47.390319, 8.525197], [47.389118, 8.527543], [47.374806, 8.525741], [47.357205, 8.550944], [47.410347, 8.550119], [47.391401, 8.536279], [47.393343, 8.539207], [47.399514, 8.542991], [47.380304, 8.548221], [47.382592, 8.51459], [47.382512, 8.514496], [47.396084, 8.518466], [47.353198, 8.558869], [47.414384, 8.518055], [47.379191, 8.522401], [47.36536, 8.557853], [47.387615, 8.490784], [47.380753, 8.561289], [47.393283, 8.492644], [47.369585, 8.531884], [47.374924, 8.544613], [47.368382, 8.541022], [47.367445, 8.495973], [47.408928, 8.539595], [47.356144, 8.59033], [47.369398, 8.525909], [47.39137, 8.53106], [47.365964, 8.532326], [47.377553, 8.511906], [47.360484, 8.56343], [47.378409, 8.492231], [47.37151, 8.557214], [47.366365, 8.541285], [47.421307, 8.547843], [47.401248, 8.536601], [47.386064, 8.481297], [47.360204, 8.550583], [47.360423, 8.552137], [47.365723, 8.535989], [47.370197, 8.548805], [47.360359, 8.550388], [47.37722, 8.519606], [47.412329, 8.516622], [47.362019, 8.548979], [47.388671, 8.483374], [47.373616, 8.53643], [47.344067, 8.531666], [47.368449, 8.550967], [47.396762, 8.5297], [47.386811, 8.486199], [47.367196, 8.537105], [47.386714, 8.547613], [47.401188, 8.507414], [47.387116, 8.486324], [47.379209, 8.546993], [47.414389, 8.554457], [47.375412, 8.528256], [47.371402, 8.501957], [47.37052, 8.519497], [47.365532, 8.53621], [47.393852, 8.472442], [47.390842, 8.523088], [47.370604, 8.522067], [47.377056, 8.47973], [47.410349, 8.539611], [47.419825, 8.507483], [47.363607, 8.533377], [47.400847, 8.491695], [47.369644, 8.537036], [47.352932, 8.524581], [47.389534, 8.53685], [47.395579, 8.532087], [47.366702, 8.533229], [47.357052, 8.532183], [47.393113, 8.524578], [47.370689, 8.524479], [47.392475, 8.523506], [47.380435, 8.512507], [47.407719, 8.530454], [47.375809, 8.545175], [47.38089, 8.512874], [47.412045, 8.54659], [47.391467, 8.519723], [47.365011, 8.531367], [47.370717, 8.516734], [47.352283, 8.57791], [47.409639, 8.546169], [47.414106, 8.51895], [47.365054, 8.531553], [47.414768, 8.560919], [47.379912, 8.544108], [47.369652, 8.525663], [47.376114, 8.488346], [47.378238, 8.541332], [47.378164, 8.509972], [47.413465, 8.530665], [47.375967, 8.500525], [47.377567, 8.543781], [47.377621, 8.543769], [47.378095, 8.483194], [47.395191, 8.534039], [47.380801, 8.51564], [47.400991, 8.544664], [47.377513, 8.52769], [47.370888, 8.554527], [47.379561, 8.500955], [47.400815, 8.542382], [47.3868, 8.541456], [47.370077, 8.512047], [47.374405, 8.541438], [47.391246, 8.523149], [47.380663, 8.512141], [47.409453, 8.54586], [47.340218, 8.531627], [47.397443, 8.541292], [47.405917, 8.553419], [47.399871, 8.54892], [47.342498, 8.53117], [47.343637, 8.524828], [47.406778, 8.550919], [47.374316, 8.521441], [47.34139, 8.530393], [47.423138, 8.494521], [47.40716, 8.586292], [47.387673, 8.486361], [47.379764, 8.494549], [47.391462, 8.523154], [47.42176, 8.550318], [47.36655, 8.540786], [47.367158, 8.540176], [47.374068, 8.515212], [47.393405, 8.499893], [47.374718, 8.536015], [47.409524, 8.49702], [47.378511, 8.480977], [47.377899, 8.529711], [47.376956, 8.539955], [47.391986, 8.523919], [47.364283, 8.536979], [47.377872, 8.529671], [47.391648, 8.542457], [47.376715, 8.533183], [47.359901, 8.522896], [47.389033, 8.517449], [47.423756, 8.514255], [47.39942, 8.49527], [47.363439, 8.561149], [47.37582, 8.54209], [47.412115, 8.565488], [47.370708, 8.516667], [47.380064, 8.522392], [47.372235, 8.521677], [47.373918, 8.527339], [47.375643, 8.549329], [47.366173, 8.540685], [47.39033, 8.490957], [47.358321, 8.586789], [47.370912, 8.548291], [47.378751, 8.525213], [47.408761, 8.477951], [47.371558, 8.547602], [47.377929, 8.508179], [47.367108, 8.539751], [47.364623, 8.537198], [47.378156, 8.509892], [47.389191, 8.494471], [47.370179, 8.548818], [47.37859, 8.510655], [47.379178, 8.525725], [47.38386, 8.573857], [47.369981, 8.527046], [47.392662, 8.502487], [47.377389, 8.548293], [47.370925, 8.523252], [47.370305, 8.514554], [47.384074, 8.480476], [47.380421, 8.541668], [47.387207, 8.494087], [47.355112, 8.559094], [47.393593, 8.528999], [47.352706, 8.524655], [47.402186, 8.495802], [47.365656, 8.563539], [47.368371, 8.52132], [47.415887, 8.507378], [47.368341, 8.538744], [47.390995, 8.523091], [47.349286, 8.524903], [47.380981, 8.518504], [47.393719, 8.535665], [47.381297, 8.542229], [47.377122, 8.540501], [47.365705, 8.536002], [47.370026, 8.519394], [47.372757, 8.547283], [47.385196, 8.537026], [47.368905, 8.533367], [47.410861, 8.545293], [47.383126, 8.543751], [47.381221, 8.51786], [47.427447, 8.546367], [47.375312, 8.540649], [47.361802, 8.507114], [47.37031, 8.545405], [47.429965, 8.538864], [47.384538, 8.542866], [47.399061, 8.542346], [47.394216, 8.489908], [47.370621, 8.55709], [47.38555, 8.545218], [47.381086, 8.491582], [47.382646, 8.514644], [47.40553, 8.537432], [47.377536, 8.519454], [47.387527, 8.514915], [47.396889, 8.540963], [47.369213, 8.527401], [47.417334, 8.545653], [47.371492, 8.555307], [47.38882, 8.479894], [47.419873, 8.501388], [47.393354, 8.524808], [47.421295, 8.546292], [47.39008, 8.515125], [47.373761, 8.536353], [47.403138, 8.576467], [47.382682, 8.531862], [47.375842, 8.530278], [47.427246, 8.543831], [47.380479, 8.519355], [47.386788, 8.535191], [47.370731, 8.537204], [47.371168, 8.539451], [47.389607, 8.52146], [47.422375, 8.549032], [47.390285, 8.50954], [47.367108, 8.539778], [47.409347, 8.575314], [47.379491, 8.52679], [47.37436, 8.496216], [47.406625, 8.495293], [47.376292, 8.540762], [47.370581, 8.52449], [47.379065, 8.542369], [47.420673, 8.502437], [47.364406, 8.555106], [47.363648, 8.553501], [47.366409, 8.521413], [47.407486, 8.560448], [47.375934, 8.553626], [47.350031, 8.527857], [47.383877, 8.542362], [47.370091, 8.544844], [47.375708, 8.549079], [47.415953, 8.508969], [47.378894, 8.530976], [47.388564, 8.549837], [47.375836, 8.538528], [47.363749, 8.535419], [47.410815, 8.553866], [47.373274, 8.535535], [47.385626, 8.529697], [47.379444, 8.537543], [47.376888, 8.536735], [47.358776, 8.533437], [47.368625, 8.554175], [47.388888, 8.491207], [47.364611, 8.532789], [47.35498, 8.534325], [47.350039, 8.560814], [47.390986, 8.522124], [47.370322, 8.548887], [47.384257, 8.477169], [47.357811, 8.520312], [47.399535, 8.505274], [47.369418, 8.525711], [47.384984, 8.531022], [47.36747, 8.494239], [47.414336, 8.551647], [47.395701, 8.540077], [47.366893, 8.54348], [47.397254, 8.546018], [47.338687, 8.530841], [47.42126, 8.536762], [47.394754, 8.545038], [47.36369, 8.531274], [47.370794, 8.535259], [47.38232, 8.549932], [47.378514, 8.553852], [47.414768, 8.560919], [47.378641, 8.553736], [47.375807, 8.549068], [47.389087, 8.51745], [47.37358, 8.575558], [47.35533, 8.559721], [47.360481, 8.552694], [47.364349, 8.536676], [47.370736, 8.470285], [47.374686, 8.54968], [47.372763, 8.511439], [47.380635, 8.519027], [47.392763, 8.523525], [47.395825, 8.545895], [47.362398, 8.527103], [47.4041, 8.491057], [47.378564, 8.542054], [47.371235, 8.536235], [47.39595, 8.489107], [47.373786, 8.536592], [47.377906, 8.48319], [47.377309, 8.529302], [47.378938, 8.510914], [47.407204, 8.50666], [47.39401, 8.525789], [47.374642, 8.552407], [47.371227, 8.539823], [47.364633, 8.554899], [47.410882, 8.505753], [47.394769, 8.525447], [47.392312, 8.476637], [47.372783, 8.569635], [47.403827, 8.567631], [47.375082, 8.492033], [47.36766, 8.495117], [47.413888, 8.543899], [47.358571, 8.517957], [47.364604, 8.566205], [47.385352, 8.531016], [47.410162, 8.566427], [47.37734, 8.498924], [47.368285, 8.535208], [47.340816, 8.530157], [47.378795, 8.510832], [47.376319, 8.538803], [47.373308, 8.524347], [47.367969, 8.540007], [47.39202, 8.510647], [47.374484, 8.541651], [47.360039, 8.508072], [47.37968, 8.527734], [47.373133, 8.542749], [47.413908, 8.532383], [47.394639, 8.472894], [47.377259, 8.535525], [47.386456, 8.49647], [47.393713, 8.507476], [47.386701, 8.488342], [47.357669, 8.521024], [47.373459, 8.598569], [47.38525, 8.494578], [47.403606, 8.570926], [47.388388, 8.536283], [47.391103, 8.52308], [47.375695, 8.512411], [47.358278, 8.587437], [47.398255, 8.532486], [47.357454, 8.521906], [47.407515, 8.548152], [47.388296, 8.491036], [47.386073, 8.504912], [47.391783, 8.485475], [47.413267, 8.54586], [47.413111, 8.538635], [47.363731, 8.535498], [47.397978, 8.534189], [47.381141, 8.503211], [47.378965, 8.54242], [47.398262, 8.473163], [47.404953, 8.557294], [47.373232, 8.53519], [47.367006, 8.523027], [47.399515, 8.533386], [47.388959, 8.495314], [47.377528, 8.498967], [47.389736, 8.486958], [47.37058, 8.49254], [47.388118, 8.520026], [47.40791, 8.556588], [47.383431, 8.506594], [47.408356, 8.558916], [47.359, 8.516325], [47.391279, 8.515825], [47.376011, 8.552184], [47.340561, 8.530535], [47.370582, 8.516704], [47.367055, 8.544384], [47.419155, 8.506012], [47.37034, 8.548875], [47.374831, 8.497894], [47.370836, 8.546859], [47.373466, 8.552184], [47.4052, 8.480823], [47.365972, 8.533386], [47.373043, 8.533293], [47.362521, 8.554749], [47.361784, 8.507048], [47.367225, 8.545447], [47.40499, 8.557215], [47.376767, 8.538083], [47.366048, 8.504167], [47.378266, 8.496982], [47.370024, 8.549014], [47.425422, 8.494566], [47.381111, 8.518162], [47.368203, 8.529579], [47.412221, 8.555485], [47.374054, 8.513861], [47.382736, 8.529942], [47.373621, 8.553776], [47.357147, 8.522019], [47.419616, 8.547887], [47.390603, 8.539786], [47.375731, 8.535453], [47.381836, 8.533765], [47.389562, 8.473365], [47.377766, 8.543692], [47.362132, 8.526635], [47.373436, 8.535565], [47.38439, 8.53191], [47.382368, 8.488124], [47.370984, 8.531317], [47.366642, 8.532976], [47.388098, 8.539364], [47.399638, 8.520326], [47.38278, 8.510859], [47.326159, 8.513372], [47.372629, 8.534291], [47.366206, 8.520998], [47.372125, 8.536213], [47.379178, 8.51803], [47.42339, 8.508178], [47.379519, 8.529598], [47.372797, 8.511651], [47.369892, 8.513526], [47.378945, 8.516039], [47.374478, 8.539427], [47.389755, 8.512337], [47.38199, 8.52896], [47.410663, 8.572255], [47.366727, 8.545794], [47.377553, 8.518673], [47.371599, 8.54616], [47.398911, 8.533533], [47.37452, 8.518863], [47.391674, 8.51876], [47.40591, 8.590849], [47.391507, 8.487112], [47.364764, 8.545978], [47.370754, 8.547029], [47.38559, 8.506518], [47.366833, 8.543148], [47.406723, 8.566765], [47.368594, 8.499253], [47.356926, 8.535027], [47.409394, 8.544468], [47.352443, 8.5579], [47.329549, 8.529767], [47.359466, 8.511687], [47.416287, 8.545115], [47.371477, 8.524813], [47.393618, 8.509938], [47.33548, 8.518919], [47.362405, 8.577676], [47.408155, 8.556367], [47.399653, 8.515875], [47.374699, 8.529407], [47.365111, 8.564944], [47.425887, 8.555162], [47.382511, 8.529898], [47.353137, 8.511295], [47.36907, 8.528286], [47.353656, 8.524092], [47.36825, 8.501431], [47.390275, 8.522149], [47.414114, 8.550397], [47.406794, 8.578745], [47.378376, 8.510466], [47.396574, 8.545619], [47.419067, 8.506871], [47.370669, 8.535204], [47.358261, 8.520321], [47.351027, 8.582966], [47.370206, 8.548832], [47.396582, 8.528756], [47.389173, 8.494537], [47.387281, 8.522075], [47.362523, 8.533845], [47.376408, 8.527495], [47.37642, 8.528211], [47.368631, 8.547912], [47.388206, 8.520227], [47.383401, 8.515626], [47.38254, 8.540136], [47.376767, 8.538083], [47.380324, 8.556406], [47.360121, 8.516638], [47.382197, 8.498968], [47.428055, 8.489966], [47.36313, 8.535313], [47.384432, 8.531315], [47.378622, 8.496407], [47.361557, 8.52563], [47.364365, 8.548207], [47.393767, 8.529665], [47.366761, 8.53564], [47.398544, 8.500631], [47.369181, 8.52797], [47.412739, 8.541821], [47.370648, 8.535494], [47.378379, 8.541692], [47.377984, 8.541538], [47.373789, 8.517166], [47.374519, 8.52947], [47.371907, 8.522173], [47.393787, 8.521704], [47.395297, 8.532399], [47.374889, 8.518831], [47.388203, 8.526293], [47.383827, 8.539183], [47.374333, 8.552732], [47.368428, 8.505499], [47.366228, 8.533934], [47.392853, 8.50224], [47.413883, 8.551001], [47.377664, 8.538354], [47.358616, 8.58056], [47.339832, 8.518094], [47.379912, 8.551564], [47.36976, 8.533371], [47.389308, 8.472645], [47.414149, 8.519163], [47.377891, 8.51231], [47.375607, 8.537093], [47.363609, 8.535045], [47.41078, 8.54345], [47.369408, 8.526823], [47.375821, 8.535363], [47.381852, 8.540625], [47.376599, 8.560195], [47.370215, 8.548819], [47.385518, 8.548555], [47.378039, 8.548002], [47.40953, 8.537766], [47.358202, 8.571523], [47.406923, 8.586605], [47.373878, 8.502722], [47.380875, 8.537453], [47.377647, 8.529719], [47.368689, 8.541836], [47.337528, 8.534469], [47.414225, 8.479476], [47.3724, 8.534776], [47.353027, 8.487957], [47.383347, 8.515598], [47.371663, 8.517441], [47.330062, 8.502814], [47.398318, 8.532474], [47.377354, 8.499308], [47.388425, 8.488707], [47.384735, 8.542075], [47.380886, 8.535334], [47.360604, 8.552961], [47.424818, 8.540971], [47.396386, 8.512179], [47.412056, 8.513992], [47.363497, 8.532633], [47.360752, 8.566428], [47.376303, 8.559222], [47.397559, 8.531942], [47.374228, 8.536482], [47.362148, 8.557005], [47.402267, 8.487907], [47.324984, 8.511999], [47.389746, 8.511436], [47.371433, 8.524785], [47.414006, 8.546644], [47.360363, 8.553737], [47.423858, 8.513939], [47.399987, 8.508913], [47.392239, 8.494677], [47.370197, 8.548805], [47.365424, 8.545634], [47.420789, 8.50244], [47.3785, 8.519381], [47.349717, 8.561562], [47.351442, 8.53183], [47.413894, 8.545131], [47.32794, 8.529642], [47.409549, 8.537647], [47.377086, 8.529125], [47.382997, 8.529948], [47.390913, 8.489114], [47.365592, 8.561724], [47.382722, 8.540882], [47.361048, 8.525222], [47.410546, 8.550004], [47.409654, 8.525631], [47.394889, 8.51256], [47.375323, 8.484318], [47.37356, 8.526206], [47.397005, 8.530566], [47.367065, 8.544305], [47.391182, 8.486271], [47.366838, 8.544499], [47.384435, 8.531964], [47.427179, 8.491274], [47.357791, 8.572097], [47.375758, 8.539215], [47.374339, 8.537954], [47.370499, 8.515921], [47.375015, 8.539769], [47.402508, 8.543106], [47.370277, 8.54886], [47.420762, 8.502439], [47.405302, 8.566748], [47.383356, 8.515612], [47.380044, 8.528285], [47.361186, 8.547651], [47.365435, 8.564912], [47.393319, 8.492579], [47.41434, 8.551223], [47.357401, 8.521878], [47.361909, 8.548222], [47.371716, 8.519548], [47.393599, 8.511964], [47.351733, 8.560572], [47.356605, 8.535642], [47.380935, 8.537693], [47.355504, 8.529385], [47.386784, 8.534714], [47.344252, 8.534991], [47.425706, 8.493989], [47.374449, 8.541598], [47.361772, 8.516156], [47.398659, 8.539198], [47.368021, 8.556135], [47.370635, 8.516772], [47.38582, 8.530032], [47.38028, 8.494122], [47.370188, 8.548818], [47.364132, 8.55179], [47.399062, 8.522249], [47.371533, 8.515982], [47.373593, 8.54546], [47.384373, 8.531843], [47.397932, 8.531459], [47.3976, 8.532353], [47.369153, 8.525255], [47.365311, 8.56471], [47.36438, 8.546659], [47.370133, 8.512736], [47.34358, 8.53282], [47.370242, 8.558101], [47.368829, 8.547916], [47.370891, 8.559783], [47.377012, 8.499407], [47.381141, 8.534982], [47.371673, 8.530749], [47.3635, 8.535149], [47.389823, 8.511795], [47.429728, 8.51248], [47.3474, 8.563035], [47.369178, 8.525454], [47.365902, 8.532312], [47.385211, 8.508656], [47.394945, 8.486915], [47.359232, 8.499954], [47.36867, 8.543914], [47.405829, 8.590821], [47.36412, 8.547514], [47.374087, 8.540902], [47.361276, 8.517284], [47.339087, 8.527594], [47.364728, 8.554398], [47.359767, 8.579685], [47.397839, 8.481223], [47.377541, 8.49861], [47.371167, 8.518543], [47.378384, 8.547705], [47.375362, 8.524905], [47.360576, 8.550247], [47.364517, 8.521798], [47.383344, 8.548271], [47.394139, 8.493456], [47.342412, 8.530732], [47.369653, 8.52557], [47.373616, 8.536443], [47.399712, 8.495792], [47.386069, 8.539852], [47.398273, 8.532473], [47.401353, 8.501296], [47.372411, 8.566317], [47.398452, 8.538359], [47.368631, 8.530978], [47.376676, 8.556899], [47.36363, 8.550668], [47.368243, 8.538662], [47.377188, 8.526889], [47.376741, 8.514061], [47.367777, 8.545975], [47.367349, 8.519962], [47.385177, 8.508457], [47.388403, 8.48423], [47.401154, 8.499491], [47.373673, 8.536126], [47.380561, 8.51243], [47.381893, 8.516218], [47.382677, 8.529464], [47.371115, 8.55526], [47.377955, 8.529474], [47.383673, 8.574528], [47.360729, 8.56235], [47.413742, 8.546042], [47.372373, 8.534735], [47.414299, 8.561055], [47.385204, 8.508431], [47.408648, 8.546307], [47.395387, 8.519034], [47.372789, 8.535512], [47.389634, 8.521487], [47.379333, 8.537792], [47.389193, 8.488312], [47.372808, 8.525873], [47.3951, 8.536091], [47.370595, 8.469925], [47.36997, 8.525365], [47.407074, 8.56403], [47.354573, 8.555231], [47.358425, 8.55874], [47.37092, 8.523822], [47.378042, 8.527913], [47.371896, 8.513699], [47.377354, 8.499295], [47.406921, 8.586816], [47.358675, 8.526935], [47.374527, 8.539984], [47.385627, 8.529604], [47.371181, 8.512281], [47.370672, 8.51668], [47.410454, 8.538037], [47.366738, 8.534183], [47.378872, 8.542762], [47.405508, 8.591463], [47.355195, 8.530676], [47.39394, 8.493558], [47.37457, 8.517275], [47.372585, 8.529443], [47.342448, 8.530719], [47.373797, 8.545822], [47.415486, 8.562869], [47.39108, 8.522629], [47.403944, 8.569462], [47.380534, 8.517343], [47.382972, 8.499817], [47.357483, 8.521748], [47.392408, 8.489859], [47.374453, 8.539294], [47.369283, 8.532434], [47.372889, 8.503629], [47.37383, 8.531892], [47.349631, 8.561163], [47.377052, 8.544075], [47.375, 8.545052], [47.4019, 8.499519], [47.378616, 8.527104], [47.380485, 8.53771], [47.384625, 8.507784], [47.366025, 8.533506], [47.386399, 8.496826], [47.370457, 8.549817], [47.37581, 8.496987], [47.410787, 8.547386], [47.384476, 8.53811]], [[47.358969, 8.532011], [47.347168, 8.564724], [47.37057, 8.524715], [47.403805, 8.485884], [47.411219, 8.561388], [47.344353, 8.532876], [47.420514, 8.540498], [47.377333, 8.543856], [47.374913, 8.531596], [47.382436, 8.551921], [47.38065, 8.525066], [47.372677, 8.534914], [47.413574, 8.480868], [47.417878, 8.54145], [47.366378, 8.519956], [47.410587, 8.526882], [47.361557, 8.52559], [47.363446, 8.598656], [47.402565, 8.485727], [47.370197, 8.548805], [47.391252, 8.487425], [47.358064, 8.520145], [47.388783, 8.515324], [47.380884, 8.582839], [47.411081, 8.54771], [47.35151, 8.601242], [47.372496, 8.478661], [47.378573, 8.569056], [47.429085, 8.543485], [47.375322, 8.517727], [47.384263, 8.49734], [47.350951, 8.583388], [47.408826, 8.579822], [47.374272, 8.536522], [47.357446, 8.521787], [47.361657, 8.526479], [47.374957, 8.534497], [47.411192, 8.546466], [47.351144, 8.56007], [47.392807, 8.522678], [47.398264, 8.494823], [47.415573, 8.548307], [47.375997, 8.545271], [47.413382, 8.531816], [47.366694, 8.507278], [47.397181, 8.587613], [47.405034, 8.560038], [47.417184, 8.515845], [47.365327, 8.519829], [47.381241, 8.491347], [47.398026, 8.474377], [47.358073, 8.520198], [47.425678, 8.494094], [47.359561, 8.549219], [47.383152, 8.497781], [47.381692, 8.530914], [47.385939, 8.49891], [47.371002, 8.486669], [47.409717, 8.532231], [47.371067, 8.538734], [47.36808, 8.522585], [47.373626, 8.536377], [47.375094, 8.545597], [47.391178, 8.538911], [47.353565, 8.576468], [47.376839, 8.541846], [47.360729, 8.562363], [47.375103, 8.545597], [47.334177, 8.515929], [47.366501, 8.540255], [47.380667, 8.525199], [47.391513, 8.516704], [47.412851, 8.537543], [47.377677, 8.531282], [47.352109, 8.572757], [47.365673, 8.539298], [47.373354, 8.503916], [47.379615, 8.537454], [47.345443, 8.534632], [47.365786, 8.532217], [47.414445, 8.5543], [47.348417, 8.52257], [47.403894, 8.567248], [47.410935, 8.505887], [47.419596, 8.548059], [47.364562, 8.536932], [47.371807, 8.473232], [47.367782, 8.560446], [47.371191, 8.547409], [47.360768, 8.524422], [47.422734, 8.550974], [47.392974, 8.531702], [47.360559, 8.522737], [47.369886, 8.547488], [47.377644, 8.507922], [47.402057, 8.499018], [47.3583, 8.571565], [47.372868, 8.500014], [47.417036, 8.523038], [47.414315, 8.541562], [47.387692, 8.538481], [47.328318, 8.518152], [47.365647, 8.565353], [47.358416, 8.556887], [47.401609, 8.581893], [47.37011, 8.479846], [47.374312, 8.488668], [47.390771, 8.488912], [47.407039, 8.55645], [47.381267, 8.491453], [47.376834, 8.541435], [47.384476, 8.548401], [47.386673, 8.541559], [47.40513, 8.571448], [47.378636, 8.523038], [47.382971, 8.499831], [47.35266, 8.524813], [47.400205, 8.49408], [47.388683, 8.520223], [47.377349, 8.498911], [47.366824, 8.555315], [47.359156, 8.526481], [47.37981, 8.520679], [47.403847, 8.486255], [47.374129, 8.519292], [47.404715, 8.576156], [47.385118, 8.531077], [47.367727, 8.494642], [47.377233, 8.540106], [47.385536, 8.538251], [47.378708, 8.528827], [47.383559, 8.549256], [47.418349, 8.546761], [47.424623, 8.51202], [47.427224, 8.491262], [47.398669, 8.539185], [47.402779, 8.501775], [47.398687, 8.512398], [47.387455, 8.539787], [47.361608, 8.565413], [47.395164, 8.484588], [47.353601, 8.554377], [47.384984, 8.508864], [47.384551, 8.50316], [47.368464, 8.537171], [47.399939, 8.544603], [47.40424, 8.564924], [47.370173, 8.479847], [47.373968, 8.498817], [47.407844, 8.54478], [47.379094, 8.508706], [47.407884, 8.538673], [47.376912, 8.541768], [47.390508, 8.525174], [47.378468, 8.510242], [47.35623, 8.556033], [47.412959, 8.540394], [47.376749, 8.538057], [47.384517, 8.507781], [47.377201, 8.512932], [47.399888, 8.548974], [47.406328, 8.591335], [47.357994, 8.519984], [47.376837, 8.528802], [47.380596, 8.525091], [47.380614, 8.525105], [47.369848, 8.509526], [47.375632, 8.526857], [47.383389, 8.552895], [47.408644, 8.550455], [47.378965, 8.54242], [47.376695, 8.538982], [47.419699, 8.504618], [47.38671, 8.528196], [47.396703, 8.541502], [47.375499, 8.484718], [47.367667, 8.523451], [47.369411, 8.520746], [47.398596, 8.532586], [47.373392, 8.480996], [47.385769, 8.520164], [47.377014, 8.544286], [47.419577, 8.508127], [47.366035, 8.562462], [47.363154, 8.533659], [47.364321, 8.533921], [47.411009, 8.529766], [47.374726, 8.5228], [47.382352, 8.53155], [47.360166, 8.516639], [47.362194, 8.547527], [47.388742, 8.539721], [47.35399, 8.55596], [47.369153, 8.528036], [47.391099, 8.489396], [47.377229, 8.538636], [47.375311, 8.560406], [47.397869, 8.474904], [47.367887, 8.564407], [47.379599, 8.524939], [47.365166, 8.521613], [47.397148, 8.532543], [47.374084, 8.519304], [47.372145, 8.521741], [47.354579, 8.602037], [47.380024, 8.54268], [47.382004, 8.529345], [47.400558, 8.500711], [47.403914, 8.574403], [47.367496, 8.5378], [47.365687, 8.545375], [47.363166, 8.535261], [47.362076, 8.559783], [47.408644, 8.575392], [47.37034, 8.548888], [47.370152, 8.548804], [47.379094, 8.518333], [47.37777, 8.537627], [47.371226, 8.531428], [47.373527, 8.503668], [47.376998, 8.513497], [47.368419, 8.534376], [47.373942, 8.531497], [47.376269, 8.486164], [47.393963, 8.48108], [47.357549, 8.555426], [47.348799, 8.525899], [47.365768, 8.547283], [47.376459, 8.543957], [47.370188, 8.548805], [47.378043, 8.540136], [47.419695, 8.548022], [47.396456, 8.508471], [47.420659, 8.547949], [47.376025, 8.535711], [47.405262, 8.555154], [47.383394, 8.484105], [47.371133, 8.516398], [47.366231, 8.532663], [47.386223, 8.498346], [47.4188, 8.507502], [47.375875, 8.541084], [47.402696, 8.567422], [47.376791, 8.536548], [47.372372, 8.535848], [47.388489, 8.470669], [47.425128, 8.537757], [47.409531, 8.537633], [47.369695, 8.530735], [47.371961, 8.536488], [47.367514, 8.537773], [47.361502, 8.549405], [47.383099, 8.515249], [47.377206, 8.540145], [47.418936, 8.506365], [47.376271, 8.543913], [47.408932, 8.545757], [47.381909, 8.536561], [47.383585, 8.506491], [47.392703, 8.524106], [47.387567, 8.519339], [47.368149, 8.496715], [47.377263, 8.538862], [47.397917, 8.474561], [47.367854, 8.539833], [47.387582, 8.522518], [47.381306, 8.491176], [47.410148, 8.574324], [47.416765, 8.505792], [47.381221, 8.491558], [47.405449, 8.572899], [47.36923, 8.540775], [47.381834, 8.544426], [47.353335, 8.576132], [47.372506, 8.478503], [47.41085, 8.526583], [47.367101, 8.544319], [47.394783, 8.525804], [47.368277, 8.513996], [47.409017, 8.545374], [47.390105, 8.525947], [47.430725, 8.540285], [47.366598, 8.553603], [47.36467, 8.554754], [47.368189, 8.56019], [47.391743, 8.484892], [47.373379, 8.524481], [47.361672, 8.548522], [47.389083, 8.483581], [47.403384, 8.556824], [47.393837, 8.50667], [47.382913, 8.513921], [47.384454, 8.531885], [47.41457, 8.559007], [47.407037, 8.550143], [47.360678, 8.524421], [47.369865, 8.548732], [47.37621, 8.540866], [47.376228, 8.540853], [47.385208, 8.536774], [47.376428, 8.528237], [47.397896, 8.554033], [47.391099, 8.487502], [47.426986, 8.546623], [47.388578, 8.525625], [47.414095, 8.550436], [47.37542, 8.545405], [47.358324, 8.51545], [47.390217, 8.525446], [47.386834, 8.502398], [47.383096, 8.515514], [47.378522, 8.5752], [47.372304, 8.479955], [47.385048, 8.481237], [47.390619, 8.478882], [47.360766, 8.550118], [47.376685, 8.526773], [47.348649, 8.533216], [47.374619, 8.5322], [47.385446, 8.526846], [47.391237, 8.523136], [47.3932, 8.492842], [47.386795, 8.518158], [47.40606, 8.547022], [47.366652, 8.553604], [47.359825, 8.535695], [47.369152, 8.548069], [47.37466, 8.523063], [47.392144, 8.493231], [47.392148, 8.476886], [47.369216, 8.528037], [47.393618, 8.512826], [47.361738, 8.517902], [47.341963, 8.53063], [47.335087, 8.541419], [47.370423, 8.529757], [47.376945, 8.541067], [47.374898, 8.518791], [47.377191, 8.538874], [47.388825, 8.538531], [47.410687, 8.558766], [47.370179, 8.548805], [47.397247, 8.510474], [47.368039, 8.556122], [47.37017, 8.548818], [47.370668, 8.554098], [47.394766, 8.513273], [47.393653, 8.538816], [47.358927, 8.516363], [47.371616, 8.525332], [47.377025, 8.544048], [47.365355, 8.521603], [47.389785, 8.492443], [47.386687, 8.547626], [47.425599, 8.547681], [47.389945, 8.47679], [47.399399, 8.516069], [47.407821, 8.545297], [47.425814, 8.547791], [47.36655, 8.545446], [47.369576, 8.506833], [47.373022, 8.536497], [47.359856, 8.522855], [47.385678, 8.494057], [47.402055, 8.49927], [47.366618, 8.540178], [47.383192, 8.499319], [47.370553, 8.492539], [47.367056, 8.523425], [47.376154, 8.48595], [47.350936, 8.560158], [47.414776, 8.560932], [47.376575, 8.527009], [47.390894, 8.522294], [47.406687, 8.546333], [47.37745, 8.498688], [47.372774, 8.534227], [47.384286, 8.548529], [47.389396, 8.520953], [47.365548, 8.559803], [47.364202, 8.555803], [47.409581, 8.543783], [47.427659, 8.546729], [47.365895, 8.509963], [47.387962, 8.485215], [47.372678, 8.499202], [47.35617, 8.522648], [47.38364, 8.499539], [47.385683, 8.474641], [47.370397, 8.524897], [47.386806, 8.547483], [47.369153, 8.525255], [47.393824, 8.493437], [47.400815, 8.548914], [47.412805, 8.48137], [47.377359, 8.512405], [47.356576, 8.52349], [47.417313, 8.506836], [47.382454, 8.54824], [47.394939, 8.516892], [47.367854, 8.536973], [47.371509, 8.546132], [47.378401, 8.579236], [47.378344, 8.578639], [47.383715, 8.545193], [47.369848, 8.548586], [47.381362, 8.51724], [47.383055, 8.572422], [47.388126, 8.485019], [47.398656, 8.58942], [47.413867, 8.527161], [47.357917, 8.520512], [47.409557, 8.53778], [47.382403, 8.551629], [47.36182, 8.560241], [47.386233, 8.496359], [47.364843, 8.56666], [47.410168, 8.524489], [47.3654, 8.548123], [47.416692, 8.51072], [47.382149, 8.548088], [47.402227, 8.535774], [47.374918, 8.537608], [47.379386, 8.508208], [47.370648, 8.519248], [47.38811, 8.519933], [47.413102, 8.5508], [47.361766, 8.56024], [47.376354, 8.527508], [47.388673, 8.487202], [47.361691, 8.560556], [47.376529, 8.527154], [47.391574, 8.542681], [47.386132, 8.497536], [47.400752, 8.531928], [47.380531, 8.537605], [47.381692, 8.513698], [47.371834, 8.473259], [47.361536, 8.565346], [47.365611, 8.53923], [47.376785, 8.539024], [47.415845, 8.481403], [47.367011, 8.547111], [47.395794, 8.524461], [47.422439, 8.550769], [47.391519, 8.487801], [47.386751, 8.547601], [47.379324, 8.537832], [47.397413, 8.532151], [47.384782, 8.509336], [47.37981, 8.524519], [47.409628, 8.550104], [47.419134, 8.506422], [47.421265, 8.549433], [47.403274, 8.575383], [47.378554, 8.541232], [47.405763, 8.548871], [47.364877, 8.548258], [47.408024, 8.546692], [47.380739, 8.534682], [47.388285, 8.476387], [47.349897, 8.527735], [47.361518, 8.511504], [47.373371, 8.534822], [47.41891, 8.507266], [47.394713, 8.525604], [47.392427, 8.537201], [47.383814, 8.52721], [47.350179, 8.530348], [47.370544, 8.535016], [47.405986, 8.504184], [47.360294, 8.579153], [47.370798, 8.519569], [47.364029, 8.547578], [47.379192, 8.542239], [47.38973, 8.486706], [47.388071, 8.528846], [47.378018, 8.543698], [47.41442, 8.54664], [47.369642, 8.540055], [47.34101, 8.526852], [47.344933, 8.533351], [47.376608, 8.543417], [47.372713, 8.533961], [47.366063, 8.532342], [47.360493, 8.535391], [47.368645, 8.512216], [47.354396, 8.561462], [47.370795, 8.517914], [47.407, 8.481746], [47.371186, 8.547873], [47.396356, 8.51345], [47.391038, 8.522311], [47.375357, 8.528361], [47.414419, 8.55414], [47.375505, 8.547751], [47.40896, 8.578937], [47.361852, 8.547626], [47.336222, 8.533728], [47.384215, 8.516146], [47.409603, 8.537661], [47.369081, 8.547948], [47.398251, 8.536712], [47.374407, 8.541279], [47.384943, 8.523829], [47.377872, 8.497835], [47.378533, 8.523487], [47.381598, 8.530462], [47.352659, 8.558738], [47.370734, 8.5139], [47.379826, 8.494616], [47.386705, 8.547626], [47.365133, 8.53088], [47.414112, 8.519295], [47.373972, 8.492435], [47.36821, 8.536411], [47.364981, 8.54683], [47.373122, 8.534513], [47.409795, 8.541071], [47.380053, 8.526352], [47.351544, 8.525797], [47.393354, 8.524808], [47.411153, 8.5709], [47.387006, 8.53403], [47.397518, 8.532458], [47.412202, 8.51479], [47.392521, 8.529149], [47.329023, 8.51392], [47.399426, 8.505378], [47.370797, 8.519688], [47.402559, 8.546247], [47.333416, 8.528881], [47.402596, 8.546102], [47.404761, 8.574223], [47.370061, 8.511834], [47.373864, 8.538805], [47.383629, 8.574448], [47.379411, 8.489814], [47.36613, 8.545159], [47.378446, 8.51934], [47.383054, 8.528638], [47.408871, 8.548366], [47.384747, 8.527494], [47.38785, 8.520802], [47.390024, 8.525906], [47.37884, 8.530962], [47.39297, 8.529185], [47.364859, 8.554837], [47.358211, 8.571444], [47.386088, 8.537839], [47.404179, 8.579417], [47.387274, 8.537068], [47.362761, 8.548505], [47.369398, 8.525909], [47.360541, 8.525609], [47.359574, 8.535598], [47.377245, 8.54833], [47.370215, 8.548819], [47.399815, 8.467457], [47.377845, 8.529723], [47.43092, 8.550005], [47.388027, 8.486951], [47.397783, 8.533019], [47.407191, 8.53785], [47.418188, 8.547579], [47.405257, 8.480559], [47.378297, 8.530421], [47.36489, 8.554375], [47.377354, 8.499295], [47.372311, 8.523175], [47.388941, 8.520559], [47.41756, 8.55402], [47.36655, 8.545472], [47.366717, 8.54774], [47.340826, 8.529151], [47.38033, 8.527536], [47.387152, 8.54602], [47.416372, 8.525702], [47.37302, 8.528181], [47.391523, 8.546137], [47.412628, 8.483049], [47.3613, 8.53284], [47.380977, 8.535191], [47.3648, 8.545992], [47.340059, 8.530353], [47.378426, 8.509924], [47.36695, 8.544051], [47.372469, 8.543543], [47.411058, 8.545457], [47.418456, 8.546843], [47.362305, 8.561231], [47.420208, 8.540531], [47.361739, 8.526375], [47.369726, 8.525519], [47.369491, 8.553875], [47.392764, 8.524399], [47.409722, 8.575614], [47.366873, 8.545492], [47.370561, 8.549263], [47.376902, 8.546588], [47.375493, 8.548029], [47.359538, 8.535584], [47.387432, 8.482198], [47.411725, 8.512912], [47.371322, 8.547796], [47.396189, 8.52741], [47.383043, 8.52983], [47.359218, 8.596909], [47.376074, 8.559614], [47.405259, 8.533849], [47.398239, 8.537069], [47.384345, 8.531922], [47.430591, 8.538294], [47.401981, 8.504436], [47.36606, 8.538392], [47.371337, 8.538713], [47.376739, 8.535315], [47.374735, 8.544623], [47.408932, 8.545717], [47.366398, 8.54065], [47.37603, 8.54457], [47.337211, 8.53003], [47.399256, 8.542668], [47.385276, 8.495665], [47.382795, 8.514011], [47.38308, 8.530678], [47.382782, 8.530831], [47.409946, 8.575619], [47.36011, 8.595909], [47.377342, 8.543843], [47.37026, 8.5136], [47.407498, 8.546151], [47.430946, 8.550125], [47.374154, 8.47533], [47.380264, 8.493884], [47.393599, 8.52933], [47.370358, 8.513654], [47.431031, 8.515489], [47.397077, 8.530554], [47.377349, 8.498924], [47.358133, 8.521496], [47.360533, 8.563113], [47.343143, 8.530456], [47.366436, 8.545099], [47.403071, 8.585952], [47.428042, 8.511943], [47.405608, 8.565827], [47.390504, 8.54544], [47.418445, 8.547081], [47.378203, 8.510634], [47.386692, 8.488382], [47.374722, 8.543153], [47.409028, 8.578408], [47.356791, 8.532178], [47.368582, 8.524688], [47.400798, 8.548873], [47.373598, 8.544957], [47.424738, 8.548392], [47.41087, 8.550064], [47.410843, 8.550077], [47.377256, 8.538716], [47.376385, 8.488205], [47.357587, 8.550542], [47.414501, 8.546628], [47.420506, 8.502991], [47.375502, 8.563853], [47.353499, 8.602066], [47.387843, 8.486471], [47.370859, 8.516869], [47.365693, 8.548487], [47.378056, 8.513849], [47.398692, 8.539516], [47.365089, 8.55328], [47.395399, 8.546244], [47.396733, 8.53937], [47.335034, 8.529959], [47.3781, 8.497456], [47.365096, 8.546952], [47.364384, 8.546248], [47.382212, 8.488452], [47.418205, 8.512487], [47.374297, 8.552731], [47.394062, 8.518358], [47.33633, 8.529959], [47.390324, 8.490639], [47.397095, 8.482877], [47.392831, 8.543872], [47.374192, 8.52504], [47.37465, 8.545932], [47.385938, 8.508803], [47.370364, 8.508266], [47.381598, 8.530449], [47.344042, 8.529574], [47.369606, 8.528654], [47.378587, 8.542531], [47.412288, 8.51523], [47.372114, 8.535485], [47.393233, 8.531906], [47.399692, 8.543207], [47.357947, 8.596233], [47.381555, 8.548141], [47.409224, 8.550043], [47.413208, 8.571434], [47.400798, 8.54886], [47.360852, 8.566311], [47.375736, 8.487424], [47.385409, 8.536434], [47.388974, 8.538031], [47.406608, 8.480321], [47.369978, 8.512005], [47.373879, 8.546644], [47.382909, 8.500756], [47.384151, 8.541984], [47.356666, 8.523479], [47.404171, 8.563717], [47.360769, 8.561014], [47.340069, 8.530274], [47.426977, 8.546569], [47.335591, 8.530036], [47.360296, 8.521964], [47.408543, 8.545073], [47.414003, 8.544153], [47.383235, 8.539872], [47.380397, 8.526147], [47.408087, 8.576255], [47.411387, 8.526859], [47.354106, 8.526947], [47.380847, 8.502967], [47.3637, 8.563908], [47.377459, 8.543792], [47.406658, 8.531426], [47.388245, 8.538095], [47.398967, 8.533335], [47.382582, 8.537607], [47.364918, 8.554322], [47.377619, 8.509603], [47.377491, 8.509852], [47.37329, 8.524333], [47.382361, 8.560647], [47.334975, 8.516196], [47.414918, 8.54066], [47.373145, 8.53303], [47.358009, 8.553383], [47.379816, 8.526757], [47.395454, 8.517565], [47.399032, 8.513981], [47.370206, 8.548806], [47.416021, 8.521971], [47.336337, 8.530105], [47.359817, 8.535563], [47.411875, 8.524775], [47.403419, 8.487797], [47.372527, 8.521233], [47.377805, 8.507951], [47.369348, 8.533098], [47.41158, 8.528334], [47.381192, 8.538162], [47.364684, 8.537344], [47.347983, 8.533294], [47.383827, 8.526773], [47.356058, 8.556056], [47.370646, 8.52996], [47.388494, 8.491066], [47.412898, 8.537385], [47.365704, 8.553889], [47.369005, 8.538003], [47.378574, 8.540054], [47.390287, 8.492691], [47.391092, 8.522325], [47.358022, 8.55762], [47.36277, 8.519022], [47.357612, 8.590189], [47.364621, 8.55053], [47.38213, 8.544498], [47.373223, 8.535243], [47.375599, 8.544575], [47.364257, 8.531219], [47.391054, 8.522549], [47.374701, 8.532069], [47.421091, 8.501969], [47.373646, 8.514158], [47.398852, 8.540699], [47.382587, 8.511319], [47.376074, 8.559628], [47.367903, 8.546043], [47.376048, 8.541816], [47.38022, 8.527719], [47.367355, 8.537492], [47.392452, 8.524048], [47.369288, 8.557181], [47.393526, 8.524626], [47.359244, 8.553092], [47.358953, 8.55715], [47.3646, 8.53296], [47.391353, 8.477281], [47.411091, 8.545775], [47.368417, 8.547722], [47.339085, 8.519151], [47.376521, 8.558088], [47.343833, 8.528882], [47.370998, 8.536561], [47.383298, 8.530418], [47.377815, 8.5271], [47.410535, 8.550229], [47.382945, 8.484017], [47.362184, 8.532567], [47.371716, 8.519548], [47.39837, 8.537509], [47.376599, 8.540623], [47.367767, 8.496191], [47.414995, 8.551369], [47.366488, 8.533092], [47.373117, 8.525482], [47.368757, 8.534714], [47.366975, 8.543376], [47.380817, 8.569501], [47.403615, 8.534491], [47.380617, 8.519026], [47.410397, 8.571838], [47.370048, 8.534264], [47.359339, 8.592927], [47.372387, 8.534259], [47.369058, 8.550357], [47.386788, 8.547495], [47.361312, 8.535408], [47.378751, 8.527994], [47.382441, 8.529711], [47.377036, 8.540049], [47.382332, 8.488071], [47.35761, 8.509056], [47.375222, 8.525485], [47.385245, 8.536696], [47.376929, 8.546536], [47.419186, 8.546725], [47.369457, 8.506076], [47.378521, 8.521871], [47.38728, 8.498897], [47.398299, 8.591797], [47.377014, 8.544273], [47.362141, 8.559599], [47.372674, 8.537125], [47.388573, 8.54797], [47.384458, 8.548387], [47.37821, 8.509906], [47.358027, 8.523149], [47.378092, 8.51001], [47.383879, 8.504802], [47.378783, 8.543568], [47.358295, 8.572055], [47.369164, 8.52789], [47.422332, 8.550754], [47.40339, 8.534526], [47.374949, 8.534431], [47.366538, 8.541977], [47.376581, 8.540635], [47.372513, 8.543623], [47.364198, 8.54782], [47.387112, 8.489728], [47.392432, 8.527134], [47.402289, 8.49432], [47.360439, 8.523952], [47.42704, 8.546584], [47.382323, 8.488057], [47.374966, 8.534458], [47.382817, 8.496093], [47.378473, 8.526995], [47.357661, 8.554051], [47.380928, 8.515563], [47.391133, 8.538923], [47.407399, 8.548984], [47.384476, 8.496669], [47.3891, 8.541795], [47.391055, 8.544233], [47.378359, 8.532382], [47.372761, 8.499945], [47.373067, 8.538351], [47.366875, 8.543414], [47.364883, 8.531576], [47.38688, 8.528372], [47.377482, 8.535741], [47.384243, 8.51604], [47.364551, 8.555056], [47.372663, 8.529816], [47.359818, 8.50857], [47.367924, 8.560608], [47.37765, 8.541743], [47.379581, 8.527785], [47.391215, 8.522659], [47.423349, 8.549754], [47.370987, 8.473415], [47.367594, 8.519808], [47.364648, 8.531677], [47.363674, 8.531975], [47.411402, 8.544218], [47.386752, 8.518926], [47.377521, 8.504675], [47.394337, 8.519649], [47.377317, 8.510206], [47.364417, 8.546461], [47.399125, 8.547845], [47.37318, 8.543465], [47.369052, 8.528325], [47.370727, 8.524308], [47.370542, 8.469897], [47.373055, 8.520594], [47.366538, 8.54105], [47.376034, 8.535685], [47.366558, 8.545565], [47.402667, 8.55188], [47.375946, 8.565372], [47.370894, 8.548356], [47.376355, 8.527415], [47.37384, 8.536527], [47.421274, 8.549406], [47.385175, 8.530761], [47.37331, 8.513568], [47.385294, 8.494712], [47.414111, 8.519374], [47.362805, 8.519129], [47.408008, 8.484615], [47.399512, 8.540368], [47.408474, 8.546675], [47.383969, 8.540311], [47.386923, 8.490678], [47.419107, 8.506395], [47.361183, 8.506916], [47.395703, 8.545429], [47.387637, 8.47542], [47.39245, 8.524313], [47.378145, 8.520698], [47.363011, 8.557963], [47.376955, 8.540034], [47.372945, 8.531304], [47.362798, 8.516044], [47.370197, 8.548805], [47.385897, 8.498578], [47.409202, 8.564366], [47.393872, 8.472164], [47.394146, 8.488714], [47.360639, 8.548421], [47.353925, 8.55347], [47.365267, 8.538469], [47.348748, 8.562243], [47.370977, 8.514845], [47.423455, 8.54529], [47.379242, 8.537896], [47.340569, 8.519181], [47.388469, 8.520007], [47.38874, 8.53898], [47.405189, 8.593669], [47.42184, 8.545707], [47.399416, 8.50551], [47.398789, 8.494409], [47.41856, 8.506172], [47.337762, 8.528824], [47.378751, 8.54223], [47.335638, 8.540292], [47.380035, 8.526351], [47.357296, 8.550867], [47.374681, 8.541761], [47.379225, 8.495439], [47.365521, 8.568104], [47.384379, 8.529274], [47.392204, 8.511128], [47.366479, 8.533078], [47.365397, 8.508378], [47.381532, 8.492028], [47.377741, 8.548155], [47.401464, 8.508758], [47.406826, 8.550589], [47.383443, 8.529387], [47.378095, 8.483194], [47.368459, 8.5292], [47.341125, 8.530798], [47.367651, 8.555359], [47.382242, 8.540276], [47.406466, 8.583799], [47.372629, 8.534317], [47.355668, 8.555532], [47.373353, 8.531935], [47.427087, 8.546373], [47.406844, 8.550576], [47.358386, 8.526121], [47.399566, 8.517476], [47.362366, 8.504478], [47.367971, 8.532262], [47.370619, 8.530039], [47.378525, 8.541457], [47.40992, 8.541259], [47.41032, 8.549191], [47.388491, 8.538617], [47.408448, 8.580767], [47.40579, 8.591125], [47.378623, 8.496367], [47.382306, 8.488031], [47.369644, 8.525623], [47.368082, 8.496158], [47.357963, 8.520434], [47.390609, 8.478988], [47.414576, 8.483472], [47.38295, 8.49338], [47.385205, 8.53986], [47.36685, 8.543254], [47.413172, 8.546402], [47.388533, 8.483742], [47.338911, 8.530012], [47.414501, 8.555043], [47.375618, 8.543476], [47.396798, 8.505604], [47.3771, 8.55218], [47.370188, 8.548805], [47.373436, 8.503799], [47.366185, 8.540381], [47.351932, 8.53417], [47.378521, 8.575213], [47.370169, 8.53947], [47.358028, 8.520237], [47.394143, 8.525076], [47.392988, 8.541505], [47.37462, 8.520586], [47.397005, 8.530579], [47.377824, 8.507872], [47.371008, 8.518236], [47.404814, 8.483757], [47.365176, 8.547112], [47.364328, 8.547306], [47.41989, 8.504343], [47.369915, 8.549157], [47.388789, 8.542358], [47.38334, 8.484091], [47.374374, 8.529599], [47.397747, 8.532979], [47.377826, 8.517341], [47.391875, 8.545085], [47.417194, 8.543371], [47.36027, 8.534235], [47.382567, 8.588159], [47.378455, 8.526981], [47.382193, 8.492518], [47.372059, 8.518389], [47.414775, 8.561105], [47.38326, 8.541091], [47.38571, 8.535937], [47.375482, 8.544585], [47.38829, 8.518043], [47.374312, 8.521825], [47.39788, 8.474613], [47.374726, 8.525673], [47.376503, 8.526981], [47.375981, 8.542225], [47.391719, 8.511052], [47.374481, 8.540115], [47.392416, 8.502774], [47.354704, 8.558411], [47.376443, 8.544698], [47.373841, 8.536487], [47.362675, 8.555533], [47.374573, 8.538952], [47.403463, 8.55603], [47.405416, 8.480828], [47.386675, 8.528129], [47.386952, 8.534996], [47.375247, 8.51799], [47.422167, 8.513004], [47.384427, 8.531831], [47.380402, 8.525604], [47.374078, 8.540809], [47.373475, 8.519981], [47.393445, 8.52942], [47.393269, 8.523244], [47.413453, 8.53195], [47.403492, 8.571559], [47.374996, 8.544588], [47.413288, 8.531311], [47.406948, 8.585903], [47.379159, 8.538133], [47.421787, 8.550358], [47.397717, 8.533336], [47.413866, 8.5415], [47.408711, 8.546256], [47.382182, 8.544724], [47.382164, 8.544658], [47.372198, 8.522788], [47.420662, 8.50257], [47.37926, 8.525567], [47.374919, 8.538469], [47.35122, 8.576246], [47.375225, 8.484263], [47.418232, 8.508644], [47.358991, 8.549499], [47.403471, 8.486036], [47.394964, 8.546513], [47.386075, 8.51821], [47.370281, 8.524855], [47.364618, 8.502113], [47.37505, 8.544603], [47.342061, 8.530817], [47.393797, 8.487462], [47.372287, 8.535237], [47.393233, 8.474297], [47.410629, 8.544242], [47.37293, 8.53288], [47.385959, 8.487851], [47.392556, 8.515877], [47.340275, 8.535121], [47.377495, 8.543806], [47.364637, 8.550795], [47.39197, 8.517905], [47.371513, 8.542835], [47.352416, 8.524861], [47.369342, 8.547927], [47.363155, 8.563566], [47.365532, 8.526678], [47.408217, 8.547147], [47.384038, 8.531095], [47.353836, 8.511508], [47.402105, 8.496807], [47.366997, 8.545707], [47.370243, 8.557042], [47.376947, 8.497632], [47.351932, 8.558617], [47.393408, 8.500608], [47.372461, 8.525415], [47.39665, 8.529181], [47.402144, 8.508175], [47.371666, 8.547565], [47.365144, 8.553175], [47.399073, 8.522077], [47.377769, 8.537733], [47.370161, 8.548805], [47.372704, 8.534901], [47.413858, 8.544176], [47.420935, 8.502217], [47.354543, 8.512886], [47.394791, 8.490926], [47.400226, 8.546556], [47.379204, 8.51137], [47.360634, 8.535725], [47.392379, 8.49117], [47.417708, 8.54802], [47.384962, 8.517075], [47.38922, 8.546142], [47.379135, 8.559374], [47.36343, 8.52633], [47.390898, 8.511353], [47.373813, 8.49512], [47.391698, 8.528722], [47.371792, 8.543847], [47.397426, 8.531767], [47.385778, 8.520217], [47.371493, 8.517372], [47.377585, 8.511364], [47.406753, 8.569243], [47.336156, 8.526489], [47.378003, 8.548001], [47.371623, 8.515944], [47.390775, 8.52257], [47.373241, 8.519049], [47.392389, 8.502787], [47.414514, 8.544283], [47.429931, 8.539605], [47.33252, 8.528558], [47.413033, 8.543974], [47.369458, 8.526294], [47.384773, 8.509323], [47.352335, 8.524873], [47.392793, 8.524174], [47.38484, 8.502053], [47.351039, 8.581841], [47.380788, 8.572454], [47.390942, 8.468862], [47.366907, 8.520139], [47.368906, 8.48966], [47.411452, 8.525668], [47.356042, 8.520011], [47.4001, 8.51905], [47.423479, 8.494554], [47.410011, 8.54297], [47.428011, 8.545703], [47.391375, 8.516158], [47.358601, 8.553634], [47.377789, 8.52416], [47.377013, 8.507088], [47.375829, 8.535469], [47.383256, 8.49924], [47.395018, 8.516099], [47.381416, 8.517188], [47.386591, 8.479625], [47.364401, 8.531196], [47.378601, 8.528732], [47.359005, 8.510963], [47.406934, 8.550552], [47.35786, 8.525621], [47.382356, 8.537748], [47.378472, 8.540383], [47.366979, 8.520127], [47.391156, 8.505769], [47.378836, 8.542774], [47.413119, 8.517685], [47.40847, 8.581192], [47.429636, 8.541376], [47.379773, 8.525565], [47.377674, 8.509458], [47.377036, 8.540049], [47.36327, 8.567395], [47.398474, 8.533126], [47.407473, 8.544097], [47.376645, 8.543365], [47.398475, 8.591324], [47.391122, 8.522961], [47.373535, 8.525014], [47.377505, 8.495603], [47.358222, 8.554645], [47.3299, 8.529748], [47.346403, 8.532944], [47.333865, 8.528043], [47.412612, 8.550379], [47.412285, 8.542196], [47.352156, 8.558741], [47.392421, 8.492482], [47.352369, 8.559023], [47.376866, 8.526724], [47.370188, 8.548805], [47.374347, 8.532393], [47.358733, 8.585143], [47.413335, 8.531099], [47.399303, 8.542404], [47.408888, 8.548512], [47.335145, 8.51919], [47.369794, 8.508625], [47.371818, 8.517285], [47.427041, 8.49159], [47.382169, 8.563702], [47.382403, 8.479239], [47.374457, 8.541664], [47.339177, 8.52565], [47.401501, 8.543999], [47.390805, 8.522213], [47.39886, 8.540831], [47.377113, 8.498191], [47.416044, 8.54613], [47.376751, 8.529317], [47.375479, 8.517254], [47.428819, 8.48896], [47.364618, 8.555547], [47.393003, 8.534339], [47.359578, 8.593329], [47.390287, 8.490651], [47.368478, 8.550729], [47.370585, 8.54308], [47.37909, 8.538767], [47.346602, 8.565599], [47.398034, 8.535926], [47.358544, 8.5869], [47.364013, 8.533266], [47.418224, 8.508471], [47.406321, 8.584776], [47.40317, 8.537833], [47.380365, 8.505487], [47.374523, 8.546075], [47.372154, 8.521702], [47.369698, 8.525571], [47.369016, 8.528324], [47.388138, 8.52653], [47.376744, 8.543287], [47.410082, 8.545012], [47.373387, 8.547217], [47.419125, 8.506409], [47.370491, 8.532088], [47.405109, 8.585399], [47.379326, 8.51757], [47.376174, 8.540852], [47.403253, 8.574866], [47.390387, 8.490547], [47.375116, 8.518518], [47.40748, 8.546151], [47.369039, 8.540983], [47.396217, 8.545373], [47.381973, 8.530682], [47.381071, 8.492231], [47.384151, 8.516197], [47.410877, 8.563222], [47.41331, 8.544138], [47.369648, 8.466252], [47.389651, 8.511964], [47.37573, 8.526992], [47.378052, 8.526774], [47.388424, 8.483873], [47.387696, 8.499567], [47.393532, 8.473058], [47.394856, 8.525753], [47.412287, 8.476907], [47.413841, 8.544176], [47.338471, 8.529963], [47.37017, 8.548792], [47.381218, 8.537301], [47.346388, 8.564403], [47.373559, 8.503152], [47.335144, 8.519243], [47.369219, 8.508494], [47.375196, 8.518691], [47.37446, 8.48826], [47.386828, 8.534728], [47.406943, 8.550591], [47.393441, 8.539315], [47.369079, 8.528246], [47.415163, 8.508821], [47.380003, 8.527913], [47.360079, 8.561634], [47.402844, 8.553964], [47.398167, 8.53614], [47.390962, 8.51313], [47.391153, 8.48945], [47.414578, 8.558212], [47.39303, 8.531478], [47.378647, 8.575282], [47.404015, 8.578738], [47.408998, 8.574154], [47.361519, 8.561599], [47.353342, 8.530704], [47.371196, 8.524132], [47.388463, 8.540643], [47.377615, 8.512026], [47.391134, 8.526485], [47.357966, 8.519176], [47.37458, 8.487878], [47.364449, 8.555358], [47.37853, 8.541868], [47.36653, 8.540918], [47.365488, 8.538976], [47.366806, 8.555302], [47.374656, 8.525447], [47.378104, 8.483194], [47.378863, 8.516117], [47.383164, 8.530335], [47.412068, 8.524276], [47.376655, 8.538452], [47.420947, 8.538452], [47.398659, 8.5326], [47.327994, 8.52963], [47.393125, 8.521413], [47.386923, 8.54269], [47.37104, 8.548161], [47.346209, 8.534449], [47.372702, 8.534186], [47.392932, 8.492664], [47.359043, 8.550704], [47.400719, 8.548673], [47.372622, 8.567685], [47.374497, 8.488089], [47.369124, 8.52352], [47.376963, 8.548642], [47.371289, 8.547504], [47.369728, 8.53002], [47.361892, 8.560243], [47.384523, 8.530217], [47.361493, 8.561426], [47.368997, 8.52839], [47.407314, 8.586242], [47.410167, 8.541675], [47.416696, 8.547509], [47.426049, 8.554198], [47.39624, 8.54385], [47.38962, 8.471922], [47.389453, 8.524464], [47.408265, 8.506721], [47.381434, 8.528737], [47.3709, 8.523119], [47.362707, 8.548464], [47.377467, 8.541978], [47.375923, 8.559492], [47.37666, 8.559547], [47.358149, 8.55385], [47.373832, 8.53646], [47.37443, 8.539796], [47.418512, 8.515223], [47.332789, 8.51815], [47.378581, 8.54212], [47.406702, 8.569865], [47.369653, 8.525649], [47.375141, 8.552907], [47.378859, 8.530883], [47.383514, 8.527561], [47.379285, 8.491798], [47.361508, 8.54787], [47.370179, 8.548805], [47.364398, 8.548446], [47.375435, 8.51622], [47.39186, 8.538143], [47.365251, 8.520251], [47.344898, 8.528533], [47.369464, 8.518919], [47.383362, 8.513082], [47.399142, 8.538625], [47.374015, 8.544648], [47.363419, 8.535134], [47.38012, 8.527889], [47.420506, 8.502977], [47.403814, 8.485857], [47.382883, 8.515271], [47.389638, 8.541978], [47.371451, 8.510327], [47.370397, 8.52487], [47.394553, 8.533033], [47.344522, 8.533051], [47.407096, 8.580089], [47.383248, 8.549845], [47.402277, 8.587127], [47.386806, 8.548423], [47.359835, 8.587325], [47.378637, 8.540029], [47.378557, 8.575267], [47.371678, 8.515866], [47.42111, 8.501797], [47.426298, 8.547072], [47.405442, 8.504664], [47.414103, 8.519242], [47.352168, 8.558384], [47.385616, 8.520161], [47.409881, 8.563917], [47.393505, 8.539197], [47.372374, 8.494072], [47.33006, 8.534686], [47.423463, 8.551016], [47.388566, 8.478127], [47.410784, 8.544033], [47.385974, 8.534671], [47.419088, 8.506461], [47.3731, 8.527282], [47.381102, 8.537206], [47.390117, 8.491588], [47.351663, 8.530326], [47.354774, 8.534281], [47.358046, 8.553265], [47.365406, 8.545634], [47.36529, 8.545539], [47.363733, 8.575282], [47.358114, 8.525361], [47.422876, 8.551163], [47.368618, 8.547422], [47.379998, 8.524536], [47.376729, 8.521119], [47.37848, 8.541416], [47.380515, 8.512535], [47.393733, 8.529399], [47.359323, 8.569959], [47.41986, 8.506622], [47.35151, 8.525624], [47.375328, 8.523739], [47.382537, 8.546096], [47.394173, 8.525673], [47.421027, 8.502073], [47.374503, 8.566705], [47.35009, 8.561146], [47.367156, 8.530908], [47.404206, 8.573946], [47.352457, 8.507946], [47.376438, 8.528185], [47.373888, 8.544738], [47.396022, 8.526996], [47.385882, 8.517729], [47.369732, 8.533397], [47.360489, 8.578588], [47.402788, 8.577254], [47.396712, 8.534905], [47.376572, 8.532994], [47.390957, 8.521435], [47.413257, 8.545966], [47.419272, 8.506027], [47.391063, 8.479474], [47.390221, 8.509605], [47.362326, 8.504874], [47.402287, 8.487656], [47.406958, 8.547107], [47.366536, 8.540335], [47.430594, 8.485668], [47.366843, 8.520256], [47.377349, 8.498871], [47.427984, 8.545716], [47.391284, 8.538145], [47.386308, 8.531737], [47.393603, 8.538404], [47.366205, 8.55701], [47.36159, 8.549566], [47.392188, 8.492358], [47.385963, 8.475533], [47.403766, 8.556368], [47.419143, 8.506409], [47.376754, 8.543261], [47.377157, 8.498258], [47.39649, 8.486177], [47.35968, 8.594748], [47.370191, 8.51426], [47.403806, 8.485844], [47.376919, 8.540099], [47.369555, 8.543549], [47.394339, 8.54699], [47.378696, 8.510883], [47.389095, 8.533795], [47.381154, 8.491981], [47.332493, 8.528531], [47.372629, 8.534291], [47.377863, 8.529671], [47.366205, 8.516258], [47.383097, 8.484046], [47.385943, 8.548352], [47.340006, 8.530286], [47.357185, 8.554928], [47.392882, 8.514639], [47.357647, 8.572068], [47.397399, 8.531779], [47.376073, 8.533434], [47.399135, 8.591895], [47.412975, 8.537811], [47.403061, 8.535049], [47.371763, 8.517324], [47.371494, 8.547654], [47.35042, 8.577989], [47.37291, 8.536018], [47.351795, 8.50465], [47.364038, 8.547565], [47.367272, 8.53479], [47.410942, 8.546289], [47.364679, 8.553841], [47.414179, 8.518885], [47.419152, 8.506396], [47.378342, 8.530369], [47.388958, 8.520599], [47.380341, 8.526371], [47.367516, 8.539415], [47.430955, 8.550139], [47.373505, 8.512884], [47.36585, 8.539672], [47.335042, 8.541484], [47.37017, 8.548831], [47.425624, 8.494133], [47.378582, 8.542067], [47.403304, 8.585997], [47.370984, 8.548305], [47.363849, 8.559649], [47.406861, 8.481161], [47.381488, 8.503655], [47.369868, 8.547488], [47.389037, 8.486706], [47.354986, 8.558099], [47.396849, 8.529914], [47.370179, 8.548832], [47.36061, 8.563459], [47.366465, 8.544901], [47.340412, 8.519575], [47.395062, 8.525797], [47.377551, 8.538828], [47.359076, 8.596734], [47.337098, 8.532462], [47.401822, 8.50014], [47.353162, 8.512487], [47.376696, 8.544624], [47.371587, 8.53697], [47.324122, 8.51861], [47.389757, 8.471634], [47.409702, 8.549894], [47.359112, 8.550997], [47.391513, 8.523473], [47.391789, 8.542818], [47.372513, 8.543623], [47.390673, 8.517177], [47.360955, 8.525604], [47.369214, 8.499239], [47.379622, 8.548035], [47.369295, 8.523524], [47.416224, 8.562898], [47.361458, 8.561399], [47.352316, 8.576349], [47.399692, 8.543193], [47.387164, 8.528709], [47.348677, 8.53319], [47.35646, 8.535772], [47.406132, 8.547872], [47.388404, 8.487117], [47.367083, 8.523399], [47.366824, 8.555302], [47.370166, 8.515941], [47.366967, 8.544131], [47.386246, 8.480982], [47.376301, 8.52842], [47.36659, 8.544997], [47.369498, 8.520125], [47.404505, 8.544009], [47.406522, 8.546595], [47.362825, 8.516097], [47.405774, 8.480994], [47.391114, 8.522842], [47.362992, 8.522257], [47.403083, 8.589225], [47.366618, 8.561719], [47.381611, 8.564697], [47.367015, 8.553241], [47.377469, 8.529504], [47.379912, 8.544028], [47.377264, 8.529287], [47.408877, 8.581916], [47.362889, 8.56777], [47.36631, 8.540423], [47.390887, 8.522175], [47.368971, 8.511018], [47.389511, 8.540148], [47.354485, 8.52681], [47.352394, 8.524318], [47.376145, 8.527808], [47.359449, 8.535463], [47.373083, 8.527189], [47.378176, 8.517414], [47.388514, 8.492736], [47.388455, 8.480416], [47.398316, 8.473151], [47.385014, 8.508507], [47.376705, 8.544611], [47.361333, 8.525493], [47.367809, 8.535065], [47.387859, 8.52467], [47.388535, 8.520631], [47.379834, 8.526691], [47.372776, 8.534956], [47.36226, 8.5197], [47.419802, 8.548156], [47.361829, 8.534002], [47.412959, 8.540381], [47.406823, 8.584973], [47.358851, 8.516825], [47.402424, 8.499277], [47.411704, 8.545576], [47.390728, 8.489627], [47.369588, 8.541894], [47.3927, 8.524477], [47.377206, 8.540185], [47.372591, 8.535521], [47.363981, 8.520423], [47.359446, 8.522489], [47.391952, 8.523641], [47.420047, 8.508853], [47.371164, 8.518901], [47.38186, 8.546373], [47.383951, 8.530855], [47.372485, 8.500641], [47.377092, 8.539798], [47.398703, 8.53276], [47.381152, 8.542372], [47.380483, 8.548344], [47.406653, 8.532831], [47.382338, 8.537748], [47.361489, 8.556316], [47.355407, 8.514809], [47.384449, 8.480815], [47.397194, 8.491834], [47.378417, 8.509884], [47.387538, 8.547061], [47.427472, 8.511308], [47.405153, 8.572813], [47.383088, 8.484046], [47.361749, 8.5118], [47.392244, 8.491114], [47.367666, 8.535023], [47.391101, 8.486296], [47.379173, 8.53861], [47.378006, 8.545843], [47.37077, 8.524481], [47.412123, 8.5507], [47.40766, 8.58397], [47.423435, 8.494527], [47.370179, 8.548792], [47.399003, 8.541828], [47.3672, 8.544241], [47.387098, 8.486324], [47.388009, 8.490977], [47.426245, 8.493085], [47.423724, 8.516773], [47.386629, 8.541532], [47.358559, 8.586371], [47.386922, 8.547538], [47.405275, 8.480547], [47.378559, 8.519766], [47.400233, 8.546795], [47.379783, 8.507157], [47.368914, 8.502596], [47.354799, 8.526829], [47.399375, 8.542405], [47.420775, 8.482321], [47.364014, 8.531267], [47.414408, 8.513576], [47.397744, 8.533284], [47.364402, 8.53011], [47.38116, 8.504072], [47.362149, 8.526741], [47.383249, 8.484208], [47.409513, 8.544258], [47.422859, 8.550208], [47.385334, 8.531015], [47.397889, 8.534121], [47.430037, 8.544578], [47.415413, 8.513808], [47.389849, 8.529174], [47.415305, 8.509937], [47.381721, 8.51538], [47.376838, 8.528696], [47.377658, 8.52858], [47.369398, 8.525909], [47.377862, 8.526942], [47.405799, 8.591098], [47.368847, 8.481357], [47.368789, 8.540885], [47.42759, 8.546463], [47.392903, 8.543874], [47.409986, 8.532329], [47.36449, 8.536983], [47.370183, 8.513214], [47.419493, 8.506522], [47.392279, 8.508811], [47.403649, 8.546959], [47.385205, 8.495597], [47.37028, 8.513428], [47.380814, 8.549477], [47.403835, 8.546393], [47.396999, 8.523611], [47.356734, 8.507529], [47.40508, 8.593786], [47.37741, 8.5395], [47.379833, 8.527764], [47.353346, 8.555629], [47.387139, 8.50145], [47.360343, 8.523712], [47.377964, 8.529487], [47.387182, 8.519159], [47.332479, 8.517601], [47.4116, 8.509822], [47.366016, 8.533506], [47.372125, 8.536227], [47.389093, 8.479462], [47.399481, 8.505286], [47.377836, 8.541959], [47.387461, 8.519086], [47.377052, 8.544048], [47.360011, 8.59498], [47.375414, 8.564646], [47.342625, 8.531041], [47.376722, 8.54183], [47.365418, 8.521552], [47.42249, 8.503322], [47.389493, 8.512464], [47.422314, 8.55074], [47.370174, 8.513161], [47.375266, 8.496512], [47.378227, 8.507152], [47.38649, 8.481835], [47.358804, 8.517009], [47.364693, 8.568126], [47.421396, 8.549833], [47.411454, 8.52641], [47.390977, 8.523091], [47.37958, 8.524978], [47.369337, 8.525749], [47.351519, 8.530362], [47.383699, 8.547802], [47.374452, 8.549662], [47.360304, 8.567199], [47.370784, 8.508473], [47.414256, 8.521193], [47.397634, 8.532553], [47.391105, 8.522908], [47.355573, 8.523046], [47.36825, 8.529421], [47.343332, 8.519991], [47.404932, 8.552948], [47.361401, 8.565409], [47.376047, 8.559627], [47.364623, 8.537198], [47.37135, 8.536423], [47.414815, 8.532534], [47.366938, 8.544382], [47.367092, 8.523452], [47.387857, 8.518166], [47.403386, 8.548132], [47.354877, 8.523376], [47.403883, 8.569236], [47.418856, 8.507318], [47.378865, 8.545397], [47.349698, 8.573619], [47.379005, 8.525959], [47.347674, 8.532679], [47.351394, 8.525502], [47.380252, 8.525309], [47.36533, 8.546956], [47.379268, 8.538016], [47.381222, 8.548201], [47.377778, 8.522425], [47.413711, 8.5464], [47.368186, 8.521873], [47.360467, 8.550377], [47.414, 8.541555], [47.405642, 8.548312], [47.383103, 8.529129], [47.374457, 8.539771], [47.39012, 8.537644], [47.381051, 8.491476], [47.382108, 8.528791], [47.421869, 8.55024], [47.413978, 8.546697], [47.409358, 8.572293], [47.344081, 8.534988], [47.37423, 8.544731], [47.376813, 8.520803], [47.390865, 8.523512], [47.386337, 8.497726], [47.392736, 8.524504], [47.340588, 8.519115], [47.408456, 8.546648], [47.407879, 8.58371], [47.366991, 8.544502], [47.368784, 8.537614], [47.374586, 8.538528], [47.378491, 8.527008], [47.399445, 8.497496], [47.419234, 8.547402], [47.348809, 8.563396], [47.35672, 8.523466], [47.369705, 8.51237], [47.413261, 8.532264], [47.364002, 8.528698], [47.375697, 8.537042], [47.381166, 8.491703], [47.370902, 8.548396], [47.331959, 8.52983], [47.385581, 8.520081], [47.366358, 8.541033], [47.387659, 8.486944], [47.399898, 8.467193], [47.371673, 8.488099], [47.357986, 8.572379], [47.385448, 8.530448], [47.38922, 8.494299], [47.378895, 8.530923], [47.342516, 8.522595], [47.403137, 8.555321], [47.362975, 8.517332], [47.39224, 8.502333], [47.379912, 8.544028], [47.365651, 8.566796], [47.375595, 8.545899], [47.35788, 8.532121], [47.368349, 8.551058], [47.412942, 8.540341], [47.423294, 8.504014], [47.379288, 8.537844], [47.37392, 8.519486], [47.405979, 8.546981], [47.3795, 8.525877], [47.335342, 8.541107], [47.370853, 8.52427], [47.371464, 8.545217], [47.399188, 8.522291], [47.354378, 8.557795], [47.36894, 8.507575], [47.422368, 8.550675], [47.334868, 8.531358], [47.384254, 8.4973], [47.374255, 8.524975], [47.359061, 8.550678], [47.408631, 8.549951], [47.342009, 8.519131], [47.364615, 8.554925], [47.388111, 8.526543], [47.358246, 8.521935], [47.355235, 8.608326], [47.374736, 8.520681], [47.398195, 8.535055], [47.370498, 8.549288], [47.386788, 8.54184], [47.357232, 8.550918], [47.38974, 8.512045], [47.420813, 8.548774], [47.360262, 8.566841], [47.361782, 8.549279], [47.378446, 8.510666], [47.378071, 8.567006], [47.406916, 8.550564], [47.419704, 8.505029], [47.37707, 8.543996], [47.390614, 8.533932], [47.418777, 8.507064], [47.332967, 8.518313], [47.379751, 8.516373], [47.388656, 8.520275], [47.41489, 8.541653], [47.35437, 8.552963], [47.389218, 8.482564], [47.362167, 8.547553], [47.409693, 8.544209], [47.343624, 8.519494], [47.379981, 8.536865], [47.366414, 8.540836], [47.410586, 8.486017], [47.364529, 8.546106], [47.408126, 8.547317], [47.387158, 8.535066], [47.42935, 8.544869], [47.414, 8.519703], [47.366583, 8.542018], [47.335919, 8.524896], [47.353055, 8.552274], [47.391889, 8.511148], [47.377433, 8.538998], [47.353005, 8.559222], [47.373698, 8.528778], [47.39473, 8.531433], [47.38558, 8.508597], [47.373001, 8.52066], [47.361347, 8.568095], [47.374695, 8.549694], [47.362435, 8.50477], [47.376921, 8.540801], [47.366883, 8.543507], [47.370062, 8.519421], [47.379543, 8.511668], [47.394151, 8.525116], [47.411144, 8.570913], [47.349845, 8.561392], [47.341149, 8.536846], [47.373447, 8.52002], [47.381841, 8.548386], [47.399015, 8.533058], [47.360216, 8.526701], [47.367984, 8.540325], [47.375991, 8.52121], [47.413931, 8.541262], [47.388737, 8.544039], [47.410694, 8.532622], [47.397523, 8.505976], [47.377927, 8.541842], [47.387036, 8.519421], [47.365148, 8.560219], [47.364541, 8.562576], [47.360924, 8.571833], [47.368503, 8.564923], [47.406303, 8.481176], [47.393582, 8.529224], [47.384033, 8.499839], [47.378681, 8.575415], [47.378129, 8.529159], [47.376766, 8.528734], [47.408048, 8.54224], [47.413666, 8.537944], [47.373628, 8.561456], [47.388284, 8.497314], [47.404128, 8.572765], [47.426492, 8.492679], [47.387347, 8.536951], [47.413885, 8.546999], [47.365228, 8.526499], [47.356788, 8.5844], [47.374518, 8.539984], [47.377206, 8.526823], [47.367116, 8.539844], [47.351291, 8.5763], [47.365449, 8.54676], [47.377165, 8.547256], [47.344434, 8.529979], [47.41982, 8.548157], [47.419927, 8.548252], [47.369165, 8.532485], [47.393883, 8.505664], [47.375607, 8.520911], [47.381665, 8.490269], [47.383535, 8.573082], [47.361729, 8.526481], [47.388673, 8.491083], [47.408028, 8.536781], [47.383601, 8.512544], [47.362098, 8.549087], [47.40548, 8.480763], [47.429966, 8.538837], [47.401426, 8.501165], [47.377515, 8.538907], [47.387134, 8.494139], [47.373863, 8.537971], [47.403485, 8.476484], [47.415442, 8.544183], [47.380065, 8.527967], [47.361953, 8.560377], [47.392476, 8.523426], [47.393404, 8.499058], [47.369329, 8.554878], [47.390565, 8.527679], [47.364636, 8.554608], [47.397383, 8.493785], [47.378022, 8.528085], [47.363958, 8.528539], [47.377412, 8.539249], [47.377467, 8.541978], [47.368358, 8.546397], [47.350245, 8.56193], [47.390847, 8.536851], [47.390615, 8.539482], [47.372731, 8.534902], [47.368113, 8.495748], [47.422258, 8.503132], [47.39111, 8.522312], [47.399455, 8.497364], [47.373421, 8.55311], [47.428014, 8.536888], [47.368042, 8.494688], [47.364595, 8.566205], [47.378946, 8.559397], [47.360596, 8.596727], [47.37017, 8.548831], [47.338891, 8.535887], [47.34909, 8.526567], [47.366093, 8.536817], [47.359761, 8.552652], [47.377565, 8.521189], [47.370465, 8.534895], [47.373382, 8.531724], [47.371465, 8.547839], [47.381872, 8.516562], [47.343604, 8.530214], [47.388677, 8.516117], [47.362167, 8.547526], [47.335063, 8.519281], [47.374273, 8.524088], [47.369936, 8.551634], [47.366584, 8.545619], [47.381215, 8.517595], [47.410132, 8.542522], [47.366377, 8.563396], [47.360322, 8.579075], [47.398481, 8.591603], [47.357924, 8.521664], [47.363345, 8.546717], [47.377132, 8.540316], [47.393591, 8.529158], [47.399189, 8.591909], [47.375541, 8.525054], [47.379967, 8.487018], [47.345192, 8.534508], [47.40168, 8.487127], [47.359215, 8.570009], [47.362075, 8.567329], [47.401775, 8.531313], [47.393399, 8.524717], [47.36201, 8.557346], [47.370417, 8.509273], [47.353578, 8.576111], [47.40172, 8.552072], [47.380926, 8.537706], [47.415586, 8.559068], [47.391122, 8.522922], [47.382879, 8.530952], [47.368815, 8.506513], [47.391463, 8.514438], [47.415143, 8.51485], [47.335094, 8.526546], [47.385598, 8.528849], [47.370181, 8.524972], [47.367924, 8.560621], [47.385156, 8.485133], [47.349108, 8.564064], [47.379803, 8.506866], [47.413003, 8.536764], [47.409918, 8.563798], [47.370717, 8.51672], [47.35948, 8.552911], [47.410748, 8.568175], [47.375133, 8.528224], [47.375889, 8.525313], [47.375532, 8.555207], [47.373088, 8.495648], [47.392128, 8.524055], [47.380924, 8.51792], [47.394778, 8.525433], [47.41913, 8.510756], [47.373261, 8.536939], [47.387642, 8.490798], [47.389971, 8.522024], [47.359383, 8.522448], [47.389172, 8.49459], [47.376734, 8.561111], [47.417728, 8.559007], [47.377476, 8.491882], [47.366806, 8.555315], [47.374379, 8.517562], [47.406265, 8.553757], [47.355361, 8.532162], [47.409899, 8.543405], [47.364234, 8.536422], [47.399935, 8.543198], [47.370794, 8.535246], [47.369096, 8.529292], [47.392908, 8.522415], [47.364632, 8.537198], [47.360287, 8.512353], [47.390816, 8.523896], [47.358604, 8.52692], [47.406754, 8.550535], [47.3765, 8.549082], [47.393447, 8.512902], [47.36719, 8.544334], [47.402597, 8.49214], [47.386802, 8.534701], [47.370734, 8.47051], [47.373027, 8.533094], [47.380165, 8.552417], [47.381978, 8.541568], [47.416348, 8.532129], [47.416348, 8.532115], [47.40027, 8.503593], [47.370831, 8.548289], [47.369636, 8.518804], [47.371388, 8.537125], [47.411493, 8.486181], [47.4293, 8.489553], [47.366979, 8.545693], [47.378845, 8.542801], [47.341149, 8.536846], [47.370143, 8.548791], [47.35894, 8.549246], [47.373513, 8.513903], [47.37639, 8.527548], [47.39909, 8.547752], [47.376995, 8.527349], [47.382364, 8.541642], [47.364557, 8.566482], [47.364669, 8.566034], [47.372575, 8.563354], [47.413039, 8.5462], [47.4028, 8.55387], [47.403148, 8.517271], [47.380623, 8.519305], [47.37436, 8.541463], [47.4178, 8.543953], [47.361477, 8.526502], [47.369454, 8.541852], [47.352165, 8.558675], [47.365016, 8.53841], [47.354743, 8.574746], [47.358388, 8.577259], [47.373986, 8.544819], [47.390418, 8.491157], [47.377575, 8.528711], [47.391133, 8.478734], [47.356457, 8.532264], [47.42042, 8.508317], [47.389877, 8.535745], [47.377465, 8.503879], [47.365635, 8.539496], [47.423776, 8.514123], [47.383518, 8.573002], [47.371371, 8.492608], [47.403991, 8.503005], [47.377898, 8.497942], [47.384806, 8.531746], [47.373729, 8.534062], [47.40592, 8.548437], [47.392283, 8.506493], [47.356594, 8.53588], [47.405209, 8.558704], [47.399704, 8.494772], [47.365547, 8.539322], [47.39688, 8.493709], [47.416628, 8.507949], [47.383497, 8.511085], [47.369545, 8.55573], [47.357092, 8.52219], [47.391535, 8.487934], [47.413062, 8.558723], [47.366522, 8.540904], [47.368123, 8.533298], [47.379747, 8.507103], [47.379721, 8.520597], [47.369248, 8.525615], [47.358405, 8.598109], [47.373385, 8.54282], [47.380892, 8.549704], [47.404641, 8.556969], [47.388318, 8.485593], [47.378619, 8.528732], [47.369293, 8.525655], [47.399657, 8.468037], [47.353965, 8.575166], [47.407299, 8.548174], [47.40346, 8.556362], [47.381585, 8.513563], [47.376635, 8.533075], [47.377683, 8.538208], [47.399722, 8.520023], [47.366392, 8.541246], [47.368228, 8.536491], [47.367418, 8.492067], [47.386158, 8.535271], [47.36655, 8.540786], [47.372928, 8.520737], [47.415675, 8.545168], [47.426996, 8.54649], [47.354226, 8.5521], [47.348451, 8.534257], [47.369248, 8.525601], [47.416558, 8.555258], [47.367098, 8.53983], [47.373558, 8.519717], [47.382624, 8.543595], [47.418015, 8.508772], [47.362726, 8.548425], [47.370502, 8.53573], [47.403605, 8.572873], [47.420708, 8.502544], [47.413864, 8.527453], [47.36401, 8.55147], [47.381084, 8.538173], [47.34235, 8.536329], [47.389846, 8.539983], [47.402021, 8.49813], [47.391779, 8.540989], [47.384425, 8.50321], [47.386753, 8.50233], [47.374966, 8.534484], [47.373922, 8.538329], [47.369565, 8.540623], [47.35403, 8.601165], [47.378752, 8.52798], [47.374571, 8.532556], [47.394665, 8.527869], [47.397898, 8.534135], [47.389905, 8.492127], [47.409952, 8.550032], [47.413623, 8.550956], [47.379569, 8.537559], [47.382816, 8.529997], [47.367886, 8.52985], [47.399744, 8.54342], [47.364824, 8.537784], [47.371819, 8.542841], [47.378209, 8.557487], [47.399661, 8.543564], [47.384141, 8.497814], [47.391437, 8.516265], [47.384119, 8.531097], [47.351828, 8.57655], [47.379126, 8.50815], [47.408639, 8.546321], [47.411151, 8.525237], [47.376098, 8.516498], [47.359654, 8.548824], [47.378139, 8.510766], [47.401128, 8.546323], [47.364468, 8.54866], [47.377495, 8.496676], [47.415923, 8.521863], [47.37683, 8.533357], [47.378537, 8.541113], [47.342971, 8.511395], [47.368774, 8.547995], [47.431337, 8.516463], [47.362015, 8.551177], [47.366815, 8.555289], [47.388279, 8.520188], [47.369765, 8.529015], [47.356505, 8.523422], [47.377819, 8.516202], [47.41239, 8.537772], [47.394238, 8.493392], [47.366438, 8.54498], [47.37732, 8.539552], [47.374783, 8.537685], [47.3667, 8.559748], [47.408014, 8.569058], [47.379833, 8.527738], [47.376767, 8.524815], [47.414725, 8.546672], [47.355648, 8.508195], [47.392488, 8.502749], [47.364593, 8.537475], [47.414759, 8.516419], [47.365538, 8.539322], [47.374195, 8.555774], [47.352968, 8.578653], [47.372732, 8.534875], [47.378844, 8.522036], [47.366527, 8.540308], [47.373586, 8.535846], [47.371317, 8.536025], [47.380017, 8.524484], [47.427069, 8.546399], [47.368654, 8.543715], [47.390891, 8.488557], [47.418856, 8.507318], [47.37902, 8.542354], [47.367083, 8.544318], [47.389665, 8.492864], [47.426077, 8.555087], [47.356516, 8.510662], [47.369022, 8.540943], [47.379039, 8.525126], [47.391706, 8.518205], [47.413299, 8.545304], [47.397518, 8.532471], [47.337169, 8.519112], [47.373287, 8.535099], [47.384954, 8.5322], [47.387479, 8.516212], [47.369928, 8.513487], [47.359789, 8.531909], [47.382476, 8.529871], [47.367051, 8.558802], [47.391799, 8.487608], [47.410501, 8.569548], [47.35966, 8.549129], [47.379304, 8.529515], [47.372544, 8.518518], [47.431318, 8.516516], [47.362176, 8.54754], [47.375454, 8.547458], [47.402403, 8.495673], [47.388176, 8.491365], [47.382718, 8.528075], [47.381466, 8.537704], [47.374336, 8.52409], [47.382535, 8.548202], [47.403871, 8.558477], [47.366773, 8.558717], [47.372741, 8.534862], [47.386834, 8.502318], [47.386223, 8.498346], [47.388633, 8.484658], [47.362369, 8.507046], [47.358419, 8.505259], [47.389781, 8.477979], [47.372991, 8.531279], [47.373164, 8.530078], [47.352961, 8.559181], [47.36396, 8.530299], [47.356568, 8.522378], [47.354536, 8.556302], [47.359661, 8.550982], [47.364633, 8.554859], [47.388214, 8.525154], [47.377824, 8.507899], [47.39569, 8.487102], [47.390933, 8.523011], [47.393881, 8.472164], [47.375741, 8.538102], [47.37612, 8.543685], [47.41471, 8.551019], [47.403968, 8.485781], [47.3809, 8.491274], [47.370965, 8.531462], [47.378963, 8.518834], [47.383725, 8.547909], [47.379839, 8.490273], [47.343968, 8.528858], [47.351837, 8.504969], [47.363752, 8.533274], [47.363914, 8.566905], [47.377993, 8.509068], [47.405194, 8.557511], [47.368647, 8.520637], [47.413924, 8.54859], [47.355769, 8.561769], [47.419062, 8.538108], [47.393474, 8.473454], [47.358449, 8.571092], [47.410779, 8.534081], [47.369239, 8.541728], [47.373832, 8.536447], [47.363245, 8.533634], [47.37017, 8.548792], [47.405997, 8.557263], [47.371642, 8.515878], [47.407871, 8.565266], [47.357675, 8.552569], [47.381638, 8.5309], [47.366007, 8.533492], [47.383274, 8.499161], [47.374277, 8.495473], [47.382404, 8.514467], [47.415169, 8.510067], [47.41443, 8.55308], [47.37673, 8.524827], [47.412312, 8.515495], [47.351821, 8.559806], [47.36798, 8.540828], [47.41676, 8.482666], [47.378997, 8.531534], [47.374985, 8.536299], [47.357993, 8.525809], [47.396855, 8.534126], [47.372057, 8.522441], [47.378788, 8.523174], [47.420418, 8.503678], [47.404549, 8.572006], [47.419246, 8.507922], [47.375375, 8.484544], [47.368778, 8.528743], [47.374167, 8.540917], [47.391088, 8.522802], [47.402037, 8.498342], [47.389825, 8.509663], [47.370785, 8.535246], [47.385811, 8.530058], [47.410149, 8.568693], [47.377672, 8.506783], [47.405068, 8.482517], [47.375573, 8.536894], [47.364041, 8.536007], [47.397811, 8.533828], [47.37535, 8.517622], [47.393141, 8.474507], [47.335422, 8.519355], [47.362443, 8.612522], [47.370143, 8.548818], [47.372595, 8.574146], [47.37946, 8.544271], [47.369763, 8.5368], [47.378848, 8.542417], [47.376831, 8.541793], [47.360872, 8.588923], [47.398238, 8.534354], [47.362168, 8.547513], [47.386444, 8.52684], [47.364903, 8.519899], [47.348302, 8.563729], [47.415746, 8.512835], [47.410468, 8.532763], [47.343528, 8.53544], [47.367368, 8.541703], [47.380499, 8.493848], [47.376319, 8.499447], [47.376851, 8.520658], [47.374536, 8.539971], [47.400124, 8.586551], [47.369932, 8.547383], [47.399149, 8.521681], [47.366102, 8.506115], [47.373025, 8.533359], [47.391643, 8.513461], [47.370152, 8.548791], [47.382997, 8.514625], [47.395259, 8.519164], [47.371908, 8.539175], [47.377787, 8.507991], [47.378499, 8.519407], [47.369123, 8.529346], [47.375651, 8.512291], [47.386289, 8.551604], [47.361141, 8.600671], [47.367969, 8.53438], [47.370016, 8.5329], [47.386971, 8.534903], [47.367529, 8.546526], [47.37329, 8.52906], [47.369041, 8.537977], [47.393198, 8.493014], [47.411858, 8.563216], [47.365343, 8.545646], [47.382296, 8.488123], [47.370561, 8.528515], [47.361855, 8.526497], [47.361504, 8.561294], [47.388663, 8.496169], [47.354108, 8.561509], [47.384297, 8.528465], [47.372619, 8.534383], [47.397833, 8.541857], [47.373823, 8.536487], [47.388494, 8.487053], [47.387036, 8.485117], [47.378788, 8.528921], [47.35278, 8.572163], [47.390506, 8.487384], [47.373332, 8.531339], [47.366901, 8.536053], [47.366372, 8.540504], [47.37874, 8.494396], [47.388674, 8.510554], [47.383151, 8.541169], [47.353621, 8.576284], [47.387345, 8.495693], [47.366702, 8.563244], [47.3261, 8.514879], [47.376268, 8.522368], [47.374227, 8.52418], [47.392239, 8.494677], [47.383161, 8.53068], [47.3743, 8.543965], [47.377711, 8.538169], [47.386565, 8.490432], [47.390685, 8.508144], [47.409004, 8.579044], [47.368835, 8.52836], [47.371316, 8.531417], [47.414967, 8.527807], [47.366419, 8.545073], [47.375917, 8.541376], [47.376289, 8.536312], [47.377135, 8.541958], [47.359809, 8.558915], [47.413669, 8.529105], [47.358246, 8.587966], [47.362552, 8.548673], [47.377258, 8.528043], [47.4143, 8.518398], [47.360585, 8.550247], [47.387744, 8.52733], [47.377188, 8.540105], [47.378997, 8.494746], [47.403265, 8.547653], [47.376944, 8.554296], [47.364586, 8.566218], [47.3771, 8.540885], [47.404986, 8.576957], [47.374775, 8.489233], [47.358262, 8.587304], [47.408138, 8.580178], [47.428047, 8.545664], [47.396454, 8.472134], [47.380102, 8.486981], [47.377071, 8.535388], [47.392504, 8.532832], [47.374663, 8.525593], [47.374805, 8.551338], [47.403748, 8.565563], [47.373553, 8.536428], [47.391142, 8.538936], [47.365424, 8.545608], [47.417663, 8.546124], [47.374473, 8.495729], [47.409817, 8.543536], [47.376803, 8.522842], [47.375148, 8.525722], [47.376741, 8.521782], [47.369689, 8.525584], [47.388572, 8.520512], [47.37482, 8.543208], [47.393039, 8.50737], [47.382396, 8.537352], [47.395673, 8.506561], [47.417321, 8.522355], [47.37458, 8.487878], [47.372945, 8.531357], [47.389391, 8.521509], [47.366639, 8.505437], [47.392532, 8.491067], [47.370353, 8.539037], [47.362144, 8.559242], [47.391114, 8.522842], [47.383416, 8.499402], [47.384702, 8.531281], [47.369023, 8.53795], [47.376857, 8.541873], [47.356462, 8.53552], [47.423043, 8.543214], [47.340211, 8.535186], [47.395651, 8.545256], [47.41736, 8.538285], [47.391488, 8.519472], [47.399723, 8.491672], [47.368662, 8.543782], [47.399876, 8.504446], [47.416424, 8.514425], [47.412133, 8.523137], [47.417442, 8.545695], [47.368306, 8.547111], [47.388898, 8.540347], [47.381043, 8.532027], [47.40957, 8.544896], [47.342173, 8.530356], [47.391004, 8.523105], [47.41969, 8.508461], [47.3743, 8.524963], [47.361467, 8.561399], [47.387162, 8.533675], [47.371169, 8.527945], [47.406141, 8.535616], [47.361363, 8.576621], [47.368698, 8.540936], [47.367785, 8.539527], [47.376694, 8.526747], [47.40007, 8.490089], [47.377846, 8.541893], [47.363256, 8.535289], [47.411189, 8.546745], [47.373871, 8.576147], [47.405349, 8.578488], [47.388188, 8.480133], [47.390635, 8.491996], [47.379269, 8.537963], [47.370188, 8.548805], [47.369166, 8.532445], [47.409853, 8.549102], [47.373107, 8.523707], [47.365872, 8.548636], [47.431361, 8.516702], [47.374912, 8.53161], [47.398359, 8.539549], [47.362469, 8.53383], [47.373785, 8.51947], [47.411859, 8.512027], [47.364988, 8.553556], [47.356631, 8.522379], [47.378634, 8.51945], [47.375045, 8.52809], [47.393701, 8.474187], [47.338434, 8.539503], [47.370717, 8.516707], [47.378669, 8.519517], [47.400033, 8.546049], [47.361694, 8.560212], [47.371973, 8.601424], [47.409008, 8.550078], [47.35767, 8.554065], [47.393339, 8.495335], [47.384779, 8.529852], [47.374593, 8.538688], [47.383237, 8.53974], [47.363758, 8.535432], [47.377247, 8.512853], [47.385338, 8.508473], [47.404823, 8.565148], [47.354315, 8.557754], [47.395821, 8.506207], [47.338372, 8.53937], [47.381164, 8.53726], [47.377435, 8.526444], [47.40101, 8.546467], [47.340057, 8.530551], [47.388503, 8.491014], [47.37447, 8.543081], [47.374425, 8.521271], [47.377549, 8.543781], [47.376809, 8.544017], [47.416265, 8.544571], [47.410877, 8.563262], [47.391066, 8.522258], [47.372194, 8.535553], [47.378217, 8.527466], [47.390575, 8.545548], [47.367198, 8.545446], [47.377, 8.541889], [47.401336, 8.490379], [47.368046, 8.507928], [47.377231, 8.525168], [47.354916, 8.526845], [47.374786, 8.55241], [47.384152, 8.494662], [47.410379, 8.54588], [47.372888, 8.524047], [47.370281, 8.509442], [47.368194, 8.559713], [47.334945, 8.519372], [47.384954, 8.531326], [47.380128, 8.520327], [47.409485, 8.537752], [47.364973, 8.538264], [47.376112, 8.524603], [47.381726, 8.499356], [47.385831, 8.5299], [47.395723, 8.508046], [47.390405, 8.539809], [47.379731, 8.524279], [47.36073, 8.522687], [47.397393, 8.532336], [47.412862, 8.53639], [47.366797, 8.542207], [47.360864, 8.534221], [47.37019, 8.521092], [47.364765, 8.537399], [47.367269, 8.541754], [47.392414, 8.545149], [47.397898, 8.534135], [47.370058, 8.564122], [47.351916, 8.505222], [47.365808, 8.550568], [47.387051, 8.489422], [47.412166, 8.538668], [47.369801, 8.508784], [47.398702, 8.586626], [47.379312, 8.511319], [47.36575, 8.500401], [47.360033, 8.523176], [47.394724, 8.525432], [47.355891, 8.557509], [47.376356, 8.528315], [47.37111, 8.531333], [47.363478, 8.499946], [47.394212, 8.480383], [47.372486, 8.545556], [47.426831, 8.534558], [47.37539, 8.547589], [47.373526, 8.527874], [47.392129, 8.524028], [47.368933, 8.528468], [47.387511, 8.500106], [47.393022, 8.514059], [47.400337, 8.543472], [47.378659, 8.496368], [47.404423, 8.580244], [47.373439, 8.542808], [47.364249, 8.531113], [47.373842, 8.537308], [47.403551, 8.57107], [47.41956, 8.505105], [47.363453, 8.506525], [47.384181, 8.507205], [47.360418, 8.569307], [47.372311, 8.544136], [47.353746, 8.575492], [47.370886, 8.531249], [47.406952, 8.550552], [47.387456, 8.528278], [47.417697, 8.541632], [47.353308, 8.576145], [47.363642, 8.535364], [47.410786, 8.558702], [47.408942, 8.545611], [47.378208, 8.528353], [47.408972, 8.548169], [47.359613, 8.548453], [47.365402, 8.546945], [47.366935, 8.543812], [47.405255, 8.557685], [47.367164, 8.534867], [47.372311, 8.544096], [47.363771, 8.551002], [47.378294, 8.528805], [47.361427, 8.57653], [47.362602, 8.519734], [47.361303, 8.562494], [47.374471, 8.540234], [47.37892, 8.546219], [47.386226, 8.528027], [47.403483, 8.497523], [47.373949, 8.526015], [47.369364, 8.520016], [47.403345, 8.567303], [47.387678, 8.499593], [47.391808, 8.484615], [47.344263, 8.527104], [47.366656, 8.534366], [47.373334, 8.53306], [47.371306, 8.537282], [47.419924, 8.547655], [47.422708, 8.550934], [47.383246, 8.529291], [47.367251, 8.537053], [47.394197, 8.49004], [47.3779, 8.541868], [47.36908, 8.541487], [47.401749, 8.505133], [47.384901, 8.509034], [47.389254, 8.5274], [47.373033, 8.483968], [47.374682, 8.537882], [47.380224, 8.506146], [47.368119, 8.578367], [47.373147, 8.503939], [47.366821, 8.506103], [47.409394, 8.522697], [47.368565, 8.524608], [47.355219, 8.55449], [47.391802, 8.517611], [47.368409, 8.511444], [47.390746, 8.539908], [47.392266, 8.533343], [47.36051, 8.50771], [47.386231, 8.497525], [47.386233, 8.498319], [47.425806, 8.547712], [47.375032, 8.539888], [47.377837, 8.528664], [47.372033, 8.522149], [47.393676, 8.501753], [47.400444, 8.493515], [47.389024, 8.522283], [47.392133, 8.510107], [47.405572, 8.549967], [47.348315, 8.562406], [47.35477, 8.523294], [47.375875, 8.541084], [47.386344, 8.531751], [47.378326, 8.527349], [47.416789, 8.572266], [47.367908, 8.497558], [47.388265, 8.540639], [47.369022, 8.540956], [47.365502, 8.549687], [47.38457, 8.509809], [47.377256, 8.538716], [47.373807, 8.544736], [47.404814, 8.483731], [47.383973, 8.515982], [47.418589, 8.507975], [47.369582, 8.518776], [47.375568, 8.517322], [47.387264, 8.535227], [47.427274, 8.543766], [47.376776, 8.538084], [47.369744, 8.543486], [47.381133, 8.504085], [47.390921, 8.523315], [47.400018, 8.541981], [47.331349, 8.537266], [47.366556, 8.54485], [47.391371, 8.537524], [47.405239, 8.557525], [47.385173, 8.507914], [47.390923, 8.522123], [47.413598, 8.536538], [47.36315, 8.532176], [47.365413, 8.552386], [47.394819, 8.525818], [47.428817, 8.545097], [47.423012, 8.541663], [47.377149, 8.529126], [47.362344, 8.504848], [47.378235, 8.530314], [47.397938, 8.535619], [47.36095, 8.599118], [47.365933, 8.562777], [47.372965, 8.547128], [47.378004, 8.547988], [47.384368, 8.548438], [47.405139, 8.481591], [47.383717, 8.533684], [47.335297, 8.541145], [47.367134, 8.541724], [47.414036, 8.541556], [47.403178, 8.548314], [47.378137, 8.510024], [47.408804, 8.579291], [47.370206, 8.548819], [47.363987, 8.5312], [47.386027, 8.505017], [47.377118, 8.521855], [47.343274, 8.519434], [47.371768, 8.534048], [47.389041, 8.471328], [47.353933, 8.577469], [47.385947, 8.493188], [47.380034, 8.536972], [47.368557, 8.539741], [47.374031, 8.542926], [47.377896, 8.521368], [47.363986, 8.533173], [47.355244, 8.527368], [47.367539, 8.53036], [47.357821, 8.526931], [47.371596, 8.515944], [47.421717, 8.550131], [47.40375, 8.570889], [47.365179, 8.567197], [47.370289, 8.539142], [47.400211, 8.477546], [47.415205, 8.549174], [47.405275, 8.480533], [47.384596, 8.496314], [47.38831, 8.485553], [47.380737, 8.536815], [47.378839, 8.542457], [47.368167, 8.529604], [47.381597, 8.517113], [47.373832, 8.536487], [47.357567, 8.508843], [47.356577, 8.522418], [47.370288, 8.541207], [47.409206, 8.546293], [47.402512, 8.492549], [47.363355, 8.534299], [47.415922, 8.53815], [47.363601, 8.516788], [47.407622, 8.566824], [47.372666, 8.503373], [47.409703, 8.482223], [47.363859, 8.556776], [47.381083, 8.537325], [47.383316, 8.530418], [47.409338, 8.575288], [47.379046, 8.542474], [47.365046, 8.545666], [47.350889, 8.561282], [47.373506, 8.484295], [47.36651, 8.535462], [47.361626, 8.565414], [47.412261, 8.523816], [47.390286, 8.53623], [47.399004, 8.50529], [47.391131, 8.487886], [47.417094, 8.510118], [47.373532, 8.519664], [47.37762, 8.542008], [47.422345, 8.538971], [47.366903, 8.544328], [47.374108, 8.527237], [47.398404, 8.537669], [47.363354, 8.533425], [47.368456, 8.496563], [47.370444, 8.524673], [47.374158, 8.530508], [47.416821, 8.537227], [47.400701, 8.548673], [47.377713, 8.525562], [47.377233, 8.52685], [47.378884, 8.527268], [47.370637, 8.49119], [47.378281, 8.540631], [47.38799, 8.491017], [47.350253, 8.56287], [47.369597, 8.528654], [47.38802, 8.482766], [47.377467, 8.531609], [47.402351, 8.499329], [47.386426, 8.503674], [47.369532, 8.491023], [47.379394, 8.500554], [47.382521, 8.514483], [47.341408, 8.53038], [47.385032, 8.500746], [47.375959, 8.541642], [47.331003, 8.53677], [47.385559, 8.535801], [47.347743, 8.525415], [47.344103, 8.528821], [47.370703, 8.55876], [47.374467, 8.52155], [47.380924, 8.578747], [47.3764, 8.559462], [47.379356, 8.521133], [47.42099, 8.502139], [47.396402, 8.482943], [47.362513, 8.547149], [47.380203, 8.526672], [47.373524, 8.553536], [47.369324, 8.527099], [47.377162, 8.540052], [47.38125, 8.49136], [47.395541, 8.517872], [47.412533, 8.516864], [47.377173, 8.51305], [47.36244, 8.554734], [47.413747, 8.546467], [47.392112, 8.492727], [47.421887, 8.545496], [47.372005, 8.559966], [47.40872, 8.544388], [47.403164, 8.555388], [47.375623, 8.527824], [47.358028, 8.532627], [47.383714, 8.540571], [47.363842, 8.566877], [47.374906, 8.524631], [47.369178, 8.525454], [47.420862, 8.549199], [47.405747, 8.481006], [47.365098, 8.567221], [47.378057, 8.541487], [47.368341, 8.560312], [47.382103, 8.541663], [47.38583, 8.530019], [47.404173, 8.561703], [47.364686, 8.548452], [47.386899, 8.501207], [47.414733, 8.519188], [47.373867, 8.538408], [47.396878, 8.529795], [47.352677, 8.576211], [47.373311, 8.55516], [47.376243, 8.544932], [47.335771, 8.54052], [47.388153, 8.520186], [47.389841, 8.511796], [47.365724, 8.523464], [47.371592, 8.555217], [47.391373, 8.516291], [47.359184, 8.521623], [47.363607, 8.533364], [47.390153, 8.545526], [47.355153, 8.587806], [47.384624, 8.509889], [47.382388, 8.541007], [47.383208, 8.499531], [47.391454, 8.513484], [47.367234, 8.54072], [47.353717, 8.57201], [47.409597, 8.53733], [47.366661, 8.520425], [47.385383, 8.508554], [47.336352, 8.51416], [47.360402, 8.579222], [47.36473, 8.554199], [47.402929, 8.575747], [47.378543, 8.50402], [47.387373, 8.529441], [47.371864, 8.535308], [47.38677, 8.541787], [47.391618, 8.517077], [47.382637, 8.537542], [47.380486, 8.493213], [47.398714, 8.533396], [47.427178, 8.491393], [47.381096, 8.579572], [47.419607, 8.498997], [47.403277, 8.489557], [47.374931, 8.492877], [47.378748, 8.531238], [47.341066, 8.519879], [47.379549, 8.516806], [47.396296, 8.503461], [47.372347, 8.494124], [47.35429, 8.575967], [47.382168, 8.532023], [47.41221, 8.550052], [47.367291, 8.541383], [47.405106, 8.482279], [47.360633, 8.476497], [47.39141, 8.540081], [47.390838, 8.550957], [47.393275, 8.493439], [47.381918, 8.536534], [47.378005, 8.527952], [47.397726, 8.53331], [47.390829, 8.48547], [47.338471, 8.531842], [47.367074, 8.523373], [47.407162, 8.538022], [47.393901, 8.533496], [47.370143, 8.548804], [47.391221, 8.522937], [47.405111, 8.481749], [47.415132, 8.513087], [47.411079, 8.535651], [47.366349, 8.541033], [47.373493, 8.553072], [47.375563, 8.484693], [47.378357, 8.541109], [47.398606, 8.494803], [47.353245, 8.555825], [47.392206, 8.489378], [47.421107, 8.549946], [47.390058, 8.476196], [47.393683, 8.545056], [47.383859, 8.527211], [47.387068, 8.547356], [47.346245, 8.564361], [47.394183, 8.517924], [47.395597, 8.546169], [47.430955, 8.550125], [47.387773, 8.527118], [47.367377, 8.521777], [47.378536, 8.517448], [47.378692, 8.516127], [47.397936, 8.53391], [47.393487, 8.539184], [47.376938, 8.532353], [47.42836, 8.51737], [47.38351, 8.574697], [47.348451, 8.534217], [47.387103, 8.518946], [47.390958, 8.523223], [47.403297, 8.555537], [47.387429, 8.49731], [47.393468, 8.52701], [47.36402, 8.536272], [47.373094, 8.532671], [47.37445, 8.530077], [47.349005, 8.517353], [47.369242, 8.559193], [47.387014, 8.518798], [47.371424, 8.516099], [47.37405, 8.515186], [47.414251, 8.539785], [47.384903, 8.495141], [47.369106, 8.541567], [47.380926, 8.497274], [47.377732, 8.52543], [47.42383, 8.518949], [47.367644, 8.536346], [47.38516, 8.537078], [47.41124, 8.572174], [47.3448, 8.533163], [47.374282, 8.524989], [47.403046, 8.534823], [47.374281, 8.524128], [47.402068, 8.498793], [47.373137, 8.532964], [47.366788, 8.553461], [47.370234, 8.525079], [47.372515, 8.478516], [47.369726, 8.536945], [47.413557, 8.546529], [47.366478, 8.540758], [47.403692, 8.503211], [47.366745, 8.545755], [47.364542, 8.537209], [47.372349, 8.517217], [47.380432, 8.483411], [47.373968, 8.519223], [47.376496, 8.539111], [47.391565, 8.542654], [47.385336, 8.508712], [47.372891, 8.51985], [47.369707, 8.541764], [47.384984, 8.530982], [47.349874, 8.533995], [47.383073, 8.572423], [47.357594, 8.508896], [47.371019, 8.52381], [47.393629, 8.511673], [47.429007, 8.545034], [47.366764, 8.541902], [47.414235, 8.550916], [47.403871, 8.569619], [47.414559, 8.520576], [47.408596, 8.58032], [47.348118, 8.563249], [47.377873, 8.492737], [47.411448, 8.527085], [47.363075, 8.517254], [47.387545, 8.529326], [47.413695, 8.541536], [47.408422, 8.547403], [47.393401, 8.524571], [47.390213, 8.540189], [47.414042, 8.546671], [47.399563, 8.505222], [47.368154, 8.524255], [47.406631, 8.531452], [47.37262, 8.542818], [47.370896, 8.530163], [47.408178, 8.531457], [47.403398, 8.585628], [47.341318, 8.527533], [47.374975, 8.534498], [47.376648, 8.527898], [47.385221, 8.517199], [47.358641, 8.585366], [47.373533, 8.547087], [47.364137, 8.536287], [47.375056, 8.54014], [47.357597, 8.51341], [47.382198, 8.544937], [47.41508, 8.483495], [47.405252, 8.558016], [47.413949, 8.548777], [47.39206, 8.523709], [47.397794, 8.511678], [47.3832, 8.530362], [47.38623, 8.518067], [47.369652, 8.536176], [47.406922, 8.58679], [47.37465, 8.54964], [47.413884, 8.548126], [47.375923, 8.527446], [47.394269, 8.528841], [47.367954, 8.546283], [47.384903, 8.495154], [47.373807, 8.537228], [47.397042, 8.532382], [47.384178, 8.516198], [47.380617, 8.518987], [47.374479, 8.525112], [47.384057, 8.526248], [47.353369, 8.564339], [47.367653, 8.53922], [47.377773, 8.541958], [47.390471, 8.512709], [47.368546, 8.546533], [47.356379, 8.535757], [47.413589, 8.572039], [47.375974, 8.559705], [47.383594, 8.53143], [47.339496, 8.528026], [47.38426, 8.548396], [47.370066, 8.512245], [47.406687, 8.585089], [47.376882, 8.523983], [47.376109, 8.527741], [47.375658, 8.535505], [47.36989, 8.510864], [47.370723, 8.470695], [47.371567, 8.542889], [47.389435, 8.538769], [47.371271, 8.547504], [47.379999, 8.548149], [47.40524, 8.533901], [47.417727, 8.546006], [47.369366, 8.528424], [47.364101, 8.531547], [47.390118, 8.52355], [47.405637, 8.577514], [47.369763, 8.509922], [47.384823, 8.5318], [47.338915, 8.539037], [47.374937, 8.543237], [47.369783, 8.509737], [47.348785, 8.534052], [47.41587, 8.546378], [47.333913, 8.515262], [47.406327, 8.563139], [47.344869, 8.533442], [47.3462, 8.534449], [47.381709, 8.545205], [47.359635, 8.522427], [47.405232, 8.504911], [47.366492, 8.544889], [47.421638, 8.538626], [47.39364, 8.511488], [47.373424, 8.53489], [47.390698, 8.488977], [47.384655, 8.509387], [47.366857, 8.557474], [47.405682, 8.533751], [47.405366, 8.533957], [47.382799, 8.52993], [47.399657, 8.46805], [47.353502, 8.576533], [47.362974, 8.546921], [47.371751, 8.513855], [47.401573, 8.494942], [47.369601, 8.554645], [47.398696, 8.590786], [47.376057, 8.54183], [47.356572, 8.523927], [47.373617, 8.536377], [47.370581, 8.52453], [47.368538, 8.524581], [47.402938, 8.575747], [47.382799, 8.48616], [47.41015, 8.486538], [47.381183, 8.538161], [47.378556, 8.542001], [47.388976, 8.515831], [47.384399, 8.531923], [47.36273, 8.561915], [47.399195, 8.521523], [47.384846, 8.495484], [47.417027, 8.523012], [47.370161, 8.548831], [47.406764, 8.550429], [47.378789, 8.527822], [47.404371, 8.574519], [47.351598, 8.560582], [47.409273, 8.544929], [47.381484, 8.532976], [47.396764, 8.529422], [47.361159, 8.547664], [47.372743, 8.538358], [47.390984, 8.509766], [47.360224, 8.547618], [47.404819, 8.556324], [47.379121, 8.538344], [47.36719, 8.523521], [47.370161, 8.548844], [47.418734, 8.507766], [47.383412, 8.499906], [47.370689, 8.51676], [47.410472, 8.572516], [47.390801, 8.521763], [47.417799, 8.504845], [47.376864, 8.528789], [47.375866, 8.491876], [47.367395, 8.541756], [47.4193, 8.507936], [47.400171, 8.516217], [47.370075, 8.504394], [47.37829, 8.540618], [47.383298, 8.530431], [47.390594, 8.539786], [47.377638, 8.541995], [47.409947, 8.541233], [47.386858, 8.526782], [47.357494, 8.552671], [47.355868, 8.535574], [47.365066, 8.525596], [47.359801, 8.512422], [47.394525, 8.525561], [47.346838, 8.526931], [47.378904, 8.529016], [47.381776, 8.489914], [47.368759, 8.528796], [47.368779, 8.540898], [47.382305, 8.48807], [47.393354, 8.524782], [47.38077, 8.518976], [47.379702, 8.558393], [47.395494, 8.540046], [47.369571, 8.541801], [47.372072, 8.549361], [47.362685, 8.555401], [47.371402, 8.54789], [47.414095, 8.550436], [47.340105, 8.529308], [47.408395, 8.536987], [47.403465, 8.571572], [47.373388, 8.553652], [47.397069, 8.530448], [47.393046, 8.492931], [47.418034, 8.515372], [47.359572, 8.569395], [47.377491, 8.482281], [47.392671, 8.523721], [47.378289, 8.530275], [47.386232, 8.498333], [47.349979, 8.564215], [47.372362, 8.51772], [47.381526, 8.540804], [47.38077, 8.51899], [47.376052, 8.559137], [47.37076, 8.548248], [47.357333, 8.550801], [47.374449, 8.551887], [47.377725, 8.527099], [47.36993, 8.552203], [47.415368, 8.54809], [47.392297, 8.54516], [47.391695, 8.519397], [47.346297, 8.564507], [47.391952, 8.517905], [47.399591, 8.516695], [47.375266, 8.544581], [47.414385, 8.518956], [47.366806, 8.555315], [47.354071, 8.57534], [47.375872, 8.54515], [47.399144, 8.547832], [47.410783, 8.545941], [47.374163, 8.541353], [47.41441, 8.551344], [47.413634, 8.528999], [47.365421, 8.546866], [47.377226, 8.539907], [47.410706, 8.550259], [47.391931, 8.518209], [47.405803, 8.590701], [47.381808, 8.516667], [47.369284, 8.525668], [47.368884, 8.528984], [47.42724, 8.546376], [47.39241, 8.523729], [47.374974, 8.544946], [47.419161, 8.54748], [47.402014, 8.497812], [47.34292, 8.535943], [47.363209, 8.533567], [47.373391, 8.519277], [47.409816, 8.543629], [47.370581, 8.524477], [47.366927, 8.517968], [47.374665, 8.535921], [47.394549, 8.514368], [47.418197, 8.542027], [47.414402, 8.518996], [47.373059, 8.534498], [47.353985, 8.574981], [47.373617, 8.536377], [47.372312, 8.525995], [47.381373, 8.536126], [47.364993, 8.553066], [47.370542, 8.524767], [47.382902, 8.555825], [47.378491, 8.526995], [47.395456, 8.535555], [47.397493, 8.536021], [47.362541, 8.533885], [47.388031, 8.514925], [47.375555, 8.548228], [47.37749, 8.544322], [47.406365, 8.573011], [47.338222, 8.539036], [47.377717, 8.507817], [47.409484, 8.572323], [47.380092, 8.522273], [47.362509, 8.567034], [47.379961, 8.53709], [47.366846, 8.499576], [47.408986, 8.54385], [47.430946, 8.550152], [47.409268, 8.55007], [47.362356, 8.567084], [47.368497, 8.538429], [47.367963, 8.546296], [47.358237, 8.57159], [47.354332, 8.557847], [47.369984, 8.510416], [47.390683, 8.508276], [47.410082, 8.545012], [47.399999, 8.545836], [47.38368, 8.515645], [47.410958, 8.535211], [47.371993, 8.534966], [47.37732, 8.512735], [47.378979, 8.559636], [47.360357, 8.525089], [47.41274, 8.545438], [47.422079, 8.509914], [47.366461, 8.520686], [47.37102, 8.537952], [47.41912, 8.507933], [47.365627, 8.539469], [47.3676, 8.496744], [47.3695, 8.521793], [47.420096, 8.548454], [47.373271, 8.529179], [47.407157, 8.550728], [47.340006, 8.530286], [47.391758, 8.481183], [47.382727, 8.486158], [47.375398, 8.524972], [47.380386, 8.501223], [47.371177, 8.537584], [47.37505, 8.544603], [47.398978, 8.541642], [47.394207, 8.489921], [47.368067, 8.541095], [47.366779, 8.53564], [47.400394, 8.51642], [47.37297, 8.534417], [47.413731, 8.524442], [47.390362, 8.544351], [47.37994, 8.55608], [47.404659, 8.498766], [47.422832, 8.550194], [47.377278, 8.551429], [47.377224, 8.551402], [47.370168, 8.563846], [47.405505, 8.550455], [47.381548, 8.532885], [47.38504, 8.494958], [47.37302, 8.532948], [47.378534, 8.541404], [47.368386, 8.551005], [47.37304, 8.52695], [47.349305, 8.529497], [47.37876, 8.542309], [47.402056, 8.499138], [47.396769, 8.529859], [47.382948, 8.515061], [47.378428, 8.54029], [47.391767, 8.51753], [47.372608, 8.545916], [47.400728, 8.54866], [47.389109, 8.530444], [47.343214, 8.530576], [47.403766, 8.567471], [47.415004, 8.546691], [47.362303, 8.54835], [47.350186, 8.560592], [47.397042, 8.530447], [47.365479, 8.538883], [47.384922, 8.524146], [47.390592, 8.524845], [47.375202, 8.553068], [47.392701, 8.524384], [47.375009, 8.532764], [47.411139, 8.563148], [47.37659, 8.538729], [47.367871, 8.544639], [47.371001, 8.538137], [47.366334, 8.520829], [47.38728, 8.487996], [47.40225, 8.493749], [47.367978, 8.544774], [47.361548, 8.561387], [47.36711, 8.54424], [47.366473, 8.5366], [47.382423, 8.529698], [47.376074, 8.559641], [47.357907, 8.514807], [47.410365, 8.5436], [47.359703, 8.586184], [47.402883, 8.55464], [47.365006, 8.553503], [47.402083, 8.499191], [47.36634, 8.547653], [47.362181, 8.50499], [47.366798, 8.543081], [47.388966, 8.520745], [47.359698, 8.535799], [47.387866, 8.498696], [47.371203, 8.575785], [47.386761, 8.469761], [47.381554, 8.533123], [47.376528, 8.532888], [47.421952, 8.548161], [47.410971, 8.536616], [47.378768, 8.539502], [47.374476, 8.521643], [47.374631, 8.523301], [47.368191, 8.497021], [47.400253, 8.547484], [47.42069, 8.502517], [47.363377, 8.50794], [47.393181, 8.513479], [47.377672, 8.521258], [47.386243, 8.533868], [47.401103, 8.588466], [47.413044, 8.556828], [47.407206, 8.526747], [47.409301, 8.528738], [47.379908, 8.494512], [47.399716, 8.519732], [47.362186, 8.547513], [47.362593, 8.519707], [47.410883, 8.54491], [47.410892, 8.54491], [47.377657, 8.543743], [47.377143, 8.540131], [47.365391, 8.564805], [47.370167, 8.524495], [47.373067, 8.536511], [47.359481, 8.522596], [47.389944, 8.480949], [47.381346, 8.534284], [47.379315, 8.537831], [47.399765, 8.516341], [47.418874, 8.503329], [47.377467, 8.541978], [47.410877, 8.535157], [47.393761, 8.509106], [47.414621, 8.514892], [47.382731, 8.539928], [47.37256, 8.529218], [47.374856, 8.540428], [47.366864, 8.520853], [47.366869, 8.532729], [47.363044, 8.550867], [47.374564, 8.541733], [47.370125, 8.548804], [47.40524, 8.505031], [47.370785, 8.535285], [47.36659, 8.546003], [47.405255, 8.480732], [47.392303, 8.533225], [47.385104, 8.526839], [47.379475, 8.527611], [47.396529, 8.528596], [47.374789, 8.529475], [47.370992, 8.53141], [47.368216, 8.497233], [47.375102, 8.556866], [47.374353, 8.524183], [47.415095, 8.513179], [47.370561, 8.524715], [47.373972, 8.538794], [47.377898, 8.507662], [47.38675, 8.526872], [47.400709, 8.548699], [47.378417, 8.509884], [47.36712, 8.544187], [47.368547, 8.524581], [47.372992, 8.562092], [47.392672, 8.475664], [47.381992, 8.528722], [47.400719, 8.548673], [47.340939, 8.53143], [47.424861, 8.537393], [47.359868, 8.521637], [47.373457, 8.519993], [47.392988, 8.524417], [47.360203, 8.523312], [47.382857, 8.575239], [47.378095, 8.483194], [47.36573, 8.521836], [47.365976, 8.545275], [47.357954, 8.52046], [47.371197, 8.511553], [47.413634, 8.528999], [47.393003, 8.530471], [47.370802, 8.54952], [47.356551, 8.534688], [47.398953, 8.541456], [47.405043, 8.557269], [47.399172, 8.591803], [47.354106, 8.575487], [47.376733, 8.53505], [47.40766, 8.584023], [47.376092, 8.540956], [47.349846, 8.561273], [47.379153, 8.508084], [47.390652, 8.479228], [47.385358, 8.507308], [47.391196, 8.538911], [47.364984, 8.553053], [47.386197, 8.526318], [47.406925, 8.550565], [47.393001, 8.492917], [47.378749, 8.545328], [47.406842, 8.550735], [47.407428, 8.493984], [47.366799, 8.542896], [47.375879, 8.527405], [47.384737, 8.500488], [47.369027, 8.492165], [47.376948, 8.543609], [47.367626, 8.523066], [47.377252, 8.541907], [47.340284, 8.530371], [47.404318, 8.493804], [47.37017, 8.548805], [47.330046, 8.534302], [47.373399, 8.502897], [47.375106, 8.518689], [47.367149, 8.540189], [47.377569, 8.526486], [47.423731, 8.549338], [47.3801, 8.528048], [47.359713, 8.522733], [47.41762, 8.483068], [47.344245, 8.530055], [47.394712, 8.525724], [47.361006, 8.531629], [47.386173, 8.498928], [47.354936, 8.554894], [47.40446, 8.53362], [47.429644, 8.487227], [47.375054, 8.537532], [47.404605, 8.505628], [47.392733, 8.539088], [47.361059, 8.531657], [47.365478, 8.535229], [47.392056, 8.497919], [47.354077, 8.553526], [47.374463, 8.540075], [47.353954, 8.523926], [47.386768, 8.547614], [47.36474, 8.55412], [47.383028, 8.57519], [47.370886, 8.548211], [47.383948, 8.527279], [47.387064, 8.501766], [47.405938, 8.590677], [47.393274, 8.524608], [47.367082, 8.56394], [47.367147, 8.533754], [47.365472, 8.521579], [47.328799, 8.517712], [47.341405, 8.518232], [47.370152, 8.548804], [47.374536, 8.539971], [47.354877, 8.558189], [47.368776, 8.500991], [47.407175, 8.582118], [47.414374, 8.546678], [47.358636, 8.553648], [47.362755, 8.554687], [47.410946, 8.546806], [47.351245, 8.579119], [47.358347, 8.571368], [47.353483, 8.576572], [47.379426, 8.542177], [47.36357, 8.535375], [47.401169, 8.544827], [47.386273, 8.531657], [47.374914, 8.534324], [47.413419, 8.509634], [47.373726, 8.542867], [47.369094, 8.538111], [47.369276, 8.541689], [47.344269, 8.535045], [47.379541, 8.537704], [47.401726, 8.581008], [47.410708, 8.543462], [47.384978, 8.503685], [47.36129, 8.522514], [47.36276, 8.568032], [47.375597, 8.52679], [47.374713, 8.549654], [47.3755, 8.540812], [47.390104, 8.522172], [47.414986, 8.551329], [47.373109, 8.536803], [47.384337, 8.531869], [47.371097, 8.520303], [47.356776, 8.509807], [47.367845, 8.537039], [47.386496, 8.529026], [47.361356, 8.549614], [47.345555, 8.529446], [47.365223, 8.532695], [47.375701, 8.516649], [47.374458, 8.52159], [47.369467, 8.526202], [47.36842, 8.50538], [47.370224, 8.548819], [47.403229, 8.572666], [47.390293, 8.491009], [47.379531, 8.515826], [47.385537, 8.529536], [47.378715, 8.528072], [47.358882, 8.516415], [47.363967, 8.528565], [47.373535, 8.52504], [47.362188, 8.559389], [47.390715, 8.50878], [47.38046, 8.519434], [47.38901, 8.516971], [47.382196, 8.540354], [47.414307, 8.550891], [47.423084, 8.49847], [47.377318, 8.529342], [47.373993, 8.538463], [47.381066, 8.537219], [47.360368, 8.552241], [47.351291, 8.5763], [47.398361, 8.537443], [47.387184, 8.518987], [47.38899, 8.48893], [47.33515, 8.514718], [47.374177, 8.502436], [47.375922, 8.54086], [47.403995, 8.574405], [47.40953, 8.537726], [47.370952, 8.52324], [47.423738, 8.542963], [47.400092, 8.590591], [47.357797, 8.524666], [47.413873, 8.545436], [47.405298, 8.558785], [47.400109, 8.50159], [47.380221, 8.557781], [47.376065, 8.559614], [47.362713, 8.535583], [47.375644, 8.544549], [47.375931, 8.54086], [47.360413, 8.550376], [47.385795, 8.529833], [47.378643, 8.559125], [47.389756, 8.511277], [47.375581, 8.548295], [47.372726, 8.535484], [47.417093, 8.548352], [47.421297, 8.481297], [47.371686, 8.521758], [47.397936, 8.477462], [47.409269, 8.550057], [47.386744, 8.547362], [47.380883, 8.511668], [47.335448, 8.519408], [47.369408, 8.525817], [47.35823, 8.571405], [47.374015, 8.544595], [47.3741, 8.538518], [47.3764, 8.538831], [47.408583, 8.546478], [47.38188, 8.529091], [47.365796, 8.545258], [47.393166, 8.494603], [47.371423, 8.536239], [47.352341, 8.52523], [47.366484, 8.544796], [47.376111, 8.543658], [47.410926, 8.492146], [47.376388, 8.543836], [47.364257, 8.546285], [47.396573, 8.528702], [47.389336, 8.534952], [47.371611, 8.531595], [47.389717, 8.511568], [47.380104, 8.541834], [47.391282, 8.52323], [47.378983, 8.54242], [47.389578, 8.512016], [47.359944, 8.569005], [47.370179, 8.513585], [47.3808, 8.512832], [47.407099, 8.532363], [47.38835, 8.49105], [47.370263, 8.514262], [47.36808, 8.521645], [47.372545, 8.517446], [47.377661, 8.492336], [47.398953, 8.541429], [47.373681, 8.545647], [47.374252, 8.525346], [47.398523, 8.538426], [47.365071, 8.554246], [47.402377, 8.546402], [47.370372, 8.538005], [47.410704, 8.571752], [47.369471, 8.520071], [47.359321, 8.522381], [47.369645, 8.543471], [47.357694, 8.521236], [47.410574, 8.542412], [47.368473, 8.534338], [47.369254, 8.491984], [47.383118, 8.5502], [47.331003, 8.536757], [47.414141, 8.54662], [47.353481, 8.559338], [47.381462, 8.543743], [47.402721, 8.49829], [47.335894, 8.540827], [47.414896, 8.541057], [47.370143, 8.548804], [47.382514, 8.531487], [47.411325, 8.525851], [47.385124, 8.532336], [47.413955, 8.526448], [47.391805, 8.477992], [47.388434, 8.486707], [47.424453, 8.499266], [47.391678, 8.517436], [47.376063, 8.48898], [47.398595, 8.468122], [47.381897, 8.4894], [47.375083, 8.553264], [47.366191, 8.548192], [47.38704, 8.47876], [47.376904, 8.514886], [47.398364, 8.509384], [47.389495, 8.481814], [47.378317, 8.507088], [47.418987, 8.507639], [47.385484, 8.530449], [47.378021, 8.541473], [47.386174, 8.488994], [47.423403, 8.549676], [47.403453, 8.556136], [47.428844, 8.54515], [47.389256, 8.527255], [47.380039, 8.527848], [47.375602, 8.515627], [47.387074, 8.501727], [47.374699, 8.541722], [47.386199, 8.525126], [47.420543, 8.502872], [47.357292, 8.521969], [47.406754, 8.545937], [47.364022, 8.530393], [47.390696, 8.489282], [47.3776, 8.492096], [47.341066, 8.53044], [47.396165, 8.514626], [47.407321, 8.549606], [47.377769, 8.537733], [47.358425, 8.556913], [47.379108, 8.529325], [47.376618, 8.534849], [47.406691, 8.481131], [47.367854, 8.498471], [47.340762, 8.530195], [47.356065, 8.513684], [47.37859, 8.542187], [47.359625, 8.549102], [47.388366, 8.486282], [47.394874, 8.525727], [47.37036, 8.537356], [47.363453, 8.575329], [47.40731, 8.550745], [47.375399, 8.524813], [47.334783, 8.534704], [47.363621, 8.529048], [47.41417, 8.518872], [47.375656, 8.48831], [47.375393, 8.560342], [47.384875, 8.531986], [47.373183, 8.528078], [47.421004, 8.50744], [47.409316, 8.549766], [47.362747, 8.527256], [47.370345, 8.513204], [47.361995, 8.548661], [47.364582, 8.536733], [47.390117, 8.525617], [47.389978, 8.53274], [47.387312, 8.486434], [47.40886, 8.545755], [47.368723, 8.560718], [47.425645, 8.547655], [47.361403, 8.525706], [47.374387, 8.552667], [47.355674, 8.532288], [47.339572, 8.519002], [47.369048, 8.541062], [47.414657, 8.48342], [47.36906, 8.537911], [47.368208, 8.495181], [47.373704, 8.531969], [47.356511, 8.591502], [47.35258, 8.524653], [47.389244, 8.52185], [47.374184, 8.524947], [47.389389, 8.524582], [47.372177, 8.548635], [47.378064, 8.526496], [47.367914, 8.540178], [47.404667, 8.484072], [47.371177, 8.537531], [47.375111, 8.525787], [47.362791, 8.521631], [47.419806, 8.547706], [47.384628, 8.478911], [47.360194, 8.523246], [47.325665, 8.515254], [47.431499, 8.51636], [47.392597, 8.502725], [47.37109, 8.523891], [47.41632, 8.510076], [47.39805, 8.534217], [47.422327, 8.547454], [47.377549, 8.543781], [47.393112, 8.494628], [47.368609, 8.546521], [47.38326, 8.58628], [47.357718, 8.521594], [47.326069, 8.513397], [47.351407, 8.560816], [47.418855, 8.507331], [47.367949, 8.540205], [47.374602, 8.535894], [47.406204, 8.534729], [47.370733, 8.515953], [47.41388, 8.546642], [47.33825, 8.528516], [47.378342, 8.539838], [47.409685, 8.57931], [47.379246, 8.54228], [47.382798, 8.529997], [47.377817, 8.511567], [47.371749, 8.520753], [47.37436, 8.541424], [47.377273, 8.509093], [47.376501, 8.534873], [47.378561, 8.541431], [47.37274, 8.534955], [47.373107, 8.500442], [47.368122, 8.495762], [47.362539, 8.554736], [47.367336, 8.532805], [47.383187, 8.484035], [47.360484, 8.55235], [47.366117, 8.556823], [47.376399, 8.544578], [47.359722, 8.527539], [47.361816, 8.517255], [47.386963, 8.490281], [47.38974, 8.512032], [47.354532, 8.558553], [47.36901, 8.50285], [47.357968, 8.572379], [47.3355, 8.518761], [47.377788, 8.507885], [47.375899, 8.523301], [47.404883, 8.556206], [47.37847, 8.540608], [47.411, 8.544952], [47.374494, 8.539626], [47.381306, 8.49115], [47.396771, 8.523884], [47.410755, 8.543304], [47.387792, 8.544073], [47.369409, 8.526677], [47.364896, 8.531126], [47.375863, 8.488221], [47.377494, 8.541979], [47.377699, 8.510743], [47.389546, 8.488133], [47.364235, 8.536395], [47.390851, 8.522135], [47.369043, 8.528338], [47.386234, 8.503074], [47.371623, 8.514011], [47.368471, 8.521203], [47.383991, 8.515996], [47.391488, 8.546043], [47.407496, 8.548231], [47.364207, 8.548707], [47.371389, 8.510219], [47.385155, 8.541343], [47.366772, 8.494821], [47.367931, 8.496009], [47.402407, 8.556393], [47.368827, 8.496358], [47.415258, 8.53799], [47.404161, 8.563809], [47.369429, 8.540726], [47.389324, 8.511295], [47.356105, 8.509383], [47.336027, 8.524872], [47.378243, 8.514105], [47.370161, 8.548818], [47.395766, 8.54543], [47.369212, 8.519907], [47.394259, 8.480225], [47.397946, 8.481291], [47.350117, 8.56206], [47.397717, 8.533296], [47.366616, 8.555404], [47.385834, 8.548442], [47.376724, 8.534984], [47.365251, 8.500775], [47.370206, 8.548819], [47.39117, 8.522684], [47.397718, 8.532289], [47.373464, 8.539181], [47.390718, 8.478831], [47.378103, 8.540455], [47.369686, 8.556117], [47.369668, 8.556077], [47.364473, 8.536903], [47.391037, 8.479341], [47.406555, 8.570153], [47.390746, 8.515059], [47.391283, 8.515375], [47.368714, 8.528808], [47.369612, 8.529925], [47.403288, 8.497254], [47.373554, 8.524961], [47.370789, 8.519555], [47.408364, 8.50773], [47.409866, 8.544994], [47.390047, 8.480487], [47.396451, 8.528329], [47.429711, 8.549423], [47.409605, 8.544088], [47.413436, 8.539397], [47.411957, 8.517939], [47.366498, 8.54808], [47.412817, 8.540246], [47.341167, 8.536834], [47.356402, 8.555838], [47.369688, 8.508345], [47.400216, 8.516271], [47.390727, 8.478818], [47.381177, 8.515886], [47.353947, 8.523767], [47.36894, 8.52488], [47.359599, 8.521513], [47.417395, 8.509634], [47.367306, 8.545369], [47.352001, 8.559783], [47.383043, 8.499925], [47.347682, 8.562697], [47.415759, 8.569978], [47.399365, 8.505191], [47.370432, 8.515443], [47.374013, 8.501678], [47.381222, 8.537818], [47.373382, 8.531737], [47.381106, 8.504124], [47.368543, 8.528831], [47.414127, 8.541465], [47.374553, 8.495836], [47.41386, 8.545912], [47.407643, 8.531831], [47.39376, 8.493568], [47.404704, 8.549525], [47.395175, 8.510883], [47.375791, 8.516558], [47.371588, 8.515864], [47.373591, 8.524829], [47.385034, 8.541817], [47.375327, 8.485933], [47.369394, 8.554601], [47.382695, 8.539994], [47.352077, 8.523637], [47.3893, 8.491387], [47.388038, 8.489773], [47.428639, 8.489036], [47.424278, 8.508487], [47.410518, 8.54363], [47.400807, 8.54886], [47.377022, 8.544339], [47.378697, 8.528019], [47.370152, 8.548804], [47.39212, 8.513405], [47.370834, 8.530109], [47.379011, 8.542341], [47.372701, 8.535232], [47.420972, 8.501144], [47.41398, 8.543742], [47.398258, 8.537003], [47.373947, 8.51946], [47.337011, 8.520618], [47.375374, 8.545457], [47.36401, 8.55143], [47.369343, 8.557129], [47.374543, 8.539243], [47.343923, 8.528844], [47.376109, 8.533448], [47.362308, 8.526135], [47.374217, 8.524233], [47.366598, 8.52049], [47.374563, 8.562443], [47.393425, 8.500688], [47.373017, 8.531385], [47.388108, 8.474065], [47.388162, 8.536372], [47.379197, 8.553893], [47.369727, 8.551867], [47.395224, 8.521959], [47.377388, 8.529449], [47.370847, 8.492836], [47.359691, 8.593676], [47.40164, 8.548268], [47.39408, 8.489044], [47.38723, 8.485571], [47.376851, 8.528286], [47.383245, 8.53982], [47.381065, 8.537325], [47.37505, 8.54459], [47.37123, 8.54986], [47.397078, 8.530488], [47.359501, 8.508829], [47.390993, 8.539423], [47.382573, 8.515689], [47.410178, 8.574073], [47.376986, 8.543359], [47.392532, 8.532726], [47.36293, 8.517357], [47.411635, 8.567598], [47.377552, 8.548191], [47.377016, 8.542114], [47.423796, 8.544383], [47.360419, 8.584716], [47.399379, 8.542922], [47.373052, 8.550308], [47.359416, 8.551162], [47.389866, 8.491531], [47.412814, 8.481396], [47.372008, 8.529643], [47.397042, 8.521903], [47.367226, 8.522581], [47.369497, 8.547732], [47.384449, 8.548453], [47.413366, 8.512416], [47.393616, 8.524655], [47.404323, 8.50015], [47.375382, 8.540915], [47.388555, 8.523293], [47.371105, 8.523335], [47.388843, 8.491219], [47.402012, 8.49809], [47.405618, 8.549915], [47.360237, 8.576703], [47.410333, 8.539426], [47.359109, 8.526732], [47.380099, 8.515745], [47.355176, 8.557957], [47.37027, 8.531753], [47.380772, 8.533094], [47.351777, 8.526794], [47.333146, 8.518462], [47.39339, 8.524769], [47.377063, 8.523933], [47.366401, 8.545046], [47.367038, 8.523412], [47.400961, 8.535549], [47.391961, 8.517879], [47.410316, 8.563634], [47.36956, 8.466992], [47.38704, 8.546454], [47.3989, 8.511647], [47.377273, 8.539696], [47.354321, 8.575505], [47.376342, 8.516344], [47.372418, 8.510823], [47.423044, 8.50381], [47.4062, 8.533272], [47.38311, 8.515037], [47.427413, 8.546181], [47.380382, 8.517194], [47.357226, 8.591015], [47.367216, 8.545447], [47.389941, 8.535653], [47.385315, 8.500235], [47.381931, 8.532336], [47.37771, 8.541957], [47.366548, 8.541871], [47.409046, 8.547919], [47.376912, 8.535147], [47.367174, 8.552556], [47.387557, 8.500094], [47.366333, 8.533287], [47.370116, 8.525195], [47.367246, 8.552597], [47.364559, 8.56623], [47.392938, 8.543967], [47.387623, 8.499672], [47.375305, 8.543257], [47.335088, 8.54134], [47.386807, 8.502371], [47.374507, 8.540209], [47.377648, 8.541876], [47.382631, 8.540072], [47.376685, 8.526773], [47.338272, 8.529985], [47.392809, 8.522426], [47.417163, 8.54288], [47.397076, 8.53066], [47.363129, 8.517269], [47.405224, 8.481142], [47.410589, 8.53804], [47.391292, 8.532595], [47.402042, 8.579915], [47.358959, 8.557467], [47.37707, 8.535507], [47.379967, 8.544016], [47.376598, 8.538808], [47.3913, 8.52319], [47.37754, 8.543781], [47.407785, 8.584053], [47.367906, 8.494751], [47.376855, 8.528763], [47.406934, 8.550578], [47.357906, 8.532227], [47.373971, 8.528452], [47.374574, 8.53882], [47.391803, 8.545096], [47.370227, 8.513255], [47.392048, 8.539233], [47.397949, 8.531552], [47.385582, 8.530491], [47.419678, 8.547981], [47.378786, 8.542323], [47.367789, 8.521057], [47.41443, 8.551225], [47.373194, 8.527814], [47.391123, 8.522829], [47.363925, 8.571301], [47.383717, 8.532744], [47.359153, 8.527752], [47.374845, 8.551882], [47.405829, 8.590808], [47.397322, 8.59424], [47.414855, 8.561133], [47.368223, 8.506316], [47.401039, 8.588624], [47.358141, 8.587646], [47.426906, 8.546555], [47.343615, 8.530055], [47.393956, 8.535325], [47.388229, 8.540651], [47.399964, 8.519127], [47.365261, 8.520145], [47.380622, 8.534693], [47.362701, 8.527348], [47.355574, 8.60145], [47.378095, 8.483194], [47.376644, 8.540584], [47.400807, 8.548874], [47.373149, 8.52878], [47.40164, 8.581496], [47.379333, 8.537858], [47.412336, 8.54437], [47.381406, 8.528869], [47.357565, 8.52163], [47.373481, 8.534626], [47.393805, 8.500444], [47.420666, 8.547154], [47.333931, 8.515262], [47.371307, 8.530437], [47.374498, 8.521193], [47.370304, 8.548861], [47.417518, 8.511837], [47.405723, 8.563193], [47.37316, 8.531468], [47.40447, 8.572706], [47.39391, 8.537324], [47.383442, 8.533308], [47.364321, 8.555528], [47.391282, 8.523216], [47.38237, 8.529604], [47.373848, 8.503026], [47.369672, 8.603029], [47.371075, 8.53026], [47.383323, 8.495851], [47.376546, 8.509846], [47.36859, 8.560569], [47.38142, 8.510063], [47.338021, 8.516576], [47.364539, 8.55066], [47.363581, 8.535177], [47.342769, 8.530091], [47.381493, 8.535784], [47.340016, 8.530193], [47.374932, 8.539979], [47.383904, 8.511875], [47.375912, 8.541946], [47.389133, 8.517371], [47.360359, 8.523858], [47.380995, 8.538091], [47.362795, 8.522213], [47.369041, 8.537951], [47.384742, 8.531877], [47.362027, 8.548993], [47.37549, 8.541818], [47.366263, 8.54066], [47.384459, 8.510164], [47.372553, 8.534726], [47.412216, 8.546633], [47.369216, 8.528037], [47.391046, 8.522496], [47.362099, 8.548994], [47.398659, 8.539211], [47.394559, 8.521905], [47.37017, 8.548818], [47.411385, 8.544191], [47.366559, 8.559441], [47.382076, 8.529346], [47.418322, 8.483015], [47.369614, 8.528773], [47.422604, 8.550534], [47.374547, 8.518784], [47.370385, 8.548928], [47.356681, 8.570644], [47.377582, 8.543146], [47.385588, 8.546888], [47.373748, 8.503169], [47.375082, 8.539307], [47.414458, 8.552975], [47.370829, 8.542966], [47.370365, 8.491463], [47.373615, 8.527081], [47.374157, 8.521041], [47.411492, 8.526291], [47.385842, 8.532523], [47.369474, 8.523541], [47.356929, 8.555346], [47.376083, 8.540996], [47.402356, 8.49289], [47.34405, 8.53066], [47.392041, 8.500501], [47.374464, 8.544697], [47.369623, 8.53922], [47.383256, 8.528218], [47.40409, 8.50098], [47.368279, 8.504172], [47.353325, 8.558739], [47.376098, 8.521292], [47.366429, 8.510623], [47.402126, 8.499351], [47.412804, 8.543479], [47.374686, 8.51255], [47.383394, 8.484105], [47.37871, 8.516101], [47.368937, 8.529038], [47.379415, 8.50801], [47.409309, 8.546745], [47.392649, 8.475173], [47.391031, 8.523079], [47.387149, 8.509199], [47.411336, 8.570586], [47.412486, 8.550402], [47.370584, 8.538433], [47.376881, 8.544032], [47.397043, 8.530408], [47.427957, 8.545702], [47.374466, 8.539824], [47.336401, 8.518501], [47.407536, 8.546907], [47.383289, 8.53994], [47.376767, 8.538083], [47.387807, 8.471516], [47.379719, 8.525524], [47.340542, 8.519128], [47.391627, 8.511315], [47.367959, 8.544813], [47.418745, 8.553303], [47.356974, 8.53565], [47.401892, 8.536045], [47.338763, 8.538901], [47.39598, 8.473834], [47.424175, 8.54337], [47.376762, 8.543274], [47.377778, 8.537734], [47.388521, 8.520206], [47.379315, 8.537818], [47.403999, 8.561991], [47.37017, 8.548792], [47.377257, 8.528148], [47.355387, 8.554785], [47.390294, 8.50954], [47.350313, 8.567795], [47.414449, 8.483602], [47.390712, 8.539722], [47.37144, 8.522098], [47.391368, 8.514939], [47.369214, 8.527349], [47.377769, 8.53772], [47.369623, 8.508621], [47.381791, 8.516626], [47.398614, 8.590903], [47.342957, 8.535878], [47.374414, 8.496297], [47.36525, 8.494116], [47.366893, 8.521581], [47.391381, 8.523205], [47.346552, 8.534337], [47.354328, 8.552684], [47.398295, 8.536806], [47.409258, 8.571576], [47.363106, 8.517745], [47.371806, 8.559194], [47.399955, 8.51914], [47.383256, 8.499227], [47.399843, 8.480361], [47.407656, 8.578922], [47.372983, 8.528246], [47.366061, 8.533533], [47.382545, 8.548069], [47.351094, 8.526727], [47.391284, 8.536277], [47.375222, 8.531219], [47.377925, 8.535459], [47.384176, 8.543137], [47.368739, 8.496145], [47.380557, 8.548121], [47.397524, 8.505857], [47.359472, 8.585914], [47.371949, 8.556456], [47.361501, 8.52588], [47.387383, 8.521746], [47.389154, 8.494576], [47.407914, 8.580173], [47.370799, 8.546977], [47.360326, 8.566776], [47.409382, 8.558792], [47.39266, 8.53351], [47.368565, 8.524621], [47.395714, 8.536832], [47.385737, 8.539818], [47.373029, 8.532895], [47.335552, 8.518881], [47.363921, 8.547616], [47.410467, 8.532843], [47.354474, 8.553389], [47.342441, 8.520013], [47.372898, 8.550358], [47.368726, 8.52853], [47.377949, 8.525302], [47.418526, 8.547109], [47.389088, 8.536391], [47.389501, 8.511603], [47.391579, 8.517341], [47.386745, 8.547283], [47.370384, 8.52058], [47.403672, 8.534253], [47.355133, 8.561557], [47.397712, 8.488281], [47.328783, 8.514576], [47.376702, 8.523012], [47.360234, 8.522797], [47.342571, 8.531053], [47.372324, 8.513191], [47.410517, 8.550282], [47.384208, 8.497365], [47.380816, 8.518924], [47.376332, 8.526077], [47.410821, 8.558795], [47.37926, 8.537897], [47.375423, 8.549735], [47.411417, 8.52564], [47.378643, 8.52039], [47.407933, 8.578212], [47.376678, 8.54171], [47.403389, 8.48614], [47.400962, 8.538278], [47.382794, 8.532341], [47.373816, 8.542882], [47.370188, 8.548818], [47.41489, 8.54164], [47.355675, 8.57417], [47.371847, 8.557685], [47.364597, 8.554898], [47.409852, 8.575166], [47.357413, 8.521508], [47.422136, 8.504667], [47.414345, 8.551621], [47.365618, 8.539469], [47.376805, 8.535039], [47.372735, 8.534558], [47.369253, 8.511606], [47.402215, 8.535138], [47.385351, 8.529215], [47.42492, 8.50121], [47.364047, 8.547552], [47.373763, 8.534208], [47.384243, 8.5558], [47.335299, 8.519021], [47.360302, 8.576559], [47.370564, 8.532037], [47.398641, 8.539211], [47.390647, 8.489678], [47.382075, 8.529412], [47.401934, 8.499758], [47.390824, 8.489006], [47.384193, 8.575692], [47.403827, 8.567697], [47.372964, 8.520765], [47.366222, 8.544989], [47.359574, 8.535598], [47.378573, 8.542094], [47.37552, 8.548122], [47.413743, 8.571896], [47.394176, 8.493285], [47.36933, 8.533137], [47.363598, 8.534304], [47.386927, 8.47334], [47.376926, 8.540311], [47.353317, 8.576132], [47.372856, 8.535977], [47.402413, 8.499423], [47.420961, 8.549281], [47.42487, 8.537407], [47.377237, 8.499359], [47.339825, 8.530414], [47.383099, 8.528612], [47.3937, 8.508906], [47.393978, 8.481399], [47.378111, 8.541422], [47.341525, 8.529457], [47.391963, 8.512832], [47.354887, 8.574656], [47.392488, 8.502749], [47.369311, 8.527509], [47.361529, 8.563346], [47.395992, 8.52261], [47.345048, 8.533525], [47.37221, 8.511838], [47.366832, 8.542301], [47.366948, 8.544276], [47.379324, 8.528376], [47.358221, 8.571405], [47.390616, 8.510685], [47.369036, 8.547921], [47.353221, 8.572132], [47.392248, 8.494664], [47.363406, 8.533651], [47.398705, 8.471873], [47.386961, 8.534996], [47.368522, 8.499186], [47.421655, 8.499236], [47.427981, 8.54883], [47.374852, 8.541765], [47.425622, 8.556588], [47.413924, 8.546722], [47.368806, 8.49273], [47.41322, 8.546045], [47.347921, 8.524558], [47.371103, 8.538735], [47.364082, 8.517314], [47.378827, 8.542761], [47.357079, 8.535957], [47.378591, 8.530745], [47.398659, 8.539198], [47.409791, 8.537771], [47.379381, 8.542216], [47.409788, 8.540951], [47.390612, 8.5398], [47.406558, 8.550358], [47.389266, 8.531917], [47.406206, 8.483983], [47.398345, 8.537283], [47.342439, 8.530706], [47.393518, 8.483549], [47.411399, 8.525627], [47.390384, 8.522032], [47.411162, 8.570887], [47.366638, 8.54566], [47.377588, 8.525507], [47.383636, 8.483209], [47.406072, 8.563399], [47.370265, 8.552964], [47.384261, 8.52755], [47.42314, 8.502129], [47.388717, 8.520436], [47.378456, 8.51444], [47.397122, 8.530595], [47.414204, 8.519058], [47.372243, 8.513189], [47.354877, 8.574802], [47.369305, 8.528185], [47.386202, 8.518159], [47.394654, 8.518543], [47.362397, 8.552681], [47.391791, 8.484561], [47.413837, 8.545435], [47.396312, 8.527743], [47.360254, 8.534102], [47.373421, 8.561412], [47.386686, 8.523136], [47.375884, 8.541098], [47.359652, 8.59852], [47.373134, 8.523655], [47.355306, 8.55477], [47.367188, 8.539898], [47.358261, 8.581029], [47.376897, 8.554547], [47.381459, 8.497999], [47.355734, 8.560762], [47.408159, 8.55968], [47.372712, 8.547309], [47.37383, 8.537573], [47.376227, 8.527704], [47.379139, 8.530769], [47.400468, 8.592586], [47.403752, 8.565245], [47.402815, 8.577255], [47.384873, 8.495538], [47.419896, 8.506636], [47.377795, 8.537827], [47.380684, 8.525278], [47.417234, 8.545784], [47.399362, 8.542882], [47.376174, 8.536164], [47.354228, 8.598469], [47.356751, 8.553304], [47.364904, 8.537958], [47.374078, 8.540862], [47.374299, 8.524129], [47.411832, 8.537853], [47.417699, 8.546111], [47.429353, 8.54642], [47.36609, 8.556783], [47.410641, 8.553279], [47.376603, 8.548621], [47.377716, 8.51077], [47.352149, 8.525504], [47.374687, 8.532638], [47.361615, 8.50302], [47.38672, 8.528117], [47.38573, 8.525262], [47.37318, 8.55194], [47.394077, 8.493349], [47.373433, 8.552792], [47.388314, 8.490997], [47.393431, 8.545077], [47.363253, 8.522262], [47.362145, 8.548955], [47.354569, 8.60213], [47.384477, 8.528495], [47.426154, 8.554505], [47.354499, 8.511786], [47.353308, 8.576132], [47.377884, 8.529406], [47.390221, 8.512492], [47.349806, 8.529824], [47.373361, 8.532041], [47.413221, 8.545912], [47.425596, 8.536679], [47.378777, 8.542349], [47.384966, 8.50885], [47.363297, 8.567408], [47.371936, 8.517142], [47.388395, 8.536509], [47.359468, 8.553215], [47.413838, 8.553823], [47.374542, 8.51264], [47.401232, 8.534508], [47.355653, 8.535517], [47.358696, 8.516054], [47.393677, 8.472862], [47.362471, 8.568185], [47.342586, 8.531357], [47.412286, 8.55713], [47.390636, 8.49193], [47.369913, 8.547502], [47.403599, 8.588984], [47.378554, 8.54212], [47.373924, 8.502564], [47.374612, 8.524387], [47.384386, 8.548399], [47.35774, 8.599829], [47.407111, 8.586715], [47.396241, 8.527702], [47.374236, 8.526988], [47.391588, 8.52317], [47.377179, 8.540118], [47.375347, 8.56038], [47.381476, 8.542352], [47.364411, 8.532957], [47.37831, 8.541347], [47.383716, 8.547908], [47.369917, 8.542378], [47.377566, 8.54198], [47.375464, 8.486678], [47.413741, 8.546109], [47.41907, 8.506474], [47.358457, 8.571185], [47.354813, 8.560213], [47.385374, 8.517255], [47.371449, 8.525898], [47.377035, 8.523999], [47.384058, 8.576616], [47.38237, 8.505593], [47.351612, 8.576625], [47.365306, 8.545685], [47.357687, 8.557851], [47.365421, 8.546826], [47.356094, 8.556097], [47.361546, 8.531534], [47.374211, 8.524921], [47.381388, 8.517386], [47.412453, 8.529226], [47.386348, 8.534189], [47.41258, 8.544296], [47.368142, 8.539812], [47.393426, 8.524744], [47.378335, 8.52731], [47.360336, 8.527353], [47.36981, 8.516503], [47.417708, 8.546059], [47.394856, 8.525753], [47.396564, 8.528742], [47.388503, 8.532643], [47.399708, 8.543419], [47.370161, 8.548818], [47.385454, 8.576381], [47.370509, 8.54909], [47.397968, 8.532467], [47.392717, 8.523603], [47.388373, 8.540654], [47.425699, 8.509404], [47.346191, 8.534396], [47.39615, 8.516308], [47.352213, 8.525479], [47.370087, 8.524361], [47.383855, 8.528588], [47.356302, 8.553176], [47.379304, 8.529528], [47.381785, 8.489874], [47.375691, 8.529189], [47.351276, 8.53229], [47.369077, 8.540851], [47.37069, 8.531987], [47.407517, 8.538533], [47.374664, 8.536014], [47.364951, 8.525355], [47.382076, 8.515957], [47.367912, 8.521364], [47.388415, 8.516217], [47.378682, 8.541937], [47.387722, 8.518203], [47.381831, 8.541883], [47.367639, 8.565885], [47.39739, 8.540271], [47.37279, 8.547562], [47.357487, 8.550659], [47.360866, 8.550001], [47.376355, 8.527402], [47.387663, 8.488441], [47.417675, 8.554155], [47.358895, 8.58238], [47.402067, 8.497959], [47.39865, 8.539211], [47.391654, 8.519012], [47.369124, 8.541593], [47.339956, 8.531701], [47.422513, 8.550585], [47.406656, 8.584598], [47.412224, 8.483969], [47.371447, 8.546038], [47.376775, 8.548505], [47.364266, 8.531153], [47.342581, 8.530947], [47.368148, 8.523937], [47.389501, 8.511564], [47.414931, 8.530748], [47.411543, 8.563236], [47.410741, 8.571687], [47.376229, 8.525492], [47.377016, 8.543982], [47.38686, 8.547431], [47.393772, 8.502059], [47.413943, 8.571702], [47.388674, 8.520223], [47.373044, 8.531386], [47.417847, 8.554106], [47.405296, 8.551617], [47.366078, 8.533679], [47.369087, 8.537885], [47.419915, 8.482887], [47.400744, 8.544196], [47.416342, 8.546004], [47.381276, 8.517742], [47.413788, 8.536489], [47.378553, 8.541338], [47.382788, 8.486451], [47.397193, 8.49194], [47.368007, 8.540776], [47.397346, 8.53256], [47.386788, 8.547495], [47.404502, 8.59486], [47.422862, 8.494144], [47.357972, 8.520421], [47.403311, 8.488842], [47.376625, 8.514032], [47.360109, 8.595922], [47.387515, 8.516212], [47.429138, 8.543605], [47.373256, 8.535522], [47.429953, 8.549601], [47.385848, 8.52994], [47.373602, 8.519824], [47.388994, 8.496321], [47.351449, 8.601082], [47.325871, 8.51342], [47.369134, 8.503104], [47.40454, 8.556292], [47.377193, 8.538635], [47.407006, 8.55054], [47.38639, 8.496852], [47.378872, 8.542762], [47.374397, 8.541385], [47.41017, 8.564744], [47.389319, 8.527203], [47.398069, 8.536059], [47.380857, 8.537413], [47.37025, 8.513692], [47.367889, 8.539992], [47.366523, 8.545432], [47.376429, 8.534832], [47.387526, 8.529445], [47.374328, 8.542972], [47.367101, 8.544292], [47.407508, 8.547039], [47.401256, 8.545147], [47.377186, 8.54033], [47.369115, 8.525466], [47.389974, 8.485532], [47.354998, 8.511359], [47.415474, 8.516897], [47.380151, 8.537835], [47.376909, 8.535438], [47.369284, 8.527482], [47.391082, 8.489329], [47.406934, 8.550552], [47.42446, 8.537981], [47.36069, 8.565407], [47.395246, 8.537723], [47.38161, 8.509908], [47.366934, 8.543865], [47.360766, 8.548238], [47.407331, 8.585381], [47.385337, 8.508579], [47.366421, 8.544834], [47.382829, 8.532461], [47.374704, 8.549681], [47.381149, 8.491623], [47.379214, 8.525672], [47.354333, 8.557794], [47.374948, 8.534471], [47.362463, 8.535419], [47.376346, 8.538816], [47.368339, 8.535209], [47.387108, 8.534654], [47.38506, 8.508441], [47.370163, 8.532519], [47.369274, 8.541848], [47.422983, 8.551271], [47.410102, 8.52772], [47.41368, 8.554297], [47.385914, 8.524869], [47.407442, 8.574174], [47.398256, 8.537123], [47.385822, 8.493013], [47.388188, 8.524147], [47.38288, 8.528992], [47.377126, 8.526755], [47.373118, 8.53299], [47.388695, 8.546528], [47.371321, 8.544168], [47.387158, 8.535066], [47.417537, 8.553609], [47.3522, 8.526763], [47.366096, 8.50769], [47.37995, 8.543883], [47.373844, 8.576106], [47.393216, 8.474151], [47.370174, 8.529447], [47.382723, 8.540762], [47.368253, 8.52431], [47.392202, 8.495736], [47.374501, 8.541771], [47.383617, 8.532861], [47.367442, 8.55554], [47.366938, 8.544355], [47.381867, 8.54191], [47.381781, 8.516653], [47.377506, 8.527531], [47.368443, 8.533728], [47.386512, 8.545225], [47.377256, 8.538716], [47.375988, 8.515768], [47.406126, 8.58986], [47.35594, 8.535589], [47.356389, 8.534738], [47.38503, 8.547883], [47.367976, 8.524053], [47.398947, 8.541138], [47.376676, 8.557826], [47.384459, 8.548295], [47.369463, 8.541852], [47.371257, 8.527245], [47.401795, 8.500153], [47.381378, 8.537463], [47.374297, 8.52442], [47.378335, 8.540619], [47.382916, 8.54127], [47.385898, 8.498511], [47.378221, 8.528949], [47.399398, 8.533357], [47.422247, 8.506259], [47.371086, 8.523441], [47.409558, 8.537634], [47.369268, 8.554678], [47.407174, 8.498246], [47.375942, 8.527393], [47.408914, 8.558835], [47.420367, 8.50821], [47.418228, 8.506099], [47.408651, 8.580242], [47.369863, 8.525243], [47.379068, 8.525934], [47.390577, 8.491439], [47.388689, 8.496262], [47.341828, 8.530693], [47.368161, 8.531193], [47.361649, 8.503192], [47.376637, 8.511702], [47.364303, 8.533921], [47.369874, 8.523151], [47.325991, 8.518793], [47.396973, 8.513874], [47.367376, 8.530515], [47.370152, 8.548818], [47.343362, 8.530143], [47.402927, 8.57686], [47.381985, 8.516061], [47.361608, 8.5654], [47.376015, 8.515689], [47.370034, 8.543294], [47.349906, 8.569918], [47.422386, 8.550742], [47.372496, 8.505263], [47.387663, 8.488401], [47.377015, 8.498017], [47.403345, 8.585547], [47.37474, 8.55805], [47.417546, 8.553622], [47.350148, 8.527873], [47.413604, 8.539745], [47.407314, 8.587183], [47.368877, 8.547639], [47.377987, 8.526098], [47.386806, 8.535165], [47.375145, 8.537388], [47.37026, 8.548833], [47.369685, 8.522208], [47.362603, 8.514796], [47.410878, 8.562189], [47.399913, 8.592309], [47.354478, 8.597799], [47.419965, 8.504093], [47.358416, 8.556913], [47.378686, 8.51961], [47.399768, 8.543712], [47.398007, 8.534057], [47.366593, 8.521986], [47.393179, 8.5194], [47.369313, 8.550945], [47.367728, 8.546384], [47.37179, 8.530764], [47.378495, 8.575186], [47.399768, 8.543712], [47.386184, 8.518093], [47.375335, 8.524931], [47.412378, 8.543775], [47.378081, 8.509281], [47.356672, 8.524776], [47.376698, 8.540572], [47.368383, 8.556897], [47.382004, 8.548204], [47.3844, 8.531897], [47.384912, 8.531974], [47.370161, 8.548805], [47.381597, 8.53719], [47.372843, 8.600781], [47.373311, 8.519209], [47.370418, 8.602184], [47.364611, 8.545935], [47.394137, 8.530481], [47.356731, 8.522328], [47.413012, 8.536711], [47.374895, 8.544812], [47.40197, 8.585385], [47.414095, 8.550423], [47.374537, 8.539891], [47.385331, 8.495613], [47.414114, 8.550317], [47.400248, 8.494213], [47.364033, 8.549021], [47.410045, 8.563708], [47.365823, 8.549985], [47.369023, 8.53795], [47.360104, 8.548807], [47.362319, 8.550508], [47.375058, 8.531454], [47.392544, 8.538131], [47.373153, 8.536963], [47.381252, 8.555366], [47.378962, 8.559596], [47.417203, 8.544338], [47.42873, 8.488853], [47.370639, 8.535508], [47.36456, 8.531517], [47.359701, 8.524957], [47.399693, 8.495885], [47.384322, 8.50746], [47.36877, 8.524797], [47.376663, 8.548993], [47.383528, 8.536488], [47.365783, 8.550368], [47.3949, 8.522999], [47.37258, 8.534766], [47.37265, 8.529233], [47.405714, 8.587917], [47.367692, 8.545509], [47.373906, 8.544778], [47.385728, 8.533156], [47.383183, 8.510086], [47.363483, 8.535096], [47.372694, 8.534067], [47.387901, 8.491929], [47.370146, 8.532452], [47.377291, 8.519727], [47.403381, 8.534565], [47.39179, 8.481661], [47.374901, 8.543196], [47.386514, 8.529], [47.413976, 8.548857], [47.375356, 8.547311], [47.373853, 8.499503], [47.41092, 8.554213], [47.417059, 8.551889], [47.418544, 8.547123], [47.406939, 8.585929], [47.370374, 8.49145], [47.383218, 8.539859], [47.37264, 8.529299], [47.371117, 8.523905], [47.354108, 8.575288], [47.368494, 8.534047], [47.381594, 8.51355], [47.362752, 8.511383], [47.376182, 8.536165], [47.369459, 8.552537], [47.365159, 8.501012], [47.37552, 8.548095], [47.376611, 8.534598], [47.371457, 8.562682], [47.373076, 8.532711], [47.378574, 8.526798], [47.39809, 8.504901], [47.366069, 8.533586], [47.373861, 8.538116], [47.370048, 8.512218], [47.370199, 8.568071], [47.379906, 8.521925], [47.387925, 8.520525], [47.3532, 8.558657], [47.422115, 8.500173], [47.422127, 8.544878], [47.379956, 8.514616], [47.414367, 8.552111], [47.3772, 8.513038], [47.414646, 8.551137], [47.428668, 8.543834], [47.406835, 8.587384], [47.368104, 8.523844], [47.405183, 8.559538], [47.405025, 8.482251], [47.364752, 8.537796], [47.369179, 8.525296], [47.3651, 8.501646], [47.369069, 8.519812], [47.368083, 8.520335], [47.368035, 8.540644], [47.391223, 8.54266], [47.356722, 8.554455], [47.373858, 8.536527], [47.370326, 8.476924], [47.404514, 8.533595], [47.399151, 8.591193], [47.379934, 8.528561], [47.403218, 8.534681], [47.37038, 8.524764], [47.422882, 8.49889], [47.404268, 8.481441], [47.403486, 8.576766], [47.352908, 8.579247], [47.362838, 8.55637], [47.392127, 8.501907], [47.374387, 8.53863], [47.376146, 8.553127], [47.368201, 8.546804], [47.408618, 8.539072], [47.419725, 8.547797], [47.409355, 8.540108], [47.379104, 8.525855], [47.411357, 8.54427], [47.369204, 8.525534], [47.398155, 8.536458], [47.375375, 8.540703], [47.386026, 8.492342], [47.40388, 8.503294], [47.358471, 8.588897], [47.375843, 8.487466], [47.383647, 8.539139], [47.39416, 8.493072], [47.409328, 8.546706], [47.419169, 8.547626], [47.386467, 8.529158], [47.367268, 8.53712], [47.365297, 8.554105], [47.385964, 8.496169], [47.372736, 8.550461], [47.372793, 8.522615], [47.368169, 8.538873], [47.423713, 8.504327], [47.413339, 8.531643], [47.373943, 8.54646], [47.376803, 8.538124], [47.3864, 8.497661], [47.391175, 8.539255], [47.373907, 8.544645], [47.369627, 8.555665], [47.364048, 8.555866], [47.373884, 8.536634], [47.329007, 8.513761], [47.391869, 8.538117], [47.380241, 8.53789], [47.37222, 8.535699], [47.377486, 8.543793], [47.40952, 8.542629], [47.383753, 8.573788], [47.374341, 8.542536], [47.360572, 8.526113], [47.372345, 8.55461], [47.381764, 8.545166], [47.363506, 8.521116], [47.379683, 8.560339], [47.380573, 8.536997], [47.387801, 8.544033], [47.370976, 8.548199], [47.384064, 8.53879], [47.389733, 8.511847], [47.381127, 8.536425], [47.403932, 8.567898], [47.369914, 8.51019], [47.407897, 8.544848], [47.412384, 8.509706], [47.362196, 8.559468], [47.386283, 8.521009], [47.38696, 8.542651], [47.399015, 8.533058], [47.366671, 8.542218], [47.38024, 8.541797], [47.409556, 8.550116], [47.381336, 8.540999], [47.373952, 8.54462], [47.376222, 8.488308], [47.418424, 8.547412], [47.363598, 8.533377], [47.399768, 8.543659], [47.377139, 8.540528], [47.415003, 8.545857], [47.397625, 8.507581], [47.376526, 8.521711], [47.38952, 8.511498], [47.382512, 8.529845], [47.418856, 8.507318], [47.371873, 8.601514], [47.366923, 8.543137], [47.41032, 8.573308], [47.376258, 8.500121], [47.374541, 8.541361], [47.38199, 8.489137], [47.365967, 8.534855], [47.398494, 8.517587], [47.358719, 8.586507], [47.366845, 8.544737], [47.397886, 8.532558], [47.373744, 8.544774], [47.36881, 8.534887], [47.377914, 8.529976], [47.368673, 8.531257], [47.401994, 8.552634], [47.391523, 8.516625], [47.374675, 8.48739], [47.368509, 8.546625], [47.357111, 8.522058], [47.372758, 8.534942], [47.369069, 8.548186], [47.358552, 8.518063], [47.413754, 8.546599], [47.374652, 8.495838], [47.369672, 8.525544], [47.391899, 8.517771], [47.396358, 8.533361], [47.37777, 8.522412], [47.3606, 8.565418], [47.376997, 8.496149], [47.364003, 8.533332], [47.386871, 8.528358], [47.408195, 8.581769], [47.393628, 8.512813], [47.367752, 8.544862], [47.364803, 8.534381], [47.329873, 8.529734], [47.360094, 8.506934], [47.35485, 8.574788], [47.38029, 8.520291], [47.373744, 8.5372], [47.361104, 8.551502], [47.36497, 8.553582], [47.366232, 8.548577], [47.352015, 8.558407], [47.374386, 8.521601], [47.369295, 8.52731], [47.400411, 8.533776], [47.343839, 8.530126], [47.387852, 8.529239], [47.377119, 8.540792], [47.365873, 8.548556], [47.370475, 8.549765], [47.407378, 8.549262], [47.363976, 8.528565], [47.418966, 8.510925], [47.361695, 8.560159], [47.336921, 8.520629], [47.377957, 8.493454], [47.338415, 8.539635], [47.390947, 8.479445], [47.415286, 8.570498], [47.392835, 8.52444], [47.386019, 8.535612], [47.377505, 8.538933], [47.411879, 8.525252], [47.357392, 8.521852], [47.394134, 8.525023], [47.405718, 8.569327], [47.417202, 8.545412], [47.372551, 8.478517], [47.37002, 8.491801], [47.378668, 8.56482], [47.390956, 8.522415], [47.366486, 8.540903], [47.389384, 8.485097], [47.365388, 8.545594], [47.365955, 8.560487], [47.35134, 8.568611], [47.386592, 8.497426], [47.427215, 8.491301], [47.406599, 8.567504], [47.372256, 8.535739], [47.412279, 8.515203], [47.431391, 8.516398], [47.336378, 8.525805], [47.381633, 8.541932], [47.359984, 8.594993], [47.410667, 8.547728], [47.392094, 8.531538], [47.355828, 8.591435], [47.391089, 8.522669], [47.413146, 8.546229], [47.364717, 8.554623], [47.377515, 8.53888], [47.383371, 8.548219], [47.380265, 8.54291], [47.387192, 8.519093], [47.412914, 8.530892], [47.366842, 8.523222], [47.37112, 8.523654], [47.421191, 8.501785], [47.361548, 8.561387], [47.404268, 8.481428], [47.373025, 8.533292], [47.367153, 8.517813], [47.359838, 8.522828], [47.381728, 8.513712], [47.387544, 8.498465], [47.358417, 8.577935], [47.387219, 8.519014], [47.383578, 8.57687], [47.381451, 8.503747], [47.415627, 8.513044], [47.376962, 8.562639], [47.371919, 8.53989], [47.352511, 8.531984], [47.371695, 8.556675], [47.365111, 8.534123], [47.395566, 8.513315], [47.408993, 8.539332], [47.41718, 8.54398], [47.368016, 8.494581], [47.379927, 8.490407], [47.413224, 8.532396], [47.3866, 8.503347], [47.37711, 8.539799], [47.337448, 8.519184], [47.382994, 8.513949], [47.366568, 8.540733], [47.369074, 8.491928], [47.365967, 8.536841], [47.352778, 8.562275], [47.385944, 8.543491], [47.377626, 8.510755], [47.364234, 8.548721], [47.372134, 8.5362], [47.375107, 8.518584], [47.378441, 8.510242], [47.389016, 8.48901], [47.37388, 8.544658], [47.369753, 8.525479], [47.409017, 8.550078], [47.423812, 8.516934], [47.377108, 8.540964], [47.391632, 8.523316], [47.401187, 8.534427], [47.363224, 8.506084], [47.37404, 8.536385], [47.365534, 8.532172], [47.379214, 8.525659], [47.417065, 8.541884], [47.375137, 8.540142], [47.427336, 8.539101], [47.398041, 8.534217], [47.413308, 8.545358], [47.372589, 8.534687], [47.375946, 8.525076], [47.367545, 8.564466], [47.391115, 8.52271], [47.378721, 8.526483], [47.409919, 8.541312], [47.354886, 8.574762], [47.40741, 8.566475], [47.388862, 8.54036], [47.401846, 8.537011], [47.376916, 8.540364], [47.39071, 8.490686], [47.419271, 8.506107], [47.356762, 8.55116], [47.334791, 8.530007], [47.371801, 8.601566], [47.410006, 8.544481], [47.351448, 8.601175], [47.391759, 8.512589], [47.358819, 8.59097], [47.379586, 8.525362], [47.375846, 8.577434], [47.377555, 8.499008], [47.385009, 8.532135], [47.393464, 8.541647], [47.399794, 8.543752], [47.407492, 8.530741], [47.384176, 8.507708], [47.361936, 8.526459], [47.39784, 8.532689], [47.388323, 8.520295], [47.35151, 8.601295], [47.404779, 8.595051], [47.405032, 8.505199], [47.424974, 8.548171], [47.389127, 8.530365], [47.353017, 8.558997], [47.407005, 8.550633], [47.345093, 8.529768], [47.375909, 8.540357], [47.405488, 8.480856], [47.37181, 8.542854], [47.364864, 8.545914], [47.374051, 8.544582], [47.384377, 8.531459], [47.361825, 8.51523], [47.375187, 8.525405], [47.426199, 8.554572], [47.386406, 8.516521], [47.373617, 8.536377], [47.410927, 8.54499], [47.335047, 8.527723], [47.38338, 8.51303], [47.41056, 8.572637], [47.367198, 8.545446], [47.407891, 8.547378], [47.366673, 8.542033], [47.41417, 8.551127], [47.382984, 8.543562], [47.382478, 8.540095], [47.378463, 8.540436], [47.356737, 8.53219], [47.39453, 8.487079], [47.386777, 8.502688], [47.429099, 8.54664], [47.385898, 8.498511], [47.367469, 8.546233], [47.364928, 8.545757], [47.375918, 8.510734], [47.41318, 8.545501], [47.356754, 8.551147], [47.372956, 8.48545], [47.3589, 8.553376], [47.414287, 8.551103], [47.367678, 8.495104], [47.377228, 8.515912], [47.324888, 8.518467], [47.381827, 8.533764], [47.35796, 8.572273], [47.403964, 8.548873], [47.409597, 8.565408], [47.337912, 8.530058], [47.382485, 8.531699], [47.368264, 8.520206], [47.363358, 8.513858], [47.405726, 8.581239], [47.369722, 8.556992], [47.371367, 8.536449], [47.408261, 8.541649], [47.369323, 8.528211], [47.37552, 8.548109], [47.371146, 8.517034], [47.378631, 8.542611], [47.404344, 8.533591], [47.373407, 8.545125], [47.353022, 8.512074], [47.39915, 8.521495], [47.360875, 8.550001], [47.360525, 8.561114], [47.372388, 8.523613], [47.365812, 8.539804], [47.370659, 8.546591], [47.387464, 8.483549], [47.366556, 8.541103], [47.419106, 8.546618], [47.357423, 8.553504], [47.399929, 8.504527], [47.37381, 8.537771], [47.367235, 8.544322], [47.409337, 8.540134], [47.383437, 8.539466], [47.369472, 8.541865], [47.37082, 8.542966], [47.375174, 8.522928], [47.375546, 8.496452], [47.382212, 8.488452], [47.378496, 8.523645], [47.360495, 8.552085], [47.339112, 8.519125], [47.380627, 8.582396], [47.352022, 8.525621], [47.378647, 8.546558], [47.365606, 8.555727], [47.369943, 8.529177], [47.378864, 8.518898], [47.389715, 8.478388], [47.412021, 8.524487], [47.385831, 8.496007], [47.37336, 8.533074], [47.335982, 8.518135], [47.375542, 8.526882], [47.409627, 8.549296], [47.368845, 8.519701], [47.368261, 8.538663], [47.398111, 8.532536], [47.385035, 8.516957], [47.373017, 8.531359], [47.377324, 8.562461], [47.369162, 8.528023], [47.396299, 8.508958], [47.373814, 8.502773], [47.364111, 8.5475], [47.417136, 8.541912], [47.37718, 8.540052], [47.405161, 8.593748], [47.39122, 8.523109], [47.413876, 8.544243], [47.367342, 8.544443], [47.419203, 8.546832], [47.335374, 8.527306], [47.391045, 8.522509], [47.374758, 8.540333], [47.366699, 8.54962], [47.370382, 8.515032], [47.389633, 8.511937], [47.411471, 8.526569], [47.404292, 8.5605], [47.382304, 8.54037], [47.403598, 8.534451], [47.39173, 8.51084], [47.375004, 8.547515], [47.370986, 8.530192], [47.374901, 8.493142], [47.378219, 8.50992], [47.379361, 8.537726], [47.401794, 8.548205], [47.373377, 8.52746], [47.389349, 8.48507], [47.362233, 8.55939], [47.413999, 8.478624], [47.343688, 8.52999], [47.374692, 8.538729], [47.371178, 8.514545], [47.378495, 8.575186], [47.386778, 8.547561], [47.372483, 8.513446], [47.39865, 8.539224], [47.374623, 8.512588], [47.374755, 8.520642], [47.365442, 8.598739], [47.411401, 8.56208], [47.377178, 8.526982], [47.42255, 8.536404], [47.391681, 8.518972], [47.401256, 8.54516], [47.373617, 8.536377], [47.411927, 8.543911], [47.40414, 8.58881], [47.376731, 8.538096], [47.399707, 8.543445], [47.396589, 8.528875], [47.331902, 8.516809], [47.401993, 8.495202], [47.368583, 8.51207], [47.367621, 8.545402], [47.409584, 8.549971], [47.370179, 8.548818], [47.357544, 8.521881], [47.376002, 8.53816], [47.42255, 8.536418], [47.411179, 8.526086], [47.41335, 8.532398], [47.357849, 8.523013], [47.357637, 8.521605], [47.38154, 8.513628], [47.390759, 8.523338], [47.414944, 8.541654], [47.377129, 8.541627], [47.372972, 8.531371], [47.401111, 8.51772], [47.393405, 8.499906], [47.354526, 8.526254], [47.381207, 8.537553]], [[47.389562, 8.521459], [47.379468, 8.537821], [47.39055, 8.509068], [47.37746, 8.522829], [47.38656, 8.518339], [47.376285, 8.516701], [47.376455, 8.549015], [47.393752, 8.512934], [47.414913, 8.561651], [47.402449, 8.536043], [47.406063, 8.580849], [47.378556, 8.540107], [47.35167, 8.525786], [47.376182, 8.536244], [47.414249, 8.546623], [47.35483, 8.601182], [47.388354, 8.514004], [47.410552, 8.572624], [47.384773, 8.509336], [47.37773, 8.538064], [47.388334, 8.536269], [47.376102, 8.543684], [47.3795, 8.525877], [47.360316, 8.523712], [47.414225, 8.551009], [47.403962, 8.48545], [47.377125, 8.535376], [47.356989, 8.600263], [47.364868, 8.56678], [47.366307, 8.519862], [47.374155, 8.538387], [47.386193, 8.518093], [47.366934, 8.545719], [47.367749, 8.496218], [47.401348, 8.543956], [47.375909, 8.541257], [47.388632, 8.483731], [47.370045, 8.525035], [47.370759, 8.54834], [47.364356, 8.531234], [47.411312, 8.562039], [47.374014, 8.544767], [47.366885, 8.518589], [47.383008, 8.499739], [47.410798, 8.537779], [47.426987, 8.546477], [47.38769, 8.486401], [47.417347, 8.513834], [47.413262, 8.532198], [47.374474, 8.541784], [47.364347, 8.548141], [47.36533, 8.531837], [47.397708, 8.53327], [47.403335, 8.486166], [47.357638, 8.554594], [47.372292, 8.535674], [47.359136, 8.521993], [47.374486, 8.539533], [47.359348, 8.523361], [47.363725, 8.533273], [47.414313, 8.551143], [47.36905, 8.550212], [47.414077, 8.546752], [47.384392, 8.488125], [47.363672, 8.498387], [47.403205, 8.498472], [47.373607, 8.553392], [47.373471, 8.553535], [47.412359, 8.547617], [47.339539, 8.528265], [47.362048, 8.503876], [47.393864, 8.489993], [47.383104, 8.473319], [47.409116, 8.544356], [47.376029, 8.527647], [47.385254, 8.48434], [47.372055, 8.48763], [47.351467, 8.576754], [47.361848, 8.550816], [47.379043, 8.494694], [47.372708, 8.521117], [47.410136, 8.544987], [47.387092, 8.519171], [47.374108, 8.53391], [47.373774, 8.519669], [47.39776, 8.533496], [47.387183, 8.497716], [47.367227, 8.559164], [47.407818, 8.547456], [47.386015, 8.526579], [47.363125, 8.567577], [47.372394, 8.515284], [47.364964, 8.545771], [47.391576, 8.538707], [47.361038, 8.548045], [47.360697, 8.566506], [47.370992, 8.561507], [47.369031, 8.540969], [47.373016, 8.554068], [47.363073, 8.533671], [47.366883, 8.535073], [47.415495, 8.48133], [47.410789, 8.545318], [47.424538, 8.548639], [47.374985, 8.492826], [47.37453, 8.527298], [47.367626, 8.506609], [47.39865, 8.539197], [47.368633, 8.559829], [47.3642, 8.555975], [47.406866, 8.586935], [47.369342, 8.557235], [47.385188, 8.536933], [47.361388, 8.522568], [47.366936, 8.558615], [47.373273, 8.525154], [47.373841, 8.536487], [47.337635, 8.528887], [47.385, 8.532161], [47.383481, 8.573081], [47.353699, 8.556338], [47.368925, 8.492534], [47.364574, 8.558207], [47.341972, 8.530617], [47.377205, 8.540278], [47.370406, 8.537251], [47.370244, 8.513374], [47.374583, 8.518838], [47.386132, 8.548316], [47.375757, 8.535454], [47.384922, 8.529908], [47.376296, 8.526116], [47.378297, 8.530368], [47.389255, 8.496353], [47.371781, 8.488075], [47.394792, 8.525818], [47.395757, 8.54543], [47.386408, 8.51823], [47.378519, 8.540133], [47.357475, 8.585844], [47.386748, 8.489178], [47.38868, 8.51858], [47.394002, 8.523722], [47.357899, 8.520552], [47.398009, 8.531885], [47.364737, 8.554398], [47.400194, 8.546211], [47.377897, 8.545973], [47.377805, 8.507978], [47.36606, 8.540272], [47.418624, 8.547191], [47.411082, 8.545775], [47.39593, 8.492366], [47.381951, 8.509094], [47.373192, 8.503926], [47.362478, 8.53383], [47.372367, 8.517257], [47.359578, 8.57698], [47.406602, 8.551459], [47.36391, 8.531755], [47.373524, 8.534839], [47.360111, 8.550899], [47.419542, 8.548045], [47.376158, 8.540653], [47.410167, 8.542708], [47.41678, 8.536829], [47.414777, 8.560919], [47.391306, 8.537721], [47.391651, 8.513541], [47.409063, 8.545269], [47.366375, 8.499871], [47.399647, 8.468103], [47.367961, 8.532315], [47.380676, 8.525172], [47.344492, 8.53051], [47.398999, 8.505886], [47.396703, 8.523525], [47.375634, 8.487767], [47.377497, 8.538906], [47.383432, 8.549452], [47.389252, 8.516128], [47.343038, 8.53588], [47.39236, 8.516549], [47.41219, 8.54654], [47.412443, 8.546439], [47.375031, 8.539941], [47.408588, 8.580174], [47.41769, 8.546098], [47.378442, 8.510123], [47.412501, 8.523224], [47.399656, 8.543193], [47.374536, 8.539958], [47.33991, 8.529953], [47.376551, 8.541893], [47.363429, 8.554768], [47.405645, 8.549955], [47.367009, 8.544476], [47.370288, 8.513441], [47.386951, 8.51881], [47.356664, 8.52369], [47.370088, 8.511742], [47.37396, 8.540992], [47.377549, 8.543767], [47.338914, 8.538203], [47.379379, 8.544269], [47.376969, 8.543318], [47.396144, 8.527462], [47.359673, 8.516471], [47.388751, 8.472475], [47.369553, 8.52856], [47.393326, 8.524874], [47.377539, 8.54198], [47.369714, 8.509418], [47.391173, 8.489238], [47.393755, 8.545044], [47.373305, 8.535086], [47.417143, 8.557179], [47.394135, 8.54488], [47.381295, 8.517702], [47.374533, 8.549743], [47.370396, 8.515429], [47.374846, 8.515665], [47.368752, 8.524757], [47.34139, 8.53038], [47.368355, 8.541048], [47.396898, 8.509368], [47.369921, 8.552269], [47.386355, 8.535354], [47.373563, 8.525001], [47.397962, 8.507137], [47.378768, 8.542349], [47.385682, 8.548347], [47.357419, 8.521826], [47.380292, 8.512425], [47.409332, 8.545368], [47.376852, 8.543329], [47.365216, 8.545736], [47.411142, 8.526138], [47.383439, 8.549558], [47.366523, 8.545419], [47.362751, 8.548571], [47.381427, 8.503482], [47.370161, 8.548791], [47.391233, 8.487518], [47.368312, 8.523742], [47.375623, 8.526831], [47.368603, 8.49924], [47.367101, 8.544306], [47.390451, 8.491449], [47.388642, 8.52556], [47.407756, 8.565091], [47.359143, 8.586436], [47.377705, 8.525403], [47.38337, 8.530459], [47.376858, 8.491591], [47.326001, 8.513925], [47.414481, 8.51538], [47.374424, 8.527137], [47.358312, 8.583996], [47.3677, 8.523769], [47.384494, 8.547501], [47.408389, 8.541413], [47.406547, 8.584622], [47.355447, 8.532521], [47.389673, 8.524005], [47.377197, 8.540145], [47.397001, 8.480305], [47.37165, 8.512105], [47.360486, 8.596976], [47.371817, 8.525972], [47.393278, 8.526118], [47.377683, 8.538261], [47.357024, 8.553853], [47.348303, 8.56267], [47.399899, 8.545013], [47.386749, 8.523111], [47.417998, 8.559847], [47.361841, 8.560864], [47.350119, 8.560922], [47.359745, 8.599039], [47.387133, 8.485384], [47.376834, 8.548917], [47.397988, 8.534136], [47.393785, 8.529639], [47.391371, 8.53755], [47.367081, 8.536004], [47.32955, 8.529714], [47.39392, 8.499704], [47.38687, 8.490544], [47.355322, 8.507474], [47.412623, 8.529362], [47.377626, 8.519522], [47.399399, 8.542803], [47.371993, 8.489483], [47.370167, 8.551003], [47.382091, 8.551358], [47.364436, 8.536942], [47.369925, 8.529151], [47.378078, 8.483114], [47.41379, 8.509376], [47.407087, 8.580076], [47.36723, 8.501821], [47.369069, 8.537911], [47.38689, 8.5022], [47.322572, 8.501487], [47.412167, 8.546102], [47.397532, 8.531888], [47.395056, 8.484586], [47.344122, 8.528795], [47.385897, 8.538033], [47.37299, 8.531332], [47.36836, 8.524418], [47.339094, 8.519125], [47.377139, 8.547123], [47.409399, 8.538267], [47.386504, 8.529092], [47.370877, 8.534996], [47.366816, 8.545822], [47.399409, 8.50139], [47.368289, 8.524337], [47.37795, 8.530003], [47.378734, 8.54219], [47.36396, 8.530299], [47.364774, 8.566327], [47.370805, 8.544435], [47.378095, 8.483194], [47.406383, 8.573012], [47.363685, 8.547849], [47.369511, 8.526362], [47.375631, 8.559896], [47.333803, 8.528915], [47.400126, 8.494794], [47.360271, 8.534209], [47.409425, 8.549703], [47.41445, 8.517778], [47.351599, 8.525652], [47.414693, 8.561209], [47.412178, 8.550555], [47.378152, 8.527677], [47.379095, 8.518267], [47.397024, 8.530434], [47.373019, 8.54713], [47.375397, 8.527011], [47.418891, 8.507411], [47.327374, 8.529538], [47.383079, 8.529844], [47.405681, 8.585862], [47.426017, 8.547292], [47.357994, 8.519945], [47.367499, 8.552483], [47.398503, 8.534809], [47.423805, 8.496297], [47.409399, 8.53828], [47.376845, 8.513587], [47.358221, 8.571405], [47.397026, 8.530275], [47.337092, 8.519693], [47.397215, 8.491517], [47.393283, 8.492644], [47.371724, 8.515721], [47.409327, 8.546759], [47.407499, 8.547039], [47.376956, 8.512265], [47.376967, 8.543544], [47.366891, 8.536106], [47.414592, 8.559537], [47.371621, 8.547564], [47.326952, 8.529503], [47.414575, 8.551095], [47.373029, 8.547077], [47.378433, 8.510149], [47.383376, 8.484078], [47.356478, 8.535772], [47.373088, 8.550282], [47.375002, 8.534472], [47.398062, 8.474418], [47.375283, 8.544634], [47.415098, 8.562052], [47.40382, 8.486268], [47.371243, 8.523007], [47.376095, 8.488438], [47.373463, 8.546795], [47.430908, 8.550297], [47.378128, 8.528272], [47.415461, 8.562736], [47.36537, 8.530461], [47.376805, 8.535039], [47.385899, 8.517849], [47.411484, 8.506839], [47.370466, 8.549778], [47.364042, 8.515738], [47.381454, 8.503403], [47.367829, 8.53966], [47.386619, 8.529267], [47.415176, 8.547477], [47.368663, 8.546509], [47.407705, 8.584886], [47.423348, 8.549794], [47.364114, 8.566618], [47.422748, 8.550471], [47.413415, 8.48056], [47.35558, 8.535635], [47.389408, 8.527271], [47.41932, 8.50575], [47.404222, 8.562207], [47.427224, 8.491249], [47.375212, 8.547414], [47.374377, 8.54153], [47.407887, 8.582915], [47.390836, 8.545513], [47.37885, 8.528962], [47.401521, 8.587111], [47.403235, 8.516557], [47.411646, 8.509784], [47.414139, 8.536443], [47.406577, 8.482785], [47.353587, 8.576138], [47.378031, 8.528085], [47.408177, 8.555016], [47.364568, 8.521084], [47.407888, 8.478067], [47.394828, 8.523951], [47.393486, 8.473163], [47.358268, 8.584842], [47.379205, 8.525672], [47.379212, 8.544795], [47.363612, 8.552614], [47.412277, 8.542116], [47.372745, 8.534465], [47.385003, 8.508718], [47.38494, 8.50881], [47.326315, 8.514923], [47.375423, 8.564633], [47.377035, 8.520185], [47.382655, 8.514631], [47.326361, 8.518695], [47.378305, 8.540923], [47.361031, 8.577382], [47.383936, 8.538986], [47.371057, 8.530286], [47.389536, 8.489233], [47.388638, 8.543997], [47.36512, 8.53411], [47.387008, 8.539474], [47.414522, 8.550988], [47.375428, 8.485684], [47.37785, 8.507979], [47.401912, 8.500142], [47.405369, 8.504742], [47.377169, 8.526995], [47.414411, 8.518996], [47.382504, 8.529713], [47.382487, 8.551366], [47.377531, 8.543767], [47.369041, 8.537937], [47.363721, 8.54781], [47.373849, 8.536567], [47.398516, 8.494815], [47.384793, 8.524554], [47.374886, 8.544732], [47.385815, 8.520099], [47.425323, 8.494578], [47.366711, 8.544642], [47.344252, 8.534991], [47.414118, 8.550847], [47.414118, 8.550847], [47.424081, 8.538106], [47.362104, 8.559718], [47.370717, 8.51672], [47.378566, 8.575214], [47.395192, 8.510036], [47.3558, 8.572399], [47.375296, 8.48437], [47.428228, 8.545562], [47.338453, 8.529963], [47.398588, 8.532559], [47.399065, 8.521957], [47.365203, 8.547086], [47.373494, 8.529382], [47.370188, 8.548805], [47.378174, 8.509932], [47.384444, 8.531911], [47.394437, 8.525294], [47.389482, 8.546969], [47.389745, 8.478031], [47.36436, 8.555224], [47.410317, 8.542009], [47.405873, 8.481075], [47.386795, 8.522993], [47.387389, 8.487945], [47.39441, 8.519531], [47.372409, 8.521442], [47.371869, 8.526224], [47.386793, 8.534714], [47.371521, 8.528786], [47.391627, 8.517117], [47.370983, 8.53141], [47.339519, 8.518922], [47.338342, 8.532117], [47.388574, 8.491081], [47.386954, 8.473288], [47.382108, 8.528791], [47.365487, 8.552163], [47.376282, 8.555765], [47.378281, 8.512874], [47.400161, 8.590976], [47.364356, 8.531155], [47.380545, 8.517052], [47.389439, 8.511523], [47.369786, 8.508426], [47.409302, 8.57526], [47.398849, 8.533465], [47.41934, 8.50644], [47.374439, 8.525588], [47.388642, 8.525547], [47.369997, 8.510973], [47.39319, 8.479052], [47.365475, 8.564555], [47.430065, 8.545414], [47.373286, 8.531457], [47.370937, 8.531608], [47.370713, 8.535284], [47.383235, 8.515133], [47.385092, 8.501052], [47.381762, 8.540623], [47.370397, 8.507578], [47.401224, 8.534322], [47.381487, 8.503748], [47.3795, 8.559726], [47.378872, 8.542749], [47.414373, 8.546811], [47.387979, 8.485361], [47.421215, 8.500195], [47.409391, 8.53824], [47.383079, 8.484046], [47.408793, 8.555546], [47.39336, 8.493057], [47.39378, 8.498284], [47.370969, 8.564711], [47.392082, 8.51751], [47.357267, 8.521743], [47.390518, 8.479119], [47.367083, 8.523386], [47.406235, 8.480817], [47.365055, 8.562428], [47.414826, 8.551154], [47.397829, 8.47636], [47.364543, 8.53145], [47.366756, 8.547423], [47.429845, 8.542997], [47.381164, 8.53726], [47.382066, 8.550231], [47.387796, 8.471649], [47.384358, 8.548518], [47.359508, 8.522557], [47.368011, 8.535665], [47.361694, 8.574007], [47.379636, 8.546618], [47.36603, 8.504141], [47.393164, 8.488893], [47.365119, 8.534176], [47.377354, 8.529329], [47.373706, 8.518383], [47.354152, 8.576295], [47.408813, 8.545993], [47.373027, 8.562159], [47.363784, 8.535552], [47.371915, 8.473234], [47.354894, 8.574881], [47.370574, 8.529972], [47.358473, 8.551884], [47.390304, 8.54941], [47.371678, 8.515866], [47.368216, 8.495274], [47.375209, 8.515328], [47.389801, 8.521875], [47.418699, 8.507752], [47.355595, 8.560243], [47.388318, 8.523673], [47.378947, 8.544353], [47.362638, 8.548224], [47.388086, 8.485456], [47.394231, 8.47527], [47.385007, 8.541843], [47.349987, 8.56984], [47.359389, 8.577016], [47.393112, 8.524618], [47.431328, 8.516463], [47.37541, 8.530349], [47.364851, 8.5667], [47.405147, 8.564201], [47.399275, 8.53309], [47.338416, 8.530055], [47.408556, 8.546531], [47.368661, 8.543901], [47.36198, 8.568757], [47.386241, 8.498359], [47.377857, 8.559413], [47.369025, 8.532111], [47.402832, 8.580978], [47.409674, 8.563952], [47.391107, 8.511079], [47.374274, 8.542958], [47.377196, 8.540304], [47.386447, 8.496483], [47.330144, 8.529687], [47.40863, 8.543472], [47.378767, 8.515837], [47.414209, 8.518528], [47.414035, 8.545426], [47.37431, 8.490892], [47.414605, 8.571133], [47.357129, 8.522045], [47.419152, 8.506409], [47.365162, 8.553189], [47.378722, 8.510923], [47.378369, 8.528463], [47.387789, 8.488443], [47.377481, 8.535794], [47.392459, 8.532857], [47.375499, 8.541831], [47.376804, 8.537012], [47.380044, 8.536827], [47.380167, 8.535227], [47.379219, 8.54698], [47.358972, 8.51643], [47.373577, 8.534919], [47.35945, 8.535423], [47.374537, 8.539865], [47.357571, 8.554023], [47.349442, 8.527382], [47.369209, 8.527905], [47.396485, 8.504339], [47.397695, 8.51263], [47.374457, 8.538791], [47.374554, 8.541825], [47.377676, 8.525614], [47.375676, 8.516437], [47.378298, 8.543584], [47.368781, 8.524625], [47.352161, 8.558172], [47.373546, 8.534415], [47.35871, 8.527041], [47.368233, 8.56125], [47.389254, 8.527387], [47.337314, 8.524765], [47.356394, 8.523658], [47.367381, 8.534726], [47.360447, 8.531763], [47.373691, 8.537106], [47.383587, 8.50914], [47.373861, 8.524808], [47.368459, 8.524367], [47.405242, 8.555299], [47.359315, 8.569919], [47.369222, 8.565879], [47.391037, 8.52247], [47.383771, 8.547843], [47.378439, 8.563372], [47.379108, 8.548143], [47.381799, 8.51664], [47.371681, 8.535608], [47.379468, 8.537835], [47.419202, 8.546898], [47.382823, 8.575053], [47.410731, 8.55234], [47.402163, 8.584051], [47.375645, 8.525454], [47.381093, 8.535259], [47.366448, 8.544848], [47.428292, 8.545497], [47.399362, 8.542882], [47.381543, 8.506517], [47.394717, 8.478287], [47.409151, 8.508223], [47.380473, 8.538028], [47.381924, 8.529197], [47.366938, 8.544421], [47.411008, 8.545045], [47.379369, 8.528298], [47.384445, 8.531858], [47.370525, 8.511182], [47.381193, 8.491637], [47.427456, 8.546314], [47.370224, 8.557134], [47.429517, 8.54531], [47.378616, 8.527117], [47.375159, 8.52363], [47.37379, 8.536129], [47.377465, 8.51936], [47.359089, 8.516432], [47.388478, 8.486814], [47.373568, 8.525372], [47.34321, 8.535764], [47.373682, 8.533266], [47.380052, 8.512115], [47.364302, 8.5463], [47.360965, 8.534925], [47.405461, 8.503512], [47.409557, 8.537753], [47.41978, 8.504659], [47.385866, 8.508802], [47.395786, 8.545232], [47.376051, 8.49135], [47.38543, 8.530448], [47.398889, 8.509991], [47.372558, 8.478702], [47.393937, 8.5249], [47.348976, 8.563796], [47.395095, 8.5223], [47.370899, 8.559969], [47.405632, 8.588008], [47.363923, 8.534138], [47.370872, 8.559915], [47.430255, 8.54058], [47.410558, 8.527054], [47.395697, 8.522352], [47.421565, 8.549996], [47.376436, 8.538858], [47.35692, 8.522239], [47.40204, 8.498011], [47.353571, 8.511966], [47.356978, 8.552157], [47.380598, 8.500724], [47.410602, 8.550814], [47.355183, 8.530954], [47.358523, 8.521107], [47.390162, 8.510213], [47.353647, 8.554311], [47.369616, 8.528601], [47.378396, 8.539825], [47.410928, 8.564509], [47.368924, 8.528521], [47.376891, 8.544879], [47.359369, 8.507582], [47.379038, 8.542355], [47.368877, 8.513386], [47.379098, 8.500416], [47.369945, 8.48028], [47.368919, 8.523291], [47.428994, 8.543549], [47.377349, 8.498911], [47.34105, 8.530161], [47.414863, 8.51499], [47.380927, 8.518556], [47.375581, 8.520831], [47.398801, 8.542301], [47.416537, 8.522551], [47.415899, 8.546246], [47.399222, 8.511879], [47.413788, 8.536449], [47.35342, 8.51183], [47.365533, 8.598701], [47.396042, 8.544853], [47.352909, 8.573661], [47.358333, 8.588219], [47.389624, 8.550972], [47.371825, 8.473272], [47.420742, 8.508522], [47.39141, 8.523007], [47.390053, 8.491693], [47.3728, 8.550276], [47.397861, 8.533286], [47.391367, 8.536106], [47.414008, 8.525534], [47.403513, 8.57674], [47.374912, 8.553353], [47.377715, 8.498203], [47.398741, 8.50653], [47.389108, 8.527649], [47.401995, 8.499892], [47.360321, 8.548692], [47.386393, 8.497528], [47.336772, 8.525959], [47.387922, 8.486644], [47.383061, 8.530797], [47.379159, 8.518149], [47.422717, 8.495255], [47.360505, 8.525635], [47.383458, 8.531586], [47.367939, 8.549765], [47.360635, 8.570106], [47.376034, 8.535685], [47.364655, 8.568324], [47.340991, 8.52406], [47.379233, 8.527474], [47.430745, 8.550413], [47.370953, 8.560844], [47.400798, 8.548794], [47.354607, 8.531008], [47.375543, 8.526736], [47.364001, 8.551404], [47.383993, 8.57774], [47.352356, 8.509109], [47.367494, 8.541732], [47.406453, 8.49537], [47.382204, 8.553585], [47.383021, 8.575057], [47.378953, 8.515126], [47.390824, 8.474118], [47.43019, 8.549261], [47.407115, 8.536325], [47.40548, 8.480736], [47.385869, 8.492776], [47.398573, 8.493491], [47.390483, 8.524909], [47.3306, 8.515592], [47.370321, 8.547073], [47.377751, 8.541467], [47.41193, 8.563205], [47.375455, 8.545432], [47.377226, 8.539907], [47.368882, 8.554591], [47.408727, 8.549357], [47.415282, 8.547718], [47.390509, 8.50863], [47.369385, 8.548126], [47.367382, 8.494052], [47.362312, 8.526665], [47.373754, 8.536154], [47.381881, 8.516549], [47.393523, 8.51244], [47.376938, 8.535253], [47.371648, 8.520963], [47.405962, 8.481103], [47.349982, 8.56117], [47.400774, 8.499682], [47.425634, 8.49404], [47.386057, 8.533547], [47.390942, 8.522044], [47.384727, 8.531533], [47.40678, 8.557187], [47.414744, 8.561475], [47.384558, 8.54831], [47.364112, 8.530329], [47.384454, 8.531872], [47.38609, 8.528197], [47.353619, 8.55439], [47.351873, 8.572924], [47.360234, 8.56602], [47.36996, 8.51975], [47.379272, 8.515635], [47.360092, 8.595882], [47.369538, 8.555544], [47.359504, 8.557863], [47.382714, 8.531346], [47.430736, 8.550412], [47.386176, 8.518], [47.427492, 8.546395], [47.369619, 8.553666], [47.376293, 8.538776], [47.377959, 8.530043], [47.354012, 8.601191], [47.423971, 8.502742], [47.405237, 8.593392], [47.349442, 8.534039], [47.423794, 8.516947], [47.374478, 8.546101], [47.395511, 8.535423], [47.370446, 8.512954], [47.352127, 8.530759], [47.369002, 8.502783], [47.388475, 8.473225], [47.410468, 8.542198], [47.384222, 8.525973], [47.371752, 8.522369], [47.398237, 8.494822], [47.376958, 8.569499], [47.375547, 8.529213], [47.371994, 8.53204], [47.406236, 8.547344], [47.379252, 8.537857], [47.370197, 8.548805], [47.3438, 8.535207], [47.369717, 8.518779], [47.401266, 8.54785], [47.390508, 8.484232], [47.393221, 8.52458], [47.410522, 8.572875], [47.389886, 8.538593], [47.366333, 8.5409], [47.373613, 8.553723], [47.366811, 8.544525], [47.385916, 8.498538], [47.405613, 8.570796], [47.361294, 8.554207], [47.377081, 8.54197], [47.403184, 8.497795], [47.368632, 8.547806], [47.380108, 8.490278], [47.366261, 8.520907], [47.407509, 8.492038], [47.427421, 8.546287], [47.37834, 8.528714], [47.3937, 8.510774], [47.375063, 8.528064], [47.370143, 8.548818], [47.324598, 8.515828], [47.373075, 8.524236], [47.393426, 8.524744], [47.383852, 8.573724], [47.387247, 8.518922], [47.399204, 8.538705], [47.360588, 8.501172], [47.3951, 8.546503], [47.385115, 8.495556], [47.356236, 8.572871], [47.404278, 8.484383], [47.351679, 8.488857], [47.369963, 8.536593], [47.377829, 8.511236], [47.393952, 8.521443], [47.358212, 8.526502], [47.377609, 8.538458], [47.392706, 8.539075], [47.340198, 8.529932], [47.395777, 8.511836], [47.376967, 8.542564], [47.422705, 8.540927], [47.371471, 8.556552], [47.349165, 8.562874], [47.391086, 8.536286], [47.405832, 8.551059], [47.375607, 8.514118], [47.38859, 8.531109], [47.384364, 8.489144], [47.363431, 8.533837], [47.370125, 8.548817], [47.382171, 8.536394], [47.394688, 8.525458], [47.368313, 8.560418], [47.367759, 8.53942], [47.377669, 8.518715], [47.420941, 8.507492], [47.369455, 8.520799], [47.365424, 8.545661], [47.364533, 8.521044], [47.372589, 8.517553], [47.364568, 8.56623], [47.409709, 8.537836], [47.369589, 8.525675], [47.375802, 8.488022], [47.383237, 8.506127], [47.37017, 8.548805], [47.396907, 8.51321], [47.409575, 8.545293], [47.359408, 8.585078], [47.366797, 8.553488], [47.377972, 8.529554], [47.353843, 8.526227], [47.368163, 8.496173], [47.378138, 8.529107], [47.377701, 8.538182], [47.39956, 8.547576], [47.378761, 8.575536], [47.331397, 8.513068], [47.368805, 8.528704], [47.387686, 8.490812], [47.36006, 8.550646], [47.419197, 8.50637], [47.381022, 8.535258], [47.368513, 8.499185], [47.42515, 8.545802], [47.382697, 8.543543], [47.398641, 8.539211], [47.358433, 8.5551], [47.381772, 8.545246], [47.410664, 8.54521], [47.3694, 8.541811], [47.369483, 8.466567], [47.372683, 8.535258], [47.399484, 8.5405], [47.402875, 8.502108], [47.409623, 8.544062], [47.365459, 8.552308], [47.368646, 8.54643], [47.365111, 8.53411], [47.37126, 8.515367], [47.367903, 8.556265], [47.375181, 8.518373], [47.382976, 8.513882], [47.391003, 8.521316], [47.378687, 8.574859], [47.373353, 8.531962], [47.364466, 8.546144], [47.371093, 8.547275], [47.367566, 8.496532], [47.363897, 8.531251], [47.354037, 8.599616], [47.369726, 8.525532], [47.360024, 8.595457], [47.339689, 8.519044], [47.370461, 8.539993], [47.398148, 8.465755], [47.391637, 8.518905], [47.39603, 8.515656], [47.395994, 8.515655], [47.377301, 8.512828], [47.388167, 8.491378], [47.394447, 8.525268], [47.37806, 8.52786], [47.410575, 8.55728], [47.366473, 8.545034], [47.398647, 8.539595], [47.3854, 8.53646], [47.401324, 8.54181], [47.381785, 8.536359], [47.41115, 8.526231], [47.413843, 8.554247], [47.359142, 8.522218], [47.381291, 8.514259], [47.38673, 8.483244], [47.39119, 8.489292], [47.40972, 8.479375], [47.377441, 8.543805], [47.350119, 8.560961], [47.425792, 8.542608], [47.373232, 8.53519], [47.369475, 8.506142], [47.392183, 8.538256], [47.361807, 8.515282], [47.366231, 8.55709], [47.363086, 8.552099], [47.410378, 8.536617], [47.372893, 8.54714], [47.334471, 8.539038], [47.362792, 8.547168], [47.387858, 8.52471], [47.394017, 8.525021], [47.370398, 8.514278], [47.347005, 8.526379], [47.374014, 8.544753], [47.41323, 8.545899], [47.388266, 8.526347], [47.371879, 8.522279], [47.414015, 8.546671], [47.378503, 8.525764], [47.409118, 8.545111], [47.370236, 8.602419], [47.409008, 8.550038], [47.400619, 8.544074], [47.390959, 8.507686], [47.369688, 8.54187], [47.354781, 8.526842], [47.371863, 8.522119], [47.377072, 8.513326], [47.352988, 8.559208], [47.378512, 8.575213], [47.353373, 8.602117], [47.392, 8.51274], [47.409915, 8.479657], [47.375, 8.545039], [47.403495, 8.583152], [47.38726, 8.533757], [47.374154, 8.544187], [47.376689, 8.511981], [47.375402, 8.528322], [47.36253, 8.56583], [47.373832, 8.53646], [47.375441, 8.518484], [47.390594, 8.539813], [47.336531, 8.537228], [47.366424, 8.552024], [47.374992, 8.545012], [47.370367, 8.548902], [47.401778, 8.500086], [47.419411, 8.506547], [47.403516, 8.534581], [47.338122, 8.530671], [47.40456, 8.484004], [47.363213, 8.51686], [47.355104, 8.558935], [47.382774, 8.53736], [47.405246, 8.570589], [47.404184, 8.560524], [47.398163, 8.53459], [47.368549, 8.523482], [47.415619, 8.569564], [47.378055, 8.529383], [47.370293, 8.535937], [47.39903, 8.533283], [47.369504, 8.510751], [47.393629, 8.511713], [47.389908, 8.51234], [47.389021, 8.496309], [47.411669, 8.48462], [47.386187, 8.498372], [47.374502, 8.538884], [47.391926, 8.511069], [47.372247, 8.535673], [47.367384, 8.491815], [47.370396, 8.537409], [47.378652, 8.527144], [47.384434, 8.503211], [47.400296, 8.518286], [47.405668, 8.591639], [47.387863, 8.49806], [47.373422, 8.550157], [47.383385, 8.531677], [47.398692, 8.539503], [47.369446, 8.541759], [47.419178, 8.547613], [47.374862, 8.51879], [47.391564, 8.54276], [47.383281, 8.530377], [47.38219, 8.547559], [47.379375, 8.521954], [47.405964, 8.558746], [47.363241, 8.554684], [47.352878, 8.531237], [47.345467, 8.529193], [47.402154, 8.508082], [47.375943, 8.577595], [47.355358, 8.559602], [47.382492, 8.537632], [47.354432, 8.556763], [47.400862, 8.499922], [47.366812, 8.55836], [47.38949, 8.490278], [47.360466, 8.594421], [47.389651, 8.511964], [47.411214, 8.526206], [47.385161, 8.537012], [47.40852, 8.54657], [47.398229, 8.527624], [47.384248, 8.496002], [47.364586, 8.53161], [47.400133, 8.543163], [47.369606, 8.528654], [47.404697, 8.483795], [47.359251, 8.569957], [47.357745, 8.514883], [47.385292, 8.543941], [47.388228, 8.519869], [47.39117, 8.522618], [47.406885, 8.586829], [47.382664, 8.514605], [47.367866, 8.55359], [47.380548, 8.489373], [47.363092, 8.517294], [47.37496, 8.551129], [47.361746, 8.560385], [47.38676, 8.547521], [47.390827, 8.52179], [47.391234, 8.487412], [47.380765, 8.512805], [47.405165, 8.564188], [47.369424, 8.537455], [47.406647, 8.503654], [47.383495, 8.498702], [47.38418, 8.511126], [47.411904, 8.506198], [47.405637, 8.585689], [47.376582, 8.536676], [47.410733, 8.555838], [47.381584, 8.529058], [47.367401, 8.490001], [47.373016, 8.554055], [47.373316, 8.55373], [47.37302, 8.532908], [47.403583, 8.494504], [47.409565, 8.546393], [47.399749, 8.467853], [47.349602, 8.561387], [47.383102, 8.530228], [47.422864, 8.550632], [47.375835, 8.53768], [47.358085, 8.557621], [47.378288, 8.541743], [47.409683, 8.575904], [47.371907, 8.536474], [47.367367, 8.528555], [47.398659, 8.532627], [47.377985, 8.530084], [47.366557, 8.540931], [47.354788, 8.574707], [47.386996, 8.481606], [47.402699, 8.537228], [47.357259, 8.552878], [47.380681, 8.534178], [47.398551, 8.472043], [47.37813, 8.526193], [47.37056, 8.549356], [47.398618, 8.52934], [47.375639, 8.521296], [47.402034, 8.497667], [47.373558, 8.513971], [47.390738, 8.488581], [47.38073, 8.534695], [47.369079, 8.528259], [47.37429, 8.524195], [47.346995, 8.52839], [47.372846, 8.573357], [47.39822, 8.532472], [47.378135, 8.540826], [47.413141, 8.513445], [47.360504, 8.527594], [47.374291, 8.525003], [47.387805, 8.49847], [47.414636, 8.517092], [47.391146, 8.489172], [47.372471, 8.563829], [47.421871, 8.537795], [47.422724, 8.540822], [47.342464, 8.530984], [47.412312, 8.509678], [47.377324, 8.500632], [47.414176, 8.478932], [47.369726, 8.525505], [47.376048, 8.540889], [47.337268, 8.52581], [47.379524, 8.537597], [47.380429, 8.519897], [47.377932, 8.530016], [47.372889, 8.521054], [47.382929, 8.575254], [47.382269, 8.540329], [47.381195, 8.491452], [47.399535, 8.496531], [47.399647, 8.515517], [47.407069, 8.580115], [47.424, 8.539947], [47.373969, 8.544726], [47.397849, 8.532676], [47.339732, 8.535441], [47.407351, 8.549328], [47.414278, 8.551102], [47.362282, 8.559007], [47.364059, 8.546361], [47.372593, 8.542778], [47.397251, 8.53118], [47.38195, 8.545382], [47.381249, 8.48352], [47.411007, 8.529939], [47.364503, 8.555293], [47.379097, 8.542793], [47.393666, 8.539306], [47.395298, 8.52555], [47.391357, 8.513217], [47.349035, 8.526672], [47.408721, 8.546243], [47.380286, 8.541679], [47.378952, 8.559701], [47.381442, 8.497893], [47.405052, 8.557309], [47.375411, 8.512008], [47.369155, 8.532591], [47.406943, 8.550565], [47.391115, 8.520855], [47.37017, 8.548792], [47.396694, 8.529275], [47.374562, 8.495836], [47.369302, 8.561365], [47.41761, 8.559945], [47.364236, 8.53155], [47.369621, 8.533712], [47.36846, 8.498099], [47.362489, 8.568186], [47.416476, 8.545105], [47.383643, 8.483368], [47.418761, 8.550732], [47.358222, 8.554632], [47.366745, 8.545781], [47.430476, 8.540929], [47.372974, 8.529253], [47.422864, 8.510579], [47.396776, 8.5339], [47.381853, 8.529103], [47.397782, 8.474478], [47.378357, 8.541096], [47.391651, 8.526019], [47.378157, 8.52618], [47.376926, 8.541265], [47.375912, 8.538145], [47.360673, 8.578116], [47.386754, 8.518767], [47.363812, 8.52884], [47.373045, 8.531187], [47.414944, 8.550997], [47.36697, 8.536293], [47.410512, 8.527106], [47.388145, 8.536292], [47.363802, 8.550552], [47.381785, 8.489888], [47.358312, 8.571261], [47.376851, 8.520605], [47.411678, 8.562285], [47.360967, 8.535666], [47.338002, 8.538581], [47.414659, 8.520432], [47.393361, 8.529749], [47.385678, 8.498944], [47.389408, 8.487468], [47.374301, 8.544812], [47.377295, 8.535565], [47.373025, 8.531452], [47.405376, 8.549817], [47.392053, 8.51184], [47.393348, 8.537737], [47.367073, 8.544345], [47.334303, 8.535025], [47.388521, 8.491067], [47.427215, 8.543353], [47.369043, 8.528325], [47.367954, 8.555617], [47.370725, 8.532106], [47.40542, 8.550904], [47.360604, 8.525611], [47.407399, 8.562937], [47.363216, 8.516595], [47.367636, 8.529607], [47.409444, 8.557017], [47.365788, 8.56566], [47.409101, 8.573732], [47.422047, 8.55043], [47.387098, 8.485304], [47.370604, 8.517208], [47.373789, 8.542842], [47.360322, 8.567213], [47.366112, 8.566541], [47.36493, 8.534265], [47.377488, 8.494491], [47.378878, 8.526976], [47.380956, 8.499936], [47.386742, 8.547574], [47.373274, 8.520255], [47.371157, 8.530142], [47.371997, 8.522175], [47.390589, 8.470219], [47.408313, 8.58527], [47.418918, 8.507319], [47.374359, 8.488483], [47.370236, 8.514288], [47.375706, 8.526581], [47.392085, 8.500608], [47.34363, 8.535124], [47.378914, 8.530791], [47.372675, 8.529432], [47.351795, 8.50465], [47.378489, 8.544264], [47.409281, 8.481102], [47.397077, 8.530567], [47.367469, 8.537733], [47.365108, 8.553254], [47.372521, 8.523788], [47.410636, 8.556565], [47.335123, 8.514823], [47.356653, 8.558703], [47.349433, 8.533999], [47.382299, 8.501579], [47.42751, 8.538853], [47.37734, 8.498911], [47.420981, 8.502152], [47.3677, 8.523782], [47.391903, 8.518354], [47.385418, 8.536408], [47.430012, 8.537698], [47.385107, 8.526481], [47.390693, 8.508237], [47.377205, 8.540238], [47.390966, 8.521408], [47.373924, 8.524836], [47.407513, 8.584351], [47.353559, 8.576203], [47.398996, 8.533111], [47.364295, 8.533868], [47.370939, 8.548291], [47.399745, 8.544162], [47.396581, 8.528769], [47.35884, 8.51611], [47.386797, 8.547469], [47.396998, 8.505316], [47.396229, 8.485192], [47.366936, 8.558641], [47.369925, 8.525403], [47.382551, 8.540905], [47.38971, 8.51231], [47.382063, 8.584572], [47.398285, 8.536951], [47.378232, 8.520064], [47.370289, 8.514302], [47.386482, 8.500563], [47.380368, 8.48349], [47.37054, 8.535466], [47.3716, 8.522339], [47.374722, 8.549694], [47.378222, 8.547701], [47.36601, 8.496501], [47.387594, 8.521313], [47.389671, 8.521329], [47.371324, 8.542937], [47.333739, 8.531838], [47.414112, 8.519229], [47.392142, 8.500358], [47.427414, 8.551668], [47.364591, 8.532947], [47.376762, 8.506937], [47.398811, 8.468034], [47.398153, 8.535703], [47.388252, 8.490982], [47.383773, 8.512402], [47.382342, 8.514399], [47.417663, 8.546137], [47.39338, 8.523855], [47.378838, 8.520699], [47.381519, 8.533056], [47.366902, 8.549968], [47.42081, 8.548999], [47.403727, 8.503265], [47.376695, 8.538982], [47.370325, 8.524948], [47.366466, 8.499793], [47.37718, 8.540052], [47.38322, 8.506021], [47.372533, 8.529257], [47.379804, 8.543152], [47.407145, 8.550172], [47.363943, 8.53488], [47.377973, 8.529461], [47.381192, 8.538162], [47.414197, 8.545455], [47.408014, 8.546745], [47.371611, 8.54763], [47.408737, 8.562289], [47.339492, 8.524704], [47.386087, 8.52462], [47.367528, 8.495842], [47.374593, 8.535867], [47.388035, 8.520303], [47.381773, 8.516613], [47.340809, 8.52616], [47.371597, 8.522564], [47.375752, 8.559488], [47.404321, 8.557559], [47.377189, 8.539999], [47.390494, 8.538989], [47.405055, 8.478952], [47.377068, 8.544208], [47.430702, 8.541822], [47.369531, 8.538504], [47.38585, 8.525026], [47.364804, 8.567811], [47.365102, 8.534149], [47.365093, 8.534149], [47.383019, 8.575176], [47.413472, 8.536562], [47.373141, 8.537267], [47.381315, 8.542217], [47.360155, 8.568613], [47.394555, 8.514646], [47.354376, 8.5552], [47.393715, 8.510125], [47.387399, 8.500647], [47.360051, 8.550633], [47.38528, 8.536776], [47.391347, 8.522992], [47.400902, 8.548319], [47.4049, 8.497074], [47.383691, 8.588183], [47.386522, 8.529106], [47.391062, 8.521689], [47.350711, 8.602019], [47.383151, 8.540189], [47.384485, 8.548454], [47.364818, 8.554413], [47.386507, 8.475968], [47.418512, 8.541993], [47.358813, 8.515129], [47.368826, 8.501337], [47.373571, 8.553391], [47.380173, 8.527917], [47.360091, 8.533252], [47.362267, 8.53139], [47.344252, 8.533125], [47.428675, 8.489037], [47.370253, 8.52488], [47.369524, 8.529778], [47.364624, 8.554885], [47.409031, 8.547627], [47.37642, 8.528211], [47.381242, 8.534799], [47.38179, 8.516693], [47.376822, 8.54452], [47.354592, 8.526891], [47.365614, 8.553926], [47.426572, 8.492707], [47.352875, 8.576241], [47.388761, 8.520529], [47.388654, 8.520448], [47.374753, 8.518934], [47.395104, 8.522261], [47.396997, 8.530486], [47.397838, 8.542307], [47.412614, 8.54643], [47.395207, 8.532437], [47.368667, 8.519446], [47.380874, 8.511655], [47.406692, 8.550427], [47.407917, 8.547498], [47.389691, 8.511488], [47.41107, 8.571137], [47.409206, 8.547233], [47.37921, 8.523262], [47.40851, 8.580809], [47.340406, 8.519257], [47.396129, 8.527104], [47.380616, 8.534336], [47.40688, 8.550524], [47.378022, 8.528085], [47.407592, 8.530611], [47.391311, 8.537297], [47.325794, 8.518697], [47.394778, 8.525447], [47.362897, 8.567837], [47.394368, 8.544938], [47.375847, 8.535469], [47.375652, 8.537107], [47.397451, 8.531966], [47.393414, 8.499933], [47.402854, 8.553951], [47.377918, 8.497717], [47.326352, 8.518748], [47.369883, 8.523138], [47.396697, 8.495997], [47.378597, 8.542385], [47.421725, 8.538018], [47.400262, 8.518047], [47.384125, 8.497668], [47.36903, 8.541075], [47.372337, 8.544216], [47.369984, 8.492819], [47.380466, 8.519765], [47.360272, 8.567728], [47.386159, 8.49751], [47.375652, 8.537107], [47.386248, 8.518081], [47.365128, 8.52091], [47.3758, 8.48732], [47.362314, 8.513982], [47.365794, 8.539856], [47.404175, 8.560524], [47.349821, 8.533954], [47.381808, 8.516693], [47.415291, 8.508518], [47.383463, 8.549029], [47.38454, 8.54831], [47.390695, 8.489308], [47.384107, 8.534341], [47.351289, 8.53368], [47.377179, 8.540118], [47.367611, 8.541774], [47.388545, 8.512882], [47.410504, 8.527093], [47.415926, 8.530092], [47.403645, 8.571549], [47.369819, 8.536629], [47.366897, 8.494903], [47.352263, 8.506619], [47.364665, 8.554343], [47.397683, 8.487459], [47.377733, 8.525324], [47.343904, 8.514643], [47.406544, 8.547204], [47.410613, 8.521238], [47.414951, 8.474759], [47.371406, 8.49768], [47.372364, 8.537556], [47.40017, 8.515409], [47.368663, 8.524676], [47.374831, 8.539275], [47.37084, 8.548302], [47.369712, 8.528908], [47.418592, 8.542114], [47.375596, 8.486958], [47.429974, 8.539885], [47.375502, 8.563932], [47.391366, 8.516105], [47.375693, 8.518437], [47.360358, 8.55048], [47.402405, 8.499343], [47.407368, 8.577101], [47.374612, 8.533894], [47.372629, 8.477843], [47.378564, 8.542067], [47.39017, 8.525724], [47.408982, 8.53957], [47.378042, 8.510591], [47.360293, 8.535679], [47.387258, 8.518764], [47.369771, 8.536853], [47.36518, 8.545775], [47.420296, 8.503331], [47.364543, 8.558657], [47.429929, 8.537922], [47.386188, 8.524397], [47.370868, 8.514949], [47.363145, 8.533672], [47.357782, 8.55175], [47.428731, 8.4888], [47.370924, 8.514765], [47.397203, 8.58723], [47.376034, 8.535711], [47.375625, 8.553037], [47.365874, 8.532378], [47.376175, 8.544507], [47.376513, 8.53923], [47.408961, 8.545532], [47.38853, 8.491014], [47.380797, 8.518937], [47.407418, 8.492209], [47.367198, 8.545459], [47.404462, 8.557827], [47.396494, 8.528489], [47.381418, 8.57154], [47.400228, 8.547325], [47.413112, 8.544174], [47.362561, 8.50476], [47.378632, 8.553735], [47.374906, 8.550188], [47.38397, 8.509532], [47.393147, 8.530447], [47.405046, 8.479005], [47.378066, 8.51381], [47.383931, 8.530987], [47.380405, 8.5282], [47.392009, 8.510806], [47.382689, 8.541543], [47.358514, 8.52108], [47.400368, 8.489976], [47.421823, 8.550346], [47.397859, 8.591775], [47.388765, 8.479946], [47.393785, 8.539137], [47.351809, 8.527258], [47.405557, 8.48613], [47.39915, 8.54248], [47.399674, 8.493062], [47.398062, 8.53484], [47.399537, 8.469399], [47.349765, 8.561338], [47.374243, 8.486428], [47.394521, 8.544875], [47.409305, 8.545367], [47.374292, 8.543859], [47.381438, 8.535942], [47.367878, 8.564394], [47.358379, 8.555152], [47.408124, 8.554922], [47.378293, 8.510649], [47.368469, 8.550729], [47.368122, 8.560612], [47.381726, 8.516824], [47.374301, 8.524857], [47.38052, 8.528348], [47.370953, 8.549735], [47.325564, 8.513453], [47.369146, 8.524024], [47.418912, 8.507067], [47.373354, 8.534742], [47.370509, 8.549064], [47.378351, 8.541771], [47.366512, 8.557785], [47.329901, 8.512416], [47.376172, 8.527769], [47.369262, 8.51166], [47.399006, 8.532091], [47.353443, 8.560449], [47.373952, 8.544607], [47.373964, 8.53012], [47.378902, 8.527282], [47.383708, 8.573708], [47.380784, 8.53561], [47.364436, 8.534175], [47.39132, 8.537298], [47.425715, 8.494055], [47.380994, 8.538104], [47.375733, 8.544604], [47.403834, 8.567857], [47.376061, 8.535725], [47.365176, 8.547112], [47.369164, 8.556119], [47.391316, 8.473373], [47.409389, 8.543103], [47.380215, 8.48346], [47.359022, 8.550069], [47.372542, 8.529257], [47.368561, 8.528805], [47.360785, 8.598532], [47.372744, 8.477077], [47.38837, 8.490865], [47.391114, 8.522855], [47.380839, 8.535519], [47.430955, 8.550139], [47.418803, 8.506177], [47.393687, 8.510323], [47.379361, 8.525384], [47.351087, 8.515979], [47.378416, 8.50999], [47.425615, 8.494159], [47.38963, 8.539024], [47.391387, 8.514807], [47.379342, 8.495428], [47.371616, 8.534879], [47.370125, 8.548844], [47.370286, 8.54886], [47.337583, 8.525816], [47.351574, 8.524553], [47.414317, 8.529039], [47.395331, 8.519179], [47.383113, 8.540439], [47.379993, 8.527052], [47.377469, 8.529517], [47.363032, 8.548391], [47.387408, 8.527628], [47.379988, 8.546493], [47.347331, 8.532805], [47.410712, 8.57003], [47.369217, 8.527997], [47.431521, 8.543668], [47.366847, 8.542659], [47.388081, 8.539191], [47.415958, 8.51427], [47.362139, 8.531613], [47.392674, 8.515734], [47.374636, 8.528466], [47.387448, 8.525284], [47.396357, 8.485949], [47.374259, 8.537926], [47.389758, 8.471514], [47.365576, 8.532517], [47.360058, 8.53574], [47.36728, 8.523496], [47.377995, 8.528124], [47.375814, 8.559516], [47.38288, 8.541335], [47.364472, 8.536956], [47.386539, 8.490418], [47.413012, 8.546146], [47.41937, 8.50807], [47.371457, 8.525037], [47.343857, 8.530153], [47.39689, 8.530405], [47.378722, 8.542507], [47.377548, 8.54198], [47.374474, 8.516968], [47.376192, 8.540839], [47.37225, 8.538242], [47.358873, 8.516401], [47.370771, 8.531948], [47.39606, 8.526864], [47.36494, 8.548286], [47.403562, 8.485932], [47.364402, 8.536796], [47.410433, 8.571866], [47.364001, 8.551417], [47.373916, 8.544646], [47.370151, 8.539496], [47.378468, 8.523671], [47.394052, 8.539394], [47.390249, 8.509565], [47.411995, 8.52446], [47.369409, 8.541811], [47.369461, 8.525924], [47.372564, 8.534501], [47.369461, 8.529697], [47.379958, 8.486991], [47.375305, 8.521408], [47.40267, 8.499839], [47.408427, 8.550609], [47.375865, 8.51256], [47.385152, 8.529409], [47.369966, 8.491773], [47.371234, 8.520107], [47.399134, 8.547872], [47.366856, 8.543599], [47.39066, 8.512766], [47.38928, 8.521838], [47.409608, 8.549322], [47.378777, 8.542323], [47.367839, 8.546082], [47.374821, 8.520286], [47.381254, 8.5288], [47.421041, 8.512226], [47.377382, 8.539579], [47.4145, 8.546694], [47.386162, 8.518582], [47.364455, 8.531197], [47.34446, 8.532971], [47.373881, 8.554801], [47.378723, 8.510883], [47.392677, 8.548717], [47.360513, 8.550272], [47.368822, 8.528863], [47.363973, 8.551535], [47.383285, 8.484222], [47.361379, 8.563992], [47.410851, 8.566866], [47.389789, 8.511623], [47.378225, 8.538974], [47.373506, 8.598345], [47.396108, 8.54455], [47.377549, 8.543767], [47.379648, 8.526423], [47.335627, 8.532922], [47.391784, 8.51859], [47.369997, 8.543386], [47.409831, 8.544835], [47.369322, 8.527271], [47.327274, 8.529668], [47.410222, 8.548222], [47.391711, 8.485408], [47.375081, 8.528091], [47.396165, 8.545094], [47.366539, 8.540957], [47.371277, 8.523114], [47.39082, 8.48849], [47.370068, 8.504195], [47.397188, 8.531245], [47.364641, 8.566126], [47.377719, 8.54197], [47.368752, 8.518998], [47.42038, 8.50104], [47.356941, 8.567022], [47.372324, 8.532311], [47.3542, 8.523653], [47.430737, 8.550386], [47.354171, 8.598785], [47.360172, 8.503388], [47.36902, 8.525041], [47.372881, 8.517055], [47.37165, 8.553907], [47.370134, 8.548804], [47.401946, 8.501401], [47.369014, 8.537977], [47.392793, 8.534626], [47.351823, 8.525736], [47.360875, 8.52923], [47.34475, 8.532699], [47.365564, 8.533801], [47.403102, 8.555188], [47.369014, 8.537977], [47.377265, 8.529221], [47.324767, 8.511162], [47.411261, 8.525902], [47.386233, 8.482413], [47.37896, 8.524978], [47.370179, 8.548805], [47.368396, 8.563902], [47.387117, 8.545939], [47.393907, 8.505943], [47.368934, 8.501418], [47.381423, 8.503932], [47.370336, 8.491661], [47.367656, 8.545482], [47.37945, 8.527372], [47.361066, 8.535694], [47.379693, 8.523497], [47.381525, 8.571662], [47.387999, 8.491004], [47.374467, 8.538725], [47.381171, 8.542214], [47.366052, 8.533533], [47.409405, 8.569379], [47.370666, 8.525048], [47.361942, 8.515246], [47.390744, 8.522013], [47.370596, 8.517142], [47.354027, 8.555895], [47.366656, 8.535293], [47.361807, 8.515296], [47.373463, 8.528892], [47.381192, 8.538162], [47.373436, 8.528905], [47.369238, 8.519934], [47.369411, 8.540739], [47.359503, 8.535437], [47.359722, 8.522733], [47.355665, 8.572436], [47.403641, 8.572861], [47.391283, 8.506672], [47.407622, 8.585122], [47.381549, 8.503908], [47.372035, 8.529564], [47.380784, 8.497072], [47.372518, 8.513605], [47.400447, 8.585723], [47.407674, 8.497633], [47.359847, 8.522881], [47.386193, 8.518146], [47.422712, 8.510497], [47.375245, 8.545772], [47.416966, 8.510248], [47.428237, 8.489691], [47.339008, 8.535916], [47.378473, 8.526995], [47.396428, 8.472015], [47.387967, 8.488592], [47.384427, 8.531871], [47.366207, 8.544644], [47.393964, 8.537273], [47.37291, 8.527384], [47.412872, 8.516222], [47.379672, 8.494706], [47.39835, 8.537681], [47.420068, 8.548546], [47.413751, 8.545976], [47.406907, 8.550524], [47.413238, 8.541341], [47.375165, 8.522941], [47.356503, 8.523608], [47.38757, 8.527644], [47.391619, 8.487618], [47.375425, 8.516259], [47.351912, 8.576247], [47.376101, 8.540917], [47.39296, 8.489525], [47.401749, 8.505146], [47.36377, 8.566928], [47.360967, 8.558198], [47.408114, 8.576229], [47.39017, 8.510226], [47.378015, 8.545803], [47.33295, 8.528725], [47.3348, 8.53002], [47.372045, 8.512245], [47.375464, 8.544572], [47.370143, 8.548818], [47.403301, 8.547693], [47.429459, 8.544792], [47.359233, 8.516382], [47.377433, 8.538984], [47.370086, 8.512047], [47.405206, 8.487183], [47.371282, 8.535997], [47.374123, 8.513214], [47.429846, 8.549466], [47.364595, 8.566191], [47.379447, 8.523889], [47.378456, 8.567213], [47.407599, 8.545941], [47.381174, 8.543803], [47.371205, 8.554295], [47.393314, 8.545088], [47.375009, 8.545039], [47.395482, 8.522295], [47.424832, 8.537605], [47.393709, 8.531995], [47.394667, 8.521921], [47.3972, 8.530888], [47.379246, 8.546941], [47.381915, 8.540574], [47.373858, 8.536567], [47.378581, 8.542147], [47.38494, 8.524213], [47.376852, 8.513772], [47.387267, 8.518764], [47.376902, 8.512211], [47.376919, 8.527744], [47.386979, 8.534996], [47.366156, 8.536792], [47.417118, 8.545728], [47.392786, 8.548548], [47.390106, 8.525762], [47.369005, 8.53799], [47.361482, 8.554264], [47.396199, 8.48943], [47.365282, 8.5388], [47.388806, 8.53865], [47.363526, 8.530542], [47.356256, 8.531651], [47.419228, 8.507895], [47.405702, 8.480992], [47.402506, 8.495265], [47.360751, 8.561953], [47.389873, 8.539029], [47.365539, 8.552349], [47.403875, 8.496988], [47.428701, 8.489077], [47.351205, 8.576815], [47.404831, 8.572555], [47.369502, 8.520575], [47.343664, 8.53535], [47.385174, 8.47622], [47.3698, 8.536655], [47.364214, 8.497207], [47.34438, 8.532876], [47.407436, 8.579381], [47.33967, 8.528651], [47.363691, 8.535841], [47.387529, 8.488385], [47.384821, 8.531998], [47.368143, 8.506169], [47.369651, 8.548516], [47.411966, 8.563179], [47.397251, 8.531167], [47.37354, 8.514937], [47.36486, 8.5667], [47.368003, 8.524093], [47.408914, 8.485931], [47.397087, 8.530488], [47.386538, 8.52357], [47.423717, 8.513632], [47.378037, 8.526549], [47.410468, 8.532776], [47.366179, 8.555911], [47.364467, 8.546912], [47.409433, 8.549756], [47.379014, 8.518252], [47.404161, 8.563822], [47.378966, 8.508902], [47.395748, 8.531255], [47.374825, 8.519915], [47.422926, 8.510726], [47.393188, 8.513625], [47.412578, 8.516945], [47.391659, 8.523237], [47.366882, 8.544579], [47.412028, 8.546563], [47.39776, 8.533536], [47.405111, 8.571527], [47.358803, 8.552195], [47.413283, 8.544138], [47.358604, 8.57083], [47.373373, 8.531724], [47.370045, 8.513463], [47.382431, 8.540293], [47.358328, 8.57146], [47.366327, 8.50122], [47.376719, 8.559959], [47.408279, 8.541649], [47.419771, 8.554239], [47.395723, 8.531136], [47.395829, 8.483594], [47.397972, 8.533871], [47.380985, 8.528622], [47.360898, 8.530607], [47.403657, 8.496241], [47.393874, 8.533469], [47.377593, 8.541981], [47.361853, 8.54744], [47.380525, 8.534466], [47.35697, 8.551072], [47.397787, 8.533483], [47.356848, 8.557198], [47.383332, 8.53157], [47.384106, 8.511376], [47.36439, 8.546487], [47.367401, 8.517276], [47.374352, 8.521442], [47.37648, 8.506376], [47.370823, 8.514948], [47.377134, 8.53919], [47.372263, 8.554741], [47.371255, 8.507237], [47.405792, 8.48102], [47.411361, 8.525851], [47.344034, 8.53144], [47.395687, 8.532089], [47.38558, 8.508597], [47.349477, 8.561279], [47.375781, 8.577631], [47.366639, 8.531414], [47.336745, 8.535499], [47.360361, 8.523739], [47.398301, 8.532407], [47.406728, 8.550455], [47.366976, 8.544144], [47.371618, 8.517493], [47.388697, 8.519667], [47.382013, 8.54823], [47.378337, 8.541374], [47.358334, 8.588193], [47.380149, 8.512263], [47.394928, 8.519012], [47.387013, 8.528494], [47.411105, 8.526257], [47.402562, 8.535529], [47.369014, 8.537977], [47.366595, 8.533187], [47.399175, 8.521761], [47.409944, 8.546242], [47.417182, 8.541886], [47.376906, 8.524301], [47.380635, 8.525741], [47.403062, 8.49831], [47.358111, 8.596078], [47.358937, 8.526861], [47.382884, 8.532329], [47.379169, 8.555892], [47.378482, 8.51938], [47.378687, 8.490316], [47.368097, 8.541758], [47.418401, 8.547027], [47.388192, 8.497484], [47.385208, 8.536774], [47.392676, 8.475161], [47.426666, 8.544323], [47.364459, 8.566308], [47.372745, 8.521052], [47.39812, 8.494847], [47.37743, 8.512566], [47.396013, 8.526995], [47.409568, 8.576618], [47.3918, 8.518816], [47.40557, 8.495551], [47.390784, 8.52261], [47.40327, 8.516677], [47.353843, 8.553521], [47.373032, 8.52691], [47.374959, 8.524751], [47.397473, 8.53243], [47.386641, 8.520274], [47.379323, 8.527476], [47.36721, 8.541316], [47.375776, 8.541069], [47.395313, 8.488923], [47.366248, 8.540316], [47.36709, 8.53979], [47.373778, 8.495013], [47.372702, 8.527565], [47.364122, 8.546349], [47.370565, 8.530991], [47.402436, 8.535553], [47.399989, 8.507787], [47.429953, 8.549587], [47.399587, 8.54755], [47.376392, 8.543465], [47.391601, 8.506308], [47.372881, 8.547458], [47.408614, 8.507907], [47.368532, 8.563732], [47.390814, 8.508716], [47.385065, 8.530983], [47.389153, 8.524749], [47.362216, 8.55461], [47.37595, 8.5594], [47.361572, 8.535453], [47.417784, 8.554144], [47.397932, 8.528598], [47.370912, 8.510183], [47.409312, 8.546467], [47.36672, 8.541782], [47.381671, 8.546409], [47.326265, 8.515478], [47.349959, 8.527842], [47.392823, 8.526678], [47.366924, 8.544011], [47.358591, 8.551873], [47.422583, 8.507883], [47.37851, 8.510508], [47.376546, 8.50986], [47.407329, 8.568262], [47.369492, 8.506183], [47.355112, 8.559081], [47.335032, 8.541537], [47.366847, 8.534119], [47.371214, 8.523126], [47.356011, 8.553553], [47.387811, 8.490934], [47.364274, 8.551979], [47.379733, 8.543084], [47.372382, 8.534722], [47.360445, 8.56376], [47.409712, 8.549814], [47.376922, 8.544456], [47.364854, 8.554361], [47.379959, 8.522046], [47.413491, 8.553405], [47.381328, 8.538072], [47.351395, 8.532014], [47.402413, 8.499436], [47.402444, 8.535619], [47.410325, 8.537398], [47.386189, 8.540516], [47.414066, 8.521268], [47.409115, 8.545429], [47.367798, 8.54007], [47.355912, 8.535668], [47.358782, 8.525176], [47.380958, 8.538157], [47.33465, 8.52966], [47.382051, 8.544298], [47.382733, 8.57231], [47.381495, 8.513574], [47.384227, 8.497339], [47.352993, 8.524754], [47.410705, 8.550326], [47.374249, 8.544652], [47.364606, 8.554951], [47.364633, 8.554859], [47.36852, 8.499437], [47.335534, 8.518894], [47.355281, 8.530162], [47.370134, 8.548791], [47.364872, 8.532701], [47.407835, 8.572645], [47.383247, 8.506074], [47.393508, 8.500491], [47.372504, 8.545543], [47.383568, 8.549296], [47.409039, 8.547694], [47.389322, 8.487983], [47.407351, 8.544584], [47.406549, 8.575347], [47.382607, 8.545382], [47.357956, 8.505687], [47.406603, 8.549405], [47.392828, 8.52334], [47.360221, 8.579258], [47.346409, 8.564179], [47.364029, 8.528725], [47.372247, 8.535752], [47.357325, 8.558108], [47.373097, 8.550296], [47.344386, 8.526498], [47.361346, 8.512586], [47.380574, 8.526495], [47.378976, 8.528965], [47.377846, 8.54188], [47.377925, 8.497903], [47.389954, 8.476803], [47.374535, 8.54005], [47.407819, 8.547416], [47.385845, 8.517821], [47.369794, 8.538218], [47.343115, 8.530574], [47.377531, 8.543767], [47.402799, 8.49168], [47.362897, 8.56781], [47.383847, 8.48275], [47.384736, 8.531467], [47.384928, 8.538768], [47.397326, 8.531857], [47.361297, 8.525519], [47.364863, 8.545927], [47.426514, 8.553572], [47.356497, 8.534674], [47.379001, 8.542407], [47.398483, 8.538863], [47.420702, 8.507063], [47.396016, 8.526691], [47.368082, 8.541413], [47.362532, 8.533832], [47.377904, 8.496273], [47.417351, 8.538298], [47.373848, 8.536673], [47.371245, 8.530369], [47.370833, 8.534942], [47.370389, 8.539064], [47.356708, 8.523771], [47.366185, 8.49706], [47.378854, 8.542788], [47.395227, 8.521694], [47.392781, 8.523472], [47.378851, 8.489101], [47.400719, 8.54866], [47.390719, 8.517973], [47.391178, 8.538911], [47.400465, 8.548814], [47.374552, 8.560734], [47.365073, 8.492788], [47.343054, 8.531354], [47.408639, 8.542531], [47.352903, 8.512297], [47.361117, 8.525515], [47.413509, 8.553432], [47.383985, 8.531028], [47.400054, 8.501734], [47.382207, 8.505643], [47.376469, 8.525815], [47.372142, 8.505666], [47.37558, 8.54182], [47.373159, 8.531507], [47.350366, 8.578001], [47.392819, 8.475243], [47.373443, 8.53481], [47.366839, 8.5537], [47.368981, 8.529092], [47.399833, 8.544455], [47.409126, 8.531967], [47.397956, 8.533738], [47.37396, 8.516177], [47.36607, 8.53356], [47.38146, 8.503734], [47.366128, 8.494464], [47.3862, 8.527947], [47.413389, 8.553774], [47.363995, 8.546452], [47.358299, 8.571631], [47.417698, 8.546217], [47.377054, 8.521973], [47.392107, 8.511841], [47.354434, 8.574991], [47.373056, 8.539556], [47.399528, 8.542488], [47.338152, 8.538862], [47.406355, 8.584936], [47.367898, 8.539926], [47.416838, 8.538275], [47.381863, 8.516588], [47.388103, 8.488569], [47.379086, 8.556036], [47.381755, 8.516573], [47.41096, 8.526347], [47.370648, 8.519248], [47.390704, 8.491309], [47.366215, 8.520998], [47.376911, 8.51229], [47.388503, 8.491066], [47.381156, 8.537247], [47.387509, 8.528358], [47.377769, 8.537747], [47.407065, 8.484477], [47.366931, 8.544143], [47.381993, 8.5094], [47.376508, 8.5407], [47.363006, 8.550138], [47.404731, 8.540198], [47.388802, 8.484794], [47.38866, 8.535057], [47.3761, 8.533475], [47.343701, 8.535231], [47.399635, 8.536873], [47.348683, 8.525791], [47.368201, 8.496001], [47.393783, 8.501821], [47.384268, 8.525855], [47.408393, 8.546594], [47.393016, 8.485393], [47.397136, 8.594753], [47.388976, 8.515831], [47.403515, 8.497007], [47.397001, 8.480305], [47.407737, 8.580765], [47.382098, 8.505786], [47.375525, 8.486891], [47.377157, 8.55924], [47.366865, 8.542659], [47.430764, 8.550386], [47.411618, 8.512751], [47.419608, 8.507664], [47.410247, 8.541835], [47.385257, 8.47593], [47.404983, 8.491922], [47.343329, 8.519369], [47.370244, 8.532533], [47.39885, 8.510295], [47.377485, 8.542058], [47.354704, 8.529355], [47.335426, 8.518878], [47.370805, 8.548262], [47.370299, 8.532429], [47.369849, 8.515273], [47.381083, 8.518201], [47.362759, 8.548677], [47.382689, 8.572176], [47.373614, 8.494255], [47.430271, 8.536935], [47.392811, 8.524188], [47.373257, 8.552405], [47.389801, 8.539995], [47.389744, 8.537398], [47.391302, 8.538198], [47.370808, 8.524296], [47.360543, 8.561128], [47.37321, 8.5039], [47.370972, 8.535475], [47.387067, 8.547462], [47.390058, 8.5098], [47.397478, 8.509803], [47.369494, 8.526202], [47.367174, 8.493161], [47.381588, 8.537203], [47.368735, 8.524744], [47.358278, 8.597379], [47.405439, 8.570249], [47.408088, 8.54464], [47.358643, 8.596844], [47.414887, 8.561584], [47.369877, 8.508388], [47.365116, 8.567195], [47.392344, 8.5077], [47.365686, 8.521809], [47.411142, 8.526178], [47.40896, 8.545625], [47.40896, 8.545625], [47.381847, 8.536453], [47.37141, 8.547944], [47.372354, 8.531094], [47.398506, 8.47905], [47.407248, 8.538395], [47.403991, 8.496076], [47.374513, 8.53956], [47.371765, 8.547527], [47.399609, 8.535773], [47.374443, 8.521285], [47.373693, 8.535915], [47.389173, 8.494524], [47.399934, 8.543251], [47.36336, 8.562802], [47.364612, 8.531677], [47.368639, 8.529137], [47.378659, 8.542519], [47.383271, 8.510233], [47.368157, 8.496822], [47.385898, 8.54553], [47.391107, 8.469527], [47.393335, 8.497692], [47.393185, 8.528342], [47.365276, 8.547035], [47.413339, 8.545822], [47.391406, 8.545181], [47.370535, 8.524635], [47.346448, 8.529173], [47.393274, 8.508288], [47.3972, 8.594675], [47.406701, 8.550441], [47.377077, 8.544221], [47.36941, 8.543572], [47.389136, 8.52753], [47.387139, 8.490655], [47.372911, 8.535885], [47.37538, 8.560699], [47.361818, 8.549253], [47.386188, 8.540529], [47.365391, 8.521591], [47.385891, 8.532047], [47.39853, 8.59118], [47.350026, 8.562151], [47.398848, 8.506638], [47.391908, 8.517811], [47.368759, 8.528809], [47.36489, 8.530888], [47.390929, 8.55088], [47.409927, 8.574823], [47.369574, 8.513877], [47.365955, 8.532353], [47.397791, 8.530251], [47.410446, 8.550161], [47.373326, 8.529088], [47.384425, 8.503197], [47.362444, 8.567271], [47.388642, 8.483678], [47.410868, 8.53517], [47.386453, 8.518244], [47.37728, 8.54837], [47.378468, 8.528465], [47.377227, 8.546409], [47.407706, 8.535688], [47.365433, 8.545582], [47.411688, 8.511971], [47.371561, 8.515916], [47.363646, 8.551899], [47.374403, 8.5787], [47.428163, 8.547721], [47.363262, 8.533661], [47.386861, 8.528411], [47.378733, 8.567364], [47.426533, 8.546945], [47.355269, 8.600477], [47.389728, 8.512323], [47.381638, 8.509829], [47.402502, 8.581687], [47.363758, 8.535419], [47.391516, 8.505723], [47.391389, 8.538491], [47.363105, 8.548208], [47.363675, 8.574751], [47.385031, 8.508639], [47.367729, 8.560352], [47.368612, 8.53103], [47.395775, 8.532197], [47.39194, 8.518183], [47.369159, 8.565824], [47.358609, 8.532004], [47.379213, 8.51137], [47.369478, 8.506778], [47.367609, 8.563382], [47.370024, 8.524373], [47.367469, 8.494345], [47.412118, 8.52474], [47.404341, 8.561004], [47.385379, 8.536778], [47.376459, 8.539203], [47.396826, 8.540948], [47.398031, 8.532389], [47.409651, 8.543903], [47.357633, 8.554117], [47.391921, 8.518315], [47.370287, 8.511654], [47.38532, 8.508526], [47.373549, 8.519757], [47.398645, 8.585062], [47.365445, 8.521632], [47.394151, 8.520347], [47.374139, 8.542929], [47.385248, 8.517213], [47.383021, 8.514877], [47.414609, 8.546604], [47.431206, 8.539831], [47.387985, 8.536063], [47.36901, 8.54122], [47.372727, 8.521064], [47.398077, 8.536099], [47.383414, 8.530499], [47.370859, 8.535022], [47.375558, 8.516474], [47.374362, 8.524183], [47.363779, 8.575163], [47.390703, 8.489454], [47.392022, 8.52392], [47.376756, 8.560741], [47.379295, 8.495639], [47.420857, 8.507795], [47.388127, 8.484887], [47.37868, 8.530839], [47.369318, 8.525802], [47.373158, 8.53454], [47.386976, 8.498665], [47.388095, 8.485429], [47.395388, 8.532295], [47.371485, 8.547667], [47.369933, 8.510071], [47.413754, 8.545672], [47.408834, 8.542813], [47.361502, 8.561453], [47.39706, 8.530501], [47.364324, 8.529791], [47.406432, 8.552277], [47.388956, 8.538984], [47.373444, 8.545033], [47.383576, 8.496691], [47.371284, 8.547041], [47.374735, 8.553972], [47.388596, 8.538937], [47.40526, 8.555286], [47.365744, 8.552605], [47.369907, 8.556453], [47.374584, 8.525459], [47.371252, 8.542935], [47.366584, 8.540998], [47.371626, 8.518526], [47.375352, 8.549668], [47.410721, 8.554341], [47.377196, 8.540238], [47.386797, 8.535151], [47.417038, 8.541844], [47.397797, 8.53241], [47.365343, 8.545646], [47.355988, 8.524736], [47.378164, 8.557486], [47.351675, 8.525283], [47.355921, 8.535681], [47.351474, 8.525597], [47.370379, 8.524896], [47.405816, 8.591218], [47.333066, 8.514411], [47.379045, 8.527377], [47.356397, 8.535757], [47.402966, 8.576543], [47.377524, 8.558559], [47.376987, 8.543332], [47.405964, 8.533479], [47.363661, 8.562359], [47.385051, 8.536241], [47.40712, 8.586715], [47.368568, 8.529004], [47.375402, 8.484518], [47.401561, 8.487323], [47.377512, 8.541979], [47.368842, 8.528652], [47.406218, 8.581581], [47.413366, 8.553363], [47.383701, 8.539101], [47.388296, 8.490996], [47.391409, 8.536385], [47.362988, 8.563126], [47.398605, 8.465936], [47.394719, 8.527896], [47.344571, 8.529784], [47.373582, 8.53439], [47.387477, 8.519391], [47.386407, 8.496932], [47.360454, 8.522444], [47.325616, 8.518574], [47.379354, 8.542176], [47.400447, 8.469178], [47.359694, 8.550294], [47.389615, 8.491433], [47.375635, 8.516979], [47.414344, 8.538501], [47.376438, 8.528185], [47.382197, 8.540301], [47.343296, 8.519977], [47.363514, 8.535586], [47.355711, 8.531269], [47.378924, 8.55978], [47.382705, 8.529412], [47.378761, 8.575536], [47.409234, 8.547101], [47.370188, 8.548818], [47.370161, 8.548805], [47.418268, 8.542068], [47.390647, 8.489665], [47.379989, 8.494461], [47.37771, 8.541957], [47.400224, 8.547696], [47.390763, 8.521974], [47.367621, 8.538755], [47.380118, 8.522367], [47.399263, 8.506541], [47.377549, 8.543781], [47.380451, 8.51946], [47.388486, 8.519159], [47.411692, 8.57009], [47.407094, 8.573941], [47.373575, 8.519784], [47.407028, 8.550156], [47.375312, 8.560327], [47.409845, 8.537799], [47.375695, 8.5354], [47.365099, 8.553214], [47.381378, 8.537477], [47.378786, 8.527213], [47.383467, 8.515349], [47.329891, 8.529735], [47.389731, 8.481554], [47.386971, 8.534903], [47.406912, 8.586883], [47.409719, 8.544355], [47.395597, 8.545228], [47.403861, 8.49655], [47.401096, 8.488043], [47.370125, 8.548791], [47.391034, 8.52084], [47.393803, 8.505477], [47.375881, 8.523327], [47.375688, 8.514133], [47.38048, 8.481042], [47.374429, 8.539836], [47.388356, 8.484428], [47.382964, 8.562435], [47.378253, 8.52168], [47.391538, 8.542693], [47.365964, 8.532326], [47.387699, 8.517713], [47.395543, 8.475442], [47.399188, 8.547926], [47.371324, 8.555953], [47.399407, 8.497707], [47.405824, 8.550038], [47.388801, 8.515298], [47.366328, 8.561951], [47.399689, 8.517797], [47.381242, 8.555406], [47.375535, 8.564211], [47.406205, 8.562673], [47.380663, 8.512088], [47.360504, 8.550285], [47.362463, 8.510543], [47.371656, 8.531649], [47.392931, 8.489803], [47.369135, 8.502984], [47.402978, 8.490809], [47.369374, 8.541758], [47.39997, 8.587581], [47.400439, 8.500881], [47.385271, 8.529186], [47.394921, 8.524602], [47.358428, 8.588671], [47.417364, 8.511966], [47.368905, 8.496704], [47.383384, 8.484198], [47.370097, 8.548936], [47.409712, 8.545137], [47.392378, 8.491183], [47.375887, 8.55389], [47.418061, 8.505645], [47.398962, 8.505978], [47.399812, 8.510341], [47.414884, 8.550704], [47.387421, 8.497244], [47.377078, 8.525139], [47.372472, 8.517511], [47.362751, 8.568032], [47.408363, 8.541266], [47.366741, 8.541491], [47.364187, 8.566553], [47.431248, 8.516368], [47.357206, 8.550891], [47.386466, 8.497423], [47.379919, 8.514708], [47.378201, 8.541411], [47.410052, 8.574905], [47.329909, 8.529748], [47.387805, 8.548272], [47.383993, 8.480475], [47.377069, 8.538461], [47.410675, 8.552564], [47.37748, 8.499337], [47.371388, 8.537165], [47.372606, 8.517646], [47.38148, 8.556828], [47.369032, 8.53795], [47.357528, 8.521669], [47.369402, 8.554747], [47.389612, 8.483803], [47.366364, 8.54049], [47.364647, 8.566431], [47.374969, 8.541741], [47.365808, 8.520262], [47.377314, 8.498765], [47.403739, 8.556301], [47.378454, 8.540356], [47.371668, 8.534138], [47.395262, 8.508236], [47.369889, 8.525336], [47.369104, 8.540825], [47.354862, 8.526857], [47.353219, 8.512144], [47.374546, 8.495584], [47.406907, 8.550538], [47.362176, 8.547526], [47.376002, 8.541921], [47.382712, 8.5007], [47.377371, 8.522748], [47.383415, 8.533228], [47.376621, 8.49397], [47.381856, 8.51631], [47.427361, 8.491039], [47.349171, 8.570551], [47.386814, 8.547496], [47.38869, 8.492196], [47.37443, 8.539783], [47.362685, 8.497163], [47.383154, 8.515052], [47.383984, 8.482461], [47.379652, 8.490018], [47.368603, 8.499253], [47.386175, 8.518119], [47.409123, 8.545549], [47.35361, 8.554337], [47.369313, 8.527298], [47.374352, 8.536604], [47.412888, 8.540287], [47.378803, 8.519612], [47.376802, 8.524868], [47.362054, 8.549046], [47.413834, 8.544865], [47.367922, 8.540284], [47.370749, 8.535285], [47.376229, 8.544508], [47.381237, 8.546599], [47.390467, 8.545612], [47.40548, 8.575192], [47.412891, 8.543732], [47.405126, 8.577384], [47.404501, 8.576867], [47.384173, 8.508993], [47.376381, 8.527548], [47.373663, 8.534365], [47.363642, 8.567071], [47.361246, 8.532865], [47.370448, 8.535676], [47.383943, 8.509518], [47.403047, 8.589303], [47.338285, 8.539116], [47.387521, 8.519497], [47.365425, 8.545568], [47.373411, 8.520019], [47.408447, 8.546674], [47.370268, 8.506887], [47.385835, 8.51798], [47.376938, 8.540881], [47.380061, 8.520723], [47.353599, 8.56482], [47.391943, 8.517892], [47.371716, 8.542322], [47.402433, 8.499278], [47.373456, 8.494782], [47.371222, 8.524185], [47.364926, 8.508766], [47.371086, 8.54987], [47.38573, 8.51766], [47.39245, 8.548858], [47.3772, 8.53988], [47.355675, 8.532235], [47.369858, 8.56425], [47.367038, 8.523372], [47.377255, 8.539696], [47.369163, 8.523137], [47.368368, 8.513892], [47.368964, 8.556367], [47.380957, 8.537322], [47.375754, 8.543386], [47.408983, 8.553509], [47.343331, 8.520044], [47.393102, 8.48876], [47.397059, 8.530594], [47.428008, 8.490111], [47.394726, 8.486195], [47.341108, 8.530705], [47.405031, 8.48763], [47.382646, 8.537503], [47.419208, 8.548223], [47.376083, 8.529555], [47.399587, 8.547563], [47.423125, 8.551473], [47.366859, 8.543268], [47.385612, 8.536889], [47.405694, 8.480966], [47.418434, 8.508197], [47.378699, 8.519239], [47.367812, 8.506996], [47.399247, 8.521789], [47.417521, 8.518277], [47.392646, 8.486446], [47.365745, 8.532693], [47.364258, 8.533006], [47.398915, 8.499406], [47.367807, 8.540017], [47.377856, 8.519884], [47.428773, 8.489105], [47.381218, 8.541036], [47.374728, 8.534016], [47.377202, 8.541509], [47.381442, 8.51352], [47.349604, 8.534003], [47.383522, 8.530568], [47.390962, 8.522759], [47.408923, 8.54577], [47.378758, 8.494383], [47.381474, 8.535889], [47.393104, 8.524525], [47.370024, 8.51186], [47.42052, 8.498458], [47.371822, 8.533996], [47.376995, 8.483503], [47.380288, 8.505962], [47.37687, 8.54329], [47.356695, 8.506853], [47.368097, 8.49551], [47.374754, 8.536016], [47.382424, 8.529684], [47.416897, 8.545286], [47.354777, 8.555579], [47.40886, 8.545755], [47.377312, 8.541339], [47.370042, 8.519633], [47.366976, 8.516618], [47.373888, 8.544738], [47.388795, 8.522689], [47.414092, 8.548886], [47.375735, 8.549093], [47.369141, 8.512981], [47.421724, 8.550304], [47.381076, 8.535232], [47.372279, 8.532297], [47.419304, 8.506452], [47.362359, 8.561206], [47.392168, 8.498411], [47.339983, 8.529875], [47.369257, 8.525628], [47.378116, 8.527663], [47.388144, 8.536371], [47.38012, 8.527889], [47.396996, 8.51239], [47.377752, 8.53764], [47.380357, 8.493634], [47.369869, 8.559444], [47.361657, 8.52644], [47.367163, 8.534893], [47.376404, 8.561806], [47.368515, 8.54787], [47.395423, 8.508305], [47.378636, 8.523038], [47.390644, 8.492009], [47.334891, 8.528924], [47.391032, 8.523026], [47.392961, 8.474544], [47.425504, 8.553816], [47.397002, 8.480292], [47.384016, 8.532459], [47.377162, 8.540078], [47.371, 8.531582], [47.380179, 8.483446], [47.354251, 8.557819], [47.378014, 8.527939], [47.370047, 8.544724], [47.389176, 8.517584], [47.391121, 8.523094], [47.356654, 8.523783], [47.383453, 8.548154], [47.423524, 8.546471], [47.365778, 8.535911], [47.404068, 8.588769], [47.336484, 8.518304], [47.386224, 8.532107], [47.377634, 8.508054], [47.402452, 8.553598], [47.401244, 8.550194], [47.39241, 8.523716], [47.375535, 8.53047], [47.397447, 8.502504], [47.39999, 8.494963], [47.387426, 8.527654], [47.420604, 8.548942], [47.377553, 8.538709], [47.382038, 8.515148], [47.418278, 8.520055], [47.351084, 8.534457], [47.367695, 8.561994], [47.364276, 8.531127], [47.386104, 8.517985], [47.399031, 8.475682], [47.37659, 8.554699], [47.373932, 8.531576], [47.378434, 8.541548], [47.378147, 8.509905], [47.410728, 8.545171], [47.406342, 8.552222], [47.405288, 8.551524], [47.41427, 8.561227], [47.379649, 8.52053], [47.36612, 8.536752], [47.396338, 8.527823], [47.374992, 8.515509], [47.361792, 8.560307], [47.396206, 8.527569], [47.376487, 8.525802], [47.356856, 8.535767], [47.39499, 8.51235], [47.373326, 8.504008], [47.366824, 8.543161], [47.419732, 8.547943], [47.381881, 8.530031], [47.367698, 8.494946], [47.390687, 8.53947], [47.387403, 8.497257], [47.394853, 8.52317], [47.413958, 8.563738], [47.394619, 8.488074], [47.394741, 8.525512], [47.381313, 8.491362], [47.366376, 8.547653], [47.415329, 8.528596], [47.385747, 8.482536], [47.413973, 8.549108], [47.359626, 8.522414], [47.368533, 8.520317], [47.375473, 8.544559], [47.363579, 8.535349], [47.377264, 8.538769], [47.399124, 8.507916], [47.363731, 8.535458], [47.385838, 8.519529], [47.365365, 8.560104], [47.363631, 8.557089], [47.390848, 8.478357], [47.381317, 8.541025], [47.409518, 8.549373], [47.383116, 8.572622], [47.39285, 8.474806], [47.402159, 8.496715], [47.368821, 8.532756], [47.357799, 8.525448], [47.419197, 8.506397], [47.405252, 8.555273], [47.37397, 8.536185], [47.380333, 8.500189], [47.360792, 8.522808], [47.366434, 8.540611], [47.37732, 8.543312], [47.370916, 8.563717], [47.375787, 8.544592], [47.39108, 8.545412], [47.36816, 8.541759], [47.376988, 8.49803], [47.370828, 8.543006], [47.397926, 8.534069], [47.38994, 8.476406], [47.366953, 8.52292], [47.374282, 8.524976], [47.376733, 8.535037], [47.377531, 8.511296], [47.398285, 8.536898], [47.406581, 8.527132], [47.354534, 8.552795], [47.391596, 8.538522], [47.357423, 8.521376], [47.373988, 8.546514], [47.36838, 8.498044], [47.378741, 8.530973], [47.339134, 8.525477], [47.414707, 8.546725], [47.376017, 8.535645], [47.366163, 8.548245], [47.376115, 8.535647], [47.374618, 8.541734], [47.373359, 8.518839], [47.372994, 8.528088], [47.420699, 8.502504], [47.395358, 8.525922], [47.332319, 8.529811], [47.370804, 8.546474], [47.40876, 8.483106], [47.393503, 8.512638], [47.403989, 8.569516], [47.402723, 8.545058], [47.373069, 8.538179], [47.37865, 8.542479], [47.428221, 8.49042], [47.374787, 8.52394], [47.416864, 8.514474], [47.366019, 8.519803], [47.382082, 8.505614], [47.370188, 8.511652], [47.412196, 8.542181], [47.423831, 8.516841], [47.369647, 8.467364], [47.370122, 8.564018], [47.392942, 8.548246], [47.373139, 8.544034], [47.400397, 8.506404], [47.401313, 8.534457], [47.397654, 8.533321], [47.363195, 8.527504], [47.384018, 8.548338], [47.372138, 8.512856], [47.324769, 8.519602], [47.377728, 8.50946], [47.376914, 8.541556], [47.381151, 8.504072], [47.366951, 8.543932], [47.39615, 8.531621], [47.38599, 8.518685], [47.360114, 8.530856], [47.374796, 8.527794], [47.431365, 8.516265], [47.371214, 8.523218], [47.383486, 8.496689], [47.42811, 8.545678], [47.361089, 8.589748], [47.408544, 8.550598], [47.367947, 8.540483], [47.392727, 8.523537], [47.370134, 8.548817], [47.382988, 8.529948], [47.361568, 8.517714], [47.370407, 8.511352], [47.386058, 8.535322], [47.393931, 8.505255], [47.376186, 8.488413], [47.353797, 8.553626], [47.380042, 8.547408], [47.365056, 8.553928], [47.375493, 8.543407], [47.419089, 8.546511], [47.373147, 8.524224], [47.416084, 8.5522], [47.421613, 8.507731], [47.359137, 8.596907], [47.383863, 8.529687], [47.37718, 8.52673], [47.375471, 8.528628], [47.392378, 8.491183], [47.370735, 8.524334], [47.404719, 8.534831], [47.387187, 8.539583], [47.387826, 8.517636], [47.393335, 8.492857], [47.352223, 8.52536], [47.368735, 8.545518], [47.380027, 8.520537], [47.363758, 8.535432], [47.365834, 8.533701], [47.370224, 8.548819], [47.367099, 8.539777], [47.370392, 8.522526], [47.370059, 8.562136], [47.376767, 8.535223], [47.372796, 8.517491], [47.406907, 8.550538], [47.395188, 8.525866], [47.390007, 8.525839], [47.398924, 8.538819], [47.364417, 8.557741], [47.369154, 8.527983], [47.373913, 8.538303], [47.407468, 8.548376], [47.36949, 8.548367], [47.373856, 8.514824], [47.386609, 8.497466], [47.383348, 8.527955], [47.400245, 8.543616], [47.379866, 8.524308], [47.359259, 8.56915], [47.374334, 8.524262], [47.366479, 8.545325], [47.369671, 8.525557], [47.374315, 8.521467], [47.353096, 8.556418], [47.353096, 8.556405], [47.40384, 8.568201], [47.36283, 8.558105], [47.351478, 8.531857], [47.40639, 8.481522], [47.39217, 8.541541], [47.376851, 8.544309], [47.423713, 8.544633], [47.389633, 8.511924], [47.393743, 8.50231], [47.391045, 8.522549], [47.377339, 8.53938], [47.37297, 8.536271], [47.382307, 8.514346], [47.368934, 8.501405], [47.386474, 8.496483], [47.377265, 8.538703], [47.370769, 8.535086], [47.356821, 8.557211], [47.361363, 8.576608], [47.410867, 8.550355], [47.392052, 8.517775], [47.363723, 8.56706], [47.378656, 8.539963], [47.351314, 8.576738], [47.382556, 8.514602], [47.335643, 8.540703], [47.352406, 8.562558], [47.403836, 8.576866], [47.384412, 8.539115], [47.363609, 8.535045], [47.386357, 8.482627], [47.368874, 8.529023], [47.380052, 8.536893], [47.372676, 8.534106], [47.365627, 8.539482], [47.367468, 8.550059], [47.399636, 8.585851], [47.374849, 8.541116], [47.428273, 8.489665], [47.395072, 8.525757], [47.410653, 8.485594], [47.389544, 8.477365], [47.386242, 8.498306], [47.354278, 8.553239], [47.353989, 8.553326], [47.379226, 8.539578], [47.375591, 8.54815], [47.38939, 8.521628], [47.356663, 8.523743], [47.404303, 8.576863], [47.374291, 8.544018], [47.370085, 8.564123], [47.410537, 8.543458], [47.35761, 8.521631], [47.378775, 8.526471], [47.377996, 8.526071], [47.370228, 8.536135], [47.388418, 8.52639], [47.389201, 8.546221], [47.359721, 8.558675], [47.3906, 8.491863], [47.359067, 8.596734], [47.373281, 8.52432], [47.374496, 8.527125], [47.34417, 8.535095], [47.40258, 8.553428], [47.428811, 8.488894], [47.357499, 8.571628], [47.377423, 8.539103], [47.375014, 8.538882], [47.411442, 8.544736], [47.379672, 8.527668], [47.371296, 8.523074], [47.394829, 8.525726], [47.36063, 8.521851], [47.35484, 8.601156], [47.381373, 8.54084], [47.353338, 8.576715], [47.370632, 8.524835], [47.390145, 8.547287], [47.383235, 8.515133], [47.374031, 8.544794], [47.379689, 8.494839], [47.384568, 8.533119], [47.40367, 8.486928], [47.39875, 8.506504], [47.403839, 8.486176], [47.373798, 8.533361], [47.370887, 8.514883], [47.385195, 8.548495], [47.35481, 8.534295], [47.397317, 8.531804], [47.379566, 8.521746], [47.387994, 8.488593], [47.357, 8.535704], [47.347369, 8.52591], [47.379002, 8.542341], [47.375828, 8.492127], [47.392699, 8.523616], [47.382886, 8.500332], [47.389755, 8.486866], [47.369871, 8.530169], [47.357918, 8.519493], [47.369871, 8.543436], [47.348468, 8.534324], [47.381827, 8.516601], [47.391196, 8.522764], [47.374366, 8.521786], [47.373781, 8.536115], [47.42022, 8.547754], [47.378217, 8.530327], [47.37471, 8.550012], [47.359459, 8.523932], [47.365454, 8.521605], [47.374396, 8.541504], [47.365267, 8.564617], [47.396201, 8.482303], [47.418037, 8.482705], [47.3898, 8.486827], [47.369533, 8.520139], [47.417197, 8.554331], [47.382477, 8.514415], [47.407024, 8.550593], [47.41665, 8.535355], [47.406961, 8.550565], [47.36435, 8.55533], [47.367218, 8.534841], [47.379535, 8.524037], [47.388588, 8.525612], [47.367099, 8.539791], [47.37683, 8.526643], [47.366953, 8.52292], [47.352352, 8.570883], [47.344233, 8.535084], [47.400236, 8.543642], [47.430904, 8.544133], [47.402728, 8.535135], [47.390922, 8.527037], [47.359758, 8.549276], [47.383425, 8.54822], [47.391639, 8.513898], [47.421179, 8.548066], [47.421265, 8.549419], [47.390654, 8.544781], [47.363581, 8.53515], [47.361984, 8.5507], [47.374851, 8.504515], [47.345306, 8.535701], [47.414044, 8.545426], [47.384313, 8.50746], [47.380082, 8.520446], [47.416789, 8.536776], [47.373584, 8.519811], [47.368082, 8.541387], [47.366531, 8.540904], [47.395956, 8.532147], [47.388232, 8.514598], [47.373487, 8.598424], [47.388731, 8.516992], [47.372438, 8.515431], [47.37876, 8.539383], [47.360576, 8.525716], [47.40522, 8.559433], [47.355147, 8.527207], [47.378889, 8.527732], [47.379614, 8.537626], [47.388766, 8.539046], [47.399721, 8.547645], [47.377686, 8.531309], [47.381662, 8.534066], [47.364296, 8.566463], [47.408145, 8.555599], [47.417375, 8.523297], [47.381627, 8.534038], [47.383332, 8.533464], [47.355721, 8.559359], [47.389847, 8.51214], [47.393793, 8.533547], [47.377042, 8.529045], [47.391097, 8.522749], [47.367074, 8.541405], [47.40007, 8.536511], [47.359313, 8.516463], [47.408767, 8.57941], [47.378797, 8.523161], [47.390966, 8.488214], [47.401813, 8.500153], [47.37592, 8.542012], [47.36766, 8.495157], [47.408759, 8.580231], [47.399025, 8.542385], [47.382229, 8.501339], [47.389898, 8.491981], [47.396871, 8.493683], [47.375329, 8.552991], [47.379272, 8.542293], [47.377235, 8.510244], [47.3525, 8.508185], [47.399277, 8.521471], [47.378554, 8.514522], [47.38534, 8.539876], [47.418967, 8.53095], [47.366086, 8.540405], [47.409366, 8.478732], [47.407387, 8.549263], [47.381549, 8.492081], [47.427032, 8.491616], [47.371586, 8.526669], [47.399661, 8.516909], [47.354307, 8.523682], [47.33959, 8.524759], [47.35135, 8.525395], [47.348936, 8.534307], [47.368388, 8.538546], [47.381717, 8.531114], [47.343093, 8.535748], [47.378482, 8.540264], [47.370425, 8.514199], [47.387323, 8.488196], [47.353358, 8.554372], [47.375456, 8.554768], [47.38446, 8.503224], [47.366891, 8.544606], [47.397125, 8.505266], [47.36526, 8.501808], [47.366279, 8.533313], [47.356479, 8.53568], [47.39354, 8.492968], [47.380198, 8.520528], [47.39018, 8.51016], [47.382447, 8.51468], [47.372609, 8.538263], [47.379048, 8.54511], [47.414031, 8.546817], [47.373599, 8.544891], [47.389896, 8.49214], [47.373848, 8.519538], [47.383985, 8.531028], [47.3674, 8.5356], [47.387097, 8.52631], [47.37748, 8.512924], [47.385481, 8.4751], [47.374709, 8.541683], [47.393027, 8.531796], [47.401087, 8.488056], [47.368051, 8.538976], [47.379812, 8.523327], [47.391699, 8.518973], [47.38698, 8.534877], [47.412582, 8.544998], [47.399402, 8.497296], [47.383929, 8.508154], [47.387966, 8.536156], [47.358972, 8.516417], [47.357292, 8.555923], [47.369163, 8.527943], [47.37113, 8.523508], [47.417725, 8.546152], [47.358472, 8.521768], [47.363648, 8.574724], [47.36896, 8.538015], [47.411339, 8.544243], [47.385678, 8.49309], [47.343379, 8.530249], [47.369871, 8.51387], [47.397275, 8.493757], [47.405552, 8.495524], [47.379418, 8.55991], [47.393493, 8.532865], [47.404351, 8.560978], [47.366131, 8.533773], [47.411472, 8.525509], [47.377594, 8.559673], [47.371478, 8.524747], [47.380861, 8.552087], [47.407552, 8.584869], [47.416558, 8.555258], [47.35116, 8.57684], [47.380767, 8.500833], [47.348876, 8.562007], [47.421229, 8.507471], [47.3656, 8.539429], [47.384796, 8.531786], [47.384986, 8.537405], [47.363694, 8.528904], [47.369106, 8.541553], [47.377323, 8.521131], [47.380258, 8.541784], [47.398603, 8.472189], [47.384944, 8.548424], [47.360644, 8.576526], [47.367954, 8.546296], [47.373326, 8.525301], [47.37774, 8.52551], [47.337411, 8.519197], [47.377202, 8.552739], [47.36929, 8.517261], [47.377787, 8.537747], [47.356048, 8.535565], [47.376983, 8.54655], [47.378527, 8.575518], [47.388526, 8.531147], [47.410347, 8.548264], [47.356362, 8.535637], [47.366549, 8.540891], [47.385095, 8.508508], [47.369855, 8.510678], [47.410339, 8.548211], [47.364676, 8.554185], [47.386245, 8.531736], [47.386209, 8.531696], [47.377505, 8.543727], [47.373651, 8.536549], [47.363126, 8.54695], [47.366941, 8.543111], [47.394751, 8.525433], [47.376138, 8.53615], [47.394663, 8.473226], [47.386408, 8.518256], [47.395052, 8.51149], [47.374432, 8.521443], [47.39866, 8.539184], [47.36574, 8.521796], [47.36468, 8.554675], [47.351737, 8.559222], [47.377794, 8.537946], [47.375031, 8.547489], [47.367828, 8.551973], [47.407714, 8.550806], [47.373938, 8.503001], [47.360544, 8.524272], [47.376872, 8.548706], [47.387771, 8.529224], [47.404577, 8.59457], [47.397527, 8.532458], [47.377001, 8.546563], [47.380637, 8.542613], [47.367363, 8.506842], [47.404556, 8.569422], [47.354099, 8.575301], [47.426315, 8.547112], [47.404708, 8.556626], [47.386378, 8.480296], [47.356389, 8.535638], [47.378221, 8.510635], [47.413943, 8.557867], [47.376106, 8.53566], [47.393356, 8.524543], [47.418579, 8.547163], [47.380384, 8.542701], [47.394585, 8.534424], [47.424797, 8.537485], [47.37797, 8.527925], [47.363326, 8.53357], [47.374493, 8.538844], [47.378235, 8.541689], [47.377478, 8.529517], [47.360432, 8.526653], [47.388192, 8.532266], [47.382506, 8.48275], [47.405449, 8.539417], [47.371342, 8.555979], [47.357023, 8.572491], [47.41004, 8.53241], [47.365098, 8.55332], [47.414134, 8.518805], [47.405387, 8.504716], [47.380478, 8.537577], [47.394672, 8.473239], [47.39225, 8.524521], [47.368942, 8.528482], [47.377356, 8.51855], [47.364012, 8.536192], [47.421458, 8.505064], [47.377958, 8.525316], [47.367038, 8.523359], [47.387827, 8.49802], [47.390231, 8.512453], [47.375482, 8.564104], [47.382994, 8.530186], [47.36293, 8.517331], [47.37589, 8.538529], [47.372537, 8.538327], [47.364663, 8.547168], [47.374574, 8.536952], [47.392686, 8.475068], [47.414271, 8.518649], [47.369516, 8.513306], [47.390014, 8.484076], [47.384391, 8.531897], [47.414821, 8.519402], [47.377749, 8.548301], [47.420606, 8.50282], [47.37937, 8.53774], [47.371543, 8.515837], [47.38715, 8.534986], [47.375139, 8.545571], [47.375338, 8.49654], [47.32906, 8.513867], [47.376083, 8.527714], [47.386158, 8.535271], [47.403763, 8.534149], [47.368188, 8.531154], [47.366654, 8.553392], [47.41169, 8.525262], [47.37405, 8.517145], [47.37042, 8.508028], [47.373137, 8.53295], [47.364622, 8.566218], [47.409575, 8.537767], [47.368536, 8.546546], [47.382494, 8.529832], [47.368477, 8.5292], [47.357129, 8.555152], [47.399431, 8.495124], [47.378622, 8.542532], [47.396676, 8.529261], [47.369421, 8.53392], [47.408676, 8.540518], [47.362333, 8.547146], [47.386288, 8.517552], [47.417426, 8.553911], [47.404932, 8.552948], [47.430745, 8.550399], [47.402387, 8.49933], [47.369681, 8.525518], [47.407634, 8.538495], [47.37636, 8.525958], [47.367254, 8.541409], [47.403192, 8.497955], [47.398203, 8.535174], [47.376902, 8.541807], [47.407917, 8.547498], [47.374429, 8.540803], [47.400118, 8.545693], [47.374262, 8.533847], [47.363462, 8.569835], [47.37163, 8.547604], [47.37438, 8.527004], [47.374473, 8.495649], [47.430319, 8.549887], [47.383544, 8.543362], [47.370862, 8.537538], [47.387601, 8.540519], [47.409915, 8.47971], [47.373762, 8.537187], [47.369031, 8.540943], [47.364987, 8.563856], [47.373813, 8.536553], [47.422332, 8.550674], [47.390499, 8.512657], [47.403837, 8.536761], [47.379056, 8.542302], [47.387117, 8.545939], [47.375133, 8.51579], [47.374126, 8.503137], [47.352466, 8.507986], [47.38131, 8.51026], [47.417305, 8.509659], [47.399815, 8.544428], [47.380788, 8.538074], [47.413822, 8.531971], [47.367929, 8.546084], [47.361277, 8.535249], [47.408354, 8.550647], [47.377583, 8.550522], [47.378376, 8.545705], [47.365359, 8.530672], [47.383858, 8.529237], [47.42554, 8.55102], [47.361161, 8.550246], [47.420462, 8.547799], [47.365361, 8.5305], [47.411496, 8.526782], [47.364176, 8.546337], [47.368135, 8.544367], [47.388379, 8.536283], [47.369534, 8.466899], [47.362641, 8.527029], [47.399856, 8.504671], [47.359361, 8.569748], [47.373978, 8.517104], [47.373334, 8.534914], [47.358402, 8.583984], [47.389435, 8.521536], [47.394794, 8.490661], [47.377872, 8.529644], [47.37002, 8.520056], [47.358159, 8.553665], [47.391388, 8.54518], [47.367549, 8.496465], [47.403235, 8.582153], [47.421375, 8.502372], [47.36827, 8.560218], [47.362522, 8.547189], [47.367695, 8.496243], [47.365526, 8.556546], [47.351474, 8.534174], [47.377996, 8.517477], [47.377491, 8.483327], [47.375815, 8.538819], [47.377224, 8.540198], [47.327078, 8.519014], [47.392827, 8.488397], [47.39672, 8.517829], [47.401765, 8.500443], [47.425716, 8.509589], [47.3875, 8.486583], [47.408928, 8.539569], [47.379244, 8.526269], [47.381764, 8.545166], [47.378849, 8.553568], [47.410845, 8.545094], [47.378307, 8.530342], [47.369248, 8.525588], [47.371433, 8.510313], [47.369306, 8.538486], [47.400143, 8.489932], [47.364121, 8.547355], [47.346299, 8.534385], [47.39318, 8.479118], [47.376672, 8.525289], [47.388426, 8.528443], [47.377124, 8.540223], [47.391085, 8.523067], [47.373567, 8.519757], [47.406903, 8.580496], [47.377663, 8.522317], [47.37861, 8.480939], [47.377193, 8.543363], [47.367611, 8.523675], [47.372436, 8.521376], [47.3892, 8.516935], [47.36659, 8.510705], [47.394811, 8.54088], [47.374597, 8.517289], [47.374942, 8.536986], [47.400785, 8.48858], [47.370211, 8.522668], [47.349266, 8.564477], [47.353075, 8.556642], [47.397992, 8.474151], [47.371067, 8.53876], [47.35219, 8.557987], [47.365636, 8.539469], [47.375932, 8.544528], [47.36607, 8.533507], [47.380002, 8.522219], [47.414339, 8.551236], [47.373862, 8.538037], [47.38385, 8.511834], [47.355356, 8.529806], [47.384868, 8.53184], [47.393776, 8.539057], [47.375032, 8.541769], [47.366844, 8.545783], [47.405717, 8.577595], [47.340171, 8.529918], [47.374433, 8.51853], [47.379248, 8.520137], [47.359702, 8.586236], [47.374956, 8.545938], [47.383769, 8.556399], [47.36925, 8.558385], [47.362996, 8.52178], [47.384994, 8.508718], [47.397905, 8.532466], [47.413792, 8.524589], [47.415305, 8.51382], [47.391376, 8.536107], [47.383646, 8.539258], [47.35961, 8.593674], [47.36364, 8.52321], [47.364226, 8.536382], [47.42767, 8.54661], [47.366366, 8.52504], [47.338309, 8.527049], [47.374409, 8.54108], [47.377395, 8.523], [47.382206, 8.540315], [47.38245, 8.540121], [47.369488, 8.525911], [47.359368, 8.579994], [47.360969, 8.535481], [47.377061, 8.537388], [47.362678, 8.506668], [47.419771, 8.482924], [47.418532, 8.547454], [47.406427, 8.567607], [47.355717, 8.535412], [47.356963, 8.529137], [47.412382, 8.514807], [47.379029, 8.523351], [47.369467, 8.526228], [47.384975, 8.530968], [47.374843, 8.517929], [47.389472, 8.50604], [47.366487, 8.540731], [47.373493, 8.537063], [47.378647, 8.539937], [47.421294, 8.549274], [47.369043, 8.534018], [47.386824, 8.535152], [47.431451, 8.516717], [47.392474, 8.492496], [47.418035, 8.505565], [47.371385, 8.548737], [47.370187, 8.548871], [47.404512, 8.546129], [47.38532, 8.508526], [47.37218, 8.569662], [47.41013, 8.542734], [47.340068, 8.5303], [47.368113, 8.529656], [47.352656, 8.52713], [47.4027, 8.5352], [47.409698, 8.543772], [47.369312, 8.533084], [47.373055, 8.54713], [47.369691, 8.553681], [47.424748, 8.552965], [47.36509, 8.55324], [47.392042, 8.492607], [47.391922, 8.518183], [47.391819, 8.517651], [47.369105, 8.541646], [47.380445, 8.537246], [47.39782, 8.502087], [47.369288, 8.505874], [47.423786, 8.552004], [47.412677, 8.561352], [47.379967, 8.527912], [47.367825, 8.534417], [47.373305, 8.535099], [47.351323, 8.560153], [47.361196, 8.535313], [47.396989, 8.522723], [47.398209, 8.536406], [47.414785, 8.560933], [47.370115, 8.525248], [47.379134, 8.489663], [47.369057, 8.532562], [47.339878, 8.524712], [47.382265, 8.568618], [47.360336, 8.553723], [47.386365, 8.496653], [47.362334, 8.518616], [47.379442, 8.54431], [47.370296, 8.534693], [47.383166, 8.574915], [47.370538, 8.559074], [47.420394, 8.508237], [47.367536, 8.534477], [47.403467, 8.497324], [47.370653, 8.470522], [47.420421, 8.508211], [47.383297, 8.540999], [47.380845, 8.510992], [47.407764, 8.547548], [47.402137, 8.546172], [47.359383, 8.522448], [47.367645, 8.5344], [47.404396, 8.572042], [47.368086, 8.534369], [47.380073, 8.520446], [47.378951, 8.508623], [47.358249, 8.554686], [47.369337, 8.529536], [47.39194, 8.518196], [47.39484, 8.471533], [47.383711, 8.539088], [47.370707, 8.52444], [47.394193, 8.490411], [47.370982, 8.538202], [47.379203, 8.5763], [47.364595, 8.566205], [47.364171, 8.571822], [47.430772, 8.5504], [47.39073, 8.522516], [47.360348, 8.566379], [47.368225, 8.495261], [47.378262, 8.52748], [47.385886, 8.53259], [47.370272, 8.524841], [47.366747, 8.544589], [47.427404, 8.546194], [47.332353, 8.517572], [47.36953, 8.488335], [47.377243, 8.526731], [47.395686, 8.526432], [47.409149, 8.547484], [47.391805, 8.528764], [47.363683, 8.563802], [47.384621, 8.483653], [47.410556, 8.556431], [47.427623, 8.545867], [47.408834, 8.555905], [47.349146, 8.568499], [47.379521, 8.521706], [47.378731, 8.545328], [47.384826, 8.531495], [47.398498, 8.494801], [47.389241, 8.521122], [47.3937, 8.508919], [47.422467, 8.542248], [47.377692, 8.538209], [47.387874, 8.488988], [47.415415, 8.536589], [47.390899, 8.522732], [47.365841, 8.494339], [47.376955, 8.54006], [47.36787, 8.534405], [47.397866, 8.538426], [47.399132, 8.54244], [47.333607, 8.51429], [47.391274, 8.537336], [47.373401, 8.527871], [47.414974, 8.550693], [47.367973, 8.540616], [47.368814, 8.528691], [47.382683, 8.537451], [47.378526, 8.51268], [47.371344, 8.536038], [47.370295, 8.548847], [47.374439, 8.541637], [47.392378, 8.524272], [47.372952, 8.562528], [47.362452, 8.50485], [47.398846, 8.540394], [47.382329, 8.545337], [47.374447, 8.539889], [47.394849, 8.583231], [47.381921, 8.516166], [47.386177, 8.54833], [47.375099, 8.519444], [47.36859, 8.560569], [47.369357, 8.5566], [47.413207, 8.571487], [47.381095, 8.513116], [47.391454, 8.485032], [47.399277, 8.535686], [47.36125, 8.535301], [47.357528, 8.521669], [47.361981, 8.597671], [47.360923, 8.589215], [47.383781, 8.540228], [47.429085, 8.543472], [47.36716, 8.519945], [47.36063, 8.548434], [47.387827, 8.536603], [47.378419, 8.519326], [47.382493, 8.537579], [47.37609, 8.521225], [47.381638, 8.509843], [47.373626, 8.53639], [47.375499, 8.541831], [47.351589, 8.521985], [47.385033, 8.487793], [47.41572, 8.512768], [47.380283, 8.552273], [47.380544, 8.51239], [47.395623, 8.545401], [47.396468, 8.545471], [47.384484, 8.53815], [47.370792, 8.470088], [47.391172, 8.489318], [47.35374, 8.576035], [47.397193, 8.491927], [47.360926, 8.598839], [47.336648, 8.537137], [47.368249, 8.550301], [47.407686, 8.565818], [47.3525, 8.573189], [47.363895, 8.566958], [47.373122, 8.534539], [47.385331, 8.548379], [47.38577, 8.492867], [47.358103, 8.520847], [47.372935, 8.475849], [47.360545, 8.514622], [47.365223, 8.516424], [47.393572, 8.544444], [47.344832, 8.532661], [47.413664, 8.54567], [47.4237, 8.514532], [47.376254, 8.554944], [47.36086, 8.535624], [47.392378, 8.491183], [47.376946, 8.540021], [47.366307, 8.540767], [47.37405, 8.517159], [47.413731, 8.546188], [47.382148, 8.551994], [47.373001, 8.533001], [47.376766, 8.526748], [47.408982, 8.539636], [47.35425, 8.573637], [47.393128, 8.492827], [47.375089, 8.517603], [47.345004, 8.52966], [47.370143, 8.548844], [47.399806, 8.467457], [47.374432, 8.546126], [47.368355, 8.541048], [47.370911, 8.539949], [47.422486, 8.550638], [47.373241, 8.542751], [47.351147, 8.534458], [47.372338, 8.494111], [47.376684, 8.523038], [47.392301, 8.506481], [47.377759, 8.53776], [47.368109, 8.54144], [47.348441, 8.534363], [47.382329, 8.514849], [47.377364, 8.546213], [47.351396, 8.511777], [47.387008, 8.552666], [47.35361, 8.554337], [47.388568, 8.539069], [47.40449, 8.574349], [47.360616, 8.535712], [47.384617, 8.53463], [47.365104, 8.548064], [47.413229, 8.54419], [47.361281, 8.576672], [47.392217, 8.584725], [47.398286, 8.536858], [47.384808, 8.531455], [47.389859, 8.535744], [47.4189, 8.507372], [47.359644, 8.522414], [47.371371, 8.536065], [47.417574, 8.483159], [47.389284, 8.524209], [47.382146, 8.540896], [47.414366, 8.546638], [47.362281, 8.504886], [47.385224, 8.495531], [47.383089, 8.540161], [47.378582, 8.542067], [47.377034, 8.537427], [47.374565, 8.541653], [47.373312, 8.520083], [47.369831, 8.552267], [47.372773, 8.542794], [47.395071, 8.53254], [47.417916, 8.483113], [47.387155, 8.519159], [47.383886, 8.527224], [47.379224, 8.537975], [47.369047, 8.541102], [47.379153, 8.526466], [47.358147, 8.58795], [47.377222, 8.499054], [47.383238, 8.529145], [47.370673, 8.51946], [47.386341, 8.53489], [47.374458, 8.538711], [47.377661, 8.583975], [47.400194, 8.494305], [47.363114, 8.597748], [47.376313, 8.516542], [47.393404, 8.498992], [47.365669, 8.536001], [47.406845, 8.58541], [47.40007, 8.536524], [47.421293, 8.502423], [47.366654, 8.549645], [47.406853, 8.55059], [47.384573, 8.54296], [47.355156, 8.520443], [47.379455, 8.52969], [47.380377, 8.501222], [47.353572, 8.556441], [47.383473, 8.515667], [47.377205, 8.540291], [47.355051, 8.526861], [47.363472, 8.535294], [47.379072, 8.527391], [47.389656, 8.539118], [47.360898, 8.530674], [47.362131, 8.547552], [47.398985, 8.541867], [47.384993, 8.530995], [47.389989, 8.536277], [47.376256, 8.495446], [47.371329, 8.524386], [47.396718, 8.529527], [47.368963, 8.564761], [47.404336, 8.493804], [47.393901, 8.524978], [47.384405, 8.531288], [47.39798, 8.53407], [47.381379, 8.5174], [47.422677, 8.543842], [47.387579, 8.490757], [47.407539, 8.491734], [47.409338, 8.546613], [47.385061, 8.5484], [47.393041, 8.524537], [47.406717, 8.552521], [47.409814, 8.543814], [47.419583, 8.555945], [47.419016, 8.538187], [47.363386, 8.534868], [47.388448, 8.519423], [47.365798, 8.556274], [47.365558, 8.524864], [47.35047, 8.578401], [47.383367, 8.484052], [47.419101, 8.507972], [47.39544, 8.521049], [47.36118, 8.521704], [47.374957, 8.544879], [47.399206, 8.542216], [47.403408, 8.486075], [47.426288, 8.554641], [47.417774, 8.507561], [47.386486, 8.518536], [47.39499, 8.522033], [47.387199, 8.519292], [47.415458, 8.570356], [47.36268, 8.518146], [47.361909, 8.560309], [47.356497, 8.535693], [47.370907, 8.50204], [47.369969, 8.549092], [47.39854, 8.591087], [47.371701, 8.535384], [47.373959, 8.51337], [47.371393, 8.535695], [47.374894, 8.545778], [47.380168, 8.535134], [47.374638, 8.520574], [47.366139, 8.540473], [47.409257, 8.578068], [47.407592, 8.530571], [47.378407, 8.555624], [47.394254, 8.533238], [47.392063, 8.517576], [47.397844, 8.525589], [47.397989, 8.474509], [47.408853, 8.548405], [47.365549, 8.561525], [47.364239, 8.565853], [47.360426, 8.564845], [47.390787, 8.474157], [47.365062, 8.547719], [47.413392, 8.53933], [47.413364, 8.531869], [47.385238, 8.485108], [47.407001, 8.551971], [47.370262, 8.530667], [47.377567, 8.506464], [47.361359, 8.526566], [47.365864, 8.549443], [47.360659, 8.60209], [47.388874, 8.471895], [47.368113, 8.52391], [47.389945, 8.54372], [47.359154, 8.586198], [47.402706, 8.492062], [47.366958, 8.523357], [47.369057, 8.488882], [47.411895, 8.537868], [47.377202, 8.529194], [47.409697, 8.543891], [47.403313, 8.579637], [47.416314, 8.545102], [47.369417, 8.525843], [47.408465, 8.546675], [47.425029, 8.537728], [47.368919, 8.529077], [47.36954, 8.52619], [47.384862, 8.500689], [47.372743, 8.55062], [47.383005, 8.530928], [47.368321, 8.55115], [47.384939, 8.495181], [47.37946, 8.555527], [47.369082, 8.541275], [47.387769, 8.494549], [47.398525, 8.539142], [47.411173, 8.570662], [47.394229, 8.493405], [47.381725, 8.540715], [47.342902, 8.524575], [47.390742, 8.489111], [47.412452, 8.523608], [47.370152, 8.548831], [47.375346, 8.52664], [47.385456, 8.522886], [47.33536, 8.517329], [47.385348, 8.530526], [47.362145, 8.551709], [47.38535, 8.492541], [47.335535, 8.516856], [47.369588, 8.525847], [47.343696, 8.519509], [47.379163, 8.508071], [47.354895, 8.574789], [47.359404, 8.52315], [47.371944, 8.539242], [47.371908, 8.539175], [47.410499, 8.550268], [47.408173, 8.556421], [47.359482, 8.521484], [47.382003, 8.516035], [47.349532, 8.561187], [47.368668, 8.544034], [47.362199, 8.54893], [47.352041, 8.558527], [47.369316, 8.555275], [47.35533, 8.574494], [47.362872, 8.521632], [47.364368, 8.562784], [47.362807, 8.516031], [47.375863, 8.545163], [47.374201, 8.5212], [47.379811, 8.507038], [47.405312, 8.558348], [47.34292, 8.535983], [47.368538, 8.524581], [47.392267, 8.52174], [47.335333, 8.541093], [47.363927, 8.546927], [47.377137, 8.555796], [47.377395, 8.527807], [47.381888, 8.531104], [47.365547, 8.539308], [47.389272, 8.487545], [47.36847, 8.538455], [47.365274, 8.521575], [47.366772, 8.544802], [47.404805, 8.483744], [47.413886, 8.54696], [47.378464, 8.526995], [47.377596, 8.526527], [47.377724, 8.518676], [47.373158, 8.53732], [47.370178, 8.539457], [47.37762, 8.529679], [47.359189, 8.525913], [47.377089, 8.54201], [47.409924, 8.479683], [47.372095, 8.524163], [47.367379, 8.545318], [47.374633, 8.518283], [47.371998, 8.536383], [47.386469, 8.489119], [47.367798, 8.494802], [47.395617, 8.520364], [47.377031, 8.516782], [47.369652, 8.493713], [47.380365, 8.51326], [47.352067, 8.558593], [47.386824, 8.497616], [47.371393, 8.524242], [47.40188, 8.497717], [47.38985, 8.510856], [47.366909, 8.558561], [47.392085, 8.500648], [47.370143, 8.548831], [47.377091, 8.543718], [47.364321, 8.555515], [47.380592, 8.548201], [47.383678, 8.54065], [47.381693, 8.490084], [47.399209, 8.521934], [47.382224, 8.504835], [47.419155, 8.506052], [47.366473, 8.547894], [47.382166, 8.551955], [47.392643, 8.527655], [47.377006, 8.542273], [47.393363, 8.524795], [47.411082, 8.545788], [47.397509, 8.532431], [47.394883, 8.525754], [47.37108, 8.51633], [47.382085, 8.515931], [47.367678, 8.549799], [47.386185, 8.51808], [47.413918, 8.518814], [47.360229, 8.507917], [47.364001, 8.55143], [47.376068, 8.534057], [47.357019, 8.557188], [47.411631, 8.561595], [47.369195, 8.525508], [47.369467, 8.526202], [47.419215, 8.506384], [47.403784, 8.556302], [47.411656, 8.560893], [47.408129, 8.550749], [47.364531, 8.566283], [47.377723, 8.52543], [47.383737, 8.57351], [47.404175, 8.560577], [47.351073, 8.581961], [47.376131, 8.543486], [47.394805, 8.525408], [47.351581, 8.525665], [47.401816, 8.499822], [47.403826, 8.534124], [47.399938, 8.544709], [47.405242, 8.555286], [47.39205, 8.510224], [47.407082, 8.550144], [47.378092, 8.525411], [47.396564, 8.528702], [47.40884, 8.54594], [47.373055, 8.532975], [47.390177, 8.541102], [47.398311, 8.537018], [47.380869, 8.538075], [47.367583, 8.496678], [47.373382, 8.519277], [47.403162, 8.486348], [47.368395, 8.503287], [47.375974, 8.523037], [47.378804, 8.54239], [47.380561, 8.517317], [47.413636, 8.481041], [47.371842, 8.523377], [47.412025, 8.550592], [47.374469, 8.549768], [47.374808, 8.518856], [47.392745, 8.522544], [47.358235, 8.58545], [47.374886, 8.532483], [47.419044, 8.547478], [47.358424, 8.583667], [47.375791, 8.529112], [47.409383, 8.544666], [47.37793, 8.541524], [47.406299, 8.480712], [47.42803, 8.54565], [47.388916, 8.489114], [47.372247, 8.535752], [47.342762, 8.530845], [47.369502, 8.526348], [47.378272, 8.49926], [47.367057, 8.536639], [47.408033, 8.572596], [47.383796, 8.574001], [47.353579, 8.553847], [47.357251, 8.554559], [47.371643, 8.515772], [47.413703, 8.514887], [47.381939, 8.516166], [47.357876, 8.519135], [47.372423, 8.571548], [47.385403, 8.55491], [47.377104, 8.529112], [47.372756, 8.530387], [47.353581, 8.554601], [47.363785, 8.535446], [47.390318, 8.52521], [47.403954, 8.503044], [47.391944, 8.517852], [47.393758, 8.539123], [47.421466, 8.549079], [47.332674, 8.51787], [47.369494, 8.535788], [47.374695, 8.545933], [47.396794, 8.520494], [47.370606, 8.558572], [47.40345, 8.556467], [47.414103, 8.548713], [47.397907, 8.534148], [47.391609, 8.514136], [47.403324, 8.497268], [47.420359, 8.503279], [47.400185, 8.546184], [47.389054, 8.539052], [47.357685, 8.534659], [47.378991, 8.543519], [47.405998, 8.566352], [47.36773, 8.487492], [47.400411, 8.585709], [47.405711, 8.535501], [47.381562, 8.53609], [47.368437, 8.541857], [47.409992, 8.54501], [47.404364, 8.572518], [47.403968, 8.558731], [47.403244, 8.48627], [47.370896, 8.548105], [47.382983, 8.575189], [47.354434, 8.513055], [47.384158, 8.54315], [47.370924, 8.523451], [47.374061, 8.517927], [47.397368, 8.592241], [47.377358, 8.498885], [47.427582, 8.54637], [47.378535, 8.541325], [47.360743, 8.535635], [47.383979, 8.556125], [47.421211, 8.507458], [47.406595, 8.546543], [47.410379, 8.539281], [47.349658, 8.534044], [47.378726, 8.543037], [47.370244, 8.53256], [47.358729, 8.524129], [47.387836, 8.527054], [47.361574, 8.548441], [47.403243, 8.548076], [47.376217, 8.542032], [47.402532, 8.500234], [47.371328, 8.546273], [47.377785, 8.543547], [47.374807, 8.512129], [47.353233, 8.513534], [47.420759, 8.548693], [47.359552, 8.549193], [47.361525, 8.547883], [47.428002, 8.545663], [47.365594, 8.598822], [47.369187, 8.527335], [47.428677, 8.543821], [47.393727, 8.502045], [47.382512, 8.531752], [47.362894, 8.516417], [47.371159, 8.518477], [47.422512, 8.540393], [47.413365, 8.553389], [47.374776, 8.496026], [47.364331, 8.507919], [47.36843, 8.541738], [47.373956, 8.503041], [47.392534, 8.55041], [47.384326, 8.529167], [47.35369, 8.601885], [47.369134, 8.525361], [47.383013, 8.514824], [47.409653, 8.537106], [47.369288, 8.505861], [47.373962, 8.529339], [47.369071, 8.525346], [47.386253, 8.490214], [47.404665, 8.557288], [47.368975, 8.500863], [47.367772, 8.523837], [47.420949, 8.549519], [47.39189, 8.517771], [47.36922, 8.53998], [47.391398, 8.538465], [47.419177, 8.555154], [47.359644, 8.569396], [47.374466, 8.539757], [47.391952, 8.517892], [47.400254, 8.517914], [47.351892, 8.523209], [47.384906, 8.529696], [47.386631, 8.52038], [47.394165, 8.493483], [47.391952, 8.517879], [47.374092, 8.538465], [47.410577, 8.557134], [47.376583, 8.528029], [47.390289, 8.508109], [47.374673, 8.535961], [47.411725, 8.512899], [47.374144, 8.527198], [47.376965, 8.541875], [47.388918, 8.487896], [47.374443, 8.528925], [47.344474, 8.530536], [47.384315, 8.528438], [47.371974, 8.54732], [47.369596, 8.553295], [47.385208, 8.536774], [47.381224, 8.534732], [47.385886, 8.519266], [47.418526, 8.547056], [47.389809, 8.534339], [47.427177, 8.545487], [47.408924, 8.554065], [47.368934, 8.519783], [47.383115, 8.533619], [47.382194, 8.55189], [47.362399, 8.504743], [47.387257, 8.518843], [47.370865, 8.55875], [47.36787, 8.560633], [47.378405, 8.541799], [47.393115, 8.521426], [47.372521, 8.533322], [47.369733, 8.541791], [47.370644, 8.501214], [47.368654, 8.500512], [47.356761, 8.573492], [47.41965, 8.555509], [47.422145, 8.550498], [47.361885, 8.554444], [47.389944, 8.512354], [47.39023, 8.512492], [47.370566, 8.535572], [47.360328, 8.567491], [47.386208, 8.474187], [47.35884, 8.51611], [47.406172, 8.555001], [47.365487, 8.532436], [47.374167, 8.540917], [47.389183, 8.541611], [47.400419, 8.493249], [47.38021, 8.501736], [47.377602, 8.498757], [47.415024, 8.552973], [47.4275, 8.546435], [47.422572, 8.550984], [47.356137, 8.52041], [47.414194, 8.51825], [47.408772, 8.546469], [47.367842, 8.510506], [47.370944, 8.524113], [47.375644, 8.5778], [47.378778, 8.532788], [47.409374, 8.545673], [47.372055, 8.547361], [47.36729, 8.534856], [47.37869, 8.542017], [47.369132, 8.540746], [47.369199, 8.523217], [47.415404, 8.513875], [47.398858, 8.506519], [47.335932, 8.541489], [47.417416, 8.523775], [47.364375, 8.546222], [47.390551, 8.539639], [47.406008, 8.481051], [47.364642, 8.554899], [47.383545, 8.572989], [47.394769, 8.525447], [47.386203, 8.47575], [47.32958, 8.508215], [47.411342, 8.56257], [47.408334, 8.547109], [47.396728, 8.517922], [47.39862, 8.534799], [47.36968, 8.525584], [47.366339, 8.544899], [47.423075, 8.49843], [47.382601, 8.51459], [47.400427, 8.494376], [47.387955, 8.49095], [47.388927, 8.536295], [47.41116, 8.526205], [47.365728, 8.561608], [47.389671, 8.545992], [47.391371, 8.537511], [47.374384, 8.518966], [47.424619, 8.513438], [47.375229, 8.52857], [47.382745, 8.529929], [47.362813, 8.569093], [47.37821, 8.526261], [47.408791, 8.546443], [47.383061, 8.540226], [47.372711, 8.517926], [47.377864, 8.514243], [47.384217, 8.54825], [47.365075, 8.564957], [47.37752, 8.525942], [47.379892, 8.527289], [47.373133, 8.531441], [47.377513, 8.543793], [47.357371, 8.535446], [47.370236, 8.513308], [47.367495, 8.545413], [47.386637, 8.533996], [47.340488, 8.519193], [47.378531, 8.528439], [47.340748, 8.528872], [47.366718, 8.545741], [47.358186, 8.519657], [47.369142, 8.52544], [47.387638, 8.49803], [47.410966, 8.550331], [47.429205, 8.548763], [47.397126, 8.574086], [47.358946, 8.534486], [47.407723, 8.584038], [47.380515, 8.512548], [47.36946, 8.539376], [47.37174, 8.556676], [47.378633, 8.542373], [47.404129, 8.572606], [47.381473, 8.510157], [47.37399, 8.538781], [47.365592, 8.539389], [47.373031, 8.53651], [47.374325, 8.524301], [47.368557, 8.523535], [47.389632, 8.51203], [47.410746, 8.572111], [47.393837, 8.50569], [47.430763, 8.5504], [47.39501, 8.512138], [47.385813, 8.529847], [47.393635, 8.519688], [47.403953, 8.533968], [47.350208, 8.561069], [47.39694, 8.54874], [47.383062, 8.527817], [47.396564, 8.528689], [47.366602, 8.540946], [47.369959, 8.51023], [47.3883, 8.537023], [47.414673, 8.551137], [47.404909, 8.557174], [47.377026, 8.541995], [47.375905, 8.553837], [47.373177, 8.544723], [47.379593, 8.523667], [47.403941, 8.569753], [47.377882, 8.541841], [47.39221, 8.538243], [47.364621, 8.537409], [47.378326, 8.527336], [47.384843, 8.531575], [47.409315, 8.537629], [47.41547, 8.528877], [47.403853, 8.576893], [47.390704, 8.522489], [47.414236, 8.518542], [47.385053, 8.532202], [47.352619, 8.532013], [47.352142, 8.531964], [47.391068, 8.536272], [47.368959, 8.524761], [47.375812, 8.540143], [47.396126, 8.544563], [47.362965, 8.558081], [47.368171, 8.533021], [47.419579, 8.548006], [47.402286, 8.503528], [47.398164, 8.536432], [47.370821, 8.54], [47.419365, 8.547763], [47.377946, 8.549311], [47.369508, 8.545587], [47.364912, 8.533298], [47.35982, 8.522828], [47.389897, 8.542196], [47.382175, 8.551942], [47.420296, 8.503331], [47.375416, 8.484942], [47.410792, 8.570164], [47.358657, 8.534546], [47.355103, 8.562747], [47.37786, 8.5079], [47.392745, 8.522544], [47.358343, 8.571804], [47.370305, 8.548834], [47.371709, 8.557987], [47.386131, 8.518039], [47.371721, 8.54272], [47.362122, 8.547538], [47.368196, 8.539787], [47.402448, 8.548391], [47.374904, 8.527783], [47.366262, 8.555754], [47.370573, 8.55832], [47.375498, 8.528655], [47.353493, 8.576546], [47.398735, 8.539795], [47.390828, 8.521763], [47.373461, 8.598331], [47.378462, 8.540489], [47.361096, 8.535404], [47.375113, 8.547398], [47.384811, 8.524528], [47.352642, 8.524734], [47.381016, 8.542449], [47.37927, 8.537857], [47.377991, 8.54183], [47.379204, 8.538147], [47.427087, 8.546386], [47.406912, 8.496333], [47.411097, 8.526164], [47.365153, 8.553228], [47.398121, 8.535305], [47.410564, 8.556564], [47.370197, 8.548819], [47.387198, 8.519319], [47.428555, 8.543408], [47.411995, 8.524446], [47.363685, 8.535537], [47.378556, 8.542001], [47.365594, 8.532451], [47.355428, 8.574575], [47.373895, 8.538302], [47.357954, 8.520434], [47.383127, 8.572477], [47.392398, 8.543983], [47.408285, 8.546605], [47.413138, 8.546136], [47.358419, 8.520708], [47.403778, 8.57085], [47.364835, 8.530993], [47.369234, 8.527058], [47.370759, 8.515026], [47.422829, 8.541102], [47.382603, 8.529781], [47.407649, 8.491471], [47.366307, 8.540781], [47.361154, 8.590372], [47.378731, 8.539594], [47.379133, 8.516056], [47.426138, 8.547758], [47.375065, 8.55329], [47.387845, 8.492113], [47.388488, 8.492656], [47.377602, 8.542034], [47.399524, 8.585306], [47.411321, 8.562026], [47.376078, 8.559217], [47.383143, 8.530653], [47.361455, 8.576372], [47.398345, 8.532475], [47.369806, 8.51024], [47.374762, 8.518908], [47.3751, 8.550563], [47.376934, 8.540338], [47.362141, 8.559586], [47.376697, 8.533156], [47.372035, 8.529551], [47.367789, 8.523877], [47.349781, 8.561457], [47.366248, 8.545069], [47.377635, 8.522343], [47.374417, 8.54116], [47.374451, 8.521338], [47.428627, 8.536742], [47.393069, 8.521584], [47.341845, 8.530813], [47.40564, 8.591784], [47.378957, 8.542393], [47.382437, 8.528294], [47.37175, 8.553816], [47.360011, 8.569563], [47.378652, 8.540387], [47.378576, 8.545471], [47.370957, 8.548292], [47.362323, 8.577727], [47.354587, 8.602156], [47.373905, 8.544804], [47.401589, 8.499102], [47.408831, 8.579278], [47.375374, 8.560421], [47.404074, 8.563489], [47.378486, 8.5418], [47.397164, 8.594661], [47.365007, 8.535603], [47.375625, 8.512211], [47.398197, 8.536711], [47.391608, 8.505539], [47.369441, 8.512709], [47.365638, 8.539257], [47.361202, 8.576499], [47.409536, 8.549374], [47.383745, 8.542068], [47.373961, 8.538979], [47.391292, 8.54588], [47.375294, 8.528386], [47.368964, 8.540438], [47.404632, 8.54955], [47.348123, 8.532741], [47.411399, 8.52564], [47.404186, 8.588758], [47.371643, 8.515772], [47.418783, 8.506362], [47.369928, 8.5135], [47.393227, 8.478947], [47.37845, 8.541747], [47.376423, 8.515353], [47.369965, 8.510482], [47.370188, 8.548818], [47.379367, 8.527556], [47.389813, 8.478456], [47.369279, 8.527085], [47.389451, 8.538954], [47.356628, 8.523716], [47.389145, 8.494629], [47.367174, 8.544214], [47.367369, 8.541637], [47.404954, 8.557161], [47.370197, 8.548805], [47.388203, 8.497299], [47.38242, 8.537617], [47.369382, 8.541811], [47.374273, 8.543964], [47.3793, 8.542281], [47.405239, 8.593193], [47.371289, 8.531416], [47.413976, 8.548857], [47.373029, 8.532895], [47.4056, 8.549901], [47.375863, 8.515672], [47.369881, 8.561947], [47.377094, 8.552736], [47.38106, 8.569506], [47.380283, 8.512398], [47.379224, 8.52554], [47.398167, 8.536154], [47.378086, 8.483193], [47.39424, 8.480278], [47.393802, 8.500762], [47.406927, 8.587148], [47.369806, 8.51024], [47.368005, 8.567945], [47.41017, 8.57027], [47.360636, 8.565419], [47.405252, 8.555273], [47.386514, 8.528007], [47.376235, 8.536311], [47.38997, 8.484036], [47.364763, 8.554465], [47.390978, 8.526813], [47.382146, 8.51417], [47.393817, 8.472322], [47.408373, 8.550595], [47.377791, 8.498801], [47.389428, 8.511681], [47.375732, 8.523853], [47.376935, 8.540245], [47.411975, 8.512069], [47.373553, 8.530761], [47.379967, 8.527899], [47.378349, 8.545691], [47.374446, 8.540009], [47.369025, 8.571343], [47.385031, 8.494958], [47.411282, 8.570638], [47.420959, 8.502562], [47.36038, 8.533112], [47.374979, 8.539702], [47.403086, 8.575313], [47.397251, 8.53118], [47.386245, 8.531723], [47.379295, 8.527581], [47.400228, 8.547312], [47.416418, 8.533217], [47.393243, 8.513494], [47.368709, 8.521698], [47.385132, 8.532442], [47.377006, 8.528964], [47.369034, 8.528338], [47.364129, 8.547474], [47.36402, 8.549458], [47.39055, 8.513929], [47.358658, 8.53448], [47.398953, 8.541443], [47.394337, 8.47457], [47.369127, 8.524116], [47.403083, 8.497992], [47.357892, 8.534636], [47.379256, 8.544955], [47.392738, 8.545116], [47.373873, 8.530224], [47.36377, 8.533221], [47.357619, 8.521578], [47.353036, 8.557965], [47.383076, 8.54808], [47.361167, 8.560757], [47.377054, 8.513339], [47.359582, 8.522386], [47.390705, 8.508806], [47.362791, 8.554688], [47.370617, 8.524477], [47.36987, 8.510056], [47.396164, 8.540577], [47.413456, 8.521163], [47.366569, 8.533067], [47.418394, 8.546775], [47.358194, 8.553811], [47.379251, 8.527474], [47.36956, 8.467005], [47.374934, 8.518805], [47.380301, 8.512411], [47.391467, 8.51971], [47.409846, 8.545166], [47.364763, 8.554531], [47.386096, 8.518912], [47.417159, 8.506926], [47.379164, 8.544198], [47.380944, 8.548049], [47.41877, 8.540395], [47.378714, 8.544229], [47.389381, 8.521575], [47.397076, 8.532554], [47.376427, 8.538858], [47.378442, 8.540753], [47.408777, 8.555294], [47.368579, 8.538352], [47.368699, 8.524716], [47.377152, 8.540144], [47.391183, 8.489106], [47.372524, 8.529243], [47.376048, 8.559587], [47.367879, 8.49769], [47.422726, 8.550934], [47.419691, 8.500589], [47.378142, 8.54574], [47.385185, 8.532509], [47.415628, 8.529278], [47.414358, 8.517975], [47.353857, 8.553945], [47.330813, 8.515901], [47.409219, 8.544888], [47.373423, 8.527355], [47.389297, 8.539044], [47.369229, 8.491798], [47.375657, 8.533717], [47.355597, 8.601887], [47.377486, 8.543793], [47.34992, 8.53389], [47.381435, 8.517083], [47.376001, 8.524918], [47.358289, 8.555123], [47.41575, 8.552326], [47.378795, 8.542376], [47.389714, 8.511926], [47.420573, 8.509354], [47.379569, 8.543213], [47.415777, 8.569952], [47.364351, 8.555237], [47.391433, 8.534796], [47.364721, 8.55694], [47.379811, 8.490339], [47.360687, 8.524421], [47.368789, 8.506314], [47.366166, 8.540473], [47.386829, 8.4951], [47.33732, 8.519353], [47.398969, 8.538846], [47.408972, 8.539662], [47.400562, 8.534931], [47.40628, 8.492716], [47.362159, 8.547473], [47.414209, 8.518542], [47.365094, 8.559357], [47.380008, 8.526417], [47.380405, 8.548038], [47.35571, 8.572423], [47.395988, 8.521126], [47.377176, 8.539496], [47.398318, 8.532474], [47.420879, 8.549398], [47.38393, 8.515796], [47.385798, 8.548455], [47.394238, 8.52737], [47.357954, 8.520447], [47.370563, 8.524503], [47.382229, 8.492492], [47.386843, 8.519762], [47.370295, 8.548874], [47.370852, 8.554579], [47.378518, 8.527009], [47.428101, 8.545665], [47.391641, 8.525131], [47.382447, 8.537605], [47.385184, 8.530761], [47.402947, 8.575761], [47.390739, 8.52253], [47.405833, 8.553695], [47.381514, 8.491948], [47.399879, 8.495226], [47.403462, 8.486049], [47.376903, 8.512184], [47.385886, 8.532576], [47.368232, 8.506329], [47.361524, 8.517699], [47.371254, 8.530356], [47.41395, 8.548697], [47.403463, 8.55603], [47.378795, 8.542376], [47.392089, 8.517736], [47.401756, 8.545515], [47.359633, 8.557561], [47.369055, 8.553442], [47.36605, 8.521326], [47.355886, 8.595473], [47.400556, 8.544099], [47.357601, 8.554685], [47.354221, 8.502012], [47.390971, 8.488731], [47.361309, 8.505926], [47.417997, 8.554348], [47.408746, 8.546376], [47.388982, 8.539038], [47.404197, 8.561041], [47.393469, 8.511538], [47.384082, 8.532235], [47.383391, 8.574867], [47.403651, 8.572781], [47.379932, 8.541936], [47.369142, 8.525414], [47.371472, 8.556538], [47.386243, 8.533842], [47.366728, 8.49964], [47.419844, 8.504528], [47.384903, 8.537655], [47.387919, 8.490975], [47.37994, 8.495956], [47.374853, 8.518804], [47.406667, 8.551182], [47.393428, 8.47352], [47.403126, 8.547147], [47.396748, 8.532097], [47.385246, 8.530828], [47.377056, 8.520821], [47.39127, 8.514845], [47.36827, 8.554618], [47.385541, 8.54241], [47.368891, 8.539523], [47.379455, 8.529663], [47.34946, 8.534092], [47.382432, 8.487993], [47.371643, 8.515759], [47.375338, 8.516033], [47.378086, 8.510645], [47.369717, 8.525518], [47.357438, 8.52176], [47.388951, 8.515672], [47.388316, 8.520096], [47.377869, 8.521407], [47.383227, 8.484685], [47.403333, 8.497268], [47.431964, 8.543399], [47.385357, 8.530513], [47.369554, 8.541722], [47.385573, 8.530491], [47.375713, 8.476963], [47.425963, 8.493397], [47.379442, 8.544323], [47.37566, 8.537173], [47.393523, 8.54488], [47.36962, 8.551733], [47.363949, 8.549298], [47.391301, 8.523071], [47.366003, 8.545276], [47.405252, 8.555273], [47.378415, 8.540753], [47.383412, 8.498912], [47.389048, 8.486534], [47.39197, 8.517932], [47.429953, 8.549587], [47.402182, 8.496186], [47.391001, 8.487354], [47.392706, 8.539088], [47.3772, 8.513064], [47.387669, 8.529527], [47.36028, 8.534196], [47.381228, 8.551326], [47.363783, 8.551637], [47.381801, 8.535539], [47.3712, 8.512135], [47.382671, 8.532007], [47.421012, 8.549533], [47.374974, 8.544946], [47.398016, 8.532137], [47.373268, 8.599651], [47.38727, 8.488089], [47.35678, 8.55116], [47.383772, 8.573603], [47.366428, 8.545046], [47.402788, 8.500716], [47.372851, 8.532772], [47.373795, 8.536513], [47.370197, 8.548792], [47.377396, 8.543778], [47.348385, 8.532667], [47.343839, 8.530152], [47.420816, 8.549331], [47.354904, 8.574842], [47.379029, 8.542341], [47.39163, 8.523435], [47.391022, 8.523039], [47.371268, 8.528887], [47.365251, 8.520237], [47.40372, 8.578533], [47.370699, 8.516654], [47.394432, 8.526831], [47.385437, 8.526806], [47.364499, 8.536943], [47.391544, 8.505697], [47.387782, 8.519397], [47.370463, 8.510174], [47.402434, 8.503093], [47.3985, 8.538929], [47.430681, 8.550504], [47.381807, 8.548133], [47.375623, 8.541993], [47.401859, 8.493172], [47.376558, 8.548594], [47.378861, 8.524976], [47.395437, 8.526122], [47.368881, 8.548142], [47.358153, 8.519365], [47.379005, 8.508545], [47.387615, 8.486837], [47.423199, 8.535304], [47.379847, 8.524414], [47.37031, 8.602182], [47.365668, 8.510184], [47.371579, 8.472552], [47.382796, 8.529255], [47.372116, 8.519119], [47.376929, 8.539967], [47.413975, 8.544179], [47.384901, 8.509127], [47.415052, 8.551013], [47.348009, 8.534288], [47.365841, 8.545312], [47.3854, 8.542129], [47.368636, 8.524649], [47.389692, 8.511422], [47.405388, 8.592666], [47.363779, 8.553928], [47.38904, 8.510932], [47.346375, 8.527319], [47.404869, 8.574225], [47.370563, 8.526436], [47.358116, 8.519471], [47.364383, 8.546275], [47.372579, 8.517619], [47.405133, 8.480345], [47.403298, 8.497175], [47.412202, 8.546156], [47.414097, 8.550277], [47.37035, 8.513548], [47.370454, 8.514001], [47.396986, 8.539256], [47.353208, 8.511376], [47.374515, 8.54973], [47.411842, 8.525344], [47.396646, 8.541872], [47.374948, 8.534471], [47.393787, 8.472626], [47.380981, 8.492216], [47.369831, 8.547527], [47.381747, 8.541206], [47.372926, 8.535224], [47.371195, 8.535691], [47.405672, 8.549876], [47.378452, 8.540648], [47.406541, 8.553975], [47.349836, 8.561353], [47.384298, 8.485553], [47.368283, 8.541046], [47.359402, 8.522396], [47.388564, 8.535718], [47.381264, 8.540984], [47.386695, 8.534593], [47.383243, 8.540058], [47.404099, 8.483187], [47.359428, 8.584841], [47.378549, 8.496511], [47.387201, 8.51908], [47.409933, 8.576029], [47.394963, 8.522046], [47.385395, 8.539798], [47.378414, 8.540766], [47.37999, 8.536852], [47.373439, 8.5199], [47.37712, 8.49937], [47.391175, 8.523042], [47.379757, 8.524372], [47.36876, 8.524877], [47.354958, 8.557251], [47.361472, 8.54779], [47.397139, 8.530661], [47.366693, 8.544615], [47.372565, 8.534408], [47.392239, 8.516984], [47.403253, 8.48627], [47.371983, 8.535138], [47.358974, 8.591595], [47.379477, 8.527386], [47.364559, 8.56627], [47.389634, 8.521461], [47.336938, 8.518816], [47.358655, 8.582971], [47.367373, 8.494026], [47.36135, 8.525639], [47.369148, 8.564209], [47.383706, 8.529141], [47.37709, 8.540951], [47.409036, 8.548012], [47.398176, 8.536167], [47.369989, 8.510827], [47.366739, 8.565032], [47.427387, 8.546101], [47.382128, 8.51417], [47.409216, 8.54987], [47.398687, 8.590799], [47.414245, 8.534789], [47.38721, 8.519094], [47.413638, 8.545643], [47.392185, 8.503498], [47.405713, 8.494653], [47.410374, 8.543627], [47.3551, 8.532143], [47.374739, 8.537578], [47.392362, 8.502839], [47.398015, 8.503336], [47.369787, 8.537132], [47.376344, 8.527613], [47.411911, 8.51224], [47.378896, 8.526937], [47.382411, 8.505011], [47.377854, 8.529697], [47.377407, 8.501375], [47.368271, 8.536624], [47.427614, 8.54584], [47.398229, 8.532379], [47.396494, 8.528462], [47.36586, 8.547007], [47.393097, 8.521438], [47.39424, 8.480304], [47.413788, 8.536489], [47.382848, 8.557744], [47.370006, 8.548974], [47.410783, 8.545], [47.406514, 8.576195], [47.392143, 8.493311], [47.40585, 8.538843], [47.372388, 8.5236], [47.364846, 8.532674], [47.353454, 8.602105], [47.363219, 8.530629], [47.373952, 8.540846], [47.407713, 8.543452], [47.35933, 8.522368], [47.409678, 8.542089], [47.410347, 8.548277], [47.377692, 8.52584], [47.381022, 8.518015], [47.36996, 8.53123], [47.371824, 8.536684], [47.366446, 8.54506], [47.427789, 8.490478], [47.391979, 8.517853], [47.37787, 8.529909], [47.370994, 8.514912], [47.374035, 8.546303], [47.386145, 8.551641], [47.38187, 8.531156], [47.379902, 8.537632], [47.380144, 8.536723], [47.361386, 8.525693], [47.389249, 8.510698], [47.372771, 8.535472], [47.387678, 8.529527], [47.383004, 8.514837], [47.367898, 8.539953], [47.397452, 8.53182], [47.409073, 8.529011], [47.407705, 8.552714], [47.374508, 8.532475], [47.404028, 8.495984], [47.40022, 8.547245], [47.408574, 8.546558], [47.402203, 8.503711], [47.38423, 8.543098], [47.389989, 8.475903], [47.413532, 8.545402], [47.391979, 8.517945], [47.397976, 8.53252], [47.383127, 8.550201], [47.386012, 8.481985], [47.365046, 8.531527], [47.380309, 8.554247], [47.361209, 8.525385], [47.405334, 8.499786], [47.368796, 8.528717], [47.402148, 8.503843], [47.414395, 8.552934], [47.383327, 8.543437], [47.360612, 8.562294], [47.377721, 8.536104], [47.380041, 8.514181], [47.374547, 8.518784], [47.389426, 8.521563], [47.371039, 8.530272], [47.361489, 8.556329], [47.365249, 8.530922], [47.361963, 8.560364], [47.389741, 8.477435], [47.384979, 8.541895], [47.364637, 8.546055], [47.343963, 8.5303], [47.385007, 8.508334], [47.41982, 8.550065], [47.410681, 8.543435], [47.414607, 8.520206], [47.374641, 8.560829], [47.364213, 8.5667], [47.36655, 8.540772], [47.37061, 8.517539], [47.362766, 8.547049], [47.404176, 8.588771], [47.360616, 8.597429], [47.368306, 8.524377], [47.399065, 8.521944], [47.409385, 8.544454], [47.380747, 8.512765], [47.368076, 8.560678], [47.380763, 8.53312], [47.373984, 8.476241], [47.403606, 8.496929], [47.391521, 8.535924], [47.372732, 8.534875], [47.398378, 8.502986], [47.370606, 8.517036], [47.408833, 8.545821], [47.401335, 8.499282], [47.405812, 8.590741], [47.363053, 8.567496], [47.369514, 8.536477], [47.398249, 8.537003], [47.382148, 8.551981], [47.398172, 8.534617], [47.369041, 8.537951], [47.403944, 8.485502], [47.379289, 8.54432], [47.392122, 8.492688], [47.356924, 8.573363], [47.379706, 8.516372], [47.409418, 8.558832], [47.413857, 8.544322], [47.369809, 8.493213], [47.361022, 8.580149], [47.342701, 8.520084], [47.355878, 8.599855], [47.414544, 8.556183], [47.399031, 8.50537], [47.364086, 8.546348], [47.396993, 8.480265], [47.414515, 8.56098], [47.380122, 8.541821], [47.380652, 8.526748], [47.375905, 8.527432], [47.378795, 8.542403], [47.392239, 8.492611], [47.377216, 8.541946], [47.381809, 8.516614], [47.379022, 8.54495], [47.373118, 8.53683], [47.379591, 8.52768], [47.369504, 8.53849], [47.375537, 8.548188], [47.378733, 8.528046], [47.35546, 8.5566], [47.365921, 8.530287], [47.392763, 8.522518], [47.370957, 8.538003], [47.354782, 8.601486], [47.38593, 8.548749], [47.373324, 8.534967], [47.389718, 8.518284], [47.406649, 8.55032], [47.365539, 8.539282], [47.361822, 8.526205], [47.408641, 8.580268], [47.374133, 8.540691], [47.354914, 8.523258], [47.378435, 8.540462], [47.382805, 8.529268], [47.373422, 8.537048], [47.37626, 8.527943], [47.411153, 8.546784], [47.370206, 8.548806], [47.374434, 8.549675], [47.370709, 8.529948], [47.363699, 8.531247], [47.397979, 8.534176], [47.393209, 8.530634], [47.378326, 8.527349], [47.339902, 8.52986], [47.362825, 8.518931], [47.363379, 8.56275], [47.370146, 8.532465], [47.410582, 8.550084], [47.374185, 8.526695], [47.372998, 8.550254], [47.374682, 8.535975], [47.388453, 8.531344], [47.384903, 8.495154], [47.343307, 8.532166], [47.389719, 8.512323], [47.388289, 8.518135], [47.360358, 8.565374], [47.376842, 8.528259], [47.376796, 8.524603], [47.369107, 8.503063], [47.388934, 8.489168], [47.366586, 8.535067], [47.383956, 8.482606], [47.40261, 8.499559], [47.409109, 8.545125], [47.410541, 8.486069], [47.370052, 8.543294], [47.369844, 8.518636], [47.369446, 8.526572], [47.375791, 8.529112], [47.374258, 8.523691], [47.391973, 8.510779], [47.374958, 8.534418], [47.407792, 8.548357], [47.389649, 8.512123], [47.41033, 8.569492], [47.390832, 8.52224], [47.364267, 8.526294], [47.360432, 8.52472], [47.40011, 8.54931], [47.368033, 8.485816], [47.362657, 8.496262], [47.343322, 8.520097], [47.383245, 8.53982], [47.37907, 8.511208], [47.369142, 8.537794], [47.371399, 8.550035], [47.371046, 8.536178], [47.376534, 8.524638], [47.380155, 8.527916], [47.374482, 8.48683], [47.337582, 8.526901], [47.37382, 8.548073], [47.402383, 8.535499], [47.384224, 8.516093], [47.367671, 8.5221], [47.363699, 8.531261], [47.388844, 8.491153], [47.375321, 8.484516], [47.401126, 8.49953], [47.401878, 8.504791], [47.366762, 8.545834], [47.410779, 8.555773], [47.405572, 8.549967], [47.36475, 8.532341], [47.391538, 8.542693], [47.365011, 8.53138], [47.386586, 8.541293], [47.401278, 8.534403], [47.37085, 8.548276], [47.384967, 8.488189], [47.376002, 8.541921], [47.397797, 8.541935], [47.351871, 8.528305], [47.409027, 8.548025], [47.385007, 8.508321], [47.385333, 8.539704], [47.374335, 8.53753], [47.408556, 8.546531], [47.370161, 8.548818], [47.410102, 8.52772], [47.406898, 8.550524], [47.369041, 8.537937], [47.411124, 8.526204], [47.367462, 8.552548], [47.388358, 8.520375], [47.384814, 8.492146], [47.386792, 8.549853], [47.373365, 8.531684], [47.37028, 8.524974], [47.417617, 8.52533], [47.368283, 8.534413], [47.372891, 8.535143], [47.370611, 8.53556], [47.399579, 8.547497], [47.373291, 8.546923], [47.408965, 8.570244], [47.364332, 8.555329], [47.394232, 8.490133], [47.414048, 8.543133], [47.366625, 8.520477], [47.429953, 8.549574], [47.377621, 8.498691], [47.379353, 8.49519], [47.376406, 8.490854], [47.367411, 8.536328], [47.398001, 8.474218], [47.377557, 8.54198], [47.373543, 8.531873], [47.378413, 8.510334], [47.388084, 8.540741], [47.367951, 8.533413], [47.426906, 8.546515], [47.426511, 8.510189], [47.378575, 8.575214], [47.40929, 8.572875], [47.391131, 8.487873], [47.381122, 8.491623], [47.370161, 8.548805], [47.415107, 8.477439], [47.364965, 8.502623], [47.413619, 8.546663], [47.389662, 8.487248], [47.369207, 8.528024], [47.351427, 8.524854], [47.425425, 8.553681], [47.356499, 8.551446], [47.386374, 8.49664], [47.375425, 8.486928], [47.372025, 8.547692], [47.373961, 8.536132], [47.403413, 8.497323], [47.37176, 8.522541], [47.380934, 8.535044], [47.403672, 8.571497], [47.385645, 8.482865], [47.377971, 8.492911], [47.37856, 8.523527], [47.370088, 8.548909], [47.392294, 8.482651], [47.39345, 8.512584], [47.416315, 8.553424], [47.386184, 8.535311], [47.382386, 8.540305], [47.368031, 8.560716], [47.36424, 8.533019], [47.392298, 8.502931], [47.376443, 8.489769], [47.385025, 8.508268], [47.389867, 8.510896], [47.381785, 8.489888], [47.386988, 8.500295], [47.419395, 8.510284], [47.357138, 8.522058], [47.411161, 8.526059], [47.364586, 8.566204], [47.368503, 8.52454], [47.417531, 8.5616], [47.369041, 8.537937], [47.405173, 8.481817], [47.369607, 8.525688], [47.390315, 8.490639], [47.408978, 8.578924], [47.390317, 8.50803], [47.381478, 8.503761], [47.40386, 8.485739], [47.372927, 8.546479], [47.414133, 8.518977], [47.38568, 8.521063], [47.365859, 8.53202], [47.365263, 8.502457], [47.414809, 8.520687], [47.377229, 8.538636], [47.406925, 8.550538], [47.373867, 8.538408], [47.362231, 8.526637], [47.373814, 8.53642], [47.367486, 8.519806], [47.367825, 8.539157], [47.370197, 8.548805], [47.379006, 8.559702], [47.365015, 8.553517], [47.404569, 8.483964], [47.375015, 8.536895], [47.378449, 8.540886], [47.414697, 8.560732], [47.385061, 8.532308], [47.378147, 8.509945], [47.377612, 8.543756], [47.386699, 8.497428], [47.404767, 8.549552], [47.376371, 8.523827], [47.387156, 8.519093], [47.376089, 8.53942], [47.375242, 8.540449], [47.368454, 8.547604], [47.387026, 8.490216], [47.377799, 8.526968], [47.412344, 8.551102], [47.368078, 8.538937], [47.37706, 8.539454], [47.358713, 8.500698], [47.37388, 8.544671], [47.376211, 8.544521], [47.366661, 8.546084], [47.369919, 8.5135], [47.397714, 8.532674], [47.373814, 8.536487], [47.385043, 8.532374], [47.378072, 8.541805], [47.366577, 8.540799], [47.388235, 8.536254], [47.371684, 8.564342], [47.372705, 8.566588], [47.324727, 8.518397], [47.370586, 8.517247], [47.407112, 8.487234], [47.374859, 8.484904], [47.387946, 8.49095], [47.39803, 8.533448], [47.378531, 8.528439], [47.365433, 8.554029], [47.367058, 8.536533], [47.376136, 8.527794], [47.362777, 8.559904], [47.343374, 8.535542], [47.383292, 8.484434], [47.384816, 8.531588], [47.362458, 8.612734], [47.381653, 8.542621], [47.405838, 8.590781], [47.417816, 8.545199], [47.383098, 8.527818], [47.363197, 8.51956], [47.388638, 8.479056], [47.403445, 8.548531], [47.421618, 8.550116], [47.374612, 8.538648], [47.383768, 8.531103], [47.371643, 8.515772], [47.412712, 8.522818], [47.370158, 8.55847], [47.413907, 8.547609], [47.385688, 8.520202], [47.405116, 8.482186], [47.396581, 8.528769], [47.407988, 8.572582], [47.374548, 8.539693], [47.362196, 8.559442], [47.381424, 8.537411], [47.363182, 8.522115], [47.389033, 8.495051], [47.373306, 8.532146], [47.370307, 8.517295], [47.382075, 8.531359], [47.37341, 8.531658], [47.41349, 8.529989], [47.358991, 8.534447], [47.374111, 8.519292], [47.391312, 8.53898], [47.379854, 8.554767], [47.366168, 8.540261], [47.403823, 8.489846], [47.411018, 8.544965], [47.393806, 8.50618], [47.392834, 8.537938], [47.381041, 8.503328], [47.419113, 8.548752], [47.413897, 8.543912], [47.400211, 8.494318], [47.371634, 8.515772], [47.406482, 8.581269], [47.366377, 8.553148], [47.359874, 8.59605], [47.361825, 8.515256], [47.375286, 8.549918], [47.38419, 8.511033], [47.405695, 8.5916], [47.370134, 8.548817], [47.356907, 8.551084], [47.366565, 8.501689], [47.400728, 8.548607], [47.361575, 8.551102], [47.369703, 8.540308], [47.410295, 8.573996], [47.357727, 8.521581], [47.404874, 8.572768], [47.409215, 8.543417], [47.377216, 8.54196], [47.41709, 8.523053], [47.411244, 8.508477], [47.39119, 8.489292], [47.363665, 8.531975], [47.330162, 8.529634], [47.414318, 8.55439], [47.37047, 8.5142], [47.391829, 8.518512], [47.358731, 8.555], [47.405308, 8.577136], [47.373503, 8.519835], [47.388473, 8.490324], [47.393007, 8.524351], [47.35822, 8.587873], [47.374581, 8.53053], [47.362498, 8.568186], [47.406276, 8.58296], [47.371681, 8.529954], [47.425853, 8.493713], [47.387304, 8.517678], [47.366921, 8.544275], [47.375347, 8.533261], [47.391052, 8.479712], [47.370186, 8.549017], [47.408255, 8.550685], [47.409942, 8.47971], [47.409438, 8.564159], [47.360388, 8.566817], [47.38834, 8.520348], [47.419287, 8.537146], [47.373857, 8.527152], [47.366406, 8.54829], [47.387175, 8.535172], [47.40938, 8.54309], [47.370088, 8.511742], [47.369382, 8.54185], [47.399028, 8.54771], [47.37662, 8.545046], [47.364967, 8.547293], [47.356548, 8.523595], [47.375785, 8.535375], [47.376911, 8.526711], [47.372686, 8.534941], [47.391913, 8.518235], [47.402831, 8.501962], [47.359105, 8.526202], [47.381826, 8.516667], [47.384328, 8.531842], [47.345697, 8.520079], [47.391409, 8.523113], [47.369733, 8.525704], [47.367456, 8.501706], [47.374583, 8.534066], [47.385163, 8.53676], [47.349895, 8.576482], [47.373841, 8.536487], [47.359446, 8.509013], [47.355409, 8.554362], [47.393329, 8.52453], [47.40043, 8.59285], [47.367185, 8.540243], [47.360834, 8.535557], [47.397995, 8.532467], [47.413832, 8.54505], [47.420005, 8.509475], [47.414026, 8.545439], [47.33751, 8.519185], [47.373915, 8.544685], [47.375373, 8.496673], [47.384942, 8.537338], [47.355456, 8.572656], [47.398842, 8.53895], [47.409314, 8.545354], [47.38447, 8.534931], [47.398215, 8.516694], [47.375511, 8.548069], [47.427423, 8.551695], [47.386513, 8.529079], [47.358458, 8.518445], [47.377168, 8.540409], [47.358785, 8.521946], [47.366841, 8.543201], [47.395716, 8.522273], [47.411607, 8.528321], [47.366444, 8.545245], [47.354441, 8.527669], [47.425511, 8.557792], [47.377209, 8.539867], [47.378546, 8.540146], [47.370188, 8.548818], [47.377457, 8.5038], [47.386269, 8.498307], [47.377426, 8.550029], [47.403071, 8.589582], [47.379967, 8.527899], [47.36798, 8.540775], [47.37861, 8.526799], [47.37614, 8.500238], [47.370116, 8.54879], [47.35034, 8.577921], [47.386813, 8.516278], [47.363713, 8.520167], [47.421896, 8.550228]], [[47.369034, 8.528325], [47.373656, 8.534153], [47.365203, 8.547113], [47.373933, 8.546592], [47.347334, 8.534393], [47.378795, 8.5272], [47.3856, 8.530544], [47.378962, 8.559596], [47.377284, 8.541352], [47.356204, 8.555874], [47.409717, 8.544554], [47.410909, 8.563647], [47.360514, 8.561339], [47.371529, 8.511586], [47.328634, 8.51804], [47.364149, 8.546349], [47.416633, 8.555021], [47.371249, 8.535692], [47.402386, 8.495514], [47.418279, 8.546627], [47.363489, 8.575382], [47.36666, 8.541476], [47.395204, 8.519322], [47.363927, 8.546941], [47.378768, 8.542349], [47.375765, 8.529005], [47.403696, 8.48306], [47.403662, 8.571655], [47.382368, 8.488124], [47.401459, 8.548371], [47.38315, 8.515581], [47.36149, 8.502858], [47.366256, 8.545162], [47.430827, 8.550388], [47.361993, 8.5572], [47.378035, 8.526721], [47.328552, 8.518091], [47.358289, 8.55887], [47.384453, 8.542321], [47.374497, 8.517446], [47.392147, 8.5477], [47.399712, 8.495792], [47.410513, 8.54791], [47.375378, 8.536598], [47.374762, 8.536043], [47.373812, 8.537665], [47.402396, 8.49937], [47.428031, 8.542708], [47.387511, 8.528186], [47.388433, 8.520046], [47.368552, 8.528831], [47.370994, 8.537911], [47.391001, 8.522416], [47.368665, 8.564914], [47.335007, 8.529958], [47.41076, 8.544602], [47.393466, 8.500119], [47.426243, 8.554613], [47.418678, 8.547232], [47.391607, 8.519183], [47.392755, 8.523458], [47.386014, 8.495706], [47.38813, 8.535947], [47.396555, 8.528676], [47.394017, 8.52506], [47.373165, 8.503926], [47.344708, 8.528608], [47.364638, 8.566444], [47.347538, 8.532743], [47.377432, 8.539037], [47.40862, 8.546373], [47.381061, 8.54241], [47.365292, 8.521602], [47.372297, 8.526644], [47.364825, 8.566646], [47.375888, 8.527405], [47.411062, 8.532736], [47.403082, 8.570212], [47.373617, 8.536377], [47.385362, 8.500077], [47.387005, 8.528427], [47.37741, 8.539514], [47.348407, 8.533118], [47.376016, 8.535751], [47.385478, 8.536767], [47.395728, 8.518074], [47.395096, 8.520327], [47.377198, 8.540013], [47.374146, 8.533699], [47.374548, 8.533999], [47.367734, 8.487956], [47.373629, 8.597752], [47.376121, 8.540758], [47.35706, 8.59767], [47.373425, 8.519503], [47.389696, 8.511872], [47.428329, 8.545405], [47.405509, 8.579605], [47.37834, 8.493779], [47.37533, 8.561214], [47.414158, 8.482947], [47.373954, 8.538807], [47.36027, 8.568853], [47.372489, 8.563882], [47.417703, 8.554143], [47.374199, 8.568394], [47.348632, 8.533123], [47.373958, 8.526015], [47.403637, 8.570489], [47.373415, 8.534863], [47.364072, 8.556171], [47.380854, 8.511893], [47.407705, 8.535728], [47.377042, 8.544154], [47.377136, 8.552115], [47.426897, 8.546541], [47.377701, 8.538195], [47.36832, 8.504517], [47.39073, 8.545352], [47.366079, 8.533547], [47.400788, 8.5489], [47.372086, 8.523236], [47.402361, 8.499289], [47.381391, 8.533252], [47.367983, 8.540458], [47.389176, 8.509849], [47.376365, 8.510041], [47.393893, 8.521004], [47.418818, 8.530576], [47.376566, 8.548766], [47.370928, 8.535394], [47.395091, 8.524698], [47.365326, 8.598723], [47.378547, 8.528718], [47.388421, 8.486177], [47.369672, 8.525544], [47.391832, 8.484946], [47.424285, 8.54312], [47.364588, 8.554924], [47.34376, 8.525175], [47.375305, 8.485377], [47.385565, 8.530437], [47.368848, 8.54785], [47.388603, 8.477956], [47.359386, 8.596264], [47.387102, 8.489781], [47.373422, 8.552951], [47.402579, 8.582073], [47.364774, 8.532633], [47.382119, 8.540882], [47.421143, 8.548131], [47.414728, 8.551059], [47.360872, 8.524861], [47.371625, 8.515772], [47.364566, 8.532814], [47.36832, 8.484882], [47.391347, 8.522953], [47.38451, 8.542958], [47.393841, 8.50826], [47.3355, 8.518748], [47.370361, 8.518183], [47.357039, 8.52207], [47.411746, 8.525051], [47.377308, 8.509226], [47.371967, 8.556416], [47.37868, 8.567297], [47.367932, 8.48604], [47.350007, 8.570608], [47.377713, 8.525575], [47.389156, 8.532114], [47.380724, 8.582663], [47.396721, 8.529262], [47.401541, 8.548306], [47.381925, 8.512828], [47.382829, 8.555942], [47.336519, 8.518411], [47.362906, 8.567824], [47.387355, 8.487693], [47.349174, 8.562861], [47.4109, 8.562746], [47.385089, 8.532282], [47.37604, 8.48461], [47.380872, 8.53491], [47.403163, 8.500074], [47.371084, 8.514953], [47.385778, 8.53264], [47.411073, 8.545748], [47.378064, 8.495495], [47.359685, 8.515226], [47.364261, 8.536449], [47.41364, 8.545364], [47.364103, 8.546375], [47.396808, 8.540961], [47.361124, 8.517188], [47.414694, 8.56109], [47.374504, 8.521498], [47.393495, 8.492079], [47.380098, 8.508991], [47.403657, 8.496202], [47.393345, 8.524795], [47.358412, 8.521436], [47.359881, 8.594435], [47.366711, 8.544642], [47.382738, 8.575435], [47.405252, 8.55526], [47.384191, 8.497312], [47.355524, 8.600138], [47.370827, 8.470194], [47.368116, 8.536846], [47.362912, 8.556147], [47.359812, 8.527567], [47.369853, 8.518649], [47.416321, 8.545354], [47.383245, 8.548256], [47.386724, 8.547574], [47.386801, 8.534741], [47.38012, 8.535504], [47.375732, 8.526687], [47.409277, 8.545406], [47.411177, 8.526219], [47.370116, 8.548817], [47.414778, 8.519229], [47.367543, 8.540329], [47.377441, 8.499628], [47.340403, 8.519601], [47.386599, 8.481797], [47.392874, 8.496041], [47.370302, 8.545312], [47.367001, 8.523543], [47.366493, 8.566245], [47.395934, 8.493863], [47.376872, 8.510581], [47.37656, 8.538993], [47.370402, 8.5225], [47.370325, 8.514303], [47.361534, 8.560937], [47.40712, 8.586702], [47.398377, 8.54714], [47.399767, 8.543765], [47.38099, 8.492229], [47.370188, 8.548792], [47.354799, 8.526856], [47.378056, 8.513849], [47.375817, 8.529139], [47.372116, 8.515266], [47.404584, 8.491278], [47.391506, 8.528003], [47.360508, 8.535723], [47.376417, 8.564137], [47.369455, 8.528426], [47.409433, 8.546085], [47.363105, 8.556694], [47.359671, 8.522454], [47.41272, 8.482826], [47.388797, 8.520517], [47.384025, 8.480939], [47.357617, 8.553918], [47.404283, 8.54472], [47.410368, 8.539519], [47.389719, 8.512323], [47.373362, 8.547031], [47.372882, 8.535156], [47.37328, 8.533033], [47.404418, 8.557707], [47.396674, 8.510198], [47.417216, 8.522989], [47.369107, 8.525347], [47.375872, 8.559133], [47.385581, 8.542927], [47.356856, 8.52241], [47.358311, 8.556567], [47.378802, 8.526445], [47.376446, 8.549108], [47.362293, 8.532476], [47.372784, 8.535048], [47.36801, 8.540432], [47.38652, 8.540656], [47.375411, 8.484531], [47.353343, 8.576185], [47.387086, 8.547316], [47.369507, 8.525779], [47.410047, 8.535391], [47.388549, 8.479001], [47.410547, 8.556524], [47.367335, 8.544297], [47.378406, 8.516849], [47.340656, 8.52711], [47.371088, 8.516437], [47.381327, 8.541012], [47.37104, 8.537767], [47.389883, 8.539851], [47.398345, 8.53731], [47.378557, 8.504523], [47.363386, 8.534855], [47.329118, 8.529679], [47.376805, 8.535039], [47.412809, 8.514299], [47.394601, 8.494009], [47.407201, 8.585816], [47.374481, 8.540129], [47.355029, 8.562031], [47.414738, 8.519612], [47.383394, 8.548643], [47.371225, 8.523007], [47.419374, 8.508654], [47.378495, 8.575186], [47.364466, 8.566493], [47.381665, 8.513657], [47.416591, 8.513885], [47.375261, 8.525194], [47.369296, 8.528158], [47.376922, 8.540735], [47.416685, 8.568195], [47.36028, 8.523684], [47.356895, 8.522067], [47.393447, 8.537739], [47.376896, 8.554626], [47.373244, 8.533019], [47.402833, 8.577255], [47.37009, 8.518323], [47.358001, 8.554244], [47.326399, 8.516539], [47.394838, 8.525739], [47.411579, 8.54556], [47.396002, 8.545303], [47.386616, 8.468871], [47.3925, 8.516088], [47.372981, 8.547367], [47.374731, 8.495985], [47.366573, 8.54023], [47.337514, 8.530261], [47.389264, 8.54152], [47.386921, 8.544809], [47.393505, 8.539184], [47.409168, 8.571534], [47.379962, 8.547274], [47.367968, 8.544827], [47.37017, 8.548778], [47.397766, 8.530038], [47.382957, 8.557614], [47.370359, 8.513615], [47.414995, 8.551369], [47.376758, 8.538057], [47.366985, 8.523358], [47.370653, 8.516772], [47.37646, 8.543838], [47.416296, 8.545115], [47.390015, 8.536383], [47.356752, 8.523917], [47.4037, 8.571444], [47.373938, 8.503014], [47.377717, 8.507778], [47.378406, 8.555677], [47.403694, 8.5784], [47.355276, 8.574506], [47.36974, 8.54011], [47.374368, 8.521627], [47.380163, 8.528089], [47.370179, 8.548805], [47.368135, 8.54152], [47.361132, 8.531645], [47.35588, 8.531431], [47.360504, 8.550298], [47.427353, 8.545848], [47.414203, 8.519124], [47.387937, 8.490949], [47.357231, 8.506321], [47.388935, 8.489048], [47.357103, 8.556886], [47.362704, 8.496104], [47.413307, 8.531271], [47.37852, 8.506496], [47.371235, 8.531389], [47.394089, 8.475056], [47.405261, 8.555247], [47.380305, 8.483488], [47.407223, 8.585379], [47.375927, 8.523235], [47.399828, 8.544018], [47.377616, 8.507007], [47.366808, 8.499747], [47.361801, 8.560307], [47.378172, 8.5341], [47.376545, 8.529233], [47.373915, 8.524823], [47.393453, 8.539064], [47.384145, 8.497364], [47.365335, 8.545527], [47.365117, 8.553241], [47.379755, 8.526544], [47.364351, 8.555237], [47.386091, 8.521362], [47.378769, 8.510778], [47.419516, 8.547991], [47.373832, 8.536487], [47.366564, 8.540256], [47.385363, 8.532738], [47.352294, 8.507082], [47.368402, 8.546477], [47.380891, 8.492307], [47.416279, 8.544134], [47.390932, 8.523143], [47.369274, 8.541822], [47.368696, 8.493006], [47.362131, 8.547552], [47.391264, 8.485134], [47.366067, 8.548944], [47.37385, 8.536501], [47.389733, 8.51182], [47.370648, 8.535468], [47.376372, 8.539903], [47.374219, 8.521214], [47.414076, 8.514431], [47.410678, 8.550312], [47.389737, 8.486839], [47.405559, 8.550483], [47.37603, 8.541816], [47.431268, 8.543769], [47.393163, 8.528805], [47.408492, 8.546635], [47.401215, 8.588111], [47.375886, 8.540859], [47.384298, 8.554728], [47.347253, 8.532512], [47.402427, 8.535579], [47.391243, 8.538727], [47.386753, 8.502409], [47.331935, 8.535241], [47.412301, 8.52436], [47.415679, 8.563443], [47.376392, 8.536857], [47.360933, 8.525048], [47.369155, 8.491995], [47.404621, 8.484151], [47.361773, 8.505419], [47.392556, 8.475516], [47.371527, 8.558221], [47.413799, 8.546666], [47.391423, 8.535869], [47.402076, 8.545985], [47.386688, 8.539043], [47.3849, 8.550185], [47.370215, 8.548806], [47.372747, 8.550236], [47.388539, 8.487027], [47.385427, 8.517336], [47.368946, 8.540358], [47.32477, 8.510871], [47.365649, 8.520894], [47.383844, 8.52974], [47.344532, 8.532959], [47.41498, 8.551011], [47.362541, 8.533885], [47.351314, 8.576738], [47.382992, 8.575176], [47.364586, 8.566191], [47.361371, 8.512838], [47.357465, 8.524554], [47.370644, 8.517725], [47.404169, 8.563955], [47.41167, 8.537876], [47.379074, 8.522345], [47.407371, 8.579592], [47.378535, 8.555375], [47.401364, 8.508875], [47.357675, 8.521434], [47.377228, 8.551918], [47.37223, 8.540307], [47.379268, 8.495665], [47.406307, 8.492677], [47.358281, 8.584432], [47.370949, 8.548278], [47.386793, 8.534674], [47.386623, 8.547797], [47.422111, 8.549411], [47.334864, 8.529955], [47.415678, 8.546732], [47.368932, 8.559597], [47.361562, 8.554358], [47.374673, 8.535948], [47.375883, 8.541177], [47.365767, 8.496549], [47.361245, 8.506004], [47.415275, 8.514203], [47.360188, 8.522968], [47.390507, 8.522326], [47.415179, 8.5177], [47.376802, 8.528656], [47.432354, 8.528812], [47.367888, 8.494804], [47.41429, 8.550745], [47.372982, 8.533119], [47.386565, 8.490432], [47.340024, 8.530286], [47.375467, 8.560092], [47.362926, 8.549131], [47.37654, 8.515395], [47.410418, 8.543668], [47.365116, 8.553307], [47.383088, 8.540187], [47.356096, 8.562371], [47.369151, 8.503236], [47.369213, 8.540708], [47.414682, 8.545532], [47.376822, 8.541779], [47.373548, 8.519783], [47.416003, 8.552212], [47.400402, 8.501039], [47.394838, 8.525726], [47.430019, 8.544552], [47.376592, 8.514654], [47.361744, 8.516287], [47.400254, 8.547431], [47.371379, 8.530478], [47.356982, 8.535716], [47.424213, 8.496955], [47.39116, 8.52275], [47.37578, 8.549067], [47.393081, 8.544951], [47.376296, 8.55991], [47.424828, 8.499485], [47.376484, 8.552618], [47.397721, 8.532925], [47.37582, 8.537389], [47.364287, 8.555355], [47.41349, 8.52995], [47.366287, 8.548459], [47.41648, 8.55311], [47.377015, 8.548828], [47.397643, 8.588193], [47.375908, 8.541323], [47.386761, 8.535217], [47.361643, 8.526095], [47.360147, 8.523536], [47.351536, 8.530416], [47.351861, 8.53033], [47.354263, 8.57594], [47.365712, 8.532348], [47.382491, 8.572199], [47.341836, 8.530826], [47.375546, 8.548228], [47.413829, 8.545395], [47.39868, 8.471727], [47.363984, 8.54759], [47.367635, 8.540159], [47.399042, 8.533059], [47.362356, 8.516207], [47.369216, 8.550731], [47.385508, 8.508583], [47.372704, 8.517793], [47.370072, 8.525009], [47.422845, 8.542229], [47.370871, 8.524218], [47.396301, 8.526034], [47.369615, 8.528641], [47.378598, 8.523329], [47.362284, 8.532489], [47.366495, 8.494657], [47.372602, 8.534356], [47.409358, 8.545381], [47.370894, 8.548343], [47.35325, 8.527023], [47.393873, 8.472058], [47.363074, 8.51732], [47.363635, 8.535165], [47.375021, 8.549475], [47.423616, 8.510992], [47.377913, 8.50998], [47.391, 8.507143], [47.381852, 8.489465], [47.347025, 8.529053], [47.407138, 8.586742], [47.374509, 8.539944], [47.366095, 8.533733], [47.401965, 8.499308], [47.371398, 8.530346], [47.361507, 8.597396], [47.391628, 8.538933], [47.370204, 8.556459], [47.39698, 8.530433], [47.368577, 8.52903], [47.366788, 8.542234], [47.40949, 8.522978], [47.383151, 8.540255], [47.399545, 8.496398], [47.396172, 8.527303], [47.347331, 8.532778], [47.380369, 8.528172], [47.383435, 8.512912], [47.372768, 8.477369], [47.363377, 8.529162], [47.353253, 8.512317], [47.413056, 8.524495], [47.375176, 8.501437], [47.406835, 8.550576], [47.390925, 8.521937], [47.387308, 8.547599], [47.397194, 8.491781], [47.391371, 8.537537], [47.375646, 8.510967], [47.378123, 8.510606], [47.377673, 8.508598], [47.375714, 8.578066], [47.352375, 8.507071], [47.375567, 8.560001], [47.38252, 8.475215], [47.356003, 8.535604], [47.358856, 8.533518], [47.383179, 8.540123], [47.390682, 8.478897], [47.369212, 8.567838], [47.36923, 8.567825], [47.399357, 8.585885], [47.41161, 8.50973], [47.424944, 8.553128], [47.344404, 8.530283], [47.393445, 8.52942], [47.393904, 8.486656], [47.366921, 8.544275], [47.356991, 8.53569], [47.396526, 8.530808], [47.382846, 8.540116], [47.416956, 8.545751], [47.39342, 8.500277], [47.374901, 8.51944], [47.364908, 8.530822], [47.412253, 8.556771], [47.390748, 8.522583], [47.360298, 8.523698], [47.383557, 8.530608], [47.3612, 8.525345], [47.37298, 8.533397], [47.37385, 8.536487], [47.37302, 8.532908], [47.376842, 8.543448], [47.382421, 8.551656], [47.367292, 8.523165], [47.421358, 8.550005], [47.369398, 8.525883], [47.371879, 8.522279], [47.37307, 8.550309], [47.387894, 8.485823], [47.344057, 8.530911], [47.38184, 8.54191], [47.389933, 8.492009], [47.362095, 8.535332], [47.39008, 8.511231], [47.375945, 8.535603], [47.410774, 8.554355], [47.374149, 8.520934], [47.367128, 8.544266], [47.369112, 8.517151], [47.424557, 8.553239], [47.364332, 8.555316], [47.368513, 8.499172], [47.391122, 8.522988], [47.349522, 8.532214], [47.381176, 8.491544], [47.367942, 8.560608], [47.424669, 8.550007], [47.404819, 8.576543], [47.416268, 8.51474], [47.327451, 8.51279], [47.408585, 8.580505], [47.404764, 8.594799], [47.374227, 8.516487], [47.368527, 8.546546], [47.374292, 8.543819], [47.376794, 8.527649], [47.398026, 8.535833], [47.387482, 8.484609], [47.391097, 8.541797], [47.391062, 8.538882], [47.392553, 8.538131], [47.369209, 8.543899], [47.355944, 8.553936], [47.387616, 8.527579], [47.401043, 8.535392], [47.396998, 8.530327], [47.388458, 8.491079], [47.370277, 8.548873], [47.387089, 8.522389], [47.360373, 8.53572], [47.380869, 8.526673], [47.364869, 8.566727], [47.406297, 8.551294], [47.409568, 8.537568], [47.398829, 8.540301], [47.369694, 8.540268], [47.414575, 8.551029], [47.412169, 8.550542], [47.410711, 8.554433], [47.385199, 8.530112], [47.373065, 8.528116], [47.376648, 8.527845], [47.362677, 8.497097], [47.387281, 8.487956], [47.36815, 8.541772], [47.378518, 8.540291], [47.392829, 8.523168], [47.365877, 8.494353], [47.36414, 8.546309], [47.367544, 8.539363], [47.387286, 8.500142], [47.382342, 8.514399], [47.426297, 8.554667], [47.37558, 8.537079], [47.368636, 8.546509], [47.361363, 8.526182], [47.358027, 8.520276], [47.380091, 8.525174], [47.390664, 8.478857], [47.371922, 8.556455], [47.398336, 8.537297], [47.355953, 8.554902], [47.371041, 8.549856], [47.387898, 8.540472], [47.345165, 8.529743], [47.375066, 8.545663], [47.373217, 8.533005], [47.364729, 8.556172], [47.394939, 8.516826], [47.409685, 8.523273], [47.406862, 8.55059], [47.419774, 8.500352], [47.379435, 8.545939], [47.369844, 8.518636], [47.364985, 8.521728], [47.372265, 8.540454], [47.359766, 8.50845], [47.354168, 8.553436], [47.407187, 8.566258], [47.369899, 8.529071], [47.37729, 8.538849], [47.373465, 8.561506], [47.36048, 8.535855], [47.366629, 8.544706], [47.363195, 8.548249], [47.363717, 8.531261], [47.374574, 8.541706], [47.404418, 8.574308], [47.356593, 8.523583], [47.397341, 8.587789], [47.3925, 8.492603], [47.391382, 8.487017], [47.407386, 8.541922], [47.369678, 8.538215], [47.380025, 8.548216], [47.382475, 8.514614], [47.370858, 8.54829], [47.427921, 8.545701], [47.375599, 8.577865], [47.359189, 8.527806], [47.391296, 8.535059], [47.361189, 8.525517], [47.383293, 8.499095], [47.385963, 8.475507], [47.413218, 8.538717], [47.406414, 8.588992], [47.378896, 8.526924], [47.376676, 8.497732], [47.407006, 8.550553], [47.385541, 8.542397], [47.381192, 8.538162], [47.392546, 8.475635], [47.377546, 8.509694], [47.383736, 8.512467], [47.369164, 8.538284], [47.389306, 8.51609], [47.407574, 8.530637], [47.366976, 8.523318], [47.404148, 8.559662], [47.357524, 8.535489], [47.364664, 8.532896], [47.357434, 8.521217], [47.372139, 8.556393], [47.375759, 8.498694], [47.366894, 8.544301], [47.390411, 8.509489], [47.343016, 8.520051], [47.372716, 8.525103], [47.404946, 8.557095], [47.366809, 8.518124], [47.425995, 8.547742], [47.409044, 8.550052], [47.364472, 8.536943], [47.4057, 8.595601], [47.365109, 8.534321], [47.378398, 8.49235], [47.404696, 8.549471], [47.405053, 8.482185], [47.372044, 8.529565], [47.377974, 8.548199], [47.385546, 8.530477], [47.37865, 8.544373], [47.3771, 8.541812], [47.383147, 8.550055], [47.360454, 8.522364], [47.384986, 8.48509], [47.391118, 8.489277], [47.374881, 8.517718], [47.37413, 8.497748], [47.373554, 8.534429], [47.386006, 8.548287], [47.387339, 8.493375], [47.390998, 8.513157], [47.366493, 8.542002], [47.385007, 8.508334], [47.386462, 8.477], [47.378414, 8.543653], [47.368017, 8.540657], [47.406652, 8.578609], [47.371636, 8.53566], [47.343059, 8.519351], [47.328797, 8.517884], [47.361155, 8.600234], [47.373796, 8.486142], [47.413918, 8.551082], [47.373852, 8.517181], [47.353105, 8.572103], [47.36063, 8.529477], [47.412064, 8.545636], [47.385193, 8.530734], [47.37453, 8.54532], [47.372703, 8.534054], [47.386513, 8.529093], [47.407523, 8.548245], [47.428302, 8.542567], [47.383208, 8.515145], [47.374378, 8.55268], [47.408956, 8.53953], [47.369482, 8.553875], [47.377261, 8.510351], [47.378914, 8.518383], [47.373988, 8.54086], [47.366215, 8.520959], [47.371487, 8.524786], [47.397717, 8.533257], [47.399049, 8.514061], [47.393412, 8.537698], [47.415225, 8.544244], [47.374459, 8.539532], [47.410485, 8.573006], [47.3513, 8.576301], [47.36778, 8.522963], [47.360571, 8.535711], [47.353013, 8.572287], [47.360009, 8.568861], [47.421403, 8.550045], [47.375523, 8.526908], [47.363326, 8.533557], [47.390882, 8.466596], [47.366753, 8.5421], [47.353166, 8.575917], [47.360122, 8.571061], [47.366314, 8.534306], [47.377847, 8.50925], [47.416879, 8.547155], [47.390531, 8.490616], [47.374762, 8.518868], [47.361834, 8.51527], [47.363562, 8.519991], [47.381785, 8.536359], [47.387495, 8.476159], [47.398488, 8.500776], [47.360304, 8.550466], [47.391823, 8.513438], [47.369437, 8.525632], [47.358211, 8.550211], [47.376821, 8.526723], [47.366052, 8.521167], [47.369105, 8.54162], [47.420531, 8.501228], [47.369266, 8.525628], [47.356647, 8.52361], [47.370846, 8.491036], [47.368463, 8.498787], [47.363424, 8.499984], [47.40699, 8.550327], [47.348525, 8.534034], [47.372528, 8.534567], [47.367865, 8.532021], [47.402992, 8.494241], [47.411162, 8.54681], [47.383707, 8.481277], [47.370859, 8.535022], [47.339987, 8.530378], [47.349941, 8.569958], [47.365626, 8.556402], [47.388126, 8.521086], [47.402575, 8.492577], [47.374376, 8.502401], [47.429626, 8.541428], [47.389639, 8.540005], [47.414245, 8.518502], [47.421014, 8.507401], [47.388097, 8.485191], [47.412003, 8.547305], [47.371104, 8.538589], [47.378711, 8.526549], [47.393731, 8.513291], [47.379125, 8.51113], [47.385643, 8.480004], [47.383458, 8.531599], [47.387649, 8.48701], [47.410649, 8.57191], [47.37447, 8.549702], [47.371458, 8.521145], [47.37126, 8.528847], [47.38828, 8.528692], [47.373038, 8.532909], [47.377399, 8.526417], [47.368847, 8.529049], [47.412669, 8.526421], [47.370936, 8.531674], [47.367931, 8.556212], [47.391493, 8.534215], [47.368172, 8.496147], [47.354333, 8.511333], [47.399266, 8.542562], [47.408196, 8.557693], [47.368481, 8.556939], [47.377517, 8.499206], [47.376143, 8.553458], [47.360912, 8.549962], [47.410726, 8.572256], [47.372071, 8.529565], [47.375248, 8.547322], [47.391644, 8.519144], [47.367796, 8.544942], [47.366624, 8.532936], [47.371481, 8.556525], [47.399822, 8.542732], [47.362649, 8.530961], [47.370713, 8.535218], [47.360914, 8.571899], [47.376152, 8.521253], [47.427712, 8.545935], [47.350023, 8.527817], [47.370233, 8.518472], [47.401968, 8.552554], [47.367898, 8.49765], [47.383022, 8.530134], [47.380844, 8.511005], [47.36908, 8.523427], [47.372055, 8.534186], [47.390912, 8.523302], [47.364633, 8.554899], [47.384072, 8.492595], [47.405626, 8.565828], [47.342323, 8.536341], [47.376796, 8.511017], [47.407668, 8.58405], [47.411479, 8.526622], [47.375944, 8.530015], [47.386426, 8.518257], [47.364499, 8.53697], [47.37386, 8.536395], [47.388961, 8.525169], [47.395494, 8.540046], [47.388179, 8.525047], [47.378831, 8.530962], [47.359002, 8.553086], [47.394797, 8.523407], [47.3731, 8.53777], [47.393491, 8.483615], [47.367923, 8.523986], [47.365269, 8.500868], [47.370034, 8.543307], [47.383346, 8.574879], [47.383877, 8.542349], [47.370188, 8.548792], [47.377012, 8.539757], [47.389957, 8.491426], [47.373998, 8.546342], [47.370204, 8.53767], [47.41078, 8.567686], [47.393672, 8.509025], [47.405764, 8.591045], [47.400193, 8.546224], [47.378112, 8.493232], [47.381195, 8.537804], [47.391676, 8.492255], [47.413752, 8.546811], [47.368827, 8.548088], [47.382339, 8.530093], [47.361667, 8.529207], [47.365979, 8.562646], [47.394783, 8.525804], [47.399177, 8.521549], [47.374201, 8.521227], [47.418885, 8.507053], [47.370161, 8.548818], [47.368382, 8.517269], [47.408802, 8.549053], [47.351067, 8.513358], [47.362554, 8.519997], [47.361412, 8.525746], [47.374444, 8.540181], [47.380332, 8.483462], [47.375865, 8.54115], [47.404525, 8.550382], [47.367929, 8.540483], [47.377748, 8.537971], [47.413768, 8.520428], [47.430009, 8.486677], [47.411641, 8.507425], [47.404679, 8.581641], [47.370098, 8.539363], [47.401235, 8.550168], [47.402298, 8.499301], [47.368115, 8.541665], [47.369379, 8.526994], [47.355534, 8.53476], [47.367604, 8.538702], [47.402545, 8.553295], [47.383867, 8.534005], [47.38825, 8.518426], [47.376785, 8.528602], [47.364918, 8.554322], [47.398828, 8.540367], [47.410204, 8.541662], [47.374383, 8.519059], [47.40689, 8.550511], [47.375963, 8.53367], [47.373094, 8.532671], [47.426719, 8.549083], [47.387363, 8.487746], [47.411836, 8.525092], [47.404754, 8.594878], [47.389207, 8.539042], [47.40536, 8.592745], [47.414041, 8.519201], [47.361128, 8.601094], [47.361219, 8.502045], [47.378879, 8.539213], [47.361103, 8.549715], [47.373614, 8.529054], [47.40113, 8.549887], [47.39311, 8.484945], [47.361365, 8.565342], [47.334922, 8.518035], [47.377036, 8.512293], [47.409321, 8.535151], [47.361678, 8.523289], [47.363148, 8.525795], [47.391917, 8.517798], [47.393179, 8.474243], [47.403588, 8.559875], [47.370553, 8.487614], [47.358295, 8.587543], [47.384983, 8.531035], [47.39321, 8.524752], [47.373926, 8.54642], [47.370242, 8.548806], [47.407158, 8.586504], [47.385169, 8.532363], [47.412405, 8.550361], [47.381498, 8.503549], [47.370125, 8.548844], [47.370269, 8.513586], [47.380386, 8.515777], [47.387297, 8.488089], [47.373854, 8.537944], [47.414458, 8.552908], [47.359644, 8.569396], [47.38705, 8.528428], [47.38329, 8.486593], [47.391936, 8.533919], [47.42802, 8.54569], [47.37333, 8.52007], [47.387239, 8.486565], [47.383961, 8.53165], [47.352175, 8.525651], [47.363967, 8.528565], [47.373319, 8.535523], [47.409291, 8.528764], [47.354967, 8.574817], [47.391128, 8.489198], [47.36345, 8.533824], [47.375418, 8.535235], [47.419174, 8.505986], [47.41942, 8.556021], [47.359, 8.52207], [47.339541, 8.529919], [47.410981, 8.529859], [47.37386, 8.536368], [47.389263, 8.527387], [47.360538, 8.597176], [47.411673, 8.561861], [47.368737, 8.519659], [47.361096, 8.531565], [47.41551, 8.563148], [47.393067, 8.531306], [47.414335, 8.551673], [47.365176, 8.547112], [47.376749, 8.535196], [47.376509, 8.521631], [47.388355, 8.526389], [47.41406, 8.541901], [47.385164, 8.495159], [47.373223, 8.550246], [47.397565, 8.481694], [47.410742, 8.571581], [47.375972, 8.537537], [47.420697, 8.502663], [47.392388, 8.524193], [47.378819, 8.50923], [47.372838, 8.528376], [47.381306, 8.542216], [47.380331, 8.54164], [47.379973, 8.497242], [47.393109, 8.474003], [47.398678, 8.471873], [47.366686, 8.542496], [47.371187, 8.524118], [47.380774, 8.512792], [47.359348, 8.597428], [47.406759, 8.587767], [47.407227, 8.547219], [47.360336, 8.553723], [47.383647, 8.512439], [47.363868, 8.566931], [47.349006, 8.565332], [47.387262, 8.485095], [47.364398, 8.548499], [47.393757, 8.53352], [47.382583, 8.528085], [47.371499, 8.535817], [47.357121, 8.556846], [47.3952, 8.535947], [47.396661, 8.518371], [47.398851, 8.536062], [47.370984, 8.531317], [47.360556, 8.556998], [47.405951, 8.557315], [47.399264, 8.515112], [47.386731, 8.544898], [47.430736, 8.550399], [47.373574, 8.51609], [47.374377, 8.54063], [47.355069, 8.557942], [47.366528, 8.540255], [47.352604, 8.525024], [47.38516, 8.532376], [47.368717, 8.509265], [47.398863, 8.533863], [47.376787, 8.535012], [47.405116, 8.480173], [47.360414, 8.526692], [47.36877, 8.547558], [47.352873, 8.557141], [47.409427, 8.538228], [47.362061, 8.551085], [47.376334, 8.487966], [47.375121, 8.545584], [47.368672, 8.51893], [47.359522, 8.557863], [47.374803, 8.55151], [47.382271, 8.501631], [47.385956, 8.498023], [47.341047, 8.524736], [47.37523, 8.533192], [47.407412, 8.585396], [47.370306, 8.513481], [47.413615, 8.553606], [47.40071, 8.548673], [47.379969, 8.514232], [47.372184, 8.530984], [47.369098, 8.525334], [47.399092, 8.541975], [47.385414, 8.475536], [47.368946, 8.540398], [47.390685, 8.539722], [47.353483, 8.576572], [47.364188, 8.556227], [47.367161, 8.539924], [47.375112, 8.545597], [47.372314, 8.563336], [47.391715, 8.51341], [47.39671, 8.517948], [47.381924, 8.529277], [47.385369, 8.529294], [47.386511, 8.52545], [47.376656, 8.544001], [47.424979, 8.541054], [47.409506, 8.57651], [47.369056, 8.523108], [47.373017, 8.531332], [47.400815, 8.548887], [47.375232, 8.552803], [47.407187, 8.585457], [47.379171, 8.526426], [47.381303, 8.511981], [47.408262, 8.547147], [47.39121, 8.523175], [47.414566, 8.564095], [47.365236, 8.502443], [47.414313, 8.551156], [47.353171, 8.577267], [47.395131, 8.5194], [47.37257, 8.514758], [47.340875, 8.5316], [47.419726, 8.533444], [47.407916, 8.544821], [47.386187, 8.548238], [47.377522, 8.529597], [47.391485, 8.486542], [47.406509, 8.583972], [47.404152, 8.563888], [47.38395, 8.545105], [47.351051, 8.576931], [47.3709, 8.526906], [47.367074, 8.523426], [47.357634, 8.554024], [47.351306, 8.560986], [47.367784, 8.539593], [47.393369, 8.49307], [47.372467, 8.542801], [47.349241, 8.532473], [47.367945, 8.546296], [47.361607, 8.603581], [47.376119, 8.528602], [47.361486, 8.56124], [47.403884, 8.569196], [47.365108, 8.553241], [47.365681, 8.552538], [47.415529, 8.563135], [47.36043, 8.547636], [47.363832, 8.533329], [47.355668, 8.555545], [47.381248, 8.53701], [47.360685, 8.529359], [47.406984, 8.534043], [47.381815, 8.529328], [47.373591, 8.524843], [47.360373, 8.53572], [47.382383, 8.548106], [47.377067, 8.544314], [47.335251, 8.541224], [47.391054, 8.522563], [47.374977, 8.540933], [47.361247, 8.549665], [47.384657, 8.531306], [47.373106, 8.550283], [47.418671, 8.507818], [47.357059, 8.535215], [47.370306, 8.548649], [47.400676, 8.492672], [47.404936, 8.492133], [47.370261, 8.548727], [47.379002, 8.542367], [47.371681, 8.536602], [47.367462, 8.522348], [47.349633, 8.577562], [47.373224, 8.536964], [47.412962, 8.538248], [47.357739, 8.534633], [47.363766, 8.547784], [47.370343, 8.524935], [47.334757, 8.529794], [47.354764, 8.526736], [47.40324, 8.547414], [47.379126, 8.559361], [47.40308, 8.486466], [47.381913, 8.491599], [47.37747, 8.49845], [47.381948, 8.516153], [47.381948, 8.516153], [47.376173, 8.534337], [47.405387, 8.504702], [47.400178, 8.493986], [47.368186, 8.529552], [47.379675, 8.530171], [47.405272, 8.558732], [47.385213, 8.47585], [47.40965, 8.542168], [47.377327, 8.499308], [47.398028, 8.474218], [47.37017, 8.539444], [47.376983, 8.490746], [47.389278, 8.478949], [47.36844, 8.498363], [47.359644, 8.548996], [47.372238, 8.535726], [47.349765, 8.561338], [47.372638, 8.534304], [47.37237, 8.534126], [47.37511, 8.52976], [47.373898, 8.540898], [47.357525, 8.507558], [47.4071, 8.553854], [47.384421, 8.486893], [47.417688, 8.545356], [47.351624, 8.560675], [47.384985, 8.508797], [47.372363, 8.503075], [47.37549, 8.524709], [47.413248, 8.5459], [47.362969, 8.563218], [47.38198, 8.536615], [47.379918, 8.490394], [47.369173, 8.538284], [47.369019, 8.502916], [47.382404, 8.540253], [47.367613, 8.538729], [47.362399, 8.567244], [47.384367, 8.507527], [47.415888, 8.515978], [47.367926, 8.532234], [47.38143, 8.537743], [47.378292, 8.541306], [47.342194, 8.529073], [47.37509, 8.526171], [47.375482, 8.514976], [47.413844, 8.545647], [47.409166, 8.483882], [47.375366, 8.501282], [47.405261, 8.55526], [47.39021, 8.533857], [47.37062, 8.53564], [47.361788, 8.560731], [47.414917, 8.54168], [47.383494, 8.531547], [47.33991, 8.5299], [47.372684, 8.550248], [47.372917, 8.53521], [47.370859, 8.535022], [47.381518, 8.503324], [47.36904, 8.541896], [47.378621, 8.501492], [47.382032, 8.53018], [47.375874, 8.537443], [47.352138, 8.558727], [47.373833, 8.536381], [47.387687, 8.529501], [47.413307, 8.545371], [47.378867, 8.510886], [47.347091, 8.563386], [47.408367, 8.544619], [47.366444, 8.600191], [47.378156, 8.509958], [47.394742, 8.525433], [47.384332, 8.507433], [47.381827, 8.530944], [47.369657, 8.467219], [47.378372, 8.54148], [47.371177, 8.51853], [47.374653, 8.538106], [47.377799, 8.507647], [47.390472, 8.47925], [47.353608, 8.526289], [47.398176, 8.53426], [47.380959, 8.53809], [47.40219, 8.508083], [47.376956, 8.535214], [47.377645, 8.511669], [47.42657, 8.548669], [47.373201, 8.503913], [47.346352, 8.564416], [47.372468, 8.526594], [47.374959, 8.547474], [47.379853, 8.55486], [47.381625, 8.517007], [47.425615, 8.494159], [47.392155, 8.477137], [47.372927, 8.531344], [47.402322, 8.535193], [47.391056, 8.479315], [47.364992, 8.555886], [47.370169, 8.54045], [47.364306, 8.520218], [47.376718, 8.543221], [47.39208, 8.499191], [47.363011, 8.557963], [47.384818, 8.531442], [47.413265, 8.541328], [47.429259, 8.488081], [47.369938, 8.552322], [47.357493, 8.553743], [47.369081, 8.547961], [47.367674, 8.545469], [47.358666, 8.526921], [47.431041, 8.550538], [47.373858, 8.519392], [47.37485, 8.545698], [47.368608, 8.560596], [47.382068, 8.54153], [47.37776, 8.537707], [47.422112, 8.538927], [47.381147, 8.538174], [47.378725, 8.54215], [47.370284, 8.545312], [47.375312, 8.522587], [47.398768, 8.506584], [47.373065, 8.50403], [47.375607, 8.548415], [47.378063, 8.543699], [47.403711, 8.560209], [47.368104, 8.560625], [47.381362, 8.517227], [47.370776, 8.508433], [47.364879, 8.558333], [47.36825, 8.533194], [47.381864, 8.536493], [47.407168, 8.586438], [47.39763, 8.532937], [47.373447, 8.561492], [47.356733, 8.557037], [47.361327, 8.517523], [47.357121, 8.521992], [47.375273, 8.490871], [47.417335, 8.522859], [47.382718, 8.486251], [47.37069, 8.524386], [47.373888, 8.544751], [47.374058, 8.516245], [47.388646, 8.520355], [47.389568, 8.48171], [47.374318, 8.544958], [47.348177, 8.562707], [47.376961, 8.541266], [47.393696, 8.502548], [47.388668, 8.485758], [47.374465, 8.539916], [47.376967, 8.543557], [47.370004, 8.556693], [47.369512, 8.526216], [47.391375, 8.537127], [47.405161, 8.480187], [47.379215, 8.537896], [47.369464, 8.526572], [47.393712, 8.533519], [47.358413, 8.583813], [47.377863, 8.529671], [47.367475, 8.556825], [47.375482, 8.530403], [47.371341, 8.534529], [47.372731, 8.530161], [47.356439, 8.55576], [47.373147, 8.552548], [47.378315, 8.541731], [47.368046, 8.530039], [47.378408, 8.509897], [47.36553, 8.539282], [47.383374, 8.515586], [47.399051, 8.533059], [47.410488, 8.529703], [47.373192, 8.503926], [47.35824, 8.554633], [47.391249, 8.522871], [47.36445, 8.566321], [47.373156, 8.503912], [47.374967, 8.531531], [47.372926, 8.53525], [47.427251, 8.491302], [47.370279, 8.52504], [47.370941, 8.508039], [47.349428, 8.562694], [47.375443, 8.549577], [47.325952, 8.513408], [47.38945, 8.511271], [47.363443, 8.575421], [47.39242, 8.489621], [47.376747, 8.527794], [47.374335, 8.524129], [47.413253, 8.538837], [47.402325, 8.5528], [47.408502, 8.546569], [47.368247, 8.51144], [47.356071, 8.532163], [47.391488, 8.505908], [47.403698, 8.557784], [47.370983, 8.520009], [47.352184, 8.523692], [47.398743, 8.538908], [47.341863, 8.5308], [47.351617, 8.563256], [47.41305, 8.535573], [47.369144, 8.525242], [47.369166, 8.518106], [47.358861, 8.516745], [47.400316, 8.48975], [47.418854, 8.507437], [47.361858, 8.560931], [47.383202, 8.506007], [47.409575, 8.542524], [47.387632, 8.552308], [47.410521, 8.569323], [47.381799, 8.51668], [47.359721, 8.558675], [47.381507, 8.571661], [47.42039, 8.551575], [47.343364, 8.519463], [47.369913, 8.552176], [47.376587, 8.544661], [47.360144, 8.596056], [47.39306, 8.489434], [47.404927, 8.593796], [47.394751, 8.525446], [47.406074, 8.552071], [47.403651, 8.487007], [47.370574, 8.555434], [47.39786, 8.554058], [47.384618, 8.524922], [47.36446, 8.5467], [47.375806, 8.52743], [47.377075, 8.527403], [47.409986, 8.543751], [47.367467, 8.496596], [47.380013, 8.557883], [47.370122, 8.563951], [47.412993, 8.546226], [47.403424, 8.570246], [47.3835, 8.574763], [47.396674, 8.545555], [47.373607, 8.553392], [47.372034, 8.547639], [47.384473, 8.549699], [47.363857, 8.55332], [47.381588, 8.537176], [47.37375, 8.535651], [47.364948, 8.521807], [47.368916, 8.501391], [47.38536, 8.528274], [47.366046, 8.560383], [47.35932, 8.522513], [47.366392, 8.541272], [47.392283, 8.506467], [47.38879, 8.530821], [47.368235, 8.546103], [47.400735, 8.592936], [47.409599, 8.54377], [47.411991, 8.546642], [47.414035, 8.545426], [47.386595, 8.541293], [47.415344, 8.4791], [47.382076, 8.529333], [47.391634, 8.513474], [47.399078, 8.535828], [47.409269, 8.543445], [47.395811, 8.506312], [47.366903, 8.544288], [47.396069, 8.526798], [47.419189, 8.505323], [47.372638, 8.534278], [47.399733, 8.586039], [47.412095, 8.517545], [47.38595, 8.480884], [47.376092, 8.540956], [47.391316, 8.536741], [47.382879, 8.529111], [47.368879, 8.53988], [47.406451, 8.587959], [47.352447, 8.55925], [47.379645, 8.519007], [47.403834, 8.576985], [47.385512, 8.520794], [47.414185, 8.546674], [47.40858, 8.531744], [47.382473, 8.487398], [47.380007, 8.520709], [47.399088, 8.480386], [47.379511, 8.516991], [47.419731, 8.548062], [47.408295, 8.577054], [47.365083, 8.534268], [47.384124, 8.541997], [47.383261, 8.540045], [47.373979, 8.544594], [47.379059, 8.528768], [47.398282, 8.537256], [47.359117, 8.524018], [47.381222, 8.503266], [47.364097, 8.54607], [47.360609, 8.557092], [47.36499, 8.508621], [47.349246, 8.562849], [47.378804, 8.531014], [47.371141, 8.51845], [47.376704, 8.524787], [47.371206, 8.542987], [47.371187, 8.524105], [47.384166, 8.527045], [47.382897, 8.529072], [47.357917, 8.520486], [47.406874, 8.574307], [47.374584, 8.525459], [47.388404, 8.486031], [47.370971, 8.546862], [47.427354, 8.552343], [47.369454, 8.526665], [47.389463, 8.521524], [47.374759, 8.539234], [47.370088, 8.525274], [47.376081, 8.535514], [47.363819, 8.535632], [47.37163, 8.547604], [47.410638, 8.544242], [47.370957, 8.531343], [47.429827, 8.486965], [47.392514, 8.491159], [47.36887, 8.53988], [47.385845, 8.498418], [47.386796, 8.547496], [47.36787, 8.56062], [47.390657, 8.489573], [47.363443, 8.546785], [47.377474, 8.485221], [47.427652, 8.54653], [47.405233, 8.481129], [47.364597, 8.554925], [47.376638, 8.52701], [47.391148, 8.523094], [47.397005, 8.530606], [47.370301, 8.491528], [47.399084, 8.533298], [47.375994, 8.541802], [47.371383, 8.515661], [47.375712, 8.53736], [47.372728, 8.518032], [47.429937, 8.539022], [47.37153, 8.536373], [47.389565, 8.540149], [47.345085, 8.529635], [47.38307, 8.530717], [47.406834, 8.481147], [47.408918, 8.548128], [47.378137, 8.526352], [47.377069, 8.544168], [47.368751, 8.552324], [47.424354, 8.553672], [47.430034, 8.549589], [47.377367, 8.539327], [47.382221, 8.515801], [47.373058, 8.536511], [47.401363, 8.504066], [47.414332, 8.541695], [47.414886, 8.541176], [47.365491, 8.531946], [47.378984, 8.54238], [47.364728, 8.530832], [47.408954, 8.550077], [47.409567, 8.537634], [47.40932, 8.572531], [47.37873, 8.542534], [47.419887, 8.547761], [47.355504, 8.556601], [47.380457, 8.525525], [47.375528, 8.548162], [47.377475, 8.526021], [47.382085, 8.529346], [47.402477, 8.546391], [47.37385, 8.536501], [47.387935, 8.539413], [47.361187, 8.563379], [47.379687, 8.529854], [47.369144, 8.525229], [47.370252, 8.525026], [47.361892, 8.560243], [47.37152, 8.526985], [47.335467, 8.519382], [47.381534, 8.54189], [47.371716, 8.536695], [47.37119, 8.523854], [47.369705, 8.508464], [47.370931, 8.548278], [47.37079, 8.546977], [47.362831, 8.548731], [47.401196, 8.534428], [47.399502, 8.495179], [47.36907, 8.528286], [47.375122, 8.518902], [47.369709, 8.467379], [47.425516, 8.515643], [47.373231, 8.531549], [47.378509, 8.540331], [47.348435, 8.534005], [47.371227, 8.528436], [47.361502, 8.561479], [47.392487, 8.491119], [47.403035, 8.580532], [47.384586, 8.509147], [47.376224, 8.537529], [47.402761, 8.577267], [47.394063, 8.544839], [47.402905, 8.550467], [47.361032, 8.553301], [47.409346, 8.544758], [47.372634, 8.494209], [47.367125, 8.539884], [47.360167, 8.579323], [47.357044, 8.590362], [47.370152, 8.548804], [47.405703, 8.535395], [47.417153, 8.523081], [47.363413, 8.534882], [47.392745, 8.522557], [47.366918, 8.492613], [47.380747, 8.525253], [47.370733, 8.515966], [47.402342, 8.499316], [47.375294, 8.540649], [47.356677, 8.535617], [47.36828, 8.524324], [47.388498, 8.470656], [47.371143, 8.529798], [47.377548, 8.528764], [47.37405, 8.544767], [47.405975, 8.548292], [47.370672, 8.530132], [47.374453, 8.541148], [47.367983, 8.540444], [47.420041, 8.509449], [47.380347, 8.487807], [47.391429, 8.52571], [47.371818, 8.541993], [47.370822, 8.515041], [47.405716, 8.585015], [47.377924, 8.528016], [47.40277, 8.501735], [47.404412, 8.572215], [47.427404, 8.546207], [47.385209, 8.507915], [47.404307, 8.580096], [47.377726, 8.527059], [47.387595, 8.49783], [47.373518, 8.534521], [47.3792, 8.53861], [47.368496, 8.499132], [47.370952, 8.536639], [47.376689, 8.540571], [47.338049, 8.528883], [47.359069, 8.526175], [47.399535, 8.497471], [47.371945, 8.547504], [47.414044, 8.556637], [47.403103, 8.555148], [47.409347, 8.5466], [47.335126, 8.519269], [47.36535, 8.531639], [47.368863, 8.514816], [47.375227, 8.515315], [47.395213, 8.484125], [47.378154, 8.532166], [47.371615, 8.515918], [47.369266, 8.525642], [47.377068, 8.583896], [47.357321, 8.58874], [47.393275, 8.530278], [47.404608, 8.557591], [47.3613, 8.532827], [47.357462, 8.521099], [47.409615, 8.576433], [47.419643, 8.504842], [47.331698, 8.516421], [47.378921, 8.542379], [47.37214, 8.556221], [47.367495, 8.537853], [47.388805, 8.49543], [47.366859, 8.543268], [47.402364, 8.579193], [47.367336, 8.535625], [47.40387, 8.568745], [47.364559, 8.566217], [47.404832, 8.483691], [47.370981, 8.535422], [47.369339, 8.525497], [47.393364, 8.494514], [47.413705, 8.552667], [47.402281, 8.552746], [47.359472, 8.522556], [47.372582, 8.534515], [47.411442, 8.54667], [47.391829, 8.518512], [47.393399, 8.500515], [47.392068, 8.500515], [47.386082, 8.504899], [47.340922, 8.52464], [47.416102, 8.552227], [47.418552, 8.547203], [47.376209, 8.536231], [47.369562, 8.548435], [47.364586, 8.566231], [47.373162, 8.551952], [47.359089, 8.525077], [47.36729, 8.544309], [47.353456, 8.576638], [47.368948, 8.532613], [47.418112, 8.554549], [47.365949, 8.532048], [47.374489, 8.540248], [47.381843, 8.531143], [47.414422, 8.483561], [47.369444, 8.52681], [47.409847, 8.545087], [47.377211, 8.523446], [47.356876, 8.522212], [47.374465, 8.495623], [47.400316, 8.543723], [47.377707, 8.51179], [47.381616, 8.530423], [47.386846, 8.51853], [47.373581, 8.54489], [47.373642, 8.575639], [47.387827, 8.527106], [47.37017, 8.518404], [47.378091, 8.497469], [47.390172, 8.511021], [47.399512, 8.517435], [47.414102, 8.550661], [47.362195, 8.5475], [47.387636, 8.488387], [47.396094, 8.52705], [47.374386, 8.521654], [47.366527, 8.545022], [47.398279, 8.537534], [47.409556, 8.572298], [47.372376, 8.540138], [47.426148, 8.554266], [47.385616, 8.482997], [47.3751, 8.540221], [47.358544, 8.517944], [47.378272, 8.527348], [47.392378, 8.516615], [47.423541, 8.554093], [47.366474, 8.547775], [47.397937, 8.506938], [47.390046, 8.491534], [47.378216, 8.541768], [47.378164, 8.493392], [47.366954, 8.544581], [47.374078, 8.540835], [47.379434, 8.525266], [47.387981, 8.491003], [47.370438, 8.526341], [47.39104, 8.47803], [47.36452, 8.532879], [47.387265, 8.518949], [47.377294, 8.535592], [47.370336, 8.507365], [47.387234, 8.500909], [47.358818, 8.533729], [47.379012, 8.483251], [47.372716, 8.538424], [47.360882, 8.517011], [47.388579, 8.525612], [47.365229, 8.533993], [47.374695, 8.549667], [47.362438, 8.547505], [47.404373, 8.573433], [47.370796, 8.546395], [47.418654, 8.507738], [47.367534, 8.541322], [47.416991, 8.538238], [47.382914, 8.500227], [47.381976, 8.505373], [47.363344, 8.548676], [47.404541, 8.484136], [47.427422, 8.546155], [47.362659, 8.549681], [47.393511, 8.512757], [47.357747, 8.554503], [47.359455, 8.592996], [47.381948, 8.516179], [47.353402, 8.572017], [47.383131, 8.531964], [47.376979, 8.542259], [47.37052, 8.558147], [47.386592, 8.525452], [47.382377, 8.514466], [47.40537, 8.578158], [47.378777, 8.542363], [47.370225, 8.532652], [47.384894, 8.495141], [47.37751, 8.50976], [47.402446, 8.535434], [47.356427, 8.573643], [47.366451, 8.551984], [47.370134, 8.548831], [47.384293, 8.526994], [47.376946, 8.527732], [47.37788, 8.531671], [47.408371, 8.54703], [47.352383, 8.510155], [47.333271, 8.529949], [47.419904, 8.554387], [47.380395, 8.548157], [47.36652, 8.544836], [47.393469, 8.526824], [47.389915, 8.487041], [47.360912, 8.513874], [47.374454, 8.540075], [47.388189, 8.480994], [47.386221, 8.518054], [47.367657, 8.578689], [47.425834, 8.493779], [47.377698, 8.544221], [47.369973, 8.552429], [47.39348, 8.529566], [47.377011, 8.527468], [47.366113, 8.533773], [47.384163, 8.497444], [47.413855, 8.545488], [47.392183, 8.495881], [47.412204, 8.524159], [47.375737, 8.488325], [47.407072, 8.55396], [47.369473, 8.528426], [47.354855, 8.556825], [47.376357, 8.521496], [47.366533, 8.556594], [47.400505, 8.543753], [47.370534, 8.514161], [47.425257, 8.510601], [47.359148, 8.521636], [47.379793, 8.506958], [47.400008, 8.494884], [47.37384, 8.50288], [47.377769, 8.537747], [47.37937, 8.537713], [47.38304, 8.548053], [47.402017, 8.499548], [47.375838, 8.518307], [47.38671, 8.528196], [47.399815, 8.587776], [47.399828, 8.504763], [47.370958, 8.53129], [47.373878, 8.54103], [47.410087, 8.544429], [47.380209, 8.513562], [47.354153, 8.511342], [47.385428, 8.508555], [47.377013, 8.539625], [47.416467, 8.546059], [47.371765, 8.54754], [47.373113, 8.535439], [47.387191, 8.51912], [47.386862, 8.535007], [47.370114, 8.518641], [47.353459, 8.576333], [47.391765, 8.485448], [47.419852, 8.482873], [47.380487, 8.493146], [47.370717, 8.516707], [47.391898, 8.515029], [47.38977, 8.511675], [47.370015, 8.543333], [47.370281, 8.532494], [47.357135, 8.507894], [47.339628, 8.53786], [47.373378, 8.530254], [47.366315, 8.533327], [47.400169, 8.50383], [47.377134, 8.54013], [47.353317, 8.576132], [47.386202, 8.518146], [47.364577, 8.566231], [47.375201, 8.522942], [47.369363, 8.525816], [47.369292, 8.525682], [47.363613, 8.547808], [47.369819, 8.556292], [47.356263, 8.523272], [47.371438, 8.547918], [47.388167, 8.491364], [47.347367, 8.532766], [47.41236, 8.523858], [47.361344, 8.550819], [47.392442, 8.502854], [47.378793, 8.531226], [47.378784, 8.531239], [47.375052, 8.518635], [47.403933, 8.534153], [47.376744, 8.543327], [47.38362, 8.539112], [47.377765, 8.531496], [47.385877, 8.542112], [47.373035, 8.475759], [47.378601, 8.509437], [47.428781, 8.545175], [47.376402, 8.52821], [47.375663, 8.543503], [47.3524, 8.534166], [47.364081, 8.528912], [47.411318, 8.570586], [47.360927, 8.520918], [47.364843, 8.56666], [47.403468, 8.584013], [47.417239, 8.544392], [47.385203, 8.54386], [47.380128, 8.527969], [47.412244, 8.554929], [47.386943, 8.490479], [47.398645, 8.533156], [47.367208, 8.559282], [47.359362, 8.586136], [47.354391, 8.531017], [47.336456, 8.51751], [47.377354, 8.539685], [47.3818, 8.516627], [47.349672, 8.561561], [47.379056, 8.542368], [47.382431, 8.537419], [47.370488, 8.518093], [47.363547, 8.546297], [47.361829, 8.560202], [47.363388, 8.520319], [47.37982, 8.536796], [47.391012, 8.521237], [47.418261, 8.5466], [47.369895, 8.556757], [47.352952, 8.572113], [47.366577, 8.540799], [47.412124, 8.55062], [47.378482, 8.527048], [47.381236, 8.537315], [47.371536, 8.518591], [47.38568, 8.521076], [47.390428, 8.525014], [47.357766, 8.534647], [47.419819, 8.500366], [47.414632, 8.520379], [47.405211, 8.593245], [47.398525, 8.494828], [47.359797, 8.532028], [47.363903, 8.547576], [47.378776, 8.496317], [47.36745, 8.489565], [47.384511, 8.538137], [47.386036, 8.493256], [47.349818, 8.561339], [47.386985, 8.516215], [47.359788, 8.594764], [47.353865, 8.512329], [47.359242, 8.535511], [47.39442, 8.519518], [47.390497, 8.491344], [47.357526, 8.571655], [47.370703, 8.517263], [47.37503, 8.545688], [47.335067, 8.526493], [47.405626, 8.549994], [47.359095, 8.50702], [47.370161, 8.548818], [47.370975, 8.53133], [47.419579, 8.502044], [47.381867, 8.547525], [47.374668, 8.52411], [47.366321, 8.544925], [47.365565, 8.539349], [47.377771, 8.521313], [47.364685, 8.537305], [47.370143, 8.548804], [47.385093, 8.530865], [47.377883, 8.511264], [47.370169, 8.532889], [47.375805, 8.539931], [47.353382, 8.576835], [47.400286, 8.591032], [47.362189, 8.597543], [47.366917, 8.492746], [47.371057, 8.521666], [47.374677, 8.549667], [47.370652, 8.524611], [47.40414, 8.562245], [47.349905, 8.566357], [47.398849, 8.47185], [47.378578, 8.541498], [47.379434, 8.483352], [47.421281, 8.511594], [47.372564, 8.534501], [47.378797, 8.528908], [47.394309, 8.536008], [47.377843, 8.513541], [47.377641, 8.498427], [47.376758, 8.559642], [47.390337, 8.525197], [47.392458, 8.523386], [47.382332, 8.488084], [47.378114, 8.510593], [47.387253, 8.50079], [47.364335, 8.533418], [47.366155, 8.540632], [47.367578, 8.535749], [47.367076, 8.53656], [47.379797, 8.526797], [47.370391, 8.518806], [47.374468, 8.546114], [47.39089, 8.521831], [47.373416, 8.534823], [47.413624, 8.477304], [47.406844, 8.550576], [47.357602, 8.521538], [47.352695, 8.572545], [47.377544, 8.504093], [47.380387, 8.547998], [47.401585, 8.553977], [47.397011, 8.480292], [47.362752, 8.519114], [47.372728, 8.542794], [47.377895, 8.50794], [47.383327, 8.543437], [47.410395, 8.542316], [47.375959, 8.536001], [47.366375, 8.544926], [47.409517, 8.549532], [47.394339, 8.493182], [47.393338, 8.4945], [47.403527, 8.588916], [47.382887, 8.530091], [47.379131, 8.544833], [47.363901, 8.531702], [47.376551, 8.525684], [47.371934, 8.522147], [47.379331, 8.527542], [47.416803, 8.568078], [47.381603, 8.515471], [47.404499, 8.580776], [47.378607, 8.505888], [47.380292, 8.512411], [47.363255, 8.533489], [47.377602, 8.542021], [47.382265, 8.512067], [47.414772, 8.552995], [47.426141, 8.544683], [47.364588, 8.508295], [47.383763, 8.532652], [47.353573, 8.554469], [47.384077, 8.489072], [47.353619, 8.554364], [47.373023, 8.534471], [47.425615, 8.494172], [47.383347, 8.515598], [47.382887, 8.531124], [47.39197, 8.517905], [47.376467, 8.514572], [47.420987, 8.50251], [47.390994, 8.488135], [47.378706, 8.528059], [47.37845, 8.510189], [47.395848, 8.532132], [47.366481, 8.553587], [47.395632, 8.536843], [47.388976, 8.515831], [47.393562, 8.472688], [47.372302, 8.494123], [47.402974, 8.576675], [47.37422, 8.524961], [47.380671, 8.502526], [47.380653, 8.502513], [47.366429, 8.547721], [47.379782, 8.527419], [47.390189, 8.543619], [47.39365, 8.472928], [47.380474, 8.519831], [47.380808, 8.528301], [47.414204, 8.546635], [47.36718, 8.539753], [47.429948, 8.538757], [47.419097, 8.506448], [47.372535, 8.535639], [47.372763, 8.534412], [47.392028, 8.541273], [47.410595, 8.550601], [47.398837, 8.54038], [47.378504, 8.528505], [47.373073, 8.574925], [47.360122, 8.547894], [47.361973, 8.560231], [47.389485, 8.540108], [47.371501, 8.521291], [47.400461, 8.503345], [47.375595, 8.528909], [47.377739, 8.537984], [47.381763, 8.516732], [47.374538, 8.540686], [47.373789, 8.544736], [47.373373, 8.519356], [47.425682, 8.497567], [47.421327, 8.54958], [47.359341, 8.592755], [47.379375, 8.511373], [47.385974, 8.535677], [47.366914, 8.54311], [47.374452, 8.540327], [47.394516, 8.589596], [47.426067, 8.554225], [47.430933, 8.539228], [47.359742, 8.522509], [47.365964, 8.53234], [47.375713, 8.481002], [47.368263, 8.495129], [47.416507, 8.514188], [47.345111, 8.534519], [47.357411, 8.527452], [47.378797, 8.544071], [47.365629, 8.549544], [47.401265, 8.545174], [47.403191, 8.486203], [47.367261, 8.545395], [47.368061, 8.546378], [47.38057, 8.500763], [47.364323, 8.536596], [47.34331, 8.519475], [47.376603, 8.54486], [47.366322, 8.565354], [47.371208, 8.531401], [47.368912, 8.533526], [47.396729, 8.529289], [47.357634, 8.554011], [47.369099, 8.547935], [47.387931, 8.486645], [47.3666, 8.541157], [47.36174, 8.52247], [47.369764, 8.533808], [47.414769, 8.519229], [47.368011, 8.533772], [47.361383, 8.602517], [47.365054, 8.538252], [47.411689, 8.545311], [47.393776, 8.487833], [47.364559, 8.566217], [47.399229, 8.542667], [47.377666, 8.509432], [47.406826, 8.550563], [47.411507, 8.525616], [47.372903, 8.555522], [47.378975, 8.542327], [47.396732, 8.486222], [47.402999, 8.486477], [47.373886, 8.513514], [47.377972, 8.526746], [47.365732, 8.557517], [47.391625, 8.514375], [47.364544, 8.508242], [47.365254, 8.545485], [47.363067, 8.535299], [47.377131, 8.533814], [47.403846, 8.56844], [47.387233, 8.488273], [47.386271, 8.521353], [47.359437, 8.521509], [47.390509, 8.527916], [47.387298, 8.485056], [47.365227, 8.545538], [47.385994, 8.542009], [47.363313, 8.55744], [47.361658, 8.573993], [47.405802, 8.590794], [47.374389, 8.526991], [47.36996, 8.549079], [47.351196, 8.576815], [47.369732, 8.540097], [47.369123, 8.541607], [47.376529, 8.527101], [47.375799, 8.545201], [47.393405, 8.500926], [47.400304, 8.590105], [47.409158, 8.547511], [47.367233, 8.541766], [47.347753, 8.52433], [47.384895, 8.531841], [47.399321, 8.542404], [47.383912, 8.529265], [47.377142, 8.540237], [47.374968, 8.547461], [47.375812, 8.495861], [47.375821, 8.495848], [47.392216, 8.524295], [47.362683, 8.548172], [47.362174, 8.550558], [47.372228, 8.537712], [47.374034, 8.544555], [47.37869, 8.54203], [47.380644, 8.525728], [47.364388, 8.555132], [47.38812, 8.519827], [47.391437, 8.513351], [47.369748, 8.520289], [47.380756, 8.512752], [47.394899, 8.490915], [47.355404, 8.503438], [47.356748, 8.506986], [47.419152, 8.506409], [47.374992, 8.52605], [47.36482, 8.525829], [47.372662, 8.532729], [47.35555, 8.512006], [47.386979, 8.534956], [47.365227, 8.545538], [47.36855, 8.563706], [47.412786, 8.543425], [47.390832, 8.5222], [47.373465, 8.542835], [47.333931, 8.515262], [47.39391, 8.505665], [47.374542, 8.549743], [47.378537, 8.541126], [47.370714, 8.535205], [47.365618, 8.539482], [47.384414, 8.531367], [47.404144, 8.564697], [47.384446, 8.547831], [47.426159, 8.50146], [47.386309, 8.531671], [47.376822, 8.535105], [47.371993, 8.489469], [47.391652, 8.477989], [47.39804, 8.532455], [47.366945, 8.536146], [47.370347, 8.513959], [47.391036, 8.489448], [47.388817, 8.527961], [47.413158, 8.509668], [47.376711, 8.534494], [47.353646, 8.554325], [47.378384, 8.496839], [47.35147, 8.560831], [47.388334, 8.53815], [47.367147, 8.506904], [47.370555, 8.508931], [47.383472, 8.573094], [47.413293, 8.509658], [47.362079, 8.516943], [47.389702, 8.471739], [47.385023, 8.485011], [47.395847, 8.506287], [47.386513, 8.529093], [47.373523, 8.512911], [47.369148, 8.532365], [47.389554, 8.546069], [47.35745, 8.521403], [47.357276, 8.521757], [47.379065, 8.508838], [47.409483, 8.53803], [47.397856, 8.481249], [47.387117, 8.545939], [47.372276, 8.540255], [47.374997, 8.523574], [47.365906, 8.556263], [47.383258, 8.484222], [47.40828, 8.506112], [47.360322, 8.573594], [47.359449, 8.507623], [47.375323, 8.485377], [47.369293, 8.540776], [47.369899, 8.529097], [47.362037, 8.597474], [47.400221, 8.494226], [47.372132, 8.513492], [47.419578, 8.548046], [47.402405, 8.487512], [47.378993, 8.542367], [47.372935, 8.475849], [47.37098, 8.546849], [47.381175, 8.491677], [47.40512, 8.559537], [47.422794, 8.49963], [47.392221, 8.517023], [47.373665, 8.553896], [47.369062, 8.525267], [47.404964, 8.549662], [47.372714, 8.519608], [47.366565, 8.541077], [47.369074, 8.527822], [47.417977, 8.559211], [47.364906, 8.531021], [47.37639, 8.537069], [47.36562, 8.549584], [47.398624, 8.494804], [47.372805, 8.532785], [47.381174, 8.538174], [47.380934, 8.512967], [47.388656, 8.482116], [47.386201, 8.518212], [47.369469, 8.529856], [47.369969, 8.531243], [47.334553, 8.539026], [47.402676, 8.49238], [47.404965, 8.594499], [47.382564, 8.514656], [47.358481, 8.517982], [47.369116, 8.528207], [47.422613, 8.510508], [47.371361, 8.527631], [47.354747, 8.514174], [47.375657, 8.516555], [47.378836, 8.532339], [47.364825, 8.566633], [47.396967, 8.545972], [47.389152, 8.543836], [47.385566, 8.548278], [47.369182, 8.527877], [47.367808, 8.541818], [47.372921, 8.551762], [47.390732, 8.508794], [47.395552, 8.532099], [47.355084, 8.5619], [47.330175, 8.512898], [47.385979, 8.51789], [47.364786, 8.547395], [47.368716, 8.540936], [47.337983, 8.538634], [47.385712, 8.47439], [47.357419, 8.559553], [47.37693, 8.537001], [47.370463, 8.52462], [47.408895, 8.545862], [47.382278, 8.54025], [47.364975, 8.531379], [47.381808, 8.513793], [47.399335, 8.521923], [47.407535, 8.546072], [47.367817, 8.560487], [47.371575, 8.526867], [47.417924, 8.541398], [47.391583, 8.487604], [47.373895, 8.538302], [47.334499, 8.538999], [47.343822, 8.51087], [47.371346, 8.546261], [47.355204, 8.530623], [47.389926, 8.512288], [47.412804, 8.522515], [47.417171, 8.544908], [47.387616, 8.500479], [47.391123, 8.522855], [47.375266, 8.560365], [47.394758, 8.525619], [47.351875, 8.55982], [47.36672, 8.541782], [47.360227, 8.534049], [47.376787, 8.540653], [47.373894, 8.536607], [47.376796, 8.540653], [47.413983, 8.561088], [47.367967, 8.535558], [47.404611, 8.560149], [47.383877, 8.542349], [47.357582, 8.52167], [47.366309, 8.540595], [47.391014, 8.515303], [47.381055, 8.492019], [47.354841, 8.523415], [47.372008, 8.529577], [47.372737, 8.537113], [47.368669, 8.528873], [47.357528, 8.521669], [47.424284, 8.543187], [47.381899, 8.528998], [47.414593, 8.551056], [47.394596, 8.486709], [47.369023, 8.537977], [47.335584, 8.519384], [47.387135, 8.494112], [47.398267, 8.473587], [47.363765, 8.551677], [47.344456, 8.530496], [47.379913, 8.556133], [47.404066, 8.534407], [47.376949, 8.543517], [47.391517, 8.513419], [47.353697, 8.558442], [47.349479, 8.536819], [47.405256, 8.557632], [47.387206, 8.554498], [47.364894, 8.519899], [47.408312, 8.584461], [47.363449, 8.55735], [47.379703, 8.515763], [47.385968, 8.518141], [47.377904, 8.548092], [47.378047, 8.548121], [47.373821, 8.531892], [47.411318, 8.570612], [47.405221, 8.559353], [47.377583, 8.543106], [47.383308, 8.543596], [47.369675, 8.529953], [47.402137, 8.495218], [47.341291, 8.524714], [47.359591, 8.522386], [47.414333, 8.551872], [47.354498, 8.523474], [47.370704, 8.549359], [47.387474, 8.48751], [47.389081, 8.494734], [47.363638, 8.566595], [47.37874, 8.519637], [47.3896, 8.521222], [47.372964, 8.520712], [47.359122, 8.507087], [47.37918, 8.529313], [47.349637, 8.561534], [47.376693, 8.526866], [47.420287, 8.509122], [47.370676, 8.537256], [47.387523, 8.518305], [47.364612, 8.537369], [47.37395, 8.544818], [47.39391, 8.505625], [47.403686, 8.539421], [47.388225, 8.520161], [47.412018, 8.546643], [47.377095, 8.529072], [47.392449, 8.52434], [47.393378, 8.499932], [47.393404, 8.500065], [47.353647, 8.524119], [47.35881, 8.557133], [47.387357, 8.514858], [47.376758, 8.528615], [47.410686, 8.571778], [47.346632, 8.528714], [47.334904, 8.518047], [47.394847, 8.525753], [47.390414, 8.510152], [47.372533, 8.478582], [47.419762, 8.504619], [47.343818, 8.535194], [47.375497, 8.526828], [47.394664, 8.518371], [47.421521, 8.499207], [47.378516, 8.541404], [47.362098, 8.547233], [47.369072, 8.541381], [47.390959, 8.522084], [47.402246, 8.486277], [47.365101, 8.534229], [47.359398, 8.553068], [47.375329, 8.516019], [47.3788, 8.509375], [47.337921, 8.530071], [47.362488, 8.522273], [47.342552, 8.531158], [47.374911, 8.532656], [47.362551, 8.548752], [47.417188, 8.544007], [47.398291, 8.532473], [47.361281, 8.55087], [47.383208, 8.543673], [47.37026, 8.548833], [47.368886, 8.535379], [47.366976, 8.518512], [47.370187, 8.548911], [47.35949, 8.568559], [47.379291, 8.515596], [47.387145, 8.473027], [47.352022, 8.525634], [47.362602, 8.520713], [47.353564, 8.554482], [47.35316, 8.525168], [47.399062, 8.542293], [47.407189, 8.586146], [47.383877, 8.527238], [47.382163, 8.508516], [47.39208, 8.499217], [47.350557, 8.578733], [47.384544, 8.493147], [47.414064, 8.529166], [47.361464, 8.549577], [47.386256, 8.480916], [47.401576, 8.531415], [47.368973, 8.540438], [47.368825, 8.535113], [47.409234, 8.547101], [47.402342, 8.499316], [47.413807, 8.571831], [47.364402, 8.546209], [47.396325, 8.543455], [47.393096, 8.513848], [47.387672, 8.517699], [47.389104, 8.517543], [47.397491, 8.532431], [47.415041, 8.52093], [47.358186, 8.554618], [47.383051, 8.500018], [47.372224, 8.515188], [47.402307, 8.499315], [47.333519, 8.518906], [47.413627, 8.481028], [47.385021, 8.495024], [47.429927, 8.538187], [47.383167, 8.532838], [47.404871, 8.576782], [47.375149, 8.491571], [47.363431, 8.548042], [47.364882, 8.530782], [47.362159, 8.547513], [47.366416, 8.54821], [47.40871, 8.546402], [47.381224, 8.537646], [47.371734, 8.519508], [47.410572, 8.550177], [47.4226, 8.511939], [47.397778, 8.533483], [47.37674, 8.559655], [47.349612, 8.561335], [47.337064, 8.519811], [47.402809, 8.498477], [47.36415, 8.563004], [47.420147, 8.554406], [47.410909, 8.561792], [47.367976, 8.524106], [47.380417, 8.517327], [47.382203, 8.545347], [47.404093, 8.564338], [47.390836, 8.478741], [47.369868, 8.556783], [47.363244, 8.55344], [47.385378, 8.529281], [47.360422, 8.550416], [47.370561, 8.54929], [47.360032, 8.550672], [47.405162, 8.559908], [47.352368, 8.573848], [47.362173, 8.550677], [47.388271, 8.520082], [47.380444, 8.534451], [47.348359, 8.562526], [47.377674, 8.542022], [47.36457, 8.554924], [47.384543, 8.534761], [47.39526, 8.5085], [47.402352, 8.499303], [47.398743, 8.495521], [47.360099, 8.554036], [47.375785, 8.516293], [47.377909, 8.541855], [47.405609, 8.549914], [47.397683, 8.541589], [47.379596, 8.554524], [47.399909, 8.543079], [47.373328, 8.528902], [47.382236, 8.537163], [47.393327, 8.525669], [47.355341, 8.600505], [47.375934, 8.553626], [47.390868, 8.522281], [47.377397, 8.501494], [47.349521, 8.532307], [47.386072, 8.49625], [47.374034, 8.544555], [47.363781, 8.574912], [47.371259, 8.52314], [47.381861, 8.531116], [47.381717, 8.531114], [47.3607, 8.529703], [47.402656, 8.55396], [47.374236, 8.524127], [47.384574, 8.545701], [47.387116, 8.485331], [47.368331, 8.529396], [47.381151, 8.537737], [47.372638, 8.534291], [47.372947, 8.528246], [47.373942, 8.540912], [47.403336, 8.536499], [47.355472, 8.553463], [47.372673, 8.52101], [47.345031, 8.529661], [47.383746, 8.573576], [47.380352, 8.528066], [47.372714, 8.534809], [47.37768, 8.537586], [47.388642, 8.525613], [47.367653, 8.534519], [47.41, 8.543155], [47.398034, 8.535926], [47.417574, 8.513547], [47.405673, 8.585756], [47.401406, 8.485651], [47.402039, 8.499018], [47.3831, 8.57245], [47.387799, 8.53296], [47.389125, 8.494801], [47.424032, 8.550763], [47.361502, 8.525775], [47.36114, 8.535497], [47.402307, 8.55276], [47.342679, 8.531055], [47.375472, 8.541844], [47.373757, 8.515775], [47.33799, 8.537919], [47.405683, 8.492082], [47.377143, 8.535456], [47.36997, 8.520545], [47.340144, 8.529944], [47.412004, 8.52442], [47.385816, 8.5248], [47.378867, 8.531042], [47.380266, 8.527654], [47.366456, 8.547774], [47.387006, 8.53403], [47.374895, 8.501656], [47.366492, 8.517363], [47.372655, 8.534463], [47.370601, 8.529999], [47.375779, 8.530356], [47.388063, 8.490912], [47.352202, 8.558543], [47.347448, 8.532754], [47.366268, 8.548565], [47.4059, 8.533544], [47.388064, 8.537204], [47.396127, 8.544431], [47.33544, 8.519342], [47.39739, 8.520227], [47.38969, 8.537476], [47.363397, 8.535544], [47.374367, 8.521694], [47.353481, 8.53215], [47.422574, 8.507856], [47.398201, 8.516203], [47.419392, 8.547763], [47.377946, 8.541829], [47.369893, 8.552348], [47.360813, 8.509954], [47.377349, 8.498884], [47.386725, 8.547415], [47.391677, 8.519409], [47.418862, 8.530643], [47.405564, 8.549966], [47.410694, 8.571871], [47.377109, 8.54838], [47.382121, 8.475591], [47.365028, 8.548407], [47.386289, 8.518413], [47.393301, 8.478683], [47.345223, 8.528341], [47.40806, 8.572597], [47.386487, 8.518404], [47.366877, 8.541401], [47.365141, 8.530906], [47.365692, 8.549519], [47.374455, 8.539996], [47.410408, 8.53622], [47.374167, 8.540917], [47.380881, 8.512873], [47.364687, 8.547433], [47.367227, 8.539595], [47.370952, 8.52324], [47.385863, 8.485597], [47.376776, 8.559603], [47.360169, 8.54771], [47.358193, 8.55209], [47.411957, 8.517939], [47.378335, 8.557464], [47.425473, 8.542098], [47.40459, 8.486615], [47.353356, 8.511882], [47.405155, 8.478809], [47.401175, 8.593025], [47.377856, 8.526664], [47.370188, 8.548805], [47.367863, 8.539859], [47.348513, 8.534298], [47.371443, 8.550182], [47.408963, 8.550064], [47.366246, 8.527275], [47.370533, 8.524833], [47.370981, 8.493898], [47.383211, 8.506034], [47.389213, 8.544089], [47.376939, 8.535147], [47.412095, 8.517531], [47.373339, 8.531538], [47.378279, 8.577896], [47.387709, 8.532971], [47.380726, 8.533186], [47.394715, 8.525459], [47.41627, 8.544134], [47.397907, 8.534148], [47.373617, 8.536377], [47.368735, 8.52473], [47.364552, 8.558631], [47.37916, 8.542808], [47.402115, 8.535241], [47.357915, 8.52169], [47.41217, 8.550422], [47.393264, 8.49373], [47.396575, 8.538002], [47.36187, 8.547599], [47.37537, 8.557984], [47.425266, 8.55336], [47.380699, 8.518856], [47.357091, 8.552544], [47.370209, 8.495724], [47.386185, 8.51808], [47.372562, 8.517565], [47.37276, 8.53383], [47.39222, 8.517169], [47.411163, 8.570834], [47.377769, 8.53772], [47.392405, 8.491263], [47.402744, 8.554161], [47.350029, 8.52427], [47.378853, 8.568943], [47.343391, 8.535675], [47.380608, 8.512232], [47.378624, 8.559152], [47.402343, 8.552801], [47.368478, 8.544228], [47.36453, 8.55442], [47.381443, 8.534445], [47.419943, 8.503549], [47.379577, 8.527282], [47.378803, 8.519612], [47.359861, 8.549768], [47.404884, 8.572688], [47.339488, 8.527999], [47.406934, 8.550552], [47.380343, 8.528053], [47.380159, 8.541782], [47.405149, 8.481564], [47.382235, 8.509471], [47.368936, 8.529091], [47.37708, 8.543943], [47.374457, 8.541664], [47.358158, 8.548184], [47.425091, 8.5482], [47.407946, 8.583288], [47.393266, 8.530317], [47.362261, 8.559311], [47.358035, 8.519482], [47.410913, 8.563223], [47.362234, 8.54713], [47.37125, 8.507714], [47.388292, 8.497394], [47.379402, 8.523902], [47.400448, 8.595527], [47.377524, 8.538854], [47.356494, 8.510092], [47.363048, 8.546671], [47.382572, 8.546189], [47.368498, 8.53075], [47.334839, 8.530617], [47.370535, 8.513089], [47.37656, 8.541827], [47.377958, 8.548067], [47.354809, 8.556877], [47.409034, 8.545454], [47.359165, 8.532187], [47.366753, 8.549581], [47.360729, 8.54747], [47.383099, 8.543777], [47.384408, 8.53191], [47.372638, 8.534317], [47.366045, 8.532341], [47.370134, 8.548804], [47.379923, 8.541936], [47.374338, 8.525719], [47.383895, 8.542376], [47.364659, 8.537185], [47.369031, 8.540943], [47.373129, 8.528064], [47.391003, 8.521316], [47.378376, 8.541057], [47.379901, 8.511874], [47.388476, 8.491053], [47.366278, 8.544739], [47.360423, 8.526692], [47.375982, 8.524971], [47.359733, 8.535866], [47.393815, 8.547231], [47.36692, 8.544368], [47.409858, 8.549553], [47.375659, 8.537319], [47.36386, 8.53419], [47.348158, 8.562773], [47.404169, 8.574025], [47.364406, 8.552286], [47.357786, 8.550414], [47.382612, 8.48703], [47.393465, 8.483442], [47.374313, 8.542641], [47.378408, 8.50995], [47.386265, 8.518094], [47.394393, 8.541414], [47.389598, 8.521487], [47.394616, 8.521615], [47.362521, 8.518739], [47.392292, 8.511289], [47.373515, 8.598319], [47.411841, 8.53788], [47.391317, 8.537576], [47.41394, 8.519371], [47.403475, 8.497417], [47.387121, 8.542734], [47.377127, 8.541825], [47.366648, 8.547434], [47.387801, 8.544086], [47.366362, 8.55565], [47.378493, 8.514335], [47.375322, 8.48539], [47.376968, 8.543438], [47.425715, 8.494029], [47.369434, 8.52591], [47.368159, 8.541825], [47.398054, 8.534747], [47.403164, 8.540324], [47.381402, 8.535888], [47.390705, 8.522383], [47.368573, 8.541794], [47.37754, 8.511363], [47.37647, 8.483797], [47.384418, 8.500045], [47.37305, 8.495886], [47.416318, 8.50838], [47.367688, 8.495012], [47.404466, 8.559324], [47.389719, 8.511436], [47.363675, 8.563696], [47.369181, 8.527944], [47.40663, 8.545709], [47.364042, 8.531109], [47.387573, 8.497353], [47.351896, 8.50542], [47.39208, 8.499204], [47.41785, 8.556611], [47.370116, 8.54883], [47.395203, 8.540385], [47.361261, 8.521705], [47.360502, 8.524033], [47.393279, 8.521204], [47.364217, 8.556042], [47.400404, 8.500748], [47.358006, 8.525372], [47.40537, 8.503616], [47.394068, 8.493362], [47.36735, 8.519883], [47.388428, 8.526284], [47.408528, 8.546596], [47.367086, 8.540148], [47.402921, 8.491086], [47.378665, 8.539963], [47.371651, 8.534972], [47.353552, 8.55382], [47.367227, 8.559164], [47.395058, 8.522472], [47.366471, 8.541525], [47.388298, 8.536255], [47.373808, 8.536116], [47.367354, 8.507821], [47.377787, 8.522438], [47.398169, 8.585952], [47.397323, 8.531155], [47.419941, 8.506664], [47.372332, 8.542812], [47.399304, 8.495201], [47.389324, 8.520991], [47.338638, 8.538872], [47.365466, 8.546893], [47.418871, 8.530643], [47.359525, 8.548199], [47.378557, 8.575214], [47.392249, 8.516957], [47.365626, 8.539495], [47.369195, 8.525561], [47.370188, 8.548805], [47.388198, 8.536333], [47.38143, 8.537743], [47.369248, 8.525615], [47.362278, 8.547303], [47.357428, 8.521866], [47.367499, 8.552496], [47.388226, 8.473856], [47.3752, 8.518294], [47.353944, 8.526918], [47.353339, 8.55539], [47.394946, 8.486809], [47.326952, 8.518998], [47.372573, 8.534528], [47.391362, 8.537524], [47.393343, 8.539194], [47.366831, 8.54336], [47.370645, 8.532039], [47.406952, 8.550592], [47.352175, 8.525651], [47.357567, 8.555373], [47.374967, 8.560584], [47.361421, 8.52572], [47.364194, 8.554718], [47.373668, 8.553618], [47.368878, 8.539986], [47.383166, 8.506059], [47.364473, 8.53689], [47.410611, 8.544215], [47.375951, 8.541629], [47.387701, 8.53664], [47.377628, 8.522157], [47.343673, 8.535271], [47.373362, 8.534782], [47.362278, 8.547303], [47.393907, 8.50593], [47.335101, 8.518078], [47.382874, 8.540037], [47.360784, 8.548239], [47.376515, 8.543706], [47.370463, 8.510135], [47.387692, 8.53664], [47.360297, 8.566934], [47.385445, 8.536382], [47.37654, 8.548633], [47.389009, 8.488798], [47.385684, 8.519685], [47.380702, 8.525279], [47.404902, 8.585408], [47.420677, 8.503935], [47.392692, 8.486394], [47.348213, 8.562682], [47.410606, 8.568941], [47.386872, 8.502147], [47.380368, 8.549958], [47.385317, 8.536618], [47.36922, 8.518094], [47.371688, 8.5196], [47.384119, 8.531176], [47.369061, 8.528325], [47.366033, 8.521193], [47.376125, 8.535581], [47.366544, 8.545141], [47.427326, 8.552396], [47.387418, 8.484688], [47.383507, 8.495405], [47.393449, 8.512637], [47.373825, 8.544697], [47.416543, 8.553098], [47.391388, 8.538584], [47.396832, 8.529807], [47.377639, 8.543769], [47.376147, 8.541779], [47.396581, 8.528848], [47.39218, 8.517539], [47.378526, 8.50982], [47.385424, 8.500197], [47.384859, 8.531827], [47.408071, 8.494527], [47.338351, 8.532131], [47.376918, 8.524023], [47.384484, 8.538137], [47.4043, 8.54476], [47.341495, 8.518313], [47.388236, 8.551208], [47.379108, 8.538741], [47.355124, 8.561557], [47.343651, 8.519521], [47.370516, 8.493664], [47.373852, 8.517128], [47.376104, 8.512923], [47.378208, 8.525533], [47.37603, 8.559587], [47.369314, 8.528171], [47.379962, 8.547353], [47.360568, 8.567801], [47.397113, 8.530568], [47.377377, 8.498819], [47.376193, 8.544507], [47.405672, 8.489312], [47.38334, 8.515413], [47.34919, 8.56212], [47.368682, 8.501347], [47.370322, 8.548874], [47.391038, 8.522297], [47.359647, 8.547712], [47.380292, 8.512411], [47.369624, 8.532468], [47.385656, 8.501315], [47.377402, 8.479234], [47.370736, 8.524308], [47.37893, 8.523349], [47.374602, 8.514813], [47.422306, 8.550647], [47.393348, 8.525391], [47.372882, 8.53607], [47.361307, 8.533978], [47.378208, 8.530326], [47.361501, 8.560685], [47.378795, 8.542376], [47.364838, 8.532542], [47.352965, 8.57807], [47.404941, 8.552948], [47.378924, 8.526885], [47.392792, 8.52334], [47.361406, 8.533994], [47.406467, 8.583666], [47.379768, 8.528981], [47.376601, 8.521395], [47.373289, 8.533059], [47.368912, 8.500862], [47.427923, 8.490573], [47.378867, 8.544205], [47.368067, 8.560704], [47.370079, 8.548882], [47.381158, 8.536982], [47.370202, 8.558498], [47.380548, 8.519674], [47.381821, 8.533499], [47.389171, 8.515226], [47.364209, 8.555936], [47.410476, 8.53283], [47.367904, 8.495956], [47.368336, 8.522127], [47.373163, 8.532977], [47.371428, 8.546077], [47.394722, 8.540878], [47.348286, 8.562643], [47.35402, 8.559362], [47.357721, 8.534633], [47.359252, 8.535379], [47.412781, 8.51728], [47.371632, 8.472726], [47.326919, 8.517727], [47.358633, 8.555846], [47.341684, 8.530638], [47.390923, 8.523116], [47.377449, 8.500701], [47.367678, 8.495078], [47.392034, 8.517827], [47.388621, 8.481943], [47.415097, 8.510118], [47.386803, 8.489086], [47.380336, 8.536383], [47.391384, 8.537087], [47.426172, 8.554598], [47.377422, 8.541977], [47.397603, 8.586722], [47.398271, 8.537428], [47.370057, 8.564162], [47.369662, 8.525636], [47.375105, 8.516822], [47.367829, 8.546227], [47.394769, 8.52546], [47.372713, 8.517714], [47.379082, 8.522478], [47.381252, 8.51745], [47.357927, 8.519506], [47.371674, 8.535423], [47.376436, 8.529376], [47.37619, 8.529729], [47.360518, 8.549795], [47.350895, 8.53444], [47.404378, 8.550723], [47.414152, 8.518792], [47.373897, 8.544698], [47.370382, 8.518819], [47.41434, 8.572452], [47.41258, 8.525306], [47.369771, 8.543487], [47.422788, 8.535959], [47.365045, 8.531579], [47.359995, 8.522408], [47.382391, 8.548225], [47.364852, 8.56666], [47.377626, 8.522356], [47.37767, 8.519549], [47.378725, 8.527967], [47.38906, 8.517383], [47.373275, 8.535482], [47.385484, 8.530423], [47.378124, 8.527729], [47.381968, 8.529304], [47.362326, 8.553474], [47.358358, 8.583891], [47.36591, 8.532365], [47.421136, 8.50189], [47.397277, 8.50821], [47.371309, 8.546286], [47.392487, 8.491092], [47.368557, 8.524488], [47.37473, 8.543219], [47.390842, 8.522108], [47.383384, 8.548815], [47.378816, 8.559831], [47.394722, 8.540852], [47.382665, 8.575513], [47.378283, 8.541359], [47.37181, 8.540047], [47.375083, 8.553277], [47.374167, 8.54473], [47.40376, 8.548551], [47.377999, 8.529541], [47.378904, 8.530844], [47.379721, 8.51183], [47.370696, 8.537045], [47.371034, 8.518395], [47.369455, 8.526586], [47.374948, 8.541131], [47.386674, 8.473415], [47.37235, 8.545659], [47.356598, 8.552388], [47.368663, 8.552057], [47.371521, 8.519199], [47.373082, 8.532989], [47.367901, 8.49634], [47.388493, 8.486219], [47.373906, 8.544778], [47.408808, 8.546483], [47.378077, 8.483193], [47.377851, 8.507886], [47.376456, 8.509884], [47.384552, 8.503014], [47.370131, 8.539721], [47.372603, 8.53327], [47.346434, 8.564325], [47.386743, 8.519958], [47.40921, 8.544901], [47.366576, 8.545552], [47.378389, 8.54062], [47.405972, 8.590069], [47.376536, 8.534901], [47.378702, 8.543619], [47.350109, 8.56108], [47.39898, 8.54147], [47.384215, 8.528529], [47.357224, 8.508055], [47.382779, 8.531122], [47.382063, 8.536418], [47.347438, 8.532873], [47.355047, 8.523512], [47.376042, 8.565718], [47.341, 8.533601], [47.369108, 8.547949], [47.369809, 8.4932], [47.361802, 8.560228], [47.412722, 8.545425], [47.371444, 8.527368], [47.411682, 8.509784], [47.370714, 8.535205], [47.405851, 8.591312], [47.392781, 8.523485], [47.424729, 8.553031], [47.379128, 8.522413], [47.394171, 8.48996], [47.36951, 8.543535], [47.378, 8.511226], [47.335607, 8.540649], [47.387461, 8.545735], [47.37209, 8.549361], [47.39865, 8.539197], [47.383569, 8.54074], [47.387292, 8.545519], [47.402091, 8.552769], [47.371104, 8.537689], [47.359437, 8.521509], [47.402545, 8.535462], [47.378101, 8.526418], [47.404451, 8.594633], [47.375427, 8.526628], [47.366099, 8.562331], [47.399594, 8.543032], [47.400769, 8.542447], [47.383992, 8.548179], [47.409278, 8.550057], [47.375792, 8.527059], [47.404796, 8.483717], [47.350275, 8.560647], [47.420824, 8.501566], [47.370188, 8.539444], [47.361291, 8.547918], [47.378274, 8.509749], [47.38309, 8.528625], [47.373876, 8.536554], [47.367119, 8.52344], [47.390887, 8.486093], [47.358256, 8.550159], [47.387271, 8.500804], [47.395888, 8.494021], [47.362988, 8.549158], [47.381184, 8.491664], [47.377014, 8.539532], [47.367517, 8.494042], [47.406566, 8.576341], [47.358918, 8.516429], [47.361084, 8.549847], [47.366079, 8.496899], [47.354892, 8.558573], [47.373727, 8.53328], [47.370179, 8.548792], [47.405687, 8.591494], [47.375141, 8.518809], [47.38246, 8.492815], [47.378156, 8.509892], [47.387596, 8.486929], [47.364524, 8.531516], [47.418625, 8.547125], [47.371283, 8.529178], [47.412306, 8.568924], [47.374726, 8.527541], [47.369454, 8.531405], [47.378504, 8.566022], [47.35477, 8.57476], [47.367742, 8.545934], [47.415067, 8.551371], [47.373235, 8.529165], [47.431152, 8.515995], [47.376792, 8.543023], [47.380155, 8.527916], [47.361982, 8.505132], [47.349907, 8.570699], [47.347365, 8.566674], [47.407103, 8.545136], [47.381076, 8.518056], [47.383468, 8.483855], [47.376024, 8.577663], [47.36652, 8.561625], [47.366391, 8.540398], [47.402884, 8.554534], [47.419156, 8.505999], [47.389492, 8.521299], [47.393436, 8.524651], [47.351771, 8.559408], [47.399573, 8.50509], [47.358239, 8.571405], [47.372099, 8.521886], [47.403926, 8.572257], [47.376202, 8.544508], [47.368938, 8.540279], [47.35855, 8.534491], [47.356829, 8.509861], [47.422318, 8.510263], [47.370621, 8.535481], [47.371499, 8.518656], [47.374297, 8.537688], [47.415698, 8.513138], [47.36036, 8.566936], [47.412131, 8.569305], [47.380151, 8.537849], [47.377206, 8.540105], [47.358917, 8.516469], [47.378782, 8.516076], [47.335582, 8.540516], [47.378689, 8.523159], [47.399852, 8.516714], [47.377034, 8.524105], [47.35383, 8.534169], [47.365055, 8.545653], [47.374397, 8.518556], [47.360354, 8.564804], [47.38143, 8.537743], [47.336422, 8.537265], [47.372792, 8.534228], [47.411115, 8.526138], [47.372027, 8.554882], [47.417282, 8.544579], [47.365728, 8.561608], [47.39713, 8.530648], [47.36556, 8.553899], [47.392004, 8.500686], [47.413977, 8.541144], [47.369257, 8.525668], [47.392253, 8.524163], [47.381441, 8.517467], [47.371277, 8.525113], [47.372696, 8.534888], [47.362477, 8.533963], [47.406351, 8.520025], [47.38419, 8.53123], [47.3416, 8.528121], [47.373894, 8.538421], [47.410408, 8.572567], [47.388579, 8.484644], [47.378555, 8.526877], [47.383202, 8.506033], [47.370602, 8.522279], [47.403339, 8.498593], [47.357441, 8.534746], [47.351609, 8.56319], [47.364276, 8.566648], [47.361322, 8.551308], [47.388809, 8.515391], [47.414225, 8.53402], [47.389758, 8.471514], [47.368258, 8.551214], [47.373046, 8.532988], [47.366427, 8.541432], [47.383015, 8.530836], [47.389285, 8.488128], [47.378473, 8.540238], [47.364559, 8.566217], [47.39805, 8.535184], [47.374215, 8.524458], [47.380596, 8.53456], [47.368429, 8.498522], [47.38344, 8.482967], [47.374319, 8.52491], [47.384928, 8.489513], [47.415242, 8.506132], [47.366112, 8.548892], [47.362807, 8.567901], [47.342356, 8.530929], [47.37657, 8.541787], [47.365515, 8.536064], [47.365608, 8.518616], [47.37569, 8.539677], [47.357601, 8.521644], [47.377265, 8.538703], [47.341549, 8.519254], [47.369404, 8.533827], [47.361168, 8.557858], [47.363559, 8.567268], [47.375655, 8.53961], [47.368273, 8.546793], [47.403301, 8.50266], [47.377013, 8.539611], [47.415538, 8.563082], [47.369187, 8.527361], [47.383046, 8.549285], [47.413548, 8.546568], [47.329661, 8.516936], [47.344807, 8.533388], [47.365648, 8.598863], [47.378633, 8.559152], [47.385289, 8.481401], [47.376983, 8.526713], [47.376381, 8.527574], [47.364335, 8.529605], [47.409826, 8.538819], [47.365054, 8.508569], [47.390975, 8.522389], [47.366806, 8.543187], [47.371007, 8.516475], [47.39804, 8.535277], [47.369115, 8.54158], [47.36434, 8.532889], [47.412957, 8.537797], [47.401279, 8.551202], [47.3701, 8.504699], [47.388264, 8.497472], [47.381812, 8.489862], [47.377522, 8.550388], [47.372619, 8.53441], [47.366226, 8.532213], [47.414787, 8.519256], [47.358012, 8.532388], [47.387934, 8.520499], [47.392688, 8.539101], [47.378863, 8.542788], [47.38712, 8.519026], [47.362639, 8.548026], [47.361572, 8.576401], [47.376626, 8.543391], [47.361351, 8.534112], [47.3757, 8.545212], [47.366565, 8.544824], [47.39771, 8.533044], [47.402146, 8.552757], [47.385075, 8.478192], [47.372099, 8.521833], [47.388775, 8.485827], [47.410208, 8.565408], [47.389753, 8.512615], [47.376436, 8.529323], [47.377679, 8.522476], [47.371343, 8.492714], [47.333379, 8.535681], [47.375766, 8.518279], [47.388431, 8.487078], [47.397087, 8.530501], [47.37104, 8.543394], [47.373988, 8.544581], [47.378301, 8.509802], [47.360947, 8.548136], [47.387149, 8.535066], [47.339185, 8.525783], [47.385692, 8.519738], [47.424515, 8.522568], [47.364351, 8.496918], [47.365583, 8.513532], [47.33819, 8.530116], [47.402092, 8.552743], [47.375512, 8.5638], [47.382232, 8.541348], [47.399887, 8.506103], [47.368781, 8.521752], [47.403867, 8.585479], [47.360443, 8.566792], [47.370734, 8.51684], [47.380456, 8.54833], [47.389542, 8.512041], [47.370336, 8.513164], [47.389018, 8.488825], [47.378403, 8.520094], [47.407196, 8.585458], [47.374822, 8.54583], [47.374798, 8.518869], [47.390923, 8.522123], [47.403853, 8.57688], [47.350721, 8.60194], [47.419693, 8.54826], [47.366805, 8.532807], [47.398056, 8.535463], [47.367284, 8.534485], [47.410219, 8.538138], [47.381935, 8.529039], [47.401703, 8.54823], [47.370335, 8.53905], [47.391764, 8.486495], [47.415019, 8.560951], [47.419578, 8.548085], [47.371287, 8.524041], [47.389016, 8.48901], [47.387312, 8.547188], [47.395971, 8.52673], [47.371774, 8.54284], [47.373197, 8.539877], [47.395104, 8.522261], [47.371495, 8.53632], [47.378031, 8.528098], [47.367543, 8.560905], [47.379704, 8.567438], [47.41556, 8.558948], [47.377684, 8.528607], [47.395725, 8.516511], [47.360281, 8.523552], [47.371797, 8.523363], [47.396079, 8.520929], [47.397735, 8.541788], [47.378119, 8.510037], [47.369144, 8.525242], [47.364724, 8.522729], [47.376721, 8.522946], [47.389494, 8.519074], [47.374095, 8.520947], [47.370179, 8.548805], [47.400035, 8.54585], [47.376968, 8.542471], [47.350114, 8.534344], [47.370708, 8.470364], [47.335722, 8.540003], [47.37505, 8.544603], [47.398479, 8.500789], [47.373429, 8.517212], [47.401703, 8.552032], [47.375563, 8.516951], [47.375555, 8.524499], [47.418038, 8.527406], [47.376294, 8.499155], [47.3818, 8.529963], [47.37651, 8.52526], [47.377652, 8.522449], [47.397293, 8.493797], [47.422373, 8.553048], [47.412699, 8.540296], [47.369072, 8.529054], [47.413874, 8.527347], [47.359642, 8.58691], [47.383325, 8.53994], [47.365185, 8.538586], [47.348486, 8.562409], [47.378957, 8.54234], [47.376944, 8.554349], [47.423142, 8.546026], [47.414946, 8.544292], [47.404357, 8.572306], [47.386141, 8.548316], [47.417981, 8.554175], [47.367876, 8.545963], [47.410909, 8.567397], [47.376392, 8.510068], [47.384892, 8.50906], [47.380414, 8.528134], [47.409063, 8.544249], [47.369125, 8.548002], [47.366375, 8.541179], [47.381679, 8.537099], [47.38149, 8.503456], [47.354107, 8.561548], [47.414444, 8.553425], [47.364079, 8.546096], [47.413901, 8.551028], [47.399816, 8.495291], [47.407702, 8.57887], [47.370182, 8.51328], [47.36358, 8.533323], [47.387271, 8.488009], [47.37017, 8.548805], [47.386545, 8.498524], [47.377796, 8.537747], [47.39056, 8.522433], [47.410393, 8.548225], [47.398491, 8.538889], [47.418316, 8.510209], [47.362312, 8.547423], [47.366492, 8.547709], [47.36765, 8.495262], [47.390433, 8.53969], [47.388535, 8.52067], [47.388161, 8.520252], [47.400925, 8.517411], [47.419484, 8.500651], [47.371732, 8.536854], [47.364528, 8.547165], [47.406002, 8.590586], [47.410596, 8.531613], [47.384126, 8.516025], [47.374386, 8.538683], [47.380901, 8.55818], [47.376747, 8.534508], [47.373297, 8.553822], [47.364978, 8.563843], [47.379463, 8.559858], [47.383471, 8.548128], [47.39922, 8.54264], [47.367119, 8.54424], [47.388343, 8.470825], [47.382582, 8.537621], [47.366945, 8.560415], [47.379484, 8.527611], [47.375456, 8.554768], [47.36496, 8.531061], [47.382205, 8.540341], [47.413901, 8.518761], [47.383049, 8.486376], [47.385084, 8.530891], [47.387814, 8.485715], [47.363609, 8.554798], [47.410458, 8.532896], [47.365108, 8.553254], [47.376969, 8.514702], [47.370973, 8.531582], [47.362645, 8.504417], [47.375309, 8.515211], [47.405241, 8.504898], [47.384691, 8.50262], [47.419842, 8.556162], [47.33536, 8.54112], [47.370161, 8.548791], [47.378791, 8.491762], [47.387679, 8.500481], [47.377875, 8.519845], [47.375205, 8.491426], [47.402551, 8.547969], [47.359241, 8.522273], [47.383868, 8.475426], [47.389473, 8.511696], [47.352335, 8.524886], [47.42705, 8.491656], [47.413751, 8.546016], [47.375831, 8.489797], [47.375857, 8.541071], [47.419614, 8.548099], [47.404276, 8.484502], [47.381405, 8.503918], [47.384501, 8.53823], [47.374068, 8.544741], [47.359232, 8.52226], [47.385879, 8.519001], [47.373143, 8.537002], [47.362529, 8.518858], [47.386434, 8.534601], [47.391233, 8.51593], [47.384367, 8.550346], [47.387348, 8.486421], [47.382873, 8.540103], [47.416544, 8.54178], [47.409588, 8.576432], [47.381522, 8.492068], [47.386493, 8.517808], [47.390758, 8.55085], [47.392115, 8.511974], [47.392116, 8.511921], [47.408526, 8.550585], [47.37814, 8.509693], [47.412104, 8.566601], [47.378786, 8.542376], [47.423852, 8.544172], [47.335088, 8.52996], [47.393653, 8.541598], [47.401969, 8.545824], [47.398738, 8.532867], [47.370316, 8.524948], [47.397043, 8.530341], [47.383884, 8.529304], [47.392228, 8.493909], [47.400254, 8.547392], [47.369098, 8.547975], [47.39111, 8.489197], [47.367427, 8.558016], [47.376009, 8.488992], [47.368483, 8.496656], [47.40413, 8.559662], [47.427123, 8.546347], [47.352459, 8.524187], [47.372429, 8.546839], [47.372638, 8.534264], [47.360299, 8.567689], [47.343301, 8.519488], [47.414, 8.519717], [47.417568, 8.509386], [47.400967, 8.550944], [47.355431, 8.552151], [47.380462, 8.512481], [47.372683, 8.535232], [47.372576, 8.553066], [47.389512, 8.512359], [47.42657, 8.548669], [47.361444, 8.602769], [47.419753, 8.501677], [47.388645, 8.520421], [47.367876, 8.496061], [47.391089, 8.479594], [47.386033, 8.517931], [47.39675, 8.509762], [47.359161, 8.535496], [47.364231, 8.533946], [47.367981, 8.546363], [47.414725, 8.519148], [47.37253, 8.553078], [47.402508, 8.535501], [47.383664, 8.536438], [47.386585, 8.496181], [47.374256, 8.523929], [47.401844, 8.55234], [47.36607, 8.496873], [47.382418, 8.548199], [47.36525, 8.538455], [47.386665, 8.541533], [47.368987, 8.538016], [47.386515, 8.547728], [47.378697, 8.510724], [47.406853, 8.550603], [47.354977, 8.552526], [47.411697, 8.53785], [47.393259, 8.530105], [47.398466, 8.53873], [47.399067, 8.589655], [47.371389, 8.550154], [47.386906, 8.490518], [47.422873, 8.541236], [47.385933, 8.519055], [47.386098, 8.518674], [47.400798, 8.54886], [47.42244, 8.550743], [47.364487, 8.566282], [47.380036, 8.535741], [47.393274, 8.473715], [47.415866, 8.507616], [47.393796, 8.545442], [47.373349, 8.542806], [47.357312, 8.51306], [47.402032, 8.5801], [47.405588, 8.550245], [47.402827, 8.553897], [47.350978, 8.577075], [47.38922, 8.470312], [47.363443, 8.533612], [47.38244, 8.514534], [47.393487, 8.544893], [47.365133, 8.567354], [47.405971, 8.481156], [47.369042, 8.528351], [47.40782, 8.580542], [47.369256, 8.519948], [47.365232, 8.538441], [47.423483, 8.551719], [47.422304, 8.497182], [47.391591, 8.514136], [47.406853, 8.550576], [47.364887, 8.548152], [47.407706, 8.538457], [47.335952, 8.529991], [47.394542, 8.540874], [47.366932, 8.54311], [47.410731, 8.571779], [47.378227, 8.510052], [47.411124, 8.546094], [47.36916, 8.525454], [47.339547, 8.520735], [47.369968, 8.547357], [47.378098, 8.520975], [47.394438, 8.538488], [47.416565, 8.547996], [47.365429, 8.547025], [47.370598, 8.524609], [47.382447, 8.499184], [47.34315, 8.530681], [47.365721, 8.548434], [47.368857, 8.547864], [47.374452, 8.549702], [47.393871, 8.504962], [47.425228, 8.50005], [47.369662, 8.52565], [47.388513, 8.478007], [47.412112, 8.563884], [47.382483, 8.530003], [47.381836, 8.533751], [47.386501, 8.523636], [47.379919, 8.527276], [47.389678, 8.511872], [47.390294, 8.509474], [47.366409, 8.541405], [47.420782, 8.549184], [47.370122, 8.564018], [47.379062, 8.489582], [47.36653, 8.540918], [47.395062, 8.503582], [47.387071, 8.519528], [47.396366, 8.525824], [47.357916, 8.521558], [47.386832, 8.490835], [47.372217, 8.532216], [47.367962, 8.540828], [47.381644, 8.540767], [47.341183, 8.530349], [47.396014, 8.483068], [47.359902, 8.521744], [47.365949, 8.545314], [47.404424, 8.533606], [47.364235, 8.536408], [47.421887, 8.510175], [47.416081, 8.56919], [47.405915, 8.537691], [47.402194, 8.496915], [47.414133, 8.518924], [47.36443, 8.530005], [47.41037, 8.542143], [47.340526, 8.531381], [47.36359, 8.519926], [47.36554, 8.532516], [47.378274, 8.526196], [47.382425, 8.481755], [47.420035, 8.546412], [47.408144, 8.546337], [47.40501, 8.585464], [47.386629, 8.534843], [47.385375, 8.530526], [47.373422, 8.561359], [47.408874, 8.539647], [47.359829, 8.522881], [47.370423, 8.497939], [47.414285, 8.53911], [47.388799, 8.491086], [47.425738, 8.553873], [47.411962, 8.527957], [47.361726, 8.55415], [47.386182, 8.518344], [47.424511, 8.553331], [47.403926, 8.572257], [47.395348, 8.525975], [47.374607, 8.532491], [47.36993, 8.521934], [47.365277, 8.538389], [47.385824, 8.532469], [47.422487, 8.510479], [47.388588, 8.483691], [47.397463, 8.533556], [47.37841, 8.500905], [47.37953, 8.529413], [47.369445, 8.525751], [47.353465, 8.576611], [47.381033, 8.532119], [47.409539, 8.540628], [47.364901, 8.547583], [47.352202, 8.558543], [47.355415, 8.531184], [47.390001, 8.49144], [47.364202, 8.547357], [47.416719, 8.514656], [47.373129, 8.534672], [47.394229, 8.488424], [47.419835, 8.504488], [47.361802, 8.560228], [47.360748, 8.550144], [47.369092, 8.52303], [47.414345, 8.551621], [47.346459, 8.528896], [47.376341, 8.526011], [47.39824, 8.53699], [47.376944, 8.541199], [47.357102, 8.522111], [47.385982, 8.498156], [47.409114, 8.545496], [47.377842, 8.507899], [47.410149, 8.541674], [47.388593, 8.535506], [47.366396, 8.552089], [47.399753, 8.588543], [47.41231, 8.558297], [47.375148, 8.513235], [47.366912, 8.544302], [47.397243, 8.531154], [47.417081, 8.523026], [47.368496, 8.499159], [47.343559, 8.530239], [47.382414, 8.514361], [47.424717, 8.495971], [47.409603, 8.576711], [47.380607, 8.525807], [47.386996, 8.547367], [47.373361, 8.524467], [47.370179, 8.548792], [47.41969, 8.508474], [47.378863, 8.542735], [47.375177, 8.518744], [47.369275, 8.541769], [47.384206, 8.516106], [47.417824, 8.505004], [47.38247, 8.540943], [47.360139, 8.547987], [47.399813, 8.591539], [47.378809, 8.52287], [47.376228, 8.54088], [47.42699, 8.55549], [47.394464, 8.525295], [47.368941, 8.541881], [47.418516, 8.510041], [47.354321, 8.575584], [47.368198, 8.556456], [47.370452, 8.527665], [47.370152, 8.548791], [47.376222, 8.56755], [47.38234, 8.540344], [47.401295, 8.534443], [47.342032, 8.529083], [47.393203, 8.52458], [47.369265, 8.541848], [47.35911, 8.526613], [47.352747, 8.558065], [47.329331, 8.515633], [47.386825, 8.49061], [47.3901, 8.510053], [47.381561, 8.582575], [47.402133, 8.584368], [47.387383, 8.487587], [47.373235, 8.533005], [47.36903, 8.541049], [47.385529, 8.529457], [47.369329, 8.541796], [47.360933, 8.530754], [47.351041, 8.576997], [47.397194, 8.587216], [47.35553, 8.558587], [47.387316, 8.500778], [47.410321, 8.548197], [47.406853, 8.55059], [47.361185, 8.532692], [47.356936, 8.535848], [47.36641, 8.545072], [47.369538, 8.526322], [47.362627, 8.534244], [47.380027, 8.48343], [47.356202, 8.523059], [47.362185, 8.54754], [47.372749, 8.534982], [47.378615, 8.541472], [47.391744, 8.542817], [47.390566, 8.489716], [47.37519, 8.518334], [47.388385, 8.536522], [47.407139, 8.592055], [47.377153, 8.540091], [47.381532, 8.513522], [47.378212, 8.547833], [47.419587, 8.548033], [47.396906, 8.520032], [47.3849, 8.531271], [47.406503, 8.552384], [47.373296, 8.484675], [47.385266, 8.508538], [47.372719, 8.542807], [47.39311, 8.495728], [47.378516, 8.54143], [47.346495, 8.564498], [47.405923, 8.557447], [47.430381, 8.540582], [47.39178, 8.518935], [47.414299, 8.518517], [47.386857, 8.488094], [47.387047, 8.485912], [47.369783, 8.509803], [47.391359, 8.514939], [47.391379, 8.538637], [47.368741, 8.560731], [47.357849, 8.52296], [47.377317, 8.53983], [47.360478, 8.552045], [47.371004, 8.547207], [47.365492, 8.499125], [47.38105, 8.503315], [47.376266, 8.558347], [47.371105, 8.547911], [47.354313, 8.575491], [47.37762, 8.541994], [47.370922, 8.548264], [47.352195, 8.525386], [47.425733, 8.53651], [47.357365, 8.554906], [47.382997, 8.485144], [47.361915, 8.547627], [47.358177, 8.554631], [47.370457, 8.549804], [47.405028, 8.572691], [47.374096, 8.502474], [47.38435, 8.548398], [47.378262, 8.527388], [47.380984, 8.537336], [47.373183, 8.503886], [47.372089, 8.521925], [47.363763, 8.526363], [47.376038, 8.540995], [47.353124, 8.52706], [47.370725, 8.471477], [47.391181, 8.550859], [47.39252, 8.511055], [47.344124, 8.531415], [47.412126, 8.564295], [47.405877, 8.590504], [47.399971, 8.545041], [47.369384, 8.533138], [47.426024, 8.508376], [47.375874, 8.54119], [47.391221, 8.53919], [47.365211, 8.509102], [47.392332, 8.50313], [47.367424, 8.541558], [47.377927, 8.541921], [47.369141, 8.529333], [47.388334, 8.539104], [47.36413, 8.546375], [47.358442, 8.583615], [47.386504, 8.529119], [47.379242, 8.537976], [47.403, 8.591316], [47.36173, 8.561166], [47.374377, 8.551872], [47.373319, 8.531762], [47.36131, 8.563593], [47.401914, 8.552514], [47.365062, 8.547706], [47.373711, 8.535981], [47.367099, 8.539791], [47.38213, 8.515892], [47.364902, 8.53151], [47.367119, 8.544266], [47.368839, 8.496027], [47.372953, 8.475863], [47.374478, 8.528992], [47.407821, 8.545297], [47.392416, 8.506695], [47.408704, 8.580296], [47.380395, 8.548078], [47.365012, 8.531221], [47.386997, 8.490454], [47.409577, 8.549759], [47.378038, 8.527317], [47.398504, 8.546958], [47.40205, 8.584592], [47.426539, 8.546282], [47.391295, 8.520846], [47.376919, 8.539093], [47.430854, 8.550375], [47.402759, 8.491136], [47.378289, 8.551], [47.412073, 8.541794], [47.3759, 8.541297], [47.36988, 8.509024], [47.376983, 8.49076], [47.36366, 8.546657], [47.414437, 8.546666], [47.375442, 8.558065], [47.41718, 8.542973], [47.396232, 8.544711], [47.351869, 8.52571], [47.39, 8.539867], [47.384987, 8.484984], [47.379022, 8.518358], [47.391395, 8.514953], [47.389917, 8.512327], [47.377787, 8.531073], [47.357608, 8.553984], [47.371565, 8.562631], [47.419228, 8.507842], [47.411797, 8.537786], [47.358666, 8.585552], [47.378315, 8.543677], [47.422825, 8.535853], [47.367189, 8.545459], [47.364713, 8.554027], [47.411725, 8.537798], [47.398959, 8.505369], [47.378055, 8.509148], [47.40788, 8.565266], [47.370859, 8.535049], [47.363434, 8.515395], [47.394437, 8.525294], [47.400019, 8.545651], [47.413062, 8.558723], [47.399683, 8.543206], [47.387731, 8.521065], [47.415792, 8.553572], [47.381795, 8.489835], [47.374189, 8.54428], [47.362779, 8.548519], [47.377503, 8.541992], [47.402854, 8.549287], [47.396914, 8.541109], [47.408547, 8.529504], [47.381138, 8.518136], [47.363256, 8.499637], [47.364869, 8.566713], [47.356934, 8.535054], [47.377716, 8.537626], [47.410391, 8.543667], [47.411085, 8.545457], [47.398873, 8.533744], [47.372792, 8.534161], [47.40218, 8.55289], [47.369247, 8.541874], [47.397964, 8.533858], [47.369514, 8.536451], [47.369446, 8.526612], [47.379552, 8.537492], [47.390816, 8.469906], [47.392647, 8.48638], [47.409521, 8.537766], [47.398064, 8.535595], [47.383394, 8.484039], [47.41434, 8.517974], [47.356152, 8.532178], [47.376903, 8.537027], [47.357013, 8.52195], [47.387985, 8.545534], [47.399599, 8.50517], [47.368035, 8.540618], [47.351158, 8.582479], [47.375502, 8.545235], [47.399098, 8.547844], [47.408953, 8.54642], [47.383999, 8.5094], [47.372265, 8.535753], [47.383079, 8.540187], [47.371916, 8.519247], [47.374215, 8.532151], [47.393229, 8.524647], [47.372423, 8.53328], [47.339541, 8.529959], [47.412995, 8.544198], [47.386102, 8.518277], [47.402984, 8.576556], [47.399017, 8.522287], [47.416479, 8.511392], [47.388965, 8.537991], [47.383748, 8.534228], [47.40649, 8.562971], [47.38597, 8.517943], [47.388315, 8.520162], [47.348485, 8.534377], [47.41077, 8.55572], [47.389591, 8.521235], [47.381599, 8.536064], [47.377714, 8.541599], [47.369104, 8.555827], [47.408461, 8.503002], [47.365133, 8.567315], [47.387681, 8.486494], [47.384193, 8.489154], [47.370268, 8.548847], [47.388062, 8.520277], [47.387937, 8.491002], [47.364709, 8.554516], [47.36006, 8.59007], [47.407429, 8.494859], [47.404523, 8.571859], [47.37596, 8.535935], [47.382861, 8.529058], [47.39925, 8.542336], [47.365005, 8.56473], [47.379034, 8.524768], [47.370708, 8.516733], [47.397694, 8.596527], [47.360065, 8.568637], [47.379305, 8.49556], [47.370534, 8.524714], [47.372593, 8.534316], [47.403695, 8.570106], [47.370196, 8.550739], [47.393547, 8.529131], [47.375749, 8.496866], [47.364595, 8.566205], [47.373212, 8.535481], [47.363967, 8.549311], [47.402513, 8.499412], [47.367154, 8.523467], [47.394319, 8.493394], [47.363768, 8.53346], [47.400118, 8.549416], [47.365761, 8.565647], [47.387486, 8.499974], [47.416827, 8.506853], [47.421717, 8.550118], [47.388884, 8.479802], [47.39812, 8.536285], [47.3776, 8.538471], [47.363953, 8.566575], [47.428645, 8.552728], [47.367605, 8.544237], [47.374779, 8.527648], [47.386168, 8.545496], [47.340008, 8.530008], [47.363726, 8.563975], [47.415239, 8.550301], [47.414281, 8.518556], [47.36196, 8.547601], [47.417633, 8.538901], [47.406472, 8.549932], [47.40214, 8.487971], [47.410792, 8.544073], [47.380196, 8.506265], [47.359224, 8.535471], [47.425577, 8.494291], [47.400354, 8.477576], [47.393688, 8.472611], [47.376682, 8.555363], [47.373267, 8.519076], [47.389911, 8.517797], [47.420646, 8.504345], [47.430955, 8.550112], [47.338436, 8.531736], [47.420845, 8.549185], [47.391712, 8.485288], [47.36685, 8.543228], [47.377514, 8.548402], [47.363482, 8.535135], [47.397101, 8.594752], [47.403535, 8.485905], [47.413152, 8.483775], [47.405604, 8.490835], [47.372721, 8.535034], [47.397283, 8.594504], [47.392542, 8.502816], [47.375405, 8.549722], [47.363678, 8.520086], [47.358283, 8.553919], [47.33005, 8.534766], [47.374929, 8.54125], [47.406662, 8.495215], [47.388565, 8.48716], [47.398986, 8.505343], [47.349045, 8.562223], [47.363102, 8.517228], [47.343509, 8.535585], [47.330171, 8.529687], [47.379977, 8.541937], [47.383727, 8.50864], [47.412604, 8.517051], [47.358856, 8.534471], [47.394684, 8.52971], [47.384616, 8.502883], [47.394145, 8.529554], [47.372415, 8.5265], [47.369521, 8.526243], [47.373435, 8.531791], [47.418315, 8.508394], [47.427616, 8.54653], [47.376409, 8.527482], [47.341115, 8.53093], [47.372891, 8.535104], [47.417538, 8.513547], [47.390559, 8.484511], [47.371178, 8.516478], [47.374528, 8.537031], [47.379873, 8.542505], [47.368626, 8.543808], [47.430576, 8.550237], [47.361982, 8.526354], [47.373654, 8.534378], [47.382565, 8.514629], [47.389025, 8.477063], [47.387271, 8.488062], [47.369735, 8.543513], [47.378582, 8.542081], [47.411343, 8.525851], [47.384198, 8.516039], [47.381498, 8.534301], [47.372766, 8.535008], [47.39235, 8.503104], [47.382621, 8.529715], [47.357139, 8.514262], [47.408143, 8.552101], [47.366659, 8.55653], [47.377864, 8.516203], [47.404348, 8.572293], [47.420313, 8.503371], [47.328689, 8.513119], [47.419181, 8.506211], [47.387696, 8.486812], [47.369667, 8.533687], [47.391149, 8.487847], [47.364028, 8.551457], [47.340193, 8.535212], [47.429971, 8.549575], [47.376056, 8.559614], [47.37152, 8.517399], [47.394701, 8.525935], [47.396825, 8.541028], [47.360296, 8.532488], [47.373156, 8.503912], [47.363342, 8.557202], [47.381014, 8.535125], [47.409196, 8.538885], [47.416472, 8.534252], [47.379382, 8.524087], [47.405626, 8.565828], [47.376737, 8.548743], [47.397511, 8.532206], [47.388807, 8.530954], [47.393714, 8.50839], [47.390805, 8.522213], [47.3664, 8.540451], [47.394802, 8.525739], [47.371398, 8.522785], [47.381812, 8.541936], [47.354533, 8.556567], [47.360172, 8.523669], [47.369626, 8.525596], [47.398021, 8.534468], [47.406912, 8.586896], [47.406835, 8.550589], [47.406816, 8.550668], [47.409044, 8.550079], [47.419227, 8.506053], [47.365232, 8.547828], [47.363651, 8.598833], [47.377648, 8.543756], [47.383895, 8.546177], [47.398905, 8.586048], [47.41818, 8.546638], [47.340704, 8.537247], [47.390714, 8.508807], [47.385082, 8.498283], [47.399727, 8.504973], [47.406039, 8.550082], [47.386094, 8.518144], [47.38683, 8.512543], [47.372602, 8.53429], [47.364771, 8.554571], [47.402382, 8.535565], [47.427983, 8.545769], [47.376911, 8.499551], [47.390685, 8.489494], [47.366246, 8.553688], [47.368961, 8.528416], [47.363215, 8.567526], [47.420175, 8.548628], [47.379698, 8.516319], [47.422346, 8.538918], [47.378742, 8.510778], [47.380126, 8.528141], [47.375037, 8.519337], [47.360632, 8.524486], [47.416297, 8.545075], [47.354998, 8.52768], [47.388716, 8.537707], [47.333951, 8.528455], [47.397043, 8.530381], [47.369296, 8.528198], [47.376593, 8.52697], [47.363413, 8.547976], [47.367533, 8.545241], [47.385437, 8.521097], [47.364117, 8.536432], [47.391677, 8.519436], [47.41531, 8.562494], [47.410642, 8.551318], [47.391354, 8.537457], [47.424589, 8.536712], [47.371643, 8.521559], [47.373037, 8.547196], [47.370859, 8.535035], [47.402954, 8.486476], [47.383719, 8.539128], [47.381822, 8.541883], [47.385223, 8.517067], [47.347141, 8.563784], [47.361548, 8.561401], [47.377086, 8.543347], [47.370583, 8.531931], [47.369544, 8.541854], [47.382094, 8.537889], [47.383271, 8.493678], [47.401515, 8.487481], [47.355259, 8.534304], [47.383047, 8.51399], [47.376024, 8.53579], [47.403664, 8.57139], [47.335956, 8.515171], [47.367758, 8.496258], [47.387931, 8.486645], [47.419641, 8.548073], [47.340162, 8.529918], [47.378433, 8.534132], [47.37912, 8.522293], [47.402324, 8.499381], [47.37674, 8.53901], [47.37271, 8.534319], [47.375074, 8.553303], [47.356225, 8.558323], [47.409847, 8.567441], [47.367598, 8.539338], [47.373716, 8.536365], [47.376437, 8.528251], [47.404812, 8.576397], [47.382855, 8.5316], [47.427204, 8.546349], [47.358294, 8.586762], [47.39517, 8.52005], [47.391961, 8.517879], [47.394873, 8.517249], [47.405254, 8.480824], [47.400286, 8.588316], [47.375829, 8.563555], [47.370845, 8.519305], [47.378794, 8.542416], [47.378828, 8.542708], [47.373682, 8.553989], [47.373828, 8.537771], [47.377725, 8.511817], [47.414518, 8.556064], [47.406769, 8.584932], [47.369293, 8.527522], [47.417637, 8.50777], [47.372775, 8.519794], [47.334353, 8.539207], [47.369043, 8.528259], [47.369464, 8.525579], [47.403062, 8.49831], [47.368208, 8.496147], [47.372688, 8.538529], [47.409296, 8.553794], [47.356848, 8.527043], [47.378699, 8.542096], [47.3672, 8.528181], [47.400357, 8.585734], [47.416518, 8.511101], [47.367898, 8.539953], [47.377485, 8.541992], [47.405294, 8.528232], [47.368897, 8.489686], [47.378289, 8.528381], [47.368063, 8.541452], [47.377233, 8.526824], [47.36654, 8.544625], [47.382832, 8.533997], [47.384858, 8.531973], [47.410525, 8.550388], [47.420104, 8.548587], [47.366726, 8.53642], [47.380524, 8.512562], [47.383504, 8.498702], [47.376657, 8.515371], [47.388436, 8.53594], [47.405272, 8.558705], [47.418453, 8.508078], [47.373044, 8.53324], [47.386263, 8.53175], [47.409323, 8.545367], [47.363609, 8.535045], [47.412804, 8.543492], [47.414332, 8.547287], [47.368687, 8.528874], [47.390656, 8.509295], [47.360722, 8.52928], [47.409497, 8.49698], [47.367779, 8.535435], [47.399425, 8.517169], [47.386511, 8.497411], [47.410941, 8.571452], [47.367081, 8.53979], [47.401392, 8.490076], [47.375516, 8.48689], [47.376863, 8.540297], [47.413945, 8.544536], [47.415435, 8.52881], [47.425823, 8.547818], [47.339931, 8.535326], [47.384442, 8.503224], [47.371579, 8.515864], [47.386724, 8.516157], [47.360285, 8.600798], [47.405065, 8.565193], [47.371588, 8.515864], [47.351594, 8.525255], [47.361981, 8.549164], [47.370179, 8.548818], [47.382531, 8.529779], [47.363719, 8.551742], [47.358279, 8.555295], [47.371627, 8.517507], [47.354168, 8.553436], [47.369685, 8.520301], [47.368349, 8.551071], [47.379195, 8.544768], [47.375426, 8.528614], [47.371309, 8.518824], [47.416329, 8.54542], [47.372322, 8.523029], [47.374459, 8.530091], [47.370735, 8.524321], [47.391358, 8.515045], [47.368078, 8.54087], [47.40948, 8.549545], [47.39897, 8.533057], [47.378573, 8.542107], [47.373008, 8.531345], [47.381351, 8.534629], [47.370843, 8.570296], [47.363853, 8.549018], [47.365506, 8.545557], [47.425971, 8.493557], [47.37821, 8.532035], [47.403161, 8.537847], [47.383642, 8.548105], [47.354259, 8.575411], [47.414695, 8.519466], [47.377327, 8.538784], [47.382126, 8.512462], [47.402687, 8.547879], [47.402118, 8.548106], [47.385986, 8.518129], [47.419734, 8.53355], [47.374416, 8.541226], [47.403632, 8.550628], [47.376731, 8.524801], [47.356125, 8.557527], [47.39345, 8.491058], [47.427951, 8.536927], [47.397744, 8.533297], [47.36844, 8.565836], [47.418611, 8.503589], [47.368196, 8.538847], [47.377171, 8.540091], [47.359999, 8.595245], [47.356394, 8.510222], [47.397964, 8.533858], [47.425853, 8.493713], [47.414831, 8.551538], [47.36819, 8.524309], [47.40386, 8.569752], [47.386308, 8.531751], [47.370918, 8.543008], [47.385193, 8.530774], [47.378435, 8.540462], [47.387628, 8.47542], [47.416122, 8.531302], [47.365443, 8.545529], [47.427635, 8.546504], [47.36697, 8.520074], [47.376559, 8.541919], [47.361196, 8.600593], [47.36183, 8.561023], [47.397872, 8.534028], [47.425614, 8.494212], [47.385569, 8.517577], [47.376312, 8.48639], [47.377247, 8.538729], [47.369336, 8.536315], [47.425041, 8.539252], [47.369877, 8.508388], [47.398794, 8.499801], [47.377731, 8.537918], [47.333835, 8.514996], [47.369038, 8.541181], [47.383592, 8.548621], [47.414081, 8.51679], [47.375322, 8.48539], [47.421142, 8.548145], [47.374623, 8.514522], [47.380414, 8.483332], [47.379736, 8.527603], [47.379017, 8.54356], [47.414333, 8.483493], [47.408264, 8.550685], [47.381445, 8.571501], [47.365144, 8.553228], [47.390943, 8.473882], [47.377052, 8.533693], [47.406294, 8.582961], [47.371097, 8.520303], [47.386004, 8.535347], [47.373951, 8.502564], [47.362619, 8.55765], [47.355681, 8.560628], [47.387596, 8.486929], [47.369254, 8.491984], [47.374256, 8.544798], [47.408463, 8.546834], [47.368339, 8.551163], [47.356654, 8.523743], [47.405991, 8.580808], [47.386686, 8.534553], [47.354135, 8.527689], [47.388009, 8.490991], [47.368959, 8.524788], [47.35581, 8.531298], [47.366991, 8.535009], [47.386126, 8.514675], [47.354841, 8.574814], [47.370197, 8.548819], [47.363515, 8.569995], [47.379928, 8.537672], [47.410918, 8.545003], [47.362579, 8.568148], [47.357802, 8.547806], [47.366007, 8.562527], [47.370188, 8.511665], [47.363304, 8.548093], [47.37499, 8.545158], [47.379426, 8.542244], [47.378411, 8.54111], [47.404242, 8.561943], [47.339478, 8.535674], [47.370574, 8.548866], [47.411078, 8.52627], [47.387587, 8.486929], [47.405116, 8.4822], [47.424719, 8.495745], [47.414197, 8.545482], [47.388801, 8.48788], [47.379388, 8.555579], [47.372437, 8.524157], [47.387778, 8.52941], [47.383563, 8.475275], [47.39599, 8.545514], [47.364428, 8.531209], [47.384296, 8.528531], [47.378282, 8.509881], [47.374368, 8.521641], [47.414041, 8.525866], [47.367929, 8.546097], [47.419179, 8.506423], [47.369867, 8.54194], [47.358786, 8.516055], [47.414095, 8.550436], [47.371579, 8.51589], [47.400647, 8.502753], [47.409255, 8.544955], [47.406041, 8.553594], [47.391028, 8.52243], [47.376365, 8.528289], [47.376168, 8.551777], [47.381504, 8.513601], [47.403445, 8.579084], [47.361276, 8.517284], [47.368651, 8.483048], [47.376593, 8.534637], [47.377517, 8.511918], [47.37665, 8.541815], [47.397367, 8.531289], [47.376056, 8.515147], [47.387868, 8.479703], [47.365176, 8.547112], [47.402455, 8.582719], [47.366937, 8.492574], [47.384375, 8.531658], [47.380764, 8.518672], [47.382952, 8.530847], [47.382184, 8.492504], [47.389307, 8.494579], [47.382976, 8.543536], [47.329832, 8.530316], [47.350431, 8.532246], [47.364776, 8.531495], [47.375872, 8.516626], [47.404529, 8.574973], [47.372482, 8.538379], [47.368027, 8.530105], [47.371716, 8.519548], [47.387377, 8.52523], [47.403798, 8.497529], [47.371165, 8.530328], [47.391036, 8.522549], [47.379235, 8.525368], [47.36435, 8.53469], [47.397682, 8.533163], [47.409028, 8.539531], [47.376921, 8.527493], [47.379721, 8.50705], [47.373468, 8.531249], [47.419151, 8.506542], [47.403884, 8.569183], [47.357579, 8.571695], [47.361922, 8.51551], [47.384692, 8.509268], [47.409035, 8.550065], [47.386149, 8.518039], [47.364252, 8.536475], [47.366943, 8.522946], [47.407206, 8.558719], [47.397917, 8.534069], [47.359728, 8.562567], [47.368918, 8.54053], [47.367925, 8.538947], [47.393393, 8.537738], [47.384179, 8.516158], [47.39235, 8.503104], [47.375997, 8.538637], [47.375996, 8.559308], [47.396974, 8.496228], [47.420463, 8.51342], [47.357738, 8.554463], [47.388585, 8.536354], [47.365897, 8.521376], [47.375721, 8.53548], [47.337298, 8.53506], [47.38496, 8.495791], [47.392245, 8.537423], [47.354141, 8.557102], [47.350336, 8.56082], [47.409216, 8.547114], [47.374445, 8.578979], [47.400159, 8.548834], [47.329894, 8.512178], [47.391054, 8.489395], [47.378558, 8.575201], [47.387031, 8.547395], [47.384791, 8.531375], [47.3932, 8.530647], [47.407122, 8.554385], [47.379967, 8.527912], [47.382813, 8.532262], [47.361768, 8.552575], [47.374021, 8.475063], [47.361819, 8.525543], [47.401807, 8.552366], [47.375802, 8.537441], [47.414345, 8.551607], [47.404028, 8.558984], [47.397061, 8.530382], [47.405855, 8.590927], [47.370172, 8.540132], [47.374614, 8.549732], [47.4097, 8.544421], [47.369767, 8.508571], [47.359635, 8.522427], [47.383491, 8.515641], [47.392461, 8.528857], [47.373511, 8.561428], [47.347862, 8.532789], [47.375489, 8.547605], [47.379728, 8.542621], [47.372791, 8.497642], [47.40438, 8.533579], [47.381822, 8.541896], [47.382262, 8.5476], [47.400652, 8.533979], [47.419079, 8.506487], [47.377528, 8.50972], [47.410648, 8.571923], [47.383088, 8.540267], [47.413516, 8.539544], [47.371121, 8.530128], [47.411187, 8.570172], [47.363053, 8.550881], [47.373244, 8.533019], [47.388979, 8.494997], [47.402045, 8.544527], [47.365403, 8.546879], [47.378992, 8.538712], [47.389702, 8.492759], [47.368128, 8.511729], [47.409881, 8.54624], [47.384314, 8.548411], [47.375932, 8.494526], [47.381446, 8.536008], [47.38167, 8.533245], [47.387903, 8.519942], [47.354922, 8.574763], [47.385979, 8.517956], [47.363776, 8.535485], [47.37438, 8.525071], [47.394718, 8.473174], [47.3705, 8.54909], [47.374488, 8.539374], [47.350383, 8.527811], [47.363437, 8.535121], [47.358933, 8.570281], [47.376639, 8.548622], [47.374716, 8.527607], [47.413985, 8.541264], [47.383378, 8.533373], [47.356905, 8.555042], [47.387209, 8.51912], [47.408763, 8.546482], [47.394864, 8.525793], [47.403559, 8.54701], [47.374272, 8.524155], [47.367821, 8.510836], [47.358158, 8.51787], [47.391189, 8.51581], [47.386228, 8.518213], [47.398012, 8.534481], [47.374457, 8.484605], [47.385287, 8.494486], [47.339955, 8.529927], [47.364223, 8.531033], [47.403564, 8.588864], [47.37305, 8.534498], [47.425962, 8.49357], [47.414932, 8.570782], [47.340116, 8.519556], [47.378236, 8.544338], [47.416747, 8.549683], [47.351038, 8.58192], [47.408856, 8.554554], [47.369892, 8.513526], [47.348291, 8.529211], [47.41456, 8.571185], [47.416097, 8.546197], [47.384163, 8.531203], [47.338969, 8.538125], [47.409124, 8.541719], [47.333843, 8.515036], [47.400242, 8.542065], [47.371502, 8.525065], [47.351472, 8.525795], [47.377593, 8.541994], [47.366295, 8.552325], [47.382442, 8.514309], [47.374124, 8.502343], [47.406755, 8.550468], [47.354534, 8.523475], [47.379402, 8.528669], [47.361102, 8.555381], [47.37377, 8.546748], [47.367985, 8.540233], [47.362037, 8.59746], [47.357871, 8.572205], [47.378727, 8.542891], [47.35819, 8.51922], [47.385132, 8.548494], [47.357734, 8.520906], [47.371836, 8.48801], [47.367937, 8.54619], [47.396462, 8.543285], [47.36447, 8.546661], [47.377531, 8.543794], [47.399472, 8.5332], [47.414141, 8.551259], [47.405379, 8.592653], [47.389627, 8.487089], [47.391546, 8.539925], [47.360938, 8.553736], [47.377001, 8.569738], [47.372256, 8.535739], [47.377449, 8.541978], [47.386236, 8.527961], [47.361811, 8.560228], [47.371082, 8.523798], [47.372982, 8.547327], [47.380812, 8.504833], [47.380025, 8.520709], [47.356156, 8.559924], [47.387577, 8.486969], [47.36199, 8.526499], [47.393132, 8.530195], [47.397778, 8.533549], [47.38771, 8.486269], [47.3689, 8.525277], [47.416537, 8.522564], [47.396019, 8.518756], [47.361095, 8.525038], [47.360053, 8.564308], [47.374316, 8.529955], [47.404564, 8.548197], [47.354904, 8.574789], [47.376852, 8.543342], [47.375812, 8.54013], [47.394454, 8.474506], [47.373253, 8.514852], [47.389975, 8.485479], [47.393765, 8.488018], [47.373506, 8.534825], [47.369059, 8.53803], [47.368285, 8.529488], [47.359443, 8.549283], [47.373619, 8.537052], [47.37446, 8.539426], [47.370947, 8.523835], [47.417796, 8.546286], [47.378842, 8.559924], [47.374714, 8.551442], [47.368201, 8.536411], [47.369084, 8.52777], [47.37878, 8.523055], [47.384726, 8.529718], [47.353815, 8.52624], [47.370263, 8.513308], [47.403862, 8.57688], [47.369233, 8.528117], [47.390722, 8.522437], [47.335034, 8.529972], [47.375886, 8.540886], [47.403427, 8.530605], [47.377506, 8.498464], [47.377543, 8.538815], [47.38021, 8.501749], [47.383926, 8.532483], [47.383915, 8.532735], [47.377367, 8.498951], [47.399673, 8.543299], [47.386252, 8.518558], [47.420858, 8.507663], [47.407866, 8.531107], [47.353596, 8.576138], [47.383392, 8.515613], [47.413262, 8.545436], [47.37045, 8.566275], [47.366841, 8.543214], [47.373824, 8.538288], [47.402172, 8.499286], [47.397012, 8.52222], [47.360515, 8.567707], [47.378274, 8.541346], [47.374289, 8.524221], [47.39075, 8.508821], [47.386477, 8.529118], [47.409394, 8.572307], [47.391204, 8.52287], [47.362624, 8.519284], [47.362734, 8.567979], [47.385212, 8.517199], [47.416702, 8.545905], [47.37845, 8.510176], [47.328508, 8.529521], [47.394311, 8.525371], [47.398327, 8.537217], [47.361962, 8.560469], [47.383345, 8.499361], [47.383116, 8.515289], [47.427546, 8.546343], [47.402038, 8.499177], [47.37902, 8.542394], [47.377723, 8.507129], [47.420801, 8.51283], [47.373444, 8.531844], [47.375839, 8.541057], [47.411115, 8.526191], [47.372073, 8.554816], [47.376718, 8.544121], [47.370257, 8.519756], [47.377223, 8.540225], [47.371909, 8.517181], [47.383375, 8.498978], [47.404047, 8.568139], [47.369234, 8.539411], [47.367405, 8.523631], [47.372267, 8.540255], [47.357862, 8.572204], [47.402351, 8.499329], [47.410909, 8.545003], [47.398073, 8.535635], [47.39249, 8.475899], [47.409162, 8.549936], [47.40649, 8.581282], [47.37516, 8.518704], [47.369757, 8.556158], [47.362506, 8.568279], [47.414124, 8.542698], [47.365968, 8.504007], [47.360438, 8.552455], [47.391372, 8.537444], [47.346636, 8.533015], [47.370178, 8.539457], [47.36963, 8.553521], [47.421387, 8.549806], [47.356408, 8.535506], [47.354772, 8.574535], [47.39384, 8.505452], [47.370846, 8.519292], [47.405126, 8.565472], [47.419943, 8.535264], [47.376943, 8.513628], [47.398846, 8.540381], [47.395428, 8.526136], [47.414708, 8.56056], [47.362912, 8.55616], [47.379244, 8.50802], [47.364595, 8.566205], [47.40413, 8.559622], [47.372472, 8.545158], [47.412745, 8.544948], [47.379809, 8.527459], [47.369714, 8.533476], [47.343639, 8.535085], [47.420551, 8.502952], [47.402059, 8.584592], [47.38493, 8.508889], [47.367245, 8.559204], [47.397964, 8.533858], [47.38284, 8.513999], [47.377052, 8.544048], [47.358582, 8.553673], [47.419384, 8.547631], [47.370215, 8.548832], [47.343391, 8.535675], [47.366443, 8.533078], [47.359391, 8.594874], [47.390128, 8.532094], [47.371805, 8.522502], [47.413622, 8.553779], [47.369183, 8.518172], [47.419911, 8.506941], [47.356915, 8.532366], [47.387624, 8.490745], [47.370916, 8.549761], [47.356601, 8.523742], [47.374035, 8.546316], [47.361458, 8.561399], [47.366151, 8.521156], [47.381808, 8.51668], [47.368907, 8.501378], [47.383261, 8.499611], [47.385084, 8.530851], [47.366045, 8.532355], [47.356777, 8.527929], [47.363096, 8.508212], [47.388335, 8.519911], [47.379778, 8.527829], [47.354459, 8.557783], [47.412136, 8.550249], [47.369578, 8.525886], [47.419914, 8.547695], [47.401081, 8.544653], [47.376024, 8.538651], [47.328496, 8.514504], [47.385074, 8.501104], [47.41169, 8.562908], [47.414065, 8.550806], [47.410253, 8.549614], [47.418035, 8.505618], [47.389539, 8.536281], [47.383394, 8.548683], [47.41049, 8.550268], [47.412352, 8.523751], [47.377809, 8.531563], [47.407162, 8.586159], [47.397304, 8.531354], [47.380842, 8.538062], [47.391394, 8.537034], [47.395549, 8.517978], [47.356634, 8.553315], [47.381315, 8.542243], [47.396029, 8.485413], [47.391936, 8.533919], [47.376276, 8.557328], [47.369063, 8.525253], [47.377455, 8.543236], [47.385093, 8.530878], [47.374078, 8.546463], [47.371722, 8.517893], [47.387481, 8.486675], [47.371201, 8.547251], [47.381541, 8.51543], [47.404008, 8.496182], [47.391124, 8.538963], [47.407001, 8.481574], [47.358583, 8.519546], [47.374487, 8.53944], [47.392589, 8.539099], [47.390561, 8.50887], [47.36861, 8.546416], [47.356625, 8.553328], [47.364472, 8.536983], [47.364744, 8.557337], [47.369491, 8.553902], [47.420187, 8.503422], [47.369446, 8.540753], [47.384498, 8.531899], [47.36948, 8.533445], [47.399375, 8.495242], [47.339419, 8.519012], [47.400654, 8.502965], [47.397449, 8.546353], [47.378265, 8.509762], [47.372866, 8.535911], [47.362498, 8.568172], [47.365889, 8.501834], [47.367842, 8.564446], [47.378653, 8.544095], [47.405209, 8.593484], [47.378172, 8.530299], [47.377247, 8.538703], [47.414407, 8.554484], [47.373795, 8.535625], [47.35348, 8.556691], [47.391375, 8.528556], [47.370922, 8.508158], [47.340497, 8.51918], [47.368789, 8.540832], [47.365239, 8.501172], [47.408989, 8.572365], [47.362787, 8.548598], [47.399339, 8.542431], [47.376467, 8.491067], [47.373761, 8.536393], [47.363877, 8.497677], [47.374059, 8.544754], [47.370206, 8.548819], [47.37581, 8.535587], [47.388265, 8.493446], [47.364676, 8.537318], [47.38021, 8.501749], [47.37503, 8.549502], [47.41328, 8.545383], [47.379848, 8.543193], [47.363525, 8.535321], [47.368585, 8.499174], [47.374519, 8.545479], [47.358139, 8.572369], [47.374783, 8.503097], [47.410768, 8.567951], [47.389296, 8.543879], [47.398294, 8.536978], [47.393302, 8.524556], [47.385125, 8.516959], [47.389714, 8.511873], [47.386202, 8.529603], [47.382402, 8.530015], [47.375748, 8.53548], [47.373175, 8.527946], [47.378894, 8.527242], [47.376354, 8.537095], [47.397017, 8.530248], [47.41129, 8.545647], [47.387577, 8.486969], [47.387214, 8.476432], [47.38138, 8.534497], [47.365335, 8.564181], [47.401436, 8.50106], [47.391054, 8.489395], [47.371034, 8.535555], [47.371159, 8.53475], [47.379123, 8.533365], [47.364105, 8.546229], [47.378682, 8.54191], [47.41917, 8.506436], [47.373839, 8.537599], [47.376178, 8.539488], [47.374869, 8.527649], [47.378136, 8.519797], [47.362327, 8.504755], [47.368141, 8.541785], [47.370161, 8.548805], [47.379091, 8.538674], [47.386495, 8.529106], [47.374034, 8.531327], [47.430955, 8.550139], [47.374068, 8.544728], [47.425578, 8.494225], [47.43117, 8.516009], [47.368943, 8.496519], [47.392395, 8.503171], [47.362668, 8.551601], [47.387652, 8.533222], [47.382372, 8.487661], [47.392091, 8.498052], [47.373408, 8.525183], [47.365895, 8.545313], [47.360422, 8.597028], [47.392593, 8.524329], [47.382021, 8.551184], [47.408745, 8.550232], [47.335407, 8.51901], [47.370297, 8.518354], [47.368759, 8.492941], [47.355107, 8.534275], [47.402124, 8.496688], [47.367889, 8.52188], [47.376056, 8.559601], [47.377013, 8.543359], [47.378425, 8.50999], [47.3735, 8.534494], [47.364579, 8.537117], [47.375131, 8.525576], [47.375833, 8.544553], [47.379533, 8.554456], [47.399948, 8.504421], [47.374273, 8.524989], [47.407075, 8.586727], [47.383015, 8.529008], [47.378628, 8.499757], [47.388263, 8.519936], [47.410522, 8.572861], [47.403387, 8.497203], [47.394035, 8.525021], [47.394835, 8.473123], [47.376097, 8.488306], [47.347341, 8.563537], [47.356635, 8.551276], [47.374544, 8.54103], [47.409268, 8.545393], [47.419742, 8.547864], [47.377476, 8.541991], [47.358772, 8.551705], [47.367537, 8.540038], [47.40342, 8.574327], [47.380357, 8.542713], [47.423572, 8.551774], [47.380985, 8.511379], [47.387827, 8.527093], [47.425697, 8.556272], [47.377104, 8.540461], [47.3672, 8.533861], [47.351432, 8.52913], [47.379785, 8.537576], [47.388339, 8.526229], [47.35236, 8.558097], [47.393894, 8.54465], [47.376078, 8.537738], [47.383226, 8.539938], [47.353107, 8.512565], [47.406805, 8.567602], [47.355626, 8.526939], [47.386347, 8.551248], [47.369542, 8.466952], [47.386245, 8.53171], [47.385434, 8.542315], [47.404561, 8.572602], [47.389437, 8.52706], [47.41405, 8.546685], [47.41722, 8.510042], [47.391043, 8.522735], [47.374318, 8.516409], [47.363728, 8.551716], [47.369229, 8.491798], [47.373293, 8.503677], [47.37351, 8.542889], [47.37264, 8.529365], [47.393769, 8.472612], [47.376742, 8.540652], [47.374247, 8.544798], [47.370615, 8.511184], [47.402073, 8.49927], [47.335564, 8.516711], [47.385331, 8.494593], [47.37047, 8.537186], [47.4201, 8.50892], [47.419632, 8.505067], [47.368468, 8.529187], [47.371648, 8.547604], [47.378444, 8.540528], [47.370459, 8.537344], [47.409539, 8.54997], [47.366417, 8.540531], [47.362666, 8.555533], [47.378644, 8.528879], [47.399362, 8.542908], [47.362581, 8.534322], [47.38639, 8.518243], [47.376256, 8.544522], [47.371569, 8.515983], [47.37897, 8.524886], [47.360659, 8.529332], [47.35933, 8.522381], [47.37996, 8.55224], [47.393939, 8.541802], [47.378795, 8.542376], [47.377043, 8.533666], [47.354071, 8.575354], [47.419792, 8.500366], [47.420143, 8.53886], [47.422548, 8.4961], [47.373915, 8.535284], [47.401075, 8.491394], [47.375348, 8.561175], [47.36948, 8.520098], [47.369355, 8.525696], [47.367173, 8.533874], [47.395253, 8.485716], [47.403019, 8.572052], [47.379306, 8.553816], [47.40766, 8.584871], [47.339253, 8.529979], [47.376838, 8.544799], [47.364734, 8.56675], [47.398814, 8.540883], [47.372872, 8.567042], [47.364247, 8.531351], [47.424783, 8.548446], [47.379969, 8.541924], [47.408336, 8.565514], [47.374584, 8.550036], [47.400148, 8.590446], [47.369927, 8.510759], [47.360223, 8.551378], [47.414468, 8.475452], [47.349663, 8.56164], [47.358543, 8.518063], [47.375735, 8.549133], [47.375722, 8.559792], [47.370441, 8.529744], [47.364964, 8.508581], [47.403834, 8.546433], [47.376715, 8.541645], [47.399656, 8.468116], [47.374439, 8.541717], [47.395307, 8.491638], [47.388074, 8.519972], [47.381621, 8.513577], [47.386797, 8.547416], [47.369052, 8.528325], [47.426971, 8.491429], [47.360413, 8.552203], [47.369037, 8.527994], [47.358599, 8.517865], [47.394927, 8.525807], [47.386183, 8.518199], [47.37212, 8.487353], [47.374994, 8.545701], [47.416368, 8.544175], [47.357822, 8.519094], [47.373524, 8.556422], [47.370589, 8.526542], [47.342017, 8.530644], [47.408962, 8.550143], [47.358953, 8.516509], [47.372544, 8.517512], [47.399197, 8.541315], [47.381467, 8.55541], [47.414626, 8.54667], [47.37248, 8.478449], [47.386855, 8.489219], [47.420717, 8.502465], [47.372582, 8.521141], [47.36231, 8.557922], [47.373067, 8.500944], [47.383504, 8.530567], [47.365859, 8.550013], [47.368857, 8.560866], [47.376121, 8.525583], [47.403359, 8.497309], [47.359673, 8.516457], [47.391208, 8.545243], [47.386273, 8.518201], [47.413968, 8.542138], [47.356645, 8.523769], [47.378252, 8.541716], [47.382761, 8.540591], [47.361801, 8.560281], [47.357149, 8.52186], [47.409558, 8.544246], [47.372455, 8.515471], [47.372848, 8.533977], [47.363137, 8.549612], [47.368874, 8.519424], [47.383267, 8.484195], [47.409535, 8.575385], [47.37013, 8.551028], [47.368606, 8.547753], [47.386238, 8.518187], [47.380748, 8.515572], [47.411262, 8.57077], [47.350246, 8.560858], [47.387982, 8.524937], [47.37611, 8.540996], [47.385795, 8.496019], [47.371515, 8.550183], [47.381987, 8.54435], [47.362751, 8.548571], [47.394205, 8.490119], [47.392526, 8.538104], [47.386077, 8.481827], [47.405005, 8.505132], [47.355915, 8.592628], [47.376398, 8.489808], [47.363295, 8.513922], [47.394229, 8.493392], [47.408721, 8.546229], [47.383512, 8.530607], [47.36607, 8.533573], [47.393055, 8.539267], [47.404915, 8.534968], [47.368487, 8.524328], [47.381801, 8.516468], [47.379086, 8.483968], [47.360358, 8.548627], [47.369451, 8.555291], [47.381942, 8.52929], [47.399033, 8.542425], [47.419195, 8.54764], [47.364486, 8.552446], [47.404371, 8.533592], [47.3638, 8.535751], [47.375925, 8.553639], [47.372073, 8.53412], [47.384749, 8.502131], [47.370574, 8.546973], [47.373535, 8.544929], [47.372038, 8.53408], [47.413023, 8.550665], [47.356947, 8.555307], [47.369707, 8.525545], [47.338971, 8.527486], [47.393273, 8.493691], [47.3672, 8.533874], [47.369866, 8.520106], [47.38069, 8.516909], [47.364408, 8.546553], [47.347172, 8.534376], [47.374737, 8.537816], [47.36977, 8.552067], [47.408556, 8.546531], [47.410372, 8.538154], [47.414427, 8.519209], [47.364146, 8.551301], [47.354141, 8.575514], [47.369551, 8.525912], [47.36859, 8.560582], [47.37017, 8.548818], [47.399142, 8.514646], [47.360376, 8.550468], [47.384268, 8.507459], [47.379156, 8.522241], [47.42159, 8.550221], [47.362813, 8.559865], [47.413066, 8.546161], [47.374123, 8.515134], [47.340884, 8.519174], [47.370724, 8.535059], [47.389763, 8.537371], [47.375652, 8.553104], [47.392564, 8.536966], [47.370462, 8.539926], [47.368759, 8.528809], [47.38971, 8.512323], [47.370469, 8.551367], [47.366682, 8.559748], [47.347004, 8.528325], [47.382304, 8.499102], [47.365217, 8.533344], [47.364333, 8.529804], [47.393032, 8.524563], [47.407668, 8.58405], [47.397026, 8.530288], [47.367091, 8.544345], [47.36925, 8.525429], [47.377493, 8.504727], [47.369596, 8.52018], [47.422229, 8.497472], [47.344896, 8.533416], [47.362777, 8.559904], [47.378881, 8.542802], [47.389886, 8.531043], [47.376869, 8.520645], [47.379603, 8.525468], [47.363349, 8.55004], [47.384678, 8.531956], [47.410211, 8.534269], [47.376829, 8.543858], [47.377152, 8.541985], [47.368606, 8.547713], [47.376417, 8.527509], [47.366548, 8.540918], [47.367962, 8.544548], [47.369617, 8.525609], [47.397707, 8.584419], [47.356499, 8.551419], [47.372573, 8.535521], [47.39028, 8.514904], [47.361887, 8.547732], [47.389082, 8.488694], [47.382783, 8.57541], [47.37861, 8.565269], [47.375776, 8.500694], [47.372999, 8.531306], [47.37604, 8.54167], [47.380054, 8.522418], [47.377261, 8.510364], [47.344439, 8.530456], [47.383794, 8.529368], [47.351753, 8.559394], [47.367058, 8.536506], [47.3754, 8.518007], [47.368788, 8.541918], [47.424861, 8.53742], [47.390814, 8.522227], [47.423783, 8.535383], [47.368996, 8.537976], [47.42874, 8.48876], [47.360687, 8.524447], [47.396968, 8.539269], [47.372933, 8.534469], [47.371326, 8.536065], [47.378805, 8.483221], [47.377767, 8.537932], [47.353184, 8.526426], [47.416103, 8.547417], [47.395739, 8.545443], [47.362366, 8.504478], [47.367107, 8.545563], [47.370038, 8.511371], [47.407722, 8.584051], [47.414297, 8.55097], [47.407529, 8.489826], [47.36787, 8.560633], [47.375099, 8.485254], [47.385895, 8.532563], [47.371606, 8.515904], [47.401306, 8.551229], [47.372914, 8.524127], [47.403844, 8.576893], [47.384749, 8.502144], [47.412378, 8.546624], [47.329023, 8.513906], [47.369027, 8.525239], [47.385297, 8.500288], [47.37731, 8.539578], [47.36583, 8.539857], [47.374304, 8.543528], [47.375554, 8.535053], [47.380702, 8.525332], [47.385075, 8.530904], [47.341092, 8.527635], [47.364339, 8.531115], [47.373938, 8.503014], [47.389174, 8.512935], [47.38107, 8.49239], [47.380447, 8.506376], [47.357628, 8.520626], [47.361861, 8.51527], [47.360937, 8.506329], [47.37416, 8.544545], [47.375087, 8.518742], [47.369172, 8.52793], [47.370268, 8.537592], [47.364022, 8.497481]], [[47.391814, 8.541109], [47.37959, 8.537254], [47.372631, 8.535085], [47.382684, 8.487018], [47.377854, 8.529684], [47.370599, 8.524504], [47.370427, 8.51788], [47.376579, 8.568723], [47.370206, 8.548819], [47.334244, 8.516473], [47.399149, 8.521681], [47.349538, 8.561558], [47.406761, 8.49515], [47.418246, 8.506139], [47.376327, 8.513179], [47.368768, 8.528796], [47.366456, 8.561756], [47.369885, 8.547541], [47.399649, 8.538198], [47.402852, 8.577137], [47.387476, 8.487285], [47.40391, 8.548872], [47.393873, 8.505704], [47.414612, 8.563063], [47.37436, 8.541437], [47.368247, 8.541099], [47.361964, 8.560218], [47.360696, 8.524368], [47.361, 8.55383], [47.38443, 8.538215], [47.368299, 8.511693], [47.37556, 8.533556], [47.386085, 8.540064], [47.368714, 8.500844], [47.370886, 8.548211], [47.360243, 8.522863], [47.380138, 8.543027], [47.411291, 8.545554], [47.375435, 8.547524], [47.373841, 8.536447], [47.382275, 8.533072], [47.382229, 8.533111], [47.379042, 8.559703], [47.387158, 8.535093], [47.358312, 8.583096], [47.407442, 8.574187], [47.37413, 8.524893], [47.358321, 8.583149], [47.367856, 8.56111], [47.368324, 8.560219], [47.399326, 8.521976], [47.364822, 8.555856], [47.358937, 8.516323], [47.375695, 8.496812], [47.38878, 8.510807], [47.387965, 8.539149], [47.375438, 8.547273], [47.401747, 8.586162], [47.361516, 8.547923], [47.361643, 8.547846], [47.360928, 8.507282], [47.374894, 8.545791], [47.359383, 8.522462], [47.359162, 8.551369], [47.385661, 8.548624], [47.405636, 8.549941], [47.36475, 8.553975], [47.405243, 8.555246], [47.385069, 8.508375], [47.370188, 8.548805], [47.424351, 8.504472], [47.362611, 8.558444], [47.378008, 8.526667], [47.372515, 8.52923], [47.376528, 8.532914], [47.402786, 8.496118], [47.390549, 8.489623], [47.426898, 8.554799], [47.407857, 8.58041], [47.414252, 8.541574], [47.395703, 8.545455], [47.42096, 8.549387], [47.379325, 8.495308], [47.41525, 8.545424], [47.375653, 8.544576], [47.393973, 8.481981], [47.390104, 8.512583], [47.384796, 8.531786], [47.370939, 8.548318], [47.374755, 8.528322], [47.373888, 8.544751], [47.377528, 8.502953], [47.383193, 8.506073], [47.37782, 8.509236], [47.348558, 8.534352], [47.356969, 8.507401], [47.382054, 8.516314], [47.369452, 8.525884], [47.377112, 8.529152], [47.369025, 8.525385], [47.409511, 8.542576], [47.376783, 8.49784], [47.367408, 8.54128], [47.412959, 8.540394], [47.384409, 8.488218], [47.371424, 8.536186], [47.370125, 8.54883], [47.380652, 8.525808], [47.377223, 8.540225], [47.377935, 8.532519], [47.365696, 8.566771], [47.389028, 8.49562], [47.367271, 8.523535], [47.405972, 8.558879], [47.379062, 8.538846], [47.386797, 8.535231], [47.380824, 8.572468], [47.362162, 8.549062], [47.369097, 8.5254], [47.362699, 8.518928], [47.379516, 8.537465], [47.364919, 8.54761], [47.368252, 8.536782], [47.37827, 8.519906], [47.371633, 8.525452], [47.365728, 8.560694], [47.36274, 8.56087], [47.369372, 8.525869], [47.403665, 8.571298], [47.423032, 8.548051], [47.385508, 8.517311], [47.415351, 8.544274], [47.369986, 8.556653], [47.330786, 8.515847], [47.375485, 8.560118], [47.362768, 8.563571], [47.363277, 8.549972], [47.387949, 8.486658], [47.40596, 8.553579], [47.370134, 8.548791], [47.402228, 8.507872], [47.409399, 8.53828], [47.409007, 8.550091], [47.377858, 8.52828], [47.379259, 8.528573], [47.402241, 8.545605], [47.376713, 8.539023], [47.356626, 8.551289], [47.378274, 8.526156], [47.368125, 8.536846], [47.364647, 8.566431], [47.353807, 8.558206], [47.392402, 8.523636], [47.386477, 8.518536], [47.394856, 8.52574], [47.366149, 8.545054], [47.358352, 8.587227], [47.357144, 8.55825], [47.399501, 8.542487], [47.393282, 8.53902], [47.366889, 8.520165], [47.411248, 8.567629], [47.37273, 8.52934], [47.351996, 8.534118], [47.391946, 8.510778], [47.35427, 8.557793], [47.410618, 8.572294], [47.359924, 8.56183], [47.401277, 8.57909], [47.389209, 8.527492], [47.38138, 8.491932], [47.371924, 8.49111], [47.369097, 8.52348], [47.388189, 8.490968], [47.369319, 8.541889], [47.377556, 8.528843], [47.378429, 8.531695], [47.380431, 8.548118], [47.402419, 8.535433], [47.400949, 8.50411], [47.373889, 8.544671], [47.376895, 8.483607], [47.374892, 8.519466], [47.426986, 8.546609], [47.360295, 8.566233], [47.360298, 8.566868], [47.404249, 8.564964], [47.405195, 8.50507], [47.374169, 8.514049], [47.374853, 8.518843], [47.36648, 8.545272], [47.358639, 8.557143], [47.366889, 8.520165], [47.366989, 8.536214], [47.370653, 8.517765], [47.389543, 8.521618], [47.370188, 8.548818], [47.409486, 8.540468], [47.382743, 8.540604], [47.389989, 8.491785], [47.412246, 8.524505], [47.373828, 8.503211], [47.37277, 8.499945], [47.380418, 8.54286], [47.385339, 8.530539], [47.376383, 8.510068], [47.371939, 8.489455], [47.38322, 8.506047], [47.409084, 8.547774], [47.425744, 8.49383], [47.408053, 8.577857], [47.395357, 8.521259], [47.357963, 8.520447], [47.399465, 8.521568], [47.368709, 8.501334], [47.358455, 8.517783], [47.397672, 8.533348], [47.422703, 8.49878], [47.387402, 8.487482], [47.394249, 8.480278], [47.367967, 8.540298], [47.404632, 8.556969], [47.36268, 8.510362], [47.420753, 8.549342], [47.370188, 8.548805], [47.391632, 8.523237], [47.401474, 8.581916], [47.395595, 8.48563], [47.410781, 8.545212], [47.368095, 8.523844], [47.383316, 8.539914], [47.378062, 8.510327], [47.363114, 8.517864], [47.371795, 8.534048], [47.364595, 8.566218], [47.39072, 8.539749], [47.377581, 8.511814], [47.399614, 8.54759], [47.379354, 8.542269], [47.364077, 8.547222], [47.389623, 8.51199], [47.374477, 8.546127], [47.369639, 8.467179], [47.370434, 8.514199], [47.381021, 8.528689], [47.385111, 8.503847], [47.3734, 8.503864], [47.379124, 8.495675], [47.353032, 8.572115], [47.398386, 8.537642], [47.35612, 8.520317], [47.372011, 8.534966], [47.381472, 8.571528], [47.373707, 8.559803], [47.405802, 8.53541], [47.375212, 8.544593], [47.391493, 8.538877], [47.380313, 8.548222], [47.355913, 8.535536], [47.382274, 8.495499], [47.369775, 8.508677], [47.365559, 8.53907], [47.349119, 8.562065], [47.373808, 8.535162], [47.385926, 8.532153], [47.365741, 8.536016], [47.369893, 8.552334], [47.372855, 8.535116], [47.413697, 8.520373], [47.397863, 8.534001], [47.369503, 8.526203], [47.410724, 8.544588], [47.414533, 8.52047], [47.351956, 8.504746], [47.416677, 8.546713], [47.369292, 8.555923], [47.408546, 8.546597], [47.43116, 8.516102], [47.36171, 8.511203], [47.366756, 8.541836], [47.414234, 8.53402], [47.376779, 8.536839], [47.367117, 8.561266], [47.369945, 8.5488], [47.378602, 8.509398], [47.372256, 8.535739], [47.393209, 8.530647], [47.428157, 8.542631], [47.397533, 8.533716], [47.336063, 8.524872], [47.338359, 8.532224], [47.411275, 8.562104], [47.384229, 8.489181], [47.388646, 8.491136], [47.363174, 8.530641], [47.405794, 8.590714], [47.405867, 8.590676], [47.371223, 8.520253], [47.368855, 8.548036], [47.425719, 8.553913], [47.388026, 8.528912], [47.374546, 8.539905], [47.375838, 8.536409], [47.407148, 8.586609], [47.399047, 8.51422], [47.393212, 8.524593], [47.373672, 8.534391], [47.382843, 8.530011], [47.375643, 8.559552], [47.375502, 8.56384], [47.377276, 8.523262], [47.37036, 8.530788], [47.399362, 8.542908], [47.384702, 8.531334], [47.37996, 8.555948], [47.391933, 8.517984], [47.375763, 8.536752], [47.374044, 8.534055], [47.383971, 8.504579], [47.362196, 8.559455], [47.346023, 8.531269], [47.352133, 8.558237], [47.414037, 8.561076], [47.39447, 8.53417], [47.38061, 8.536931], [47.37606, 8.535765], [47.422674, 8.546944], [47.361327, 8.505926], [47.365337, 8.52159], [47.366233, 8.537217], [47.369767, 8.535437], [47.371419, 8.530095], [47.400866, 8.537018], [47.344792, 8.531125], [47.362778, 8.519128], [47.421333, 8.549871], [47.380434, 8.543999], [47.397215, 8.531193], [47.400176, 8.547059], [47.416865, 8.54017], [47.383399, 8.543412], [47.410804, 8.558729], [47.380375, 8.493634], [47.360998, 8.51712], [47.370809, 8.524111], [47.418132, 8.508721], [47.360433, 8.601291], [47.367195, 8.544784], [47.389228, 8.491372], [47.379235, 8.508046], [47.387009, 8.519381], [47.391363, 8.537497], [47.419512, 8.505383], [47.415796, 8.558741], [47.369112, 8.554079], [47.377071, 8.535402], [47.339411, 8.519885], [47.375957, 8.541854], [47.376316, 8.547569], [47.341794, 8.52], [47.339141, 8.519867], [47.381275, 8.533237], [47.381491, 8.503337], [47.361386, 8.551177], [47.390468, 8.539797], [47.390944, 8.489724], [47.368311, 8.50453], [47.377149, 8.540422], [47.374458, 8.521576], [47.413776, 8.546189], [47.375098, 8.518623], [47.375009, 8.52801], [47.347331, 8.532791], [47.414568, 8.561047], [47.389344, 8.537906], [47.37407, 8.528414], [47.380233, 8.483461], [47.331077, 8.53562], [47.348165, 8.529222], [47.363535, 8.532436], [47.369831, 8.55228], [47.413843, 8.545819], [47.40224, 8.556005], [47.40816, 8.57248], [47.396104, 8.526904], [47.350366, 8.560583], [47.413088, 8.558816], [47.417948, 8.546382], [47.381795, 8.489835], [47.37676, 8.535077], [47.411336, 8.544574], [47.38336, 8.474913], [47.369124, 8.525427], [47.378875, 8.526314], [47.399843, 8.543342], [47.367396, 8.545371], [47.409965, 8.541247], [47.404885, 8.572582], [47.366217, 8.548272], [47.395506, 8.545372], [47.374518, 8.530542], [47.389129, 8.551862], [47.401858, 8.531089], [47.369231, 8.541688], [47.350054, 8.562125], [47.374765, 8.529077], [47.419522, 8.508206], [47.372611, 8.534317], [47.379238, 8.538386], [47.379993, 8.527966], [47.387936, 8.536526], [47.361135, 8.522709], [47.414124, 8.518951], [47.393199, 8.53066], [47.368645, 8.524649], [47.383236, 8.574228], [47.354158, 8.531886], [47.418761, 8.540408], [47.386185, 8.51808], [47.393482, 8.512942], [47.429839, 8.544574], [47.371787, 8.529228], [47.399896, 8.495345], [47.386241, 8.517776], [47.424591, 8.495889], [47.367751, 8.534627], [47.393419, 8.529366], [47.409316, 8.549793], [47.414291, 8.539362], [47.344526, 8.529809], [47.373538, 8.537077], [47.355703, 8.556552], [47.377571, 8.546205], [47.397444, 8.553414], [47.390902, 8.523368], [47.353637, 8.554351], [47.415983, 8.527867], [47.378625, 8.519463], [47.37067, 8.56493], [47.378449, 8.523789], [47.383424, 8.511243], [47.359948, 8.559381], [47.383192, 8.506126], [47.380534, 8.53448], [47.377093, 8.540699], [47.370154, 8.521065], [47.376429, 8.534859], [47.406643, 8.548068], [47.382743, 8.540604], [47.364983, 8.531486], [47.396249, 8.487961], [47.364678, 8.548386], [47.372431, 8.532433], [47.409021, 8.543957], [47.367615, 8.555411], [47.40692, 8.487588], [47.375078, 8.518755], [47.373017, 8.547368], [47.365183, 8.519773], [47.37551, 8.536866], [47.35289, 8.557181], [47.414438, 8.51901], [47.363757, 8.547798], [47.384714, 8.548909], [47.370197, 8.548819], [47.376798, 8.543341], [47.36508, 8.553293], [47.371325, 8.52089], [47.373831, 8.545955], [47.356237, 8.535582], [47.39736, 8.527275], [47.410385, 8.548106], [47.415019, 8.515616], [47.374725, 8.518099], [47.385869, 8.492776], [47.369073, 8.530828], [47.380962, 8.492348], [47.373535, 8.545008], [47.387188, 8.488272], [47.383768, 8.540599], [47.35767, 8.572505], [47.370179, 8.548792], [47.344951, 8.533338], [47.378842, 8.525122], [47.386447, 8.534164], [47.398362, 8.537403], [47.40485, 8.548388], [47.381888, 8.531117], [47.391031, 8.521132], [47.384581, 8.52508], [47.362095, 8.551324], [47.407572, 8.546855], [47.37387, 8.544684], [47.388533, 8.483809], [47.397643, 8.588206], [47.348602, 8.563457], [47.378303, 8.528819], [47.397821, 8.538399], [47.386933, 8.490625], [47.421385, 8.550032], [47.369207, 8.528024], [47.356592, 8.523715], [47.38068, 8.538098], [47.359099, 8.550454], [47.414569, 8.56008], [47.360275, 8.566471], [47.404427, 8.572467], [47.340687, 8.529558], [47.395149, 8.524222], [47.381646, 8.51673], [47.357345, 8.550431], [47.418317, 8.552936], [47.349947, 8.533944], [47.4108, 8.545173], [47.376451, 8.489928], [47.422281, 8.547585], [47.355333, 8.600386], [47.359214, 8.522286], [47.402342, 8.499316], [47.365388, 8.54562], [47.361619, 8.514259], [47.393383, 8.500329], [47.357384, 8.588662], [47.380936, 8.492255], [47.381795, 8.489835], [47.404208, 8.573707], [47.367807, 8.560579], [47.373876, 8.546022], [47.409978, 8.552046], [47.399692, 8.504827], [47.393821, 8.524818], [47.399635, 8.50517], [47.368325, 8.536691], [47.328651, 8.52967], [47.369755, 8.540481], [47.378564, 8.542067], [47.404352, 8.533618], [47.361455, 8.56541], [47.365116, 8.55328], [47.375718, 8.564771], [47.391107, 8.46954], [47.412972, 8.538128], [47.416296, 8.545128], [47.358294, 8.586762], [47.366639, 8.547447], [47.402705, 8.535691], [47.365338, 8.494237], [47.380205, 8.558456], [47.369032, 8.528457], [47.377599, 8.492255], [47.377892, 8.537047], [47.37087, 8.520524], [47.362613, 8.497215], [47.369318, 8.525815], [47.395363, 8.546243], [47.426278, 8.554733], [47.37582, 8.512546], [47.415106, 8.510118], [47.374476, 8.541585], [47.397989, 8.474535], [47.405909, 8.480983], [47.377085, 8.527244], [47.409523, 8.549837], [47.373924, 8.53155], [47.407936, 8.583327], [47.393947, 8.494711], [47.379877, 8.527884], [47.377523, 8.498623], [47.35709, 8.535758], [47.365117, 8.553214], [47.402887, 8.580966], [47.405835, 8.591086], [47.373961, 8.517051], [47.37786, 8.544224], [47.381426, 8.517162], [47.414464, 8.553213], [47.334022, 8.531447], [47.410341, 8.544196], [47.378042, 8.510605], [47.412123, 8.5507], [47.3718, 8.516279], [47.374618, 8.487707], [47.406481, 8.550012], [47.399531, 8.496901], [47.40591, 8.491795], [47.405017, 8.571022], [47.423891, 8.502647], [47.386147, 8.524993], [47.377696, 8.525403], [47.413748, 8.545433], [47.373544, 8.527887], [47.393067, 8.524683], [47.370285, 8.515758], [47.372213, 8.553389], [47.379269, 8.537897], [47.368899, 8.54809], [47.374093, 8.489021], [47.393478, 8.512452], [47.356418, 8.51152], [47.425926, 8.493542], [47.375005, 8.513126], [47.390064, 8.485494], [47.373389, 8.531976], [47.42477, 8.537564], [47.367863, 8.539833], [47.402824, 8.499736], [47.421215, 8.511858], [47.383088, 8.530784], [47.404919, 8.557094], [47.386461, 8.51835], [47.428058, 8.547387], [47.383424, 8.533241], [47.376381, 8.527574], [47.392369, 8.491209], [47.378486, 8.528452], [47.392068, 8.500502], [47.374512, 8.541586], [47.363366, 8.557507], [47.375544, 8.541819], [47.395748, 8.545483], [47.431151, 8.516101], [47.366711, 8.542748], [47.410611, 8.557254], [47.369485, 8.526255], [47.366202, 8.545187], [47.387692, 8.538494], [47.359324, 8.569906], [47.376491, 8.528252], [47.408782, 8.549252], [47.36186, 8.547692], [47.365391, 8.53111], [47.41002, 8.527851], [47.366833, 8.543108], [47.40992, 8.541259], [47.360343, 8.523725], [47.397174, 8.594555], [47.375923, 8.559492], [47.352706, 8.524642], [47.360369, 8.523845], [47.410877, 8.563209], [47.389191, 8.48859], [47.335269, 8.541198], [47.337064, 8.519825], [47.386823, 8.547536], [47.403395, 8.548133], [47.416888, 8.545326], [47.402408, 8.582943], [47.364574, 8.546133], [47.380925, 8.572284], [47.383517, 8.533005], [47.419907, 8.535303], [47.36022, 8.562882], [47.386277, 8.493473], [47.373923, 8.502749], [47.387548, 8.537617], [47.405799, 8.591112], [47.379989, 8.520735], [47.400683, 8.532589], [47.396357, 8.485883], [47.406543, 8.584185], [47.379909, 8.527329], [47.377665, 8.538274], [47.36067, 8.566519], [47.384701, 8.527638], [47.378157, 8.52618], [47.376038, 8.488768], [47.403835, 8.546393], [47.378917, 8.527613], [47.374072, 8.527289], [47.390949, 8.507752], [47.33707, 8.520089], [47.394268, 8.484133], [47.3897, 8.511541], [47.410645, 8.550987], [47.367587, 8.545176], [47.354579, 8.53204], [47.414215, 8.51886], [47.365854, 8.546703], [47.374895, 8.536244], [47.379794, 8.53759], [47.404088, 8.548081], [47.375377, 8.485378], [47.35863, 8.517336], [47.359332, 8.507674], [47.378403, 8.52012], [47.382096, 8.505071], [47.37395, 8.544832], [47.367339, 8.530607], [47.37272, 8.56778], [47.376159, 8.526338], [47.367897, 8.494804], [47.413557, 8.554069], [47.377728, 8.517286], [47.3705, 8.492485], [47.368223, 8.544527], [47.364184, 8.54737], [47.367155, 8.54428], [47.414423, 8.537787], [47.385298, 8.536776], [47.39915, 8.521535], [47.373555, 8.534416], [47.357722, 8.599882], [47.409567, 8.5377], [47.378005, 8.521264], [47.368741, 8.543995], [47.375666, 8.537518], [47.365388, 8.535241], [47.372349, 8.505657], [47.416646, 8.555459], [47.411526, 8.54544], [47.368345, 8.527887], [47.381467, 8.529042], [47.39108, 8.522629], [47.373174, 8.503926], [47.379808, 8.546489], [47.411926, 8.538345], [47.391199, 8.488298], [47.42744, 8.539567], [47.369256, 8.527614], [47.366902, 8.544394], [47.395234, 8.508394], [47.357323, 8.550827], [47.342024, 8.530856], [47.420697, 8.551475], [47.414778, 8.519229], [47.359479, 8.551164], [47.349817, 8.575316], [47.385573, 8.536159], [47.373617, 8.536377], [47.354681, 8.575565], [47.373599, 8.527809], [47.373861, 8.544684], [47.356589, 8.527792], [47.418488, 8.549163], [47.378344, 8.52731], [47.356557, 8.532186], [47.391629, 8.512997], [47.386383, 8.48182], [47.429908, 8.54956], [47.359271, 8.534347], [47.414544, 8.558039], [47.4059, 8.580912], [47.352453, 8.557781], [47.371564, 8.535646], [47.402157, 8.585561], [47.388578, 8.483717], [47.336678, 8.533089], [47.388164, 8.484782], [47.397432, 8.509935], [47.353287, 8.525091], [47.41162, 8.544951], [47.391164, 8.489225], [47.36845, 8.54714], [47.361578, 8.561031], [47.378393, 8.519286], [47.381827, 8.533751], [47.377548, 8.54198], [47.38273, 8.532472], [47.377695, 8.541731], [47.374115, 8.502342], [47.406353, 8.537979], [47.378015, 8.508658], [47.421259, 8.542554], [47.370304, 8.548874], [47.402931, 8.581895], [47.356635, 8.551263], [47.390823, 8.52224], [47.40863, 8.503257], [47.386541, 8.52806], [47.387412, 8.497257], [47.358924, 8.557374], [47.401674, 8.50064], [47.383192, 8.547248], [47.403225, 8.497253], [47.359936, 8.522023], [47.377856, 8.508297], [47.369031, 8.540956], [47.404501, 8.558464], [47.364834, 8.566646], [47.392136, 8.509709], [47.376096, 8.535818], [47.380233, 8.515827], [47.373948, 8.476266], [47.374468, 8.502164], [47.410295, 8.54242], [47.358666, 8.585552], [47.377668, 8.512041], [47.374273, 8.526909], [47.391904, 8.518195], [47.374251, 8.517732], [47.370016, 8.511834], [47.374686, 8.52411], [47.383471, 8.528342], [47.414594, 8.483472], [47.398563, 8.538931], [47.37109, 8.520091], [47.369373, 8.525683], [47.366166, 8.540486], [47.381291, 8.528602], [47.373575, 8.51985], [47.348085, 8.571163], [47.33618, 8.524848], [47.378943, 8.478959], [47.402649, 8.49234], [47.385789, 8.528601], [47.359856, 8.531473], [47.37568, 8.544563], [47.417565, 8.483186], [47.407537, 8.579118], [47.36182, 8.560202], [47.431774, 8.543514], [47.36781, 8.539713], [47.406522, 8.550357], [47.375541, 8.526948], [47.359252, 8.592594], [47.376409, 8.527429], [47.409243, 8.547062], [47.405201, 8.585282], [47.378669, 8.519503], [47.365795, 8.532151], [47.40018, 8.546728], [47.386369, 8.51852], [47.36994, 8.564146], [47.398328, 8.54184], [47.393971, 8.525112], [47.364836, 8.554387], [47.408884, 8.557244], [47.361588, 8.503006], [47.359945, 8.522989], [47.376122, 8.534018], [47.400083, 8.590644], [47.405254, 8.502606], [47.380638, 8.548083], [47.354372, 8.555544], [47.382876, 8.474639], [47.403135, 8.486374], [47.397165, 8.530768], [47.38335, 8.515254], [47.402707, 8.552371], [47.364654, 8.536775], [47.363716, 8.562307], [47.393281, 8.501652], [47.39339, 8.500581], [47.376252, 8.484018], [47.383094, 8.532056], [47.420801, 8.549078], [47.3756, 8.548176], [47.341185, 8.536834], [47.419087, 8.546697], [47.419192, 8.507934], [47.388374, 8.545237], [47.369163, 8.527943], [47.38693, 8.544823], [47.35809, 8.553385], [47.369106, 8.549074], [47.365031, 8.531195], [47.389377, 8.521072], [47.362461, 8.54883], [47.373697, 8.544998], [47.385253, 8.536722], [47.364466, 8.555478], [47.383316, 8.539927], [47.417899, 8.554292], [47.398988, 8.541563], [47.373866, 8.49516], [47.396456, 8.528713], [47.394142, 8.493085], [47.360702, 8.55021], [47.418048, 8.502252], [47.376545, 8.540635], [47.389663, 8.511554], [47.373814, 8.502853], [47.410883, 8.54491], [47.404201, 8.561531], [47.368955, 8.540412], [47.366522, 8.536164], [47.415268, 8.510095], [47.407144, 8.586185], [47.38592, 8.521399], [47.390696, 8.508833], [47.409256, 8.54481], [47.378411, 8.541084], [47.377018, 8.537188], [47.365081, 8.531567], [47.378186, 8.517361], [47.378682, 8.54199], [47.408817, 8.55022], [47.37429, 8.522222], [47.379474, 8.527638], [47.381824, 8.483624], [47.372954, 8.522751], [47.379867, 8.525103], [47.363333, 8.52045], [47.373168, 8.494842], [47.364842, 8.566673], [47.375545, 8.548268], [47.378791, 8.522883], [47.374845, 8.518711], [47.370188, 8.548818], [47.38491, 8.495379], [47.392684, 8.524265], [47.425564, 8.497684], [47.36641, 8.541312], [47.386861, 8.528424], [47.374499, 8.540063], [47.365851, 8.55266], [47.410233, 8.546075], [47.384408, 8.542373], [47.357643, 8.572518], [47.39133, 8.536198], [47.367083, 8.523439], [47.373588, 8.553524], [47.364624, 8.554899], [47.407858, 8.536751], [47.367128, 8.544319], [47.394329, 8.48938], [47.401176, 8.58293], [47.365034, 8.536518], [47.395761, 8.482189], [47.369245, 8.49201], [47.362233, 8.526398], [47.371263, 8.530356], [47.364816, 8.570327], [47.367739, 8.530178], [47.404083, 8.563556], [47.362052, 8.52654], [47.370227, 8.539101], [47.364632, 8.537171], [47.392412, 8.538737], [47.379583, 8.510252], [47.384118, 8.548248], [47.369921, 8.508442], [47.377389, 8.529436], [47.390763, 8.521961], [47.368574, 8.499385], [47.383913, 8.542416], [47.361625, 8.526055], [47.357081, 8.535771], [47.401857, 8.548193], [47.391369, 8.550916], [47.431772, 8.531358], [47.402105, 8.579956], [47.335342, 8.541146], [47.383326, 8.486594], [47.373852, 8.535282], [47.342197, 8.526797], [47.361162, 8.526562], [47.366938, 8.544342], [47.364533, 8.531503], [47.420911, 8.548842], [47.381546, 8.548194], [47.378927, 8.519826], [47.396554, 8.528834], [47.391068, 8.52296], [47.391018, 8.522509], [47.361046, 8.571279], [47.361046, 8.571293], [47.36187, 8.515271], [47.39432, 8.489353], [47.399771, 8.544334], [47.339954, 8.529993], [47.366185, 8.545028], [47.411954, 8.528765], [47.375148, 8.525748], [47.364918, 8.565377], [47.430433, 8.542625], [47.356046, 8.553607], [47.360589, 8.535751], [47.381803, 8.533473], [47.355631, 8.55655], [47.35205, 8.50533], [47.37384, 8.53658], [47.38797, 8.485374], [47.424784, 8.495495], [47.357635, 8.553971], [47.390994, 8.486122], [47.418066, 8.51972], [47.380365, 8.513234], [47.386565, 8.540643], [47.378396, 8.54556], [47.378284, 8.510636], [47.381087, 8.555667], [47.362767, 8.522226], [47.405148, 8.500352], [47.385778, 8.520204], [47.364842, 8.566686], [47.40712, 8.586741], [47.410155, 8.566308], [47.369783, 8.556225], [47.370119, 8.532412], [47.366176, 8.540328], [47.3691, 8.525109], [47.426942, 8.546542], [47.369839, 8.510479], [47.348343, 8.534255], [47.379411, 8.489801], [47.338223, 8.527603], [47.370695, 8.549359], [47.358119, 8.518173], [47.405928, 8.540103], [47.381034, 8.569373], [47.415759, 8.481944], [47.387408, 8.500647], [47.399852, 8.495292], [47.382129, 8.488716], [47.373713, 8.503049], [47.378801, 8.478705], [47.378943, 8.478946], [47.394137, 8.508279], [47.397235, 8.540506], [47.369461, 8.525897], [47.419677, 8.548021], [47.326001, 8.518727], [47.39788, 8.534121], [47.370426, 8.524685], [47.386494, 8.529145], [47.371324, 8.520096], [47.40237, 8.545356], [47.369398, 8.525922], [47.369666, 8.533793], [47.38427, 8.52849], [47.407404, 8.549342], [47.33742, 8.519236], [47.376033, 8.488384], [47.431363, 8.51649], [47.415755, 8.531043], [47.381519, 8.548127], [47.38322, 8.506021], [47.404888, 8.576822], [47.361715, 8.547808], [47.361811, 8.560215], [47.393607, 8.512137], [47.371536, 8.511772], [47.407878, 8.565425], [47.409377, 8.550046], [47.390867, 8.522307], [47.380799, 8.512024], [47.406816, 8.550655], [47.404424, 8.533593], [47.409536, 8.535248], [47.375112, 8.545571], [47.378966, 8.542393], [47.376103, 8.536004], [47.382768, 8.514064], [47.416809, 8.547021], [47.366148, 8.540499], [47.394096, 8.493177], [47.375496, 8.518353], [47.37025, 8.556327], [47.366787, 8.54978], [47.40182, 8.548232], [47.375896, 8.494486], [47.384761, 8.497906], [47.361955, 8.560191], [47.365619, 8.552444], [47.366777, 8.520599], [47.377539, 8.54198], [47.387229, 8.518962], [47.380097, 8.522605], [47.409319, 8.546706], [47.408956, 8.566521], [47.414331, 8.518014], [47.373041, 8.534551], [47.401393, 8.588261], [47.429343, 8.542854], [47.372868, 8.562818], [47.393658, 8.512416], [47.409037, 8.539492], [47.375221, 8.550208], [47.424382, 8.544262], [47.385346, 8.493944], [47.404145, 8.532739], [47.373616, 8.538389], [47.380283, 8.512398], [47.370179, 8.548818], [47.376805, 8.535052], [47.381035, 8.503964], [47.379431, 8.527518], [47.379261, 8.517847], [47.358281, 8.585319], [47.413827, 8.509297], [47.387878, 8.520763], [47.36018, 8.534273], [47.328702, 8.517525], [47.372542, 8.529257], [47.35294, 8.524673], [47.389891, 8.538036], [47.386155, 8.525112], [47.375989, 8.559162], [47.375093, 8.528647], [47.373456, 8.52002], [47.381692, 8.547985], [47.382353, 8.547522], [47.363778, 8.567021], [47.393736, 8.502111], [47.365551, 8.566926], [47.351035, 8.582211], [47.389786, 8.471449], [47.360504, 8.526601], [47.387896, 8.524525], [47.368972, 8.540518], [47.377321, 8.563719], [47.387182, 8.478935], [47.379709, 8.566908], [47.379719, 8.566882], [47.398864, 8.533744], [47.387922, 8.498538], [47.393222, 8.524461], [47.400958, 8.491392], [47.392973, 8.522218], [47.391188, 8.515863], [47.385978, 8.548459], [47.372935, 8.536164], [47.384168, 8.575506], [47.397958, 8.532559], [47.353488, 8.55861], [47.378633, 8.559165], [47.402854, 8.536065], [47.373275, 8.520135], [47.377606, 8.558441], [47.34006, 8.530273], [47.359542, 8.549245], [47.362233, 8.55939], [47.379423, 8.51879], [47.375808, 8.487373], [47.39375, 8.502443], [47.383083, 8.514997], [47.423697, 8.54442], [47.378051, 8.510565], [47.383594, 8.545668], [47.367741, 8.509802], [47.366951, 8.543945], [47.377759, 8.498336], [47.388756, 8.536291], [47.378413, 8.496641], [47.369358, 8.528265], [47.366061, 8.533533], [47.374644, 8.538106], [47.424157, 8.549003], [47.368738, 8.501216], [47.370302, 8.522617], [47.379015, 8.495766], [47.363765, 8.551677], [47.377368, 8.512432], [47.372404, 8.505552], [47.38472, 8.527493], [47.39177, 8.513318], [47.406481, 8.550012], [47.36494, 8.537879], [47.379537, 8.558773], [47.386225, 8.51857], [47.389731, 8.512005], [47.392499, 8.50255], [47.393842, 8.481555], [47.378592, 8.542928], [47.387297, 8.533718], [47.369726, 8.536866], [47.414133, 8.518964], [47.371073, 8.523811], [47.396461, 8.543312], [47.373939, 8.476266], [47.39285, 8.474886], [47.415598, 8.563362], [47.377183, 8.521632], [47.383782, 8.549486], [47.360962, 8.588872], [47.411697, 8.537864], [47.3682, 8.546036], [47.413716, 8.536527], [47.375661, 8.537134], [47.336682, 8.517316], [47.372921, 8.528192], [47.426466, 8.55487], [47.400117, 8.547654], [47.385952, 8.517982], [47.35963, 8.593516], [47.363742, 8.575269], [47.354736, 8.555102], [47.401498, 8.578538], [47.392472, 8.487794], [47.391627, 8.480823], [47.379065, 8.542329], [47.374183, 8.543009], [47.403608, 8.534278], [47.410366, 8.548159], [47.426567, 8.544281], [47.341112, 8.536938], [47.368052, 8.546378], [47.380825, 8.503417], [47.400881, 8.517278], [47.366948, 8.541443], [47.337916, 8.5017], [47.358537, 8.551832], [47.382414, 8.529697], [47.416004, 8.530439], [47.387251, 8.501081], [47.397949, 8.532559], [47.412962, 8.538221], [47.371272, 8.536077], [47.361217, 8.502217], [47.364577, 8.566244], [47.382886, 8.513934], [47.346101, 8.534421], [47.386529, 8.523596], [47.396321, 8.543852], [47.39783, 8.529006], [47.37659, 8.525394], [47.35285, 8.510244], [47.360421, 8.549568], [47.369275, 8.527482], [47.379366, 8.511386], [47.424816, 8.537458], [47.344374, 8.526815], [47.377034, 8.53744], [47.383078, 8.530903], [47.409159, 8.547444], [47.413757, 8.524549], [47.37617, 8.546943], [47.36226, 8.559324], [47.375482, 8.520829], [47.384482, 8.492974], [47.39488, 8.544988], [47.369933, 8.549131], [47.355942, 8.555961], [47.370152, 8.548804], [47.41722, 8.543504], [47.429345, 8.546407], [47.358973, 8.549565], [47.403114, 8.588881], [47.411649, 8.562457], [47.3835, 8.515655], [47.367107, 8.545563], [47.374435, 8.541107], [47.385189, 8.536814], [47.422502, 8.551725], [47.381487, 8.530751], [47.34845, 8.534363], [47.411169, 8.526152], [47.42323, 8.498181], [47.40679, 8.550522], [47.347728, 8.563571], [47.370061, 8.548909], [47.358319, 8.571486], [47.361267, 8.487934], [47.337661, 8.521372], [47.356217, 8.55831], [47.352114, 8.523545], [47.369657, 8.467206], [47.333386, 8.518692], [47.36377, 8.57515], [47.376174, 8.528497], [47.360473, 8.535643], [47.40562, 8.537473], [47.388152, 8.520239], [47.395257, 8.540346], [47.344442, 8.53297], [47.379099, 8.538754], [47.389979, 8.522064], [47.373216, 8.550113], [47.355512, 8.56134], [47.343106, 8.534359], [47.363103, 8.518089], [47.386964, 8.488122], [47.386632, 8.518301], [47.361879, 8.547639], [47.37629, 8.547555], [47.390721, 8.522543], [47.377265, 8.53967], [47.374646, 8.487588], [47.376662, 8.549006], [47.396134, 8.527528], [47.357223, 8.552851], [47.413443, 8.530187], [47.394201, 8.488543], [47.392356, 8.539001], [47.376019, 8.528706], [47.377487, 8.538946], [47.38808, 8.485085], [47.38339, 8.543465], [47.376917, 8.544059], [47.365108, 8.553214], [47.406835, 8.550589], [47.404641, 8.556983], [47.374032, 8.544767], [47.366813, 8.535786], [47.419625, 8.50781], [47.402027, 8.499336], [47.358103, 8.498488], [47.39822, 8.532472], [47.379853, 8.554847], [47.393003, 8.525689], [47.419272, 8.507976], [47.3695, 8.52844], [47.387945, 8.526937], [47.344994, 8.533564], [47.408417, 8.57658], [47.363635, 8.531378], [47.381041, 8.532265], [47.396846, 8.534113], [47.363497, 8.546733], [47.397364, 8.502661], [47.35556, 8.507969], [47.430557, 8.547492], [47.407103, 8.585747], [47.35206, 8.558342], [47.367996, 8.544708], [47.36403, 8.511289], [47.342377, 8.530691], [47.335384, 8.525282], [47.369565, 8.520629], [47.381129, 8.538173], [47.381427, 8.53806], [47.335016, 8.528133], [47.42002, 8.508826], [47.371069, 8.518436], [47.406871, 8.55059], [47.387704, 8.478932], [47.413721, 8.54628], [47.373425, 8.513756], [47.422904, 8.511097], [47.369671, 8.525584], [47.367639, 8.565898], [47.395766, 8.54543], [47.370722, 8.535284], [47.417683, 8.51343], [47.3932, 8.530647], [47.401553, 8.495113], [47.401392, 8.53467], [47.41818, 8.546638], [47.372907, 8.567056], [47.34934, 8.534381], [47.373899, 8.52943], [47.379121, 8.552461], [47.36904, 8.538043], [47.381344, 8.542045], [47.405432, 8.592707], [47.372605, 8.509105], [47.359561, 8.55102], [47.397946, 8.510753], [47.363869, 8.535103], [47.416922, 8.51311], [47.378903, 8.523335], [47.375546, 8.529279], [47.379455, 8.529716], [47.397759, 8.533562], [47.379505, 8.547132], [47.3998, 8.53938], [47.365739, 8.516103], [47.41726, 8.523136], [47.381148, 8.491663], [47.36044, 8.561523], [47.397551, 8.501976], [47.394137, 8.530481], [47.354788, 8.556281], [47.360734, 8.585583], [47.397683, 8.509105], [47.405914, 8.581349], [47.38196, 8.548084], [47.393425, 8.503615], [47.42308, 8.542115], [47.383465, 8.484226], [47.402098, 8.497562], [47.422375, 8.53872], [47.402556, 8.492709], [47.374833, 8.527662], [47.369014, 8.53795], [47.386742, 8.547521], [47.421048, 8.549561], [47.40198, 8.499653], [47.360944, 8.505575], [47.38494, 8.508744], [47.370994, 8.548186], [47.347398, 8.516117], [47.376421, 8.560006], [47.353996, 8.53089], [47.37165, 8.502386], [47.365126, 8.553215], [47.393021, 8.526669], [47.352403, 8.573875], [47.396391, 8.528023], [47.374619, 8.541681], [47.391864, 8.53205], [47.367738, 8.533118], [47.375168, 8.492511], [47.363158, 8.594175], [47.369607, 8.528614], [47.357065, 8.55523], [47.37865, 8.519622], [47.370182, 8.51324], [47.370499, 8.510162], [47.417044, 8.548722], [47.382696, 8.529385], [47.371197, 8.490963], [47.368896, 8.538133], [47.40661, 8.551472], [47.329729, 8.530697], [47.373573, 8.503603], [47.40356, 8.572832], [47.36904, 8.538043], [47.364384, 8.536756], [47.383428, 8.515627], [47.375526, 8.520896], [47.373293, 8.552405], [47.365112, 8.526364], [47.367382, 8.535586], [47.361842, 8.547665], [47.369889, 8.510917], [47.382144, 8.512515], [47.372091, 8.547375], [47.381008, 8.50301], [47.400217, 8.592501], [47.401008, 8.534331], [47.371499, 8.546171], [47.427094, 8.491697], [47.381066, 8.507527], [47.3624, 8.612309], [47.373201, 8.520346], [47.36709, 8.53979], [47.414645, 8.519968], [47.404831, 8.548533], [47.404726, 8.546332], [47.378741, 8.531], [47.38456, 8.487413], [47.404327, 8.546615], [47.414257, 8.536366], [47.377945, 8.526706], [47.421741, 8.500736], [47.378786, 8.510845], [47.403418, 8.534473], [47.378528, 8.542066], [47.383163, 8.531355], [47.370689, 8.516746], [47.37326, 8.535072], [47.393575, 8.511686], [47.409777, 8.543933], [47.393507, 8.526706], [47.359529, 8.535583], [47.365392, 8.564791], [47.379346, 8.542163], [47.370022, 8.558573], [47.404705, 8.549472], [47.390223, 8.52485], [47.384629, 8.484752], [47.402623, 8.541452], [47.363658, 8.507787], [47.39047, 8.539611], [47.403844, 8.576893], [47.365614, 8.548286], [47.37929, 8.515609], [47.38064, 8.517543], [47.364126, 8.520307], [47.377547, 8.542072], [47.359733, 8.549077], [47.377696, 8.531216], [47.408096, 8.572571], [47.379757, 8.537668], [47.360682, 8.531636], [47.382731, 8.539902], [47.361625, 8.506833], [47.371881, 8.525894], [47.428006, 8.490349], [47.369088, 8.537819], [47.372574, 8.547623], [47.356766, 8.532853], [47.36214, 8.535333], [47.394405, 8.50851], [47.377135, 8.526716], [47.369551, 8.553294], [47.35001, 8.533879], [47.406512, 8.556094], [47.370157, 8.539801], [47.380819, 8.497139], [47.367147, 8.536627], [47.362506, 8.533699], [47.377056, 8.528436], [47.388894, 8.515949], [47.372467, 8.566119], [47.384373, 8.53183], [47.362761, 8.567966], [47.385434, 8.536686], [47.362594, 8.533965], [47.40411, 8.56353], [47.379824, 8.519129], [47.367974, 8.540431], [47.403794, 8.558104], [47.387982, 8.490977], [47.383342, 8.510314], [47.362251, 8.559324], [47.339526, 8.527762], [47.418224, 8.546679], [47.378055, 8.526496], [47.389877, 8.535731], [47.340496, 8.537389], [47.365639, 8.532518], [47.425853, 8.4937], [47.341327, 8.530379], [47.408652, 8.504781], [47.370134, 8.548804], [47.388969, 8.477248], [47.40569, 8.56934], [47.393409, 8.524611], [47.374645, 8.550156], [47.401997, 8.491797], [47.398696, 8.548578], [47.353586, 8.576164], [47.388572, 8.470366], [47.385409, 8.536461], [47.382955, 8.515273], [47.390549, 8.545441], [47.412019, 8.5503], [47.409149, 8.54751], [47.363044, 8.556401], [47.370106, 8.548883], [47.374916, 8.518818], [47.417486, 8.545789], [47.374977, 8.537093], [47.358374, 8.571381], [47.376037, 8.533526], [47.372548, 8.555912], [47.360447, 8.531776], [47.383088, 8.48406], [47.391996, 8.523761], [47.389702, 8.539039], [47.388421, 8.487197], [47.377658, 8.55496], [47.397491, 8.532484], [47.373245, 8.529073], [47.37328, 8.514852], [47.382625, 8.54823], [47.356446, 8.570745], [47.371751, 8.523494], [47.397037, 8.480399], [47.419549, 8.508246], [47.354855, 8.554959], [47.365673, 8.521212], [47.353492, 8.576559], [47.379353, 8.542295], [47.401468, 8.587017], [47.348385, 8.562553], [47.425889, 8.493634], [47.390509, 8.508643], [47.368919, 8.540437], [47.40247, 8.556447], [47.364861, 8.537679], [47.367315, 8.545382], [47.410102, 8.542866], [47.372524, 8.543398], [47.3867, 8.525428], [47.387125, 8.546019], [47.398976, 8.541841], [47.40944, 8.549968], [47.36005, 8.550673], [47.407785, 8.585033], [47.37082, 8.535326], [47.369911, 8.552295], [47.419632, 8.54806], [47.37493, 8.534457], [47.391298, 8.486313], [47.369768, 8.561574], [47.418792, 8.530429], [47.369127, 8.504878], [47.386828, 8.534715], [47.376812, 8.499602], [47.378525, 8.54147], [47.399248, 8.542522], [47.373438, 8.520033], [47.417245, 8.522804], [47.42611, 8.543171], [47.381169, 8.504099], [47.390719, 8.515125], [47.361811, 8.560241], [47.394907, 8.536484], [47.339048, 8.519256], [47.414728, 8.559434], [47.368815, 8.524838], [47.414422, 8.545487], [47.381015, 8.491435], [47.408556, 8.546518], [47.373223, 8.535177], [47.387314, 8.552592], [47.386082, 8.504912], [47.379596, 8.567462], [47.395819, 8.528581], [47.371537, 8.547893], [47.369379, 8.499878], [47.352791, 8.525187], [47.371876, 8.529336], [47.383701, 8.588131], [47.370147, 8.504474], [47.37287, 8.546742], [47.373201, 8.503913], [47.407381, 8.547076], [47.374468, 8.552655], [47.400632, 8.534151], [47.418539, 8.547653], [47.385769, 8.492906], [47.377152, 8.535416], [47.371745, 8.473152], [47.419447, 8.506574], [47.396463, 8.504802], [47.36971, 8.507908], [47.409026, 8.550065], [47.362485, 8.526417], [47.408611, 8.546413], [47.370197, 8.548819], [47.365321, 8.546983], [47.380328, 8.503672], [47.388513, 8.489901], [47.369375, 8.532224], [47.374643, 8.495838], [47.404234, 8.561002], [47.377739, 8.537984], [47.373002, 8.485318], [47.373067, 8.536537], [47.356649, 8.534849], [47.398979, 8.533044], [47.380823, 8.549477], [47.371357, 8.515542], [47.372167, 8.539379], [47.398688, 8.539079], [47.410375, 8.539718], [47.369628, 8.540571], [47.394726, 8.478274], [47.37741, 8.500117], [47.356364, 8.591777], [47.427825, 8.490465], [47.387036, 8.519355], [47.370925, 8.502054], [47.381119, 8.528784], [47.409056, 8.539359], [47.361545, 8.506659], [47.393309, 8.542783], [47.404399, 8.50361], [47.36814, 8.523911], [47.404659, 8.574578], [47.375844, 8.529205], [47.410859, 8.563222], [47.398778, 8.539015], [47.34761, 8.532731], [47.397717, 8.533309], [47.369922, 8.511236], [47.371186, 8.523244], [47.367393, 8.546668], [47.408958, 8.543969], [47.386872, 8.497233], [47.366466, 8.544862], [47.356942, 8.507361], [47.377674, 8.538195], [47.417172, 8.541939], [47.378929, 8.542459], [47.375382, 8.526667], [47.411703, 8.549512], [47.365251, 8.520158], [47.385232, 8.547397], [47.370461, 8.475881], [47.405581, 8.54998], [47.394529, 8.546888], [47.379492, 8.516156], [47.370568, 8.535413], [47.364478, 8.531608], [47.408874, 8.558357], [47.426497, 8.536579], [47.402478, 8.553678], [47.369407, 8.525896], [47.366657, 8.507304], [47.364167, 8.526425], [47.37461, 8.536], [47.366769, 8.532833], [47.381688, 8.541827], [47.379142, 8.495649], [47.370519, 8.51767], [47.37459, 8.566999], [47.388171, 8.486014], [47.40054, 8.588971], [47.373545, 8.534508], [47.390728, 8.536133], [47.386547, 8.539742], [47.396372, 8.543244], [47.369333, 8.547874], [47.40257, 8.469246], [47.381131, 8.517898], [47.396898, 8.509288], [47.340414, 8.537453], [47.392626, 8.494565], [47.378301, 8.509802], [47.399286, 8.495201], [47.337614, 8.530131], [47.3764, 8.54912], [47.382719, 8.515493], [47.419596, 8.548073], [47.369871, 8.533982], [47.362597, 8.568135], [47.370674, 8.516441], [47.374878, 8.527623], [47.391903, 8.518301], [47.391908, 8.517838], [47.357655, 8.509017], [47.392087, 8.517894], [47.371846, 8.60154], [47.367531, 8.537893], [47.377025, 8.544048], [47.375294, 8.550064], [47.367108, 8.539778], [47.331043, 8.536374], [47.370224, 8.518405], [47.358972, 8.516417], [47.422224, 8.512687], [47.410607, 8.538066], [47.381599, 8.548275], [47.348099, 8.534342], [47.419641, 8.555575], [47.370416, 8.514265], [47.384921, 8.537563], [47.381463, 8.490716], [47.37995, 8.521039], [47.387341, 8.543202], [47.378132, 8.509627], [47.370278, 8.51164], [47.358167, 8.526501], [47.36196, 8.559728], [47.364559, 8.566257], [47.375233, 8.518586], [47.360021, 8.500274], [47.401207, 8.492656], [47.397024, 8.540939], [47.386035, 8.492382], [47.37981, 8.520612], [47.403579, 8.53449], [47.379102, 8.561876], [47.366665, 8.535267], [47.368273, 8.5116], [47.385629, 8.533194], [47.385106, 8.532296], [47.375446, 8.544585], [47.394164, 8.525673], [47.399739, 8.541075], [47.387634, 8.533208], [47.419681, 8.535431], [47.394278, 8.539319], [47.374443, 8.549675], [47.392683, 8.515694], [47.419753, 8.482924], [47.40216, 8.535295], [47.351735, 8.563127], [47.359071, 8.550586], [47.397326, 8.531871], [47.370372, 8.518037], [47.396225, 8.522708], [47.375717, 8.536883], [47.39659, 8.528769], [47.368578, 8.528991], [47.37719, 8.539893], [47.37683, 8.52761], [47.337152, 8.520978], [47.389673, 8.511514], [47.372812, 8.529196], [47.411805, 8.512994], [47.358854, 8.553467], [47.413784, 8.545341], [47.366102, 8.548085], [47.376664, 8.534731], [47.35205, 8.505277], [47.374049, 8.54482], [47.387747, 8.498946], [47.368705, 8.500844], [47.376932, 8.507073], [47.398523, 8.494974], [47.41425, 8.566938], [47.379971, 8.515888], [47.360976, 8.535732], [47.390804, 8.47429], [47.402701, 8.517924], [47.373822, 8.519445], [47.361539, 8.531402], [47.380996, 8.532264], [47.366929, 8.547254], [47.351143, 8.560162], [47.366942, 8.492998], [47.374111, 8.516378], [47.381682, 8.51375], [47.330533, 8.514056], [47.351805, 8.534366], [47.360623, 8.561183], [47.367086, 8.544001], [47.382485, 8.529858], [47.408717, 8.549396], [47.406862, 8.550603], [47.365183, 8.526472], [47.347872, 8.562648], [47.377458, 8.541991], [47.375869, 8.544527], [47.339801, 8.529117], [47.422047, 8.550416], [47.397262, 8.536678], [47.376482, 8.549056], [47.373717, 8.513298], [47.386043, 8.539758], [47.382558, 8.529753], [47.390076, 8.544093], [47.375587, 8.528803], [47.373391, 8.538332], [47.40581, 8.481034], [47.354145, 8.523771], [47.370374, 8.522539], [47.366184, 8.497127], [47.413272, 8.545357], [47.393952, 8.513707], [47.359083, 8.578836], [47.409803, 8.549724], [47.385828, 8.519622], [47.36153, 8.561387], [47.359242, 8.569944], [47.399962, 8.495029], [47.369133, 8.557456], [47.358314, 8.520428], [47.376681, 8.548967], [47.383925, 8.529781], [47.373631, 8.518633], [47.37436, 8.541463], [47.391959, 8.518144], [47.393873, 8.497968], [47.368598, 8.520133], [47.379058, 8.522213], [47.381514, 8.528792], [47.378462, 8.515659], [47.37778, 8.507779], [47.371014, 8.548002], [47.379278, 8.537884], [47.38828, 8.48681], [47.399434, 8.520998], [47.392405, 8.524299], [47.352361, 8.56261], [47.39598, 8.527657], [47.373586, 8.534919], [47.393776, 8.510338], [47.387347, 8.529401], [47.373388, 8.534915], [47.389199, 8.527505], [47.373025, 8.531425], [47.363131, 8.548341], [47.36539, 8.535082], [47.38752, 8.488345], [47.425735, 8.547644], [47.376789, 8.517571], [47.416983, 8.545725], [47.360989, 8.567015], [47.403844, 8.576893], [47.37283, 8.529197], [47.409352, 8.544136], [47.361123, 8.567111], [47.367319, 8.490092], [47.384124, 8.497695], [47.37843, 8.51044], [47.375346, 8.523766], [47.410709, 8.524407], [47.352192, 8.529529], [47.371838, 8.510321], [47.375358, 8.543364], [47.385815, 8.533462], [47.380088, 8.553819], [47.406235, 8.551186], [47.393273, 8.492684], [47.383261, 8.531476], [47.401162, 8.49957], [47.371505, 8.534294], [47.377914, 8.530003], [47.377269, 8.557017], [47.399913, 8.591435], [47.408184, 8.577396], [47.370769, 8.515013], [47.369952, 8.543425], [47.372176, 8.530891], [47.378022, 8.536626], [47.381199, 8.528878], [47.376312, 8.489356], [47.40048, 8.550139], [47.372654, 8.550499], [47.390764, 8.522742], [47.421924, 8.510136], [47.421085, 8.548461], [47.371406, 8.5465], [47.423991, 8.511225], [47.423016, 8.543147], [47.362172, 8.533877], [47.3412, 8.52761], [47.414346, 8.539323], [47.349807, 8.575395], [47.39963, 8.520246], [47.34381, 8.535088], [47.357973, 8.555262], [47.394138, 8.527527], [47.381933, 8.529211], [47.396089, 8.483718], [47.396011, 8.54529], [47.406916, 8.481109], [47.415649, 8.570108], [47.37789, 8.533485], [47.374629, 8.553718], [47.369201, 8.532499], [47.38594, 8.542034], [47.361337, 8.512572], [47.407882, 8.547431], [47.366865, 8.562214], [47.38781, 8.49892], [47.391492, 8.538997], [47.392635, 8.524741], [47.359915, 8.548869], [47.383417, 8.499336], [47.394845, 8.529753], [47.387961, 8.474341], [47.394957, 8.540671], [47.383886, 8.531012], [47.393351, 8.495984], [47.369998, 8.54328], [47.370789, 8.524362], [47.377611, 8.528752], [47.363546, 8.571399], [47.372009, 8.554881], [47.391406, 8.541419], [47.364068, 8.533108], [47.401363, 8.593083], [47.361694, 8.574033], [47.391333, 8.478486], [47.36027, 8.56148], [47.374705, 8.568127], [47.411806, 8.537786], [47.375848, 8.521115], [47.367735, 8.498746], [47.365669, 8.545428], [47.372337, 8.523268], [47.406817, 8.550576], [47.375494, 8.563826], [47.377598, 8.518594], [47.374002, 8.526069], [47.407042, 8.585574], [47.382639, 8.529689], [47.397665, 8.509105], [47.386086, 8.539958], [47.377486, 8.543806], [47.357355, 8.553184], [47.373853, 8.57616], [47.375379, 8.516378], [47.371967, 8.556416], [47.390117, 8.510132], [47.363951, 8.531266], [47.375481, 8.524722], [47.390739, 8.522516], [47.368845, 8.501257], [47.373832, 8.536474], [47.41628, 8.545817], [47.421483, 8.55014], [47.407933, 8.50853], [47.349236, 8.522546], [47.370106, 8.548883], [47.370647, 8.522227], [47.372685, 8.53412], [47.392834, 8.532202], [47.394028, 8.493706], [47.388706, 8.520634], [47.367869, 8.523985], [47.374534, 8.490009], [47.379839, 8.506893], [47.377485, 8.541978], [47.39302, 8.492798], [47.402099, 8.499417], [47.363248, 8.53521], [47.375596, 8.539225], [47.400348, 8.537616], [47.35708, 8.535785], [47.336929, 8.518869], [47.377413, 8.499786], [47.427023, 8.491576], [47.394731, 8.524704], [47.371301, 8.549941], [47.373832, 8.536474], [47.378708, 8.575442], [47.372296, 8.518143], [47.399398, 8.540034], [47.375983, 8.528745], [47.422318, 8.53905], [47.364541, 8.537275], [47.367461, 8.494226], [47.408177, 8.558766], [47.38732, 8.499361], [47.37268, 8.53841], [47.368333, 8.524404], [47.363111, 8.517268], [47.388174, 8.540756], [47.379263, 8.524336], [47.351038, 8.563588], [47.398782, 8.532894], [47.361418, 8.532776], [47.421701, 8.550873], [47.385962, 8.528393], [47.403957, 8.590038], [47.370798, 8.519582], [47.379453, 8.529915], [47.37843, 8.532476], [47.377117, 8.559689], [47.373904, 8.538329], [47.367795, 8.534708], [47.410819, 8.545014], [47.373005, 8.512437], [47.363904, 8.547509], [47.400662, 8.492314], [47.374385, 8.552931], [47.382395, 8.534571], [47.419193, 8.546977], [47.390051, 8.546769], [47.369124, 8.53782], [47.383399, 8.586853], [47.381397, 8.542139], [47.330993, 8.515878], [47.369402, 8.540659], [47.391916, 8.48467], [47.360391, 8.535773], [47.398352, 8.585598], [47.399593, 8.468181], [47.413121, 8.541391], [47.370582, 8.515778], [47.410286, 8.53113], [47.374073, 8.5498], [47.414638, 8.542629], [47.355439, 8.513301], [47.363673, 8.532081], [47.387147, 8.519053], [47.369164, 8.556119], [47.367366, 8.487962], [47.370143, 8.548791], [47.398175, 8.53622], [47.406733, 8.547169], [47.411145, 8.550441], [47.370161, 8.548805], [47.383828, 8.497676], [47.374133, 8.502369], [47.379533, 8.544153], [47.385533, 8.517484], [47.378527, 8.568247], [47.389718, 8.511502], [47.364604, 8.566205], [47.357538, 8.553744], [47.388438, 8.473356], [47.407609, 8.546803], [47.399864, 8.504685], [47.414601, 8.551136], [47.390463, 8.479211], [47.407065, 8.576869], [47.375913, 8.53608], [47.394642, 8.513946], [47.363098, 8.506002], [47.358309, 8.580673], [47.376855, 8.54864], [47.360711, 8.525692], [47.404092, 8.534461], [47.391391, 8.512516], [47.360153, 8.534246], [47.359587, 8.524716], [47.362566, 8.54719], [47.338851, 8.538241], [47.350773, 8.579559], [47.367083, 8.523373], [47.400655, 8.501839], [47.416368, 8.546057], [47.38716, 8.494258], [47.365975, 8.545341], [47.369644, 8.539883], [47.363909, 8.520382], [47.385235, 8.536709], [47.379187, 8.538054], [47.42034, 8.503358], [47.421503, 8.501129], [47.361769, 8.578258], [47.373413, 8.531301], [47.391931, 8.518275], [47.363715, 8.575268], [47.409286, 8.553807], [47.397972, 8.533871], [47.376359, 8.527018], [47.380961, 8.528383], [47.362222, 8.547488], [47.418485, 8.503639], [47.385988, 8.51797], [47.410203, 8.543637], [47.395425, 8.540668], [47.412519, 8.568239], [47.393619, 8.535769], [47.365055, 8.54568], [47.367426, 8.53944], [47.352645, 8.508996], [47.37017, 8.548805], [47.390481, 8.512656], [47.367382, 8.494065], [47.373008, 8.562251], [47.360621, 8.550221], [47.363011, 8.512487], [47.414114, 8.546646], [47.38966, 8.512944], [47.379296, 8.508233], [47.369169, 8.527348], [47.351944, 8.525315], [47.349101, 8.533039], [47.383402, 8.484198], [47.368333, 8.524378], [47.38311, 8.50623], [47.409888, 8.549235], [47.402567, 8.556581], [47.38621, 8.518279], [47.365936, 8.58085], [47.371522, 8.542927], [47.369446, 8.526532], [47.36921, 8.543886], [47.366328, 8.536677], [47.403234, 8.534854], [47.394302, 8.541466], [47.375741, 8.540962], [47.360674, 8.553161], [47.391575, 8.53219], [47.410785, 8.556038], [47.368903, 8.500861], [47.363478, 8.564513], [47.392159, 8.492569], [47.387547, 8.572121], [47.346573, 8.533041], [47.378118, 8.520777], [47.375096, 8.582291], [47.427612, 8.491137], [47.396046, 8.545343], [47.374592, 8.520784], [47.37977, 8.526796], [47.37762, 8.516264], [47.375362, 8.557918], [47.368117, 8.515807], [47.360602, 8.56984], [47.378412, 8.540991], [47.365286, 8.553403], [47.388958, 8.515831], [47.377927, 8.537154], [47.385398, 8.545096], [47.36475, 8.56781], [47.417124, 8.544151], [47.391563, 8.534375], [47.375031, 8.545596], [47.411839, 8.51314], [47.393801, 8.502815], [47.357574, 8.521591], [47.401506, 8.487495], [47.353646, 8.554351], [47.41334, 8.53151], [47.395766, 8.532223], [47.371031, 8.547168], [47.364531, 8.534521], [47.398837, 8.54038], [47.366528, 8.542083], [47.372191, 8.547258], [47.404954, 8.557175], [47.377413, 8.515333], [47.387006, 8.534056], [47.340978, 8.518726], [47.405074, 8.481854], [47.382688, 8.543477], [47.366529, 8.544876], [47.366315, 8.540834], [47.379115, 8.508296], [47.362047, 8.518491], [47.405202, 8.557564], [47.385396, 8.528315], [47.381294, 8.510101], [47.384404, 8.548399], [47.407615, 8.584036], [47.367095, 8.543974], [47.366728, 8.541862], [47.368756, 8.501216], [47.370943, 8.523239], [47.379912, 8.544028], [47.408127, 8.553664], [47.369689, 8.52561], [47.3932, 8.530634], [47.340977, 8.536935], [47.371267, 8.529946], [47.40614, 8.553662], [47.413017, 8.536208], [47.381203, 8.491571], [47.376477, 8.518293], [47.404064, 8.563608], [47.425654, 8.509442], [47.374939, 8.527863], [47.413596, 8.477397], [47.368968, 8.538095], [47.38253, 8.514509], [47.422262, 8.539208], [47.375886, 8.540886], [47.376728, 8.548703], [47.408372, 8.550648], [47.427922, 8.490692], [47.411384, 8.485277], [47.413885, 8.547079], [47.355021, 8.562852], [47.379095, 8.525895], [47.407745, 8.583628], [47.369259, 8.534923], [47.3736, 8.53631], [47.357016, 8.55838], [47.371432, 8.534412], [47.35285, 8.526551], [47.385381, 8.5365], [47.385814, 8.532575], [47.359097, 8.531855], [47.387421, 8.539575], [47.399587, 8.547537], [47.36481, 8.502766], [47.374297, 8.538615], [47.389917, 8.512301], [47.384521, 8.539952], [47.35873, 8.517299], [47.341829, 8.530561], [47.36653, 8.540918], [47.407524, 8.584961], [47.404786, 8.57262], [47.383394, 8.484026], [47.344338, 8.526867], [47.357585, 8.552646], [47.373694, 8.481452], [47.354392, 8.509772], [47.378199, 8.534153], [47.376563, 8.543429], [47.40249, 8.493065], [47.37395, 8.517196], [47.370967, 8.548212], [47.372744, 8.547759], [47.375302, 8.484622], [47.367757, 8.533939], [47.376052, 8.497137], [47.361793, 8.507101], [47.431053, 8.550233], [47.370188, 8.548805], [47.383624, 8.532093], [47.349664, 8.561508], [47.377086, 8.529125], [47.392272, 8.526972], [47.392044, 8.499217], [47.375039, 8.558758], [47.406726, 8.574742], [47.371691, 8.517429], [47.381411, 8.550986], [47.370939, 8.53795], [47.383564, 8.515497], [47.406223, 8.582893], [47.377066, 8.515909], [47.365032, 8.567564], [47.397508, 8.493894], [47.375257, 8.522692], [47.376318, 8.525587], [47.383957, 8.508088], [47.414099, 8.54161], [47.40259, 8.581808], [47.375269, 8.511794], [47.359063, 8.549487], [47.401989, 8.537147], [47.41406, 8.541888], [47.393801, 8.496933], [47.414152, 8.551087], [47.344084, 8.529906], [47.354987, 8.556113], [47.344117, 8.531151], [47.365486, 8.539109], [47.356137, 8.53562], [47.358547, 8.531989], [47.381804, 8.543723], [47.360912, 8.53581], [47.387975, 8.485785], [47.38952, 8.540148], [47.380462, 8.512494], [47.376181, 8.53443], [47.383025, 8.515433], [47.391547, 8.542654], [47.414524, 8.53384], [47.387746, 8.48623], [47.37999, 8.536852], [47.390061, 8.537166], [47.374505, 8.546061], [47.377741, 8.537839], [47.389698, 8.524204], [47.364086, 8.56679], [47.385525, 8.527033], [47.383526, 8.573028], [47.35955, 8.593369], [47.355238, 8.523185], [47.377378, 8.512366], [47.420576, 8.550041], [47.369199, 8.527931], [47.391439, 8.538956], [47.381176, 8.513078], [47.390032, 8.511548], [47.343945, 8.5303], [47.423629, 8.543014], [47.362276, 8.564183], [47.370215, 8.548793], [47.364761, 8.566711], [47.397185, 8.493768], [47.349683, 8.527612], [47.339364, 8.527732], [47.389397, 8.493574], [47.377366, 8.51945], [47.373907, 8.544659], [47.373518, 8.531647], [47.362495, 8.547162], [47.37333, 8.531498], [47.39185, 8.542951], [47.364059, 8.531202], [47.39339, 8.542811], [47.3665, 8.540361], [47.376114, 8.488412], [47.369542, 8.466952], [47.385339, 8.507401], [47.398019, 8.474152], [47.42042, 8.50837], [47.339994, 8.530524], [47.384124, 8.497695], [47.37586, 8.577844], [47.358107, 8.551625], [47.351073, 8.580161], [47.364022, 8.497494], [47.409959, 8.532342], [47.369997, 8.525325], [47.36831, 8.546727], [47.397447, 8.489667], [47.371531, 8.534347], [47.365444, 8.545449], [47.360373, 8.564672], [47.374986, 8.547462], [47.382829, 8.497762], [47.360077, 8.535687], [47.368634, 8.483021], [47.360697, 8.5357], [47.369014, 8.53795], [47.414988, 8.527502], [47.363434, 8.533625], [47.368219, 8.546818], [47.389356, 8.469255], [47.378284, 8.510623], [47.393344, 8.497772], [47.370363, 8.550252], [47.405662, 8.585054], [47.377879, 8.546012], [47.382531, 8.551393], [47.414452, 8.553558], [47.410649, 8.571884], [47.403107, 8.547199], [47.403055, 8.534784], [47.387895, 8.520763], [47.380162, 8.528155], [47.399002, 8.541974], [47.343963, 8.5303], [47.388787, 8.489456], [47.421203, 8.550253], [47.388085, 8.488568], [47.418926, 8.507452], [47.3701, 8.544818], [47.374538, 8.539772], [47.393776, 8.510365], [47.373502, 8.542796], [47.3712, 8.510176], [47.381222, 8.503279], [47.408583, 8.546478], [47.364323, 8.555329], [47.383193, 8.506033], [47.402115, 8.535255], [47.382463, 8.528334], [47.343391, 8.519463], [47.360316, 8.553869], [47.426921, 8.510568], [47.397693, 8.508933], [47.397358, 8.531275], [47.366781, 8.540062], [47.365621, 8.532465], [47.392944, 8.530072], [47.377098, 8.541057], [47.410942, 8.567702], [47.359475, 8.522265], [47.377812, 8.482658], [47.379002, 8.544221], [47.366958, 8.544197], [47.37797, 8.536413], [47.367851, 8.601651], [47.406652, 8.553739], [47.392127, 8.51261], [47.368813, 8.557979], [47.404294, 8.500375], [47.39405, 8.493348], [47.409235, 8.537601], [47.360349, 8.500784], [47.384141, 8.574538], [47.349875, 8.533902], [47.412628, 8.512493], [47.340763, 8.530142], [47.379263, 8.515648], [47.358035, 8.555356], [47.358705, 8.516054], [47.388769, 8.489522], [47.340523, 8.537336], [47.360728, 8.597975], [47.366753, 8.545821], [47.37396, 8.542885], [47.402555, 8.469908], [47.354312, 8.575518], [47.358054, 8.526035], [47.399511, 8.540434], [47.389889, 8.54205], [47.371384, 8.555384], [47.40448, 8.55694], [47.378055, 8.526523], [47.366555, 8.559864], [47.361364, 8.549667], [47.363587, 8.575411], [47.374512, 8.521564], [47.373259, 8.542818], [47.370847, 8.508487], [47.398096, 8.532231], [47.390037, 8.480514], [47.373032, 8.534511], [47.382922, 8.513895], [47.402155, 8.497205], [47.331384, 8.512552], [47.379808, 8.494643], [47.392564, 8.515944], [47.352606, 8.503488], [47.374594, 8.538661], [47.410519, 8.550004], [47.377719, 8.541983], [47.425717, 8.526807], [47.420396, 8.53587], [47.3901, 8.474554], [47.35712, 8.522085], [47.409258, 8.571536], [47.379205, 8.538054], [47.365008, 8.545877], [47.395047, 8.486599], [47.417679, 8.546283], [47.397002, 8.480292], [47.396439, 8.506471], [47.391325, 8.544252], [47.379289, 8.544346], [47.366031, 8.545184], [47.412871, 8.543944], [47.392221, 8.523752], [47.382904, 8.543441], [47.374751, 8.512406], [47.38867, 8.537812], [47.352817, 8.527173], [47.391395, 8.47858], [47.370932, 8.548079], [47.409279, 8.5731], [47.408799, 8.546456], [47.38316, 8.540228], [47.364914, 8.537826], [47.384986, 8.508678], [47.358645, 8.515801], [47.368015, 8.540856], [47.392368, 8.503131], [47.339307, 8.531899], [47.335736, 8.518488], [47.37983, 8.525261], [47.369689, 8.525584], [47.3729, 8.535183], [47.390718, 8.536252], [47.368916, 8.534055], [47.362627, 8.519986], [47.387818, 8.52708], [47.373545, 8.538229], [47.369879, 8.466575], [47.404525, 8.549441], [47.389073, 8.529463], [47.349983, 8.533865], [47.359906, 8.535671], [47.409196, 8.550095], [47.336598, 8.539598], [47.400202, 8.537759], [47.367486, 8.545386], [47.35986, 8.535749], [47.370474, 8.534842], [47.359388, 8.549361], [47.395415, 8.514028], [47.378581, 8.510642], [47.389244, 8.515069], [47.404768, 8.483875], [47.379939, 8.544042], [47.390636, 8.522038], [47.379655, 8.529522], [47.424046, 8.500424], [47.408027, 8.542558], [47.37138, 8.510232], [47.375615, 8.530591], [47.370921, 8.531329], [47.363161, 8.520513], [47.369264, 8.556029], [47.430485, 8.540956], [47.373353, 8.531988], [47.430955, 8.550112], [47.355096, 8.556976], [47.378354, 8.5414], [47.421246, 8.549552], [47.367918, 8.512016], [47.400345, 8.489525], [47.34389, 8.535182], [47.352162, 8.558026], [47.386659, 8.495917], [47.37876, 8.575602], [47.34937, 8.53593], [47.357029, 8.552397], [47.392681, 8.52551], [47.366699, 8.494965], [47.364141, 8.529151], [47.369319, 8.541809], [47.385397, 8.542434], [47.427422, 8.546155], [47.42706, 8.546399], [47.381809, 8.529976], [47.419707, 8.546776], [47.375785, 8.487915], [47.379397, 8.555579], [47.384762, 8.527852], [47.389664, 8.511514], [47.369529, 8.520602], [47.376182, 8.536178], [47.40898, 8.55013], [47.36134, 8.554062], [47.374442, 8.517524], [47.384445, 8.531885], [47.412114, 8.546035], [47.345174, 8.534534], [47.40523, 8.577757], [47.36445, 8.5552], [47.403664, 8.571443], [47.351821, 8.526901], [47.39478, 8.536654], [47.384405, 8.531288], [47.375535, 8.520883], [47.363914, 8.553931], [47.392083, 8.497932], [47.377639, 8.543743], [47.373785, 8.519484], [47.361995, 8.548674], [47.373814, 8.536473], [47.414394, 8.537999], [47.38204, 8.492462], [47.341668, 8.519997], [47.37696, 8.543252], [47.402873, 8.557555], [47.386832, 8.481868], [47.344046, 8.528264], [47.374141, 8.502422], [47.381846, 8.528878], [47.378378, 8.521762], [47.410804, 8.558742], [47.354233, 8.563404], [47.378429, 8.541084], [47.370152, 8.548804], [47.390756, 8.53314], [47.373264, 8.547876], [47.370103, 8.56411], [47.410858, 8.546618], [47.369792, 8.513656], [47.399731, 8.518102], [47.390741, 8.528067], [47.386166, 8.518119], [47.368227, 8.496055], [47.404859, 8.548375], [47.360524, 8.523557], [47.377758, 8.543586], [47.377247, 8.538636], [47.357279, 8.572933], [47.394714, 8.525538], [47.36209, 8.549034], [47.358648, 8.547797], [47.378934, 8.510371], [47.399513, 8.54307], [47.396777, 8.541371], [47.420587, 8.538511], [47.37378, 8.544735], [47.379002, 8.544221], [47.424392, 8.512611], [47.359866, 8.507274], [47.389626, 8.521394], [47.408498, 8.574779], [47.370454, 8.510161], [47.413763, 8.546652], [47.373973, 8.495255], [47.397951, 8.474694], [47.418532, 8.552994], [47.37069, 8.51668], [47.408108, 8.547237], [47.38509, 8.536878], [47.36712, 8.5366], [47.412455, 8.523369], [47.41447, 8.51754], [47.386524, 8.48908], [47.3746, 8.484741], [47.366239, 8.540369], [47.373727, 8.533333], [47.388348, 8.480322], [47.402396, 8.499383], [47.386954, 8.473288], [47.400288, 8.516259], [47.405854, 8.581109], [47.400747, 8.588114], [47.38829, 8.519977], [47.390778, 8.524213], [47.361328, 8.547813], [47.379823, 8.527843], [47.358656, 8.535618], [47.346913, 8.56321], [47.37534, 8.516787], [47.385814, 8.532601], [47.369193, 8.571572], [47.406642, 8.546266], [47.354609, 8.555232], [47.348522, 8.534351], [47.374263, 8.525081], [47.390941, 8.523064], [47.379099, 8.553838], [47.391529, 8.538944], [47.375748, 8.558985], [47.374531, 8.551743], [47.365261, 8.53067], [47.370003, 8.52085], [47.364749, 8.554107], [47.417078, 8.512782], [47.362708, 8.562312], [47.335828, 8.540204], [47.392078, 8.492541], [47.384805, 8.531786], [47.378489, 8.541443], [47.396738, 8.529328], [47.373836, 8.502363], [47.402339, 8.493764], [47.393417, 8.500608], [47.386356, 8.496627], [47.386495, 8.496232], [47.369679, 8.525663], [47.371512, 8.519186], [47.358486, 8.527024], [47.371352, 8.547426], [47.384929, 8.531047], [47.36879, 8.524639], [47.362604, 8.614339], [47.426995, 8.54661], [47.374084, 8.527872], [47.42487, 8.537407], [47.392507, 8.549522], [47.379277, 8.550266], [47.353437, 8.57673], [47.391094, 8.523067], [47.369691, 8.553681], [47.40638, 8.480674], [47.387617, 8.500334], [47.41228, 8.546489], [47.389925, 8.491916], [47.371438, 8.547904], [47.399144, 8.542175], [47.364856, 8.563496], [47.391674, 8.513912], [47.371935, 8.518202], [47.377777, 8.537826], [47.343483, 8.535412], [47.426324, 8.554668], [47.385211, 8.485094], [47.349988, 8.527658], [47.346233, 8.564638], [47.397969, 8.515126], [47.394142, 8.475189], [47.350988, 8.52654], [47.383483, 8.534606], [47.38376, 8.498244], [47.392112, 8.511365], [47.411232, 8.52614], [47.369115, 8.541501], [47.357435, 8.572606], [47.368221, 8.496743], [47.372581, 8.534621], [47.38314, 8.513661], [47.376864, 8.525916], [47.377723, 8.507089], [47.380332, 8.519656], [47.42384, 8.516855], [47.426576, 8.492336], [47.405753, 8.577636], [47.386208, 8.525153], [47.387396, 8.519402], [47.366913, 8.52329], [47.373617, 8.536377], [47.368461, 8.517469], [47.368435, 8.517389], [47.401679, 8.5059], [47.389768, 8.522523], [47.374025, 8.544542], [47.392684, 8.545141], [47.37292, 8.526365], [47.392337, 8.523834], [47.401598, 8.586622], [47.366027, 8.532341], [47.376021, 8.541829], [47.380621, 8.512802], [47.366682, 8.535426], [47.369716, 8.525558], [47.373218, 8.519552], [47.3742, 8.52226], [47.372158, 8.520325], [47.351814, 8.525749], [47.376658, 8.559719], [47.377507, 8.504224], [47.373278, 8.532265], [47.392722, 8.524093], [47.420757, 8.547063], [47.383065, 8.575111], [47.379054, 8.522583], [47.414717, 8.546579], [47.402754, 8.530432], [47.388134, 8.520225], [47.383877, 8.577566], [47.366573, 8.540217], [47.401702, 8.553966], [47.412109, 8.566058], [47.379996, 8.528589], [47.371513, 8.542848], [47.387337, 8.518898], [47.378821, 8.519626], [47.373844, 8.535176], [47.368743, 8.528636], [47.364799, 8.566553], [47.365106, 8.500958], [47.329809, 8.529826], [47.365388, 8.539067], [47.36838, 8.547841], [47.361774, 8.525555], [47.385511, 8.520887], [47.40057, 8.477606], [47.390517, 8.491106], [47.415221, 8.546563], [47.38328, 8.530391], [47.34512, 8.53358], [47.364201, 8.547489], [47.366936, 8.536133], [47.374895, 8.534417], [47.372234, 8.532362], [47.420967, 8.549506], [47.381862, 8.515741], [47.392356, 8.539014], [47.358355, 8.55208], [47.372033, 8.538396], [47.388026, 8.539309], [47.389669, 8.511951], [47.370554, 8.512957], [47.391829, 8.517611], [47.377418, 8.535806], [47.377787, 8.537694], [47.369084, 8.527796], [47.356909, 8.535834], [47.36877, 8.524824], [47.410774, 8.545013], [47.371487, 8.5228], [47.375368, 8.485312], [47.350213, 8.53428], [47.37017, 8.548792], [47.352851, 8.573236], [47.412158, 8.546076], [47.379397, 8.544309], [47.339996, 8.530312], [47.406675, 8.582664], [47.381183, 8.538188], [47.369464, 8.526572], [47.380667, 8.568332], [47.3635, 8.550202], [47.340686, 8.537247], [47.37191, 8.542803], [47.361751, 8.515506], [47.3744, 8.516239], [47.397692, 8.522618], [47.410322, 8.53769], [47.390676, 8.48948], [47.390369, 8.539808], [47.369434, 8.52591], [47.357856, 8.588302], [47.367429, 8.489843], [47.370058, 8.564096], [47.37871, 8.529529], [47.369495, 8.536583], [47.370716, 8.516747], [47.40848, 8.574766], [47.353924, 8.526202], [47.357605, 8.550542], [47.376587, 8.544701], [47.370361, 8.522963], [47.369409, 8.513172], [47.362777, 8.548664], [47.392768, 8.523035], [47.378217, 8.527493], [47.371637, 8.547736], [47.367364, 8.494012], [47.354906, 8.556125], [47.377284, 8.543325], [47.380585, 8.558252], [47.377769, 8.540488], [47.392069, 8.524663], [47.414069, 8.482799], [47.353661, 8.553743], [47.36113, 8.53563], [47.377665, 8.529719], [47.365055, 8.54564], [47.37838, 8.530198], [47.380345, 8.494878], [47.34891, 8.533181], [47.399491, 8.495351], [47.363831, 8.531581], [47.358342, 8.515477], [47.401883, 8.500353], [47.416915, 8.5453], [47.387419, 8.486608], [47.377846, 8.509343], [47.367923, 8.564382], [47.360526, 8.535776], [47.370088, 8.511756], [47.361755, 8.51123], [47.392747, 8.545089], [47.379015, 8.559689], [47.377559, 8.555805], [47.422662, 8.540661], [47.377068, 8.55267], [47.37128, 8.522889], [47.372062, 8.521965], [47.384589, 8.493174], [47.342448, 8.530719], [47.36796, 8.501597], [47.357319, 8.521943], [47.36848, 8.528883], [47.429952, 8.549614], [47.394936, 8.517237], [47.349298, 8.570381], [47.389592, 8.511526], [47.365551, 8.566926], [47.411563, 8.525418], [47.356336, 8.527019], [47.369041, 8.537937], [47.366836, 8.544697], [47.383253, 8.530443], [47.3763, 8.544563], [47.348982, 8.574239], [47.403034, 8.536042], [47.356058, 8.535512], [47.397967, 8.532546], [47.367496, 8.555555], [47.396022, 8.545038], [47.384805, 8.531773], [47.377569, 8.574199], [47.363394, 8.534908], [47.401808, 8.499729], [47.374472, 8.562507], [47.357866, 8.520167], [47.395176, 8.524236], [47.410427, 8.543708], [47.380409, 8.542873], [47.368925, 8.501405], [47.358358, 8.583891], [47.383656, 8.588063], [47.37302, 8.532921], [47.411858, 8.515035], [47.370189, 8.525078], [47.375024, 8.518767], [47.3546, 8.555218], [47.394169, 8.493073], [47.341791, 8.530732], [47.369636, 8.526404], [47.378588, 8.523369], [47.376183, 8.540852], [47.377218, 8.553017], [47.383043, 8.530743], [47.377358, 8.527872], [47.377643, 8.574002], [47.368462, 8.521229], [47.372843, 8.533514], [47.368058, 8.560704], [47.370017, 8.543214], [47.374422, 8.541518], [47.392308, 8.544047], [47.373109, 8.532976], [47.367234, 8.545394], [47.383337, 8.543358], [47.36043, 8.547702], [47.407943, 8.582678], [47.367435, 8.541333], [47.366284, 8.557224], [47.37746, 8.522856], [47.385676, 8.530135], [47.354977, 8.557172], [47.372316, 8.502373], [47.366487, 8.556672], [47.38779, 8.532947], [47.401489, 8.499166], [47.366906, 8.545811], [47.369479, 8.520191], [47.359822, 8.57684], [47.380846, 8.549822], [47.425834, 8.493739], [47.396564, 8.541989], [47.398911, 8.533559], [47.363739, 8.535511], [47.368806, 8.500581], [47.374474, 8.529469], [47.420563, 8.502607], [47.420785, 8.53654], [47.42157, 8.538213], [47.341002, 8.519957], [47.380025, 8.547275], [47.370434, 8.514199], [47.364437, 8.536836], [47.408228, 8.569261], [47.367525, 8.600943], [47.426315, 8.554694], [47.359449, 8.535449], [47.419614, 8.507969], [47.372753, 8.535498], [47.383395, 8.515308], [47.383052, 8.53073], [47.405862, 8.581123], [47.368996, 8.537989], [47.397395, 8.532164], [47.373776, 8.519497], [47.38853, 8.536419], [47.360343, 8.523725], [47.344913, 8.52979], [47.410837, 8.545015], [47.375068, 8.524661], [47.400986, 8.491234], [47.364177, 8.556491], [47.404025, 8.556559], [47.347328, 8.533096], [47.385381, 8.5365], [47.37743, 8.512526], [47.365556, 8.546816], [47.363872, 8.535739], [47.369226, 8.527971], [47.375709, 8.54896], [47.360163, 8.533227], [47.358158, 8.550037], [47.430325, 8.542662], [47.353808, 8.571946], [47.41739, 8.553937], [47.363895, 8.546503], [47.37119, 8.488818], [47.404472, 8.55686], [47.377395, 8.500753], [47.371865, 8.542802], [47.379971, 8.528416], [47.389896, 8.50981], [47.354397, 8.523697], [47.37305, 8.534511], [47.37831, 8.556324], [47.368272, 8.536531], [47.336785, 8.537008], [47.349966, 8.560971], [47.350401, 8.534363], [47.381014, 8.535138], [47.359035, 8.551499], [47.326177, 8.513386], [47.427984, 8.545716], [47.389126, 8.542802], [47.428923, 8.488446], [47.370277, 8.548873], [47.399768, 8.542784], [47.415689, 8.548389], [47.383795, 8.550956], [47.365504, 8.539175], [47.362037, 8.506047], [47.363695, 8.520153], [47.381433, 8.506687], [47.37296, 8.546811], [47.399852, 8.477446], [47.407372, 8.562897], [47.388064, 8.488872], [47.378794, 8.519612], [47.352311, 8.507189], [47.363635, 8.549238], [47.387844, 8.490351], [47.338104, 8.538226], [47.375712, 8.539293], [47.341094, 8.536885], [47.386252, 8.518558], [47.364779, 8.53777], [47.395723, 8.508046], [47.376979, 8.52899], [47.376704, 8.544637], [47.360469, 8.552032], [47.353689, 8.553624], [47.376408, 8.527535], [47.37401, 8.554446], [47.423053, 8.551551], [47.371623, 8.515944], [47.37378, 8.537174], [47.374005, 8.501599], [47.414316, 8.53862], [47.374523, 8.546088], [47.379116, 8.516029], [47.384991, 8.495408], [47.426665, 8.492404], [47.393264, 8.478855], [47.409534, 8.479053], [47.405259, 8.578433], [47.36066, 8.524407], [47.391417, 8.477176], [47.393192, 8.52862], [47.404217, 8.573761], [47.376137, 8.553153], [47.413558, 8.546489], [47.360905, 8.502886], [47.42685, 8.491864], [47.384418, 8.547896], [47.377679, 8.511922], [47.334083, 8.518269], [47.357629, 8.588455], [47.387378, 8.488144], [47.376741, 8.483657], [47.377905, 8.530016], [47.423059, 8.542419], [47.363951, 8.533159], [47.344064, 8.53111], [47.362477, 8.518712], [47.383267, 8.484235], [47.384819, 8.534104], [47.366354, 8.540503], [47.378731, 8.514856], [47.36623, 8.540382], [47.391329, 8.522966], [47.364047, 8.56708], [47.377464, 8.518592], [47.383806, 8.533832], [47.339635, 8.528624], [47.364701, 8.545924], [47.376667, 8.497706], [47.405676, 8.549452], [47.377113, 8.540461], [47.431282, 8.54418], [47.392393, 8.492521], [47.353178, 8.527034], [47.377427, 8.535793], [47.382676, 8.483945], [47.404506, 8.55698], [47.403832, 8.565299], [47.368392, 8.546649], [47.360432, 8.526679], [47.354799, 8.526869], [47.375027, 8.539425], [47.377408, 8.526377], [47.374853, 8.538786], [47.39026, 8.510268], [47.373002, 8.485332], [47.430955, 8.550139], [47.402932, 8.580967], [47.357121, 8.555033], [47.409743, 8.544714], [47.370152, 8.548791], [47.38199, 8.571883], [47.402686, 8.492287], [47.375698, 8.526567], [47.358954, 8.527894], [47.384539, 8.480817], [47.406874, 8.556831], [47.387593, 8.535698], [47.385025, 8.495647], [47.380332, 8.540567], [47.42195, 8.538963], [47.353893, 8.559479], [47.4146, 8.559617], [47.387737, 8.544177], [47.402528, 8.490787], [47.368227, 8.536517], [47.353925, 8.600911], [47.371053, 8.528776], [47.371084, 8.547275], [47.37955, 8.532009], [47.354955, 8.554855], [47.375332, 8.549853], [47.356452, 8.535626], [47.341318, 8.530432], [47.364923, 8.51005], [47.375854, 8.488248], [47.36633, 8.544899], [47.367269, 8.54174], [47.34868, 8.573823], [47.40527, 8.555234], [47.369191, 8.527878], [47.408171, 8.556606], [47.366907, 8.543904], [47.366411, 8.547734], [47.377994, 8.530097], [47.355158, 8.557983], [47.375546, 8.513892], [47.34243, 8.530732], [47.367324, 8.541675], [47.380488, 8.519355], [47.365366, 8.54701], [47.378538, 8.52301], [47.388431, 8.487078], [47.364356, 8.547214], [47.382908, 8.481142], [47.364738, 8.554279], [47.367038, 8.544317], [47.413634, 8.528999], [47.4115, 8.567622], [47.370909, 8.543021], [47.406459, 8.576233], [47.408644, 8.550481], [47.378849, 8.527175], [47.378741, 8.527199], [47.378633, 8.559152], [47.370079, 8.548922], [47.370612, 8.543028], [47.375068, 8.547424], [47.377584, 8.509483], [47.424148, 8.49914], [47.376549, 8.543932], [47.423347, 8.551822], [47.41498, 8.545445], [47.373971, 8.540767], [47.399276, 8.542443], [47.406965, 8.495512], [47.414303, 8.546637], [47.376934, 8.540351], [47.373383, 8.536332], [47.384132, 8.528753], [47.373674, 8.534193], [47.373837, 8.524503], [47.383238, 8.499266], [47.384047, 8.52638], [47.37137, 8.562402], [47.377005, 8.543279], [47.373843, 8.540989], [47.391002, 8.52231], [47.357383, 8.572486], [47.391072, 8.522589], [47.367892, 8.519655], [47.387359, 8.516567], [47.373424, 8.524402], [47.397231, 8.532425], [47.425527, 8.547679], [47.378851, 8.527029], [47.375268, 8.516786], [47.377336, 8.499361], [47.396899, 8.519873], [47.374655, 8.550143], [47.371666, 8.525757], [47.416296, 8.545181], [47.370542, 8.469818], [47.402558, 8.492417], [47.387004, 8.494573], [47.368335, 8.524206], [47.367095, 8.521215], [47.371366, 8.515595], [47.350452, 8.57836], [47.334675, 8.528959], [47.374522, 8.539573], [47.368899, 8.501245], [47.378729, 8.556664], [47.397889, 8.534148], [47.368729, 8.548073], [47.387229, 8.518935], [47.378766, 8.542548], [47.374432, 8.539545], [47.369022, 8.538043], [47.390684, 8.538808], [47.39315, 8.474494], [47.405914, 8.581349], [47.410894, 8.563382], [47.387201, 8.519094], [47.403573, 8.547447], [47.393265, 8.530357], [47.393392, 8.50033], [47.355332, 8.527581], [47.3736, 8.534324], [47.394979, 8.512562], [47.373884, 8.546115], [47.380609, 8.514086], [47.335297, 8.541132], [47.369081, 8.541367], [47.406954, 8.587188], [47.400903, 8.502294], [47.425555, 8.547666], [47.383683, 8.573601], [47.404242, 8.561042], [47.368216, 8.538675], [47.378972, 8.543572], [47.369243, 8.528064], [47.40448, 8.556926], [47.402932, 8.580954], [47.378927, 8.527507], [47.383401, 8.586601], [47.359686, 8.557641], [47.391858, 8.538368], [47.367961, 8.539014], [47.38665, 8.520274], [47.390913, 8.522215], [47.392859, 8.489788], [47.378425, 8.548103], [47.396256, 8.540367], [47.404601, 8.557459], [47.394595, 8.524807], [47.353923, 8.511894], [47.392337, 8.523847], [47.371217, 8.536234], [47.415045, 8.544267], [47.333614, 8.528924], [47.398238, 8.541905], [47.381672, 8.529206], [47.371241, 8.523166], [47.371251, 8.523074], [47.339954, 8.537576], [47.369636, 8.543471], [47.390263, 8.523408], [47.347918, 8.56617], [47.377178, 8.526982], [47.396998, 8.512178], [47.398429, 8.591403], [47.370287, 8.556249], [47.357894, 8.550442], [47.37098, 8.546849], [47.420201, 8.549702], [47.371451, 8.550262], [47.367871, 8.494711], [47.402157, 8.552452], [47.386055, 8.521348], [47.366061, 8.533533], [47.392396, 8.524299], [47.387294, 8.499281], [47.351593, 8.525321], [47.37553, 8.560053], [47.381492, 8.483551], [47.361092, 8.506067], [47.407629, 8.489735], [47.377091, 8.541825], [47.37717, 8.522108], [47.343405, 8.530408], [47.372188, 8.522907], [47.340956, 8.524932], [47.367091, 8.544332], [47.388431, 8.487078], [47.387446, 8.52935], [47.384279, 8.528504], [47.377492, 8.509786], [47.382101, 8.530486], [47.382353, 8.530438], [47.357857, 8.596244], [47.421833, 8.503415], [47.377157, 8.510984], [47.366229, 8.545188], [47.374485, 8.521643], [47.375901, 8.535483], [47.380613, 8.525224], [47.360237, 8.523459], [47.363286, 8.548158], [47.363723, 8.535378], [47.37316, 8.512215], [47.35981, 8.525833], [47.386695, 8.547745], [47.404928, 8.557095], [47.378281, 8.540631], [47.349761, 8.564461], [47.346833, 8.564889], [47.367775, 8.49831], [47.363605, 8.567203], [47.369265, 8.525708], [47.375092, 8.553277], [47.369936, 8.524252], [47.367191, 8.533861], [47.363028, 8.533723], [47.364586, 8.566231], [47.352947, 8.524885], [47.340057, 8.530525], [47.405229, 8.593286], [47.409566, 8.537793], [47.376677, 8.5286], [47.391198, 8.469423], [47.379155, 8.546118], [47.378495, 8.521791], [47.358549, 8.526998], [47.379525, 8.488135], [47.380851, 8.538088], [47.364739, 8.554186], [47.363868, 8.531449], [47.360248, 8.566444], [47.370916, 8.525252], [47.400609, 8.54414], [47.334032, 8.534146], [47.391704, 8.518403], [47.373594, 8.534959], [47.367363, 8.55812], [47.372798, 8.554249], [47.390586, 8.479478], [47.365662, 8.539509], [47.411414, 8.546736], [47.385238, 8.530735], [47.354842, 8.574735], [47.403674, 8.571311], [47.363432, 8.54795], [47.400807, 8.50004], [47.369017, 8.529185], [47.406021, 8.484576], [47.384286, 8.507459], [47.367716, 8.534494], [47.358549, 8.526945], [47.360702, 8.570584], [47.409818, 8.537785], [47.351953, 8.558326], [47.371765, 8.488882], [47.413703, 8.553794], [47.363459, 8.532818], [47.334775, 8.529808], [47.378076, 8.526192], [47.378102, 8.541435], [47.363105, 8.5483], [47.351854, 8.505128], [47.368839, 8.552551], [47.378984, 8.54238], [47.376029, 8.522879], [47.367661, 8.509707], [47.366824, 8.543108], [47.373663, 8.542853], [47.423125, 8.538378], [47.426583, 8.51015], [47.371526, 8.515757], [47.385204, 8.537158], [47.385775, 8.548918], [47.394008, 8.50474], [47.410317, 8.52689], [47.38328, 8.530444], [47.369096, 8.537859], [47.360304, 8.567173], [47.373224, 8.494578], [47.356607, 8.551382], [47.372639, 8.534251], [47.37474, 8.549668], [47.395248, 8.540425], [47.366801, 8.522758], [47.363977, 8.546465], [47.403263, 8.534709], [47.343247, 8.535619], [47.363124, 8.559316], [47.376517, 8.524611], [47.367999, 8.540657], [47.362414, 8.554654], [47.425083, 8.537742], [47.352095, 8.573207], [47.374533, 8.5242], [47.395814, 8.530025], [47.359342, 8.56988], [47.361781, 8.518089], [47.370677, 8.514204], [47.366012, 8.536842], [47.359003, 8.554755], [47.409149, 8.547524], [47.378808, 8.509455], [47.376747, 8.52782], [47.401705, 8.581272], [47.429215, 8.487961], [47.392621, 8.488207], [47.367495, 8.529286], [47.374796, 8.525821], [47.39846, 8.538385], [47.399927, 8.494896], [47.409143, 8.571335], [47.376047, 8.510392], [47.360387, 8.523832], [47.379899, 8.494472], [47.379538, 8.527533], [47.366437, 8.54506], [47.379153, 8.526452], [47.386814, 8.514291], [47.369993, 8.518109], [47.37999, 8.536865], [47.377099, 8.541917], [47.391054, 8.522576], [47.397898, 8.534161], [47.404945, 8.557188], [47.399039, 8.541842], [47.378022, 8.51079], [47.373408, 8.52611], [47.375768, 8.52102], [47.372653, 8.525115], [47.375647, 8.477332], [47.377729, 8.507447], [47.364168, 8.531085], [47.408481, 8.578277], [47.358797, 8.558444], [47.404928, 8.557121], [47.424414, 8.538033], [47.366213, 8.548736], [47.413885, 8.54802], [47.362433, 8.533869], [47.387049, 8.489687], [47.357745, 8.521555], [47.390608, 8.524991], [47.370099, 8.552445], [47.348524, 8.522704], [47.41835, 8.546708], [47.393827, 8.524222], [47.368571, 8.495837], [47.377324, 8.543855], [47.405176, 8.478557], [47.399625, 8.540807], [47.402938, 8.575734], [47.378306, 8.530355], [47.363087, 8.513084], [47.374802, 8.496093], [47.402194, 8.488038], [47.389497, 8.48751], [47.377358, 8.498911], [47.370197, 8.548819], [47.38619, 8.525139], [47.391596, 8.525196], [47.365714, 8.535976], [47.367014, 8.556101], [47.414363, 8.536501], [47.362186, 8.547513], [47.402002, 8.531079], [47.399229, 8.542614], [47.407006, 8.550553], [47.36405, 8.498395], [47.392625, 8.50254], [47.385751, 8.492906], [47.363784, 8.535539], [47.402086, 8.49886], [47.402858, 8.500929], [47.383089, 8.530652], [47.369452, 8.52591], [47.419751, 8.50772], [47.371854, 8.506614], [47.379002, 8.570204], [47.393494, 8.526162], [47.399255, 8.542734], [47.403646, 8.531258], [47.414385, 8.506301], [47.342971, 8.520077], [47.360939, 8.515781], [47.37848, 8.576682], [47.40308, 8.554684], [47.372334, 8.536019], [47.404836, 8.55076], [47.365851, 8.552674], [47.384782, 8.531388], [47.38942, 8.529854], [47.362497, 8.533698], [47.375859, 8.538025], [47.37945, 8.537861], [47.370657, 8.519288], [47.393245, 8.587144], [47.369569, 8.54768], [47.390403, 8.536232], [47.371404, 8.521091], [47.359134, 8.585536], [47.368417, 8.497886], [47.36977, 8.490617], [47.376812, 8.538031], [47.416549, 8.545942], [47.377717, 8.532806], [47.403784, 8.565616], [47.41257, 8.537789], [47.351695, 8.55889], [47.370958, 8.548252], [47.402978, 8.56242], [47.392754, 8.524425], [47.381782, 8.529976], [47.381556, 8.514728], [47.397093, 8.480108], [47.372624, 8.518639], [47.350529, 8.51888], [47.409449, 8.561218], [47.368969, 8.538029], [47.36973, 8.530828], [47.419111, 8.546141], [47.380897, 8.517906], [47.412636, 8.514534], [47.381398, 8.510513], [47.379593, 8.526514], [47.357839, 8.520166], [47.374192, 8.542996], [47.375099, 8.519444], [47.369876, 8.552281], [47.419195, 8.546712], [47.353535, 8.556599], [47.364321, 8.533921], [47.375517, 8.535237], [47.356271, 8.556445], [47.37017, 8.548805], [47.412944, 8.538234], [47.369881, 8.529097], [47.377349, 8.498911], [47.360388, 8.596895], [47.385969, 8.519055], [47.368751, 8.54953], [47.374307, 8.522394], [47.384037, 8.511056], [47.373521, 8.537023], [47.361993, 8.5507], [47.371275, 8.486344], [47.411162, 8.562605], [47.381185, 8.516005], [47.371743, 8.515708], [47.356865, 8.53574], [47.383391, 8.574867], [47.39849, 8.474863], [47.402405, 8.499383], [47.378289, 8.527415], [47.378308, 8.527362], [47.372727, 8.529632], [47.393216, 8.493041], [47.370188, 8.548805], [47.398858, 8.59169], [47.387167, 8.489557], [47.393001, 8.485022], [47.389673, 8.511474], [47.413648, 8.524586], [47.366806, 8.543148], [47.417085, 8.545409], [47.412026, 8.528807], [47.399769, 8.586], [47.367819, 8.534073], [47.363742, 8.575255], [47.413139, 8.515578], [47.398978, 8.513993], [47.375779, 8.559489], [47.361408, 8.576596], [47.380164, 8.501947], [47.379101, 8.508891], [47.399888, 8.541449], [47.3623, 8.532675], [47.367839, 8.546095], [47.404543, 8.556941], [47.404605, 8.557022], [47.369236, 8.527839], [47.377552, 8.533107], [47.361661, 8.526069], [47.376346, 8.527468], [47.367411, 8.546642], [47.38861, 8.491122], [47.368241, 8.533181], [47.370188, 8.548805], [47.382877, 8.507139], [47.369804, 8.541886], [47.376356, 8.527375], [47.415181, 8.512624], [47.377264, 8.526387], [47.349658, 8.56119], [47.41701, 8.522985], [47.381269, 8.491268], [47.367179, 8.539898], [47.413883, 8.545396], [47.379428, 8.569895], [47.346075, 8.534341], [47.370188, 8.548805], [47.40527, 8.490974], [47.420771, 8.50839], [47.414086, 8.550436], [47.383155, 8.58604], [47.36143, 8.551284], [47.391112, 8.523054], [47.385979, 8.51793], [47.365585, 8.537204], [47.373434, 8.53481], [47.36561, 8.552496], [47.42296, 8.551787], [47.389438, 8.511642], [47.39467, 8.486419], [47.393328, 8.478644], [47.41433, 8.518107], [47.396604, 8.593999], [47.372569, 8.529284], [47.363797, 8.575111], [47.364699, 8.598458], [47.378108, 8.541819], [47.337024, 8.520194], [47.370209, 8.535327], [47.366907, 8.520152], [47.373725, 8.554162], [47.364918, 8.545902], [47.406278, 8.541131], [47.380561, 8.548664], [47.40925, 8.55007], [47.379572, 8.527746], [47.371196, 8.524132], [47.372762, 8.534492], [47.369957, 8.466814], [47.370161, 8.548805], [47.407504, 8.548311], [47.405448, 8.579405], [47.336628, 8.517394], [47.375639, 8.554361], [47.399846, 8.543064], [47.370464, 8.532141], [47.366407, 8.557505], [47.387851, 8.519756], [47.372753, 8.534478], [47.37818, 8.515097], [47.374728, 8.524495], [47.379949, 8.523078], [47.379437, 8.569869], [47.37384, 8.53658], [47.373365, 8.531671], [47.382066, 8.514103], [47.368672, 8.543623], [47.408355, 8.550634], [47.38576, 8.532614], [47.413092, 8.515802], [47.377985, 8.53011], [47.374734, 8.544636], [47.377116, 8.569926], [47.373452, 8.534771], [47.373969, 8.531445], [47.366953, 8.522933], [47.38233, 8.499129], [47.366739, 8.563165], [47.349957, 8.561011], [47.346629, 8.528992], [47.359994, 8.594874], [47.345345, 8.534498], [47.392564, 8.492538], [47.37347, 8.530984], [47.382175, 8.541665], [47.377946, 8.537101], [47.366755, 8.49968], [47.343563, 8.53552], [47.402979, 8.580703], [47.37235, 8.542825], [47.354435, 8.573972], [47.354958, 8.523378], [47.371695, 8.556662], [47.421374, 8.549302], [47.414474, 8.556818], [47.370152, 8.548791], [47.376075, 8.543657], [47.370345, 8.550212], [47.372928, 8.504318], [47.389581, 8.487194], [47.387853, 8.539531], [47.390002, 8.480433], [47.372272, 8.503206], [47.383664, 8.496891], [47.42195, 8.510203], [47.386246, 8.480996], [47.365642, 8.532161], [47.348778, 8.578484], [47.37974, 8.524253], [47.364351, 8.555237], [47.379801, 8.520652], [47.384454, 8.531858], [47.355002, 8.534934], [47.354731, 8.575024], [47.379263, 8.552636], [47.388664, 8.479162], [47.332158, 8.517344], [47.381086, 8.513076], [47.405337, 8.592374], [47.388521, 8.491014], [47.374576, 8.538661], [47.381324, 8.542217], [47.412886, 8.537703], [47.409845, 8.549976], [47.37938, 8.544229], [47.364323, 8.554442], [47.393587, 8.539133], [47.375749, 8.535427], [47.411279, 8.57093], [47.392142, 8.493403], [47.37056, 8.524794], [47.400364, 8.585894], [47.381836, 8.516574], [47.366928, 8.553822], [47.387963, 8.527016], [47.365184, 8.521626], [47.365995, 8.55265], [47.414307, 8.550918], [47.390684, 8.484593], [47.371697, 8.52536], [47.378189, 8.53418], [47.410678, 8.558752], [47.382014, 8.548151], [47.354448, 8.560682], [47.382144, 8.512515], [47.360056, 8.581399], [47.384076, 8.508832], [47.376541, 8.543892], [47.379347, 8.522086], [47.393395, 8.49311], [47.375211, 8.545573], [47.407694, 8.568627], [47.375669, 8.537187], [47.378281, 8.512887], [47.379148, 8.544953], [47.361222, 8.535354], [47.379588, 8.53748], [47.371061, 8.520316], [47.368723, 8.483129], [47.369868, 8.547488], [47.403909, 8.556464], [47.410666, 8.571937], [47.361511, 8.525735], [47.375406, 8.5645], [47.367859, 8.495995], [47.377635, 8.520449], [47.378614, 8.542478], [47.377643, 8.518635], [47.36123, 8.51731], [47.386797, 8.547482], [47.380764, 8.52536], [47.41489, 8.541653], [47.379474, 8.527651], [47.370188, 8.511652], [47.364256, 8.531259], [47.374927, 8.496214], [47.407316, 8.57967], [47.362532, 8.533884], [47.420342, 8.539632], [47.376074, 8.559667], [47.414423, 8.552868], [47.361901, 8.560243], [47.366521, 8.540931], [47.369257, 8.527561], [47.381442, 8.531691], [47.416232, 8.511837], [47.383279, 8.540946], [47.387049, 8.518945], [47.372412, 8.553208], [47.420834, 8.501526], [47.39073, 8.522569], [47.412658, 8.480731], [47.373095, 8.514385], [47.397555, 8.49461], [47.360611, 8.528695], [47.346945, 8.530759], [47.374536, 8.539958], [47.377543, 8.522606], [47.386296, 8.504188], [47.365176, 8.547112], [47.368862, 8.539787], [47.365176, 8.547112], [47.381195, 8.503252], [47.365186, 8.547933], [47.353166, 8.526425], [47.40725, 8.549525], [47.366627, 8.545911], [47.375314, 8.485337], [47.36861, 8.531308], [47.397017, 8.530261], [47.385342, 8.542512], [47.389119, 8.488575], [47.398193, 8.532471], [47.368469, 8.528101], [47.357317, 8.57909], [47.386585, 8.518591], [47.372792, 8.520867], [47.39476, 8.525433], [47.42559, 8.557104], [47.38508, 8.498482], [47.386631, 8.489149], [47.384446, 8.547831], [47.403616, 8.556087], [47.376628, 8.527089], [47.37482, 8.543208], [47.415049, 8.515232], [47.405957, 8.577905], [47.402785, 8.535759], [47.359074, 8.550215], [47.370933, 8.556461], [47.408843, 8.542813], [47.37166, 8.525518], [47.364366, 8.546248], [47.329313, 8.51464], [47.372688, 8.534755], [47.37436, 8.541437], [47.363116, 8.506028], [47.39126, 8.514911], [47.416964, 8.538251], [47.384452, 8.528203], [47.367182, 8.533861], [47.393658, 8.501713], [47.365237, 8.499372], [47.377647, 8.541982], [47.373054, 8.566754], [47.394197, 8.49], [47.371773, 8.524991], [47.35549, 8.574709], [47.410365, 8.542646], [47.387253, 8.500803], [47.393827, 8.500934], [47.377246, 8.498326], [47.388207, 8.52016], [47.390847, 8.512968], [47.401382, 8.545202], [47.368365, 8.496706], [47.371344, 8.523698], [47.398014, 8.534256], [47.400918, 8.477878], [47.395315, 8.532333], [47.366806, 8.543134], [47.373756, 8.535942], [47.335335, 8.519075], [47.366696, 8.542391], [47.372536, 8.534593], [47.36436, 8.555211], [47.403978, 8.572457], [47.401999, 8.499507], [47.408069, 8.572584], [47.387493, 8.496212], [47.375295, 8.485496], [47.369885, 8.547554], [47.428355, 8.490502], [47.387013, 8.48966], [47.40314, 8.575301], [47.362429, 8.547426], [47.38701, 8.498931], [47.368946, 8.540398], [47.387362, 8.50066], [47.404736, 8.556534], [47.363447, 8.550108], [47.408241, 8.572548], [47.373407, 8.53481], [47.379879, 8.528652], [47.362541, 8.533885], [47.399247, 8.521709], [47.378512, 8.541854], [47.373041, 8.534498], [47.389697, 8.511859], [47.370204, 8.547164], [47.373967, 8.544885], [47.359635, 8.522414], [47.387574, 8.540518], [47.371923, 8.531919], [47.386299, 8.531698], [47.378297, 8.54173], [47.396181, 8.545373], [47.378768, 8.542336], [47.388834, 8.483258], [47.376754, 8.560993], [47.408172, 8.547119], [47.350924, 8.527624], [47.39503, 8.522538], [47.392303, 8.476703], [47.373298, 8.528226], [47.397122, 8.530621], [47.378311, 8.51061], [47.367451, 8.537812], [47.394854, 8.524084], [47.419679, 8.50479], [47.386741, 8.547614], [47.387356, 8.493454], [47.384226, 8.530304], [47.359768, 8.594115], [47.388923, 8.483366], [47.35979, 8.521318], [47.387316, 8.537334], [47.370217, 8.532573], [47.37327, 8.48061], [47.419139, 8.507827], [47.403325, 8.555484], [47.394339, 8.489261], [47.377203, 8.52146], [47.377656, 8.538247], [47.388322, 8.487169], [47.431466, 8.543773], [47.382412, 8.500998], [47.412134, 8.549534], [47.375465, 8.486492], [47.38844, 8.509622], [47.355971, 8.522776], [47.400018, 8.494844], [47.363596, 8.550561], [47.373136, 8.532977], [47.377334, 8.548411], [47.380052, 8.528365], [47.361389, 8.554619], [47.371097, 8.555246], [47.428154, 8.489941], [47.426501, 8.492626], [47.338684, 8.532071], [47.370161, 8.548831], [47.36905, 8.537951], [47.428282, 8.489719], [47.371934, 8.522161], [47.411499, 8.526477], [47.377043, 8.53744], [47.373526, 8.527913], [47.376238, 8.544508], [47.411845, 8.550548], [47.367916, 8.5446], [47.374444, 8.540181], [47.421518, 8.537112], [47.415522, 8.544198], [47.39062, 8.54274], [47.406921, 8.586843], [47.359054, 8.5495], [47.390002, 8.489427], [47.398476, 8.591205], [47.411076, 8.545457], [47.369979, 8.543359], [47.357773, 8.55923], [47.360103, 8.535754], [47.396824, 8.529807], [47.366035, 8.53062], [47.418469, 8.508238], [47.37831, 8.541347], [47.388431, 8.491025], [47.370179, 8.548805], [47.414787, 8.519256], [47.356253, 8.507956], [47.388557, 8.491028], [47.404549, 8.534709], [47.410429, 8.56956], [47.381906, 8.52925], [47.424456, 8.549698], [47.420299, 8.508805], [47.375776, 8.554152], [47.388431, 8.487078], [47.37641, 8.534924], [47.391756, 8.518709], [47.396074, 8.540522], [47.380987, 8.513087], [47.340296, 8.530014], [47.379976, 8.527913], [47.360297, 8.567861], [47.390689, 8.483096], [47.364672, 8.537702], [47.364321, 8.531075], [47.370708, 8.516667], [47.373842, 8.492896], [47.367432, 8.523618], [47.381258, 8.494459], [47.378272, 8.540631], [47.369814, 8.510241], [47.390787, 8.522213], [47.414088, 8.551191], [47.374788, 8.544677], [47.363021, 8.561643], [47.382466, 8.501013], [47.364595, 8.566257], [47.379662, 8.553201], [47.382117, 8.528778], [47.38529, 8.507823], [47.365355, 8.533016], [47.415104, 8.513219], [47.380116, 8.52826], [47.372782, 8.534254], [47.405077, 8.557482], [47.398033, 8.532243], [47.415764, 8.531043], [47.405428, 8.491414], [47.356757, 8.535699], [47.369321, 8.525563], [47.407468, 8.54835], [47.353442, 8.558741], [47.344018, 8.530275], [47.406826, 8.550589], [47.37754, 8.543767], [47.359794, 8.507272], [47.367888, 8.560647], [47.410968, 8.550079], [47.409292, 8.558843], [47.425871, 8.537175], [47.379754, 8.515102], [47.388345, 8.540746], [47.374347, 8.519058], [47.371768, 8.536842], [47.377052, 8.544075], [47.361364, 8.549654], [47.404673, 8.572154], [47.375664, 8.545304], [47.361139, 8.549755], [47.3945, 8.525322], [47.414718, 8.551112], [47.422644, 8.499296], [47.333992, 8.515462], [47.393877, 8.475608], [47.390751, 8.492091], [47.407124, 8.492892], [47.365206, 8.534495], [47.38306, 8.530836], [47.413332, 8.538997], [47.408116, 8.554856], [47.406168, 8.534729], [47.381149, 8.491623], [47.381046, 8.491979], [47.370887, 8.548105], [47.397622, 8.53291], [47.400906, 8.537575], [47.37214, 8.520298], [47.375875, 8.541098], [47.41916, 8.506449], [47.356572, 8.523927], [47.399312, 8.542457], [47.374778, 8.549523], [47.366914, 8.544037], [47.378117, 8.522763], [47.408037, 8.489399], [47.417725, 8.546178], [47.376444, 8.525642], [47.40148, 8.545231], [47.361084, 8.525289], [47.339014, 8.538099], [47.408813, 8.548842], [47.37449, 8.495795], [47.38881, 8.479933], [47.376124, 8.516605], [47.368619, 8.524622], [47.397665, 8.53311], [47.375203, 8.523657], [47.414328, 8.538369], [47.390643, 8.52323], [47.364585, 8.537369], [47.419776, 8.548103], [47.382012, 8.550204], [47.355813, 8.560909], [47.410285, 8.572326], [47.382689, 8.514804], [47.375232, 8.524399], [47.358181, 8.50957], [47.40457, 8.556955], [47.427134, 8.491313], [47.377703, 8.525615], [47.393729, 8.500853], [47.398373, 8.534277], [47.406005, 8.591222], [47.379604, 8.54434], [47.347989, 8.532686], [47.370872, 8.512553], [47.41457, 8.55902], [47.380634, 8.488898], [47.386001, 8.535638], [47.404946, 8.557135], [47.414206, 8.571456], [47.372381, 8.534842], [47.359685, 8.507469], [47.366166, 8.533853], [47.364295, 8.533854], [47.407507, 8.568438], [47.374287, 8.552797], [47.364393, 8.546196], [47.405532, 8.588138], [47.373785, 8.519457], [47.39788, 8.474613], [47.383145, 8.572477], [47.415168, 8.562319], [47.377398, 8.529436], [47.374633, 8.524056], [47.393216, 8.493027], [47.365074, 8.553968], [47.42465, 8.552857], [47.365368, 8.531666], [47.367066, 8.547019], [47.374486, 8.540486], [47.3766, 8.532929], [47.377626, 8.522329], [47.349034, 8.532522], [47.381993, 8.584386], [47.39738, 8.533726], [47.420625, 8.502728], [47.37706, 8.544168], [47.396854, 8.540856], [47.382178, 8.54038], [47.417278, 8.546845], [47.377715, 8.519603], [47.428254, 8.489758], [47.36037, 8.523686], [47.346488, 8.564379], [47.376229, 8.528406], [47.367851, 8.523984], [47.340929, 8.537239], [47.357503, 8.52155], [47.387926, 8.485214], [47.407002, 8.481561], [47.362006, 8.559597], [47.364756, 8.557059], [47.407536, 8.544085], [47.402083, 8.495256], [47.407189, 8.586146], [47.367733, 8.513496], [47.404156, 8.561557], [47.380283, 8.512398], [47.404191, 8.561677], [47.376942, 8.544271], [47.413401, 8.53937], [47.422323, 8.55074], [47.387855, 8.540286], [47.409522, 8.54989], [47.409033, 8.545573], [47.374076, 8.535366], [47.405264, 8.557711], [47.397998, 8.474522], [47.343827, 8.535247], [47.402037, 8.495348], [47.37626, 8.55991], [47.407858, 8.578542], [47.352673, 8.580314], [47.399265, 8.542681], [47.383466, 8.534513], [47.381819, 8.556186], [47.382205, 8.572047], [47.397708, 8.533243], [47.361703, 8.503233], [47.365937, 8.539978], [47.377669, 8.498321], [47.329669, 8.531318], [47.374447, 8.544643], [47.369181, 8.527997], [47.373585, 8.519744], [47.407584, 8.489774], [47.40953, 8.537766], [47.411633, 8.542725], [47.361536, 8.560765], [47.348546, 8.570961], [47.372299, 8.510013], [47.369202, 8.554081], [47.354287, 8.557806], [47.35618, 8.553769], [47.362666, 8.55552], [47.364235, 8.536408], [47.377407, 8.548293], [47.415299, 8.562719], [47.386073, 8.521322], [47.386376, 8.496375], [47.376047, 8.566102], [47.410191, 8.548566], [47.392329, 8.538987], [47.364064, 8.551379], [47.399722, 8.516155], [47.389034, 8.537383], [47.32932, 8.512933], [47.355231, 8.557866], [47.395759, 8.531136], [47.404153, 8.562762], [47.376003, 8.5295], [47.360453, 8.522483], [47.411188, 8.526033], [47.347311, 8.566686], [47.386555, 8.497531], [47.409035, 8.550052], [47.378475, 8.522956], [47.373975, 8.476201], [47.378708, 8.542043], [47.343836, 8.535234], [47.378364, 8.541334], [47.365761, 8.494298], [47.421077, 8.546526], [47.376189, 8.529755], [47.364834, 8.566646], [47.374106, 8.517888], [47.400074, 8.590643], [47.390782, 8.539896], [47.361545, 8.525961], [47.37017, 8.548805], [47.41438, 8.513629], [47.366964, 8.535061], [47.417183, 8.542642], [47.371391, 8.530121], [47.396032, 8.481041], [47.40727, 8.58526], [47.387613, 8.529738], [47.407754, 8.583562], [47.369121, 8.527691], [47.418808, 8.507582], [47.372761, 8.538372], [47.343845, 8.535221], [47.352294, 8.507122], [47.389231, 8.479134], [47.362068, 8.535344], [47.367191, 8.533848], [47.375535, 8.541845], [47.3556, 8.556947], [47.374703, 8.523329], [47.425886, 8.555321], [47.350643, 8.579066], [47.386934, 8.490426], [47.371741, 8.53406], [47.364717, 8.554556], [47.369717, 8.543539], [47.361069, 8.53543], [47.385782, 8.545408], [47.37017, 8.548805], [47.377337, 8.535844], [47.389401, 8.539444], [47.377461, 8.514963], [47.422237, 8.552183], [47.383477, 8.486809], [47.360894, 8.513795], [47.366945, 8.558602], [47.380237, 8.525918], [47.37087, 8.554592], [47.375295, 8.485482], [47.360305, 8.5522], [47.370674, 8.519315], [47.390002, 8.476407], [47.377326, 8.570526], [47.391714, 8.519318], [47.404047, 8.495892], [47.358678, 8.500605], [47.380825, 8.518858], [47.374299, 8.524208], [47.335359, 8.528907], [47.394215, 8.490067], [47.422815, 8.494422], [47.411495, 8.546738], [47.38295, 8.540542], [47.391772, 8.538923], [47.409774, 8.545205], [47.368857, 8.531737], [47.365851, 8.509883], [47.370702, 8.558866], [47.392003, 8.523986], [47.365433, 8.539028], [47.37018, 8.490056], [47.344342, 8.530229], [47.387312, 8.518738], [47.402728, 8.535135], [47.400683, 8.548633], [47.405639, 8.59181], [47.356085, 8.55615], [47.378164, 8.526406], [47.364921, 8.550231], [47.367645, 8.495805], [47.350099, 8.570345], [47.38443, 8.496787], [47.398482, 8.538929], [47.391307, 8.487294], [47.385012, 8.481197], [47.341676, 8.53433], [47.388014, 8.52919], [47.384437, 8.499873], [47.385056, 8.530917], [47.385002, 8.530982], [47.383689, 8.547908], [47.378083, 8.530218], [47.427502, 8.547203], [47.39798, 8.474535], [47.376968, 8.544338], [47.392137, 8.525949], [47.39245, 8.516551], [47.376382, 8.527468], [47.347975, 8.564027], [47.37729, 8.52656], [47.345822, 8.527758], [47.370161, 8.548818], [47.409205, 8.566844], [47.424356, 8.540365], [47.379563, 8.527772], [47.378876, 8.530989], [47.376082, 8.533501], [47.347379, 8.534394], [47.419192, 8.507881], [47.37964, 8.523443], [47.387484, 8.488318], [47.383307, 8.530431], [47.369909, 8.536552], [47.369073, 8.525134], [47.426052, 8.547385], [47.416597, 8.534294], [47.383565, 8.539283], [47.395697, 8.522352], [47.387011, 8.575434], [47.398093, 8.532509], [47.402701, 8.517924], [47.376954, 8.523958], [47.367349, 8.57892], [47.407442, 8.574174], [47.387968, 8.517824], [47.394601, 8.527934], [47.374467, 8.52159], [47.380104, 8.518023], [47.374073, 8.555375], [47.378849, 8.520513], [47.40963, 8.537675], [47.385885, 8.493015], [47.412957, 8.537797], [47.381204, 8.483519], [47.428164, 8.547562], [47.384268, 8.548503], [47.403893, 8.569209], [47.368878, 8.539947], [47.368778, 8.524917], [47.397705, 8.52601], [47.387905, 8.524525], [47.386517, 8.503597], [47.367434, 8.541453], [47.355908, 8.562248], [47.424186, 8.496928], [47.374456, 8.517021], [47.413946, 8.518788], [47.420844, 8.502401], [47.412151, 8.528875], [47.379342, 8.555604], [47.359143, 8.559894], [47.403285, 8.586142], [47.376861, 8.543356], [47.344958, 8.532584], [47.367611, 8.541761], [47.354014, 8.558145], [47.429277, 8.548712], [47.389436, 8.52151], [47.410009, 8.541327], [47.371765, 8.521945], [47.351797, 8.560441], [47.407224, 8.564258], [47.382038, 8.515201], [47.396354, 8.504946], [47.373753, 8.544748], [47.37827, 8.53042], [47.380354, 8.512492], [47.40502, 8.572625], [47.373535, 8.525027], [47.347197, 8.531743], [47.411079, 8.543204], [47.37145, 8.531525], [47.363009, 8.559168], [47.381334, 8.542164], [47.415274, 8.546644], [47.415347, 8.546526], [47.409438, 8.538029], [47.392699, 8.52359], [47.385679, 8.508652], [47.37136, 8.514297], [47.365877, 8.54992], [47.370421, 8.535662], [47.409215, 8.547194], [47.40696, 8.550632], [47.406145, 8.551224], [47.37866, 8.559139], [47.408535, 8.53173], [47.38277, 8.541479], [47.402736, 8.554068], [47.41935, 8.502517], [47.366796, 8.54234], [47.366946, 8.543561], [47.36291, 8.558173], [47.404553, 8.557762], [47.356629, 8.52357], [47.392341, 8.503117], [47.366522, 8.540904], [47.366857, 8.543413], [47.350478, 8.578454], [47.369032, 8.537964], [47.368521, 8.539714], [47.400762, 8.548859], [47.377842, 8.532822], [47.401044, 8.535365], [47.377591, 8.543159], [47.393518, 8.483575], [47.365008, 8.557065], [47.388015, 8.485282], [47.38755, 8.518266], [47.366516, 8.553614], [47.405648, 8.527908], [47.37494, 8.534431], [47.351753, 8.4896], [47.413861, 8.545806], [47.388819, 8.479933], [47.394088, 8.525154], [47.417821, 8.511233], [47.368941, 8.524748], [47.335108, 8.519216], [47.369994, 8.466709], [47.383826, 8.540202], [47.403176, 8.588935], [47.329928, 8.51239], [47.369495, 8.526189], [47.386416, 8.527885], [47.391502, 8.514055], [47.363923, 8.566852], [47.36655, 8.54824], [47.341326, 8.530524], [47.399321, 8.585858], [47.380856, 8.518462], [47.364913, 8.547318], [47.359369, 8.507555], [47.3766, 8.532929], [47.421771, 8.550159], [47.353769, 8.558364], [47.375339, 8.56034], [47.387501, 8.487418], [47.391147, 8.489145], [47.393236, 8.47892], [47.416974, 8.538132], [47.369617, 8.525583], [47.399169, 8.542321], [47.391079, 8.522815], [47.33125, 8.536365], [47.37449, 8.495782], [47.374471, 8.495888], [47.427572, 8.546436], [47.366504, 8.533304], [47.418864, 8.507411], [47.378172, 8.514011], [47.36849, 8.546678], [47.376858, 8.535132], [47.344266, 8.531643], [47.385497, 8.536661], [47.374756, 8.553628], [47.369115, 8.54158], [47.391719, 8.48554], [47.377007, 8.524065], [47.374864, 8.541487], [47.38402, 8.501269], [47.406612, 8.584465], [47.393343, 8.547645], [47.391681, 8.518972], [47.402086, 8.49886], [47.410337, 8.547469], [47.371912, 8.506218], [47.370618, 8.470455], [47.343785, 8.534902], [47.36886, 8.528612], [47.415037, 8.551701], [47.398815, 8.533279], [47.358312, 8.550001], [47.385609, 8.543776], [47.385724, 8.489952], [47.362048, 8.557082], [47.408589, 8.531757], [47.35304, 8.526489], [47.352181, 8.524976], [47.37097, 8.554502], [47.396235, 8.545374], [47.362994, 8.518166], [47.37279, 8.521026], [47.419826, 8.482846], [47.361463, 8.565476], [47.425808, 8.547473], [47.373922, 8.513448], [47.414376, 8.537985], [47.384422, 8.5484], [47.380556, 8.528362], [47.406494, 8.55045], [47.383052, 8.484046], [47.405641, 8.542827], [47.386477, 8.525277], [47.370842, 8.516749], [47.382486, 8.529752], [47.37983, 8.525261], [47.365218, 8.50145], [47.356714, 8.553343], [47.380219, 8.501749], [47.370097, 8.548936], [47.407767, 8.578673], [47.374246, 8.525002], [47.401223, 8.534508], [47.381132, 8.534955], [47.372954, 8.531344], [47.391244, 8.515652], [47.365547, 8.539348], [47.386916, 8.490466], [47.418529, 8.547719], [47.370222, 8.521477], [47.381146, 8.528744], [47.39382, 8.524977], [47.374743, 8.544636], [47.376635, 8.534903], [47.373664, 8.537093], [47.369427, 8.541838], [47.427807, 8.490491], [47.373933, 8.536237], [47.370398, 8.514264], [47.367798, 8.53909], [47.362131, 8.547552], [47.391037, 8.522496], [47.410348, 8.550106], [47.364446, 8.53685], [47.402838, 8.491389], [47.410877, 8.563302], [47.398212, 8.536155], [47.394774, 8.546668], [47.359254, 8.518938], [47.419454, 8.556233], [47.417762, 8.54981], [47.37986, 8.515343], [47.369587, 8.547694], [47.404052, 8.55656], [47.378974, 8.54242], [47.369023, 8.53795], [47.418259, 8.508552], [47.379326, 8.56004], [47.368743, 8.540937], [47.373602, 8.519864], [47.38621, 8.518213], [47.359868, 8.549054], [47.400654, 8.502938], [47.361282, 8.576606], [47.349996, 8.52775], [47.3413, 8.524714], [47.357601, 8.554685], [47.414453, 8.553438], [47.371069, 8.547923], [47.350549, 8.560203], [47.41491, 8.549949], [47.37017, 8.548805], [47.419962, 8.500501], [47.373444, 8.526177], [47.363719, 8.551755], [47.375544, 8.520897], [47.358192, 8.555929], [47.359881, 8.594475], [47.380645, 8.528496], [47.361174, 8.521412], [47.37378, 8.537188], [47.376556, 8.548819], [47.40956, 8.545889], [47.392999, 8.545068], [47.377829, 8.574324], [47.420296, 8.503331], [47.347217, 8.53443], [47.400187, 8.494013], [47.341294, 8.536744], [47.401983, 8.499308], [47.37038, 8.489822], [47.361892, 8.560243], [47.359624, 8.549168], [47.387367, 8.497269], [47.37774, 8.551068], [47.327382, 8.529683], [47.343866, 8.530153], [47.380369, 8.483371], [47.360446, 8.552574], [47.390762, 8.522027], [47.379996, 8.555962], [47.381143, 8.542359], [47.412878, 8.522318], [47.387006, 8.490481], [47.377906, 8.529923], [47.387543, 8.527683], [47.367817, 8.5605], [47.366742, 8.56192], [47.385609, 8.548411], [47.382078, 8.533889], [47.414954, 8.55003], [47.391478, 8.481403], [47.368556, 8.534088], [47.349564, 8.565251], [47.417645, 8.546137], [47.375751, 8.537983], [47.361864, 8.52553], [47.37383, 8.537612], [47.396324, 8.545468], [47.364941, 8.570382], [47.380972, 8.491222], [47.378546, 8.540199], [47.393299, 8.52482], [47.408556, 8.540899], [47.359089, 8.525063], [47.383727, 8.58825], [47.382134, 8.512554], [47.379027, 8.543546], [47.370031, 8.55664], [47.422385, 8.548992], [47.424214, 8.543026], [47.385619, 8.519883], [47.410475, 8.533002], [47.40872, 8.546256], [47.376476, 8.511593], [47.386852, 8.535113], [47.362944, 8.563045], [47.407314, 8.544703], [47.397672, 8.533322], [47.363859, 8.531462], [47.403675, 8.570265], [47.369585, 8.558114], [47.385829, 8.517675], [47.403388, 8.493136], [47.382048, 8.532286], [47.366085, 8.545132], [47.375642, 8.496771], [47.379901, 8.483361], [47.353909, 8.575324], [47.358972, 8.516377], [47.369445, 8.526704], [47.369076, 8.541831], [47.376995, 8.544325], [47.391444, 8.523114], [47.361015, 8.531576], [47.387476, 8.487271], [47.390657, 8.483678], [47.364295, 8.533881], [47.372853, 8.518167], [47.411682, 8.561914], [47.389596, 8.512003], [47.381888, 8.531183], [47.364529, 8.532866], [47.404833, 8.574237], [47.398366, 8.53784], [47.373422, 8.552951], [47.356789, 8.514122], [47.364604, 8.566218], [47.328589, 8.517986], [47.361755, 8.525647], [47.366576, 8.559574], [47.37768, 8.51175], [47.41057, 8.572584], [47.391664, 8.514111], [47.376236, 8.533345], [47.37302, 8.532882], [47.384408, 8.53195], [47.380358, 8.527378], [47.375808, 8.529138], [47.368601, 8.558557], [47.341367, 8.529983], [47.377769, 8.537747], [47.376445, 8.536951], [47.38394, 8.527252], [47.371786, 8.556598], [47.347092, 8.534322], [47.404012, 8.534433], [47.406778, 8.541499], [47.336437, 8.52619], [47.345031, 8.529661], [47.374615, 8.576401], [47.391879, 8.538965], [47.370143, 8.548804], [47.418394, 8.546815], [47.36922, 8.532446], [47.37345, 8.533102], [47.410108, 8.509766], [47.384748, 8.516872], [47.386474, 8.541714], [47.409791, 8.537785], [47.375945, 8.53371], [47.378451, 8.510149], [47.364733, 8.547368], [47.408085, 8.580137], [47.36176, 8.604431], [47.410447, 8.569507], [47.376179, 8.567324], [47.387004, 8.536136], [47.370695, 8.546605], [47.384453, 8.542401], [47.373506, 8.519504], [47.373885, 8.536567], [47.413186, 8.513432], [47.368916, 8.501391], [47.367306, 8.522609], [47.369288, 8.505887], [47.375623, 8.548587], [47.367932, 8.544839], [47.404007, 8.556572], [47.380922, 8.541957], [47.329, 8.517372], [47.369515, 8.520165], [47.366764, 8.541876], [47.408991, 8.539583], [47.394229, 8.493405], [47.390924, 8.522043], [47.361663, 8.57627], [47.411244, 8.570849], [47.351542, 8.60164], [47.419306, 8.509235], [47.399288, 8.505707], [47.393703, 8.544884], [47.416402, 8.525411], [47.365559, 8.598768], [47.376328, 8.523627], [47.367135, 8.539752], [47.399241, 8.542323], [47.386245, 8.501856], [47.411339, 8.544257], [47.370233, 8.548806], [47.377314, 8.521158], [47.369305, 8.527178], [47.405155, 8.478862], [47.3833, 8.506102], [47.404515, 8.503691], [47.396304, 8.51329], [47.377487, 8.539012], [47.36877, 8.524784], [47.412657, 8.54003], [47.372391, 8.521362], [47.38443, 8.538175], [47.364754, 8.554478], [47.354761, 8.574667], [47.372814, 8.535645], [47.375743, 8.544551], [47.363842, 8.528497], [47.358661, 8.532256], [47.342648, 8.527706], [47.377908, 8.508536], [47.431357, 8.54385], [47.414025, 8.54842], [47.370286, 8.548847], [47.377166, 8.509051], [47.374606, 8.540158], [47.393656, 8.537571], [47.403029, 8.572013], [47.419185, 8.547772], [47.405023, 8.497355], [47.413433, 8.483555], [47.386786, 8.547628], [47.371837, 8.60154], [47.427793, 8.546905], [47.376428, 8.528251], [47.372966, 8.485397], [47.391065, 8.522298], [47.366497, 8.505156], [47.431151, 8.516101], [47.425017, 8.539941], [47.381212, 8.507212], [47.370233, 8.537538], [47.341496, 8.520986], [47.37869, 8.52304], [47.418226, 8.508299], [47.418341, 8.546708], [47.405269, 8.555287], [47.388296, 8.490996], [47.365429, 8.546932], [47.376643, 8.539749], [47.369726, 8.536853], [47.379888, 8.528586], [47.360946, 8.564989], [47.378056, 8.513849], [47.36227, 8.559311], [47.370523, 8.51624], [47.373828, 8.53025], [47.365898, 8.55621], [47.374736, 8.528335], [47.369901, 8.513526], [47.37897, 8.509484], [47.389222, 8.477173], [47.386389, 8.518388], [47.374451, 8.549768], [47.381137, 8.528731], [47.372713, 8.534968], [47.381682, 8.533947], [47.372498, 8.518663], [47.379785, 8.537576], [47.379825, 8.525724], [47.411076, 8.545457], [47.369717, 8.525532], [47.366435, 8.553626], [47.381333, 8.54219], [47.387642, 8.486798], [47.375266, 8.522732], [47.411328, 8.544495], [47.367181, 8.559268], [47.35834, 8.585717], [47.372892, 8.520684], [47.365144, 8.545708], [47.377107, 8.539163], [47.384408, 8.531937], [47.37539, 8.547603], [47.354271, 8.555794], [47.369087, 8.55012], [47.393246, 8.530542], [47.375819, 8.522293], [47.381863, 8.516601], [47.367504, 8.545386], [47.37437, 8.525203], [47.355563, 8.554259], [47.408241, 8.552142], [47.358407, 8.59705], [47.357838, 8.583787], [47.368349, 8.550144], [47.414591, 8.519066], [47.374231, 8.540865], [47.377755, 8.568112], [47.382496, 8.531527], [47.361137, 8.555514], [47.359888, 8.535697], [47.374459, 8.539545], [47.393042, 8.52157], [47.386113, 8.527575], [47.37017, 8.548805], [47.393369, 8.498978], [47.410545, 8.543538], [47.387818, 8.527146], [47.37384, 8.536514], [47.36714, 8.540202], [47.344886, 8.532635], [47.3757, 8.516689], [47.384765, 8.516885], [47.373732, 8.596404], [47.413422, 8.530505], [47.364896, 8.553792], [47.402005, 8.497812], [47.369014, 8.538016], [47.418114, 8.527977], [47.424641, 8.552856], [47.390924, 8.522057], [47.36264, 8.563807], [47.37556, 8.528776], [47.364107, 8.563705], [47.414073, 8.541491], [47.390335, 8.47546], [47.383322, 8.557065], [47.403623, 8.547793], [47.382028, 8.516221], [47.424797, 8.537524], [47.352754, 8.557337], [47.377246, 8.538795], [47.353194, 8.572145], [47.387645, 8.514891], [47.386017, 8.50511], [47.382156, 8.52948], [47.367429, 8.546629], [47.377831, 8.519698], [47.377329, 8.512762], [47.355785, 8.593036], [47.366935, 8.543786], [47.368923, 8.541854], [47.386495, 8.529106], [47.370161, 8.548805], [47.391872, 8.50524], [47.370687, 8.538991], [47.415591, 8.565972], [47.337465, 8.532563], [47.369527, 8.528507], [47.413002, 8.544424], [47.376776, 8.538084], [47.369595, 8.553401], [47.390422, 8.542723], [47.373896, 8.541057], [47.403607, 8.504601], [47.372133, 8.48399], [47.38329, 8.48854], [47.34964, 8.561163], [47.349827, 8.566011], [47.388161, 8.491086], [47.4124, 8.570384], [47.372675, 8.535179], [47.37563, 8.554374], [47.361117, 8.521742], [47.412215, 8.555167], [47.393921, 8.535152], [47.358684, 8.527875], [47.370143, 8.548791], [47.380348, 8.542713], [47.368772, 8.548286], [47.373278, 8.535165], [47.391381, 8.536517], [47.409403, 8.540678], [47.376784, 8.53815], [47.384791, 8.534209], [47.380475, 8.548212], [47.35814, 8.55569], [47.373822, 8.53654], [47.42487, 8.537407], [47.370556, 8.515671], [47.373956, 8.519461], [47.364574, 8.554461], [47.369912, 8.547515], [47.388331, 8.520414], [47.408885, 8.548817], [47.339991, 8.529968], [47.388582, 8.535691], [47.366787, 8.5432], [47.372435, 8.541463], [47.404659, 8.483966], [47.37004, 8.556654], [47.395154, 8.542636], [47.414521, 8.541725], [47.373031, 8.534564], [47.350988, 8.576916], [47.338689, 8.539151], [47.365723, 8.536002], [47.389677, 8.521713], [47.409567, 8.537687], [47.369957, 8.518069], [47.370967, 8.548212], [47.370298, 8.558804], [47.378953, 8.559595], [47.409817, 8.523527], [47.356407, 8.523235], [47.360866, 8.550014], [47.385208, 8.508007], [47.388167, 8.526358], [47.414673, 8.551124], [47.384445, 8.531858], [47.403341, 8.502277], [47.372672, 8.521196], [47.363634, 8.533298], [47.375357, 8.530255], [47.367972, 8.519763], [47.368835, 8.539813], [47.374067, 8.53632], [47.354065, 8.534147], [47.365949, 8.567597], [47.363136, 8.546911], [47.419531, 8.50533], [47.370206, 8.548806], [47.3728, 8.530494], [47.385227, 8.484274], [47.347806, 8.525337], [47.382573, 8.515702], [47.404016, 8.556559], [47.378091, 8.52651], [47.415913, 8.538136], [47.35303, 8.556694], [47.37572, 8.516517], [47.370106, 8.548883], [47.37553, 8.560066], [47.368603, 8.499267], [47.359815, 8.535801], [47.379618, 8.527707], [47.370905, 8.534957], [47.380537, 8.500458], [47.412476, 8.544797], [47.365559, 8.547478], [47.374364, 8.529639], [47.368995, 8.543723], [47.378509, 8.526982], [47.407913, 8.578384], [47.363452, 8.575421], [47.382895, 8.513947], [47.377785, 8.528411], [47.35356, 8.558572], [47.358631, 8.585379], [47.406908, 8.587214], [47.40438, 8.55703], [47.369188, 8.548003], [47.360349, 8.550454], [47.368664, 8.54643], [47.375049, 8.531401], [47.411577, 8.558771], [47.419066, 8.506911], [47.374078, 8.540849], [47.405444, 8.592456], [47.378415, 8.540753], [47.416538, 8.548062], [47.386504, 8.529106], [47.398767, 8.506597], [47.372341, 8.538138], [47.390957, 8.482306], [47.380848, 8.535506], [47.36647, 8.541631], [47.387384, 8.487495], [47.421111, 8.549509], [47.413296, 8.53139], [47.39482, 8.520917], [47.389697, 8.511846], [47.369105, 8.541659], [47.414056, 8.541437], [47.387174, 8.528656], [47.373969, 8.540939], [47.33579, 8.529988], [47.383763, 8.504694], [47.378725, 8.542189], [47.408635, 8.579963], [47.386171, 8.515642], [47.398534, 8.502684], [47.375962, 8.562817], [47.386208, 8.540424], [47.362951, 8.548324], [47.375471, 8.485843], [47.409692, 8.544408], [47.381092, 8.481954], [47.389309, 8.527282], [47.369417, 8.52007], [47.386632, 8.551519], [47.362131, 8.559639], [47.411703, 8.525805], [47.329615, 8.53133], [47.393238, 8.524607], [47.382365, 8.549019], [47.405154, 8.480968], [47.390055, 8.485521], [47.387589, 8.529406], [47.409835, 8.549115], [47.378941, 8.508703], [47.388934, 8.537513], [47.414095, 8.550423], [47.399295, 8.495241], [47.375987, 8.535869], [47.388554, 8.482392], [47.406678, 8.576914], [47.373452, 8.529104], [47.369063, 8.492192], [47.40284, 8.491085], [47.418855, 8.506364], [47.4143, 8.539335], [47.401833, 8.585607], [47.383707, 8.540385], [47.394146, 8.488741], [47.384399, 8.531937], [47.362727, 8.558486], [47.396857, 8.533861], [47.359636, 8.508858], [47.409812, 8.536486], [47.369212, 8.541754], [47.370286, 8.506913], [47.401241, 8.588138], [47.427294, 8.552952], [47.401492, 8.588303], [47.371104, 8.564767], [47.40678, 8.562765], [47.392678, 8.527735], [47.408359, 8.509214], [47.393929, 8.510421], [47.386187, 8.537814], [47.354679, 8.558238], [47.379359, 8.495547], [47.380246, 8.552352], [47.369901, 8.513539], [47.372899, 8.547445], [47.41048, 8.53817], [47.357122, 8.53515], [47.369715, 8.541778], [47.356706, 8.551384], [47.3744, 8.543861], [47.353235, 8.555944], [47.37385, 8.536487], [47.377134, 8.541998], [47.419454, 8.499935], [47.404173, 8.557052], [47.364007, 8.555442], [47.369238, 8.519961], [47.364185, 8.546363], [47.406073, 8.588945], [47.426586, 8.544255], [47.386991, 8.494123], [47.428072, 8.490059], [47.419447, 8.506561], [47.382411, 8.514666], [47.373905, 8.53825], [47.374229, 8.526776], [47.379196, 8.517991], [47.419933, 8.549551], [47.373449, 8.531355], [47.404329, 8.556751], [47.376831, 8.52659], [47.376803, 8.539051], [47.403323, 8.497295], [47.35546, 8.512944], [47.358248, 8.572239], [47.391365, 8.522966], [47.391625, 8.51917], [47.376394, 8.583868], [47.375426, 8.516206], [47.36985, 8.508321], [47.411124, 8.526204], [47.366888, 8.545824], [47.377394, 8.499892], [47.390561, 8.470272], [47.370737, 8.470219]], [[47.417156, 8.505296], [47.337015, 8.520274], [47.405579, 8.481705], [47.375414, 8.527078], [47.419348, 8.505565], [47.372766, 8.54731], [47.386263, 8.526054], [47.407997, 8.572622], [47.361892, 8.531131], [47.399611, 8.51553], [47.347594, 8.531645], [47.348517, 8.573951], [47.376946, 8.543848], [47.377303, 8.541299], [47.373624, 8.518474], [47.354972, 8.534232], [47.375563, 8.486666], [47.377784, 8.509249], [47.371643, 8.515772], [47.390352, 8.539728], [47.362636, 8.558657], [47.399304, 8.495201], [47.376958, 8.569578], [47.382601, 8.514564], [47.371969, 8.564639], [47.351377, 8.60108], [47.37416, 8.475701], [47.422825, 8.535827], [47.364481, 8.536943], [47.373619, 8.536204], [47.364803, 8.531508], [47.387155, 8.519119], [47.402153, 8.497417], [47.381507, 8.582627], [47.401562, 8.517583], [47.379451, 8.544323], [47.371203, 8.518557], [47.352206, 8.488272], [47.383088, 8.530797], [47.343005, 8.534635], [47.364257, 8.531193], [47.391239, 8.53919], [47.367638, 8.509217], [47.356836, 8.58407], [47.377752, 8.509818], [47.376238, 8.544508], [47.428558, 8.551507], [47.384761, 8.531732], [47.382879, 8.529124], [47.362122, 8.559639], [47.38359, 8.539429], [47.380375, 8.493634], [47.425179, 8.537082], [47.39559, 8.527093], [47.380421, 8.559414], [47.354172, 8.523679], [47.38803, 8.486647], [47.368627, 8.524728], [47.376418, 8.52739], [47.381719, 8.529988], [47.379324, 8.537858], [47.373278, 8.484662], [47.366973, 8.560376], [47.409521, 8.537766], [47.3644, 8.534108], [47.3932, 8.530647], [47.371756, 8.54754], [47.4313, 8.516555], [47.367771, 8.521056], [47.395645, 8.520272], [47.389245, 8.527427], [47.368351, 8.524392], [47.402527, 8.535462], [47.368895, 8.500729], [47.408922, 8.574563], [47.369339, 8.525511], [47.404652, 8.550279], [47.377726, 8.519418], [47.371673, 8.473097], [47.391381, 8.536557], [47.377337, 8.48343], [47.410597, 8.572624], [47.39896, 8.541655], [47.355785, 8.549948], [47.371372, 8.547281], [47.405986, 8.548094], [47.375517, 8.496597], [47.389358, 8.52119], [47.38567, 8.480071], [47.385432, 8.549043], [47.35733, 8.521705], [47.392736, 8.523524], [47.376304, 8.563791], [47.36811, 8.532821], [47.386948, 8.500691], [47.366469, 8.533224], [47.409513, 8.540482], [47.42589, 8.493595], [47.355051, 8.557915], [47.363598, 8.533324], [47.372878, 8.600821], [47.392071, 8.49923], [47.397051, 8.52185], [47.384134, 8.532408], [47.387402, 8.487482], [47.372652, 8.601015], [47.382556, 8.514576], [47.382967, 8.551892], [47.409282, 8.528764], [47.405149, 8.481538], [47.384871, 8.484902], [47.364851, 8.567693], [47.383755, 8.542956], [47.36698, 8.491741], [47.39376, 8.494522], [47.39952, 8.516628], [47.371482, 8.546157], [47.418937, 8.507266], [47.38998, 8.512302], [47.368309, 8.52218], [47.370189, 8.488057], [47.364272, 8.526718], [47.369401, 8.525644], [47.369392, 8.525591], [47.39166, 8.513528], [47.403711, 8.503106], [47.418141, 8.512605], [47.401959, 8.492021], [47.360506, 8.52259], [47.388023, 8.526369], [47.399057, 8.514141], [47.374335, 8.529876], [47.352493, 8.532024], [47.401539, 8.53148], [47.379705, 8.521286], [47.369455, 8.519846], [47.389174, 8.470536], [47.426693, 8.492298], [47.383588, 8.532158], [47.420673, 8.501404], [47.352948, 8.5247], [47.340026, 8.530061], [47.389656, 8.47187], [47.373785, 8.503064], [47.359681, 8.508806], [47.387192, 8.51904], [47.37775, 8.537852], [47.364165, 8.553062], [47.35876, 8.585117], [47.41964, 8.548219], [47.40806, 8.544758], [47.379327, 8.495136], [47.393247, 8.52466], [47.382634, 8.546323], [47.43127, 8.538811], [47.336315, 8.524811], [47.377265, 8.51292], [47.364477, 8.566308], [47.373527, 8.553311], [47.369591, 8.466529], [47.390714, 8.534729], [47.373744, 8.542881], [47.365514, 8.552124], [47.356399, 8.527961], [47.39894, 8.533308], [47.414181, 8.533926], [47.378203, 8.510648], [47.377692, 8.517259], [47.384122, 8.528858], [47.381984, 8.498659], [47.407839, 8.54527], [47.391983, 8.473174], [47.351877, 8.530529], [47.403767, 8.536547], [47.340617, 8.525547], [47.392269, 8.492333], [47.384085, 8.508832], [47.359665, 8.569979], [47.367595, 8.509004], [47.375914, 8.526545], [47.385924, 8.480791], [47.399215, 8.531883], [47.371083, 8.531346], [47.393001, 8.53924], [47.363041, 8.548365], [47.408928, 8.539556], [47.406938, 8.487588], [47.3586, 8.532003], [47.353471, 8.556624], [47.417757, 8.513273], [47.389172, 8.470708], [47.376521, 8.499927], [47.369733, 8.508372], [47.379606, 8.490109], [47.372204, 8.52406], [47.378444, 8.54805], [47.366055, 8.532289], [47.411792, 8.569973], [47.355394, 8.535287], [47.419012, 8.50308], [47.373084, 8.532777], [47.356814, 8.579026], [47.417419, 8.553713], [47.357817, 8.521635], [47.365876, 8.49442], [47.383162, 8.500576], [47.419929, 8.546145], [47.373688, 8.52887], [47.35279, 8.557272], [47.357587, 8.550581], [47.413012, 8.537719], [47.388021, 8.519825], [47.348479, 8.534138], [47.378679, 8.563669], [47.404373, 8.556778], [47.392968, 8.529397], [47.359811, 8.522867], [47.340781, 8.530129], [47.392212, 8.538985], [47.392286, 8.476491], [47.364577, 8.566231], [47.386459, 8.518535], [47.356606, 8.527025], [47.386935, 8.519578], [47.369091, 8.514516], [47.337818, 8.531419], [47.378223, 8.482984], [47.377265, 8.538703], [47.376987, 8.544285], [47.368034, 8.540737], [47.366544, 8.553562], [47.400195, 8.586605], [47.374726, 8.518907], [47.375936, 8.525129], [47.409557, 8.537793], [47.411149, 8.543471], [47.419228, 8.507922], [47.376501, 8.523392], [47.369964, 8.510654], [47.425611, 8.497513], [47.426007, 8.493557], [47.356423, 8.550888], [47.415361, 8.518406], [47.417274, 8.544499], [47.365, 8.562466], [47.358221, 8.571418], [47.419212, 8.547746], [47.387334, 8.533547], [47.377255, 8.538795], [47.402349, 8.535286], [47.369007, 8.528311], [47.404725, 8.576011], [47.371441, 8.520045], [47.392165, 8.533513], [47.383736, 8.550571], [47.404303, 8.564952], [47.382334, 8.487925], [47.358426, 8.585216], [47.374506, 8.557132], [47.36915, 8.550108], [47.35258, 8.524666], [47.367553, 8.565473], [47.409127, 8.545125], [47.428192, 8.489704], [47.399787, 8.547369], [47.374362, 8.556228], [47.398025, 8.532084], [47.398373, 8.538079], [47.364984, 8.560493], [47.368284, 8.551255], [47.371658, 8.550292], [47.380706, 8.582623], [47.401306, 8.541836], [47.398849, 8.533465], [47.377477, 8.543819], [47.35602, 8.535697], [47.37016, 8.548871], [47.378672, 8.543036], [47.413392, 8.539383], [47.37729, 8.526494], [47.386297, 8.518532], [47.371915, 8.522306], [47.347627, 8.562828], [47.370803, 8.518033], [47.398304, 8.547218], [47.376114, 8.583981], [47.417697, 8.509097], [47.371242, 8.568133], [47.368795, 8.499853], [47.356424, 8.526253], [47.382717, 8.514672], [47.387584, 8.546956], [47.383267, 8.557223], [47.35424, 8.508697], [47.374335, 8.524182], [47.361686, 8.560159], [47.358561, 8.580665], [47.385815, 8.546694], [47.390327, 8.525223], [47.399985, 8.494526], [47.367838, 8.522527], [47.366462, 8.545246], [47.406622, 8.591593], [47.384653, 8.542153], [47.390007, 8.512369], [47.368359, 8.559386], [47.385765, 8.517753], [47.399674, 8.496003], [47.373126, 8.536896], [47.428071, 8.490112], [47.363748, 8.547784], [47.413644, 8.528866], [47.422265, 8.538943], [47.387409, 8.544608], [47.408478, 8.552717], [47.358273, 8.587026], [47.379226, 8.525328], [47.40306, 8.589728], [47.392734, 8.492673], [47.356675, 8.534863], [47.376331, 8.52613], [47.383282, 8.506101], [47.378978, 8.559821], [47.418993, 8.507029], [47.378331, 8.52874], [47.377864, 8.511369], [47.412511, 8.508661], [47.381267, 8.49144], [47.365186, 8.547893], [47.361636, 8.552241], [47.374237, 8.536482], [47.382267, 8.572101], [47.388035, 8.493958], [47.34083, 8.5192], [47.357294, 8.552031], [47.391948, 8.5116], [47.376133, 8.559112], [47.414122, 8.550437], [47.360153, 8.523801], [47.381689, 8.531298], [47.391327, 8.538384], [47.37821, 8.526248], [47.403767, 8.536534], [47.344118, 8.530079], [47.384012, 8.527201], [47.36624, 8.548723], [47.395518, 8.522322], [47.346413, 8.529067], [47.370567, 8.54116], [47.369974, 8.522995], [47.378836, 8.542774], [47.411434, 8.52572], [47.393346, 8.474684], [47.370015, 8.548974], [47.368661, 8.543914], [47.42277, 8.535998], [47.408832, 8.545834], [47.423688, 8.551909], [47.403671, 8.571682], [47.39619, 8.545346], [47.369509, 8.528506], [47.392056, 8.497919], [47.401883, 8.535025], [47.388327, 8.540746], [47.375169, 8.524398], [47.408657, 8.546294], [47.370254, 8.524854], [47.382925, 8.486242], [47.370215, 8.548806], [47.387472, 8.49849], [47.379246, 8.538439], [47.383262, 8.530404], [47.373157, 8.537466], [47.403265, 8.497784], [47.353352, 8.576199], [47.355621, 8.559476], [47.357442, 8.521337], [47.368431, 8.534019], [47.373402, 8.524892], [47.386347, 8.548387], [47.365086, 8.567526], [47.390825, 8.523922], [47.37204, 8.522361], [47.397736, 8.533151], [47.36646, 8.513986], [47.41915, 8.547732], [47.356002, 8.526179], [47.377301, 8.512868], [47.381364, 8.494634], [47.426957, 8.506659], [47.361899, 8.52565], [47.406977, 8.573886], [47.374467, 8.52159], [47.366486, 8.53333], [47.387518, 8.527471], [47.372634, 8.52616], [47.366377, 8.533354], [47.391045, 8.522589], [47.419923, 8.554308], [47.365344, 8.556728], [47.390054, 8.48062], [47.367954, 8.540695], [47.369005, 8.53799], [47.429295, 8.540282], [47.37525, 8.518653], [47.403663, 8.534266], [47.392234, 8.503048], [47.378696, 8.564715], [47.36073, 8.551971], [47.377678, 8.507154], [47.376831, 8.535132], [47.376459, 8.51154], [47.384659, 8.487375], [47.376674, 8.559958], [47.380667, 8.525159], [47.365586, 8.598795], [47.35883, 8.552183], [47.366812, 8.558387], [47.40323, 8.502553], [47.368986, 8.524828], [47.363065, 8.517307], [47.367806, 8.54011], [47.368725, 8.528583], [47.396834, 8.529648], [47.410527, 8.543551], [47.418207, 8.546546], [47.394883, 8.525767], [47.369316, 8.504762], [47.375089, 8.496257], [47.391416, 8.551698], [47.385982, 8.52144], [47.37316, 8.552111], [47.409358, 8.546362], [47.34478, 8.533361], [47.368182, 8.49612], [47.374697, 8.497799], [47.364601, 8.554514], [47.389, 8.488811], [47.429507, 8.487529], [47.393616, 8.519886], [47.427231, 8.546402], [47.425998, 8.493531], [47.375573, 8.557459], [47.409111, 8.547775], [47.405161, 8.48016], [47.378402, 8.526927], [47.354297, 8.557753], [47.423558, 8.54956], [47.371627, 8.517507], [47.387218, 8.51912], [47.384745, 8.509402], [47.380045, 8.483404], [47.383536, 8.539495], [47.388535, 8.53875], [47.362651, 8.506694], [47.408726, 8.566145], [47.387904, 8.48271], [47.377548, 8.528777], [47.370052, 8.511821], [47.379324, 8.537858], [47.400195, 8.548887], [47.404364, 8.556818], [47.369467, 8.526228], [47.372444, 8.503143], [47.357469, 8.550672], [47.36949, 8.525726], [47.37027, 8.525013], [47.361955, 8.560218], [47.373915, 8.544751], [47.348267, 8.571008], [47.371173, 8.530355], [47.402653, 8.499799], [47.398032, 8.53423], [47.362622, 8.533873], [47.386851, 8.490637], [47.383721, 8.510189], [47.42735, 8.546193], [47.401722, 8.505212], [47.406984, 8.487483], [47.360525, 8.561128], [47.377079, 8.523113], [47.373149, 8.534526], [47.380581, 8.500578], [47.379261, 8.53787], [47.402709, 8.554067], [47.421306, 8.549884], [47.372986, 8.567282], [47.370161, 8.548818], [47.355103, 8.559041], [47.381391, 8.56509], [47.37161, 8.506741], [47.377152, 8.535403], [47.368882, 8.501113], [47.37068, 8.470456], [47.413541, 8.545415], [47.380497, 8.544054], [47.385261, 8.530193], [47.366266, 8.540303], [47.374482, 8.5568], [47.39114, 8.532539], [47.374496, 8.546101], [47.396041, 8.526983], [47.387488, 8.516265], [47.369878, 8.517961], [47.360326, 8.553803], [47.409823, 8.541005], [47.410724, 8.544615], [47.404016, 8.556532], [47.390215, 8.545553], [47.367632, 8.515678], [47.405871, 8.553524], [47.391504, 8.519644], [47.387607, 8.527579], [47.38755, 8.486981], [47.374554, 8.545625], [47.391195, 8.488828], [47.388335, 8.490759], [47.369045, 8.541393], [47.38793, 8.498592], [47.374598, 8.489918], [47.354429, 8.574646], [47.361433, 8.531201], [47.377766, 8.543706], [47.391006, 8.522827], [47.392191, 8.501869], [47.387412, 8.540542], [47.392172, 8.500928], [47.384316, 8.528359], [47.415419, 8.551246], [47.37972, 8.490496], [47.371094, 8.523481], [47.38855, 8.483822], [47.421495, 8.548894], [47.37514, 8.501449], [47.415329, 8.534228], [47.389125, 8.522007], [47.391109, 8.522484], [47.378645, 8.523025], [47.411334, 8.525824], [47.394148, 8.509087], [47.370206, 8.548832], [47.396006, 8.52681], [47.387117, 8.545939], [47.367067, 8.530866], [47.369098, 8.52532], [47.396629, 8.478708], [47.384115, 8.497695], [47.395036, 8.516126], [47.381886, 8.548334], [47.369023, 8.537963], [47.374728, 8.532043], [47.366738, 8.544589], [47.367111, 8.534773], [47.353619, 8.554337], [47.403121, 8.57542], [47.411096, 8.526217], [47.329903, 8.512217], [47.371574, 8.547815], [47.33896, 8.538111], [47.354469, 8.601307], [47.378306, 8.530434], [47.386941, 8.528572], [47.376995, 8.539611], [47.368577, 8.529057], [47.371369, 8.517223], [47.414255, 8.51841], [47.358946, 8.534446], [47.354289, 8.57512], [47.416202, 8.541826], [47.412647, 8.480903], [47.417865, 8.502593], [47.364965, 8.559646], [47.366374, 8.545032], [47.381354, 8.565182], [47.413043, 8.543894], [47.413795, 8.547024], [47.383414, 8.530499], [47.414749, 8.560932], [47.369238, 8.541861], [47.359633, 8.566775], [47.368548, 8.501318], [47.409148, 8.547616], [47.366332, 8.534373], [47.388035, 8.493958], [47.362597, 8.506693], [47.376924, 8.541384], [47.368796, 8.528691], [47.394828, 8.525792], [47.334857, 8.530643], [47.367543, 8.499034], [47.405723, 8.591521], [47.386177, 8.47571], [47.397063, 8.540635], [47.374943, 8.516859], [47.364801, 8.525934], [47.373646, 8.552095], [47.384208, 8.51008], [47.369355, 8.520003], [47.379156, 8.522294], [47.425706, 8.494055], [47.361667, 8.550905], [47.389726, 8.511582], [47.428954, 8.542077], [47.42487, 8.537354], [47.378879, 8.526924], [47.422143, 8.50297], [47.373506, 8.519504], [47.36954, 8.526177], [47.40338, 8.570086], [47.369728, 8.508915], [47.373744, 8.517126], [47.379979, 8.507373], [47.379993, 8.522205], [47.369569, 8.549587], [47.387818, 8.527133], [47.405302, 8.558467], [47.364075, 8.550293], [47.366756, 8.600449], [47.356462, 8.572797], [47.370591, 8.564822], [47.367101, 8.544306], [47.389341, 8.539164], [47.36949, 8.466779], [47.36661, 8.541025], [47.382506, 8.534321], [47.372827, 8.514154], [47.382593, 8.529807], [47.388748, 8.487826], [47.403625, 8.55606], [47.395234, 8.540001], [47.373155, 8.547053], [47.41343, 8.538138], [47.407727, 8.580845], [47.408056, 8.55076], [47.39197, 8.517866], [47.403726, 8.571511], [47.380017, 8.490409], [47.392964, 8.514574], [47.338173, 8.53001], [47.380365, 8.484814], [47.398983, 8.542013], [47.384376, 8.498706], [47.331867, 8.516689], [47.372725, 8.529883], [47.363715, 8.566967], [47.388248, 8.52632], [47.394593, 8.479013], [47.377534, 8.522592], [47.365251, 8.500828], [47.37814, 8.517427], [47.375848, 8.536383], [47.349805, 8.532736], [47.370847, 8.51912], [47.370234, 8.548727], [47.379435, 8.542191], [47.364651, 8.554873], [47.370107, 8.548777], [47.405154, 8.570813], [47.364845, 8.545967], [47.361163, 8.590385], [47.377217, 8.538967], [47.360392, 8.526123], [47.367858, 8.545963], [47.378951, 8.559807], [47.351666, 8.576613], [47.391458, 8.519763], [47.391551, 8.519473], [47.409919, 8.54322], [47.376438, 8.521444], [47.369223, 8.550016], [47.377292, 8.512841], [47.368076, 8.541095], [47.370796, 8.514974], [47.358312, 8.584049], [47.381604, 8.515444], [47.389263, 8.527387], [47.389723, 8.511913], [47.356023, 8.562529], [47.420789, 8.502519], [47.429277, 8.548751], [47.368329, 8.534348], [47.366623, 8.516823], [47.39182, 8.518604], [47.394205, 8.525091], [47.404113, 8.564139], [47.392348, 8.525516], [47.374158, 8.521014], [47.380239, 8.501524], [47.398227, 8.54205], [47.391848, 8.531825], [47.410803, 8.558782], [47.381253, 8.542109], [47.356344, 8.507878], [47.380147, 8.520235], [47.336249, 8.533702], [47.352311, 8.534098], [47.418772, 8.507621], [47.333923, 8.535229], [47.398496, 8.494059], [47.366104, 8.533786], [47.360768, 8.598426], [47.376849, 8.499457], [47.407562, 8.58483], [47.413693, 8.532313], [47.357387, 8.52618], [47.403971, 8.532047], [47.373502, 8.489751], [47.367217, 8.533954], [47.391122, 8.504603], [47.369442, 8.547797], [47.389391, 8.512793], [47.415631, 8.5702], [47.404646, 8.557393], [47.398373, 8.541855], [47.378804, 8.54239], [47.380451, 8.519447], [47.37017, 8.548792], [47.366464, 8.54788], [47.398437, 8.591482], [47.370266, 8.518697], [47.373636, 8.542865], [47.36499, 8.545877], [47.386, 8.521414], [47.374253, 8.535648], [47.364393, 8.546209], [47.375121, 8.54189], [47.402998, 8.536942], [47.417409, 8.524491], [47.351746, 8.527257], [47.386322, 8.49644], [47.393457, 8.473374], [47.400835, 8.548702], [47.372424, 8.512054], [47.3708, 8.491101], [47.41228, 8.51511], [47.381398, 8.517188], [47.335422, 8.519394], [47.377957, 8.519701], [47.363774, 8.55165], [47.35734, 8.552813], [47.366252, 8.518934], [47.391561, 8.514506], [47.367196, 8.515166], [47.366803, 8.562081], [47.364493, 8.532879], [47.365046, 8.531513], [47.397622, 8.47535], [47.371115, 8.52409], [47.423034, 8.543227], [47.336714, 8.53309], [47.425941, 8.493927], [47.385348, 8.530539], [47.382172, 8.555068], [47.368414, 8.547166], [47.371422, 8.562588], [47.357, 8.53569], [47.381087, 8.557482], [47.379437, 8.50756], [47.370713, 8.515158], [47.368549, 8.529122], [47.377168, 8.540396], [47.377596, 8.527467], [47.367562, 8.523157], [47.333463, 8.534373], [47.414315, 8.533028], [47.402528, 8.490787], [47.334175, 8.515109], [47.37449, 8.540076], [47.36702, 8.531077], [47.412058, 8.537752], [47.378976, 8.567423], [47.37841, 8.514479], [47.360203, 8.548875], [47.363607, 8.533311], [47.3772, 8.513051], [47.36745, 8.545425], [47.39721, 8.529855], [47.364508, 8.563118], [47.414686, 8.516563], [47.369465, 8.553782], [47.387394, 8.540554], [47.363423, 8.547963], [47.406915, 8.481135], [47.365257, 8.53864], [47.404404, 8.580336], [47.396688, 8.486181], [47.373253, 8.525405], [47.383563, 8.590273], [47.406815, 8.569324], [47.365448, 8.546879], [47.3469, 8.533683], [47.371158, 8.555499], [47.376967, 8.481582], [47.413768, 8.546109], [47.368209, 8.496108], [47.403436, 8.536342], [47.352543, 8.576129], [47.362196, 8.559468], [47.389562, 8.537619], [47.362433, 8.612548], [47.361586, 8.534037], [47.378601, 8.499757], [47.407149, 8.586556], [47.361278, 8.516966], [47.419528, 8.506563], [47.416231, 8.514845], [47.392612, 8.545126], [47.3571, 8.55257], [47.375134, 8.539493], [47.357684, 8.521434], [47.403836, 8.55837], [47.397037, 8.508854], [47.368461, 8.519362], [47.385856, 8.519556], [47.366611, 8.559654], [47.393383, 8.499362], [47.367308, 8.510892], [47.404717, 8.59501], [47.413294, 8.526858], [47.397008, 8.540661], [47.359865, 8.596036], [47.370187, 8.548845], [47.347358, 8.532805], [47.375967, 8.559546], [47.37715, 8.527074], [47.33908, 8.535891], [47.366283, 8.545176], [47.383688, 8.531988], [47.372013, 8.556378], [47.37875, 8.53288], [47.366331, 8.534505], [47.387117, 8.545939], [47.372886, 8.511772], [47.38194, 8.584265], [47.385593, 8.475645], [47.360652, 8.524288], [47.383048, 8.488456], [47.363017, 8.556454], [47.361511, 8.561466], [47.375099, 8.519457], [47.381966, 8.535237], [47.375631, 8.527903], [47.360524, 8.563074], [47.410492, 8.543484], [47.371682, 8.488099], [47.414622, 8.544245], [47.420213, 8.503555], [47.397098, 8.530237], [47.355464, 8.526896], [47.385436, 8.536395], [47.366732, 8.540538], [47.361372, 8.602741], [47.396345, 8.513715], [47.363387, 8.559109], [47.377372, 8.526443], [47.389721, 8.491594], [47.381519, 8.514846], [47.362744, 8.574307], [47.377776, 8.482631], [47.380898, 8.528369], [47.398409, 8.541882], [47.379525, 8.537465], [47.376581, 8.54343], [47.382102, 8.544564], [47.360917, 8.505521], [47.408548, 8.569626], [47.431309, 8.516555], [47.392706, 8.539101], [47.419931, 8.508731], [47.378632, 8.519635], [47.407946, 8.542583], [47.413147, 8.52439], [47.376021, 8.538055], [47.377925, 8.531724], [47.380756, 8.517586], [47.374041, 8.517158], [47.348344, 8.534136], [47.361206, 8.502429], [47.369002, 8.525001], [47.375579, 8.541899], [47.378202, 8.529029], [47.405025, 8.557282], [47.398581, 8.504394], [47.405141, 8.480451], [47.361972, 8.560284], [47.405053, 8.482212], [47.370617, 8.546232], [47.404042, 8.556599], [47.366202, 8.545187], [47.353968, 8.600131], [47.37721, 8.54727], [47.420654, 8.502477], [47.372657, 8.534198], [47.37504, 8.545569], [47.377138, 8.49933], [47.400213, 8.54327], [47.399323, 8.495122], [47.38566, 8.542227], [47.388082, 8.540079], [47.369826, 8.525388], [47.366789, 8.543028], [47.354132, 8.599049], [47.369806, 8.490565], [47.361594, 8.561269], [47.372307, 8.526525], [47.368373, 8.546662], [47.372034, 8.502711], [47.399362, 8.542895], [47.368522, 8.499186], [47.392136, 8.49902], [47.386919, 8.518399], [47.369863, 8.510851], [47.392721, 8.524186], [47.419973, 8.549141], [47.374994, 8.560585], [47.372766, 8.525514], [47.353644, 8.553703], [47.377561, 8.506159], [47.36651, 8.540268], [47.400821, 8.534181], [47.380437, 8.519923], [47.376967, 8.539783], [47.363933, 8.521667], [47.376895, 8.540682], [47.371253, 8.525669], [47.377768, 8.53776], [47.414197, 8.518833], [47.371214, 8.514493], [47.40449, 8.556847], [47.370717, 8.516681], [47.362137, 8.504963], [47.389467, 8.48792], [47.376785, 8.538084], [47.356957, 8.522161], [47.392646, 8.524463], [47.377134, 8.540157], [47.375677, 8.535399], [47.397844, 8.474639], [47.390973, 8.514892], [47.36448, 8.554896], [47.374482, 8.495729], [47.369671, 8.525557], [47.358111, 8.519987], [47.367061, 8.522829], [47.375154, 8.540288], [47.415529, 8.563095], [47.350666, 8.529246], [47.400804, 8.488554], [47.38983, 8.476562], [47.351977, 8.525699], [47.399349, 8.542391], [47.424373, 8.541412], [47.388598, 8.520658], [47.384847, 8.509126], [47.377939, 8.541564], [47.355578, 8.508022], [47.363801, 8.551611], [47.39085, 8.50869], [47.410395, 8.544184], [47.380599, 8.525714], [47.398276, 8.473574], [47.402382, 8.535552], [47.372556, 8.521074], [47.355268, 8.55502], [47.378108, 8.520803], [47.37711, 8.541706], [47.390266, 8.522162], [47.34848, 8.534006], [47.391375, 8.536226], [47.385243, 8.536815], [47.391877, 8.518248], [47.379545, 8.524951], [47.378733, 8.523226], [47.387006, 8.534043], [47.375403, 8.52819], [47.38335, 8.515267], [47.36226, 8.559337], [47.372731, 8.538755], [47.361977, 8.503782], [47.426805, 8.546765], [47.354018, 8.523888], [47.41083, 8.550421], [47.409234, 8.547128], [47.371299, 8.488608], [47.374221, 8.519082], [47.368352, 8.547006], [47.355285, 8.574479], [47.399001, 8.594462], [47.349913, 8.566397], [47.376843, 8.507018], [47.377095, 8.527205], [47.397288, 8.49438], [47.364392, 8.530216], [47.378521, 8.502523], [47.413788, 8.536423], [47.389118, 8.469648], [47.391024, 8.522906], [47.385477, 8.485457], [47.366765, 8.542736], [47.387482, 8.48653], [47.371519, 8.557254], [47.374925, 8.518778], [47.3642, 8.598805], [47.352342, 8.525111], [47.371586, 8.550238], [47.409148, 8.483961], [47.375666, 8.533744], [47.369385, 8.554681], [47.360123, 8.581043], [47.371879, 8.522292], [47.376919, 8.528671], [47.374524, 8.549743], [47.345536, 8.529512], [47.420795, 8.502864], [47.391002, 8.52235], [47.370341, 8.513614], [47.370484, 8.546997], [47.419561, 8.50003], [47.363696, 8.564292], [47.389678, 8.511938], [47.381035, 8.512784], [47.403962, 8.556505], [47.36693, 8.544315], [47.389926, 8.512288], [47.366691, 8.545793], [47.416749, 8.536285], [47.363472, 8.534354], [47.39049, 8.490112], [47.382348, 8.514744], [47.389263, 8.527387], [47.380412, 8.559375], [47.42255, 8.551448], [47.362974, 8.518444], [47.399511, 8.502094], [47.389927, 8.548448], [47.388487, 8.489834], [47.386535, 8.543848], [47.373635, 8.536403], [47.386002, 8.535559], [47.35026, 8.568654], [47.339978, 8.529372], [47.360712, 8.584206], [47.395281, 8.499334], [47.351452, 8.560778], [47.384913, 8.508809], [47.409529, 8.537912], [47.378569, 8.528281], [47.377719, 8.54197], [47.35413, 8.559166], [47.362311, 8.567109], [47.3667, 8.53164], [47.380982, 8.515564], [47.415264, 8.508558], [47.362712, 8.547034], [47.390627, 8.524925], [47.382644, 8.514776], [47.359748, 8.50841], [47.362698, 8.567965], [47.388634, 8.528341], [47.381351, 8.498977], [47.37855, 8.504258], [47.363971, 8.547074], [47.386751, 8.547534], [47.388871, 8.541247], [47.380386, 8.519604], [47.355002, 8.510989], [47.366769, 8.510749], [47.362134, 8.549088], [47.364349, 8.566544], [47.410488, 8.572662], [47.361797, 8.566278], [47.378272, 8.534036], [47.369044, 8.492298], [47.373878, 8.535402], [47.364214, 8.548866], [47.37432, 8.544654], [47.374338, 8.54472], [47.391154, 8.538672], [47.35959, 8.521486], [47.398603, 8.472229], [47.386843, 8.535126], [47.377737, 8.51338], [47.377358, 8.527899], [47.390343, 8.489513], [47.414313, 8.537984], [47.399916, 8.5875], [47.366168, 8.540275], [47.373457, 8.537115], [47.385377, 8.494528], [47.422632, 8.55129], [47.365449, 8.552414], [47.386756, 8.52331], [47.397913, 8.52877], [47.364285, 8.531127], [47.370854, 8.535525], [47.405824, 8.494403], [47.386362, 8.531752], [47.360403, 8.548601], [47.366529, 8.544876], [47.365819, 8.562444], [47.351245, 8.533679], [47.403874, 8.556357], [47.334522, 8.51849], [47.358182, 8.519154], [47.341618, 8.527182], [47.374292, 8.526843], [47.42869, 8.536783], [47.384894, 8.495154], [47.371352, 8.547479], [47.387018, 8.488163], [47.392348, 8.541664], [47.385797, 8.548561], [47.383392, 8.515599], [47.384367, 8.507527], [47.385863, 8.539755], [47.403909, 8.556451], [47.398073, 8.474153], [47.389945, 8.512261], [47.386324, 8.518519], [47.40319, 8.486322], [47.377028, 8.526661], [47.411189, 8.562606], [47.401124, 8.544906], [47.374431, 8.551913], [47.422971, 8.536572], [47.40924, 8.571536], [47.374466, 8.556654], [47.38287, 8.541375], [47.372871, 8.475981], [47.383181, 8.531395], [47.39131, 8.537403], [47.370352, 8.514316], [47.379677, 8.554499], [47.37592, 8.541959], [47.40529, 8.534287], [47.403188, 8.54728], [47.368879, 8.540834], [47.360946, 8.588712], [47.382703, 8.540007], [47.381363, 8.557819], [47.351205, 8.532196], [47.382066, 8.514089], [47.357383, 8.572472], [47.383818, 8.526786], [47.4044, 8.556792], [47.37811, 8.530192], [47.363616, 8.575239], [47.383045, 8.540067], [47.382068, 8.53018], [47.366103, 8.545212], [47.390667, 8.522528], [47.38728, 8.488023], [47.386891, 8.546994], [47.369408, 8.525817], [47.369332, 8.554507], [47.37597, 8.545244], [47.349903, 8.576615], [47.377609, 8.54316], [47.353729, 8.575413], [47.364041, 8.5473], [47.364411, 8.546196], [47.368238, 8.568096], [47.377549, 8.515203], [47.39805, 8.535145], [47.381045, 8.518399], [47.366665, 8.544694], [47.360423, 8.578865], [47.409558, 8.537634], [47.398109, 8.504875], [47.368428, 8.498707], [47.373005, 8.536377], [47.364327, 8.537086], [47.369401, 8.541745], [47.375016, 8.536803], [47.374744, 8.541776], [47.37516, 8.518691], [47.363453, 8.546719], [47.405059, 8.585955], [47.376466, 8.560033], [47.324777, 8.52066], [47.398721, 8.480087], [47.380705, 8.504659], [47.361933, 8.547627], [47.359499, 8.548093], [47.363498, 8.546693], [47.362923, 8.508408], [47.379553, 8.524024], [47.381548, 8.513642], [47.409206, 8.546279], [47.35919, 8.534359], [47.412272, 8.563199], [47.42511, 8.53769], [47.398328, 8.54184], [47.405694, 8.534441], [47.395759, 8.545231], [47.420277, 8.503437], [47.386466, 8.49639], [47.378555, 8.542054], [47.378971, 8.559609], [47.383745, 8.542068], [47.392542, 8.52405], [47.378482, 8.51938], [47.372261, 8.560448], [47.368398, 8.521294], [47.406263, 8.483706], [47.403864, 8.556397], [47.379155, 8.518507], [47.367841, 8.545896], [47.393078, 8.513901], [47.395902, 8.481503], [47.404214, 8.561121], [47.399509, 8.539666], [47.374214, 8.544533], [47.35947, 8.597841], [47.37408, 8.525488], [47.376949, 8.557487], [47.380766, 8.497019], [47.374687, 8.545787], [47.397444, 8.488117], [47.37674, 8.53901], [47.377652, 8.527309], [47.375508, 8.56331], [47.406763, 8.58468], [47.384762, 8.509548], [47.366647, 8.520027], [47.360014, 8.548871], [47.386794, 8.544966], [47.386848, 8.544887], [47.376191, 8.533371], [47.402433, 8.493342], [47.392761, 8.489694], [47.376976, 8.544404], [47.375165, 8.515248], [47.370117, 8.554246], [47.352407, 8.558759], [47.372408, 8.554611], [47.381643, 8.517021], [47.404583, 8.557445], [47.363226, 8.549719], [47.36768, 8.564376], [47.369486, 8.539482], [47.351693, 8.575647], [47.399336, 8.477781], [47.367081, 8.539751], [47.371018, 8.555086], [47.372141, 8.535472], [47.386177, 8.539854], [47.367808, 8.560553], [47.378463, 8.54037], [47.361757, 8.526323], [47.417747, 8.502697], [47.374645, 8.541747], [47.418678, 8.506135], [47.35187, 8.525538], [47.405792, 8.593642], [47.374563, 8.538991], [47.39737, 8.476299], [47.414627, 8.519067], [47.402369, 8.499329], [47.395362, 8.545369], [47.381131, 8.511183], [47.407072, 8.584329], [47.397343, 8.476298], [47.409527, 8.535222], [47.415011, 8.530816], [47.389709, 8.511541], [47.373208, 8.504112], [47.364491, 8.53693], [47.375436, 8.524761], [47.386417, 8.525859], [47.406121, 8.58774], [47.407624, 8.584023], [47.36464, 8.537251], [47.377703, 8.528515], [47.358027, 8.523202], [47.422039, 8.508323], [47.398299, 8.473097], [47.347921, 8.534154], [47.378718, 8.540084], [47.398771, 8.478618], [47.390464, 8.533571], [47.378081, 8.534257], [47.368297, 8.546171], [47.347692, 8.562657], [47.412133, 8.550594], [47.354375, 8.575572], [47.409654, 8.549297], [47.412415, 8.5237], [47.377004, 8.544326], [47.376938, 8.53716], [47.401569, 8.586873], [47.373041, 8.534471], [47.334342, 8.518473], [47.369608, 8.541749], [47.378553, 8.509834], [47.344161, 8.533229], [47.398051, 8.532217], [47.38762, 8.525248], [47.371241, 8.507767], [47.364991, 8.532518], [47.337575, 8.501587], [47.386764, 8.51772], [47.419381, 8.547975], [47.374842, 8.527675], [47.358369, 8.583732], [47.415618, 8.568676], [47.405547, 8.572994], [47.37859, 8.54212], [47.355924, 8.592549], [47.384314, 8.548398], [47.370188, 8.548805], [47.380801, 8.55639], [47.386742, 8.547574], [47.420537, 8.501573], [47.373372, 8.525129], [47.364159, 8.531124], [47.421391, 8.511278], [47.374823, 8.547631], [47.383416, 8.548286], [47.414921, 8.551606], [47.366638, 8.53528], [47.405836, 8.497981], [47.379255, 8.54228], [47.407056, 8.576869], [47.385321, 8.530538], [47.416439, 8.511855], [47.379409, 8.521174], [47.364403, 8.566558], [47.387298, 8.52887], [47.378306, 8.530355], [47.356663, 8.551158], [47.383319, 8.574918], [47.383238, 8.532933], [47.361109, 8.506121], [47.377291, 8.498367], [47.402838, 8.498292], [47.360432, 8.526679], [47.419789, 8.504646], [47.364213, 8.531126], [47.40449, 8.55686], [47.375535, 8.541845], [47.380999, 8.542303], [47.404144, 8.573878], [47.406922, 8.482368], [47.378189, 8.541794], [47.379931, 8.49593], [47.35862, 8.52136], [47.38114, 8.517898], [47.352493, 8.531984], [47.410445, 8.573377], [47.365759, 8.567738], [47.397149, 8.53245], [47.3593, 8.55758], [47.383572, 8.539429], [47.350802, 8.601928], [47.366745, 8.545794], [47.369848, 8.552373], [47.388604, 8.533414], [47.380558, 8.515675], [47.414049, 8.542153], [47.36162, 8.561389], [47.366992, 8.491489], [47.403614, 8.559942], [47.364753, 8.537677], [47.364455, 8.53685], [47.361411, 8.561543], [47.343578, 8.527288], [47.380357, 8.513088], [47.373664, 8.537053], [47.363961, 8.535873], [47.380044, 8.53778], [47.363271, 8.533635], [47.393603, 8.539292], [47.409019, 8.539504], [47.406945, 8.586221], [47.386066, 8.535414], [47.370646, 8.547014], [47.355573, 8.556907], [47.376218, 8.541846], [47.358258, 8.572213], [47.369517, 8.532333], [47.379317, 8.544188], [47.374158, 8.520935], [47.392139, 8.531499], [47.414086, 8.550449], [47.373599, 8.529689], [47.36615, 8.540261], [47.385773, 8.535965], [47.353221, 8.530172], [47.39347, 8.529593], [47.351834, 8.559409], [47.379137, 8.546131], [47.404814, 8.483744], [47.372736, 8.535312], [47.35651, 8.506439], [47.335151, 8.525211], [47.359004, 8.50028], [47.366338, 8.545018], [47.430917, 8.550323], [47.397932, 8.528598], [47.427643, 8.49074], [47.409311, 8.575287], [47.414135, 8.518712], [47.373562, 8.528828], [47.41483, 8.519389], [47.359621, 8.525829], [47.374388, 8.541371], [47.367949, 8.540258], [47.382318, 8.528517], [47.399508, 8.505327], [47.377936, 8.527672], [47.353161, 8.512553], [47.382942, 8.485315], [47.389572, 8.538533], [47.404766, 8.572752], [47.384696, 8.516593], [47.370659, 8.486835], [47.427798, 8.537865], [47.37337, 8.534955], [47.36112, 8.531962], [47.38141, 8.533133], [47.369385, 8.528305], [47.4044, 8.556792], [47.378183, 8.509906], [47.383152, 8.57265], [47.352497, 8.524863], [47.366627, 8.51064], [47.377221, 8.499107], [47.37125, 8.547821], [47.377288, 8.541948], [47.369119, 8.514464], [47.408726, 8.575367], [47.393765, 8.512577], [47.369214, 8.527375], [47.373721, 8.548111], [47.390577, 8.509029], [47.369546, 8.55381], [47.381147, 8.538187], [47.397495, 8.531993], [47.367481, 8.534648], [47.355649, 8.556524], [47.350993, 8.563614], [47.376964, 8.521932], [47.363699, 8.575029], [47.371827, 8.517259], [47.357446, 8.521813], [47.392632, 8.515362], [47.412766, 8.531406], [47.408887, 8.55421], [47.381679, 8.537072], [47.370188, 8.548805], [47.370887, 8.526403], [47.38501, 8.495275], [47.388458, 8.491052], [47.405153, 8.480067], [47.380293, 8.53711], [47.374771, 8.515028], [47.402315, 8.499408], [47.383911, 8.482592], [47.381305, 8.537581], [47.38263, 8.529702], [47.37367, 8.544958], [47.371016, 8.549657], [47.352368, 8.559129], [47.36136, 8.553798], [47.391644, 8.51713], [47.391268, 8.522792], [47.407085, 8.54703], [47.374482, 8.544684], [47.403283, 8.502647], [47.37387, 8.533349], [47.373849, 8.536514], [47.387982, 8.49099], [47.37573, 8.525019], [47.371178, 8.524092], [47.368209, 8.496121], [47.393751, 8.502363], [47.374537, 8.539878], [47.393081, 8.474122], [47.40518, 8.481101], [47.39095, 8.522097], [47.380054, 8.535741], [47.399479, 8.585345], [47.404751, 8.57613], [47.377532, 8.49857], [47.381215, 8.517595], [47.395558, 8.54279], [47.422903, 8.550289], [47.387304, 8.499162], [47.402171, 8.535017], [47.361883, 8.560243], [47.370509, 8.54905], [47.37673, 8.497773], [47.363678, 8.533498], [47.373638, 8.519785], [47.359773, 8.525991], [47.377068, 8.539533], [47.39187, 8.523732], [47.400253, 8.547564], [47.353193, 8.511972], [47.391909, 8.517745], [47.362779, 8.567927], [47.378044, 8.526721], [47.366884, 8.535907], [47.37054, 8.535453], [47.387385, 8.518607], [47.348195, 8.525119], [47.343664, 8.535297], [47.370433, 8.548559], [47.366221, 8.56273], [47.374526, 8.540103], [47.371784, 8.601472], [47.418845, 8.543882], [47.327589, 8.529648], [47.365145, 8.545682], [47.388257, 8.526373], [47.382157, 8.515866], [47.341389, 8.53046], [47.403368, 8.497322], [47.374178, 8.544505], [47.335634, 8.540716], [47.369245, 8.562582], [47.347322, 8.532804], [47.389679, 8.477407], [47.375637, 8.493342], [47.375257, 8.516018], [47.391154, 8.489317], [47.410876, 8.562454], [47.390355, 8.525198], [47.392815, 8.528533], [47.407403, 8.546692], [47.396536, 8.528794], [47.414825, 8.516142], [47.361803, 8.526244], [47.387165, 8.528629], [47.36968, 8.525571], [47.377275, 8.512761], [47.372583, 8.521062], [47.371801, 8.541927], [47.382667, 8.529663], [47.375599, 8.512158], [47.359423, 8.535422], [47.362835, 8.552968], [47.365567, 8.539084], [47.387107, 8.498151], [47.376636, 8.56295], [47.408641, 8.580308], [47.419186, 8.547719], [47.333116, 8.5359], [47.368851, 8.540025], [47.387277, 8.497188], [47.390795, 8.507828], [47.373879, 8.533363], [47.382333, 8.531603], [47.374494, 8.52159], [47.384951, 8.495791], [47.378962, 8.559596], [47.372395, 8.515245], [47.364069, 8.548982], [47.369519, 8.523621], [47.381231, 8.503266], [47.342599, 8.530961], [47.379718, 8.527603], [47.369392, 8.505373], [47.392745, 8.523538], [47.381397, 8.489999], [47.367438, 8.546616], [47.388677, 8.483706], [47.354342, 8.553055], [47.38312, 8.514892], [47.369893, 8.541067], [47.377794, 8.528385], [47.378042, 8.510552], [47.361588, 8.560978], [47.372943, 8.546638], [47.38726, 8.488221], [47.355638, 8.557715], [47.421034, 8.53689], [47.388589, 8.520671], [47.361552, 8.547871], [47.389473, 8.511722], [47.375528, 8.548162], [47.34349, 8.519478], [47.414128, 8.483277], [47.363226, 8.549719], [47.377029, 8.528488], [47.391147, 8.489132], [47.399673, 8.515637], [47.364393, 8.546209], [47.36841, 8.496668], [47.38297, 8.50583], [47.389008, 8.538243], [47.378437, 8.509725], [47.3593, 8.592331], [47.37307, 8.5314], [47.40675, 8.547196], [47.361545, 8.560752], [47.392408, 8.519159], [47.352998, 8.501021], [47.403585, 8.557384], [47.372287, 8.515163], [47.370998, 8.518328], [47.363821, 8.547653], [47.377819, 8.541946], [47.409562, 8.576273], [47.354286, 8.557925], [47.415991, 8.515543], [47.338923, 8.528715], [47.419969, 8.548557], [47.406819, 8.580759], [47.427232, 8.491434], [47.417649, 8.554088], [47.363454, 8.535254], [47.427624, 8.490766], [47.368618, 8.534195], [47.40913, 8.54759], [47.421467, 8.501154], [47.371012, 8.530259], [47.366469, 8.540744], [47.395515, 8.545372], [47.381212, 8.491598], [47.407729, 8.578804], [47.385435, 8.528938], [47.382446, 8.548067], [47.379012, 8.518451], [47.383246, 8.506127], [47.396183, 8.520468], [47.409309, 8.546758], [47.3685, 8.546638], [47.362483, 8.570595], [47.387337, 8.487679], [47.389706, 8.478388], [47.368763, 8.524599], [47.369202, 8.554015], [47.370434, 8.514186], [47.375755, 8.533785], [47.368166, 8.551424], [47.401807, 8.499888], [47.419548, 8.555904], [47.366746, 8.540035], [47.386309, 8.488997], [47.399727, 8.543313], [47.365901, 8.508401], [47.357341, 8.550854], [47.38288, 8.513589], [47.361337, 8.549693], [47.339486, 8.528118], [47.359701, 8.52497], [47.378575, 8.575241], [47.365982, 8.532353], [47.363761, 8.531288], [47.381183, 8.538161], [47.378333, 8.540817], [47.379288, 8.537804], [47.370408, 8.518025], [47.395955, 8.538824], [47.422572, 8.499294], [47.370372, 8.518024], [47.363376, 8.534908], [47.385544, 8.50857], [47.408803, 8.546059], [47.36554, 8.53911], [47.390805, 8.474224], [47.366616, 8.541356], [47.378469, 8.575053], [47.347181, 8.534416], [47.384057, 8.545174], [47.370794, 8.508446], [47.371363, 8.512006], [47.380337, 8.524927], [47.343202, 8.535645], [47.375189, 8.519446], [47.374509, 8.53997], [47.397491, 8.53247], [47.405972, 8.558879], [47.398353, 8.536462], [47.37006, 8.543374], [47.40244, 8.493541], [47.370659, 8.51423], [47.374049, 8.524931], [47.385777, 8.496006], [47.408843, 8.540018], [47.372966, 8.500201], [47.367101, 8.544239], [47.379914, 8.522985], [47.381629, 8.513696], [47.407206, 8.578926], [47.387651, 8.498613], [47.418758, 8.506242], [47.377084, 8.499356], [47.386941, 8.528519], [47.361829, 8.560228], [47.407211, 8.550743], [47.378793, 8.526458], [47.37803, 8.528164], [47.385929, 8.521386], [47.406501, 8.578407], [47.384497, 8.534866], [47.410662, 8.556645], [47.417545, 8.553689], [47.359845, 8.535418], [47.418193, 8.506032], [47.358436, 8.576903], [47.370347, 8.55008], [47.403436, 8.572671], [47.36527, 8.530578], [47.40432, 8.540852], [47.401378, 8.548395], [47.376758, 8.53807], [47.378345, 8.548022], [47.407383, 8.489134], [47.36493, 8.566913], [47.38636, 8.518507], [47.387988, 8.520487], [47.420968, 8.51233], [47.374151, 8.528469], [47.39575, 8.545218], [47.397675, 8.47445], [47.353127, 8.576247], [47.379423, 8.508143], [47.410671, 8.5426], [47.372298, 8.518871], [47.380591, 8.55673], [47.398245, 8.536447], [47.402481, 8.535554], [47.412851, 8.550715], [47.404725, 8.576024], [47.403053, 8.486505], [47.38858, 8.520658], [47.381555, 8.548194], [47.379959, 8.521026], [47.355386, 8.52565], [47.352013, 8.573298], [47.40757, 8.538574], [47.374626, 8.538053], [47.371627, 8.517493], [47.374032, 8.541006], [47.408988, 8.579798], [47.381707, 8.540768], [47.411479, 8.526689], [47.389598, 8.543368], [47.392632, 8.515415], [47.377092, 8.541705], [47.376785, 8.509361], [47.370188, 8.548792], [47.384875, 8.532039], [47.358741, 8.53333], [47.371431, 8.562602], [47.375767, 8.541069], [47.368314, 8.544397], [47.362185, 8.532527], [47.414188, 8.518886], [47.365585, 8.546684], [47.403898, 8.576867], [47.377761, 8.507858], [47.413961, 8.557867], [47.376522, 8.548672], [47.41146, 8.544763], [47.409133, 8.545443], [47.409223, 8.546333], [47.387234, 8.519386], [47.371021, 8.514912], [47.392432, 8.524286], [47.370722, 8.535244], [47.335744, 8.540453], [47.383229, 8.5061], [47.366187, 8.521104], [47.381317, 8.517292], [47.381249, 8.503266], [47.386522, 8.52908], [47.387323, 8.488262], [47.355262, 8.530227], [47.384791, 8.531375], [47.369982, 8.510615], [47.356864, 8.53582], [47.419729, 8.548248], [47.377, 8.541942], [47.368949, 8.524854], [47.385891, 8.518643], [47.355904, 8.535602], [47.356596, 8.535695], [47.387512, 8.581127], [47.36743, 8.521897], [47.366874, 8.543546], [47.365017, 8.483096], [47.391049, 8.523092], [47.39104, 8.521132], [47.407006, 8.537436], [47.377302, 8.539511], [47.384791, 8.531402], [47.415422, 8.483409], [47.415455, 8.508323], [47.372768, 8.494238], [47.374318, 8.543038], [47.402687, 8.535664], [47.360457, 8.569029], [47.385508, 8.528847], [47.371472, 8.54523], [47.379062, 8.511181], [47.36455, 8.566243], [47.389723, 8.511939], [47.377536, 8.544217], [47.409557, 8.537766], [47.361911, 8.560098], [47.374935, 8.512926], [47.363366, 8.533134], [47.3842, 8.510993], [47.366749, 8.537824], [47.370325, 8.514303], [47.372982, 8.516885], [47.394972, 8.525822], [47.380451, 8.519447], [47.388681, 8.531005], [47.358497, 8.52104], [47.390804, 8.474277], [47.400184, 8.494411], [47.374537, 8.541798], [47.39167, 8.511448], [47.373605, 8.553604], [47.36499, 8.54589], [47.363082, 8.533684], [47.412681, 8.540296], [47.36374, 8.535485], [47.410838, 8.571848], [47.388731, 8.538993], [47.353171, 8.512408], [47.367536, 8.53833], [47.370924, 8.537698], [47.409606, 8.576433], [47.370244, 8.513361], [47.370206, 8.548806], [47.408152, 8.531351], [47.405363, 8.534235], [47.402733, 8.577359], [47.356448, 8.55674], [47.370183, 8.529474], [47.381092, 8.518188], [47.40886, 8.545782], [47.373895, 8.538302], [47.380586, 8.512695], [47.361344, 8.563793], [47.377378, 8.543751], [47.414562, 8.570006], [47.367879, 8.560581], [47.369784, 8.508664], [47.386096, 8.56503], [47.372861, 8.538334], [47.393741, 8.524763], [47.395591, 8.489087], [47.365503, 8.546775], [47.374786, 8.53256], [47.375545, 8.513123], [47.387005, 8.528374], [47.411354, 8.544601], [47.37773, 8.526609], [47.373094, 8.532685], [47.372169, 8.522986], [47.366373, 8.561886], [47.395213, 8.489106], [47.411396, 8.572748], [47.398024, 8.508238], [47.37533, 8.477578], [47.383499, 8.530051], [47.404819, 8.576543], [47.368919, 8.540424], [47.384455, 8.488126], [47.415253, 8.563765], [47.391636, 8.517104], [47.37573, 8.558945], [47.413622, 8.514938], [47.358479, 8.556901], [47.373748, 8.515722], [47.385852, 8.518007], [47.377918, 8.518084], [47.360535, 8.535723], [47.370959, 8.537765], [47.344785, 8.533798], [47.358321, 8.550001], [47.370206, 8.548806], [47.372673, 8.523937], [47.385518, 8.548542], [47.391862, 8.469674], [47.405116, 8.482226], [47.378792, 8.539847], [47.376179, 8.56731], [47.405863, 8.553457], [47.377329, 8.500076], [47.40336, 8.579506], [47.386118, 8.521323], [47.403839, 8.5673], [47.402147, 8.502041], [47.410195, 8.542523], [47.361951, 8.515285], [47.403696, 8.556168], [47.377549, 8.543781], [47.353049, 8.556576], [47.376728, 8.516484], [47.368909, 8.548037], [47.343051, 8.529739], [47.371626, 8.517626], [47.369915, 8.530249], [47.371083, 8.51024], [47.370188, 8.548805], [47.391077, 8.523027], [47.357325, 8.52704], [47.373141, 8.542855], [47.374842, 8.527675], [47.390845, 8.5455], [47.390284, 8.509593], [47.367217, 8.523548], [47.383726, 8.573788], [47.414466, 8.556778], [47.370217, 8.532533], [47.384816, 8.531654], [47.365516, 8.565827], [47.404541, 8.557087], [47.375517, 8.535211], [47.382339, 8.530106], [47.384849, 8.531959], [47.414366, 8.52101], [47.413954, 8.551109], [47.374031, 8.524918], [47.354394, 8.55798], [47.382585, 8.52978], [47.358805, 8.516996], [47.405702, 8.556144], [47.393199, 8.53066], [47.374823, 8.552239], [47.379451, 8.54427], [47.360105, 8.561794], [47.382924, 8.496148], [47.392171, 8.495232], [47.363298, 8.533702], [47.383863, 8.528707], [47.364278, 8.554375], [47.407036, 8.550275], [47.412341, 8.560682], [47.376342, 8.567234], [47.368656, 8.518718], [47.389441, 8.539021], [47.389634, 8.521408], [47.363265, 8.553096], [47.424971, 8.553142], [47.37763, 8.529639], [47.398373, 8.541868], [47.383872, 8.532509], [47.426025, 8.493558], [47.388466, 8.520391], [47.386372, 8.496812], [47.403516, 8.506692], [47.376966, 8.539822], [47.373852, 8.542843], [47.365483, 8.546973], [47.42236, 8.550648], [47.365346, 8.534922], [47.354886, 8.574775], [47.389879, 8.477133], [47.358442, 8.518233], [47.417588, 8.54546], [47.377104, 8.529086], [47.428611, 8.543184], [47.382026, 8.473205], [47.355837, 8.532238], [47.368217, 8.546063], [47.360418, 8.535734], [47.410845, 8.564653], [47.368212, 8.541005], [47.374434, 8.54026], [47.386297, 8.500135], [47.370824, 8.536822], [47.416809, 8.547021], [47.368428, 8.498707], [47.386871, 8.528279], [47.427085, 8.546625], [47.399731, 8.518142], [47.376087, 8.533951], [47.38148, 8.503549], [47.378174, 8.526287], [47.329896, 8.514877], [47.383385, 8.484118], [47.39762, 8.502268], [47.399033, 8.586805], [47.386427, 8.541024], [47.372062, 8.521912], [47.399775, 8.547686], [47.376153, 8.5183], [47.366595, 8.521721], [47.357592, 8.521591], [47.366912, 8.555503], [47.366941, 8.544051], [47.348045, 8.534315], [47.378279, 8.530407], [47.383335, 8.539795], [47.367666, 8.494468], [47.406586, 8.513206], [47.404504, 8.594674], [47.336186, 8.529903], [47.361649, 8.52922], [47.379228, 8.545974], [47.365614, 8.503431], [47.422726, 8.550934], [47.361502, 8.561466], [47.372377, 8.565138], [47.399537, 8.502108], [47.354259, 8.524012], [47.371856, 8.557751], [47.396655, 8.522889], [47.409008, 8.574141], [47.381175, 8.50741], [47.377165, 8.552817], [47.416145, 8.553315], [47.367513, 8.537893], [47.41638, 8.551425], [47.400603, 8.585369], [47.413093, 8.541404], [47.371022, 8.530219], [47.390746, 8.521868], [47.371813, 8.518715], [47.358372, 8.519039], [47.378138, 8.499178], [47.403629, 8.548151], [47.409503, 8.537779], [47.41442, 8.519049], [47.383544, 8.515669], [47.341319, 8.530246], [47.3798, 8.521672], [47.383257, 8.560997], [47.380239, 8.501564], [47.362894, 8.516403], [47.377427, 8.509917], [47.363212, 8.568757], [47.373919, 8.520585], [47.390089, 8.492701], [47.373955, 8.591204], [47.383717, 8.573735], [47.385451, 8.536726], [47.396779, 8.507643], [47.371871, 8.512559], [47.384528, 8.483969], [47.365749, 8.519837], [47.381159, 8.549087], [47.389436, 8.472316], [47.41201, 8.54655], [47.388774, 8.479999], [47.37674, 8.524774], [47.399187, 8.542375], [47.359934, 8.594542], [47.365073, 8.553147], [47.401963, 8.501481], [47.410742, 8.557707], [47.3863, 8.526823], [47.409965, 8.574665], [47.376029, 8.559613], [47.412019, 8.563339], [47.373092, 8.504004], [47.370832, 8.531235], [47.391743, 8.518179], [47.356508, 8.551459], [47.40526, 8.555273], [47.384727, 8.534341], [47.392897, 8.474648], [47.393687, 8.502548], [47.373968, 8.541071], [47.386349, 8.496375], [47.355234, 8.575974], [47.370471, 8.524739], [47.385025, 8.548333], [47.390517, 8.4901], [47.377414, 8.53913], [47.382233, 8.540276], [47.386518, 8.517093], [47.37497, 8.523586], [47.369815, 8.510227], [47.408625, 8.539284], [47.398657, 8.532799], [47.373744, 8.544774], [47.384593, 8.53806], [47.368454, 8.555098], [47.408995, 8.54393], [47.392746, 8.521445], [47.376808, 8.513679], [47.361816, 8.515322], [47.347341, 8.532725], [47.359251, 8.535485], [47.40649, 8.589457], [47.351785, 8.509653], [47.37624, 8.500134], [47.39205, 8.532372], [47.424156, 8.549082], [47.365214, 8.538375], [47.382028, 8.498686], [47.373045, 8.547249], [47.385119, 8.495211], [47.363779, 8.575177], [47.401182, 8.517774], [47.370099, 8.518376], [47.356892, 8.535781], [47.385229, 8.54394], [47.415948, 8.566285], [47.375535, 8.530497], [47.383093, 8.497409], [47.383984, 8.538762], [47.407805, 8.543203], [47.415249, 8.570537], [47.356517, 8.55142], [47.36895, 8.524748], [47.342576, 8.536201], [47.367865, 8.520582], [47.382026, 8.489164], [47.365028, 8.534346], [47.378997, 8.559676], [47.379785, 8.53755], [47.412794, 8.533195], [47.381692, 8.549826], [47.37647, 8.544725], [47.373058, 8.532724], [47.366033, 8.562634], [47.407637, 8.538217], [47.372577, 8.529311], [47.356036, 8.509103], [47.377818, 8.541972], [47.376478, 8.534462], [47.391552, 8.534613], [47.357245, 8.526932], [47.386003, 8.535413], [47.354599, 8.55813], [47.339526, 8.527775], [47.390385, 8.491819], [47.412349, 8.54115], [47.340662, 8.519858], [47.367651, 8.554432], [47.36123, 8.547679], [47.398211, 8.541917], [47.41727, 8.544883], [47.36847, 8.505844], [47.380256, 8.54291], [47.383704, 8.548199], [47.404187, 8.540637], [47.358492, 8.578572], [47.367116, 8.539884], [47.382805, 8.529255], [47.386175, 8.518132], [47.368382, 8.546662], [47.381261, 8.534693], [47.397709, 8.533203], [47.335354, 8.541716], [47.388181, 8.536319], [47.387259, 8.542379], [47.427657, 8.545112], [47.366373, 8.541417], [47.372457, 8.532526], [47.385877, 8.542059], [47.373461, 8.519517], [47.392112, 8.476938], [47.382292, 8.530291], [47.332825, 8.536225], [47.362804, 8.535545], [47.360934, 8.530701], [47.358767, 8.533384], [47.394088, 8.493151], [47.40593, 8.555764], [47.404934, 8.552775], [47.356987, 8.512273], [47.375323, 8.485377], [47.3854, 8.517362], [47.370603, 8.524994], [47.368904, 8.502622], [47.363607, 8.535244], [47.411189, 8.562606], [47.41866, 8.530188], [47.390685, 8.491454], [47.384132, 8.530673], [47.397309, 8.533632], [47.354236, 8.575979], [47.370208, 8.535353], [47.370839, 8.518073], [47.372527, 8.534593], [47.426527, 8.548535], [47.386381, 8.518229], [47.38002, 8.544123], [47.390077, 8.522159], [47.391653, 8.519065], [47.376172, 8.527756], [47.390661, 8.523217], [47.359542, 8.549245], [47.381167, 8.491531], [47.36968, 8.525584], [47.354237, 8.598442], [47.375401, 8.526561], [47.394325, 8.510376], [47.373381, 8.534743], [47.359693, 8.535401], [47.37712, 8.541613], [47.383855, 8.526734], [47.379526, 8.555237], [47.364688, 8.521749], [47.369275, 8.527495], [47.36209, 8.529255], [47.366512, 8.541884], [47.353777, 8.534075], [47.363851, 8.533223], [47.369296, 8.527191], [47.356531, 8.510013], [47.413726, 8.546691], [47.379554, 8.524924], [47.369662, 8.525597], [47.3865, 8.554046], [47.37741, 8.535753], [47.370143, 8.548818], [47.357463, 8.521893], [47.36028, 8.534182], [47.410837, 8.544988], [47.363749, 8.535432], [47.3812, 8.528772], [47.393392, 8.525498], [47.380789, 8.503429], [47.42791, 8.491063], [47.403832, 8.571699], [47.340181, 8.529866], [47.392261, 8.503049], [47.417706, 8.545409], [47.410865, 8.554264], [47.361783, 8.505287], [47.375375, 8.560328], [47.379315, 8.537871], [47.359342, 8.569906], [47.386906, 8.534173], [47.397961, 8.474654], [47.376843, 8.522446], [47.378344, 8.52731], [47.360097, 8.563515], [47.385886, 8.544907], [47.410228, 8.565196], [47.373452, 8.52909], [47.415213, 8.570563], [47.403297, 8.497188], [47.387935, 8.520433], [47.374404, 8.496403], [47.355383, 8.600757], [47.36774, 8.496191], [47.414205, 8.518899], [47.422612, 8.553371], [47.407247, 8.550704], [47.37828, 8.528381], [47.388197, 8.520279], [47.358951, 8.558341], [47.412975, 8.537811], [47.362222, 8.52571], [47.386449, 8.491317], [47.365267, 8.564604], [47.414006, 8.549387], [47.40542, 8.59219], [47.373064, 8.511974], [47.397998, 8.474522], [47.394068, 8.489322], [47.367538, 8.496703], [47.3695, 8.506355], [47.36262, 8.558431], [47.35157, 8.525903], [47.378457, 8.530557], [47.370671, 8.516812], [47.39415, 8.490198], [47.349378, 8.534117], [47.401005, 8.535656], [47.379431, 8.537927], [47.375374, 8.547351], [47.388657, 8.516236], [47.390647, 8.508275], [47.379827, 8.527433], [47.383265, 8.543369], [47.381411, 8.551012], [47.363056, 8.51732], [47.364874, 8.533522], [47.336985, 8.520524], [47.372479, 8.547158], [47.394769, 8.52546], [47.354041, 8.557219], [47.369528, 8.543482], [47.383162, 8.572517], [47.371396, 8.521037], [47.398109, 8.541266], [47.376189, 8.525955], [47.427523, 8.551565], [47.386474, 8.534204], [47.414513, 8.558462], [47.356472, 8.558818], [47.339436, 8.527694], [47.361386, 8.522727], [47.399161, 8.542295], [47.378178, 8.515309], [47.368359, 8.547178], [47.387267, 8.499347], [47.37358, 8.544903], [47.3775, 8.537662], [47.369145, 8.556185], [47.389869, 8.488246], [47.405824, 8.550051], [47.375248, 8.544594], [47.388008, 8.491017], [47.369356, 8.554879], [47.375278, 8.485284], [47.356644, 8.573502], [47.379544, 8.527851], [47.387061, 8.51864], [47.348452, 8.534125], [47.426433, 8.547022], [47.384428, 8.507753], [47.359574, 8.535598], [47.424192, 8.543423], [47.355437, 8.574615], [47.37927, 8.53787], [47.37541, 8.514988], [47.41443, 8.51897], [47.365712, 8.520896], [47.376879, 8.520526], [47.381874, 8.51635], [47.344488, 8.532879], [47.37798, 8.508471], [47.378416, 8.510003], [47.374878, 8.540004], [47.372431, 8.542827], [47.415273, 8.547717], [47.366184, 8.545147], [47.390729, 8.539776], [47.37385, 8.536487], [47.369184, 8.51996], [47.398113, 8.479691], [47.363235, 8.549706], [47.399082, 8.542081], [47.423004, 8.546328], [47.381276, 8.503214], [47.378385, 8.567158], [47.407853, 8.582623], [47.362026, 8.550979], [47.374211, 8.54105], [47.366392, 8.541325], [47.364597, 8.537078], [47.376173, 8.518089], [47.402314, 8.487643], [47.374704, 8.560804], [47.37258, 8.534713], [47.427331, 8.552873], [47.375842, 8.577884], [47.402992, 8.559214], [47.34539, 8.535425], [47.343562, 8.51948], [47.354107, 8.55317], [47.402043, 8.498594], [47.412897, 8.537464], [47.379762, 8.527696], [47.354107, 8.575315], [47.374815, 8.519995], [47.398672, 8.492539], [47.362323, 8.554731], [47.392326, 8.502825], [47.364009, 8.551483], [47.406941, 8.493206], [47.364665, 8.554383], [47.386504, 8.529106], [47.35274, 8.602447], [47.384763, 8.509415], [47.377671, 8.537612], [47.373142, 8.531454], [47.412099, 8.546644], [47.369648, 8.533726], [47.353121, 8.524492], [47.373562, 8.526921], [47.3849, 8.542675], [47.414509, 8.55605], [47.359471, 8.504287], [47.419326, 8.50795], [47.367896, 8.524012], [47.402965, 8.572051], [47.374214, 8.544533], [47.373962, 8.546394], [47.394837, 8.48886], [47.398113, 8.546526], [47.399187, 8.547952], [47.351714, 8.558864], [47.387167, 8.53508], [47.364595, 8.566205], [47.408126, 8.54631], [47.390292, 8.510732], [47.372955, 8.533185], [47.369464, 8.541746], [47.365632, 8.553927], [47.375666, 8.500956], [47.363629, 8.532001], [47.36306, 8.567734], [47.378411, 8.567185], [47.371337, 8.530199], [47.366303, 8.544924], [47.374358, 8.552878], [47.408927, 8.548208], [47.365238, 8.538733], [47.374414, 8.52241], [47.366623, 8.516823], [47.375418, 8.524721], [47.355583, 8.556894], [47.36129, 8.548037], [47.364476, 8.555332], [47.409561, 8.546803], [47.389645, 8.487102], [47.378718, 8.521981], [47.376785, 8.541845], [47.368502, 8.519813], [47.397803, 8.529907], [47.355206, 8.51413], [47.413691, 8.546677], [47.397898, 8.534148], [47.364232, 8.547953], [47.3741, 8.52717], [47.370853, 8.524284], [47.389918, 8.512248], [47.374454, 8.539108], [47.409791, 8.538725], [47.427235, 8.553401], [47.37388, 8.521869], [47.393123, 8.537745], [47.368797, 8.540925], [47.397888, 8.534187], [47.410517, 8.550282], [47.355397, 8.53121], [47.41796, 8.508824], [47.367107, 8.554924], [47.40676, 8.541485], [47.383054, 8.479861], [47.410244, 8.56362], [47.418314, 8.510474], [47.376702, 8.534493], [47.392135, 8.477283], [47.404569, 8.557988], [47.362892, 8.548918], [47.369266, 8.494646], [47.383591, 8.577427], [47.361038, 8.560172], [47.390966, 8.479287], [47.398336, 8.591719], [47.372781, 8.534413], [47.414513, 8.520668], [47.38765, 8.476944], [47.358666, 8.585565], [47.376347, 8.559289], [47.370696, 8.510192], [47.383326, 8.529319], [47.409417, 8.538267], [47.370188, 8.548805], [47.368836, 8.563011], [47.395013, 8.52055], [47.326339, 8.51335], [47.377986, 8.528137], [47.37867, 8.530879], [47.385937, 8.516684], [47.383297, 8.5152], [47.374531, 8.524359], [47.379077, 8.51824], [47.36661, 8.544798], [47.37771, 8.538182], [47.387555, 8.519657], [47.403239, 8.502579], [47.393902, 8.505519], [47.401225, 8.490669], [47.383745, 8.573669], [47.379431, 8.528471], [47.37028, 8.513428], [47.364717, 8.554609], [47.374167, 8.54093], [47.368902, 8.540344], [47.412418, 8.514795], [47.364339, 8.548114], [47.414608, 8.519106], [47.371128, 8.547342], [47.359882, 8.594395], [47.362778, 8.548585], [47.413189, 8.534171], [47.383398, 8.52838], [47.404391, 8.556818], [47.375276, 8.522586], [47.36615, 8.540234], [47.363801, 8.551611], [47.369333, 8.505901], [47.427091, 8.544133], [47.38185, 8.509251], [47.380128, 8.49698], [47.383393, 8.498978], [47.358319, 8.55204], [47.379914, 8.521025], [47.38483, 8.52723], [47.37596, 8.540662], [47.39609, 8.522665], [47.368818, 8.539707], [47.370891, 8.52304], [47.364002, 8.531518], [47.395342, 8.518967], [47.387209, 8.551398], [47.368926, 8.537803], [47.411075, 8.570581], [47.357929, 8.554203], [47.408235, 8.547147], [47.391894, 8.518314], [47.330364, 8.512901], [47.367217, 8.523508], [47.393524, 8.500624], [47.370821, 8.559597], [47.364047, 8.528726], [47.386554, 8.496631], [47.374523, 8.546088], [47.394899, 8.490928], [47.399319, 8.505323], [47.398119, 8.53553], [47.358841, 8.51889], [47.37074, 8.549413], [47.36907, 8.528286], [47.368574, 8.524595], [47.36353, 8.50793], [47.365937, 8.532419], [47.377112, 8.543374], [47.324438, 8.518484], [47.406273, 8.581489], [47.375319, 8.529499], [47.423794, 8.549313], [47.375113, 8.491597], [47.352839, 8.602449], [47.38477, 8.526938], [47.414439, 8.554922], [47.357006, 8.573219], [47.391347, 8.542954], [47.369113, 8.554821], [47.395988, 8.536334], [47.403908, 8.57227], [47.375516, 8.486864], [47.429386, 8.544883], [47.357324, 8.53575], [47.412928, 8.524717], [47.38274, 8.539928], [47.410115, 8.553692], [47.367988, 8.540881], [47.374167, 8.540917], [47.365524, 8.545504], [47.348495, 8.534298], [47.403962, 8.556491], [47.369815, 8.466666], [47.364716, 8.554702], [47.376083, 8.559641], [47.364559, 8.566257], [47.350348, 8.577974], [47.380806, 8.518937], [47.378348, 8.528806], [47.42511, 8.537703], [47.374767, 8.549682], [47.375266, 8.517911], [47.380315, 8.528132], [47.373013, 8.50383], [47.376136, 8.515334], [47.361992, 8.56472], [47.418725, 8.557212], [47.339946, 8.529954], [47.367873, 8.536907], [47.364213, 8.526373], [47.34496, 8.533391], [47.373306, 8.550115], [47.372325, 8.518858], [47.395728, 8.474823], [47.364283, 8.529353], [47.380381, 8.534503], [47.419438, 8.505567], [47.366932, 8.54311], [47.410579, 8.550336], [47.371476, 8.519172], [47.35977, 8.550852], [47.364461, 8.534321], [47.380016, 8.520722], [47.368127, 8.562876], [47.390452, 8.491343], [47.379156, 8.4892], [47.349974, 8.56657], [47.377202, 8.526307], [47.353897, 8.526228], [47.374272, 8.523228], [47.36982, 8.552492], [47.361925, 8.515179], [47.371957, 8.556535], [47.388084, 8.545456], [47.373336, 8.534663], [47.384459, 8.498509], [47.381925, 8.516695], [47.365734, 8.532017], [47.373099, 8.518781], [47.373675, 8.528314], [47.348495, 8.534298], [47.375373, 8.540902], [47.366755, 8.564224], [47.397017, 8.530261], [47.354815, 8.574708], [47.410459, 8.539415], [47.40411, 8.563556], [47.354941, 8.557198], [47.410523, 8.569072], [47.414493, 8.512213], [47.413939, 8.539474], [47.387126, 8.54594], [47.40992, 8.541232], [47.374744, 8.541789], [47.371451, 8.550275], [47.410676, 8.571818], [47.414439, 8.51897], [47.374637, 8.487588], [47.368437, 8.547498], [47.412701, 8.482971], [47.420789, 8.508324], [47.369488, 8.525884], [47.398997, 8.533058], [47.389579, 8.511936], [47.360621, 8.552088], [47.368324, 8.524378], [47.376092, 8.559641], [47.372151, 8.51528], [47.377598, 8.522474], [47.40783, 8.545283], [47.389218, 8.482564], [47.357155, 8.554292], [47.364805, 8.548309], [47.409558, 8.537647], [47.356175, 8.598974], [47.374766, 8.52043], [47.399677, 8.543816], [47.372936, 8.531318], [47.420468, 8.498285], [47.371903, 8.536884], [47.394642, 8.52555], [47.365163, 8.531423], [47.379173, 8.561057], [47.424309, 8.535897], [47.36984, 8.552227], [47.376311, 8.522528], [47.337152, 8.539027], [47.38636, 8.518533], [47.365964, 8.53234], [47.364528, 8.561146], [47.396225, 8.522721], [47.385509, 8.521059], [47.364921, 8.552985], [47.364202, 8.529444], [47.374236, 8.537435], [47.376257, 8.538748], [47.358875, 8.521988], [47.400942, 8.507767], [47.396382, 8.543191], [47.345183, 8.534508], [47.391361, 8.54518], [47.378241, 8.541067], [47.405108, 8.487088], [47.379187, 8.542782], [47.388494, 8.491053], [47.385075, 8.528944], [47.384874, 8.508133], [47.376876, 8.535106], [47.353178, 8.511706], [47.366506, 8.545405], [47.361288, 8.525505], [47.372365, 8.494045], [47.398024, 8.535038], [47.370097, 8.509823], [47.371633, 8.513998], [47.375097, 8.518703], [47.371326, 8.536078], [47.350037, 8.533879], [47.392478, 8.502947], [47.375668, 8.523984], [47.382834, 8.530011], [47.378796, 8.530881], [47.383403, 8.484092], [47.373805, 8.545861], [47.386025, 8.518831], [47.384913, 8.508796], [47.378236, 8.5216], [47.375914, 8.527446], [47.410905, 8.544473], [47.374121, 8.52492], [47.390105, 8.512437], [47.382428, 8.53771], [47.369216, 8.523257], [47.403444, 8.486075], [47.368938, 8.540319], [47.387493, 8.496199], [47.403998, 8.556572], [47.390977, 8.522137], [47.373391, 8.531711], [47.349613, 8.561242], [47.359179, 8.558028], [47.385331, 8.494646], [47.343772, 8.535286], [47.345241, 8.535038], [47.378619, 8.540055], [47.395658, 8.545441], [47.409877, 8.48489], [47.407573, 8.582829], [47.407672, 8.582831], [47.377362, 8.522708], [47.389447, 8.511616], [47.363825, 8.515945], [47.357332, 8.550854], [47.3712, 8.531361], [47.36068, 8.587449], [47.391761, 8.538194], [47.364465, 8.546171], [47.411639, 8.572686], [47.361874, 8.507116], [47.417524, 8.546479], [47.346697, 8.563219], [47.36707, 8.545589], [47.385979, 8.517943], [47.378104, 8.483207], [47.393399, 8.500581], [47.382102, 8.531373], [47.380438, 8.519897], [47.378527, 8.540265], [47.331711, 8.538028], [47.39177, 8.54287], [47.361094, 8.549701], [47.372697, 8.534729], [47.376491, 8.540634], [47.379324, 8.537871], [47.384745, 8.529652], [47.372864, 8.53513], [47.352067, 8.505397], [47.356154, 8.535726], [47.398282, 8.532487], [47.36293, 8.517318], [47.353048, 8.53414], [47.362357, 8.566065], [47.366779, 8.540353], [47.3939, 8.525972], [47.412388, 8.516027], [47.370015, 8.543333], [47.383748, 8.512216], [47.335181, 8.524947], [47.408619, 8.546532], [47.37768, 8.538539], [47.396207, 8.545413], [47.342721, 8.536138], [47.401912, 8.581263], [47.393387, 8.498978], [47.381434, 8.517242], [47.404099, 8.48524], [47.374557, 8.521631], [47.359846, 8.568924], [47.374393, 8.518966], [47.406608, 8.506913], [47.351448, 8.566707], [47.385339, 8.530526], [47.3604, 8.516631], [47.385193, 8.530734], [47.385544, 8.528808], [47.381673, 8.516664], [47.368225, 8.531036], [47.380903, 8.518237], [47.363164, 8.517296], [47.374931, 8.544746], [47.371865, 8.547423], [47.374387, 8.535757], [47.396851, 8.529702], [47.368509, 8.558687], [47.387719, 8.538482], [47.383166, 8.473466], [47.38221, 8.530342], [47.361565, 8.535281], [47.370497, 8.539993], [47.389998, 8.512355], [47.388393, 8.515661], [47.389717, 8.511634], [47.399384, 8.495256], [47.396597, 8.533803], [47.393125, 8.479276], [47.390877, 8.522215], [47.404993, 8.555957], [47.3626, 8.535223], [47.380493, 8.519765], [47.381729, 8.529935], [47.42108, 8.502127], [47.374519, 8.544632], [47.391961, 8.517879], [47.380098, 8.528233], [47.409992, 8.504808], [47.37028, 8.513362], [47.410893, 8.547653], [47.377779, 8.507871], [47.411972, 8.525917], [47.39789, 8.54154], [47.375125, 8.511844], [47.371393, 8.528055], [47.408956, 8.53945], [47.372879, 8.538308], [47.382971, 8.527868], [47.371325, 8.530464], [47.401197, 8.543834], [47.411133, 8.526204], [47.380155, 8.501854], [47.362341, 8.547278], [47.355886, 8.535588], [47.363147, 8.517203], [47.369138, 8.504626], [47.359678, 8.512076], [47.386784, 8.530833], [47.348019, 8.534235], [47.385933, 8.518061], [47.396001, 8.545369], [47.368172, 8.496173], [47.395084, 8.524446], [47.421036, 8.50206], [47.369288, 8.505887], [47.369591, 8.543536], [47.376086, 8.535898], [47.374682, 8.514986], [47.374276, 8.5437], [47.376369, 8.534566], [47.368866, 8.547877], [47.363678, 8.546684], [47.368699, 8.540843], [47.37346, 8.534851], [47.381202, 8.497584], [47.333913, 8.53245], [47.385449, 8.529323], [47.371021, 8.510146], [47.371353, 8.520785], [47.383004, 8.530173], [47.389926, 8.512288], [47.365532, 8.553978], [47.377155, 8.536992], [47.418665, 8.50257], [47.394792, 8.525791], [47.386741, 8.490926], [47.370647, 8.546895], [47.366851, 8.543175], [47.369881, 8.52907], [47.378046, 8.526549], [47.345031, 8.529647], [47.377524, 8.536073], [47.396835, 8.540909], [47.374577, 8.538542], [47.378282, 8.563846], [47.361484, 8.561465], [47.377189, 8.540026], [47.36851, 8.517947], [47.410533, 8.5325], [47.369848, 8.515339], [47.405754, 8.503968], [47.359526, 8.521564], [47.379257, 8.559734], [47.360981, 8.565122], [47.364351, 8.555237], [47.369322, 8.528225], [47.340217, 8.529853], [47.364595, 8.566218], [47.390521, 8.489742], [47.379294, 8.543777], [47.404655, 8.55742], [47.383265, 8.506074], [47.375162, 8.517539], [47.399746, 8.519414], [47.329954, 8.529802], [47.398012, 8.532521], [47.393845, 8.501928], [47.367608, 8.506635], [47.369873, 8.52903], [47.379559, 8.526289], [47.400553, 8.589501], [47.406918, 8.587174], [47.388882, 8.488941], [47.370022, 8.564135], [47.373122, 8.547688], [47.388511, 8.49108], [47.370377, 8.514516], [47.382348, 8.572129], [47.374299, 8.497063], [47.388441, 8.492946], [47.355087, 8.557015], [47.370009, 8.536514], [47.389834, 8.544936], [47.35669, 8.558691], [47.386494, 8.490391], [47.363402, 8.520782], [47.382793, 8.483855], [47.369153, 8.528089], [47.398659, 8.505694], [47.377726, 8.507751], [47.368763, 8.534105], [47.398898, 8.533003], [47.37434, 8.542615], [47.375661, 8.537081], [47.345681, 8.529369], [47.425878, 8.493926], [47.37017, 8.548805], [47.370608, 8.524504], [47.375045, 8.526117], [47.410375, 8.548159], [47.386861, 8.535047], [47.371663, 8.535635], [47.396303, 8.513317], [47.335566, 8.519344], [47.389678, 8.511951], [47.407856, 8.531199], [47.357779, 8.548375], [47.378003, 8.548028], [47.388737, 8.491045], [47.367906, 8.534419], [47.373136, 8.536843], [47.40688, 8.550603], [47.399335, 8.542842], [47.379894, 8.528931], [47.361847, 8.560215], [47.381407, 8.541993], [47.394139, 8.531156], [47.402926, 8.557596], [47.404455, 8.557681], [47.393624, 8.501513], [47.370421, 8.519442], [47.422834, 8.493349], [47.390613, 8.489439], [47.378603, 8.542664], [47.37636, 8.518291], [47.395884, 8.515852], [47.353944, 8.512463], [47.381306, 8.54219], [47.371619, 8.506728], [47.389564, 8.543156], [47.388036, 8.485044], [47.380738, 8.52528], [47.397702, 8.532965], [47.370235, 8.53918], [47.364972, 8.545837], [47.378121, 8.512672], [47.375877, 8.538025], [47.39331, 8.524648], [47.409814, 8.541018], [47.378759, 8.542349], [47.377189, 8.52677], [47.399168, 8.521522], [47.367108, 8.539778], [47.40287, 8.554123], [47.413948, 8.544271], [47.376043, 8.529011], [47.375759, 8.523854], [47.424703, 8.55299], [47.377578, 8.514952], [47.368987, 8.538016], [47.3572, 8.526997], [47.371809, 8.506626], [47.380417, 8.505673], [47.390525, 8.52238], [47.386431, 8.496297], [47.373898, 8.53331], [47.340577, 8.537364], [47.351241, 8.565856], [47.390904, 8.522255], [47.424168, 8.502786], [47.369379, 8.547822], [47.371622, 8.547498], [47.376847, 8.559697], [47.378549, 8.5752], [47.381351, 8.517492], [47.41069, 8.543488], [47.375908, 8.54519], [47.380008, 8.526377], [47.368955, 8.540412], [47.397103, 8.492892], [47.374824, 8.540003], [47.364621, 8.566351], [47.38894, 8.515804], [47.408223, 8.546564], [47.376638, 8.536545], [47.386921, 8.46995], [47.367377, 8.541743], [47.375633, 8.520965], [47.382658, 8.529649], [47.414019, 8.549003], [47.393211, 8.524646], [47.363625, 8.533351], [47.403908, 8.536815], [47.380454, 8.534385], [47.41299, 8.538116], [47.406543, 8.584185], [47.374579, 8.494923], [47.377092, 8.540752], [47.41105, 8.545297], [47.361802, 8.560241], [47.408352, 8.548117], [47.395739, 8.545456], [47.38656, 8.541226], [47.376315, 8.522078], [47.386477, 8.529132], [47.368917, 8.501219], [47.376924, 8.541424], [47.350072, 8.562125], [47.374457, 8.541664], [47.426851, 8.491758], [47.380145, 8.528075], [47.375828, 8.536581], [47.371135, 8.542906], [47.427825, 8.490478], [47.367543, 8.535642], [47.389544, 8.521459], [47.372406, 8.547289], [47.367624, 8.513613], [47.393794, 8.524817], [47.408883, 8.539621], [47.39049, 8.479158], [47.366951, 8.543958], [47.354209, 8.523654], [47.399601, 8.543271], [47.35796, 8.552919], [47.421775, 8.546952], [47.393774, 8.506735], [47.385233, 8.526497], [47.416112, 8.547404], [47.372242, 8.542836], [47.343117, 8.530415], [47.35495, 8.557238], [47.363404, 8.534803], [47.413892, 8.545396], [47.372609, 8.532608], [47.360261, 8.534288], [47.366169, 8.526836], [47.376887, 8.528247], [47.382808, 8.515548], [47.424226, 8.506339], [47.359956, 8.5521], [47.349675, 8.561336], [47.419218, 8.547137], [47.407856, 8.532127], [47.395407, 8.514001], [47.402058, 8.498965], [47.354793, 8.553012], [47.351563, 8.525691], [47.365, 8.589859], [47.374353, 8.52703], [47.381061, 8.507063], [47.370081, 8.525049], [47.362516, 8.534586], [47.372203, 8.520339], [47.393617, 8.512004], [47.368779, 8.540938], [47.377766, 8.543692], [47.37305, 8.534498], [47.350843, 8.534306], [47.401149, 8.493118], [47.376204, 8.524406], [47.358482, 8.51777], [47.368167, 8.523871], [47.364627, 8.555547], [47.4079, 8.547392], [47.366523, 8.537925], [47.366994, 8.523344], [47.378404, 8.510374], [47.389411, 8.485124], [47.370197, 8.548819], [47.380193, 8.527798], [47.382677, 8.507413], [47.366661, 8.54137], [47.366346, 8.540477], [47.392878, 8.522759], [47.387243, 8.554366], [47.377256, 8.512906], [47.369551, 8.466979], [47.393375, 8.499203], [47.378535, 8.541378], [47.371837, 8.542815], [47.367126, 8.539778], [47.368252, 8.538649], [47.408317, 8.541424], [47.374543, 8.54111], [47.374131, 8.515161], [47.380413, 8.502203], [47.38295, 8.474429], [47.376192, 8.525597], [47.358204, 8.548159], [47.369959, 8.510217], [47.384187, 8.475976], [47.3587, 8.590252], [47.426256, 8.536362], [47.35525, 8.557826], [47.370253, 8.539167], [47.364955, 8.529724], [47.342676, 8.530433], [47.378149, 8.509706], [47.377577, 8.543689], [47.37475, 8.55237], [47.393298, 8.511521], [47.376547, 8.511713], [47.384295, 8.525816], [47.379802, 8.525327], [47.363435, 8.526847], [47.369521, 8.555438], [47.39839, 8.49778], [47.377061, 8.544022], [47.388748, 8.535271], [47.364993, 8.519914], [47.370545, 8.524516], [47.379352, 8.537766], [47.375361, 8.549681], [47.369589, 8.541815], [47.383419, 8.539466], [47.417186, 8.509869], [47.370152, 8.548804], [47.404798, 8.5769], [47.413832, 8.572018], [47.41543, 8.513902], [47.359645, 8.558183], [47.369799, 8.525388], [47.371289, 8.530503], [47.403871, 8.496444], [47.368815, 8.538145], [47.425705, 8.553528], [47.367875, 8.496247], [47.357179, 8.552691], [47.361758, 8.561021], [47.392867, 8.534455], [47.363309, 8.533437], [47.37024, 8.547138], [47.363626, 8.532279], [47.412262, 8.504363], [47.390592, 8.489796], [47.359048, 8.500427], [47.407854, 8.579814], [47.391996, 8.500553], [47.378963, 8.543572], [47.361544, 8.565438], [47.418395, 8.538161], [47.377735, 8.532806], [47.410526, 8.538065], [47.391098, 8.522696], [47.379156, 8.522307], [47.41461, 8.560478], [47.322863, 8.513796], [47.382622, 8.540005], [47.380718, 8.528312], [47.365696, 8.547295], [47.428581, 8.54256], [47.364258, 8.548046], [47.367561, 8.53371], [47.373085, 8.530831], [47.409799, 8.537811], [47.373084, 8.530897], [47.368025, 8.495561], [47.366455, 8.540347], [47.379215, 8.537975], [47.410776, 8.572642], [47.389938, 8.478618], [47.366897, 8.545811], [47.377587, 8.498505], [47.376093, 8.543658], [47.371573, 8.521306], [47.398909, 8.533705], [47.425899, 8.493542], [47.387049, 8.546468], [47.370926, 8.49403], [47.386358, 8.499315], [47.368735, 8.521818], [47.368237, 8.511612], [47.357183, 8.522046], [47.38212, 8.55018], [47.368211, 8.541058], [47.414702, 8.561209], [47.378195, 8.517335], [47.409168, 8.571521], [47.408252, 8.58507], [47.359861, 8.549795], [47.389121, 8.533875], [47.382911, 8.575267], [47.365026, 8.553371], [47.371334, 8.530477], [47.391069, 8.526696], [47.396952, 8.540911], [47.378912, 8.526183], [47.402065, 8.495269], [47.376004, 8.536002], [47.399109, 8.540108], [47.361495, 8.557534], [47.397896, 8.532492], [47.393189, 8.49304], [47.375041, 8.5247], [47.361227, 8.506017], [47.397927, 8.474442], [47.370572, 8.509024], [47.366142, 8.544868], [47.360719, 8.584418], [47.367396, 8.541611], [47.427014, 8.491589], [47.378357, 8.510545], [47.368284, 8.534373], [47.407111, 8.586768], [47.376048, 8.559574], [47.405414, 8.567267], [47.379001, 8.527337], [47.378174, 8.532034], [47.357945, 8.52042], [47.367057, 8.536612], [47.420893, 8.507809], [47.377115, 8.493066], [47.379185, 8.525857], [47.376141, 8.567548], [47.405295, 8.504913], [47.403801, 8.486374], [47.367887, 8.523985], [47.378988, 8.559676], [47.37034, 8.548901], [47.366123, 8.533601], [47.374352, 8.524236], [47.369454, 8.541892], [47.373444, 8.545046], [47.424293, 8.548793], [47.371925, 8.522147], [47.370313, 8.514673], [47.370336, 8.509324], [47.399109, 8.470026], [47.386372, 8.497806], [47.373933, 8.50161], [47.404234, 8.560975], [47.384655, 8.531531], [47.395777, 8.531124], [47.363242, 8.563793], [47.36993, 8.552203], [47.352694, 8.531657], [47.384178, 8.512357], [47.358082, 8.520224], [47.369325, 8.538433], [47.390736, 8.521947], [47.374976, 8.536259], [47.383377, 8.515321], [47.40291, 8.547102], [47.379083, 8.544183], [47.374284, 8.519017], [47.374083, 8.538452], [47.389035, 8.521104], [47.382951, 8.51375], [47.376326, 8.525719], [47.377599, 8.522368], [47.394653, 8.532968], [47.386704, 8.491004], [47.427696, 8.54286], [47.375323, 8.485377], [47.415724, 8.554141], [47.373595, 8.511892], [47.376077, 8.537751], [47.364981, 8.538291], [47.388286, 8.491168], [47.420165, 8.508709], [47.37741, 8.500091], [47.405269, 8.549775], [47.366555, 8.523137], [47.412219, 8.546342], [47.384705, 8.516659], [47.369699, 8.518765], [47.40514, 8.49537], [47.39341, 8.524571], [47.397142, 8.480639], [47.366506, 8.520673], [47.376528, 8.532888], [47.391539, 8.535925], [47.39807, 8.53594], [47.392695, 8.475095], [47.375352, 8.536478], [47.392282, 8.473961], [47.348263, 8.532241], [47.421305, 8.549911], [47.374988, 8.517813], [47.345305, 8.535886], [47.358991, 8.522083], [47.371928, 8.493626], [47.349542, 8.533988], [47.387649, 8.48701], [47.380088, 8.520684], [47.370909, 8.53166], [47.403743, 8.57073], [47.378974, 8.54528], [47.367487, 8.511902], [47.390986, 8.478029], [47.372936, 8.531318], [47.38057, 8.534467], [47.364809, 8.545966], [47.369575, 8.510845], [47.398878, 8.538924], [47.386268, 8.535021], [47.37832, 8.56084], [47.36804, 8.494833], [47.400913, 8.494306], [47.362199, 8.54893], [47.400894, 8.544503], [47.386428, 8.497635], [47.401951, 8.499785], [47.356712, 8.523413], [47.395185, 8.489211], [47.405145, 8.480968], [47.39418, 8.520162], [47.410274, 8.543651], [47.376864, 8.528789], [47.374747, 8.54988], [47.357856, 8.5544], [47.365091, 8.554008], [47.369973, 8.566305], [47.367416, 8.55264], [47.373256, 8.5617], [47.380084, 8.526908], [47.418095, 8.510762], [47.360489, 8.552734], [47.392864, 8.524308], [47.376739, 8.527727], [47.386152, 8.496331], [47.403767, 8.486161], [47.371866, 8.556639], [47.412396, 8.546624], [47.360533, 8.5631], [47.368902, 8.540318], [47.374992, 8.545012], [47.365997, 8.521246], [47.356572, 8.52394], [47.369039, 8.541009], [47.406773, 8.553251], [47.423826, 8.52034], [47.405694, 8.549479], [47.388735, 8.542278], [47.369852, 8.543462], [47.366519, 8.540255], [47.351215, 8.56113], [47.383908, 8.53247], [47.406547, 8.584622], [47.380331, 8.541653], [47.370152, 8.548818], [47.357252, 8.572973], [47.363661, 8.546604], [47.361514, 8.534009], [47.357658, 8.521275], [47.371009, 8.56156], [47.398221, 8.537069], [47.392565, 8.471476], [47.414092, 8.542339], [47.372088, 8.49392], [47.366448, 8.544848], [47.409037, 8.566523], [47.360809, 8.547564], [47.382671, 8.514777], [47.375918, 8.523261], [47.364232, 8.54794], [47.373905, 8.538263], [47.394874, 8.52578], [47.376794, 8.539024], [47.36405, 8.530248], [47.370945, 8.524007], [47.388003, 8.536103], [47.353767, 8.512168], [47.409309, 8.546772], [47.414751, 8.519215], [47.415365, 8.538072], [47.369545, 8.555756], [47.409596, 8.496995], [47.372158, 8.520311], [47.411685, 8.562497], [47.414075, 8.550701], [47.327347, 8.52963], [47.383783, 8.499595], [47.384381, 8.531936], [47.374177, 8.532349], [47.376336, 8.527534], [47.364926, 8.532769], [47.352194, 8.534056], [47.403488, 8.497033], [47.388511, 8.49108], [47.370134, 8.548817], [47.366085, 8.545185], [47.366079, 8.53352], [47.359277, 8.5223], [47.373487, 8.519584], [47.361102, 8.54986], [47.424064, 8.539868], [47.37291, 8.522697], [47.366557, 8.541938], [47.36788, 8.535199], [47.369861, 8.532102], [47.379066, 8.538502], [47.386861, 8.483617], [47.332103, 8.517395], [47.384471, 8.574823], [47.426813, 8.49193], [47.371615, 8.515891], [47.360543, 8.535843], [47.399968, 8.532071], [47.359335, 8.552061], [47.375158, 8.544605], [47.405195, 8.541466], [47.354177, 8.526102], [47.354986, 8.557146], [47.360457, 8.52206], [47.408973, 8.539636], [47.377636, 8.537519], [47.382537, 8.53762], [47.378491, 8.50966], [47.340559, 8.537377], [47.361689, 8.517319], [47.379213, 8.511357], [47.402436, 8.535513], [47.376408, 8.541797], [47.364992, 8.502624], [47.408595, 8.575815], [47.379016, 8.520874], [47.379829, 8.506986], [47.369223, 8.525402], [47.398664, 8.534031], [47.369361, 8.517355], [47.376056, 8.559601], [47.426196, 8.55489], [47.374398, 8.524184], [47.391342, 8.535854], [47.389342, 8.519071], [47.390486, 8.489569], [47.376683, 8.51553], [47.364102, 8.536128], [47.408664, 8.569721], [47.372701, 8.537112], [47.384953, 8.529511], [47.410724, 8.544602], [47.391043, 8.522761], [47.376187, 8.545103], [47.351456, 8.525543], [47.385848, 8.493133], [47.378761, 8.489139], [47.38677, 8.497615], [47.364022, 8.5464], [47.420497, 8.54886], [47.378645, 8.540122], [47.381156, 8.569853], [47.368855, 8.548036], [47.400316, 8.543723], [47.395177, 8.489119], [47.381255, 8.538176], [47.363109, 8.533698], [47.366611, 8.544719], [47.383316, 8.530405], [47.365778, 8.545271], [47.395854, 8.526714], [47.379592, 8.5218], [47.378718, 8.529662], [47.376797, 8.51389], [47.378478, 8.510084], [47.377228, 8.538742], [47.416509, 8.511087], [47.392887, 8.522772], [47.381128, 8.487994], [47.360651, 8.566624], [47.356753, 8.55116], [47.364559, 8.566217], [47.36249, 8.504639], [47.390715, 8.50878], [47.419059, 8.545875], [47.373425, 8.534823], [47.363403, 8.534922], [47.385184, 8.500881], [47.38971, 8.511422], [47.407623, 8.584977], [47.370221, 8.518736], [47.376144, 8.518287], [47.379398, 8.528086], [47.369096, 8.541699], [47.391048, 8.536524], [47.38724, 8.486525], [47.414392, 8.554219], [47.383243, 8.499637], [47.389373, 8.481388], [47.352304, 8.573053], [47.361441, 8.505254], [47.368208, 8.496134], [47.406611, 8.588175], [47.380082, 8.520419], [47.411168, 8.526258], [47.370069, 8.468432], [47.380623, 8.517424], [47.382512, 8.514456], [47.391394, 8.537034], [47.374544, 8.541004], [47.381896, 8.509146], [47.370576, 8.517287], [47.364061, 8.556409], [47.377692, 8.516305], [47.376536, 8.540608], [47.396668, 8.523445], [47.39553, 8.482899], [47.368865, 8.501099], [47.378473, 8.526995], [47.344775, 8.519557], [47.377264, 8.519687], [47.383747, 8.539075], [47.380966, 8.511498], [47.377442, 8.538932], [47.391952, 8.517931], [47.340839, 8.5192], [47.374573, 8.538925], [47.368288, 8.524351], [47.381932, 8.514034], [47.376499, 8.492472], [47.398601, 8.538693], [47.383777, 8.531116], [47.377061, 8.544009], [47.374236, 8.516474], [47.387336, 8.525745], [47.38651, 8.52553], [47.364293, 8.531246], [47.378597, 8.533897], [47.387367, 8.518633], [47.367999, 8.536936], [47.379955, 8.537672], [47.41737, 8.54568], [47.370161, 8.548791], [47.415754, 8.546362], [47.364772, 8.537651], [47.378518, 8.527009], [47.396684, 8.529314], [47.421597, 8.53824], [47.405047, 8.478886], [47.414098, 8.55298], [47.393338, 8.495467], [47.399457, 8.544248], [47.358221, 8.571418], [47.366226, 8.548312], [47.37758, 8.511853], [47.382958, 8.532185], [47.363805, 8.531448], [47.362501, 8.535221], [47.371334, 8.530451], [47.365247, 8.50905], [47.371855, 8.55501], [47.402445, 8.535593], [47.382345, 8.543668], [47.369823, 8.510254], [47.347002, 8.564165], [47.381285, 8.571392], [47.365277, 8.564564], [47.365199, 8.545617], [47.414562, 8.570006], [47.38722, 8.518895], [47.359861, 8.549821], [47.372227, 8.547232], [47.386545, 8.503491], [47.420685, 8.502027], [47.37233, 8.538283], [47.375978, 8.527394], [47.393073, 8.492972], [47.37433, 8.541794], [47.382863, 8.499921], [47.385799, 8.517953], [47.416612, 8.53558], [47.416639, 8.535607], [47.3542, 8.523653], [47.373501, 8.536308], [47.36625, 8.537311], [47.384909, 8.531338], [47.354207, 8.509371], [47.370864, 8.523066], [47.353618, 8.525203], [47.333607, 8.534455], [47.395357, 8.476127], [47.412788, 8.481303], [47.366375, 8.53452], [47.404722, 8.549512], [47.356244, 8.556444], [47.373253, 8.514799], [47.381416, 8.542033], [47.372937, 8.531225], [47.399426, 8.517076], [47.377043, 8.544022], [47.377265, 8.538716], [47.369898, 8.543384], [47.367997, 8.540842], [47.343683, 8.535218], [47.362343, 8.559114], [47.367458, 8.541744], [47.370456, 8.522422], [47.374583, 8.538833], [47.416172, 8.517349], [47.387859, 8.485623], [47.362501, 8.534307], [47.404118, 8.562709], [47.394251, 8.524999], [47.338286, 8.539011], [47.383524, 8.549163], [47.419944, 8.500475], [47.409257, 8.544743], [47.373332, 8.536993], [47.379257, 8.527779], [47.373509, 8.546769], [47.412696, 8.537765], [47.378531, 8.519818], [47.372881, 8.533369], [47.387887, 8.550128], [47.368447, 8.541844], [47.377562, 8.518647], [47.400174, 8.494437], [47.36127, 8.563103], [47.361434, 8.517631], [47.373878, 8.538262], [47.337079, 8.520103], [47.365542, 8.553978], [47.386827, 8.528265], [47.383732, 8.540611], [47.360688, 8.524302], [47.41732, 8.507009], [47.330483, 8.515576], [47.397086, 8.530607], [47.362496, 8.568398], [47.370154, 8.513346], [47.374527, 8.539971], [47.424574, 8.553253], [47.37414, 8.540969], [47.387806, 8.550139], [47.379703, 8.521484], [47.387809, 8.536589], [47.377465, 8.54321], [47.371532, 8.522881], [47.383473, 8.515641], [47.370879, 8.554606], [47.412269, 8.523948], [47.392431, 8.532923], [47.382035, 8.528935], [47.384377, 8.548399], [47.369821, 8.531638], [47.377056, 8.520821], [47.409778, 8.541017], [47.363742, 8.575269], [47.39888, 8.590432], [47.374319, 8.522063], [47.334557, 8.529989], [47.391088, 8.522775], [47.422592, 8.550812], [47.372968, 8.530855], [47.39137, 8.54522], [47.38728, 8.533585], [47.370876, 8.548343], [47.423075, 8.494507], [47.392858, 8.530613], [47.395509, 8.529979], [47.352832, 8.524698], [47.360813, 8.552701], [47.362975, 8.565442], [47.369723, 8.54003], [47.39974, 8.516129], [47.414345, 8.551594], [47.370188, 8.548805], [47.41014, 8.537977], [47.372499, 8.545093], [47.38673, 8.523177], [47.36442, 8.547123], [47.37223, 8.540373], [47.381046, 8.541218], [47.368529, 8.501344], [47.376911, 8.535186], [47.34925, 8.534353], [47.378306, 8.530395], [47.368365, 8.490828], [47.387836, 8.527093], [47.377327, 8.529342], [47.38284, 8.551082], [47.375074, 8.528806], [47.387438, 8.529218], [47.367989, 8.540762], [47.366543, 8.540521], [47.388676, 8.546568], [47.426706, 8.555087], [47.405275, 8.495373], [47.3672, 8.533835], [47.417071, 8.554328], [47.397682, 8.533163], [47.367582, 8.496744], [47.3962, 8.520548], [47.3689, 8.529103], [47.366889, 8.541971], [47.40601, 8.557793], [47.369134, 8.503077], [47.369458, 8.526268], [47.37917, 8.495583], [47.377143, 8.541998], [47.369568, 8.467058], [47.404884, 8.585487], [47.430571, 8.549839], [47.392294, 8.516932], [47.387408, 8.48784], [47.383154, 8.514151], [47.37786, 8.5079], [47.382555, 8.514669], [47.377182, 8.551997], [47.398865, 8.533678], [47.379136, 8.538662], [47.374616, 8.545693], [47.384323, 8.525697], [47.413244, 8.538823], [47.354804, 8.52352], [47.385382, 8.53642], [47.404267, 8.564924], [47.35367, 8.558376], [47.398969, 8.53307], [47.361824, 8.547678], [47.388335, 8.490759], [47.394211, 8.493405], [47.380825, 8.518898], [47.364633, 8.554886], [47.419384, 8.547644], [47.364031, 8.546413], [47.368315, 8.524391], [47.375652, 8.516992], [47.379078, 8.495714], [47.376975, 8.539849], [47.3824, 8.548225], [47.35343, 8.52704], [47.377511, 8.521162], [47.379728, 8.52751], [47.36981, 8.52323], [47.411445, 8.525482], [47.376793, 8.538137], [47.38571, 8.517871], [47.386073, 8.521336], [47.38531, 8.51728], [47.38214, 8.541545], [47.386948, 8.546757], [47.377638, 8.505617], [47.366104, 8.540379], [47.408535, 8.542131], [47.373824, 8.536368], [47.393072, 8.519332], [47.399274, 8.505335], [47.377826, 8.518294], [47.394808, 8.527977], [47.367642, 8.49517], [47.419808, 8.482872], [47.385184, 8.530787], [47.383396, 8.483801], [47.412924, 8.552492], [47.371067, 8.548109], [47.367486, 8.496411], [47.382121, 8.545385], [47.398704, 8.506635], [47.362293, 8.532503], [47.415376, 8.553802], [47.396182, 8.527237], [47.368568, 8.529004], [47.364887, 8.56674], [47.378394, 8.555995], [47.380418, 8.534345], [47.40416, 8.574051], [47.386343, 8.521288], [47.418742, 8.506984], [47.366877, 8.555383], [47.371594, 8.54759], [47.391008, 8.538881], [47.397963, 8.474402], [47.416754, 8.506944], [47.402444, 8.499066], [47.419475, 8.506482], [47.343678, 8.530003], [47.420707, 8.50261], [47.416216, 8.547883], [47.391943, 8.517892], [47.385202, 8.500855], [47.365027, 8.502677], [47.371925, 8.522121], [47.422668, 8.551357], [47.364186, 8.562979], [47.368324, 8.524391], [47.410375, 8.536869], [47.412141, 8.542219], [47.369068, 8.513139], [47.398749, 8.505669], [47.418451, 8.508224], [47.377769, 8.537747], [47.374261, 8.486442], [47.378427, 8.500084], [47.366636, 8.510574], [47.343371, 8.532035], [47.361674, 8.517914], [47.36524, 8.494129], [47.375744, 8.519762], [47.377176, 8.559187], [47.366816, 8.543002], [47.426592, 8.554819], [47.371691, 8.558052], [47.372682, 8.529617], [47.354456, 8.574581], [47.384093, 8.485324], [47.39482, 8.525739], [47.37443, 8.541664], [47.3687, 8.501427], [47.363751, 8.520008], [47.392496, 8.502921], [47.371824, 8.51947], [47.336383, 8.530026], [47.429046, 8.546639], [47.400719, 8.548647], [47.363386, 8.557375], [47.416269, 8.545127], [47.355887, 8.599855], [47.407731, 8.584065], [47.395003, 8.540632], [47.373533, 8.525252], [47.362122, 8.547552], [47.391056, 8.522311], [47.366891, 8.558587], [47.367535, 8.508672], [47.368114, 8.541771], [47.373831, 8.531786], [47.369531, 8.557213], [47.394685, 8.525776], [47.40631, 8.583146], [47.380666, 8.517571], [47.359235, 8.572578], [47.386933, 8.528413], [47.376319, 8.543557], [47.366921, 8.541468], [47.415483, 8.54645], [47.378581, 8.52701], [47.377787, 8.522491], [47.400857, 8.537031], [47.405251, 8.555286], [47.403415, 8.570232], [47.362505, 8.533884], [47.373379, 8.552725], [47.379587, 8.521416], [47.371214, 8.523152], [47.368861, 8.53988], [47.386426, 8.518257], [47.36009, 8.5229], [47.374609, 8.515978], [47.379616, 8.537401], [47.355609, 8.556934], [47.399141, 8.542467], [47.391396, 8.514874], [47.379575, 8.515999], [47.36509, 8.553267], [47.369851, 8.509195], [47.41024, 8.572325], [47.392528, 8.512075], [47.348585, 8.534313], [47.367602, 8.546434], [47.409197, 8.547246], [47.392388, 8.491156], [47.375113, 8.518928], [47.384594, 8.548284], [47.378987, 8.495831], [47.360889, 8.531587], [47.395697, 8.522432], [47.373529, 8.542784], [47.402941, 8.490915], [47.402396, 8.49937], [47.378226, 8.534088], [47.383787, 8.540493], [47.376865, 8.559671], [47.376216, 8.543952], [47.361795, 8.526111], [47.375903, 8.541005], [47.414026, 8.525535], [47.377725, 8.51179], [47.376729, 8.497866], [47.358288, 8.534618], [47.395161, 8.476905], [47.42589, 8.493608], [47.343772, 8.535259], [47.367288, 8.49936], [47.374777, 8.549536], [47.366557, 8.544718], [47.369041, 8.53803], [47.384866, 8.531986], [47.412245, 8.553008], [47.374953, 8.519613], [47.37773, 8.537997], [47.356235, 8.556404], [47.386202, 8.518173], [47.405541, 8.553265], [47.404552, 8.533476], [47.374288, 8.517706], [47.372293, 8.534681], [47.392319, 8.502534], [47.369129, 8.527731], [47.385181, 8.50798], [47.361738, 8.503287], [47.385047, 8.530917], [47.387976, 8.486659], [47.373233, 8.536965], [47.388857, 8.515127], [47.391952, 8.517865], [47.363775, 8.535565], [47.351366, 8.53032], [47.390803, 8.539618], [47.370644, 8.516785], [47.359963, 8.534414], [47.381157, 8.518057], [47.376985, 8.542604], [47.414215, 8.518873], [47.377247, 8.538663], [47.383066, 8.513977], [47.41058, 8.550283], [47.41058, 8.550296], [47.364519, 8.547178], [47.367158, 8.540163], [47.372175, 8.530944], [47.372927, 8.531291], [47.386157, 8.518158], [47.37295, 8.519387], [47.419079, 8.548539], [47.359764, 8.598947], [47.38338, 8.539783], [47.392432, 8.528128], [47.388997, 8.481129], [47.385788, 8.532521], [47.391427, 8.5231], [47.380679, 8.503626], [47.416129, 8.510298], [47.419604, 8.548179], [47.385538, 8.557641], [47.408882, 8.572283], [47.393345, 8.473809], [47.376051, 8.538651], [47.367419, 8.544921], [47.421065, 8.501836], [47.3956, 8.491988], [47.353625, 8.511993], [47.367165, 8.544214], [47.380109, 8.522327], [47.35982, 8.534305], [47.365323, 8.560765], [47.379627, 8.527707], [47.375088, 8.496337], [47.373663, 8.534378], [47.38665, 8.520274], [47.386307, 8.543207], [47.381892, 8.516324], [47.389047, 8.515899], [47.386915, 8.535074], [47.408692, 8.550177], [47.42132, 8.502411], [47.359613, 8.534314], [47.412823, 8.522462], [47.379144, 8.559401], [47.373036, 8.547302], [47.36947, 8.525911], [47.369142, 8.52544], [47.386055, 8.533745], [47.423338, 8.551809], [47.381816, 8.529222], [47.378601, 8.540081], [47.37304, 8.53655], [47.391042, 8.522894], [47.365486, 8.552269], [47.353075, 8.512128], [47.392074, 8.497906], [47.374083, 8.498025], [47.363439, 8.533969], [47.386453, 8.541078], [47.391394, 8.537047], [47.385263, 8.536696], [47.388686, 8.546542], [47.387394, 8.497243], [47.38597, 8.517943], [47.3911, 8.522405], [47.409855, 8.549857], [47.35427, 8.55308], [47.386237, 8.535392], [47.36733, 8.530594], [47.368266, 8.523873], [47.374814, 8.525834], [47.336239, 8.53005], [47.369401, 8.513158], [47.382474, 8.530003], [47.369938, 8.516307], [47.367564, 8.518126], [47.394073, 8.529632], [47.368141, 8.541811], [47.382639, 8.475058], [47.377994, 8.53011], [47.370097, 8.511756], [47.405981, 8.481011], [47.40309, 8.486426], [47.36672, 8.533308], [47.390044, 8.541815], [47.356391, 8.535479], [47.389114, 8.477158], [47.400042, 8.548897], [47.429926, 8.542959], [47.412569, 8.546363], [47.36382, 8.554299], [47.402386, 8.546429], [47.371251, 8.5231], [47.354461, 8.523619], [47.380585, 8.519489], [47.387778, 8.529397], [47.39262, 8.475411], [47.380475, 8.519805], [47.3795, 8.558826], [47.366069, 8.533679], [47.363627, 8.535085], [47.369448, 8.532054], [47.353322, 8.525131], [47.35873, 8.517299], [47.411201, 8.546506], [47.370769, 8.566825], [47.404329, 8.556685], [47.376458, 8.55712], [47.369406, 8.505757], [47.425212, 8.538381], [47.383343, 8.530379], [47.355725, 8.560722], [47.378734, 8.542163], [47.376169, 8.521359], [47.399996, 8.54524], [47.397946, 8.480244], [47.402925, 8.536119], [47.382897, 8.530952], [47.371977, 8.556403], [47.387468, 8.518437], [47.374805, 8.543843], [47.391476, 8.519737], [47.414098, 8.522647], [47.36187, 8.515257], [47.360866, 8.549114], [47.376399, 8.525628], [47.390034, 8.512382], [47.367708, 8.501645], [47.366566, 8.545685], [47.375263, 8.490911], [47.361011, 8.548098], [47.359166, 8.521636], [47.3764, 8.540764], [47.3642, 8.556942], [47.408008, 8.505298], [47.394268, 8.495009], [47.377054, 8.541903], [47.377229, 8.526373], [47.372225, 8.518989], [47.362176, 8.547553], [47.404294, 8.576849], [47.362636, 8.531424], [47.374339, 8.517972], [47.386618, 8.473705], [47.376965, 8.526686], [47.422569, 8.510414], [47.382731, 8.529466], [47.41443, 8.51897], [47.398783, 8.540366], [47.342953, 8.519163], [47.380929, 8.511577], [47.380068, 8.514261], [47.36716, 8.515166], [47.369902, 8.501729], [47.375409, 8.533315], [47.373718, 8.53426], [47.373736, 8.537121], [47.394298, 8.520059], [47.367921, 8.540364], [47.39913, 8.584211], [47.371801, 8.601539], [47.391703, 8.513767], [47.378889, 8.527718], [47.414687, 8.571055], [47.392549, 8.524315], [47.41182, 8.525834], [47.41468, 8.519108], [47.42598, 8.493557], [47.359705, 8.549196], [47.367201, 8.495148], [47.379509, 8.525864], [47.387945, 8.485148], [47.419718, 8.48287], [47.39801, 8.474231], [47.3932, 8.530647], [47.356321, 8.598766], [47.34486, 8.533442], [47.368959, 8.541828], [47.378941, 8.525044], [47.366952, 8.534386], [47.362886, 8.563454], [47.406354, 8.537859], [47.372719, 8.522905], [47.376767, 8.559602], [47.35761, 8.509016], [47.3793, 8.542254], [47.382504, 8.529726], [47.372732, 8.534875], [47.370689, 8.516746], [47.406847, 8.536121], [47.364028, 8.551417], [47.38633, 8.496507], [47.374175, 8.542982], [47.385162, 8.508059], [47.386779, 8.497562], [47.412108, 8.546658], [47.330349, 8.515481], [47.38254, 8.540163], [47.410523, 8.545883], [47.361387, 8.603086], [47.377485, 8.542018], [47.375976, 8.540822], [47.363172, 8.549652], [47.391083, 8.522378], [47.419589, 8.547913], [47.378786, 8.542389], [47.415637, 8.529305], [47.351256, 8.57618], [47.388598, 8.520672], [47.405179, 8.481128], [47.391389, 8.478235], [47.345003, 8.533564], [47.36379, 8.551796], [47.392207, 8.50983], [47.42553, 8.55766], [47.403589, 8.53445], [47.405921, 8.568762], [47.373868, 8.536501], [47.408998, 8.550104], [47.369437, 8.541732], [47.360323, 8.550427], [47.361909, 8.56027], [47.387023, 8.547355], [47.388336, 8.485606], [47.398742, 8.590668], [47.379819, 8.521645], [47.394799, 8.536535], [47.392831, 8.479972], [47.372543, 8.517631], [47.407829, 8.554797], [47.378683, 8.526668], [47.377063, 8.526741], [47.398892, 8.533652], [47.393399, 8.524783], [47.401052, 8.588227], [47.406737, 8.538212], [47.403968, 8.506383], [47.38712, 8.490748], [47.369333, 8.537533], [47.370179, 8.548805], [47.368855, 8.514803], [47.373826, 8.518054], [47.375568, 8.527902], [47.38772, 8.498892], [47.364955, 8.547611], [47.410348, 8.542593], [47.361084, 8.535695], [47.370391, 8.556635], [47.372229, 8.535752], [47.358559, 8.555142], [47.383128, 8.474617], [47.378493, 8.531564], [47.364423, 8.546805], [47.373059, 8.495899], [47.377873, 8.541854], [47.393361, 8.547725], [47.407875, 8.550889], [47.396392, 8.486082], [47.40713, 8.586675], [47.364851, 8.566673], [47.404663, 8.569504], [47.381028, 8.491978], [47.393796, 8.529348], [47.383433, 8.538923], [47.389592, 8.512519], [47.374903, 8.561695], [47.369453, 8.525791], [47.358907, 8.548888], [47.404062, 8.533877], [47.374376, 8.502334], [47.425825, 8.547619], [47.393109, 8.474056], [47.428346, 8.545431], [47.392516, 8.489848], [47.381087, 8.503289], [47.391547, 8.542654], [47.356906, 8.532366], [47.358582, 8.55186], [47.403137, 8.49798], [47.37761, 8.506729], [47.424466, 8.504687], [47.37025, 8.563795], [47.376968, 8.543358], [47.377978, 8.508776], [47.383389, 8.548246], [47.381031, 8.532331], [47.367669, 8.549812], [47.404128, 8.490938], [47.335115, 8.541327], [47.372954, 8.531344], [47.414188, 8.518872], [47.389664, 8.511501], [47.369236, 8.504761], [47.369726, 8.525492], [47.377476, 8.544878], [47.389254, 8.5274], [47.391629, 8.538814], [47.401996, 8.497918], [47.387284, 8.51883], [47.375101, 8.553251], [47.358994, 8.53221], [47.378581, 8.542173], [47.41977, 8.556108], [47.369708, 8.555627], [47.364453, 8.550248], [47.407987, 8.565387], [47.378538, 8.541907], [47.37302, 8.528155], [47.395569, 8.5454], [47.369619, 8.539618], [47.357597, 8.525827], [47.408719, 8.549171], [47.389249, 8.54409], [47.378022, 8.528085], [47.419518, 8.556155], [47.365139, 8.563065], [47.410549, 8.547844], [47.41193, 8.545541], [47.365414, 8.539187], [47.360072, 8.568862], [47.351946, 8.576513], [47.372368, 8.519044], [47.374031, 8.541112], [47.356982, 8.53479], [47.395323, 8.483862], [47.382739, 8.580759], [47.384907, 8.498677], [47.387023, 8.489554], [47.394816, 8.536654], [47.405811, 8.590807], [47.363251, 8.567526], [47.364615, 8.508349], [47.413184, 8.544136], [47.410329, 8.569598], [47.378822, 8.542364], [47.367511, 8.537138], [47.372954, 8.531344], [47.376871, 8.543184], [47.406754, 8.586508], [47.405552, 8.480764], [47.351957, 8.559756], [47.37557, 8.526737], [47.371725, 8.536708], [47.369859, 8.54186], [47.396937, 8.512945], [47.387346, 8.518885], [47.403689, 8.485855], [47.379031, 8.530741], [47.37902, 8.545188], [47.391294, 8.536237], [47.366461, 8.545391], [47.407154, 8.586], [47.378842, 8.499934], [47.370206, 8.548806], [47.39699, 8.530234], [47.386447, 8.49745], [47.383064, 8.500561], [47.417164, 8.541846], [47.39983, 8.544707], [47.372669, 8.534861], [47.379242, 8.537883], [47.377128, 8.520796], [47.371192, 8.535956], [47.38586, 8.498723], [47.390441, 8.522722], [47.339869, 8.530442], [47.409734, 8.544713], [47.369562, 8.541801], [47.36799, 8.540643], [47.38279, 8.529944], [47.363513, 8.50785], [47.373026, 8.533266], [47.380511, 8.519766], [47.361076, 8.551541], [47.393877, 8.538847], [47.34322, 8.519433], [47.378865, 8.524566], [47.349388, 8.533998], [47.376597, 8.541801], [47.378836, 8.542761], [47.367973, 8.540563], [47.370783, 8.543045], [47.369284, 8.541782], [47.381451, 8.531664], [47.370152, 8.548804], [47.421635, 8.546472], [47.409558, 8.537634], [47.376792, 8.559788], [47.41222, 8.53965], [47.416267, 8.547261], [47.35412, 8.574944], [47.369122, 8.540825], [47.356494, 8.532225], [47.357247, 8.521902], [47.361507, 8.556303], [47.410613, 8.486004], [47.404191, 8.56165], [47.402307, 8.5528], [47.341353, 8.530525], [47.369044, 8.541473], [47.408897, 8.54569], [47.380161, 8.520593], [47.381379, 8.561726], [47.372728, 8.550301], [47.37581, 8.535561], [47.407802, 8.54727], [47.35451, 8.558009], [47.414793, 8.51956], [47.421056, 8.501862], [47.414692, 8.51981], [47.37326, 8.535072], [47.388162, 8.524994], [47.384585, 8.531265], [47.377148, 8.544315], [47.343252, 8.534137], [47.383437, 8.539493], [47.353584, 8.531662], [47.413269, 8.531416], [47.334748, 8.529808], [47.40544, 8.539417], [47.365361, 8.530474], [47.361336, 8.547972], [47.334193, 8.531397], [47.36205, 8.54759], [47.374414, 8.541504], [47.385859, 8.532602], [47.405001, 8.491922], [47.377341, 8.546743], [47.402764, 8.535149], [47.366834, 8.545823], [47.378181, 8.510118], [47.360743, 8.576489], [47.394707, 8.532903], [47.379938, 8.514682], [47.366288, 8.54082], [47.36158, 8.547832], [47.396607, 8.528889], [47.395877, 8.510765], [47.377073, 8.528516], [47.367961, 8.538948], [47.362826, 8.552981], [47.366181, 8.529418], [47.366506, 8.551853], [47.410369, 8.537531], [47.365803, 8.537023], [47.37476, 8.527766], [47.366267, 8.532703], [47.371116, 8.545792], [47.376959, 8.543371], [47.385383, 8.530659], [47.366473, 8.531781], [47.384268, 8.507538], [47.398967, 8.505395], [47.386437, 8.534243], [47.383047, 8.51399], [47.376266, 8.489514], [47.37918, 8.527406], [47.3682, 8.546023], [47.367415, 8.544312], [47.409773, 8.575893], [47.37388, 8.544632], [47.36861, 8.524635], [47.373335, 8.534769], [47.378416, 8.509963], [47.36931, 8.525762], [47.36034, 8.547634], [47.386998, 8.474401], [47.366705, 8.542404], [47.387733, 8.471727], [47.370119, 8.519065], [47.376451, 8.544778], [47.386287, 8.522532], [47.359434, 8.551123], [47.389809, 8.539108], [47.381312, 8.480515], [47.367017, 8.516036], [47.403063, 8.486359], [47.383933, 8.529901], [47.373137, 8.532964], [47.36993, 8.541901], [47.377431, 8.499826], [47.367936, 8.536935], [47.379997, 8.530403], [47.389006, 8.495037], [47.407558, 8.563245], [47.36855, 8.499054], [47.377052, 8.544048], [47.367527, 8.559819], [47.367645, 8.495832], [47.397395, 8.532124], [47.398285, 8.536898], [47.392379, 8.49117], [47.36875, 8.493007], [47.368579, 8.544018], [47.414375, 8.55129], [47.384844, 8.500649], [47.383216, 8.559632], [47.375098, 8.522424], [47.407164, 8.585894], [47.373525, 8.531859], [47.358909, 8.516362], [47.390969, 8.522985], [47.390034, 8.512343], [47.398187, 8.473546], [47.378152, 8.527677], [47.36193, 8.554445], [47.375713, 8.496799], [47.381875, 8.516297], [47.371148, 8.575837], [47.382939, 8.575109], [47.353634, 8.553768], [47.387209, 8.51912], [47.374787, 8.547577], [47.384445, 8.531871], [47.35974, 8.579698], [47.374404, 8.512928], [47.392412, 8.476573], [47.370494, 8.519364], [47.361096, 8.547636], [47.378858, 8.526234], [47.368533, 8.53659], [47.379164, 8.5224], [47.369862, 8.502178], [47.37754, 8.543767], [47.359635, 8.522414], [47.413507, 8.539504], [47.408923, 8.495763], [47.371901, 8.557739], [47.375734, 8.544538], [47.363472, 8.530501], [47.380127, 8.505932], [47.37696, 8.543331], [47.368409, 8.493847], [47.354758, 8.556638], [47.353564, 8.571994], [47.351767, 8.566304], [47.412042, 8.523202], [47.37217, 8.536188], [47.378885, 8.532883], [47.396254, 8.53577], [47.428059, 8.536929], [47.402085, 8.498926], [47.369108, 8.564671], [47.37083, 8.55957], [47.409818, 8.537798], [47.36952, 8.553743], [47.372813, 8.519517], [47.405294, 8.569371], [47.374366, 8.522726], [47.406336, 8.553865], [47.379987, 8.515199], [47.409364, 8.54289], [47.393654, 8.472385], [47.366001, 8.549208], [47.392022, 8.469836], [47.361035, 8.55395], [47.368948, 8.502809], [47.371133, 8.554333], [47.368619, 8.564939], [47.392576, 8.524249], [47.386291, 8.528797], [47.41966, 8.504948], [47.361498, 8.532804], [47.362059, 8.54755], [47.384842, 8.531747], [47.387951, 8.52446], [47.36923, 8.505356], [47.357435, 8.51436], [47.369284, 8.525668], [47.377865, 8.519858], [47.38648, 8.485967], [47.367111, 8.544213], [47.366658, 8.544495], [47.378464, 8.526995], [47.356102, 8.555303], [47.421274, 8.549393], [47.426347, 8.543852], [47.366687, 8.542404], [47.354442, 8.511216], [47.376522, 8.543918], [47.366917, 8.492759], [47.382227, 8.531415], [47.381412, 8.482424], [47.377236, 8.538874], [47.384492, 8.543024], [47.391931, 8.518209], [47.361047, 8.5712], [47.367327, 8.541344], [47.397403, 8.532243], [47.373532, 8.518684], [47.405676, 8.591692], [47.377691, 8.511538], [47.358396, 8.583773], [47.372581, 8.494102], [47.378827, 8.510276], [47.426362, 8.54604], [47.383687, 8.540584], [47.352616, 8.526599], [47.397986, 8.586226], [47.362306, 8.547145], [47.37606, 8.535818], [47.373047, 8.532922], [47.375409, 8.528534], [47.362716, 8.548464], [47.426733, 8.506601], [47.391055, 8.522496], [47.371335, 8.536065], [47.385676, 8.493249], [47.327221, 8.52964], [47.420757, 8.547089], [47.429144, 8.541975], [47.391538, 8.542667], [47.4034, 8.483902], [47.377199, 8.526691], [47.38094, 8.535335], [47.37301, 8.529214], [47.368457, 8.556687], [47.366555, 8.542083], [47.391071, 8.522695], [47.367599, 8.565394], [47.358664, 8.517602], [47.390826, 8.521935], [47.388056, 8.519932], [47.404735, 8.569519], [47.361238, 8.549704], [47.415056, 8.515458], [47.420326, 8.549771], [47.37277, 8.535525], [47.377, 8.541889], [47.36942, 8.540739], [47.398105, 8.594178], [47.361243, 8.554762], [47.38073, 8.491112], [47.387588, 8.475856], [47.409238, 8.544822], [47.403899, 8.56122], [47.374633, 8.549533], [47.344042, 8.531467], [47.377594, 8.543768], [47.378039, 8.52149], [47.378306, 8.530355], [47.344287, 8.535032], [47.371394, 8.547745], [47.349326, 8.570342], [47.382433, 8.552292], [47.355885, 8.53572], [47.397329, 8.594346], [47.376567, 8.518229], [47.398033, 8.50331], [47.387003, 8.525725], [47.397699, 8.533256], [47.427965, 8.545768], [47.390714, 8.508807], [47.369697, 8.508411], [47.335063, 8.519321], [47.375836, 8.545175], [47.396182, 8.544313], [47.384575, 8.480804], [47.368446, 8.537131], [47.370368, 8.514529], [47.37181, 8.601566], [47.377866, 8.509144], [47.42067, 8.502716], [47.369648, 8.529953], [47.409273, 8.52879], [47.383415, 8.513123], [47.371375, 8.54879], [47.415655, 8.512939], [47.404154, 8.563637], [47.365099, 8.554207], [47.413658, 8.528376], [47.40255, 8.54153], [47.373183, 8.503926], [47.360841, 8.553562], [47.368402, 8.546477], [47.371588, 8.535977], [47.378665, 8.53999], [47.368828, 8.539615], [47.365741, 8.520698], [47.362751, 8.548597], [47.372058, 8.538529], [47.364426, 8.557688], [47.368434, 8.512623], [47.404596, 8.571755], [47.397035, 8.514895], [47.397769, 8.533509], [47.380121, 8.501734], [47.373673, 8.530459], [47.354299, 8.575981], [47.370774, 8.525037], [47.38383, 8.526442], [47.387023, 8.518852], [47.38558, 8.520239], [47.382549, 8.52978], [47.378067, 8.511731], [47.36903, 8.541062], [47.382684, 8.530723], [47.381629, 8.513657], [47.375587, 8.526883], [47.416314, 8.545115], [47.371733, 8.515721], [47.430693, 8.541769], [47.421275, 8.502476], [47.409194, 8.539945], [47.392421, 8.492455], [47.37302, 8.532921], [47.369233, 8.505078], [47.369177, 8.525521], [47.420086, 8.503605], [47.391371, 8.537511], [47.366865, 8.53122], [47.425953, 8.493609], [47.373451, 8.53489], [47.378795, 8.530961], [47.380046, 8.536655], [47.353188, 8.525036], [47.36561, 8.535589], [47.390845, 8.523777], [47.374524, 8.539322], [47.385042, 8.541883], [47.376338, 8.559329], [47.381187, 8.53199], [47.408841, 8.570056], [47.399973, 8.544789], [47.3743, 8.524989], [47.392572, 8.538926], [47.408827, 8.546444], [47.375247, 8.51799], [47.371312, 8.52522], [47.376301, 8.54353], [47.419158, 8.547732], [47.387927, 8.492009], [47.417787, 8.509085], [47.402929, 8.57576], [47.39262, 8.475398], [47.401152, 8.544774], [47.364632, 8.504589], [47.366444, 8.532998], [47.36468, 8.547181], [47.36847, 8.538455], [47.393873, 8.504737], [47.384221, 8.543111], [47.372601, 8.547584], [47.394372, 8.522683], [47.415496, 8.544184], [47.364519, 8.532985], [47.36455, 8.566257], [47.404796, 8.594283], [47.369637, 8.523451], [47.388253, 8.49775], [47.406878, 8.552631], [47.380296, 8.496387], [47.412132, 8.550687], [47.411424, 8.546657], [47.409305, 8.572292], [47.373784, 8.531997], [47.385771, 8.526733], [47.408341, 8.544552], [47.415899, 8.54622], [47.371844, 8.530739], [47.40688, 8.481081], [47.366676, 8.541636], [47.377368, 8.527846], [47.361717, 8.54851], [47.424259, 8.540138], [47.378391, 8.557253], [47.356966, 8.535517], [47.372015, 8.516349], [47.371444, 8.547229], [47.380447, 8.54833], [47.40875, 8.503829], [47.396804, 8.541332], [47.400081, 8.501642], [47.391334, 8.535814], [47.370996, 8.564698], [47.371332, 8.536435], [47.422497, 8.539067], [47.414573, 8.559643], [47.375732, 8.527667], [47.424462, 8.552747], [47.409359, 8.572254], [47.351633, 8.560689], [47.381416, 8.534445], [47.383628, 8.539218], [47.371581, 8.518578], [47.424756, 8.553044], [47.371046, 8.536178], [47.327197, 8.517825], [47.391418, 8.513417], [47.410979, 8.545243], [47.382721, 8.500673], [47.366362, 8.537842], [47.344465, 8.530549], [47.424673, 8.495811], [47.3744, 8.542974], [47.371339, 8.486199], [47.3737, 8.534273], [47.377469, 8.538932], [47.370453, 8.524739], [47.418503, 8.54198], [47.388605, 8.480817], [47.37714, 8.498112], [47.395534, 8.532033], [47.387272, 8.500737], [47.386769, 8.518065], [47.375305, 8.485297], [47.370543, 8.469765], [47.369892, 8.523125], [47.412287, 8.483997], [47.372464, 8.559949], [47.370543, 8.469765], [47.387229, 8.518922], [47.412532, 8.51697], [47.375982, 8.52501], [47.370717, 8.522427], [47.384974, 8.531035], [47.372427, 8.521363], [47.390644, 8.491943], [47.393508, 8.500491], [47.391374, 8.537193], [47.38321, 8.545395], [47.420305, 8.503318], [47.425587, 8.553698], [47.396413, 8.540834], [47.401909, 8.585225], [47.371825, 8.473259], [47.373754, 8.536168], [47.364913, 8.554759], [47.36536, 8.531599], [47.385293, 8.517187], [47.375347, 8.484623], [47.367648, 8.538756], [47.3482, 8.533193], [47.39052, 8.489755], [47.370516, 8.508282], [47.378745, 8.53149], [47.359543, 8.549206], [47.377242, 8.540119], [47.368921, 8.524999], [47.379847, 8.511859], [47.394225, 8.489881], [47.387852, 8.529252], [47.424861, 8.537406], [47.409292, 8.544797], [47.356478, 8.521489], [47.373789, 8.542895], [47.348404, 8.532509], [47.346338, 8.533142], [47.382481, 8.548187], [47.377019, 8.539956], [47.393379, 8.499773], [47.35614, 8.509489], [47.354651, 8.556477], [47.366174, 8.533946], [47.41922, 8.547839], [47.402182, 8.496199], [47.393479, 8.474951], [47.341715, 8.536858], [47.418535, 8.54707], [47.397416, 8.531873], [47.413227, 8.53873], [47.38744, 8.535668], [47.358733, 8.521747], [47.380274, 8.512398], [47.352124, 8.570282], [47.375123, 8.524569], [47.410003, 8.543778], [47.365964, 8.53234], [47.37616, 8.583916], [47.384536, 8.531701], [47.369573, 8.543536], [47.372823, 8.600939], [47.353626, 8.554615], [47.37846, 8.51015], [47.387479, 8.518172], [47.358335, 8.597909], [47.380854, 8.542419], [47.393618, 8.512826], [47.382504, 8.529713], [47.402986, 8.555093], [47.352983, 8.576204], [47.401072, 8.543725], [47.369248, 8.527508], [47.365011, 8.531354], [47.412955, 8.538035], [47.369601, 8.513838], [47.373542, 8.484336], [47.37997, 8.54832], [47.387145, 8.519251], [47.367931, 8.540205], [47.400692, 8.548633], [47.370766, 8.5485], [47.368067, 8.541108], [47.370668, 8.53531], [47.371648, 8.472858], [47.374524, 8.557119], [47.392307, 8.492056], [47.374576, 8.557332], [47.400222, 8.548822], [47.381938, 8.516219], [47.385331, 8.548379], [47.377772, 8.529801], [47.371154, 8.531413], [47.420601, 8.508241], [47.367731, 8.487373], [47.375712, 8.535506], [47.420478, 8.503056], [47.375726, 8.519682], [47.371967, 8.524386], [47.38041, 8.519962], [47.393725, 8.50231], [47.376055, 8.515279], [47.409418, 8.575342], [47.372354, 8.535834], [47.379712, 8.50701], [47.378431, 8.540952], [47.363618, 8.554772], [47.386793, 8.534714], [47.371573, 8.536533], [47.41088, 8.565727], [47.409584, 8.549984], [47.388575, 8.520287], [47.408042, 8.58264], [47.372975, 8.528207], [47.395775, 8.530329], [47.41394, 8.541316], [47.35155, 8.528987], [47.387506, 8.534398], [47.37302, 8.532882], [47.36754, 8.537893], [47.363932, 8.549271], [47.378967, 8.570137], [47.352201, 8.577948], [47.378574, 8.509503], [47.37754, 8.543767], [47.376927, 8.54488], [47.366203, 8.540315], [47.366345, 8.540503], [47.373284, 8.535482], [47.38042, 8.51987], [47.35212, 8.558687], [47.372671, 8.53837], [47.355392, 8.554295], [47.385718, 8.543659], [47.380394, 8.513989], [47.40604, 8.591276], [47.367497, 8.554535], [47.403251, 8.550051], [47.374163, 8.525185], [47.416323, 8.545129], [47.381456, 8.535929], [47.379153, 8.486538], [47.397703, 8.553552], [47.397656, 8.541601], [47.344442, 8.532957], [47.340596, 8.537325], [47.394807, 8.523315], [47.367117, 8.539791], [47.408732, 8.494037], [47.370325, 8.514316], [47.415501, 8.516951], [47.370918, 8.535421], [47.376949, 8.52074], [47.396622, 8.5302], [47.344994, 8.533551], [47.388996, 8.495156], [47.405013, 8.576931], [47.391494, 8.519724], [47.372771, 8.533552], [47.386616, 8.530538], [47.387552, 8.527683], [47.362997, 8.548298], [47.364033, 8.566696], [47.369304, 8.552785], [47.375872, 8.533775], [47.379434, 8.530021], [47.413251, 8.532423], [47.360294, 8.579153], [47.372736, 8.534425], [47.36529, 8.598723], [47.382715, 8.575024], [47.372733, 8.601016], [47.426869, 8.491772], [47.414074, 8.51948], [47.371196, 8.529892], [47.370251, 8.478207], [47.378298, 8.525574], [47.37017, 8.548805], [47.37782, 8.509276], [47.371521, 8.53636], [47.374418, 8.49586], [47.413816, 8.559773], [47.401296, 8.53435], [47.387748, 8.490906], [47.38004, 8.541939], [47.41387, 8.545846], [47.406943, 8.550578], [47.402375, 8.544786], [47.365733, 8.53591], [47.358203, 8.553824], [47.379228, 8.491201], [47.372361, 8.513099], [47.405204, 8.570284], [47.378672, 8.523079], [47.398394, 8.547154], [47.372261, 8.52659], [47.400662, 8.591239], [47.373904, 8.541123], [47.427658, 8.545908], [47.412952, 8.537373], [47.360633, 8.529146], [47.414485, 8.520787], [47.410438, 8.569547], [47.416342, 8.506724], [47.379088, 8.508361], [47.376568, 8.548554], [47.365967, 8.547115], [47.369211, 8.527653], [47.383157, 8.506046], [47.363463, 8.55032], [47.368761, 8.540924], [47.377073, 8.541851], [47.412427, 8.514808], [47.378462, 8.541456], [47.413736, 8.546665], [47.370708, 8.516694], [47.40421, 8.561545], [47.360109, 8.595922], [47.374167, 8.521014], [47.403713, 8.550643], [47.38537, 8.529109], [47.37001, 8.552363], [47.383442, 8.54932], [47.415984, 8.512402], [47.388234, 8.520134], [47.389213, 8.533665], [47.396927, 8.512998], [47.365425, 8.545568], [47.386622, 8.541293], [47.370179, 8.548805], [47.358677, 8.517152], [47.400977, 8.502084], [47.359867, 8.576867], [47.409883, 8.545074], [47.359187, 8.585577], [47.371686, 8.556688], [47.392315, 8.516601], [47.420702, 8.549023], [47.375371, 8.524905], [47.381842, 8.583323], [47.416648, 8.513529], [47.386055, 8.545997], [47.409166, 8.570832], [47.381184, 8.49169], [47.377285, 8.523223], [47.375187, 8.518691], [47.371204, 8.520385], [47.3684, 8.541036], [47.395502, 8.484952], [47.382905, 8.513841], [47.363259, 8.529226], [47.375022, 8.541835], [47.325446, 8.518465], [47.367029, 8.544331], [47.384432, 8.529394], [47.368148, 8.560666], [47.391208, 8.520513], [47.3589, 8.516402], [47.367009, 8.555677], [47.373907, 8.544619], [47.391128, 8.489237], [47.383915, 8.529874], [47.388455, 8.525318], [47.382284, 8.533059], [47.372209, 8.547245], [47.374407, 8.540299], [47.376087, 8.537725], [47.362571, 8.534455], [47.370881, 8.537512], [47.41735, 8.509673], [47.367588, 8.555398], [47.369665, 8.564736], [47.369073, 8.541195], [47.329873, 8.529761], [47.366991, 8.49946], [47.39776, 8.533496], [47.364887, 8.537772], [47.360325, 8.566882], [47.366501, 8.540228], [47.363679, 8.562333], [47.374085, 8.53636], [47.372816, 8.525952], [47.402736, 8.535188], [47.360096, 8.563607], [47.337866, 8.53011], [47.35752, 8.521616], [47.378439, 8.510441], [47.35289, 8.579273], [47.359861, 8.549768], [47.421941, 8.500461], [47.36595, 8.55731], [47.338523, 8.53011], [47.404611, 8.542368], [47.39442, 8.519518], [47.397691, 8.533229], [47.413025, 8.55044], [47.373541, 8.534918], [47.360425, 8.564925], [47.391928, 8.504009], [47.380868, 8.538155], [47.373553, 8.536521], [47.372283, 8.535753], [47.378433, 8.54074], [47.339919, 8.529953], [47.387956, 8.485837], [47.367108, 8.539778], [47.359094, 8.592181], [47.394718, 8.521286], [47.36295, 8.559603], [47.386723, 8.490965], [47.369727, 8.54338], [47.36801, 8.546099], [47.412748, 8.522739], [47.399649, 8.542941], [47.391591, 8.538985], [47.370342, 8.537368], [47.378404, 8.500574], [47.403615, 8.534504], [47.40479, 8.588546], [47.378922, 8.556337], [47.382139, 8.550061], [47.379469, 8.544324], [47.365486, 8.552269], [47.353578, 8.576071], [47.422042, 8.506136], [47.3879, 8.492048], [47.417314, 8.546819], [47.364904, 8.56678], [47.372521, 8.534288], [47.406516, 8.480531], [47.410851, 8.526517], [47.364199, 8.507559], [47.364732, 8.531427], [47.388026, 8.520316], [47.370065, 8.491841], [47.385318, 8.517466], [47.371766, 8.521879], [47.393728, 8.545057], [47.372216, 8.532375], [47.36756, 8.545242], [47.348662, 8.56191], [47.382438, 8.528201], [47.332976, 8.518339], [47.394836, 8.523991], [47.359233, 8.597188], [47.338258, 8.539129], [47.383829, 8.529462], [47.371121, 8.538735], [47.41421, 8.518422], [47.405549, 8.550509], [47.337183, 8.530082], [47.390977, 8.478068], [47.408648, 8.546294], [47.402881, 8.486594], [47.370906, 8.520498], [47.36214, 8.547539], [47.40395, 8.574325], [47.368573, 8.541834], [47.405165, 8.478716], [47.411066, 8.544609], [47.344589, 8.530763], [47.375987, 8.535882], [47.372131, 8.530891], [47.359148, 8.563918], [47.380304, 8.535044], [47.351003, 8.579961], [47.393756, 8.505741], [47.390545, 8.479106], [47.370361, 8.514303], [47.404577, 8.572775], [47.360125, 8.524833], [47.382701, 8.537425], [47.370463, 8.518834], [47.386066, 8.535481], [47.40945, 8.549928], [47.407503, 8.585305], [47.391011, 8.488215], [47.407738, 8.548342], [47.376543, 8.543601], [47.391055, 8.532934], [47.381933, 8.529211], [47.373329, 8.531643], [47.368044, 8.540658], [47.372753, 8.525964], [47.358028, 8.52025], [47.386639, 8.546075], [47.38681, 8.534741], [47.414097, 8.553961], [47.399998, 8.536496], [47.379614, 8.501035], [47.382003, 8.541807], [47.383208, 8.539925], [47.374512, 8.530158], [47.365455, 8.553579], [47.367427, 8.541241], [47.375192, 8.518175], [47.391731, 8.513622], [47.344614, 8.532881], [47.381983, 8.555077], [47.378831, 8.527214], [47.378379, 8.540752], [47.378502, 8.540079], [47.366257, 8.545096], [47.418424, 8.508263], [47.372602, 8.523869], [47.377866, 8.519845], [47.405396, 8.592706], [47.368331, 8.560405], [47.36043, 8.550429], [47.411161, 8.570132], [47.378512, 8.545588], [47.401931, 8.581224], [47.370912, 8.531382], [47.413487, 8.530215], [47.387276, 8.499307], [47.40924, 8.577975], [47.367289, 8.545355], [47.390817, 8.552189], [47.388228, 8.519883], [47.356581, 8.52672], [47.405627, 8.581237], [47.363063, 8.549769], [47.367362, 8.522425], [47.356293, 8.555955], [47.403839, 8.486176], [47.413991, 8.541608], [47.409539, 8.537766], [47.379237, 8.491162], [47.361758, 8.561074], [47.341327, 8.530366], [47.376079, 8.488305], [47.38187, 8.542546], [47.357946, 8.52316], [47.376006, 8.488343], [47.384099, 8.50919], [47.38676, 8.547561], [47.369708, 8.543525], [47.380295, 8.535071], [47.366532, 8.545472], [47.394823, 8.525395], [47.370125, 8.539416], [47.411116, 8.532737], [47.37007, 8.548895], [47.419111, 8.507919], [47.382708, 8.514658], [47.363105, 8.548221], [47.377695, 8.528475], [47.41399, 8.525547]]],\n", + " {heatmapOptions: {\n", + " radius: 15,\n", + " blur: 0.8,\n", + " minOpacity: 0,\n", + " maxOpacity: 0.8,\n", + " scaleRadius: false,\n", + " useLocalExtrema: false,\n", + " defaultWeight: 1,\n", + " \n", + " }\n", + " });\n", + "\n", " \n", " \n", - " heat_map_95ac3ceca69a0a9d3b76ec4401a2bea5.addTo(map_dc082b8cdb44d32db890bf16da92f5a4);\n", + " heat_map_535e8e464fa07987ea30ec400ee5e018.addTo(map_2bbaa23ebb5ac3954d579adb4bcaf7f6);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, - "execution_count": 13, + "execution_count": 20, "metadata": {}, "output_type": "execute_result" } @@ -444,7 +589,8 @@ "source": [ "import pandas as pd\n", "import folium\n", - "from folium import plugins \n", + "from folium import plugins\n", + "from folium.plugins import HeatMap\n", "from pyproj import Transformer\n", "\n", "acc_gdf['latitude'] = acc_gdf.geometry.y\n", @@ -461,7 +607,7 @@ ")\n", "\n", "\n", - "#HeatMap(data=acc_gdf[['latitude', 'longitude']], radius=10).add_to(fixed_map_zurich_original_coords)\n", + "\n", "# Ensure you're handing it floats\n", "acc_gdf['latitude'] = acc_gdf['latitude'].astype(float)\n", "acc_gdf['longitude'] = acc_gdf['longitude'].astype(float)\n", @@ -472,18 +618,25 @@ "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude'])\n", "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude'])\n", "\n", - "\n", - "\n", + "# Create weight column, using date\n", + "heat_df['Weight'] = acc_gdf['AccidentYear']\n", + "heat_df['Weight'] = heat_df['Weight'].astype(float)\n", + "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude', 'Weight'])\n", "\n", "# List comprehension to make out list of lists\n", - "heat_data = [[row['latitude'],row['longitude']] for index, row in heat_df.iterrows()]\n", - "HeatMap(heat_data).add_to(fixed_map_zurich_original_coords)\n", - "#fixed_map_zurich_original_coords" + "heat_data = [[[row['latitude'],row['longitude']] for index, row in heat_df[heat_df['Weight'] == i].iterrows()] for i in range(2011,2022)]\n", + "\n", + "# Plot it on the map\n", + "hm = plugins.HeatMapWithTime(heat_data,auto_play=False ,max_opacity=0.8)\n", + "hm.add_to(fixed_map_zurich_original_coords)\n", + "\n", + "\n", + "fixed_map_zurich_original_coords" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 36, "id": "738ca6a4a67ca1bd", "metadata": { "ExecuteTime": { @@ -493,8 +646,7 @@ "collapsed": false, "jupyter": { "outputs_hidden": false - }, - "scrolled": true + } }, "outputs": [ { @@ -527,7 +679,7 @@ " <meta name="viewport" content="width=device-width,\n", " initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n", " <style>\n", - " #map_ebd78489185ac812c950649935a2079d {\n", + " #map_c0fb97d6ede857e174bfd07595101d7f {\n", " position: relative;\n", " width: 100.0%;\n", " height: 100.0%;\n", @@ -537,19 +689,185 @@ " .leaflet-container { font-size: 1rem; }\n", " </style>\n", " \n", - " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium@main/folium/templates/leaflet_heat.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/iso8601-js-period@0.2.1/iso8601.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/pa7_hm.min.js"></script>\n", + " <script src="https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/pa7_leaflet_hm.min.js"></script>\n", + " <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-timedimension@1.1.1/dist/leaflet.timedimension.control.css"/>\n", + " \n", + " <script>\n", + " var TDHeatmap = L.TimeDimension.Layer.extend({\n", + "\n", + " initialize: function(data, options) {\n", + " var heatmapCfg = {\n", + " radius: 15,\n", + " blur: 0.8,\n", + " maxOpacity: 1.,\n", + " scaleRadius: false,\n", + " useLocalExtrema: false,\n", + " latField: 'lat',\n", + " lngField: 'lng',\n", + " valueField: 'count',\n", + " defaultWeight : 1,\n", + " };\n", + " heatmapCfg = $.extend({}, heatmapCfg, options.heatmapOptions || {});\n", + " var layer = new HeatmapOverlay(heatmapCfg);\n", + " L.TimeDimension.Layer.prototype.initialize.call(this, layer, options);\n", + " this._currentLoadedTime = 0;\n", + " this._currentTimeData = {\n", + " data: []\n", + " };\n", + " this.data= data;\n", + " this.defaultWeight = heatmapCfg.defaultWeight || 1;\n", + " },\n", + " onAdd: function(map) {\n", + " L.TimeDimension.Layer.prototype.onAdd.call(this, map);\n", + " map.addLayer(this._baseLayer);\n", + " if (this._timeDimension) {\n", + " this._getDataForTime(this._timeDimension.getCurrentTime());\n", + " }\n", + " },\n", + " _onNewTimeLoading: function(ev) {\n", + " this._getDataForTime(ev.time);\n", + " return;\n", + " },\n", + " isReady: function(time) {\n", + " return (this._currentLoadedTime == time);\n", + " },\n", + " _update: function() {\n", + " this._baseLayer.setData(this._currentTimeData);\n", + " return true;\n", + " },\n", + " _getDataForTime: function(time) {\n", + " delete this._currentTimeData.data;\n", + " this._currentTimeData.data = [];\n", + " var data = this.data[time-1];\n", + " for (var i = 0; i < data.length; i++) {\n", + " this._currentTimeData.data.push({\n", + " lat: data[i][0],\n", + " lng: data[i][1],\n", + " count: data[i].length>2 ? data[i][2] : this.defaultWeight\n", + " });\n", + " }\n", + " this._currentLoadedTime = time;\n", + " if (this._timeDimension && time == this._timeDimension.getCurrentTime() && !this._timeDimension.isLoading()) {\n", + " this._update();\n", + " }\n", + " this.fire('timeload', {\n", + " time: time\n", + " });\n", + " }\n", + " });\n", + "\n", + " L.Control.TimeDimensionCustom = L.Control.TimeDimension.extend({\n", + " initialize: function(index, options) {\n", + " var playerOptions = {\n", + " buffer: 1,\n", + " minBufferReady: -1\n", + " };\n", + " options.playerOptions = $.extend({}, playerOptions, options.playerOptions || {});\n", + " L.Control.TimeDimension.prototype.initialize.call(this, options);\n", + " this.index = index;\n", + " },\n", + " _getDisplayDateFormat: function(date){\n", + " return this.index[date.getTime()-1];\n", + " }\n", + " });\n", + " </script>\n", + " \n", + " \n", + " <script>\n", + " var TDHeatmap = L.TimeDimension.Layer.extend({\n", + "\n", + " initialize: function(data, options) {\n", + " var heatmapCfg = {\n", + " radius: 15,\n", + " blur: 0.8,\n", + " maxOpacity: 1.,\n", + " scaleRadius: false,\n", + " useLocalExtrema: false,\n", + " latField: 'lat',\n", + " lngField: 'lng',\n", + " valueField: 'count',\n", + " defaultWeight : 1,\n", + " };\n", + " heatmapCfg = $.extend({}, heatmapCfg, options.heatmapOptions || {});\n", + " var layer = new HeatmapOverlay(heatmapCfg);\n", + " L.TimeDimension.Layer.prototype.initialize.call(this, layer, options);\n", + " this._currentLoadedTime = 0;\n", + " this._currentTimeData = {\n", + " data: []\n", + " };\n", + " this.data= data;\n", + " this.defaultWeight = heatmapCfg.defaultWeight || 1;\n", + " },\n", + " onAdd: function(map) {\n", + " L.TimeDimension.Layer.prototype.onAdd.call(this, map);\n", + " map.addLayer(this._baseLayer);\n", + " if (this._timeDimension) {\n", + " this._getDataForTime(this._timeDimension.getCurrentTime());\n", + " }\n", + " },\n", + " _onNewTimeLoading: function(ev) {\n", + " this._getDataForTime(ev.time);\n", + " return;\n", + " },\n", + " isReady: function(time) {\n", + " return (this._currentLoadedTime == time);\n", + " },\n", + " _update: function() {\n", + " this._baseLayer.setData(this._currentTimeData);\n", + " return true;\n", + " },\n", + " _getDataForTime: function(time) {\n", + " delete this._currentTimeData.data;\n", + " this._currentTimeData.data = [];\n", + " var data = this.data[time-1];\n", + " for (var i = 0; i < data.length; i++) {\n", + " this._currentTimeData.data.push({\n", + " lat: data[i][0],\n", + " lng: data[i][1],\n", + " count: data[i].length>2 ? data[i][2] : this.defaultWeight\n", + " });\n", + " }\n", + " this._currentLoadedTime = time;\n", + " if (this._timeDimension && time == this._timeDimension.getCurrentTime() && !this._timeDimension.isLoading()) {\n", + " this._update();\n", + " }\n", + " this.fire('timeload', {\n", + " time: time\n", + " });\n", + " }\n", + " });\n", + "\n", + " L.Control.TimeDimensionCustom = L.Control.TimeDimension.extend({\n", + " initialize: function(index, options) {\n", + " var playerOptions = {\n", + " buffer: 1,\n", + " minBufferReady: -1\n", + " };\n", + " options.playerOptions = $.extend({}, playerOptions, options.playerOptions || {});\n", + " L.Control.TimeDimension.prototype.initialize.call(this, options);\n", + " this.index = index;\n", + " },\n", + " _getDisplayDateFormat: function(date){\n", + " return this.index[date.getTime()-1];\n", + " }\n", + " });\n", + " </script>\n", + " \n", "</head>\n", "<body>\n", " \n", " \n", - " <div class="folium-map" id="map_ebd78489185ac812c950649935a2079d" ></div>\n", + " <div class="folium-map" id="map_c0fb97d6ede857e174bfd07595101d7f" ></div>\n", " \n", "</body>\n", "<script>\n", " \n", " \n", - " var map_ebd78489185ac812c950649935a2079d = L.map(\n", - " "map_ebd78489185ac812c950649935a2079d",\n", + " var map_c0fb97d6ede857e174bfd07595101d7f = L.map(\n", + " "map_c0fb97d6ede857e174bfd07595101d7f",\n", " {\n", " center: [47.36865, 8.539183],\n", " crs: L.CRS.EPSG3857,\n", @@ -566,291 +884,259 @@ "\n", " \n", " \n", - " var tile_layer_0ade635753cc729fba573381b8b51a32 = L.tileLayer(\n", + " var tile_layer_142265af8d0477637c48f9bc1a7d68d1 = L.tileLayer(\n", " "https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png",\n", " {"attribution": "\\u0026copy; \\u003ca href=\\"https://www.openstreetmap.org/copyright\\"\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca href=\\"https://carto.com/attributions\\"\\u003eCARTO\\u003c/a\\u003e", "detectRetina": false, "maxNativeZoom": 20, "maxZoom": 20, "minZoom": 0, "noWrap": false, "opacity": 1, "subdomains": "abcd", "tms": false}\n", " );\n", " \n", " \n", - " tile_layer_0ade635753cc729fba573381b8b51a32.addTo(map_ebd78489185ac812c950649935a2079d);\n", - " \n", - " \n", - " var heat_map_e2e68f1706a2ba2887cc5dc9bc4503a0 = L.heatLayer(\n", - " [[47.352168, 8.55841], [47.368512, 8.52932], [47.375376, 8.534877], [47.369756, 8.513682], [47.401865, 8.531288], [47.428652, 8.543582], [47.391125, 8.522617], [47.376931, 8.541636], [47.374602, 8.535854], [47.366542, 8.540613], [47.387107, 8.519462], [47.394692, 8.546759], [47.404676, 8.557116], [47.367753, 8.545709], [47.37445, 8.546113], [47.403796, 8.485857], [47.367773, 8.494523], [47.387926, 8.485241], [47.373877, 8.5135], [47.39161, 8.527568], [47.384609, 8.531597], [47.421708, 8.550131], [47.363555, 8.554744], [47.388514, 8.483835], [47.377256, 8.538689], [47.409028, 8.566496], [47.352644, 8.572305], [47.363447, 8.554768], [47.377263, 8.510179], [47.39341, 8.525459], [47.375442, 8.547763], [47.421067, 8.549495], [47.41099, 8.543149], [47.410956, 8.542937], [47.373272, 8.531947], [47.396116, 8.505378], [47.34129, 8.530524], [47.356698, 8.57349], [47.366118, 8.53229], [47.400643, 8.549069], [47.407342, 8.565996], [47.370233, 8.548819], [47.369283, 8.541901], [47.377485, 8.542005], [47.417596, 8.553995], [47.374397, 8.518503], [47.364218, 8.551263], [47.371403, 8.53645], [47.370147, 8.602311], [47.413218, 8.53873], [47.358105, 8.524408], [47.391821, 8.500047], [47.357968, 8.532268], [47.368238, 8.520166], [47.351863, 8.527285], [47.407434, 8.563004], [47.369667, 8.53366], [47.419423, 8.508177], [47.422315, 8.512583], [47.35768, 8.552053], [47.397972, 8.47435], [47.386281, 8.531737], [47.408712, 8.546229], [47.372678, 8.534795], [47.388015, 8.520448], [47.361218, 8.552709], [47.375944, 8.54139], [47.389535, 8.51281], [47.393999, 8.543989], [47.421475, 8.511042], [47.378301, 8.54132], [47.407516, 8.548073], [47.388406, 8.520032], [47.401769, 8.581194], [47.350735, 8.577043], [47.379003, 8.556286], [47.371053, 8.516343], [47.379671, 8.545771], [47.408017, 8.547407], [47.396566, 8.540784], [47.392391, 8.487779], [47.406853, 8.550603], [47.374376, 8.521707], [47.336727, 8.516404], [47.416753, 8.572252], [47.36069, 8.56542], [47.394205, 8.517434], [47.375645, 8.516807], [47.387956, 8.49087], [47.374194, 8.491737], [47.377228, 8.539762], [47.413983, 8.548088], [47.36765, 8.495262], [47.362623, 8.527068], [47.400357, 8.585721], [47.362708, 8.567886], [47.377521, 8.542006], [47.375891, 8.510667], [47.427058, 8.546637], [47.388324, 8.548614], [47.37063, 8.527854], [47.378502, 8.510468], [47.402744, 8.491785], [47.375415, 8.517372], [47.376857, 8.535198], [47.375142, 8.51865], [47.421599, 8.550208], [47.334593, 8.52999], [47.380295, 8.541666], [47.385078, 8.547526], [47.409537, 8.543623], [47.379452, 8.544244], [47.421691, 8.499303], [47.38648, 8.541039], [47.405212, 8.505123], [47.373017, 8.531359], [47.397216, 8.5311], [47.365265, 8.521588], [47.381359, 8.512737], [47.386961, 8.534956], [47.385109, 8.476404], [47.359661, 8.549036], [47.375257, 8.523698], [47.379241, 8.5286], [47.37565, 8.537332], [47.354234, 8.554986], [47.385807, 8.526734], [47.364907, 8.530994], [47.378324, 8.530395], [47.359178, 8.596458], [47.381372, 8.518075], [47.375548, 8.524313], [47.379301, 8.525992], [47.390691, 8.478844], [47.420592, 8.540804], [47.383768, 8.515792], [47.384964, 8.532147], [47.383683, 8.588104], [47.415446, 8.54462], [47.374697, 8.55789], [47.37935, 8.495494], [47.376592, 8.53665], [47.4244, 8.552692], [47.389996, 8.484063], [47.366961, 8.543905], [47.36677, 8.501918], [47.370977, 8.530205], [47.414524, 8.54419], [47.386315, 8.499116], [47.406837, 8.550364], [47.378083, 8.530178], [47.372117, 8.521847], [47.399555, 8.496319], [47.369434, 8.52591], [47.392108, 8.510821], [47.375349, 8.485404], [47.354979, 8.554233], [47.371146, 8.53038], [47.39006, 8.525854], [47.371124, 8.520277], [47.407189, 8.50344], [47.41151, 8.532864], [47.359925, 8.580099], [47.399946, 8.544841], [47.403344, 8.48614], [47.382009, 8.530749], [47.387185, 8.509186], [47.378417, 8.540514], [47.40754, 8.503368], [47.379197, 8.564143], [47.378414, 8.543653], [47.378516, 8.541404], [47.361626, 8.5486], [47.394143, 8.525063], [47.370985, 8.535938], [47.398832, 8.533306], [47.372442, 8.523641], [47.407711, 8.578817], [47.369841, 8.510294], [47.371042, 8.535701], [47.387614, 8.498678], [47.378235, 8.528394], [47.381164, 8.582673], [47.373317, 8.524347], [47.414166, 8.546793], [47.38457, 8.509835], [47.384491, 8.51639], [47.351648, 8.576599], [47.370713, 8.535231], [47.370013, 8.564121], [47.370463, 8.524633], [47.360324, 8.562394], [47.370394, 8.534774], [47.380655, 8.556651], [47.362489, 8.534585], [47.371212, 8.527204], [47.356772, 8.573293], [47.385062, 8.495462], [47.377758, 8.52845], [47.378155, 8.548163], [47.361911, 8.531039], [47.385484, 8.529456], [47.365242, 8.53071], [47.409837, 8.545166], [47.357632, 8.521142], [47.373663, 8.54664], [47.408737, 8.579661], [47.380399, 8.512493], [47.406725, 8.584825], [47.373444, 8.512657], [47.373845, 8.537878], [47.399668, 8.517121], [47.386642, 8.547704], [47.366437, 8.5413], [47.376157, 8.544507], [47.363434, 8.546758], [47.338792, 8.530195], [47.359436, 8.521589], [47.37086, 8.548144], [47.33881, 8.530169], [47.373961, 8.538992], [47.413271, 8.53885], [47.379779, 8.527737], [47.391631, 8.492294], [47.398208, 8.536512], [47.381223, 8.532017], [47.373546, 8.534336], [47.357638, 8.551814], [47.397914, 8.508461], [47.400808, 8.492025], [47.399896, 8.544443], [47.394119, 8.525632], [47.387543, 8.490783], [47.38828, 8.49081], [47.414734, 8.519148], [47.36371, 8.551768], [47.372631, 8.547307], [47.373544, 8.528827], [47.410358, 8.548105], [47.374337, 8.542973], [47.372706, 8.525222], [47.370434, 8.549419], [47.38135, 8.535754], [47.391607, 8.519209], [47.375382, 8.526654], [47.391063, 8.479474], [47.386225, 8.531921], [47.378413, 8.53049], [47.372008, 8.53629], [47.377373, 8.509995], [47.414977, 8.551382], [47.409795, 8.549538], [47.377683, 8.538248], [47.343638, 8.53519], [47.378156, 8.48734], [47.366909, 8.558561], [47.390762, 8.522027], [47.416784, 8.54588], [47.410161, 8.57394], [47.363824, 8.56689], [47.367852, 8.539078], [47.374924, 8.534166], [47.374363, 8.543026], [47.369932, 8.533202], [47.36475, 8.553935], [47.398004, 8.494765], [47.397815, 8.532411], [47.377043, 8.544075], [47.378014, 8.515504], [47.361652, 8.532701], [47.373541, 8.519664], [47.378544, 8.530016], [47.364501, 8.547138], [47.391654, 8.538987], [47.378173, 8.509972], [47.355464, 8.559869], [47.38127, 8.53272], [47.334931, 8.527588], [47.393324, 8.529802], [47.381279, 8.531833], [47.361546, 8.547659], [47.364643, 8.517868], [47.362016, 8.52654], [47.395044, 8.525863], [47.363204, 8.557583], [47.38885, 8.515816], [47.367909, 8.522661], [47.353443, 8.576134], [47.378189, 8.541781], [47.412205, 8.523099], [47.378896, 8.526924], [47.374769, 8.55135], [47.39006, 8.525854], [47.42587, 8.49378], [47.392522, 8.527149], [47.384624, 8.530074], [47.407568, 8.584233], [47.387834, 8.498272], [47.386171, 8.498212], [47.395506, 8.545359], [47.367515, 8.545201], [47.408835, 8.550273], [47.43021, 8.540592], [47.385208, 8.536774], [47.385967, 8.518287], [47.381482, 8.482677], [47.419154, 8.506118], [47.38, 8.51667], [47.370098, 8.548843], [47.38095, 8.535164], [47.394099, 8.529738], [47.378312, 8.523985], [47.391517, 8.514373], [47.342498, 8.53121], [47.371335, 8.536065], [47.37204, 8.516641], [47.378048, 8.513823], [47.363924, 8.530312], [47.412136, 8.483782], [47.409217, 8.53287], [47.379057, 8.525153], [47.407502, 8.491866], [47.378296, 8.554086], [47.394395, 8.489024], [47.369684, 8.53374], [47.411294, 8.562025], [47.369698, 8.536097], [47.376894, 8.557632], [47.372675, 8.555835], [47.390633, 8.515613], [47.397719, 8.47453], [47.368982, 8.541299], [47.365185, 8.52152], [47.36026, 8.552239], [47.347345, 8.533189], [47.413384, 8.539277], [47.415042, 8.515961], [47.389764, 8.536325], [47.37829, 8.507047], [47.39118, 8.487503], [47.381096, 8.517844], [47.379532, 8.548113], [47.392477, 8.506908], [47.394041, 8.493269], [47.370069, 8.518614], [47.368627, 8.546535], [47.419116, 8.506409], [47.424591, 8.508639], [47.412498, 8.525437], [47.370054, 8.541189], [47.363643, 8.535205], [47.384442, 8.503224], [47.417397, 8.545734], [47.364743, 8.565784], [47.371059, 8.537622], [47.369541, 8.531738], [47.369313, 8.522557], [47.420574, 8.502409], [47.36958, 8.525701], [47.427247, 8.54566], [47.367815, 8.495835], [47.372087, 8.546792], [47.375887, 8.515938], [47.418268, 8.546773], [47.408747, 8.546283], [47.400191, 8.54743], [47.373371, 8.531936], [47.378912, 8.526209], [47.340412, 8.519588], [47.417734, 8.546152], [47.349907, 8.5615], [47.42267, 8.495479], [47.351996, 8.558499], [47.371847, 8.520941], [47.380455, 8.542821], [47.386039, 8.529732], [47.379044, 8.559491], [47.412037, 8.54655], [47.356208, 8.558257], [47.352387, 8.571903], [47.356004, 8.556135], [47.359691, 8.586435], [47.391162, 8.515796], [47.405593, 8.577473], [47.377881, 8.532492], [47.398131, 8.536074], [47.419116, 8.506409], [47.363977, 8.555785], [47.384211, 8.499087], [47.376833, 8.515811], [47.364087, 8.526304], [47.373576, 8.519705], [47.372675, 8.528452], [47.36092, 8.591333], [47.326904, 8.513533], [47.373484, 8.537102], [47.415342, 8.547997], [47.360197, 8.522955], [47.403671, 8.546548], [47.407437, 8.584708], [47.348415, 8.523761], [47.415106, 8.514915], [47.367974, 8.540458], [47.376964, 8.527692], [47.371094, 8.523534], [47.410578, 8.572637], [47.374668, 8.549667], [47.383834, 8.509701], [47.370553, 8.524542], [47.377595, 8.498611], [47.384809, 8.509284], [47.352632, 8.524826], [47.384759, 8.531957], [47.366594, 8.545566], [47.412227, 8.546408], [47.390782, 8.478793], [47.373764, 8.536062], [47.389099, 8.510311], [47.358922, 8.582394], [47.376968, 8.493315], [47.370188, 8.548792], [47.369206, 8.54803], [47.390889, 8.547501], [47.371307, 8.528623], [47.409696, 8.569094], [47.377112, 8.540554], [47.377579, 8.508132], [47.355113, 8.574542], [47.372399, 8.534802], [47.382308, 8.545601], [47.364855, 8.530715], [47.384417, 8.531924], [47.354821, 8.532111], [47.368608, 8.528673], [47.369024, 8.537937], [47.419561, 8.548006], [47.390678, 8.522383], [47.390195, 8.490928], [47.388143, 8.528848], [47.407783, 8.583364], [47.378435, 8.540462], [47.377788, 8.507845], [47.418107, 8.544768], [47.387763, 8.500112], [47.420795, 8.546878], [47.361807, 8.515256], [47.366211, 8.545174], [47.39835, 8.537721], [47.376025, 8.537618], [47.373885, 8.536541], [47.407895, 8.565584], [47.376909, 8.527784], [47.379353, 8.544162], [47.400648, 8.548513], [47.426181, 8.495165], [47.377258, 8.512615], [47.373374, 8.551401], [47.353493, 8.527041], [47.400065, 8.49462], [47.425414, 8.55384], [47.387597, 8.529499], [47.372758, 8.534969], [47.394178, 8.525103], [47.381905, 8.509173], [47.344813, 8.53364], [47.368064, 8.492225], [47.392958, 8.492757], [47.374444, 8.540207], [47.371353, 8.547386], [47.378146, 8.532086], [47.372529, 8.54757], [47.378637, 8.531554], [47.35973, 8.565201], [47.402571, 8.547824], [47.378384, 8.526953], [47.376821, 8.559577], [47.402574, 8.492669], [47.390658, 8.491427], [47.363048, 8.530691], [47.387812, 8.490881], [47.418503, 8.542006], [47.359809, 8.53543], [47.368201, 8.559872], [47.390466, 8.491834], [47.405754, 8.547003], [47.383538, 8.534541], [47.383366, 8.498991], [47.401848, 8.554658], [47.359033, 8.558223], [47.373729, 8.514888], [47.370936, 8.518247], [47.38697, 8.528334], [47.41228, 8.515044], [47.383294, 8.572838], [47.352142, 8.558317], [47.382305, 8.488057], [47.368273, 8.546806], [47.376578, 8.541893], [47.376484, 8.528106], [47.371362, 8.536039], [47.385371, 8.475284], [47.361727, 8.593336], [47.373509, 8.534454], [47.36422, 8.526505], [47.377279, 8.514284], [47.385976, 8.489984], [47.386115, 8.537892], [47.36632, 8.600029], [47.365899, 8.548636], [47.387566, 8.487207], [47.36108, 8.531392], [47.369403, 8.528253], [47.380626, 8.525728], [47.376109, 8.527741], [47.381308, 8.53733], [47.380465, 8.542676], [47.36886, 8.528586], [47.367653, 8.534519], [47.398992, 8.506615], [47.378879, 8.52209], [47.391147, 8.489105], [47.414279, 8.550943], [47.391227, 8.52042], [47.358017, 8.555356], [47.373204, 8.515235], [47.385436, 8.508568], [47.391964, 8.482353], [47.409636, 8.549283], [47.427012, 8.491814], [47.364277, 8.536674], [47.370796, 8.5351], [47.373072, 8.52556], [47.372788, 8.535618], [47.381244, 8.51541], [47.379874, 8.527288], [47.374316, 8.524275], [47.378444, 8.541455], [47.360111, 8.579507], [47.39857, 8.539116], [47.41149, 8.525536], [47.351566, 8.602024], [47.382607, 8.54819], [47.39133, 8.536198], [47.415859, 8.514281], [47.377761, 8.507858], [47.360649, 8.551122], [47.366409, 8.545112], [47.376601, 8.527115], [47.390738, 8.479627], [47.363639, 8.550694], [47.364587, 8.548503], [47.375741, 8.527707], [47.399665, 8.468103], [47.38242, 8.530068], [47.390995, 8.523078], [47.366899, 8.533405], [47.37278, 8.535512], [47.374255, 8.525028], [47.381798, 8.529208], [47.363058, 8.548445], [47.409473, 8.542787], [47.384998, 8.495659], [47.389229, 8.546195], [47.385646, 8.506374], [47.391647, 8.511024], [47.409885, 8.487951], [47.414439, 8.518003], [47.383238, 8.506074], [47.381247, 8.513225], [47.364153, 8.563614], [47.415049, 8.513337], [47.402763, 8.535215], [47.356907, 8.535053], [47.378599, 8.51933], [47.395491, 8.526097], [47.3698, 8.529042], [47.370348, 8.557375], [47.4117, 8.509718], [47.416762, 8.572226], [47.396749, 8.537648], [47.359226, 8.549437], [47.40582, 8.544818], [47.370173, 8.540993], [47.369957, 8.510429], [47.355619, 8.532419], [47.393113, 8.526433], [47.35031, 8.577285], [47.384115, 8.52866], [47.370906, 8.548065], [47.3777, 8.511551], [47.376735, 8.543327], [47.379513, 8.537862], [47.405104, 8.478556], [47.388449, 8.484085], [47.373165, 8.552588], [47.376961, 8.543226], [47.380385, 8.525484], [47.370673, 8.508841], [47.375479, 8.486929], [47.369023, 8.53795], [47.389265, 8.527242], [47.383246, 8.488526], [47.408255, 8.569262], [47.376961, 8.522289], [47.377237, 8.538835], [47.356865, 8.534761], [47.378015, 8.517384], [47.36807, 8.550151], [47.377075, 8.540646], [47.3695, 8.528493], [47.376225, 8.544919], [47.369426, 8.526797], [47.428536, 8.542493], [47.402127, 8.497337], [47.375499, 8.557709], [47.383238, 8.506074], [47.404445, 8.574375], [47.353725, 8.558311], [47.408736, 8.550231], [47.413878, 8.5534], [47.365898, 8.501927], [47.387752, 8.50035], [47.391846, 8.533904], [47.364713, 8.520028], [47.387577, 8.497909], [47.408063, 8.538809], [47.393842, 8.497332], [47.366016, 8.533506], [47.42108, 8.502127], [47.395468, 8.520917], [47.364845, 8.554347], [47.413227, 8.538704], [47.410316, 8.542115], [47.374602, 8.538674], [47.360669, 8.524407], [47.383197, 8.483995], [47.357256, 8.521955], [47.390142, 8.510438], [47.399578, 8.542807], [47.375466, 8.484493], [47.377599, 8.538524], [47.383238, 8.505994], [47.382056, 8.481828], [47.410825, 8.56766], [47.368845, 8.539721], [47.429032, 8.489283], [47.385524, 8.51751], [47.387202, 8.535173], [47.363398, 8.564485], [47.370479, 8.516146], [47.379273, 8.546041], [47.354623, 8.573221], [47.389767, 8.492429], [47.425084, 8.53765], [47.381033, 8.504229], [47.419896, 8.506623], [47.368203, 8.560614], [47.400133, 8.545958], [47.357275, 8.521836], [47.392111, 8.532559], [47.370596, 8.535308], [47.369673, 8.554581], [47.39607, 8.515193], [47.401238, 8.54512], [47.403505, 8.487216], [47.391091, 8.522418], [47.379156, 8.495093], [47.376903, 8.512184], [47.371917, 8.522028], [47.363489, 8.520135], [47.367334, 8.52355], [47.413462, 8.530082], [47.373488, 8.519478], [47.382878, 8.530091], [47.354443, 8.523632], [47.383607, 8.529152], [47.378432, 8.510202], [47.378124, 8.530656], [47.375038, 8.536393], [47.381362, 8.528696], [47.408741, 8.539379], [47.378521, 8.541854], [47.370106, 8.548883], [47.414033, 8.541914], [47.377452, 8.498502], [47.357669, 8.581732], [47.390405, 8.539769], [47.376192, 8.540839], [47.354506, 8.525552], [47.429415, 8.540006], [47.381111, 8.518083], [47.370805, 8.526454], [47.390196, 8.539089], [47.418796, 8.506959], [47.416161, 8.546066], [47.35401, 8.57338], [47.369197, 8.548003], [47.390018, 8.491613], [47.381586, 8.54205], [47.381837, 8.509648], [47.377497, 8.538853], [47.375528, 8.548201], [47.382004, 8.514035], [47.366834, 8.520256], [47.392572, 8.494604], [47.381282, 8.514259], [47.396717, 8.540999], [47.385797, 8.548534], [47.392904, 8.534363], [47.374412, 8.541676], [47.403847, 8.547957], [47.384444, 8.532918], [47.386814, 8.490795], [47.381528, 8.554683], [47.356687, 8.553329], [47.373931, 8.536449], [47.37077, 8.536887], [47.362921, 8.522189], [47.373576, 8.519691], [47.376566, 8.526982], [47.391176, 8.488868], [47.426297, 8.554667], [47.374852, 8.517943], [47.37702, 8.541783], [47.387253, 8.522128], [47.414787, 8.519229], [47.358889, 8.51664], [47.369972, 8.548774], [47.422458, 8.55073], [47.386683, 8.518686], [47.367715, 8.494986], [47.390718, 8.517165], [47.384491, 8.516376], [47.391254, 8.487253], [47.367663, 8.545747], [47.425082, 8.510982], [47.372945, 8.531318], [47.336391, 8.53962], [47.375925, 8.530081], [47.372894, 8.539593], [47.377783, 8.565173], [47.381469, 8.503721], [47.407356, 8.550666], [47.369704, 8.50857], [47.382009, 8.530749], [47.362655, 8.518887], [47.381246, 8.513238], [47.370668, 8.469834], [47.358118, 8.534548], [47.362632, 8.615147], [47.384689, 8.509639], [47.378507, 8.54143], [47.373458, 8.537009], [47.395017, 8.489884], [47.407713, 8.543466], [47.374638, 8.529287], [47.400708, 8.507868], [47.378882, 8.522686], [47.359853, 8.549715], [47.379346, 8.526019], [47.402939, 8.547871], [47.367462, 8.545094], [47.385975, 8.51834], [47.398094, 8.532443], [47.397934, 8.546442], [47.362741, 8.521232], [47.378784, 8.542575], [47.354292, 8.575755], [47.364586, 8.537342], [47.355199, 8.531219], [47.411442, 8.54671], [47.399551, 8.547576], [47.388634, 8.528302], [47.360058, 8.550818], [47.371169, 8.514531], [47.383181, 8.539924], [47.375219, 8.515222], [47.359517, 8.522544], [47.383633, 8.548171], [47.381475, 8.532989], [47.375405, 8.517438], [47.389779, 8.521305], [47.42557, 8.494105], [47.378541, 8.528413], [47.370151, 8.548924], [47.369347, 8.541704], [47.391218, 8.549786], [47.369459, 8.526149], [47.35763, 8.554487], [47.367906, 8.494751], [47.375713, 8.548629], [47.34102, 8.524762], [47.378291, 8.509855], [47.387369, 8.52707], [47.370357, 8.518606], [47.3669, 8.539906], [47.402871, 8.554004], [47.376222, 8.548944], [47.369053, 8.525306], [47.412278, 8.554228], [47.39142, 8.538982], [47.431398, 8.516676], [47.376316, 8.527772], [47.37081, 8.542979], [47.430219, 8.544344], [47.392114, 8.524637], [47.420604, 8.508851], [47.4189, 8.506365], [47.37772, 8.517153], [47.428121, 8.490524], [47.370182, 8.513307], [47.414218, 8.518568], [47.374797, 8.527661], [47.410921, 8.558771], [47.369156, 8.532524], [47.364001, 8.551457], [47.370804, 8.548315], [47.361951, 8.547614], [47.385493, 8.530462], [47.367729, 8.546371], [47.38695, 8.547393], [47.374397, 8.521363], [47.379649, 8.521536], [47.375886, 8.538026], [47.421118, 8.501903], [47.341081, 8.519231], [47.342536, 8.53092], [47.414793, 8.561052], [47.369569, 8.493963], [47.386465, 8.49651], [47.376929, 8.535226], [47.410865, 8.563514], [47.373918, 8.54634], [47.365375, 8.552597], [47.356702, 8.52344], [47.382354, 8.530425], [47.373247, 8.535495], [47.378939, 8.52907], [47.365677, 8.553901], [47.427536, 8.547429], [47.429183, 8.546417], [47.387925, 8.529135], [47.374148, 8.5192], [47.409082, 8.573931], [47.369053, 8.525293], [47.380355, 8.542872], [47.387933, 8.477439], [47.379645, 8.527694], [47.383633, 8.548145], [47.413889, 8.52483], [47.405663, 8.481362], [47.403137, 8.555308], [47.37946, 8.544297], [47.401354, 8.545255], [47.381469, 8.503734], [47.394249, 8.490186], [47.380503, 8.519686], [47.364003, 8.547485], [47.368185, 8.550339], [47.372125, 8.542794], [47.373511, 8.54277], [47.373825, 8.483918], [47.402552, 8.487157], [47.398759, 8.506531], [47.381314, 8.53574], [47.37377, 8.53826], [47.383625, 8.51567], [47.383724, 8.515752], [47.372705, 8.534861], [47.405133, 8.555469], [47.365885, 8.545379], [47.357995, 8.532282], [47.411789, 8.525304], [47.38817, 8.5251], [47.375354, 8.516179], [47.372974, 8.511893], [47.369039, 8.541022], [47.371705, 8.521666], [47.367169, 8.555905], [47.378518, 8.531763], [47.412951, 8.540354], [47.368188, 8.554708], [47.360274, 8.589399], [47.369014, 8.538003], [47.370302, 8.547205], [47.39804, 8.532402], [47.328314, 8.514712], [47.37202, 8.53494], [47.368207, 8.546156], [47.383757, 8.510216], [47.375471, 8.528655], [47.369736, 8.536839], [47.399814, 8.544521], [47.343887, 8.534587], [47.38814, 8.48449], [47.350978, 8.534282], [47.371515, 8.522682], [47.373047, 8.532949], [47.38416, 8.52866], [47.37331, 8.535536], [47.388461, 8.52851], [47.388498, 8.490537], [47.413586, 8.545416], [47.40376, 8.548604], [47.405813, 8.590635], [47.372874, 8.547272], [47.430715, 8.549789], [47.364194, 8.551977], [47.364899, 8.554348], [47.39866, 8.539171], [47.391041, 8.522986], [47.359708, 8.594709], [47.4163, 8.506432], [47.408903, 8.539356], [47.378901, 8.519786], [47.404984, 8.577182], [47.39133, 8.536198], [47.381536, 8.571384], [47.375641, 8.487939], [47.409228, 8.564433], [47.378423, 8.510202], [47.363348, 8.552939], [47.39019, 8.516796], [47.34846, 8.534191], [47.412086, 8.563844], [47.394706, 8.471465], [47.377716, 8.507936], [47.374224, 8.551908], [47.400037, 8.545625], [47.380316, 8.50587], [47.38565, 8.535684], [47.418393, 8.554422], [47.350916, 8.576954], [47.387756, 8.485131], [47.353088, 8.512658], [47.332811, 8.534849], [47.410506, 8.542], [47.380276, 8.542659], [47.373904, 8.538355], [47.343355, 8.535688], [47.371069, 8.538549], [47.392191, 8.492981], [47.409521, 8.545358], [47.373283, 8.535509], [47.370522, 8.535492], [47.361908, 8.548328], [47.361827, 8.505367], [47.410038, 8.542957], [47.363429, 8.550094], [47.406427, 8.532998], [47.378451, 8.540714], [47.37267, 8.498103], [47.373032, 8.534471], [47.379047, 8.544209], [47.381583, 8.532938], [47.367039, 8.491186], [47.368269, 8.538809], [47.381066, 8.52861], [47.355053, 8.509322], [47.368988, 8.511151], [47.363157, 8.556801], [47.369134, 8.548015], [47.381718, 8.513778], [47.371379, 8.516072], [47.36726, 8.544587], [47.36205, 8.547537], [47.366815, 8.543161], [47.3909, 8.488531], [47.367607, 8.534651], [47.399645, 8.495301], [47.375168, 8.522584], [47.409243, 8.547115], [47.427538, 8.546303], [47.368661, 8.543901], [47.421048, 8.5496], [47.392918, 8.522309], [47.364422, 8.497105], [47.378734, 8.54219], [47.386731, 8.502833], [47.376025, 8.539485], [47.37169, 8.518448], [47.372496, 8.478622], [47.392029, 8.528874], [47.387751, 8.529436], [47.377622, 8.498572], [47.396096, 8.526851], [47.372622, 8.547293], [47.387869, 8.522604], [47.387315, 8.533665], [47.391108, 8.515795], [47.390677, 8.522515], [47.391603, 8.523475], [47.37027, 8.548714], [47.381279, 8.542229], [47.378479, 8.488405], [47.396833, 8.541121], [47.377265, 8.538703], [47.410765, 8.567394], [47.360276, 8.568165], [47.412173, 8.546434], [47.391824, 8.52389], [47.371498, 8.534969], [47.354035, 8.520089], [47.372867, 8.535818], [47.42174, 8.553339], [47.348826, 8.532557], [47.378248, 8.520289], [47.369129, 8.52777], [47.377523, 8.527598], [47.37352, 8.519915], [47.410471, 8.54188], [47.374292, 8.52495], [47.393803, 8.524844], [47.368232, 8.539788], [47.377174, 8.523618], [47.370735, 8.487406], [47.364058, 8.536021], [47.364812, 8.504566], [47.396474, 8.52874], [47.383171, 8.530521], [47.380755, 8.518672], [47.3848, 8.531402], [47.410044, 8.549874], [47.399739, 8.543923], [47.376129, 8.536097], [47.39067, 8.523191], [47.351395, 8.601094], [47.374424, 8.540419], [47.365676, 8.503564], [47.378665, 8.541817], [47.398645, 8.539767], [47.38082, 8.536618], [47.378905, 8.522143], [47.367725, 8.490987], [47.398752, 8.524693], [47.390165, 8.547009], [47.375719, 8.529057], [47.377228, 8.52926], [47.386939, 8.484996], [47.417146, 8.54561], [47.375581, 8.514064], [47.413997, 8.521983], [47.390675, 8.489573], [47.364164, 8.561535], [47.362225, 8.54717], [47.380349, 8.550116], [47.380622, 8.549777], [47.397255, 8.594557], [47.37383, 8.476304], [47.379989, 8.520695], [47.360275, 8.56557], [47.390779, 8.488979], [47.374966, 8.544892], [47.395334, 8.546402], [47.38321, 8.528323], [47.368984, 8.5326], [47.402238, 8.486091], [47.40369, 8.5888], [47.382544, 8.548228], [47.389663, 8.521236], [47.369866, 8.521165], [47.389581, 8.485207], [47.376065, 8.5277], [47.360225, 8.567026], [47.375849, 8.524849], [47.378436, 8.567464], [47.378793, 8.49445], [47.405059, 8.48253], [47.398291, 8.537309], [47.426014, 8.547623], [47.377965, 8.51398], [47.362278, 8.54729], [47.365098, 8.55328], [47.37216, 8.540094], [47.380608, 8.517066], [47.413401, 8.539343], [47.405596, 8.481838], [47.398435, 8.538252], [47.387008, 8.486295], [47.369994, 8.508391], [47.388604, 8.53903], [47.373226, 8.525418], [47.392354, 8.489911], [47.373163, 8.533017], [47.394758, 8.525658], [47.362818, 8.506128], [47.373299, 8.52432], [47.378841, 8.523254], [47.409603, 8.537661], [47.346322, 8.563833], [47.400905, 8.54612], [47.400258, 8.494174], [47.391159, 8.487755], [47.366429, 8.544927], [47.3834, 8.49915], [47.378089, 8.509401], [47.373241, 8.518956], [47.345012, 8.534517], [47.409562, 8.493762], [47.379645, 8.527694], [47.381105, 8.555641], [47.415241, 8.558464], [47.385349, 8.494607], [47.369184, 8.554014], [47.335949, 8.531169], [47.410567, 8.486109], [47.367108, 8.539751], [47.371723, 8.556623], [47.367807, 8.544717], [47.352599, 8.559425], [47.3729, 8.520803], [47.347129, 8.531345], [47.366893, 8.544381], [47.383146, 8.530308], [47.373904, 8.536409], [47.379647, 8.524595], [47.360953, 8.571661], [47.422458, 8.550743], [47.361979, 8.56047], [47.36711, 8.529106], [47.360934, 8.598959], [47.40285, 8.500823], [47.374261, 8.561059], [47.387016, 8.486335], [47.381417, 8.571606], [47.393148, 8.492642], [47.378146, 8.548123], [47.407009, 8.550248], [47.411592, 8.509716], [47.385539, 8.520782], [47.391542, 8.486212], [47.3782, 8.525453], [47.370323, 8.513601], [47.378376, 8.510479], [47.388515, 8.486789], [47.365451, 8.545595], [47.378522, 8.5752], [47.370101, 8.556894], [47.361871, 8.515138], [47.383723, 8.505117], [47.380715, 8.492833], [47.370027, 8.519249], [47.345086, 8.529569], [47.404013, 8.574366], [47.41388, 8.520059], [47.414793, 8.5196], [47.368047, 8.560902], [47.356893, 8.555332], [47.386993, 8.501739], [47.368385, 8.537024], [47.368384, 8.537103], [47.365097, 8.530826], [47.385619, 8.536054], [47.383012, 8.500348], [47.359935, 8.532653], [47.368036, 8.540578], [47.383878, 8.530933], [47.366801, 8.60049], [47.391626, 8.517143], [47.376974, 8.543769], [47.394097, 8.493151], [47.344713, 8.530925], [47.374983, 8.52601], [47.402145, 8.499272], [47.404838, 8.594602], [47.351325, 8.560921], [47.377014, 8.514663], [47.370623, 8.557765], [47.390108, 8.538942], [47.385223, 8.517027], [47.398904, 8.540859], [47.413568, 8.553804], [47.379008, 8.509234], [47.370534, 8.549276], [47.400975, 8.588676], [47.399743, 8.517718], [47.376578, 8.544688], [47.378546, 8.510575], [47.356408, 8.526955], [47.395723, 8.529228], [47.3764, 8.543519], [47.386217, 8.52514], [47.391381, 8.487123], [47.38206, 8.547119], [47.37971, 8.542581], [47.375203, 8.547334], [47.37838, 8.530211], [47.408498, 8.58114], [47.39115, 8.47782], [47.350081, 8.56112], [47.40767, 8.54418], [47.375136, 8.558959], [47.36727, 8.545381], [47.411333, 8.562609], [47.418411, 8.546921], [47.374887, 8.523783], [47.388492, 8.490311], [47.35889, 8.516468], [47.353938, 8.560446], [47.363381, 8.533478], [47.348431, 8.562448], [47.376975, 8.539876], [47.37382, 8.537692], [47.36404, 8.53602], [47.408804, 8.579304], [47.417673, 8.483148], [47.36226, 8.547303], [47.372191, 8.521596], [47.3721, 8.57505], [47.36479, 8.554439], [47.375908, 8.541376], [47.410944, 8.543268], [47.372533, 8.505211], [47.399823, 8.544508], [47.359756, 8.588038], [47.383608, 8.483288], [47.338878, 8.538176], [47.376747, 8.525013], [47.370426, 8.514172], [47.366424, 8.533197], [47.38072, 8.550839], [47.391192, 8.523162], [47.385774, 8.517753], [47.40832, 8.581812], [47.369549, 8.52615], [47.359181, 8.553183], [47.375467, 8.517571], [47.378041, 8.510658], [47.373252, 8.553782], [47.356527, 8.55134], [47.366901, 8.535073], [47.383988, 8.556086], [47.382667, 8.540046], [47.400259, 8.50868], [47.373707, 8.538232], [47.364963, 8.557104], [47.380137, 8.528009], [47.404347, 8.565032], [47.383302, 8.515611], [47.387584, 8.519459], [47.328952, 8.512833], [47.369009, 8.541379], [47.330763, 8.536487], [47.414405, 8.537827], [47.358248, 8.557479], [47.41681, 8.510577], [47.374974, 8.519296], [47.386067, 8.535322], [47.409571, 8.578088], [47.380974, 8.503764], [47.360298, 8.523645], [47.369723, 8.501632], [47.384888, 8.526848], [47.373228, 8.520373], [47.385079, 8.508362], [47.363358, 8.557507], [47.391086, 8.522934], [47.375777, 8.523828], [47.38968, 8.493169], [47.357456, 8.524567], [47.390105, 8.510463], [47.370553, 8.509196], [47.369586, 8.531765], [47.419354, 8.556337], [47.419134, 8.556836], [47.372015, 8.522162], [47.394937, 8.486809], [47.421351, 8.49813], [47.366789, 8.543055], [47.41119, 8.545764], [47.36462, 8.566417], [47.374015, 8.544581], [47.425916, 8.555865], [47.388592, 8.480181], [47.38163, 8.532754], [47.375733, 8.544604], [47.367906, 8.494764], [47.417281, 8.512203], [47.430065, 8.544433], [47.362195, 8.5475], [47.378523, 8.517871], [47.404749, 8.594534], [47.363068, 8.565987], [47.366531, 8.540891], [47.386673, 8.488448], [47.37607, 8.559085], [47.367317, 8.539517], [47.393048, 8.488772], [47.373762, 8.500667], [47.377451, 8.538998], [47.380496, 8.567362], [47.378032, 8.493098], [47.333765, 8.53201], [47.402369, 8.499396], [47.427073, 8.544106], [47.385589, 8.483036], [47.395652, 8.522391], [47.387334, 8.516328], [47.361531, 8.526464], [47.374632, 8.524136], [47.376567, 8.543906], [47.416252, 8.506762], [47.365718, 8.550592], [47.369006, 8.528417], [47.409171, 8.541482], [47.379154, 8.54241], [47.414048, 8.549733], [47.383105, 8.500005], [47.374565, 8.540673], [47.389156, 8.47043], [47.376346, 8.558534], [47.39048, 8.522418], [47.360096, 8.595512], [47.409641, 8.545931], [47.393246, 8.478868], [47.369274, 8.519948], [47.370448, 8.54983], [47.373132, 8.53536], [47.394187, 8.52509], [47.370599, 8.516784], [47.378099, 8.541766], [47.364116, 8.534711], [47.409172, 8.545126], [47.400224, 8.489933], [47.385585, 8.532994], [47.37672, 8.516365], [47.374898, 8.518765], [47.39026, 8.521897], [47.411499, 8.526424], [47.374776, 8.485128], [47.379349, 8.521888], [47.378671, 8.523132], [47.381442, 8.497906], [47.365247, 8.521575], [47.417496, 8.541946], [47.372972, 8.496507], [47.376392, 8.524476], [47.363896, 8.566891], [47.3787, 8.529674], [47.389463, 8.511854], [47.370653, 8.516772], [47.393928, 8.543935], [47.415429, 8.544514], [47.367737, 8.546384], [47.371833, 8.52241], [47.374035, 8.551931], [47.419737, 8.50438], [47.37335, 8.536967], [47.385353, 8.536605], [47.357777, 8.514367], [47.419669, 8.504909], [47.381299, 8.541024], [47.382814, 8.529255], [47.392328, 8.52382], [47.392121, 8.494781], [47.364373, 8.548234], [47.374565, 8.516891], [47.376231, 8.56755], [47.358946, 8.534446], [47.374753, 8.54171], [47.390113, 8.510583], [47.386485, 8.496311], [47.385803, 8.529926], [47.344025, 8.530408], [47.369606, 8.548462], [47.420865, 8.512739], [47.41402, 8.508838], [47.373576, 8.519705], [47.368874, 8.560919], [47.375984, 8.514205], [47.377923, 8.525222], [47.379701, 8.527497], [47.391715, 8.51341], [47.376875, 8.541833], [47.413056, 8.517697], [47.353702, 8.512366], [47.393769, 8.508272], [47.426347, 8.541891], [47.410829, 8.554317], [47.369548, 8.53383], [47.409154, 8.549843], [47.382698, 8.500262], [47.39029, 8.516706], [47.366354, 8.540503], [47.379324, 8.507187], [47.368271, 8.522351], [47.393189, 8.474151], [47.36329, 8.549602], [47.368722, 8.500924], [47.372688, 8.534702], [47.336378, 8.524799], [47.346191, 8.534396], [47.371894, 8.536884], [47.366907, 8.545784], [47.356724, 8.553317], [47.366348, 8.499844], [47.358527, 8.551912], [47.335162, 8.54109], [47.396493, 8.528661], [47.358487, 8.534503], [47.375636, 8.496427], [47.376974, 8.535227], [47.37186, 8.522371], [47.387873, 8.486074], [47.369065, 8.527862], [47.412389, 8.546425], [47.366332, 8.53436], [47.370043, 8.543307], [47.385269, 8.487625], [47.333767, 8.514571], [47.363299, 8.533569], [47.380931, 8.535335], [47.370085, 8.540792], [47.369391, 8.525671], [47.342664, 8.531663], [47.382475, 8.52999], [47.411225, 8.525994], [47.405059, 8.482517], [47.419605, 8.548086], [47.391529, 8.539898], [47.366316, 8.540794], [47.382411, 8.530095], [47.398848, 8.49494], [47.390609, 8.522991], [47.370817, 8.52427], [47.367289, 8.545329], [47.419623, 8.5481], [47.391751, 8.519173], [47.365635, 8.521516], [47.408642, 8.580215], [47.37485, 8.534376], [47.376983, 8.546537], [47.427152, 8.49134], [47.360426, 8.564793], [47.383004, 8.513843], [47.365867, 8.530246], [47.366497, 8.516873], [47.370948, 8.538003], [47.378317, 8.527349], [47.406907, 8.550577], [47.361173, 8.529144], [47.375057, 8.528686], [47.344015, 8.532498], [47.367965, 8.540418], [47.375523, 8.516434], [47.390564, 8.489889], [47.36674, 8.527364], [47.400299, 8.548346], [47.375565, 8.494333], [47.397958, 8.532546], [47.378324, 8.540804], [47.355422, 8.525651], [47.388977, 8.51762], [47.382081, 8.49882], [47.37599, 8.512642], [47.41143, 8.563711], [47.36135, 8.506337], [47.369971, 8.541399], [47.409079, 8.572327], [47.429926, 8.539181], [47.385488, 8.542329], [47.37541, 8.540823], [47.390739, 8.546266], [47.375577, 8.526909], [47.406002, 8.484655], [47.366499, 8.531901], [47.361721, 8.574074], [47.418892, 8.507292], [47.406096, 8.584824], [47.421172, 8.549762], [47.369179, 8.54803], [47.393373, 8.473651], [47.403732, 8.550591], [47.409347, 8.540889], [47.361357, 8.512401], [47.358923, 8.549087], [47.329559, 8.529622], [47.391291, 8.487148], [47.415105, 8.570574], [47.391323, 8.542636], [47.392689, 8.523695], [47.385512, 8.533112], [47.396279, 8.509144], [47.374518, 8.53997], [47.378674, 8.541844], [47.397043, 8.530355], [47.364277, 8.555474], [47.38651, 8.527516], [47.37069, 8.516733], [47.39364, 8.510548], [47.411166, 8.543524], [47.411268, 8.532793], [47.36911, 8.52781], [47.399785, 8.543805], [47.364167, 8.546284], [47.400184, 8.546264], [47.35344, 8.554281], [47.38305, 8.514718], [47.391347, 8.522926], [47.38227, 8.488043], [47.364348, 8.546168], [47.384019, 8.482608], [47.377905, 8.528056], [47.367487, 8.54532], [47.419272, 8.508029], [47.391036, 8.527331], [47.416519, 8.508079], [47.404633, 8.571663], [47.378348, 8.52976], [47.417723, 8.545423], [47.404204, 8.561293], [47.412283, 8.553645], [47.354413, 8.558775], [47.414486, 8.483496], [47.363441, 8.507902], [47.411957, 8.563192], [47.391465, 8.511285], [47.400587, 8.548313], [47.412167, 8.481251], [47.372542, 8.529257], [47.39181, 8.51765], [47.365196, 8.537474], [47.378538, 8.510456], [47.41784, 8.553894], [47.37352, 8.519915], [47.421802, 8.546886], [47.363014, 8.548365], [47.370767, 8.535259], [47.403674, 8.571338], [47.387492, 8.536861], [47.379845, 8.554794], [47.374103, 8.544822], [47.414418, 8.513484], [47.360571, 8.535684], [47.365791, 8.526934], [47.377318, 8.4994], [47.392222, 8.476675], [47.403476, 8.548187], [47.36009, 8.522873], [47.413205, 8.531508], [47.362482, 8.53436], [47.370667, 8.469913], [47.424512, 8.522886], [47.362431, 8.526429], [47.373886, 8.538302], [47.385878, 8.532457], [47.373328, 8.50377], [47.382933, 8.530966], [47.376813, 8.514116], [47.392386, 8.524351], [47.389897, 8.48108], [47.37548, 8.564303], [47.385193, 8.539277], [47.367487, 8.54532], [47.378951, 8.510491], [47.377007, 8.542154], [47.419186, 8.547653], [47.387077, 8.535038], [47.386694, 8.520342], [47.335831, 8.532331], [47.364674, 8.546016], [47.383081, 8.528652], [47.333422, 8.518706], [47.370073, 8.541044], [47.362545, 8.504534], [47.36653, 8.541884], [47.389423, 8.543762], [47.386193, 8.526795], [47.372722, 8.534928], [47.383172, 8.539924], [47.382558, 8.52978], [47.406907, 8.550577], [47.370121, 8.479727], [47.377063, 8.523933], [47.388012, 8.488646], [47.3666, 8.544891], [47.369956, 8.52306], [47.3745, 8.532449], [47.400239, 8.585851], [47.362916, 8.554744], [47.36909, 8.525161], [47.407153, 8.551152], [47.388045, 8.490991], [47.387614, 8.541023], [47.376621, 8.527897], [47.391385, 8.519814], [47.3861, 8.508833], [47.407876, 8.580305], [47.431, 8.550126], [47.381667, 8.528795], [47.369036, 8.525213], [47.376855, 8.543038], [47.37443, 8.53973], [47.399764, 8.544056], [47.376039, 8.541816], [47.415072, 8.544254], [47.387963, 8.494049], [47.378464, 8.531735], [47.407599, 8.547862], [47.422914, 8.550063], [47.360615, 8.501239], [47.373446, 8.481037], [47.3588, 8.583821], [47.382313, 8.499102], [47.405976, 8.548213], [47.380567, 8.519542], [47.379763, 8.494615], [47.401473, 8.491124], [47.357161, 8.552691], [47.406894, 8.586869], [47.387866, 8.524908], [47.3786, 8.55886], [47.37477, 8.527608], [47.421141, 8.500419], [47.403263, 8.534656], [47.410613, 8.550562], [47.430519, 8.485998], [47.386099, 8.492238], [47.381666, 8.490097], [47.428073, 8.489913], [47.376715, 8.544465], [47.37235, 8.574393], [47.383216, 8.540985], [47.394018, 8.524968], [47.385275, 8.494844], [47.357665, 8.521513], [47.360678, 8.524434], [47.364473, 8.536863], [47.396058, 8.545012], [47.37112, 8.5303], [47.386901, 8.545988], [47.405894, 8.548357], [47.410858, 8.546618], [47.384997, 8.508453], [47.36687, 8.513465], [47.391373, 8.520172], [47.338388, 8.532079], [47.399713, 8.543777], [47.365781, 8.538413], [47.377797, 8.532834], [47.398313, 8.533044], [47.391439, 8.519868], [47.369846, 8.554452], [47.404344, 8.572677], [47.364629, 8.566417], [47.398685, 8.542166], [47.37012, 8.5512], [47.366427, 8.545152], [47.422876, 8.550314], [47.376592, 8.527102], [47.38743, 8.525284], [47.378675, 8.517954], [47.413992, 8.541489], [47.351126, 8.582981], [47.372545, 8.534593], [47.372036, 8.534212], [47.37737, 8.548346], [47.383004, 8.513843], [47.389462, 8.512927], [47.389694, 8.533184], [47.385106, 8.495555], [47.385896, 8.533451], [47.403105, 8.575274], [47.374111, 8.516339], [47.403881, 8.558424], [47.378802, 8.529359], [47.343768, 8.534836], [47.37318, 8.536963], [47.392596, 8.502778], [47.393869, 8.505174], [47.373419, 8.53824], [47.374372, 8.542987], [47.417895, 8.509088], [47.38413, 8.539467], [47.361852, 8.547586], [47.381574, 8.550883], [47.426482, 8.54192], [47.370081, 8.525089], [47.374035, 8.498315], [47.369417, 8.52579], [47.336121, 8.514804], [47.348145, 8.527527], [47.378934, 8.524832], [47.375946, 8.533591], [47.385118, 8.531077], [47.386543, 8.482975], [47.375732, 8.526767], [47.364484, 8.546131], [47.385929, 8.498102], [47.395023, 8.545097], [47.375941, 8.529353], [47.427875, 8.490904], [47.392878, 8.522759], [47.369814, 8.509301], [47.355574, 8.532431], [47.370357, 8.518633], [47.389326, 8.524514], [47.383996, 8.511638], [47.378786, 8.542363], [47.379896, 8.521091], [47.374013, 8.544806], [47.374034, 8.520773], [47.371892, 8.521895], [47.3836, 8.529934], [47.372043, 8.502698], [47.359575, 8.524994], [47.367756, 8.523559], [47.389519, 8.473099], [47.377924, 8.528016], [47.406255, 8.566768], [47.375613, 8.526976], [47.377264, 8.538769], [47.370166, 8.540807], [47.358937, 8.534459], [47.39131, 8.537311], [47.377619, 8.521151], [47.361836, 8.549227], [47.368973, 8.556327], [47.383995, 8.529041], [47.410796, 8.557682], [47.372964, 8.520751], [47.419175, 8.507828], [47.379398, 8.495164], [47.407433, 8.57416], [47.412287, 8.509465], [47.365094, 8.549096], [47.364413, 8.566479], [47.362855, 8.558304], [47.370372, 8.524737], [47.371589, 8.519651], [47.393755, 8.53748], [47.367651, 8.496123], [47.357547, 8.52159], [47.385665, 8.493527], [47.381728, 8.516599], [47.370962, 8.516447], [47.335235, 8.534422], [47.412189, 8.55033], [47.407657, 8.548301], [47.377945, 8.497665], [47.374531, 8.525352], [47.371948, 8.534952], [47.380088, 8.548217], [47.37766, 8.508068], [47.377494, 8.521082], [47.380455, 8.537113], [47.370627, 8.532051], [47.37927, 8.537844], [47.388653, 8.492288], [47.424577, 8.513066], [47.391565, 8.511155], [47.379571, 8.524991], [47.36716, 8.532444], [47.366944, 8.520033], [47.379239, 8.522084], [47.366855, 8.518032], [47.38785, 8.519888], [47.373011, 8.532908], [47.389997, 8.522038], [47.36596, 8.500988], [47.379396, 8.53778], [47.367372, 8.494184], [47.352876, 8.527571], [47.375692, 8.529057], [47.382235, 8.514265], [47.370287, 8.541234], [47.374454, 8.540049], [47.388076, 8.540727], [47.374965, 8.519375], [47.429936, 8.540003], [47.417617, 8.553717], [47.406238, 8.55373], [47.3594, 8.585859], [47.361715, 8.526044], [47.381099, 8.502879], [47.36621, 8.553714], [47.380543, 8.567231], [47.398443, 8.494893], [47.368118, 8.555475], [47.361202, 8.525159], [47.358502, 8.553619], [47.357118, 8.527035], [47.372864, 8.542717], [47.369389, 8.525882], [47.363317, 8.533583], [47.396026, 8.541793], [47.374776, 8.549629], [47.403705, 8.534519], [47.395384, 8.533672], [47.374509, 8.53997], [47.402342, 8.499316], [47.379999, 8.520669], [47.379719, 8.549176], [47.395678, 8.536765], [47.376463, 8.548247], [47.38332, 8.505983], [47.383012, 8.514863], [47.354086, 8.553513], [47.377954, 8.541895], [47.391621, 8.505142], [47.379652, 8.542129], [47.387151, 8.540549], [47.374112, 8.515266], [47.372563, 8.535547], [47.406902, 8.586909], [47.373965, 8.526174], [47.369832, 8.547487], [47.341329, 8.530154], [47.394769, 8.525433], [47.359747, 8.550415], [47.371111, 8.530327], [47.370686, 8.53523], [47.370053, 8.541321], [47.360256, 8.566536], [47.387262, 8.519201], [47.391686, 8.513581], [47.363506, 8.569941], [47.412974, 8.551009], [47.393799, 8.472321], [47.376434, 8.543718], [47.383526, 8.573042], [47.418489, 8.508], [47.377536, 8.504013], [47.409745, 8.531211], [47.382155, 8.514197], [47.346573, 8.563878], [47.367354, 8.490225], [47.369526, 8.52856], [47.407525, 8.584908], [47.374672, 8.539907], [47.403628, 8.554815], [47.390747, 8.479614], [47.35437, 8.557676], [47.381808, 8.529169], [47.414008, 8.543636], [47.357656, 8.588483], [47.372556, 8.532541], [47.419706, 8.50483], [47.378123, 8.536469], [47.37931, 8.559894], [47.409683, 8.545282], [47.378423, 8.543653], [47.385172, 8.536787], [47.36578, 8.552579], [47.357943, 8.519705], [47.374011, 8.519396], [47.414366, 8.551263], [47.409853, 8.537826], [47.384971, 8.532319], [47.369298, 8.510614], [47.372782, 8.518033], [47.36442, 8.546183], [47.362412, 8.547333], [47.41358, 8.572025], [47.377572, 8.522328], [47.368154, 8.548935], [47.36422, 8.547317], [47.365934, 8.52703], [47.358468, 8.50575], [47.3706, 8.516691], [47.344021, 8.529905], [47.402342, 8.499316], [47.391533, 8.519446], [47.391961, 8.517879], [47.385749, 8.532786], [47.411199, 8.570769], [47.385017, 8.532267], [47.391195, 8.516168], [47.38435, 8.548385], [47.371418, 8.471477], [47.365516, 8.521712], [47.369909, 8.536591], [47.392253, 8.524177], [47.376112, 8.535978], [47.35479, 8.526829], [47.395134, 8.532462], [47.370106, 8.548883], [47.372514, 8.478609], [47.379124, 8.511262], [47.382361, 8.544755], [47.425825, 8.556023], [47.420157, 8.507609], [47.368068, 8.494728], [47.380954, 8.526198], [47.395146, 8.491449], [47.393774, 8.502801], [47.349816, 8.575409], [47.379402, 8.523888], [47.347484, 8.532808], [47.382125, 8.512567], [47.401035, 8.548534], [47.395356, 8.518477], [47.378519, 8.523076], [47.388488, 8.486722], [47.369126, 8.547922], [47.370344, 8.524776], [47.376402, 8.528171], [47.383269, 8.513332], [47.376925, 8.544192], [47.378371, 8.530237], [47.412151, 8.524105], [47.387376, 8.488329], [47.380239, 8.526673], [47.368136, 8.522348], [47.351394, 8.525476], [47.364505, 8.566256], [47.364231, 8.531086], [47.369458, 8.526294], [47.334921, 8.524862], [47.371954, 8.517103], [47.380024, 8.546467], [47.374904, 8.54946], [47.377767, 8.525524], [47.395937, 8.5455], [47.364822, 8.555843], [47.376999, 8.543888], [47.364719, 8.545964], [47.369014, 8.538003], [47.379389, 8.507917], [47.401928, 8.488563], [47.376648, 8.527831], [47.382107, 8.50972], [47.401587, 8.48951], [47.381266, 8.548228], [47.393373, 8.520769], [47.367092, 8.544279], [47.390824, 8.474065], [47.340021, 8.51913], [47.393364, 8.520835], [47.383554, 8.480254], [47.420853, 8.549252], [47.422822, 8.551215], [47.364536, 8.553785], [47.356709, 8.523691], [47.382503, 8.500934], [47.373766, 8.515762], [47.413034, 8.553183], [47.39289, 8.522454], [47.385061, 8.529513], [47.3906, 8.522964], [47.371089, 8.520171], [47.430153, 8.549313], [47.381219, 8.49773], [47.3638, 8.55177], [47.366756, 8.535216], [47.374413, 8.521642], [47.343985, 8.528064], [47.367888, 8.560621], [47.365722, 8.532269], [47.387158, 8.535093], [47.398779, 8.533199], [47.417905, 8.508916], [47.38512, 8.503873], [47.362478, 8.533883], [47.386764, 8.490396], [47.37782, 8.574324], [47.381313, 8.506976], [47.390915, 8.522017], [47.362813, 8.533599], [47.379208, 8.526334], [47.402929, 8.575747], [47.388852, 8.496186], [47.378529, 8.575319], [47.374477, 8.540499], [47.382766, 8.575343], [47.394366, 8.541321], [47.39106, 8.477792], [47.381438, 8.537862], [47.388591, 8.523281], [47.385812, 8.482285], [47.362408, 8.592782], [47.405628, 8.585715], [47.377095, 8.529112], [47.402297, 8.543552], [47.376041, 8.526402], [47.369633, 8.525848], [47.361784, 8.576776], [47.360039, 8.568518], [47.370275, 8.52741], [47.361526, 8.554304], [47.369616, 8.538969], [47.38826, 8.546798], [47.388009, 8.48503], [47.417243, 8.512427], [47.40438, 8.533592], [47.38108, 8.542371], [47.399906, 8.544337], [47.371423, 8.517225], [47.407076, 8.586687], [47.410223, 8.546181], [47.415509, 8.56605], [47.405453, 8.592456], [47.383733, 8.498243], [47.386788, 8.547482], [47.365342, 8.545725], [47.377217, 8.539894], [47.419908, 8.548344], [47.369143, 8.528142], [47.406912, 8.586856], [47.374325, 8.531902], [47.37394, 8.576387], [47.369868, 8.547474], [47.393074, 8.492799], [47.411681, 8.512792], [47.344486, 8.518705], [47.368188, 8.553821], [47.407908, 8.547498], [47.368733, 8.519183], [47.376714, 8.511147], [47.376264, 8.525652], [47.377417, 8.526404], [47.371382, 8.509028], [47.384576, 8.500392], [47.366711, 8.541755], [47.352853, 8.557326], [47.391913, 8.543006], [47.341336, 8.530432], [47.416259, 8.532935], [47.379638, 8.507194], [47.328917, 8.513732], [47.398671, 8.547425], [47.390878, 8.522109], [47.384964, 8.53216], [47.367312, 8.537226], [47.402459, 8.499371], [47.383076, 8.513871], [47.413268, 8.531496], [47.391886, 8.542992], [47.411586, 8.558772], [47.385643, 8.532651], [47.413971, 8.548406], [47.363841, 8.531422], [47.380304, 8.50138], [47.3864, 8.527739], [47.370545, 8.51289], [47.379076, 8.555241], [47.385347, 8.517202], [47.396807, 8.529648], [47.403926, 8.569501], [47.39162, 8.505182], [47.386815, 8.547456], [47.413507, 8.539504], [47.383546, 8.512662], [47.356939, 8.522174], [47.374176, 8.544744], [47.389786, 8.526378], [47.373814, 8.546868], [47.398778, 8.524707], [47.368827, 8.563024], [47.393776, 8.500695], [47.39718, 8.531126], [47.373769, 8.538339], [47.381379, 8.5174], [47.36125, 8.535301], [47.385845, 8.485597], [47.377716, 8.522397], [47.397482, 8.532457], [47.360925, 8.57178], [47.373515, 8.529078], [47.342508, 8.526261], [47.419086, 8.506726], [47.415189, 8.550777], [47.399979, 8.545134], [47.407314, 8.549433], [47.387407, 8.487932], [47.428765, 8.489039], [47.370824, 8.522562], [47.393737, 8.496111], [47.396992, 8.480305], [47.37485, 8.534376], [47.370804, 8.548328], [47.370607, 8.52077], [47.406844, 8.550589], [47.364533, 8.548449], [47.410954, 8.563635], [47.380025, 8.548269], [47.404024, 8.534049], [47.381232, 8.536798], [47.366807, 8.543028], [47.366622, 8.541661], [47.332652, 8.529857], [47.391589, 8.513473], [47.365887, 8.549854], [47.367888, 8.560621], [47.352964, 8.556944], [47.407206, 8.564245], [47.400661, 8.534006], [47.36442, 8.546156], [47.370788, 8.491458], [47.364634, 8.549153], [47.348898, 8.573602], [47.379508, 8.525082], [47.414505, 8.520522], [47.393223, 8.526276], [47.366554, 8.545022], [47.374903, 8.525902], [47.415709, 8.548151], [47.364711, 8.560832], [47.37459, 8.527697], [47.399786, 8.495595], [47.412227, 8.546422], [47.414557, 8.551095], [47.384007, 8.532511], [47.346565, 8.563798], [47.356421, 8.523712], [47.374007, 8.546342], [47.381065, 8.541125], [47.418608, 8.50783], [47.406411, 8.538444], [47.375608, 8.544548], [47.39213, 8.511391], [47.405759, 8.532309], [47.376749, 8.499561], [47.38034, 8.501314], [47.351644, 8.534217], [47.383067, 8.513858], [47.360453, 8.522497], [47.368366, 8.541843], [47.37047, 8.518039], [47.384741, 8.531957], [47.378153, 8.557632], [47.375212, 8.54458], [47.375545, 8.518844], [47.373391, 8.531764], [47.346645, 8.532049], [47.367056, 8.544331], [47.376848, 8.535278], [47.375607, 8.53704], [47.365451, 8.535202], [47.383202, 8.506086], [47.36893, 8.547667], [47.376908, 8.535531], [47.36243, 8.54736], [47.360648, 8.548382], [47.410768, 8.546564], [47.396816, 8.529701], [47.40459, 8.594173], [47.395052, 8.529758], [47.353619, 8.55439], [47.37999, 8.548122], [47.367999, 8.54627], [47.388312, 8.525249], [47.412396, 8.525806], [47.375375, 8.484544], [47.364864, 8.531655], [47.41059, 8.55296], [47.413775, 8.550959], [47.359393, 8.522396], [47.377589, 8.522448], [47.362553, 8.534441], [47.356325, 8.553613], [47.372994, 8.552624], [47.411877, 8.537867], [47.373213, 8.552218], [47.38405, 8.540273], [47.378491, 8.509647], [47.403034, 8.536029], [47.344943, 8.531392], [47.370681, 8.516733], [47.402095, 8.543985], [47.401399, 8.545229], [47.413633, 8.529052], [47.344132, 8.531495], [47.39986, 8.587698], [47.369882, 8.510719], [47.348378, 8.534361], [47.407553, 8.550763], [47.369025, 8.525372], [47.412343, 8.523751], [47.4228, 8.499007], [47.364766, 8.530647], [47.360856, 8.505361], [47.344615, 8.529904], [47.391642, 8.513514], [47.410396, 8.572011], [47.376319, 8.527494], [47.390859, 8.539328], [47.364173, 8.551328], [47.41227, 8.523816], [47.360278, 8.552213], [47.364316, 8.60074], [47.39813, 8.536193], [47.358083, 8.588081], [47.378153, 8.541807], [47.405936, 8.587259], [47.408681, 8.544718], [47.388064, 8.520078], [47.393523, 8.539198], [47.411258, 8.548031], [47.372661, 8.499096], [47.367852, 8.549472], [47.42706, 8.491484], [47.397626, 8.596128], [47.387523, 8.519246], [47.322968, 8.514062], [47.380359, 8.547137], [47.361838, 8.567589], [47.367216, 8.545433], [47.402249, 8.535377], [47.387833, 8.488497], [47.369044, 8.525293], [47.377682, 8.506731], [47.378356, 8.526039], [47.364361, 8.555118], [47.414895, 8.541176], [47.370297, 8.548635], [47.352531, 8.533706], [47.360024, 8.552512], [47.401806, 8.506777], [47.414216, 8.550929], [47.376289, 8.567167], [47.361571, 8.532779], [47.410131, 8.541727], [47.410885, 8.562467], [47.370215, 8.548806], [47.362944, 8.549118], [47.370297, 8.513468], [47.365105, 8.501991], [47.372011, 8.53494], [47.367286, 8.563296], [47.390617, 8.523123], [47.391048, 8.479143], [47.399499, 8.50534], [47.404581, 8.572377], [47.339175, 8.5191], [47.396971, 8.577898], [47.384041, 8.528923], [47.362426, 8.504783], [47.370546, 8.548932], [47.390539, 8.474801], [47.37999, 8.536839], [47.372676, 8.534133], [47.378156, 8.541436], [47.385159, 8.539965], [47.378039, 8.541473], [47.370708, 8.517607], [47.368638, 8.52449], [47.417908, 8.50376], [47.393817, 8.472269], [47.368534, 8.528831], [47.374319, 8.542906], [47.390923, 8.522136], [47.387014, 8.489593], [47.391529, 8.54268], [47.374993, 8.534485], [47.372611, 8.534317], [47.393342, 8.545009], [47.379296, 8.523701], [47.364824, 8.554651], [47.412036, 8.549479], [47.366513, 8.540864], [47.39091, 8.482504], [47.413176, 8.545951], [47.369484, 8.506103], [47.411198, 8.543989], [47.390627, 8.522978], [47.420963, 8.501224], [47.375761, 8.543545], [47.376886, 8.512051], [47.379645, 8.527694], [47.405879, 8.573041], [47.380833, 8.528606], [47.383506, 8.573214], [47.385744, 8.487794], [47.4083, 8.546976], [47.387368, 8.498117], [47.348299, 8.533142], [47.391536, 8.513313], [47.386787, 8.469801], [47.347947, 8.520892], [47.368107, 8.578685], [47.406522, 8.573545], [47.380913, 8.52866], [47.393421, 8.537699], [47.410543, 8.572557], [47.389627, 8.512533], [47.402399, 8.585699], [47.409178, 8.547273], [47.379014, 8.494865], [47.380695, 8.504778], [47.367991, 8.519591], [47.366443, 8.540677], [47.342594, 8.536188], [47.40177, 8.489063], [47.362325, 8.55918], [47.370216, 8.521212], [47.375768, 8.487836], [47.380026, 8.520656], [47.388334, 8.536269], [47.386945, 8.490228], [47.424109, 8.505289], [47.368909, 8.496214], [47.346979, 8.531964], [47.374315, 8.552731], [47.381589, 8.537018], [47.403162, 8.587703], [47.372665, 8.528598], [47.405378, 8.591845], [47.407407, 8.56299], [47.379513, 8.5245], [47.379958, 8.527833], [47.391673, 8.518933], [47.377432, 8.539064], [47.37026, 8.54882], [47.396798, 8.483905], [47.379773, 8.494562], [47.387068, 8.547356], [47.385204, 8.50059], [47.384778, 8.496052], [47.375033, 8.511988], [47.368451, 8.524288], [47.36923, 8.553009], [47.41445, 8.556592], [47.359153, 8.535443], [47.363152, 8.563804], [47.364989, 8.537443], [47.388999, 8.524892], [47.382252, 8.547653], [47.409453, 8.538308], [47.385093, 8.528984], [47.37197, 8.536462], [47.393918, 8.525019], [47.373459, 8.519768], [47.371781, 8.530738], [47.335697, 8.51596], [47.413872, 8.545634], [47.390716, 8.483123], [47.377419, 8.529105], [47.369145, 8.527969], [47.348142, 8.562588], [47.387142, 8.499198], [47.401443, 8.491494], [47.399953, 8.591078], [47.3412, 8.527637], [47.386263, 8.53171], [47.362612, 8.547151], [47.386181, 8.528], [47.385375, 8.517163], [47.398187, 8.473466], [47.381698, 8.51685], [47.379179, 8.529446], [47.411751, 8.512992], [47.368537, 8.556755], [47.366702, 8.531388], [47.378332, 8.578043], [47.386906, 8.535087], [47.365819, 8.561517], [47.362866, 8.517409], [47.374591, 8.484727], [47.386171, 8.498212], [47.330108, 8.515291], [47.3906, 8.491889], [47.397446, 8.531568], [47.386905, 8.528505], [47.370612, 8.470097], [47.360504, 8.522828], [47.385493, 8.529443], [47.377325, 8.526627], [47.395023, 8.545097], [47.399494, 8.517435], [47.377058, 8.483478], [47.383727, 8.496932], [47.375212, 8.544593], [47.397002, 8.514642], [47.402141, 8.495787], [47.411859, 8.543512], [47.370271, 8.529687], [47.360041, 8.550659], [47.39812, 8.53251], [47.379039, 8.525139], [47.37831, 8.509829], [47.356721, 8.509885], [47.371057, 8.523652], [47.428988, 8.545166], [47.363898, 8.56668], [47.410627, 8.542559], [47.365398, 8.532302], [47.382973, 8.540013], [47.402436, 8.535593], [47.360786, 8.530115], [47.379514, 8.544298], [47.40367, 8.578161], [47.401514, 8.545417], [47.388438, 8.491198], [47.35278, 8.572163], [47.416278, 8.545114], [47.373057, 8.53279], [47.37709, 8.496708], [47.366918, 8.558641], [47.408625, 8.550574], [47.355219, 8.554516], [47.384355, 8.534704], [47.386443, 8.543091], [47.386706, 8.547533], [47.391179, 8.515942], [47.407946, 8.54253], [47.408932, 8.543928], [47.356527, 8.551367], [47.406871, 8.550577], [47.370278, 8.563703], [47.374758, 8.489074], [47.369665, 8.523412], [47.407093, 8.531051], [47.394249, 8.49318], [47.37074, 8.540012], [47.408635, 8.57995], [47.373615, 8.546957], [47.394416, 8.526605], [47.351003, 8.579947], [47.370056, 8.54099], [47.368399, 8.562591], [47.378531, 8.502444], [47.376565, 8.534769], [47.394542, 8.472733], [47.417176, 8.510001], [47.378538, 8.526797], [47.374288, 8.486429], [47.409337, 8.528685], [47.389781, 8.483979], [47.369369, 8.5271], [47.38034, 8.526463], [47.389263, 8.546381], [47.417843, 8.502977], [47.37137, 8.519938], [47.344338, 8.528746], [47.369172, 8.52797], [47.393094, 8.492614], [47.37719, 8.539893], [47.362753, 8.535213], [47.373437, 8.493868], [47.383496, 8.488716], [47.385531, 8.536821], [47.417198, 8.512466], [47.399735, 8.495263], [47.3694, 8.541864], [47.36063, 8.522791], [47.397485, 8.489482], [47.407601, 8.530651], [47.38861, 8.480247], [47.366935, 8.522906], [47.366764, 8.540035], [47.377671, 8.54324], [47.393803, 8.52295], [47.359048, 8.520747], [47.399896, 8.495359], [47.376563, 8.549017], [47.387718, 8.532879], [47.408978, 8.550303], [47.335099, 8.519282], [47.370351, 8.518342], [47.403277, 8.49846], [47.40395, 8.534299], [47.362587, 8.519389], [47.386766, 8.53082], [47.37487, 8.517983], [47.41223, 8.555499], [47.370203, 8.518696], [47.389793, 8.512086], [47.38985, 8.477331], [47.399178, 8.495172], [47.386028, 8.498117], [47.388379, 8.539078], [47.368392, 8.556911], [47.403084, 8.490043], [47.390932, 8.52215], [47.372545, 8.534607], [47.379727, 8.527524], [47.367192, 8.533755], [47.369339, 8.531204], [47.384366, 8.516295], [47.377494, 8.541992], [47.366392, 8.559067], [47.412179, 8.550436], [47.372388, 8.523587], [47.335937, 8.515237], [47.382722, 8.539915], [47.374683, 8.529274], [47.329443, 8.514246], [47.366815, 8.543174], [47.366337, 8.600083], [47.365584, 8.559804], [47.38601, 8.498116], [47.378589, 8.54224], [47.377927, 8.526666], [47.360439, 8.569042], [47.385043, 8.49562], [47.366429, 8.54494], [47.357199, 8.571039], [47.383132, 8.505873], [47.385576, 8.499326], [47.343718, 8.535285], [47.407894, 8.583114], [47.371194, 8.549925], [47.376536, 8.541535], [47.386842, 8.535139], [47.414056, 8.548938], [47.376723, 8.544558], [47.425037, 8.551963], [47.388648, 8.522977], [47.354225, 8.553145], [47.362568, 8.547971], [47.409679, 8.543811], [47.377123, 8.529033], [47.378822, 8.508925], [47.384336, 8.534783], [47.394244, 8.47384], [47.366195, 8.52219], [47.357075, 8.535427], [47.398614, 8.53925], [47.402089, 8.498529], [47.370083, 8.512298], [47.371581, 8.558262], [47.380181, 8.525215], [47.354327, 8.555623], [47.385502, 8.530436], [47.382864, 8.547612], [47.3846, 8.531623], [47.35445, 8.553071], [47.425898, 8.547515], [47.412344, 8.523645], [47.404466, 8.556489], [47.391303, 8.513256], [47.389218, 8.485584], [47.380987, 8.52845], [47.374345, 8.543012], [47.38793, 8.498578], [47.377559, 8.498558], [47.37913, 8.495013], [47.378839, 8.542443], [47.3857, 8.543645], [47.409502, 8.542562], [47.403207, 8.587637], [47.381604, 8.492003], [47.403343, 8.54886], [47.381325, 8.534509], [47.389997, 8.543893], [47.392676, 8.529934], [47.393785, 8.502656], [47.362242, 8.518733], [47.377849, 8.509091], [47.396848, 8.595727], [47.365441, 8.537241], [47.377385, 8.498885], [47.377788, 8.507845], [47.426279, 8.554654], [47.413936, 8.544536], [47.35114, 8.582518], [47.376291, 8.527506], [47.369217, 8.532698], [47.394595, 8.531457], [47.386517, 8.503557], [47.404686, 8.572724], [47.367783, 8.515867], [47.410712, 8.572812], [47.411725, 8.512912], [47.397592, 8.502334], [47.368999, 8.529158], [47.384645, 8.509559], [47.352274, 8.509279], [47.357958, 8.572511], [47.391852, 8.510339], [47.372252, 8.53419], [47.374184, 8.544836], [47.372816, 8.486056], [47.401787, 8.534705], [47.377246, 8.538756], [47.367912, 8.540364], [47.419888, 8.482953], [47.370558, 8.53544], [47.410041, 8.537962], [47.375539, 8.554518], [47.375671, 8.545437], [47.368177, 8.565102], [47.344708, 8.528622], [47.398369, 8.537562], [47.370197, 8.548792], [47.372602, 8.547478], [47.403779, 8.546577], [47.38318, 8.483889], [47.406633, 8.548174], [47.38971, 8.511435], [47.366081, 8.529469], [47.376383, 8.513882], [47.393492, 8.532057], [47.371309, 8.538779], [47.385493, 8.530462], [47.365273, 8.519748], [47.399367, 8.515657], [47.39104, 8.479036], [47.378977, 8.522198], [47.379304, 8.495586], [47.360573, 8.528827], [47.378598, 8.542306], [47.403146, 8.49798], [47.37746, 8.491683], [47.364419, 8.550989], [47.39002, 8.480407], [47.377135, 8.540091], [47.381735, 8.545298], [47.367547, 8.546592], [47.36721, 8.537516], [47.405808, 8.581214], [47.393392, 8.499363], [47.356416, 8.553549], [47.378252, 8.541716], [47.366617, 8.551591], [47.387181, 8.519292], [47.388388, 8.483872], [47.375784, 8.537388], [47.420642, 8.513543], [47.364735, 8.554623], [47.406518, 8.584834], [47.369306, 8.527099], [47.407402, 8.53641], [47.390753, 8.522027], [47.371675, 8.510358], [47.365837, 8.521944], [47.397364, 8.533541], [47.36355, 8.521289], [47.397751, 8.533496], [47.380479, 8.519355], [47.401803, 8.500232], [47.378222, 8.544934], [47.395777, 8.511876], [47.398902, 8.533493], [47.357395, 8.521561], [47.369064, 8.541208], [47.353337, 8.576847], [47.41165, 8.562338], [47.380403, 8.541602], [47.400165, 8.501392], [47.366851, 8.553423], [47.429841, 8.549081], [47.365028, 8.553107], [47.379277, 8.495586], [47.388589, 8.528354], [47.378951, 8.495884], [47.368865, 8.519477], [47.378794, 8.542509], [47.349973, 8.561197], [47.366316, 8.520828], [47.366307, 8.520841], [47.384156, 8.504013], [47.377386, 8.542003], [47.377184, 8.52922], [47.360751, 8.553547], [47.388614, 8.486777], [47.417592, 8.546003], [47.403638, 8.496334], [47.377311, 8.512762], [47.378584, 8.542782], [47.371102, 8.547328], [47.378591, 8.558899], [47.362252, 8.559297], [47.369166, 8.519986], [47.376988, 8.537505], [47.375771, 8.543479], [47.355499, 8.528988], [47.382342, 8.487978], [47.402442, 8.546205], [47.362846, 8.527298], [47.341463, 8.536959], [47.427446, 8.538944], [47.391853, 8.510207], [47.41789, 8.559872], [47.430718, 8.541955], [47.338703, 8.532045], [47.376226, 8.542032], [47.373035, 8.520806], [47.377037, 8.539996], [47.38834, 8.516494], [47.355249, 8.552359], [47.36689, 8.520019], [47.367418, 8.531787], [47.379454, 8.524035], [47.387841, 8.485716], [47.402616, 8.553456], [47.352859, 8.526525], [47.340666, 8.529915], [47.379645, 8.527694], [47.410597, 8.572571], [47.374841, 8.545684], [47.3847, 8.50262], [47.381875, 8.535408], [47.426377, 8.554722], [47.35644, 8.510117], [47.361969, 8.503662], [47.361721, 8.574074], [47.38829, 8.486784], [47.370188, 8.548792], [47.37256, 8.529297], [47.378164, 8.509985], [47.375855, 8.51072], [47.387632, 8.499698], [47.389807, 8.536511], [47.401018, 8.535179], [47.400447, 8.548906], [47.377513, 8.529571], [47.362615, 8.5048], [47.371837, 8.601527], [47.398113, 8.532298], [47.383511, 8.539256], [47.374565, 8.538859], [47.413339, 8.539196], [47.359688, 8.549063], [47.405604, 8.569855], [47.358937, 8.534459], [47.378996, 8.525959], [47.386498, 8.485981], [47.37154, 8.534334], [47.373502, 8.519928], [47.336083, 8.517965], [47.40118, 8.538004], [47.38325, 8.513438], [47.393182, 8.492854], [47.370978, 8.534826], [47.363641, 8.547716], [47.358981, 8.516351], [47.371674, 8.472978], [47.372641, 8.529246], [47.377042, 8.529045], [47.402342, 8.499316], [47.357376, 8.521666], [47.400055, 8.545652], [47.368066, 8.495999], [47.396727, 8.548418], [47.401254, 8.501321], [47.371023, 8.52532], [47.357621, 8.585662], [47.419596, 8.50508], [47.397889, 8.511097], [47.371019, 8.538984], [47.402208, 8.4993], [47.366728, 8.545701], [47.40513, 8.551985], [47.358986, 8.570428], [47.391431, 8.514967], [47.381176, 8.491584], [47.420997, 8.507281], [47.37271, 8.563304], [47.423366, 8.549808], [47.366904, 8.52329], [47.404077, 8.573307], [47.399824, 8.544415], [47.382705, 8.529399], [47.365163, 8.502614], [47.364274, 8.547371], [47.395211, 8.545154], [47.419773, 8.504381], [47.403214, 8.547374], [47.366416, 8.540637], [47.395182, 8.49153], [47.378066, 8.521544], [47.373989, 8.525592], [47.390818, 8.521869], [47.381342, 8.537516], [47.383496, 8.488716], [47.362656, 8.520648], [47.391398, 8.478249], [47.36844, 8.524486], [47.376867, 8.527558], [47.395991, 8.545448], [47.405288, 8.492948], [47.362517, 8.53444], [47.394696, 8.513973], [47.355132, 8.557917], [47.397493, 8.489641], [47.366432, 8.541856], [47.384244, 8.497353], [47.391068, 8.522947], [47.387832, 8.49847], [47.351633, 8.560676], [47.407474, 8.53832], [47.378984, 8.542367], [47.386865, 8.518438], [47.365081, 8.502652], [47.384035, 8.516089], [47.387309, 8.525745], [47.387045, 8.546017], [47.402342, 8.546375], [47.413902, 8.548033], [47.414032, 8.525879], [47.361411, 8.501745], [47.412938, 8.537876], [47.384414, 8.531314], [47.34485, 8.533574], [47.374209, 8.537528], [47.371001, 8.53145], [47.409693, 8.549894], [47.364374, 8.546275], [47.366903, 8.544328], [47.422363, 8.499595], [47.374865, 8.512726], [47.405993, 8.484681], [47.389818, 8.536326], [47.370545, 8.54913], [47.420565, 8.502435], [47.373624, 8.476247], [47.392841, 8.539038], [47.371725, 8.519548], [47.389446, 8.521325], [47.375975, 8.541921], [47.389219, 8.541559], [47.370541, 8.516253], [47.37232, 8.510662], [47.357616, 8.55409], [47.395951, 8.4861], [47.385135, 8.508072], [47.380403, 8.502296], [47.377016, 8.544021], [47.364505, 8.566256], [47.368809, 8.556522], [47.407674, 8.538059], [47.383016, 8.499885], [47.378775, 8.526471], [47.387004, 8.528507], [47.38737, 8.527918], [47.366116, 8.537242], [47.363464, 8.535201], [47.369481, 8.51704], [47.369895, 8.508389], [47.385246, 8.507743], [47.405381, 8.584306], [47.419543, 8.548018], [47.406062, 8.590044], [47.402427, 8.535592], [47.373897, 8.538183], [47.374685, 8.537577], [47.35789, 8.508902], [47.375112, 8.525721], [47.409871, 8.569561], [47.412384, 8.537507], [47.383421, 8.484079], [47.399398, 8.542816], [47.375206, 8.518599], [47.374836, 8.518684], [47.365219, 8.521653], [47.397167, 8.493834], [47.40451, 8.53692], [47.372727, 8.535378], [47.377683, 8.507578], [47.380211, 8.542949], [47.371509, 8.488268], [47.399477, 8.54303], [47.407487, 8.58508], [47.410777, 8.558755], [47.393195, 8.528223], [47.363386, 8.557335], [47.42284, 8.551255], [47.376867, 8.535172], [47.419727, 8.504526], [47.369909, 8.528025], [47.385415, 8.475364], [47.389792, 8.540008], [47.377332, 8.512458], [47.37137, 8.547519], [47.374164, 8.524152], [47.370679, 8.516878], [47.377573, 8.509735], [47.413852, 8.54578], [47.371381, 8.502288], [47.358116, 8.519444], [47.37842, 8.514413], [47.35783, 8.579988], [47.4093, 8.546758], [47.377539, 8.54198], [47.377454, 8.507044], [47.421138, 8.501704], [47.41216, 8.550594], [47.373365, 8.531644], [47.365312, 8.538562], [47.364452, 8.548527], [47.397881, 8.534002], [47.408628, 8.567892], [47.419236, 8.507948], [47.365416, 8.548322], [47.392664, 8.515853], [47.402491, 8.544881], [47.374436, 8.540048], [47.41305, 8.550653], [47.403919, 8.54609], [47.380502, 8.505198], [47.366412, 8.544847], [47.373056, 8.532949], [47.427025, 8.549062], [47.365681, 8.539457], [47.390603, 8.489624], [47.366455, 8.54036], [47.396471, 8.543193], [47.371404, 8.547732], [47.394185, 8.525368], [47.3667, 8.542033], [47.383994, 8.531028], [47.358368, 8.583812], [47.377298, 8.510245], [47.373354, 8.565556], [47.397104, 8.492813], [47.394276, 8.490253], [47.38472, 8.509242], [47.335574, 8.532841], [47.36616, 8.545756], [47.381113, 8.491636], [47.356221, 8.589868], [47.389395, 8.493799], [47.366574, 8.542031], [47.378043, 8.527767], [47.413531, 8.553896], [47.41027, 8.549773], [47.364267, 8.531074], [47.381632, 8.532502], [47.352284, 8.534098], [47.397989, 8.474549], [47.37455, 8.546023], [47.366289, 8.494507], [47.384278, 8.525723], [47.40559, 8.549994], [47.374371, 8.544973], [47.370054, 8.541176], [47.390953, 8.478743], [47.377495, 8.567974], [47.398753, 8.525528], [47.352103, 8.558634], [47.37711, 8.541759], [47.363941, 8.553944], [47.374338, 8.514251], [47.385887, 8.487836], [47.40903, 8.543944], [47.377611, 8.529665], [47.418198, 8.546572], [47.410713, 8.545728], [47.371317, 8.547399], [47.398096, 8.536007], [47.376546, 8.532914], [47.39413, 8.493403], [47.389859, 8.477331], [47.383822, 8.511966], [47.393435, 8.524717], [47.390433, 8.509026], [47.36459, 8.508163], [47.357027, 8.534751], [47.406826, 8.550523], [47.373554, 8.538229], [47.384993, 8.531008], [47.410942, 8.545361], [47.405264, 8.482733], [47.375919, 8.515409], [47.399064, 8.522103], [47.375372, 8.53338], [47.404606, 8.54943], [47.407634, 8.531831], [47.374168, 8.502423], [47.386113, 8.53523], [47.378119, 8.548096], [47.373891, 8.530278], [47.386486, 8.529119], [47.389233, 8.542937], [47.378956, 8.548101], [47.379718, 8.542687], [47.376821, 8.526683], [47.364145, 8.549566], [47.365922, 8.545248], [47.367734, 8.539168], [47.365181, 8.553096], [47.360956, 8.531151], [47.358667, 8.526908], [47.405754, 8.548884], [47.370022, 8.564121], [47.390923, 8.522136], [47.369115, 8.537806], [47.368471, 8.551523], [47.36587, 8.549722], [47.36876, 8.53821], [47.377319, 8.541472], [47.405866, 8.560599], [47.369962, 8.532898], [47.383493, 8.574551], [47.382145, 8.515309], [47.390724, 8.523165], [47.369257, 8.525655], [47.368, 8.562993], [47.418733, 8.547127], [47.390877, 8.489127], [47.391936, 8.510911], [47.375976, 8.541828], [47.364706, 8.549207], [47.390649, 8.491493], [47.340226, 8.51932], [47.391114, 8.522816], [47.395755, 8.486838], [47.369735, 8.525519], [47.401882, 8.499545], [47.363622, 8.560809], [47.427502, 8.550928], [47.369028, 8.528007], [47.410841, 8.563274], [47.383958, 8.550827], [47.373113, 8.544841], [47.381176, 8.491584], [47.373265, 8.520294], [47.37673, 8.497733], [47.372788, 8.535618], [47.421678, 8.502669], [47.427486, 8.543253], [47.393399, 8.524756], [47.376281, 8.511271], [47.368718, 8.546365], [47.380367, 8.547309], [47.380082, 8.528127], [47.360542, 8.596779], [47.355407, 8.512903], [47.33745, 8.53423], [47.369541, 8.55336], [47.379908, 8.52174], [47.374868, 8.527729], [47.371725, 8.519561], [47.425781, 8.493646], [47.367844, 8.539991], [47.408965, 8.531937], [47.402474, 8.544788], [47.409079, 8.550172], [47.415741, 8.551411], [47.42006, 8.482811], [47.366308, 8.540661], [47.379545, 8.524911], [47.376657, 8.523104], [47.399959, 8.541569], [47.363451, 8.567266], [47.387851, 8.539769], [47.367444, 8.512709], [47.381363, 8.491826], [47.423741, 8.511074], [47.378781, 8.522922], [47.399423, 8.543082], [47.41425, 8.517973], [47.383133, 8.529818], [47.422472, 8.499398], [47.361289, 8.525413], [47.426269, 8.554733], [47.421478, 8.548827], [47.373802, 8.537731], [47.364071, 8.556304], [47.373288, 8.533073], [47.371354, 8.518759], [47.376365, 8.552814], [47.368256, 8.524019], [47.366937, 8.548248], [47.363778, 8.566942], [47.39788, 8.4746], [47.38654, 8.52904], [47.413923, 8.554315], [47.411704, 8.525673], [47.380714, 8.526895], [47.398332, 8.537667], [47.368924, 8.543642], [47.372723, 8.525341], [47.402092, 8.499205], [47.371724, 8.519574], [47.358759, 8.516108], [47.385914, 8.553212], [47.378455, 8.526981], [47.430527, 8.511661], [47.363966, 8.547617], [47.367164, 8.563876], [47.364947, 8.50261], [47.406651, 8.506185], [47.387319, 8.487679], [47.377231, 8.499067], [47.363987, 8.535993], [47.424982, 8.548264], [47.393462, 8.524731], [47.378582, 8.526838], [47.402547, 8.553083], [47.384408, 8.534784], [47.414566, 8.560398], [47.411829, 8.524841], [47.361773, 8.560452], [47.409078, 8.481734], [47.422495, 8.550611], [47.36922, 8.541874], [47.336356, 8.526241], [47.367512, 8.523673], [47.412336, 8.506193], [47.391606, 8.51354], [47.374216, 8.475398], [47.362577, 8.612604], [47.344966, 8.533696], [47.377107, 8.523034], [47.418553, 8.547123], [47.335067, 8.527419], [47.388597, 8.483691], [47.379606, 8.537453], [47.376271, 8.494798], [47.376775, 8.527755], [47.362275, 8.532516], [47.376089, 8.489153], [47.357784, 8.527009], [47.379946, 8.483349], [47.413585, 8.530389], [47.37642, 8.528184], [47.386379, 8.518494], [47.374518, 8.539957], [47.369605, 8.533566], [47.366455, 8.540333], [47.375401, 8.526574], [47.388361, 8.539117], [47.372618, 8.521221], [47.39425, 8.490173], [47.376438, 8.534859], [47.370627, 8.524332], [47.346387, 8.528907], [47.392891, 8.53476], [47.419836, 8.504395], [47.383495, 8.530567], [47.367068, 8.543947], [47.362761, 8.567966], [47.37466, 8.549587], [47.399742, 8.492507], [47.370908, 8.535526], [47.419967, 8.506757], [47.403296, 8.493465], [47.383619, 8.530742], [47.348387, 8.534335], [47.360793, 8.550106], [47.411133, 8.526138], [47.371551, 8.550184], [47.405671, 8.585915], [47.371456, 8.562735], [47.365998, 8.533585], [47.382337, 8.549125], [47.343419, 8.535583], [47.37803, 8.541473], [47.354206, 8.557818], [47.388392, 8.480468], [47.411062, 8.571018], [47.40588, 8.586609], [47.391138, 8.489079], [47.373281, 8.52432], [47.399854, 8.544098], [47.378462, 8.567478], [47.390976, 8.517408], [47.374, 8.524414], [47.404073, 8.564523], [47.420898, 8.507293], [47.344288, 8.535018], [47.378948, 8.508888], [47.378388, 8.541692], [47.370707, 8.538687], [47.372724, 8.534729], [47.369897, 8.541623], [47.383472, 8.512806], [47.375222, 8.525498], [47.32923, 8.518779], [47.391367, 8.536106], [47.398223, 8.536831], [47.372981, 8.531345], [47.373376, 8.494701], [47.382334, 8.487872], [47.374306, 8.522474], [47.372364, 8.537635], [47.373896, 8.538263], [47.39619, 8.505154], [47.430964, 8.550152], [47.370188, 8.548792], [47.368879, 8.539867], [47.376363, 8.54369], [47.359387, 8.535422], [47.374509, 8.53997], [47.40378, 8.534163], [47.354099, 8.575288], [47.364891, 8.545875], [47.381996, 8.529278], [47.366636, 8.540178], [47.387527, 8.498372], [47.389358, 8.536396], [47.373612, 8.519745], [47.376067, 8.537923], [47.355534, 8.553583], [47.370334, 8.518235], [47.382451, 8.529645], [47.375686, 8.556958], [47.377214, 8.512561], [47.363087, 8.547294], [47.353471, 8.558544], [47.369886, 8.510269], [47.393206, 8.494153], [47.375836, 8.523313], [47.396162, 8.532231], [47.40228, 8.57678], [47.348259, 8.562643], [47.373959, 8.544832], [47.387861, 8.498325], [47.389713, 8.511979], [47.368858, 8.528824], [47.409992, 8.543115], [47.355601, 8.532405], [47.375491, 8.524616], [47.375613, 8.526963], [47.404588, 8.533437], [47.364446, 8.536929], [47.402804, 8.57744], [47.366496, 8.545432], [47.384868, 8.493074], [47.32315, 8.504171], [47.372889, 8.554132], [47.429901, 8.53808], [47.356579, 8.522179], [47.369533, 8.533552], [47.392231, 8.476675], [47.387832, 8.524696], [47.384216, 8.511139], [47.406236, 8.588816], [47.410629, 8.551676], [47.370214, 8.537591], [47.372035, 8.519117], [47.374416, 8.541253], [47.374407, 8.541226], [47.365128, 8.534163], [47.392387, 8.524285], [47.37859, 8.542187], [47.414015, 8.549427], [47.368105, 8.546498], [47.426315, 8.554668], [47.415949, 8.51427], [47.412976, 8.541494], [47.363031, 8.535245], [47.339872, 8.530124], [47.36823, 8.560562], [47.395588, 8.475469], [47.370116, 8.548843], [47.379901, 8.527289], [47.381201, 8.582567], [47.412295, 8.557978], [47.372629, 8.52857], [47.392116, 8.509921], [47.429814, 8.549054], [47.372711, 8.534173], [47.354352, 8.553042], [47.364412, 8.546143], [47.377796, 8.541495], [47.384697, 8.544114], [47.411133, 8.526151], [47.375975, 8.541921], [47.381789, 8.540611], [47.371494, 8.547667], [47.375491, 8.544559], [47.392441, 8.503013], [47.378866, 8.527281], [47.374457, 8.53981], [47.369083, 8.556131], [47.364429, 8.54617], [47.411406, 8.525786], [47.378387, 8.517034], [47.414706, 8.551469], [47.380395, 8.528252], [47.386105, 8.548342], [47.385329, 8.530631], [47.403262, 8.548011], [47.394474, 8.541323], [47.382138, 8.531321], [47.425368, 8.494592], [47.431345, 8.516476], [47.358937, 8.534459], [47.410742, 8.555865], [47.364305, 8.566463], [47.379838, 8.524387], [47.381925, 8.559234], [47.40175, 8.499224], [47.358312, 8.584962], [47.36328, 8.546848], [47.368988, 8.52839], [47.386545, 8.503478], [47.418705, 8.547153], [47.375535, 8.540879], [47.414106, 8.51895], [47.369663, 8.518778], [47.350957, 8.559907], [47.372936, 8.531318], [47.362098, 8.529268], [47.38206, 8.502077], [47.360768, 8.550833], [47.392371, 8.481076], [47.409094, 8.578118], [47.367334, 8.52355], [47.406907, 8.550577], [47.357861, 8.509193], [47.386971, 8.53485], [47.419958, 8.506757], [47.379367, 8.527556], [47.414802, 8.561052], [47.341068, 8.530241], [47.380458, 8.519606], [47.358799, 8.585754], [47.403867, 8.486031], [47.395903, 8.510924], [47.370713, 8.535218], [47.388292, 8.497354], [47.381022, 8.538079], [47.383094, 8.513805], [47.364836, 8.55436], [47.405117, 8.481126], [47.413682, 8.546611], [47.390344, 8.51676], [47.36359, 8.535164], [47.381384, 8.533093], [47.392415, 8.509715], [47.390102, 8.509907], [47.393426, 8.524717], [47.375829, 8.540183], [47.376671, 8.534956], [47.392351, 8.47632], [47.381041, 8.535126], [47.367155, 8.544254], [47.399133, 8.507942], [47.389493, 8.526928], [47.367082, 8.544385], [47.37929, 8.559192], [47.374094, 8.535433], [47.362601, 8.574225], [47.402351, 8.499316], [47.379783, 8.527379], [47.388183, 8.497497], [47.370003, 8.520863], [47.394663, 8.526146], [47.371903, 8.52069], [47.371861, 8.601792], [47.37124, 8.558122], [47.363255, 8.575404], [47.360212, 8.551669], [47.323053, 8.514633], [47.369187, 8.602978], [47.34, 8.529902], [47.369456, 8.520733], [47.37923, 8.552357], [47.3702, 8.491831], [47.371952, 8.536475], [47.410357, 8.548225], [47.397011, 8.480266], [47.391864, 8.482404], [47.369646, 8.536824], [47.387233, 8.488247], [47.39988, 8.585764], [47.349749, 8.53112], [47.362366, 8.561405], [47.378531, 8.5752], [47.373324, 8.533087], [47.399509, 8.50126], [47.361422, 8.506405], [47.348335, 8.533116], [47.354772, 8.55509], [47.376928, 8.517137], [47.377473, 8.509825], [47.347494, 8.564493], [47.357433, 8.553464], [47.387368, 8.498143], [47.383683, 8.588104], [47.368253, 8.536716], [47.37774, 8.543573], [47.366087, 8.533666], [47.407449, 8.585357], [47.373636, 8.542852], [47.408897, 8.54569], [47.359453, 8.551097], [47.365404, 8.537399], [47.378769, 8.530881], [47.416507, 8.506489], [47.397285, 8.510277], [47.370562, 8.48956], [47.396013, 8.527022], [47.372185, 8.520378], [47.36817, 8.538793], [47.369103, 8.57157], [47.41393, 8.544231], [47.360514, 8.569666], [47.371124, 8.520264], [47.36778, 8.54477], [47.416116, 8.565586], [47.378944, 8.509378], [47.369808, 8.530128], [47.427389, 8.539275], [47.412087, 8.546034], [47.382093, 8.5539], [47.367967, 8.568235], [47.42079, 8.508205], [47.408917, 8.546432], [47.4057, 8.489194], [47.391033, 8.522867], [47.384315, 8.531286], [47.423769, 8.496363], [47.39105, 8.522933], [47.368364, 8.541035], [47.422459, 8.550637], [47.391321, 8.536238], [47.369878, 8.540762], [47.35783, 8.580001], [47.370997, 8.535647], [47.425019, 8.539756], [47.36956, 8.547667], [47.405121, 8.48163], [47.405121, 8.481657], [47.381201, 8.538162], [47.357855, 8.520405], [47.405813, 8.590648], [47.375052, 8.545239], [47.384306, 8.531273], [47.409189, 8.544252], [47.368264, 8.511586], [47.337799, 8.519151], [47.369435, 8.525844], [47.39106, 8.52096], [47.358193, 8.571444], [47.378549, 8.560395], [47.357884, 8.571848], [47.420293, 8.50846], [47.36173, 8.526375], [47.38836, 8.536323], [47.37674, 8.523821], [47.388833, 8.477417], [47.370515, 8.549395], [47.363756, 8.535657], [47.362901, 8.556319]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_e1fad43dbdabe3b90bc063ed4b66bbe9 = L.heatLayer(\n", - " [[47.368651, 8.534527], [47.381456, 8.535902], [47.364672, 8.536815], [47.366747, 8.542683], [47.366373, 8.540477], [47.369319, 8.541849], [47.365272, 8.538919], [47.384418, 8.516547], [47.370776, 8.535246], [47.357772, 8.521621], [47.380824, 8.538088], [47.407642, 8.584036], [47.349663, 8.529729], [47.349663, 8.529729], [47.368516, 8.530697], [47.354588, 8.552756], [47.356879, 8.514164], [47.378192, 8.509906], [47.386705, 8.547639], [47.3832, 8.53031], [47.372454, 8.535651], [47.376483, 8.521525], [47.39423, 8.493326], [47.375506, 8.547698], [47.365099, 8.545773], [47.410654, 8.543447], [47.37328, 8.533059], [47.37454, 8.538607], [47.387519, 8.519709], [47.345473, 8.532369], [47.390575, 8.48965], [47.366938, 8.564877], [47.388899, 8.483021], [47.377242, 8.541987], [47.361537, 8.565293], [47.370574, 8.470295], [47.38048, 8.517262], [47.38429, 8.53208], [47.38972, 8.486825], [47.407993, 8.58672], [47.390903, 8.523328], [47.403984, 8.573636], [47.363556, 8.52154], [47.403674, 8.571324], [47.411669, 8.563226], [47.370089, 8.548843], [47.3905, 8.479119], [47.420726, 8.502452], [47.38551, 8.488756], [47.36641, 8.545072], [47.369749, 8.522116], [47.404831, 8.542889], [47.366432, 8.540836], [47.368323, 8.546304], [47.408893, 8.532837], [47.378481, 8.540397], [47.360981, 8.531417], [47.373426, 8.51745], [47.365182, 8.531344], [47.395258, 8.526013], [47.406349, 8.582869], [47.375489, 8.537157], [47.371167, 8.548058], [47.357085, 8.555006], [47.367594, 8.519782], [47.3299, 8.529775], [47.377629, 8.529692], [47.363148, 8.535234], [47.378887, 8.526937], [47.344007, 8.531426], [47.376938, 8.540908], [47.388316, 8.536269], [47.359227, 8.553065], [47.410616, 8.572519], [47.378852, 8.524976], [47.37125, 8.537453], [47.367893, 8.54607], [47.360781, 8.548583], [47.374507, 8.540209], [47.377749, 8.48855], [47.368853, 8.511082], [47.387456, 8.525417], [47.398787, 8.506438], [47.377005, 8.543346], [47.376742, 8.483617], [47.38209, 8.49886], [47.369614, 8.513454], [47.39417, 8.482104], [47.40055, 8.492749], [47.415954, 8.515595], [47.365487, 8.598767], [47.373224, 8.550193], [47.399799, 8.541367], [47.384455, 8.516455], [47.415745, 8.546336], [47.393832, 8.500444], [47.393766, 8.499741], [47.392098, 8.549037], [47.417065, 8.541897], [47.375553, 8.541793], [47.393443, 8.512319], [47.407912, 8.536699], [47.41387, 8.546694], [47.387677, 8.497699], [47.353103, 8.528396], [47.386351, 8.533871], [47.382284, 8.551838], [47.369166, 8.527612], [47.376647, 8.548754], [47.415587, 8.509571], [47.37329, 8.494235], [47.390741, 8.523311], [47.395714, 8.532076], [47.40952, 8.542642], [47.373342, 8.5331], [47.400645, 8.544127], [47.375191, 8.537336], [47.359591, 8.569302], [47.361288, 8.525519], [47.370253, 8.514354], [47.370197, 8.548792], [47.374389, 8.52511], [47.417325, 8.554135], [47.369048, 8.518222], [47.358312, 8.5206], [47.409004, 8.545758], [47.393807, 8.503093], [47.351404, 8.576726], [47.369071, 8.525293], [47.381272, 8.556969], [47.401457, 8.489852], [47.413318, 8.521479], [47.416237, 8.545644], [47.373297, 8.533086], [47.395867, 8.506062], [47.382801, 8.556021], [47.414522, 8.551002], [47.369041, 8.502479], [47.361684, 8.561205], [47.356546, 8.558701], [47.386953, 8.534903], [47.410358, 8.548119], [47.369657, 8.533713], [47.378858, 8.531002], [47.366358, 8.534453], [47.397531, 8.489364], [47.370289, 8.514315], [47.376649, 8.495785], [47.395908, 8.526755], [47.4145, 8.554221], [47.416238, 8.532352], [47.395402, 8.526069], [47.413885, 8.546059], [47.388449, 8.484098], [47.373171, 8.551992], [47.376002, 8.577146], [47.374168, 8.502423], [47.377127, 8.521829], [47.423714, 8.539795], [47.393183, 8.530474], [47.382454, 8.544439], [47.382539, 8.529793], [47.391439, 8.519882], [47.374283, 8.524949], [47.370464, 8.526407], [47.368437, 8.534337], [47.388608, 8.545229], [47.377912, 8.510046], [47.383833, 8.530892], [47.369665, 8.506994], [47.425791, 8.49354], [47.382675, 8.507639], [47.39878, 8.590549], [47.405201, 8.480757], [47.368183, 8.524097], [47.410929, 8.542923], [47.359224, 8.516435], [47.40688, 8.550537], [47.378217, 8.54353], [47.373189, 8.551913], [47.374206, 8.47557], [47.369603, 8.55348], [47.378722, 8.542441], [47.37158, 8.522484], [47.369772, 8.53684], [47.409755, 8.544316], [47.372685, 8.547321], [47.370417, 8.518038], [47.372872, 8.547471], [47.381852, 8.51386], [47.363026, 8.556467], [47.400729, 8.548541], [47.387147, 8.519026], [47.39688, 8.493656], [47.38439, 8.531976], [47.357784, 8.554385], [47.393601, 8.529132], [47.381387, 8.510738], [47.386447, 8.496509], [47.377189, 8.540052], [47.409506, 8.549704], [47.355927, 8.522682], [47.422539, 8.550745], [47.41144, 8.528], [47.377689, 8.537573], [47.393741, 8.472731], [47.376784, 8.538163], [47.405492, 8.549872], [47.386051, 8.539851], [47.413184, 8.533733], [47.37774, 8.54356], [47.37639, 8.527548], [47.371096, 8.535623], [47.367182, 8.523454], [47.412702, 8.517067], [47.37339, 8.528957], [47.372034, 8.502711], [47.397472, 8.493827], [47.365207, 8.545696], [47.388477, 8.536325], [47.387242, 8.48532], [47.376874, 8.541939], [47.385322, 8.475706], [47.399754, 8.5185], [47.40027, 8.493869], [47.377218, 8.539881], [47.391396, 8.5453], [47.354878, 8.574696], [47.37376, 8.500839], [47.361463, 8.532764], [47.384417, 8.528123], [47.376642, 8.544596], [47.36844, 8.536919], [47.387989, 8.485229], [47.383263, 8.548256], [47.338293, 8.530648], [47.373297, 8.533086], [47.37745, 8.541964], [47.391477, 8.486423], [47.358273, 8.584352], [47.360254, 8.566761], [47.392368, 8.476466], [47.365215, 8.501768], [47.372488, 8.526383], [47.406752, 8.585779], [47.365789, 8.556326], [47.364, 8.546889], [47.381397, 8.542099], [47.405557, 8.562726], [47.410864, 8.562718], [47.366487, 8.540771], [47.410044, 8.569327], [47.3704, 8.549207], [47.334841, 8.531344], [47.372309, 8.572128], [47.364738, 8.534539], [47.400627, 8.508754], [47.413341, 8.531457], [47.378755, 8.539926], [47.386924, 8.535088], [47.387837, 8.4861], [47.378482, 8.526995], [47.414747, 8.519666], [47.384755, 8.532355], [47.419697, 8.556212], [47.392383, 8.539015], [47.386105, 8.548342], [47.366418, 8.540399], [47.3852, 8.529079], [47.373289, 8.533046], [47.407696, 8.546129], [47.386242, 8.49824], [47.395533, 8.482582], [47.387368, 8.49813], [47.384408, 8.531924], [47.381495, 8.513561], [47.415787, 8.552247], [47.372445, 8.537544], [47.409646, 8.575983], [47.383158, 8.505913], [47.387637, 8.519553], [47.377031, 8.553702], [47.383986, 8.547874], [47.369277, 8.548137], [47.378691, 8.509452], [47.370575, 8.546933], [47.367584, 8.523701], [47.39093, 8.523302], [47.419678, 8.548008], [47.369482, 8.566003], [47.403274, 8.497784], [47.373377, 8.514099], [47.372829, 8.514035], [47.389354, 8.491401], [47.40067, 8.492327], [47.391413, 8.519775], [47.366206, 8.548471], [47.367951, 8.560582], [47.411153, 8.545803], [47.372159, 8.555215], [47.37606, 8.535752], [47.377495, 8.543793], [47.369772, 8.532007], [47.369561, 8.525806], [47.368161, 8.521647], [47.377216, 8.526784], [47.382182, 8.512224], [47.372156, 8.473398], [47.377358, 8.512524], [47.374159, 8.54089], [47.375891, 8.51652], [47.362162, 8.529257], [47.392513, 8.523294], [47.354325, 8.51124], [47.376519, 8.534847], [47.378429, 8.526914], [47.363642, 8.567138], [47.373536, 8.544902], [47.376078, 8.524337], [47.379222, 8.511357], [47.391532, 8.486278], [47.362195, 8.547487], [47.380735, 8.512089], [47.394011, 8.532386], [47.360841, 8.553602], [47.360287, 8.570773], [47.369269, 8.52535], [47.411284, 8.486442], [47.407795, 8.578501], [47.381127, 8.49202], [47.385312, 8.530565], [47.347672, 8.528073], [47.357086, 8.593355], [47.333931, 8.515276], [47.379969, 8.541924], [47.409272, 8.549713], [47.403916, 8.503322], [47.37836, 8.517948], [47.363922, 8.533304], [47.378939, 8.544273], [47.427816, 8.536964], [47.428465, 8.489311], [47.348272, 8.533142], [47.376916, 8.527996], [47.371001, 8.531437], [47.375318, 8.531552], [47.377372, 8.511081], [47.414488, 8.554513], [47.37939, 8.54219], [47.379435, 8.537556], [47.402031, 8.545998], [47.387834, 8.488457], [47.382012, 8.475774], [47.417114, 8.506978], [47.357668, 8.535439], [47.38353, 8.513337], [47.402145, 8.497351], [47.363794, 8.598928], [47.394604, 8.531417], [47.378491, 8.502906], [47.397363, 8.531766], [47.407645, 8.538323], [47.42387, 8.522316], [47.339402, 8.518946], [47.428742, 8.543544], [47.373226, 8.533045], [47.396348, 8.513384], [47.36999, 8.548814], [47.378564, 8.54208], [47.376909, 8.527837], [47.377018, 8.541916], [47.360579, 8.516754], [47.379758, 8.536635], [47.406489, 8.550052], [47.380382, 8.534397], [47.380411, 8.513089], [47.364499, 8.554843], [47.399589, 8.497433], [47.359581, 8.558235], [47.368044, 8.540618], [47.381435, 8.517123], [47.403137, 8.555321], [47.376512, 8.559902], [47.363901, 8.551494], [47.381262, 8.571802], [47.410746, 8.545185], [47.385913, 8.492909], [47.419366, 8.505579], [47.378191, 8.52634], [47.419523, 8.50814], [47.370663, 8.47035], [47.386726, 8.547335], [47.356399, 8.519343], [47.391529, 8.54268], [47.363046, 8.522205], [47.386922, 8.519022], [47.36163, 8.561283], [47.427546, 8.546316], [47.4138, 8.545553], [47.36119, 8.532136], [47.370191, 8.514273], [47.384432, 8.548307], [47.365751, 8.545337], [47.398024, 8.534097], [47.408821, 8.504003], [47.405395, 8.565465], [47.373991, 8.530134], [47.383666, 8.52865], [47.370324, 8.469099], [47.378256, 8.541345], [47.3623, 8.504768], [47.392283, 8.514282], [47.367102, 8.54412], [47.371563, 8.517611], [47.390919, 8.52354], [47.421288, 8.549897], [47.391784, 8.505013], [47.376086, 8.512949], [47.386369, 8.518507], [47.378866, 8.510913], [47.414097, 8.51895], [47.361869, 8.532626], [47.376222, 8.526247], [47.392324, 8.503037], [47.35414, 8.530932], [47.398168, 8.535041], [47.332637, 8.518028], [47.380008, 8.52643], [47.398614, 8.593579], [47.389249, 8.521268], [47.423843, 8.521321], [47.391421, 8.5342], [47.368022, 8.485962], [47.378957, 8.529123], [47.353393, 8.51179], [47.407702, 8.578804], [47.376584, 8.494076], [47.414287, 8.572398], [47.378552, 8.541444], [47.347775, 8.530537], [47.331394, 8.537294], [47.370389, 8.514251], [47.363548, 8.500119], [47.360984, 8.560197], [47.361657, 8.526479], [47.399463, 8.543626], [47.3878, 8.527092], [47.374775, 8.520444], [47.375297, 8.486198], [47.366513, 8.540838], [47.384033, 8.497825], [47.375949, 8.529446], [47.361581, 8.565386], [47.386704, 8.488038], [47.372446, 8.550613], [47.4114, 8.54443], [47.404213, 8.562234], [47.383754, 8.526904], [47.334773, 8.52998], [47.406784, 8.536119], [47.365391, 8.564818], [47.379151, 8.495596], [47.394685, 8.531472], [47.354386, 8.557888], [47.392285, 8.502361], [47.370561, 8.549316], [47.374708, 8.588784], [47.385668, 8.499023], [47.408943, 8.574338], [47.368608, 8.540947], [47.375435, 8.560581], [47.375264, 8.490832], [47.415493, 8.563121], [47.424304, 8.508514], [47.400123, 8.58663], [47.349682, 8.562448], [47.422368, 8.542259], [47.370233, 8.548819], [47.405483, 8.549872], [47.386245, 8.535498], [47.394853, 8.527952], [47.398059, 8.536085], [47.367038, 8.544278], [47.359571, 8.522611], [47.357721, 8.554397], [47.377228, 8.539775], [47.410272, 8.544884], [47.430843, 8.544012], [47.39102, 8.522297], [47.366043, 8.530647], [47.354953, 8.554127], [47.3764, 8.544525], [47.375682, 8.512888], [47.388882, 8.495829], [47.388927, 8.515301], [47.383403, 8.484079], [47.378733, 8.542269], [47.370139, 8.5217], [47.361607, 8.506753], [47.380853, 8.517826], [47.402018, 8.495441], [47.369912, 8.537214], [47.359789, 8.588383], [47.393426, 8.524717], [47.368822, 8.528863], [47.388356, 8.526283], [47.387914, 8.488552], [47.422705, 8.543764], [47.375283, 8.544647], [47.387173, 8.551411], [47.367583, 8.520934], [47.364604, 8.566191], [47.338648, 8.538793], [47.385065, 8.54791], [47.389419, 8.511695], [47.372981, 8.54738], [47.385849, 8.48214], [47.390548, 8.489716], [47.371547, 8.519266], [47.375142, 8.51865], [47.413359, 8.531405], [47.39923, 8.542588], [47.398648, 8.542271], [47.373957, 8.48919], [47.370579, 8.528475], [47.379825, 8.528651], [47.398206, 8.536724], [47.390178, 8.528678], [47.338225, 8.528317], [47.414326, 8.538501], [47.374454, 8.539175], [47.377355, 8.548107], [47.374131, 8.51908], [47.426869, 8.546567], [47.388998, 8.48897], [47.367061, 8.545602], [47.380651, 8.52688], [47.426626, 8.555045], [47.367906, 8.494778], [47.389741, 8.511913], [47.393592, 8.501115], [47.409862, 8.479563], [47.370708, 8.470391], [47.372222, 8.524033], [47.36768, 8.539194], [47.392139, 8.476872], [47.419596, 8.548073], [47.378577, 8.519713], [47.392072, 8.499151], [47.383398, 8.548246], [47.416152, 8.546079], [47.411118, 8.57086], [47.377105, 8.527126], [47.38309, 8.528625], [47.377016, 8.535573], [47.420745, 8.501445], [47.376319, 8.495434], [47.387247, 8.518975], [47.373966, 8.476267], [47.378501, 8.540198], [47.370197, 8.548792], [47.391522, 8.516704], [47.370188, 8.548792], [47.363659, 8.55983], [47.368519, 8.541819], [47.361378, 8.513089], [47.403056, 8.576531], [47.385781, 8.548309], [47.381853, 8.583998], [47.370078, 8.548988], [47.370061, 8.548895], [47.407258, 8.568128], [47.390587, 8.489412], [47.388355, 8.54072], [47.374861, 8.519876], [47.362948, 8.518337], [47.357369, 8.550723], [47.360305, 8.565253], [47.407564, 8.53069], [47.374577, 8.538555], [47.383282, 8.548164], [47.372727, 8.510458], [47.36331, 8.527678], [47.374089, 8.513928], [47.363342, 8.520477], [47.390703, 8.522595], [47.373004, 8.546904], [47.362828, 8.521472], [47.372836, 8.518074], [47.374529, 8.540699], [47.415133, 8.562239], [47.369725, 8.525585], [47.367855, 8.551934], [47.406008, 8.481051], [47.378444, 8.540515], [47.40411, 8.541099], [47.378065, 8.530165], [47.390539, 8.52283], [47.328158, 8.529408], [47.400474, 8.531922], [47.369511, 8.538702], [47.394744, 8.536679], [47.384376, 8.531526], [47.415755, 8.512888], [47.363709, 8.551874], [47.405237, 8.561368], [47.347312, 8.528119], [47.375109, 8.529839], [47.360796, 8.548848], [47.3825, 8.548108], [47.370197, 8.548805], [47.382048, 8.514062], [47.388582, 8.486247], [47.377281, 8.548291], [47.407041, 8.55066], [47.359447, 8.552619], [47.348396, 8.534296], [47.391209, 8.48916], [47.369678, 8.532456], [47.414008, 8.549202], [47.369462, 8.541918], [47.409561, 8.569091], [47.375102, 8.52482], [47.401878, 8.504871], [47.374554, 8.539031], [47.369161, 8.548029], [47.362, 8.560232], [47.398969, 8.513954], [47.398969, 8.51398], [47.337696, 8.530106], [47.38729, 8.527811], [47.398614, 8.547755], [47.388865, 8.484809], [47.409204, 8.538939], [47.404628, 8.594915], [47.370504, 8.535518], [47.395903, 8.545261], [47.366738, 8.541769], [47.365977, 8.55727], [47.374318, 8.544892], [47.368103, 8.529709], [47.371389, 8.522719], [47.355235, 8.527394], [47.405201, 8.56138], [47.404345, 8.574413], [47.40677, 8.585766], [47.417724, 8.54537], [47.410986, 8.562178], [47.366613, 8.547341], [47.36612, 8.531999], [47.37017, 8.548778], [47.384835, 8.539985], [47.36956, 8.466992], [47.422074, 8.550444], [47.429435, 8.54165], [47.361086, 8.535496], [47.405612, 8.591836], [47.374794, 8.55245], [47.374105, 8.546503], [47.376306, 8.534485], [47.406627, 8.567359], [47.353125, 8.577293], [47.344247, 8.532688], [47.360624, 8.524459], [47.36875, 8.528835], [47.372872, 8.567042], [47.38241, 8.558331], [47.364535, 8.53701], [47.363642, 8.546617], [47.370123, 8.543335], [47.405629, 8.54969], [47.410741, 8.550326], [47.408619, 8.529532], [47.395876, 8.515772], [47.376877, 8.540668], [47.387147, 8.519053], [47.386048, 8.545824], [47.338922, 8.539288], [47.3768, 8.517439], [47.365346, 8.521603], [47.35711, 8.523117], [47.409484, 8.543569], [47.408531, 8.580504], [47.39361, 8.511792], [47.352033, 8.558368], [47.393219, 8.492696], [47.376902, 8.517097], [47.377599, 8.522342], [47.377255, 8.529274], [47.381334, 8.510605], [47.374103, 8.542954], [47.378607, 8.504961], [47.390629, 8.489638], [47.342789, 8.530793], [47.357756, 8.554477], [47.378796, 8.530921], [47.384307, 8.528359], [47.406779, 8.584826], [47.410389, 8.487895], [47.366473, 8.540347], [47.37702, 8.537056], [47.38308, 8.541074], [47.359479, 8.557677], [47.366507, 8.534853], [47.372414, 8.523773], [47.338896, 8.539169], [47.377338, 8.546081], [47.362743, 8.519048], [47.368096, 8.536117], [47.361527, 8.525907], [47.402919, 8.554641], [47.404519, 8.575079], [47.408668, 8.546136], [47.341747, 8.530731], [47.384476, 8.538097], [47.381939, 8.555937], [47.372814, 8.535645], [47.38848, 8.528471], [47.359688, 8.549063], [47.361352, 8.522607], [47.370703, 8.535363], [47.374977, 8.483795], [47.377159, 8.52518], [47.368164, 8.510684], [47.369981, 8.548841], [47.376936, 8.533518], [47.358322, 8.509864], [47.419755, 8.504447], [47.37707, 8.539348], [47.38408, 8.525745], [47.365935, 8.548598], [47.391941, 8.51809], [47.375623, 8.537318], [47.378461, 8.548156], [47.387927, 8.485148], [47.37466, 8.545879], [47.390846, 8.514969], [47.370547, 8.517564], [47.387666, 8.525143], [47.38599, 8.498235], [47.408503, 8.564987], [47.406912, 8.586869], [47.368599, 8.534353], [47.382981, 8.540159], [47.37042, 8.518661], [47.390486, 8.509133], [47.392833, 8.532295], [47.389673, 8.534509], [47.353254, 8.577044], [47.373943, 8.544606], [47.374979, 8.492508], [47.378581, 8.5422], [47.378698, 8.544016], [47.332674, 8.517949], [47.381321, 8.483548], [47.40362, 8.49636], [47.392695, 8.524093], [47.376696, 8.511187], [47.403938, 8.549681], [47.423985, 8.549026], [47.399479, 8.583503], [47.428101, 8.489848], [47.35479, 8.526829], [47.410038, 8.542997], [47.393462, 8.524731], [47.367895, 8.541184], [47.384964, 8.53212], [47.37639, 8.525615], [47.382683, 8.537411], [47.42874, 8.488826], [47.348303, 8.562697], [47.392327, 8.523926], [47.380442, 8.51946], [47.391253, 8.515666], [47.370481, 8.52462], [47.373437, 8.538227], [47.354715, 8.558265], [47.419552, 8.548019], [47.374784, 8.520365], [47.388487, 8.488788], [47.364399, 8.55022], [47.350669, 8.579146], [47.406701, 8.538291], [47.408005, 8.546745], [47.375081, 8.519391], [47.36833, 8.546542], [47.351401, 8.534238], [47.36637, 8.533222], [47.403777, 8.548671], [47.394223, 8.490159], [47.378802, 8.542588], [47.402598, 8.49993], [47.37273, 8.529393], [47.364357, 8.556442], [47.369622, 8.533646], [47.381968, 8.551064], [47.36844, 8.55], [47.360854, 8.531507], [47.389898, 8.491981], [47.428029, 8.545663], [47.37759, 8.506901], [47.368583, 8.524621], [47.36712, 8.544134], [47.411209, 8.570743], [47.422586, 8.550507], [47.383428, 8.539453], [47.362419, 8.535299], [47.36509, 8.553267], [47.369222, 8.525561], [47.368987, 8.538016], [47.355574, 8.532458], [47.35981, 8.508544], [47.366388, 8.520764], [47.412143, 8.54858], [47.381528, 8.548194], [47.388317, 8.490745], [47.379125, 8.511196], [47.347414, 8.526824], [47.362627, 8.519933], [47.370776, 8.535219], [47.388599, 8.528261], [47.372239, 8.535554], [47.367108, 8.539751], [47.375544, 8.52091], [47.396172, 8.505207], [47.379972, 8.548122], [47.376952, 8.528963], [47.37149, 8.515783], [47.418536, 8.54695], [47.365461, 8.546456], [47.374776, 8.501945], [47.390681, 8.48895], [47.379278, 8.537937], [47.386373, 8.473939], [47.404635, 8.550225], [47.410804, 8.560544], [47.414862, 8.545562], [47.381959, 8.513968], [47.358936, 8.577311], [47.406907, 8.550577], [47.365334, 8.532446], [47.372971, 8.55126], [47.377654, 8.537546], [47.366228, 8.553727], [47.363031, 8.525779], [47.419794, 8.533936], [47.374461, 8.521325], [47.379025, 8.494654], [47.374264, 8.525028], [47.37268, 8.534609], [47.393857, 8.505479], [47.38058, 8.512377], [47.390712, 8.539722], [47.36374, 8.535432], [47.383029, 8.575137], [47.418132, 8.510709], [47.392098, 8.502158], [47.37094, 8.548265], [47.404685, 8.557129], [47.361037, 8.548165], [47.402963, 8.535988], [47.36473, 8.554159], [47.362831, 8.548731], [47.38154, 8.513575], [47.42501, 8.55195], [47.373235, 8.533058], [47.370644, 8.516772], [47.400109, 8.545693], [47.408832, 8.557057], [47.37311, 8.532937], [47.386716, 8.495627], [47.419124, 8.506462], [47.419037, 8.539778], [47.407877, 8.550757], [47.414074, 8.541371], [47.38409, 8.509243], [47.407534, 8.584895], [47.380015, 8.546494], [47.39133, 8.536198], [47.36812, 8.547796], [47.389265, 8.527228], [47.371834, 8.536605], [47.363977, 8.530366], [47.380453, 8.524956], [47.416685, 8.509567], [47.358722, 8.517179], [47.404812, 8.557039], [47.374584, 8.541587], [47.375711, 8.539346], [47.369185, 8.538947], [47.372536, 8.528926], [47.361544, 8.514589], [47.362473, 8.53526], [47.373157, 8.534606], [47.378892, 8.566825], [47.378297, 8.530368], [47.365181, 8.566045], [47.390487, 8.522591], [47.387669, 8.5295], [47.355638, 8.532274], [47.376861, 8.543329], [47.416309, 8.508393], [47.416089, 8.508786], [47.416354, 8.508381], [47.416062, 8.508826], [47.399565, 8.49616], [47.417512, 8.483105], [47.365476, 8.552388], [47.423124, 8.538471], [47.377411, 8.539368], [47.37814, 8.483221], [47.418571, 8.547137], [47.386697, 8.5476], [47.40405, 8.578871], [47.406684, 8.561517], [47.422589, 8.537055], [47.420883, 8.507849], [47.415567, 8.521445], [47.378489, 8.509912], [47.369014, 8.53799], [47.378822, 8.563791], [47.384941, 8.508691], [47.363357, 8.519775], [47.395661, 8.522365], [47.363902, 8.531635], [47.364757, 8.502685], [47.413851, 8.546813], [47.364349, 8.555422], [47.384233, 8.497578], [47.387093, 8.48982], [47.412289, 8.553963], [47.390789, 8.488913], [47.378305, 8.540923], [47.34928, 8.577753], [47.343886, 8.529915], [47.40347, 8.556296], [47.394589, 8.525483], [47.376905, 8.540616], [47.424701, 8.537218], [47.365254, 8.556765], [47.39179, 8.487595], [47.337786, 8.535732], [47.395437, 8.494078], [47.377149, 8.543296], [47.371405, 8.547559], [47.391279, 8.514845], [47.382196, 8.540367], [47.343491, 8.535545], [47.368209, 8.555305], [47.367983, 8.546111], [47.352018, 8.576488], [47.36989, 8.525217], [47.38817, 8.525087], [47.357478, 8.526116], [47.381469, 8.503747], [47.406934, 8.526927], [47.407885, 8.583034], [47.38151, 8.548193], [47.365886, 8.532073], [47.357462, 8.572659], [47.330027, 8.534355], [47.37327, 8.535032], [47.38652, 8.520722], [47.393104, 8.526472], [47.410777, 8.555945], [47.357448, 8.588624], [47.380863, 8.536804], [47.380231, 8.541784], [47.352211, 8.565982], [47.342206, 8.530635], [47.370059, 8.537852], [47.375719, 8.529057], [47.366077, 8.533693], [47.382092, 8.488781], [47.380623, 8.525092], [47.403013, 8.490863], [47.429751, 8.549], [47.373226, 8.533058], [47.373456, 8.561506], [47.361934, 8.548395], [47.378422, 8.540899], [47.375955, 8.541126], [47.372734, 8.53273], [47.393435, 8.52473], [47.368307, 8.524338], [47.370084, 8.540845], [47.378579, 8.541485], [47.391674, 8.485513], [47.402083, 8.499204], [47.409587, 8.537462], [47.41476, 8.519215], [47.414234, 8.483478], [47.369602, 8.536691], [47.36733, 8.489907], [47.359199, 8.523901], [47.407549, 8.54643], [47.410061, 8.546231], [47.384809, 8.531415], [47.418645, 8.507751], [47.382101, 8.530486], [47.391486, 8.486436], [47.389405, 8.513244], [47.373262, 8.523472], [47.376976, 8.539743], [47.385907, 8.498459], [47.426446, 8.492771], [47.391031, 8.523066], [47.425815, 8.493858], [47.368712, 8.532846], [47.398533, 8.538281], [47.392244, 8.524163], [47.376572, 8.540648], [47.374797, 8.539989], [47.367526, 8.523143], [47.382351, 8.5144], [47.392504, 8.503054], [47.37924, 8.528626], [47.360747, 8.488731], [47.408887, 8.558821], [47.373047, 8.532949], [47.378134, 8.527703], [47.424521, 8.535318], [47.37494, 8.544786], [47.41861, 8.546819], [47.428018, 8.490005], [47.375808, 8.529152], [47.372646, 8.550419], [47.369035, 8.525279], [47.406912, 8.586843], [47.378315, 8.528475], [47.37642, 8.528184], [47.428619, 8.54329], [47.371422, 8.524931], [47.361829, 8.507128], [47.377185, 8.528187], [47.39558, 8.526205], [47.393378, 8.545036], [47.374605, 8.512601], [47.393233, 8.522302], [47.328673, 8.517749], [47.375777, 8.512307], [47.370689, 8.524466], [47.383099, 8.515262], [47.401148, 8.549888], [47.404243, 8.48519], [47.343606, 8.530015], [47.385497, 8.494133], [47.373489, 8.531845], [47.363427, 8.533387], [47.384701, 8.492634], [47.42598, 8.493517], [47.363994, 8.536152], [47.376454, 8.541692], [47.367898, 8.539979], [47.383992, 8.500341], [47.39116, 8.522803], [47.386897, 8.526557], [47.413087, 8.550521], [47.359259, 8.597334], [47.384994, 8.524201], [47.429891, 8.542905], [47.364441, 8.566373], [47.354448, 8.520243], [47.370215, 8.548806], [47.388813, 8.515947], [47.37669, 8.540532], [47.41923, 8.546872], [47.354649, 8.534173], [47.375964, 8.535524], [47.406907, 8.550577], [47.369435, 8.525844], [47.393426, 8.524717], [47.362751, 8.548544], [47.410627, 8.542519], [47.407681, 8.583732], [47.361999, 8.526473], [47.385446, 8.499747], [47.392244, 8.524203], [47.371272, 8.525643], [47.377731, 8.537878], [47.42493, 8.501197], [47.386227, 8.474148], [47.402728, 8.501456], [47.403024, 8.588879], [47.356542, 8.522298], [47.372871, 8.533422], [47.386905, 8.547418], [47.361288, 8.53411], [47.385086, 8.48496], [47.376427, 8.527483], [47.427884, 8.545806], [47.344647, 8.527456], [47.377016, 8.542101], [47.380424, 8.504865], [47.382459, 8.540201], [47.362425, 8.548816], [47.38769, 8.488388], [47.410149, 8.542681], [47.403002, 8.542229], [47.379064, 8.527258], [47.392244, 8.524163], [47.37386, 8.553251], [47.379422, 8.52177], [47.371544, 8.546265], [47.376749, 8.53803], [47.411042, 8.547139], [47.369322, 8.533971], [47.374946, 8.485224], [47.394071, 8.525035], [47.364204, 8.530185], [47.37466, 8.545879], [47.371351, 8.554099], [47.366829, 8.544498], [47.375019, 8.52221], [47.380332, 8.520636], [47.370215, 8.548793], [47.375435, 8.518166], [47.36455, 8.566243], [47.375261, 8.485204], [47.384978, 8.48501], [47.372096, 8.502832], [47.401948, 8.577634], [47.379045, 8.527351], [47.37019, 8.521053], [47.40381, 8.486387], [47.420698, 8.50265], [47.397845, 8.534067], [47.408178, 8.557746], [47.374559, 8.521406], [47.422503, 8.550757], [47.374966, 8.534511], [47.384274, 8.538477], [47.353892, 8.561438], [47.37773, 8.537997], [47.358036, 8.553358], [47.386441, 8.518509], [47.370202, 8.522721], [47.377689, 8.522384], [47.371487, 8.5248], [47.366912, 8.544302], [47.366332, 8.54098], [47.423072, 8.541995], [47.380057, 8.543038], [47.397521, 8.532126], [47.396789, 8.529687], [47.413857, 8.527241], [47.371093, 8.558464], [47.380116, 8.537742], [47.398711, 8.53284], [47.370811, 8.549467], [47.418823, 8.544213], [47.372877, 8.532839], [47.363977, 8.549205], [47.410392, 8.548331], [47.375311, 8.528426], [47.423464, 8.551811], [47.386319, 8.497699], [47.409804, 8.57543], [47.393408, 8.524743], [47.358205, 8.525323], [47.365788, 8.538612], [47.375905, 8.488606], [47.375064, 8.529865], [47.415673, 8.512992], [47.379158, 8.556024], [47.374673, 8.514973], [47.335037, 8.524891], [47.379189, 8.508112], [47.388524, 8.485703], [47.377641, 8.526501], [47.363888, 8.566812], [47.372287, 8.558767], [47.384666, 8.53128], [47.375596, 8.527797], [47.367852, 8.50652], [47.393426, 8.524717], [47.41228, 8.546555], [47.406322, 8.582882], [47.417448, 8.546], [47.387165, 8.519093], [47.376265, 8.528406], [47.387849, 8.524736], [47.371475, 8.526057], [47.367673, 8.541802], [47.377597, 8.535916], [47.429848, 8.544575], [47.369719, 8.523347], [47.366069, 8.533639], [47.403808, 8.485619], [47.367999, 8.54063], [47.409428, 8.542812], [47.381646, 8.492361], [47.403588, 8.57274], [47.380234, 8.548048], [47.378235, 8.514992], [47.390863, 8.478768], [47.375177, 8.525471], [47.373834, 8.54663], [47.367542, 8.545215], [47.381186, 8.503238], [47.376116, 8.516472], [47.374067, 8.524879], [47.412218, 8.546368], [47.406352, 8.570639], [47.360956, 8.56855], [47.424997, 8.537277], [47.389375, 8.528966], [47.337342, 8.517051], [47.414012, 8.541277], [47.378655, 8.488872], [47.373297, 8.533086], [47.370589, 8.538803], [47.374407, 8.5412], [47.403759, 8.567206], [47.37989, 8.494459], [47.358624, 8.558639], [47.390044, 8.537099], [47.422264, 8.547545], [47.384154, 8.497378], [47.365665, 8.559793], [47.377284, 8.512748], [47.373334, 8.534901], [47.378777, 8.542376], [47.374501, 8.53895], [47.345885, 8.534456], [47.392238, 8.539131], [47.356395, 8.532143], [47.382844, 8.529945], [47.413456, 8.530665], [47.429901, 8.538054], [47.376563, 8.562962], [47.391338, 8.536252], [47.389728, 8.486852], [47.367781, 8.544704], [47.351352, 8.560921], [47.39078, 8.508503], [47.386226, 8.533736], [47.359378, 8.5523], [47.413595, 8.532191], [47.378174, 8.509932], [47.354304, 8.525945], [47.373603, 8.519692], [47.37846, 8.543535], [47.377199, 8.539973], [47.36074, 8.516836], [47.366618, 8.540178], [47.374584, 8.538674], [47.413541, 8.55383], [47.412177, 8.551615], [47.37772, 8.509353], [47.37626, 8.538417], [47.403557, 8.487429], [47.392504, 8.503027], [47.400098, 8.545851], [47.372658, 8.547254], [47.378829, 8.519692], [47.414134, 8.551046], [47.362961, 8.535072], [47.421467, 8.501194], [47.365267, 8.547882], [47.387832, 8.529438], [47.35937, 8.592491], [47.384975, 8.508863], [47.374444, 8.495874], [47.39004, 8.536596], [47.410268, 8.542459], [47.369353, 8.537361], [47.413933, 8.526898], [47.385132, 8.508403], [47.361333, 8.525546], [47.377284, 8.512722], [47.394747, 8.490912], [47.39405, 8.493309], [47.385022, 8.508639], [47.367096, 8.540042], [47.385863, 8.527384], [47.350965, 8.582951], [47.375169, 8.528251], [47.363929, 8.547642], [47.403215, 8.547215], [47.33569, 8.53287], [47.372008, 8.529551], [47.372854, 8.542783], [47.378564, 8.541166], [47.381808, 8.540505], [47.359754, 8.535562], [47.350886, 8.534466], [47.363797, 8.575124], [47.368407, 8.560009], [47.358192, 8.571576], [47.369476, 8.526255], [47.368333, 8.524444], [47.394967, 8.519622], [47.406893, 8.584232], [47.363427, 8.535253], [47.399265, 8.502381], [47.384295, 8.54853], [47.37978, 8.554951], [47.362703, 8.515658], [47.42029, 8.548816], [47.383291, 8.499347], [47.37985, 8.527831], [47.419899, 8.500447], [47.37687, 8.536655], [47.367655, 8.523782], [47.37157, 8.515903], [47.391035, 8.478612], [47.386697, 8.496753], [47.366271, 8.540753], [47.404778, 8.565174], [47.3702, 8.521026], [47.409845, 8.541549], [47.412672, 8.514495], [47.382655, 8.529888], [47.357904, 8.510319], [47.37222, 8.54326], [47.388307, 8.536255], [47.367373, 8.52314], [47.376349, 8.528064], [47.3687, 8.521684], [47.414101, 8.544248], [47.398182, 8.536393], [47.395842, 8.540358], [47.40218, 8.496384], [47.404216, 8.560962], [47.352151, 8.558251], [47.39133, 8.536198], [47.370405, 8.518316], [47.366122, 8.54038], [47.373367, 8.480863], [47.41445, 8.517804], [47.341462, 8.530421], [47.420416, 8.538534], [47.374456, 8.529495], [47.384533, 8.534866], [47.377072, 8.541943], [47.388294, 8.517619], [47.37715, 8.523207], [47.362747, 8.550888], [47.386938, 8.539234], [47.364721, 8.554173], [47.372341, 8.545632], [47.351031, 8.559697], [47.373647, 8.597766], [47.374266, 8.542852], [47.427464, 8.551126], [47.366426, 8.545258], [47.416674, 8.514669], [47.384967, 8.547868], [47.414139, 8.549602], [47.382089, 8.528896], [47.405086, 8.560318], [47.362092, 8.550649], [47.36631, 8.531936], [47.418138, 8.50615], [47.404528, 8.576881], [47.364411, 8.546156], [47.374992, 8.52601], [47.426063, 8.493373], [47.365117, 8.553188], [47.374013, 8.544846], [47.358076, 8.519867], [47.431097, 8.550274], [47.402306, 8.543513], [47.408712, 8.54619], [47.413245, 8.532078], [47.385618, 8.518108], [47.399531, 8.538341], [47.358937, 8.534459], [47.391004, 8.523078], [47.429961, 8.549614], [47.427106, 8.545366], [47.407883, 8.503242], [47.371561, 8.51589], [47.376927, 8.538312], [47.372992, 8.547142], [47.362208, 8.548944], [47.422457, 8.55077], [47.362412, 8.547319], [47.372574, 8.521088], [47.353583, 8.554429], [47.389491, 8.521339], [47.338479, 8.530056], [47.361323, 8.525691], [47.365674, 8.549572], [47.372648, 8.534225], [47.356128, 8.559129], [47.372745, 8.510485], [47.351747, 8.566502], [47.377982, 8.511186], [47.370883, 8.544808], [47.41589, 8.545212], [47.39567, 8.522431], [47.371173, 8.530381], [47.399557, 8.586578], [47.420086, 8.51043], [47.417137, 8.545623], [47.357918, 8.520473], [47.369849, 8.552201], [47.388658, 8.488805], [47.373026, 8.475732], [47.344209, 8.52615], [47.372358, 8.486921], [47.344398, 8.529952], [47.365675, 8.563447], [47.37089, 8.544954], [47.363572, 8.535111], [47.378786, 8.542363], [47.398501, 8.591404], [47.377263, 8.538888], [47.410371, 8.539188], [47.380686, 8.504765], [47.380431, 8.541576], [47.364392, 8.533115], [47.390803, 8.50608], [47.422466, 8.536708], [47.419528, 8.506536], [47.373987, 8.540012], [47.385994, 8.518235], [47.361361, 8.522608], [47.413721, 8.545419], [47.427518, 8.547376], [47.400198, 8.489906], [47.367216, 8.545433], [47.390442, 8.509106], [47.355545, 8.528843], [47.369182, 8.532565], [47.378306, 8.530408], [47.388249, 8.49126], [47.377599, 8.522342], [47.394428, 8.534871], [47.376136, 8.527728], [47.386721, 8.488131], [47.390432, 8.509172], [47.394742, 8.536825], [47.348587, 8.534061], [47.390697, 8.55159], [47.366239, 8.52227], [47.39146, 8.519538], [47.379135, 8.559361], [47.361069, 8.535403], [47.40906, 8.543666], [47.414868, 8.54111], [47.385541, 8.532927], [47.370353, 8.51429], [47.389544, 8.521419], [47.401521, 8.581705], [47.373852, 8.546644], [47.414785, 8.512696], [47.379206, 8.53036], [47.371326, 8.536078], [47.370577, 8.519207], [47.377143, 8.540157], [47.422841, 8.494555], [47.422266, 8.549202], [47.412199, 8.546527], [47.419066, 8.537592], [47.381086, 8.565918], [47.393602, 8.501976], [47.366745, 8.544854], [47.361648, 8.56127], [47.373101, 8.547092], [47.408867, 8.54879], [47.385204, 8.50059], [47.387436, 8.5189], [47.371412, 8.53461], [47.379152, 8.529445], [47.373135, 8.567656], [47.389017, 8.469964], [47.422901, 8.538254], [47.371617, 8.546081], [47.374304, 8.502399], [47.370805, 8.517901], [47.361153, 8.590504], [47.371055, 8.519998], [47.350924, 8.577007], [47.388168, 8.516623], [47.383249, 8.484169], [47.373048, 8.555366], [47.399979, 8.490194], [47.395127, 8.536051], [47.376092, 8.527688], [47.374222, 8.544586], [47.366638, 8.54566], [47.363481, 8.551234], [47.410212, 8.54361], [47.369699, 8.536905], [47.365903, 8.500312], [47.368077, 8.546603], [47.387644, 8.486559], [47.368088, 8.485645], [47.384665, 8.477733], [47.370313, 8.556342], [47.408269, 8.577001], [47.377113, 8.535773], [47.379754, 8.527537], [47.366197, 8.516245], [47.377816, 8.507819], [47.406581, 8.56292], [47.379307, 8.537712], [47.365099, 8.55324], [47.413321, 8.545782], [47.399952, 8.587541], [47.368064, 8.541426], [47.352228, 8.509331], [47.428753, 8.545215], [47.406019, 8.548452], [47.376762, 8.543288], [47.364102, 8.536207], [47.396859, 8.548765], [47.365723, 8.535962], [47.366827, 8.54475], [47.381949, 8.5437], [47.36869, 8.482784], [47.377936, 8.5324], [47.376592, 8.527115], [47.378775, 8.514923], [47.392578, 8.502817], [47.384483, 8.543011], [47.371588, 8.515917], [47.358789, 8.558338], [47.356661, 8.522049], [47.370537, 8.548958], [47.361344, 8.563832], [47.358244, 8.588125], [47.414918, 8.545298], [47.384493, 8.480856], [47.353631, 8.554033], [47.413115, 8.563468], [47.365538, 8.56825], [47.382763, 8.529983], [47.396473, 8.579146], [47.380695, 8.496951], [47.419052, 8.506474], [47.41401, 8.550872], [47.350168, 8.534306], [47.380212, 8.526673], [47.388518, 8.520524], [47.348396, 8.534349], [47.343256, 8.535699], [47.368396, 8.497303], [47.404857, 8.59182], [47.365539, 8.513478], [47.350489, 8.561737], [47.394795, 8.490502], [47.411202, 8.546361], [47.361989, 8.525665], [47.363931, 8.553971], [47.36641, 8.545059], [47.374571, 8.545718], [47.369665, 8.5089], [47.378484, 8.493875], [47.349979, 8.527657], [47.373147, 8.503925], [47.383415, 8.540869], [47.392828, 8.506902], [47.373896, 8.538263], [47.364815, 8.537797], [47.393388, 8.499786], [47.383683, 8.510427], [47.382945, 8.540145], [47.360414, 8.526679], [47.419061, 8.544722], [47.36789, 8.551988], [47.380058, 8.570796], [47.392784, 8.532771], [47.391339, 8.536225], [47.408928, 8.539556], [47.41976, 8.509708], [47.381617, 8.516861], [47.368302, 8.534387], [47.385794, 8.525171], [47.392224, 8.541502], [47.393597, 8.538047], [47.389356, 8.528979], [47.377256, 8.538729], [47.369014, 8.537977], [47.402377, 8.546416], [47.375528, 8.548188], [47.364757, 8.54946], [47.371344, 8.547333], [47.404416, 8.57456], [47.418152, 8.554218], [47.397958, 8.532493], [47.400772, 8.54878], [47.378618, 8.569084], [47.374264, 8.542998], [47.366756, 8.541836], [47.389765, 8.511291], [47.36984, 8.552241], [47.373163, 8.536844], [47.399345, 8.505456], [47.381407, 8.52871], [47.369873, 8.536564], [47.376585, 8.526903], [47.374966, 8.52789], [47.374576, 8.538661], [47.376044, 8.553416], [47.409891, 8.541404], [47.361347, 8.549588], [47.370946, 8.535408], [47.38182, 8.516375], [47.401986, 8.545944], [47.397319, 8.553332], [47.405568, 8.539115], [47.379148, 8.538411], [47.390905, 8.522096], [47.359613, 8.563306], [47.371883, 8.542789], [47.372499, 8.517498], [47.379568, 8.527282], [47.390761, 8.489005], [47.380394, 8.541615], [47.361516, 8.547883], [47.366315, 8.53428], [47.386423, 8.518508], [47.368651, 8.537373], [47.412882, 8.520953], [47.377492, 8.509759], [47.369881, 8.509858], [47.371999, 8.601477], [47.372113, 8.539431], [47.370698, 8.516746], [47.383224, 8.553222], [47.418067, 8.510893], [47.341657, 8.530677], [47.403268, 8.547335], [47.376417, 8.527509], [47.369708, 8.543486], [47.373094, 8.503818], [47.398346, 8.591679], [47.389953, 8.536236], [47.371258, 8.558176], [47.409852, 8.529385], [47.384401, 8.531725], [47.359604, 8.593436], [47.374691, 8.535935], [47.425389, 8.536781], [47.384791, 8.531402], [47.398192, 8.536287], [47.3664, 8.522353], [47.393602, 8.537583], [47.374788, 8.527648], [47.408693, 8.546348], [47.408054, 8.547289], [47.362627, 8.535224], [47.369606, 8.525768], [47.38531, 8.51732], [47.370079, 8.543295], [47.407418, 8.56095], [47.398145, 8.546937], [47.397898, 8.534148], [47.374896, 8.540005], [47.365268, 8.547816], [47.373286, 8.531444], [47.374697, 8.523925], [47.344059, 8.52968], [47.363881, 8.53194], [47.378365, 8.526039], [47.33986, 8.524738], [47.403442, 8.556374], [47.377987, 8.521304], [47.358872, 8.557161], [47.366715, 8.541411], [47.364577, 8.566217], [47.378601, 8.499744], [47.325903, 8.518619], [47.369631, 8.467073], [47.398301, 8.479854], [47.363394, 8.533028], [47.379544, 8.542127], [47.37886, 8.525069], [47.340252, 8.529894], [47.402511, 8.492642], [47.383763, 8.539248], [47.387564, 8.519657], [47.326838, 8.517659], [47.366944, 8.562454], [47.393871, 8.504949], [47.406946, 8.536149], [47.370613, 8.516242], [47.368119, 8.541334], [47.380512, 8.519647], [47.405126, 8.482041], [47.339928, 8.529966], [47.376843, 8.522446], [47.376561, 8.524638], [47.41194, 8.528341], [47.345138, 8.53448], [47.392693, 8.510727], [47.390873, 8.48861], [47.376043, 8.535711], [47.410705, 8.550312], [47.378562, 8.510774], [47.383298, 8.543662], [47.367191, 8.528168], [47.383905, 8.530946], [47.38112, 8.553178], [47.362204, 8.547514], [47.371435, 8.522667], [47.419631, 8.548179], [47.400122, 8.494224], [47.384443, 8.503211], [47.357056, 8.555204], [47.369207, 8.505859], [47.422476, 8.55073], [47.361915, 8.566135], [47.427367, 8.546259], [47.368489, 8.53075], [47.368447, 8.564181], [47.368836, 8.501284], [47.389609, 8.538415], [47.376911, 8.532352], [47.387385, 8.52915], [47.396992, 8.480305], [47.367102, 8.5442], [47.389145, 8.527597], [47.389605, 8.491512], [47.384728, 8.484794], [47.401335, 8.582298], [47.384409, 8.531831], [47.377684, 8.543744], [47.381361, 8.514419], [47.370613, 8.54945], [47.364182, 8.554095], [47.373961, 8.501452], [47.416387, 8.545978], [47.385867, 8.493014], [47.386942, 8.535062], [47.385011, 8.530956], [47.393447, 8.544375], [47.410739, 8.5534], [47.38515, 8.537157], [47.378677, 8.514789], [47.378929, 8.542419], [47.38752, 8.488372], [47.377387, 8.51136], [47.381935, 8.529025], [47.41236, 8.55036], [47.3962, 8.48535], [47.37571, 8.529057], [47.37446, 8.527111], [47.403168, 8.489713], [47.36736, 8.545357], [47.378521, 8.541907], [47.362667, 8.563741], [47.42216, 8.512831], [47.376358, 8.528077], [47.390074, 8.517695], [47.387449, 8.51943], [47.386438, 8.496469], [47.379866, 8.537618], [47.381298, 8.515464], [47.37426, 8.532152], [47.405544, 8.581434], [47.410521, 8.553555], [47.390547, 8.52287], [47.39984, 8.490681], [47.411555, 8.545189], [47.372583, 8.534448], [47.377688, 8.510915], [47.380195, 8.541809], [47.387557, 8.500041], [47.382576, 8.532628], [47.380956, 8.551533], [47.373612, 8.519758], [47.40292, 8.57576], [47.367591, 8.537245], [47.370117, 8.512524], [47.372754, 8.534439], [47.373164, 8.532911], [47.376204, 8.489394], [47.379395, 8.522683], [47.361286, 8.535302], [47.37647, 8.541838], [47.406889, 8.481108], [47.389231, 8.510697], [47.382604, 8.552229], [47.370895, 8.53121], [47.413168, 8.550549], [47.356879, 8.514164], [47.387751, 8.529383], [47.394134, 8.525063], [47.377498, 8.511984], [47.352956, 8.556944], [47.370814, 8.559424], [47.377628, 8.509603], [47.369461, 8.525924], [47.43093, 8.549899], [47.377078, 8.527032], [47.366711, 8.544589], [47.384037, 8.504315], [47.380702, 8.512724], [47.377585, 8.529638], [47.374335, 8.524116], [47.380715, 8.492859], [47.384711, 8.500448], [47.414904, 8.541084], [47.391469, 8.48237], [47.391801, 8.481436], [47.368788, 8.528651], [47.346788, 8.535083], [47.379687, 8.510651], [47.374796, 8.484917], [47.371554, 8.518604], [47.372737, 8.529605], [47.384908, 8.531351], [47.409322, 8.545407], [47.373032, 8.534484], [47.362577, 8.522407], [47.376958, 8.520727], [47.429108, 8.548602], [47.393787, 8.472626], [47.373683, 8.530353], [47.416108, 8.565559], [47.368128, 8.545942], [47.378496, 8.528399], [47.370946, 8.535408], [47.421316, 8.547883], [47.371379, 8.54744], [47.345579, 8.534436], [47.343329, 8.535594], [47.400569, 8.506262], [47.389776, 8.511993], [47.373063, 8.533094], [47.378624, 8.542399], [47.381885, 8.48981], [47.414072, 8.550011], [47.387874, 8.540127], [47.390419, 8.527875], [47.381522, 8.513535], [47.408883, 8.539581], [47.374487, 8.539453], [47.36997, 8.510932], [47.345129, 8.53448], [47.357975, 8.579872], [47.415368, 8.483447], [47.391584, 8.52358], [47.380698, 8.528537], [47.375333, 8.485232], [47.371864, 8.517207], [47.397603, 8.481417], [47.392968, 8.524655], [47.407266, 8.490099], [47.389458, 8.53914], [47.369877, 8.547435], [47.373226, 8.514772], [47.383822, 8.527289], [47.371291, 8.536011], [47.358145, 8.520146], [47.374669, 8.549627], [47.369137, 8.544877], [47.35912, 8.521781], [47.354395, 8.526794], [47.39523, 8.540372], [47.372233, 8.542797], [47.3804, 8.54286], [47.404003, 8.563408], [47.368279, 8.546197], [47.407129, 8.586728], [47.408547, 8.546557], [47.356025, 8.522737], [47.373122, 8.534513], [47.397367, 8.531275], [47.354867, 8.560148], [47.397473, 8.53243], [47.397033, 8.512219], [47.386832, 8.490782], [47.377073, 8.548392], [47.402176, 8.495841], [47.37844, 8.566034], [47.387369, 8.519349], [47.359273, 8.557606], [47.373096, 8.475958], [47.424357, 8.548689], [47.377593, 8.498757], [47.377421, 8.533581], [47.396787, 8.53749], [47.385135, 8.48851], [47.354018, 8.555908], [47.386055, 8.518501], [47.370139, 8.547321], [47.364518, 8.533051], [47.395397, 8.532295], [47.370102, 8.519012], [47.369365, 8.506352], [47.358421, 8.526254], [47.368367, 8.492615], [47.370635, 8.561168], [47.333466, 8.518812], [47.413762, 8.546692], [47.390609, 8.522991], [47.409474, 8.561417], [47.374921, 8.544878], [47.419723, 8.504923], [47.375408, 8.547537], [47.355315, 8.554796], [47.412295, 8.558031], [47.361306, 8.525506], [47.355415, 8.531197], [47.376633, 8.544622], [47.387331, 8.530063], [47.422884, 8.547531], [47.371592, 8.536494], [47.377045, 8.535295], [47.372753, 8.535485], [47.372046, 8.534133], [47.389274, 8.529096], [47.345969, 8.531281], [47.37, 8.566359], [47.376897, 8.554547], [47.403322, 8.49748], [47.402753, 8.535294], [47.375817, 8.577658], [47.385502, 8.530449], [47.390873, 8.48861], [47.394133, 8.493125], [47.376353, 8.543769], [47.37137, 8.516151], [47.406705, 8.535985], [47.357388, 8.597346], [47.380927, 8.542394], [47.41234, 8.542117], [47.370208, 8.557015], [47.370443, 8.539026], [47.427505, 8.543134], [47.420122, 8.54758], [47.382021, 8.550164], [47.3796, 8.52772], [47.369059, 8.538004], [47.377256, 8.539656], [47.35031, 8.534494], [47.398922, 8.538965], [47.411091, 8.545788], [47.353592, 8.55439], [47.421443, 8.497867], [47.377153, 8.541958], [47.367498, 8.494107], [47.366793, 8.521685], [47.425871, 8.547474], [47.340713, 8.537221], [47.388781, 8.530808], [47.409409, 8.545727], [47.37492, 8.553419], [47.369353, 8.537308], [47.389016, 8.548628], [47.367793, 8.539633], [47.371103, 8.523521], [47.377265, 8.538676], [47.380714, 8.504712], [47.341126, 8.530692], [47.359361, 8.552207], [47.379308, 8.495229], [47.383778, 8.530096], [47.373543, 8.495128], [47.385499, 8.52886], [47.378024, 8.554279], [47.374713, 8.549641], [47.40779, 8.552239], [47.370723, 8.535205], [47.401031, 8.488254], [47.369772, 8.480515], [47.38607, 8.493482], [47.36931, 8.525762], [47.400196, 8.494066], [47.371775, 8.493676], [47.338272, 8.530012], [47.356773, 8.523534], [47.378096, 8.51054], [47.365422, 8.539226], [47.365028, 8.53146], [47.42706, 8.546412], [47.408952, 8.545572], [47.380193, 8.542961], [47.358238, 8.518891], [47.356458, 8.510158], [47.369298, 8.505768], [47.352946, 8.556984], [47.370489, 8.549275], [47.364257, 8.533139], [47.338042, 8.525839], [47.380301, 8.520106], [47.367166, 8.523176], [47.388812, 8.522782], [47.370116, 8.511663], [47.390941, 8.522097], [47.368461, 8.559971], [47.407651, 8.584023], [47.367076, 8.495013], [47.404619, 8.594929], [47.366948, 8.548023], [47.36647, 8.533105], [47.370759, 8.522733], [47.355154, 8.532158], [47.357797, 8.521847], [47.372951, 8.533556], [47.368327, 8.548687], [47.385914, 8.532498], [47.386272, 8.53179], [47.372758, 8.534969], [47.338842, 8.538228], [47.360971, 8.531456], [47.409344, 8.549714], [47.335707, 8.540611], [47.366955, 8.544448], [47.383729, 8.512242], [47.391909, 8.483491], [47.382137, 8.514197], [47.421161, 8.549947], [47.399767, 8.543738], [47.400836, 8.491906], [47.360008, 8.532535], [47.396122, 8.493946], [47.375139, 8.547438], [47.38871, 8.520276], [47.420207, 8.509015], [47.392461, 8.502762], [47.360396, 8.526692], [47.366959, 8.543098], [47.372508, 8.517538], [47.405152, 8.504897], [47.378748, 8.49441], [47.385961, 8.517943], [47.361804, 8.526191], [47.409158, 8.547497], [47.359448, 8.511661], [47.397941, 8.532479], [47.373288, 8.533073], [47.37525, 8.53302], [47.37884, 8.508952], [47.390362, 8.47946], [47.387816, 8.488457], [47.384848, 8.508053], [47.378671, 8.523132], [47.397996, 8.474695], [47.369495, 8.526123], [47.362997, 8.535033], [47.409584, 8.53778], [47.384316, 8.531246], [47.36363, 8.558188], [47.386751, 8.547601], [47.359701, 8.566313], [47.375626, 8.54823], [47.398225, 8.542355], [47.34528, 8.535621], [47.377809, 8.525869], [47.366041, 8.540365], [47.353685, 8.600588], [47.366747, 8.541822], [47.363792, 8.517481], [47.364309, 8.52182], [47.427602, 8.549949], [47.364436, 8.531249], [47.369158, 8.527559], [47.42967, 8.537797], [47.402227, 8.552719], [47.396658, 8.504197], [47.409319, 8.546692], [47.355509, 8.527889], [47.386918, 8.486307], [47.371782, 8.516331], [47.410753, 8.542561], [47.393373, 8.513099], [47.372685, 8.534106], [47.361547, 8.535241], [47.378736, 8.529675], [47.354297, 8.557727], [47.372273, 8.53578], [47.345005, 8.529594], [47.387384, 8.518726], [47.390585, 8.508208], [47.376491, 8.543467], [47.357428, 8.521879], [47.368411, 8.546504], [47.391696, 8.513555], [47.397991, 8.47431], [47.336844, 8.539245], [47.376861, 8.543316], [47.394122, 8.540574], [47.367378, 8.523577], [47.376876, 8.535106], [47.361496, 8.551907], [47.34031, 8.524721], [47.371633, 8.521625], [47.356608, 8.551329], [47.384801, 8.531336], [47.354039, 8.557417], [47.418149, 8.528044], [47.397087, 8.493687], [47.375314, 8.485377], [47.369333, 8.557195], [47.387667, 8.521182], [47.407793, 8.560375], [47.40895, 8.543915], [47.376035, 8.535645], [47.377486, 8.543806], [47.38936, 8.51617], [47.405165, 8.552105], [47.367013, 8.544118], [47.393778, 8.493608], [47.36751, 8.546631], [47.415629, 8.508035], [47.334289, 8.532722], [47.327122, 8.529599], [47.419645, 8.548551], [47.358918, 8.516416], [47.367422, 8.495523], [47.391025, 8.489633], [47.380223, 8.542618], [47.389718, 8.542086], [47.381558, 8.513615], [47.379645, 8.527681], [47.378219, 8.531969], [47.4057, 8.591096], [47.419247, 8.505828], [47.353454, 8.530217], [47.405169, 8.480293], [47.392212, 8.476715], [47.405811, 8.590807], [47.405811, 8.590807], [47.363596, 8.575411], [47.398535, 8.541911], [47.34005, 8.530339], [47.358218, 8.519115], [47.364798, 8.537678], [47.421645, 8.550183], [47.39086, 8.522082], [47.383342, 8.511374], [47.393514, 8.473018], [47.378085, 8.526179], [47.373337, 8.53559], [47.379187, 8.518057], [47.403822, 8.560755], [47.384498, 8.480379], [47.355942, 8.535417], [47.389991, 8.52564], [47.36218, 8.50413], [47.378707, 8.54211], [47.405262, 8.55791], [47.390844, 8.504478], [47.385839, 8.530006], [47.387767, 8.51529], [47.409549, 8.529153], [47.394294, 8.525212], [47.361326, 8.570332], [47.399556, 8.516589], [47.366192, 8.540593], [47.386807, 8.502357], [47.407449, 8.548456], [47.375242, 8.518586], [47.367293, 8.520226], [47.378386, 8.530476], [47.359843, 8.535669], [47.373908, 8.527484], [47.375198, 8.484209], [47.380772, 8.519758], [47.392196, 8.524533], [47.377258, 8.543152], [47.413049, 8.540396], [47.410439, 8.532975], [47.377256, 8.529195], [47.37598, 8.559175], [47.405175, 8.480611], [47.399175, 8.521774], [47.406862, 8.550577], [47.351148, 8.568925], [47.363007, 8.526374], [47.362136, 8.503997], [47.391478, 8.514677], [47.382371, 8.530438], [47.382563, 8.563022], [47.384368, 8.548399], [47.422903, 8.551256], [47.369012, 8.524882], [47.381875, 8.556942], [47.369122, 8.503368], [47.410272, 8.529712], [47.383085, 8.513845], [47.375561, 8.517149], [47.383937, 8.530444], [47.367361, 8.544337], [47.354896, 8.574696], [47.403374, 8.49866], [47.397473, 8.532417], [47.420287, 8.503318], [47.367099, 8.539777], [47.408291, 8.529883], [47.385317, 8.521373], [47.389008, 8.536336], [47.379179, 8.527446], [47.364532, 8.566243], [47.392244, 8.524176], [47.386919, 8.534624], [47.345345, 8.536337], [47.377641, 8.526488], [47.368154, 8.541441], [47.379374, 8.517279], [47.372892, 8.535951], [47.419098, 8.506368], [47.405244, 8.49092], [47.390976, 8.523184], [47.3874, 8.518965], [47.382491, 8.501185], [47.381717, 8.531206], [47.373132, 8.535373], [47.359745, 8.594617], [47.374386, 8.502242], [47.424305, 8.549417], [47.359715, 8.550904], [47.380014, 8.543752], [47.379663, 8.527668], [47.368488, 8.530856], [47.37454, 8.539547], [47.35631, 8.573641], [47.373987, 8.544713], [47.39198, 8.530264], [47.374463, 8.537255], [47.40931, 8.54485], [47.389758, 8.512072], [47.378417, 8.540501], [47.370381, 8.509272], [47.368311, 8.5344], [47.41078, 8.550036], [47.371402, 8.555372], [47.410691, 8.572189], [47.347709, 8.562764], [47.364436, 8.531262], [47.358144, 8.558959], [47.371521, 8.547628], [47.414189, 8.550067], [47.358693, 8.586413], [47.382231, 8.551784], [47.405893, 8.548423], [47.406866, 8.536055], [47.38068, 8.50054], [47.378691, 8.529648], [47.413029, 8.516795], [47.399501, 8.540513], [47.388868, 8.515829], [47.369571, 8.5286], [47.37831, 8.541333], [47.37845, 8.510229], [47.385282, 8.508711], [47.371704, 8.524619], [47.410491, 8.479628], [47.360915, 8.525061], [47.36918, 8.528063], [47.334981, 8.519333], [47.382261, 8.533535], [47.394194, 8.527223], [47.353444, 8.55759], [47.344302, 8.532584], [47.368042, 8.53895], [47.368342, 8.498229], [47.3585, 8.510119], [47.376301, 8.525573], [47.407261, 8.503428], [47.374098, 8.525396], [47.375483, 8.549114], [47.3877, 8.486388], [47.396616, 8.510687], [47.366529, 8.566219], [47.374391, 8.522025], [47.376175, 8.528418], [47.374237, 8.535476], [47.37252, 8.534407], [47.412293, 8.556361], [47.391792, 8.518644], [47.361447, 8.551311], [47.403188, 8.547254], [47.398956, 8.59001], [47.373429, 8.520033], [47.37187, 8.522278], [47.368737, 8.537746], [47.363337, 8.533318], [47.373846, 8.530211], [47.404181, 8.485109], [47.377724, 8.525324], [47.382094, 8.488596], [47.410875, 8.561592], [47.36577, 8.539578], [47.414798, 8.551219], [47.376603, 8.543933], [47.374717, 8.52758], [47.372889, 8.521081], [47.381894, 8.5475], [47.391529, 8.54268], [47.419669, 8.547995], [47.39386, 8.493477], [47.401869, 8.551532], [47.370179, 8.513585], [47.382411, 8.532955], [47.366718, 8.545767], [47.352306, 8.576494], [47.352797, 8.524512], [47.376056, 8.559614], [47.392598, 8.475848], [47.342035, 8.530645], [47.379951, 8.520999], [47.370553, 8.54447], [47.370886, 8.548237], [47.346368, 8.564628], [47.369069, 8.537872], [47.385661, 8.532585], [47.388337, 8.540653], [47.360014, 8.51661], [47.377386, 8.501785], [47.366482, 8.540334], [47.421256, 8.501601], [47.387311, 8.518844], [47.391624, 8.513554], [47.376031, 8.511081], [47.353818, 8.557055], [47.377664, 8.496878], [47.368339, 8.54645], [47.414982, 8.515735], [47.357531, 8.600076], [47.391015, 8.520972], [47.374394, 8.525561], [47.375585, 8.501021], [47.375908, 8.523288], [47.397767, 8.533734], [47.375652, 8.54835], [47.38619, 8.521338], [47.373699, 8.517125], [47.39866, 8.539184], [47.413452, 8.530134], [47.381427, 8.484795], [47.363822, 8.559674], [47.378246, 8.548059], [47.370278, 8.548834], [47.386714, 8.547613], [47.410999, 8.54315], [47.368629, 8.518691], [47.380249, 8.541771], [47.400698, 8.544274], [47.411621, 8.559819], [47.379708, 8.515154], [47.361273, 8.52336], [47.369831, 8.538152], [47.412179, 8.550423], [47.385069, 8.508455], [47.380507, 8.512482], [47.374223, 8.502345], [47.36787, 8.560607], [47.376119, 8.494702], [47.378032, 8.493098], [47.394174, 8.527461], [47.370499, 8.517908], [47.39754, 8.489324], [47.357853, 8.572178], [47.377846, 8.54188], [47.355028, 8.529256], [47.38, 8.553671], [47.375176, 8.54736], [47.339569, 8.53553], [47.369337, 8.525736], [47.408156, 8.545992], [47.375055, 8.48516], [47.383175, 8.506073], [47.383789, 8.532745], [47.414076, 8.541186], [47.388435, 8.52847], [47.354945, 8.509373], [47.348558, 8.563351], [47.389262, 8.521837], [47.356902, 8.555319], [47.373348, 8.531511], [47.37068, 8.516746], [47.376381, 8.525615], [47.387028, 8.501858], [47.384732, 8.543294], [47.37893, 8.542406], [47.377669, 8.525455], [47.338254, 8.528172], [47.418887, 8.498002], [47.38216, 8.488213], [47.383313, 8.484037], [47.369335, 8.491946], [47.374161, 8.513943], [47.36671, 8.541914], [47.408068, 8.544878], [47.37434, 8.495527], [47.420133, 8.508258], [47.414209, 8.518555], [47.378692, 8.516153], [47.371513, 8.542835], [47.348478, 8.534191], [47.370235, 8.532533], [47.37513, 8.549345], [47.39161, 8.485697], [47.361257, 8.560733], [47.366404, 8.538188], [47.36799, 8.51975], [47.388636, 8.509785], [47.41553, 8.541547], [47.392232, 8.502293], [47.33658, 8.530123], [47.394084, 8.475691], [47.372271, 8.536044], [47.361793, 8.560241], [47.40591, 8.590796], [47.393845, 8.512671], [47.378804, 8.527227], [47.384633, 8.530061], [47.381736, 8.545258], [47.392776, 8.534506], [47.393369, 8.49303], [47.360466, 8.535378], [47.360059, 8.531835], [47.372805, 8.543206], [47.374151, 8.515015], [47.418252, 8.548482], [47.424705, 8.543381], [47.360071, 8.547615], [47.372919, 8.520764], [47.377396, 8.521], [47.403673, 8.571444], [47.373511, 8.552158], [47.40036, 8.543803], [47.377525, 8.522566], [47.351422, 8.57674], [47.392815, 8.522784], [47.389742, 8.511767], [47.389228, 8.541546], [47.403887, 8.567937], [47.381531, 8.498001], [47.381749, 8.541947], [47.364564, 8.536812], [47.378435, 8.550857], [47.375744, 8.549106], [47.354936, 8.534245], [47.375416, 8.561653], [47.368448, 8.548306], [47.396006, 8.5211], [47.378861, 8.524976], [47.388804, 8.522716], [47.370462, 8.549261], [47.378253, 8.52748], [47.378977, 8.551557], [47.368762, 8.540818], [47.391917, 8.517825], [47.393108, 8.474162], [47.416508, 8.553071], [47.417986, 8.560139], [47.381077, 8.503316], [47.373862, 8.529509], [47.368126, 8.532993], [47.406722, 8.586971], [47.397275, 8.493757], [47.418241, 8.543048], [47.375789, 8.549121], [47.372716, 8.534663], [47.368449, 8.550927], [47.380732, 8.5782], [47.378074, 8.529225], [47.3825, 8.505172], [47.362478, 8.533817], [47.41418, 8.535026], [47.36929, 8.491972], [47.369589, 8.564231], [47.41342, 8.54581], [47.37126, 8.520148], [47.368283, 8.550474], [47.397465, 8.532337], [47.3666, 8.536417], [47.398159, 8.536048], [47.373995, 8.501771], [47.410861, 8.563076], [47.386573, 8.479651], [47.382682, 8.529915], [47.411267, 8.567577], [47.368964, 8.501035], [47.373622, 8.549963], [47.358848, 8.55221], [47.412899, 8.547589], [47.375597, 8.535305], [47.377045, 8.521947], [47.377344, 8.529422], [47.371177, 8.534711], [47.369532, 8.553346], [47.382544, 8.548189], [47.349774, 8.532286], [47.38008, 8.537808], [47.374291, 8.541131], [47.386318, 8.525897], [47.37055, 8.469924], [47.365124, 8.516488], [47.40324, 8.547427], [47.413456, 8.532586], [47.378954, 8.538857], [47.425174, 8.546095], [47.409847, 8.545087], [47.399225, 8.59187], [47.380256, 8.552273], [47.389867, 8.526393], [47.390362, 8.491368], [47.371162, 8.54288], [47.366196, 8.557023], [47.378495, 8.575186], [47.372398, 8.547183], [47.378966, 8.542393], [47.412714, 8.537792], [47.387724, 8.499515], [47.378624, 8.519502], [47.377765, 8.498707], [47.422359, 8.550675], [47.361865, 8.507102], [47.378454, 8.509765], [47.375817, 8.547108], [47.422247, 8.538969], [47.422415, 8.512412], [47.365703, 8.537154], [47.369546, 8.543496], [47.412151, 8.546831], [47.410422, 8.572051], [47.42029, 8.508778], [47.376508, 8.524584], [47.371586, 8.51025], [47.387661, 8.529447], [47.398859, 8.506427], [47.384617, 8.53463], [47.375512, 8.563827], [47.363752, 8.530361], [47.374683, 8.537723], [47.383509, 8.536607], [47.366931, 8.544209], [47.378018, 8.524694], [47.389313, 8.54021], [47.397482, 8.532444], [47.367898, 8.544613], [47.376454, 8.52551], [47.366058, 8.545211], [47.376021, 8.541816], [47.391332, 8.50621], [47.365923, 8.534841], [47.378299, 8.527375], [47.381915, 8.52925], [47.410886, 8.563275], [47.418123, 8.510709], [47.386723, 8.544858], [47.378463, 8.550752], [47.379634, 8.542102], [47.37239, 8.547156], [47.379828, 8.542477], [47.386936, 8.473288], [47.385007, 8.537075], [47.375906, 8.529313], [47.376229, 8.544508], [47.42751, 8.547323], [47.43, 8.549337], [47.409065, 8.54788], [47.386109, 8.521389], [47.388448, 8.491105], [47.366897, 8.533603], [47.34706, 8.528207], [47.411193, 8.485525], [47.360351, 8.552188], [47.388402, 8.525264], [47.379634, 8.542102], [47.370179, 8.548792], [47.372822, 8.535831], [47.377515, 8.527531], [47.376774, 8.559775], [47.369523, 8.526031], [47.41256, 8.546389], [47.398334, 8.479205], [47.349382, 8.562733], [47.390789, 8.508556], [47.382302, 8.533006], [47.361298, 8.5254], [47.385302, 8.507585], [47.373041, 8.51927], [47.370215, 8.548806], [47.366527, 8.545088], [47.374486, 8.536699], [47.370161, 8.548791], [47.404656, 8.574883], [47.358944, 8.551589], [47.389904, 8.475358], [47.382219, 8.530356], [47.411099, 8.535506], [47.406493, 8.584648], [47.371498, 8.557479], [47.407587, 8.564889], [47.361411, 8.54763], [47.416923, 8.545459], [47.39863, 8.506872], [47.373736, 8.546549], [47.389386, 8.51625], [47.377944, 8.492871], [47.407206, 8.564298], [47.366738, 8.541782], [47.369397, 8.537481], [47.402436, 8.535579], [47.409013, 8.542989], [47.374298, 8.521414], [47.370188, 8.548792], [47.367611, 8.552935], [47.359781, 8.594565], [47.427178, 8.536818], [47.378173, 8.509972], [47.386417, 8.531647], [47.386961, 8.533976], [47.40762, 8.543716], [47.368599, 8.520067], [47.329972, 8.533547], [47.364908, 8.504846], [47.378232, 8.51723], [47.408117, 8.53881], [47.383087, 8.530837], [47.377262, 8.556832], [47.41941, 8.547777], [47.373047, 8.532949], [47.353033, 8.553531], [47.366989, 8.523795], [47.385575, 8.528424], [47.393677, 8.491765], [47.3684, 8.556924], [47.389053, 8.538191], [47.393408, 8.524703], [47.355443, 8.600189], [47.370361, 8.514396], [47.391532, 8.519499], [47.369436, 8.541838], [47.373972, 8.527327], [47.366065, 8.559404], [47.378638, 8.539976], [47.363898, 8.549045], [47.41919, 8.508106], [47.373266, 8.531589], [47.388762, 8.491178], [47.420132, 8.548481], [47.350027, 8.56673], [47.374488, 8.539321], [47.3783, 8.509855], [47.414215, 8.518886], [47.404578, 8.483965], [47.374415, 8.527137], [47.365184, 8.555639], [47.409878, 8.540874], [47.393799, 8.509849], [47.380046, 8.554454], [47.371392, 8.546129], [47.382514, 8.540083], [47.375375, 8.560341], [47.41384, 8.527187], [47.391023, 8.521012], [47.370642, 8.535137], [47.347628, 8.566402], [47.403265, 8.555125], [47.364084, 8.547447], [47.425944, 8.493583], [47.391556, 8.54268], [47.371942, 8.516494], [47.378802, 8.539794], [47.379981, 8.548135], [47.409608, 8.537132], [47.373629, 8.519785], [47.391358, 8.538954], [47.381038, 8.503659], [47.366354, 8.540556], [47.355289, 8.596731], [47.387199, 8.519226], [47.378048, 8.513836], [47.375182, 8.518254], [47.408956, 8.539437], [47.371707, 8.519561], [47.378003, 8.508949], [47.374749, 8.48906], [47.369181, 8.527997], [47.404273, 8.560658], [47.400311, 8.494267], [47.374833, 8.527635], [47.374284, 8.543792], [47.409988, 8.550059], [47.368951, 8.524722], [47.40017, 8.586459], [47.380381, 8.512453], [47.386824, 8.502517], [47.366392, 8.559067], [47.388596, 8.48675], [47.360976, 8.531006], [47.383699, 8.5155], [47.406385, 8.583744], [47.374109, 8.502011], [47.403169, 8.547333], [47.370544, 8.549236], [47.376521, 8.526995], [47.402391, 8.535539], [47.390752, 8.548624], [47.398109, 8.535623], [47.375695, 8.537333], [47.360305, 8.550426], [47.392477, 8.506908], [47.371109, 8.530512], [47.38453, 8.539052], [47.397012, 8.530752], [47.41072, 8.553413], [47.377461, 8.541673], [47.380501, 8.525659], [47.403325, 8.534803], [47.400374, 8.548931], [47.361589, 8.547779], [47.415221, 8.562373], [47.391058, 8.523066], [47.378129, 8.509918], [47.379612, 8.542579], [47.37253, 8.528582], [47.365806, 8.539512], [47.364402, 8.55643], [47.366443, 8.540691], [47.41996, 8.548544], [47.357803, 8.552413], [47.404501, 8.575012], [47.388282, 8.485605], [47.364523, 8.566229], [47.37962, 8.523628], [47.385841, 8.525013], [47.381576, 8.513603], [47.358546, 8.532082], [47.373494, 8.519835], [47.420226, 8.508936], [47.394494, 8.479091], [47.390923, 8.52211], [47.366679, 8.501995], [47.374407, 8.517484], [47.368272, 8.536571], [47.370233, 8.548819], [47.390694, 8.522582], [47.377856, 8.519884], [47.402534, 8.535648], [47.382367, 8.49909], [47.350169, 8.532307], [47.410641, 8.543924], [47.364276, 8.546259], [47.423053, 8.503797], [47.357457, 8.521628], [47.361338, 8.549601], [47.381935, 8.529025], [47.409443, 8.549703], [47.336878, 8.520482], [47.396694, 8.537753], [47.374821, 8.520299], [47.363959, 8.530326], [47.374762, 8.54461], [47.385031, 8.508639], [47.427187, 8.536818], [47.374184, 8.5192], [47.391061, 8.538895], [47.36454, 8.531688], [47.363993, 8.531584], [47.368258, 8.561449], [47.370372, 8.527544], [47.388954, 8.485896], [47.385306, 8.542485], [47.386538, 8.541636], [47.376608, 8.54339], [47.385722, 8.508786], [47.372422, 8.545647], [47.368843, 8.501496], [47.375009, 8.545118], [47.365987, 8.546997], [47.404243, 8.560949], [47.41771, 8.483056], [47.378767, 8.519651], [47.37843, 8.525881], [47.367973, 8.495361], [47.39595, 8.540307], [47.391835, 8.484615], [47.374308, 8.530803], [47.391099, 8.52259], [47.423119, 8.542778], [47.382457, 8.537592], [47.430624, 8.541529], [47.374751, 8.523873], [47.409168, 8.547458], [47.373657, 8.519719], [47.33854, 8.530176], [47.372531, 8.528542], [47.37718, 8.522002], [47.372775, 8.528441], [47.393767, 8.53915], [47.356887, 8.553201], [47.374281, 8.525121], [47.371278, 8.536434], [47.387256, 8.539863], [47.378586, 8.540664], [47.419306, 8.556734], [47.377071, 8.569978], [47.373662, 8.536351], [47.364789, 8.554624], [47.385966, 8.504804], [47.388705, 8.546436], [47.391039, 8.481169], [47.35479, 8.526829], [47.370027, 8.519262], [47.368409, 8.556924], [47.354552, 8.574001], [47.378731, 8.542507], [47.335594, 8.525008], [47.360476, 8.563404], [47.382749, 8.514143], [47.346614, 8.528714], [47.369755, 8.540428], [47.35159, 8.53039], [47.365911, 8.501437], [47.36652, 8.501754], [47.398276, 8.536964], [47.399798, 8.544255], [47.380989, 8.556526], [47.377995, 8.510776], [47.391625, 8.513395], [47.368836, 8.501244], [47.382219, 8.530342], [47.413672, 8.554217], [47.371935, 8.519221], [47.379062, 8.538846], [47.373671, 8.536338], [47.413023, 8.550612], [47.380524, 8.512562], [47.379124, 8.519963], [47.363034, 8.527355], [47.366496, 8.540784], [47.389527, 8.521353], [47.37214, 8.539431], [47.352104, 8.558488], [47.394072, 8.475996], [47.385563, 8.53061], [47.378388, 8.523656], [47.422439, 8.550822], [47.392196, 8.494464], [47.387272, 8.519121], [47.380219, 8.542988], [47.353827, 8.600737], [47.419062, 8.538055], [47.364853, 8.530927], [47.392086, 8.500502], [47.398093, 8.501682], [47.36167, 8.532755], [47.415512, 8.553712], [47.411667, 8.561596], [47.337956, 8.538686], [47.377459, 8.539038], [47.37305, 8.51923], [47.373334, 8.553691], [47.376402, 8.528131], [47.364149, 8.565811], [47.374261, 8.524327], [47.37868, 8.523132], [47.374527, 8.539971], [47.341489, 8.530409], [47.353644, 8.554589], [47.414837, 8.541533], [47.386327, 8.52591], [47.374858, 8.532655], [47.41403, 8.550673], [47.398861, 8.533148], [47.422716, 8.550961], [47.374405, 8.55182], [47.390612, 8.489625], [47.368946, 8.540358], [47.364707, 8.554689], [47.364614, 8.566139], [47.368953, 8.501233], [47.364295, 8.546101], [47.38786, 8.486603], [47.381728, 8.530928], [47.406277, 8.562741], [47.417336, 8.55387], [47.351626, 8.583429], [47.369814, 8.552161], [47.377817, 8.529815], [47.366426, 8.548065], [47.39276, 8.532453], [47.394365, 8.489328], [47.373573, 8.534363], [47.412813, 8.522515], [47.344518, 8.530656], [47.373662, 8.536351], [47.349466, 8.532412], [47.37553, 8.524352], [47.340635, 8.530272], [47.391405, 8.55089], [47.362729, 8.515712], [47.415503, 8.545244], [47.367788, 8.534469], [47.367427, 8.506764], [47.372817, 8.483938], [47.374238, 8.542984], [47.383035, 8.473967], [47.370152, 8.548791], [47.420645, 8.502477], [47.378279, 8.530381], [47.402454, 8.53558], [47.387361, 8.519282], [47.403725, 8.485803], [47.377339, 8.535619], [47.37865, 8.496368], [47.409566, 8.53778], [47.395531, 8.493709], [47.369312, 8.543517], [47.373779, 8.537333], [47.389487, 8.483708], [47.371448, 8.562642], [47.364758, 8.554067], [47.372982, 8.533133], [47.371159, 8.518517], [47.379495, 8.544417], [47.375614, 8.527797], [47.334639, 8.529964], [47.414423, 8.4805], [47.376168, 8.516698], [47.412921, 8.54629], [47.401715, 8.581153], [47.39408, 8.525035], [47.371881, 8.52592], [47.391273, 8.523229], [47.364291, 8.52182], [47.377486, 8.543793], [47.374753, 8.541723], [47.385117, 8.508125], [47.361537, 8.565293], [47.370088, 8.548909], [47.394857, 8.520799], [47.386096, 8.548342], [47.402544, 8.487131], [47.42263, 8.550574], [47.392705, 8.490898], [47.365258, 8.501027], [47.415646, 8.512952], [47.398164, 8.534524], [47.378759, 8.519571], [47.371494, 8.54768], [47.398015, 8.534163], [47.36922, 8.516121], [47.35839, 8.505444], [47.369434, 8.537297], [47.413714, 8.550773], [47.379885, 8.516482], [47.389438, 8.485111], [47.379487, 8.537742], [47.383945, 8.532404], [47.374677, 8.545933], [47.419134, 8.506356], [47.387493, 8.519523], [47.401277, 8.534456], [47.376655, 8.534744], [47.38709, 8.497052], [47.364336, 8.529553], [47.380993, 8.507578], [47.376528, 8.527233], [47.411126, 8.542039], [47.367209, 8.544321], [47.397952, 8.534122], [47.371862, 8.522133], [47.381406, 8.517347], [47.370769, 8.515013], [47.385278, 8.550113], [47.421257, 8.507366], [47.387961, 8.485387], [47.393788, 8.472586], [47.403885, 8.569103], [47.36767, 8.495051], [47.376178, 8.488254], [47.41236, 8.550373], [47.387966, 8.485811], [47.376758, 8.538097], [47.371456, 8.547852], [47.374823, 8.552226], [47.371716, 8.523388], [47.362198, 8.526398], [47.373077, 8.525931], [47.360966, 8.531072], [47.37869, 8.54203], [47.367325, 8.545316], [47.372816, 8.524006], [47.431364, 8.516464], [47.405176, 8.557524], [47.364347, 8.5501], [47.379481, 8.52977], [47.375939, 8.541946], [47.37278, 8.538293], [47.385193, 8.530708], [47.429636, 8.487227], [47.361466, 8.5258], [47.35761, 8.521618], [47.348896, 8.528019], [47.369027, 8.503009], [47.39036, 8.505316], [47.381158, 8.491531], [47.403539, 8.496358], [47.38959, 8.493115], [47.414181, 8.541533], [47.382147, 8.533215], [47.404731, 8.59452], [47.382387, 8.514347], [47.378624, 8.519529], [47.411882, 8.546706], [47.414639, 8.475429], [47.40505, 8.482543], [47.366744, 8.535494], [47.397923, 8.531472], [47.373897, 8.544778], [47.367016, 8.513216], [47.364814, 8.566778], [47.395757, 8.54543], [47.398987, 8.541589], [47.398718, 8.539702], [47.369909, 8.602663], [47.412944, 8.481955], [47.404671, 8.595062], [47.386775, 8.499959], [47.364577, 8.566204], [47.36058, 8.597468], [47.370667, 8.524942], [47.350178, 8.532307], [47.426312, 8.541877], [47.367136, 8.534893], [47.334935, 8.529983], [47.426297, 8.554641], [47.420521, 8.482568], [47.377003, 8.539757], [47.372011, 8.534953], [47.4106, 8.549992], [47.350952, 8.583269], [47.422914, 8.54345], [47.347114, 8.563783], [47.362332, 8.526427], [47.376647, 8.528957], [47.367853, 8.560514], [47.392459, 8.50304], [47.395384, 8.533672], [47.375987, 8.488436], [47.377031, 8.539678], [47.427089, 8.551754], [47.396675, 8.494526], [47.366763, 8.541995], [47.398876, 8.547575], [47.371335, 8.530331], [47.402418, 8.535579], [47.36891, 8.540424], [47.422993, 8.551192], [47.368924, 8.524708], [47.372572, 8.517486], [47.390168, 8.491934], [47.369292, 8.525761], [47.405271, 8.480918], [47.383667, 8.573376], [47.391229, 8.515427], [47.357287, 8.600177], [47.360277, 8.568986], [47.408673, 8.546507], [47.378732, 8.539554], [47.382953, 8.528914], [47.378057, 8.513836], [47.36115, 8.535378], [47.360286, 8.568999], [47.36034, 8.569001], [47.360242, 8.568879], [47.384609, 8.502711], [47.371379, 8.547506], [47.423335, 8.494551], [47.402707, 8.501761], [47.414492, 8.533323], [47.389163, 8.482722], [47.351093, 8.559738], [47.370609, 8.512799], [47.364313, 8.557315], [47.352614, 8.576276], [47.379528, 8.527639], [47.381952, 8.512763], [47.377008, 8.543915], [47.371878, 8.522358], [47.352027, 8.576435], [47.410461, 8.569905], [47.375615, 8.526777], [47.413577, 8.523538], [47.374429, 8.55672], [47.393604, 8.538219], [47.361739, 8.526362], [47.334368, 8.533822], [47.369184, 8.527666], [47.407662, 8.583785], [47.402143, 8.579705], [47.409188, 8.546279], [47.384161, 8.528581], [47.399405, 8.476126], [47.405591, 8.549941], [47.369305, 8.523418], [47.399055, 8.542094], [47.410841, 8.537979], [47.398032, 8.532309], [47.375203, 8.54458], [47.408209, 8.546166], [47.369399, 8.525803], [47.393766, 8.502735], [47.356282, 8.551521], [47.384972, 8.508201], [47.393385, 8.493296], [47.367825, 8.494749], [47.360477, 8.596963], [47.362533, 8.520394], [47.398259, 8.536858], [47.376847, 8.542852], [47.371486, 8.547535], [47.365099, 8.521121], [47.375381, 8.557865], [47.391644, 8.519117], [47.413111, 8.479308], [47.363627, 8.535085], [47.37776, 8.537707], [47.359954, 8.532547], [47.364006, 8.526315], [47.368984, 8.541127], [47.377606, 8.537862], [47.406088, 8.590071], [47.387574, 8.488386], [47.419819, 8.500379], [47.372766, 8.535022], [47.373486, 8.529276], [47.419202, 8.546898], [47.381171, 8.5422], [47.36868, 8.541862], [47.359024, 8.558237], [47.366775, 8.534157], [47.410155, 8.574576], [47.390283, 8.509699], [47.402126, 8.495456], [47.374509, 8.539957], [47.370242, 8.548833], [47.385415, 8.542434], [47.369453, 8.529684], [47.373328, 8.525036], [47.38958, 8.5224], [47.399865, 8.5448], [47.377638, 8.516331], [47.391319, 8.536384], [47.411445, 8.525469], [47.417187, 8.543172], [47.385012, 8.528956], [47.372031, 8.522361], [47.380817, 8.512011], [47.365912, 8.506204], [47.374318, 8.578248], [47.363756, 8.55169], [47.382409, 8.54167], [47.397923, 8.532479], [47.355773, 8.532276], [47.369043, 8.523505], [47.391513, 8.519618], [47.343874, 8.530259], [47.370024, 8.518666], [47.370323, 8.513561], [47.372941, 8.524141], [47.393688, 8.49558], [47.421065, 8.549614], [47.420313, 8.508288], [47.369453, 8.52587], [47.419212, 8.547733], [47.367833, 8.495875], [47.367216, 8.54448], [47.361108, 8.600379], [47.388363, 8.485646], [47.35944, 8.535462], [47.384463, 8.531845], [47.382222, 8.488373], [47.391184, 8.523095], [47.362067, 8.559836], [47.37854, 8.5752], [47.413338, 8.509632], [47.387023, 8.528467], [47.372612, 8.528543], [47.375616, 8.537133], [47.360298, 8.566908], [47.374533, 8.549743], [47.386488, 8.547754], [47.378934, 8.559688], [47.398362, 8.526951], [47.395872, 8.526701], [47.371399, 8.535947], [47.417627, 8.546097], [47.337061, 8.539118], [47.364553, 8.521746], [47.378628, 8.499691], [47.351552, 8.524883], [47.394844, 8.52313], [47.33922, 8.519101], [47.38136, 8.542178], [47.366703, 8.537929], [47.402181, 8.499286], [47.364384, 8.56661], [47.409241, 8.546373], [47.374272, 8.524115], [47.362516, 8.548659], [47.365886, 8.545313], [47.410487, 8.556165], [47.351881, 8.527286], [47.389246, 8.527387], [47.386463, 8.517171], [47.373654, 8.522871], [47.410893, 8.558823], [47.378766, 8.543501], [47.425075, 8.537636], [47.377554, 8.518567], [47.368097, 8.496542], [47.37437, 8.521376], [47.377517, 8.522499], [47.374477, 8.535825], [47.412378, 8.523871], [47.415179, 8.528275], [47.405631, 8.591784], [47.391729, 8.518616], [47.374329, 8.514238], [47.354858, 8.510946], [47.370755, 8.512656], [47.361254, 8.56297], [47.398184, 8.532458], [47.342762, 8.530792], [47.387089, 8.519489], [47.364618, 8.555508], [47.376459, 8.548671], [47.36263, 8.547099], [47.377652, 8.527283], [47.363061, 8.529235], [47.377383, 8.525304], [47.378414, 8.54364], [47.373416, 8.53481], [47.360453, 8.52247], [47.386309, 8.53538], [47.414113, 8.55045], [47.374196, 8.475622], [47.388549, 8.53638], [47.367742, 8.534614], [47.381456, 8.535902], [47.366909, 8.558561], [47.367396, 8.496489], [47.401983, 8.499282], [47.40752, 8.54382], [47.374485, 8.541612], [47.408252, 8.541609], [47.385274, 8.507638], [47.387245, 8.519094], [47.377331, 8.527872], [47.345271, 8.535608], [47.376893, 8.537119], [47.406684, 8.56153], [47.41455, 8.559258], [47.345116, 8.534916], [47.396188, 8.517011], [47.372624, 8.515726]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_cd76bd574f4b3ae6bc67eae70b1289ec = L.heatLayer(\n", - " [[47.357032, 8.506423], [47.372131, 8.539418], [47.387024, 8.519659], [47.388342, 8.516348], [47.388437, 8.49039], [47.383796, 8.54048], [47.376704, 8.555006], [47.373077, 8.517284], [47.373893, 8.495174], [47.37948, 8.527982], [47.386885, 8.484955], [47.418954, 8.506352], [47.399667, 8.467931], [47.364094, 8.528422], [47.383959, 8.530948], [47.374709, 8.535949], [47.413083, 8.515802], [47.373511, 8.519942], [47.388172, 8.520014], [47.34245, 8.536251], [47.430165, 8.549963], [47.360748, 8.550158], [47.406511, 8.583747], [47.375137, 8.523047], [47.402981, 8.576848], [47.359159, 8.563707], [47.375804, 8.521021], [47.381158, 8.491597], [47.354802, 8.558532], [47.3729, 8.535117], [47.369994, 8.519963], [47.361345, 8.554486], [47.375401, 8.547312], [47.378266, 8.481197], [47.415416, 8.518301], [47.375204, 8.528332], [47.376948, 8.535174], [47.382468, 8.529685], [47.377654, 8.537506], [47.372437, 8.517391], [47.360131, 8.547921], [47.329792, 8.532643], [47.374395, 8.521601], [47.365898, 8.538402], [47.364915, 8.505058], [47.361027, 8.571398], [47.364015, 8.549008], [47.376592, 8.534677], [47.360517, 8.535749], [47.371539, 8.51924], [47.409319, 8.558817], [47.357952, 8.529223], [47.366183, 8.540579], [47.404592, 8.557406], [47.342744, 8.530831], [47.365098, 8.55328], [47.414015, 8.546658], [47.399028, 8.506629], [47.37025, 8.548846], [47.376767, 8.559602], [47.388581, 8.520592], [47.376964, 8.526765], [47.418131, 8.512684], [47.389662, 8.521316], [47.378181, 8.543582], [47.385145, 8.508019], [47.389218, 8.527453], [47.376048, 8.529501], [47.362195, 8.547513], [47.417904, 8.50319], [47.375074, 8.485054], [47.35606, 8.522857], [47.361381, 8.602728], [47.378293, 8.526051], [47.39793, 8.533579], [47.400055, 8.493746], [47.388308, 8.536202], [47.353497, 8.558623], [47.36927, 8.564622], [47.376623, 8.511318], [47.393489, 8.524732], [47.407816, 8.546794], [47.352285, 8.507069], [47.358619, 8.553608], [47.386516, 8.547715], [47.408742, 8.483066], [47.375493, 8.524458], [47.405431, 8.539404], [47.413746, 8.545592], [47.408099, 8.54725], [47.413257, 8.516481], [47.365307, 8.56426], [47.395614, 8.522589], [47.37759, 8.522342], [47.376028, 8.510511], [47.352738, 8.525133], [47.421119, 8.549695], [47.383304, 8.549568], [47.412722, 8.546352], [47.380394, 8.501329], [47.35505, 8.558034], [47.370085, 8.529366], [47.34485, 8.533535], [47.397914, 8.474852], [47.390441, 8.539796], [47.405825, 8.561022], [47.377665, 8.513405], [47.364907, 8.512777], [47.384454, 8.531858], [47.377542, 8.574146], [47.351369, 8.600974], [47.419882, 8.504264], [47.396024, 8.526863], [47.367381, 8.544126], [47.380448, 8.527446], [47.369919, 8.513487], [47.374732, 8.55801], [47.400565, 8.548789], [47.369588, 8.46686], [47.386121, 8.526793], [47.395057, 8.515822], [47.328048, 8.529631], [47.393609, 8.489353], [47.375093, 8.52298], [47.422053, 8.502929], [47.368006, 8.564224], [47.403119, 8.580229], [47.376504, 8.5164], [47.325296, 8.514255], [47.41484, 8.551538], [47.370138, 8.540899], [47.363443, 8.575421], [47.373023, 8.534511], [47.368661, 8.543901], [47.379399, 8.559936], [47.360629, 8.529583], [47.412254, 8.51499], [47.362473, 8.53526], [47.400771, 8.548846], [47.364537, 8.533012], [47.373345, 8.503903], [47.394148, 8.525487], [47.398492, 8.526529], [47.410304, 8.548078], [47.385541, 8.485392], [47.36158, 8.547792], [47.375496, 8.486069], [47.431038, 8.549888], [47.374546, 8.538885], [47.377652, 8.508028], [47.402974, 8.494214], [47.387646, 8.544229], [47.363455, 8.535135], [47.376156, 8.541779], [47.394709, 8.545011], [47.364007, 8.556395], [47.387553, 8.527551], [47.38318, 8.53999], [47.397929, 8.480178], [47.369643, 8.536189], [47.369282, 8.491812], [47.400791, 8.548582], [47.405233, 8.504872], [47.363762, 8.564016], [47.3702, 8.53624], [47.37559, 8.536973], [47.416481, 8.511153], [47.368312, 8.560431], [47.373248, 8.538276], [47.400956, 8.534171], [47.370224, 8.548806], [47.370197, 8.548792], [47.368524, 8.53083], [47.377722, 8.52841], [47.342966, 8.535918], [47.385391, 8.536434], [47.409112, 8.558799], [47.375881, 8.577514], [47.386565, 8.50324], [47.410829, 8.553389], [47.387639, 8.521248], [47.365106, 8.536519], [47.373174, 8.503899], [47.370358, 8.548888], [47.408897, 8.54569], [47.395767, 8.53115], [47.3615, 8.549551], [47.412175, 8.546209], [47.384499, 8.531886], [47.375387, 8.518497], [47.389607, 8.511818], [47.362381, 8.504796], [47.38432, 8.526995], [47.335857, 8.532371], [47.383062, 8.483966], [47.391616, 8.51917], [47.367359, 8.480772], [47.408319, 8.525988], [47.415276, 8.51411], [47.379143, 8.530306], [47.404546, 8.548157], [47.371211, 8.520583], [47.40485, 8.548375], [47.369724, 8.490683], [47.378638, 8.541896], [47.366522, 8.540851], [47.425327, 8.547967], [47.37733, 8.549749], [47.41594, 8.512322], [47.381504, 8.513561], [47.393489, 8.524732], [47.414536, 8.546695], [47.372725, 8.534584], [47.378574, 8.547563], [47.377541, 8.505404], [47.417533, 8.55402], [47.38975, 8.549054], [47.357465, 8.521774], [47.411145, 8.570847], [47.378731, 8.542468], [47.369406, 8.534582], [47.378886, 8.551635], [47.414082, 8.518671], [47.367978, 8.535334], [47.378463, 8.509805], [47.375548, 8.524326], [47.365071, 8.553333], [47.402062, 8.497574], [47.364234, 8.536435], [47.404741, 8.57621], [47.410307, 8.542128], [47.364471, 8.56791], [47.37262, 8.528663], [47.379464, 8.529664], [47.405038, 8.491751], [47.399573, 8.495326], [47.385842, 8.548575], [47.369089, 8.52528], [47.373352, 8.553678], [47.383406, 8.533227], [47.375195, 8.527378], [47.40769, 8.489962], [47.405187, 8.481287], [47.359319, 8.521639], [47.365117, 8.553214], [47.391261, 8.487399], [47.359839, 8.50824], [47.409855, 8.549884], [47.370334, 8.48892], [47.359578, 8.593343], [47.370179, 8.548792], [47.378503, 8.525764], [47.389187, 8.488974], [47.388478, 8.488828], [47.417296, 8.523097], [47.42079, 8.502347], [47.410817, 8.561114], [47.375431, 8.528124], [47.406593, 8.576329], [47.387131, 8.518814], [47.372073, 8.473608], [47.406907, 8.550564], [47.376239, 8.567616], [47.373573, 8.534403], [47.373319, 8.534636], [47.378671, 8.523132], [47.386749, 8.544899], [47.372053, 8.529565], [47.418009, 8.505525], [47.403878, 8.485819], [47.366682, 8.535386], [47.366918, 8.54556], [47.402096, 8.498728], [47.358083, 8.518173], [47.381484, 8.533016], [47.391105, 8.522908], [47.379077, 8.51052], [47.395387, 8.527658], [47.364388, 8.555172], [47.390141, 8.51049], [47.395842, 8.519441], [47.378501, 8.540212], [47.389593, 8.541951], [47.363239, 8.535157], [47.392238, 8.523819], [47.427529, 8.546303], [47.37091, 8.518181], [47.381119, 8.536319], [47.370508, 8.515975], [47.365185, 8.549853], [47.367353, 8.522425], [47.38341, 8.539492], [47.397383, 8.486831], [47.398774, 8.54226], [47.404206, 8.573933], [47.384871, 8.531496], [47.375666, 8.516529], [47.37348, 8.519398], [47.421821, 8.502712], [47.391944, 8.517852], [47.410835, 8.542378], [47.387174, 8.519027], [47.377113, 8.527179], [47.409807, 8.549286], [47.369605, 8.525874], [47.374395, 8.521641], [47.363947, 8.551442], [47.382852, 8.530051], [47.361522, 8.526516], [47.360568, 8.528496], [47.417928, 8.503535], [47.387616, 8.486625], [47.368636, 8.547369], [47.363975, 8.531558], [47.429458, 8.544858], [47.377362, 8.538837], [47.359834, 8.521359], [47.385088, 8.532308], [47.368549, 8.55081], [47.373698, 8.528738], [47.371469, 8.534227], [47.398103, 8.541849], [47.420585, 8.507061], [47.364101, 8.54758], [47.372665, 8.529551], [47.40689, 8.550431], [47.362126, 8.559268], [47.399062, 8.521387], [47.371389, 8.522706], [47.377637, 8.538313], [47.366903, 8.518576], [47.349189, 8.57787], [47.401729, 8.545501], [47.386343, 8.518493], [47.373113, 8.551435], [47.354623, 8.601244], [47.364596, 8.537144], [47.357159, 8.521781], [47.373779, 8.536327], [47.386593, 8.518604], [47.354514, 8.53417], [47.408741, 8.539379], [47.414461, 8.554499], [47.361363, 8.576621], [47.368872, 8.501218], [47.367865, 8.520555], [47.33252, 8.517973], [47.373798, 8.544723], [47.386782, 8.490397], [47.429977, 8.549853], [47.342008, 8.530618], [47.374821, 8.544015], [47.370743, 8.53878], [47.382227, 8.514198], [47.378101, 8.530205], [47.366105, 8.546867], [47.391646, 8.538881], [47.373339, 8.520044], [47.362465, 8.504506], [47.370063, 8.541163], [47.379792, 8.520625], [47.389878, 8.49214], [47.376881, 8.528882], [47.41709, 8.523039], [47.394276, 8.490266], [47.369071, 8.525307], [47.377769, 8.53768], [47.369852, 8.516796], [47.372566, 8.550272], [47.376166, 8.544507], [47.348403, 8.570931], [47.375307, 8.518362], [47.38151, 8.483539], [47.388926, 8.488982], [47.379464, 8.525929], [47.335332, 8.528906], [47.425815, 8.493938], [47.409598, 8.558796], [47.400983, 8.542624], [47.372847, 8.539737], [47.374015, 8.528479], [47.385143, 8.495464], [47.373971, 8.529339], [47.394389, 8.488666], [47.405831, 8.590609], [47.403199, 8.486296], [47.37442, 8.544643], [47.37029, 8.514236], [47.377078, 8.538434], [47.399303, 8.542417], [47.372149, 8.520324], [47.359919, 8.521916], [47.377317, 8.529355], [47.386444, 8.541065], [47.39873, 8.506755], [47.357215, 8.558265], [47.422272, 8.539102], [47.372422, 8.523812], [47.374779, 8.539976], [47.377337, 8.519609], [47.394287, 8.494916], [47.32803, 8.529657], [47.35931, 8.509116], [47.366909, 8.562295], [47.397332, 8.531195], [47.388752, 8.548026], [47.376946, 8.526765], [47.429949, 8.538718], [47.412096, 8.550659], [47.369161, 8.528221], [47.410908, 8.543267], [47.416947, 8.514303], [47.394223, 8.490146], [47.369878, 8.540762], [47.358711, 8.517417], [47.349164, 8.562927], [47.372908, 8.533316], [47.416647, 8.544141], [47.373016, 8.518012], [47.379954, 8.552849], [47.411828, 8.524973], [47.361853, 8.553053], [47.36966, 8.508437], [47.3736, 8.534403], [47.38794, 8.486658], [47.410928, 8.564442], [47.372034, 8.536384], [47.370288, 8.478075], [47.362274, 8.557894], [47.378144, 8.527571], [47.393169, 8.494245], [47.417877, 8.548156], [47.36833, 8.541776], [47.378265, 8.526196], [47.365933, 8.536589], [47.369547, 8.520576], [47.363514, 8.558993], [47.403859, 8.571766], [47.336141, 8.5337], [47.385164, 8.529012], [47.378778, 8.53941], [47.379035, 8.538912], [47.414233, 8.551035], [47.377403, 8.512552], [47.356867, 8.527004], [47.335088, 8.52996], [47.385656, 8.535962], [47.429232, 8.510641], [47.33598, 8.528854], [47.397923, 8.532439], [47.388059, 8.524383], [47.381523, 8.513482], [47.41874, 8.547273], [47.36508, 8.553333], [47.37746, 8.522789], [47.373406, 8.524402], [47.366648, 8.534247], [47.363473, 8.535135], [47.349982, 8.561157], [47.417567, 8.509479], [47.383711, 8.539048], [47.388992, 8.486745], [47.367354, 8.541292], [47.375541, 8.528828], [47.407854, 8.548411], [47.383052, 8.530744], [47.408986, 8.543876], [47.38266, 8.540774], [47.373029, 8.532895], [47.372748, 8.531247], [47.390352, 8.528284], [47.375701, 8.52907], [47.382318, 8.528464], [47.403198, 8.588538], [47.374236, 8.52418], [47.371471, 8.502276], [47.382556, 8.500961], [47.373925, 8.536145], [47.368868, 8.524918], [47.412218, 8.550158], [47.40064, 8.477846], [47.373278, 8.494606], [47.374062, 8.530255], [47.403625, 8.48588], [47.408015, 8.582679], [47.384241, 8.493843], [47.377721, 8.538063], [47.353616, 8.51198], [47.378265, 8.574731], [47.377013, 8.544326], [47.37069, 8.51664], [47.369334, 8.505822], [47.389478, 8.486662], [47.352416, 8.602453], [47.3893, 8.527295], [47.361263, 8.547997], [47.386417, 8.526839], [47.403961, 8.572337], [47.392226, 8.524163], [47.344281, 8.529976], [47.385839, 8.52998], [47.370005, 8.556613], [47.383336, 8.53308], [47.369769, 8.525665], [47.429368, 8.544869], [47.37041, 8.602091], [47.376685, 8.56891], [47.369241, 8.534883], [47.370161, 8.548791], [47.36442, 8.53677], [47.407153, 8.551152], [47.39213, 8.523896], [47.370952, 8.523306], [47.376567, 8.518256], [47.361094, 8.549688], [47.394147, 8.5275], [47.390184, 8.491179], [47.412375, 8.524163], [47.408625, 8.580069], [47.332121, 8.52986], [47.340739, 8.528871], [47.373238, 8.535495], [47.371599, 8.522405], [47.375621, 8.524182], [47.405291, 8.585231], [47.415647, 8.507996], [47.389667, 8.512097], [47.364361, 8.529672], [47.390318, 8.52521], [47.372247, 8.520459], [47.363802, 8.547746], [47.410441, 8.546], [47.378318, 8.509882], [47.388387, 8.536376], [47.379498, 8.527996], [47.378032, 8.526085], [47.369495, 8.536583], [47.383746, 8.512348], [47.378743, 8.527901], [47.369347, 8.534197], [47.361737, 8.547385], [47.378564, 8.542067], [47.421177, 8.546383], [47.376842, 8.528259], [47.369776, 8.515364], [47.364425, 8.546567], [47.374657, 8.494223], [47.392197, 8.517698], [47.340009, 8.529955], [47.420823, 8.501725], [47.361918, 8.576911], [47.406743, 8.481291], [47.352685, 8.524959], [47.38232, 8.549084], [47.387344, 8.52201], [47.371971, 8.493852], [47.39424, 8.490186], [47.373233, 8.535124], [47.40402, 8.571848], [47.386717, 8.541706], [47.398004, 8.532468], [47.386549, 8.520431], [47.395785, 8.526461], [47.3536, 8.554456], [47.412224, 8.55424], [47.413357, 8.53925], [47.381237, 8.582568], [47.401995, 8.497957], [47.414237, 8.518423], [47.379213, 8.543842], [47.40897, 8.546526], [47.3823, 8.509234], [47.370418, 8.509233], [47.370243, 8.526006], [47.378031, 8.528098], [47.3348, 8.529994], [47.393417, 8.524717], [47.410571, 8.550243], [47.418209, 8.542584], [47.371782, 8.488009], [47.397358, 8.531275], [47.376417, 8.525628], [47.383329, 8.484316], [47.378866, 8.546245], [47.413632, 8.562114], [47.387283, 8.545506], [47.379572, 8.507537], [47.383503, 8.530594], [47.350075, 8.560815], [47.370469, 8.545752], [47.399778, 8.544494], [47.391051, 8.484785], [47.375924, 8.487508], [47.367603, 8.55659], [47.378014, 8.483192], [47.370508, 8.524581], [47.387366, 8.518726], [47.360619, 8.535407], [47.395773, 8.534396], [47.375811, 8.518346], [47.36997, 8.543398], [47.402578, 8.582112], [47.356601, 8.523663], [47.367575, 8.523727], [47.413765, 8.540782], [47.377339, 8.539459], [47.373284, 8.552392], [47.378605, 8.505134], [47.368051, 8.564172], [47.391956, 8.545086], [47.377703, 8.528555], [47.389217, 8.515108], [47.398373, 8.541841], [47.393385, 8.537632], [47.362429, 8.547465], [47.424299, 8.511019], [47.413803, 8.514796], [47.393675, 8.528882], [47.411203, 8.546241], [47.389254, 8.5274], [47.390107, 8.539008], [47.38038, 8.534609], [47.377743, 8.511791], [47.393741, 8.510324], [47.399637, 8.520419], [47.370129, 8.56423], [47.368483, 8.546492], [47.401971, 8.486762], [47.374714, 8.545801], [47.410372, 8.541931], [47.383416, 8.529387], [47.374413, 8.521642], [47.399186, 8.521523], [47.398004, 8.532481], [47.402409, 8.535565], [47.383237, 8.506153], [47.410321, 8.544461], [47.413843, 8.547661], [47.396462, 8.543272], [47.372431, 8.523813], [47.348998, 8.575285], [47.394267, 8.49024], [47.386243, 8.518518], [47.378661, 8.569217], [47.388246, 8.519817], [47.375665, 8.496203], [47.378626, 8.509703], [47.366048, 8.520598], [47.37777, 8.507911], [47.403499, 8.485931], [47.373226, 8.529165], [47.370103, 8.561276], [47.360101, 8.594956], [47.369847, 8.508692], [47.379506, 8.526181], [47.425732, 8.542289], [47.369005, 8.538003], [47.370959, 8.537778], [47.337533, 8.530169], [47.368275, 8.540954], [47.428667, 8.488918], [47.409021, 8.547693], [47.414143, 8.551113], [47.384507, 8.531992], [47.363341, 8.554554], [47.366143, 8.521063], [47.362795, 8.514455], [47.402686, 8.535717], [47.402632, 8.535729], [47.39554, 8.484754], [47.370352, 8.51433], [47.371456, 8.547865], [47.374633, 8.545839], [47.372677, 8.574042], [47.360687, 8.524447], [47.350333, 8.567597], [47.375804, 8.55222], [47.406729, 8.569799], [47.376852, 8.513759], [47.385562, 8.528769], [47.388874, 8.479829], [47.405678, 8.591533], [47.387868, 8.514127], [47.375085, 8.547451], [47.371786, 8.556571], [47.429499, 8.510925], [47.409046, 8.578488], [47.389686, 8.511991], [47.376925, 8.541358], [47.370466, 8.517549], [47.39974, 8.543777], [47.372247, 8.511759], [47.426015, 8.536184], [47.3912, 8.489226], [47.376602, 8.54878], [47.380648, 8.515703], [47.394137, 8.524692], [47.368316, 8.546992], [47.390401, 8.523092], [47.373671, 8.52879], [47.38573, 8.525262], [47.368761, 8.528663], [47.359616, 8.549062], [47.360524, 8.563087], [47.336325, 8.514186], [47.392639, 8.488221], [47.371531, 8.542928], [47.39133, 8.536238], [47.383726, 8.573761], [47.353927, 8.561558], [47.414009, 8.525481], [47.409335, 8.544122], [47.38322, 8.506007], [47.417081, 8.523026], [47.360106, 8.595353], [47.401738, 8.500469], [47.396594, 8.486563], [47.36647, 8.545365], [47.363868, 8.566931], [47.430401, 8.511646], [47.340392, 8.52942], [47.376944, 8.497949], [47.425835, 8.49362], [47.373951, 8.502538], [47.363324, 8.533782], [47.374714, 8.514365], [47.403447, 8.58437], [47.398294, 8.536991], [47.39394, 8.526556], [47.38324, 8.531794], [47.358132, 8.532073], [47.361253, 8.562983], [47.372792, 8.520801], [47.396208, 8.527383], [47.371999, 8.522003], [47.350121, 8.577308], [47.367682, 8.539061], [47.409482, 8.538136], [47.38216, 8.540433], [47.35521, 8.55449], [47.377675, 8.521973], [47.364266, 8.531206], [47.400166, 8.546237], [47.378593, 8.521925], [47.397237, 8.491054], [47.370289, 8.514395], [47.384412, 8.496787], [47.383004, 8.513843], [47.421026, 8.5021], [47.396797, 8.529793], [47.369793, 8.524116], [47.410579, 8.569828], [47.366538, 8.54767], [47.383155, 8.530295], [47.355846, 8.532159], [47.367174, 8.546968], [47.385472, 8.536462], [47.343361, 8.523578], [47.343692, 8.535231], [47.377003, 8.53977], [47.359879, 8.580164], [47.374822, 8.531648], [47.364552, 8.521865], [47.376334, 8.521019], [47.405705, 8.591507], [47.410486, 8.542185], [47.378054, 8.543698], [47.360524, 8.5631], [47.367927, 8.519736], [47.374828, 8.562912], [47.3909, 8.521751], [47.427032, 8.546544], [47.390854, 8.538904], [47.390006, 8.522051], [47.378057, 8.510896], [47.376299, 8.53524], [47.359706, 8.55093], [47.386481, 8.503556], [47.388035, 8.493971], [47.376649, 8.497705], [47.369188, 8.54799], [47.40535, 8.572857], [47.364335, 8.567947], [47.365843, 8.50787], [47.38394, 8.527199], [47.371423, 8.517225], [47.384518, 8.502868], [47.384534, 8.509835], [47.365899, 8.54677], [47.376699, 8.543366], [47.364807, 8.524399], [47.3806, 8.514073], [47.359468, 8.535423], [47.371033, 8.523241], [47.388163, 8.52004], [47.387779, 8.517873], [47.36285, 8.516257], [47.38848, 8.531292], [47.403636, 8.548363], [47.360511, 8.597123], [47.424584, 8.53532], [47.417928, 8.503535], [47.405896, 8.573107], [47.388591, 8.534791], [47.385156, 8.500907], [47.373802, 8.489412], [47.386001, 8.498116], [47.37077, 8.536887], [47.346327, 8.564296], [47.384966, 8.508877], [47.416683, 8.514642], [47.348288, 8.562432], [47.405945, 8.561647], [47.379269, 8.527488], [47.370748, 8.508472], [47.398519, 8.591458], [47.378897, 8.526911], [47.378275, 8.526077], [47.387926, 8.485214], [47.405275, 8.570444], [47.390491, 8.527916], [47.374067, 8.544781], [47.367817, 8.5605], [47.415181, 8.514639], [47.42576, 8.547817], [47.368042, 8.55399], [47.378855, 8.542682], [47.392487, 8.491105], [47.405098, 8.564597], [47.364542, 8.555043], [47.379586, 8.525362], [47.390991, 8.523542], [47.390391, 8.533676], [47.406338, 8.573011], [47.387575, 8.537591], [47.423084, 8.498403], [47.372381, 8.535755], [47.370147, 8.5409], [47.419817, 8.504501], [47.374272, 8.524115], [47.361894, 8.569219], [47.40208, 8.579743], [47.370547, 8.517551], [47.349446, 8.527911], [47.370994, 8.548226], [47.388238, 8.55191], [47.395216, 8.53241], [47.37467, 8.549521], [47.39103, 8.505846], [47.353412, 8.528958], [47.340415, 8.537387], [47.408645, 8.537151], [47.38328, 8.539926], [47.36853, 8.533994], [47.401292, 8.545187], [47.385859, 8.532589], [47.39998, 8.545929], [47.371428, 8.546077], [47.383577, 8.5734], [47.404646, 8.55742], [47.328508, 8.529548], [47.393529, 8.512744], [47.389079, 8.538298], [47.383595, 8.529457], [47.363342, 8.567409], [47.384528, 8.542959], [47.370326, 8.509417], [47.37067, 8.536951], [47.376995, 8.544299], [47.373211, 8.52024], [47.378174, 8.509892], [47.377063, 8.541903], [47.382156, 8.529467], [47.428076, 8.545532], [47.377026, 8.548577], [47.365072, 8.502652], [47.387233, 8.48822], [47.383536, 8.587465], [47.364286, 8.546127], [47.372937, 8.536018], [47.406206, 8.570888], [47.40916, 8.572302], [47.383223, 8.54023], [47.375215, 8.51852], [47.400338, 8.533907], [47.377155, 8.523684], [47.360004, 8.535779], [47.371953, 8.601595], [47.370335, 8.509377], [47.370161, 8.548791], [47.41571, 8.51286], [47.391932, 8.518103], [47.378445, 8.541376], [47.410274, 8.548422], [47.412179, 8.554226], [47.390932, 8.522097], [47.405213, 8.557432], [47.367102, 8.544133], [47.364413, 8.600954], [47.401456, 8.581889], [47.361466, 8.503546], [47.416794, 8.556019], [47.379931, 8.558], [47.385682, 8.536095], [47.406916, 8.550538], [47.426332, 8.554694], [47.369818, 8.533875], [47.366451, 8.537924], [47.37773, 8.537997], [47.372974, 8.533066], [47.387742, 8.486707], [47.366663, 8.549592], [47.368908, 8.530242], [47.382299, 8.530437], [47.376207, 8.525916], [47.36684, 8.543307], [47.366192, 8.540566], [47.371823, 8.533969], [47.356549, 8.519598], [47.412157, 8.546235], [47.362403, 8.547372], [47.383412, 8.574615], [47.37706, 8.510731], [47.37301, 8.504134], [47.390056, 8.509985], [47.358355, 8.586022], [47.429936, 8.486862], [47.422247, 8.538969], [47.422256, 8.538956], [47.364539, 8.546887], [47.373714, 8.545012], [47.368762, 8.543638], [47.378324, 8.530382], [47.354499, 8.523434], [47.403817, 8.503267], [47.365989, 8.533532], [47.370705, 8.535204], [47.378014, 8.536507], [47.383896, 8.540403], [47.402453, 8.553505], [47.374096, 8.553005], [47.386957, 8.498744], [47.372647, 8.52093], [47.381371, 8.571738], [47.379399, 8.542203], [47.377739, 8.531429], [47.376751, 8.536878], [47.4091, 8.545124], [47.419462, 8.507913], [47.414449, 8.545474], [47.360242, 8.552225], [47.380438, 8.542728], [47.364717, 8.566657], [47.385528, 8.530476], [47.384999, 8.53224], [47.421861, 8.545456], [47.374482, 8.495702], [47.366936, 8.53616], [47.366408, 8.540558], [47.363319, 8.564205], [47.396468, 8.520765], [47.390728, 8.523695], [47.379242, 8.537923], [47.377957, 8.548146], [47.369507, 8.505614], [47.384808, 8.509377], [47.368346, 8.497858], [47.38624, 8.504306], [47.370553, 8.549184], [47.335938, 8.526683], [47.400456, 8.54884], [47.349579, 8.564709], [47.404628, 8.594889], [47.376918, 8.538285], [47.382148, 8.541638], [47.395637, 8.491949], [47.390396, 8.539808], [47.40939, 8.543037], [47.410891, 8.562785], [47.378456, 8.51444], [47.373751, 8.493], [47.37386, 8.517208], [47.370714, 8.538899], [47.372381, 8.554571], [47.378459, 8.510269], [47.402142, 8.535282], [47.39096, 8.526813], [47.358972, 8.516417], [47.373817, 8.527615], [47.399714, 8.497594], [47.397145, 8.530979], [47.408933, 8.545677], [47.36729, 8.544283], [47.409205, 8.5473], [47.378577, 8.540743], [47.363896, 8.592377], [47.369716, 8.490669], [47.378018, 8.526575], [47.365964, 8.532326], [47.419844, 8.507417], [47.37924, 8.495691], [47.387351, 8.52707], [47.364061, 8.592089], [47.387476, 8.51943], [47.387141, 8.486457], [47.424766, 8.548339], [47.360044, 8.526751], [47.429114, 8.489139], [47.377105, 8.539388], [47.380954, 8.526171], [47.398926, 8.506004], [47.341756, 8.530732], [47.368858, 8.523118], [47.370398, 8.514264], [47.378202, 8.541384], [47.357173, 8.595409], [47.392157, 8.476873], [47.379214, 8.528586], [47.378319, 8.509789], [47.38497, 8.548451], [47.377596, 8.508225], [47.411019, 8.544846], [47.378749, 8.542481], [47.39049, 8.479158], [47.384877, 8.495127], [47.370636, 8.470455], [47.37427, 8.5234], [47.358972, 8.506766], [47.367327, 8.545118], [47.343216, 8.530365], [47.373354, 8.49417], [47.398354, 8.53731], [47.375892, 8.538317], [47.367004, 8.536492], [47.403901, 8.548859], [47.367651, 8.49517], [47.397356, 8.531527], [47.393417, 8.524717], [47.403559, 8.571097], [47.344251, 8.527474], [47.369686, 8.508583], [47.374099, 8.561122], [47.405919, 8.566218], [47.364287, 8.536529], [47.367919, 8.55371], [47.395751, 8.507861], [47.377278, 8.522984], [47.394169, 8.52509], [47.37212, 8.518589], [47.386881, 8.5022], [47.37026, 8.531766], [47.377603, 8.525772], [47.387213, 8.488432], [47.377936, 8.532426], [47.393361, 8.547712], [47.412664, 8.514482], [47.378837, 8.518858], [47.373787, 8.538393], [47.375937, 8.521169], [47.386736, 8.490528], [47.373911, 8.519447], [47.344633, 8.529891], [47.37614, 8.538706], [47.389507, 8.487417], [47.363626, 8.535098], [47.364482, 8.536917], [47.357993, 8.505635], [47.338881, 8.527404], [47.372527, 8.517472], [47.388148, 8.540636], [47.370713, 8.535218], [47.370549, 8.535439], [47.369002, 8.532574], [47.421699, 8.550118], [47.347104, 8.5283], [47.382557, 8.529793], [47.408682, 8.579792], [47.374624, 8.532623], [47.373761, 8.53634], [47.353469, 8.576175], [47.374435, 8.540167], [47.391819, 8.574053], [47.386666, 8.546062], [47.378855, 8.542709], [47.384332, 8.548385], [47.362231, 8.547435], [47.36877, 8.540898], [47.41484, 8.545018], [47.389833, 8.51165], [47.381183, 8.543763], [47.376978, 8.498135], [47.406243, 8.55597], [47.378412, 8.520081], [47.372053, 8.537232], [47.369635, 8.539817], [47.388878, 8.51575], [47.392091, 8.511642], [47.392832, 8.522917], [47.369285, 8.491482], [47.37818, 8.541728], [47.412081, 8.546644], [47.417609, 8.546096], [47.40278, 8.576234], [47.409805, 8.540992], [47.405668, 8.588035], [47.378378, 8.525616], [47.382068, 8.544325], [47.369796, 8.541859], [47.344059, 8.52878], [47.364596, 8.566165], [47.344744, 8.533321], [47.408925, 8.579757], [47.370283, 8.602194], [47.365895, 8.532047], [47.393312, 8.473491], [47.393815, 8.493397], [47.364023, 8.531241], [47.364749, 8.525775], [47.392081, 8.512728], [47.422874, 8.49877], [47.378801, 8.542668], [47.381197, 8.534811], [47.373241, 8.484833], [47.406481, 8.549999], [47.3916, 8.480796], [47.404533, 8.571806], [47.403096, 8.575274], [47.366924, 8.514459], [47.379623, 8.537586], [47.398285, 8.536978], [47.372149, 8.520324], [47.367761, 8.545776], [47.401981, 8.538895], [47.3846, 8.531649], [47.3966, 8.545726], [47.410619, 8.549953], [47.381775, 8.516388], [47.366156, 8.526293], [47.366914, 8.54413], [47.376184, 8.528458], [47.36231, 8.567189], [47.390734, 8.489057], [47.365575, 8.561671], [47.403538, 8.548242], [47.382422, 8.500919], [47.407194, 8.549722], [47.377318, 8.526481], [47.37495, 8.545594], [47.36771, 8.509245], [47.369915, 8.511077], [47.350357, 8.578014], [47.413065, 8.545326], [47.35493, 8.510961], [47.387236, 8.519094], [47.410152, 8.566626], [47.373359, 8.537033], [47.426861, 8.542697], [47.382262, 8.531522], [47.360467, 8.550337], [47.342321, 8.509781], [47.383298, 8.530418], [47.396843, 8.529675], [47.345158, 8.531423], [47.36035, 8.552201], [47.384417, 8.53195], [47.421311, 8.50738], [47.329541, 8.514327], [47.374156, 8.519266], [47.391123, 8.522842], [47.379094, 8.525074], [47.371054, 8.523877], [47.37371, 8.537014], [47.430654, 8.550583], [47.365506, 8.51218], [47.427013, 8.491775], [47.384403, 8.548466], [47.431336, 8.516476], [47.36465, 8.566073], [47.414264, 8.554389], [47.377767, 8.528424], [47.335554, 8.516751], [47.329934, 8.512694], [47.362144, 8.549988], [47.334018, 8.529925], [47.384417, 8.574849], [47.393415, 8.4998], [47.382683, 8.530789], [47.352951, 8.558334], [47.387612, 8.521261], [47.366673, 8.54198], [47.375012, 8.545675], [47.391603, 8.492399], [47.405866, 8.590729], [47.390301, 8.487168], [47.385956, 8.535651], [47.38545, 8.533071], [47.388821, 8.522742], [47.427486, 8.543227], [47.37853, 8.545576], [47.370823, 8.55573], [47.370922, 8.531263], [47.40921, 8.544954], [47.369896, 8.55673], [47.370315, 8.517308], [47.410486, 8.545948], [47.37323, 8.520187], [47.408395, 8.537001], [47.42392, 8.504411], [47.369239, 8.525588], [47.374862, 8.518804], [47.357231, 8.524628], [47.369926, 8.551713], [47.384845, 8.534211], [47.356089, 8.532177], [47.401722, 8.500297], [47.387126, 8.546006], [47.356367, 8.555732], [47.385839, 8.529993], [47.421058, 8.549481], [47.393458, 8.545064], [47.419166, 8.507841], [47.372926, 8.53623], [47.366346, 8.522431], [47.36242, 8.5333], [47.373041, 8.534471], [47.36707, 8.545669], [47.380258, 8.527548], [47.387135, 8.519331], [47.397034, 8.530355], [47.367435, 8.494146], [47.377189, 8.540039], [47.383262, 8.51022], [47.384524, 8.530098], [47.36257, 8.548713], [47.383252, 8.515159], [47.383266, 8.555435], [47.345143, 8.534904], [47.360316, 8.523712], [47.377122, 8.529139], [47.373348, 8.531485], [47.384935, 8.511286], [47.358265, 8.586033], [47.382351, 8.514386], [47.39777, 8.474849], [47.376588, 8.544555], [47.328692, 8.517591], [47.376907, 8.540377], [47.40722, 8.550717], [47.364865, 8.5085], [47.351268, 8.532171], [47.385192, 8.500895], [47.360005, 8.580206], [47.410948, 8.550384], [47.377368, 8.500712], [47.427285, 8.546417], [47.365123, 8.537605], [47.370286, 8.548847], [47.371906, 8.601766], [47.405917, 8.481102], [47.388871, 8.515472], [47.422529, 8.550771], [47.407267, 8.585565], [47.365628, 8.551557], [47.353073, 8.518137], [47.337483, 8.528845], [47.412675, 8.546643], [47.373056, 8.504043], [47.387809, 8.527119], [47.40347, 8.516522], [47.372676, 8.529392], [47.3787, 8.541977], [47.378352, 8.53029], [47.364484, 8.555452], [47.379544, 8.537439], [47.393417, 8.524717], [47.398309, 8.532514], [47.402157, 8.488143], [47.418291, 8.5435], [47.364993, 8.553066], [47.407102, 8.582183], [47.379682, 8.524689], [47.420123, 8.547567], [47.372027, 8.54932], [47.365256, 8.555614], [47.414252, 8.527315], [47.386216, 8.518531], [47.418845, 8.507463], [47.369926, 8.529098], [47.400431, 8.543924], [47.356625, 8.572681], [47.384453, 8.531925], [47.365286, 8.564551], [47.37759, 8.522368], [47.388357, 8.480322], [47.398341, 8.537668], [47.388731, 8.525641], [47.374486, 8.540486], [47.379989, 8.512087], [47.374314, 8.537781], [47.364577, 8.566217], [47.402578, 8.495187], [47.358046, 8.523109], [47.403249, 8.587082], [47.363635, 8.535138], [47.373911, 8.52616], [47.410439, 8.572197], [47.374076, 8.524879], [47.409973, 8.563693], [47.376753, 8.543274], [47.410424, 8.542117], [47.377052, 8.544009], [47.365126, 8.553241], [47.370316, 8.529728], [47.408782, 8.544548], [47.376381, 8.494614], [47.384027, 8.532287], [47.364619, 8.554501], [47.386123, 8.548316], [47.410567, 8.486109], [47.413732, 8.546069], [47.357936, 8.572021], [47.363423, 8.53377], [47.416753, 8.573166], [47.403989, 8.563912], [47.41753, 8.52505], [47.381379, 8.528815], [47.390053, 8.525721], [47.373752, 8.538233], [47.369005, 8.537976], [47.381237, 8.54101], [47.396983, 8.480331], [47.413917, 8.542813], [47.358787, 8.590585], [47.389393, 8.52992], [47.367682, 8.541789], [47.353978, 8.575669], [47.404065, 8.563529], [47.391885, 8.538409], [47.37865, 8.542492], [47.412188, 8.550476], [47.409025, 8.546382], [47.426306, 8.554641], [47.390773, 8.537048], [47.388936, 8.519115], [47.3674, 8.494092], [47.369249, 8.541675], [47.381609, 8.510028], [47.377602, 8.498757], [47.37763, 8.498665], [47.359547, 8.535557], [47.422513, 8.540261], [47.360108, 8.52286], [47.387844, 8.490325], [47.373636, 8.542839], [47.371058, 8.548148], [47.364955, 8.54765], [47.414067, 8.514417], [47.414319, 8.551474], [47.369727, 8.509034], [47.421678, 8.550462], [47.381407, 8.54198], [47.385188, 8.494537], [47.411601, 8.526161], [47.351165, 8.563445], [47.397904, 8.532532], [47.369089, 8.52532], [47.393951, 8.49328], [47.417917, 8.483073], [47.383628, 8.574593], [47.421077, 8.548448], [47.404515, 8.571806], [47.378776, 8.542455], [47.382826, 8.530885], [47.358397, 8.534541], [47.398581, 8.500446], [47.373212, 8.535468], [47.395376, 8.525883], [47.393999, 8.542122], [47.369668, 8.533515], [47.405879, 8.537691], [47.383778, 8.54048], [47.391838, 8.484297], [47.392677, 8.523139], [47.36768, 8.539194], [47.380202, 8.542948], [47.369443, 8.505626], [47.370165, 8.529473], [47.384476, 8.528534], [47.388988, 8.515474], [47.366756, 8.535216], [47.371705, 8.524566], [47.367338, 8.537359], [47.382414, 8.514414], [47.424971, 8.553128], [47.36669, 8.549646], [47.37777, 8.507911], [47.35123, 8.568794], [47.403907, 8.558451], [47.405254, 8.490788], [47.410575, 8.552602], [47.396367, 8.479882], [47.358262, 8.585424], [47.364446, 8.536929], [47.405825, 8.591218], [47.36523, 8.532047], [47.384674, 8.492713], [47.402091, 8.499231], [47.414458, 8.556619], [47.388624, 8.484658], [47.398891, 8.59022], [47.371877, 8.520584], [47.337187, 8.519139], [47.427993, 8.545702], [47.374449, 8.541598], [47.374919, 8.541356], [47.388772, 8.514569], [47.361609, 8.561534], [47.405389, 8.480814], [47.394181, 8.518083], [47.379255, 8.546041], [47.378531, 8.5752], [47.390455, 8.479144], [47.401823, 8.581208], [47.377033, 8.529044], [47.396686, 8.493295], [47.394756, 8.529698], [47.372829, 8.531289], [47.376292, 8.552905], [47.372844, 8.504647], [47.38388, 8.487055], [47.372461, 8.529242], [47.382862, 8.530885], [47.375364, 8.544596], [47.413762, 8.545831], [47.361951, 8.560575], [47.383191, 8.530349], [47.370197, 8.548792], [47.420861, 8.549318], [47.411145, 8.57086], [47.376047, 8.5277], [47.41494, 8.540157], [47.37819, 8.543582], [47.389423, 8.5209], [47.409196, 8.546359], [47.378655, 8.575375], [47.376303, 8.539584], [47.357913, 8.520022], [47.415108, 8.547118], [47.378647, 8.521887], [47.355839, 8.554529], [47.371937, 8.53519], [47.372432, 8.523773], [47.372835, 8.517213], [47.375009, 8.526103], [47.374686, 8.54776], [47.392477, 8.506908], [47.377304, 8.498963], [47.378565, 8.516177], [47.394164, 8.488661], [47.372615, 8.529139], [47.40959, 8.543717], [47.391359, 8.536901], [47.381588, 8.537176], [47.372856, 8.535964], [47.41038, 8.542024], [47.40638, 8.552037], [47.393507, 8.500517], [47.407771, 8.54772], [47.421564, 8.550155], [47.376517, 8.524584], [47.408607, 8.580135], [47.359711, 8.547634], [47.36844, 8.524513], [47.386797, 8.547482], [47.390661, 8.532741], [47.378832, 8.530948], [47.374022, 8.535365], [47.3995, 8.505181], [47.392182, 8.474078], [47.367137, 8.544253], [47.38807, 8.47119], [47.381977, 8.529291], [47.372755, 8.550289], [47.381588, 8.537163], [47.366214, 8.54863], [47.368574, 8.524608], [47.36694, 8.545163], [47.378566, 8.539988], [47.390975, 8.488201], [47.355874, 8.551883], [47.376633, 8.538968], [47.372043, 8.547652], [47.380785, 8.50478], [47.379065, 8.506944], [47.397413, 8.546273], [47.420785, 8.512698], [47.405901, 8.497704], [47.391059, 8.523013], [47.379547, 8.542696], [47.360904, 8.530978], [47.394689, 8.491295], [47.388293, 8.497314], [47.366633, 8.548082], [47.387578, 8.534452], [47.390889, 8.521923], [47.378849, 8.544258], [47.40649, 8.548104], [47.364685, 8.554185], [47.387324, 8.52801], [47.377921, 8.487494], [47.413885, 8.545171], [47.372325, 8.513059], [47.368778, 8.492915], [47.406838, 8.53612], [47.375247, 8.553069], [47.380494, 8.54808], [47.381583, 8.481395], [47.399406, 8.521077], [47.42154, 8.50105], [47.365921, 8.539766], [47.374577, 8.502021], [47.398228, 8.504665], [47.374714, 8.537353], [47.353067, 8.524557], [47.367364, 8.494012], [47.402058, 8.498952], [47.360777, 8.510893], [47.352572, 8.559345], [47.402158, 8.495934], [47.355992, 8.535762], [47.405989, 8.590149], [47.354403, 8.525921], [47.369155, 8.527864], [47.414917, 8.541627], [47.386913, 8.500611], [47.421353, 8.549686], [47.377322, 8.522177], [47.364164, 8.521936], [47.358267, 8.584021], [47.381193, 8.491637], [47.362684, 8.547153], [47.380243, 8.520475], [47.398744, 8.504212], [47.369878, 8.541675], [47.403538, 8.578807], [47.351892, 8.576525], [47.385715, 8.548639], [47.376049, 8.53407], [47.37302, 8.529081], [47.409789, 8.541693], [47.344094, 8.531693], [47.389169, 8.471039], [47.358788, 8.585025], [47.405126, 8.482094], [47.391756, 8.484494], [47.409789, 8.54172], [47.388533, 8.486709], [47.404458, 8.546088], [47.355736, 8.593379], [47.366962, 8.54568], [47.37828, 8.557529], [47.372706, 8.525222], [47.363523, 8.557179], [47.370088, 8.511809], [47.367951, 8.535333], [47.411031, 8.533119], [47.402138, 8.503962], [47.369455, 8.555781], [47.369699, 8.536905], [47.360032, 8.531874], [47.369091, 8.519322], [47.377954, 8.526693], [47.373898, 8.544645], [47.363482, 8.535135], [47.414438, 8.551238], [47.4145, 8.546681], [47.374388, 8.522396], [47.360259, 8.548598], [47.379962, 8.520721], [47.383268, 8.511518], [47.378666, 8.545525], [47.39373, 8.528737], [47.364819, 8.530767], [47.383074, 8.498495], [47.408685, 8.546189], [47.412877, 8.537663], [47.38139, 8.570705], [47.377169, 8.541164], [47.371953, 8.522082], [47.35132, 8.578829], [47.386345, 8.518202], [47.371521, 8.522099], [47.386954, 8.473328], [47.364771, 8.554544], [47.38824, 8.518585], [47.378852, 8.524976], [47.409531, 8.53762], [47.40411, 8.563503], [47.3938, 8.505822], [47.383699, 8.573721], [47.364548, 8.566429], [47.369503, 8.538582], [47.411568, 8.54666], [47.373113, 8.534526], [47.410601, 8.571233], [47.383805, 8.509926], [47.366503, 8.54473], [47.378803, 8.542496], [47.379075, 8.542289], [47.371722, 8.517866], [47.368863, 8.501284], [47.36694, 8.544143], [47.409357, 8.540876], [47.374511, 8.539745], [47.375214, 8.515818], [47.37514, 8.523656], [47.369062, 8.52532], [47.373355, 8.531697], [47.377558, 8.529558], [47.411581, 8.545255], [47.379355, 8.520232], [47.405613, 8.539169], [47.377656, 8.509498], [47.346538, 8.563811], [47.369409, 8.520004], [47.396253, 8.524457], [47.391019, 8.522469], [47.426728, 8.553841], [47.351769, 8.525761], [47.381231, 8.503226], [47.411567, 8.546752], [47.401717, 8.544918], [47.362372, 8.533683], [47.427277, 8.546297], [47.403478, 8.583894], [47.369014, 8.538003], [47.399348, 8.469355], [47.409425, 8.549742], [47.358902, 8.522015], [47.373017, 8.531359], [47.390959, 8.517368], [47.369795, 8.552279], [47.367853, 8.541819], [47.409187, 8.550095], [47.377729, 8.543798], [47.391664, 8.54263], [47.382083, 8.547464], [47.373433, 8.518682], [47.364913, 8.547332], [47.370166, 8.519794], [47.388807, 8.496145], [47.388485, 8.473145], [47.376823, 8.543514], [47.42385, 8.524476], [47.379642, 8.537481], [47.385493, 8.530449], [47.339652, 8.528717], [47.373374, 8.517304], [47.371135, 8.48887], [47.4021, 8.495296], [47.421018, 8.502086], [47.334818, 8.529968], [47.412342, 8.483786], [47.374324, 8.5225], [47.380645, 8.51218], [47.415375, 8.514033], [47.402048, 8.499018], [47.35967, 8.54905], [47.401777, 8.588521], [47.370791, 8.537497], [47.328494, 8.512811], [47.425871, 8.554049], [47.382418, 8.535975], [47.374385, 8.532248], [47.360412, 8.531643], [47.373555, 8.561495], [47.375242, 8.549811], [47.384306, 8.528504], [47.357065, 8.55519], [47.367655, 8.494706], [47.367281, 8.533916], [47.376889, 8.522288], [47.401137, 8.550947], [47.429426, 8.554746], [47.364103, 8.530316], [47.366639, 8.547407], [47.377102, 8.541626], [47.393724, 8.472638], [47.38825, 8.491101], [47.376762, 8.543301], [47.379645, 8.527694], [47.354352, 8.576061], [47.375519, 8.490545], [47.427467, 8.546169], [47.40925, 8.57147], [47.368973, 8.525185], [47.382717, 8.514698], [47.400879, 8.545974], [47.360729, 8.526619], [47.370263, 8.514288], [47.365162, 8.553228], [47.420388, 8.548937], [47.378544, 8.541285], [47.388583, 8.520353], [47.387146, 8.47296], [47.375649, 8.524103], [47.378618, 8.569084], [47.369769, 8.547499], [47.414152, 8.518805], [47.377318, 8.499347], [47.369777, 8.510372], [47.372298, 8.518844], [47.409929, 8.543127], [47.386715, 8.5476], [47.391321, 8.536238], [47.37642, 8.528184], [47.363261, 8.549852], [47.430383, 8.511592], [47.353682, 8.554365], [47.414244, 8.521497], [47.347262, 8.525815], [47.415777, 8.516254], [47.376098, 8.535607], [47.390612, 8.489611], [47.3835, 8.515668], [47.360317, 8.566816], [47.363224, 8.524353], [47.381633, 8.556831], [47.394757, 8.518108], [47.364319, 8.520841], [47.363716, 8.549253], [47.383867, 8.52925], [47.410159, 8.541648], [47.369348, 8.513052], [47.337313, 8.519168], [47.369475, 8.466408], [47.372349, 8.486908], [47.360851, 8.535611], [47.377896, 8.528056], [47.373829, 8.489347], [47.406391, 8.535846], [47.369418, 8.541838], [47.376526, 8.524598], [47.387062, 8.48623], [47.395149, 8.524275], [47.389701, 8.542854], [47.378536, 8.542119], [47.373327, 8.49417], [47.376244, 8.525837], [47.397239, 8.531538], [47.371362, 8.507319], [47.379102, 8.483253], [47.430963, 8.542729], [47.368021, 8.556135], [47.362064, 8.533888], [47.377538, 8.528869], [47.382852, 8.529044], [47.4014, 8.582074], [47.371025, 8.513522], [47.374688, 8.522945], [47.410576, 8.5422], [47.39923, 8.542574], [47.410569, 8.57265], [47.391702, 8.523516], [47.366549, 8.565054], [47.365739, 8.558629], [47.373582, 8.50355], [47.383602, 8.498797], [47.367915, 8.560608], [47.395261, 8.484749], [47.404425, 8.533567], [47.381881, 8.530018], [47.429168, 8.510759], [47.370488, 8.521959], [47.375376, 8.485405], [47.380614, 8.512563], [47.391186, 8.538103], [47.372629, 8.550339], [47.377709, 8.521219], [47.35967, 8.549103], [47.376592, 8.527102], [47.382785, 8.532354], [47.377264, 8.538769], [47.370363, 8.539011], [47.365569, 8.545518], [47.364102, 8.54746], [47.381785, 8.515276], [47.39224, 8.516944], [47.387681, 8.488467], [47.369512, 8.533869], [47.399562, 8.497459], [47.369899, 8.536644], [47.371784, 8.5428], [47.360955, 8.506329], [47.385417, 8.508687], [47.359479, 8.502448], [47.428845, 8.489133], [47.389764, 8.486853], [47.383788, 8.54044], [47.420867, 8.482058], [47.375243, 8.497121], [47.405423, 8.532646], [47.393435, 8.524717], [47.431319, 8.516423], [47.341408, 8.53038], [47.373151, 8.535255], [47.368221, 8.495697], [47.370772, 8.471292], [47.344034, 8.530421], [47.409791, 8.543469], [47.37908, 8.548262], [47.332574, 8.528546], [47.393202, 8.530422], [47.369725, 8.490669], [47.407556, 8.579052], [47.379353, 8.570198], [47.398489, 8.494841], [47.370185, 8.558418], [47.36957, 8.54192], [47.389801, 8.511292], [47.369072, 8.491173], [47.404092, 8.491003], [47.364191, 8.536302], [47.35478, 8.526061], [47.399095, 8.513916], [47.383747, 8.529579], [47.400175, 8.546237], [47.354237, 8.508048], [47.377972, 8.52476], [47.380956, 8.50379], [47.369292, 8.520028], [47.393354, 8.524782], [47.385671, 8.548545], [47.377966, 8.541525], [47.402017, 8.499521], [47.368973, 8.482313], [47.352518, 8.508212], [47.393244, 8.492909], [47.376994, 8.515854], [47.381844, 8.583998], [47.369106, 8.534033], [47.37069, 8.51668], [47.420682, 8.502358], [47.384302, 8.534623], [47.42516, 8.550362], [47.376796, 8.513943], [47.391248, 8.539098], [47.37069, 8.516733], [47.396631, 8.534003], [47.386225, 8.498213], [47.407332, 8.585328], [47.403567, 8.570342], [47.372013, 8.556351], [47.370377, 8.518448], [47.377779, 8.537628], [47.377931, 8.541511], [47.413905, 8.546867], [47.350485, 8.560307], [47.384687, 8.49613], [47.379286, 8.489706], [47.372945, 8.527557], [47.370179, 8.548779], [47.368492, 8.546532], [47.370161, 8.548791], [47.384048, 8.526234], [47.37017, 8.548792], [47.365099, 8.55324], [47.368661, 8.543901], [47.346416, 8.564391], [47.372464, 8.476158], [47.409473, 8.538043], [47.370067, 8.515012], [47.351851, 8.560455], [47.37414, 8.520987], [47.393691, 8.539532], [47.390931, 8.523183], [47.375938, 8.52877], [47.381373, 8.540907], [47.396276, 8.527756], [47.40259, 8.535476], [47.335342, 8.54108], [47.414452, 8.517486], [47.417162, 8.523014], [47.366544, 8.546095], [47.379588, 8.500915], [47.399024, 8.513796], [47.38337, 8.540869], [47.426437, 8.492757], [47.391969, 8.518011], [47.352221, 8.558504], [47.385878, 8.532457], [47.374527, 8.539971], [47.376957, 8.560427], [47.383071, 8.540174], [47.425808, 8.547552], [47.378274, 8.541346], [47.363689, 8.549252], [47.376427, 8.527483], [47.367719, 8.54641], [47.409012, 8.482037], [47.387095, 8.5188], [47.366358, 8.541113], [47.380421, 8.541602], [47.378878, 8.559885], [47.417634, 8.545394], [47.354808, 8.526829], [47.350951, 8.534242], [47.367029, 8.547124], [47.358937, 8.534459], [47.377593, 8.528698], [47.39237, 8.50782], [47.414906, 8.551208], [47.367512, 8.537919], [47.399704, 8.543763], [47.36643, 8.544821], [47.404441, 8.574733], [47.345475, 8.529259], [47.38875, 8.525562], [47.358125, 8.534694], [47.392508, 8.475833], [47.389037, 8.527528], [47.351766, 8.566436], [47.394235, 8.483854], [47.353815, 8.558312], [47.380529, 8.52648], [47.379441, 8.537861], [47.371539, 8.536334], [47.384562, 8.560958], [47.366656, 8.535293], [47.378217, 8.543569], [47.391152, 8.534115], [47.378952, 8.494798], [47.399856, 8.543859], [47.361854, 8.560388], [47.373398, 8.513782], [47.358219, 8.587939], [47.404938, 8.556035], [47.396923, 8.532551], [47.406899, 8.480976], [47.378972, 8.543585], [47.417215, 8.543133], [47.357674, 8.520547], [47.397228, 8.536532], [47.356237, 8.551586], [47.343986, 8.530777], [47.369745, 8.536826], [47.362224, 8.559389], [47.373316, 8.533047], [47.356702, 8.523466], [47.36361, 8.500293], [47.382148, 8.53695], [47.329764, 8.515496], [47.367772, 8.522791], [47.36913, 8.527638], [47.370757, 8.546659], [47.345984, 8.534445], [47.37818, 8.527518], [47.373655, 8.530432], [47.427067, 8.491709], [47.380212, 8.501564], [47.369903, 8.587184], [47.417278, 8.546832], [47.348559, 8.522758], [47.39643, 8.520976], [47.399703, 8.495858], [47.374512, 8.495425], [47.377566, 8.528711], [47.407226, 8.53222], [47.372864, 8.517042], [47.369171, 8.554451], [47.374187, 8.544453], [47.377054, 8.521947], [47.377468, 8.498675], [47.397719, 8.533058], [47.395598, 8.526258], [47.360332, 8.578969], [47.370163, 8.525845], [47.368614, 8.48322], [47.423495, 8.53535], [47.392253, 8.511646], [47.374113, 8.51712], [47.390207, 8.485683], [47.369014, 8.537977], [47.39319, 8.530713], [47.373078, 8.537279], [47.362454, 8.547704], [47.381179, 8.510774], [47.366757, 8.563112], [47.362534, 8.534613], [47.357529, 8.52159], [47.370317, 8.539049], [47.379203, 8.544861], [47.364004, 8.56692], [47.370523, 8.522026], [47.37043, 8.514689], [47.375802, 8.537428], [47.346596, 8.52874], [47.3773, 8.49838], [47.377257, 8.512774], [47.383066, 8.513937], [47.402188, 8.496504], [47.388187, 8.491166], [47.354352, 8.553016], [47.370621, 8.470018], [47.411047, 8.545682], [47.391497, 8.519472], [47.373573, 8.53435], [47.422154, 8.547768], [47.383215, 8.541051], [47.367749, 8.496204], [47.376554, 8.541522], [47.373485, 8.568657], [47.398564, 8.591472], [47.364642, 8.537105], [47.375115, 8.51575], [47.377769, 8.507951], [47.394707, 8.536758], [47.354886, 8.574775], [47.377003, 8.527388], [47.418907, 8.507557], [47.357294, 8.508268], [47.382802, 8.540049], [47.375825, 8.515897], [47.357241, 8.552878], [47.374877, 8.53435], [47.378422, 8.510295], [47.406672, 8.479183], [47.366738, 8.541769], [47.366644, 8.541304], [47.37344, 8.531354], [47.355659, 8.555545], [47.418538, 8.483006], [47.369768, 8.501633], [47.362437, 8.504625], [47.397668, 8.532805], [47.386221, 8.518001], [47.387667, 8.492891], [47.365771, 8.552566], [47.385245, 8.536696], [47.333564, 8.51896], [47.386903, 8.539206], [47.396059, 8.544973], [47.37663, 8.54396], [47.383376, 8.484092], [47.368324, 8.544304], [47.369515, 8.525885], [47.383517, 8.543308], [47.348305, 8.5344], [47.376806, 8.536787], [47.369096, 8.537859], [47.368301, 8.578133], [47.391099, 8.545307], [47.373101, 8.490325], [47.367946, 8.560211], [47.387021, 8.539977], [47.341336, 8.527494], [47.404924, 8.502269], [47.374566, 8.533973], [47.406808, 8.550522], [47.390452, 8.539651], [47.377572, 8.522341], [47.398417, 8.494826], [47.382037, 8.530617], [47.372751, 8.600937], [47.369837, 8.529016], [47.421565, 8.550022], [47.378827, 8.542735], [47.409159, 8.547471], [47.341174, 8.530349], [47.389936, 8.536196], [47.41064, 8.542148], [47.379578, 8.543306], [47.375752, 8.559502], [47.377838, 8.509303], [47.380673, 8.511995], [47.357102, 8.522071], [47.379912, 8.524164], [47.364632, 8.545697], [47.398976, 8.533335], [47.409602, 8.480472], [47.418597, 8.554691], [47.357473, 8.521853], [47.384948, 8.495234], [47.390835, 8.509365], [47.362943, 8.549184], [47.41384, 8.527174], [47.410499, 8.56976], [47.420123, 8.548468], [47.428792, 8.543956], [47.393849, 8.505386], [47.383882, 8.504524], [47.381194, 8.556716], [47.355577, 8.513912], [47.367944, 8.544575], [47.374264, 8.524962], [47.384082, 8.511057], [47.400771, 8.548793], [47.404461, 8.557019], [47.387982, 8.539242], [47.387507, 8.519073], [47.37541, 8.517941], [47.393466, 8.512743], [47.378947, 8.54524], [47.35745, 8.535686], [47.385456, 8.522873], [47.362352, 8.559114], [47.399442, 8.543016], [47.372534, 8.505012], [47.368491, 8.548426], [47.407356, 8.530791], [47.412165, 8.539728], [47.370653, 8.516772], [47.380626, 8.512219], [47.335517, 8.518814], [47.362478, 8.533844], [47.380431, 8.515778], [47.407516, 8.548073], [47.352075, 8.534331], [47.381206, 8.537566], [47.397147, 8.530794], [47.374268, 8.513018], [47.369005, 8.537976], [47.390935, 8.488717], [47.36112, 8.571122], [47.390712, 8.509032], [47.378394, 8.520107], [47.364757, 8.502672], [47.419187, 8.547613], [47.366757, 8.563126], [47.358484, 8.571145], [47.365408, 8.521657], [47.404369, 8.533764], [47.369333, 8.527086], [47.358808, 8.585701], [47.413401, 8.53933], [47.375118, 8.540314], [47.36289, 8.526438], [47.394458, 8.51928], [47.371343, 8.547505], [47.372238, 8.523345], [47.381829, 8.535499], [47.369389, 8.525896], [47.382833, 8.531057], [47.375371, 8.485947], [47.371997, 8.521182], [47.368182, 8.557224], [47.385462, 8.526025], [47.409676, 8.54511], [47.416919, 8.538263], [47.371057, 8.531239], [47.366671, 8.553498], [47.360998, 8.524851], [47.396351, 8.489539], [47.375129, 8.553225], [47.392626, 8.538954], [47.35928, 8.500603], [47.394854, 8.529727], [47.376001, 8.538174], [47.360193, 8.579403], [47.39633, 8.47294], [47.376862, 8.543197], [47.412943, 8.538287], [47.365698, 8.55643], [47.368751, 8.528743], [47.360561, 8.566622], [47.407607, 8.58389], [47.361001, 8.506211], [47.363649, 8.574684], [47.362607, 8.598055], [47.419942, 8.506597], [47.37853, 8.575226], [47.377275, 8.512721], [47.398721, 8.532734], [47.368865, 8.501006], [47.429365, 8.543345], [47.372544, 8.546974], [47.374743, 8.565161], [47.363199, 8.549706], [47.383134, 8.540162], [47.406771, 8.572888], [47.428712, 8.488879], [47.394859, 8.539702], [47.375481, 8.496649], [47.378642, 8.519489], [47.388019, 8.537243], [47.375258, 8.515925], [47.369599, 8.525648], [47.400417, 8.54819], [47.373922, 8.54491], [47.398461, 8.500815], [47.369437, 8.526585], [47.367694, 8.488418], [47.375578, 8.526896], [47.371917, 8.522107], [47.340088, 8.530115], [47.367304, 8.546574], [47.35199, 8.560061], [47.378656, 8.526681], [47.414207, 8.552863], [47.378441, 8.540859], [47.389686, 8.512058], [47.427599, 8.539915], [47.380355, 8.542872], [47.380337, 8.542898], [47.375582, 8.521652], [47.378512, 8.575213], [47.372917, 8.533383], [47.3747, 8.535935], [47.367994, 8.495984], [47.376591, 8.529154], [47.386186, 8.475683], [47.376801, 8.528775], [47.392788, 8.528493], [47.371033, 8.546982], [47.391529, 8.54268], [47.332736, 8.528576], [47.377243, 8.54196], [47.376924, 8.524354], [47.38339, 8.543452], [47.361477, 8.56124], [47.384801, 8.524621], [47.391598, 8.519222], [47.375287, 8.54331], [47.361352, 8.522607], [47.401453, 8.503074], [47.402387, 8.493514], [47.398942, 8.542582], [47.375866, 8.537323], [47.393453, 8.524731], [47.371893, 8.53413], [47.387814, 8.485715], [47.369437, 8.526572], [47.375693, 8.527097], [47.377844, 8.498868], [47.378057, 8.541434], [47.428069, 8.552769], [47.378555, 8.54204], [47.410184, 8.526636], [47.426589, 8.546773], [47.429901, 8.544615], [47.351332, 8.525395], [47.373599, 8.523055], [47.414195, 8.519032], [47.406725, 8.584825], [47.356167, 8.556032], [47.414158, 8.546674], [47.378846, 8.542682], [47.360412, 8.594407], [47.377161, 8.537297], [47.390133, 8.478886], [47.37295, 8.519361], [47.388941, 8.52248], [47.371808, 8.530791], [47.394258, 8.490213], [47.369238, 8.527601], [47.381905, 8.51692], [47.361765, 8.511138], [47.414459, 8.550974], [47.365596, 8.50535], [47.369164, 8.556132], [47.406916, 8.550591], [47.381201, 8.538148], [47.378364, 8.541348], [47.390918, 8.47959], [47.352087, 8.573167], [47.374435, 8.495887], [47.371926, 8.529695], [47.398465, 8.533139], [47.397544, 8.48894], [47.427496, 8.545997], [47.370481, 8.52462], [47.427474, 8.551087], [47.389832, 8.511822], [47.414778, 8.551497], [47.376726, 8.543327], [47.410909, 8.505847], [47.402633, 8.547852], [47.406889, 8.550537], [47.371177, 8.493134], [47.364699, 8.557389], [47.373582, 8.534337], [47.373067, 8.538365], [47.388117, 8.520145], [47.365001, 8.567021], [47.366687, 8.541464], [47.387993, 8.519904], [47.371452, 8.513067], [47.369862, 8.525389], [47.37038, 8.518051], [47.378802, 8.542588], [47.40629, 8.480686], [47.373683, 8.5341], [47.3691, 8.492034], [47.383122, 8.529063], [47.363876, 8.598864], [47.362122, 8.607815], [47.379882, 8.548146], [47.37335, 8.536993], [47.367364, 8.523193], [47.347259, 8.532803], [47.372397, 8.523613], [47.3862, 8.525073], [47.375753, 8.549107], [47.36095, 8.530887], [47.360918, 8.5549], [47.376566, 8.527022], [47.423426, 8.494513], [47.380649, 8.496142], [47.378349, 8.52388], [47.350894, 8.563625], [47.405995, 8.591275], [47.373171, 8.536897], [47.383312, 8.48421], [47.373233, 8.537031], [47.393889, 8.509837], [47.366988, 8.520087], [47.384976, 8.508784], [47.377203, 8.499093], [47.370215, 8.548806], [47.419176, 8.547732], [47.365037, 8.545679], [47.362604, 8.504946], [47.380729, 8.556441], [47.371867, 8.529309], [47.373987, 8.502591], [47.366148, 8.540486], [47.383079, 8.527857], [47.411593, 8.559938], [47.395263, 8.491452], [47.38265, 8.513148], [47.410993, 8.545654], [47.360193, 8.579403], [47.36393, 8.528631], [47.370093, 8.540832], [47.383424, 8.533254], [47.413022, 8.544132], [47.417912, 8.505271], [47.366745, 8.545768], [47.422467, 8.550743], [47.41075, 8.555905], [47.324581, 8.509875], [47.373239, 8.525974], [47.375121, 8.545584], [47.413877, 8.524206], [47.393794, 8.489807], [47.37097, 8.502028], [47.384381, 8.531936], [47.377647, 8.541995], [47.40763, 8.543689], [47.3809, 8.492201], [47.387289, 8.519201], [47.378553, 8.519461], [47.426617, 8.555019], [47.397618, 8.48869], [47.374839, 8.553431], [47.404322, 8.576837], [47.370188, 8.548792], [47.369605, 8.552395], [47.378379, 8.541613], [47.378947, 8.5443], [47.368464, 8.540931], [47.358237, 8.51807], [47.352509, 8.508172], [47.398801, 8.540353], [47.370264, 8.536096], [47.384334, 8.53126], [47.371467, 8.547653], [47.378892, 8.519759], [47.362117, 8.51096], [47.351413, 8.576727], [47.392391, 8.538128], [47.376372, 8.537082], [47.402109, 8.499231], [47.404275, 8.548297], [47.363028, 8.522271], [47.363746, 8.574819], [47.369389, 8.525896], [47.414091, 8.51675], [47.365822, 8.56774], [47.336908, 8.533517], [47.394347, 8.519623], [47.408764, 8.504293], [47.39805, 8.541795], [47.366503, 8.519985], [47.372926, 8.52091], [47.370748, 8.474959], [47.391923, 8.518103], [47.391463, 8.513391], [47.36956, 8.551467], [47.363898, 8.549085], [47.368959, 8.528575], [47.393372, 8.524769], [47.399587, 8.542834], [47.382861, 8.530011], [47.368802, 8.528995], [47.378761, 8.528881], [47.373351, 8.534994], [47.415032, 8.545592], [47.415005, 8.545645], [47.402013, 8.497971], [47.400788, 8.5489], [47.362249, 8.547448], [47.377855, 8.508416], [47.391349, 8.526622], [47.380195, 8.535174], [47.404667, 8.551511], [47.361148, 8.600843], [47.369999, 8.51848], [47.359688, 8.549063], [47.408509, 8.550518], [47.363286, 8.5292], [47.401262, 8.590616], [47.363425, 8.533545], [47.382553, 8.548189], [47.350748, 8.560128], [47.369614, 8.513388], [47.373044, 8.533187], [47.366411, 8.541153], [47.360314, 8.550413], [47.361198, 8.532229], [47.323024, 8.513852], [47.390753, 8.521987], [47.367758, 8.496205], [47.355622, 8.574076], [47.371916, 8.52212], [47.369817, 8.532061], [47.377063, 8.521934], [47.406701, 8.538211], [47.386245, 8.531696], [47.380524, 8.512562], [47.377761, 8.507898], [47.37641, 8.543466], [47.340948, 8.53143], [47.367095, 8.543961], [47.377207, 8.541959], [47.391141, 8.522909], [47.364177, 8.526306], [47.377231, 8.547853], [47.405102, 8.481789], [47.36524, 8.494129], [47.338454, 8.519284], [47.37775, 8.5416], [47.420286, 8.508261], [47.362708, 8.518915], [47.383805, 8.509913], [47.377145, 8.552155], [47.371177, 8.520371], [47.370665, 8.519341], [47.366373, 8.545178], [47.373913, 8.538382], [47.383611, 8.530676], [47.408137, 8.503048], [47.370852, 8.536757], [47.362269, 8.54729], [47.388515, 8.528551], [47.370538, 8.546972], [47.37346, 8.529223], [47.372, 8.487695], [47.378208, 8.543569], [47.381028, 8.553388], [47.386788, 8.547482], [47.379836, 8.55478], [47.398382, 8.504509], [47.370285, 8.557387], [47.421154, 8.549722], [47.377259, 8.521262], [47.369284, 8.541729], [47.413854, 8.539936], [47.351331, 8.525435], [47.410778, 8.538043], [47.370783, 8.546765], [47.377032, 8.52723], [47.38508, 8.532268], [47.388471, 8.485582], [47.37925, 8.538029], [47.405183, 8.559551], [47.378544, 8.541365], [47.390891, 8.488531], [47.388428, 8.540549], [47.361173, 8.506056], [47.419882, 8.501375], [47.382009, 8.530735], [47.366513, 8.540864], [47.379039, 8.545096], [47.364031, 8.554794], [47.407814, 8.580277], [47.410056, 8.542984], [47.37004, 8.540805], [47.38033, 8.542699], [47.372796, 8.535658], [47.374665, 8.535921], [47.378857, 8.510992], [47.36923, 8.527574], [47.387823, 8.485702], [47.41966, 8.504975], [47.372289, 8.536031], [47.416745, 8.54523], [47.354822, 8.510972], [47.379143, 8.500403], [47.371093, 8.5236], [47.379045, 8.527364], [47.393693, 8.501832], [47.379371, 8.525252], [47.353824, 8.558313], [47.413531, 8.545455], [47.422811, 8.494819], [47.372121, 8.550726], [47.399834, 8.543329], [47.376926, 8.528897], [47.370054, 8.54871], [47.378599, 8.505809], [47.419213, 8.54772], [47.382137, 8.501615], [47.388171, 8.520173], [47.377275, 8.515648], [47.395611, 8.535333], [47.361028, 8.506145], [47.380828, 8.541399], [47.358709, 8.599241], [47.389037, 8.478706], [47.378198, 8.520858], [47.376912, 8.527546], [47.399712, 8.547632], [47.378528, 8.541113], [47.391351, 8.487467], [47.377255, 8.538769], [47.378288, 8.530381], [47.424163, 8.506258], [47.397364, 8.503707], [47.411651, 8.528494], [47.385618, 8.493711], [47.398731, 8.532641], [47.376993, 8.527507], [47.385041, 8.508573], [47.376443, 8.544738], [47.383274, 8.506101], [47.374798, 8.544598], [47.417027, 8.523012], [47.369222, 8.540669], [47.363247, 8.525704], [47.381389, 8.513374], [47.369005, 8.537963], [47.370061, 8.548909], [47.401572, 8.578328], [47.377515, 8.538827], [47.360661, 8.524288], [47.359919, 8.534347], [47.375831, 8.559622], [47.373239, 8.538276], [47.370657, 8.508589], [47.388606, 8.483691], [47.365289, 8.530486], [47.393258, 8.533946], [47.403579, 8.547752], [47.390603, 8.489598], [47.377847, 8.519897], [47.373093, 8.537597], [47.394668, 8.514052], [47.374635, 8.537126], [47.370173, 8.513293], [47.400497, 8.500511], [47.373657, 8.535901], [47.407279, 8.544596], [47.383869, 8.511715], [47.414916, 8.515031], [47.376214, 8.52238], [47.370767, 8.535245], [47.38154, 8.513602], [47.385069, 8.547566], [47.371928, 8.535203], [47.37179, 8.530778], [47.3456, 8.529434], [47.369752, 8.49059], [47.40688, 8.585517], [47.375881, 8.537562], [47.382163, 8.505576], [47.410552, 8.550336], [47.423646, 8.538402], [47.37325, 8.519009], [47.383758, 8.512084], [47.418641, 8.547257], [47.375264, 8.490818], [47.400319, 8.505144], [47.409508, 8.567089], [47.362087, 8.507411], [47.3627, 8.518915], [47.369231, 8.525561], [47.397889, 8.534134], [47.365618, 8.539442], [47.366262, 8.534173], [47.402391, 8.535539], [47.390583, 8.522884], [47.378918, 8.515059], [47.40188, 8.54573], [47.383858, 8.515821], [47.384375, 8.531605], [47.360271, 8.523671], [47.384815, 8.529773], [47.386851, 8.525616], [47.370777, 8.515066], [47.393182, 8.492801], [47.377953, 8.492898], [47.407966, 8.53674], [47.371912, 8.52069], [47.374379, 8.522382], [47.410071, 8.546152], [47.410854, 8.5432], [47.383231, 8.531807], [47.404377, 8.572148], [47.365169, 8.53746], [47.383054, 8.499634], [47.391676, 8.504958], [47.341881, 8.530747], [47.394197, 8.490053], [47.388821, 8.522756], [47.385342, 8.542472], [47.36905, 8.537991], [47.372685, 8.53122], [47.366551, 8.548187], [47.426262, 8.547045], [47.362037, 8.533888], [47.40798, 8.578028], [47.405135, 8.50479], [47.397935, 8.534043], [47.375819, 8.545056], [47.393328, 8.492592], [47.375503, 8.5629], [47.37946, 8.54431], [47.375569, 8.526896], [47.383289, 8.530417], [47.373501, 8.536215], [47.360457, 8.594421], [47.414339, 8.551249], [47.355971, 8.579696], [47.37013, 8.540714], [47.380169, 8.542564], [47.369673, 8.518712], [47.373352, 8.534915], [47.389763, 8.477992], [47.394829, 8.525726], [47.393751, 8.472665], [47.385192, 8.53933], [47.344424, 8.53293], [47.365865, 8.532417], [47.377623, 8.526527], [47.367626, 8.541112], [47.370179, 8.548792], [47.390802, 8.50906], [47.392116, 8.498211], [47.401462, 8.499219], [47.366509, 8.540295], [47.371141, 8.53945], [47.344383, 8.526868], [47.37068, 8.516746], [47.404752, 8.488605], [47.409672, 8.54458], [47.372364, 8.523335], [47.393204, 8.530157], [47.362737, 8.547181], [47.376446, 8.536872], [47.377531, 8.529598], [47.423048, 8.498389], [47.37846, 8.540727], [47.371654, 8.519454], [47.36435, 8.536623], [47.405708, 8.502086], [47.369083, 8.518263], [47.37157, 8.515903], [47.366738, 8.541769], [47.367343, 8.545357], [47.393742, 8.51308], [47.389969, 8.531733], [47.3664, 8.540478], [47.393729, 8.505754], [47.403708, 8.496508], [47.377911, 8.508192], [47.330737, 8.514364], [47.400676, 8.550315], [47.357629, 8.521499], [47.358249, 8.586721], [47.414198, 8.529275], [47.366576, 8.545526], [47.367086, 8.544001], [47.405719, 8.59103], [47.344904, 8.533562], [47.377551, 8.498491], [47.373761, 8.528805], [47.376862, 8.528048], [47.3778, 8.516307], [47.372458, 8.511366], [47.370197, 8.548805], [47.377689, 8.527204], [47.374873, 8.520525], [47.366867, 8.549928], [47.397658, 8.526208], [47.422458, 8.55073], [47.389381, 8.488395], [47.373797, 8.537334], [47.372543, 8.505012], [47.420678, 8.513557], [47.405592, 8.572929], [47.389301, 8.529083], [47.381479, 8.542021], [47.373642, 8.528975], [47.377374, 8.537659], [47.373056, 8.532896], [47.396657, 8.529353], [47.389703, 8.526535], [47.42705, 8.491576], [47.377966, 8.548133], [47.390131, 8.522146], [47.363085, 8.535246], [47.362144, 8.559282], [47.409544, 8.575398], [47.388771, 8.528119], [47.364015, 8.526342], [47.415035, 8.483494], [47.366487, 8.540731], [47.397623, 8.487127], [47.394696, 8.525525], [47.386033, 8.554817], [47.374648, 8.547998], [47.344029, 8.53189], [47.362337, 8.504662], [47.37964, 8.526264], [47.397667, 8.532924], [47.41413, 8.519256], [47.410323, 8.546117], [47.422466, 8.550836], [47.381579, 8.537189], [47.393975, 8.473769], [47.381424, 8.5174], [47.414073, 8.541491], [47.364131, 8.53021], [47.387528, 8.51963], [47.409946, 8.535641], [47.382047, 8.540907], [47.397304, 8.531301], [47.375872, 8.523287], [47.351881, 8.527286], [47.378521, 8.575213], [47.356808, 8.558587], [47.36416, 8.569346], [47.380144, 8.494239], [47.417167, 8.551865], [47.363108, 8.503989], [47.351215, 8.561064], [47.379016, 8.562351], [47.329882, 8.529761], [47.357524, 8.535489], [47.368583, 8.524595], [47.364656, 8.554423], [47.386653, 8.553069], [47.396736, 8.529554], [47.381764, 8.513726], [47.407735, 8.574564], [47.42705, 8.49159], [47.359547, 8.535557], [47.371818, 8.487996], [47.377162, 8.540025], [47.375187, 8.518678], [47.398158, 8.536087], [47.41405, 8.546685], [47.408651, 8.540371], [47.330232, 8.529834], [47.38583, 8.529993], [47.373756, 8.519682], [47.387042, 8.494362], [47.411889, 8.523291], [47.384993, 8.530995], [47.376381, 8.540777], [47.395201, 8.535854], [47.383814, 8.509886], [47.389156, 8.530246], [47.359681, 8.587454], [47.388839, 8.49559], [47.361285, 8.56158], [47.38164, 8.528861], [47.371765, 8.547554], [47.415962, 8.508956], [47.357057, 8.598054], [47.391081, 8.479527], [47.372883, 8.535938], [47.369079, 8.565823], [47.376883, 8.548561], [47.363635, 8.535125], [47.365539, 8.526876], [47.399304, 8.542377], [47.375446, 8.524602], [47.366807, 8.543028], [47.42576, 8.547803], [47.362752, 8.567966], [47.397898, 8.534095], [47.405456, 8.593039], [47.386884, 8.493935], [47.39126, 8.520779], [47.425934, 8.493649], [47.343999, 8.535079], [47.360067, 8.580274], [47.379877, 8.495902], [47.377887, 8.507887], [47.381473, 8.564999], [47.371115, 8.493054], [47.403737, 8.560223], [47.415307, 8.518458], [47.357911, 8.519268], [47.375152, 8.518518], [47.368806, 8.524838], [47.390219, 8.52334], [47.371218, 8.530382], [47.360027, 8.521905], [47.362459, 8.568489], [47.352881, 8.558174], [47.371486, 8.547548], [47.408217, 8.547133], [47.376411, 8.528144], [47.391668, 8.513647], [47.405684, 8.549638], [47.393831, 8.505465], [47.36646, 8.509233], [47.377398, 8.529436], [47.339793, 8.52995], [47.411553, 8.545387], [47.400122, 8.494224], [47.417416, 8.552109], [47.412288, 8.523896], [47.386959, 8.528572], [47.368457, 8.524566], [47.360689, 8.55062], [47.371293, 8.555422], [47.385502, 8.530449], [47.375659, 8.548628], [47.384149, 8.55152], [47.374038, 8.476175], [47.403435, 8.556109], [47.372513, 8.539876], [47.356696, 8.522155], [47.364378, 8.529805], [47.369553, 8.5257], [47.411281, 8.570665], [47.412894, 8.540592], [47.39778, 8.530396], [47.397772, 8.53033], [47.372938, 8.531106], [47.376982, 8.541915], [47.369686, 8.525875], [47.377759, 8.52547], [47.371377, 8.51725], [47.412332, 8.554242], [47.372882, 8.520856], [47.369958, 8.51125], [47.421773, 8.509895], [47.395767, 8.52454], [47.368221, 8.560575], [47.415318, 8.514376], [47.356705, 8.522156], [47.373085, 8.534565], [47.391944, 8.517852], [47.399806, 8.502233], [47.3984, 8.468834], [47.374586, 8.54601], [47.357729, 8.554423], [47.415653, 8.513151], [47.368274, 8.520193], [47.413972, 8.545491], [47.373754, 8.536128], [47.385307, 8.536697], [47.396868, 8.54589], [47.38614, 8.53527], [47.415095, 8.51514], [47.372597, 8.534793], [47.39062, 8.489691], [47.378474, 8.568114], [47.379206, 8.559468], [47.355704, 8.573985], [47.414424, 8.536701], [47.414328, 8.538316], [47.414424, 8.536741], [47.389422, 8.521059], [47.366591, 8.54117], [47.386978, 8.547367], [47.376807, 8.544269], [47.381578, 8.541944], [47.414119, 8.544235], [47.370108, 8.528863], [47.368073, 8.54136], [47.405453, 8.480722], [47.344631, 8.532987], [47.377644, 8.506876], [47.395811, 8.545511], [47.387938, 8.539095], [47.348478, 8.562264], [47.363169, 8.526365], [47.375031, 8.519032], [47.366943, 8.545719], [47.365171, 8.553215], [47.414121, 8.519295], [47.376278, 8.540298], [47.425555, 8.54764], [47.326028, 8.514865], [47.374769, 8.523953], [47.414615, 8.520325], [47.397902, 8.535579], [47.397673, 8.494493], [47.368203, 8.560574], [47.413008, 8.562459], [47.370767, 8.535272], [47.366525, 8.540533], [47.370785, 8.535259], [47.374678, 8.550567], [47.375239, 8.545507], [47.37964, 8.515762], [47.417181, 8.541939], [47.370052, 8.548908], [47.367258, 8.545725], [47.376702, 8.497812], [47.375034, 8.518728], [47.374265, 8.524909], [47.373963, 8.50324], [47.383143, 8.497834], [47.409476, 8.544324], [47.408555, 8.546624], [47.376882, 8.540165], [47.360919, 8.531296], [47.366985, 8.491238], [47.373406, 8.534863], [47.406843, 8.563667], [47.397603, 8.481403], [47.394533, 8.49455], [47.371058, 8.525453], [47.388442, 8.486853], [47.370557, 8.508733], [47.408703, 8.546242], [47.369204, 8.543581], [47.371407, 8.522693], [47.358851, 8.516811], [47.392885, 8.490848], [47.387049, 8.547395], [47.421405, 8.499033], [47.364228, 8.521872], [47.362727, 8.518902], [47.386363, 8.487991], [47.378531, 8.5752], [47.400701, 8.548646], [47.427549, 8.546011], [47.372909, 8.53517], [47.368095, 8.534356], [47.383929, 8.528364], [47.391423, 8.516742], [47.386758, 8.490966], [47.37442, 8.539849], [47.387809, 8.527119], [47.388961, 8.491155], [47.343015, 8.534476], [47.370351, 8.534562], [47.388653, 8.483414], [47.395224, 8.521972], [47.373365, 8.531644], [47.410038, 8.542971], [47.37615, 8.489313], [47.413097, 8.543895], [47.37553, 8.486361], [47.366007, 8.533506], [47.389305, 8.536289], [47.378014, 8.526072], [47.404205, 8.561134], [47.410978, 8.567663], [47.385123, 8.537223], [47.372959, 8.524141], [47.356706, 8.535433], [47.373261, 8.535045], [47.337716, 8.519309], [47.384975, 8.508903], [47.371757, 8.493702], [47.388906, 8.515578], [47.385258, 8.527703], [47.414746, 8.545454], [47.351279, 8.560033], [47.375886, 8.500537], [47.353362, 8.576093], [47.375431, 8.528138], [47.374022, 8.54294], [47.361316, 8.525479], [47.415982, 8.515529], [47.360934, 8.547633], [47.345759, 8.534466], [47.383229, 8.506021], [47.419595, 8.505172], [47.378769, 8.539423], [47.402441, 8.499384], [47.387183, 8.519027], [47.375688, 8.541848], [47.356013, 8.556148], [47.38533, 8.530525], [47.401532, 8.548319], [47.369649, 8.533647], [47.366989, 8.520021], [47.378948, 8.523402], [47.388233, 8.520254], [47.378111, 8.497258], [47.365541, 8.539004], [47.354791, 8.526816], [47.413996, 8.549533], [47.342491, 8.530932], [47.382711, 8.537319], [47.333029, 8.518473], [47.372575, 8.537203], [47.370127, 8.521091], [47.376924, 8.543317], [47.411543, 8.52661], [47.370534, 8.492605], [47.343555, 8.535387], [47.350158, 8.560631], [47.362779, 8.510404], [47.366474, 8.547788], [47.342348, 8.530863], [47.37102, 8.523757], [47.406907, 8.550577], [47.374681, 8.536041], [47.381277, 8.517676], [47.407593, 8.558701], [47.375229, 8.539005], [47.420234, 8.538756], [47.37554, 8.563721], [47.370904, 8.53881], [47.373949, 8.498896], [47.410651, 8.550338], [47.363903, 8.547562], [47.364469, 8.566281], [47.366282, 8.537722], [47.377505, 8.529451], [47.429313, 8.548739], [47.383719, 8.573509], [47.40848, 8.581152], [47.386768, 8.547601], [47.38619, 8.52804], [47.378682, 8.542003], [47.370188, 8.548792], [47.380323, 8.52637], [47.375532, 8.518314], [47.403018, 8.534876], [47.380829, 8.541293], [47.366481, 8.540493], [47.338434, 8.529976], [47.373692, 8.534101], [47.405785, 8.555947], [47.382116, 8.571926], [47.375975, 8.53816], [47.370683, 8.501969], [47.376477, 8.534542], [47.392729, 8.523272], [47.404434, 8.533567], [47.375876, 8.540978], [47.352923, 8.534071], [47.369754, 8.536813], [47.369749, 8.552305], [47.394, 8.54485], [47.380152, 8.513839], [47.354446, 8.559093], [47.378014, 8.512564], [47.377508, 8.574], [47.387477, 8.479218], [47.368003, 8.52408], [47.370762, 8.543296], [47.373763, 8.536128], [47.388613, 8.488843], [47.353599, 8.554549], [47.370259, 8.513758], [47.380795, 8.581791], [47.387008, 8.546123], [47.359706, 8.55089], [47.416023, 8.50628], [47.366966, 8.537696], [47.38676, 8.553177], [47.385123, 8.50839], [47.348024, 8.528041], [47.358527, 8.551898], [47.42274, 8.539086], [47.372508, 8.517511], [47.404225, 8.561002], [47.374096, 8.54457], [47.391252, 8.541575], [47.414249, 8.534312], [47.405952, 8.581111], [47.374702, 8.487325], [47.398265, 8.53711], [47.377397, 8.509281], [47.381478, 8.503721], [47.370915, 8.547046], [47.411939, 8.545515], [47.365713, 8.567764], [47.37748, 8.499337], [47.35869, 8.590332], [47.363298, 8.533649], [47.399672, 8.51769], [47.367903, 8.52997], [47.373652, 8.536457], [47.425712, 8.493379], [47.405282, 8.480692], [47.391688, 8.517317], [47.381461, 8.517216], [47.398122, 8.591582], [47.373567, 8.519718], [47.35144, 8.576701], [47.354088, 8.57542], [47.375882, 8.510733], [47.369233, 8.52817], [47.413995, 8.54304], [47.39813, 8.536219], [47.40518, 8.503797], [47.36648, 8.532999], [47.394982, 8.524762], [47.379393, 8.523888], [47.367781, 8.560459], [47.378784, 8.514937], [47.388317, 8.519977], [47.373966, 8.538436], [47.384979, 8.537167], [47.377125, 8.535389], [47.392649, 8.534596], [47.389429, 8.511655], [47.407577, 8.585068], [47.38436, 8.548332], [47.392397, 8.491117], [47.387247, 8.518936], [47.410529, 8.549911], [47.337814, 8.53474], [47.371317, 8.53041], [47.391379, 8.540518], [47.372523, 8.478649], [47.378777, 8.542389], [47.426683, 8.553787], [47.392167, 8.492702], [47.37868, 8.523145], [47.376585, 8.54392], [47.377734, 8.507924], [47.371476, 8.547667], [47.393839, 8.505558], [47.370435, 8.521839], [47.408842, 8.537248], [47.39378, 8.54527], [47.37579, 8.536713], [47.400251, 8.586408], [47.389552, 8.491379], [47.413618, 8.480988], [47.387495, 8.518384], [47.398912, 8.53348], [47.365136, 8.564217], [47.39589, 8.526768], [47.362233, 8.559363], [47.387075, 8.477873], [47.391803, 8.491198], [47.387278, 8.488274], [47.378673, 8.541976], [47.357321, 8.554746], [47.398857, 8.533571], [47.419116, 8.507336], [47.371349, 8.515449], [47.370789, 8.524375], [47.373992, 8.538596], [47.39462, 8.488048], [47.392062, 8.499204], [47.384652, 8.549795], [47.382224, 8.499961], [47.382155, 8.514184], [47.370792, 8.537351], [47.383879, 8.509729], [47.383466, 8.530765], [47.36499, 8.532651], [47.387701, 8.538481], [47.426279, 8.55464], [47.356762, 8.573372], [47.40809, 8.547303], [47.361716, 8.552349], [47.373047, 8.532949], [47.386489, 8.483], [47.410813, 8.547492], [47.403146, 8.588338], [47.402032, 8.496898], [47.373485, 8.519848], [47.383799, 8.5326], [47.403117, 8.486427], [47.377711, 8.509366], [47.39963, 8.502825], [47.37239, 8.509895], [47.388388, 8.528614], [47.381886, 8.541805], [47.380336, 8.542964], [47.373014, 8.534484], [47.411005, 8.526334], [47.369134, 8.528128], [47.364255, 8.547464], [47.427332, 8.546126], [47.383782, 8.539116], [47.378089, 8.541885], [47.339935, 8.530178], [47.413191, 8.55377], [47.414237, 8.550704], [47.36662, 8.541873], [47.367343, 8.532116], [47.367102, 8.54412], [47.381076, 8.569758], [47.372505, 8.478675], [47.375485, 8.547949], [47.372496, 8.511076], [47.407972, 8.494591], [47.368528, 8.54652], [47.341774, 8.530719], [47.403823, 8.568055], [47.368154, 8.55725], [47.361012, 8.549872], [47.370164, 8.540966], [47.383858, 8.529224], [47.365712, 8.521862], [47.383639, 8.573428], [47.411209, 8.546546], [47.335375, 8.525308], [47.391797, 8.528644], [47.384368, 8.548399], [47.378048, 8.513836], [47.380107, 8.537821], [47.383184, 8.506099], [47.376954, 8.54206], [47.367079, 8.522843], [47.410192, 8.548539], [47.372047, 8.53498], [47.35809, 8.520304], [47.380089, 8.526352], [47.358931, 8.557626], [47.38339, 8.548206], [47.368486, 8.524368], [47.414101, 8.550794], [47.364565, 8.553613], [47.37705, 8.543347], [47.394258, 8.490213], [47.373383, 8.538226], [47.390618, 8.485942], [47.388372, 8.485647], [47.391078, 8.484773], [47.374368, 8.523508], [47.362102, 8.564484], [47.370435, 8.549247], [47.393737, 8.509768], [47.371824, 8.543318], [47.361797, 8.562544], [47.373413, 8.552991], [47.427259, 8.549134], [47.359589, 8.549088], [47.385547, 8.529483], [47.394214, 8.4931], [47.408804, 8.546006], [47.364276, 8.566648], [47.368966, 8.501803], [47.374978, 8.541794], [47.36494, 8.519821], [47.407583, 8.579026], [47.361026, 8.571544], [47.391876, 8.51838], [47.357465, 8.521774], [47.373463, 8.534586], [47.36518, 8.545696], [47.368634, 8.537293], [47.426481, 8.492811], [47.375041, 8.544589], [47.392933, 8.474583], [47.35772, 8.554423], [47.409841, 8.543868], [47.346865, 8.526866], [47.38466, 8.479322], [47.371691, 8.517402], [47.3717, 8.517402], [47.373242, 8.543665], [47.404022, 8.572498], [47.356898, 8.514071], [47.356962, 8.513993], [47.419403, 8.505553], [47.409769, 8.540991], [47.424366, 8.502816], [47.420797, 8.501618], [47.366436, 8.545113], [47.419188, 8.50637], [47.386186, 8.498451], [47.429215, 8.488001], [47.389147, 8.546313], [47.417088, 8.506885], [47.328021, 8.529683], [47.367874, 8.546162], [47.370611, 8.470137], [47.377596, 8.574147], [47.405461, 8.503485], [47.3754, 8.484769], [47.386023, 8.49866], [47.403601, 8.548296], [47.404985, 8.560488], [47.419161, 8.506357], [47.3905, 8.527889], [47.393556, 8.529091], [47.36446, 8.54858], [47.39018, 8.480662], [47.388886, 8.495405], [47.397363, 8.531779], [47.394841, 8.512877], [47.388483, 8.491199], [47.390356, 8.522164], [47.421187, 8.546356], [47.360597, 8.524419], [47.400853, 8.591866], [47.408712, 8.546203], [47.384971, 8.548411], [47.387902, 8.539095], [47.411436, 8.570456], [47.40254, 8.492483], [47.402036, 8.499415], [47.382943, 8.529947], [47.389555, 8.534639], [47.36238, 8.559088], [47.385975, 8.504804], [47.368109, 8.555422], [47.361316, 8.525493], [47.361022, 8.551593], [47.383263, 8.486646], [47.42704, 8.491735], [47.377463, 8.53578], [47.390442, 8.543479], [47.379564, 8.527639], [47.358836, 8.583769], [47.378031, 8.547975], [47.377209, 8.489599], [47.360962, 8.524784], [47.41571, 8.545222], [47.390677, 8.489308], [47.376247, 8.528432], [47.383242, 8.586359], [47.373653, 8.536404], [47.356572, 8.526759], [47.369649, 8.4671], [47.367906, 8.560608], [47.341783, 8.530719], [47.373181, 8.533031], [47.374519, 8.539891], [47.370689, 8.51676], [47.364276, 8.54618], [47.404925, 8.56943], [47.36924, 8.541622], [47.364498, 8.531396], [47.361086, 8.599862], [47.38827, 8.486996], [47.377519, 8.50972], [47.36814, 8.495788], [47.367443, 8.520507], [47.409845, 8.549075], [47.366501, 8.560816], [47.415474, 8.51699], [47.373725, 8.54292], [47.381925, 8.483427], [47.376853, 8.543184], [47.34722, 8.56679], [47.372281, 8.554715], [47.376538, 8.528054], [47.38375, 8.531115], [47.364446, 8.531236], [47.365466, 8.559934], [47.372422, 8.519032], [47.380186, 8.541783], [47.372382, 8.534736], [47.368988, 8.528443], [47.39208, 8.499217], [47.389473, 8.47229], [47.390215, 8.479828], [47.394468, 8.472957], [47.373553, 8.544943], [47.37822, 8.509853], [47.368364, 8.555123], [47.426325, 8.548027], [47.426387, 8.548108]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_0ca5cce089bedd67f0f00c5baae3e258 = L.heatLayer(\n", - " [[47.369699, 8.536905], [47.39214, 8.473773], [47.373017, 8.531359], [47.375614, 8.526817], [47.397218, 8.530915], [47.392629, 8.50703], [47.413379, 8.513039], [47.397027, 8.505118], [47.363356, 8.535119], [47.365984, 8.50226], [47.383743, 8.533777], [47.377257, 8.53861], [47.382077, 8.529267], [47.374993, 8.534472], [47.388773, 8.520185], [47.407791, 8.582555], [47.372963, 8.531371], [47.399638, 8.520326], [47.380207, 8.520567], [47.369872, 8.518583], [47.366048, 8.535797], [47.37704, 8.539612], [47.420468, 8.549018], [47.418509, 8.547003], [47.370106, 8.54887], [47.381772, 8.536703], [47.376955, 8.540987], [47.372659, 8.513899], [47.382741, 8.546444], [47.419942, 8.507472], [47.398651, 8.539171], [47.38467, 8.509798], [47.38666, 8.547652], [47.368744, 8.556706], [47.387924, 8.520645], [47.398023, 8.532349], [47.379635, 8.559702], [47.374159, 8.502423], [47.366135, 8.520931], [47.35964, 8.54848], [47.353664, 8.601805], [47.373494, 8.529356], [47.381115, 8.542451], [47.374386, 8.518715], [47.361435, 8.547948], [47.378341, 8.55026], [47.3738, 8.503342], [47.37883, 8.510991], [47.379962, 8.520708], [47.36792, 8.54611], [47.371351, 8.522983], [47.374086, 8.544755], [47.368835, 8.534067], [47.382923, 8.540515], [47.403402, 8.588847], [47.374483, 8.53131], [47.383968, 8.506843], [47.37165, 8.524671], [47.420912, 8.543077], [47.405822, 8.532297], [47.367629, 8.498519], [47.354846, 8.534309], [47.366952, 8.5201], [47.397751, 8.533496], [47.393444, 8.524704], [47.412153, 8.550356], [47.374996, 8.537014], [47.413972, 8.543596], [47.36905, 8.538017], [47.39554, 8.539955], [47.375757, 8.558893], [47.391948, 8.518382], [47.373628, 8.543699], [47.411424, 8.572616], [47.35764, 8.518442], [47.377414, 8.51622], [47.37017, 8.548805], [47.388635, 8.518659], [47.359922, 8.557421], [47.415141, 8.546443], [47.374609, 8.532318], [47.387129, 8.540006], [47.37549, 8.513162], [47.366468, 8.557691], [47.425879, 8.493727], [47.373157, 8.517352], [47.355299, 8.583057], [47.405608, 8.552816], [47.389303, 8.479201], [47.332947, 8.534746], [47.374467, 8.541611], [47.369458, 8.538621], [47.413875, 8.548987], [47.386828, 8.486239], [47.397832, 8.47497], [47.375915, 8.523566], [47.375203, 8.501397], [47.412055, 8.546551], [47.358946, 8.534433], [47.395992, 8.534956], [47.415904, 8.514216], [47.386914, 8.525644], [47.364477, 8.555187], [47.367065, 8.544292], [47.372732, 8.534822], [47.346868, 8.528533], [47.382103, 8.515957], [47.378769, 8.542257], [47.387509, 8.499378], [47.377119, 8.547413], [47.397332, 8.531208], [47.387246, 8.519081], [47.377617, 8.522395], [47.372771, 8.535485], [47.373438, 8.52002], [47.381833, 8.545393], [47.377045, 8.521947], [47.370711, 8.470113], [47.340563, 8.528471], [47.394948, 8.52451], [47.370206, 8.550712], [47.374723, 8.549575], [47.372487, 8.505276], [47.374119, 8.476177], [47.429962, 8.549535], [47.361751, 8.5174], [47.370165, 8.517014], [47.365119, 8.553943], [47.40954, 8.53762], [47.412587, 8.516892], [47.395965, 8.545355], [47.371725, 8.536708], [47.370106, 8.548883], [47.361474, 8.506605], [47.366184, 8.53388], [47.408532, 8.542396], [47.405132, 8.481445], [47.392542, 8.502763], [47.358826, 8.548926], [47.366439, 8.544821], [47.368044, 8.546351], [47.375618, 8.548137], [47.40996, 8.479671], [47.37447, 8.527059], [47.409072, 8.531993], [47.389242, 8.539189], [47.385848, 8.49316], [47.369448, 8.526321], [47.428191, 8.547602], [47.380565, 8.524508], [47.371837, 8.542881], [47.367208, 8.539621], [47.380807, 8.512104], [47.391394, 8.519814], [47.371535, 8.546185], [47.386162, 8.530013], [47.390649, 8.487466], [47.383629, 8.541986], [47.373912, 8.476266], [47.391972, 8.510925], [47.372834, 8.515346], [47.409584, 8.537741], [47.401975, 8.588538], [47.365732, 8.536942], [47.373949, 8.47616], [47.377075, 8.549108], [47.382992, 8.575202], [47.373137, 8.495252], [47.397389, 8.531885], [47.397597, 8.532684], [47.378756, 8.512102], [47.38892, 8.520877], [47.424992, 8.552851], [47.419808, 8.504554], [47.382024, 8.505003], [47.4118, 8.509667], [47.367584, 8.546447], [47.355786, 8.592877], [47.376895, 8.516819], [47.37835, 8.525721], [47.353406, 8.527701], [47.378083, 8.530152], [47.389445, 8.527192], [47.376156, 8.534244], [47.357487, 8.526129], [47.3797, 8.527602], [47.33589, 8.528918], [47.3701, 8.513358], [47.362086, 8.559651], [47.363741, 8.517188], [47.362048, 8.559849], [47.408672, 8.579911], [47.417199, 8.5419], [47.371478, 8.570693], [47.377166, 8.528266], [47.360296, 8.5522], [47.36156, 8.571224], [47.374877, 8.527729], [47.373425, 8.529116], [47.414368, 8.537945], [47.394715, 8.525432], [47.414324, 8.483506], [47.40952, 8.537925], [47.406035, 8.481052], [47.377539, 8.541966], [47.370686, 8.535217], [47.377067, 8.541506], [47.4113, 8.532317], [47.37996, 8.54191], [47.37515, 8.538765], [47.385497, 8.54229], [47.378691, 8.541937], [47.365243, 8.54571], [47.412094, 8.554674], [47.39566, 8.522458], [47.367374, 8.53736], [47.376488, 8.525683], [47.384205, 8.476943], [47.372739, 8.529341], [47.365071, 8.547679], [47.372943, 8.536257], [47.414301, 8.553382], [47.408091, 8.550894], [47.36794, 8.56176], [47.404994, 8.493618], [47.430248, 8.536576], [47.415548, 8.545245], [47.388973, 8.515209], [47.378937, 8.519787], [47.370215, 8.548819], [47.402203, 8.495895], [47.351907, 8.527326], [47.387574, 8.4873], [47.369947, 8.491958], [47.371065, 8.523679], [47.37368, 8.545806], [47.385078, 8.508455], [47.413157, 8.565603], [47.357608, 8.553931], [47.383572, 8.531946], [47.362458, 8.554694], [47.368255, 8.5116], [47.377625, 8.532937], [47.373992, 8.576666], [47.420287, 8.503331], [47.369118, 8.504864], [47.383133, 8.530758], [47.379054, 8.522557], [47.379388, 8.544309], [47.376594, 8.543907], [47.391907, 8.550145], [47.42209, 8.537442], [47.403225, 8.559271], [47.340434, 8.519125], [47.380555, 8.52562], [47.391299, 8.520422], [47.395978, 8.526889], [47.38321, 8.562148], [47.377256, 8.538676], [47.428803, 8.488735], [47.3762, 8.552215], [47.374357, 8.577892], [47.32954, 8.514486], [47.431381, 8.516477], [47.37024, 8.53775], [47.397485, 8.489508], [47.385654, 8.548492], [47.391693, 8.52345], [47.381978, 8.544389], [47.399381, 8.54271], [47.391207, 8.47855], [47.424203, 8.552542], [47.383602, 8.48697], [47.365723, 8.535976], [47.383238, 8.506021], [47.364554, 8.554725], [47.389045, 8.527714], [47.39958, 8.51696], [47.417737, 8.506673], [47.390314, 8.490665], [47.404935, 8.571166], [47.390069, 8.537272], [47.377479, 8.541687], [47.339326, 8.526977], [47.366035, 8.562448], [47.336924, 8.535621], [47.369073, 8.541275], [47.373862, 8.524755], [47.405147, 8.481776], [47.399034, 8.513716], [47.385267, 8.530498], [47.392598, 8.539019], [47.373594, 8.530245], [47.383359, 8.528724], [47.367487, 8.545346], [47.413842, 8.546813], [47.377017, 8.546776], [47.426489, 8.492944], [47.363975, 8.531505], [47.410731, 8.534412], [47.403876, 8.571832], [47.360354, 8.52538], [47.396871, 8.54087], [47.414587, 8.558199], [47.36379, 8.574939], [47.36449, 8.554843], [47.377328, 8.526349], [47.382888, 8.482334], [47.413979, 8.546657], [47.383227, 8.530323], [47.364585, 8.566323], [47.38005, 8.514221], [47.39129, 8.520382], [47.401928, 8.499387], [47.393894, 8.529456], [47.36109, 8.522642], [47.408821, 8.579331], [47.383654, 8.508731], [47.389757, 8.521781], [47.353587, 8.576098], [47.379855, 8.5206], [47.378245, 8.520581], [47.400701, 8.584602], [47.358729, 8.526976], [47.368099, 8.52154], [47.378108, 8.532284], [47.379415, 8.537688], [47.37588, 8.549043], [47.373002, 8.561986], [47.383465, 8.58745], [47.381448, 8.503098], [47.392104, 8.500489], [47.358035, 8.523255], [47.380506, 8.544014], [47.386724, 8.547534], [47.387611, 8.500016], [47.396347, 8.52018], [47.370112, 8.529419], [47.396112, 8.527064], [47.389147, 8.527332], [47.33502, 8.531441], [47.371753, 8.491133], [47.368863, 8.501231], [47.406959, 8.586619], [47.363083, 8.563498], [47.387772, 8.527185], [47.3754, 8.524747], [47.375375, 8.48559], [47.363094, 8.549412], [47.369561, 8.525767], [47.393878, 8.506168], [47.372731, 8.534889], [47.34376, 8.529952], [47.374859, 8.525848], [47.387482, 8.525563], [47.405203, 8.577717], [47.384112, 8.543255], [47.389949, 8.545137], [47.354026, 8.556014], [47.403898, 8.56962], [47.387665, 8.527116], [47.382256, 8.512054], [47.366409, 8.545191], [47.361016, 8.520959], [47.367424, 8.555619], [47.370476, 8.515497], [47.377636, 8.505869], [47.394696, 8.525485], [47.373269, 8.535125], [47.37764, 8.498599], [47.387651, 8.5295], [47.383264, 8.506101], [47.36828, 8.524297], [47.376989, 8.543107], [47.356694, 8.534757], [47.413152, 8.540942], [47.386044, 8.548142], [47.39127, 8.515785], [47.391253, 8.526302], [47.374322, 8.537887], [47.369153, 8.528089], [47.370686, 8.557727], [47.412259, 8.556215], [47.405866, 8.566098], [47.375627, 8.493461], [47.368429, 8.534257], [47.413957, 8.525215], [47.373605, 8.536668], [47.381085, 8.528505], [47.383548, 8.545746], [47.36859, 8.534313], [47.38937, 8.486633], [47.360717, 8.553361], [47.419744, 8.504645], [47.423402, 8.539497], [47.339103, 8.519125], [47.419115, 8.506448], [47.370981, 8.526921], [47.370358, 8.548915], [47.388671, 8.51768], [47.39377, 8.49635], [47.426008, 8.493491], [47.405544, 8.585078], [47.408436, 8.550596], [47.397197, 8.531166], [47.418497, 8.508159], [47.388939, 8.520771], [47.362479, 8.533725], [47.382289, 8.514266], [47.336347, 8.529986], [47.358268, 8.55458], [47.39147, 8.505881], [47.378841, 8.528962], [47.373508, 8.534573], [47.362424, 8.510794], [47.400286, 8.494055], [47.418375, 8.546881], [47.394723, 8.525538], [47.410369, 8.536524], [47.377189, 8.539999], [47.390865, 8.523552], [47.387607, 8.529393], [47.368173, 8.559951], [47.326261, 8.514975], [47.363496, 8.499959], [47.380138, 8.54304], [47.379061, 8.524702], [47.376884, 8.540933], [47.424266, 8.501011], [47.37247, 8.526409], [47.366946, 8.560376], [47.366874, 8.545413], [47.352043, 8.573007], [47.366123, 8.533601], [47.399193, 8.520834], [47.365517, 8.521567], [47.381824, 8.5482], [47.384136, 8.527415], [47.35148, 8.560712], [47.368637, 8.559431], [47.349916, 8.534327], [47.373932, 8.502657], [47.376604, 8.568961], [47.379677, 8.511724], [47.388079, 8.529019], [47.382509, 8.548069], [47.415506, 8.550598], [47.354779, 8.523268], [47.415003, 8.54579], [47.368475, 8.523692], [47.37003, 8.54091], [47.376491, 8.528331], [47.365099, 8.521095], [47.332885, 8.529902], [47.391028, 8.488335], [47.364614, 8.504562], [47.377666, 8.551265], [47.373442, 8.534877], [47.354133, 8.563468], [47.407561, 8.584949], [47.413332, 8.531484], [47.378836, 8.542761], [47.343273, 8.535712], [47.36075, 8.551852], [47.383146, 8.513979], [47.361364, 8.602622], [47.337941, 8.536463], [47.356478, 8.535799], [47.36986, 8.519815], [47.381459, 8.513547], [47.395845, 8.53343], [47.359959, 8.589379], [47.367001, 8.563965], [47.387672, 8.53962], [47.377858, 8.509105], [47.374323, 8.543436], [47.373639, 8.536867], [47.376447, 8.528185], [47.410901, 8.557975], [47.409717, 8.576051], [47.379002, 8.547082], [47.376834, 8.544256], [47.378816, 8.539225], [47.364616, 8.516901], [47.368312, 8.534228], [47.39971, 8.491142], [47.422273, 8.537101], [47.393615, 8.524774], [47.378468, 8.51019], [47.384857, 8.531999], [47.349407, 8.527249], [47.360415, 8.552017], [47.386031, 8.515255], [47.377749, 8.537932], [47.374069, 8.475752], [47.397358, 8.531262], [47.373492, 8.485924], [47.352773, 8.509779], [47.404294, 8.569562], [47.412207, 8.555008], [47.3909, 8.478663], [47.366838, 8.534079], [47.378685, 8.575044], [47.365782, 8.520195], [47.364286, 8.546127], [47.356603, 8.510028], [47.369005, 8.53799], [47.376083, 8.559628], [47.411107, 8.526098], [47.426329, 8.492742], [47.378139, 8.499125], [47.365956, 8.49556], [47.410859, 8.57157], [47.366398, 8.520711], [47.357659, 8.535452], [47.376438, 8.534872], [47.36434, 8.534769], [47.425615, 8.494146], [47.387886, 8.482683], [47.373414, 8.503295], [47.405906, 8.58494], [47.37025, 8.548846], [47.387565, 8.488372], [47.392952, 8.485485], [47.40834, 8.544632], [47.366728, 8.545675], [47.357157, 8.522006], [47.413783, 8.54546], [47.412921, 8.537743], [47.379079, 8.500508], [47.383306, 8.51328], [47.365679, 8.505166], [47.365693, 8.526813], [47.382156, 8.529467], [47.364509, 8.530271], [47.425962, 8.49357], [47.368159, 8.560481], [47.366416, 8.540624], [47.410819, 8.529842], [47.384432, 8.528467], [47.366856, 8.544459], [47.406606, 8.575044], [47.379465, 8.523916], [47.398194, 8.536154], [47.365894, 8.530246], [47.382594, 8.55052], [47.387368, 8.519428], [47.372169, 8.522006], [47.398776, 8.494886], [47.375011, 8.528751], [47.407353, 8.547195], [47.400362, 8.477655], [47.38599, 8.498275], [47.379794, 8.506866], [47.414154, 8.527273], [47.367712, 8.519625], [47.369137, 8.527903], [47.405085, 8.478675], [47.373385, 8.519966], [47.375786, 8.53997], [47.364306, 8.548722], [47.421461, 8.497894], [47.365088, 8.530839], [47.391744, 8.484799], [47.373258, 8.531549], [47.40123, 8.545067], [47.393631, 8.511435], [47.380226, 8.536592], [47.375091, 8.540247], [47.377877, 8.5215], [47.393501, 8.541568], [47.409332, 8.550058], [47.373892, 8.503093], [47.385568, 8.532927], [47.377499, 8.535794], [47.393208, 8.539244], [47.382557, 8.529793], [47.37535, 8.561003], [47.40271, 8.535161], [47.362881, 8.530224], [47.376692, 8.548729], [47.389634, 8.521434], [47.392036, 8.51082], [47.424484, 8.536378], [47.419613, 8.548179], [47.360511, 8.524047], [47.405553, 8.585131], [47.369289, 8.547846], [47.377628, 8.538393], [47.382766, 8.539995], [47.388505, 8.488815], [47.378094, 8.510831], [47.382105, 8.488305], [47.407266, 8.585631], [47.414239, 8.509531], [47.380041, 8.547488], [47.42553, 8.55766], [47.381211, 8.518005], [47.366728, 8.541928], [47.40303, 8.555213], [47.378294, 8.520198], [47.392678, 8.532544], [47.407346, 8.550706], [47.418598, 8.554585], [47.385922, 8.542074], [47.365036, 8.566174], [47.37908, 8.559439], [47.401953, 8.499639], [47.374615, 8.549546], [47.38809, 8.520131], [47.388763, 8.515536], [47.375807, 8.551915], [47.372372, 8.531107], [47.386701, 8.488342], [47.376822, 8.52467], [47.371778, 8.536829], [47.405669, 8.591546], [47.378883, 8.519759], [47.385868, 8.532589], [47.378429, 8.526941], [47.398632, 8.53925], [47.386227, 8.52506], [47.335036, 8.527921], [47.391533, 8.545117], [47.377815, 8.507925], [47.376596, 8.539007], [47.418097, 8.538354], [47.362804, 8.548731], [47.3377, 8.525819], [47.368292, 8.52684], [47.377389, 8.54824], [47.378164, 8.509985], [47.396598, 8.542228], [47.401606, 8.551792], [47.391796, 8.518233], [47.411487, 8.546671], [47.335127, 8.519203], [47.373265, 8.552418], [47.395554, 8.5299], [47.39941, 8.548169], [47.384773, 8.509323], [47.38293, 8.515007], [47.40186, 8.485183], [47.37369, 8.537199], [47.355907, 8.555947], [47.406853, 8.550603], [47.3767, 8.544174], [47.363987, 8.535913], [47.39769, 8.533269], [47.396262, 8.545361], [47.357902, 8.554228], [47.387341, 8.516553], [47.390872, 8.478755], [47.387807, 8.488443], [47.359221, 8.527303], [47.41383, 8.52728], [47.409167, 8.547484], [47.404748, 8.494011], [47.366286, 8.552352], [47.407479, 8.585901], [47.389873, 8.512247], [47.367382, 8.494039], [47.411107, 8.571072], [47.365922, 8.545248], [47.382362, 8.563283], [47.380501, 8.525646], [47.408712, 8.546216], [47.370344, 8.514237], [47.370503, 8.515551], [47.368295, 8.539776], [47.378918, 8.519813], [47.377392, 8.529052], [47.3753, 8.543853], [47.378993, 8.511816], [47.408138, 8.536624], [47.378195, 8.510608], [47.386057, 8.529706], [47.398813, 8.529649], [47.383397, 8.548392], [47.3858, 8.545448], [47.363228, 8.549521], [47.388425, 8.539913], [47.377214, 8.540212], [47.370163, 8.539205], [47.378618, 8.528785], [47.379462, 8.527982], [47.366858, 8.549927], [47.369014, 8.537963], [47.394909, 8.522985], [47.366921, 8.544302], [47.379934, 8.528561], [47.372544, 8.534739], [47.389632, 8.527395], [47.361908, 8.514067], [47.379516, 8.528936], [47.390078, 8.547657], [47.385829, 8.474392], [47.354488, 8.52358], [47.39159, 8.514308], [47.372517, 8.534712], [47.404966, 8.555956], [47.42604, 8.54765], [47.377329, 8.512736], [47.368365, 8.496746], [47.370287, 8.556275], [47.414234, 8.483478], [47.403504, 8.497272], [47.363259, 8.554671], [47.368021, 8.556135], [47.375823, 8.538938], [47.376749, 8.538123], [47.3779, 8.51137], [47.391806, 8.477952], [47.388323, 8.547739], [47.403612, 8.497234], [47.407448, 8.548562], [47.38475, 8.531957], [47.389087, 8.486151], [47.389899, 8.476895], [47.40904, 8.547601], [47.366932, 8.545043], [47.406816, 8.550629], [47.381682, 8.516651], [47.374093, 8.544914], [47.384313, 8.516174], [47.388147, 8.497457], [47.355622, 8.508142], [47.359996, 8.511751], [47.375277, 8.485403], [47.383702, 8.498666], [47.361036, 8.521754], [47.392818, 8.524413], [47.379046, 8.529192], [47.360757, 8.524594], [47.413754, 8.546586], [47.383274, 8.506075], [47.366418, 8.545139], [47.365354, 8.538868], [47.406178, 8.484062], [47.387306, 8.488116], [47.356583, 8.600426], [47.367338, 8.537359], [47.403136, 8.486268], [47.432504, 8.528192], [47.374966, 8.544892], [47.411201, 8.54648], [47.333516, 8.534506], [47.374398, 8.521271], [47.398312, 8.536965], [47.411172, 8.570848], [47.377737, 8.509552], [47.39625, 8.527663], [47.382946, 8.550382], [47.36772, 8.488511], [47.374857, 8.528947], [47.411325, 8.572666], [47.35107, 8.579618], [47.374818, 8.530151], [47.369467, 8.526255], [47.354032, 8.508891], [47.406866, 8.586921], [47.332941, 8.518259], [47.403869, 8.485779], [47.378576, 8.575148], [47.383256, 8.532959], [47.343848, 8.530126], [47.378552, 8.528162], [47.353484, 8.576466], [47.428002, 8.545742], [47.398841, 8.510321], [47.370057, 8.540858], [47.370188, 8.548792], [47.375767, 8.491888], [47.396588, 8.493187], [47.381131, 8.517871], [47.403141, 8.502485], [47.360126, 8.551177], [47.425241, 8.494722], [47.413837, 8.545435], [47.35935, 8.592716], [47.339898, 8.530244], [47.330064, 8.515118], [47.426748, 8.49222], [47.372981, 8.531318], [47.39314, 8.5265], [47.39118, 8.489464], [47.348395, 8.562513], [47.374845, 8.518658], [47.378174, 8.507032], [47.384408, 8.528162], [47.387419, 8.5398], [47.396013, 8.545038], [47.370271, 8.514315], [47.365723, 8.562204], [47.354181, 8.555792], [47.375426, 8.539075], [47.366946, 8.539814], [47.37653, 8.536463], [47.373493, 8.529502], [47.353034, 8.500982], [47.399637, 8.495115], [47.357365, 8.521851], [47.370152, 8.548791], [47.405894, 8.59061], [47.374803, 8.49792], [47.361138, 8.600989], [47.367382, 8.494026], [47.390592, 8.489796], [47.378371, 8.54058], [47.375258, 8.550036], [47.366714, 8.537691], [47.364486, 8.552433], [47.371715, 8.519574], [47.385821, 8.530006], [47.404386, 8.572082], [47.369601, 8.555612], [47.395549, 8.542816], [47.381334, 8.542151], [47.418088, 8.538367], [47.420583, 8.513051], [47.377083, 8.539798], [47.392843, 8.537938], [47.383577, 8.488691], [47.381819, 8.490074], [47.363833, 8.534136], [47.366752, 8.542167], [47.366557, 8.544718], [47.408304, 8.577054], [47.33415, 8.515902], [47.378881, 8.542762], [47.413747, 8.553874], [47.351035, 8.580425], [47.371907, 8.536461], [47.38323, 8.505994], [47.414152, 8.518805], [47.361324, 8.535038], [47.378403, 8.520094], [47.399582, 8.539574], [47.418504, 8.54752], [47.415492, 8.546463], [47.409964, 8.535602], [47.378048, 8.508963], [47.376944, 8.528897], [47.370895, 8.508144], [47.416518, 8.554807], [47.428811, 8.48892], [47.361466, 8.565119], [47.407888, 8.478027], [47.39267, 8.52286], [47.408719, 8.550165], [47.344551, 8.519513], [47.351046, 8.581973], [47.386802, 8.489192], [47.370794, 8.535259], [47.368157, 8.53445], [47.402735, 8.499694], [47.374752, 8.527647], [47.390845, 8.478794], [47.40963, 8.576698], [47.334984, 8.528661], [47.387411, 8.493389], [47.383589, 8.543297], [47.359477, 8.535424], [47.354806, 8.574721], [47.384618, 8.494897], [47.383068, 8.529062], [47.368489, 8.530736], [47.388395, 8.491011], [47.374478, 8.539453], [47.3677, 8.495634], [47.355369, 8.554837], [47.376349, 8.488231], [47.391103, 8.487965], [47.367111, 8.5442], [47.376119, 8.510354], [47.369155, 8.556145], [47.405618, 8.549941], [47.413439, 8.536323], [47.37747, 8.548308], [47.409531, 8.53762], [47.352888, 8.488431], [47.351755, 8.527283], [47.427752, 8.537055], [47.356457, 8.523686], [47.374826, 8.516843], [47.415725, 8.529479], [47.37017, 8.548792], [47.36839, 8.493993], [47.378117, 8.539859], [47.37004, 8.564082], [47.370653, 8.516772], [47.373198, 8.547305], [47.368632, 8.553447], [47.376061, 8.535738], [47.386942, 8.498426], [47.372449, 8.523839], [47.371346, 8.546221], [47.375882, 8.510733], [47.414676, 8.520499], [47.368835, 8.500397], [47.385644, 8.521102], [47.378225, 8.515111], [47.366488, 8.540692], [47.371818, 8.488009], [47.379433, 8.54427], [47.418553, 8.54711], [47.35839, 8.505457], [47.335072, 8.518355], [47.381238, 8.494591], [47.422467, 8.550743], [47.35245, 8.572751], [47.366034, 8.562528], [47.379521, 8.516965], [47.367109, 8.539711], [47.366104, 8.540353], [47.359674, 8.535467], [47.39393, 8.483703], [47.39908, 8.498986], [47.391334, 8.51568], [47.415364, 8.551337], [47.402564, 8.492762], [47.370152, 8.548804], [47.399612, 8.468036], [47.375404, 8.528177], [47.336413, 8.521069], [47.334935, 8.53001], [47.376503, 8.511607], [47.424971, 8.529536], [47.359245, 8.592422], [47.353272, 8.576144], [47.385012, 8.508785], [47.409362, 8.549701], [47.380774, 8.536709], [47.38934, 8.521163], [47.398294, 8.536938], [47.369951, 8.551899], [47.353559, 8.576216], [47.403722, 8.486121], [47.378579, 8.519501], [47.387671, 8.48656], [47.357918, 8.520473], [47.35762, 8.521486], [47.377903, 8.509079], [47.387287, 8.484235], [47.363032, 8.563219], [47.388183, 8.497471], [47.373785, 8.536671], [47.375765, 8.516544], [47.373786, 8.537479], [47.418124, 8.538354], [47.410708, 8.550021], [47.391411, 8.53616], [47.39484, 8.538801], [47.356266, 8.526753], [47.384431, 8.498575], [47.381522, 8.515482], [47.371894, 8.56579], [47.376132, 8.516737], [47.374433, 8.51853], [47.383238, 8.49924], [47.36555, 8.598741], [47.377652, 8.527269], [47.370063, 8.503837], [47.389621, 8.512255], [47.373765, 8.534036], [47.423552, 8.502376], [47.354464, 8.553481], [47.422827, 8.535668], [47.358263, 8.585332], [47.386815, 8.535165], [47.381841, 8.529447], [47.373648, 8.519772], [47.377247, 8.538716], [47.35651, 8.488727], [47.378408, 8.540501], [47.381342, 8.508724], [47.369824, 8.510241], [47.414273, 8.534617], [47.369651, 8.577182], [47.373056, 8.552692], [47.360454, 8.516605], [47.355025, 8.554076], [47.340171, 8.529918], [47.370842, 8.548117], [47.379872, 8.554781], [47.349855, 8.561287], [47.419126, 8.506237], [47.378112, 8.526206], [47.377044, 8.548577], [47.392489, 8.502722], [47.391114, 8.522842], [47.361315, 8.525585], [47.387097, 8.489357], [47.368997, 8.50138], [47.386089, 8.54809], [47.373175, 8.527959], [47.386166, 8.528701], [47.387797, 8.529291], [47.34294, 8.535825], [47.396097, 8.539993], [47.36401, 8.551457], [47.375667, 8.527004], [47.397065, 8.480254], [47.403216, 8.559232], [47.390556, 8.536196], [47.424771, 8.502837], [47.384431, 8.531461], [47.379985, 8.52786], [47.366161, 8.521024], [47.383328, 8.543358], [47.367396, 8.545358], [47.392589, 8.523826], [47.379865, 8.524375], [47.4041, 8.564576], [47.383651, 8.548159], [47.380268, 8.541612], [47.372389, 8.5207], [47.370456, 8.532048], [47.36801, 8.520466], [47.394164, 8.51799], [47.373453, 8.598278], [47.356912, 8.55524], [47.397547, 8.48168], [47.387276, 8.488499], [47.393417, 8.500569], [47.378606, 8.542346], [47.374669, 8.545787], [47.377398, 8.529436], [47.37921, 8.522295], [47.376376, 8.528077], [47.370783, 8.546779], [47.371915, 8.564612], [47.380743, 8.578902], [47.385135, 8.536839], [47.341443, 8.529574], [47.397311, 8.531513], [47.385797, 8.548534], [47.399169, 8.542335], [47.379654, 8.527694], [47.396783, 8.540682], [47.363839, 8.5317], [47.373362, 8.529128], [47.412099, 8.546631], [47.394171, 8.524971], [47.359306, 8.592569], [47.374455, 8.539956], [47.362077, 8.547577], [47.373902, 8.536621], [47.387733, 8.529409], [47.370184, 8.535988], [47.364204, 8.526333], [47.409323, 8.543459], [47.414432, 8.475518], [47.349557, 8.532374], [47.379108, 8.522585], [47.354057, 8.525398], [47.389247, 8.494313], [47.368058, 8.560704], [47.373072, 8.533095], [47.369837, 8.52903], [47.361548, 8.561374], [47.363701, 8.532015], [47.361846, 8.52647], [47.414213, 8.518091], [47.37016, 8.51271], [47.377958, 8.548067], [47.361859, 8.569178], [47.368921, 8.525012], [47.383348, 8.49903], [47.408027, 8.547315], [47.367951, 8.534393], [47.39419, 8.518056], [47.402479, 8.49325], [47.399207, 8.505731], [47.372843, 8.554197], [47.390164, 8.509961], [47.375957, 8.541933], [47.409266, 8.544744], [47.366094, 8.540445], [47.422104, 8.506164], [47.367146, 8.54616], [47.421306, 8.500117], [47.372627, 8.550524], [47.38628, 8.531843], [47.406311, 8.562914], [47.370707, 8.566705], [47.381818, 8.533778], [47.381097, 8.511845], [47.409929, 8.541259], [47.370859, 8.548223], [47.398164, 8.518309], [47.37539, 8.489854], [47.377702, 8.509406], [47.400312, 8.582103], [47.353678, 8.512047], [47.36457, 8.537077], [47.423794, 8.516933], [47.352188, 8.558133], [47.362803, 8.548784], [47.360453, 8.561073], [47.380626, 8.525754], [47.385981, 8.518658], [47.408786, 8.540348], [47.386089, 8.543362], [47.363234, 8.517509], [47.390841, 8.522214], [47.397146, 8.518487], [47.397012, 8.530765], [47.384966, 8.50885], [47.40896, 8.482858], [47.426418, 8.54392], [47.372937, 8.520738], [47.388517, 8.531226], [47.382949, 8.551892], [47.373434, 8.529116], [47.378443, 8.540647], [47.419237, 8.507856], [47.412175, 8.546222], [47.377161, 8.540131], [47.379288, 8.544386], [47.377247, 8.538729], [47.369696, 8.541923], [47.360356, 8.51659], [47.366595, 8.533187], [47.374748, 8.550741], [47.369222, 8.525548], [47.370794, 8.535246], [47.386154, 8.482226], [47.390565, 8.491822], [47.383207, 8.530535], [47.379463, 8.525942], [47.3558, 8.557653], [47.369247, 8.519987], [47.373745, 8.546536], [47.380889, 8.481606], [47.366396, 8.519877], [47.385572, 8.520107], [47.373759, 8.500018], [47.408878, 8.495842], [47.409474, 8.535128], [47.366936, 8.53616], [47.387054, 8.534667], [47.373256, 8.535508], [47.404468, 8.571951], [47.366587, 8.533081], [47.377068, 8.539507], [47.370208, 8.524933], [47.412955, 8.543694], [47.366475, 8.544875], [47.369346, 8.536169], [47.398474, 8.591377], [47.33642, 8.520354], [47.372893, 8.520657], [47.400006, 8.545108], [47.40238, 8.583049], [47.39054, 8.545414], [47.383281, 8.4787], [47.397363, 8.533647], [47.393762, 8.493343], [47.354887, 8.574683], [47.370501, 8.548997], [47.372784, 8.535048], [47.383714, 8.540598], [47.376718, 8.5442], [47.42069, 8.502517], [47.370015, 8.509993], [47.430234, 8.542714], [47.355985, 8.57374], [47.374042, 8.544648], [47.386924, 8.535114], [47.389633, 8.511964], [47.377305, 8.521144], [47.376928, 8.543808], [47.365324, 8.532552], [47.369342, 8.557209], [47.359352, 8.551267], [47.369716, 8.525545], [47.374986, 8.537173], [47.39381, 8.501888], [47.383166, 8.574888], [47.378464, 8.567359], [47.368732, 8.528822], [47.359972, 8.594397], [47.378606, 8.510801], [47.354333, 8.557794], [47.387246, 8.500591], [47.357747, 8.554424], [47.374218, 8.537475], [47.384231, 8.493883], [47.350339, 8.577948], [47.393414, 8.499906], [47.38792, 8.52483], [47.406912, 8.586843], [47.368809, 8.501257], [47.391941, 8.51813], [47.394395, 8.474055], [47.357786, 8.522945], [47.360534, 8.561101], [47.404233, 8.561996], [47.384574, 8.54288], [47.357882, 8.526164], [47.384474, 8.481054], [47.372344, 8.535953], [47.413885, 8.527202], [47.408881, 8.546445], [47.37437, 8.541384], [47.358179, 8.574779], [47.365063, 8.531567], [47.391014, 8.523025], [47.383212, 8.505981], [47.398989, 8.499103], [47.369287, 8.547992], [47.382521, 8.588291], [47.368369, 8.547165], [47.387119, 8.48198], [47.377153, 8.526769], [47.368915, 8.535194], [47.378468, 8.540794], [47.378067, 8.547923], [47.370856, 8.549508], [47.39743, 8.532257], [47.384472, 8.516509], [47.363606, 8.575305], [47.387991, 8.526898], [47.362545, 8.535315], [47.361508, 8.576465], [47.362167, 8.547526], [47.368564, 8.547474], [47.38463, 8.531292], [47.378087, 8.483087], [47.380315, 8.48333], [47.425887, 8.493926], [47.397378, 8.532018], [47.36545, 8.539174], [47.393795, 8.52854], [47.376938, 8.541808], [47.374774, 8.551774], [47.369595, 8.533632], [47.370151, 8.548937], [47.406987, 8.550632], [47.360414, 8.526679], [47.365998, 8.533492], [47.374948, 8.544839], [47.393347, 8.529338], [47.386197, 8.498226], [47.382134, 8.5719], [47.358562, 8.508254], [47.342, 8.530604], [47.37859, 8.54216], [47.382699, 8.488316], [47.378773, 8.491748], [47.356361, 8.535783], [47.411305, 8.527944], [47.371502, 8.547773], [47.362389, 8.559062], [47.387247, 8.537094], [47.371891, 8.542829], [47.35178, 8.530328], [47.377027, 8.540075], [47.431346, 8.516463], [47.358446, 8.532133], [47.415459, 8.48333], [47.407166, 8.550729], [47.353507, 8.553911], [47.384643, 8.53471], [47.374931, 8.544746], [47.36129, 8.576712], [47.359639, 8.593543], [47.405195, 8.50503], [47.409154, 8.549856], [47.406657, 8.551288], [47.430397, 8.536076], [47.362685, 8.575749], [47.359552, 8.522637], [47.411108, 8.570913], [47.414525, 8.517461], [47.376503, 8.511607], [47.364001, 8.551457], [47.390108, 8.52563], [47.37896, 8.508597], [47.399936, 8.467022], [47.418314, 8.548523], [47.415298, 8.51749], [47.378128, 8.509984], [47.418114, 8.53838], [47.389329, 8.521375], [47.382412, 8.505832], [47.348405, 8.534296], [47.414683, 8.544458], [47.366263, 8.553821], [47.356987, 8.553031], [47.410428, 8.543615], [47.415971, 8.50893], [47.374601, 8.532239], [47.384688, 8.549717], [47.389814, 8.511755], [47.387921, 8.48577], [47.426312, 8.545548], [47.369603, 8.535685], [47.387555, 8.519697], [47.393862, 8.505028], [47.414897, 8.546596], [47.359131, 8.573012], [47.358085, 8.555808], [47.415056, 8.546878], [47.408069, 8.572584], [47.385811, 8.547065], [47.376611, 8.518349], [47.377, 8.535281], [47.369992, 8.491919], [47.359309, 8.55762], [47.382101, 8.501601], [47.374789, 8.527582], [47.378987, 8.508531], [47.378014, 8.536507], [47.401715, 8.581166], [47.38145, 8.528949], [47.39341, 8.512941], [47.379846, 8.542478], [47.416797, 8.567787], [47.405162, 8.481101], [47.34411, 8.531878], [47.417428, 8.553726], [47.361001, 8.54819], [47.352872, 8.572866], [47.377197, 8.526902], [47.3734, 8.531698], [47.406112, 8.568501], [47.377246, 8.538808], [47.370545, 8.49144], [47.383421, 8.484066], [47.378786, 8.542363], [47.380545, 8.517025], [47.377189, 8.540026], [47.375358, 8.540597], [47.366512, 8.544743], [47.383451, 8.533268], [47.407939, 8.5367], [47.376865, 8.538165], [47.357276, 8.536027], [47.398389, 8.548677], [47.38753, 8.487233], [47.381462, 8.537227], [47.377122, 8.543308], [47.373217, 8.533005], [47.368713, 8.500897], [47.397473, 8.532443], [47.367581, 8.509613], [47.377871, 8.517381], [47.429953, 8.549561], [47.371396, 8.542859], [47.38363, 8.573468], [47.368164, 8.557237], [47.375705, 8.523866], [47.417912, 8.505284], [47.382541, 8.531514], [47.366082, 8.532249], [47.367637, 8.501578], [47.403089, 8.547199], [47.366567, 8.531439], [47.370703, 8.546671], [47.410971, 8.536669], [47.389954, 8.538978], [47.409442, 8.537579], [47.383217, 8.539872], [47.386446, 8.548415], [47.358395, 8.581999], [47.407713, 8.543479], [47.380835, 8.534963], [47.389826, 8.486934], [47.380429, 8.547376], [47.412924, 8.537425], [47.366444, 8.545205], [47.350348, 8.577988], [47.393335, 8.524821], [47.391433, 8.487296], [47.374185, 8.521001], [47.392303, 8.531317], [47.420212, 8.500718], [47.363585, 8.521408], [47.399434, 8.506451], [47.373199, 8.529191], [47.369922, 8.511236], [47.35957, 8.52269], [47.363061, 8.526362], [47.406495, 8.549429], [47.374078, 8.526653], [47.358983, 8.591622], [47.40395, 8.571622], [47.422538, 8.550771], [47.384495, 8.548309], [47.364257, 8.547278], [47.3892, 8.513968], [47.357547, 8.553705], [47.405702, 8.533619], [47.390681, 8.488964], [47.359744, 8.593836], [47.371964, 8.535217], [47.373029, 8.528115], [47.379424, 8.555513], [47.404573, 8.54817], [47.375507, 8.517175], [47.368327, 8.548714], [47.376935, 8.522183], [47.380309, 8.493964], [47.42423, 8.548858], [47.354781, 8.526829], [47.373853, 8.538063], [47.413117, 8.474737], [47.386256, 8.535326], [47.370859, 8.557585], [47.377033, 8.544154], [47.368583, 8.534141], [47.398932, 8.513131], [47.368105, 8.541811], [47.370994, 8.548239], [47.403042, 8.484769], [47.351677, 8.55889], [47.408785, 8.57941], [47.381172, 8.515435], [47.421023, 8.507322], [47.418115, 8.538367], [47.37017, 8.548765], [47.36342, 8.554794], [47.403885, 8.567248], [47.384358, 8.548518], [47.379176, 8.544861], [47.410384, 8.548212], [47.374961, 8.536868], [47.376667, 8.527792], [47.359687, 8.549129], [47.379952, 8.528548], [47.374014, 8.54474], [47.381933, 8.529198], [47.370571, 8.524543], [47.384658, 8.541584], [47.393295, 8.494274], [47.32956, 8.529609], [47.357424, 8.521323], [47.363205, 8.563911], [47.337795, 8.534779], [47.365029, 8.502519], [47.396029, 8.545237], [47.402309, 8.486172], [47.350703, 8.601966], [47.36838, 8.548768], [47.396136, 8.538775], [47.37197, 8.538316], [47.429909, 8.542892], [47.37079, 8.546977], [47.330108, 8.529673], [47.379363, 8.542216], [47.417776, 8.509244], [47.361245, 8.525359], [47.40576, 8.577808], [47.370658, 8.546644], [47.393872, 8.505889], [47.388032, 8.529216], [47.378639, 8.541737], [47.396999, 8.530288], [47.407229, 8.55073], [47.413601, 8.523896], [47.362655, 8.558551], [47.403641, 8.496957], [47.415682, 8.512913], [47.362204, 8.5475], [47.391733, 8.519159], [47.405578, 8.5753], [47.405676, 8.575395], [47.367565, 8.534306], [47.354375, 8.526], [47.361999, 8.525507], [47.369653, 8.525583], [47.393202, 8.528501], [47.426128, 8.495084], [47.361937, 8.526392], [47.373103, 8.538405], [47.356564, 8.524734], [47.398414, 8.537537], [47.399733, 8.517837], [47.37518, 8.534701], [47.392341, 8.476373], [47.391414, 8.550956], [47.35506, 8.557002], [47.390258, 8.490955], [47.383258, 8.55713], [47.36306, 8.563114], [47.410107, 8.569368], [47.394016, 8.5251], [47.387322, 8.539613], [47.418883, 8.544532], [47.374174, 8.52116], [47.390895, 8.522189], [47.371588, 8.515904], [47.353474, 8.525214], [47.369561, 8.541907], [47.386615, 8.534446], [47.373912, 8.536515], [47.354388, 8.52367], [47.377005, 8.544246], [47.360751, 8.553533], [47.42932, 8.543318], [47.382501, 8.500152], [47.375729, 8.538459], [47.404575, 8.588502], [47.364401, 8.531182], [47.383656, 8.573588], [47.381817, 8.545233], [47.375372, 8.524799], [47.368753, 8.554005], [47.381066, 8.518095], [47.378224, 8.530486], [47.40686, 8.550736], [47.368815, 8.524798], [47.405733, 8.591455], [47.376533, 8.525697], [47.366898, 8.545771], [47.354868, 8.574762], [47.375953, 8.515608], [47.376182, 8.536178], [47.407518, 8.579237], [47.377339, 8.488145], [47.367351, 8.54541], [47.411829, 8.524827], [47.396582, 8.521099], [47.37246, 8.533148], [47.372986, 8.517442], [47.339927, 8.530046], [47.402307, 8.499302], [47.381469, 8.503734], [47.411091, 8.545762], [47.394165, 8.527448], [47.3462, 8.534449], [47.394026, 8.525007], [47.37009, 8.512524], [47.392837, 8.490198], [47.357102, 8.522058], [47.400909, 8.548558], [47.428302, 8.489507], [47.371783, 8.54284], [47.366461, 8.498403], [47.367687, 8.522273], [47.392044, 8.499203], [47.360307, 8.523659], [47.371964, 8.519923], [47.367051, 8.543881], [47.384704, 8.531996], [47.396002, 8.545289], [47.367165, 8.546995], [47.369029, 8.519295], [47.377354, 8.525422], [47.338906, 8.538124], [47.388076, 8.540714], [47.35968, 8.522441], [47.376494, 8.511633], [47.378495, 8.523684], [47.371102, 8.531227], [47.352268, 8.573012], [47.360414, 8.526679], [47.36396, 8.533159], [47.407563, 8.544099], [47.408961, 8.579798], [47.360863, 8.554966], [47.37478, 8.515108], [47.389543, 8.521591], [47.369331, 8.533998], [47.363751, 8.575203], [47.369483, 8.540701], [47.368443, 8.538441], [47.368474, 8.541845], [47.369586, 8.533632], [47.379462, 8.49506], [47.400031, 8.494408], [47.360857, 8.585017], [47.417126, 8.523027], [47.384872, 8.531364], [47.374142, 8.532243], [47.373056, 8.547104], [47.369134, 8.548015], [47.372559, 8.478689], [47.414072, 8.541597], [47.390897, 8.526864], [47.369032, 8.532336], [47.375551, 8.526895], [47.371429, 8.546064], [47.392638, 8.51572], [47.383482, 8.530024], [47.366977, 8.544104], [47.36702, 8.539551], [47.363408, 8.575394], [47.378369, 8.541745], [47.381018, 8.518438], [47.384539, 8.480737], [47.407465, 8.530701], [47.382137, 8.516117], [47.387683, 8.519434], [47.38278, 8.514673], [47.399885, 8.504447], [47.394188, 8.490053], [47.387457, 8.519549], [47.338778, 8.528792], [47.344755, 8.533162], [47.384349, 8.494786], [47.363687, 8.535325], [47.385875, 8.535662], [47.360544, 8.562875], [47.389848, 8.477596], [47.389839, 8.477609], [47.374551, 8.539362], [47.416521, 8.553535], [47.344141, 8.532435], [47.370224, 8.541232], [47.379026, 8.540805], [47.381158, 8.518812], [47.389754, 8.524006], [47.37735, 8.512392], [47.426919, 8.536667], [47.370692, 8.519342], [47.414071, 8.541663], [47.37653, 8.527021], [47.38157, 8.541917], [47.403117, 8.486413], [47.363386, 8.534882], [47.385537, 8.530503], [47.392054, 8.517589], [47.357843, 8.521662], [47.368961, 8.528429], [47.371975, 8.534992], [47.370637, 8.519433], [47.360533, 8.566728], [47.37808, 8.509347], [47.381593, 8.555373], [47.369014, 8.53795], [47.380091, 8.528074], [47.375942, 8.541602], [47.337195, 8.519232], [47.381309, 8.540945], [47.41053, 8.569271], [47.406321, 8.58479], [47.371756, 8.525812], [47.378362, 8.510055], [47.404242, 8.561943], [47.408741, 8.539379], [47.364556, 8.54698], [47.377907, 8.540266], [47.38376, 8.540519], [47.370174, 8.540874], [47.376865, 8.52675], [47.385364, 8.536473], [47.366943, 8.542952], [47.392802, 8.523247], [47.373871, 8.517075], [47.349076, 8.574705], [47.368028, 8.540445], [47.388799, 8.530901], [47.393361, 8.492924], [47.360502, 8.527793], [47.394229, 8.493392], [47.394912, 8.516892], [47.384577, 8.50912], [47.378886, 8.515588], [47.427319, 8.539034], [47.372341, 8.542786], [47.39323, 8.524567], [47.378608, 8.519383], [47.354972, 8.534285], [47.390405, 8.538881], [47.402558, 8.46951], [47.405138, 8.478782], [47.39617, 8.485667], [47.402971, 8.589699], [47.393442, 8.539262], [47.361721, 8.574074], [47.380232, 8.546339], [47.386296, 8.482507], [47.365074, 8.531421], [47.363867, 8.528669], [47.419874, 8.548211], [47.382736, 8.493151], [47.371415, 8.510299], [47.380365, 8.512294], [47.4091, 8.553605], [47.379402, 8.523888], [47.37296, 8.536363], [47.375966, 8.536226], [47.409075, 8.482012], [47.378337, 8.541347], [47.358319, 8.50531], [47.37824, 8.526884], [47.388322, 8.520388], [47.343726, 8.535378], [47.368287, 8.49734], [47.352283, 8.53415], [47.422615, 8.551277], [47.370895, 8.508184], [47.342645, 8.519422], [47.396338, 8.513424], [47.362162, 8.608279], [47.377513, 8.543793], [47.377002, 8.546458], [47.360955, 8.51594], [47.377914, 8.530016], [47.409455, 8.542853], [47.373096, 8.535373], [47.366756, 8.542696], [47.385922, 8.542021], [47.369521, 8.526216], [47.405158, 8.480478], [47.367235, 8.544401], [47.371056, 8.531292], [47.369333, 8.557208], [47.350122, 8.530612], [47.342939, 8.53593], [47.408899, 8.579664], [47.376502, 8.511779], [47.376581, 8.525407], [47.377689, 8.507896], [47.354815, 8.510786], [47.417288, 8.546792], [47.387013, 8.528494], [47.377253, 8.550277], [47.400923, 8.502109], [47.373888, 8.538104], [47.354472, 8.573933], [47.420782, 8.549118], [47.377213, 8.512641], [47.371209, 8.530421], [47.370857, 8.566099], [47.372957, 8.48541], [47.39724, 8.531405], [47.365013, 8.493423], [47.360879, 8.525034], [47.364123, 8.54619], [47.379364, 8.54211], [47.370473, 8.526394], [47.365115, 8.553453], [47.398014, 8.541754], [47.384864, 8.509219], [47.375448, 8.563918], [47.376454, 8.52837], [47.368624, 8.490065], [47.367773, 8.546385], [47.354397, 8.525616], [47.34051, 8.53023], [47.360316, 8.523645], [47.377812, 8.509183], [47.402048, 8.499058], [47.362558, 8.55835], [47.405809, 8.560889], [47.378935, 8.522833], [47.343629, 8.535164], [47.37663, 8.518244], [47.366694, 8.564978], [47.37403, 8.536491], [47.36867, 8.543888], [47.338483, 8.519099], [47.373808, 8.527628], [47.402341, 8.495593], [47.409463, 8.52295], [47.379084, 8.538515], [47.375599, 8.53508], [47.378022, 8.547975], [47.399558, 8.496968], [47.367056, 8.523399], [47.383915, 8.529874], [47.398489, 8.494841], [47.41077, 8.535102], [47.410734, 8.535088], [47.381268, 8.537713], [47.389684, 8.52476], [47.354818, 8.555011], [47.377165, 8.512957], [47.36117, 8.550219], [47.408381, 8.574777], [47.397974, 8.47423], [47.407006, 8.554276], [47.381951, 8.541594], [47.337303, 8.519287], [47.393006, 8.474465], [47.384323, 8.507341], [47.405972, 8.590943], [47.351652, 8.525759], [47.378525, 8.540477], [47.391443, 8.519444], [47.387622, 8.54391], [47.368881, 8.537828], [47.331617, 8.529823], [47.367151, 8.54003], [47.383617, 8.483302], [47.395318, 8.541526], [47.375114, 8.518796], [47.372983, 8.53684], [47.369533, 8.525912], [47.35801, 8.523082], [47.364033, 8.526356], [47.378441, 8.54556], [47.371077, 8.523375], [47.351926, 8.505037], [47.377059, 8.543307], [47.407156, 8.573969], [47.359104, 8.50706], [47.366842, 8.543188], [47.339787, 8.530559], [47.376024, 8.55919], [47.402904, 8.490993], [47.359723, 8.56769], [47.370175, 8.513028], [47.335108, 8.519229], [47.409608, 8.549415], [47.412583, 8.550577], [47.378769, 8.54227], [47.37069, 8.516733], [47.386133, 8.497417], [47.373297, 8.536953], [47.391542, 8.486226], [47.376598, 8.510059], [47.369997, 8.532939], [47.372259, 8.523928], [47.373352, 8.557385], [47.394232, 8.490146], [47.36932, 8.513104], [47.391845, 8.518751], [47.370078, 8.55643], [47.383609, 8.484176], [47.371401, 8.546116], [47.381438, 8.478531], [47.423367, 8.538449], [47.413299, 8.512865], [47.386449, 8.496297], [47.420688, 8.502689], [47.405021, 8.482794], [47.37466, 8.549534], [47.35479, 8.526829], [47.37449, 8.495769], [47.368264, 8.546819], [47.391718, 8.51888], [47.421038, 8.500801], [47.391496, 8.53856], [47.376299, 8.521879], [47.378301, 8.509802], [47.371322, 8.514455], [47.375142, 8.51869], [47.378189, 8.522804], [47.389651, 8.511938], [47.378542, 8.504179], [47.41303, 8.550864], [47.370219, 8.514142], [47.378441, 8.510229], [47.398569, 8.539209], [47.34845, 8.53435], [47.379346, 8.542149], [47.38798, 8.520394], [47.387573, 8.519671], [47.376194, 8.539634], [47.408909, 8.548194], [47.364482, 8.547243], [47.348298, 8.534254], [47.380249, 8.541784], [47.422529, 8.550771], [47.406686, 8.550149], [47.374904, 8.492811], [47.392257, 8.525673], [47.386061, 8.539706], [47.390591, 8.52201], [47.423844, 8.51932], [47.353628, 8.554364], [47.396963, 8.530287], [47.400112, 8.504199], [47.383249, 8.55713], [47.379307, 8.517702], [47.37198, 8.522016], [47.384695, 8.507984], [47.400111, 8.590512], [47.366236, 8.562108], [47.371912, 8.520637], [47.346195, 8.53302], [47.369479, 8.525897], [47.360666, 8.506429], [47.339928, 8.529914], [47.395835, 8.530661], [47.399821, 8.490734], [47.40238, 8.499184], [47.328789, 8.517831], [47.352791, 8.557245], [47.366556, 8.541964], [47.418015, 8.483102], [47.360981, 8.524758], [47.393336, 8.524781], [47.406957, 8.487496], [47.376274, 8.541622], [47.386613, 8.518393], [47.400214, 8.547788], [47.423664, 8.545984], [47.373888, 8.536289], [47.405361, 8.557925], [47.363214, 8.564918], [47.385589, 8.517352], [47.4021, 8.49735], [47.418225, 8.546613], [47.390362, 8.490375], [47.431355, 8.532689], [47.387051, 8.534984], [47.373666, 8.535914], [47.357112, 8.522918], [47.41442, 8.551291], [47.378439, 8.489914], [47.37364, 8.532021], [47.341817, 8.530839], [47.364349, 8.532902], [47.377349, 8.498898], [47.371792, 8.529599], [47.391542, 8.486226], [47.377274, 8.541458], [47.372609, 8.532608], [47.3341, 8.513559], [47.373326, 8.517634], [47.360953, 8.598814], [47.376238, 8.544495], [47.386531, 8.518537], [47.371801, 8.542841], [47.390953, 8.539939], [47.365167, 8.549892], [47.398521, 8.46828], [47.37651, 8.532953], [47.402636, 8.498672], [47.41316, 8.521979], [47.4063, 8.575951], [47.385017, 8.495554], [47.383172, 8.543646], [47.364457, 8.532905], [47.36933, 8.541677], [47.416075, 8.552187], [47.40751, 8.572718], [47.363913, 8.531464], [47.373886, 8.513461], [47.409323, 8.533058], [47.392738, 8.524239], [47.384095, 8.49988], [47.373119, 8.495225], [47.376248, 8.495353], [47.403861, 8.534231], [47.386583, 8.520644], [47.354646, 8.509565], [47.416974, 8.507439], [47.340395, 8.519469], [47.364389, 8.521915], [47.379756, 8.520624], [47.404689, 8.556692], [47.348118, 8.533271], [47.402442, 8.499304], [47.397313, 8.531301], [47.370476, 8.549738], [47.412287, 8.515322], [47.385001, 8.533896], [47.371725, 8.519548], [47.352544, 8.508318], [47.35979, 8.523158], [47.427537, 8.546356], [47.357866, 8.519293], [47.36413, 8.556702], [47.375956, 8.538252], [47.398985, 8.505422], [47.377837, 8.541866], [47.365467, 8.516323], [47.427321, 8.543568], [47.365405, 8.516255], [47.378441, 8.510255], [47.373478, 8.534917], [47.411912, 8.52846], [47.36696, 8.520179], [47.357954, 8.522313], [47.374132, 8.535195], [47.366638, 8.535266], [47.390324, 8.537886], [47.387428, 8.487628], [47.376186, 8.495299], [47.406358, 8.583744], [47.377069, 8.538434], [47.378829, 8.539715], [47.373204, 8.542896], [47.367552, 8.541283], [47.402031, 8.580193], [47.358209, 8.571629], [47.347085, 8.520676], [47.378948, 8.544273], [47.411316, 8.570824], [47.357389, 8.572777], [47.360946, 8.571449], [47.377557, 8.528724], [47.366129, 8.520547], [47.372945, 8.531291], [47.370503, 8.529891], [47.379654, 8.506519], [47.370857, 8.474803], [47.374369, 8.533903], [47.402541, 8.495279], [47.369, 8.502942], [47.37079, 8.531843], [47.369034, 8.503168], [47.370295, 8.548847], [47.36686, 8.545982], [47.372969, 8.53639], [47.360614, 8.516807], [47.407827, 8.54747], [47.375908, 8.541337], [47.37889, 8.527652], [47.387807, 8.529185], [47.402195, 8.537217], [47.356023, 8.557869], [47.402537, 8.553229], [47.375421, 8.558303], [47.365631, 8.566955], [47.413627, 8.480975], [47.391318, 8.536516], [47.360737, 8.578091], [47.379039, 8.545109], [47.379006, 8.508492], [47.405243, 8.481049], [47.385498, 8.475233], [47.371117, 8.539119], [47.413618, 8.480975], [47.384906, 8.558886], [47.387484, 8.519589], [47.364501, 8.536785], [47.387028, 8.485117], [47.360358, 8.547674], [47.379921, 8.543128], [47.413128, 8.538675], [47.373001, 8.500281], [47.375223, 8.518652], [47.389791, 8.512338], [47.416287, 8.545115], [47.378725, 8.528933], [47.369484, 8.526401], [47.372467, 8.51996], [47.35602, 8.553501], [47.37361, 8.534297], [47.388484, 8.491185], [47.339645, 8.528452], [47.340076, 8.53521], [47.390999, 8.478572], [47.367362, 8.544284], [47.377255, 8.538756], [47.367924, 8.560608], [47.371633, 8.519705], [47.407551, 8.556553], [47.350978, 8.53423], [47.360126, 8.534272], [47.373437, 8.481023], [47.389428, 8.513708], [47.352493, 8.531984], [47.369085, 8.503566], [47.3653, 8.526527], [47.41852, 8.542073], [47.393515, 8.472899], [47.369604, 8.507694], [47.371708, 8.547831], [47.379971, 8.520735], [47.343391, 8.535649], [47.377135, 8.541984], [47.387841, 8.485716], [47.367851, 8.564446], [47.332085, 8.516495], [47.357469, 8.550658], [47.37578, 8.524477], [47.392304, 8.503209], [47.374841, 8.545671], [47.377498, 8.503244], [47.410886, 8.563275], [47.373645, 8.534364], [47.383448, 8.531718], [47.418295, 8.538305], [47.371999, 8.566096], [47.375808, 8.536806], [47.368219, 8.546818], [47.405764, 8.591946], [47.377423, 8.500607], [47.400214, 8.494], [47.414389, 8.552602], [47.368074, 8.540393], [47.374009, 8.492383], [47.381048, 8.550369], [47.373646, 8.530432], [47.387779, 8.499344], [47.377653, 8.510809], [47.360872, 8.598852], [47.402361, 8.499303], [47.36681, 8.558638], [47.365661, 8.523542], [47.361601, 8.547461], [47.366185, 8.548801], [47.390431, 8.542723], [47.36747, 8.54614], [47.378647, 8.54183], [47.360271, 8.522784], [47.393327, 8.524795], [47.360935, 8.531495], [47.405186, 8.480452], [47.361897, 8.503581], [47.421357, 8.502385], [47.352264, 8.559604], [47.373451, 8.548079], [47.363527, 8.535096], [47.408602, 8.546452], [47.351421, 8.525503], [47.380089, 8.536801], [47.397437, 8.591673], [47.378312, 8.510584], [47.391913, 8.528806], [47.415958, 8.547506], [47.372602, 8.534356], [47.366272, 8.562096], [47.374768, 8.552344], [47.361739, 8.56114], [47.36966, 8.523889], [47.34539, 8.534485], [47.371854, 8.522027], [47.405047, 8.478912], [47.378038, 8.548134], [47.368846, 8.521449], [47.375546, 8.548149], [47.402122, 8.501775], [47.366556, 8.547604], [47.385437, 8.536368], [47.36821, 8.536424], [47.37639, 8.527495], [47.408876, 8.564624], [47.402077, 8.580101], [47.393623, 8.539094], [47.389758, 8.526417], [47.395065, 8.484586], [47.384998, 8.53232], [47.384198, 8.511192], [47.356227, 8.571971], [47.41393, 8.548909], [47.406836, 8.532583], [47.368518, 8.543752], [47.358699, 8.590372], [47.390888, 8.522069], [47.401552, 8.586767], [47.35046, 8.51864], [47.393369, 8.495031], [47.369315, 8.547873], [47.391638, 8.523581], [47.365228, 8.501424], [47.369108, 8.547949], [47.391551, 8.486226], [47.388254, 8.486704], [47.358059, 8.519761], [47.384227, 8.497326], [47.399757, 8.533444], [47.367881, 8.523654], [47.386574, 8.5032], [47.407128, 8.586821], [47.368228, 8.511612], [47.388063, 8.524952], [47.40976, 8.479932], [47.389111, 8.546259], [47.390779, 8.52306], [47.373066, 8.524223], [47.377398, 8.550121], [47.362746, 8.547207], [47.376274, 8.540761], [47.378517, 8.541351], [47.365731, 8.537048], [47.400909, 8.591682], [47.36024, 8.548691], [47.375511, 8.548082], [47.364366, 8.566597], [47.427402, 8.538877], [47.341756, 8.530732], [47.358834, 8.533914], [47.414308, 8.550719], [47.406504, 8.573518], [47.422493, 8.550784], [47.40951, 8.543636], [47.409435, 8.543038], [47.374974, 8.544959], [47.407093, 8.58678], [47.40564, 8.591718], [47.36455, 8.56623], [47.369305, 8.548059], [47.378982, 8.511034], [47.41079, 8.567606], [47.36907, 8.528259], [47.378877, 8.526169], [47.384336, 8.531909], [47.426491, 8.541933], [47.371084, 8.523613], [47.36063, 8.59788], [47.423697, 8.539662], [47.376749, 8.538043], [47.390754, 8.521934], [47.37606, 8.533898], [47.403104, 8.558699], [47.374732, 8.545788], [47.37454, 8.539534], [47.366475, 8.544875], [47.375261, 8.485204], [47.388591, 8.496168], [47.417893, 8.482768], [47.410208, 8.546817], [47.369977, 8.511118], [47.398951, 8.533096], [47.364441, 8.555279], [47.371235, 8.513235], [47.408382, 8.550582], [47.386769, 8.547588], [47.369615, 8.525847], [47.349017, 8.526658], [47.363062, 8.49917], [47.408754, 8.546455], [47.374528, 8.544618], [47.377435, 8.526457], [47.381213, 8.491452], [47.388599, 8.528235], [47.341175, 8.530336], [47.365686, 8.525661], [47.357893, 8.520154], [47.405332, 8.55815], [47.360542, 8.566781], [47.359129, 8.526534], [47.392023, 8.487772], [47.367549, 8.545414], [47.367501, 8.530597], [47.365758, 8.563237], [47.376648, 8.527805], [47.364033, 8.531148], [47.402787, 8.557076], [47.368141, 8.521819], [47.338006, 8.525812], [47.378931, 8.508782], [47.372802, 8.535062], [47.417182, 8.545624], [47.374723, 8.520178], [47.413496, 8.563119], [47.37509, 8.48524], [47.326405, 8.527467], [47.37617, 8.488108], [47.373365, 8.531644], [47.369656, 8.564723], [47.380118, 8.528048], [47.388496, 8.488815], [47.349837, 8.576031], [47.373167, 8.53642], [47.359436, 8.509026], [47.402209, 8.496266], [47.410895, 8.563223], [47.380635, 8.525728], [47.3729, 8.547418], [47.371105, 8.539436], [47.391421, 8.536041], [47.35664, 8.555446], [47.360107, 8.526765], [47.362209, 8.484233], [47.384778, 8.527031], [47.376734, 8.540546], [47.388197, 8.480146], [47.374531, 8.549876], [47.355577, 8.556523], [47.365428, 8.564739], [47.418125, 8.554165], [47.392093, 8.538294], [47.410671, 8.572374], [47.374708, 8.52566], [47.39949, 8.5208], [47.36277, 8.567993], [47.403574, 8.548256], [47.374415, 8.524211], [47.375183, 8.539137], [47.377153, 8.541971], [47.382808, 8.529944], [47.383478, 8.549294], [47.421484, 8.550087], [47.374518, 8.54001], [47.364862, 8.53094], [47.381094, 8.513169], [47.37822, 8.520461], [47.376706, 8.544465], [47.367219, 8.565611], [47.382703, 8.500673], [47.387149, 8.535066], [47.376746, 8.559907], [47.41995, 8.506637], [47.376502, 8.534767], [47.372631, 8.529312], [47.362894, 8.523142], [47.379194, 8.525857], [47.364555, 8.555546], [47.37745, 8.498688], [47.374109, 8.538545], [47.355773, 8.584312], [47.427449, 8.546155], [47.361577, 8.51774], [47.380362, 8.528], [47.361721, 8.565773], [47.380524, 8.493081], [47.374013, 8.544793], [47.372064, 8.534107], [47.356337, 8.511558], [47.382504, 8.529686], [47.418686, 8.547285], [47.354745, 8.574547], [47.370714, 8.557648], [47.373887, 8.536303], [47.420868, 8.550511], [47.391005, 8.521012], [47.365752, 8.550844], [47.357533, 8.535489], [47.385848, 8.529927], [47.409563, 8.549361], [47.41023, 8.54365], [47.403848, 8.570069], [47.381865, 8.51541], [47.388891, 8.495816], [47.377154, 8.553042], [47.409338, 8.544679], [47.369072, 8.521334], [47.341131, 8.536846], [47.37766, 8.508094], [47.383751, 8.548916], [47.404427, 8.574375], [47.370984, 8.531397], [47.40884, 8.54594], [47.366218, 8.49444], [47.351564, 8.525625], [47.41654, 8.545902], [47.392038, 8.538359], [47.364044, 8.55163], [47.420001, 8.538631], [47.386211, 8.535298], [47.373795, 8.536513], [47.370063, 8.541136], [47.373652, 8.544905], [47.363866, 8.517257], [47.397569, 8.505818], [47.374263, 8.538389], [47.386243, 8.540504], [47.360027, 8.589725], [47.403864, 8.569407], [47.407424, 8.574173], [47.413563, 8.48108], [47.372275, 8.535634], [47.377889, 8.498829], [47.378287, 8.530487], [47.370328, 8.602169], [47.383175, 8.506073], [47.367869, 8.494843], [47.371006, 8.535674], [47.410449, 8.544251], [47.382423, 8.540147], [47.397774, 8.532953], [47.416307, 8.545831], [47.360351, 8.525711], [47.333631, 8.52997], [47.38642, 8.496509], [47.410419, 8.550121], [47.411082, 8.545749], [47.354705, 8.57493], [47.34851, 8.57096], [47.405444, 8.480735], [47.376135, 8.55608], [47.388245, 8.486757], [47.373132, 8.53728], [47.409009, 8.539623], [47.396063, 8.522651], [47.371177, 8.539411], [47.399635, 8.543523], [47.37981, 8.547231], [47.408116, 8.58243], [47.406096, 8.547911], [47.381487, 8.530751], [47.378323, 8.52282], [47.404317, 8.557002], [47.405838, 8.573517], [47.33716, 8.519099], [47.373258, 8.53151], [47.395511, 8.484952], [47.361667, 8.503206], [47.369916, 8.490382], [47.375154, 8.519286], [47.396544, 8.528927], [47.403725, 8.534281], [47.368979, 8.543563], [47.378336, 8.548061], [47.415323, 8.483473], [47.368515, 8.530843], [47.374301, 8.519123], [47.405705, 8.591494], [47.347231, 8.532869], [47.379617, 8.559782], [47.342769, 8.531017], [47.397448, 8.532297], [47.38175, 8.543815], [47.381694, 8.509632], [47.365714, 8.535936], [47.38409, 8.497562], [47.380518, 8.556847], [47.399405, 8.547718], [47.354455, 8.553534], [47.371851, 8.499172], [47.377189, 8.539999], [47.387739, 8.484998], [47.378458, 8.545601], [47.378446, 8.54033], [47.35852, 8.531988], [47.354984, 8.510935], [47.366521, 8.540917], [47.418277, 8.510527], [47.393381, 8.524782], [47.369521, 8.555491], [47.390091, 8.52257], [47.379806, 8.542], [47.38618, 8.498212], [47.417865, 8.554093], [47.393862, 8.505015], [47.374537, 8.539852], [47.368333, 8.524431], [47.366456, 8.544888], [47.414329, 8.546691], [47.41425, 8.508299], [47.411471, 8.526569], [47.378929, 8.542432], [47.390339, 8.522111], [47.364069, 8.520558], [47.377075, 8.540672], [47.378903, 8.511761], [47.359085, 8.526427], [47.367919, 8.490369], [47.387936, 8.531718], [47.330783, 8.529634], [47.376543, 8.535099], [47.378402, 8.541084], [47.339924, 8.530324], [47.379774, 8.518678], [47.362206, 8.551962], [47.380306, 8.517576], [47.360299, 8.566802], [47.379937, 8.483441], [47.409449, 8.545304], [47.385151, 8.532323], [47.369417, 8.541904], [47.413722, 8.546188], [47.369644, 8.539856], [47.427032, 8.546504], [47.374286, 8.53786], [47.368533, 8.53083], [47.418322, 8.538305], [47.390942, 8.522017], [47.366655, 8.545713], [47.389883, 8.521771], [47.427078, 8.491484], [47.365759, 8.563078], [47.426424, 8.547062], [47.419507, 8.500029], [47.39776, 8.533496], [47.37332, 8.549519], [47.386014, 8.535268], [47.367452, 8.537666], [47.366817, 8.54573], [47.374314, 8.535861], [47.398222, 8.53691], [47.367735, 8.521969], [47.378535, 8.541325], [47.360455, 8.48723], [47.353995, 8.600198], [47.421218, 8.549617], [47.366525, 8.522514], [47.369405, 8.549755], [47.376995, 8.544339], [47.408712, 8.546216], [47.409291, 8.544877], [47.377028, 8.52862], [47.369213, 8.512969], [47.36519, 8.502601], [47.376239, 8.562107], [47.398122, 8.53614], [47.369216, 8.547871], [47.364773, 8.554425], [47.414858, 8.551592], [47.378934, 8.559688], [47.401575, 8.489814], [47.40382, 8.556369], [47.329926, 8.512588], [47.372201, 8.560116], [47.36686, 8.532702], [47.362167, 8.547526], [47.353064, 8.518177], [47.330929, 8.515943], [47.397596, 8.532804], [47.359061, 8.531841], [47.365826, 8.556208], [47.379485, 8.516964], [47.399428, 8.516838], [47.364434, 8.520075], [47.358642, 8.589788], [47.381436, 8.540842], [47.384399, 8.531937], [47.340956, 8.526785], [47.397768, 8.532688], [47.381211, 8.481811], [47.348279, 8.534293], [47.391293, 8.522952], [47.375766, 8.535547], [47.391383, 8.536292], [47.379118, 8.549958], [47.386589, 8.488883], [47.372656, 8.520957], [47.405697, 8.59148], [47.375121, 8.545584], [47.397776, 8.494045], [47.386934, 8.490453], [47.378639, 8.526614], [47.380895, 8.528673], [47.393651, 8.511263], [47.349977, 8.56076], [47.40391, 8.546103], [47.381499, 8.571529], [47.375936, 8.537537], [47.366594, 8.53516], [47.415009, 8.544266], [47.378036, 8.509307], [47.367503, 8.578765], [47.369174, 8.49189], [47.410508, 8.550282], [47.375767, 8.556973], [47.375032, 8.544576], [47.367749, 8.487373], [47.359253, 8.586187], [47.383661, 8.549006], [47.387266, 8.51879], [47.35962, 8.593582], [47.37954, 8.516806], [47.377466, 8.512553], [47.408456, 8.548516], [47.366591, 8.54121], [47.358149, 8.519802], [47.408804, 8.579318], [47.402166, 8.496013], [47.406612, 8.551327], [47.402671, 8.486921], [47.368938, 8.518353], [47.35178, 8.52555], [47.401245, 8.586893], [47.376512, 8.536476], [47.394249, 8.4902], [47.407899, 8.579802], [47.3791, 8.549918], [47.376504, 8.543905], [47.419829, 8.54817], [47.377317, 8.526587], [47.357564, 8.578724], [47.371288, 8.520122], [47.413975, 8.525202], [47.413489, 8.539557], [47.344118, 8.532024], [47.372736, 8.550408], [47.367308, 8.561045], [47.405846, 8.480982], [47.390269, 8.485724], [47.368835, 8.539774], [47.38878, 8.483244], [47.368759, 8.500859], [47.377321, 8.521303], [47.370268, 8.518525], [47.379885, 8.544081], [47.376721, 8.538136], [47.396298, 8.540619], [47.368439, 8.536071], [47.410564, 8.550071], [47.365099, 8.553187], [47.388992, 8.538972], [47.374294, 8.524685], [47.390566, 8.545547], [47.427387, 8.546061], [47.391057, 8.522232], [47.374141, 8.54089], [47.377632, 8.533175], [47.368467, 8.524526], [47.380191, 8.501947], [47.380599, 8.517092], [47.390856, 8.533076], [47.382468, 8.514415], [47.376775, 8.528668], [47.373831, 8.53654], [47.41133, 8.485356], [47.387642, 8.499593], [47.376374, 8.541598], [47.365703, 8.54564], [47.361616, 8.50674], [47.370858, 8.531315], [47.395097, 8.525904], [47.380256, 8.542923], [47.409791, 8.537771], [47.364777, 8.554015], [47.377539, 8.505668], [47.362534, 8.510571], [47.365763, 8.532733], [47.396927, 8.50917], [47.375906, 8.538807], [47.379909, 8.527329], [47.408712, 8.546243], [47.408136, 8.547145], [47.371986, 8.556364], [47.398723, 8.539106], [47.417081, 8.545767], [47.366565, 8.494883], [47.360087, 8.56084], [47.416434, 8.514359], [47.360423, 8.526666], [47.362344, 8.510699], [47.375039, 8.537214], [47.366848, 8.535893], [47.358812, 8.58259], [47.380991, 8.518425], [47.337468, 8.532338], [47.36685, 8.553502], [47.393587, 8.5248], [47.397036, 8.483472], [47.372719, 8.563304], [47.363404, 8.505981], [47.357888, 8.554811], [47.377845, 8.541973], [47.368775, 8.537614], [47.396874, 8.530206], [47.389166, 8.541426], [47.401329, 8.545056], [47.371819, 8.601566], [47.364482, 8.536917], [47.400789, 8.548886], [47.406893, 8.580588], [47.374533, 8.552498], [47.335092, 8.518051], [47.366662, 8.542231], [47.372667, 8.575048], [47.414508, 8.558939], [47.370041, 8.540646], [47.415221, 8.527626], [47.366846, 8.542711], [47.38866, 8.483679], [47.365118, 8.534269], [47.407899, 8.579802], [47.33521, 8.531365], [47.403826, 8.53415], [47.384232, 8.541933], [47.330771, 8.516469], [47.395526, 8.545227], [47.375399, 8.52386], [47.378336, 8.509882], [47.354631, 8.526561], [47.413098, 8.567019], [47.361989, 8.526552], [47.368188, 8.53024], [47.385259, 8.517041], [47.365018, 8.567127], [47.419179, 8.50637], [47.376591, 8.529154], [47.373501, 8.515241], [47.382054, 8.528856], [47.413702, 8.545472], [47.391313, 8.516011], [47.370161, 8.548791], [47.413319, 8.476212], [47.413357, 8.532611], [47.379588, 8.527097], [47.42888, 8.545124], [47.381579, 8.537203], [47.353456, 8.576611], [47.396357, 8.492891], [47.37006, 8.511901], [47.332672, 8.518095], [47.413966, 8.541422], [47.381518, 8.56504], [47.359779, 8.548946], [47.355984, 8.573832], [47.384673, 8.542842], [47.345446, 8.533362], [47.379958, 8.519265], [47.402588, 8.553468], [47.374931, 8.544759], [47.362122, 8.559665], [47.383271, 8.53043], [47.382178, 8.588363], [47.401363, 8.593083], [47.415423, 8.544222], [47.372511, 8.534447], [47.378661, 8.519477], [47.373159, 8.538208], [47.363389, 8.575446], [47.346101, 8.534447], [47.409062, 8.545389], [47.389246, 8.491399], [47.378915, 8.549556], [47.375525, 8.480945], [47.364577, 8.566217], [47.354858, 8.574867], [47.380851, 8.53336], [47.365091, 8.50256], [47.391209, 8.489266], [47.382031, 8.529359], [47.376074, 8.559641], [47.38645, 8.518522], [47.373506, 8.519504], [47.391899, 8.517785], [47.367547, 8.538039], [47.367808, 8.560539], [47.373453, 8.531831], [47.378607, 8.523289], [47.370403, 8.547009], [47.38809, 8.539165], [47.336974, 8.520709], [47.376498, 8.525683], [47.385887, 8.53255], [47.377746, 8.544804], [47.374691, 8.535935], [47.408409, 8.550622], [47.382427, 8.528413], [47.375713, 8.518238], [47.385276, 8.494711], [47.367596, 8.54515], [47.379734, 8.51534], [47.401753, 8.580968], [47.3939, 8.525031], [47.375302, 8.547309], [47.37157, 8.51589], [47.392294, 8.509169], [47.392207, 8.509843], [47.375094, 8.518994], [47.358513, 8.518327], [47.367696, 8.496097], [47.373786, 8.519431], [47.380194, 8.535241], [47.367017, 8.536121], [47.373613, 8.549976], [47.387483, 8.518702], [47.377311, 8.512735], [47.359103, 8.532172], [47.370704, 8.537151], [47.379145, 8.549998], [47.393677, 8.502653], [47.385826, 8.51798], [47.375433, 8.526959], [47.407923, 8.578305], [47.387974, 8.490831], [47.380987, 8.504387], [47.381102, 8.518109], [47.367991, 8.540603], [47.327797, 8.529586], [47.391379, 8.545193], [47.378989, 8.542804], [47.368926, 8.54809], [47.399498, 8.515117], [47.374438, 8.495596], [47.384396, 8.548333], [47.399058, 8.533271], [47.411379, 8.545688], [47.381454, 8.540842], [47.403008, 8.486544], [47.403136, 8.486268], [47.391078, 8.522841], [47.370197, 8.548792], [47.379973, 8.516656], [47.382531, 8.540136], [47.386772, 8.49045], [47.410236, 8.549521], [47.398732, 8.505563], [47.366847, 8.558467], [47.388407, 8.517065], [47.369755, 8.509829], [47.373471, 8.534732], [47.383335, 8.530365], [47.393384, 8.537711], [47.374594, 8.538621], [47.363609, 8.535058], [47.380995, 8.538091], [47.409557, 8.55005], [47.376943, 8.522262], [47.377073, 8.541864], [47.384643, 8.532829], [47.386561, 8.542987], [47.402871, 8.535204], [47.383559, 8.573307], [47.37128, 8.525669], [47.41053, 8.572106], [47.391035, 8.522628], [47.387473, 8.528357], [47.392623, 8.47504], [47.363437, 8.533268], [47.376642, 8.535128], [47.399475, 8.495178], [47.427963, 8.551653], [47.363357, 8.533186], [47.395571, 8.486278], [47.370686, 8.537124], [47.374513, 8.539547], [47.359681, 8.508806], [47.408005, 8.546745], [47.378893, 8.542445], [47.379189, 8.527407], [47.362276, 8.526691], [47.324365, 8.518549], [47.363381, 8.533452], [47.344508, 8.529782], [47.36727, 8.545368], [47.36344, 8.53385], [47.394916, 8.491061], [47.367251, 8.546427], [47.382804, 8.532222], [47.37942, 8.529636], [47.340867, 8.531455], [47.374984, 8.534498], [47.366629, 8.535266], [47.396049, 8.527009], [47.359191, 8.563204], [47.400461, 8.543673], [47.377791, 8.498761], [47.383355, 8.539584], [47.367933, 8.544707], [47.339869, 8.529529], [47.3975, 8.532444], [47.401781, 8.499742], [47.348036, 8.534354], [47.35976, 8.557431], [47.414281, 8.550784], [47.361847, 8.507062], [47.376601, 8.527089], [47.41209, 8.524806], [47.390323, 8.509289], [47.366457, 8.566257], [47.377742, 8.537667], [47.363164, 8.533619], [47.388783, 8.536292], [47.402563, 8.49981], [47.420803, 8.547011], [47.370304, 8.548861], [47.3577, 8.559281], [47.324853, 8.504826], [47.410139, 8.565155], [47.398312, 8.536912], [47.378301, 8.509842], [47.387954, 8.546857], [47.391489, 8.523128], [47.368228, 8.537365], [47.361105, 8.547636], [47.378325, 8.525561], [47.391096, 8.522828], [47.414306, 8.48348], [47.370952, 8.523279], [47.370057, 8.564162], [47.377666, 8.541956], [47.364772, 8.554531], [47.37677, 8.517743], [47.414107, 8.545427], [47.3629, 8.548945], [47.417537, 8.546095], [47.403508, 8.485918], [47.420942, 8.539009], [47.374066, 8.519317], [47.370558, 8.519259], [47.354361, 8.511241], [47.367993, 8.540352], [47.413222, 8.55336], [47.33159, 8.529875], [47.370755, 8.548751], [47.374485, 8.535878], [47.36402, 8.528712], [47.358414, 8.518312], [47.381777, 8.55686], [47.374007, 8.546369], [47.369336, 8.555103], [47.387167, 8.518881], [47.415347, 8.514165], [47.335704, 8.516158], [47.403548, 8.483494], [47.357298, 8.572828], [47.374319, 8.52393], [47.427431, 8.546141], [47.369212, 8.465635], [47.367843, 8.534417], [47.362181, 8.548917], [47.4139, 8.526486], [47.366156, 8.540513], [47.390601, 8.478842], [47.384739, 8.496409], [47.368494, 8.5245], [47.39054, 8.490577], [47.397031, 8.511464], [47.414083, 8.548872], [47.413209, 8.538716], [47.360678, 8.524447], [47.387381, 8.527653], [47.364878, 8.566714], [47.415109, 8.562795], [47.414544, 8.558927], [47.415358, 8.570513], [47.379758, 8.506878], [47.386823, 8.52004], [47.378201, 8.509866], [47.36655, 8.540759], [47.385895, 8.542113], [47.366991, 8.558483], [47.3499, 8.561314], [47.365164, 8.564151], [47.359139, 8.555591], [47.369116, 8.52536], [47.392063, 8.526226], [47.374998, 8.518648], [47.377256, 8.538689], [47.361802, 8.550934], [47.362436, 8.504691], [47.413793, 8.545354], [47.364316, 8.529751], [47.406602, 8.588227], [47.369304, 8.522557], [47.387582, 8.525393], [47.360271, 8.567768], [47.408821, 8.539447], [47.372011, 8.534079], [47.368688, 8.524875], [47.373032, 8.534497], [47.364764, 8.545965], [47.379681, 8.519047], [47.373612, 8.519758], [47.37074, 8.535232], [47.338073, 8.538636], [47.399386, 8.572015], [47.356163, 8.520477], [47.389266, 8.485254], [47.367806, 8.535476], [47.357537, 8.521683], [47.399162, 8.547832], [47.370998, 8.563652], [47.406212, 8.573021], [47.377177, 8.543204], [47.402566, 8.588776], [47.376037, 8.488953], [47.367308, 8.53953], [47.36765, 8.495262], [47.397404, 8.532177], [47.37552, 8.513851], [47.366313, 8.541085], [47.380073, 8.520459], [47.386393, 8.534189], [47.366754, 8.544801], [47.386085, 8.541958], [47.367821, 8.546068], [47.364611, 8.566443], [47.339541, 8.529985], [47.366582, 8.536404], [47.366242, 8.521052], [47.37954, 8.527321], [47.397583, 8.532273], [47.389062, 8.494813], [47.408712, 8.546216], [47.391064, 8.479408], [47.392304, 8.503209], [47.3793, 8.51749], [47.371431, 8.517238], [47.399144, 8.547819], [47.41015, 8.524475], [47.379201, 8.522295], [47.357873, 8.571966], [47.363473, 8.535135], [47.369441, 8.533748], [47.369771, 8.518754], [47.392659, 8.524039], [47.41488, 8.545496], [47.412959, 8.537625], [47.373837, 8.532117], [47.329882, 8.529721], [47.42212, 8.50354], [47.422246, 8.503529], [47.380291, 8.520145], [47.362039, 8.503875], [47.414102, 8.519334], [47.393351, 8.493056], [47.372467, 8.519973], [47.397643, 8.493883], [47.383851, 8.530919], [47.37017, 8.548831], [47.369184, 8.527679], [47.391318, 8.515468], [47.377803, 8.509196], [47.354153, 8.57525], [47.363789, 8.566744], [47.409116, 8.546304], [47.374325, 8.543237], [47.419116, 8.506435], [47.385337, 8.508579], [47.396019, 8.545316], [47.381514, 8.513482], [47.404346, 8.503529], [47.386213, 8.539854], [47.364057, 8.567014], [47.353559, 8.576216], [47.380608, 8.512298], [47.361407, 8.573921], [47.426306, 8.554681], [47.368107, 8.536846], [47.408971, 8.550144], [47.392438, 8.496509], [47.397477, 8.532073], [47.384367, 8.548518], [47.407608, 8.486144], [47.375203, 8.544566], [47.419986, 8.503696], [47.377494, 8.498742], [47.392088, 8.499284], [47.390725, 8.522132], [47.394936, 8.512336], [47.409967, 8.525796], [47.350464, 8.567984], [47.37749, 8.518605], [47.416947, 8.538171], [47.413228, 8.531998], [47.371041, 8.523414], [47.388091, 8.536238], [47.39184, 8.528831], [47.399315, 8.515405], [47.384753, 8.527825], [47.360588, 8.566689], [47.401256, 8.54516], [47.36983, 8.509566], [47.414131, 8.53635], [47.407881, 8.576144], [47.380324, 8.528145], [47.363933, 8.56676], [47.394106, 8.493138], [47.362242, 8.55935], [47.407795, 8.584], [47.417837, 8.554238], [47.35573, 8.574079], [47.365523, 8.53241], [47.338302, 8.53917], [47.370264, 8.495579], [47.393363, 8.524782], [47.374426, 8.542087], [47.378288, 8.530394], [47.399682, 8.477271], [47.403504, 8.487375], [47.36392, 8.547669], [47.376075, 8.522788], [47.39813, 8.536232], [47.391307, 8.515733], [47.387668, 8.529686], [47.417675, 8.546734], [47.366669, 8.541463], [47.34058, 8.524753], [47.368014, 8.544735], [47.37513, 8.528608], [47.332043, 8.535217], [47.377521, 8.54484], [47.380119, 8.544112], [47.418106, 8.538327], [47.418115, 8.538367], [47.411536, 8.523509], [47.37833, 8.526873], [47.378319, 8.509829], [47.378428, 8.483147], [47.418856, 8.507265], [47.364347, 8.550087], [47.387183, 8.519027], [47.380591, 8.536984], [47.386381, 8.498799], [47.373495, 8.52925], [47.3592, 8.511285], [47.365513, 8.539149], [47.358504, 8.518393], [47.413949, 8.54883], [47.416612, 8.513594], [47.369903, 8.564251], [47.391885, 8.485053], [47.380653, 8.547447], [47.382147, 8.543664], [47.387488, 8.53343], [47.344412, 8.530402], [47.363272, 8.557028], [47.352482, 8.508185], [47.387735, 8.519661], [47.375264, 8.490885], [47.388588, 8.539851], [47.376038, 8.527673], [47.378326, 8.527323], [47.360199, 8.523696], [47.430771, 8.540219], [47.373247, 8.535574], [47.37838, 8.530184], [47.384241, 8.531576], [47.39066, 8.508885], [47.387438, 8.544357], [47.419186, 8.546752], [47.36969, 8.539765], [47.369622, 8.51544], [47.425918, 8.552949], [47.369644, 8.525596], [47.375762, 8.549093], [47.374568, 8.538515], [47.390989, 8.51309], [47.35347, 8.576069], [47.409027, 8.539597], [47.376207, 8.527836], [47.388844, 8.52514], [47.381133, 8.531989], [47.371011, 8.538878], [47.370534, 8.549276], [47.376582, 8.534849], [47.385767, 8.499012], [47.38599, 8.498248], [47.388181, 8.485908], [47.393354, 8.524795], [47.373222, 8.531562], [47.385975, 8.535545], [47.375422, 8.528137], [47.376906, 8.54333], [47.374262, 8.538535], [47.382539, 8.51447], [47.326487, 8.515827], [47.374627, 8.537086], [47.373752, 8.53822], [47.374503, 8.533985], [47.374029, 8.519343], [47.379353, 8.495216], [47.363703, 8.553397], [47.362195, 8.5475], [47.359558, 8.548504], [47.373794, 8.537638], [47.381436, 8.553026], [47.419261, 8.54739], [47.419283, 8.547854], [47.382475, 8.514574], [47.367192, 8.546955], [47.373486, 8.503296], [47.398968, 8.538913], [47.359648, 8.522983], [47.39316, 8.546158], [47.382431, 8.514481], [47.366161, 8.497682], [47.38963, 8.512215], [47.368105, 8.495642], [47.376626, 8.533062], [47.368122, 8.523831], [47.378056, 8.513876], [47.390364, 8.525092], [47.364618, 8.547153], [47.371474, 8.55532], [47.39143, 8.536041], [47.364632, 8.537198], [47.380703, 8.525199], [47.386958, 8.483831], [47.40458, 8.556809], [47.401596, 8.499261], [47.376395, 8.518345], [47.395455, 8.531885], [47.418699, 8.507726], [47.397691, 8.533216], [47.41104, 8.545456], [47.422593, 8.55068], [47.35157, 8.602435], [47.430153, 8.549326], [47.374094, 8.535433], [47.379764, 8.527418], [47.404607, 8.550304], [47.40841, 8.551444], [47.426637, 8.492496], [47.369179, 8.54803], [47.36584, 8.531199], [47.363626, 8.535151], [47.36066, 8.531132], [47.365986, 8.53479], [47.368495, 8.524355], [47.368382, 8.602497], [47.368543, 8.530751], [47.361956, 8.531053], [47.422323, 8.512636], [47.390705, 8.508806], [47.403288, 8.497201], [47.411235, 8.570783], [47.417791, 8.483071], [47.411254, 8.544732], [47.326697, 8.517352], [47.377845, 8.498788], [47.426272, 8.554441], [47.402074, 8.498197], [47.389145, 8.494629], [47.427548, 8.54617], [47.397616, 8.532592], [47.41221, 8.546329], [47.39343, 8.512809], [47.365427, 8.502262], [47.375322, 8.485483], [47.369695, 8.508583], [47.371579, 8.51593], [47.384616, 8.516525], [47.384908, 8.531391], [47.379464, 8.529677], [47.367381, 8.494158], [47.408676, 8.564792], [47.380267, 8.546406], [47.390538, 8.489782], [47.381807, 8.540571], [47.358357, 8.520561], [47.365332, 8.564406], [47.376488, 8.483811], [47.361564, 8.535374], [47.395451, 8.527474], [47.373027, 8.531213], [47.411118, 8.5354], [47.3662, 8.534052], [47.376979, 8.542272], [47.363358, 8.533001], [47.418852, 8.553371], [47.419012, 8.50308], [47.419762, 8.508542], [47.384342, 8.531313], [47.388296, 8.490996], [47.414833, 8.519164], [47.366745, 8.545781], [47.385839, 8.530933], [47.381845, 8.516535], [47.373894, 8.546009], [47.388714, 8.520727], [47.374159, 8.528549], [47.353178, 8.575586], [47.391282, 8.520315], [47.391152, 8.522644], [47.369782, 8.554517], [47.391627, 8.517077], [47.36507, 8.530865], [47.37464, 8.53849], [47.373275, 8.520122], [47.410709, 8.543316], [47.369266, 8.525628], [47.401773, 8.580823], [47.390213, 8.522042], [47.393264, 8.501506], [47.345249, 8.535144], [47.411674, 8.562683], [47.393214, 8.530104], [47.38838, 8.482799], [47.369081, 8.528048], [47.362222, 8.547435], [47.365371, 8.538894], [47.373011, 8.532921], [47.364808, 8.566566], [47.385732, 8.508706], [47.390896, 8.48106], [47.419666, 8.543568], [47.39384, 8.507386], [47.374523, 8.557211], [47.422602, 8.550667], [47.372957, 8.48541], [47.405376, 8.504941], [47.382564, 8.537607], [47.410302, 8.543625], [47.398226, 8.509739], [47.407556, 8.579039], [47.377547, 8.528869], [47.399318, 8.542762], [47.391339, 8.532423], [47.384788, 8.531706], [47.379099, 8.527405], [47.426153, 8.547175], [47.369186, 8.513022], [47.380663, 8.537025], [47.4111, 8.545775], [47.412226, 8.553948], [47.399782, 8.504895], [47.410647, 8.551689], [47.402034, 8.497653], [47.379129, 8.52228], [47.367127, 8.544399], [47.370052, 8.548869], [47.375641, 8.526818], [47.376907, 8.541344], [47.335764, 8.518422], [47.384154, 8.531177], [47.382457, 8.537578], [47.369043, 8.528245], [47.366149, 8.548761], [47.374888, 8.527491], [47.350965, 8.559973], [47.41918, 8.506264], [47.373836, 8.527469], [47.360412, 8.552348], [47.391526, 8.523102], [47.398764, 8.512797], [47.333708, 8.528529], [47.410445, 8.546491], [47.431283, 8.538401], [47.397617, 8.540077], [47.369587, 8.525939], [47.37742, 8.543209], [47.398861, 8.590485]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_1c7a2c8dd0f4a25f00e5166155b7b3c8 = L.heatLayer(\n", - " [[47.369699, 8.536905], [47.39214, 8.473773], [47.373017, 8.531359], [47.375614, 8.526817], [47.397218, 8.530915], [47.392629, 8.50703], [47.413379, 8.513039], [47.397027, 8.505118], [47.363356, 8.535119], [47.365984, 8.50226], [47.383743, 8.533777], [47.377257, 8.53861], [47.382077, 8.529267], [47.374993, 8.534472], [47.388773, 8.520185], [47.407791, 8.582555], [47.372963, 8.531371], [47.399638, 8.520326], [47.380207, 8.520567], [47.369872, 8.518583], [47.366048, 8.535797], [47.37704, 8.539612], [47.420468, 8.549018], [47.418509, 8.547003], [47.370106, 8.54887], [47.381772, 8.536703], [47.376955, 8.540987], [47.372659, 8.513899], [47.382741, 8.546444], [47.419942, 8.507472], [47.398651, 8.539171], [47.38467, 8.509798], [47.38666, 8.547652], [47.368744, 8.556706], [47.387924, 8.520645], [47.398023, 8.532349], [47.379635, 8.559702], [47.374159, 8.502423], [47.366135, 8.520931], [47.35964, 8.54848], [47.353664, 8.601805], [47.373494, 8.529356], [47.381115, 8.542451], [47.374386, 8.518715], [47.361435, 8.547948], [47.378341, 8.55026], [47.3738, 8.503342], [47.37883, 8.510991], [47.379962, 8.520708], [47.36792, 8.54611], [47.371351, 8.522983], [47.374086, 8.544755], [47.368835, 8.534067], [47.382923, 8.540515], [47.403402, 8.588847], [47.374483, 8.53131], [47.383968, 8.506843], [47.37165, 8.524671], [47.420912, 8.543077], [47.405822, 8.532297], [47.367629, 8.498519], [47.354846, 8.534309], [47.366952, 8.5201], [47.397751, 8.533496], [47.393444, 8.524704], [47.412153, 8.550356], [47.374996, 8.537014], [47.413972, 8.543596], [47.36905, 8.538017], [47.39554, 8.539955], [47.375757, 8.558893], [47.391948, 8.518382], [47.373628, 8.543699], [47.411424, 8.572616], [47.35764, 8.518442], [47.377414, 8.51622], [47.37017, 8.548805], [47.388635, 8.518659], [47.359922, 8.557421], [47.415141, 8.546443], [47.374609, 8.532318], [47.387129, 8.540006], [47.37549, 8.513162], [47.366468, 8.557691], [47.425879, 8.493727], [47.373157, 8.517352], [47.355299, 8.583057], [47.405608, 8.552816], [47.389303, 8.479201], [47.332947, 8.534746], [47.374467, 8.541611], [47.369458, 8.538621], [47.413875, 8.548987], [47.386828, 8.486239], [47.397832, 8.47497], [47.375915, 8.523566], [47.375203, 8.501397], [47.412055, 8.546551], [47.358946, 8.534433], [47.395992, 8.534956], [47.415904, 8.514216], [47.386914, 8.525644], [47.364477, 8.555187], [47.367065, 8.544292], [47.372732, 8.534822], [47.346868, 8.528533], [47.382103, 8.515957], [47.378769, 8.542257], [47.387509, 8.499378], [47.377119, 8.547413], [47.397332, 8.531208], [47.387246, 8.519081], [47.377617, 8.522395], [47.372771, 8.535485], [47.373438, 8.52002], [47.381833, 8.545393], [47.377045, 8.521947], [47.370711, 8.470113], [47.340563, 8.528471], [47.394948, 8.52451], [47.370206, 8.550712], [47.374723, 8.549575], [47.372487, 8.505276], [47.374119, 8.476177], [47.429962, 8.549535], [47.361751, 8.5174], [47.370165, 8.517014], [47.365119, 8.553943], [47.40954, 8.53762], [47.412587, 8.516892], [47.395965, 8.545355], [47.371725, 8.536708], [47.370106, 8.548883], [47.361474, 8.506605], [47.366184, 8.53388], [47.408532, 8.542396], [47.405132, 8.481445], [47.392542, 8.502763], [47.358826, 8.548926], [47.366439, 8.544821], [47.368044, 8.546351], [47.375618, 8.548137], [47.40996, 8.479671], [47.37447, 8.527059], [47.409072, 8.531993], [47.389242, 8.539189], [47.385848, 8.49316], [47.369448, 8.526321], [47.428191, 8.547602], [47.380565, 8.524508], [47.371837, 8.542881], [47.367208, 8.539621], [47.380807, 8.512104], [47.391394, 8.519814], [47.371535, 8.546185], [47.386162, 8.530013], [47.390649, 8.487466], [47.383629, 8.541986], [47.373912, 8.476266], [47.391972, 8.510925], [47.372834, 8.515346], [47.409584, 8.537741], [47.401975, 8.588538], [47.365732, 8.536942], [47.373949, 8.47616], [47.377075, 8.549108], [47.382992, 8.575202], [47.373137, 8.495252], [47.397389, 8.531885], [47.397597, 8.532684], [47.378756, 8.512102], [47.38892, 8.520877], [47.424992, 8.552851], [47.419808, 8.504554], [47.382024, 8.505003], [47.4118, 8.509667], [47.367584, 8.546447], [47.355786, 8.592877], [47.376895, 8.516819], [47.37835, 8.525721], [47.353406, 8.527701], [47.378083, 8.530152], [47.389445, 8.527192], [47.376156, 8.534244], [47.357487, 8.526129], [47.3797, 8.527602], [47.33589, 8.528918], [47.3701, 8.513358], [47.362086, 8.559651], [47.363741, 8.517188], [47.362048, 8.559849], [47.408672, 8.579911], [47.417199, 8.5419], [47.371478, 8.570693], [47.377166, 8.528266], [47.360296, 8.5522], [47.36156, 8.571224], [47.374877, 8.527729], [47.373425, 8.529116], [47.414368, 8.537945], [47.394715, 8.525432], [47.414324, 8.483506], [47.40952, 8.537925], [47.406035, 8.481052], [47.377539, 8.541966], [47.370686, 8.535217], [47.377067, 8.541506], [47.4113, 8.532317], [47.37996, 8.54191], [47.37515, 8.538765], [47.385497, 8.54229], [47.378691, 8.541937], [47.365243, 8.54571], [47.412094, 8.554674], [47.39566, 8.522458], [47.367374, 8.53736], [47.376488, 8.525683], [47.384205, 8.476943], [47.372739, 8.529341], [47.365071, 8.547679], [47.372943, 8.536257], [47.414301, 8.553382], [47.408091, 8.550894], [47.36794, 8.56176], [47.404994, 8.493618], [47.430248, 8.536576], [47.415548, 8.545245], [47.388973, 8.515209], [47.378937, 8.519787], [47.370215, 8.548819], [47.402203, 8.495895], [47.351907, 8.527326], [47.387574, 8.4873], [47.369947, 8.491958], [47.371065, 8.523679], [47.37368, 8.545806], [47.385078, 8.508455], [47.413157, 8.565603], [47.357608, 8.553931], [47.383572, 8.531946], [47.362458, 8.554694], [47.368255, 8.5116], [47.377625, 8.532937], [47.373992, 8.576666], [47.420287, 8.503331], [47.369118, 8.504864], [47.383133, 8.530758], [47.379054, 8.522557], [47.379388, 8.544309], [47.376594, 8.543907], [47.391907, 8.550145], [47.42209, 8.537442], [47.403225, 8.559271], [47.340434, 8.519125], [47.380555, 8.52562], [47.391299, 8.520422], [47.395978, 8.526889], [47.38321, 8.562148], [47.377256, 8.538676], [47.428803, 8.488735], [47.3762, 8.552215], [47.374357, 8.577892], [47.32954, 8.514486], [47.431381, 8.516477], [47.37024, 8.53775], [47.397485, 8.489508], [47.385654, 8.548492], [47.391693, 8.52345], [47.381978, 8.544389], [47.399381, 8.54271], [47.391207, 8.47855], [47.424203, 8.552542], [47.383602, 8.48697], [47.365723, 8.535976], [47.383238, 8.506021], [47.364554, 8.554725], [47.389045, 8.527714], [47.39958, 8.51696], [47.417737, 8.506673], [47.390314, 8.490665], [47.404935, 8.571166], [47.390069, 8.537272], [47.377479, 8.541687], [47.339326, 8.526977], [47.366035, 8.562448], [47.336924, 8.535621], [47.369073, 8.541275], [47.373862, 8.524755], [47.405147, 8.481776], [47.399034, 8.513716], [47.385267, 8.530498], [47.392598, 8.539019], [47.373594, 8.530245], [47.383359, 8.528724], [47.367487, 8.545346], [47.413842, 8.546813], [47.377017, 8.546776], [47.426489, 8.492944], [47.363975, 8.531505], [47.410731, 8.534412], [47.403876, 8.571832], [47.360354, 8.52538], [47.396871, 8.54087], [47.414587, 8.558199], [47.36379, 8.574939], [47.36449, 8.554843], [47.377328, 8.526349], [47.382888, 8.482334], [47.413979, 8.546657], [47.383227, 8.530323], [47.364585, 8.566323], [47.38005, 8.514221], [47.39129, 8.520382], [47.401928, 8.499387], [47.393894, 8.529456], [47.36109, 8.522642], [47.408821, 8.579331], [47.383654, 8.508731], [47.389757, 8.521781], [47.353587, 8.576098], [47.379855, 8.5206], [47.378245, 8.520581], [47.400701, 8.584602], [47.358729, 8.526976], [47.368099, 8.52154], [47.378108, 8.532284], [47.379415, 8.537688], [47.37588, 8.549043], [47.373002, 8.561986], [47.383465, 8.58745], [47.381448, 8.503098], [47.392104, 8.500489], [47.358035, 8.523255], [47.380506, 8.544014], [47.386724, 8.547534], [47.387611, 8.500016], [47.396347, 8.52018], [47.370112, 8.529419], [47.396112, 8.527064], [47.389147, 8.527332], [47.33502, 8.531441], [47.371753, 8.491133], [47.368863, 8.501231], [47.406959, 8.586619], [47.363083, 8.563498], [47.387772, 8.527185], [47.3754, 8.524747], [47.375375, 8.48559], [47.363094, 8.549412], [47.369561, 8.525767], [47.393878, 8.506168], [47.372731, 8.534889], [47.34376, 8.529952], [47.374859, 8.525848], [47.387482, 8.525563], [47.405203, 8.577717], [47.384112, 8.543255], [47.389949, 8.545137], [47.354026, 8.556014], [47.403898, 8.56962], [47.387665, 8.527116], [47.382256, 8.512054], [47.366409, 8.545191], [47.361016, 8.520959], [47.367424, 8.555619], [47.370476, 8.515497], [47.377636, 8.505869], [47.394696, 8.525485], [47.373269, 8.535125], [47.37764, 8.498599], [47.387651, 8.5295], [47.383264, 8.506101], [47.36828, 8.524297], [47.376989, 8.543107], [47.356694, 8.534757], [47.413152, 8.540942], [47.386044, 8.548142], [47.39127, 8.515785], [47.391253, 8.526302], [47.374322, 8.537887], [47.369153, 8.528089], [47.370686, 8.557727], [47.412259, 8.556215], [47.405866, 8.566098], [47.375627, 8.493461], [47.368429, 8.534257], [47.413957, 8.525215], [47.373605, 8.536668], [47.381085, 8.528505], [47.383548, 8.545746], [47.36859, 8.534313], [47.38937, 8.486633], [47.360717, 8.553361], [47.419744, 8.504645], [47.423402, 8.539497], [47.339103, 8.519125], [47.419115, 8.506448], [47.370981, 8.526921], [47.370358, 8.548915], [47.388671, 8.51768], [47.39377, 8.49635], [47.426008, 8.493491], [47.405544, 8.585078], [47.408436, 8.550596], [47.397197, 8.531166], [47.418497, 8.508159], [47.388939, 8.520771], [47.362479, 8.533725], [47.382289, 8.514266], [47.336347, 8.529986], [47.358268, 8.55458], [47.39147, 8.505881], [47.378841, 8.528962], [47.373508, 8.534573], [47.362424, 8.510794], [47.400286, 8.494055], [47.418375, 8.546881], [47.394723, 8.525538], [47.410369, 8.536524], [47.377189, 8.539999], [47.390865, 8.523552], [47.387607, 8.529393], [47.368173, 8.559951], [47.326261, 8.514975], [47.363496, 8.499959], [47.380138, 8.54304], [47.379061, 8.524702], [47.376884, 8.540933], [47.424266, 8.501011], [47.37247, 8.526409], [47.366946, 8.560376], [47.366874, 8.545413], [47.352043, 8.573007], [47.366123, 8.533601], [47.399193, 8.520834], [47.365517, 8.521567], [47.381824, 8.5482], [47.384136, 8.527415], [47.35148, 8.560712], [47.368637, 8.559431], [47.349916, 8.534327], [47.373932, 8.502657], [47.376604, 8.568961], [47.379677, 8.511724], [47.388079, 8.529019], [47.382509, 8.548069], [47.415506, 8.550598], [47.354779, 8.523268], [47.415003, 8.54579], [47.368475, 8.523692], [47.37003, 8.54091], [47.376491, 8.528331], [47.365099, 8.521095], [47.332885, 8.529902], [47.391028, 8.488335], [47.364614, 8.504562], [47.377666, 8.551265], [47.373442, 8.534877], [47.354133, 8.563468], [47.407561, 8.584949], [47.413332, 8.531484], [47.378836, 8.542761], [47.343273, 8.535712], [47.36075, 8.551852], [47.383146, 8.513979], [47.361364, 8.602622], [47.337941, 8.536463], [47.356478, 8.535799], [47.36986, 8.519815], [47.381459, 8.513547], [47.395845, 8.53343], [47.359959, 8.589379], [47.367001, 8.563965], [47.387672, 8.53962], [47.377858, 8.509105], [47.374323, 8.543436], [47.373639, 8.536867], [47.376447, 8.528185], [47.410901, 8.557975], [47.409717, 8.576051], [47.379002, 8.547082], [47.376834, 8.544256], [47.378816, 8.539225], [47.364616, 8.516901], [47.368312, 8.534228], [47.39971, 8.491142], [47.422273, 8.537101], [47.393615, 8.524774], [47.378468, 8.51019], [47.384857, 8.531999], [47.349407, 8.527249], [47.360415, 8.552017], [47.386031, 8.515255], [47.377749, 8.537932], [47.374069, 8.475752], [47.397358, 8.531262], [47.373492, 8.485924], [47.352773, 8.509779], [47.404294, 8.569562], [47.412207, 8.555008], [47.3909, 8.478663], [47.366838, 8.534079], [47.378685, 8.575044], [47.365782, 8.520195], [47.364286, 8.546127], [47.356603, 8.510028], [47.369005, 8.53799], [47.376083, 8.559628], [47.411107, 8.526098], [47.426329, 8.492742], [47.378139, 8.499125], [47.365956, 8.49556], [47.410859, 8.57157], [47.366398, 8.520711], [47.357659, 8.535452], [47.376438, 8.534872], [47.36434, 8.534769], [47.425615, 8.494146], [47.387886, 8.482683], [47.373414, 8.503295], [47.405906, 8.58494], [47.37025, 8.548846], [47.387565, 8.488372], [47.392952, 8.485485], [47.40834, 8.544632], [47.366728, 8.545675], [47.357157, 8.522006], [47.413783, 8.54546], [47.412921, 8.537743], [47.379079, 8.500508], [47.383306, 8.51328], [47.365679, 8.505166], [47.365693, 8.526813], [47.382156, 8.529467], [47.364509, 8.530271], [47.425962, 8.49357], [47.368159, 8.560481], [47.366416, 8.540624], [47.410819, 8.529842], [47.384432, 8.528467], [47.366856, 8.544459], [47.406606, 8.575044], [47.379465, 8.523916], [47.398194, 8.536154], [47.365894, 8.530246], [47.382594, 8.55052], [47.387368, 8.519428], [47.372169, 8.522006], [47.398776, 8.494886], [47.375011, 8.528751], [47.407353, 8.547195], [47.400362, 8.477655], [47.38599, 8.498275], [47.379794, 8.506866], [47.414154, 8.527273], [47.367712, 8.519625], [47.369137, 8.527903], [47.405085, 8.478675], [47.373385, 8.519966], [47.375786, 8.53997], [47.364306, 8.548722], [47.421461, 8.497894], [47.365088, 8.530839], [47.391744, 8.484799], [47.373258, 8.531549], [47.40123, 8.545067], [47.393631, 8.511435], [47.380226, 8.536592], [47.375091, 8.540247], [47.377877, 8.5215], [47.393501, 8.541568], [47.409332, 8.550058], [47.373892, 8.503093], [47.385568, 8.532927], [47.377499, 8.535794], [47.393208, 8.539244], [47.382557, 8.529793], [47.37535, 8.561003], [47.40271, 8.535161], [47.362881, 8.530224], [47.376692, 8.548729], [47.389634, 8.521434], [47.392036, 8.51082], [47.424484, 8.536378], [47.419613, 8.548179], [47.360511, 8.524047], [47.405553, 8.585131], [47.369289, 8.547846], [47.377628, 8.538393], [47.382766, 8.539995], [47.388505, 8.488815], [47.378094, 8.510831], [47.382105, 8.488305], [47.407266, 8.585631], [47.414239, 8.509531], [47.380041, 8.547488], [47.42553, 8.55766], [47.381211, 8.518005], [47.366728, 8.541928], [47.40303, 8.555213], [47.378294, 8.520198], [47.392678, 8.532544], [47.407346, 8.550706], [47.418598, 8.554585], [47.385922, 8.542074], [47.365036, 8.566174], [47.37908, 8.559439], [47.401953, 8.499639], [47.374615, 8.549546], [47.38809, 8.520131], [47.388763, 8.515536], [47.375807, 8.551915], [47.372372, 8.531107], [47.386701, 8.488342], [47.376822, 8.52467], [47.371778, 8.536829], [47.405669, 8.591546], [47.378883, 8.519759], [47.385868, 8.532589], [47.378429, 8.526941], [47.398632, 8.53925], [47.386227, 8.52506], [47.335036, 8.527921], [47.391533, 8.545117], [47.377815, 8.507925], [47.376596, 8.539007], [47.418097, 8.538354], [47.362804, 8.548731], [47.3377, 8.525819], [47.368292, 8.52684], [47.377389, 8.54824], [47.378164, 8.509985], [47.396598, 8.542228], [47.401606, 8.551792], [47.391796, 8.518233], [47.411487, 8.546671], [47.335127, 8.519203], [47.373265, 8.552418], [47.395554, 8.5299], [47.39941, 8.548169], [47.384773, 8.509323], [47.38293, 8.515007], [47.40186, 8.485183], [47.37369, 8.537199], [47.355907, 8.555947], [47.406853, 8.550603], [47.3767, 8.544174], [47.363987, 8.535913], [47.39769, 8.533269], [47.396262, 8.545361], [47.357902, 8.554228], [47.387341, 8.516553], [47.390872, 8.478755], [47.387807, 8.488443], [47.359221, 8.527303], [47.41383, 8.52728], [47.409167, 8.547484], [47.404748, 8.494011], [47.366286, 8.552352], [47.407479, 8.585901], [47.389873, 8.512247], [47.367382, 8.494039], [47.411107, 8.571072], [47.365922, 8.545248], [47.382362, 8.563283], [47.380501, 8.525646], [47.408712, 8.546216], [47.370344, 8.514237], [47.370503, 8.515551], [47.368295, 8.539776], [47.378918, 8.519813], [47.377392, 8.529052], [47.3753, 8.543853], [47.378993, 8.511816], [47.408138, 8.536624], [47.378195, 8.510608], [47.386057, 8.529706], [47.398813, 8.529649], [47.383397, 8.548392], [47.3858, 8.545448], [47.363228, 8.549521], [47.388425, 8.539913], [47.377214, 8.540212], [47.370163, 8.539205], [47.378618, 8.528785], [47.379462, 8.527982], [47.366858, 8.549927], [47.369014, 8.537963], [47.394909, 8.522985], [47.366921, 8.544302], [47.379934, 8.528561], [47.372544, 8.534739], [47.389632, 8.527395], [47.361908, 8.514067], [47.379516, 8.528936], [47.390078, 8.547657], [47.385829, 8.474392], [47.354488, 8.52358], [47.39159, 8.514308], [47.372517, 8.534712], [47.404966, 8.555956], [47.42604, 8.54765], [47.377329, 8.512736], [47.368365, 8.496746], [47.370287, 8.556275], [47.414234, 8.483478], [47.403504, 8.497272], [47.363259, 8.554671], [47.368021, 8.556135], [47.375823, 8.538938], [47.376749, 8.538123], [47.3779, 8.51137], [47.391806, 8.477952], [47.388323, 8.547739], [47.403612, 8.497234], [47.407448, 8.548562], [47.38475, 8.531957], [47.389087, 8.486151], [47.389899, 8.476895], [47.40904, 8.547601], [47.366932, 8.545043], [47.406816, 8.550629], [47.381682, 8.516651], [47.374093, 8.544914], [47.384313, 8.516174], [47.388147, 8.497457], [47.355622, 8.508142], [47.359996, 8.511751], [47.375277, 8.485403], [47.383702, 8.498666], [47.361036, 8.521754], [47.392818, 8.524413], [47.379046, 8.529192], [47.360757, 8.524594], [47.413754, 8.546586], [47.383274, 8.506075], [47.366418, 8.545139], [47.365354, 8.538868], [47.406178, 8.484062], [47.387306, 8.488116], [47.356583, 8.600426], [47.367338, 8.537359], [47.403136, 8.486268], [47.432504, 8.528192], [47.374966, 8.544892], [47.411201, 8.54648], [47.333516, 8.534506], [47.374398, 8.521271], [47.398312, 8.536965], [47.411172, 8.570848], [47.377737, 8.509552], [47.39625, 8.527663], [47.382946, 8.550382], [47.36772, 8.488511], [47.374857, 8.528947], [47.411325, 8.572666], [47.35107, 8.579618], [47.374818, 8.530151], [47.369467, 8.526255], [47.354032, 8.508891], [47.406866, 8.586921], [47.332941, 8.518259], [47.403869, 8.485779], [47.378576, 8.575148], [47.383256, 8.532959], [47.343848, 8.530126], [47.378552, 8.528162], [47.353484, 8.576466], [47.428002, 8.545742], [47.398841, 8.510321], [47.370057, 8.540858], [47.370188, 8.548792], [47.375767, 8.491888], [47.396588, 8.493187], [47.381131, 8.517871], [47.403141, 8.502485], [47.360126, 8.551177], [47.425241, 8.494722], [47.413837, 8.545435], [47.35935, 8.592716], [47.339898, 8.530244], [47.330064, 8.515118], [47.426748, 8.49222], [47.372981, 8.531318], [47.39314, 8.5265], [47.39118, 8.489464], [47.348395, 8.562513], [47.374845, 8.518658], [47.378174, 8.507032], [47.384408, 8.528162], [47.387419, 8.5398], [47.396013, 8.545038], [47.370271, 8.514315], [47.365723, 8.562204], [47.354181, 8.555792], [47.375426, 8.539075], [47.366946, 8.539814], [47.37653, 8.536463], [47.373493, 8.529502], [47.353034, 8.500982], [47.399637, 8.495115], [47.357365, 8.521851], [47.370152, 8.548791], [47.405894, 8.59061], [47.374803, 8.49792], [47.361138, 8.600989], [47.367382, 8.494026], [47.390592, 8.489796], [47.378371, 8.54058], [47.375258, 8.550036], [47.366714, 8.537691], [47.364486, 8.552433], [47.371715, 8.519574], [47.385821, 8.530006], [47.404386, 8.572082], [47.369601, 8.555612], [47.395549, 8.542816], [47.381334, 8.542151], [47.418088, 8.538367], [47.420583, 8.513051], [47.377083, 8.539798], [47.392843, 8.537938], [47.383577, 8.488691], [47.381819, 8.490074], [47.363833, 8.534136], [47.366752, 8.542167], [47.366557, 8.544718], [47.408304, 8.577054], [47.33415, 8.515902], [47.378881, 8.542762], [47.413747, 8.553874], [47.351035, 8.580425], [47.371907, 8.536461], [47.38323, 8.505994], [47.414152, 8.518805], [47.361324, 8.535038], [47.378403, 8.520094], [47.399582, 8.539574], [47.418504, 8.54752], [47.415492, 8.546463], [47.409964, 8.535602], [47.378048, 8.508963], [47.376944, 8.528897], [47.370895, 8.508144], [47.416518, 8.554807], [47.428811, 8.48892], [47.361466, 8.565119], [47.407888, 8.478027], [47.39267, 8.52286], [47.408719, 8.550165], [47.344551, 8.519513], [47.351046, 8.581973], [47.386802, 8.489192], [47.370794, 8.535259], [47.368157, 8.53445], [47.402735, 8.499694], [47.374752, 8.527647], [47.390845, 8.478794], [47.40963, 8.576698], [47.334984, 8.528661], [47.387411, 8.493389], [47.383589, 8.543297], [47.359477, 8.535424], [47.354806, 8.574721], [47.384618, 8.494897], [47.383068, 8.529062], [47.368489, 8.530736], [47.388395, 8.491011], [47.374478, 8.539453], [47.3677, 8.495634], [47.355369, 8.554837], [47.376349, 8.488231], [47.391103, 8.487965], [47.367111, 8.5442], [47.376119, 8.510354], [47.369155, 8.556145], [47.405618, 8.549941], [47.413439, 8.536323], [47.37747, 8.548308], [47.409531, 8.53762], [47.352888, 8.488431], [47.351755, 8.527283], [47.427752, 8.537055], [47.356457, 8.523686], [47.374826, 8.516843], [47.415725, 8.529479], [47.37017, 8.548792], [47.36839, 8.493993], [47.378117, 8.539859], [47.37004, 8.564082], [47.370653, 8.516772], [47.373198, 8.547305], [47.368632, 8.553447], [47.376061, 8.535738], [47.386942, 8.498426], [47.372449, 8.523839], [47.371346, 8.546221], [47.375882, 8.510733], [47.414676, 8.520499], [47.368835, 8.500397], [47.385644, 8.521102], [47.378225, 8.515111], [47.366488, 8.540692], [47.371818, 8.488009], [47.379433, 8.54427], [47.418553, 8.54711], [47.35839, 8.505457], [47.335072, 8.518355], [47.381238, 8.494591], [47.422467, 8.550743], [47.35245, 8.572751], [47.366034, 8.562528], [47.379521, 8.516965], [47.367109, 8.539711], [47.366104, 8.540353], [47.359674, 8.535467], [47.39393, 8.483703], [47.39908, 8.498986], [47.391334, 8.51568], [47.415364, 8.551337], [47.402564, 8.492762], [47.370152, 8.548804], [47.399612, 8.468036], [47.375404, 8.528177], [47.336413, 8.521069], [47.334935, 8.53001], [47.376503, 8.511607], [47.424971, 8.529536], [47.359245, 8.592422], [47.353272, 8.576144], [47.385012, 8.508785], [47.409362, 8.549701], [47.380774, 8.536709], [47.38934, 8.521163], [47.398294, 8.536938], [47.369951, 8.551899], [47.353559, 8.576216], [47.403722, 8.486121], [47.378579, 8.519501], [47.387671, 8.48656], [47.357918, 8.520473], [47.35762, 8.521486], [47.377903, 8.509079], [47.387287, 8.484235], [47.363032, 8.563219], [47.388183, 8.497471], [47.373785, 8.536671], [47.375765, 8.516544], [47.373786, 8.537479], [47.418124, 8.538354], [47.410708, 8.550021], [47.391411, 8.53616], [47.39484, 8.538801], [47.356266, 8.526753], [47.384431, 8.498575], [47.381522, 8.515482], [47.371894, 8.56579], [47.376132, 8.516737], [47.374433, 8.51853], [47.383238, 8.49924], [47.36555, 8.598741], [47.377652, 8.527269], [47.370063, 8.503837], [47.389621, 8.512255], [47.373765, 8.534036], [47.423552, 8.502376], [47.354464, 8.553481], [47.422827, 8.535668], [47.358263, 8.585332], [47.386815, 8.535165], [47.381841, 8.529447], [47.373648, 8.519772], [47.377247, 8.538716], [47.35651, 8.488727], [47.378408, 8.540501], [47.381342, 8.508724], [47.369824, 8.510241], [47.414273, 8.534617], [47.369651, 8.577182], [47.373056, 8.552692], [47.360454, 8.516605], [47.355025, 8.554076], [47.340171, 8.529918], [47.370842, 8.548117], [47.379872, 8.554781], [47.349855, 8.561287], [47.419126, 8.506237], [47.378112, 8.526206], [47.377044, 8.548577], [47.392489, 8.502722], [47.391114, 8.522842], [47.361315, 8.525585], [47.387097, 8.489357], [47.368997, 8.50138], [47.386089, 8.54809], [47.373175, 8.527959], [47.386166, 8.528701], [47.387797, 8.529291], [47.34294, 8.535825], [47.396097, 8.539993], [47.36401, 8.551457], [47.375667, 8.527004], [47.397065, 8.480254], [47.403216, 8.559232], [47.390556, 8.536196], [47.424771, 8.502837], [47.384431, 8.531461], [47.379985, 8.52786], [47.366161, 8.521024], [47.383328, 8.543358], [47.367396, 8.545358], [47.392589, 8.523826], [47.379865, 8.524375], [47.4041, 8.564576], [47.383651, 8.548159], [47.380268, 8.541612], [47.372389, 8.5207], [47.370456, 8.532048], [47.36801, 8.520466], [47.394164, 8.51799], [47.373453, 8.598278], [47.356912, 8.55524], [47.397547, 8.48168], [47.387276, 8.488499], [47.393417, 8.500569], [47.378606, 8.542346], [47.374669, 8.545787], [47.377398, 8.529436], [47.37921, 8.522295], [47.376376, 8.528077], [47.370783, 8.546779], [47.371915, 8.564612], [47.380743, 8.578902], [47.385135, 8.536839], [47.341443, 8.529574], [47.397311, 8.531513], [47.385797, 8.548534], [47.399169, 8.542335], [47.379654, 8.527694], [47.396783, 8.540682], [47.363839, 8.5317], [47.373362, 8.529128], [47.412099, 8.546631], [47.394171, 8.524971], [47.359306, 8.592569], [47.374455, 8.539956], [47.362077, 8.547577], [47.373902, 8.536621], [47.387733, 8.529409], [47.370184, 8.535988], [47.364204, 8.526333], [47.409323, 8.543459], [47.414432, 8.475518], [47.349557, 8.532374], [47.379108, 8.522585], [47.354057, 8.525398], [47.389247, 8.494313], [47.368058, 8.560704], [47.373072, 8.533095], [47.369837, 8.52903], [47.361548, 8.561374], [47.363701, 8.532015], [47.361846, 8.52647], [47.414213, 8.518091], [47.37016, 8.51271], [47.377958, 8.548067], [47.361859, 8.569178], [47.368921, 8.525012], [47.383348, 8.49903], [47.408027, 8.547315], [47.367951, 8.534393], [47.39419, 8.518056], [47.402479, 8.49325], [47.399207, 8.505731], [47.372843, 8.554197], [47.390164, 8.509961], [47.375957, 8.541933], [47.409266, 8.544744], [47.366094, 8.540445], [47.422104, 8.506164], [47.367146, 8.54616], [47.421306, 8.500117], [47.372627, 8.550524], [47.38628, 8.531843], [47.406311, 8.562914], [47.370707, 8.566705], [47.381818, 8.533778], [47.381097, 8.511845], [47.409929, 8.541259], [47.370859, 8.548223], [47.398164, 8.518309], [47.37539, 8.489854], [47.377702, 8.509406], [47.400312, 8.582103], [47.353678, 8.512047], [47.36457, 8.537077], [47.423794, 8.516933], [47.352188, 8.558133], [47.362803, 8.548784], [47.360453, 8.561073], [47.380626, 8.525754], [47.385981, 8.518658], [47.408786, 8.540348], [47.386089, 8.543362], [47.363234, 8.517509], [47.390841, 8.522214], [47.397146, 8.518487], [47.397012, 8.530765], [47.384966, 8.50885], [47.40896, 8.482858], [47.426418, 8.54392], [47.372937, 8.520738], [47.388517, 8.531226], [47.382949, 8.551892], [47.373434, 8.529116], [47.378443, 8.540647], [47.419237, 8.507856], [47.412175, 8.546222], [47.377161, 8.540131], [47.379288, 8.544386], [47.377247, 8.538729], [47.369696, 8.541923], [47.360356, 8.51659], [47.366595, 8.533187], [47.374748, 8.550741], [47.369222, 8.525548], [47.370794, 8.535246], [47.386154, 8.482226], [47.390565, 8.491822], [47.383207, 8.530535], [47.379463, 8.525942], [47.3558, 8.557653], [47.369247, 8.519987], [47.373745, 8.546536], [47.380889, 8.481606], [47.366396, 8.519877], [47.385572, 8.520107], [47.373759, 8.500018], [47.408878, 8.495842], [47.409474, 8.535128], [47.366936, 8.53616], [47.387054, 8.534667], [47.373256, 8.535508], [47.404468, 8.571951], [47.366587, 8.533081], [47.377068, 8.539507], [47.370208, 8.524933], [47.412955, 8.543694], [47.366475, 8.544875], [47.369346, 8.536169], [47.398474, 8.591377], [47.33642, 8.520354], [47.372893, 8.520657], [47.400006, 8.545108], [47.40238, 8.583049], [47.39054, 8.545414], [47.383281, 8.4787], [47.397363, 8.533647], [47.393762, 8.493343], [47.354887, 8.574683], [47.370501, 8.548997], [47.372784, 8.535048], [47.383714, 8.540598], [47.376718, 8.5442], [47.42069, 8.502517], [47.370015, 8.509993], [47.430234, 8.542714], [47.355985, 8.57374], [47.374042, 8.544648], [47.386924, 8.535114], [47.389633, 8.511964], [47.377305, 8.521144], [47.376928, 8.543808], [47.365324, 8.532552], [47.369342, 8.557209], [47.359352, 8.551267], [47.369716, 8.525545], [47.374986, 8.537173], [47.39381, 8.501888], [47.383166, 8.574888], [47.378464, 8.567359], [47.368732, 8.528822], [47.359972, 8.594397], [47.378606, 8.510801], [47.354333, 8.557794], [47.387246, 8.500591], [47.357747, 8.554424], [47.374218, 8.537475], [47.384231, 8.493883], [47.350339, 8.577948], [47.393414, 8.499906], [47.38792, 8.52483], [47.406912, 8.586843], [47.368809, 8.501257], [47.391941, 8.51813], [47.394395, 8.474055], [47.357786, 8.522945], [47.360534, 8.561101], [47.404233, 8.561996], [47.384574, 8.54288], [47.357882, 8.526164], [47.384474, 8.481054], [47.372344, 8.535953], [47.413885, 8.527202], [47.408881, 8.546445], [47.37437, 8.541384], [47.358179, 8.574779], [47.365063, 8.531567], [47.391014, 8.523025], [47.383212, 8.505981], [47.398989, 8.499103], [47.369287, 8.547992], [47.382521, 8.588291], [47.368369, 8.547165], [47.387119, 8.48198], [47.377153, 8.526769], [47.368915, 8.535194], [47.378468, 8.540794], [47.378067, 8.547923], [47.370856, 8.549508], [47.39743, 8.532257], [47.384472, 8.516509], [47.363606, 8.575305], [47.387991, 8.526898], [47.362545, 8.535315], [47.361508, 8.576465], [47.362167, 8.547526], [47.368564, 8.547474], [47.38463, 8.531292], [47.378087, 8.483087], [47.380315, 8.48333], [47.425887, 8.493926], [47.397378, 8.532018], [47.36545, 8.539174], [47.393795, 8.52854], [47.376938, 8.541808], [47.374774, 8.551774], [47.369595, 8.533632], [47.370151, 8.548937], [47.406987, 8.550632], [47.360414, 8.526679], [47.365998, 8.533492], [47.374948, 8.544839], [47.393347, 8.529338], [47.386197, 8.498226], [47.382134, 8.5719], [47.358562, 8.508254], [47.342, 8.530604], [47.37859, 8.54216], [47.382699, 8.488316], [47.378773, 8.491748], [47.356361, 8.535783], [47.411305, 8.527944], [47.371502, 8.547773], [47.362389, 8.559062], [47.387247, 8.537094], [47.371891, 8.542829], [47.35178, 8.530328], [47.377027, 8.540075], [47.431346, 8.516463], [47.358446, 8.532133], [47.415459, 8.48333], [47.407166, 8.550729], [47.353507, 8.553911], [47.384643, 8.53471], [47.374931, 8.544746], [47.36129, 8.576712], [47.359639, 8.593543], [47.405195, 8.50503], [47.409154, 8.549856], [47.406657, 8.551288], [47.430397, 8.536076], [47.362685, 8.575749], [47.359552, 8.522637], [47.411108, 8.570913], [47.414525, 8.517461], [47.376503, 8.511607], [47.364001, 8.551457], [47.390108, 8.52563], [47.37896, 8.508597], [47.399936, 8.467022], [47.418314, 8.548523], [47.415298, 8.51749], [47.378128, 8.509984], [47.418114, 8.53838], [47.389329, 8.521375], [47.382412, 8.505832], [47.348405, 8.534296], [47.414683, 8.544458], [47.366263, 8.553821], [47.356987, 8.553031], [47.410428, 8.543615], [47.415971, 8.50893], [47.374601, 8.532239], [47.384688, 8.549717], [47.389814, 8.511755], [47.387921, 8.48577], [47.426312, 8.545548], [47.369603, 8.535685], [47.387555, 8.519697], [47.393862, 8.505028], [47.414897, 8.546596], [47.359131, 8.573012], [47.358085, 8.555808], [47.415056, 8.546878], [47.408069, 8.572584], [47.385811, 8.547065], [47.376611, 8.518349], [47.377, 8.535281], [47.369992, 8.491919], [47.359309, 8.55762], [47.382101, 8.501601], [47.374789, 8.527582], [47.378987, 8.508531], [47.378014, 8.536507], [47.401715, 8.581166], [47.38145, 8.528949], [47.39341, 8.512941], [47.379846, 8.542478], [47.416797, 8.567787], [47.405162, 8.481101], [47.34411, 8.531878], [47.417428, 8.553726], [47.361001, 8.54819], [47.352872, 8.572866], [47.377197, 8.526902], [47.3734, 8.531698], [47.406112, 8.568501], [47.377246, 8.538808], [47.370545, 8.49144], [47.383421, 8.484066], [47.378786, 8.542363], [47.380545, 8.517025], [47.377189, 8.540026], [47.375358, 8.540597], [47.366512, 8.544743], [47.383451, 8.533268], [47.407939, 8.5367], [47.376865, 8.538165], [47.357276, 8.536027], [47.398389, 8.548677], [47.38753, 8.487233], [47.381462, 8.537227], [47.377122, 8.543308], [47.373217, 8.533005], [47.368713, 8.500897], [47.397473, 8.532443], [47.367581, 8.509613], [47.377871, 8.517381], [47.429953, 8.549561], [47.371396, 8.542859], [47.38363, 8.573468], [47.368164, 8.557237], [47.375705, 8.523866], [47.417912, 8.505284], [47.382541, 8.531514], [47.366082, 8.532249], [47.367637, 8.501578], [47.403089, 8.547199], [47.366567, 8.531439], [47.370703, 8.546671], [47.410971, 8.536669], [47.389954, 8.538978], [47.409442, 8.537579], [47.383217, 8.539872], [47.386446, 8.548415], [47.358395, 8.581999], [47.407713, 8.543479], [47.380835, 8.534963], [47.389826, 8.486934], [47.380429, 8.547376], [47.412924, 8.537425], [47.366444, 8.545205], [47.350348, 8.577988], [47.393335, 8.524821], [47.391433, 8.487296], [47.374185, 8.521001], [47.392303, 8.531317], [47.420212, 8.500718], [47.363585, 8.521408], [47.399434, 8.506451], [47.373199, 8.529191], [47.369922, 8.511236], [47.35957, 8.52269], [47.363061, 8.526362], [47.406495, 8.549429], [47.374078, 8.526653], [47.358983, 8.591622], [47.40395, 8.571622], [47.422538, 8.550771], [47.384495, 8.548309], [47.364257, 8.547278], [47.3892, 8.513968], [47.357547, 8.553705], [47.405702, 8.533619], [47.390681, 8.488964], [47.359744, 8.593836], [47.371964, 8.535217], [47.373029, 8.528115], [47.379424, 8.555513], [47.404573, 8.54817], [47.375507, 8.517175], [47.368327, 8.548714], [47.376935, 8.522183], [47.380309, 8.493964], [47.42423, 8.548858], [47.354781, 8.526829], [47.373853, 8.538063], [47.413117, 8.474737], [47.386256, 8.535326], [47.370859, 8.557585], [47.377033, 8.544154], [47.368583, 8.534141], [47.398932, 8.513131], [47.368105, 8.541811], [47.370994, 8.548239], [47.403042, 8.484769], [47.351677, 8.55889], [47.408785, 8.57941], [47.381172, 8.515435], [47.421023, 8.507322], [47.418115, 8.538367], [47.37017, 8.548765], [47.36342, 8.554794], [47.403885, 8.567248], [47.384358, 8.548518], [47.379176, 8.544861], [47.410384, 8.548212], [47.374961, 8.536868], [47.376667, 8.527792], [47.359687, 8.549129], [47.379952, 8.528548], [47.374014, 8.54474], [47.381933, 8.529198], [47.370571, 8.524543], [47.384658, 8.541584], [47.393295, 8.494274], [47.32956, 8.529609], [47.357424, 8.521323], [47.363205, 8.563911], [47.337795, 8.534779], [47.365029, 8.502519], [47.396029, 8.545237], [47.402309, 8.486172], [47.350703, 8.601966], [47.36838, 8.548768], [47.396136, 8.538775], [47.37197, 8.538316], [47.429909, 8.542892], [47.37079, 8.546977], [47.330108, 8.529673], [47.379363, 8.542216], [47.417776, 8.509244], [47.361245, 8.525359], [47.40576, 8.577808], [47.370658, 8.546644], [47.393872, 8.505889], [47.388032, 8.529216], [47.378639, 8.541737], [47.396999, 8.530288], [47.407229, 8.55073], [47.413601, 8.523896], [47.362655, 8.558551], [47.403641, 8.496957], [47.415682, 8.512913], [47.362204, 8.5475], [47.391733, 8.519159], [47.405578, 8.5753], [47.405676, 8.575395], [47.367565, 8.534306], [47.354375, 8.526], [47.361999, 8.525507], [47.369653, 8.525583], [47.393202, 8.528501], [47.426128, 8.495084], [47.361937, 8.526392], [47.373103, 8.538405], [47.356564, 8.524734], [47.398414, 8.537537], [47.399733, 8.517837], [47.37518, 8.534701], [47.392341, 8.476373], [47.391414, 8.550956], [47.35506, 8.557002], [47.390258, 8.490955], [47.383258, 8.55713], [47.36306, 8.563114], [47.410107, 8.569368], [47.394016, 8.5251], [47.387322, 8.539613], [47.418883, 8.544532], [47.374174, 8.52116], [47.390895, 8.522189], [47.371588, 8.515904], [47.353474, 8.525214], [47.369561, 8.541907], [47.386615, 8.534446], [47.373912, 8.536515], [47.354388, 8.52367], [47.377005, 8.544246], [47.360751, 8.553533], [47.42932, 8.543318], [47.382501, 8.500152], [47.375729, 8.538459], [47.404575, 8.588502], [47.364401, 8.531182], [47.383656, 8.573588], [47.381817, 8.545233], [47.375372, 8.524799], [47.368753, 8.554005], [47.381066, 8.518095], [47.378224, 8.530486], [47.40686, 8.550736], [47.368815, 8.524798], [47.405733, 8.591455], [47.376533, 8.525697], [47.366898, 8.545771], [47.354868, 8.574762], [47.375953, 8.515608], [47.376182, 8.536178], [47.407518, 8.579237], [47.377339, 8.488145], [47.367351, 8.54541], [47.411829, 8.524827], [47.396582, 8.521099], [47.37246, 8.533148], [47.372986, 8.517442], [47.339927, 8.530046], [47.402307, 8.499302], [47.381469, 8.503734], [47.411091, 8.545762], [47.394165, 8.527448], [47.3462, 8.534449], [47.394026, 8.525007], [47.37009, 8.512524], [47.392837, 8.490198], [47.357102, 8.522058], [47.400909, 8.548558], [47.428302, 8.489507], [47.371783, 8.54284], [47.366461, 8.498403], [47.367687, 8.522273], [47.392044, 8.499203], [47.360307, 8.523659], [47.371964, 8.519923], [47.367051, 8.543881], [47.384704, 8.531996], [47.396002, 8.545289], [47.367165, 8.546995], [47.369029, 8.519295], [47.377354, 8.525422], [47.338906, 8.538124], [47.388076, 8.540714], [47.35968, 8.522441], [47.376494, 8.511633], [47.378495, 8.523684], [47.371102, 8.531227], [47.352268, 8.573012], [47.360414, 8.526679], [47.36396, 8.533159], [47.407563, 8.544099], [47.408961, 8.579798], [47.360863, 8.554966], [47.37478, 8.515108], [47.389543, 8.521591], [47.369331, 8.533998], [47.363751, 8.575203], [47.369483, 8.540701], [47.368443, 8.538441], [47.368474, 8.541845], [47.369586, 8.533632], [47.379462, 8.49506], [47.400031, 8.494408], [47.360857, 8.585017], [47.417126, 8.523027], [47.384872, 8.531364], [47.374142, 8.532243], [47.373056, 8.547104], [47.369134, 8.548015], [47.372559, 8.478689], [47.414072, 8.541597], [47.390897, 8.526864], [47.369032, 8.532336], [47.375551, 8.526895], [47.371429, 8.546064], [47.392638, 8.51572], [47.383482, 8.530024], [47.366977, 8.544104], [47.36702, 8.539551], [47.363408, 8.575394], [47.378369, 8.541745], [47.381018, 8.518438], [47.384539, 8.480737], [47.407465, 8.530701], [47.382137, 8.516117], [47.387683, 8.519434], [47.38278, 8.514673], [47.399885, 8.504447], [47.394188, 8.490053], [47.387457, 8.519549], [47.338778, 8.528792], [47.344755, 8.533162], [47.384349, 8.494786], [47.363687, 8.535325], [47.385875, 8.535662], [47.360544, 8.562875], [47.389848, 8.477596], [47.389839, 8.477609], [47.374551, 8.539362], [47.416521, 8.553535], [47.344141, 8.532435], [47.370224, 8.541232], [47.379026, 8.540805], [47.381158, 8.518812], [47.389754, 8.524006], [47.37735, 8.512392], [47.426919, 8.536667], [47.370692, 8.519342], [47.414071, 8.541663], [47.37653, 8.527021], [47.38157, 8.541917], [47.403117, 8.486413], [47.363386, 8.534882], [47.385537, 8.530503], [47.392054, 8.517589], [47.357843, 8.521662], [47.368961, 8.528429], [47.371975, 8.534992], [47.370637, 8.519433], [47.360533, 8.566728], [47.37808, 8.509347], [47.381593, 8.555373], [47.369014, 8.53795], [47.380091, 8.528074], [47.375942, 8.541602], [47.337195, 8.519232], [47.381309, 8.540945], [47.41053, 8.569271], [47.406321, 8.58479], [47.371756, 8.525812], [47.378362, 8.510055], [47.404242, 8.561943], [47.408741, 8.539379], [47.364556, 8.54698], [47.377907, 8.540266], [47.38376, 8.540519], [47.370174, 8.540874], [47.376865, 8.52675], [47.385364, 8.536473], [47.366943, 8.542952], [47.392802, 8.523247], [47.373871, 8.517075], [47.349076, 8.574705], [47.368028, 8.540445], [47.388799, 8.530901], [47.393361, 8.492924], [47.360502, 8.527793], [47.394229, 8.493392], [47.394912, 8.516892], [47.384577, 8.50912], [47.378886, 8.515588], [47.427319, 8.539034], [47.372341, 8.542786], [47.39323, 8.524567], [47.378608, 8.519383], [47.354972, 8.534285], [47.390405, 8.538881], [47.402558, 8.46951], [47.405138, 8.478782], [47.39617, 8.485667], [47.402971, 8.589699], [47.393442, 8.539262], [47.361721, 8.574074], [47.380232, 8.546339], [47.386296, 8.482507], [47.365074, 8.531421], [47.363867, 8.528669], [47.419874, 8.548211], [47.382736, 8.493151], [47.371415, 8.510299], [47.380365, 8.512294], [47.4091, 8.553605], [47.379402, 8.523888], [47.37296, 8.536363], [47.375966, 8.536226], [47.409075, 8.482012], [47.378337, 8.541347], [47.358319, 8.50531], [47.37824, 8.526884], [47.388322, 8.520388], [47.343726, 8.535378], [47.368287, 8.49734], [47.352283, 8.53415], [47.422615, 8.551277], [47.370895, 8.508184], [47.342645, 8.519422], [47.396338, 8.513424], [47.362162, 8.608279], [47.377513, 8.543793], [47.377002, 8.546458], [47.360955, 8.51594], [47.377914, 8.530016], [47.409455, 8.542853], [47.373096, 8.535373], [47.366756, 8.542696], [47.385922, 8.542021], [47.369521, 8.526216], [47.405158, 8.480478], [47.367235, 8.544401], [47.371056, 8.531292], [47.369333, 8.557208], [47.350122, 8.530612], [47.342939, 8.53593], [47.408899, 8.579664], [47.376502, 8.511779], [47.376581, 8.525407], [47.377689, 8.507896], [47.354815, 8.510786], [47.417288, 8.546792], [47.387013, 8.528494], [47.377253, 8.550277], [47.400923, 8.502109], [47.373888, 8.538104], [47.354472, 8.573933], [47.420782, 8.549118], [47.377213, 8.512641], [47.371209, 8.530421], [47.370857, 8.566099], [47.372957, 8.48541], [47.39724, 8.531405], [47.365013, 8.493423], [47.360879, 8.525034], [47.364123, 8.54619], [47.379364, 8.54211], [47.370473, 8.526394], [47.365115, 8.553453], [47.398014, 8.541754], [47.384864, 8.509219], [47.375448, 8.563918], [47.376454, 8.52837], [47.368624, 8.490065], [47.367773, 8.546385], [47.354397, 8.525616], [47.34051, 8.53023], [47.360316, 8.523645], [47.377812, 8.509183], [47.402048, 8.499058], [47.362558, 8.55835], [47.405809, 8.560889], [47.378935, 8.522833], [47.343629, 8.535164], [47.37663, 8.518244], [47.366694, 8.564978], [47.37403, 8.536491], [47.36867, 8.543888], [47.338483, 8.519099], [47.373808, 8.527628], [47.402341, 8.495593], [47.409463, 8.52295], [47.379084, 8.538515], [47.375599, 8.53508], [47.378022, 8.547975], [47.399558, 8.496968], [47.367056, 8.523399], [47.383915, 8.529874], [47.398489, 8.494841], [47.41077, 8.535102], [47.410734, 8.535088], [47.381268, 8.537713], [47.389684, 8.52476], [47.354818, 8.555011], [47.377165, 8.512957], [47.36117, 8.550219], [47.408381, 8.574777], [47.397974, 8.47423], [47.407006, 8.554276], [47.381951, 8.541594], [47.337303, 8.519287], [47.393006, 8.474465], [47.384323, 8.507341], [47.405972, 8.590943], [47.351652, 8.525759], [47.378525, 8.540477], [47.391443, 8.519444], [47.387622, 8.54391], [47.368881, 8.537828], [47.331617, 8.529823], [47.367151, 8.54003], [47.383617, 8.483302], [47.395318, 8.541526], [47.375114, 8.518796], [47.372983, 8.53684], [47.369533, 8.525912], [47.35801, 8.523082], [47.364033, 8.526356], [47.378441, 8.54556], [47.371077, 8.523375], [47.351926, 8.505037], [47.377059, 8.543307], [47.407156, 8.573969], [47.359104, 8.50706], [47.366842, 8.543188], [47.339787, 8.530559], [47.376024, 8.55919], [47.402904, 8.490993], [47.359723, 8.56769], [47.370175, 8.513028], [47.335108, 8.519229], [47.409608, 8.549415], [47.412583, 8.550577], [47.378769, 8.54227], [47.37069, 8.516733], [47.386133, 8.497417], [47.373297, 8.536953], [47.391542, 8.486226], [47.376598, 8.510059], [47.369997, 8.532939], [47.372259, 8.523928], [47.373352, 8.557385], [47.394232, 8.490146], [47.36932, 8.513104], [47.391845, 8.518751], [47.370078, 8.55643], [47.383609, 8.484176], [47.371401, 8.546116], [47.381438, 8.478531], [47.423367, 8.538449], [47.413299, 8.512865], [47.386449, 8.496297], [47.420688, 8.502689], [47.405021, 8.482794], [47.37466, 8.549534], [47.35479, 8.526829], [47.37449, 8.495769], [47.368264, 8.546819], [47.391718, 8.51888], [47.421038, 8.500801], [47.391496, 8.53856], [47.376299, 8.521879], [47.378301, 8.509802], [47.371322, 8.514455], [47.375142, 8.51869], [47.378189, 8.522804], [47.389651, 8.511938], [47.378542, 8.504179], [47.41303, 8.550864], [47.370219, 8.514142], [47.378441, 8.510229], [47.398569, 8.539209], [47.34845, 8.53435], [47.379346, 8.542149], [47.38798, 8.520394], [47.387573, 8.519671], [47.376194, 8.539634], [47.408909, 8.548194], [47.364482, 8.547243], [47.348298, 8.534254], [47.380249, 8.541784], [47.422529, 8.550771], [47.406686, 8.550149], [47.374904, 8.492811], [47.392257, 8.525673], [47.386061, 8.539706], [47.390591, 8.52201], [47.423844, 8.51932], [47.353628, 8.554364], [47.396963, 8.530287], [47.400112, 8.504199], [47.383249, 8.55713], [47.379307, 8.517702], [47.37198, 8.522016], [47.384695, 8.507984], [47.400111, 8.590512], [47.366236, 8.562108], [47.371912, 8.520637], [47.346195, 8.53302], [47.369479, 8.525897], [47.360666, 8.506429], [47.339928, 8.529914], [47.395835, 8.530661], [47.399821, 8.490734], [47.40238, 8.499184], [47.328789, 8.517831], [47.352791, 8.557245], [47.366556, 8.541964], [47.418015, 8.483102], [47.360981, 8.524758], [47.393336, 8.524781], [47.406957, 8.487496], [47.376274, 8.541622], [47.386613, 8.518393], [47.400214, 8.547788], [47.423664, 8.545984], [47.373888, 8.536289], [47.405361, 8.557925], [47.363214, 8.564918], [47.385589, 8.517352], [47.4021, 8.49735], [47.418225, 8.546613], [47.390362, 8.490375], [47.431355, 8.532689], [47.387051, 8.534984], [47.373666, 8.535914], [47.357112, 8.522918], [47.41442, 8.551291], [47.378439, 8.489914], [47.37364, 8.532021], [47.341817, 8.530839], [47.364349, 8.532902], [47.377349, 8.498898], [47.371792, 8.529599], [47.391542, 8.486226], [47.377274, 8.541458], [47.372609, 8.532608], [47.3341, 8.513559], [47.373326, 8.517634], [47.360953, 8.598814], [47.376238, 8.544495], [47.386531, 8.518537], [47.371801, 8.542841], [47.390953, 8.539939], [47.365167, 8.549892], [47.398521, 8.46828], [47.37651, 8.532953], [47.402636, 8.498672], [47.41316, 8.521979], [47.4063, 8.575951], [47.385017, 8.495554], [47.383172, 8.543646], [47.364457, 8.532905], [47.36933, 8.541677], [47.416075, 8.552187], [47.40751, 8.572718], [47.363913, 8.531464], [47.373886, 8.513461], [47.409323, 8.533058], [47.392738, 8.524239], [47.384095, 8.49988], [47.373119, 8.495225], [47.376248, 8.495353], [47.403861, 8.534231], [47.386583, 8.520644], [47.354646, 8.509565], [47.416974, 8.507439], [47.340395, 8.519469], [47.364389, 8.521915], [47.379756, 8.520624], [47.404689, 8.556692], [47.348118, 8.533271], [47.402442, 8.499304], [47.397313, 8.531301], [47.370476, 8.549738], [47.412287, 8.515322], [47.385001, 8.533896], [47.371725, 8.519548], [47.352544, 8.508318], [47.35979, 8.523158], [47.427537, 8.546356], [47.357866, 8.519293], [47.36413, 8.556702], [47.375956, 8.538252], [47.398985, 8.505422], [47.377837, 8.541866], [47.365467, 8.516323], [47.427321, 8.543568], [47.365405, 8.516255], [47.378441, 8.510255], [47.373478, 8.534917], [47.411912, 8.52846], [47.36696, 8.520179], [47.357954, 8.522313], [47.374132, 8.535195], [47.366638, 8.535266], [47.390324, 8.537886], [47.387428, 8.487628], [47.376186, 8.495299], [47.406358, 8.583744], [47.377069, 8.538434], [47.378829, 8.539715], [47.373204, 8.542896], [47.367552, 8.541283], [47.402031, 8.580193], [47.358209, 8.571629], [47.347085, 8.520676], [47.378948, 8.544273], [47.411316, 8.570824], [47.357389, 8.572777], [47.360946, 8.571449], [47.377557, 8.528724], [47.366129, 8.520547], [47.372945, 8.531291], [47.370503, 8.529891], [47.379654, 8.506519], [47.370857, 8.474803], [47.374369, 8.533903], [47.402541, 8.495279], [47.369, 8.502942], [47.37079, 8.531843], [47.369034, 8.503168], [47.370295, 8.548847], [47.36686, 8.545982], [47.372969, 8.53639], [47.360614, 8.516807], [47.407827, 8.54747], [47.375908, 8.541337], [47.37889, 8.527652], [47.387807, 8.529185], [47.402195, 8.537217], [47.356023, 8.557869], [47.402537, 8.553229], [47.375421, 8.558303], [47.365631, 8.566955], [47.413627, 8.480975], [47.391318, 8.536516], [47.360737, 8.578091], [47.379039, 8.545109], [47.379006, 8.508492], [47.405243, 8.481049], [47.385498, 8.475233], [47.371117, 8.539119], [47.413618, 8.480975], [47.384906, 8.558886], [47.387484, 8.519589], [47.364501, 8.536785], [47.387028, 8.485117], [47.360358, 8.547674], [47.379921, 8.543128], [47.413128, 8.538675], [47.373001, 8.500281], [47.375223, 8.518652], [47.389791, 8.512338], [47.416287, 8.545115], [47.378725, 8.528933], [47.369484, 8.526401], [47.372467, 8.51996], [47.35602, 8.553501], [47.37361, 8.534297], [47.388484, 8.491185], [47.339645, 8.528452], [47.340076, 8.53521], [47.390999, 8.478572], [47.367362, 8.544284], [47.377255, 8.538756], [47.367924, 8.560608], [47.371633, 8.519705], [47.407551, 8.556553], [47.350978, 8.53423], [47.360126, 8.534272], [47.373437, 8.481023], [47.389428, 8.513708], [47.352493, 8.531984], [47.369085, 8.503566], [47.3653, 8.526527], [47.41852, 8.542073], [47.393515, 8.472899], [47.369604, 8.507694], [47.371708, 8.547831], [47.379971, 8.520735], [47.343391, 8.535649], [47.377135, 8.541984], [47.387841, 8.485716], [47.367851, 8.564446], [47.332085, 8.516495], [47.357469, 8.550658], [47.37578, 8.524477], [47.392304, 8.503209], [47.374841, 8.545671], [47.377498, 8.503244], [47.410886, 8.563275], [47.373645, 8.534364], [47.383448, 8.531718], [47.418295, 8.538305], [47.371999, 8.566096], [47.375808, 8.536806], [47.368219, 8.546818], [47.405764, 8.591946], [47.377423, 8.500607], [47.400214, 8.494], [47.414389, 8.552602], [47.368074, 8.540393], [47.374009, 8.492383], [47.381048, 8.550369], [47.373646, 8.530432], [47.387779, 8.499344], [47.377653, 8.510809], [47.360872, 8.598852], [47.402361, 8.499303], [47.36681, 8.558638], [47.365661, 8.523542], [47.361601, 8.547461], [47.366185, 8.548801], [47.390431, 8.542723], [47.36747, 8.54614], [47.378647, 8.54183], [47.360271, 8.522784], [47.393327, 8.524795], [47.360935, 8.531495], [47.405186, 8.480452], [47.361897, 8.503581], [47.421357, 8.502385], [47.352264, 8.559604], [47.373451, 8.548079], [47.363527, 8.535096], [47.408602, 8.546452], [47.351421, 8.525503], [47.380089, 8.536801], [47.397437, 8.591673], [47.378312, 8.510584], [47.391913, 8.528806], [47.415958, 8.547506], [47.372602, 8.534356], [47.366272, 8.562096], [47.374768, 8.552344], [47.361739, 8.56114], [47.36966, 8.523889], [47.34539, 8.534485], [47.371854, 8.522027], [47.405047, 8.478912], [47.378038, 8.548134], [47.368846, 8.521449], [47.375546, 8.548149], [47.402122, 8.501775], [47.366556, 8.547604], [47.385437, 8.536368], [47.36821, 8.536424], [47.37639, 8.527495], [47.408876, 8.564624], [47.402077, 8.580101], [47.393623, 8.539094], [47.389758, 8.526417], [47.395065, 8.484586], [47.384998, 8.53232], [47.384198, 8.511192], [47.356227, 8.571971], [47.41393, 8.548909], [47.406836, 8.532583], [47.368518, 8.543752], [47.358699, 8.590372], [47.390888, 8.522069], [47.401552, 8.586767], [47.35046, 8.51864], [47.393369, 8.495031], [47.369315, 8.547873], [47.391638, 8.523581], [47.365228, 8.501424], [47.369108, 8.547949], [47.391551, 8.486226], [47.388254, 8.486704], [47.358059, 8.519761], [47.384227, 8.497326], [47.399757, 8.533444], [47.367881, 8.523654], [47.386574, 8.5032], [47.407128, 8.586821], [47.368228, 8.511612], [47.388063, 8.524952], [47.40976, 8.479932], [47.389111, 8.546259], [47.390779, 8.52306], [47.373066, 8.524223], [47.377398, 8.550121], [47.362746, 8.547207], [47.376274, 8.540761], [47.378517, 8.541351], [47.365731, 8.537048], [47.400909, 8.591682], [47.36024, 8.548691], [47.375511, 8.548082], [47.364366, 8.566597], [47.427402, 8.538877], [47.341756, 8.530732], [47.358834, 8.533914], [47.414308, 8.550719], [47.406504, 8.573518], [47.422493, 8.550784], [47.40951, 8.543636], [47.409435, 8.543038], [47.374974, 8.544959], [47.407093, 8.58678], [47.40564, 8.591718], [47.36455, 8.56623], [47.369305, 8.548059], [47.378982, 8.511034], [47.41079, 8.567606], [47.36907, 8.528259], [47.378877, 8.526169], [47.384336, 8.531909], [47.426491, 8.541933], [47.371084, 8.523613], [47.36063, 8.59788], [47.423697, 8.539662], [47.376749, 8.538043], [47.390754, 8.521934], [47.37606, 8.533898], [47.403104, 8.558699], [47.374732, 8.545788], [47.37454, 8.539534], [47.366475, 8.544875], [47.375261, 8.485204], [47.388591, 8.496168], [47.417893, 8.482768], [47.410208, 8.546817], [47.369977, 8.511118], [47.398951, 8.533096], [47.364441, 8.555279], [47.371235, 8.513235], [47.408382, 8.550582], [47.386769, 8.547588], [47.369615, 8.525847], [47.349017, 8.526658], [47.363062, 8.49917], [47.408754, 8.546455], [47.374528, 8.544618], [47.377435, 8.526457], [47.381213, 8.491452], [47.388599, 8.528235], [47.341175, 8.530336], [47.365686, 8.525661], [47.357893, 8.520154], [47.405332, 8.55815], [47.360542, 8.566781], [47.359129, 8.526534], [47.392023, 8.487772], [47.367549, 8.545414], [47.367501, 8.530597], [47.365758, 8.563237], [47.376648, 8.527805], [47.364033, 8.531148], [47.402787, 8.557076], [47.368141, 8.521819], [47.338006, 8.525812], [47.378931, 8.508782], [47.372802, 8.535062], [47.417182, 8.545624], [47.374723, 8.520178], [47.413496, 8.563119], [47.37509, 8.48524], [47.326405, 8.527467], [47.37617, 8.488108], [47.373365, 8.531644], [47.369656, 8.564723], [47.380118, 8.528048], [47.388496, 8.488815], [47.349837, 8.576031], [47.373167, 8.53642], [47.359436, 8.509026], [47.402209, 8.496266], [47.410895, 8.563223], [47.380635, 8.525728], [47.3729, 8.547418], [47.371105, 8.539436], [47.391421, 8.536041], [47.35664, 8.555446], [47.360107, 8.526765], [47.362209, 8.484233], [47.384778, 8.527031], [47.376734, 8.540546], [47.388197, 8.480146], [47.374531, 8.549876], [47.355577, 8.556523], [47.365428, 8.564739], [47.418125, 8.554165], [47.392093, 8.538294], [47.410671, 8.572374], [47.374708, 8.52566], [47.39949, 8.5208], [47.36277, 8.567993], [47.403574, 8.548256], [47.374415, 8.524211], [47.375183, 8.539137], [47.377153, 8.541971], [47.382808, 8.529944], [47.383478, 8.549294], [47.421484, 8.550087], [47.374518, 8.54001], [47.364862, 8.53094], [47.381094, 8.513169], [47.37822, 8.520461], [47.376706, 8.544465], [47.367219, 8.565611], [47.382703, 8.500673], [47.387149, 8.535066], [47.376746, 8.559907], [47.41995, 8.506637], [47.376502, 8.534767], [47.372631, 8.529312], [47.362894, 8.523142], [47.379194, 8.525857], [47.364555, 8.555546], [47.37745, 8.498688], [47.374109, 8.538545], [47.355773, 8.584312], [47.427449, 8.546155], [47.361577, 8.51774], [47.380362, 8.528], [47.361721, 8.565773], [47.380524, 8.493081], [47.374013, 8.544793], [47.372064, 8.534107], [47.356337, 8.511558], [47.382504, 8.529686], [47.418686, 8.547285], [47.354745, 8.574547], [47.370714, 8.557648], [47.373887, 8.536303], [47.420868, 8.550511], [47.391005, 8.521012], [47.365752, 8.550844], [47.357533, 8.535489], [47.385848, 8.529927], [47.409563, 8.549361], [47.41023, 8.54365], [47.403848, 8.570069], [47.381865, 8.51541], [47.388891, 8.495816], [47.377154, 8.553042], [47.409338, 8.544679], [47.369072, 8.521334], [47.341131, 8.536846], [47.37766, 8.508094], [47.383751, 8.548916], [47.404427, 8.574375], [47.370984, 8.531397], [47.40884, 8.54594], [47.366218, 8.49444], [47.351564, 8.525625], [47.41654, 8.545902], [47.392038, 8.538359], [47.364044, 8.55163], [47.420001, 8.538631], [47.386211, 8.535298], [47.373795, 8.536513], [47.370063, 8.541136], [47.373652, 8.544905], [47.363866, 8.517257], [47.397569, 8.505818], [47.374263, 8.538389], [47.386243, 8.540504], [47.360027, 8.589725], [47.403864, 8.569407], [47.407424, 8.574173], [47.413563, 8.48108], [47.372275, 8.535634], [47.377889, 8.498829], [47.378287, 8.530487], [47.370328, 8.602169], [47.383175, 8.506073], [47.367869, 8.494843], [47.371006, 8.535674], [47.410449, 8.544251], [47.382423, 8.540147], [47.397774, 8.532953], [47.416307, 8.545831], [47.360351, 8.525711], [47.333631, 8.52997], [47.38642, 8.496509], [47.410419, 8.550121], [47.411082, 8.545749], [47.354705, 8.57493], [47.34851, 8.57096], [47.405444, 8.480735], [47.376135, 8.55608], [47.388245, 8.486757], [47.373132, 8.53728], [47.409009, 8.539623], [47.396063, 8.522651], [47.371177, 8.539411], [47.399635, 8.543523], [47.37981, 8.547231], [47.408116, 8.58243], [47.406096, 8.547911], [47.381487, 8.530751], [47.378323, 8.52282], [47.404317, 8.557002], [47.405838, 8.573517], [47.33716, 8.519099], [47.373258, 8.53151], [47.395511, 8.484952], [47.361667, 8.503206], [47.369916, 8.490382], [47.375154, 8.519286], [47.396544, 8.528927], [47.403725, 8.534281], [47.368979, 8.543563], [47.378336, 8.548061], [47.415323, 8.483473], [47.368515, 8.530843], [47.374301, 8.519123], [47.405705, 8.591494], [47.347231, 8.532869], [47.379617, 8.559782], [47.342769, 8.531017], [47.397448, 8.532297], [47.38175, 8.543815], [47.381694, 8.509632], [47.365714, 8.535936], [47.38409, 8.497562], [47.380518, 8.556847], [47.399405, 8.547718], [47.354455, 8.553534], [47.371851, 8.499172], [47.377189, 8.539999], [47.387739, 8.484998], [47.378458, 8.545601], [47.378446, 8.54033], [47.35852, 8.531988], [47.354984, 8.510935], [47.366521, 8.540917], [47.418277, 8.510527], [47.393381, 8.524782], [47.369521, 8.555491], [47.390091, 8.52257], [47.379806, 8.542], [47.38618, 8.498212], [47.417865, 8.554093], [47.393862, 8.505015], [47.374537, 8.539852], [47.368333, 8.524431], [47.366456, 8.544888], [47.414329, 8.546691], [47.41425, 8.508299], [47.411471, 8.526569], [47.378929, 8.542432], [47.390339, 8.522111], [47.364069, 8.520558], [47.377075, 8.540672], [47.378903, 8.511761], [47.359085, 8.526427], [47.367919, 8.490369], [47.387936, 8.531718], [47.330783, 8.529634], [47.376543, 8.535099], [47.378402, 8.541084], [47.339924, 8.530324], [47.379774, 8.518678], [47.362206, 8.551962], [47.380306, 8.517576], [47.360299, 8.566802], [47.379937, 8.483441], [47.409449, 8.545304], [47.385151, 8.532323], [47.369417, 8.541904], [47.413722, 8.546188], [47.369644, 8.539856], [47.427032, 8.546504], [47.374286, 8.53786], [47.368533, 8.53083], [47.418322, 8.538305], [47.390942, 8.522017], [47.366655, 8.545713], [47.389883, 8.521771], [47.427078, 8.491484], [47.365759, 8.563078], [47.426424, 8.547062], [47.419507, 8.500029], [47.39776, 8.533496], [47.37332, 8.549519], [47.386014, 8.535268], [47.367452, 8.537666], [47.366817, 8.54573], [47.374314, 8.535861], [47.398222, 8.53691], [47.367735, 8.521969], [47.378535, 8.541325], [47.360455, 8.48723], [47.353995, 8.600198], [47.421218, 8.549617], [47.366525, 8.522514], [47.369405, 8.549755], [47.376995, 8.544339], [47.408712, 8.546216], [47.409291, 8.544877], [47.377028, 8.52862], [47.369213, 8.512969], [47.36519, 8.502601], [47.376239, 8.562107], [47.398122, 8.53614], [47.369216, 8.547871], [47.364773, 8.554425], [47.414858, 8.551592], [47.378934, 8.559688], [47.401575, 8.489814], [47.40382, 8.556369], [47.329926, 8.512588], [47.372201, 8.560116], [47.36686, 8.532702], [47.362167, 8.547526], [47.353064, 8.518177], [47.330929, 8.515943], [47.397596, 8.532804], [47.359061, 8.531841], [47.365826, 8.556208], [47.379485, 8.516964], [47.399428, 8.516838], [47.364434, 8.520075], [47.358642, 8.589788], [47.381436, 8.540842], [47.384399, 8.531937], [47.340956, 8.526785], [47.397768, 8.532688], [47.381211, 8.481811], [47.348279, 8.534293], [47.391293, 8.522952], [47.375766, 8.535547], [47.391383, 8.536292], [47.379118, 8.549958], [47.386589, 8.488883], [47.372656, 8.520957], [47.405697, 8.59148], [47.375121, 8.545584], [47.397776, 8.494045], [47.386934, 8.490453], [47.378639, 8.526614], [47.380895, 8.528673], [47.393651, 8.511263], [47.349977, 8.56076], [47.40391, 8.546103], [47.381499, 8.571529], [47.375936, 8.537537], [47.366594, 8.53516], [47.415009, 8.544266], [47.378036, 8.509307], [47.367503, 8.578765], [47.369174, 8.49189], [47.410508, 8.550282], [47.375767, 8.556973], [47.375032, 8.544576], [47.367749, 8.487373], [47.359253, 8.586187], [47.383661, 8.549006], [47.387266, 8.51879], [47.35962, 8.593582], [47.37954, 8.516806], [47.377466, 8.512553], [47.408456, 8.548516], [47.366591, 8.54121], [47.358149, 8.519802], [47.408804, 8.579318], [47.402166, 8.496013], [47.406612, 8.551327], [47.402671, 8.486921], [47.368938, 8.518353], [47.35178, 8.52555], [47.401245, 8.586893], [47.376512, 8.536476], [47.394249, 8.4902], [47.407899, 8.579802], [47.3791, 8.549918], [47.376504, 8.543905], [47.419829, 8.54817], [47.377317, 8.526587], [47.357564, 8.578724], [47.371288, 8.520122], [47.413975, 8.525202], [47.413489, 8.539557], [47.344118, 8.532024], [47.372736, 8.550408], [47.367308, 8.561045], [47.405846, 8.480982], [47.390269, 8.485724], [47.368835, 8.539774], [47.38878, 8.483244], [47.368759, 8.500859], [47.377321, 8.521303], [47.370268, 8.518525], [47.379885, 8.544081], [47.376721, 8.538136], [47.396298, 8.540619], [47.368439, 8.536071], [47.410564, 8.550071], [47.365099, 8.553187], [47.388992, 8.538972], [47.374294, 8.524685], [47.390566, 8.545547], [47.427387, 8.546061], [47.391057, 8.522232], [47.374141, 8.54089], [47.377632, 8.533175], [47.368467, 8.524526], [47.380191, 8.501947], [47.380599, 8.517092], [47.390856, 8.533076], [47.382468, 8.514415], [47.376775, 8.528668], [47.373831, 8.53654], [47.41133, 8.485356], [47.387642, 8.499593], [47.376374, 8.541598], [47.365703, 8.54564], [47.361616, 8.50674], [47.370858, 8.531315], [47.395097, 8.525904], [47.380256, 8.542923], [47.409791, 8.537771], [47.364777, 8.554015], [47.377539, 8.505668], [47.362534, 8.510571], [47.365763, 8.532733], [47.396927, 8.50917], [47.375906, 8.538807], [47.379909, 8.527329], [47.408712, 8.546243], [47.408136, 8.547145], [47.371986, 8.556364], [47.398723, 8.539106], [47.417081, 8.545767], [47.366565, 8.494883], [47.360087, 8.56084], [47.416434, 8.514359], [47.360423, 8.526666], [47.362344, 8.510699], [47.375039, 8.537214], [47.366848, 8.535893], [47.358812, 8.58259], [47.380991, 8.518425], [47.337468, 8.532338], [47.36685, 8.553502], [47.393587, 8.5248], [47.397036, 8.483472], [47.372719, 8.563304], [47.363404, 8.505981], [47.357888, 8.554811], [47.377845, 8.541973], [47.368775, 8.537614], [47.396874, 8.530206], [47.389166, 8.541426], [47.401329, 8.545056], [47.371819, 8.601566], [47.364482, 8.536917], [47.400789, 8.548886], [47.406893, 8.580588], [47.374533, 8.552498], [47.335092, 8.518051], [47.366662, 8.542231], [47.372667, 8.575048], [47.414508, 8.558939], [47.370041, 8.540646], [47.415221, 8.527626], [47.366846, 8.542711], [47.38866, 8.483679], [47.365118, 8.534269], [47.407899, 8.579802], [47.33521, 8.531365], [47.403826, 8.53415], [47.384232, 8.541933], [47.330771, 8.516469], [47.395526, 8.545227], [47.375399, 8.52386], [47.378336, 8.509882], [47.354631, 8.526561], [47.413098, 8.567019], [47.361989, 8.526552], [47.368188, 8.53024], [47.385259, 8.517041], [47.365018, 8.567127], [47.419179, 8.50637], [47.376591, 8.529154], [47.373501, 8.515241], [47.382054, 8.528856], [47.413702, 8.545472], [47.391313, 8.516011], [47.370161, 8.548791], [47.413319, 8.476212], [47.413357, 8.532611], [47.379588, 8.527097], [47.42888, 8.545124], [47.381579, 8.537203], [47.353456, 8.576611], [47.396357, 8.492891], [47.37006, 8.511901], [47.332672, 8.518095], [47.413966, 8.541422], [47.381518, 8.56504], [47.359779, 8.548946], [47.355984, 8.573832], [47.384673, 8.542842], [47.345446, 8.533362], [47.379958, 8.519265], [47.402588, 8.553468], [47.374931, 8.544759], [47.362122, 8.559665], [47.383271, 8.53043], [47.382178, 8.588363], [47.401363, 8.593083], [47.415423, 8.544222], [47.372511, 8.534447], [47.378661, 8.519477], [47.373159, 8.538208], [47.363389, 8.575446], [47.346101, 8.534447], [47.409062, 8.545389], [47.389246, 8.491399], [47.378915, 8.549556], [47.375525, 8.480945], [47.364577, 8.566217], [47.354858, 8.574867], [47.380851, 8.53336], [47.365091, 8.50256], [47.391209, 8.489266], [47.382031, 8.529359], [47.376074, 8.559641], [47.38645, 8.518522], [47.373506, 8.519504], [47.391899, 8.517785], [47.367547, 8.538039], [47.367808, 8.560539], [47.373453, 8.531831], [47.378607, 8.523289], [47.370403, 8.547009], [47.38809, 8.539165], [47.336974, 8.520709], [47.376498, 8.525683], [47.385887, 8.53255], [47.377746, 8.544804], [47.374691, 8.535935], [47.408409, 8.550622], [47.382427, 8.528413], [47.375713, 8.518238], [47.385276, 8.494711], [47.367596, 8.54515], [47.379734, 8.51534], [47.401753, 8.580968], [47.3939, 8.525031], [47.375302, 8.547309], [47.37157, 8.51589], [47.392294, 8.509169], [47.392207, 8.509843], [47.375094, 8.518994], [47.358513, 8.518327], [47.367696, 8.496097], [47.373786, 8.519431], [47.380194, 8.535241], [47.367017, 8.536121], [47.373613, 8.549976], [47.387483, 8.518702], [47.377311, 8.512735], [47.359103, 8.532172], [47.370704, 8.537151], [47.379145, 8.549998], [47.393677, 8.502653], [47.385826, 8.51798], [47.375433, 8.526959], [47.407923, 8.578305], [47.387974, 8.490831], [47.380987, 8.504387], [47.381102, 8.518109], [47.367991, 8.540603], [47.327797, 8.529586], [47.391379, 8.545193], [47.378989, 8.542804], [47.368926, 8.54809], [47.399498, 8.515117], [47.374438, 8.495596], [47.384396, 8.548333], [47.399058, 8.533271], [47.411379, 8.545688], [47.381454, 8.540842], [47.403008, 8.486544], [47.403136, 8.486268], [47.391078, 8.522841], [47.370197, 8.548792], [47.379973, 8.516656], [47.382531, 8.540136], [47.386772, 8.49045], [47.410236, 8.549521], [47.398732, 8.505563], [47.366847, 8.558467], [47.388407, 8.517065], [47.369755, 8.509829], [47.373471, 8.534732], [47.383335, 8.530365], [47.393384, 8.537711], [47.374594, 8.538621], [47.363609, 8.535058], [47.380995, 8.538091], [47.409557, 8.55005], [47.376943, 8.522262], [47.377073, 8.541864], [47.384643, 8.532829], [47.386561, 8.542987], [47.402871, 8.535204], [47.383559, 8.573307], [47.37128, 8.525669], [47.41053, 8.572106], [47.391035, 8.522628], [47.387473, 8.528357], [47.392623, 8.47504], [47.363437, 8.533268], [47.376642, 8.535128], [47.399475, 8.495178], [47.427963, 8.551653], [47.363357, 8.533186], [47.395571, 8.486278], [47.370686, 8.537124], [47.374513, 8.539547], [47.359681, 8.508806], [47.408005, 8.546745], [47.378893, 8.542445], [47.379189, 8.527407], [47.362276, 8.526691], [47.324365, 8.518549], [47.363381, 8.533452], [47.344508, 8.529782], [47.36727, 8.545368], [47.36344, 8.53385], [47.394916, 8.491061], [47.367251, 8.546427], [47.382804, 8.532222], [47.37942, 8.529636], [47.340867, 8.531455], [47.374984, 8.534498], [47.366629, 8.535266], [47.396049, 8.527009], [47.359191, 8.563204], [47.400461, 8.543673], [47.377791, 8.498761], [47.383355, 8.539584], [47.367933, 8.544707], [47.339869, 8.529529], [47.3975, 8.532444], [47.401781, 8.499742], [47.348036, 8.534354], [47.35976, 8.557431], [47.414281, 8.550784], [47.361847, 8.507062], [47.376601, 8.527089], [47.41209, 8.524806], [47.390323, 8.509289], [47.366457, 8.566257], [47.377742, 8.537667], [47.363164, 8.533619], [47.388783, 8.536292], [47.402563, 8.49981], [47.420803, 8.547011], [47.370304, 8.548861], [47.3577, 8.559281], [47.324853, 8.504826], [47.410139, 8.565155], [47.398312, 8.536912], [47.378301, 8.509842], [47.387954, 8.546857], [47.391489, 8.523128], [47.368228, 8.537365], [47.361105, 8.547636], [47.378325, 8.525561], [47.391096, 8.522828], [47.414306, 8.48348], [47.370952, 8.523279], [47.370057, 8.564162], [47.377666, 8.541956], [47.364772, 8.554531], [47.37677, 8.517743], [47.414107, 8.545427], [47.3629, 8.548945], [47.417537, 8.546095], [47.403508, 8.485918], [47.420942, 8.539009], [47.374066, 8.519317], [47.370558, 8.519259], [47.354361, 8.511241], [47.367993, 8.540352], [47.413222, 8.55336], [47.33159, 8.529875], [47.370755, 8.548751], [47.374485, 8.535878], [47.36402, 8.528712], [47.358414, 8.518312], [47.381777, 8.55686], [47.374007, 8.546369], [47.369336, 8.555103], [47.387167, 8.518881], [47.415347, 8.514165], [47.335704, 8.516158], [47.403548, 8.483494], [47.357298, 8.572828], [47.374319, 8.52393], [47.427431, 8.546141], [47.369212, 8.465635], [47.367843, 8.534417], [47.362181, 8.548917], [47.4139, 8.526486], [47.366156, 8.540513], [47.390601, 8.478842], [47.384739, 8.496409], [47.368494, 8.5245], [47.39054, 8.490577], [47.397031, 8.511464], [47.414083, 8.548872], [47.413209, 8.538716], [47.360678, 8.524447], [47.387381, 8.527653], [47.364878, 8.566714], [47.415109, 8.562795], [47.414544, 8.558927], [47.415358, 8.570513], [47.379758, 8.506878], [47.386823, 8.52004], [47.378201, 8.509866], [47.36655, 8.540759], [47.385895, 8.542113], [47.366991, 8.558483], [47.3499, 8.561314], [47.365164, 8.564151], [47.359139, 8.555591], [47.369116, 8.52536], [47.392063, 8.526226], [47.374998, 8.518648], [47.377256, 8.538689], [47.361802, 8.550934], [47.362436, 8.504691], [47.413793, 8.545354], [47.364316, 8.529751], [47.406602, 8.588227], [47.369304, 8.522557], [47.387582, 8.525393], [47.360271, 8.567768], [47.408821, 8.539447], [47.372011, 8.534079], [47.368688, 8.524875], [47.373032, 8.534497], [47.364764, 8.545965], [47.379681, 8.519047], [47.373612, 8.519758], [47.37074, 8.535232], [47.338073, 8.538636], [47.399386, 8.572015], [47.356163, 8.520477], [47.389266, 8.485254], [47.367806, 8.535476], [47.357537, 8.521683], [47.399162, 8.547832], [47.370998, 8.563652], [47.406212, 8.573021], [47.377177, 8.543204], [47.402566, 8.588776], [47.376037, 8.488953], [47.367308, 8.53953], [47.36765, 8.495262], [47.397404, 8.532177], [47.37552, 8.513851], [47.366313, 8.541085], [47.380073, 8.520459], [47.386393, 8.534189], [47.366754, 8.544801], [47.386085, 8.541958], [47.367821, 8.546068], [47.364611, 8.566443], [47.339541, 8.529985], [47.366582, 8.536404], [47.366242, 8.521052], [47.37954, 8.527321], [47.397583, 8.532273], [47.389062, 8.494813], [47.408712, 8.546216], [47.391064, 8.479408], [47.392304, 8.503209], [47.3793, 8.51749], [47.371431, 8.517238], [47.399144, 8.547819], [47.41015, 8.524475], [47.379201, 8.522295], [47.357873, 8.571966], [47.363473, 8.535135], [47.369441, 8.533748], [47.369771, 8.518754], [47.392659, 8.524039], [47.41488, 8.545496], [47.412959, 8.537625], [47.373837, 8.532117], [47.329882, 8.529721], [47.42212, 8.50354], [47.422246, 8.503529], [47.380291, 8.520145], [47.362039, 8.503875], [47.414102, 8.519334], [47.393351, 8.493056], [47.372467, 8.519973], [47.397643, 8.493883], [47.383851, 8.530919], [47.37017, 8.548831], [47.369184, 8.527679], [47.391318, 8.515468], [47.377803, 8.509196], [47.354153, 8.57525], [47.363789, 8.566744], [47.409116, 8.546304], [47.374325, 8.543237], [47.419116, 8.506435], [47.385337, 8.508579], [47.396019, 8.545316], [47.381514, 8.513482], [47.404346, 8.503529], [47.386213, 8.539854], [47.364057, 8.567014], [47.353559, 8.576216], [47.380608, 8.512298], [47.361407, 8.573921], [47.426306, 8.554681], [47.368107, 8.536846], [47.408971, 8.550144], [47.392438, 8.496509], [47.397477, 8.532073], [47.384367, 8.548518], [47.407608, 8.486144], [47.375203, 8.544566], [47.419986, 8.503696], [47.377494, 8.498742], [47.392088, 8.499284], [47.390725, 8.522132], [47.394936, 8.512336], [47.409967, 8.525796], [47.350464, 8.567984], [47.37749, 8.518605], [47.416947, 8.538171], [47.413228, 8.531998], [47.371041, 8.523414], [47.388091, 8.536238], [47.39184, 8.528831], [47.399315, 8.515405], [47.384753, 8.527825], [47.360588, 8.566689], [47.401256, 8.54516], [47.36983, 8.509566], [47.414131, 8.53635], [47.407881, 8.576144], [47.380324, 8.528145], [47.363933, 8.56676], [47.394106, 8.493138], [47.362242, 8.55935], [47.407795, 8.584], [47.417837, 8.554238], [47.35573, 8.574079], [47.365523, 8.53241], [47.338302, 8.53917], [47.370264, 8.495579], [47.393363, 8.524782], [47.374426, 8.542087], [47.378288, 8.530394], [47.399682, 8.477271], [47.403504, 8.487375], [47.36392, 8.547669], [47.376075, 8.522788], [47.39813, 8.536232], [47.391307, 8.515733], [47.387668, 8.529686], [47.417675, 8.546734], [47.366669, 8.541463], [47.34058, 8.524753], [47.368014, 8.544735], [47.37513, 8.528608], [47.332043, 8.535217], [47.377521, 8.54484], [47.380119, 8.544112], [47.418106, 8.538327], [47.418115, 8.538367], [47.411536, 8.523509], [47.37833, 8.526873], [47.378319, 8.509829], [47.378428, 8.483147], [47.418856, 8.507265], [47.364347, 8.550087], [47.387183, 8.519027], [47.380591, 8.536984], [47.386381, 8.498799], [47.373495, 8.52925], [47.3592, 8.511285], [47.365513, 8.539149], [47.358504, 8.518393], [47.413949, 8.54883], [47.416612, 8.513594], [47.369903, 8.564251], [47.391885, 8.485053], [47.380653, 8.547447], [47.382147, 8.543664], [47.387488, 8.53343], [47.344412, 8.530402], [47.363272, 8.557028], [47.352482, 8.508185], [47.387735, 8.519661], [47.375264, 8.490885], [47.388588, 8.539851], [47.376038, 8.527673], [47.378326, 8.527323], [47.360199, 8.523696], [47.430771, 8.540219], [47.373247, 8.535574], [47.37838, 8.530184], [47.384241, 8.531576], [47.39066, 8.508885], [47.387438, 8.544357], [47.419186, 8.546752], [47.36969, 8.539765], [47.369622, 8.51544], [47.425918, 8.552949], [47.369644, 8.525596], [47.375762, 8.549093], [47.374568, 8.538515], [47.390989, 8.51309], [47.35347, 8.576069], [47.409027, 8.539597], [47.376207, 8.527836], [47.388844, 8.52514], [47.381133, 8.531989], [47.371011, 8.538878], [47.370534, 8.549276], [47.376582, 8.534849], [47.385767, 8.499012], [47.38599, 8.498248], [47.388181, 8.485908], [47.393354, 8.524795], [47.373222, 8.531562], [47.385975, 8.535545], [47.375422, 8.528137], [47.376906, 8.54333], [47.374262, 8.538535], [47.382539, 8.51447], [47.326487, 8.515827], [47.374627, 8.537086], [47.373752, 8.53822], [47.374503, 8.533985], [47.374029, 8.519343], [47.379353, 8.495216], [47.363703, 8.553397], [47.362195, 8.5475], [47.359558, 8.548504], [47.373794, 8.537638], [47.381436, 8.553026], [47.419261, 8.54739], [47.419283, 8.547854], [47.382475, 8.514574], [47.367192, 8.546955], [47.373486, 8.503296], [47.398968, 8.538913], [47.359648, 8.522983], [47.39316, 8.546158], [47.382431, 8.514481], [47.366161, 8.497682], [47.38963, 8.512215], [47.368105, 8.495642], [47.376626, 8.533062], [47.368122, 8.523831], [47.378056, 8.513876], [47.390364, 8.525092], [47.364618, 8.547153], [47.371474, 8.55532], [47.39143, 8.536041], [47.364632, 8.537198], [47.380703, 8.525199], [47.386958, 8.483831], [47.40458, 8.556809], [47.401596, 8.499261], [47.376395, 8.518345], [47.395455, 8.531885], [47.418699, 8.507726], [47.397691, 8.533216], [47.41104, 8.545456], [47.422593, 8.55068], [47.35157, 8.602435], [47.430153, 8.549326], [47.374094, 8.535433], [47.379764, 8.527418], [47.404607, 8.550304], [47.40841, 8.551444], [47.426637, 8.492496], [47.369179, 8.54803], [47.36584, 8.531199], [47.363626, 8.535151], [47.36066, 8.531132], [47.365986, 8.53479], [47.368495, 8.524355], [47.368382, 8.602497], [47.368543, 8.530751], [47.361956, 8.531053], [47.422323, 8.512636], [47.390705, 8.508806], [47.403288, 8.497201], [47.411235, 8.570783], [47.417791, 8.483071], [47.411254, 8.544732], [47.326697, 8.517352], [47.377845, 8.498788], [47.426272, 8.554441], [47.402074, 8.498197], [47.389145, 8.494629], [47.427548, 8.54617], [47.397616, 8.532592], [47.41221, 8.546329], [47.39343, 8.512809], [47.365427, 8.502262], [47.375322, 8.485483], [47.369695, 8.508583], [47.371579, 8.51593], [47.384616, 8.516525], [47.384908, 8.531391], [47.379464, 8.529677], [47.367381, 8.494158], [47.408676, 8.564792], [47.380267, 8.546406], [47.390538, 8.489782], [47.381807, 8.540571], [47.358357, 8.520561], [47.365332, 8.564406], [47.376488, 8.483811], [47.361564, 8.535374], [47.395451, 8.527474], [47.373027, 8.531213], [47.411118, 8.5354], [47.3662, 8.534052], [47.376979, 8.542272], [47.363358, 8.533001], [47.418852, 8.553371], [47.419012, 8.50308], [47.419762, 8.508542], [47.384342, 8.531313], [47.388296, 8.490996], [47.414833, 8.519164], [47.366745, 8.545781], [47.385839, 8.530933], [47.381845, 8.516535], [47.373894, 8.546009], [47.388714, 8.520727], [47.374159, 8.528549], [47.353178, 8.575586], [47.391282, 8.520315], [47.391152, 8.522644], [47.369782, 8.554517], [47.391627, 8.517077], [47.36507, 8.530865], [47.37464, 8.53849], [47.373275, 8.520122], [47.410709, 8.543316], [47.369266, 8.525628], [47.401773, 8.580823], [47.390213, 8.522042], [47.393264, 8.501506], [47.345249, 8.535144], [47.411674, 8.562683], [47.393214, 8.530104], [47.38838, 8.482799], [47.369081, 8.528048], [47.362222, 8.547435], [47.365371, 8.538894], [47.373011, 8.532921], [47.364808, 8.566566], [47.385732, 8.508706], [47.390896, 8.48106], [47.419666, 8.543568], [47.39384, 8.507386], [47.374523, 8.557211], [47.422602, 8.550667], [47.372957, 8.48541], [47.405376, 8.504941], [47.382564, 8.537607], [47.410302, 8.543625], [47.398226, 8.509739], [47.407556, 8.579039], [47.377547, 8.528869], [47.399318, 8.542762], [47.391339, 8.532423], [47.384788, 8.531706], [47.379099, 8.527405], [47.426153, 8.547175], [47.369186, 8.513022], [47.380663, 8.537025], [47.4111, 8.545775], [47.412226, 8.553948], [47.399782, 8.504895], [47.410647, 8.551689], [47.402034, 8.497653], [47.379129, 8.52228], [47.367127, 8.544399], [47.370052, 8.548869], [47.375641, 8.526818], [47.376907, 8.541344], [47.335764, 8.518422], [47.384154, 8.531177], [47.382457, 8.537578], [47.369043, 8.528245], [47.366149, 8.548761], [47.374888, 8.527491], [47.350965, 8.559973], [47.41918, 8.506264], [47.373836, 8.527469], [47.360412, 8.552348], [47.391526, 8.523102], [47.398764, 8.512797], [47.333708, 8.528529], [47.410445, 8.546491], [47.431283, 8.538401], [47.397617, 8.540077], [47.369587, 8.525939], [47.37742, 8.543209], [47.398861, 8.590485]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_191a9ce2dbf182fadbc7de545d94211d = L.heatLayer(\n", - " [[47.380736, 8.525465], [47.407693, 8.532335], [47.377631, 8.498572], [47.379607, 8.573647], [47.405838, 8.590781], [47.3566, 8.523795], [47.40798, 8.548387], [47.369929, 8.510481], [47.376974, 8.541888], [47.362839, 8.565545], [47.362624, 8.568162], [47.419905, 8.50665], [47.376328, 8.544497], [47.36448, 8.531356], [47.366577, 8.540799], [47.370179, 8.548805], [47.378248, 8.510702], [47.353596, 8.576138], [47.376746, 8.559893], [47.378885, 8.556402], [47.371382, 8.527287], [47.38308, 8.530678], [47.409288, 8.537628], [47.363925, 8.56672], [47.376706, 8.53501], [47.376754, 8.536627], [47.372053, 8.529565], [47.376065, 8.559601], [47.375293, 8.544581], [47.377508, 8.525412], [47.367529, 8.538039], [47.370144, 8.490082], [47.370063, 8.511623], [47.372375, 8.540164], [47.380582, 8.556743], [47.426777, 8.546777], [47.376571, 8.537921], [47.38036, 8.528212], [47.390538, 8.524804], [47.419297, 8.547351], [47.369105, 8.537846], [47.365279, 8.508495], [47.356982, 8.53479], [47.365451, 8.535242], [47.407903, 8.546133], [47.415719, 8.531042], [47.382241, 8.540382], [47.410587, 8.572638], [47.414038, 8.542325], [47.382028, 8.498699], [47.382447, 8.537605], [47.400736, 8.5487], [47.396742, 8.595526], [47.37512, 8.522914], [47.429403, 8.545029], [47.390723, 8.508793], [47.36271, 8.54722], [47.363151, 8.52925], [47.393705, 8.502535], [47.404578, 8.493928], [47.424004, 8.548986], [47.420092, 8.535678], [47.387098, 8.486324], [47.370774, 8.470101], [47.398941, 8.513132], [47.366549, 8.540905], [47.422742, 8.540822], [47.361484, 8.561479], [47.361727, 8.576205], [47.375162, 8.485241], [47.387529, 8.488332], [47.379244, 8.526295], [47.392668, 8.524066], [47.378125, 8.541833], [47.375391, 8.528587], [47.399032, 8.513902], [47.416791, 8.54698], [47.377113, 8.543308], [47.388935, 8.489048], [47.371711, 8.547566], [47.374769, 8.523887], [47.383214, 8.540177], [47.395561, 8.532099], [47.410648, 8.548787], [47.374637, 8.53604], [47.398122, 8.591582], [47.377211, 8.529167], [47.340164, 8.531652], [47.364775, 8.502686], [47.371879, 8.522279], [47.366271, 8.54074], [47.369059, 8.550159], [47.374705, 8.527818], [47.370613, 8.470005], [47.364594, 8.537356], [47.409627, 8.549309], [47.387108, 8.534654], [47.39323, 8.524594], [47.377243, 8.526744], [47.375706, 8.537042], [47.392076, 8.500688], [47.392698, 8.537988], [47.338793, 8.527283], [47.368029, 8.601827], [47.372199, 8.536069], [47.373453, 8.534718], [47.409682, 8.550132], [47.392181, 8.499948], [47.374648, 8.549878], [47.382607, 8.546362], [47.38618, 8.521483], [47.3632, 8.575429], [47.367218, 8.533875], [47.391685, 8.516615], [47.373361, 8.474507], [47.394874, 8.525767], [47.374466, 8.521656], [47.37217, 8.547522], [47.413644, 8.528919], [47.370452, 8.514226], [47.363497, 8.534566], [47.37138, 8.510219], [47.374666, 8.537696], [47.40931, 8.544837], [47.398344, 8.537363], [47.408655, 8.537138], [47.373772, 8.524701], [47.383282, 8.529252], [47.383399, 8.499349], [47.354553, 8.601944], [47.369744, 8.525492], [47.381325, 8.510578], [47.366152, 8.532502], [47.357345, 8.598907], [47.406943, 8.550578], [47.410988, 8.545243], [47.376389, 8.52192], [47.353577, 8.576177], [47.372982, 8.531266], [47.38368, 8.528028], [47.377567, 8.543768], [47.373875, 8.546048], [47.40633, 8.584803], [47.355202, 8.52607], [47.380135, 8.548059], [47.374426, 8.541121], [47.365322, 8.537424], [47.378299, 8.527375], [47.386991, 8.546003], [47.399323, 8.501918], [47.375743, 8.544538], [47.377903, 8.508126], [47.391454, 8.523048], [47.365955, 8.53234], [47.414849, 8.551591], [47.38106, 8.503302], [47.381576, 8.513563], [47.353611, 8.524118], [47.355267, 8.526892], [47.371175, 8.555539], [47.374454, 8.539201], [47.38561, 8.487711], [47.414178, 8.551233], [47.390919, 8.488452], [47.374799, 8.522656], [47.374041, 8.544675], [47.37738, 8.573255], [47.327555, 8.518931], [47.407991, 8.54261], [47.369606, 8.528654], [47.376703, 8.526773], [47.362759, 8.559864], [47.373368, 8.534173], [47.387126, 8.494112], [47.366898, 8.520099], [47.401436, 8.501007], [47.399786, 8.542785], [47.385889, 8.528484], [47.367538, 8.541799], [47.375983, 8.538186], [47.369109, 8.492034], [47.390953, 8.522786], [47.398256, 8.537123], [47.350342, 8.563957], [47.351554, 8.602289], [47.366857, 8.544367], [47.377796, 8.507978], [47.382172, 8.556975], [47.357121, 8.521979], [47.40242, 8.495714], [47.387137, 8.519119], [47.424249, 8.543146], [47.396677, 8.529115], [47.391872, 8.517771], [47.370975, 8.537977], [47.406485, 8.575425], [47.378777, 8.542349], [47.393927, 8.525032], [47.362602, 8.558444], [47.371571, 8.522484], [47.375721, 8.559872], [47.404436, 8.574375], [47.353518, 8.602001], [47.379114, 8.520016], [47.348144, 8.534317], [47.414261, 8.483505], [47.421343, 8.549779], [47.381746, 8.513725], [47.405441, 8.50477], [47.374805, 8.54571], [47.338989, 8.529378], [47.372735, 8.538345], [47.365111, 8.520724], [47.373835, 8.499516], [47.383065, 8.514997], [47.376078, 8.535792], [47.381167, 8.517872], [47.377278, 8.522097], [47.375063, 8.539439], [47.389051, 8.525091], [47.381941, 8.531237], [47.410023, 8.479619], [47.37855, 8.575055], [47.377441, 8.499641], [47.397045, 8.493408], [47.384094, 8.503892], [47.363667, 8.528956], [47.394233, 8.492994], [47.354846, 8.554972], [47.378911, 8.545292], [47.399739, 8.492891], [47.379507, 8.528049], [47.327691, 8.518841], [47.365814, 8.550012], [47.378097, 8.544759], [47.392235, 8.493101], [47.381781, 8.545219], [47.37759, 8.510821], [47.379188, 8.52746], [47.39328, 8.523986], [47.37913, 8.538331], [47.370235, 8.513374], [47.328652, 8.513198], [47.400381, 8.538809], [47.398802, 8.592815], [47.375997, 8.538637], [47.390802, 8.522571], [47.365612, 8.526772], [47.364293, 8.547266], [47.382529, 8.55628], [47.370159, 8.543323], [47.348215, 8.531552], [47.370285, 8.518645], [47.378446, 8.514506], [47.399243, 8.505719], [47.414777, 8.560919], [47.372936, 8.547432], [47.374503, 8.539679], [47.38797, 8.485347], [47.371185, 8.52343], [47.354793, 8.556731], [47.370179, 8.548818], [47.378229, 8.509787], [47.370118, 8.535444], [47.376898, 8.513654], [47.386769, 8.547508], [47.397809, 8.533113], [47.410741, 8.57166], [47.385347, 8.517202], [47.356363, 8.531785], [47.377322, 8.527898], [47.424816, 8.537458], [47.360145, 8.568692], [47.368333, 8.524391], [47.411299, 8.570692], [47.391247, 8.532607], [47.375201, 8.522929], [47.382844, 8.528024], [47.366656, 8.534353], [47.361573, 8.549513], [47.408638, 8.546413], [47.373223, 8.535243], [47.358702, 8.517391], [47.370607, 8.469594], [47.333569, 8.528923], [47.382967, 8.513935], [47.377359, 8.512392], [47.379994, 8.527847], [47.377583, 8.550522], [47.390414, 8.532193], [47.358353, 8.558726], [47.374206, 8.475556], [47.371393, 8.54793], [47.410366, 8.548132], [47.408519, 8.580769], [47.366233, 8.537191], [47.392749, 8.534559], [47.426119, 8.543225], [47.376923, 8.537782], [47.348295, 8.527861], [47.386368, 8.534904], [47.39666, 8.529022], [47.378248, 8.52891], [47.418063, 8.546556], [47.370321, 8.535819], [47.383997, 8.508632], [47.395638, 8.542858], [47.380062, 8.536787], [47.402991, 8.575801], [47.405801, 8.593642], [47.389687, 8.511912], [47.414249, 8.518118], [47.370296, 8.548834], [47.406916, 8.550578], [47.365714, 8.535949], [47.391105, 8.522829], [47.37883, 8.531068], [47.407354, 8.586733], [47.42789, 8.536753], [47.409194, 8.578094], [47.375561, 8.578063], [47.426278, 8.543559], [47.368323, 8.560233], [47.387634, 8.516003], [47.40874, 8.580323], [47.334826, 8.538608], [47.389827, 8.536247], [47.378333, 8.530382], [47.358326, 8.558804], [47.392459, 8.532857], [47.369266, 8.525655], [47.37011, 8.521011], [47.380667, 8.537581], [47.374891, 8.520512], [47.362339, 8.547411], [47.389928, 8.53609], [47.372041, 8.515529], [47.397195, 8.531418], [47.372722, 8.534968], [47.376704, 8.538983], [47.414496, 8.480343], [47.378591, 8.542094], [47.409252, 8.547075], [47.41799, 8.554188], [47.371857, 8.534142], [47.340681, 8.532152], [47.374211, 8.524948], [47.369039, 8.541036], [47.40862, 8.546373], [47.384755, 8.531361], [47.383772, 8.526904], [47.41721, 8.514097], [47.36154, 8.561281], [47.368677, 8.5289], [47.369852, 8.51003], [47.381747, 8.490072], [47.37181, 8.601566], [47.405423, 8.592773], [47.359441, 8.585357], [47.390097, 8.525788], [47.378301, 8.52613], [47.364978, 8.537655], [47.374787, 8.54759], [47.344771, 8.533321], [47.408166, 8.558965], [47.378956, 8.542406], [47.415845, 8.548087], [47.390152, 8.475814], [47.360748, 8.550184], [47.361902, 8.56015], [47.365277, 8.55339], [47.368778, 8.528756], [47.383899, 8.528748], [47.366301, 8.540436], [47.369973, 8.510628], [47.384137, 8.497271], [47.341281, 8.527599], [47.370082, 8.536357], [47.421968, 8.498474], [47.388971, 8.527911], [47.365802, 8.536202], [47.361789, 8.515282], [47.426167, 8.553206], [47.376778, 8.535078], [47.378943, 8.559688], [47.381478, 8.503761], [47.415186, 8.547437], [47.364312, 8.531088], [47.35977, 8.565679], [47.362656, 8.547205], [47.366479, 8.545365], [47.383161, 8.530666], [47.425387, 8.494473], [47.370146, 8.539099], [47.382734, 8.550894], [47.373499, 8.53456], [47.415317, 8.517411], [47.399149, 8.521641], [47.368823, 8.524878], [47.365712, 8.51421], [47.344904, 8.533562], [47.369581, 8.541749], [47.418938, 8.507174], [47.387824, 8.529292], [47.390483, 8.522034], [47.399116, 8.547845], [47.376136, 8.484003], [47.357383, 8.521865], [47.379594, 8.525442], [47.382548, 8.514523], [47.390204, 8.512452], [47.378529, 8.540119], [47.370794, 8.535246], [47.366175, 8.5405], [47.375766, 8.533561], [47.379277, 8.528521], [47.38895, 8.52244], [47.404167, 8.562299], [47.379697, 8.516399], [47.384773, 8.509336], [47.380783, 8.518566], [47.393354, 8.524795], [47.33185, 8.516583], [47.410868, 8.562295], [47.397643, 8.533467], [47.365469, 8.535216], [47.377858, 8.52832], [47.388756, 8.480012], [47.354351, 8.561461], [47.39165, 8.523277], [47.353894, 8.601241], [47.374448, 8.541651], [47.391732, 8.48513], [47.388287, 8.491009], [47.407723, 8.53863], [47.373463, 8.544994], [47.383381, 8.506169], [47.374606, 8.549546], [47.369872, 8.510798], [47.382233, 8.540289], [47.385646, 8.5044], [47.37461, 8.525499], [47.35497, 8.506673], [47.385161, 8.537012], [47.375438, 8.545419], [47.377004, 8.544312], [47.375241, 8.559239], [47.368164, 8.524229], [47.367096, 8.543869], [47.363886, 8.551189], [47.368235, 8.536663], [47.385895, 8.525027], [47.379066, 8.52514], [47.364102, 8.521843], [47.406199, 8.547449], [47.407111, 8.586768], [47.375536, 8.486639], [47.363887, 8.534137], [47.372964, 8.547261], [47.396552, 8.52229], [47.38946, 8.487655], [47.3537, 8.575558], [47.379579, 8.555344], [47.37056, 8.524781], [47.372081, 8.516986], [47.38355, 8.488744], [47.373249, 8.532516], [47.370709, 8.547002], [47.386806, 8.547483], [47.388085, 8.491522], [47.379315, 8.525462], [47.379291, 8.51067], [47.422265, 8.551137], [47.419571, 8.553426], [47.368245, 8.511639], [47.373777, 8.531825], [47.406155, 8.552072], [47.360326, 8.566776], [47.387685, 8.52117], [47.368279, 8.504172], [47.363967, 8.528565], [47.351421, 8.568533], [47.369716, 8.536985], [47.396668, 8.529181], [47.369349, 8.523498], [47.378961, 8.526793], [47.375946, 8.490064], [47.37297, 8.536257], [47.389625, 8.521461], [47.424946, 8.548303], [47.380469, 8.536624], [47.395674, 8.519994], [47.392601, 8.46843], [47.364523, 8.555161], [47.365414, 8.516269], [47.412227, 8.546422], [47.42717, 8.536752], [47.372718, 8.563384], [47.392681, 8.524583], [47.379314, 8.528469], [47.369292, 8.541822], [47.374047, 8.51937], [47.383156, 8.514853], [47.405405, 8.504703], [47.372975, 8.485397], [47.394232, 8.490133], [47.369034, 8.529238], [47.392091, 8.511722], [47.369374, 8.541731], [47.371393, 8.535695], [47.405688, 8.498375], [47.414954, 8.545365], [47.430778, 8.542274], [47.419061, 8.506514], [47.370367, 8.548915], [47.356617, 8.551342], [47.357927, 8.526125], [47.394087, 8.493164], [47.391512, 8.540693], [47.403801, 8.565736], [47.394033, 8.493163], [47.383356, 8.515599], [47.42989, 8.549573], [47.371092, 8.55853], [47.37778, 8.507766], [47.361284, 8.550539], [47.372747, 8.517993], [47.37865, 8.54244], [47.371442, 8.522852], [47.376807, 8.54893], [47.378634, 8.559138], [47.406799, 8.550575], [47.368839, 8.528983], [47.392316, 8.502918], [47.369689, 8.525558], [47.393445, 8.529446], [47.360862, 8.53156], [47.361155, 8.506002], [47.376256, 8.544509], [47.375265, 8.544634], [47.379209, 8.522361], [47.37668, 8.560223], [47.409285, 8.566925], [47.37033, 8.535806], [47.38709, 8.545926], [47.414578, 8.520418], [47.4249, 8.550237], [47.374319, 8.542972], [47.376989, 8.532645], [47.368421, 8.523691], [47.39789, 8.534028], [47.368476, 8.54722], [47.419687, 8.548008], [47.369735, 8.536919], [47.369183, 8.527785], [47.380979, 8.491487], [47.378027, 8.526562], [47.378414, 8.525643], [47.361977, 8.559795], [47.388127, 8.520026], [47.371294, 8.52134], [47.420818, 8.508126], [47.411721, 8.509374], [47.365071, 8.498826], [47.372408, 8.510862], [47.362734, 8.511356], [47.411606, 8.545534], [47.329291, 8.514163], [47.367998, 8.501452], [47.343965, 8.530102], [47.3648, 8.532792], [47.355132, 8.526902], [47.364558, 8.502827], [47.389126, 8.494695], [47.340005, 8.530325], [47.429763, 8.543075], [47.370681, 8.516706], [47.38978, 8.511622], [47.366092, 8.536897], [47.387826, 8.514696], [47.369489, 8.520072], [47.421097, 8.502274], [47.408691, 8.546481], [47.365451, 8.535229], [47.352005, 8.558499], [47.370868, 8.548237], [47.430046, 8.544539], [47.37892, 8.50902], [47.354159, 8.553396], [47.378011, 8.509094], [47.375906, 8.527366], [47.400245, 8.547418], [47.404383, 8.493619], [47.397369, 8.516769], [47.375222, 8.531206], [47.373268, 8.518983], [47.391342, 8.535841], [47.377331, 8.512524], [47.379016, 8.516147], [47.402789, 8.5763], [47.3767, 8.538453], [47.384405, 8.531288], [47.390646, 8.508395], [47.348506, 8.534073], [47.411082, 8.562498], [47.397346, 8.53256], [47.37051, 8.55918], [47.387013, 8.52848], [47.372955, 8.520725], [47.378422, 8.545626], [47.375944, 8.540424], [47.390809, 8.522783], [47.370206, 8.548792], [47.382725, 8.47947], [47.366583, 8.542031], [47.38153, 8.503974], [47.377116, 8.541997], [47.379399, 8.520299], [47.393131, 8.524579], [47.375841, 8.552128], [47.389555, 8.521208], [47.365754, 8.520314], [47.375578, 8.526883], [47.381514, 8.513509], [47.370288, 8.548648], [47.37589, 8.537562], [47.371725, 8.519548], [47.366513, 8.540824], [47.380098, 8.537821], [47.413236, 8.532118], [47.35846, 8.556967], [47.419497, 8.548057], [47.384409, 8.531884], [47.382403, 8.549801], [47.386898, 8.490465], [47.373058, 8.536458], [47.400148, 8.537758], [47.393037, 8.489037], [47.353309, 8.575999], [47.389657, 8.471844], [47.382396, 8.540146], [47.372782, 8.547548], [47.386399, 8.496826], [47.392212, 8.476754], [47.404359, 8.561044], [47.400432, 8.593513], [47.349673, 8.562421], [47.423841, 8.51382], [47.387871, 8.529107], [47.362574, 8.534097], [47.364595, 8.566191], [47.378788, 8.528921], [47.382478, 8.492815], [47.358094, 8.549215], [47.393414, 8.499906], [47.368067, 8.541095], [47.391468, 8.540625], [47.379295, 8.529514], [47.414143, 8.551113], [47.374303, 8.518991], [47.364243, 8.547794], [47.383976, 8.531027], [47.361251, 8.52659], [47.359615, 8.551047], [47.399282, 8.539886], [47.394723, 8.525485], [47.427555, 8.546383], [47.359741, 8.549197], [47.399979, 8.545081], [47.378795, 8.542376], [47.368297, 8.546237], [47.362321, 8.516127], [47.357759, 8.552306], [47.369633, 8.548463], [47.364492, 8.547151], [47.392745, 8.529286], [47.36491, 8.556004], [47.410062, 8.569327], [47.407189, 8.586133], [47.371072, 8.512358], [47.377495, 8.529557], [47.406838, 8.58072], [47.356751, 8.511474], [47.413485, 8.546514], [47.419168, 8.546699], [47.40363, 8.496281], [47.394209, 8.526588], [47.38194, 8.543673], [47.40953, 8.537753], [47.3743, 8.490958], [47.41073, 8.553387], [47.385253, 8.536722], [47.407594, 8.585254], [47.357747, 8.554424], [47.369079, 8.533979], [47.373836, 8.536024], [47.40439, 8.546616], [47.393892, 8.524886], [47.366791, 8.544736], [47.410811, 8.553336], [47.412292, 8.557369], [47.369494, 8.526255], [47.362589, 8.548607], [47.39955, 8.547629], [47.379462, 8.526128], [47.413258, 8.550551], [47.326011, 8.518608], [47.373049, 8.53655], [47.391392, 8.53816], [47.368534, 8.518292], [47.396555, 8.528702], [47.409697, 8.54201], [47.406057, 8.552892], [47.32292, 8.514379], [47.397473, 8.532457], [47.419728, 8.50442], [47.365352, 8.502578], [47.333048, 8.529839], [47.351238, 8.576246], [47.358586, 8.585392], [47.36923, 8.541728], [47.366665, 8.53524], [47.3862, 8.527947], [47.376077, 8.526376], [47.382554, 8.528244], [47.391121, 8.523067], [47.357312, 8.508269], [47.368854, 8.501231], [47.383166, 8.557419], [47.368725, 8.52477], [47.403638, 8.497367], [47.362527, 8.520023], [47.404145, 8.563637], [47.369524, 8.536398], [47.354867, 8.601104], [47.391607, 8.519262], [47.380151, 8.537849], [47.380121, 8.526777], [47.416333, 8.506777], [47.357382, 8.572525], [47.350743, 8.577149], [47.386342, 8.517553], [47.404119, 8.56353], [47.373827, 8.524662], [47.41488, 8.545509], [47.380133, 8.490504], [47.379402, 8.523888], [47.363737, 8.551703], [47.358695, 8.585328], [47.362733, 8.517234], [47.382148, 8.529348], [47.375537, 8.548162], [47.409219, 8.544902], [47.335097, 8.541393], [47.370134, 8.548791], [47.413875, 8.544296], [47.412787, 8.544247], [47.328509, 8.517931], [47.370106, 8.512736], [47.374788, 8.525767], [47.408615, 8.483182], [47.399742, 8.519812], [47.358659, 8.58534], [47.3605, 8.53559], [47.370949, 8.548252], [47.369038, 8.541089], [47.369383, 8.541744], [47.361288, 8.534071], [47.378466, 8.563412], [47.430778, 8.542274], [47.407351, 8.48965], [47.406141, 8.534728], [47.37716, 8.526955], [47.386355, 8.497673], [47.376198, 8.544931], [47.380086, 8.512235], [47.41176, 8.525488], [47.404285, 8.564978], [47.356634, 8.507633], [47.376223, 8.559154], [47.374791, 8.515836], [47.378124, 8.526842], [47.397768, 8.533562], [47.364351, 8.566358], [47.345831, 8.534441], [47.37536, 8.485179], [47.363049, 8.507444], [47.364076, 8.530328], [47.380879, 8.57235], [47.380026, 8.524497], [47.37301, 8.547129], [47.373492, 8.536308], [47.384932, 8.49889], [47.376464, 8.534899], [47.347319, 8.533109], [47.360543, 8.561101], [47.36593, 8.530313], [47.395704, 8.52638], [47.382206, 8.504808], [47.396981, 8.530234], [47.391542, 8.486252], [47.387099, 8.534668], [47.369842, 8.512108], [47.367728, 8.496495], [47.338658, 8.532058], [47.38831, 8.519686], [47.401268, 8.534456], [47.38114, 8.517858], [47.413919, 8.478556], [47.356746, 8.53219], [47.370564, 8.531004], [47.420593, 8.482529], [47.388359, 8.491024], [47.392089, 8.511841], [47.369041, 8.537937], [47.3583, 8.587993], [47.383325, 8.539927], [47.394466, 8.54127], [47.388083, 8.48478], [47.395315, 8.491678], [47.38338, 8.539756], [47.387561, 8.515167], [47.377985, 8.530084], [47.384045, 8.534207], [47.405215, 8.500009], [47.374686, 8.549667], [47.376769, 8.535064], [47.376265, 8.541702], [47.389809, 8.540022], [47.367842, 8.533543], [47.419542, 8.542452], [47.367638, 8.50927], [47.377595, 8.498585], [47.366139, 8.520507], [47.382909, 8.540157], [47.428219, 8.489664], [47.362078, 8.551178], [47.368061, 8.554825], [47.377458, 8.51144], [47.363298, 8.549681], [47.382715, 8.543504], [47.388146, 8.51702], [47.373612, 8.519758], [47.386506, 8.547728], [47.360349, 8.506648], [47.378021, 8.548068], [47.37661, 8.536584], [47.416973, 8.523024], [47.416938, 8.522983], [47.373745, 8.519973], [47.402351, 8.499356], [47.390996, 8.526774], [47.388265, 8.540625], [47.393885, 8.505386], [47.409518, 8.549386], [47.372304, 8.543884], [47.38284, 8.551082], [47.379369, 8.515889], [47.379378, 8.515902], [47.388783, 8.518185], [47.366409, 8.545165], [47.378709, 8.529675], [47.397609, 8.546489], [47.40213, 8.570126], [47.389383, 8.513667], [47.368532, 8.550797], [47.335518, 8.518761], [47.403614, 8.571032], [47.37054, 8.540246], [47.393669, 8.472809], [47.375222, 8.531219], [47.363274, 8.535237], [47.369098, 8.547975], [47.412537, 8.523199], [47.377963, 8.492752], [47.403046, 8.589343], [47.387931, 8.486645], [47.37724, 8.499068], [47.369318, 8.525802], [47.379169, 8.49561], [47.3644, 8.548301], [47.366911, 8.544408], [47.421019, 8.50198], [47.418068, 8.508813], [47.418473, 8.547002], [47.363987, 8.505265], [47.369401, 8.534224], [47.39053, 8.527572], [47.388738, 8.479932], [47.395748, 8.545456], [47.398134, 8.535809], [47.365608, 8.518616], [47.409536, 8.543729], [47.357945, 8.520394], [47.372875, 8.535871], [47.347717, 8.524263], [47.391055, 8.522483], [47.354718, 8.574547], [47.369401, 8.533271], [47.365322, 8.516452], [47.359535, 8.50417], [47.379333, 8.537779], [47.37775, 8.540673], [47.388515, 8.518988], [47.407634, 8.581121], [47.375521, 8.528113], [47.373189, 8.525483], [47.375511, 8.484454], [47.394332, 8.516337], [47.372321, 8.556093], [47.377678, 8.525495], [47.364075, 8.55024], [47.391897, 8.523785], [47.366859, 8.543241], [47.35799, 8.571956], [47.380497, 8.512548], [47.361548, 8.561387], [47.343406, 8.524506], [47.369915, 8.549157], [47.415356, 8.54654], [47.386529, 8.52549], [47.37344, 8.537035], [47.393687, 8.47277], [47.394528, 8.53943], [47.415569, 8.509637], [47.390507, 8.479331], [47.369205, 8.527375], [47.374544, 8.532489], [47.386652, 8.535307], [47.386179, 8.492372], [47.365877, 8.53488], [47.420056, 8.508866], [47.38817, 8.520279], [47.379788, 8.526796], [47.370871, 8.525158], [47.392927, 8.491154], [47.393131, 8.524565], [47.357212, 8.554889], [47.365391, 8.521591], [47.356109, 8.553622], [47.372827, 8.525767], [47.353312, 8.575695], [47.399545, 8.521583], [47.39704, 8.511464], [47.359818, 8.547663], [47.377636, 8.538432], [47.383911, 8.54823], [47.376563, 8.540635], [47.362505, 8.533818], [47.367661, 8.544939], [47.391765, 8.518683], [47.387126, 8.545953], [47.382314, 8.531775], [47.421163, 8.549735], [47.36821, 8.510553], [47.338244, 8.530104], [47.34399, 8.530327], [47.413348, 8.532584], [47.431008, 8.550193], [47.369256, 8.541848], [47.362638, 8.520674], [47.376923, 8.54345], [47.406577, 8.587975], [47.387164, 8.545755], [47.371022, 8.537766], [47.378021, 8.513783], [47.411386, 8.526024], [47.404279, 8.54513], [47.387149, 8.535079], [47.387594, 8.487128], [47.412238, 8.55648], [47.412168, 8.553444], [47.398956, 8.540144], [47.355259, 8.557813], [47.363362, 8.499798], [47.374686, 8.549667], [47.368489, 8.496934], [47.394226, 8.489842], [47.370845, 8.527991], [47.376662, 8.551867], [47.371724, 8.515721], [47.408564, 8.558801], [47.347471, 8.533165], [47.384427, 8.545062], [47.377364, 8.529237], [47.371279, 8.520029], [47.385497, 8.542343], [47.373519, 8.553125], [47.366434, 8.545351], [47.402523, 8.58227], [47.384455, 8.507727], [47.417868, 8.548156], [47.366789, 8.545822], [47.376957, 8.539849], [47.356497, 8.534714], [47.374334, 8.524235], [47.34648, 8.498615], [47.357109, 8.507775], [47.404003, 8.534406], [47.390344, 8.541463], [47.359092, 8.521833], [47.405213, 8.559221], [47.409362, 8.549741], [47.366248, 8.545082], [47.382695, 8.541874], [47.364186, 8.533031], [47.351695, 8.559896], [47.370028, 8.51149], [47.425527, 8.547679], [47.378587, 8.542518], [47.395837, 8.511281], [47.369349, 8.528278], [47.377036, 8.540049], [47.37741, 8.5395], [47.392442, 8.502867], [47.378504, 8.541708], [47.340229, 8.535173], [47.362708, 8.548411], [47.381802, 8.516415], [47.37538, 8.496806], [47.362545, 8.535262], [47.370216, 8.557028], [47.366169, 8.538289], [47.413209, 8.538756], [47.358507, 8.521901], [47.371344, 8.530345], [47.36914, 8.505394], [47.384028, 8.515943], [47.370617, 8.516811], [47.373862, 8.529483], [47.373698, 8.528764], [47.39815, 8.535968], [47.400202, 8.546264], [47.41047, 8.532591], [47.370707, 8.520653], [47.399687, 8.516022], [47.39613, 8.527051], [47.413974, 8.540574], [47.386526, 8.475942], [47.350118, 8.56202], [47.40141, 8.490182], [47.357332, 8.550841], [47.369961, 8.510919], [47.381576, 8.513576], [47.410616, 8.55679], [47.411804, 8.537972], [47.409615, 8.543969], [47.39842, 8.591416], [47.392494, 8.523387], [47.373148, 8.527972], [47.414721, 8.530081], [47.389055, 8.52088], [47.393361, 8.496845], [47.394728, 8.521207], [47.366741, 8.533004], [47.426155, 8.554399], [47.370657, 8.535481], [47.381038, 8.528742], [47.414687, 8.566457], [47.39779, 8.529376], [47.368353, 8.497037], [47.398042, 8.534124], [47.391917, 8.517812], [47.406004, 8.581391], [47.375383, 8.484716], [47.373933, 8.517183], [47.335914, 8.533933], [47.403705, 8.485974], [47.368312, 8.551189], [47.38459, 8.527], [47.365469, 8.535216], [47.393435, 8.529526], [47.426598, 8.492893], [47.369398, 8.525909], [47.389974, 8.540634], [47.378886, 8.494174], [47.358419, 8.505259], [47.370169, 8.548898], [47.405944, 8.481116], [47.371874, 8.542802], [47.38844, 8.491026], [47.381419, 8.551079], [47.399996, 8.54524], [47.390368, 8.525635], [47.362512, 8.534943], [47.372271, 8.525557], [47.377037, 8.537122], [47.361531, 8.526516], [47.384313, 8.516187], [47.371253, 8.523775], [47.378849, 8.544205], [47.368833, 8.528638], [47.368001, 8.514653], [47.362205, 8.559429], [47.405574, 8.486236], [47.378941, 8.530752], [47.392145, 8.50098], [47.371796, 8.529215], [47.372153, 8.536174], [47.377987, 8.554344], [47.371202, 8.524463], [47.374723, 8.551442], [47.397386, 8.532124], [47.37777, 8.507871], [47.392513, 8.523308], [47.365549, 8.561511], [47.364941, 8.53784], [47.364182, 8.551288], [47.372591, 8.534555], [47.394856, 8.525753], [47.375929, 8.536318], [47.403853, 8.496457], [47.410962, 8.545163], [47.382301, 8.533112], [47.387135, 8.494086], [47.387401, 8.529349], [47.36378, 8.574991], [47.381381, 8.546575], [47.358429, 8.518669], [47.375953, 8.53857], [47.391076, 8.523066], [47.388441, 8.486973], [47.369523, 8.553412], [47.393721, 8.505648], [47.383825, 8.547844], [47.408946, 8.54801], [47.426587, 8.548815], [47.384783, 8.477696], [47.36794, 8.544071], [47.384462, 8.531991], [47.368645, 8.499493], [47.403418, 8.536288], [47.390047, 8.536834], [47.39728, 8.531035], [47.416108, 8.545031], [47.376656, 8.52321], [47.425115, 8.499663], [47.370196, 8.539524], [47.392349, 8.53308], [47.364657, 8.566365], [47.373742, 8.502798], [47.378238, 8.541372], [47.409073, 8.532854], [47.3348, 8.529967], [47.374128, 8.524205], [47.369805, 8.541833], [47.391592, 8.487617], [47.416139, 8.510285], [47.379935, 8.5159], [47.371665, 8.555139], [47.367989, 8.540776], [47.391023, 8.53345], [47.378682, 8.529674], [47.413994, 8.479153], [47.370771, 8.524375], [47.378491, 8.540264], [47.382071, 8.528869], [47.378779, 8.539343], [47.393592, 8.512732], [47.405378, 8.537336], [47.359633, 8.557561], [47.367694, 8.496375], [47.377951, 8.499029], [47.388129, 8.519841], [47.367135, 8.539765], [47.414231, 8.518091], [47.36143, 8.551244], [47.386049, 8.545758], [47.372553, 8.517565], [47.360345, 8.55371], [47.371281, 8.547411], [47.414016, 8.478717], [47.382465, 8.537605], [47.413838, 8.547211], [47.382377, 8.514453], [47.386777, 8.523032], [47.395517, 8.531979], [47.353459, 8.526855], [47.391558, 8.523487], [47.37282, 8.535036], [47.395276, 8.519363], [47.387445, 8.486662], [47.401788, 8.499901], [47.372411, 8.538285], [47.403435, 8.486049], [47.415537, 8.51401], [47.413851, 8.545886], [47.38498, 8.541855], [47.364343, 8.548564], [47.387522, 8.529882], [47.345148, 8.532508], [47.366815, 8.543134], [47.402199, 8.549022], [47.369248, 8.525641], [47.389664, 8.511501], [47.394901, 8.52578], [47.382102, 8.51413], [47.38681, 8.534741], [47.395558, 8.531464], [47.390474, 8.53634], [47.370272, 8.524868], [47.361409, 8.548768], [47.347998, 8.562624], [47.373235, 8.533045], [47.371342, 8.522969], [47.410657, 8.534688], [47.369245, 8.491984], [47.407055, 8.582394], [47.402357, 8.493818], [47.371601, 8.547775], [47.378647, 8.565111], [47.383671, 8.504891], [47.375258, 8.550063], [47.362628, 8.51886], [47.391996, 8.51025], [47.409407, 8.479157], [47.373054, 8.531201], [47.375823, 8.527563], [47.380822, 8.53728], [47.427993, 8.545702], [47.361801, 8.512012], [47.427464, 8.551113], [47.358129, 8.552142], [47.368595, 8.52907], [47.419587, 8.548046], [47.385478, 8.542369], [47.407933, 8.582744], [47.379013, 8.526039], [47.392698, 8.522742], [47.389632, 8.491499], [47.422503, 8.496086], [47.375892, 8.541124], [47.408574, 8.546505], [47.375783, 8.536567], [47.40882, 8.549001], [47.370986, 8.530232], [47.364208, 8.536355], [47.34365, 8.530175], [47.351973, 8.505858], [47.383588, 8.532092], [47.381411, 8.510024], [47.370003, 8.564174], [47.385531, 8.520623], [47.386158, 8.535271], [47.365714, 8.535949], [47.405618, 8.569352], [47.411252, 8.546812], [47.352321, 8.581299], [47.366522, 8.540904], [47.378746, 8.510261], [47.350853, 8.561321], [47.386679, 8.547573], [47.384253, 8.530278], [47.374335, 8.556267], [47.363242, 8.519627], [47.362489, 8.534559], [47.405929, 8.548477], [47.413799, 8.546653], [47.388524, 8.483782], [47.382522, 8.529726], [47.375895, 8.559544], [47.380195, 8.527533], [47.371721, 8.556742], [47.395831, 8.545246], [47.374355, 8.540139], [47.385542, 8.536675], [47.36182, 8.560202], [47.380837, 8.541359], [47.350687, 8.561754], [47.386979, 8.53497], [47.366635, 8.551551], [47.397528, 8.519952], [47.361114, 8.531578], [47.365444, 8.519778], [47.41023, 8.541756], [47.373879, 8.544751], [47.364409, 8.531341], [47.375757, 8.524119], [47.377014, 8.527217], [47.388634, 8.520619], [47.359963, 8.550366], [47.375653, 8.544549], [47.363784, 8.535525], [47.353605, 8.560466], [47.375279, 8.511728], [47.380982, 8.518491], [47.381879, 8.546307], [47.360784, 8.585108], [47.387919, 8.542022], [47.371021, 8.530259], [47.411655, 8.562788], [47.420193, 8.548642], [47.389727, 8.511476], [47.351923, 8.558604], [47.383556, 8.539283], [47.369764, 8.533808], [47.37621, 8.553049], [47.404529, 8.574973], [47.40362, 8.496307], [47.388055, 8.524899], [47.383385, 8.498872], [47.414651, 8.571001], [47.367391, 8.494066], [47.388101, 8.51992], [47.330189, 8.51524], [47.38445, 8.548294], [47.38808, 8.485058], [47.374336, 8.52401], [47.379251, 8.559456], [47.413799, 8.546653], [47.405274, 8.564098], [47.383986, 8.550761], [47.409044, 8.571346], [47.363883, 8.531728], [47.392167, 8.492689], [47.417239, 8.509909], [47.357, 8.53573], [47.346324, 8.564561], [47.352934, 8.57754], [47.38657, 8.483028], [47.369717, 8.525532], [47.403885, 8.555244], [47.377492, 8.528961], [47.40047, 8.543686], [47.392532, 8.523242], [47.366569, 8.535874], [47.415568, 8.544172], [47.412505, 8.483723], [47.41884, 8.503169], [47.399275, 8.542536], [47.370235, 8.53252], [47.383481, 8.512793], [47.405176, 8.557484], [47.366875, 8.54344], [47.378244, 8.530301], [47.422517, 8.512083], [47.374205, 8.491552], [47.38252, 8.487227], [47.426455, 8.492771], [47.374159, 8.544598], [47.356663, 8.523809], [47.373968, 8.542952], [47.386522, 8.496166], [47.357177, 8.552916], [47.39122, 8.523109], [47.382823, 8.548234], [47.379874, 8.498167], [47.386429, 8.496522], [47.377206, 8.540132], [47.406601, 8.551472], [47.380563, 8.56788], [47.362751, 8.548571], [47.361307, 8.534005], [47.369225, 8.528037], [47.346798, 8.530213], [47.39113, 8.523094], [47.353936, 8.578078], [47.356974, 8.526106], [47.391045, 8.522509], [47.375747, 8.527045], [47.410894, 8.57169], [47.392997, 8.534974], [47.371861, 8.531785], [47.405151, 8.480253], [47.348887, 8.570134], [47.357844, 8.572217], [47.380424, 8.512639], [47.372109, 8.547322], [47.381616, 8.490639], [47.388648, 8.522991], [47.391483, 8.514213], [47.36607, 8.53352], [47.410564, 8.550031], [47.369338, 8.513104], [47.390027, 8.491573], [47.366871, 8.520164], [47.397989, 8.474535], [47.37694, 8.541596], [47.393643, 8.519794], [47.40513, 8.481604], [47.394629, 8.488061], [47.421008, 8.502099], [47.355173, 8.527234], [47.390173, 8.509908], [47.375047, 8.540167], [47.380599, 8.512232], [47.37996, 8.541924], [47.411604, 8.512287], [47.406922, 8.58679], [47.378403, 8.520094], [47.375103, 8.491676], [47.363969, 8.53594], [47.375392, 8.540809], [47.370286, 8.513746], [47.368321, 8.551136], [47.403456, 8.487692], [47.400996, 8.501952], [47.381075, 8.518109], [47.377863, 8.529697], [47.403469, 8.556349], [47.377646, 8.50959], [47.380809, 8.512832], [47.42566, 8.494081], [47.374527, 8.539971], [47.366801, 8.544577], [47.369014, 8.537977], [47.38449, 8.531886], [47.369698, 8.525558], [47.378528, 8.503675], [47.399654, 8.517703], [47.390195, 8.512478], [47.380427, 8.524876], [47.373397, 8.524402], [47.374688, 8.527791], [47.365229, 8.521587], [47.381664, 8.51375], [47.373364, 8.568231], [47.358362, 8.558726], [47.381176, 8.491584], [47.366538, 8.541964], [47.37587, 8.527365], [47.368957, 8.50175], [47.380366, 8.541786], [47.368968, 8.550289], [47.393238, 8.530383], [47.36034, 8.56622], [47.374451, 8.5461], [47.33134, 8.53728], [47.355506, 8.529213], [47.364565, 8.566522], [47.369735, 8.536853], [47.363156, 8.533527], [47.388148, 8.497377], [47.377221, 8.521407], [47.366867, 8.537681], [47.387904, 8.520763], [47.367006, 8.531567], [47.377367, 8.498898], [47.407239, 8.538394], [47.378194, 8.510674], [47.368485, 8.519681], [47.387368, 8.543269], [47.396207, 8.527489], [47.368246, 8.536491], [47.4122, 8.546434], [47.362493, 8.534135], [47.356503, 8.532146], [47.386056, 8.545944], [47.387066, 8.539091], [47.360101, 8.595896], [47.374397, 8.543212], [47.397734, 8.533376], [47.403701, 8.570411], [47.36554, 8.53531], [47.343394, 8.523936], [47.385455, 8.530621], [47.373746, 8.52466], [47.376936, 8.541146], [47.369557, 8.531937], [47.365589, 8.521595], [47.375338, 8.560393], [47.373238, 8.535548], [47.386364, 8.535354], [47.375161, 8.525259], [47.392138, 8.503643], [47.38522, 8.530709], [47.378073, 8.510102], [47.370152, 8.548804], [47.36821, 8.494942], [47.385243, 8.530179], [47.378301, 8.541373], [47.381307, 8.528801], [47.361131, 8.60083], [47.378128, 8.526378], [47.362959, 8.559603], [47.364042, 8.566696], [47.359517, 8.522544], [47.364647, 8.566444], [47.398698, 8.547399], [47.37292, 8.531185], [47.371526, 8.515757], [47.411126, 8.570966], [47.370034, 8.543281], [47.409607, 8.549441], [47.376878, 8.540536], [47.36389, 8.574848], [47.371805, 8.522489], [47.384654, 8.502738], [47.387869, 8.520749], [47.371335, 8.530411], [47.365108, 8.553267], [47.372988, 8.536297], [47.378605, 8.553695], [47.410849, 8.571649], [47.400529, 8.544059], [47.410373, 8.538088], [47.370641, 8.557752], [47.380301, 8.512372], [47.405627, 8.549915], [47.383726, 8.547816], [47.402763, 8.491746], [47.414483, 8.557799], [47.365225, 8.564338], [47.368294, 8.551202], [47.413365, 8.553389], [47.384726, 8.529692], [47.396718, 8.554061], [47.405013, 8.548286], [47.379981, 8.548135], [47.414095, 8.550423], [47.391609, 8.514136], [47.343165, 8.53575], [47.390448, 8.509358], [47.366212, 8.522243], [47.364786, 8.547395], [47.351291, 8.576287], [47.371604, 8.51605], [47.397733, 8.533456], [47.353099, 8.512486], [47.402657, 8.498328], [47.392003, 8.48295], [47.419605, 8.548073], [47.403919, 8.541373], [47.393811, 8.533521], [47.375908, 8.541363], [47.386879, 8.490611], [47.368283, 8.495871], [47.366834, 8.543082], [47.375725, 8.539797], [47.390823, 8.522227], [47.364797, 8.537757], [47.373196, 8.531482], [47.409105, 8.541772], [47.379805, 8.553336], [47.379553, 8.542127], [47.369023, 8.53795], [47.398404, 8.547115], [47.385014, 8.500732], [47.376705, 8.483656], [47.430147, 8.540525], [47.382745, 8.529916], [47.410467, 8.532869], [47.373009, 8.547275], [47.38105, 8.503315], [47.386849, 8.544874], [47.391083, 8.522312], [47.410066, 8.542865], [47.358518, 8.517824], [47.374479, 8.579192], [47.36613, 8.540419], [47.384094, 8.526169], [47.381735, 8.529286], [47.398042, 8.535992], [47.416917, 8.551674], [47.383425, 8.529361], [47.367382, 8.494039], [47.371597, 8.515891], [47.409111, 8.48404], [47.377158, 8.533841], [47.409221, 8.571615], [47.384974, 8.531035], [47.418921, 8.507041], [47.379162, 8.523592], [47.403682, 8.497487], [47.363946, 8.500869], [47.380752, 8.519042], [47.380771, 8.50821], [47.416917, 8.551674], [47.360022, 8.532959], [47.37821, 8.526248], [47.366788, 8.542234], [47.37191, 8.54275], [47.370336, 8.507378], [47.370311, 8.513945], [47.354939, 8.52343], [47.3787, 8.541964], [47.378247, 8.526156], [47.398792, 8.542287], [47.396788, 8.529793], [47.365451, 8.535242], [47.376909, 8.535451], [47.398767, 8.506597], [47.361163, 8.525423], [47.385641, 8.517579], [47.373536, 8.546743], [47.366557, 8.540931], [47.381959, 8.516882], [47.373216, 8.533084], [47.367083, 8.544318], [47.374327, 8.543039], [47.407654, 8.547758], [47.387584, 8.487194], [47.361936, 8.534031], [47.381182, 8.537261], [47.366805, 8.5432], [47.391436, 8.51347], [47.37858, 8.519475], [47.37826, 8.519985], [47.378672, 8.513478], [47.386715, 8.522938], [47.336911, 8.518895], [47.403354, 8.486047], [47.372645, 8.538343], [47.379402, 8.523902], [47.415049, 8.513351], [47.402733, 8.577359], [47.377683, 8.538248], [47.374798, 8.518882], [47.378473, 8.526981], [47.357583, 8.554725], [47.390191, 8.473404], [47.354806, 8.556242], [47.376084, 8.515068], [47.364322, 8.555448], [47.381102, 8.528691], [47.381273, 8.510405], [47.409069, 8.570578], [47.332815, 8.51438], [47.365896, 8.557295], [47.382563, 8.54807], [47.405246, 8.480785], [47.376424, 8.54385], [47.410397, 8.542077], [47.364223, 8.566514], [47.392173, 8.49102], [47.385624, 8.542226], [47.37807, 8.492807], [47.394564, 8.528092], [47.36667, 8.542284], [47.382216, 8.544897], [47.383336, 8.506155], [47.394823, 8.525395], [47.358421, 8.521409], [47.367781, 8.560473], [47.387379, 8.527905], [47.412003, 8.524473], [47.387099, 8.517409], [47.372373, 8.503062], [47.391991, 8.510846], [47.391719, 8.518801], [47.360525, 8.516766], [47.39689, 8.519846], [47.39119, 8.520526], [47.373017, 8.520872], [47.365169, 8.500933], [47.387237, 8.488763], [47.384346, 8.489236], [47.377052, 8.544075], [47.424949, 8.551763], [47.382275, 8.530224], [47.370918, 8.549562], [47.363868, 8.559596], [47.369108, 8.547962], [47.409104, 8.578065], [47.364589, 8.556672], [47.377246, 8.570458], [47.386467, 8.529171], [47.370822, 8.510221], [47.377651, 8.535917], [47.3679, 8.498432], [47.373553, 8.575491], [47.388291, 8.537023], [47.38425, 8.540079], [47.390136, 8.491496], [47.360427, 8.516671], [47.362764, 8.547194], [47.373932, 8.524876], [47.410907, 8.543373], [47.374767, 8.49404], [47.376934, 8.540351], [47.397733, 8.480995], [47.378869, 8.526976], [47.389863, 8.539095], [47.402818, 8.553937], [47.381877, 8.502444], [47.376483, 8.525299], [47.339906, 8.53035], [47.425532, 8.553737], [47.369733, 8.549325], [47.412569, 8.546416], [47.371196, 8.523192], [47.383699, 8.573708], [47.385824, 8.548508], [47.36693, 8.544289], [47.377247, 8.538636], [47.364249, 8.546246], [47.354638, 8.525846], [47.369183, 8.527798], [47.378943, 8.515271], [47.404795, 8.57262], [47.388207, 8.52873], [47.38789, 8.544194], [47.371479, 8.519874], [47.402379, 8.499237], [47.364683, 8.546016], [47.366618, 8.540191], [47.405631, 8.57081], [47.371336, 8.546287], [47.384836, 8.495603], [47.375667, 8.533664], [47.399499, 8.497457], [47.426555, 8.492601], [47.3773, 8.529288], [47.379909, 8.527315], [47.400714, 8.593227], [47.379115, 8.511249], [47.379371, 8.525278], [47.338249, 8.530528], [47.394265, 8.489511], [47.412993, 8.546292], [47.353595, 8.576151], [47.38003, 8.570875], [47.36698, 8.520987], [47.365695, 8.553875], [47.378688, 8.489231], [47.378046, 8.496462], [47.373851, 8.481998], [47.390549, 8.545415], [47.367709, 8.545576], [47.399667, 8.547618], [47.37108, 8.538324], [47.378711, 8.53039], [47.377953, 8.532493], [47.370865, 8.542954], [47.377148, 8.512931], [47.369162, 8.525203], [47.366365, 8.546965], [47.412331, 8.539281], [47.399461, 8.54756], [47.367932, 8.544826], [47.385646, 8.548346], [47.356313, 8.555757], [47.41969, 8.508461], [47.400656, 8.548606], [47.335043, 8.529959], [47.370684, 8.558932], [47.37811, 8.532099], [47.361091, 8.522549], [47.417776, 8.513194], [47.378428, 8.526954], [47.368911, 8.540344], [47.375799, 8.527311], [47.413292, 8.544178], [47.378307, 8.499393], [47.391037, 8.522483], [47.403841, 8.548553], [47.406924, 8.585637], [47.366057, 8.536843], [47.351415, 8.525185], [47.402512, 8.499478], [47.349204, 8.564383], [47.366946, 8.560376], [47.404814, 8.483731], [47.366934, 8.545706], [47.365397, 8.554068], [47.35703, 8.552357], [47.357521, 8.554591], [47.370588, 8.549277], [47.403557, 8.578622], [47.391221, 8.479888], [47.376755, 8.559894], [47.391763, 8.472679], [47.391244, 8.515652], [47.374459, 8.540552], [47.414044, 8.516961], [47.365057, 8.565009], [47.379309, 8.542202], [47.421619, 8.550076], [47.389033, 8.495051], [47.385922, 8.524935], [47.373098, 8.547383], [47.409144, 8.545244], [47.388589, 8.535904], [47.374308, 8.522196], [47.382822, 8.530355], [47.383772, 8.57363], [47.367088, 8.54559], [47.363776, 8.535485], [47.382787, 8.479537], [47.378557, 8.575214], [47.378403, 8.54107], [47.371353, 8.536052], [47.36997, 8.543412], [47.370107, 8.512603], [47.387595, 8.529737], [47.398712, 8.532721], [47.370179, 8.548805], [47.366682, 8.545753], [47.3811, 8.537378], [47.38367, 8.515764], [47.381183, 8.538161], [47.390894, 8.523341], [47.364439, 8.555398], [47.347879, 8.528131], [47.419887, 8.547734], [47.398411, 8.591429], [47.379172, 8.538623], [47.374741, 8.488967], [47.382846, 8.500755], [47.368582, 8.546508], [47.382352, 8.541059], [47.398997, 8.533044], [47.407699, 8.547679], [47.414734, 8.51626], [47.383472, 8.536712], [47.3758, 8.516572], [47.377713, 8.528449], [47.37032, 8.491515], [47.365541, 8.552164], [47.370232, 8.537604], [47.391807, 8.523744], [47.372575, 8.533336], [47.378534, 8.541417], [47.369089, 8.547975], [47.391668, 8.519423], [47.349497, 8.56484], [47.379372, 8.542243], [47.383071, 8.530691], [47.349547, 8.532427], [47.403824, 8.485818], [47.356709, 8.558572], [47.429944, 8.549587], [47.40021, 8.546331], [47.384349, 8.548504], [47.405221, 8.480519], [47.409124, 8.543575], [47.370476, 8.519403], [47.374922, 8.544746], [47.369391, 8.54189], [47.360601, 8.507567], [47.408773, 8.546443], [47.390594, 8.539799], [47.376994, 8.539757], [47.371027, 8.536297], [47.393384, 8.537724], [47.370369, 8.514449], [47.365615, 8.54544], [47.367169, 8.550305], [47.399188, 8.542282], [47.376416, 8.523788], [47.401337, 8.534748], [47.398668, 8.539198], [47.366148, 8.540499], [47.376722, 8.522841], [47.384734, 8.497972], [47.373178, 8.542829], [47.382776, 8.552114], [47.389812, 8.509159], [47.39148, 8.477111], [47.384406, 8.481582], [47.369216, 8.528011], [47.395552, 8.532099], [47.391346, 8.487056], [47.382511, 8.53758], [47.41415, 8.551325], [47.405766, 8.590793], [47.374971, 8.539596], [47.327212, 8.52964], [47.374787, 8.54571], [47.413782, 8.546494], [47.366401, 8.541246], [47.373143, 8.537016], [47.387827, 8.527146], [47.374206, 8.528311], [47.376129, 8.536084], [47.381834, 8.531116], [47.334757, 8.529847], [47.418599, 8.507816], [47.378443, 8.510057], [47.422849, 8.494608], [47.383014, 8.529034], [47.367326, 8.54427], [47.36004, 8.516624], [47.359556, 8.535571], [47.376861, 8.528154], [47.397644, 8.546582], [47.373874, 8.526305], [47.374232, 8.544533], [47.372827, 8.525767], [47.414244, 8.541507], [47.372415, 8.536008], [47.401974, 8.499282], [47.366128, 8.51398], [47.415264, 8.508558], [47.374106, 8.502408], [47.369401, 8.526598], [47.371716, 8.519561], [47.367074, 8.523426], [47.375141, 8.552907], [47.391587, 8.519421], [47.387731, 8.490853], [47.365565, 8.509652], [47.395219, 8.5453], [47.392323, 8.492347], [47.389478, 8.487655], [47.37436, 8.552719], [47.370362, 8.514237], [47.384797, 8.531746], [47.413936, 8.545463], [47.378128, 8.526378], [47.37379, 8.481745], [47.375511, 8.563853], [47.380313, 8.527416], [47.356731, 8.535658], [47.392517, 8.539097], [47.391049, 8.523053], [47.371634, 8.515786], [47.392782, 8.524399], [47.359375, 8.522408], [47.364906, 8.531034], [47.378872, 8.542762], [47.380215, 8.483487], [47.359536, 8.592998], [47.366522, 8.540904], [47.412418, 8.529199], [47.406077, 8.553608], [47.390324, 8.490639], [47.399636, 8.543351], [47.384117, 8.532275], [47.374469, 8.539453], [47.383143, 8.540175], [47.335109, 8.519203], [47.36795, 8.494924], [47.37983, 8.525261], [47.393808, 8.493251], [47.376513, 8.499834], [47.38435, 8.548398], [47.367784, 8.496285], [47.386474, 8.497516], [47.37017, 8.548805], [47.391622, 8.538602], [47.419569, 8.548032], [47.380719, 8.541476], [47.36436, 8.555211], [47.360044, 8.526764], [47.378481, 8.54041], [47.41364, 8.514926], [47.369311, 8.520823], [47.36979, 8.536801], [47.378408, 8.540514], [47.362628, 8.531318], [47.391024, 8.526681], [47.373047, 8.532949], [47.386326, 8.522135], [47.366091, 8.532289], [47.38248, 8.552015], [47.365334, 8.530539], [47.39766, 8.533666], [47.408748, 8.579502], [47.391532, 8.545144], [47.373859, 8.50284], [47.414786, 8.560919], [47.397846, 8.533975], [47.344816, 8.533375], [47.369181, 8.527997], [47.366634, 8.54137], [47.412369, 8.546584], [47.368082, 8.522413], [47.391202, 8.539216], [47.371916, 8.550536], [47.388448, 8.491158], [47.383506, 8.549202], [47.379059, 8.511473], [47.365382, 8.521591], [47.371256, 8.550019], [47.39128, 8.546158], [47.424815, 8.537472], [47.36872, 8.558334], [47.421232, 8.500235], [47.371003, 8.516859], [47.364167, 8.546336], [47.379504, 8.537782], [47.366463, 8.53284], [47.374378, 8.55268], [47.378761, 8.527888], [47.399709, 8.495209], [47.387502, 8.496199], [47.372742, 8.53477], [47.383069, 8.505885], [47.375491, 8.486665], [47.394865, 8.525766], [47.40386, 8.568824], [47.377821, 8.50921], [47.399688, 8.517929], [47.387813, 8.520881], [47.391026, 8.545411], [47.360547, 8.527781], [47.370277, 8.518539], [47.382826, 8.515522], [47.372575, 8.473869], [47.38852, 8.523253], [47.383132, 8.513647], [47.363681, 8.498374], [47.35497, 8.526859], [47.406483, 8.567409], [47.41556, 8.513533], [47.385911, 8.53561], [47.363147, 8.55226], [47.399403, 8.49523], [47.360387, 8.523793], [47.389007, 8.489037], [47.363731, 8.535471], [47.379244, 8.525355], [47.382909, 8.506624], [47.369269, 8.537651], [47.390749, 8.524371], [47.382535, 8.554744], [47.360055, 8.579651], [47.392701, 8.515682], [47.351492, 8.534161], [47.420095, 8.547593], [47.368193, 8.546685], [47.354813, 8.532085], [47.417905, 8.505086], [47.401852, 8.492933], [47.379712, 8.542435], [47.414556, 8.484664], [47.364406, 8.546725], [47.383056, 8.514997], [47.384513, 8.53133], [47.386125, 8.546276], [47.383905, 8.530946], [47.364547, 8.532893], [47.380977, 8.549282], [47.383884, 8.529304], [47.376039, 8.541829], [47.386889, 8.534981], [47.387641, 8.499712], [47.370993, 8.508252], [47.383557, 8.554156], [47.381101, 8.491953], [47.358802, 8.534443], [47.375555, 8.535], [47.361896, 8.56906], [47.385987, 8.561426], [47.430702, 8.541795], [47.399103, 8.547394], [47.376803, 8.527649], [47.353839, 8.512236], [47.378945, 8.522753], [47.366833, 8.543135], [47.366392, 8.545085], [47.387129, 8.528589], [47.399894, 8.484707], [47.37747, 8.51499], [47.378454, 8.540436], [47.361399, 8.576635], [47.413919, 8.550989], [47.41313, 8.546003], [47.381011, 8.528715], [47.353548, 8.554296], [47.348847, 8.533246], [47.352177, 8.525452], [47.356897, 8.519022], [47.37639, 8.543624], [47.396829, 8.53398], [47.383227, 8.539859], [47.374292, 8.526856], [47.401636, 8.499845], [47.377335, 8.539804], [47.382495, 8.514416], [47.406589, 8.480374], [47.340957, 8.53716], [47.365698, 8.565698], [47.391812, 8.545096], [47.387748, 8.524985], [47.395561, 8.520561], [47.369045, 8.547908], [47.363627, 8.535006], [47.364005, 8.534034], [47.382422, 8.514507], [47.38153, 8.50396], [47.38618, 8.498212], [47.404932, 8.552948], [47.356274, 8.560694], [47.424121, 8.499179], [47.418431, 8.541925], [47.369437, 8.541746], [47.360578, 8.567629], [47.39889, 8.504069], [47.39108, 8.522643], [47.422743, 8.550961], [47.368382, 8.537275], [47.385572, 8.520067], [47.369905, 8.509223], [47.389247, 8.516698], [47.364656, 8.546029], [47.35137, 8.560855], [47.38151, 8.503232], [47.392065, 8.53832], [47.359694, 8.586157], [47.383923, 8.530934], [47.370717, 8.516734], [47.366398, 8.53787], [47.365828, 8.536243], [47.408345, 8.544141], [47.413083, 8.533082], [47.363459, 8.547924], [47.382318, 8.558527], [47.368743, 8.52477], [47.367094, 8.516462], [47.360064, 8.5227], [47.394788, 8.539542], [47.356265, 8.551441], [47.361401, 8.565409], [47.356866, 8.557185], [47.369303, 8.540737], [47.370153, 8.525024], [47.390968, 8.521197], [47.35518, 8.561267], [47.38396, 8.548761], [47.360654, 8.565406], [47.380506, 8.493028], [47.364935, 8.557116], [47.381716, 8.516877], [47.37118, 8.545701], [47.41478, 8.552186], [47.387952, 8.515639], [47.367363, 8.541385], [47.387965, 8.48593], [47.364983, 8.531472], [47.413903, 8.527149], [47.35656, 8.534688], [47.364248, 8.566714], [47.372194, 8.535566], [47.398268, 8.546251], [47.378434, 8.509964], [47.36821, 8.537377], [47.379787, 8.543085], [47.382282, 8.515974], [47.430301, 8.54982], [47.3919, 8.505135], [47.374326, 8.530803], [47.390107, 8.525656], [47.384483, 8.480974], [47.380363, 8.524981], [47.379364, 8.542123], [47.427079, 8.491431], [47.407418, 8.546984], [47.383106, 8.515382], [47.36925, 8.557445], [47.386908, 8.502108], [47.369732, 8.53341], [47.409956, 8.541193], [47.385115, 8.532282], [47.374497, 8.517419], [47.340515, 8.519127], [47.367896, 8.491957], [47.384437, 8.527011], [47.423084, 8.498483], [47.391341, 8.514912], [47.365406, 8.554054], [47.374236, 8.536495], [47.397526, 8.493841], [47.389625, 8.521461], [47.387815, 8.529305], [47.405807, 8.573052], [47.394528, 8.545179], [47.363731, 8.535458], [47.377182, 8.55299], [47.398256, 8.537149], [47.405709, 8.591123], [47.372611, 8.534277], [47.371503, 8.547654], [47.385406, 8.536725], [47.363771, 8.575057], [47.397039, 8.511623], [47.374114, 8.502422], [47.409048, 8.53924], [47.379523, 8.537717], [47.379452, 8.528114], [47.362581, 8.534322], [47.375915, 8.48854], [47.378282, 8.520515], [47.372698, 8.572864], [47.377104, 8.529125], [47.378625, 8.519449], [47.367481, 8.552496], [47.388867, 8.522637], [47.349984, 8.566557], [47.37589, 8.537575], [47.349807, 8.564409], [47.398281, 8.537335], [47.404417, 8.556965], [47.357153, 8.558237], [47.349874, 8.573173], [47.351039, 8.572708], [47.341818, 8.530826], [47.370299, 8.522856], [47.357009, 8.534777], [47.382065, 8.528565], [47.386302, 8.497619], [47.360447, 8.526931], [47.393858, 8.505426], [47.378537, 8.542027], [47.413589, 8.572052], [47.402137, 8.497178], [47.414526, 8.556104], [47.398842, 8.538923], [47.389621, 8.543753], [47.375616, 8.53712], [47.376784, 8.526748], [47.388818, 8.541193], [47.405671, 8.549995], [47.415411, 8.51406], [47.39146, 8.486383], [47.390889, 8.521897], [47.410221, 8.541689], [47.369622, 8.5203], [47.352911, 8.524805], [47.41062, 8.546985], [47.373014, 8.536364], [47.373532, 8.519584], [47.389516, 8.521538], [47.384781, 8.509376], [47.366538, 8.541964], [47.38245, 8.529711], [47.390433, 8.488455], [47.369826, 8.510916], [47.380135, 8.548059], [47.358301, 8.58156], [47.390975, 8.53945], [47.383905, 8.530893], [47.377127, 8.541825], [47.360382, 8.564739], [47.392144, 8.502027], [47.360593, 8.56338], [47.396187, 8.51713], [47.391556, 8.516996], [47.363827, 8.548924], [47.360747, 8.52564], [47.383393, 8.498938], [47.382835, 8.530845], [47.39314, 8.524592], [47.369146, 8.504746], [47.371599, 8.521399], [47.369716, 8.525585], [47.37715, 8.540396], [47.402351, 8.499395], [47.393866, 8.505505], [47.375112, 8.545584], [47.339609, 8.517984], [47.406735, 8.584719], [47.386931, 8.546585], [47.389212, 8.488272], [47.373925, 8.544632], [47.35737, 8.527014], [47.357981, 8.520368], [47.362313, 8.525632], [47.363913, 8.531477], [47.360933, 8.571806], [47.366266, 8.545016], [47.375899, 8.538529], [47.364145, 8.549527], [47.364519, 8.547165], [47.362417, 8.504783], [47.334736, 8.538686], [47.386861, 8.528424], [47.392277, 8.503235], [47.368418, 8.515363], [47.400826, 8.492025], [47.328359, 8.512821], [47.387101, 8.481979], [47.373768, 8.545066], [47.410492, 8.572331], [47.377648, 8.551238], [47.375903, 8.536251], [47.378344, 8.527283], [47.376538, 8.527088], [47.377803, 8.521724], [47.367373, 8.494026], [47.388017, 8.485163], [47.399774, 8.504723], [47.391055, 8.479381], [47.367767, 8.496231], [47.393573, 8.529237], [47.372613, 8.529325], [47.373178, 8.531468], [47.358375, 8.520588], [47.387852, 8.486471], [47.407732, 8.584038], [47.407722, 8.584051], [47.366056, 8.53687], [47.377762, 8.52898], [47.342182, 8.530317], [47.353012, 8.509175], [47.393805, 8.532262], [47.401803, 8.500232], [47.412028, 8.531391], [47.401785, 8.500258], [47.373856, 8.528172], [47.397778, 8.533549], [47.378436, 8.541389], [47.37966, 8.537534], [47.392501, 8.492483], [47.368946, 8.540385], [47.402894, 8.546943], [47.376144, 8.527834], [47.379307, 8.537752], [47.369479, 8.525884], [47.406388, 8.591601], [47.381827, 8.529977], [47.377077, 8.527231], [47.39069, 8.491918], [47.369604, 8.533593], [47.354605, 8.558448], [47.409438, 8.544548], [47.409374, 8.54468], [47.410874, 8.544896], [47.400576, 8.586243], [47.360275, 8.535665], [47.357945, 8.520447], [47.396671, 8.505707], [47.371981, 8.542818], [47.378714, 8.51475], [47.377061, 8.544035], [47.383948, 8.533993], [47.335143, 8.541288], [47.362539, 8.534096], [47.394165, 8.517884], [47.3909, 8.479577], [47.38239, 8.528479], [47.399637, 8.520459], [47.419826, 8.504461], [47.421646, 8.550077], [47.397381, 8.531753], [47.383696, 8.515804], [47.376929, 8.540868], [47.366292, 8.54511], [47.369122, 8.555748], [47.364023, 8.528381], [47.382228, 8.505352], [47.387646, 8.544229], [47.380314, 8.528304], [47.379213, 8.544769], [47.366205, 8.537336], [47.389726, 8.511568], [47.388147, 8.541762], [47.364149, 8.546349], [47.383116, 8.541035], [47.406521, 8.576354], [47.385003, 8.508718], [47.391342, 8.535867], [47.335353, 8.519062], [47.399699, 8.543379], [47.379378, 8.495362], [47.378974, 8.54242], [47.383741, 8.515792], [47.410076, 8.542826], [47.374439, 8.539744], [47.413219, 8.532966], [47.370562, 8.524556], [47.37821, 8.509959], [47.401322, 8.543916], [47.370197, 8.548805], [47.402818, 8.486646], [47.373192, 8.543161], [47.382998, 8.485117], [47.368053, 8.540618], [47.368778, 8.52877], [47.373596, 8.547062], [47.391722, 8.485183], [47.383081, 8.528625], [47.382839, 8.495643], [47.38482, 8.527363], [47.414775, 8.561078], [47.378307, 8.541704], [47.371057, 8.530286], [47.377392, 8.529091], [47.379049, 8.518359], [47.378084, 8.548056], [47.357053, 8.535784], [47.399943, 8.587567], [47.358238, 8.51893], [47.376575, 8.527035], [47.370038, 8.503545], [47.391293, 8.538237], [47.390722, 8.527285], [47.39378, 8.498231], [47.402519, 8.490787], [47.413984, 8.525242], [47.392941, 8.524628], [47.396188, 8.516997], [47.35435, 8.575307], [47.377184, 8.509051], [47.378966, 8.529084], [47.388781, 8.537497], [47.36647, 8.551919], [47.338595, 8.53109], [47.419179, 8.506397], [47.373471, 8.528958], [47.386815, 8.535139], [47.384038, 8.480476], [47.425852, 8.493766], [47.398196, 8.585926], [47.334819, 8.519395], [47.385519, 8.530489], [47.386873, 8.486253], [47.413531, 8.530322], [47.362483, 8.534254], [47.391291, 8.523203], [47.391099, 8.546287], [47.375762, 8.549093], [47.391837, 8.517651], [47.354713, 8.556571], [47.372241, 8.493897], [47.390291, 8.525249], [47.409337, 8.546666], [47.341865, 8.530562], [47.386915, 8.518863], [47.375598, 8.493698], [47.386886, 8.522915], [47.380738, 8.553634], [47.374369, 8.541437], [47.378868, 8.540405], [47.361981, 8.526512], [47.347601, 8.531804], [47.368047, 8.54128], [47.376912, 8.535147], [47.341498, 8.530356], [47.383279, 8.540032], [47.369797, 8.51024], [47.365076, 8.55937], [47.33428, 8.516474], [47.352526, 8.508239], [47.38415, 8.530647], [47.378473, 8.526995], [47.351394, 8.524536], [47.370485, 8.549738], [47.379279, 8.559311], [47.367042, 8.538214], [47.389529, 8.540135], [47.395398, 8.551967], [47.422938, 8.498705], [47.370292, 8.550131], [47.407111, 8.487353], [47.37577, 8.559476], [47.388564, 8.523293], [47.377234, 8.540093], [47.385971, 8.531201], [47.357936, 8.52046], [47.362452, 8.510702], [47.391529, 8.542693], [47.380756, 8.512791], [47.37897, 8.559715], [47.366824, 8.543161], [47.415501, 8.54645], [47.371468, 8.5429], [47.411191, 8.546533], [47.397338, 8.587127], [47.383459, 8.587092], [47.358246, 8.518017], [47.376753, 8.54334], [47.36393, 8.547563], [47.408189, 8.559376], [47.368733, 8.54761], [47.362473, 8.504599], [47.375369, 8.490225], [47.393835, 8.506922], [47.391781, 8.487608], [47.391637, 8.487631], [47.386784, 8.534688], [47.380174, 8.52789], [47.381359, 8.548892], [47.384408, 8.53195], [47.375879, 8.527392], [47.414904, 8.552348], [47.373029, 8.539516], [47.338383, 8.516252], [47.404846, 8.588388], [47.369566, 8.517597], [47.354658, 8.534173], [47.374616, 8.486886], [47.402396, 8.49937], [47.374178, 8.502383], [47.395105, 8.531732], [47.380996, 8.504387], [47.361412, 8.513223], [47.391019, 8.522469], [47.392002, 8.538358], [47.378057, 8.541461], [47.391013, 8.521184], [47.381295, 8.517676], [47.377753, 8.507818], [47.379577, 8.526302], [47.425083, 8.537663], [47.391427, 8.513417], [47.376288, 8.484032], [47.410537, 8.572279], [47.373017, 8.531332], [47.371731, 8.517893], [47.360625, 8.535712], [47.367102, 8.544173], [47.387126, 8.545966], [47.41086, 8.563156], [47.391078, 8.522894], [47.388706, 8.542489], [47.370071, 8.511729], [47.427413, 8.546168], [47.425084, 8.53765], [47.360446, 8.552587], [47.413822, 8.545169], [47.356466, 8.556727], [47.377652, 8.518622], [47.376698, 8.544359], [47.357917, 8.520486], [47.368946, 8.540372], [47.366807, 8.518296], [47.375112, 8.545637], [47.407647, 8.530519], [47.374608, 8.538118], [47.378226, 8.527427], [47.33651, 8.517485], [47.371883, 8.542803], [47.386372, 8.497806], [47.340103, 8.525709], [47.370032, 8.512006], [47.384072, 8.532288], [47.376955, 8.527771], [47.403479, 8.556296], [47.396665, 8.529446], [47.365477, 8.539122], [47.381166, 8.49165], [47.389669, 8.48142], [47.369892, 8.539266], [47.420977, 8.5494], [47.380441, 8.519552], [47.392568, 8.527998], [47.420327, 8.535616], [47.405493, 8.565613], [47.388183, 8.519882], [47.391114, 8.522855], [47.354412, 8.526874], [47.387687, 8.529527], [47.363713, 8.560718], [47.40922, 8.571721], [47.406752, 8.557305], [47.365101, 8.534189], [47.384931, 8.508783], [47.390371, 8.525383], [47.360516, 8.531142], [47.361326, 8.522422], [47.364431, 8.554418], [47.406163, 8.550297], [47.370868, 8.548277], [47.39839, 8.494786], [47.395374, 8.533712], [47.372613, 8.535005], [47.413487, 8.530254], [47.38656, 8.517372], [47.405169, 8.541426], [47.373672, 8.534352], [47.374833, 8.514195], [47.383308, 8.543569], [47.40772, 8.548302], [47.372291, 8.573014], [47.420012, 8.506771], [47.395357, 8.521259], [47.367247, 8.546837], [47.386778, 8.547495], [47.377341, 8.512431], [47.392071, 8.499204], [47.425861, 8.493766], [47.333607, 8.514277], [47.369275, 8.532328], [47.429899, 8.549533], [47.371364, 8.524387], [47.328075, 8.529618], [47.363422, 8.534869], [47.3471, 8.526778], [47.350278, 8.529318], [47.392302, 8.502454], [47.398294, 8.536978], [47.387472, 8.509258], [47.365469, 8.535229], [47.413807, 8.522032], [47.403787, 8.548591], [47.39131, 8.537324], [47.376594, 8.52689], [47.40161, 8.544836], [47.382395, 8.514467], [47.414905, 8.541018], [47.37302, 8.532908], [47.386508, 8.518126], [47.374637, 8.5293], [47.369009, 8.525186], [47.387909, 8.536486], [47.364891, 8.532649], [47.374711, 8.537657], [47.362594, 8.547178], [47.361522, 8.534102], [47.380171, 8.478348], [47.390603, 8.489585], [47.352814, 8.528417], [47.379645, 8.527707], [47.358279, 8.573736], [47.354868, 8.574762], [47.38728, 8.500857], [47.405391, 8.554786], [47.367468, 8.545412], [47.365492, 8.563708], [47.354238, 8.553636], [47.362502, 8.534149], [47.422323, 8.497103], [47.376011, 8.541921], [47.392533, 8.50279], [47.379296, 8.553868], [47.373618, 8.522936], [47.372455, 8.538379], [47.387679, 8.498534], [47.366546, 8.540269], [47.380133, 8.565924], [47.384938, 8.532067], [47.395688, 8.545217], [47.405481, 8.578769], [47.379387, 8.548149], [47.361467, 8.561412], [47.380247, 8.507563], [47.400415, 8.543738], [47.419569, 8.548072], [47.379299, 8.495215], [47.371254, 8.539903], [47.369155, 8.527811], [47.373195, 8.535335], [47.408982, 8.539543], [47.363619, 8.50024], [47.379402, 8.523902], [47.404836, 8.573959], [47.384269, 8.507445], [47.37503, 8.540113], [47.351042, 8.525641], [47.391116, 8.545373], [47.419569, 8.548059], [47.380043, 8.520763], [47.373467, 8.519874], [47.371334, 8.517117], [47.430662, 8.549775], [47.357556, 8.521617], [47.388581, 8.520605], [47.389341, 8.516236], [47.370831, 8.555757], [47.421103, 8.50059], [47.427564, 8.549127], [47.414587, 8.520391], [47.414821, 8.544223], [47.373929, 8.503001], [47.398827, 8.508903], [47.388789, 8.478317], [47.40428, 8.485111], [47.365556, 8.539335], [47.393507, 8.500504], [47.367686, 8.530098], [47.398391, 8.541868], [47.398295, 8.591373], [47.369283, 8.525682], [47.419113, 8.546817], [47.421961, 8.548148], [47.374648, 8.549891], [47.393988, 8.493188], [47.423582, 8.551668], [47.380414, 8.483371], [47.390901, 8.479564], [47.403828, 8.558264], [47.364626, 8.516875], [47.373156, 8.561831], [47.375736, 8.516676], [47.376868, 8.528352], [47.369774, 8.523216], [47.369772, 8.543447], [47.382516, 8.544546], [47.398201, 8.536366], [47.359874, 8.522882], [47.377882, 8.541867], [47.39111, 8.522352], [47.405887, 8.587669], [47.36097, 8.55138], [47.394865, 8.525753], [47.37989, 8.494538], [47.399701, 8.510656], [47.380995, 8.538091], [47.370971, 8.516461], [47.389773, 8.512324], [47.381809, 8.516587], [47.381827, 8.516561], [47.363459, 8.547937], [47.382099, 8.528804], [47.367936, 8.536908], [47.377543, 8.538815], [47.393874, 8.505625], [47.348735, 8.52607], [47.368643, 8.543848], [47.402043, 8.551271], [47.405275, 8.570471], [47.326519, 8.5133], [47.377397, 8.572435], [47.365086, 8.54899], [47.391823, 8.511518], [47.37074, 8.535298], [47.421121, 8.507416], [47.371744, 8.48814], [47.387563, 8.527392], [47.373786, 8.536592], [47.38342, 8.539399], [47.370887, 8.547178], [47.414212, 8.557886], [47.410366, 8.548145], [47.412292, 8.557382], [47.402698, 8.486975], [47.364621, 8.537396], [47.403801, 8.548022], [47.37351, 8.561547], [47.425841, 8.496921], [47.406799, 8.550575], [47.371767, 8.542681], [47.418842, 8.505886], [47.361108, 8.526468], [47.381104, 8.528492], [47.362541, 8.533818], [47.384864, 8.534092], [47.372823, 8.532798], [47.377561, 8.538802], [47.370007, 8.509874], [47.363191, 8.533633], [47.383249, 8.545025], [47.368434, 8.538468], [47.395412, 8.54019], [47.349996, 8.52775], [47.40078, 8.548873], [47.370488, 8.524859], [47.372948, 8.531026], [47.399559, 8.496823], [47.365571, 8.538673], [47.369269, 8.504046], [47.361708, 8.54851], [47.355839, 8.551789], [47.337082, 8.519759], [47.376947, 8.521905], [47.415361, 8.5628], [47.385159, 8.532389], [47.363372, 8.564338], [47.396754, 8.529527], [47.383515, 8.548262], [47.411308, 8.570665], [47.362434, 8.568264], [47.373904, 8.538303], [47.382852, 8.513748], [47.377111, 8.54164], [47.372875, 8.536864], [47.365162, 8.553228], [47.362055, 8.55454], [47.338236, 8.539473], [47.353599, 8.60195], [47.36741, 8.544855], [47.388977, 8.495248], [47.422411, 8.549032], [47.327419, 8.529618], [47.36106, 8.531577], [47.37376, 8.536446], [47.369107, 8.525307], [47.390841, 8.522201], [47.393368, 8.499004], [47.367563, 8.529698], [47.391781, 8.487621], [47.42069, 8.502477], [47.415038, 8.515471], [47.393721, 8.505622], [47.411498, 8.526556], [47.335229, 8.533139], [47.38179, 8.529195], [47.384979, 8.501632], [47.392341, 8.503117], [47.369595, 8.520273], [47.395744, 8.522221], [47.370024, 8.548987], [47.357944, 8.520473], [47.36607, 8.533547], [47.36771, 8.54641], [47.353663, 8.55635], [47.363767, 8.520207], [47.393991, 8.525921], [47.377469, 8.527636], [47.378464, 8.526995], [47.351856, 8.525168], [47.38277, 8.541505], [47.389648, 8.514136], [47.363967, 8.533318], [47.396825, 8.529675], [47.383784, 8.532295], [47.403836, 8.567698], [47.381942, 8.550957], [47.387345, 8.527692], [47.39634, 8.545614], [47.40483, 8.548613], [47.402689, 8.487001], [47.378095, 8.483194], [47.373247, 8.526027], [47.37894, 8.508756], [47.362431, 8.533115], [47.356339, 8.555917], [47.398533, 8.538254], [47.370079, 8.548896], [47.372062, 8.521898], [47.409919, 8.543193], [47.406853, 8.550576], [47.399062, 8.542293], [47.371734, 8.519548], [47.370732, 8.526585], [47.374187, 8.549233], [47.367111, 8.536627], [47.381142, 8.534929], [47.359985, 8.594887], [47.40712, 8.586702], [47.344843, 8.533402], [47.364344, 8.56612], [47.369709, 8.517706], [47.368208, 8.496134], [47.365747, 8.549494], [47.369898, 8.510918], [47.424676, 8.552923], [47.364733, 8.537875], [47.384483, 8.532627], [47.363775, 8.547771], [47.426315, 8.547112], [47.39737, 8.476312], [47.369766, 8.520276], [47.377278, 8.557031], [47.402645, 8.486908], [47.37765, 8.574201], [47.37009, 8.548737], [47.399348, 8.548075], [47.348773, 8.563435], [47.371876, 8.547291], [47.366648, 8.535147], [47.383414, 8.548458], [47.398827, 8.533875], [47.392096, 8.503364], [47.391067, 8.523093], [47.399837, 8.544018], [47.424084, 8.549094], [47.375992, 8.488899], [47.395452, 8.551968], [47.381881, 8.516549], [47.364193, 8.547356], [47.380425, 8.53457], [47.392275, 8.548338], [47.375687, 8.5372], [47.372615, 8.53486], [47.371785, 8.534167], [47.425742, 8.494003], [47.420845, 8.508113], [47.397789, 8.546466], [47.381792, 8.529883], [47.377332, 8.541975], [47.390978, 8.473922], [47.400147, 8.494489], [47.377505, 8.498543], [47.403071, 8.498363], [47.395195, 8.473103], [47.381809, 8.516587], [47.413391, 8.544167], [47.408711, 8.546256], [47.418597, 8.508028], [47.377117, 8.541017], [47.411073, 8.545762], [47.369158, 8.52752], [47.423728, 8.550531], [47.377349, 8.498911], [47.414185, 8.546688], [47.369379, 8.537401], [47.364275, 8.565867], [47.355905, 8.535522], [47.40346, 8.582992], [47.414777, 8.560919], [47.377224, 8.540198], [47.417718, 8.483149], [47.378804, 8.54239], [47.379343, 8.537726], [47.365741, 8.535963], [47.385444, 8.508714], [47.391811, 8.517637], [47.398759, 8.467874], [47.377256, 8.538676], [47.359923, 8.535724], [47.372472, 8.535731], [47.39626, 8.509236], [47.377605, 8.52654], [47.369436, 8.518959], [47.375934, 8.553626], [47.419715, 8.547823], [47.404447, 8.580536], [47.379205, 8.529486], [47.412244, 8.546502], [47.371335, 8.536104], [47.353577, 8.576164], [47.409487, 8.540442], [47.421471, 8.538264], [47.367193, 8.523176], [47.38687, 8.490571], [47.339496, 8.531823], [47.377161, 8.523975], [47.375622, 8.559896], [47.391466, 8.486635], [47.379554, 8.51625], [47.382142, 8.54038], [47.378615, 8.528176], [47.39378, 8.49337], [47.369501, 8.526414], [47.371317, 8.546406], [47.42744, 8.546128], [47.361351, 8.526526], [47.373102, 8.561882], [47.390757, 8.51298], [47.351516, 8.5607], [47.363749, 8.535419], [47.360448, 8.531684], [47.342154, 8.530449], [47.404909, 8.557174], [47.401495, 8.548345], [47.382865, 8.540024], [47.355752, 8.535479], [47.396351, 8.472556], [47.3763, 8.527546], [47.399712, 8.518208], [47.379428, 8.511427], [47.341917, 8.530775], [47.370164, 8.514233], [47.397571, 8.488941], [47.391802, 8.518511], [47.364754, 8.554451], [47.375204, 8.533165], [47.364773, 8.56642], [47.378827, 8.542774], [47.375974, 8.541007], [47.41063, 8.553491], [47.369126, 8.547949], [47.381799, 8.51668], [47.398034, 8.535886], [47.360978, 8.599052], [47.370263, 8.491792], [47.415141, 8.570614], [47.375278, 8.543297], [47.377791, 8.51632], [47.395624, 8.545229], [47.354411, 8.526014], [47.371111, 8.523561], [47.368608, 8.543728], [47.406592, 8.503826], [47.356484, 8.510185], [47.371618, 8.517493], [47.372629, 8.534291], [47.374454, 8.539175], [47.370771, 8.530055], [47.364005, 8.53312], [47.398836, 8.502081], [47.398644, 8.59154], [47.386629, 8.541532], [47.373007, 8.531438], [47.394865, 8.525766], [47.403055, 8.555452], [47.3426, 8.530881], [47.397252, 8.541527], [47.376592, 8.534716], [47.361709, 8.549344], [47.374413, 8.54157], [47.376717, 8.548968], [47.373061, 8.542748], [47.392434, 8.491025], [47.360783, 8.52568], [47.390906, 8.522957], [47.378582, 8.542067], [47.342671, 8.530896], [47.389691, 8.511462], [47.375425, 8.547643], [47.38996, 8.510633], [47.365916, 8.533649], [47.375882, 8.54217], [47.399376, 8.514637], [47.370304, 8.548861], [47.369447, 8.54348], [47.359844, 8.549675], [47.369707, 8.536985], [47.415901, 8.512573], [47.405826, 8.591099], [47.378381, 8.541414], [47.396094, 8.545066], [47.379467, 8.527518], [47.375056, 8.523072], [47.393511, 8.532905], [47.423547, 8.555352], [47.370989, 8.516421], [47.37965, 8.515656], [47.374644, 8.539947], [47.37094, 8.555706], [47.358994, 8.550134], [47.370257, 8.491487], [47.422042, 8.498277], [47.374195, 8.544572], [47.391372, 8.536477], [47.374807, 8.544611], [47.378369, 8.541732], [47.412543, 8.546335], [47.389594, 8.473776], [47.360808, 8.56627], [47.385137, 8.476272], [47.375159, 8.52551], [47.378165, 8.509879], [47.373545, 8.536375], [47.370274, 8.477665], [47.370026, 8.525194], [47.385338, 8.508473], [47.355659, 8.555518], [47.374421, 8.521721], [47.378327, 8.527257], [47.40859, 8.580943], [47.374607, 8.527776], [47.38495, 8.508664], [47.344233, 8.53507], [47.381772, 8.516706], [47.351087, 8.526581], [47.376945, 8.516356], [47.360532, 8.525636], [47.399377, 8.572929], [47.388634, 8.537812], [47.366148, 8.540512], [47.396279, 8.545428], [47.420808, 8.502347], [47.370961, 8.561003], [47.417379, 8.545654], [47.389745, 8.511489], [47.377264, 8.498327], [47.385493, 8.530462], [47.357442, 8.521337], [47.408001, 8.489385], [47.383333, 8.52765], [47.375134, 8.518597], [47.398898, 8.506056], [47.391114, 8.522842], [47.3666, 8.566273], [47.369122, 8.540799], [47.396311, 8.486001], [47.403656, 8.57037], [47.377299, 8.548304], [47.353551, 8.576071], [47.425175, 8.494986], [47.363093, 8.549492], [47.335716, 8.540612], [47.37432, 8.523838], [47.430737, 8.550386], [47.376556, 8.525194], [47.36468, 8.547247], [47.387233, 8.497094], [47.390576, 8.545428], [47.398192, 8.494808], [47.347962, 8.525009], [47.356676, 8.534836], [47.372037, 8.547295], [47.428538, 8.489207], [47.375619, 8.565776], [47.374499, 8.495782], [47.37555, 8.489103], [47.407741, 8.543347], [47.368393, 8.53517], [47.362978, 8.548337], [47.422811, 8.550472], [47.374457, 8.541651], [47.376716, 8.540546], [47.387049, 8.501501], [47.423039, 8.494519], [47.372561, 8.517632], [47.391022, 8.523079], [47.379721, 8.551772], [47.379072, 8.538806], [47.362261, 8.559311], [47.387323, 8.488196], [47.42998, 8.549508], [47.381102, 8.580817], [47.378023, 8.527939], [47.378979, 8.515192], [47.398282, 8.537229], [47.351468, 8.529064], [47.411999, 8.528806], [47.406907, 8.550577], [47.385502, 8.520807], [47.395327, 8.518702], [47.359692, 8.561653], [47.388541, 8.55132], [47.395296, 8.514264], [47.392689, 8.52755], [47.414867, 8.551565], [47.412363, 8.515827], [47.362967, 8.559736], [47.414938, 8.551713], [47.358615, 8.589774], [47.411245, 8.570704], [47.408958, 8.539318], [47.36787, 8.533412], [47.423853, 8.53838], [47.367936, 8.546296], [47.405211, 8.571476], [47.391244, 8.515665], [47.354778, 8.574839], [47.364801, 8.519302], [47.368552, 8.518358], [47.425629, 8.4975], [47.420325, 8.535749], [47.376738, 8.527807], [47.382192, 8.516025], [47.391876, 8.518341], [47.362498, 8.568172], [47.375837, 8.536568], [47.377008, 8.523045], [47.372208, 8.547338], [47.408736, 8.57978], [47.399809, 8.516435], [47.345674, 8.53015], [47.415949, 8.51427], [47.351262, 8.560853], [47.378282, 8.509855], [47.365618, 8.539469], [47.36199, 8.549124], [47.369463, 8.564189], [47.369209, 8.554227], [47.388238, 8.497366], [47.395098, 8.536276], [47.388856, 8.520942], [47.372066, 8.522521], [47.364116, 8.523206], [47.357968, 8.532255], [47.389709, 8.511449], [47.373316, 8.533047], [47.357906, 8.532241], [47.37654, 8.543919], [47.369696, 8.512383], [47.408554, 8.539203], [47.372332, 8.542812], [47.371725, 8.519561], [47.356314, 8.556591], [47.387071, 8.519488], [47.383916, 8.497903], [47.408756, 8.579555], [47.402421, 8.495687], [47.367599, 8.495884], [47.404741, 8.483848], [47.367606, 8.523291], [47.364366, 8.536822], [47.406907, 8.537407], [47.363517, 8.535215], [47.376007, 8.559123], [47.378288, 8.530408], [47.363368, 8.529189], [47.399722, 8.543777], [47.363898, 8.526353], [47.379546, 8.51033], [47.332444, 8.529932], [47.359865, 8.565151], [47.406911, 8.536003], [47.377036, 8.559714], [47.378607, 8.542253], [47.377744, 8.527059], [47.367995, 8.534513], [47.379285, 8.555947], [47.382158, 8.542486], [47.388579, 8.536976], [47.379241, 8.538082], [47.335946, 8.540974], [47.385048, 8.523182], [47.364595, 8.566191], [47.390666, 8.510104], [47.375484, 8.563839], [47.378475, 8.525816], [47.356668, 8.526166], [47.407482, 8.544084], [47.374196, 8.544545], [47.374658, 8.549799], [47.368786, 8.528783], [47.373067, 8.536551], [47.360151, 8.568149], [47.380358, 8.541641], [47.406844, 8.550589], [47.369575, 8.520537], [47.339407, 8.531808], [47.376098, 8.516445], [47.376832, 8.544507], [47.373931, 8.519248], [47.378097, 8.516274], [47.381188, 8.504046], [47.375098, 8.543319], [47.345155, 8.534626], [47.392231, 8.476702], [47.381001, 8.507698], [47.40377, 8.482836], [47.35904, 8.500307], [47.41965, 8.548087], [47.367589, 8.560853], [47.377833, 8.507926], [47.404084, 8.572658], [47.336803, 8.536995], [47.375985, 8.527566], [47.380905, 8.538089], [47.378325, 8.540711], [47.385683, 8.501355], [47.388346, 8.497368], [47.418386, 8.545755], [47.39096, 8.522998], [47.378434, 8.501197], [47.379952, 8.506366], [47.384271, 8.56029], [47.392397, 8.468188], [47.387704, 8.572654], [47.373758, 8.519523], [47.411869, 8.537774], [47.377522, 8.529584], [47.377521, 8.541992], [47.368498, 8.496921], [47.37769, 8.510743], [47.405811, 8.590781], [47.394215, 8.489987], [47.340528, 8.530243], [47.374286, 8.546428], [47.392614, 8.480127], [47.424657, 8.548417], [47.378671, 8.530813], [47.362866, 8.512616], [47.377768, 8.537813], [47.389583, 8.511512], [47.362555, 8.535209], [47.35821, 8.518069], [47.357483, 8.521748], [47.362618, 8.519985], [47.366765, 8.544577], [47.370277, 8.548847], [47.408309, 8.526081], [47.379635, 8.527787], [47.3795, 8.510449], [47.360615, 8.524446], [47.334665, 8.534768], [47.358244, 8.588111], [47.339622, 8.52996], [47.335048, 8.526585], [47.382785, 8.575277], [47.378216, 8.541715], [47.386016, 8.53785], [47.378183, 8.509959], [47.365267, 8.547035], [47.392207, 8.524295], [47.369453, 8.525831], [47.413975, 8.479299], [47.386472, 8.496722], [47.363102, 8.517281], [47.406374, 8.547029], [47.357308, 8.598112], [47.378966, 8.542353], [47.376707, 8.544412], [47.343885, 8.530074], [47.404956, 8.500772], [47.392728, 8.523458], [47.375341, 8.517595], [47.32689, 8.513096], [47.368531, 8.490394], [47.367693, 8.494482], [47.34845, 8.53427], [47.367113, 8.527901], [47.37589, 8.538502], [47.358262, 8.523074], [47.407018, 8.481733], [47.378699, 8.542017], [47.370765, 8.549598], [47.408456, 8.546674], [47.395903, 8.521469], [47.379575, 8.542631], [47.337847, 8.532213], [47.364294, 8.533934], [47.338163, 8.530129], [47.414233, 8.551035], [47.368583, 8.524635], [47.381738, 8.516493], [47.343154, 8.525506], [47.389898, 8.484008], [47.40296, 8.490849], [47.407811, 8.580502], [47.378614, 8.542426], [47.383285, 8.553488], [47.377903, 8.510019], [47.367784, 8.496298], [47.387659, 8.486917], [47.338092, 8.53857], [47.392878, 8.522745], [47.390968, 8.478068], [47.356434, 8.531866], [47.364872, 8.565495], [47.394113, 8.493284], [47.359547, 8.53561], [47.408835, 8.55022], [47.397587, 8.505845], [47.373094, 8.500945], [47.370571, 8.489574], [47.379165, 8.522294], [47.369115, 8.54158], [47.339874, 8.519392], [47.376069, 8.538665], [47.370662, 8.516812], [47.39629, 8.520536], [47.381144, 8.497993], [47.391052, 8.522801], [47.371323, 8.556059], [47.358548, 8.521372], [47.413793, 8.550112], [47.364384, 8.546222], [47.35738, 8.523136], [47.382905, 8.531072], [47.375969, 8.54155], [47.386212, 8.475763], [47.336047, 8.526579], [47.388305, 8.49101], [47.37722, 8.515779], [47.382573, 8.528178], [47.414088, 8.550237], [47.364721, 8.532592], [47.391846, 8.517717], [47.425424, 8.536861], [47.376599, 8.543403], [47.377656, 8.541969], [47.383632, 8.573296], [47.399695, 8.518049], [47.420471, 8.547826], [47.384015, 8.535505], [47.36903, 8.540996], [47.376016, 8.535684], [47.400262, 8.547498], [47.41457, 8.558993], [47.369428, 8.541745], [47.37598, 8.535684], [47.329855, 8.529734], [47.378782, 8.522843], [47.383208, 8.515092], [47.393883, 8.505664], [47.369039, 8.541049], [47.378872, 8.542749], [47.390054, 8.534172], [47.377363, 8.539751], [47.35019, 8.532903], [47.414911, 8.551672], [47.391133, 8.538923], [47.389883, 8.536076], [47.391616, 8.527846], [47.37754, 8.529584], [47.367611, 8.523714], [47.367775, 8.546253], [47.363281, 8.52213], [47.377483, 8.503946], [47.375713, 8.559779], [47.39147, 8.505841], [47.421564, 8.550168], [47.37572, 8.516543], [47.373095, 8.534525], [47.369039, 8.541022], [47.373163, 8.495332], [47.397482, 8.532457], [47.377434, 8.511149], [47.373785, 8.51947], [47.390414, 8.509158], [47.386607, 8.496698], [47.394555, 8.526157], [47.373861, 8.502615], [47.391361, 8.537616], [47.424052, 8.5134], [47.362502, 8.551055], [47.379452, 8.544257], [47.39084, 8.527181], [47.380517, 8.51721], [47.370956, 8.523809], [47.381579, 8.571623], [47.376184, 8.54452], [47.359427, 8.509039], [47.343623, 8.530121], [47.354998, 8.554101], [47.360565, 8.547691], [47.344062, 8.53504], [47.363959, 8.531306], [47.378442, 8.510083], [47.359793, 8.526733], [47.375548, 8.52434], [47.374713, 8.549641], [47.400307, 8.503514], [47.361766, 8.561127], [47.372506, 8.543478], [47.373181, 8.55186], [47.369398, 8.525909], [47.368404, 8.550992], [47.419831, 8.547932], [47.388837, 8.536293], [47.395646, 8.5354], [47.383033, 8.505845], [47.402504, 8.499398], [47.33118, 8.537025], [47.355434, 8.534917], [47.422058, 8.546494], [47.35945, 8.547628], [47.409701, 8.544408], [47.373163, 8.551807], [47.360878, 8.535611], [47.37018, 8.539338], [47.365732, 8.535923], [47.385352, 8.494329], [47.41404, 8.542126], [47.401315, 8.517962], [47.366873, 8.542752], [47.359897, 8.535684], [47.38308, 8.530691], [47.369098, 8.541474], [47.366807, 8.543081], [47.369124, 8.5254], [47.407635, 8.54781], [47.343645, 8.535455], [47.427288, 8.546099], [47.362423, 8.533035], [47.394751, 8.525446], [47.403478, 8.556309], [47.371124, 8.534644], [47.378299, 8.527349], [47.40236, 8.499316], [47.364615, 8.554938], [47.422782, 8.542228], [47.361059, 8.561748], [47.38696, 8.542665], [47.388608, 8.49132], [47.376484, 8.548844], [47.353196, 8.575653], [47.382109, 8.492794], [47.37885, 8.530909], [47.37438, 8.52707], [47.375027, 8.51555], [47.365714, 8.535936], [47.378706, 8.519385], [47.400186, 8.494132], [47.368923, 8.541867], [47.370109, 8.556947], [47.423872, 8.52502], [47.371988, 8.491071], [47.374244, 8.5243], [47.361635, 8.525963], [47.420806, 8.498703], [47.400683, 8.548633], [47.387927, 8.492009], [47.406629, 8.573653], [47.404099, 8.564656], [47.365135, 8.553215], [47.413959, 8.553349], [47.38566, 8.532691], [47.386735, 8.547335], [47.374572, 8.539932], [47.396177, 8.52684], [47.414905, 8.561638], [47.369662, 8.52565], [47.370499, 8.489612], [47.342636, 8.530895], [47.375809, 8.510772], [47.378582, 8.499809], [47.406063, 8.48088], [47.410897, 8.545294], [47.397, 8.594949], [47.369298, 8.540273], [47.374499, 8.556946], [47.390099, 8.510211], [47.40065, 8.534138], [47.364471, 8.572504], [47.40954, 8.549864], [47.37185, 8.55652], [47.380091, 8.528034], [47.383771, 8.547843], [47.389715, 8.511833], [47.406917, 8.550445], [47.403851, 8.480837], [47.368244, 8.54613], [47.380017, 8.524497], [47.382885, 8.575121], [47.377998, 8.532547], [47.353511, 8.554335], [47.393999, 8.518291], [47.412203, 8.514632], [47.366319, 8.561951], [47.393693, 8.512575], [47.378473, 8.526995], [47.400665, 8.548645], [47.385378, 8.5245], [47.369322, 8.528264], [47.370217, 8.521146], [47.384129, 8.504079], [47.361556, 8.569715], [47.347845, 8.531743], [47.383176, 8.505953], [47.391015, 8.522893], [47.379516, 8.525109], [47.426183, 8.547812], [47.430952, 8.540064], [47.366745, 8.536367], [47.409516, 8.580062], [47.368671, 8.530489], [47.375409, 8.529514], [47.386793, 8.534674], [47.36135, 8.512175], [47.40329, 8.53463], [47.381736, 8.529167], [47.369001, 8.556248], [47.37302, 8.528168], [47.373295, 8.531444], [47.388142, 8.528941], [47.369428, 8.541759], [47.386321, 8.53983], [47.368905, 8.559636], [47.364177, 8.526292], [47.378912, 8.526209], [47.367916, 8.538947], [47.379614, 8.510742], [47.380119, 8.527916], [47.392638, 8.524343], [47.376245, 8.55497], [47.38661, 8.541571], [47.348747, 8.53425], [47.39951, 8.495325], [47.420462, 8.54878], [47.411187, 8.526139], [47.354372, 8.523524], [47.403861, 8.568811], [47.402786, 8.577533], [47.380451, 8.528081], [47.365912, 8.5397], [47.368267, 8.541841], [47.371481, 8.530109], [47.391419, 8.516225], [47.358337, 8.586061], [47.372723, 8.534849], [47.377926, 8.536293], [47.352857, 8.524897], [47.377695, 8.525535], [47.414024, 8.52197], [47.366573, 8.541157], [47.361621, 8.526479], [47.406746, 8.580863], [47.366151, 8.521143], [47.377255, 8.538769], [47.338835, 8.538942], [47.398748, 8.532682], [47.37383, 8.536646], [47.383272, 8.530364], [47.370707, 8.516747], [47.374595, 8.5166], [47.406228, 8.543528], [47.374457, 8.541664], [47.39165, 8.504944], [47.413936, 8.542641], [47.362612, 8.533886], [47.370073, 8.52113], [47.366383, 8.541285], [47.378624, 8.548054], [47.371102, 8.538827], [47.378, 8.519847], [47.392831, 8.474952], [47.360687, 8.524421], [47.36507, 8.521293], [47.41524, 8.478687], [47.402146, 8.546186], [47.354009, 8.555921], [47.372044, 8.529565], [47.344942, 8.533351], [47.358037, 8.525942], [47.405599, 8.565801], [47.378195, 8.510608], [47.399569, 8.548437], [47.390498, 8.509822], [47.378351, 8.541745], [47.377233, 8.540106], [47.384959, 8.485076], [47.357947, 8.554216], [47.391497, 8.478264], [47.380347, 8.493687], [47.38542, 8.522925], [47.352177, 8.525426], [47.388538, 8.491094], [47.389653, 8.521395], [47.406655, 8.56732], [47.376683, 8.50679], [47.3747, 8.541669], [47.381736, 8.52918], [47.419641, 8.555575], [47.396297, 8.545428], [47.377788, 8.498085], [47.36708, 8.541763], [47.383519, 8.587372], [47.424213, 8.543092], [47.338146, 8.538597], [47.354851, 8.556269], [47.380703, 8.52516], [47.392186, 8.516982], [47.421298, 8.549751], [47.391149, 8.522988], [47.36876, 8.528743], [47.409269, 8.550017], [47.358331, 8.518561], [47.394111, 8.493522], [47.389368, 8.521045], [47.400204, 8.494146], [47.388327, 8.537011], [47.387518, 8.527458], [47.367978, 8.544774], [47.405092, 8.585359], [47.400182, 8.592448], [47.369014, 8.538003], [47.394537, 8.514672], [47.427395, 8.546141], [47.391201, 8.489146], [47.393426, 8.524744], [47.393543, 8.524772], [47.380411, 8.525644], [47.329846, 8.52972], [47.429493, 8.514477], [47.378334, 8.541705], [47.361243, 8.502417], [47.398167, 8.501471], [47.380766, 8.537544], [47.362224, 8.526398], [47.362428, 8.612151], [47.369324, 8.557182], [47.375028, 8.519297], [47.388532, 8.496723], [47.371952, 8.522214], [47.361786, 8.552615], [47.358759, 8.533277], [47.355102, 8.52718], [47.373143, 8.537016], [47.369213, 8.501318], [47.428746, 8.489092], [47.358738, 8.509634], [47.368695, 8.493138], [47.377443, 8.541713], [47.36616, 8.530662], [47.41323, 8.545899], [47.379428, 8.529729], [47.414777, 8.560919], [47.391071, 8.478587], [47.378881, 8.542762], [47.384171, 8.511139], [47.368148, 8.523937], [47.398041, 8.534177], [47.356511, 8.523647], [47.396977, 8.512456], [47.377349, 8.527872], [47.349981, 8.576908], [47.40627, 8.597111], [47.378037, 8.499375], [47.423443, 8.49454], [47.379072, 8.527391], [47.365346, 8.521643], [47.381661, 8.543681], [47.382411, 8.499157], [47.368531, 8.55081], [47.42048, 8.547839], [47.371404, 8.562588], [47.381175, 8.491703], [47.372306, 8.526657], [47.38857, 8.525572], [47.378879, 8.52495], [47.360378, 8.523779], [47.356659, 8.53469], [47.391028, 8.522443], [47.371784, 8.493729], [47.354875, 8.511026], [47.393286, 8.493214], [47.369434, 8.52591], [47.393221, 8.524594], [47.404083, 8.564496], [47.366558, 8.540905], [47.384787, 8.531825], [47.392989, 8.524377], [47.380653, 8.525702], [47.364032, 8.531201], [47.37011, 8.531498], [47.402165, 8.495112], [47.374992, 8.527983], [47.382399, 8.541762], [47.377504, 8.54378], [47.384197, 8.516119], [47.374436, 8.540075], [47.388976, 8.515845], [47.394167, 8.493311], [47.377355, 8.499282], [47.427404, 8.546154], [47.35741, 8.521852], [47.373975, 8.47624], [47.41589, 8.546246], [47.355631, 8.532167], [47.413083, 8.546307], [47.429892, 8.53808], [47.389583, 8.511526], [47.357881, 8.572112], [47.407517, 8.547039], [47.379771, 8.527683], [47.372629, 8.534317], [47.364745, 8.53761], [47.368902, 8.540358], [47.385413, 8.528368], [47.344025, 8.527589], [47.349929, 8.533943], [47.407846, 8.547444], [47.368959, 8.524788], [47.349722, 8.561125], [47.389829, 8.491636], [47.422595, 8.495849], [47.405875, 8.548423], [47.367673, 8.538982], [47.361083, 8.571187], [47.381459, 8.506753], [47.391421, 8.52563], [47.366447, 8.566283], [47.424968, 8.505837], [47.378725, 8.542163], [47.377389, 8.548293], [47.36162, 8.518946], [47.419569, 8.55556], [47.423892, 8.504437], [47.412827, 8.517175], [47.38674, 8.488038], [47.366941, 8.543111], [47.391648, 8.538735], [47.366893, 8.544367], [47.410042, 8.532105], [47.397747, 8.51377], [47.373942, 8.544699], [47.366536, 8.540322], [47.346258, 8.531142], [47.379613, 8.537652], [47.414947, 8.546094], [47.369409, 8.541824], [47.376466, 8.548857], [47.354053, 8.527754], [47.420725, 8.502597], [47.366297, 8.54082], [47.369577, 8.467072], [47.402792, 8.501285], [47.393872, 8.504896], [47.381194, 8.537897], [47.386913, 8.519048], [47.417779, 8.548074], [47.380265, 8.512384], [47.418854, 8.50749], [47.393721, 8.482029], [47.38423, 8.53931], [47.366562, 8.540455], [47.390763, 8.522875], [47.41405, 8.546685], [47.371572, 8.538532], [47.367922, 8.540298], [47.352119, 8.524868], [47.36764, 8.52345], [47.376903, 8.543622], [47.418519, 8.547812], [47.378794, 8.542429], [47.368366, 8.54645], [47.368152, 8.533047], [47.416726, 8.572225], [47.374921, 8.534457], [47.370798, 8.524335], [47.35534, 8.553129], [47.390698, 8.489004], [47.404753, 8.574156], [47.392512, 8.523414], [47.369111, 8.550411], [47.379195, 8.525778], [47.381278, 8.531952], [47.335317, 8.519022], [47.372737, 8.537153], [47.37398, 8.516005], [47.379344, 8.544202], [47.372062, 8.529578], [47.374686, 8.512563], [47.347889, 8.532723], [47.405001, 8.482953], [47.38149, 8.503417], [47.38221, 8.501405], [47.369129, 8.511405], [47.374597, 8.517276], [47.369689, 8.536971], [47.368337, 8.541048], [47.361412, 8.535252], [47.3657, 8.552498], [47.389512, 8.521035], [47.366729, 8.534196], [47.374668, 8.52411], [47.377888, 8.521302], [47.368446, 8.546624], [47.370466, 8.515656], [47.412215, 8.523987], [47.395104, 8.522274], [47.374044, 8.49241], [47.376045, 8.553337], [47.377779, 8.55818], [47.360368, 8.523858], [47.379819, 8.521619], [47.401803, 8.585924], [47.384544, 8.53186], [47.377766, 8.566933], [47.368458, 8.524513], [47.3582, 8.571642], [47.375047, 8.49194], [47.388606, 8.525559], [47.385536, 8.548542], [47.366938, 8.544342], [47.379451, 8.54431], [47.36515, 8.521427], [47.338101, 8.538557], [47.37136, 8.517223], [47.419179, 8.547481], [47.372376, 8.490881], [47.411062, 8.532736], [47.361865, 8.534016], [47.366833, 8.543095], [47.360423, 8.526653], [47.351535, 8.525823], [47.340338, 8.535109], [47.414062, 8.516882], [47.368207, 8.538688], [47.381907, 8.529091], [47.386189, 8.548039], [47.39133, 8.536145], [47.369912, 8.552242], [47.334557, 8.530002], [47.369836, 8.556358], [47.366161, 8.516152], [47.404883, 8.591927], [47.356542, 8.534688], [47.355309, 8.554505], [47.367767, 8.496191], [47.367915, 8.539119], [47.375069, 8.518742], [47.377304, 8.521171], [47.36549, 8.521606], [47.374514, 8.546088], [47.366638, 8.535266], [47.335573, 8.53296], [47.422228, 8.544695], [47.382425, 8.540915], [47.380725, 8.508315], [47.372734, 8.504857], [47.386223, 8.498346], [47.388335, 8.490679], [47.370344, 8.51813], [47.427431, 8.546181], [47.393861, 8.526302], [47.348883, 8.533234], [47.341127, 8.530573], [47.420706, 8.508588], [47.383059, 8.554477], [47.366262, 8.540766], [47.37976, 8.489967], [47.367209, 8.544268], [47.369275, 8.525668], [47.365153, 8.553228], [47.414065, 8.548911], [47.364324, 8.529777], [47.375379, 8.525038], [47.384196, 8.516238], [47.355578, 8.508009], [47.377359, 8.527819], [47.392487, 8.532752], [47.378102, 8.510844], [47.363387, 8.534749], [47.37574, 8.535414], [47.361296, 8.512201], [47.420766, 8.547023], [47.363626, 8.535098], [47.37722, 8.538636], [47.400313, 8.494069], [47.357682, 8.559294], [47.362646, 8.52078], [47.36039, 8.516723], [47.378439, 8.529643], [47.365807, 8.564575], [47.340931, 8.524707], [47.400365, 8.585761], [47.398898, 8.533003], [47.377522, 8.529571], [47.376499, 8.521657], [47.384782, 8.531401], [47.379644, 8.494851], [47.396204, 8.532576], [47.373702, 8.489556], [47.394644, 8.532981], [47.367162, 8.545472], [47.363616, 8.534291], [47.400996, 8.491088], [47.39866, 8.539184], [47.419623, 8.505107], [47.390653, 8.50866], [47.32606, 8.51341], [47.381399, 8.517162], [47.375191, 8.490989], [47.391085, 8.523093], [47.37288, 8.518181], [47.372054, 8.54082], [47.371067, 8.523454], [47.412506, 8.546388], [47.385736, 8.539831], [47.369133, 8.525387], [47.393404, 8.499985], [47.345022, 8.533472], [47.37599, 8.533658], [47.358383, 8.587797], [47.378009, 8.51896], [47.376584, 8.548766], [47.363753, 8.535948], [47.359065, 8.595119], [47.377692, 8.542009], [47.366121, 8.533813], [47.369031, 8.538043], [47.372387, 8.523719], [47.366675, 8.544654], [47.365046, 8.5315], [47.396795, 8.541371], [47.410305, 8.542367], [47.377655, 8.5383], [47.404573, 8.486548], [47.375943, 8.549018], [47.355691, 8.554103], [47.41657, 8.553085], [47.36239, 8.504796], [47.406416, 8.55388], [47.355158, 8.554317], [47.378045, 8.526589], [47.366319, 8.540423], [47.364273, 8.555818], [47.409948, 8.549568], [47.39777, 8.540027], [47.384787, 8.531799], [47.40586, 8.590477], [47.409699, 8.544593], [47.387378, 8.527044], [47.398259, 8.546237], [47.412869, 8.550702], [47.351697, 8.5258], [47.386486, 8.496219], [47.363965, 8.551456], [47.401869, 8.499902], [47.419547, 8.50651], [47.372873, 8.531316], [47.38366, 8.483528], [47.390876, 8.523354], [47.389726, 8.511555], [47.373529, 8.493671], [47.404174, 8.548507], [47.360386, 8.522906], [47.368848, 8.547864], [47.389706, 8.511846], [47.391004, 8.488069], [47.353636, 8.55447], [47.412703, 8.522765], [47.368852, 8.540807], [47.378948, 8.54234], [47.410667, 8.571897], [47.373816, 8.537188], [47.374169, 8.497418], [47.38454, 8.54831], [47.382842, 8.529216], [47.368806, 8.524798], [47.371725, 8.519548], [47.357454, 8.521893], [47.370536, 8.549077], [47.368652, 8.524888], [47.344054, 8.531176], [47.391054, 8.52251], [47.394134, 8.525049], [47.389946, 8.476671], [47.376897, 8.555513], [47.343736, 8.535312], [47.373356, 8.531591], [47.38094, 8.538156], [47.364025, 8.526276], [47.364696, 8.54742], [47.371731, 8.542627], [47.408712, 8.546243], [47.367985, 8.540246], [47.365705, 8.535949], [47.36689, 8.499643], [47.429345, 8.546314], [47.385973, 8.498208], [47.398017, 8.535833], [47.406909, 8.586299], [47.381175, 8.491663], [47.39194, 8.483041], [47.377069, 8.544115], [47.381885, 8.547526], [47.390745, 8.478845], [47.429269, 8.548698], [47.384756, 8.531321], [47.329819, 8.529746], [47.381286, 8.515769], [47.373366, 8.480916], [47.400815, 8.548887], [47.36968, 8.525624], [47.364791, 8.554399], [47.377741, 8.482577], [47.361285, 8.517218], [47.372746, 8.522892], [47.364276, 8.533947], [47.384386, 8.531446], [47.370416, 8.524765], [47.362748, 8.51178], [47.392229, 8.476887], [47.394901, 8.525767], [47.37822, 8.509787], [47.376504, 8.53927], [47.397891, 8.546137], [47.343911, 8.530101], [47.368913, 8.547653], [47.410535, 8.572504], [47.363399, 8.575407], [47.408616, 8.539271], [47.395821, 8.47456], [47.401376, 8.550502], [47.40516, 8.481313], [47.412227, 8.548264], [47.363482, 8.531389], [47.373858, 8.536514], [47.391114, 8.522842], [47.386931, 8.519022], [47.369481, 8.554007], [47.359803, 8.507273], [47.368903, 8.533565], [47.372815, 8.511652], [47.356935, 8.53504], [47.368532, 8.551697], [47.376843, 8.543276], [47.353517, 8.602054], [47.380356, 8.517114], [47.380155, 8.52793], [47.325916, 8.51342], [47.376556, 8.560035], [47.381628, 8.554566], [47.377047, 8.520755], [47.375872, 8.516547], [47.370918, 8.549575], [47.3962, 8.527238], [47.411984, 8.547318], [47.37144, 8.524984], [47.401724, 8.489221], [47.377018, 8.523853], [47.385505, 8.52049], [47.378916, 8.542842], [47.386751, 8.547508], [47.36959, 8.541722], [47.390267, 8.509566], [47.372818, 8.542795], [47.41462, 8.552885], [47.354271, 8.576073], [47.42778, 8.490491], [47.369043, 8.528338], [47.354295, 8.560771], [47.419043, 8.5065], [47.385215, 8.495531], [47.384417, 8.53195], [47.38604, 8.535374], [47.388101, 8.519959], [47.362134, 8.608398], [47.414306, 8.483466], [47.391087, 8.536193], [47.381052, 8.49431], [47.401737, 8.586188], [47.373576, 8.533145], [47.338046, 8.538635], [47.396197, 8.526641], [47.371123, 8.514597], [47.382269, 8.540316], [47.369036, 8.525213], [47.379981, 8.548135], [47.408846, 8.556594], [47.361743, 8.547716], [47.363774, 8.556324], [47.380265, 8.542923], [47.370625, 8.51599], [47.365705, 8.535989], [47.405785, 8.580803], [47.3929, 8.545079], [47.40489, 8.501009], [47.370948, 8.548291], [47.378726, 8.543037], [47.370052, 8.548855], [47.392652, 8.495652], [47.372762, 8.529765], [47.368367, 8.550118], [47.409252, 8.543392], [47.414811, 8.561052], [47.379213, 8.538134], [47.399269, 8.495081], [47.354799, 8.526869], [47.370319, 8.535978], [47.38147, 8.528764], [47.40935, 8.529216], [47.402058, 8.580167], [47.374735, 8.544623], [47.352119, 8.533472], [47.360642, 8.56297], [47.381609, 8.483567], [47.414337, 8.528854], [47.400295, 8.518326], [47.379204, 8.51137], [47.39988, 8.544217], [47.367287, 8.541767], [47.417464, 8.553727], [47.391236, 8.52046], [47.337259, 8.532479], [47.393104, 8.526486], [47.389996, 8.525985], [47.404203, 8.484659], [47.338064, 8.538662], [47.379868, 8.523116], [47.378983, 8.542433], [47.346898, 8.532875], [47.379327, 8.542215], [47.362569, 8.534693], [47.40941, 8.538121], [47.382852, 8.530038], [47.353044, 8.558905], [47.353555, 8.572047], [47.378495, 8.566022], [47.379662, 8.545784], [47.41975, 8.547943], [47.361433, 8.534034], [47.392427, 8.539029], [47.38114, 8.49161], [47.376436, 8.539732], [47.379235, 8.495254], [47.425614, 8.536733], [47.37802, 8.548174], [47.381274, 8.53713], [47.34122, 8.530324], [47.415003, 8.545883], [47.373013, 8.536457], [47.370148, 8.529433], [47.375002, 8.534485], [47.418046, 8.482705], [47.380881, 8.556484], [47.379464, 8.523943], [47.372748, 8.534995], [47.391551, 8.486173], [47.379667, 8.548102], [47.361365, 8.568096], [47.364455, 8.536863], [47.352857, 8.576228], [47.354763, 8.526828], [47.366945, 8.536133], [47.35844, 8.528955], [47.360485, 8.550364], [47.391103, 8.52308], [47.368981, 8.529144], [47.376898, 8.513667], [47.379963, 8.548148], [47.385539, 8.524609], [47.3807, 8.582292], [47.369868, 8.547474], [47.377394, 8.572766], [47.398147, 8.536365], [47.352129, 8.558714], [47.352146, 8.558741], [47.397467, 8.546353], [47.40078, 8.548886], [47.422489, 8.499531], [47.388257, 8.526347], [47.381477, 8.528963], [47.360279, 8.534235], [47.391132, 8.48782], [47.428581, 8.542547], [47.367808, 8.560526], [47.407725, 8.583786], [47.390547, 8.489782], [47.363258, 8.564018], [47.409818, 8.537798], [47.359811, 8.52386], [47.36965, 8.533501], [47.376549, 8.526902], [47.354052, 8.52696], [47.371604, 8.51605], [47.345004, 8.533419], [47.397258, 8.508342], [47.411579, 8.563224], [47.412612, 8.480783], [47.377759, 8.525431], [47.331734, 8.516475], [47.384048, 8.531042], [47.387306, 8.533692], [47.379804, 8.5068], [47.417428, 8.553699], [47.383934, 8.509571], [47.396425, 8.543298], [47.38954, 8.483762], [47.378371, 8.530211], [47.3987, 8.539662], [47.361476, 8.561399], [47.383024, 8.485171], [47.350792, 8.601994], [47.369945, 8.548813], [47.407732, 8.53863], [47.389022, 8.546204], [47.389163, 8.49455], [47.403807, 8.534256], [47.377695, 8.525575], [47.375534, 8.541885], [47.362576, 8.514821], [47.379706, 8.542064], [47.378323, 8.514239], [47.419152, 8.506409], [47.353512, 8.524089], [47.374805, 8.545737], [47.375384, 8.484584], [47.373269, 8.536965], [47.404646, 8.572153], [47.387309, 8.525784], [47.409655, 8.550105], [47.384235, 8.531231], [47.380346, 8.524861], [47.369649, 8.508715], [47.37619, 8.558769], [47.377699, 8.50685], [47.360721, 8.586894], [47.38066, 8.542004], [47.360259, 8.547645], [47.414206, 8.518846], [47.373329, 8.53159], [47.374243, 8.517705], [47.365374, 8.564791], [47.367138, 8.536654], [47.366203, 8.540341], [47.359927, 8.521996], [47.369503, 8.526216], [47.376121, 8.536044], [47.348343, 8.534162], [47.417198, 8.542973], [47.410868, 8.550263], [47.378189, 8.527519], [47.386815, 8.54747], [47.370545, 8.524529], [47.375065, 8.568108], [47.384436, 8.531831], [47.399753, 8.544268], [47.359865, 8.522868], [47.396539, 8.508248], [47.39772, 8.532939], [47.370298, 8.558818], [47.383431, 8.48396], [47.385065, 8.53093], [47.374555, 8.545559], [47.376934, 8.540391], [47.376138, 8.522776], [47.379999, 8.548136], [47.358434, 8.497793], [47.37123, 8.549846], [47.393836, 8.472229], [47.383326, 8.499427], [47.38007, 8.520737], [47.36093, 8.549976], [47.40971, 8.544395], [47.366824, 8.543161], [47.413793, 8.545407], [47.384546, 8.538244], [47.384311, 8.543126], [47.363088, 8.556588], [47.384259, 8.507458], [47.410341, 8.539532], [47.372959, 8.536469], [47.357676, 8.578343], [47.414858, 8.551552], [47.389174, 8.47047], [47.411994, 8.524473], [47.400655, 8.502793], [47.416377, 8.546071], [47.374509, 8.539997], [47.375836, 8.559119], [47.39933, 8.515763], [47.370544, 8.549236], [47.363939, 8.550423], [47.364623, 8.537184], [47.389789, 8.516457], [47.364696, 8.565982], [47.389946, 8.54919], [47.414082, 8.541544], [47.412136, 8.550236], [47.359824, 8.535828], [47.369582, 8.520709], [47.377024, 8.537572], [47.385572, 8.52008], [47.376185, 8.567681], [47.378957, 8.489342], [47.375121, 8.545584], [47.409117, 8.545191], [47.36921, 8.527732], [47.37446, 8.48826], [47.370458, 8.515563], [47.387253, 8.519227], [47.377114, 8.53376], [47.38326, 8.482023], [47.42084, 8.550617], [47.376674, 8.538399], [47.419562, 8.54786], [47.419168, 8.547653], [47.377214, 8.526969], [47.366629, 8.54468], [47.403974, 8.550636], [47.399702, 8.51732], [47.37665, 8.538055], [47.41498, 8.545445], [47.417768, 8.545424], [47.381588, 8.53719], [47.364217, 8.507613], [47.378557, 8.509357], [47.381471, 8.517097], [47.394783, 8.525791], [47.405227, 8.480811], [47.390919, 8.488478], [47.367108, 8.539751], [47.392222, 8.51693], [47.380255, 8.525905], [47.377524, 8.53888], [47.378476, 8.496629], [47.334748, 8.529781], [47.365471, 8.530238], [47.364376, 8.546129], [47.401208, 8.490615], [47.369182, 8.527904], [47.381593, 8.513656], [47.41191, 8.524855], [47.402035, 8.499455], [47.418616, 8.547058], [47.384544, 8.531847], [47.389326, 8.52168], [47.399488, 8.533386], [47.388144, 8.520172], [47.398806, 8.533226], [47.391952, 8.517905], [47.370709, 8.547002], [47.362153, 8.554648], [47.374487, 8.546101], [47.402296, 8.487669], [47.369081, 8.547961], [47.367101, 8.523439], [47.414405, 8.552788], [47.363422, 8.534869], [47.378453, 8.540489], [47.370713, 8.535231], [47.373487, 8.534851], [47.374601, 8.518772], [47.378361, 8.499355], [47.386786, 8.502675], [47.403107, 8.502272], [47.366932, 8.54311], [47.363728, 8.574858], [47.413836, 8.547462], [47.402472, 8.535567], [47.373465, 8.520007], [47.36019, 8.531308], [47.378597, 8.519515], [47.397708, 8.533283], [47.430946, 8.550125], [47.379262, 8.530136], [47.380945, 8.51853], [47.385706, 8.532626], [47.397869, 8.532491], [47.373226, 8.533045], [47.369605, 8.525887], [47.390824, 8.508676], [47.396416, 8.528236], [47.398551, 8.539209], [47.390182, 8.516756], [47.375062, 8.539518], [47.379709, 8.527536], [47.360321, 8.567253], [47.355888, 8.592561], [47.363324, 8.533742], [47.367416, 8.537666], [47.371308, 8.536038], [47.398768, 8.524866], [47.37084, 8.548289], [47.37211, 8.535948], [47.387807, 8.488443], [47.355173, 8.554635], [47.404521, 8.572084], [47.383437, 8.539506], [47.333625, 8.514277], [47.368578, 8.538431], [47.364854, 8.536567], [47.386399, 8.496826], [47.382678, 8.507228], [47.383735, 8.573735], [47.408788, 8.550444], [47.41391, 8.519755], [47.39831, 8.532447], [47.387765, 8.544099], [47.369869, 8.509169], [47.3853, 8.507784], [47.388509, 8.515716], [47.378843, 8.525003], [47.41065, 8.531588], [47.371223, 8.523192], [47.357067, 8.597961], [47.363391, 8.534352], [47.392048, 8.523947], [47.367074, 8.544305], [47.374506, 8.549743], [47.370243, 8.511534], [47.364623, 8.538085], [47.40281, 8.535057], [47.381412, 8.503124], [47.365153, 8.553189], [47.406164, 8.54827], [47.404163, 8.500942], [47.390369, 8.50917], [47.378894, 8.523348], [47.374456, 8.539863], [47.382916, 8.544091], [47.403478, 8.556322], [47.374397, 8.541385], [47.35659, 8.523901], [47.386397, 8.502005], [47.373545, 8.59444], [47.370106, 8.518575], [47.364888, 8.565681], [47.369115, 8.525387], [47.368105, 8.541797], [47.376527, 8.541548], [47.373364, 8.53171], [47.396842, 8.529715], [47.414345, 8.551621], [47.366806, 8.555289], [47.365221, 8.547073], [47.362702, 8.558287], [47.405738, 8.480993], [47.402031, 8.577437], [47.362587, 8.527068], [47.377601, 8.52115], [47.386335, 8.531764], [47.36524, 8.564629], [47.386216, 8.51763], [47.406719, 8.550494], [47.371641, 8.514051], [47.393984, 8.472709], [47.420105, 8.548467], [47.339756, 8.530042], [47.4268, 8.542497], [47.337925, 8.537164], [47.377909, 8.541855], [47.390303, 8.523037], [47.380494, 8.527341], [47.386508, 8.497716], [47.389927, 8.539017], [47.374859, 8.525835], [47.374273, 8.524009], [47.378046, 8.526522], [47.377552, 8.522579], [47.379806, 8.524863], [47.364714, 8.532327], [47.419776, 8.550873], [47.341847, 8.530548], [47.380443, 8.557084], [47.34037, 8.519296], [47.351135, 8.560096], [47.396563, 8.528782], [47.397402, 8.531409], [47.412539, 8.550404], [47.363894, 8.567037], [47.383677, 8.540676], [47.370508, 8.549222], [47.368513, 8.524368], [47.34094, 8.52656], [47.410227, 8.549587], [47.363707, 8.532293], [47.366341, 8.552207], [47.355775, 8.55932], [47.369507, 8.513306], [47.384225, 8.516027], [47.38677, 8.518025], [47.365373, 8.52159], [47.386825, 8.502331], [47.369982, 8.552455], [47.393585, 8.533688], [47.393856, 8.544861], [47.367827, 8.539885], [47.393496, 8.492953], [47.375081, 8.523284], [47.413432, 8.545466], [47.407533, 8.548113], [47.40163, 8.505382], [47.367896, 8.544838], [47.406816, 8.550642], [47.387697, 8.471726], [47.377164, 8.513077], [47.378652, 8.527144], [47.378669, 8.519569], [47.366973, 8.558536], [47.411544, 8.570485], [47.362761, 8.567966], [47.37244, 8.534287], [47.396623, 8.529101], [47.37138, 8.536039], [47.3298, 8.53267], [47.365997, 8.546798], [47.402644, 8.499785], [47.364774, 8.566341], [47.396309, 8.504958], [47.37722, 8.538715], [47.356614, 8.534676], [47.374554, 8.545639], [47.407468, 8.54839], [47.415502, 8.563108], [47.374485, 8.541598], [47.3745, 8.532462], [47.412289, 8.558654], [47.361278, 8.548368], [47.356637, 8.532254], [47.398659, 8.539198], [47.384314, 8.548398], [47.360342, 8.552161], [47.356156, 8.520265], [47.370188, 8.548805], [47.376744, 8.543287], [47.376288, 8.544867], [47.390142, 8.47886], [47.364612, 8.55425], [47.388526, 8.484537], [47.42189, 8.509844], [47.385225, 8.536828], [47.408938, 8.539516], [47.407103, 8.545136], [47.393457, 8.53762], [47.365705, 8.535975], [47.414633, 8.520273], [47.398054, 8.474245], [47.366031, 8.536737], [47.40512, 8.571607], [47.398026, 8.535859], [47.431372, 8.516543], [47.386, 8.496222], [47.420414, 8.503148], [47.377404, 8.500713], [47.348753, 8.56542], [47.408747, 8.54627], [47.353404, 8.550534], [47.3817, 8.530107], [47.378492, 8.540172], [47.417018, 8.523012], [47.414636, 8.546604], [47.371227, 8.539823], [47.3808, 8.528274], [47.354877, 8.574762], [47.35349, 8.554679], [47.364527, 8.533065], [47.419282, 8.548013], [47.401966, 8.499215], [47.405097, 8.549811], [47.36736, 8.541689], [47.415091, 8.546998], [47.381807, 8.513859], [47.408856, 8.574906], [47.378872, 8.542749], [47.366763, 8.545795], [47.422459, 8.55065], [47.375355, 8.516086], [47.374137, 8.522245], [47.356767, 8.522276], [47.387307, 8.547678], [47.41788, 8.555366], [47.397191, 8.530927], [47.381442, 8.534578], [47.376833, 8.540588], [47.344042, 8.531453], [47.35659, 8.554108], [47.367908, 8.532247], [47.368839, 8.531763], [47.369801, 8.508797], [47.389418, 8.521523], [47.404606, 8.550397], [47.369534, 8.52006], [47.395722, 8.532116], [47.392746, 8.523445], [47.387705, 8.490746], [47.38048, 8.490908], [47.386723, 8.547653], [47.36732, 8.545859], [47.418625, 8.530081], [47.407254, 8.550028], [47.420031, 8.547684], [47.362647, 8.547258], [47.384857, 8.508954], [47.372476, 8.543768], [47.378725, 8.542189], [47.357767, 8.580052], [47.366815, 8.555302], [47.407181, 8.585987], [47.362418, 8.567204], [47.40363, 8.496281], [47.384009, 8.532313], [47.376946, 8.540034], [47.398494, 8.542427], [47.373902, 8.476305], [47.360564, 8.563577], [47.410679, 8.544601], [47.396426, 8.472253], [47.36466, 8.556793], [47.404676, 8.551472], [47.360515, 8.596726], [47.400126, 8.545786], [47.393114, 8.521624], [47.378617, 8.492023], [47.392624, 8.490856], [47.385702, 8.530189], [47.370887, 8.547165], [47.365156, 8.521718], [47.355808, 8.522839], [47.36655, 8.545472], [47.34443, 8.526618], [47.386561, 8.517306], [47.340722, 8.537235], [47.393752, 8.512934], [47.339946, 8.529967], [47.400159, 8.494185], [47.372212, 8.502927], [47.370295, 8.54886], [47.384332, 8.548424], [47.42872, 8.544909], [47.370315, 8.518275], [47.362073, 8.557334], [47.385453, 8.517389], [47.368376, 8.498468], [47.399968, 8.545319], [47.379138, 8.48324], [47.391862, 8.538912], [47.387978, 8.4854], [47.367688, 8.560789], [47.332523, 8.517682], [47.372329, 8.523241], [47.392436, 8.516127], [47.377601, 8.527944], [47.360358, 8.566247], [47.377822, 8.508097], [47.34145, 8.529799], [47.373658, 8.503101], [47.402911, 8.54701], [47.407357, 8.536409], [47.425708, 8.509417], [47.375471, 8.547565], [47.372672, 8.521196], [47.372885, 8.531012], [47.360675, 8.521826], [47.37756, 8.541728], [47.427509, 8.546461], [47.424542, 8.537877], [47.390212, 8.491074], [47.411824, 8.525423], [47.377014, 8.543319], [47.40151, 8.581917], [47.361797, 8.547744], [47.368635, 8.509409], [47.41609, 8.50876], [47.393783, 8.537388], [47.341064, 8.526853], [47.388945, 8.527805], [47.387158, 8.535079], [47.393583, 8.540457], [47.376621, 8.526944], [47.404564, 8.548197], [47.375148, 8.525695], [47.406574, 8.567292], [47.387531, 8.493074], [47.424632, 8.543485], [47.369587, 8.553308], [47.391259, 8.516023], [47.378344, 8.527283], [47.373906, 8.483853], [47.373979, 8.535219], [47.414324, 8.483493], [47.373584, 8.519837], [47.407592, 8.530624], [47.369358, 8.528305], [47.397304, 8.53134], [47.362522, 8.547136], [47.367898, 8.539926], [47.357075, 8.522031], [47.402024, 8.497746], [47.430898, 8.540129], [47.356903, 8.522186], [47.382013, 8.531212], [47.364286, 8.555448], [47.375545, 8.52083], [47.381942, 8.529224], [47.32908, 8.514529], [47.398615, 8.494817], [47.370326, 8.49182], [47.414774, 8.561224], [47.401817, 8.499769], [47.376071, 8.55347], [47.381305, 8.537568], [47.389543, 8.539658], [47.377382, 8.541526], [47.38193, 8.583523], [47.375338, 8.545496], [47.366951, 8.543985], [47.346192, 8.534356], [47.408639, 8.546307], [47.38695, 8.481738], [47.351309, 8.576314], [47.349298, 8.562149], [47.374864, 8.520499], [47.413511, 8.536298], [47.392007, 8.526423], [47.38855, 8.483849], [47.388003, 8.485653], [47.378412, 8.52012], [47.361467, 8.561372], [47.378464, 8.526995], [47.383432, 8.549452], [47.37518, 8.540342], [47.409513, 8.549916], [47.376726, 8.544214], [47.364595, 8.566205], [47.379144, 8.508137], [47.36854, 8.524422], [47.3868, 8.528264], [47.37358, 8.546863], [47.39256, 8.52405], [47.370563, 8.524503], [47.376367, 8.561911], [47.378147, 8.517612], [47.380513, 8.54804], [47.413748, 8.528325], [47.390903, 8.50787], [47.396929, 8.530021], [47.370298, 8.513349], [47.387315, 8.533665], [47.403709, 8.496415], [47.373124, 8.495662], [47.412504, 8.544744], [47.335516, 8.51896], [47.375825, 8.51971], [47.362016, 8.549231], [47.36623, 8.540382], [47.377322, 8.527885], [47.377555, 8.492175], [47.377211, 8.538689], [47.359606, 8.551034], [47.378451, 8.575106], [47.374652, 8.537232], [47.391738, 8.517728], [47.370173, 8.513254], [47.380046, 8.567419], [47.396937, 8.512919], [47.409578, 8.537409], [47.377592, 8.49885], [47.378758, 8.510937], [47.384585, 8.533172], [47.365375, 8.546971], [47.391968, 8.51813], [47.405221, 8.480559], [47.368112, 8.54667], [47.406707, 8.553555], [47.375634, 8.517032], [47.386208, 8.528], [47.409433, 8.540427], [47.406557, 8.550438], [47.420574, 8.502382], [47.408737, 8.549224], [47.378571, 8.519435], [47.354332, 8.557873], [47.394541, 8.540927], [47.378107, 8.509388], [47.371093, 8.523613], [47.379134, 8.511143], [47.375749, 8.535427], [47.408283, 8.526027], [47.388603, 8.489969], [47.377786, 8.518704], [47.368927, 8.53195], [47.40358, 8.485972], [47.408982, 8.539543], [47.393416, 8.499734], [47.408547, 8.546544], [47.356576, 8.523503], [47.36029, 8.523605], [47.390319, 8.525197], [47.389118, 8.527543], [47.374806, 8.525741], [47.357205, 8.550944], [47.410347, 8.550119], [47.391401, 8.536279], [47.393343, 8.539207], [47.399514, 8.542991], [47.380304, 8.548221], [47.382592, 8.51459], [47.382512, 8.514496], [47.396084, 8.518466], [47.353198, 8.558869], [47.414384, 8.518055], [47.379191, 8.522401], [47.36536, 8.557853], [47.387615, 8.490784], [47.380753, 8.561289], [47.393283, 8.492644], [47.369585, 8.531884], [47.374924, 8.544613], [47.368382, 8.541022], [47.367445, 8.495973], [47.408928, 8.539595], [47.356144, 8.59033], [47.369398, 8.525909], [47.39137, 8.53106], [47.365964, 8.532326], [47.377553, 8.511906], [47.360484, 8.56343], [47.378409, 8.492231], [47.37151, 8.557214], [47.366365, 8.541285], [47.421307, 8.547843], [47.401248, 8.536601], [47.386064, 8.481297], [47.360204, 8.550583], [47.360423, 8.552137], [47.365723, 8.535989], [47.370197, 8.548805], [47.360359, 8.550388], [47.37722, 8.519606], [47.412329, 8.516622], [47.362019, 8.548979], [47.388671, 8.483374], [47.373616, 8.53643], [47.344067, 8.531666], [47.368449, 8.550967], [47.396762, 8.5297], [47.386811, 8.486199], [47.367196, 8.537105], [47.386714, 8.547613], [47.401188, 8.507414], [47.387116, 8.486324], [47.379209, 8.546993], [47.414389, 8.554457], [47.375412, 8.528256], [47.371402, 8.501957], [47.37052, 8.519497], [47.365532, 8.53621], [47.393852, 8.472442], [47.390842, 8.523088], [47.370604, 8.522067], [47.377056, 8.47973], [47.410349, 8.539611], [47.419825, 8.507483], [47.363607, 8.533377], [47.400847, 8.491695], [47.369644, 8.537036], [47.352932, 8.524581], [47.389534, 8.53685], [47.395579, 8.532087], [47.366702, 8.533229], [47.357052, 8.532183], [47.393113, 8.524578], [47.370689, 8.524479], [47.392475, 8.523506], [47.380435, 8.512507], [47.407719, 8.530454], [47.375809, 8.545175], [47.38089, 8.512874], [47.412045, 8.54659], [47.391467, 8.519723], [47.365011, 8.531367], [47.370717, 8.516734], [47.352283, 8.57791], [47.409639, 8.546169], [47.414106, 8.51895], [47.365054, 8.531553], [47.414768, 8.560919], [47.379912, 8.544108], [47.369652, 8.525663], [47.376114, 8.488346], [47.378238, 8.541332], [47.378164, 8.509972], [47.413465, 8.530665], [47.375967, 8.500525], [47.377567, 8.543781], [47.377621, 8.543769], [47.378095, 8.483194], [47.395191, 8.534039], [47.380801, 8.51564], [47.400991, 8.544664], [47.377513, 8.52769], [47.370888, 8.554527], [47.379561, 8.500955], [47.400815, 8.542382], [47.3868, 8.541456], [47.370077, 8.512047], [47.374405, 8.541438], [47.391246, 8.523149], [47.380663, 8.512141], [47.409453, 8.54586], [47.340218, 8.531627], [47.397443, 8.541292], [47.405917, 8.553419], [47.399871, 8.54892], [47.342498, 8.53117], [47.343637, 8.524828], [47.406778, 8.550919], [47.374316, 8.521441], [47.34139, 8.530393], [47.423138, 8.494521], [47.40716, 8.586292], [47.387673, 8.486361], [47.379764, 8.494549], [47.391462, 8.523154], [47.42176, 8.550318], [47.36655, 8.540786], [47.367158, 8.540176], [47.374068, 8.515212], [47.393405, 8.499893], [47.374718, 8.536015], [47.409524, 8.49702], [47.378511, 8.480977], [47.377899, 8.529711], [47.376956, 8.539955], [47.391986, 8.523919], [47.364283, 8.536979], [47.377872, 8.529671], [47.391648, 8.542457], [47.376715, 8.533183], [47.359901, 8.522896], [47.389033, 8.517449], [47.423756, 8.514255], [47.39942, 8.49527], [47.363439, 8.561149], [47.37582, 8.54209], [47.412115, 8.565488], [47.370708, 8.516667], [47.380064, 8.522392], [47.372235, 8.521677], [47.373918, 8.527339], [47.375643, 8.549329], [47.366173, 8.540685], [47.39033, 8.490957], [47.358321, 8.586789], [47.370912, 8.548291], [47.378751, 8.525213], [47.408761, 8.477951], [47.371558, 8.547602], [47.377929, 8.508179], [47.367108, 8.539751], [47.364623, 8.537198], [47.378156, 8.509892], [47.389191, 8.494471], [47.370179, 8.548818], [47.37859, 8.510655], [47.379178, 8.525725], [47.38386, 8.573857], [47.369981, 8.527046], [47.392662, 8.502487], [47.377389, 8.548293], [47.370925, 8.523252], [47.370305, 8.514554], [47.384074, 8.480476], [47.380421, 8.541668], [47.387207, 8.494087], [47.355112, 8.559094], [47.393593, 8.528999], [47.352706, 8.524655], [47.402186, 8.495802], [47.365656, 8.563539], [47.368371, 8.52132], [47.415887, 8.507378], [47.368341, 8.538744], [47.390995, 8.523091], [47.349286, 8.524903], [47.380981, 8.518504], [47.393719, 8.535665], [47.381297, 8.542229], [47.377122, 8.540501], [47.365705, 8.536002], [47.370026, 8.519394], [47.372757, 8.547283], [47.385196, 8.537026], [47.368905, 8.533367], [47.410861, 8.545293], [47.383126, 8.543751], [47.381221, 8.51786], [47.427447, 8.546367], [47.375312, 8.540649], [47.361802, 8.507114], [47.37031, 8.545405], [47.429965, 8.538864], [47.384538, 8.542866], [47.399061, 8.542346], [47.394216, 8.489908], [47.370621, 8.55709], [47.38555, 8.545218], [47.381086, 8.491582], [47.382646, 8.514644], [47.40553, 8.537432], [47.377536, 8.519454], [47.387527, 8.514915], [47.396889, 8.540963], [47.369213, 8.527401], [47.417334, 8.545653], [47.371492, 8.555307], [47.38882, 8.479894], [47.419873, 8.501388], [47.393354, 8.524808], [47.421295, 8.546292], [47.39008, 8.515125], [47.373761, 8.536353], [47.403138, 8.576467], [47.382682, 8.531862], [47.375842, 8.530278], [47.427246, 8.543831], [47.380479, 8.519355], [47.386788, 8.535191], [47.370731, 8.537204], [47.371168, 8.539451], [47.389607, 8.52146], [47.422375, 8.549032], [47.390285, 8.50954], [47.367108, 8.539778], [47.409347, 8.575314], [47.379491, 8.52679], [47.37436, 8.496216], [47.406625, 8.495293], [47.376292, 8.540762], [47.370581, 8.52449], [47.379065, 8.542369], [47.420673, 8.502437], [47.364406, 8.555106], [47.363648, 8.553501], [47.366409, 8.521413], [47.407486, 8.560448], [47.375934, 8.553626], [47.350031, 8.527857], [47.383877, 8.542362], [47.370091, 8.544844], [47.375708, 8.549079], [47.415953, 8.508969], [47.378894, 8.530976], [47.388564, 8.549837], [47.375836, 8.538528], [47.363749, 8.535419], [47.410815, 8.553866], [47.373274, 8.535535], [47.385626, 8.529697], [47.379444, 8.537543], [47.376888, 8.536735], [47.358776, 8.533437], [47.368625, 8.554175], [47.388888, 8.491207], [47.364611, 8.532789], [47.35498, 8.534325], [47.350039, 8.560814], [47.390986, 8.522124], [47.370322, 8.548887], [47.384257, 8.477169], [47.357811, 8.520312], [47.399535, 8.505274], [47.369418, 8.525711], [47.384984, 8.531022], [47.36747, 8.494239], [47.414336, 8.551647], [47.395701, 8.540077], [47.366893, 8.54348], [47.397254, 8.546018], [47.338687, 8.530841], [47.42126, 8.536762], [47.394754, 8.545038], [47.36369, 8.531274], [47.370794, 8.535259], [47.38232, 8.549932], [47.378514, 8.553852], [47.414768, 8.560919], [47.378641, 8.553736], [47.375807, 8.549068], [47.389087, 8.51745], [47.37358, 8.575558], [47.35533, 8.559721], [47.360481, 8.552694], [47.364349, 8.536676], [47.370736, 8.470285], [47.374686, 8.54968], [47.372763, 8.511439], [47.380635, 8.519027], [47.392763, 8.523525], [47.395825, 8.545895], [47.362398, 8.527103], [47.4041, 8.491057], [47.378564, 8.542054], [47.371235, 8.536235], [47.39595, 8.489107], [47.373786, 8.536592], [47.377906, 8.48319], [47.377309, 8.529302], [47.378938, 8.510914], [47.407204, 8.50666], [47.39401, 8.525789], [47.374642, 8.552407], [47.371227, 8.539823], [47.364633, 8.554899], [47.410882, 8.505753], [47.394769, 8.525447], [47.392312, 8.476637], [47.372783, 8.569635], [47.403827, 8.567631], [47.375082, 8.492033], [47.36766, 8.495117], [47.413888, 8.543899], [47.358571, 8.517957], [47.364604, 8.566205], [47.385352, 8.531016], [47.410162, 8.566427], [47.37734, 8.498924], [47.368285, 8.535208], [47.340816, 8.530157], [47.378795, 8.510832], [47.376319, 8.538803], [47.373308, 8.524347], [47.367969, 8.540007], [47.39202, 8.510647], [47.374484, 8.541651], [47.360039, 8.508072], [47.37968, 8.527734], [47.373133, 8.542749], [47.413908, 8.532383], [47.394639, 8.472894], [47.377259, 8.535525], [47.386456, 8.49647], [47.393713, 8.507476], [47.386701, 8.488342], [47.357669, 8.521024], [47.373459, 8.598569], [47.38525, 8.494578], [47.403606, 8.570926], [47.388388, 8.536283], [47.391103, 8.52308], [47.375695, 8.512411], [47.358278, 8.587437], [47.398255, 8.532486], [47.357454, 8.521906], [47.407515, 8.548152], [47.388296, 8.491036], [47.386073, 8.504912], [47.391783, 8.485475], [47.413267, 8.54586], [47.413111, 8.538635], [47.363731, 8.535498], [47.397978, 8.534189], [47.381141, 8.503211], [47.378965, 8.54242], [47.398262, 8.473163], [47.404953, 8.557294], [47.373232, 8.53519], [47.367006, 8.523027], [47.399515, 8.533386], [47.388959, 8.495314], [47.377528, 8.498967], [47.389736, 8.486958], [47.37058, 8.49254], [47.388118, 8.520026], [47.40791, 8.556588], [47.383431, 8.506594], [47.408356, 8.558916], [47.359, 8.516325], [47.391279, 8.515825], [47.376011, 8.552184], [47.340561, 8.530535], [47.370582, 8.516704], [47.367055, 8.544384], [47.419155, 8.506012], [47.37034, 8.548875], [47.374831, 8.497894], [47.370836, 8.546859], [47.373466, 8.552184], [47.4052, 8.480823], [47.365972, 8.533386], [47.373043, 8.533293], [47.362521, 8.554749], [47.361784, 8.507048], [47.367225, 8.545447], [47.40499, 8.557215], [47.376767, 8.538083], [47.366048, 8.504167], [47.378266, 8.496982], [47.370024, 8.549014], [47.425422, 8.494566], [47.381111, 8.518162], [47.368203, 8.529579], [47.412221, 8.555485], [47.374054, 8.513861], [47.382736, 8.529942], [47.373621, 8.553776], [47.357147, 8.522019], [47.419616, 8.547887], [47.390603, 8.539786], [47.375731, 8.535453], [47.381836, 8.533765], [47.389562, 8.473365], [47.377766, 8.543692], [47.362132, 8.526635], [47.373436, 8.535565], [47.38439, 8.53191], [47.382368, 8.488124], [47.370984, 8.531317], [47.366642, 8.532976], [47.388098, 8.539364], [47.399638, 8.520326], [47.38278, 8.510859], [47.326159, 8.513372], [47.372629, 8.534291], [47.366206, 8.520998], [47.372125, 8.536213], [47.379178, 8.51803], [47.42339, 8.508178], [47.379519, 8.529598], [47.372797, 8.511651], [47.369892, 8.513526], [47.378945, 8.516039], [47.374478, 8.539427], [47.389755, 8.512337], [47.38199, 8.52896], [47.410663, 8.572255], [47.366727, 8.545794], [47.377553, 8.518673], [47.371599, 8.54616], [47.398911, 8.533533], [47.37452, 8.518863], [47.391674, 8.51876], [47.40591, 8.590849], [47.391507, 8.487112], [47.364764, 8.545978], [47.370754, 8.547029], [47.38559, 8.506518], [47.366833, 8.543148], [47.406723, 8.566765], [47.368594, 8.499253], [47.356926, 8.535027], [47.409394, 8.544468], [47.352443, 8.5579], [47.329549, 8.529767], [47.359466, 8.511687], [47.416287, 8.545115], [47.371477, 8.524813], [47.393618, 8.509938], [47.33548, 8.518919], [47.362405, 8.577676], [47.408155, 8.556367], [47.399653, 8.515875], [47.374699, 8.529407], [47.365111, 8.564944], [47.425887, 8.555162], [47.382511, 8.529898], [47.353137, 8.511295], [47.36907, 8.528286], [47.353656, 8.524092], [47.36825, 8.501431], [47.390275, 8.522149], [47.414114, 8.550397], [47.406794, 8.578745], [47.378376, 8.510466], [47.396574, 8.545619], [47.419067, 8.506871], [47.370669, 8.535204], [47.358261, 8.520321], [47.351027, 8.582966], [47.370206, 8.548832], [47.396582, 8.528756], [47.389173, 8.494537], [47.387281, 8.522075], [47.362523, 8.533845], [47.376408, 8.527495], [47.37642, 8.528211], [47.368631, 8.547912], [47.388206, 8.520227], [47.383401, 8.515626], [47.38254, 8.540136], [47.376767, 8.538083], [47.380324, 8.556406], [47.360121, 8.516638], [47.382197, 8.498968], [47.428055, 8.489966], [47.36313, 8.535313], [47.384432, 8.531315], [47.378622, 8.496407], [47.361557, 8.52563], [47.364365, 8.548207], [47.393767, 8.529665], [47.366761, 8.53564], [47.398544, 8.500631], [47.369181, 8.52797], [47.412739, 8.541821], [47.370648, 8.535494], [47.378379, 8.541692], [47.377984, 8.541538], [47.373789, 8.517166], [47.374519, 8.52947], [47.371907, 8.522173], [47.393787, 8.521704], [47.395297, 8.532399], [47.374889, 8.518831], [47.388203, 8.526293], [47.383827, 8.539183], [47.374333, 8.552732], [47.368428, 8.505499], [47.366228, 8.533934], [47.392853, 8.50224], [47.413883, 8.551001], [47.377664, 8.538354], [47.358616, 8.58056], [47.339832, 8.518094], [47.379912, 8.551564], [47.36976, 8.533371], [47.389308, 8.472645], [47.414149, 8.519163], [47.377891, 8.51231], [47.375607, 8.537093], [47.363609, 8.535045], [47.41078, 8.54345], [47.369408, 8.526823], [47.375821, 8.535363], [47.381852, 8.540625], [47.376599, 8.560195], [47.370215, 8.548819], [47.385518, 8.548555], [47.378039, 8.548002], [47.40953, 8.537766], [47.358202, 8.571523], [47.406923, 8.586605], [47.373878, 8.502722], [47.380875, 8.537453], [47.377647, 8.529719], [47.368689, 8.541836], [47.337528, 8.534469], [47.414225, 8.479476], [47.3724, 8.534776], [47.353027, 8.487957], [47.383347, 8.515598], [47.371663, 8.517441], [47.330062, 8.502814], [47.398318, 8.532474], [47.377354, 8.499308], [47.388425, 8.488707], [47.384735, 8.542075], [47.380886, 8.535334], [47.360604, 8.552961], [47.424818, 8.540971], [47.396386, 8.512179], [47.412056, 8.513992], [47.363497, 8.532633], [47.360752, 8.566428], [47.376303, 8.559222], [47.397559, 8.531942], [47.374228, 8.536482], [47.362148, 8.557005], [47.402267, 8.487907], [47.324984, 8.511999], [47.389746, 8.511436], [47.371433, 8.524785], [47.414006, 8.546644], [47.360363, 8.553737], [47.423858, 8.513939], [47.399987, 8.508913], [47.392239, 8.494677], [47.370197, 8.548805], [47.365424, 8.545634], [47.420789, 8.50244], [47.3785, 8.519381], [47.349717, 8.561562], [47.351442, 8.53183], [47.413894, 8.545131], [47.32794, 8.529642], [47.409549, 8.537647], [47.377086, 8.529125], [47.382997, 8.529948], [47.390913, 8.489114], [47.365592, 8.561724], [47.382722, 8.540882], [47.361048, 8.525222], [47.410546, 8.550004], [47.409654, 8.525631], [47.394889, 8.51256], [47.375323, 8.484318], [47.37356, 8.526206], [47.397005, 8.530566], [47.367065, 8.544305], [47.391182, 8.486271], [47.366838, 8.544499], [47.384435, 8.531964], [47.427179, 8.491274], [47.357791, 8.572097], [47.375758, 8.539215], [47.374339, 8.537954], [47.370499, 8.515921], [47.375015, 8.539769], [47.402508, 8.543106], [47.370277, 8.54886], [47.420762, 8.502439], [47.405302, 8.566748], [47.383356, 8.515612], [47.380044, 8.528285], [47.361186, 8.547651], [47.365435, 8.564912], [47.393319, 8.492579], [47.41434, 8.551223], [47.357401, 8.521878], [47.361909, 8.548222], [47.371716, 8.519548], [47.393599, 8.511964], [47.351733, 8.560572], [47.356605, 8.535642], [47.380935, 8.537693], [47.355504, 8.529385], [47.386784, 8.534714], [47.344252, 8.534991], [47.425706, 8.493989], [47.374449, 8.541598], [47.361772, 8.516156], [47.398659, 8.539198], [47.368021, 8.556135], [47.370635, 8.516772], [47.38582, 8.530032], [47.38028, 8.494122], [47.370188, 8.548818], [47.364132, 8.55179], [47.399062, 8.522249], [47.371533, 8.515982], [47.373593, 8.54546], [47.384373, 8.531843], [47.397932, 8.531459], [47.3976, 8.532353], [47.369153, 8.525255], [47.365311, 8.56471], [47.36438, 8.546659], [47.370133, 8.512736], [47.34358, 8.53282], [47.370242, 8.558101], [47.368829, 8.547916], [47.370891, 8.559783], [47.377012, 8.499407], [47.381141, 8.534982], [47.371673, 8.530749], [47.3635, 8.535149], [47.389823, 8.511795], [47.429728, 8.51248], [47.3474, 8.563035], [47.369178, 8.525454], [47.365902, 8.532312], [47.385211, 8.508656], [47.394945, 8.486915], [47.359232, 8.499954], [47.36867, 8.543914], [47.405829, 8.590821], [47.36412, 8.547514], [47.374087, 8.540902], [47.361276, 8.517284], [47.339087, 8.527594], [47.364728, 8.554398], [47.359767, 8.579685], [47.397839, 8.481223], [47.377541, 8.49861], [47.371167, 8.518543], [47.378384, 8.547705], [47.375362, 8.524905], [47.360576, 8.550247], [47.364517, 8.521798], [47.383344, 8.548271], [47.394139, 8.493456], [47.342412, 8.530732], [47.369653, 8.52557], [47.373616, 8.536443], [47.399712, 8.495792], [47.386069, 8.539852], [47.398273, 8.532473], [47.401353, 8.501296], [47.372411, 8.566317], [47.398452, 8.538359], [47.368631, 8.530978], [47.376676, 8.556899], [47.36363, 8.550668], [47.368243, 8.538662], [47.377188, 8.526889], [47.376741, 8.514061], [47.367777, 8.545975], [47.367349, 8.519962], [47.385177, 8.508457], [47.388403, 8.48423], [47.401154, 8.499491], [47.373673, 8.536126], [47.380561, 8.51243], [47.381893, 8.516218], [47.382677, 8.529464], [47.371115, 8.55526], [47.377955, 8.529474], [47.383673, 8.574528], [47.360729, 8.56235], [47.413742, 8.546042], [47.372373, 8.534735], [47.414299, 8.561055], [47.385204, 8.508431], [47.408648, 8.546307], [47.395387, 8.519034], [47.372789, 8.535512], [47.389634, 8.521487], [47.379333, 8.537792], [47.389193, 8.488312], [47.372808, 8.525873], [47.3951, 8.536091], [47.370595, 8.469925], [47.36997, 8.525365], [47.407074, 8.56403], [47.354573, 8.555231], [47.358425, 8.55874], [47.37092, 8.523822], [47.378042, 8.527913], [47.371896, 8.513699], [47.377354, 8.499295], [47.406921, 8.586816], [47.358675, 8.526935], [47.374527, 8.539984], [47.385627, 8.529604], [47.371181, 8.512281], [47.370672, 8.51668], [47.410454, 8.538037], [47.366738, 8.534183], [47.378872, 8.542762], [47.405508, 8.591463], [47.355195, 8.530676], [47.39394, 8.493558], [47.37457, 8.517275], [47.372585, 8.529443], [47.342448, 8.530719], [47.373797, 8.545822], [47.415486, 8.562869], [47.39108, 8.522629], [47.403944, 8.569462], [47.380534, 8.517343], [47.382972, 8.499817], [47.357483, 8.521748], [47.392408, 8.489859], [47.374453, 8.539294], [47.369283, 8.532434], [47.372889, 8.503629], [47.37383, 8.531892], [47.349631, 8.561163], [47.377052, 8.544075], [47.375, 8.545052], [47.4019, 8.499519], [47.378616, 8.527104], [47.380485, 8.53771], [47.384625, 8.507784], [47.366025, 8.533506], [47.386399, 8.496826], [47.370457, 8.549817], [47.37581, 8.496987], [47.410787, 8.547386], [47.384476, 8.53811]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_a8441eb3949b13852a18e271bc570a9a = L.heatLayer(\n", - " [[47.358969, 8.532011], [47.347168, 8.564724], [47.37057, 8.524715], [47.403805, 8.485884], [47.411219, 8.561388], [47.344353, 8.532876], [47.420514, 8.540498], [47.377333, 8.543856], [47.374913, 8.531596], [47.382436, 8.551921], [47.38065, 8.525066], [47.372677, 8.534914], [47.413574, 8.480868], [47.417878, 8.54145], [47.366378, 8.519956], [47.410587, 8.526882], [47.361557, 8.52559], [47.363446, 8.598656], [47.402565, 8.485727], [47.370197, 8.548805], [47.391252, 8.487425], [47.358064, 8.520145], [47.388783, 8.515324], [47.380884, 8.582839], [47.411081, 8.54771], [47.35151, 8.601242], [47.372496, 8.478661], [47.378573, 8.569056], [47.429085, 8.543485], [47.375322, 8.517727], [47.384263, 8.49734], [47.350951, 8.583388], [47.408826, 8.579822], [47.374272, 8.536522], [47.357446, 8.521787], [47.361657, 8.526479], [47.374957, 8.534497], [47.411192, 8.546466], [47.351144, 8.56007], [47.392807, 8.522678], [47.398264, 8.494823], [47.415573, 8.548307], [47.375997, 8.545271], [47.413382, 8.531816], [47.366694, 8.507278], [47.397181, 8.587613], [47.405034, 8.560038], [47.417184, 8.515845], [47.365327, 8.519829], [47.381241, 8.491347], [47.398026, 8.474377], [47.358073, 8.520198], [47.425678, 8.494094], [47.359561, 8.549219], [47.383152, 8.497781], [47.381692, 8.530914], [47.385939, 8.49891], [47.371002, 8.486669], [47.409717, 8.532231], [47.371067, 8.538734], [47.36808, 8.522585], [47.373626, 8.536377], [47.375094, 8.545597], [47.391178, 8.538911], [47.353565, 8.576468], [47.376839, 8.541846], [47.360729, 8.562363], [47.375103, 8.545597], [47.334177, 8.515929], [47.366501, 8.540255], [47.380667, 8.525199], [47.391513, 8.516704], [47.412851, 8.537543], [47.377677, 8.531282], [47.352109, 8.572757], [47.365673, 8.539298], [47.373354, 8.503916], [47.379615, 8.537454], [47.345443, 8.534632], [47.365786, 8.532217], [47.414445, 8.5543], [47.348417, 8.52257], [47.403894, 8.567248], [47.410935, 8.505887], [47.419596, 8.548059], [47.364562, 8.536932], [47.371807, 8.473232], [47.367782, 8.560446], [47.371191, 8.547409], [47.360768, 8.524422], [47.422734, 8.550974], [47.392974, 8.531702], [47.360559, 8.522737], [47.369886, 8.547488], [47.377644, 8.507922], [47.402057, 8.499018], [47.3583, 8.571565], [47.372868, 8.500014], [47.417036, 8.523038], [47.414315, 8.541562], [47.387692, 8.538481], [47.328318, 8.518152], [47.365647, 8.565353], [47.358416, 8.556887], [47.401609, 8.581893], [47.37011, 8.479846], [47.374312, 8.488668], [47.390771, 8.488912], [47.407039, 8.55645], [47.381267, 8.491453], [47.376834, 8.541435], [47.384476, 8.548401], [47.386673, 8.541559], [47.40513, 8.571448], [47.378636, 8.523038], [47.382971, 8.499831], [47.35266, 8.524813], [47.400205, 8.49408], [47.388683, 8.520223], [47.377349, 8.498911], [47.366824, 8.555315], [47.359156, 8.526481], [47.37981, 8.520679], [47.403847, 8.486255], [47.374129, 8.519292], [47.404715, 8.576156], [47.385118, 8.531077], [47.367727, 8.494642], [47.377233, 8.540106], [47.385536, 8.538251], [47.378708, 8.528827], [47.383559, 8.549256], [47.418349, 8.546761], [47.424623, 8.51202], [47.427224, 8.491262], [47.398669, 8.539185], [47.402779, 8.501775], [47.398687, 8.512398], [47.387455, 8.539787], [47.361608, 8.565413], [47.395164, 8.484588], [47.353601, 8.554377], [47.384984, 8.508864], [47.384551, 8.50316], [47.368464, 8.537171], [47.399939, 8.544603], [47.40424, 8.564924], [47.370173, 8.479847], [47.373968, 8.498817], [47.407844, 8.54478], [47.379094, 8.508706], [47.407884, 8.538673], [47.376912, 8.541768], [47.390508, 8.525174], [47.378468, 8.510242], [47.35623, 8.556033], [47.412959, 8.540394], [47.376749, 8.538057], [47.384517, 8.507781], [47.377201, 8.512932], [47.399888, 8.548974], [47.406328, 8.591335], [47.357994, 8.519984], [47.376837, 8.528802], [47.380596, 8.525091], [47.380614, 8.525105], [47.369848, 8.509526], [47.375632, 8.526857], [47.383389, 8.552895], [47.408644, 8.550455], [47.378965, 8.54242], [47.376695, 8.538982], [47.419699, 8.504618], [47.38671, 8.528196], [47.396703, 8.541502], [47.375499, 8.484718], [47.367667, 8.523451], [47.369411, 8.520746], [47.398596, 8.532586], [47.373392, 8.480996], [47.385769, 8.520164], [47.377014, 8.544286], [47.419577, 8.508127], [47.366035, 8.562462], [47.363154, 8.533659], [47.364321, 8.533921], [47.411009, 8.529766], [47.374726, 8.5228], [47.382352, 8.53155], [47.360166, 8.516639], [47.362194, 8.547527], [47.388742, 8.539721], [47.35399, 8.55596], [47.369153, 8.528036], [47.391099, 8.489396], [47.377229, 8.538636], [47.375311, 8.560406], [47.397869, 8.474904], [47.367887, 8.564407], [47.379599, 8.524939], [47.365166, 8.521613], [47.397148, 8.532543], [47.374084, 8.519304], [47.372145, 8.521741], [47.354579, 8.602037], [47.380024, 8.54268], [47.382004, 8.529345], [47.400558, 8.500711], [47.403914, 8.574403], [47.367496, 8.5378], [47.365687, 8.545375], [47.363166, 8.535261], [47.362076, 8.559783], [47.408644, 8.575392], [47.37034, 8.548888], [47.370152, 8.548804], [47.379094, 8.518333], [47.37777, 8.537627], [47.371226, 8.531428], [47.373527, 8.503668], [47.376998, 8.513497], [47.368419, 8.534376], [47.373942, 8.531497], [47.376269, 8.486164], [47.393963, 8.48108], [47.357549, 8.555426], [47.348799, 8.525899], [47.365768, 8.547283], [47.376459, 8.543957], [47.370188, 8.548805], [47.378043, 8.540136], [47.419695, 8.548022], [47.396456, 8.508471], [47.420659, 8.547949], [47.376025, 8.535711], [47.405262, 8.555154], [47.383394, 8.484105], [47.371133, 8.516398], [47.366231, 8.532663], [47.386223, 8.498346], [47.4188, 8.507502], [47.375875, 8.541084], [47.402696, 8.567422], [47.376791, 8.536548], [47.372372, 8.535848], [47.388489, 8.470669], [47.425128, 8.537757], [47.409531, 8.537633], [47.369695, 8.530735], [47.371961, 8.536488], [47.367514, 8.537773], [47.361502, 8.549405], [47.383099, 8.515249], [47.377206, 8.540145], [47.418936, 8.506365], [47.376271, 8.543913], [47.408932, 8.545757], [47.381909, 8.536561], [47.383585, 8.506491], [47.392703, 8.524106], [47.387567, 8.519339], [47.368149, 8.496715], [47.377263, 8.538862], [47.397917, 8.474561], [47.367854, 8.539833], [47.387582, 8.522518], [47.381306, 8.491176], [47.410148, 8.574324], [47.416765, 8.505792], [47.381221, 8.491558], [47.405449, 8.572899], [47.36923, 8.540775], [47.381834, 8.544426], [47.353335, 8.576132], [47.372506, 8.478503], [47.41085, 8.526583], [47.367101, 8.544319], [47.394783, 8.525804], [47.368277, 8.513996], [47.409017, 8.545374], [47.390105, 8.525947], [47.430725, 8.540285], [47.366598, 8.553603], [47.36467, 8.554754], [47.368189, 8.56019], [47.391743, 8.484892], [47.373379, 8.524481], [47.361672, 8.548522], [47.389083, 8.483581], [47.403384, 8.556824], [47.393837, 8.50667], [47.382913, 8.513921], [47.384454, 8.531885], [47.41457, 8.559007], [47.407037, 8.550143], [47.360678, 8.524421], [47.369865, 8.548732], [47.37621, 8.540866], [47.376228, 8.540853], [47.385208, 8.536774], [47.376428, 8.528237], [47.397896, 8.554033], [47.391099, 8.487502], [47.426986, 8.546623], [47.388578, 8.525625], [47.414095, 8.550436], [47.37542, 8.545405], [47.358324, 8.51545], [47.390217, 8.525446], [47.386834, 8.502398], [47.383096, 8.515514], [47.378522, 8.5752], [47.372304, 8.479955], [47.385048, 8.481237], [47.390619, 8.478882], [47.360766, 8.550118], [47.376685, 8.526773], [47.348649, 8.533216], [47.374619, 8.5322], [47.385446, 8.526846], [47.391237, 8.523136], [47.3932, 8.492842], [47.386795, 8.518158], [47.40606, 8.547022], [47.366652, 8.553604], [47.359825, 8.535695], [47.369152, 8.548069], [47.37466, 8.523063], [47.392144, 8.493231], [47.392148, 8.476886], [47.369216, 8.528037], [47.393618, 8.512826], [47.361738, 8.517902], [47.341963, 8.53063], [47.335087, 8.541419], [47.370423, 8.529757], [47.376945, 8.541067], [47.374898, 8.518791], [47.377191, 8.538874], [47.388825, 8.538531], [47.410687, 8.558766], [47.370179, 8.548805], [47.397247, 8.510474], [47.368039, 8.556122], [47.37017, 8.548818], [47.370668, 8.554098], [47.394766, 8.513273], [47.393653, 8.538816], [47.358927, 8.516363], [47.371616, 8.525332], [47.377025, 8.544048], [47.365355, 8.521603], [47.389785, 8.492443], [47.386687, 8.547626], [47.425599, 8.547681], [47.389945, 8.47679], [47.399399, 8.516069], [47.407821, 8.545297], [47.425814, 8.547791], [47.36655, 8.545446], [47.369576, 8.506833], [47.373022, 8.536497], [47.359856, 8.522855], [47.385678, 8.494057], [47.402055, 8.49927], [47.366618, 8.540178], [47.383192, 8.499319], [47.370553, 8.492539], [47.367056, 8.523425], [47.376154, 8.48595], [47.350936, 8.560158], [47.414776, 8.560932], [47.376575, 8.527009], [47.390894, 8.522294], [47.406687, 8.546333], [47.37745, 8.498688], [47.372774, 8.534227], [47.384286, 8.548529], [47.389396, 8.520953], [47.365548, 8.559803], [47.364202, 8.555803], [47.409581, 8.543783], [47.427659, 8.546729], [47.365895, 8.509963], [47.387962, 8.485215], [47.372678, 8.499202], [47.35617, 8.522648], [47.38364, 8.499539], [47.385683, 8.474641], [47.370397, 8.524897], [47.386806, 8.547483], [47.369153, 8.525255], [47.393824, 8.493437], [47.400815, 8.548914], [47.412805, 8.48137], [47.377359, 8.512405], [47.356576, 8.52349], [47.417313, 8.506836], [47.382454, 8.54824], [47.394939, 8.516892], [47.367854, 8.536973], [47.371509, 8.546132], [47.378401, 8.579236], [47.378344, 8.578639], [47.383715, 8.545193], [47.369848, 8.548586], [47.381362, 8.51724], [47.383055, 8.572422], [47.388126, 8.485019], [47.398656, 8.58942], [47.413867, 8.527161], [47.357917, 8.520512], [47.409557, 8.53778], [47.382403, 8.551629], [47.36182, 8.560241], [47.386233, 8.496359], [47.364843, 8.56666], [47.410168, 8.524489], [47.3654, 8.548123], [47.416692, 8.51072], [47.382149, 8.548088], [47.402227, 8.535774], [47.374918, 8.537608], [47.379386, 8.508208], [47.370648, 8.519248], [47.38811, 8.519933], [47.413102, 8.5508], [47.361766, 8.56024], [47.376354, 8.527508], [47.388673, 8.487202], [47.361691, 8.560556], [47.376529, 8.527154], [47.391574, 8.542681], [47.386132, 8.497536], [47.400752, 8.531928], [47.380531, 8.537605], [47.381692, 8.513698], [47.371834, 8.473259], [47.361536, 8.565346], [47.365611, 8.53923], [47.376785, 8.539024], [47.415845, 8.481403], [47.367011, 8.547111], [47.395794, 8.524461], [47.422439, 8.550769], [47.391519, 8.487801], [47.386751, 8.547601], [47.379324, 8.537832], [47.397413, 8.532151], [47.384782, 8.509336], [47.37981, 8.524519], [47.409628, 8.550104], [47.419134, 8.506422], [47.421265, 8.549433], [47.403274, 8.575383], [47.378554, 8.541232], [47.405763, 8.548871], [47.364877, 8.548258], [47.408024, 8.546692], [47.380739, 8.534682], [47.388285, 8.476387], [47.349897, 8.527735], [47.361518, 8.511504], [47.373371, 8.534822], [47.41891, 8.507266], [47.394713, 8.525604], [47.392427, 8.537201], [47.383814, 8.52721], [47.350179, 8.530348], [47.370544, 8.535016], [47.405986, 8.504184], [47.360294, 8.579153], [47.370798, 8.519569], [47.364029, 8.547578], [47.379192, 8.542239], [47.38973, 8.486706], [47.388071, 8.528846], [47.378018, 8.543698], [47.41442, 8.54664], [47.369642, 8.540055], [47.34101, 8.526852], [47.344933, 8.533351], [47.376608, 8.543417], [47.372713, 8.533961], [47.366063, 8.532342], [47.360493, 8.535391], [47.368645, 8.512216], [47.354396, 8.561462], [47.370795, 8.517914], [47.407, 8.481746], [47.371186, 8.547873], [47.396356, 8.51345], [47.391038, 8.522311], [47.375357, 8.528361], [47.414419, 8.55414], [47.375505, 8.547751], [47.40896, 8.578937], [47.361852, 8.547626], [47.336222, 8.533728], [47.384215, 8.516146], [47.409603, 8.537661], [47.369081, 8.547948], [47.398251, 8.536712], [47.374407, 8.541279], [47.384943, 8.523829], [47.377872, 8.497835], [47.378533, 8.523487], [47.381598, 8.530462], [47.352659, 8.558738], [47.370734, 8.5139], [47.379826, 8.494616], [47.386705, 8.547626], [47.365133, 8.53088], [47.414112, 8.519295], [47.373972, 8.492435], [47.36821, 8.536411], [47.364981, 8.54683], [47.373122, 8.534513], [47.409795, 8.541071], [47.380053, 8.526352], [47.351544, 8.525797], [47.393354, 8.524808], [47.411153, 8.5709], [47.387006, 8.53403], [47.397518, 8.532458], [47.412202, 8.51479], [47.392521, 8.529149], [47.329023, 8.51392], [47.399426, 8.505378], [47.370797, 8.519688], [47.402559, 8.546247], [47.333416, 8.528881], [47.402596, 8.546102], [47.404761, 8.574223], [47.370061, 8.511834], [47.373864, 8.538805], [47.383629, 8.574448], [47.379411, 8.489814], [47.36613, 8.545159], [47.378446, 8.51934], [47.383054, 8.528638], [47.408871, 8.548366], [47.384747, 8.527494], [47.38785, 8.520802], [47.390024, 8.525906], [47.37884, 8.530962], [47.39297, 8.529185], [47.364859, 8.554837], [47.358211, 8.571444], [47.386088, 8.537839], [47.404179, 8.579417], [47.387274, 8.537068], [47.362761, 8.548505], [47.369398, 8.525909], [47.360541, 8.525609], [47.359574, 8.535598], [47.377245, 8.54833], [47.370215, 8.548819], [47.399815, 8.467457], [47.377845, 8.529723], [47.43092, 8.550005], [47.388027, 8.486951], [47.397783, 8.533019], [47.407191, 8.53785], [47.418188, 8.547579], [47.405257, 8.480559], [47.378297, 8.530421], [47.36489, 8.554375], [47.377354, 8.499295], [47.372311, 8.523175], [47.388941, 8.520559], [47.41756, 8.55402], [47.36655, 8.545472], [47.366717, 8.54774], [47.340826, 8.529151], [47.38033, 8.527536], [47.387152, 8.54602], [47.416372, 8.525702], [47.37302, 8.528181], [47.391523, 8.546137], [47.412628, 8.483049], [47.3613, 8.53284], [47.380977, 8.535191], [47.3648, 8.545992], [47.340059, 8.530353], [47.378426, 8.509924], [47.36695, 8.544051], [47.372469, 8.543543], [47.411058, 8.545457], [47.418456, 8.546843], [47.362305, 8.561231], [47.420208, 8.540531], [47.361739, 8.526375], [47.369726, 8.525519], [47.369491, 8.553875], [47.392764, 8.524399], [47.409722, 8.575614], [47.366873, 8.545492], [47.370561, 8.549263], [47.376902, 8.546588], [47.375493, 8.548029], [47.359538, 8.535584], [47.387432, 8.482198], [47.411725, 8.512912], [47.371322, 8.547796], [47.396189, 8.52741], [47.383043, 8.52983], [47.359218, 8.596909], [47.376074, 8.559614], [47.405259, 8.533849], [47.398239, 8.537069], [47.384345, 8.531922], [47.430591, 8.538294], [47.401981, 8.504436], [47.36606, 8.538392], [47.371337, 8.538713], [47.376739, 8.535315], [47.374735, 8.544623], [47.408932, 8.545717], [47.366398, 8.54065], [47.37603, 8.54457], [47.337211, 8.53003], [47.399256, 8.542668], [47.385276, 8.495665], [47.382795, 8.514011], [47.38308, 8.530678], [47.382782, 8.530831], [47.409946, 8.575619], [47.36011, 8.595909], [47.377342, 8.543843], [47.37026, 8.5136], [47.407498, 8.546151], [47.430946, 8.550125], [47.374154, 8.47533], [47.380264, 8.493884], [47.393599, 8.52933], [47.370358, 8.513654], [47.431031, 8.515489], [47.397077, 8.530554], [47.377349, 8.498924], [47.358133, 8.521496], [47.360533, 8.563113], [47.343143, 8.530456], [47.366436, 8.545099], [47.403071, 8.585952], [47.428042, 8.511943], [47.405608, 8.565827], [47.390504, 8.54544], [47.418445, 8.547081], [47.378203, 8.510634], [47.386692, 8.488382], [47.374722, 8.543153], [47.409028, 8.578408], [47.356791, 8.532178], [47.368582, 8.524688], [47.400798, 8.548873], [47.373598, 8.544957], [47.424738, 8.548392], [47.41087, 8.550064], [47.410843, 8.550077], [47.377256, 8.538716], [47.376385, 8.488205], [47.357587, 8.550542], [47.414501, 8.546628], [47.420506, 8.502991], [47.375502, 8.563853], [47.353499, 8.602066], [47.387843, 8.486471], [47.370859, 8.516869], [47.365693, 8.548487], [47.378056, 8.513849], [47.398692, 8.539516], [47.365089, 8.55328], [47.395399, 8.546244], [47.396733, 8.53937], [47.335034, 8.529959], [47.3781, 8.497456], [47.365096, 8.546952], [47.364384, 8.546248], [47.382212, 8.488452], [47.418205, 8.512487], [47.374297, 8.552731], [47.394062, 8.518358], [47.33633, 8.529959], [47.390324, 8.490639], [47.397095, 8.482877], [47.392831, 8.543872], [47.374192, 8.52504], [47.37465, 8.545932], [47.385938, 8.508803], [47.370364, 8.508266], [47.381598, 8.530449], [47.344042, 8.529574], [47.369606, 8.528654], [47.378587, 8.542531], [47.412288, 8.51523], [47.372114, 8.535485], [47.393233, 8.531906], [47.399692, 8.543207], [47.357947, 8.596233], [47.381555, 8.548141], [47.409224, 8.550043], [47.413208, 8.571434], [47.400798, 8.54886], [47.360852, 8.566311], [47.375736, 8.487424], [47.385409, 8.536434], [47.388974, 8.538031], [47.406608, 8.480321], [47.369978, 8.512005], [47.373879, 8.546644], [47.382909, 8.500756], [47.384151, 8.541984], [47.356666, 8.523479], [47.404171, 8.563717], [47.360769, 8.561014], [47.340069, 8.530274], [47.426977, 8.546569], [47.335591, 8.530036], [47.360296, 8.521964], [47.408543, 8.545073], [47.414003, 8.544153], [47.383235, 8.539872], [47.380397, 8.526147], [47.408087, 8.576255], [47.411387, 8.526859], [47.354106, 8.526947], [47.380847, 8.502967], [47.3637, 8.563908], [47.377459, 8.543792], [47.406658, 8.531426], [47.388245, 8.538095], [47.398967, 8.533335], [47.382582, 8.537607], [47.364918, 8.554322], [47.377619, 8.509603], [47.377491, 8.509852], [47.37329, 8.524333], [47.382361, 8.560647], [47.334975, 8.516196], [47.414918, 8.54066], [47.373145, 8.53303], [47.358009, 8.553383], [47.379816, 8.526757], [47.395454, 8.517565], [47.399032, 8.513981], [47.370206, 8.548806], [47.416021, 8.521971], [47.336337, 8.530105], [47.359817, 8.535563], [47.411875, 8.524775], [47.403419, 8.487797], [47.372527, 8.521233], [47.377805, 8.507951], [47.369348, 8.533098], [47.41158, 8.528334], [47.381192, 8.538162], [47.364684, 8.537344], [47.347983, 8.533294], [47.383827, 8.526773], [47.356058, 8.556056], [47.370646, 8.52996], [47.388494, 8.491066], [47.412898, 8.537385], [47.365704, 8.553889], [47.369005, 8.538003], [47.378574, 8.540054], [47.390287, 8.492691], [47.391092, 8.522325], [47.358022, 8.55762], [47.36277, 8.519022], [47.357612, 8.590189], [47.364621, 8.55053], [47.38213, 8.544498], [47.373223, 8.535243], [47.375599, 8.544575], [47.364257, 8.531219], [47.391054, 8.522549], [47.374701, 8.532069], [47.421091, 8.501969], [47.373646, 8.514158], [47.398852, 8.540699], [47.382587, 8.511319], [47.376074, 8.559628], [47.367903, 8.546043], [47.376048, 8.541816], [47.38022, 8.527719], [47.367355, 8.537492], [47.392452, 8.524048], [47.369288, 8.557181], [47.393526, 8.524626], [47.359244, 8.553092], [47.358953, 8.55715], [47.3646, 8.53296], [47.391353, 8.477281], [47.411091, 8.545775], [47.368417, 8.547722], [47.339085, 8.519151], [47.376521, 8.558088], [47.343833, 8.528882], [47.370998, 8.536561], [47.383298, 8.530418], [47.377815, 8.5271], [47.410535, 8.550229], [47.382945, 8.484017], [47.362184, 8.532567], [47.371716, 8.519548], [47.39837, 8.537509], [47.376599, 8.540623], [47.367767, 8.496191], [47.414995, 8.551369], [47.366488, 8.533092], [47.373117, 8.525482], [47.368757, 8.534714], [47.366975, 8.543376], [47.380817, 8.569501], [47.403615, 8.534491], [47.380617, 8.519026], [47.410397, 8.571838], [47.370048, 8.534264], [47.359339, 8.592927], [47.372387, 8.534259], [47.369058, 8.550357], [47.386788, 8.547495], [47.361312, 8.535408], [47.378751, 8.527994], [47.382441, 8.529711], [47.377036, 8.540049], [47.382332, 8.488071], [47.35761, 8.509056], [47.375222, 8.525485], [47.385245, 8.536696], [47.376929, 8.546536], [47.419186, 8.546725], [47.369457, 8.506076], [47.378521, 8.521871], [47.38728, 8.498897], [47.398299, 8.591797], [47.377014, 8.544273], [47.362141, 8.559599], [47.372674, 8.537125], [47.388573, 8.54797], [47.384458, 8.548387], [47.37821, 8.509906], [47.358027, 8.523149], [47.378092, 8.51001], [47.383879, 8.504802], [47.378783, 8.543568], [47.358295, 8.572055], [47.369164, 8.52789], [47.422332, 8.550754], [47.40339, 8.534526], [47.374949, 8.534431], [47.366538, 8.541977], [47.376581, 8.540635], [47.372513, 8.543623], [47.364198, 8.54782], [47.387112, 8.489728], [47.392432, 8.527134], [47.402289, 8.49432], [47.360439, 8.523952], [47.42704, 8.546584], [47.382323, 8.488057], [47.374966, 8.534458], [47.382817, 8.496093], [47.378473, 8.526995], [47.357661, 8.554051], [47.380928, 8.515563], [47.391133, 8.538923], [47.407399, 8.548984], [47.384476, 8.496669], [47.3891, 8.541795], [47.391055, 8.544233], [47.378359, 8.532382], [47.372761, 8.499945], [47.373067, 8.538351], [47.366875, 8.543414], [47.364883, 8.531576], [47.38688, 8.528372], [47.377482, 8.535741], [47.384243, 8.51604], [47.364551, 8.555056], [47.372663, 8.529816], [47.359818, 8.50857], [47.367924, 8.560608], [47.37765, 8.541743], [47.379581, 8.527785], [47.391215, 8.522659], [47.423349, 8.549754], [47.370987, 8.473415], [47.367594, 8.519808], [47.364648, 8.531677], [47.363674, 8.531975], [47.411402, 8.544218], [47.386752, 8.518926], [47.377521, 8.504675], [47.394337, 8.519649], [47.377317, 8.510206], [47.364417, 8.546461], [47.399125, 8.547845], [47.37318, 8.543465], [47.369052, 8.528325], [47.370727, 8.524308], [47.370542, 8.469897], [47.373055, 8.520594], [47.366538, 8.54105], [47.376034, 8.535685], [47.366558, 8.545565], [47.402667, 8.55188], [47.375946, 8.565372], [47.370894, 8.548356], [47.376355, 8.527415], [47.37384, 8.536527], [47.421274, 8.549406], [47.385175, 8.530761], [47.37331, 8.513568], [47.385294, 8.494712], [47.414111, 8.519374], [47.362805, 8.519129], [47.408008, 8.484615], [47.399512, 8.540368], [47.408474, 8.546675], [47.383969, 8.540311], [47.386923, 8.490678], [47.419107, 8.506395], [47.361183, 8.506916], [47.395703, 8.545429], [47.387637, 8.47542], [47.39245, 8.524313], [47.378145, 8.520698], [47.363011, 8.557963], [47.376955, 8.540034], [47.372945, 8.531304], [47.362798, 8.516044], [47.370197, 8.548805], [47.385897, 8.498578], [47.409202, 8.564366], [47.393872, 8.472164], [47.394146, 8.488714], [47.360639, 8.548421], [47.353925, 8.55347], [47.365267, 8.538469], [47.348748, 8.562243], [47.370977, 8.514845], [47.423455, 8.54529], [47.379242, 8.537896], [47.340569, 8.519181], [47.388469, 8.520007], [47.38874, 8.53898], [47.405189, 8.593669], [47.42184, 8.545707], [47.399416, 8.50551], [47.398789, 8.494409], [47.41856, 8.506172], [47.337762, 8.528824], [47.378751, 8.54223], [47.335638, 8.540292], [47.380035, 8.526351], [47.357296, 8.550867], [47.374681, 8.541761], [47.379225, 8.495439], [47.365521, 8.568104], [47.384379, 8.529274], [47.392204, 8.511128], [47.366479, 8.533078], [47.365397, 8.508378], [47.381532, 8.492028], [47.377741, 8.548155], [47.401464, 8.508758], [47.406826, 8.550589], [47.383443, 8.529387], [47.378095, 8.483194], [47.368459, 8.5292], [47.341125, 8.530798], [47.367651, 8.555359], [47.382242, 8.540276], [47.406466, 8.583799], [47.372629, 8.534317], [47.355668, 8.555532], [47.373353, 8.531935], [47.427087, 8.546373], [47.406844, 8.550576], [47.358386, 8.526121], [47.399566, 8.517476], [47.362366, 8.504478], [47.367971, 8.532262], [47.370619, 8.530039], [47.378525, 8.541457], [47.40992, 8.541259], [47.41032, 8.549191], [47.388491, 8.538617], [47.408448, 8.580767], [47.40579, 8.591125], [47.378623, 8.496367], [47.382306, 8.488031], [47.369644, 8.525623], [47.368082, 8.496158], [47.357963, 8.520434], [47.390609, 8.478988], [47.414576, 8.483472], [47.38295, 8.49338], [47.385205, 8.53986], [47.36685, 8.543254], [47.413172, 8.546402], [47.388533, 8.483742], [47.338911, 8.530012], [47.414501, 8.555043], [47.375618, 8.543476], [47.396798, 8.505604], [47.3771, 8.55218], [47.370188, 8.548805], [47.373436, 8.503799], [47.366185, 8.540381], [47.351932, 8.53417], [47.378521, 8.575213], [47.370169, 8.53947], [47.358028, 8.520237], [47.394143, 8.525076], [47.392988, 8.541505], [47.37462, 8.520586], [47.397005, 8.530579], [47.377824, 8.507872], [47.371008, 8.518236], [47.404814, 8.483757], [47.365176, 8.547112], [47.364328, 8.547306], [47.41989, 8.504343], [47.369915, 8.549157], [47.388789, 8.542358], [47.38334, 8.484091], [47.374374, 8.529599], [47.397747, 8.532979], [47.377826, 8.517341], [47.391875, 8.545085], [47.417194, 8.543371], [47.36027, 8.534235], [47.382567, 8.588159], [47.378455, 8.526981], [47.382193, 8.492518], [47.372059, 8.518389], [47.414775, 8.561105], [47.38326, 8.541091], [47.38571, 8.535937], [47.375482, 8.544585], [47.38829, 8.518043], [47.374312, 8.521825], [47.39788, 8.474613], [47.374726, 8.525673], [47.376503, 8.526981], [47.375981, 8.542225], [47.391719, 8.511052], [47.374481, 8.540115], [47.392416, 8.502774], [47.354704, 8.558411], [47.376443, 8.544698], [47.373841, 8.536487], [47.362675, 8.555533], [47.374573, 8.538952], [47.403463, 8.55603], [47.405416, 8.480828], [47.386675, 8.528129], [47.386952, 8.534996], [47.375247, 8.51799], [47.422167, 8.513004], [47.384427, 8.531831], [47.380402, 8.525604], [47.374078, 8.540809], [47.373475, 8.519981], [47.393445, 8.52942], [47.393269, 8.523244], [47.413453, 8.53195], [47.403492, 8.571559], [47.374996, 8.544588], [47.413288, 8.531311], [47.406948, 8.585903], [47.379159, 8.538133], [47.421787, 8.550358], [47.397717, 8.533336], [47.413866, 8.5415], [47.408711, 8.546256], [47.382182, 8.544724], [47.382164, 8.544658], [47.372198, 8.522788], [47.420662, 8.50257], [47.37926, 8.525567], [47.374919, 8.538469], [47.35122, 8.576246], [47.375225, 8.484263], [47.418232, 8.508644], [47.358991, 8.549499], [47.403471, 8.486036], [47.394964, 8.546513], [47.386075, 8.51821], [47.370281, 8.524855], [47.364618, 8.502113], [47.37505, 8.544603], [47.342061, 8.530817], [47.393797, 8.487462], [47.372287, 8.535237], [47.393233, 8.474297], [47.410629, 8.544242], [47.37293, 8.53288], [47.385959, 8.487851], [47.392556, 8.515877], [47.340275, 8.535121], [47.377495, 8.543806], [47.364637, 8.550795], [47.39197, 8.517905], [47.371513, 8.542835], [47.352416, 8.524861], [47.369342, 8.547927], [47.363155, 8.563566], [47.365532, 8.526678], [47.408217, 8.547147], [47.384038, 8.531095], [47.353836, 8.511508], [47.402105, 8.496807], [47.366997, 8.545707], [47.370243, 8.557042], [47.376947, 8.497632], [47.351932, 8.558617], [47.393408, 8.500608], [47.372461, 8.525415], [47.39665, 8.529181], [47.402144, 8.508175], [47.371666, 8.547565], [47.365144, 8.553175], [47.399073, 8.522077], [47.377769, 8.537733], [47.370161, 8.548805], [47.372704, 8.534901], [47.413858, 8.544176], [47.420935, 8.502217], [47.354543, 8.512886], [47.394791, 8.490926], [47.400226, 8.546556], [47.379204, 8.51137], [47.360634, 8.535725], [47.392379, 8.49117], [47.417708, 8.54802], [47.384962, 8.517075], [47.38922, 8.546142], [47.379135, 8.559374], [47.36343, 8.52633], [47.390898, 8.511353], [47.373813, 8.49512], [47.391698, 8.528722], [47.371792, 8.543847], [47.397426, 8.531767], [47.385778, 8.520217], [47.371493, 8.517372], [47.377585, 8.511364], [47.406753, 8.569243], [47.336156, 8.526489], [47.378003, 8.548001], [47.371623, 8.515944], [47.390775, 8.52257], [47.373241, 8.519049], [47.392389, 8.502787], [47.414514, 8.544283], [47.429931, 8.539605], [47.33252, 8.528558], [47.413033, 8.543974], [47.369458, 8.526294], [47.384773, 8.509323], [47.352335, 8.524873], [47.392793, 8.524174], [47.38484, 8.502053], [47.351039, 8.581841], [47.380788, 8.572454], [47.390942, 8.468862], [47.366907, 8.520139], [47.368906, 8.48966], [47.411452, 8.525668], [47.356042, 8.520011], [47.4001, 8.51905], [47.423479, 8.494554], [47.410011, 8.54297], [47.428011, 8.545703], [47.391375, 8.516158], [47.358601, 8.553634], [47.377789, 8.52416], [47.377013, 8.507088], [47.375829, 8.535469], [47.383256, 8.49924], [47.395018, 8.516099], [47.381416, 8.517188], [47.386591, 8.479625], [47.364401, 8.531196], [47.378601, 8.528732], [47.359005, 8.510963], [47.406934, 8.550552], [47.35786, 8.525621], [47.382356, 8.537748], [47.378472, 8.540383], [47.366979, 8.520127], [47.391156, 8.505769], [47.378836, 8.542774], [47.413119, 8.517685], [47.40847, 8.581192], [47.429636, 8.541376], [47.379773, 8.525565], [47.377674, 8.509458], [47.377036, 8.540049], [47.36327, 8.567395], [47.398474, 8.533126], [47.407473, 8.544097], [47.376645, 8.543365], [47.398475, 8.591324], [47.391122, 8.522961], [47.373535, 8.525014], [47.377505, 8.495603], [47.358222, 8.554645], [47.3299, 8.529748], [47.346403, 8.532944], [47.333865, 8.528043], [47.412612, 8.550379], [47.412285, 8.542196], [47.352156, 8.558741], [47.392421, 8.492482], [47.352369, 8.559023], [47.376866, 8.526724], [47.370188, 8.548805], [47.374347, 8.532393], [47.358733, 8.585143], [47.413335, 8.531099], [47.399303, 8.542404], [47.408888, 8.548512], [47.335145, 8.51919], [47.369794, 8.508625], [47.371818, 8.517285], [47.427041, 8.49159], [47.382169, 8.563702], [47.382403, 8.479239], [47.374457, 8.541664], [47.339177, 8.52565], [47.401501, 8.543999], [47.390805, 8.522213], [47.39886, 8.540831], [47.377113, 8.498191], [47.416044, 8.54613], [47.376751, 8.529317], [47.375479, 8.517254], [47.428819, 8.48896], [47.364618, 8.555547], [47.393003, 8.534339], [47.359578, 8.593329], [47.390287, 8.490651], [47.368478, 8.550729], [47.370585, 8.54308], [47.37909, 8.538767], [47.346602, 8.565599], [47.398034, 8.535926], [47.358544, 8.5869], [47.364013, 8.533266], [47.418224, 8.508471], [47.406321, 8.584776], [47.40317, 8.537833], [47.380365, 8.505487], [47.374523, 8.546075], [47.372154, 8.521702], [47.369698, 8.525571], [47.369016, 8.528324], [47.388138, 8.52653], [47.376744, 8.543287], [47.410082, 8.545012], [47.373387, 8.547217], [47.419125, 8.506409], [47.370491, 8.532088], [47.405109, 8.585399], [47.379326, 8.51757], [47.376174, 8.540852], [47.403253, 8.574866], [47.390387, 8.490547], [47.375116, 8.518518], [47.40748, 8.546151], [47.369039, 8.540983], [47.396217, 8.545373], [47.381973, 8.530682], [47.381071, 8.492231], [47.384151, 8.516197], [47.410877, 8.563222], [47.41331, 8.544138], [47.369648, 8.466252], [47.389651, 8.511964], [47.37573, 8.526992], [47.378052, 8.526774], [47.388424, 8.483873], [47.387696, 8.499567], [47.393532, 8.473058], [47.394856, 8.525753], [47.412287, 8.476907], [47.413841, 8.544176], [47.338471, 8.529963], [47.37017, 8.548792], [47.381218, 8.537301], [47.346388, 8.564403], [47.373559, 8.503152], [47.335144, 8.519243], [47.369219, 8.508494], [47.375196, 8.518691], [47.37446, 8.48826], [47.386828, 8.534728], [47.406943, 8.550591], [47.393441, 8.539315], [47.369079, 8.528246], [47.415163, 8.508821], [47.380003, 8.527913], [47.360079, 8.561634], [47.402844, 8.553964], [47.398167, 8.53614], [47.390962, 8.51313], [47.391153, 8.48945], [47.414578, 8.558212], [47.39303, 8.531478], [47.378647, 8.575282], [47.404015, 8.578738], [47.408998, 8.574154], [47.361519, 8.561599], [47.353342, 8.530704], [47.371196, 8.524132], [47.388463, 8.540643], [47.377615, 8.512026], [47.391134, 8.526485], [47.357966, 8.519176], [47.37458, 8.487878], [47.364449, 8.555358], [47.37853, 8.541868], [47.36653, 8.540918], [47.365488, 8.538976], [47.366806, 8.555302], [47.374656, 8.525447], [47.378104, 8.483194], [47.378863, 8.516117], [47.383164, 8.530335], [47.412068, 8.524276], [47.376655, 8.538452], [47.420947, 8.538452], [47.398659, 8.5326], [47.327994, 8.52963], [47.393125, 8.521413], [47.386923, 8.54269], [47.37104, 8.548161], [47.346209, 8.534449], [47.372702, 8.534186], [47.392932, 8.492664], [47.359043, 8.550704], [47.400719, 8.548673], [47.372622, 8.567685], [47.374497, 8.488089], [47.369124, 8.52352], [47.376963, 8.548642], [47.371289, 8.547504], [47.369728, 8.53002], [47.361892, 8.560243], [47.384523, 8.530217], [47.361493, 8.561426], [47.368997, 8.52839], [47.407314, 8.586242], [47.410167, 8.541675], [47.416696, 8.547509], [47.426049, 8.554198], [47.39624, 8.54385], [47.38962, 8.471922], [47.389453, 8.524464], [47.408265, 8.506721], [47.381434, 8.528737], [47.3709, 8.523119], [47.362707, 8.548464], [47.377467, 8.541978], [47.375923, 8.559492], [47.37666, 8.559547], [47.358149, 8.55385], [47.373832, 8.53646], [47.37443, 8.539796], [47.418512, 8.515223], [47.332789, 8.51815], [47.378581, 8.54212], [47.406702, 8.569865], [47.369653, 8.525649], [47.375141, 8.552907], [47.378859, 8.530883], [47.383514, 8.527561], [47.379285, 8.491798], [47.361508, 8.54787], [47.370179, 8.548805], [47.364398, 8.548446], [47.375435, 8.51622], [47.39186, 8.538143], [47.365251, 8.520251], [47.344898, 8.528533], [47.369464, 8.518919], [47.383362, 8.513082], [47.399142, 8.538625], [47.374015, 8.544648], [47.363419, 8.535134], [47.38012, 8.527889], [47.420506, 8.502977], [47.403814, 8.485857], [47.382883, 8.515271], [47.389638, 8.541978], [47.371451, 8.510327], [47.370397, 8.52487], [47.394553, 8.533033], [47.344522, 8.533051], [47.407096, 8.580089], [47.383248, 8.549845], [47.402277, 8.587127], [47.386806, 8.548423], [47.359835, 8.587325], [47.378637, 8.540029], [47.378557, 8.575267], [47.371678, 8.515866], [47.42111, 8.501797], [47.426298, 8.547072], [47.405442, 8.504664], [47.414103, 8.519242], [47.352168, 8.558384], [47.385616, 8.520161], [47.409881, 8.563917], [47.393505, 8.539197], [47.372374, 8.494072], [47.33006, 8.534686], [47.423463, 8.551016], [47.388566, 8.478127], [47.410784, 8.544033], [47.385974, 8.534671], [47.419088, 8.506461], [47.3731, 8.527282], [47.381102, 8.537206], [47.390117, 8.491588], [47.351663, 8.530326], [47.354774, 8.534281], [47.358046, 8.553265], [47.365406, 8.545634], [47.36529, 8.545539], [47.363733, 8.575282], [47.358114, 8.525361], [47.422876, 8.551163], [47.368618, 8.547422], [47.379998, 8.524536], [47.376729, 8.521119], [47.37848, 8.541416], [47.380515, 8.512535], [47.393733, 8.529399], [47.359323, 8.569959], [47.41986, 8.506622], [47.35151, 8.525624], [47.375328, 8.523739], [47.382537, 8.546096], [47.394173, 8.525673], [47.421027, 8.502073], [47.374503, 8.566705], [47.35009, 8.561146], [47.367156, 8.530908], [47.404206, 8.573946], [47.352457, 8.507946], [47.376438, 8.528185], [47.373888, 8.544738], [47.396022, 8.526996], [47.385882, 8.517729], [47.369732, 8.533397], [47.360489, 8.578588], [47.402788, 8.577254], [47.396712, 8.534905], [47.376572, 8.532994], [47.390957, 8.521435], [47.413257, 8.545966], [47.419272, 8.506027], [47.391063, 8.479474], [47.390221, 8.509605], [47.362326, 8.504874], [47.402287, 8.487656], [47.406958, 8.547107], [47.366536, 8.540335], [47.430594, 8.485668], [47.366843, 8.520256], [47.377349, 8.498871], [47.427984, 8.545716], [47.391284, 8.538145], [47.386308, 8.531737], [47.393603, 8.538404], [47.366205, 8.55701], [47.36159, 8.549566], [47.392188, 8.492358], [47.385963, 8.475533], [47.403766, 8.556368], [47.419143, 8.506409], [47.376754, 8.543261], [47.377157, 8.498258], [47.39649, 8.486177], [47.35968, 8.594748], [47.370191, 8.51426], [47.403806, 8.485844], [47.376919, 8.540099], [47.369555, 8.543549], [47.394339, 8.54699], [47.378696, 8.510883], [47.389095, 8.533795], [47.381154, 8.491981], [47.332493, 8.528531], [47.372629, 8.534291], [47.377863, 8.529671], [47.366205, 8.516258], [47.383097, 8.484046], [47.385943, 8.548352], [47.340006, 8.530286], [47.357185, 8.554928], [47.392882, 8.514639], [47.357647, 8.572068], [47.397399, 8.531779], [47.376073, 8.533434], [47.399135, 8.591895], [47.412975, 8.537811], [47.403061, 8.535049], [47.371763, 8.517324], [47.371494, 8.547654], [47.35042, 8.577989], [47.37291, 8.536018], [47.351795, 8.50465], [47.364038, 8.547565], [47.367272, 8.53479], [47.410942, 8.546289], [47.364679, 8.553841], [47.414179, 8.518885], [47.419152, 8.506396], [47.378342, 8.530369], [47.388958, 8.520599], [47.380341, 8.526371], [47.367516, 8.539415], [47.430955, 8.550139], [47.373505, 8.512884], [47.36585, 8.539672], [47.335042, 8.541484], [47.37017, 8.548831], [47.425624, 8.494133], [47.378582, 8.542067], [47.403304, 8.585997], [47.370984, 8.548305], [47.363849, 8.559649], [47.406861, 8.481161], [47.381488, 8.503655], [47.369868, 8.547488], [47.389037, 8.486706], [47.354986, 8.558099], [47.396849, 8.529914], [47.370179, 8.548832], [47.36061, 8.563459], [47.366465, 8.544901], [47.340412, 8.519575], [47.395062, 8.525797], [47.377551, 8.538828], [47.359076, 8.596734], [47.337098, 8.532462], [47.401822, 8.50014], [47.353162, 8.512487], [47.376696, 8.544624], [47.371587, 8.53697], [47.324122, 8.51861], [47.389757, 8.471634], [47.409702, 8.549894], [47.359112, 8.550997], [47.391513, 8.523473], [47.391789, 8.542818], [47.372513, 8.543623], [47.390673, 8.517177], [47.360955, 8.525604], [47.369214, 8.499239], [47.379622, 8.548035], [47.369295, 8.523524], [47.416224, 8.562898], [47.361458, 8.561399], [47.352316, 8.576349], [47.399692, 8.543193], [47.387164, 8.528709], [47.348677, 8.53319], [47.35646, 8.535772], [47.406132, 8.547872], [47.388404, 8.487117], [47.367083, 8.523399], [47.366824, 8.555302], [47.370166, 8.515941], [47.366967, 8.544131], [47.386246, 8.480982], [47.376301, 8.52842], [47.36659, 8.544997], [47.369498, 8.520125], [47.404505, 8.544009], [47.406522, 8.546595], [47.362825, 8.516097], [47.405774, 8.480994], [47.391114, 8.522842], [47.362992, 8.522257], [47.403083, 8.589225], [47.366618, 8.561719], [47.381611, 8.564697], [47.367015, 8.553241], [47.377469, 8.529504], [47.379912, 8.544028], [47.377264, 8.529287], [47.408877, 8.581916], [47.362889, 8.56777], [47.36631, 8.540423], [47.390887, 8.522175], [47.368971, 8.511018], [47.389511, 8.540148], [47.354485, 8.52681], [47.352394, 8.524318], [47.376145, 8.527808], [47.359449, 8.535463], [47.373083, 8.527189], [47.378176, 8.517414], [47.388514, 8.492736], [47.388455, 8.480416], [47.398316, 8.473151], [47.385014, 8.508507], [47.376705, 8.544611], [47.361333, 8.525493], [47.367809, 8.535065], [47.387859, 8.52467], [47.388535, 8.520631], [47.379834, 8.526691], [47.372776, 8.534956], [47.36226, 8.5197], [47.419802, 8.548156], [47.361829, 8.534002], [47.412959, 8.540381], [47.406823, 8.584973], [47.358851, 8.516825], [47.402424, 8.499277], [47.411704, 8.545576], [47.390728, 8.489627], [47.369588, 8.541894], [47.3927, 8.524477], [47.377206, 8.540185], [47.372591, 8.535521], [47.363981, 8.520423], [47.359446, 8.522489], [47.391952, 8.523641], [47.420047, 8.508853], [47.371164, 8.518901], [47.38186, 8.546373], [47.383951, 8.530855], [47.372485, 8.500641], [47.377092, 8.539798], [47.398703, 8.53276], [47.381152, 8.542372], [47.380483, 8.548344], [47.406653, 8.532831], [47.382338, 8.537748], [47.361489, 8.556316], [47.355407, 8.514809], [47.384449, 8.480815], [47.397194, 8.491834], [47.378417, 8.509884], [47.387538, 8.547061], [47.427472, 8.511308], [47.405153, 8.572813], [47.383088, 8.484046], [47.361749, 8.5118], [47.392244, 8.491114], [47.367666, 8.535023], [47.391101, 8.486296], [47.379173, 8.53861], [47.378006, 8.545843], [47.37077, 8.524481], [47.412123, 8.5507], [47.40766, 8.58397], [47.423435, 8.494527], [47.370179, 8.548792], [47.399003, 8.541828], [47.3672, 8.544241], [47.387098, 8.486324], [47.388009, 8.490977], [47.426245, 8.493085], [47.423724, 8.516773], [47.386629, 8.541532], [47.358559, 8.586371], [47.386922, 8.547538], [47.405275, 8.480547], [47.378559, 8.519766], [47.400233, 8.546795], [47.379783, 8.507157], [47.368914, 8.502596], [47.354799, 8.526829], [47.399375, 8.542405], [47.420775, 8.482321], [47.364014, 8.531267], [47.414408, 8.513576], [47.397744, 8.533284], [47.364402, 8.53011], [47.38116, 8.504072], [47.362149, 8.526741], [47.383249, 8.484208], [47.409513, 8.544258], [47.422859, 8.550208], [47.385334, 8.531015], [47.397889, 8.534121], [47.430037, 8.544578], [47.415413, 8.513808], [47.389849, 8.529174], [47.415305, 8.509937], [47.381721, 8.51538], [47.376838, 8.528696], [47.377658, 8.52858], [47.369398, 8.525909], [47.377862, 8.526942], [47.405799, 8.591098], [47.368847, 8.481357], [47.368789, 8.540885], [47.42759, 8.546463], [47.392903, 8.543874], [47.409986, 8.532329], [47.36449, 8.536983], [47.370183, 8.513214], [47.419493, 8.506522], [47.392279, 8.508811], [47.403649, 8.546959], [47.385205, 8.495597], [47.37028, 8.513428], [47.380814, 8.549477], [47.403835, 8.546393], [47.396999, 8.523611], [47.356734, 8.507529], [47.40508, 8.593786], [47.37741, 8.5395], [47.379833, 8.527764], [47.353346, 8.555629], [47.387139, 8.50145], [47.360343, 8.523712], [47.377964, 8.529487], [47.387182, 8.519159], [47.332479, 8.517601], [47.4116, 8.509822], [47.366016, 8.533506], [47.372125, 8.536227], [47.389093, 8.479462], [47.399481, 8.505286], [47.377836, 8.541959], [47.387461, 8.519086], [47.377052, 8.544048], [47.360011, 8.59498], [47.375414, 8.564646], [47.342625, 8.531041], [47.376722, 8.54183], [47.365418, 8.521552], [47.42249, 8.503322], [47.389493, 8.512464], [47.422314, 8.55074], [47.370174, 8.513161], [47.375266, 8.496512], [47.378227, 8.507152], [47.38649, 8.481835], [47.358804, 8.517009], [47.364693, 8.568126], [47.421396, 8.549833], [47.411454, 8.52641], [47.390977, 8.523091], [47.37958, 8.524978], [47.369337, 8.525749], [47.351519, 8.530362], [47.383699, 8.547802], [47.374452, 8.549662], [47.360304, 8.567199], [47.370784, 8.508473], [47.414256, 8.521193], [47.397634, 8.532553], [47.391105, 8.522908], [47.355573, 8.523046], [47.36825, 8.529421], [47.343332, 8.519991], [47.404932, 8.552948], [47.361401, 8.565409], [47.376047, 8.559627], [47.364623, 8.537198], [47.37135, 8.536423], [47.414815, 8.532534], [47.366938, 8.544382], [47.367092, 8.523452], [47.387857, 8.518166], [47.403386, 8.548132], [47.354877, 8.523376], [47.403883, 8.569236], [47.418856, 8.507318], [47.378865, 8.545397], [47.349698, 8.573619], [47.379005, 8.525959], [47.347674, 8.532679], [47.351394, 8.525502], [47.380252, 8.525309], [47.36533, 8.546956], [47.379268, 8.538016], [47.381222, 8.548201], [47.377778, 8.522425], [47.413711, 8.5464], [47.368186, 8.521873], [47.360467, 8.550377], [47.414, 8.541555], [47.405642, 8.548312], [47.383103, 8.529129], [47.374457, 8.539771], [47.39012, 8.537644], [47.381051, 8.491476], [47.382108, 8.528791], [47.421869, 8.55024], [47.413978, 8.546697], [47.409358, 8.572293], [47.344081, 8.534988], [47.37423, 8.544731], [47.376813, 8.520803], [47.390865, 8.523512], [47.386337, 8.497726], [47.392736, 8.524504], [47.340588, 8.519115], [47.408456, 8.546648], [47.407879, 8.58371], [47.366991, 8.544502], [47.368784, 8.537614], [47.374586, 8.538528], [47.378491, 8.527008], [47.399445, 8.497496], [47.419234, 8.547402], [47.348809, 8.563396], [47.35672, 8.523466], [47.369705, 8.51237], [47.413261, 8.532264], [47.364002, 8.528698], [47.375697, 8.537042], [47.381166, 8.491703], [47.370902, 8.548396], [47.331959, 8.52983], [47.385581, 8.520081], [47.366358, 8.541033], [47.387659, 8.486944], [47.399898, 8.467193], [47.371673, 8.488099], [47.357986, 8.572379], [47.385448, 8.530448], [47.38922, 8.494299], [47.378895, 8.530923], [47.342516, 8.522595], [47.403137, 8.555321], [47.362975, 8.517332], [47.39224, 8.502333], [47.379912, 8.544028], [47.365651, 8.566796], [47.375595, 8.545899], [47.35788, 8.532121], [47.368349, 8.551058], [47.412942, 8.540341], [47.423294, 8.504014], [47.379288, 8.537844], [47.37392, 8.519486], [47.405979, 8.546981], [47.3795, 8.525877], [47.335342, 8.541107], [47.370853, 8.52427], [47.371464, 8.545217], [47.399188, 8.522291], [47.354378, 8.557795], [47.36894, 8.507575], [47.422368, 8.550675], [47.334868, 8.531358], [47.384254, 8.4973], [47.374255, 8.524975], [47.359061, 8.550678], [47.408631, 8.549951], [47.342009, 8.519131], [47.364615, 8.554925], [47.388111, 8.526543], [47.358246, 8.521935], [47.355235, 8.608326], [47.374736, 8.520681], [47.398195, 8.535055], [47.370498, 8.549288], [47.386788, 8.54184], [47.357232, 8.550918], [47.38974, 8.512045], [47.420813, 8.548774], [47.360262, 8.566841], [47.361782, 8.549279], [47.378446, 8.510666], [47.378071, 8.567006], [47.406916, 8.550564], [47.419704, 8.505029], [47.37707, 8.543996], [47.390614, 8.533932], [47.418777, 8.507064], [47.332967, 8.518313], [47.379751, 8.516373], [47.388656, 8.520275], [47.41489, 8.541653], [47.35437, 8.552963], [47.389218, 8.482564], [47.362167, 8.547553], [47.409693, 8.544209], [47.343624, 8.519494], [47.379981, 8.536865], [47.366414, 8.540836], [47.410586, 8.486017], [47.364529, 8.546106], [47.408126, 8.547317], [47.387158, 8.535066], [47.42935, 8.544869], [47.414, 8.519703], [47.366583, 8.542018], [47.335919, 8.524896], [47.353055, 8.552274], [47.391889, 8.511148], [47.377433, 8.538998], [47.353005, 8.559222], [47.373698, 8.528778], [47.39473, 8.531433], [47.38558, 8.508597], [47.373001, 8.52066], [47.361347, 8.568095], [47.374695, 8.549694], [47.362435, 8.50477], [47.376921, 8.540801], [47.366883, 8.543507], [47.370062, 8.519421], [47.379543, 8.511668], [47.394151, 8.525116], [47.411144, 8.570913], [47.349845, 8.561392], [47.341149, 8.536846], [47.373447, 8.52002], [47.381841, 8.548386], [47.399015, 8.533058], [47.360216, 8.526701], [47.367984, 8.540325], [47.375991, 8.52121], [47.413931, 8.541262], [47.388737, 8.544039], [47.410694, 8.532622], [47.397523, 8.505976], [47.377927, 8.541842], [47.387036, 8.519421], [47.365148, 8.560219], [47.364541, 8.562576], [47.360924, 8.571833], [47.368503, 8.564923], [47.406303, 8.481176], [47.393582, 8.529224], [47.384033, 8.499839], [47.378681, 8.575415], [47.378129, 8.529159], [47.376766, 8.528734], [47.408048, 8.54224], [47.413666, 8.537944], [47.373628, 8.561456], [47.388284, 8.497314], [47.404128, 8.572765], [47.426492, 8.492679], [47.387347, 8.536951], [47.413885, 8.546999], [47.365228, 8.526499], [47.356788, 8.5844], [47.374518, 8.539984], [47.377206, 8.526823], [47.367116, 8.539844], [47.351291, 8.5763], [47.365449, 8.54676], [47.377165, 8.547256], [47.344434, 8.529979], [47.41982, 8.548157], [47.419927, 8.548252], [47.369165, 8.532485], [47.393883, 8.505664], [47.375607, 8.520911], [47.381665, 8.490269], [47.383535, 8.573082], [47.361729, 8.526481], [47.388673, 8.491083], [47.408028, 8.536781], [47.383601, 8.512544], [47.362098, 8.549087], [47.40548, 8.480763], [47.429966, 8.538837], [47.401426, 8.501165], [47.377515, 8.538907], [47.387134, 8.494139], [47.373863, 8.537971], [47.403485, 8.476484], [47.415442, 8.544183], [47.380065, 8.527967], [47.361953, 8.560377], [47.392476, 8.523426], [47.393404, 8.499058], [47.369329, 8.554878], [47.390565, 8.527679], [47.364636, 8.554608], [47.397383, 8.493785], [47.378022, 8.528085], [47.363958, 8.528539], [47.377412, 8.539249], [47.377467, 8.541978], [47.368358, 8.546397], [47.350245, 8.56193], [47.390847, 8.536851], [47.390615, 8.539482], [47.372731, 8.534902], [47.368113, 8.495748], [47.422258, 8.503132], [47.39111, 8.522312], [47.399455, 8.497364], [47.373421, 8.55311], [47.428014, 8.536888], [47.368042, 8.494688], [47.364595, 8.566205], [47.378946, 8.559397], [47.360596, 8.596727], [47.37017, 8.548831], [47.338891, 8.535887], [47.34909, 8.526567], [47.366093, 8.536817], [47.359761, 8.552652], [47.377565, 8.521189], [47.370465, 8.534895], [47.373382, 8.531724], [47.371465, 8.547839], [47.381872, 8.516562], [47.343604, 8.530214], [47.388677, 8.516117], [47.362167, 8.547526], [47.335063, 8.519281], [47.374273, 8.524088], [47.369936, 8.551634], [47.366584, 8.545619], [47.381215, 8.517595], [47.410132, 8.542522], [47.366377, 8.563396], [47.360322, 8.579075], [47.398481, 8.591603], [47.357924, 8.521664], [47.363345, 8.546717], [47.377132, 8.540316], [47.393591, 8.529158], [47.399189, 8.591909], [47.375541, 8.525054], [47.379967, 8.487018], [47.345192, 8.534508], [47.40168, 8.487127], [47.359215, 8.570009], [47.362075, 8.567329], [47.401775, 8.531313], [47.393399, 8.524717], [47.36201, 8.557346], [47.370417, 8.509273], [47.353578, 8.576111], [47.40172, 8.552072], [47.380926, 8.537706], [47.415586, 8.559068], [47.391122, 8.522922], [47.382879, 8.530952], [47.368815, 8.506513], [47.391463, 8.514438], [47.415143, 8.51485], [47.335094, 8.526546], [47.385598, 8.528849], [47.370181, 8.524972], [47.367924, 8.560621], [47.385156, 8.485133], [47.349108, 8.564064], [47.379803, 8.506866], [47.413003, 8.536764], [47.409918, 8.563798], [47.370717, 8.51672], [47.35948, 8.552911], [47.410748, 8.568175], [47.375133, 8.528224], [47.375889, 8.525313], [47.375532, 8.555207], [47.373088, 8.495648], [47.392128, 8.524055], [47.380924, 8.51792], [47.394778, 8.525433], [47.41913, 8.510756], [47.373261, 8.536939], [47.387642, 8.490798], [47.389971, 8.522024], [47.359383, 8.522448], [47.389172, 8.49459], [47.376734, 8.561111], [47.417728, 8.559007], [47.377476, 8.491882], [47.366806, 8.555315], [47.374379, 8.517562], [47.406265, 8.553757], [47.355361, 8.532162], [47.409899, 8.543405], [47.364234, 8.536422], [47.399935, 8.543198], [47.370794, 8.535246], [47.369096, 8.529292], [47.392908, 8.522415], [47.364632, 8.537198], [47.360287, 8.512353], [47.390816, 8.523896], [47.358604, 8.52692], [47.406754, 8.550535], [47.3765, 8.549082], [47.393447, 8.512902], [47.36719, 8.544334], [47.402597, 8.49214], [47.386802, 8.534701], [47.370734, 8.47051], [47.373027, 8.533094], [47.380165, 8.552417], [47.381978, 8.541568], [47.416348, 8.532129], [47.416348, 8.532115], [47.40027, 8.503593], [47.370831, 8.548289], [47.369636, 8.518804], [47.371388, 8.537125], [47.411493, 8.486181], [47.4293, 8.489553], [47.366979, 8.545693], [47.378845, 8.542801], [47.341149, 8.536846], [47.370143, 8.548791], [47.35894, 8.549246], [47.373513, 8.513903], [47.37639, 8.527548], [47.39909, 8.547752], [47.376995, 8.527349], [47.382364, 8.541642], [47.364557, 8.566482], [47.364669, 8.566034], [47.372575, 8.563354], [47.413039, 8.5462], [47.4028, 8.55387], [47.403148, 8.517271], [47.380623, 8.519305], [47.37436, 8.541463], [47.4178, 8.543953], [47.361477, 8.526502], [47.369454, 8.541852], [47.352165, 8.558675], [47.365016, 8.53841], [47.354743, 8.574746], [47.358388, 8.577259], [47.373986, 8.544819], [47.390418, 8.491157], [47.377575, 8.528711], [47.391133, 8.478734], [47.356457, 8.532264], [47.42042, 8.508317], [47.389877, 8.535745], [47.377465, 8.503879], [47.365635, 8.539496], [47.423776, 8.514123], [47.383518, 8.573002], [47.371371, 8.492608], [47.403991, 8.503005], [47.377898, 8.497942], [47.384806, 8.531746], [47.373729, 8.534062], [47.40592, 8.548437], [47.392283, 8.506493], [47.356594, 8.53588], [47.405209, 8.558704], [47.399704, 8.494772], [47.365547, 8.539322], [47.39688, 8.493709], [47.416628, 8.507949], [47.383497, 8.511085], [47.369545, 8.55573], [47.357092, 8.52219], [47.391535, 8.487934], [47.413062, 8.558723], [47.366522, 8.540904], [47.368123, 8.533298], [47.379747, 8.507103], [47.379721, 8.520597], [47.369248, 8.525615], [47.358405, 8.598109], [47.373385, 8.54282], [47.380892, 8.549704], [47.404641, 8.556969], [47.388318, 8.485593], [47.378619, 8.528732], [47.369293, 8.525655], [47.399657, 8.468037], [47.353965, 8.575166], [47.407299, 8.548174], [47.40346, 8.556362], [47.381585, 8.513563], [47.376635, 8.533075], [47.377683, 8.538208], [47.399722, 8.520023], [47.366392, 8.541246], [47.368228, 8.536491], [47.367418, 8.492067], [47.386158, 8.535271], [47.36655, 8.540786], [47.372928, 8.520737], [47.415675, 8.545168], [47.426996, 8.54649], [47.354226, 8.5521], [47.348451, 8.534257], [47.369248, 8.525601], [47.416558, 8.555258], [47.367098, 8.53983], [47.373558, 8.519717], [47.382624, 8.543595], [47.418015, 8.508772], [47.362726, 8.548425], [47.370502, 8.53573], [47.403605, 8.572873], [47.420708, 8.502544], [47.413864, 8.527453], [47.36401, 8.55147], [47.381084, 8.538173], [47.34235, 8.536329], [47.389846, 8.539983], [47.402021, 8.49813], [47.391779, 8.540989], [47.384425, 8.50321], [47.386753, 8.50233], [47.374966, 8.534484], [47.373922, 8.538329], [47.369565, 8.540623], [47.35403, 8.601165], [47.378752, 8.52798], [47.374571, 8.532556], [47.394665, 8.527869], [47.397898, 8.534135], [47.389905, 8.492127], [47.409952, 8.550032], [47.413623, 8.550956], [47.379569, 8.537559], [47.382816, 8.529997], [47.367886, 8.52985], [47.399744, 8.54342], [47.364824, 8.537784], [47.371819, 8.542841], [47.378209, 8.557487], [47.399661, 8.543564], [47.384141, 8.497814], [47.391437, 8.516265], [47.384119, 8.531097], [47.351828, 8.57655], [47.379126, 8.50815], [47.408639, 8.546321], [47.411151, 8.525237], [47.376098, 8.516498], [47.359654, 8.548824], [47.378139, 8.510766], [47.401128, 8.546323], [47.364468, 8.54866], [47.377495, 8.496676], [47.415923, 8.521863], [47.37683, 8.533357], [47.378537, 8.541113], [47.342971, 8.511395], [47.368774, 8.547995], [47.431337, 8.516463], [47.362015, 8.551177], [47.366815, 8.555289], [47.388279, 8.520188], [47.369765, 8.529015], [47.356505, 8.523422], [47.377819, 8.516202], [47.41239, 8.537772], [47.394238, 8.493392], [47.366438, 8.54498], [47.37732, 8.539552], [47.374783, 8.537685], [47.3667, 8.559748], [47.408014, 8.569058], [47.379833, 8.527738], [47.376767, 8.524815], [47.414725, 8.546672], [47.355648, 8.508195], [47.392488, 8.502749], [47.364593, 8.537475], [47.414759, 8.516419], [47.365538, 8.539322], [47.374195, 8.555774], [47.352968, 8.578653], [47.372732, 8.534875], [47.378844, 8.522036], [47.366527, 8.540308], [47.373586, 8.535846], [47.371317, 8.536025], [47.380017, 8.524484], [47.427069, 8.546399], [47.368654, 8.543715], [47.390891, 8.488557], [47.418856, 8.507318], [47.37902, 8.542354], [47.367083, 8.544318], [47.389665, 8.492864], [47.426077, 8.555087], [47.356516, 8.510662], [47.369022, 8.540943], [47.379039, 8.525126], [47.391706, 8.518205], [47.413299, 8.545304], [47.397518, 8.532471], [47.337169, 8.519112], [47.373287, 8.535099], [47.384954, 8.5322], [47.387479, 8.516212], [47.369928, 8.513487], [47.359789, 8.531909], [47.382476, 8.529871], [47.367051, 8.558802], [47.391799, 8.487608], [47.410501, 8.569548], [47.35966, 8.549129], [47.379304, 8.529515], [47.372544, 8.518518], [47.431318, 8.516516], [47.362176, 8.54754], [47.375454, 8.547458], [47.402403, 8.495673], [47.388176, 8.491365], [47.382718, 8.528075], [47.381466, 8.537704], [47.374336, 8.52409], [47.382535, 8.548202], [47.403871, 8.558477], [47.366773, 8.558717], [47.372741, 8.534862], [47.386834, 8.502318], [47.386223, 8.498346], [47.388633, 8.484658], [47.362369, 8.507046], [47.358419, 8.505259], [47.389781, 8.477979], [47.372991, 8.531279], [47.373164, 8.530078], [47.352961, 8.559181], [47.36396, 8.530299], [47.356568, 8.522378], [47.354536, 8.556302], [47.359661, 8.550982], [47.364633, 8.554859], [47.388214, 8.525154], [47.377824, 8.507899], [47.39569, 8.487102], [47.390933, 8.523011], [47.393881, 8.472164], [47.375741, 8.538102], [47.37612, 8.543685], [47.41471, 8.551019], [47.403968, 8.485781], [47.3809, 8.491274], [47.370965, 8.531462], [47.378963, 8.518834], [47.383725, 8.547909], [47.379839, 8.490273], [47.343968, 8.528858], [47.351837, 8.504969], [47.363752, 8.533274], [47.363914, 8.566905], [47.377993, 8.509068], [47.405194, 8.557511], [47.368647, 8.520637], [47.413924, 8.54859], [47.355769, 8.561769], [47.419062, 8.538108], [47.393474, 8.473454], [47.358449, 8.571092], [47.410779, 8.534081], [47.369239, 8.541728], [47.373832, 8.536447], [47.363245, 8.533634], [47.37017, 8.548792], [47.405997, 8.557263], [47.371642, 8.515878], [47.407871, 8.565266], [47.357675, 8.552569], [47.381638, 8.5309], [47.366007, 8.533492], [47.383274, 8.499161], [47.374277, 8.495473], [47.382404, 8.514467], [47.415169, 8.510067], [47.41443, 8.55308], [47.37673, 8.524827], [47.412312, 8.515495], [47.351821, 8.559806], [47.36798, 8.540828], [47.41676, 8.482666], [47.378997, 8.531534], [47.374985, 8.536299], [47.357993, 8.525809], [47.396855, 8.534126], [47.372057, 8.522441], [47.378788, 8.523174], [47.420418, 8.503678], [47.404549, 8.572006], [47.419246, 8.507922], [47.375375, 8.484544], [47.368778, 8.528743], [47.374167, 8.540917], [47.391088, 8.522802], [47.402037, 8.498342], [47.389825, 8.509663], [47.370785, 8.535246], [47.385811, 8.530058], [47.410149, 8.568693], [47.377672, 8.506783], [47.405068, 8.482517], [47.375573, 8.536894], [47.364041, 8.536007], [47.397811, 8.533828], [47.37535, 8.517622], [47.393141, 8.474507], [47.335422, 8.519355], [47.362443, 8.612522], [47.370143, 8.548818], [47.372595, 8.574146], [47.37946, 8.544271], [47.369763, 8.5368], [47.378848, 8.542417], [47.376831, 8.541793], [47.360872, 8.588923], [47.398238, 8.534354], [47.362168, 8.547513], [47.386444, 8.52684], [47.364903, 8.519899], [47.348302, 8.563729], [47.415746, 8.512835], [47.410468, 8.532763], [47.343528, 8.53544], [47.367368, 8.541703], [47.380499, 8.493848], [47.376319, 8.499447], [47.376851, 8.520658], [47.374536, 8.539971], [47.400124, 8.586551], [47.369932, 8.547383], [47.399149, 8.521681], [47.366102, 8.506115], [47.373025, 8.533359], [47.391643, 8.513461], [47.370152, 8.548791], [47.382997, 8.514625], [47.395259, 8.519164], [47.371908, 8.539175], [47.377787, 8.507991], [47.378499, 8.519407], [47.369123, 8.529346], [47.375651, 8.512291], [47.386289, 8.551604], [47.361141, 8.600671], [47.367969, 8.53438], [47.370016, 8.5329], [47.386971, 8.534903], [47.367529, 8.546526], [47.37329, 8.52906], [47.369041, 8.537977], [47.393198, 8.493014], [47.411858, 8.563216], [47.365343, 8.545646], [47.382296, 8.488123], [47.370561, 8.528515], [47.361855, 8.526497], [47.361504, 8.561294], [47.388663, 8.496169], [47.354108, 8.561509], [47.384297, 8.528465], [47.372619, 8.534383], [47.397833, 8.541857], [47.373823, 8.536487], [47.388494, 8.487053], [47.387036, 8.485117], [47.378788, 8.528921], [47.35278, 8.572163], [47.390506, 8.487384], [47.373332, 8.531339], [47.366901, 8.536053], [47.366372, 8.540504], [47.37874, 8.494396], [47.388674, 8.510554], [47.383151, 8.541169], [47.353621, 8.576284], [47.387345, 8.495693], [47.366702, 8.563244], [47.3261, 8.514879], [47.376268, 8.522368], [47.374227, 8.52418], [47.392239, 8.494677], [47.383161, 8.53068], [47.3743, 8.543965], [47.377711, 8.538169], [47.386565, 8.490432], [47.390685, 8.508144], [47.409004, 8.579044], [47.368835, 8.52836], [47.371316, 8.531417], [47.414967, 8.527807], [47.366419, 8.545073], [47.375917, 8.541376], [47.376289, 8.536312], [47.377135, 8.541958], [47.359809, 8.558915], [47.413669, 8.529105], [47.358246, 8.587966], [47.362552, 8.548673], [47.377258, 8.528043], [47.4143, 8.518398], [47.360585, 8.550247], [47.387744, 8.52733], [47.377188, 8.540105], [47.378997, 8.494746], [47.403265, 8.547653], [47.376944, 8.554296], [47.364586, 8.566218], [47.3771, 8.540885], [47.404986, 8.576957], [47.374775, 8.489233], [47.358262, 8.587304], [47.408138, 8.580178], [47.428047, 8.545664], [47.396454, 8.472134], [47.380102, 8.486981], [47.377071, 8.535388], [47.392504, 8.532832], [47.374663, 8.525593], [47.374805, 8.551338], [47.403748, 8.565563], [47.373553, 8.536428], [47.391142, 8.538936], [47.365424, 8.545608], [47.417663, 8.546124], [47.374473, 8.495729], [47.409817, 8.543536], [47.376803, 8.522842], [47.375148, 8.525722], [47.376741, 8.521782], [47.369689, 8.525584], [47.388572, 8.520512], [47.37482, 8.543208], [47.393039, 8.50737], [47.382396, 8.537352], [47.395673, 8.506561], [47.417321, 8.522355], [47.37458, 8.487878], [47.372945, 8.531357], [47.389391, 8.521509], [47.366639, 8.505437], [47.392532, 8.491067], [47.370353, 8.539037], [47.362144, 8.559242], [47.391114, 8.522842], [47.383416, 8.499402], [47.384702, 8.531281], [47.369023, 8.53795], [47.376857, 8.541873], [47.356462, 8.53552], [47.423043, 8.543214], [47.340211, 8.535186], [47.395651, 8.545256], [47.41736, 8.538285], [47.391488, 8.519472], [47.399723, 8.491672], [47.368662, 8.543782], [47.399876, 8.504446], [47.416424, 8.514425], [47.412133, 8.523137], [47.417442, 8.545695], [47.368306, 8.547111], [47.388898, 8.540347], [47.381043, 8.532027], [47.40957, 8.544896], [47.342173, 8.530356], [47.391004, 8.523105], [47.41969, 8.508461], [47.3743, 8.524963], [47.361467, 8.561399], [47.387162, 8.533675], [47.371169, 8.527945], [47.406141, 8.535616], [47.361363, 8.576621], [47.368698, 8.540936], [47.367785, 8.539527], [47.376694, 8.526747], [47.40007, 8.490089], [47.377846, 8.541893], [47.363256, 8.535289], [47.411189, 8.546745], [47.373871, 8.576147], [47.405349, 8.578488], [47.388188, 8.480133], [47.390635, 8.491996], [47.379269, 8.537963], [47.370188, 8.548805], [47.369166, 8.532445], [47.409853, 8.549102], [47.373107, 8.523707], [47.365872, 8.548636], [47.431361, 8.516702], [47.374912, 8.53161], [47.398359, 8.539549], [47.362469, 8.53383], [47.373785, 8.51947], [47.411859, 8.512027], [47.364988, 8.553556], [47.356631, 8.522379], [47.378634, 8.51945], [47.375045, 8.52809], [47.393701, 8.474187], [47.338434, 8.539503], [47.370717, 8.516707], [47.378669, 8.519517], [47.400033, 8.546049], [47.361694, 8.560212], [47.371973, 8.601424], [47.409008, 8.550078], [47.35767, 8.554065], [47.393339, 8.495335], [47.384779, 8.529852], [47.374593, 8.538688], [47.383237, 8.53974], [47.363758, 8.535432], [47.377247, 8.512853], [47.385338, 8.508473], [47.404823, 8.565148], [47.354315, 8.557754], [47.395821, 8.506207], [47.338372, 8.53937], [47.381164, 8.53726], [47.377435, 8.526444], [47.40101, 8.546467], [47.340057, 8.530551], [47.388503, 8.491014], [47.37447, 8.543081], [47.374425, 8.521271], [47.377549, 8.543781], [47.376809, 8.544017], [47.416265, 8.544571], [47.410877, 8.563262], [47.391066, 8.522258], [47.372194, 8.535553], [47.378217, 8.527466], [47.390575, 8.545548], [47.367198, 8.545446], [47.377, 8.541889], [47.401336, 8.490379], [47.368046, 8.507928], [47.377231, 8.525168], [47.354916, 8.526845], [47.374786, 8.55241], [47.384152, 8.494662], [47.410379, 8.54588], [47.372888, 8.524047], [47.370281, 8.509442], [47.368194, 8.559713], [47.334945, 8.519372], [47.384954, 8.531326], [47.380128, 8.520327], [47.409485, 8.537752], [47.364973, 8.538264], [47.376112, 8.524603], [47.381726, 8.499356], [47.385831, 8.5299], [47.395723, 8.508046], [47.390405, 8.539809], [47.379731, 8.524279], [47.36073, 8.522687], [47.397393, 8.532336], [47.412862, 8.53639], [47.366797, 8.542207], [47.360864, 8.534221], [47.37019, 8.521092], [47.364765, 8.537399], [47.367269, 8.541754], [47.392414, 8.545149], [47.397898, 8.534135], [47.370058, 8.564122], [47.351916, 8.505222], [47.365808, 8.550568], [47.387051, 8.489422], [47.412166, 8.538668], [47.369801, 8.508784], [47.398702, 8.586626], [47.379312, 8.511319], [47.36575, 8.500401], [47.360033, 8.523176], [47.394724, 8.525432], [47.355891, 8.557509], [47.376356, 8.528315], [47.37111, 8.531333], [47.363478, 8.499946], [47.394212, 8.480383], [47.372486, 8.545556], [47.426831, 8.534558], [47.37539, 8.547589], [47.373526, 8.527874], [47.392129, 8.524028], [47.368933, 8.528468], [47.387511, 8.500106], [47.393022, 8.514059], [47.400337, 8.543472], [47.378659, 8.496368], [47.404423, 8.580244], [47.373439, 8.542808], [47.364249, 8.531113], [47.373842, 8.537308], [47.403551, 8.57107], [47.41956, 8.505105], [47.363453, 8.506525], [47.384181, 8.507205], [47.360418, 8.569307], [47.372311, 8.544136], [47.353746, 8.575492], [47.370886, 8.531249], [47.406952, 8.550552], [47.387456, 8.528278], [47.417697, 8.541632], [47.353308, 8.576145], [47.363642, 8.535364], [47.410786, 8.558702], [47.408942, 8.545611], [47.378208, 8.528353], [47.408972, 8.548169], [47.359613, 8.548453], [47.365402, 8.546945], [47.366935, 8.543812], [47.405255, 8.557685], [47.367164, 8.534867], [47.372311, 8.544096], [47.363771, 8.551002], [47.378294, 8.528805], [47.361427, 8.57653], [47.362602, 8.519734], [47.361303, 8.562494], [47.374471, 8.540234], [47.37892, 8.546219], [47.386226, 8.528027], [47.403483, 8.497523], [47.373949, 8.526015], [47.369364, 8.520016], [47.403345, 8.567303], [47.387678, 8.499593], [47.391808, 8.484615], [47.344263, 8.527104], [47.366656, 8.534366], [47.373334, 8.53306], [47.371306, 8.537282], [47.419924, 8.547655], [47.422708, 8.550934], [47.383246, 8.529291], [47.367251, 8.537053], [47.394197, 8.49004], [47.3779, 8.541868], [47.36908, 8.541487], [47.401749, 8.505133], [47.384901, 8.509034], [47.389254, 8.5274], [47.373033, 8.483968], [47.374682, 8.537882], [47.380224, 8.506146], [47.368119, 8.578367], [47.373147, 8.503939], [47.366821, 8.506103], [47.409394, 8.522697], [47.368565, 8.524608], [47.355219, 8.55449], [47.391802, 8.517611], [47.368409, 8.511444], [47.390746, 8.539908], [47.392266, 8.533343], [47.36051, 8.50771], [47.386231, 8.497525], [47.386233, 8.498319], [47.425806, 8.547712], [47.375032, 8.539888], [47.377837, 8.528664], [47.372033, 8.522149], [47.393676, 8.501753], [47.400444, 8.493515], [47.389024, 8.522283], [47.392133, 8.510107], [47.405572, 8.549967], [47.348315, 8.562406], [47.35477, 8.523294], [47.375875, 8.541084], [47.386344, 8.531751], [47.378326, 8.527349], [47.416789, 8.572266], [47.367908, 8.497558], [47.388265, 8.540639], [47.369022, 8.540956], [47.365502, 8.549687], [47.38457, 8.509809], [47.377256, 8.538716], [47.373807, 8.544736], [47.404814, 8.483731], [47.383973, 8.515982], [47.418589, 8.507975], [47.369582, 8.518776], [47.375568, 8.517322], [47.387264, 8.535227], [47.427274, 8.543766], [47.376776, 8.538084], [47.369744, 8.543486], [47.381133, 8.504085], [47.390921, 8.523315], [47.400018, 8.541981], [47.331349, 8.537266], [47.366556, 8.54485], [47.391371, 8.537524], [47.405239, 8.557525], [47.385173, 8.507914], [47.390923, 8.522123], [47.413598, 8.536538], [47.36315, 8.532176], [47.365413, 8.552386], [47.394819, 8.525818], [47.428817, 8.545097], [47.423012, 8.541663], [47.377149, 8.529126], [47.362344, 8.504848], [47.378235, 8.530314], [47.397938, 8.535619], [47.36095, 8.599118], [47.365933, 8.562777], [47.372965, 8.547128], [47.378004, 8.547988], [47.384368, 8.548438], [47.405139, 8.481591], [47.383717, 8.533684], [47.335297, 8.541145], [47.367134, 8.541724], [47.414036, 8.541556], [47.403178, 8.548314], [47.378137, 8.510024], [47.408804, 8.579291], [47.370206, 8.548819], [47.363987, 8.5312], [47.386027, 8.505017], [47.377118, 8.521855], [47.343274, 8.519434], [47.371768, 8.534048], [47.389041, 8.471328], [47.353933, 8.577469], [47.385947, 8.493188], [47.380034, 8.536972], [47.368557, 8.539741], [47.374031, 8.542926], [47.377896, 8.521368], [47.363986, 8.533173], [47.355244, 8.527368], [47.367539, 8.53036], [47.357821, 8.526931], [47.371596, 8.515944], [47.421717, 8.550131], [47.40375, 8.570889], [47.365179, 8.567197], [47.370289, 8.539142], [47.400211, 8.477546], [47.415205, 8.549174], [47.405275, 8.480533], [47.384596, 8.496314], [47.38831, 8.485553], [47.380737, 8.536815], [47.378839, 8.542457], [47.368167, 8.529604], [47.381597, 8.517113], [47.373832, 8.536487], [47.357567, 8.508843], [47.356577, 8.522418], [47.370288, 8.541207], [47.409206, 8.546293], [47.402512, 8.492549], [47.363355, 8.534299], [47.415922, 8.53815], [47.363601, 8.516788], [47.407622, 8.566824], [47.372666, 8.503373], [47.409703, 8.482223], [47.363859, 8.556776], [47.381083, 8.537325], [47.383316, 8.530418], [47.409338, 8.575288], [47.379046, 8.542474], [47.365046, 8.545666], [47.350889, 8.561282], [47.373506, 8.484295], [47.36651, 8.535462], [47.361626, 8.565414], [47.412261, 8.523816], [47.390286, 8.53623], [47.399004, 8.50529], [47.391131, 8.487886], [47.417094, 8.510118], [47.373532, 8.519664], [47.37762, 8.542008], [47.422345, 8.538971], [47.366903, 8.544328], [47.374108, 8.527237], [47.398404, 8.537669], [47.363354, 8.533425], [47.368456, 8.496563], [47.370444, 8.524673], [47.374158, 8.530508], [47.416821, 8.537227], [47.400701, 8.548673], [47.377713, 8.525562], [47.377233, 8.52685], [47.378884, 8.527268], [47.370637, 8.49119], [47.378281, 8.540631], [47.38799, 8.491017], [47.350253, 8.56287], [47.369597, 8.528654], [47.38802, 8.482766], [47.377467, 8.531609], [47.402351, 8.499329], [47.386426, 8.503674], [47.369532, 8.491023], [47.379394, 8.500554], [47.382521, 8.514483], [47.341408, 8.53038], [47.385032, 8.500746], [47.375959, 8.541642], [47.331003, 8.53677], [47.385559, 8.535801], [47.347743, 8.525415], [47.344103, 8.528821], [47.370703, 8.55876], [47.374467, 8.52155], [47.380924, 8.578747], [47.3764, 8.559462], [47.379356, 8.521133], [47.42099, 8.502139], [47.396402, 8.482943], [47.362513, 8.547149], [47.380203, 8.526672], [47.373524, 8.553536], [47.369324, 8.527099], [47.377162, 8.540052], [47.38125, 8.49136], [47.395541, 8.517872], [47.412533, 8.516864], [47.377173, 8.51305], [47.36244, 8.554734], [47.413747, 8.546467], [47.392112, 8.492727], [47.421887, 8.545496], [47.372005, 8.559966], [47.40872, 8.544388], [47.403164, 8.555388], [47.375623, 8.527824], [47.358028, 8.532627], [47.383714, 8.540571], [47.363842, 8.566877], [47.374906, 8.524631], [47.369178, 8.525454], [47.420862, 8.549199], [47.405747, 8.481006], [47.365098, 8.567221], [47.378057, 8.541487], [47.368341, 8.560312], [47.382103, 8.541663], [47.38583, 8.530019], [47.404173, 8.561703], [47.364686, 8.548452], [47.386899, 8.501207], [47.414733, 8.519188], [47.373867, 8.538408], [47.396878, 8.529795], [47.352677, 8.576211], [47.373311, 8.55516], [47.376243, 8.544932], [47.335771, 8.54052], [47.388153, 8.520186], [47.389841, 8.511796], [47.365724, 8.523464], [47.371592, 8.555217], [47.391373, 8.516291], [47.359184, 8.521623], [47.363607, 8.533364], [47.390153, 8.545526], [47.355153, 8.587806], [47.384624, 8.509889], [47.382388, 8.541007], [47.383208, 8.499531], [47.391454, 8.513484], [47.367234, 8.54072], [47.353717, 8.57201], [47.409597, 8.53733], [47.366661, 8.520425], [47.385383, 8.508554], [47.336352, 8.51416], [47.360402, 8.579222], [47.36473, 8.554199], [47.402929, 8.575747], [47.378543, 8.50402], [47.387373, 8.529441], [47.371864, 8.535308], [47.38677, 8.541787], [47.391618, 8.517077], [47.382637, 8.537542], [47.380486, 8.493213], [47.398714, 8.533396], [47.427178, 8.491393], [47.381096, 8.579572], [47.419607, 8.498997], [47.403277, 8.489557], [47.374931, 8.492877], [47.378748, 8.531238], [47.341066, 8.519879], [47.379549, 8.516806], [47.396296, 8.503461], [47.372347, 8.494124], [47.35429, 8.575967], [47.382168, 8.532023], [47.41221, 8.550052], [47.367291, 8.541383], [47.405106, 8.482279], [47.360633, 8.476497], [47.39141, 8.540081], [47.390838, 8.550957], [47.393275, 8.493439], [47.381918, 8.536534], [47.378005, 8.527952], [47.397726, 8.53331], [47.390829, 8.48547], [47.338471, 8.531842], [47.367074, 8.523373], [47.407162, 8.538022], [47.393901, 8.533496], [47.370143, 8.548804], [47.391221, 8.522937], [47.405111, 8.481749], [47.415132, 8.513087], [47.411079, 8.535651], [47.366349, 8.541033], [47.373493, 8.553072], [47.375563, 8.484693], [47.378357, 8.541109], [47.398606, 8.494803], [47.353245, 8.555825], [47.392206, 8.489378], [47.421107, 8.549946], [47.390058, 8.476196], [47.393683, 8.545056], [47.383859, 8.527211], [47.387068, 8.547356], [47.346245, 8.564361], [47.394183, 8.517924], [47.395597, 8.546169], [47.430955, 8.550125], [47.387773, 8.527118], [47.367377, 8.521777], [47.378536, 8.517448], [47.378692, 8.516127], [47.397936, 8.53391], [47.393487, 8.539184], [47.376938, 8.532353], [47.42836, 8.51737], [47.38351, 8.574697], [47.348451, 8.534217], [47.387103, 8.518946], [47.390958, 8.523223], [47.403297, 8.555537], [47.387429, 8.49731], [47.393468, 8.52701], [47.36402, 8.536272], [47.373094, 8.532671], [47.37445, 8.530077], [47.349005, 8.517353], [47.369242, 8.559193], [47.387014, 8.518798], [47.371424, 8.516099], [47.37405, 8.515186], [47.414251, 8.539785], [47.384903, 8.495141], [47.369106, 8.541567], [47.380926, 8.497274], [47.377732, 8.52543], [47.42383, 8.518949], [47.367644, 8.536346], [47.38516, 8.537078], [47.41124, 8.572174], [47.3448, 8.533163], [47.374282, 8.524989], [47.403046, 8.534823], [47.374281, 8.524128], [47.402068, 8.498793], [47.373137, 8.532964], [47.366788, 8.553461], [47.370234, 8.525079], [47.372515, 8.478516], [47.369726, 8.536945], [47.413557, 8.546529], [47.366478, 8.540758], [47.403692, 8.503211], [47.366745, 8.545755], [47.364542, 8.537209], [47.372349, 8.517217], [47.380432, 8.483411], [47.373968, 8.519223], [47.376496, 8.539111], [47.391565, 8.542654], [47.385336, 8.508712], [47.372891, 8.51985], [47.369707, 8.541764], [47.384984, 8.530982], [47.349874, 8.533995], [47.383073, 8.572423], [47.357594, 8.508896], [47.371019, 8.52381], [47.393629, 8.511673], [47.429007, 8.545034], [47.366764, 8.541902], [47.414235, 8.550916], [47.403871, 8.569619], [47.414559, 8.520576], [47.408596, 8.58032], [47.348118, 8.563249], [47.377873, 8.492737], [47.411448, 8.527085], [47.363075, 8.517254], [47.387545, 8.529326], [47.413695, 8.541536], [47.408422, 8.547403], [47.393401, 8.524571], [47.390213, 8.540189], [47.414042, 8.546671], [47.399563, 8.505222], [47.368154, 8.524255], [47.406631, 8.531452], [47.37262, 8.542818], [47.370896, 8.530163], [47.408178, 8.531457], [47.403398, 8.585628], [47.341318, 8.527533], [47.374975, 8.534498], [47.376648, 8.527898], [47.385221, 8.517199], [47.358641, 8.585366], [47.373533, 8.547087], [47.364137, 8.536287], [47.375056, 8.54014], [47.357597, 8.51341], [47.382198, 8.544937], [47.41508, 8.483495], [47.405252, 8.558016], [47.413949, 8.548777], [47.39206, 8.523709], [47.397794, 8.511678], [47.3832, 8.530362], [47.38623, 8.518067], [47.369652, 8.536176], [47.406922, 8.58679], [47.37465, 8.54964], [47.413884, 8.548126], [47.375923, 8.527446], [47.394269, 8.528841], [47.367954, 8.546283], [47.384903, 8.495154], [47.373807, 8.537228], [47.397042, 8.532382], [47.384178, 8.516198], [47.380617, 8.518987], [47.374479, 8.525112], [47.384057, 8.526248], [47.353369, 8.564339], [47.367653, 8.53922], [47.377773, 8.541958], [47.390471, 8.512709], [47.368546, 8.546533], [47.356379, 8.535757], [47.413589, 8.572039], [47.375974, 8.559705], [47.383594, 8.53143], [47.339496, 8.528026], [47.38426, 8.548396], [47.370066, 8.512245], [47.406687, 8.585089], [47.376882, 8.523983], [47.376109, 8.527741], [47.375658, 8.535505], [47.36989, 8.510864], [47.370723, 8.470695], [47.371567, 8.542889], [47.389435, 8.538769], [47.371271, 8.547504], [47.379999, 8.548149], [47.40524, 8.533901], [47.417727, 8.546006], [47.369366, 8.528424], [47.364101, 8.531547], [47.390118, 8.52355], [47.405637, 8.577514], [47.369763, 8.509922], [47.384823, 8.5318], [47.338915, 8.539037], [47.374937, 8.543237], [47.369783, 8.509737], [47.348785, 8.534052], [47.41587, 8.546378], [47.333913, 8.515262], [47.406327, 8.563139], [47.344869, 8.533442], [47.3462, 8.534449], [47.381709, 8.545205], [47.359635, 8.522427], [47.405232, 8.504911], [47.366492, 8.544889], [47.421638, 8.538626], [47.39364, 8.511488], [47.373424, 8.53489], [47.390698, 8.488977], [47.384655, 8.509387], [47.366857, 8.557474], [47.405682, 8.533751], [47.405366, 8.533957], [47.382799, 8.52993], [47.399657, 8.46805], [47.353502, 8.576533], [47.362974, 8.546921], [47.371751, 8.513855], [47.401573, 8.494942], [47.369601, 8.554645], [47.398696, 8.590786], [47.376057, 8.54183], [47.356572, 8.523927], [47.373617, 8.536377], [47.370581, 8.52453], [47.368538, 8.524581], [47.402938, 8.575747], [47.382799, 8.48616], [47.41015, 8.486538], [47.381183, 8.538161], [47.378556, 8.542001], [47.388976, 8.515831], [47.384399, 8.531923], [47.36273, 8.561915], [47.399195, 8.521523], [47.384846, 8.495484], [47.417027, 8.523012], [47.370161, 8.548831], [47.406764, 8.550429], [47.378789, 8.527822], [47.404371, 8.574519], [47.351598, 8.560582], [47.409273, 8.544929], [47.381484, 8.532976], [47.396764, 8.529422], [47.361159, 8.547664], [47.372743, 8.538358], [47.390984, 8.509766], [47.360224, 8.547618], [47.404819, 8.556324], [47.379121, 8.538344], [47.36719, 8.523521], [47.370161, 8.548844], [47.418734, 8.507766], [47.383412, 8.499906], [47.370689, 8.51676], [47.410472, 8.572516], [47.390801, 8.521763], [47.417799, 8.504845], [47.376864, 8.528789], [47.375866, 8.491876], [47.367395, 8.541756], [47.4193, 8.507936], [47.400171, 8.516217], [47.370075, 8.504394], [47.37829, 8.540618], [47.383298, 8.530431], [47.390594, 8.539786], [47.377638, 8.541995], [47.409947, 8.541233], [47.386858, 8.526782], [47.357494, 8.552671], [47.355868, 8.535574], [47.365066, 8.525596], [47.359801, 8.512422], [47.394525, 8.525561], [47.346838, 8.526931], [47.378904, 8.529016], [47.381776, 8.489914], [47.368759, 8.528796], [47.368779, 8.540898], [47.382305, 8.48807], [47.393354, 8.524782], [47.38077, 8.518976], [47.379702, 8.558393], [47.395494, 8.540046], [47.369571, 8.541801], [47.372072, 8.549361], [47.362685, 8.555401], [47.371402, 8.54789], [47.414095, 8.550436], [47.340105, 8.529308], [47.408395, 8.536987], [47.403465, 8.571572], [47.373388, 8.553652], [47.397069, 8.530448], [47.393046, 8.492931], [47.418034, 8.515372], [47.359572, 8.569395], [47.377491, 8.482281], [47.392671, 8.523721], [47.378289, 8.530275], [47.386232, 8.498333], [47.349979, 8.564215], [47.372362, 8.51772], [47.381526, 8.540804], [47.38077, 8.51899], [47.376052, 8.559137], [47.37076, 8.548248], [47.357333, 8.550801], [47.374449, 8.551887], [47.377725, 8.527099], [47.36993, 8.552203], [47.415368, 8.54809], [47.392297, 8.54516], [47.391695, 8.519397], [47.346297, 8.564507], [47.391952, 8.517905], [47.399591, 8.516695], [47.375266, 8.544581], [47.414385, 8.518956], [47.366806, 8.555315], [47.354071, 8.57534], [47.375872, 8.54515], [47.399144, 8.547832], [47.410783, 8.545941], [47.374163, 8.541353], [47.41441, 8.551344], [47.413634, 8.528999], [47.365421, 8.546866], [47.377226, 8.539907], [47.410706, 8.550259], [47.391931, 8.518209], [47.405803, 8.590701], [47.381808, 8.516667], [47.369284, 8.525668], [47.368884, 8.528984], [47.42724, 8.546376], [47.39241, 8.523729], [47.374974, 8.544946], [47.419161, 8.54748], [47.402014, 8.497812], [47.34292, 8.535943], [47.363209, 8.533567], [47.373391, 8.519277], [47.409816, 8.543629], [47.370581, 8.524477], [47.366927, 8.517968], [47.374665, 8.535921], [47.394549, 8.514368], [47.418197, 8.542027], [47.414402, 8.518996], [47.373059, 8.534498], [47.353985, 8.574981], [47.373617, 8.536377], [47.372312, 8.525995], [47.381373, 8.536126], [47.364993, 8.553066], [47.370542, 8.524767], [47.382902, 8.555825], [47.378491, 8.526995], [47.395456, 8.535555], [47.397493, 8.536021], [47.362541, 8.533885], [47.388031, 8.514925], [47.375555, 8.548228], [47.37749, 8.544322], [47.406365, 8.573011], [47.338222, 8.539036], [47.377717, 8.507817], [47.409484, 8.572323], [47.380092, 8.522273], [47.362509, 8.567034], [47.379961, 8.53709], [47.366846, 8.499576], [47.408986, 8.54385], [47.430946, 8.550152], [47.409268, 8.55007], [47.362356, 8.567084], [47.368497, 8.538429], [47.367963, 8.546296], [47.358237, 8.57159], [47.354332, 8.557847], [47.369984, 8.510416], [47.390683, 8.508276], [47.410082, 8.545012], [47.399999, 8.545836], [47.38368, 8.515645], [47.410958, 8.535211], [47.371993, 8.534966], [47.37732, 8.512735], [47.378979, 8.559636], [47.360357, 8.525089], [47.41274, 8.545438], [47.422079, 8.509914], [47.366461, 8.520686], [47.37102, 8.537952], [47.41912, 8.507933], [47.365627, 8.539469], [47.3676, 8.496744], [47.3695, 8.521793], [47.420096, 8.548454], [47.373271, 8.529179], [47.407157, 8.550728], [47.340006, 8.530286], [47.391758, 8.481183], [47.382727, 8.486158], [47.375398, 8.524972], [47.380386, 8.501223], [47.371177, 8.537584], [47.37505, 8.544603], [47.398978, 8.541642], [47.394207, 8.489921], [47.368067, 8.541095], [47.366779, 8.53564], [47.400394, 8.51642], [47.37297, 8.534417], [47.413731, 8.524442], [47.390362, 8.544351], [47.37994, 8.55608], [47.404659, 8.498766], [47.422832, 8.550194], [47.377278, 8.551429], [47.377224, 8.551402], [47.370168, 8.563846], [47.405505, 8.550455], [47.381548, 8.532885], [47.38504, 8.494958], [47.37302, 8.532948], [47.378534, 8.541404], [47.368386, 8.551005], [47.37304, 8.52695], [47.349305, 8.529497], [47.37876, 8.542309], [47.402056, 8.499138], [47.396769, 8.529859], [47.382948, 8.515061], [47.378428, 8.54029], [47.391767, 8.51753], [47.372608, 8.545916], [47.400728, 8.54866], [47.389109, 8.530444], [47.343214, 8.530576], [47.403766, 8.567471], [47.415004, 8.546691], [47.362303, 8.54835], [47.350186, 8.560592], [47.397042, 8.530447], [47.365479, 8.538883], [47.384922, 8.524146], [47.390592, 8.524845], [47.375202, 8.553068], [47.392701, 8.524384], [47.375009, 8.532764], [47.411139, 8.563148], [47.37659, 8.538729], [47.367871, 8.544639], [47.371001, 8.538137], [47.366334, 8.520829], [47.38728, 8.487996], [47.40225, 8.493749], [47.367978, 8.544774], [47.361548, 8.561387], [47.36711, 8.54424], [47.366473, 8.5366], [47.382423, 8.529698], [47.376074, 8.559641], [47.357907, 8.514807], [47.410365, 8.5436], [47.359703, 8.586184], [47.402883, 8.55464], [47.365006, 8.553503], [47.402083, 8.499191], [47.36634, 8.547653], [47.362181, 8.50499], [47.366798, 8.543081], [47.388966, 8.520745], [47.359698, 8.535799], [47.387866, 8.498696], [47.371203, 8.575785], [47.386761, 8.469761], [47.381554, 8.533123], [47.376528, 8.532888], [47.421952, 8.548161], [47.410971, 8.536616], [47.378768, 8.539502], [47.374476, 8.521643], [47.374631, 8.523301], [47.368191, 8.497021], [47.400253, 8.547484], [47.42069, 8.502517], [47.363377, 8.50794], [47.393181, 8.513479], [47.377672, 8.521258], [47.386243, 8.533868], [47.401103, 8.588466], [47.413044, 8.556828], [47.407206, 8.526747], [47.409301, 8.528738], [47.379908, 8.494512], [47.399716, 8.519732], [47.362186, 8.547513], [47.362593, 8.519707], [47.410883, 8.54491], [47.410892, 8.54491], [47.377657, 8.543743], [47.377143, 8.540131], [47.365391, 8.564805], [47.370167, 8.524495], [47.373067, 8.536511], [47.359481, 8.522596], [47.389944, 8.480949], [47.381346, 8.534284], [47.379315, 8.537831], [47.399765, 8.516341], [47.418874, 8.503329], [47.377467, 8.541978], [47.410877, 8.535157], [47.393761, 8.509106], [47.414621, 8.514892], [47.382731, 8.539928], [47.37256, 8.529218], [47.374856, 8.540428], [47.366864, 8.520853], [47.366869, 8.532729], [47.363044, 8.550867], [47.374564, 8.541733], [47.370125, 8.548804], [47.40524, 8.505031], [47.370785, 8.535285], [47.36659, 8.546003], [47.405255, 8.480732], [47.392303, 8.533225], [47.385104, 8.526839], [47.379475, 8.527611], [47.396529, 8.528596], [47.374789, 8.529475], [47.370992, 8.53141], [47.368216, 8.497233], [47.375102, 8.556866], [47.374353, 8.524183], [47.415095, 8.513179], [47.370561, 8.524715], [47.373972, 8.538794], [47.377898, 8.507662], [47.38675, 8.526872], [47.400709, 8.548699], [47.378417, 8.509884], [47.36712, 8.544187], [47.368547, 8.524581], [47.372992, 8.562092], [47.392672, 8.475664], [47.381992, 8.528722], [47.400719, 8.548673], [47.340939, 8.53143], [47.424861, 8.537393], [47.359868, 8.521637], [47.373457, 8.519993], [47.392988, 8.524417], [47.360203, 8.523312], [47.382857, 8.575239], [47.378095, 8.483194], [47.36573, 8.521836], [47.365976, 8.545275], [47.357954, 8.52046], [47.371197, 8.511553], [47.413634, 8.528999], [47.393003, 8.530471], [47.370802, 8.54952], [47.356551, 8.534688], [47.398953, 8.541456], [47.405043, 8.557269], [47.399172, 8.591803], [47.354106, 8.575487], [47.376733, 8.53505], [47.40766, 8.584023], [47.376092, 8.540956], [47.349846, 8.561273], [47.379153, 8.508084], [47.390652, 8.479228], [47.385358, 8.507308], [47.391196, 8.538911], [47.364984, 8.553053], [47.386197, 8.526318], [47.406925, 8.550565], [47.393001, 8.492917], [47.378749, 8.545328], [47.406842, 8.550735], [47.407428, 8.493984], [47.366799, 8.542896], [47.375879, 8.527405], [47.384737, 8.500488], [47.369027, 8.492165], [47.376948, 8.543609], [47.367626, 8.523066], [47.377252, 8.541907], [47.340284, 8.530371], [47.404318, 8.493804], [47.37017, 8.548805], [47.330046, 8.534302], [47.373399, 8.502897], [47.375106, 8.518689], [47.367149, 8.540189], [47.377569, 8.526486], [47.423731, 8.549338], [47.3801, 8.528048], [47.359713, 8.522733], [47.41762, 8.483068], [47.344245, 8.530055], [47.394712, 8.525724], [47.361006, 8.531629], [47.386173, 8.498928], [47.354936, 8.554894], [47.40446, 8.53362], [47.429644, 8.487227], [47.375054, 8.537532], [47.404605, 8.505628], [47.392733, 8.539088], [47.361059, 8.531657], [47.365478, 8.535229], [47.392056, 8.497919], [47.354077, 8.553526], [47.374463, 8.540075], [47.353954, 8.523926], [47.386768, 8.547614], [47.36474, 8.55412], [47.383028, 8.57519], [47.370886, 8.548211], [47.383948, 8.527279], [47.387064, 8.501766], [47.405938, 8.590677], [47.393274, 8.524608], [47.367082, 8.56394], [47.367147, 8.533754], [47.365472, 8.521579], [47.328799, 8.517712], [47.341405, 8.518232], [47.370152, 8.548804], [47.374536, 8.539971], [47.354877, 8.558189], [47.368776, 8.500991], [47.407175, 8.582118], [47.414374, 8.546678], [47.358636, 8.553648], [47.362755, 8.554687], [47.410946, 8.546806], [47.351245, 8.579119], [47.358347, 8.571368], [47.353483, 8.576572], [47.379426, 8.542177], [47.36357, 8.535375], [47.401169, 8.544827], [47.386273, 8.531657], [47.374914, 8.534324], [47.413419, 8.509634], [47.373726, 8.542867], [47.369094, 8.538111], [47.369276, 8.541689], [47.344269, 8.535045], [47.379541, 8.537704], [47.401726, 8.581008], [47.410708, 8.543462], [47.384978, 8.503685], [47.36129, 8.522514], [47.36276, 8.568032], [47.375597, 8.52679], [47.374713, 8.549654], [47.3755, 8.540812], [47.390104, 8.522172], [47.414986, 8.551329], [47.373109, 8.536803], [47.384337, 8.531869], [47.371097, 8.520303], [47.356776, 8.509807], [47.367845, 8.537039], [47.386496, 8.529026], [47.361356, 8.549614], [47.345555, 8.529446], [47.365223, 8.532695], [47.375701, 8.516649], [47.374458, 8.52159], [47.369467, 8.526202], [47.36842, 8.50538], [47.370224, 8.548819], [47.403229, 8.572666], [47.390293, 8.491009], [47.379531, 8.515826], [47.385537, 8.529536], [47.378715, 8.528072], [47.358882, 8.516415], [47.363967, 8.528565], [47.373535, 8.52504], [47.362188, 8.559389], [47.390715, 8.50878], [47.38046, 8.519434], [47.38901, 8.516971], [47.382196, 8.540354], [47.414307, 8.550891], [47.423084, 8.49847], [47.377318, 8.529342], [47.373993, 8.538463], [47.381066, 8.537219], [47.360368, 8.552241], [47.351291, 8.5763], [47.398361, 8.537443], [47.387184, 8.518987], [47.38899, 8.48893], [47.33515, 8.514718], [47.374177, 8.502436], [47.375922, 8.54086], [47.403995, 8.574405], [47.40953, 8.537726], [47.370952, 8.52324], [47.423738, 8.542963], [47.400092, 8.590591], [47.357797, 8.524666], [47.413873, 8.545436], [47.405298, 8.558785], [47.400109, 8.50159], [47.380221, 8.557781], [47.376065, 8.559614], [47.362713, 8.535583], [47.375644, 8.544549], [47.375931, 8.54086], [47.360413, 8.550376], [47.385795, 8.529833], [47.378643, 8.559125], [47.389756, 8.511277], [47.375581, 8.548295], [47.372726, 8.535484], [47.417093, 8.548352], [47.421297, 8.481297], [47.371686, 8.521758], [47.397936, 8.477462], [47.409269, 8.550057], [47.386744, 8.547362], [47.380883, 8.511668], [47.335448, 8.519408], [47.369408, 8.525817], [47.35823, 8.571405], [47.374015, 8.544595], [47.3741, 8.538518], [47.3764, 8.538831], [47.408583, 8.546478], [47.38188, 8.529091], [47.365796, 8.545258], [47.393166, 8.494603], [47.371423, 8.536239], [47.352341, 8.52523], [47.366484, 8.544796], [47.376111, 8.543658], [47.410926, 8.492146], [47.376388, 8.543836], [47.364257, 8.546285], [47.396573, 8.528702], [47.389336, 8.534952], [47.371611, 8.531595], [47.389717, 8.511568], [47.380104, 8.541834], [47.391282, 8.52323], [47.378983, 8.54242], [47.389578, 8.512016], [47.359944, 8.569005], [47.370179, 8.513585], [47.3808, 8.512832], [47.407099, 8.532363], [47.38835, 8.49105], [47.370263, 8.514262], [47.36808, 8.521645], [47.372545, 8.517446], [47.377661, 8.492336], [47.398953, 8.541429], [47.373681, 8.545647], [47.374252, 8.525346], [47.398523, 8.538426], [47.365071, 8.554246], [47.402377, 8.546402], [47.370372, 8.538005], [47.410704, 8.571752], [47.369471, 8.520071], [47.359321, 8.522381], [47.369645, 8.543471], [47.357694, 8.521236], [47.410574, 8.542412], [47.368473, 8.534338], [47.369254, 8.491984], [47.383118, 8.5502], [47.331003, 8.536757], [47.414141, 8.54662], [47.353481, 8.559338], [47.381462, 8.543743], [47.402721, 8.49829], [47.335894, 8.540827], [47.414896, 8.541057], [47.370143, 8.548804], [47.382514, 8.531487], [47.411325, 8.525851], [47.385124, 8.532336], [47.413955, 8.526448], [47.391805, 8.477992], [47.388434, 8.486707], [47.424453, 8.499266], [47.391678, 8.517436], [47.376063, 8.48898], [47.398595, 8.468122], [47.381897, 8.4894], [47.375083, 8.553264], [47.366191, 8.548192], [47.38704, 8.47876], [47.376904, 8.514886], [47.398364, 8.509384], [47.389495, 8.481814], [47.378317, 8.507088], [47.418987, 8.507639], [47.385484, 8.530449], [47.378021, 8.541473], [47.386174, 8.488994], [47.423403, 8.549676], [47.403453, 8.556136], [47.428844, 8.54515], [47.389256, 8.527255], [47.380039, 8.527848], [47.375602, 8.515627], [47.387074, 8.501727], [47.374699, 8.541722], [47.386199, 8.525126], [47.420543, 8.502872], [47.357292, 8.521969], [47.406754, 8.545937], [47.364022, 8.530393], [47.390696, 8.489282], [47.3776, 8.492096], [47.341066, 8.53044], [47.396165, 8.514626], [47.407321, 8.549606], [47.377769, 8.537733], [47.358425, 8.556913], [47.379108, 8.529325], [47.376618, 8.534849], [47.406691, 8.481131], [47.367854, 8.498471], [47.340762, 8.530195], [47.356065, 8.513684], [47.37859, 8.542187], [47.359625, 8.549102], [47.388366, 8.486282], [47.394874, 8.525727], [47.37036, 8.537356], [47.363453, 8.575329], [47.40731, 8.550745], [47.375399, 8.524813], [47.334783, 8.534704], [47.363621, 8.529048], [47.41417, 8.518872], [47.375656, 8.48831], [47.375393, 8.560342], [47.384875, 8.531986], [47.373183, 8.528078], [47.421004, 8.50744], [47.409316, 8.549766], [47.362747, 8.527256], [47.370345, 8.513204], [47.361995, 8.548661], [47.364582, 8.536733], [47.390117, 8.525617], [47.389978, 8.53274], [47.387312, 8.486434], [47.40886, 8.545755], [47.368723, 8.560718], [47.425645, 8.547655], [47.361403, 8.525706], [47.374387, 8.552667], [47.355674, 8.532288], [47.339572, 8.519002], [47.369048, 8.541062], [47.414657, 8.48342], [47.36906, 8.537911], [47.368208, 8.495181], [47.373704, 8.531969], [47.356511, 8.591502], [47.35258, 8.524653], [47.389244, 8.52185], [47.374184, 8.524947], [47.389389, 8.524582], [47.372177, 8.548635], [47.378064, 8.526496], [47.367914, 8.540178], [47.404667, 8.484072], [47.371177, 8.537531], [47.375111, 8.525787], [47.362791, 8.521631], [47.419806, 8.547706], [47.384628, 8.478911], [47.360194, 8.523246], [47.325665, 8.515254], [47.431499, 8.51636], [47.392597, 8.502725], [47.37109, 8.523891], [47.41632, 8.510076], [47.39805, 8.534217], [47.422327, 8.547454], [47.377549, 8.543781], [47.393112, 8.494628], [47.368609, 8.546521], [47.38326, 8.58628], [47.357718, 8.521594], [47.326069, 8.513397], [47.351407, 8.560816], [47.418855, 8.507331], [47.367949, 8.540205], [47.374602, 8.535894], [47.406204, 8.534729], [47.370733, 8.515953], [47.41388, 8.546642], [47.33825, 8.528516], [47.378342, 8.539838], [47.409685, 8.57931], [47.379246, 8.54228], [47.382798, 8.529997], [47.377817, 8.511567], [47.371749, 8.520753], [47.37436, 8.541424], [47.377273, 8.509093], [47.376501, 8.534873], [47.378561, 8.541431], [47.37274, 8.534955], [47.373107, 8.500442], [47.368122, 8.495762], [47.362539, 8.554736], [47.367336, 8.532805], [47.383187, 8.484035], [47.360484, 8.55235], [47.366117, 8.556823], [47.376399, 8.544578], [47.359722, 8.527539], [47.361816, 8.517255], [47.386963, 8.490281], [47.38974, 8.512032], [47.354532, 8.558553], [47.36901, 8.50285], [47.357968, 8.572379], [47.3355, 8.518761], [47.377788, 8.507885], [47.375899, 8.523301], [47.404883, 8.556206], [47.37847, 8.540608], [47.411, 8.544952], [47.374494, 8.539626], [47.381306, 8.49115], [47.396771, 8.523884], [47.410755, 8.543304], [47.387792, 8.544073], [47.369409, 8.526677], [47.364896, 8.531126], [47.375863, 8.488221], [47.377494, 8.541979], [47.377699, 8.510743], [47.389546, 8.488133], [47.364235, 8.536395], [47.390851, 8.522135], [47.369043, 8.528338], [47.386234, 8.503074], [47.371623, 8.514011], [47.368471, 8.521203], [47.383991, 8.515996], [47.391488, 8.546043], [47.407496, 8.548231], [47.364207, 8.548707], [47.371389, 8.510219], [47.385155, 8.541343], [47.366772, 8.494821], [47.367931, 8.496009], [47.402407, 8.556393], [47.368827, 8.496358], [47.415258, 8.53799], [47.404161, 8.563809], [47.369429, 8.540726], [47.389324, 8.511295], [47.356105, 8.509383], [47.336027, 8.524872], [47.378243, 8.514105], [47.370161, 8.548818], [47.395766, 8.54543], [47.369212, 8.519907], [47.394259, 8.480225], [47.397946, 8.481291], [47.350117, 8.56206], [47.397717, 8.533296], [47.366616, 8.555404], [47.385834, 8.548442], [47.376724, 8.534984], [47.365251, 8.500775], [47.370206, 8.548819], [47.39117, 8.522684], [47.397718, 8.532289], [47.373464, 8.539181], [47.390718, 8.478831], [47.378103, 8.540455], [47.369686, 8.556117], [47.369668, 8.556077], [47.364473, 8.536903], [47.391037, 8.479341], [47.406555, 8.570153], [47.390746, 8.515059], [47.391283, 8.515375], [47.368714, 8.528808], [47.369612, 8.529925], [47.403288, 8.497254], [47.373554, 8.524961], [47.370789, 8.519555], [47.408364, 8.50773], [47.409866, 8.544994], [47.390047, 8.480487], [47.396451, 8.528329], [47.429711, 8.549423], [47.409605, 8.544088], [47.413436, 8.539397], [47.411957, 8.517939], [47.366498, 8.54808], [47.412817, 8.540246], [47.341167, 8.536834], [47.356402, 8.555838], [47.369688, 8.508345], [47.400216, 8.516271], [47.390727, 8.478818], [47.381177, 8.515886], [47.353947, 8.523767], [47.36894, 8.52488], [47.359599, 8.521513], [47.417395, 8.509634], [47.367306, 8.545369], [47.352001, 8.559783], [47.383043, 8.499925], [47.347682, 8.562697], [47.415759, 8.569978], [47.399365, 8.505191], [47.370432, 8.515443], [47.374013, 8.501678], [47.381222, 8.537818], [47.373382, 8.531737], [47.381106, 8.504124], [47.368543, 8.528831], [47.414127, 8.541465], [47.374553, 8.495836], [47.41386, 8.545912], [47.407643, 8.531831], [47.39376, 8.493568], [47.404704, 8.549525], [47.395175, 8.510883], [47.375791, 8.516558], [47.371588, 8.515864], [47.373591, 8.524829], [47.385034, 8.541817], [47.375327, 8.485933], [47.369394, 8.554601], [47.382695, 8.539994], [47.352077, 8.523637], [47.3893, 8.491387], [47.388038, 8.489773], [47.428639, 8.489036], [47.424278, 8.508487], [47.410518, 8.54363], [47.400807, 8.54886], [47.377022, 8.544339], [47.378697, 8.528019], [47.370152, 8.548804], [47.39212, 8.513405], [47.370834, 8.530109], [47.379011, 8.542341], [47.372701, 8.535232], [47.420972, 8.501144], [47.41398, 8.543742], [47.398258, 8.537003], [47.373947, 8.51946], [47.337011, 8.520618], [47.375374, 8.545457], [47.36401, 8.55143], [47.369343, 8.557129], [47.374543, 8.539243], [47.343923, 8.528844], [47.376109, 8.533448], [47.362308, 8.526135], [47.374217, 8.524233], [47.366598, 8.52049], [47.374563, 8.562443], [47.393425, 8.500688], [47.373017, 8.531385], [47.388108, 8.474065], [47.388162, 8.536372], [47.379197, 8.553893], [47.369727, 8.551867], [47.395224, 8.521959], [47.377388, 8.529449], [47.370847, 8.492836], [47.359691, 8.593676], [47.40164, 8.548268], [47.39408, 8.489044], [47.38723, 8.485571], [47.376851, 8.528286], [47.383245, 8.53982], [47.381065, 8.537325], [47.37505, 8.54459], [47.37123, 8.54986], [47.397078, 8.530488], [47.359501, 8.508829], [47.390993, 8.539423], [47.382573, 8.515689], [47.410178, 8.574073], [47.376986, 8.543359], [47.392532, 8.532726], [47.36293, 8.517357], [47.411635, 8.567598], [47.377552, 8.548191], [47.377016, 8.542114], [47.423796, 8.544383], [47.360419, 8.584716], [47.399379, 8.542922], [47.373052, 8.550308], [47.359416, 8.551162], [47.389866, 8.491531], [47.412814, 8.481396], [47.372008, 8.529643], [47.397042, 8.521903], [47.367226, 8.522581], [47.369497, 8.547732], [47.384449, 8.548453], [47.413366, 8.512416], [47.393616, 8.524655], [47.404323, 8.50015], [47.375382, 8.540915], [47.388555, 8.523293], [47.371105, 8.523335], [47.388843, 8.491219], [47.402012, 8.49809], [47.405618, 8.549915], [47.360237, 8.576703], [47.410333, 8.539426], [47.359109, 8.526732], [47.380099, 8.515745], [47.355176, 8.557957], [47.37027, 8.531753], [47.380772, 8.533094], [47.351777, 8.526794], [47.333146, 8.518462], [47.39339, 8.524769], [47.377063, 8.523933], [47.366401, 8.545046], [47.367038, 8.523412], [47.400961, 8.535549], [47.391961, 8.517879], [47.410316, 8.563634], [47.36956, 8.466992], [47.38704, 8.546454], [47.3989, 8.511647], [47.377273, 8.539696], [47.354321, 8.575505], [47.376342, 8.516344], [47.372418, 8.510823], [47.423044, 8.50381], [47.4062, 8.533272], [47.38311, 8.515037], [47.427413, 8.546181], [47.380382, 8.517194], [47.357226, 8.591015], [47.367216, 8.545447], [47.389941, 8.535653], [47.385315, 8.500235], [47.381931, 8.532336], [47.37771, 8.541957], [47.366548, 8.541871], [47.409046, 8.547919], [47.376912, 8.535147], [47.367174, 8.552556], [47.387557, 8.500094], [47.366333, 8.533287], [47.370116, 8.525195], [47.367246, 8.552597], [47.364559, 8.56623], [47.392938, 8.543967], [47.387623, 8.499672], [47.375305, 8.543257], [47.335088, 8.54134], [47.386807, 8.502371], [47.374507, 8.540209], [47.377648, 8.541876], [47.382631, 8.540072], [47.376685, 8.526773], [47.338272, 8.529985], [47.392809, 8.522426], [47.417163, 8.54288], [47.397076, 8.53066], [47.363129, 8.517269], [47.405224, 8.481142], [47.410589, 8.53804], [47.391292, 8.532595], [47.402042, 8.579915], [47.358959, 8.557467], [47.37707, 8.535507], [47.379967, 8.544016], [47.376598, 8.538808], [47.3913, 8.52319], [47.37754, 8.543781], [47.407785, 8.584053], [47.367906, 8.494751], [47.376855, 8.528763], [47.406934, 8.550578], [47.357906, 8.532227], [47.373971, 8.528452], [47.374574, 8.53882], [47.391803, 8.545096], [47.370227, 8.513255], [47.392048, 8.539233], [47.397949, 8.531552], [47.385582, 8.530491], [47.419678, 8.547981], [47.378786, 8.542323], [47.367789, 8.521057], [47.41443, 8.551225], [47.373194, 8.527814], [47.391123, 8.522829], [47.363925, 8.571301], [47.383717, 8.532744], [47.359153, 8.527752], [47.374845, 8.551882], [47.405829, 8.590808], [47.397322, 8.59424], [47.414855, 8.561133], [47.368223, 8.506316], [47.401039, 8.588624], [47.358141, 8.587646], [47.426906, 8.546555], [47.343615, 8.530055], [47.393956, 8.535325], [47.388229, 8.540651], [47.399964, 8.519127], [47.365261, 8.520145], [47.380622, 8.534693], [47.362701, 8.527348], [47.355574, 8.60145], [47.378095, 8.483194], [47.376644, 8.540584], [47.400807, 8.548874], [47.373149, 8.52878], [47.40164, 8.581496], [47.379333, 8.537858], [47.412336, 8.54437], [47.381406, 8.528869], [47.357565, 8.52163], [47.373481, 8.534626], [47.393805, 8.500444], [47.420666, 8.547154], [47.333931, 8.515262], [47.371307, 8.530437], [47.374498, 8.521193], [47.370304, 8.548861], [47.417518, 8.511837], [47.405723, 8.563193], [47.37316, 8.531468], [47.40447, 8.572706], [47.39391, 8.537324], [47.383442, 8.533308], [47.364321, 8.555528], [47.391282, 8.523216], [47.38237, 8.529604], [47.373848, 8.503026], [47.369672, 8.603029], [47.371075, 8.53026], [47.383323, 8.495851], [47.376546, 8.509846], [47.36859, 8.560569], [47.38142, 8.510063], [47.338021, 8.516576], [47.364539, 8.55066], [47.363581, 8.535177], [47.342769, 8.530091], [47.381493, 8.535784], [47.340016, 8.530193], [47.374932, 8.539979], [47.383904, 8.511875], [47.375912, 8.541946], [47.389133, 8.517371], [47.360359, 8.523858], [47.380995, 8.538091], [47.362795, 8.522213], [47.369041, 8.537951], [47.384742, 8.531877], [47.362027, 8.548993], [47.37549, 8.541818], [47.366263, 8.54066], [47.384459, 8.510164], [47.372553, 8.534726], [47.412216, 8.546633], [47.369216, 8.528037], [47.391046, 8.522496], [47.362099, 8.548994], [47.398659, 8.539211], [47.394559, 8.521905], [47.37017, 8.548818], [47.411385, 8.544191], [47.366559, 8.559441], [47.382076, 8.529346], [47.418322, 8.483015], [47.369614, 8.528773], [47.422604, 8.550534], [47.374547, 8.518784], [47.370385, 8.548928], [47.356681, 8.570644], [47.377582, 8.543146], [47.385588, 8.546888], [47.373748, 8.503169], [47.375082, 8.539307], [47.414458, 8.552975], [47.370829, 8.542966], [47.370365, 8.491463], [47.373615, 8.527081], [47.374157, 8.521041], [47.411492, 8.526291], [47.385842, 8.532523], [47.369474, 8.523541], [47.356929, 8.555346], [47.376083, 8.540996], [47.402356, 8.49289], [47.34405, 8.53066], [47.392041, 8.500501], [47.374464, 8.544697], [47.369623, 8.53922], [47.383256, 8.528218], [47.40409, 8.50098], [47.368279, 8.504172], [47.353325, 8.558739], [47.376098, 8.521292], [47.366429, 8.510623], [47.402126, 8.499351], [47.412804, 8.543479], [47.374686, 8.51255], [47.383394, 8.484105], [47.37871, 8.516101], [47.368937, 8.529038], [47.379415, 8.50801], [47.409309, 8.546745], [47.392649, 8.475173], [47.391031, 8.523079], [47.387149, 8.509199], [47.411336, 8.570586], [47.412486, 8.550402], [47.370584, 8.538433], [47.376881, 8.544032], [47.397043, 8.530408], [47.427957, 8.545702], [47.374466, 8.539824], [47.336401, 8.518501], [47.407536, 8.546907], [47.383289, 8.53994], [47.376767, 8.538083], [47.387807, 8.471516], [47.379719, 8.525524], [47.340542, 8.519128], [47.391627, 8.511315], [47.367959, 8.544813], [47.418745, 8.553303], [47.356974, 8.53565], [47.401892, 8.536045], [47.338763, 8.538901], [47.39598, 8.473834], [47.424175, 8.54337], [47.376762, 8.543274], [47.377778, 8.537734], [47.388521, 8.520206], [47.379315, 8.537818], [47.403999, 8.561991], [47.37017, 8.548792], [47.377257, 8.528148], [47.355387, 8.554785], [47.390294, 8.50954], [47.350313, 8.567795], [47.414449, 8.483602], [47.390712, 8.539722], [47.37144, 8.522098], [47.391368, 8.514939], [47.369214, 8.527349], [47.377769, 8.53772], [47.369623, 8.508621], [47.381791, 8.516626], [47.398614, 8.590903], [47.342957, 8.535878], [47.374414, 8.496297], [47.36525, 8.494116], [47.366893, 8.521581], [47.391381, 8.523205], [47.346552, 8.534337], [47.354328, 8.552684], [47.398295, 8.536806], [47.409258, 8.571576], [47.363106, 8.517745], [47.371806, 8.559194], [47.399955, 8.51914], [47.383256, 8.499227], [47.399843, 8.480361], [47.407656, 8.578922], [47.372983, 8.528246], [47.366061, 8.533533], [47.382545, 8.548069], [47.351094, 8.526727], [47.391284, 8.536277], [47.375222, 8.531219], [47.377925, 8.535459], [47.384176, 8.543137], [47.368739, 8.496145], [47.380557, 8.548121], [47.397524, 8.505857], [47.359472, 8.585914], [47.371949, 8.556456], [47.361501, 8.52588], [47.387383, 8.521746], [47.389154, 8.494576], [47.407914, 8.580173], [47.370799, 8.546977], [47.360326, 8.566776], [47.409382, 8.558792], [47.39266, 8.53351], [47.368565, 8.524621], [47.395714, 8.536832], [47.385737, 8.539818], [47.373029, 8.532895], [47.335552, 8.518881], [47.363921, 8.547616], [47.410467, 8.532843], [47.354474, 8.553389], [47.342441, 8.520013], [47.372898, 8.550358], [47.368726, 8.52853], [47.377949, 8.525302], [47.418526, 8.547109], [47.389088, 8.536391], [47.389501, 8.511603], [47.391579, 8.517341], [47.386745, 8.547283], [47.370384, 8.52058], [47.403672, 8.534253], [47.355133, 8.561557], [47.397712, 8.488281], [47.328783, 8.514576], [47.376702, 8.523012], [47.360234, 8.522797], [47.342571, 8.531053], [47.372324, 8.513191], [47.410517, 8.550282], [47.384208, 8.497365], [47.380816, 8.518924], [47.376332, 8.526077], [47.410821, 8.558795], [47.37926, 8.537897], [47.375423, 8.549735], [47.411417, 8.52564], [47.378643, 8.52039], [47.407933, 8.578212], [47.376678, 8.54171], [47.403389, 8.48614], [47.400962, 8.538278], [47.382794, 8.532341], [47.373816, 8.542882], [47.370188, 8.548818], [47.41489, 8.54164], [47.355675, 8.57417], [47.371847, 8.557685], [47.364597, 8.554898], [47.409852, 8.575166], [47.357413, 8.521508], [47.422136, 8.504667], [47.414345, 8.551621], [47.365618, 8.539469], [47.376805, 8.535039], [47.372735, 8.534558], [47.369253, 8.511606], [47.402215, 8.535138], [47.385351, 8.529215], [47.42492, 8.50121], [47.364047, 8.547552], [47.373763, 8.534208], [47.384243, 8.5558], [47.335299, 8.519021], [47.360302, 8.576559], [47.370564, 8.532037], [47.398641, 8.539211], [47.390647, 8.489678], [47.382075, 8.529412], [47.401934, 8.499758], [47.390824, 8.489006], [47.384193, 8.575692], [47.403827, 8.567697], [47.372964, 8.520765], [47.366222, 8.544989], [47.359574, 8.535598], [47.378573, 8.542094], [47.37552, 8.548122], [47.413743, 8.571896], [47.394176, 8.493285], [47.36933, 8.533137], [47.363598, 8.534304], [47.386927, 8.47334], [47.376926, 8.540311], [47.353317, 8.576132], [47.372856, 8.535977], [47.402413, 8.499423], [47.420961, 8.549281], [47.42487, 8.537407], [47.377237, 8.499359], [47.339825, 8.530414], [47.383099, 8.528612], [47.3937, 8.508906], [47.393978, 8.481399], [47.378111, 8.541422], [47.341525, 8.529457], [47.391963, 8.512832], [47.354887, 8.574656], [47.392488, 8.502749], [47.369311, 8.527509], [47.361529, 8.563346], [47.395992, 8.52261], [47.345048, 8.533525], [47.37221, 8.511838], [47.366832, 8.542301], [47.366948, 8.544276], [47.379324, 8.528376], [47.358221, 8.571405], [47.390616, 8.510685], [47.369036, 8.547921], [47.353221, 8.572132], [47.392248, 8.494664], [47.363406, 8.533651], [47.398705, 8.471873], [47.386961, 8.534996], [47.368522, 8.499186], [47.421655, 8.499236], [47.427981, 8.54883], [47.374852, 8.541765], [47.425622, 8.556588], [47.413924, 8.546722], [47.368806, 8.49273], [47.41322, 8.546045], [47.347921, 8.524558], [47.371103, 8.538735], [47.364082, 8.517314], [47.378827, 8.542761], [47.357079, 8.535957], [47.378591, 8.530745], [47.398659, 8.539198], [47.409791, 8.537771], [47.379381, 8.542216], [47.409788, 8.540951], [47.390612, 8.5398], [47.406558, 8.550358], [47.389266, 8.531917], [47.406206, 8.483983], [47.398345, 8.537283], [47.342439, 8.530706], [47.393518, 8.483549], [47.411399, 8.525627], [47.390384, 8.522032], [47.411162, 8.570887], [47.366638, 8.54566], [47.377588, 8.525507], [47.383636, 8.483209], [47.406072, 8.563399], [47.370265, 8.552964], [47.384261, 8.52755], [47.42314, 8.502129], [47.388717, 8.520436], [47.378456, 8.51444], [47.397122, 8.530595], [47.414204, 8.519058], [47.372243, 8.513189], [47.354877, 8.574802], [47.369305, 8.528185], [47.386202, 8.518159], [47.394654, 8.518543], [47.362397, 8.552681], [47.391791, 8.484561], [47.413837, 8.545435], [47.396312, 8.527743], [47.360254, 8.534102], [47.373421, 8.561412], [47.386686, 8.523136], [47.375884, 8.541098], [47.359652, 8.59852], [47.373134, 8.523655], [47.355306, 8.55477], [47.367188, 8.539898], [47.358261, 8.581029], [47.376897, 8.554547], [47.381459, 8.497999], [47.355734, 8.560762], [47.408159, 8.55968], [47.372712, 8.547309], [47.37383, 8.537573], [47.376227, 8.527704], [47.379139, 8.530769], [47.400468, 8.592586], [47.403752, 8.565245], [47.402815, 8.577255], [47.384873, 8.495538], [47.419896, 8.506636], [47.377795, 8.537827], [47.380684, 8.525278], [47.417234, 8.545784], [47.399362, 8.542882], [47.376174, 8.536164], [47.354228, 8.598469], [47.356751, 8.553304], [47.364904, 8.537958], [47.374078, 8.540862], [47.374299, 8.524129], [47.411832, 8.537853], [47.417699, 8.546111], [47.429353, 8.54642], [47.36609, 8.556783], [47.410641, 8.553279], [47.376603, 8.548621], [47.377716, 8.51077], [47.352149, 8.525504], [47.374687, 8.532638], [47.361615, 8.50302], [47.38672, 8.528117], [47.38573, 8.525262], [47.37318, 8.55194], [47.394077, 8.493349], [47.373433, 8.552792], [47.388314, 8.490997], [47.393431, 8.545077], [47.363253, 8.522262], [47.362145, 8.548955], [47.354569, 8.60213], [47.384477, 8.528495], [47.426154, 8.554505], [47.354499, 8.511786], [47.353308, 8.576132], [47.377884, 8.529406], [47.390221, 8.512492], [47.349806, 8.529824], [47.373361, 8.532041], [47.413221, 8.545912], [47.425596, 8.536679], [47.378777, 8.542349], [47.384966, 8.50885], [47.363297, 8.567408], [47.371936, 8.517142], [47.388395, 8.536509], [47.359468, 8.553215], [47.413838, 8.553823], [47.374542, 8.51264], [47.401232, 8.534508], [47.355653, 8.535517], [47.358696, 8.516054], [47.393677, 8.472862], [47.362471, 8.568185], [47.342586, 8.531357], [47.412286, 8.55713], [47.390636, 8.49193], [47.369913, 8.547502], [47.403599, 8.588984], [47.378554, 8.54212], [47.373924, 8.502564], [47.374612, 8.524387], [47.384386, 8.548399], [47.35774, 8.599829], [47.407111, 8.586715], [47.396241, 8.527702], [47.374236, 8.526988], [47.391588, 8.52317], [47.377179, 8.540118], [47.375347, 8.56038], [47.381476, 8.542352], [47.364411, 8.532957], [47.37831, 8.541347], [47.383716, 8.547908], [47.369917, 8.542378], [47.377566, 8.54198], [47.375464, 8.486678], [47.413741, 8.546109], [47.41907, 8.506474], [47.358457, 8.571185], [47.354813, 8.560213], [47.385374, 8.517255], [47.371449, 8.525898], [47.377035, 8.523999], [47.384058, 8.576616], [47.38237, 8.505593], [47.351612, 8.576625], [47.365306, 8.545685], [47.357687, 8.557851], [47.365421, 8.546826], [47.356094, 8.556097], [47.361546, 8.531534], [47.374211, 8.524921], [47.381388, 8.517386], [47.412453, 8.529226], [47.386348, 8.534189], [47.41258, 8.544296], [47.368142, 8.539812], [47.393426, 8.524744], [47.378335, 8.52731], [47.360336, 8.527353], [47.36981, 8.516503], [47.417708, 8.546059], [47.394856, 8.525753], [47.396564, 8.528742], [47.388503, 8.532643], [47.399708, 8.543419], [47.370161, 8.548818], [47.385454, 8.576381], [47.370509, 8.54909], [47.397968, 8.532467], [47.392717, 8.523603], [47.388373, 8.540654], [47.425699, 8.509404], [47.346191, 8.534396], [47.39615, 8.516308], [47.352213, 8.525479], [47.370087, 8.524361], [47.383855, 8.528588], [47.356302, 8.553176], [47.379304, 8.529528], [47.381785, 8.489874], [47.375691, 8.529189], [47.351276, 8.53229], [47.369077, 8.540851], [47.37069, 8.531987], [47.407517, 8.538533], [47.374664, 8.536014], [47.364951, 8.525355], [47.382076, 8.515957], [47.367912, 8.521364], [47.388415, 8.516217], [47.378682, 8.541937], [47.387722, 8.518203], [47.381831, 8.541883], [47.367639, 8.565885], [47.39739, 8.540271], [47.37279, 8.547562], [47.357487, 8.550659], [47.360866, 8.550001], [47.376355, 8.527402], [47.387663, 8.488441], [47.417675, 8.554155], [47.358895, 8.58238], [47.402067, 8.497959], [47.39865, 8.539211], [47.391654, 8.519012], [47.369124, 8.541593], [47.339956, 8.531701], [47.422513, 8.550585], [47.406656, 8.584598], [47.412224, 8.483969], [47.371447, 8.546038], [47.376775, 8.548505], [47.364266, 8.531153], [47.342581, 8.530947], [47.368148, 8.523937], [47.389501, 8.511564], [47.414931, 8.530748], [47.411543, 8.563236], [47.410741, 8.571687], [47.376229, 8.525492], [47.377016, 8.543982], [47.38686, 8.547431], [47.393772, 8.502059], [47.413943, 8.571702], [47.388674, 8.520223], [47.373044, 8.531386], [47.417847, 8.554106], [47.405296, 8.551617], [47.366078, 8.533679], [47.369087, 8.537885], [47.419915, 8.482887], [47.400744, 8.544196], [47.416342, 8.546004], [47.381276, 8.517742], [47.413788, 8.536489], [47.378553, 8.541338], [47.382788, 8.486451], [47.397193, 8.49194], [47.368007, 8.540776], [47.397346, 8.53256], [47.386788, 8.547495], [47.404502, 8.59486], [47.422862, 8.494144], [47.357972, 8.520421], [47.403311, 8.488842], [47.376625, 8.514032], [47.360109, 8.595922], [47.387515, 8.516212], [47.429138, 8.543605], [47.373256, 8.535522], [47.429953, 8.549601], [47.385848, 8.52994], [47.373602, 8.519824], [47.388994, 8.496321], [47.351449, 8.601082], [47.325871, 8.51342], [47.369134, 8.503104], [47.40454, 8.556292], [47.377193, 8.538635], [47.407006, 8.55054], [47.38639, 8.496852], [47.378872, 8.542762], [47.374397, 8.541385], [47.41017, 8.564744], [47.389319, 8.527203], [47.398069, 8.536059], [47.380857, 8.537413], [47.37025, 8.513692], [47.367889, 8.539992], [47.366523, 8.545432], [47.376429, 8.534832], [47.387526, 8.529445], [47.374328, 8.542972], [47.367101, 8.544292], [47.407508, 8.547039], [47.401256, 8.545147], [47.377186, 8.54033], [47.369115, 8.525466], [47.389974, 8.485532], [47.354998, 8.511359], [47.415474, 8.516897], [47.380151, 8.537835], [47.376909, 8.535438], [47.369284, 8.527482], [47.391082, 8.489329], [47.406934, 8.550552], [47.42446, 8.537981], [47.36069, 8.565407], [47.395246, 8.537723], [47.38161, 8.509908], [47.366934, 8.543865], [47.360766, 8.548238], [47.407331, 8.585381], [47.385337, 8.508579], [47.366421, 8.544834], [47.382829, 8.532461], [47.374704, 8.549681], [47.381149, 8.491623], [47.379214, 8.525672], [47.354333, 8.557794], [47.374948, 8.534471], [47.362463, 8.535419], [47.376346, 8.538816], [47.368339, 8.535209], [47.387108, 8.534654], [47.38506, 8.508441], [47.370163, 8.532519], [47.369274, 8.541848], [47.422983, 8.551271], [47.410102, 8.52772], [47.41368, 8.554297], [47.385914, 8.524869], [47.407442, 8.574174], [47.398256, 8.537123], [47.385822, 8.493013], [47.388188, 8.524147], [47.38288, 8.528992], [47.377126, 8.526755], [47.373118, 8.53299], [47.388695, 8.546528], [47.371321, 8.544168], [47.387158, 8.535066], [47.417537, 8.553609], [47.3522, 8.526763], [47.366096, 8.50769], [47.37995, 8.543883], [47.373844, 8.576106], [47.393216, 8.474151], [47.370174, 8.529447], [47.382723, 8.540762], [47.368253, 8.52431], [47.392202, 8.495736], [47.374501, 8.541771], [47.383617, 8.532861], [47.367442, 8.55554], [47.366938, 8.544355], [47.381867, 8.54191], [47.381781, 8.516653], [47.377506, 8.527531], [47.368443, 8.533728], [47.386512, 8.545225], [47.377256, 8.538716], [47.375988, 8.515768], [47.406126, 8.58986], [47.35594, 8.535589], [47.356389, 8.534738], [47.38503, 8.547883], [47.367976, 8.524053], [47.398947, 8.541138], [47.376676, 8.557826], [47.384459, 8.548295], [47.369463, 8.541852], [47.371257, 8.527245], [47.401795, 8.500153], [47.381378, 8.537463], [47.374297, 8.52442], [47.378335, 8.540619], [47.382916, 8.54127], [47.385898, 8.498511], [47.378221, 8.528949], [47.399398, 8.533357], [47.422247, 8.506259], [47.371086, 8.523441], [47.409558, 8.537634], [47.369268, 8.554678], [47.407174, 8.498246], [47.375942, 8.527393], [47.408914, 8.558835], [47.420367, 8.50821], [47.418228, 8.506099], [47.408651, 8.580242], [47.369863, 8.525243], [47.379068, 8.525934], [47.390577, 8.491439], [47.388689, 8.496262], [47.341828, 8.530693], [47.368161, 8.531193], [47.361649, 8.503192], [47.376637, 8.511702], [47.364303, 8.533921], [47.369874, 8.523151], [47.325991, 8.518793], [47.396973, 8.513874], [47.367376, 8.530515], [47.370152, 8.548818], [47.343362, 8.530143], [47.402927, 8.57686], [47.381985, 8.516061], [47.361608, 8.5654], [47.376015, 8.515689], [47.370034, 8.543294], [47.349906, 8.569918], [47.422386, 8.550742], [47.372496, 8.505263], [47.387663, 8.488401], [47.377015, 8.498017], [47.403345, 8.585547], [47.37474, 8.55805], [47.417546, 8.553622], [47.350148, 8.527873], [47.413604, 8.539745], [47.407314, 8.587183], [47.368877, 8.547639], [47.377987, 8.526098], [47.386806, 8.535165], [47.375145, 8.537388], [47.37026, 8.548833], [47.369685, 8.522208], [47.362603, 8.514796], [47.410878, 8.562189], [47.399913, 8.592309], [47.354478, 8.597799], [47.419965, 8.504093], [47.358416, 8.556913], [47.378686, 8.51961], [47.399768, 8.543712], [47.398007, 8.534057], [47.366593, 8.521986], [47.393179, 8.5194], [47.369313, 8.550945], [47.367728, 8.546384], [47.37179, 8.530764], [47.378495, 8.575186], [47.399768, 8.543712], [47.386184, 8.518093], [47.375335, 8.524931], [47.412378, 8.543775], [47.378081, 8.509281], [47.356672, 8.524776], [47.376698, 8.540572], [47.368383, 8.556897], [47.382004, 8.548204], [47.3844, 8.531897], [47.384912, 8.531974], [47.370161, 8.548805], [47.381597, 8.53719], [47.372843, 8.600781], [47.373311, 8.519209], [47.370418, 8.602184], [47.364611, 8.545935], [47.394137, 8.530481], [47.356731, 8.522328], [47.413012, 8.536711], [47.374895, 8.544812], [47.40197, 8.585385], [47.414095, 8.550423], [47.374537, 8.539891], [47.385331, 8.495613], [47.414114, 8.550317], [47.400248, 8.494213], [47.364033, 8.549021], [47.410045, 8.563708], [47.365823, 8.549985], [47.369023, 8.53795], [47.360104, 8.548807], [47.362319, 8.550508], [47.375058, 8.531454], [47.392544, 8.538131], [47.373153, 8.536963], [47.381252, 8.555366], [47.378962, 8.559596], [47.417203, 8.544338], [47.42873, 8.488853], [47.370639, 8.535508], [47.36456, 8.531517], [47.359701, 8.524957], [47.399693, 8.495885], [47.384322, 8.50746], [47.36877, 8.524797], [47.376663, 8.548993], [47.383528, 8.536488], [47.365783, 8.550368], [47.3949, 8.522999], [47.37258, 8.534766], [47.37265, 8.529233], [47.405714, 8.587917], [47.367692, 8.545509], [47.373906, 8.544778], [47.385728, 8.533156], [47.383183, 8.510086], [47.363483, 8.535096], [47.372694, 8.534067], [47.387901, 8.491929], [47.370146, 8.532452], [47.377291, 8.519727], [47.403381, 8.534565], [47.39179, 8.481661], [47.374901, 8.543196], [47.386514, 8.529], [47.413976, 8.548857], [47.375356, 8.547311], [47.373853, 8.499503], [47.41092, 8.554213], [47.417059, 8.551889], [47.418544, 8.547123], [47.406939, 8.585929], [47.370374, 8.49145], [47.383218, 8.539859], [47.37264, 8.529299], [47.371117, 8.523905], [47.354108, 8.575288], [47.368494, 8.534047], [47.381594, 8.51355], [47.362752, 8.511383], [47.376182, 8.536165], [47.369459, 8.552537], [47.365159, 8.501012], [47.37552, 8.548095], [47.376611, 8.534598], [47.371457, 8.562682], [47.373076, 8.532711], [47.378574, 8.526798], [47.39809, 8.504901], [47.366069, 8.533586], [47.373861, 8.538116], [47.370048, 8.512218], [47.370199, 8.568071], [47.379906, 8.521925], [47.387925, 8.520525], [47.3532, 8.558657], [47.422115, 8.500173], [47.422127, 8.544878], [47.379956, 8.514616], [47.414367, 8.552111], [47.3772, 8.513038], [47.414646, 8.551137], [47.428668, 8.543834], [47.406835, 8.587384], [47.368104, 8.523844], [47.405183, 8.559538], [47.405025, 8.482251], [47.364752, 8.537796], [47.369179, 8.525296], [47.3651, 8.501646], [47.369069, 8.519812], [47.368083, 8.520335], [47.368035, 8.540644], [47.391223, 8.54266], [47.356722, 8.554455], [47.373858, 8.536527], [47.370326, 8.476924], [47.404514, 8.533595], [47.399151, 8.591193], [47.379934, 8.528561], [47.403218, 8.534681], [47.37038, 8.524764], [47.422882, 8.49889], [47.404268, 8.481441], [47.403486, 8.576766], [47.352908, 8.579247], [47.362838, 8.55637], [47.392127, 8.501907], [47.374387, 8.53863], [47.376146, 8.553127], [47.368201, 8.546804], [47.408618, 8.539072], [47.419725, 8.547797], [47.409355, 8.540108], [47.379104, 8.525855], [47.411357, 8.54427], [47.369204, 8.525534], [47.398155, 8.536458], [47.375375, 8.540703], [47.386026, 8.492342], [47.40388, 8.503294], [47.358471, 8.588897], [47.375843, 8.487466], [47.383647, 8.539139], [47.39416, 8.493072], [47.409328, 8.546706], [47.419169, 8.547626], [47.386467, 8.529158], [47.367268, 8.53712], [47.365297, 8.554105], [47.385964, 8.496169], [47.372736, 8.550461], [47.372793, 8.522615], [47.368169, 8.538873], [47.423713, 8.504327], [47.413339, 8.531643], [47.373943, 8.54646], [47.376803, 8.538124], [47.3864, 8.497661], [47.391175, 8.539255], [47.373907, 8.544645], [47.369627, 8.555665], [47.364048, 8.555866], [47.373884, 8.536634], [47.329007, 8.513761], [47.391869, 8.538117], [47.380241, 8.53789], [47.37222, 8.535699], [47.377486, 8.543793], [47.40952, 8.542629], [47.383753, 8.573788], [47.374341, 8.542536], [47.360572, 8.526113], [47.372345, 8.55461], [47.381764, 8.545166], [47.363506, 8.521116], [47.379683, 8.560339], [47.380573, 8.536997], [47.387801, 8.544033], [47.370976, 8.548199], [47.384064, 8.53879], [47.389733, 8.511847], [47.381127, 8.536425], [47.403932, 8.567898], [47.369914, 8.51019], [47.407897, 8.544848], [47.412384, 8.509706], [47.362196, 8.559468], [47.386283, 8.521009], [47.38696, 8.542651], [47.399015, 8.533058], [47.366671, 8.542218], [47.38024, 8.541797], [47.409556, 8.550116], [47.381336, 8.540999], [47.373952, 8.54462], [47.376222, 8.488308], [47.418424, 8.547412], [47.363598, 8.533377], [47.399768, 8.543659], [47.377139, 8.540528], [47.415003, 8.545857], [47.397625, 8.507581], [47.376526, 8.521711], [47.38952, 8.511498], [47.382512, 8.529845], [47.418856, 8.507318], [47.371873, 8.601514], [47.366923, 8.543137], [47.41032, 8.573308], [47.376258, 8.500121], [47.374541, 8.541361], [47.38199, 8.489137], [47.365967, 8.534855], [47.398494, 8.517587], [47.358719, 8.586507], [47.366845, 8.544737], [47.397886, 8.532558], [47.373744, 8.544774], [47.36881, 8.534887], [47.377914, 8.529976], [47.368673, 8.531257], [47.401994, 8.552634], [47.391523, 8.516625], [47.374675, 8.48739], [47.368509, 8.546625], [47.357111, 8.522058], [47.372758, 8.534942], [47.369069, 8.548186], [47.358552, 8.518063], [47.413754, 8.546599], [47.374652, 8.495838], [47.369672, 8.525544], [47.391899, 8.517771], [47.396358, 8.533361], [47.37777, 8.522412], [47.3606, 8.565418], [47.376997, 8.496149], [47.364003, 8.533332], [47.386871, 8.528358], [47.408195, 8.581769], [47.393628, 8.512813], [47.367752, 8.544862], [47.364803, 8.534381], [47.329873, 8.529734], [47.360094, 8.506934], [47.35485, 8.574788], [47.38029, 8.520291], [47.373744, 8.5372], [47.361104, 8.551502], [47.36497, 8.553582], [47.366232, 8.548577], [47.352015, 8.558407], [47.374386, 8.521601], [47.369295, 8.52731], [47.400411, 8.533776], [47.343839, 8.530126], [47.387852, 8.529239], [47.377119, 8.540792], [47.365873, 8.548556], [47.370475, 8.549765], [47.407378, 8.549262], [47.363976, 8.528565], [47.418966, 8.510925], [47.361695, 8.560159], [47.336921, 8.520629], [47.377957, 8.493454], [47.338415, 8.539635], [47.390947, 8.479445], [47.415286, 8.570498], [47.392835, 8.52444], [47.386019, 8.535612], [47.377505, 8.538933], [47.411879, 8.525252], [47.357392, 8.521852], [47.394134, 8.525023], [47.405718, 8.569327], [47.417202, 8.545412], [47.372551, 8.478517], [47.37002, 8.491801], [47.378668, 8.56482], [47.390956, 8.522415], [47.366486, 8.540903], [47.389384, 8.485097], [47.365388, 8.545594], [47.365955, 8.560487], [47.35134, 8.568611], [47.386592, 8.497426], [47.427215, 8.491301], [47.406599, 8.567504], [47.372256, 8.535739], [47.412279, 8.515203], [47.431391, 8.516398], [47.336378, 8.525805], [47.381633, 8.541932], [47.359984, 8.594993], [47.410667, 8.547728], [47.392094, 8.531538], [47.355828, 8.591435], [47.391089, 8.522669], [47.413146, 8.546229], [47.364717, 8.554623], [47.377515, 8.53888], [47.383371, 8.548219], [47.380265, 8.54291], [47.387192, 8.519093], [47.412914, 8.530892], [47.366842, 8.523222], [47.37112, 8.523654], [47.421191, 8.501785], [47.361548, 8.561387], [47.404268, 8.481428], [47.373025, 8.533292], [47.367153, 8.517813], [47.359838, 8.522828], [47.381728, 8.513712], [47.387544, 8.498465], [47.358417, 8.577935], [47.387219, 8.519014], [47.383578, 8.57687], [47.381451, 8.503747], [47.415627, 8.513044], [47.376962, 8.562639], [47.371919, 8.53989], [47.352511, 8.531984], [47.371695, 8.556675], [47.365111, 8.534123], [47.395566, 8.513315], [47.408993, 8.539332], [47.41718, 8.54398], [47.368016, 8.494581], [47.379927, 8.490407], [47.413224, 8.532396], [47.3866, 8.503347], [47.37711, 8.539799], [47.337448, 8.519184], [47.382994, 8.513949], [47.366568, 8.540733], [47.369074, 8.491928], [47.365967, 8.536841], [47.352778, 8.562275], [47.385944, 8.543491], [47.377626, 8.510755], [47.364234, 8.548721], [47.372134, 8.5362], [47.375107, 8.518584], [47.378441, 8.510242], [47.389016, 8.48901], [47.37388, 8.544658], [47.369753, 8.525479], [47.409017, 8.550078], [47.423812, 8.516934], [47.377108, 8.540964], [47.391632, 8.523316], [47.401187, 8.534427], [47.363224, 8.506084], [47.37404, 8.536385], [47.365534, 8.532172], [47.379214, 8.525659], [47.417065, 8.541884], [47.375137, 8.540142], [47.427336, 8.539101], [47.398041, 8.534217], [47.413308, 8.545358], [47.372589, 8.534687], [47.375946, 8.525076], [47.367545, 8.564466], [47.391115, 8.52271], [47.378721, 8.526483], [47.409919, 8.541312], [47.354886, 8.574762], [47.40741, 8.566475], [47.388862, 8.54036], [47.401846, 8.537011], [47.376916, 8.540364], [47.39071, 8.490686], [47.419271, 8.506107], [47.356762, 8.55116], [47.334791, 8.530007], [47.371801, 8.601566], [47.410006, 8.544481], [47.351448, 8.601175], [47.391759, 8.512589], [47.358819, 8.59097], [47.379586, 8.525362], [47.375846, 8.577434], [47.377555, 8.499008], [47.385009, 8.532135], [47.393464, 8.541647], [47.399794, 8.543752], [47.407492, 8.530741], [47.384176, 8.507708], [47.361936, 8.526459], [47.39784, 8.532689], [47.388323, 8.520295], [47.35151, 8.601295], [47.404779, 8.595051], [47.405032, 8.505199], [47.424974, 8.548171], [47.389127, 8.530365], [47.353017, 8.558997], [47.407005, 8.550633], [47.345093, 8.529768], [47.375909, 8.540357], [47.405488, 8.480856], [47.37181, 8.542854], [47.364864, 8.545914], [47.374051, 8.544582], [47.384377, 8.531459], [47.361825, 8.51523], [47.375187, 8.525405], [47.426199, 8.554572], [47.386406, 8.516521], [47.373617, 8.536377], [47.410927, 8.54499], [47.335047, 8.527723], [47.38338, 8.51303], [47.41056, 8.572637], [47.367198, 8.545446], [47.407891, 8.547378], [47.366673, 8.542033], [47.41417, 8.551127], [47.382984, 8.543562], [47.382478, 8.540095], [47.378463, 8.540436], [47.356737, 8.53219], [47.39453, 8.487079], [47.386777, 8.502688], [47.429099, 8.54664], [47.385898, 8.498511], [47.367469, 8.546233], [47.364928, 8.545757], [47.375918, 8.510734], [47.41318, 8.545501], [47.356754, 8.551147], [47.372956, 8.48545], [47.3589, 8.553376], [47.414287, 8.551103], [47.367678, 8.495104], [47.377228, 8.515912], [47.324888, 8.518467], [47.381827, 8.533764], [47.35796, 8.572273], [47.403964, 8.548873], [47.409597, 8.565408], [47.337912, 8.530058], [47.382485, 8.531699], [47.368264, 8.520206], [47.363358, 8.513858], [47.405726, 8.581239], [47.369722, 8.556992], [47.371367, 8.536449], [47.408261, 8.541649], [47.369323, 8.528211], [47.37552, 8.548109], [47.371146, 8.517034], [47.378631, 8.542611], [47.404344, 8.533591], [47.373407, 8.545125], [47.353022, 8.512074], [47.39915, 8.521495], [47.360875, 8.550001], [47.360525, 8.561114], [47.372388, 8.523613], [47.365812, 8.539804], [47.370659, 8.546591], [47.387464, 8.483549], [47.366556, 8.541103], [47.419106, 8.546618], [47.357423, 8.553504], [47.399929, 8.504527], [47.37381, 8.537771], [47.367235, 8.544322], [47.409337, 8.540134], [47.383437, 8.539466], [47.369472, 8.541865], [47.37082, 8.542966], [47.375174, 8.522928], [47.375546, 8.496452], [47.382212, 8.488452], [47.378496, 8.523645], [47.360495, 8.552085], [47.339112, 8.519125], [47.380627, 8.582396], [47.352022, 8.525621], [47.378647, 8.546558], [47.365606, 8.555727], [47.369943, 8.529177], [47.378864, 8.518898], [47.389715, 8.478388], [47.412021, 8.524487], [47.385831, 8.496007], [47.37336, 8.533074], [47.335982, 8.518135], [47.375542, 8.526882], [47.409627, 8.549296], [47.368845, 8.519701], [47.368261, 8.538663], [47.398111, 8.532536], [47.385035, 8.516957], [47.373017, 8.531359], [47.377324, 8.562461], [47.369162, 8.528023], [47.396299, 8.508958], [47.373814, 8.502773], [47.364111, 8.5475], [47.417136, 8.541912], [47.37718, 8.540052], [47.405161, 8.593748], [47.39122, 8.523109], [47.413876, 8.544243], [47.367342, 8.544443], [47.419203, 8.546832], [47.335374, 8.527306], [47.391045, 8.522509], [47.374758, 8.540333], [47.366699, 8.54962], [47.370382, 8.515032], [47.389633, 8.511937], [47.411471, 8.526569], [47.404292, 8.5605], [47.382304, 8.54037], [47.403598, 8.534451], [47.39173, 8.51084], [47.375004, 8.547515], [47.370986, 8.530192], [47.374901, 8.493142], [47.378219, 8.50992], [47.379361, 8.537726], [47.401794, 8.548205], [47.373377, 8.52746], [47.389349, 8.48507], [47.362233, 8.55939], [47.413999, 8.478624], [47.343688, 8.52999], [47.374692, 8.538729], [47.371178, 8.514545], [47.378495, 8.575186], [47.386778, 8.547561], [47.372483, 8.513446], [47.39865, 8.539224], [47.374623, 8.512588], [47.374755, 8.520642], [47.365442, 8.598739], [47.411401, 8.56208], [47.377178, 8.526982], [47.42255, 8.536404], [47.391681, 8.518972], [47.401256, 8.54516], [47.373617, 8.536377], [47.411927, 8.543911], [47.40414, 8.58881], [47.376731, 8.538096], [47.399707, 8.543445], [47.396589, 8.528875], [47.331902, 8.516809], [47.401993, 8.495202], [47.368583, 8.51207], [47.367621, 8.545402], [47.409584, 8.549971], [47.370179, 8.548818], [47.357544, 8.521881], [47.376002, 8.53816], [47.42255, 8.536418], [47.411179, 8.526086], [47.41335, 8.532398], [47.357849, 8.523013], [47.357637, 8.521605], [47.38154, 8.513628], [47.390759, 8.523338], [47.414944, 8.541654], [47.377129, 8.541627], [47.372972, 8.531371], [47.401111, 8.51772], [47.393405, 8.499906], [47.354526, 8.526254], [47.381207, 8.537553]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_6e92f22170e0f74ead8aae631a2cef78 = L.heatLayer(\n", - " [[47.389562, 8.521459], [47.379468, 8.537821], [47.39055, 8.509068], [47.37746, 8.522829], [47.38656, 8.518339], [47.376285, 8.516701], [47.376455, 8.549015], [47.393752, 8.512934], [47.414913, 8.561651], [47.402449, 8.536043], [47.406063, 8.580849], [47.378556, 8.540107], [47.35167, 8.525786], [47.376182, 8.536244], [47.414249, 8.546623], [47.35483, 8.601182], [47.388354, 8.514004], [47.410552, 8.572624], [47.384773, 8.509336], [47.37773, 8.538064], [47.388334, 8.536269], [47.376102, 8.543684], [47.3795, 8.525877], [47.360316, 8.523712], [47.414225, 8.551009], [47.403962, 8.48545], [47.377125, 8.535376], [47.356989, 8.600263], [47.364868, 8.56678], [47.366307, 8.519862], [47.374155, 8.538387], [47.386193, 8.518093], [47.366934, 8.545719], [47.367749, 8.496218], [47.401348, 8.543956], [47.375909, 8.541257], [47.388632, 8.483731], [47.370045, 8.525035], [47.370759, 8.54834], [47.364356, 8.531234], [47.411312, 8.562039], [47.374014, 8.544767], [47.366885, 8.518589], [47.383008, 8.499739], [47.410798, 8.537779], [47.426987, 8.546477], [47.38769, 8.486401], [47.417347, 8.513834], [47.413262, 8.532198], [47.374474, 8.541784], [47.364347, 8.548141], [47.36533, 8.531837], [47.397708, 8.53327], [47.403335, 8.486166], [47.357638, 8.554594], [47.372292, 8.535674], [47.359136, 8.521993], [47.374486, 8.539533], [47.359348, 8.523361], [47.363725, 8.533273], [47.414313, 8.551143], [47.36905, 8.550212], [47.414077, 8.546752], [47.384392, 8.488125], [47.363672, 8.498387], [47.403205, 8.498472], [47.373607, 8.553392], [47.373471, 8.553535], [47.412359, 8.547617], [47.339539, 8.528265], [47.362048, 8.503876], [47.393864, 8.489993], [47.383104, 8.473319], [47.409116, 8.544356], [47.376029, 8.527647], [47.385254, 8.48434], [47.372055, 8.48763], [47.351467, 8.576754], [47.361848, 8.550816], [47.379043, 8.494694], [47.372708, 8.521117], [47.410136, 8.544987], [47.387092, 8.519171], [47.374108, 8.53391], [47.373774, 8.519669], [47.39776, 8.533496], [47.387183, 8.497716], [47.367227, 8.559164], [47.407818, 8.547456], [47.386015, 8.526579], [47.363125, 8.567577], [47.372394, 8.515284], [47.364964, 8.545771], [47.391576, 8.538707], [47.361038, 8.548045], [47.360697, 8.566506], [47.370992, 8.561507], [47.369031, 8.540969], [47.373016, 8.554068], [47.363073, 8.533671], [47.366883, 8.535073], [47.415495, 8.48133], [47.410789, 8.545318], [47.424538, 8.548639], [47.374985, 8.492826], [47.37453, 8.527298], [47.367626, 8.506609], [47.39865, 8.539197], [47.368633, 8.559829], [47.3642, 8.555975], [47.406866, 8.586935], [47.369342, 8.557235], [47.385188, 8.536933], [47.361388, 8.522568], [47.366936, 8.558615], [47.373273, 8.525154], [47.373841, 8.536487], [47.337635, 8.528887], [47.385, 8.532161], [47.383481, 8.573081], [47.353699, 8.556338], [47.368925, 8.492534], [47.364574, 8.558207], [47.341972, 8.530617], [47.377205, 8.540278], [47.370406, 8.537251], [47.370244, 8.513374], [47.374583, 8.518838], [47.386132, 8.548316], [47.375757, 8.535454], [47.384922, 8.529908], [47.376296, 8.526116], [47.378297, 8.530368], [47.389255, 8.496353], [47.371781, 8.488075], [47.394792, 8.525818], [47.395757, 8.54543], [47.386408, 8.51823], [47.378519, 8.540133], [47.357475, 8.585844], [47.386748, 8.489178], [47.38868, 8.51858], [47.394002, 8.523722], [47.357899, 8.520552], [47.398009, 8.531885], [47.364737, 8.554398], [47.400194, 8.546211], [47.377897, 8.545973], [47.377805, 8.507978], [47.36606, 8.540272], [47.418624, 8.547191], [47.411082, 8.545775], [47.39593, 8.492366], [47.381951, 8.509094], [47.373192, 8.503926], [47.362478, 8.53383], [47.372367, 8.517257], [47.359578, 8.57698], [47.406602, 8.551459], [47.36391, 8.531755], [47.373524, 8.534839], [47.360111, 8.550899], [47.419542, 8.548045], [47.376158, 8.540653], [47.410167, 8.542708], [47.41678, 8.536829], [47.414777, 8.560919], [47.391306, 8.537721], [47.391651, 8.513541], [47.409063, 8.545269], [47.366375, 8.499871], [47.399647, 8.468103], [47.367961, 8.532315], [47.380676, 8.525172], [47.344492, 8.53051], [47.398999, 8.505886], [47.396703, 8.523525], [47.375634, 8.487767], [47.377497, 8.538906], [47.383432, 8.549452], [47.389252, 8.516128], [47.343038, 8.53588], [47.39236, 8.516549], [47.41219, 8.54654], [47.412443, 8.546439], [47.375031, 8.539941], [47.408588, 8.580174], [47.41769, 8.546098], [47.378442, 8.510123], [47.412501, 8.523224], [47.399656, 8.543193], [47.374536, 8.539958], [47.33991, 8.529953], [47.376551, 8.541893], [47.363429, 8.554768], [47.405645, 8.549955], [47.367009, 8.544476], [47.370288, 8.513441], [47.386951, 8.51881], [47.356664, 8.52369], [47.370088, 8.511742], [47.37396, 8.540992], [47.377549, 8.543767], [47.338914, 8.538203], [47.379379, 8.544269], [47.376969, 8.543318], [47.396144, 8.527462], [47.359673, 8.516471], [47.388751, 8.472475], [47.369553, 8.52856], [47.393326, 8.524874], [47.377539, 8.54198], [47.369714, 8.509418], [47.391173, 8.489238], [47.393755, 8.545044], [47.373305, 8.535086], [47.417143, 8.557179], [47.394135, 8.54488], [47.381295, 8.517702], [47.374533, 8.549743], [47.370396, 8.515429], [47.374846, 8.515665], [47.368752, 8.524757], [47.34139, 8.53038], [47.368355, 8.541048], [47.396898, 8.509368], [47.369921, 8.552269], [47.386355, 8.535354], [47.373563, 8.525001], [47.397962, 8.507137], [47.378768, 8.542349], [47.385682, 8.548347], [47.357419, 8.521826], [47.380292, 8.512425], [47.409332, 8.545368], [47.376852, 8.543329], [47.365216, 8.545736], [47.411142, 8.526138], [47.383439, 8.549558], [47.366523, 8.545419], [47.362751, 8.548571], [47.381427, 8.503482], [47.370161, 8.548791], [47.391233, 8.487518], [47.368312, 8.523742], [47.375623, 8.526831], [47.368603, 8.49924], [47.367101, 8.544306], [47.390451, 8.491449], [47.388642, 8.52556], [47.407756, 8.565091], [47.359143, 8.586436], [47.377705, 8.525403], [47.38337, 8.530459], [47.376858, 8.491591], [47.326001, 8.513925], [47.414481, 8.51538], [47.374424, 8.527137], [47.358312, 8.583996], [47.3677, 8.523769], [47.384494, 8.547501], [47.408389, 8.541413], [47.406547, 8.584622], [47.355447, 8.532521], [47.389673, 8.524005], [47.377197, 8.540145], [47.397001, 8.480305], [47.37165, 8.512105], [47.360486, 8.596976], [47.371817, 8.525972], [47.393278, 8.526118], [47.377683, 8.538261], [47.357024, 8.553853], [47.348303, 8.56267], [47.399899, 8.545013], [47.386749, 8.523111], [47.417998, 8.559847], [47.361841, 8.560864], [47.350119, 8.560922], [47.359745, 8.599039], [47.387133, 8.485384], [47.376834, 8.548917], [47.397988, 8.534136], [47.393785, 8.529639], [47.391371, 8.53755], [47.367081, 8.536004], [47.32955, 8.529714], [47.39392, 8.499704], [47.38687, 8.490544], [47.355322, 8.507474], [47.412623, 8.529362], [47.377626, 8.519522], [47.399399, 8.542803], [47.371993, 8.489483], [47.370167, 8.551003], [47.382091, 8.551358], [47.364436, 8.536942], [47.369925, 8.529151], [47.378078, 8.483114], [47.41379, 8.509376], [47.407087, 8.580076], [47.36723, 8.501821], [47.369069, 8.537911], [47.38689, 8.5022], [47.322572, 8.501487], [47.412167, 8.546102], [47.397532, 8.531888], [47.395056, 8.484586], [47.344122, 8.528795], [47.385897, 8.538033], [47.37299, 8.531332], [47.36836, 8.524418], [47.339094, 8.519125], [47.377139, 8.547123], [47.409399, 8.538267], [47.386504, 8.529092], [47.370877, 8.534996], [47.366816, 8.545822], [47.399409, 8.50139], [47.368289, 8.524337], [47.37795, 8.530003], [47.378734, 8.54219], [47.36396, 8.530299], [47.364774, 8.566327], [47.370805, 8.544435], [47.378095, 8.483194], [47.406383, 8.573012], [47.363685, 8.547849], [47.369511, 8.526362], [47.375631, 8.559896], [47.333803, 8.528915], [47.400126, 8.494794], [47.360271, 8.534209], [47.409425, 8.549703], [47.41445, 8.517778], [47.351599, 8.525652], [47.414693, 8.561209], [47.412178, 8.550555], [47.378152, 8.527677], [47.379095, 8.518267], [47.397024, 8.530434], [47.373019, 8.54713], [47.375397, 8.527011], [47.418891, 8.507411], [47.327374, 8.529538], [47.383079, 8.529844], [47.405681, 8.585862], [47.426017, 8.547292], [47.357994, 8.519945], [47.367499, 8.552483], [47.398503, 8.534809], [47.423805, 8.496297], [47.409399, 8.53828], [47.376845, 8.513587], [47.358221, 8.571405], [47.397026, 8.530275], [47.337092, 8.519693], [47.397215, 8.491517], [47.393283, 8.492644], [47.371724, 8.515721], [47.409327, 8.546759], [47.407499, 8.547039], [47.376956, 8.512265], [47.376967, 8.543544], [47.366891, 8.536106], [47.414592, 8.559537], [47.371621, 8.547564], [47.326952, 8.529503], [47.414575, 8.551095], [47.373029, 8.547077], [47.378433, 8.510149], [47.383376, 8.484078], [47.356478, 8.535772], [47.373088, 8.550282], [47.375002, 8.534472], [47.398062, 8.474418], [47.375283, 8.544634], [47.415098, 8.562052], [47.40382, 8.486268], [47.371243, 8.523007], [47.376095, 8.488438], [47.373463, 8.546795], [47.430908, 8.550297], [47.378128, 8.528272], [47.415461, 8.562736], [47.36537, 8.530461], [47.376805, 8.535039], [47.385899, 8.517849], [47.411484, 8.506839], [47.370466, 8.549778], [47.364042, 8.515738], [47.381454, 8.503403], [47.367829, 8.53966], [47.386619, 8.529267], [47.415176, 8.547477], [47.368663, 8.546509], [47.407705, 8.584886], [47.423348, 8.549794], [47.364114, 8.566618], [47.422748, 8.550471], [47.413415, 8.48056], [47.35558, 8.535635], [47.389408, 8.527271], [47.41932, 8.50575], [47.404222, 8.562207], [47.427224, 8.491249], [47.375212, 8.547414], [47.374377, 8.54153], [47.407887, 8.582915], [47.390836, 8.545513], [47.37885, 8.528962], [47.401521, 8.587111], [47.403235, 8.516557], [47.411646, 8.509784], [47.414139, 8.536443], [47.406577, 8.482785], [47.353587, 8.576138], [47.378031, 8.528085], [47.408177, 8.555016], [47.364568, 8.521084], [47.407888, 8.478067], [47.394828, 8.523951], [47.393486, 8.473163], [47.358268, 8.584842], [47.379205, 8.525672], [47.379212, 8.544795], [47.363612, 8.552614], [47.412277, 8.542116], [47.372745, 8.534465], [47.385003, 8.508718], [47.38494, 8.50881], [47.326315, 8.514923], [47.375423, 8.564633], [47.377035, 8.520185], [47.382655, 8.514631], [47.326361, 8.518695], [47.378305, 8.540923], [47.361031, 8.577382], [47.383936, 8.538986], [47.371057, 8.530286], [47.389536, 8.489233], [47.388638, 8.543997], [47.36512, 8.53411], [47.387008, 8.539474], [47.414522, 8.550988], [47.375428, 8.485684], [47.37785, 8.507979], [47.401912, 8.500142], [47.405369, 8.504742], [47.377169, 8.526995], [47.414411, 8.518996], [47.382504, 8.529713], [47.382487, 8.551366], [47.377531, 8.543767], [47.369041, 8.537937], [47.363721, 8.54781], [47.373849, 8.536567], [47.398516, 8.494815], [47.384793, 8.524554], [47.374886, 8.544732], [47.385815, 8.520099], [47.425323, 8.494578], [47.366711, 8.544642], [47.344252, 8.534991], [47.414118, 8.550847], [47.414118, 8.550847], [47.424081, 8.538106], [47.362104, 8.559718], [47.370717, 8.51672], [47.378566, 8.575214], [47.395192, 8.510036], [47.3558, 8.572399], [47.375296, 8.48437], [47.428228, 8.545562], [47.338453, 8.529963], [47.398588, 8.532559], [47.399065, 8.521957], [47.365203, 8.547086], [47.373494, 8.529382], [47.370188, 8.548805], [47.378174, 8.509932], [47.384444, 8.531911], [47.394437, 8.525294], [47.389482, 8.546969], [47.389745, 8.478031], [47.36436, 8.555224], [47.410317, 8.542009], [47.405873, 8.481075], [47.386795, 8.522993], [47.387389, 8.487945], [47.39441, 8.519531], [47.372409, 8.521442], [47.371869, 8.526224], [47.386793, 8.534714], [47.371521, 8.528786], [47.391627, 8.517117], [47.370983, 8.53141], [47.339519, 8.518922], [47.338342, 8.532117], [47.388574, 8.491081], [47.386954, 8.473288], [47.382108, 8.528791], [47.365487, 8.552163], [47.376282, 8.555765], [47.378281, 8.512874], [47.400161, 8.590976], [47.364356, 8.531155], [47.380545, 8.517052], [47.389439, 8.511523], [47.369786, 8.508426], [47.409302, 8.57526], [47.398849, 8.533465], [47.41934, 8.50644], [47.374439, 8.525588], [47.388642, 8.525547], [47.369997, 8.510973], [47.39319, 8.479052], [47.365475, 8.564555], [47.430065, 8.545414], [47.373286, 8.531457], [47.370937, 8.531608], [47.370713, 8.535284], [47.383235, 8.515133], [47.385092, 8.501052], [47.381762, 8.540623], [47.370397, 8.507578], [47.401224, 8.534322], [47.381487, 8.503748], [47.3795, 8.559726], [47.378872, 8.542749], [47.414373, 8.546811], [47.387979, 8.485361], [47.421215, 8.500195], [47.409391, 8.53824], [47.383079, 8.484046], [47.408793, 8.555546], [47.39336, 8.493057], [47.39378, 8.498284], [47.370969, 8.564711], [47.392082, 8.51751], [47.357267, 8.521743], [47.390518, 8.479119], [47.367083, 8.523386], [47.406235, 8.480817], [47.365055, 8.562428], [47.414826, 8.551154], [47.397829, 8.47636], [47.364543, 8.53145], [47.366756, 8.547423], [47.429845, 8.542997], [47.381164, 8.53726], [47.382066, 8.550231], [47.387796, 8.471649], [47.384358, 8.548518], [47.359508, 8.522557], [47.368011, 8.535665], [47.361694, 8.574007], [47.379636, 8.546618], [47.36603, 8.504141], [47.393164, 8.488893], [47.365119, 8.534176], [47.377354, 8.529329], [47.373706, 8.518383], [47.354152, 8.576295], [47.408813, 8.545993], [47.373027, 8.562159], [47.363784, 8.535552], [47.371915, 8.473234], [47.354894, 8.574881], [47.370574, 8.529972], [47.358473, 8.551884], [47.390304, 8.54941], [47.371678, 8.515866], [47.368216, 8.495274], [47.375209, 8.515328], [47.389801, 8.521875], [47.418699, 8.507752], [47.355595, 8.560243], [47.388318, 8.523673], [47.378947, 8.544353], [47.362638, 8.548224], [47.388086, 8.485456], [47.394231, 8.47527], [47.385007, 8.541843], [47.349987, 8.56984], [47.359389, 8.577016], [47.393112, 8.524618], [47.431328, 8.516463], [47.37541, 8.530349], [47.364851, 8.5667], [47.405147, 8.564201], [47.399275, 8.53309], [47.338416, 8.530055], [47.408556, 8.546531], [47.368661, 8.543901], [47.36198, 8.568757], [47.386241, 8.498359], [47.377857, 8.559413], [47.369025, 8.532111], [47.402832, 8.580978], [47.409674, 8.563952], [47.391107, 8.511079], [47.374274, 8.542958], [47.377196, 8.540304], [47.386447, 8.496483], [47.330144, 8.529687], [47.40863, 8.543472], [47.378767, 8.515837], [47.414209, 8.518528], [47.414035, 8.545426], [47.37431, 8.490892], [47.414605, 8.571133], [47.357129, 8.522045], [47.419152, 8.506409], [47.365162, 8.553189], [47.378722, 8.510923], [47.378369, 8.528463], [47.387789, 8.488443], [47.377481, 8.535794], [47.392459, 8.532857], [47.375499, 8.541831], [47.376804, 8.537012], [47.380044, 8.536827], [47.380167, 8.535227], [47.379219, 8.54698], [47.358972, 8.51643], [47.373577, 8.534919], [47.35945, 8.535423], [47.374537, 8.539865], [47.357571, 8.554023], [47.349442, 8.527382], [47.369209, 8.527905], [47.396485, 8.504339], [47.397695, 8.51263], [47.374457, 8.538791], [47.374554, 8.541825], [47.377676, 8.525614], [47.375676, 8.516437], [47.378298, 8.543584], [47.368781, 8.524625], [47.352161, 8.558172], [47.373546, 8.534415], [47.35871, 8.527041], [47.368233, 8.56125], [47.389254, 8.527387], [47.337314, 8.524765], [47.356394, 8.523658], [47.367381, 8.534726], [47.360447, 8.531763], [47.373691, 8.537106], [47.383587, 8.50914], [47.373861, 8.524808], [47.368459, 8.524367], [47.405242, 8.555299], [47.359315, 8.569919], [47.369222, 8.565879], [47.391037, 8.52247], [47.383771, 8.547843], [47.378439, 8.563372], [47.379108, 8.548143], [47.381799, 8.51664], [47.371681, 8.535608], [47.379468, 8.537835], [47.419202, 8.546898], [47.382823, 8.575053], [47.410731, 8.55234], [47.402163, 8.584051], [47.375645, 8.525454], [47.381093, 8.535259], [47.366448, 8.544848], [47.428292, 8.545497], [47.399362, 8.542882], [47.381543, 8.506517], [47.394717, 8.478287], [47.409151, 8.508223], [47.380473, 8.538028], [47.381924, 8.529197], [47.366938, 8.544421], [47.411008, 8.545045], [47.379369, 8.528298], [47.384445, 8.531858], [47.370525, 8.511182], [47.381193, 8.491637], [47.427456, 8.546314], [47.370224, 8.557134], [47.429517, 8.54531], [47.378616, 8.527117], [47.375159, 8.52363], [47.37379, 8.536129], [47.377465, 8.51936], [47.359089, 8.516432], [47.388478, 8.486814], [47.373568, 8.525372], [47.34321, 8.535764], [47.373682, 8.533266], [47.380052, 8.512115], [47.364302, 8.5463], [47.360965, 8.534925], [47.405461, 8.503512], [47.409557, 8.537753], [47.41978, 8.504659], [47.385866, 8.508802], [47.395786, 8.545232], [47.376051, 8.49135], [47.38543, 8.530448], [47.398889, 8.509991], [47.372558, 8.478702], [47.393937, 8.5249], [47.348976, 8.563796], [47.395095, 8.5223], [47.370899, 8.559969], [47.405632, 8.588008], [47.363923, 8.534138], [47.370872, 8.559915], [47.430255, 8.54058], [47.410558, 8.527054], [47.395697, 8.522352], [47.421565, 8.549996], [47.376436, 8.538858], [47.35692, 8.522239], [47.40204, 8.498011], [47.353571, 8.511966], [47.356978, 8.552157], [47.380598, 8.500724], [47.410602, 8.550814], [47.355183, 8.530954], [47.358523, 8.521107], [47.390162, 8.510213], [47.353647, 8.554311], [47.369616, 8.528601], [47.378396, 8.539825], [47.410928, 8.564509], [47.368924, 8.528521], [47.376891, 8.544879], [47.359369, 8.507582], [47.379038, 8.542355], [47.368877, 8.513386], [47.379098, 8.500416], [47.369945, 8.48028], [47.368919, 8.523291], [47.428994, 8.543549], [47.377349, 8.498911], [47.34105, 8.530161], [47.414863, 8.51499], [47.380927, 8.518556], [47.375581, 8.520831], [47.398801, 8.542301], [47.416537, 8.522551], [47.415899, 8.546246], [47.399222, 8.511879], [47.413788, 8.536449], [47.35342, 8.51183], [47.365533, 8.598701], [47.396042, 8.544853], [47.352909, 8.573661], [47.358333, 8.588219], [47.389624, 8.550972], [47.371825, 8.473272], [47.420742, 8.508522], [47.39141, 8.523007], [47.390053, 8.491693], [47.3728, 8.550276], [47.397861, 8.533286], [47.391367, 8.536106], [47.414008, 8.525534], [47.403513, 8.57674], [47.374912, 8.553353], [47.377715, 8.498203], [47.398741, 8.50653], [47.389108, 8.527649], [47.401995, 8.499892], [47.360321, 8.548692], [47.386393, 8.497528], [47.336772, 8.525959], [47.387922, 8.486644], [47.383061, 8.530797], [47.379159, 8.518149], [47.422717, 8.495255], [47.360505, 8.525635], [47.383458, 8.531586], [47.367939, 8.549765], [47.360635, 8.570106], [47.376034, 8.535685], [47.364655, 8.568324], [47.340991, 8.52406], [47.379233, 8.527474], [47.430745, 8.550413], [47.370953, 8.560844], [47.400798, 8.548794], [47.354607, 8.531008], [47.375543, 8.526736], [47.364001, 8.551404], [47.383993, 8.57774], [47.352356, 8.509109], [47.367494, 8.541732], [47.406453, 8.49537], [47.382204, 8.553585], [47.383021, 8.575057], [47.378953, 8.515126], [47.390824, 8.474118], [47.43019, 8.549261], [47.407115, 8.536325], [47.40548, 8.480736], [47.385869, 8.492776], [47.398573, 8.493491], [47.390483, 8.524909], [47.3306, 8.515592], [47.370321, 8.547073], [47.377751, 8.541467], [47.41193, 8.563205], [47.375455, 8.545432], [47.377226, 8.539907], [47.368882, 8.554591], [47.408727, 8.549357], [47.415282, 8.547718], [47.390509, 8.50863], [47.369385, 8.548126], [47.367382, 8.494052], [47.362312, 8.526665], [47.373754, 8.536154], [47.381881, 8.516549], [47.393523, 8.51244], [47.376938, 8.535253], [47.371648, 8.520963], [47.405962, 8.481103], [47.349982, 8.56117], [47.400774, 8.499682], [47.425634, 8.49404], [47.386057, 8.533547], [47.390942, 8.522044], [47.384727, 8.531533], [47.40678, 8.557187], [47.414744, 8.561475], [47.384558, 8.54831], [47.364112, 8.530329], [47.384454, 8.531872], [47.38609, 8.528197], [47.353619, 8.55439], [47.351873, 8.572924], [47.360234, 8.56602], [47.36996, 8.51975], [47.379272, 8.515635], [47.360092, 8.595882], [47.369538, 8.555544], [47.359504, 8.557863], [47.382714, 8.531346], [47.430736, 8.550412], [47.386176, 8.518], [47.427492, 8.546395], [47.369619, 8.553666], [47.376293, 8.538776], [47.377959, 8.530043], [47.354012, 8.601191], [47.423971, 8.502742], [47.405237, 8.593392], [47.349442, 8.534039], [47.423794, 8.516947], [47.374478, 8.546101], [47.395511, 8.535423], [47.370446, 8.512954], [47.352127, 8.530759], [47.369002, 8.502783], [47.388475, 8.473225], [47.410468, 8.542198], [47.384222, 8.525973], [47.371752, 8.522369], [47.398237, 8.494822], [47.376958, 8.569499], [47.375547, 8.529213], [47.371994, 8.53204], [47.406236, 8.547344], [47.379252, 8.537857], [47.370197, 8.548805], [47.3438, 8.535207], [47.369717, 8.518779], [47.401266, 8.54785], [47.390508, 8.484232], [47.393221, 8.52458], [47.410522, 8.572875], [47.389886, 8.538593], [47.366333, 8.5409], [47.373613, 8.553723], [47.366811, 8.544525], [47.385916, 8.498538], [47.405613, 8.570796], [47.361294, 8.554207], [47.377081, 8.54197], [47.403184, 8.497795], [47.368632, 8.547806], [47.380108, 8.490278], [47.366261, 8.520907], [47.407509, 8.492038], [47.427421, 8.546287], [47.37834, 8.528714], [47.3937, 8.510774], [47.375063, 8.528064], [47.370143, 8.548818], [47.324598, 8.515828], [47.373075, 8.524236], [47.393426, 8.524744], [47.383852, 8.573724], [47.387247, 8.518922], [47.399204, 8.538705], [47.360588, 8.501172], [47.3951, 8.546503], [47.385115, 8.495556], [47.356236, 8.572871], [47.404278, 8.484383], [47.351679, 8.488857], [47.369963, 8.536593], [47.377829, 8.511236], [47.393952, 8.521443], [47.358212, 8.526502], [47.377609, 8.538458], [47.392706, 8.539075], [47.340198, 8.529932], [47.395777, 8.511836], [47.376967, 8.542564], [47.422705, 8.540927], [47.371471, 8.556552], [47.349165, 8.562874], [47.391086, 8.536286], [47.405832, 8.551059], [47.375607, 8.514118], [47.38859, 8.531109], [47.384364, 8.489144], [47.363431, 8.533837], [47.370125, 8.548817], [47.382171, 8.536394], [47.394688, 8.525458], [47.368313, 8.560418], [47.367759, 8.53942], [47.377669, 8.518715], [47.420941, 8.507492], [47.369455, 8.520799], [47.365424, 8.545661], [47.364533, 8.521044], [47.372589, 8.517553], [47.364568, 8.56623], [47.409709, 8.537836], [47.369589, 8.525675], [47.375802, 8.488022], [47.383237, 8.506127], [47.37017, 8.548805], [47.396907, 8.51321], [47.409575, 8.545293], [47.359408, 8.585078], [47.366797, 8.553488], [47.377972, 8.529554], [47.353843, 8.526227], [47.368163, 8.496173], [47.378138, 8.529107], [47.377701, 8.538182], [47.39956, 8.547576], [47.378761, 8.575536], [47.331397, 8.513068], [47.368805, 8.528704], [47.387686, 8.490812], [47.36006, 8.550646], [47.419197, 8.50637], [47.381022, 8.535258], [47.368513, 8.499185], [47.42515, 8.545802], [47.382697, 8.543543], [47.398641, 8.539211], [47.358433, 8.5551], [47.381772, 8.545246], [47.410664, 8.54521], [47.3694, 8.541811], [47.369483, 8.466567], [47.372683, 8.535258], [47.399484, 8.5405], [47.402875, 8.502108], [47.409623, 8.544062], [47.365459, 8.552308], [47.368646, 8.54643], [47.365111, 8.53411], [47.37126, 8.515367], [47.367903, 8.556265], [47.375181, 8.518373], [47.382976, 8.513882], [47.391003, 8.521316], [47.378687, 8.574859], [47.373353, 8.531962], [47.364466, 8.546144], [47.371093, 8.547275], [47.367566, 8.496532], [47.363897, 8.531251], [47.354037, 8.599616], [47.369726, 8.525532], [47.360024, 8.595457], [47.339689, 8.519044], [47.370461, 8.539993], [47.398148, 8.465755], [47.391637, 8.518905], [47.39603, 8.515656], [47.395994, 8.515655], [47.377301, 8.512828], [47.388167, 8.491378], [47.394447, 8.525268], [47.37806, 8.52786], [47.410575, 8.55728], [47.366473, 8.545034], [47.398647, 8.539595], [47.3854, 8.53646], [47.401324, 8.54181], [47.381785, 8.536359], [47.41115, 8.526231], [47.413843, 8.554247], [47.359142, 8.522218], [47.381291, 8.514259], [47.38673, 8.483244], [47.39119, 8.489292], [47.40972, 8.479375], [47.377441, 8.543805], [47.350119, 8.560961], [47.425792, 8.542608], [47.373232, 8.53519], [47.369475, 8.506142], [47.392183, 8.538256], [47.361807, 8.515282], [47.366231, 8.55709], [47.363086, 8.552099], [47.410378, 8.536617], [47.372893, 8.54714], [47.334471, 8.539038], [47.362792, 8.547168], [47.387858, 8.52471], [47.394017, 8.525021], [47.370398, 8.514278], [47.347005, 8.526379], [47.374014, 8.544753], [47.41323, 8.545899], [47.388266, 8.526347], [47.371879, 8.522279], [47.414015, 8.546671], [47.378503, 8.525764], [47.409118, 8.545111], [47.370236, 8.602419], [47.409008, 8.550038], [47.400619, 8.544074], [47.390959, 8.507686], [47.369688, 8.54187], [47.354781, 8.526842], [47.371863, 8.522119], [47.377072, 8.513326], [47.352988, 8.559208], [47.378512, 8.575213], [47.353373, 8.602117], [47.392, 8.51274], [47.409915, 8.479657], [47.375, 8.545039], [47.403495, 8.583152], [47.38726, 8.533757], [47.374154, 8.544187], [47.376689, 8.511981], [47.375402, 8.528322], [47.36253, 8.56583], [47.373832, 8.53646], [47.375441, 8.518484], [47.390594, 8.539813], [47.336531, 8.537228], [47.366424, 8.552024], [47.374992, 8.545012], [47.370367, 8.548902], [47.401778, 8.500086], [47.419411, 8.506547], [47.403516, 8.534581], [47.338122, 8.530671], [47.40456, 8.484004], [47.363213, 8.51686], [47.355104, 8.558935], [47.382774, 8.53736], [47.405246, 8.570589], [47.404184, 8.560524], [47.398163, 8.53459], [47.368549, 8.523482], [47.415619, 8.569564], [47.378055, 8.529383], [47.370293, 8.535937], [47.39903, 8.533283], [47.369504, 8.510751], [47.393629, 8.511713], [47.389908, 8.51234], [47.389021, 8.496309], [47.411669, 8.48462], [47.386187, 8.498372], [47.374502, 8.538884], [47.391926, 8.511069], [47.372247, 8.535673], [47.367384, 8.491815], [47.370396, 8.537409], [47.378652, 8.527144], [47.384434, 8.503211], [47.400296, 8.518286], [47.405668, 8.591639], [47.387863, 8.49806], [47.373422, 8.550157], [47.383385, 8.531677], [47.398692, 8.539503], [47.369446, 8.541759], [47.419178, 8.547613], [47.374862, 8.51879], [47.391564, 8.54276], [47.383281, 8.530377], [47.38219, 8.547559], [47.379375, 8.521954], [47.405964, 8.558746], [47.363241, 8.554684], [47.352878, 8.531237], [47.345467, 8.529193], [47.402154, 8.508082], [47.375943, 8.577595], [47.355358, 8.559602], [47.382492, 8.537632], [47.354432, 8.556763], [47.400862, 8.499922], [47.366812, 8.55836], [47.38949, 8.490278], [47.360466, 8.594421], [47.389651, 8.511964], [47.411214, 8.526206], [47.385161, 8.537012], [47.40852, 8.54657], [47.398229, 8.527624], [47.384248, 8.496002], [47.364586, 8.53161], [47.400133, 8.543163], [47.369606, 8.528654], [47.404697, 8.483795], [47.359251, 8.569957], [47.357745, 8.514883], [47.385292, 8.543941], [47.388228, 8.519869], [47.39117, 8.522618], [47.406885, 8.586829], [47.382664, 8.514605], [47.367866, 8.55359], [47.380548, 8.489373], [47.363092, 8.517294], [47.37496, 8.551129], [47.361746, 8.560385], [47.38676, 8.547521], [47.390827, 8.52179], [47.391234, 8.487412], [47.380765, 8.512805], [47.405165, 8.564188], [47.369424, 8.537455], [47.406647, 8.503654], [47.383495, 8.498702], [47.38418, 8.511126], [47.411904, 8.506198], [47.405637, 8.585689], [47.376582, 8.536676], [47.410733, 8.555838], [47.381584, 8.529058], [47.367401, 8.490001], [47.373016, 8.554055], [47.373316, 8.55373], [47.37302, 8.532908], [47.403583, 8.494504], [47.409565, 8.546393], [47.399749, 8.467853], [47.349602, 8.561387], [47.383102, 8.530228], [47.422864, 8.550632], [47.375835, 8.53768], [47.358085, 8.557621], [47.378288, 8.541743], [47.409683, 8.575904], [47.371907, 8.536474], [47.367367, 8.528555], [47.398659, 8.532627], [47.377985, 8.530084], [47.366557, 8.540931], [47.354788, 8.574707], [47.386996, 8.481606], [47.402699, 8.537228], [47.357259, 8.552878], [47.380681, 8.534178], [47.398551, 8.472043], [47.37813, 8.526193], [47.37056, 8.549356], [47.398618, 8.52934], [47.375639, 8.521296], [47.402034, 8.497667], [47.373558, 8.513971], [47.390738, 8.488581], [47.38073, 8.534695], [47.369079, 8.528259], [47.37429, 8.524195], [47.346995, 8.52839], [47.372846, 8.573357], [47.39822, 8.532472], [47.378135, 8.540826], [47.413141, 8.513445], [47.360504, 8.527594], [47.374291, 8.525003], [47.387805, 8.49847], [47.414636, 8.517092], [47.391146, 8.489172], [47.372471, 8.563829], [47.421871, 8.537795], [47.422724, 8.540822], [47.342464, 8.530984], [47.412312, 8.509678], [47.377324, 8.500632], [47.414176, 8.478932], [47.369726, 8.525505], [47.376048, 8.540889], [47.337268, 8.52581], [47.379524, 8.537597], [47.380429, 8.519897], [47.377932, 8.530016], [47.372889, 8.521054], [47.382929, 8.575254], [47.382269, 8.540329], [47.381195, 8.491452], [47.399535, 8.496531], [47.399647, 8.515517], [47.407069, 8.580115], [47.424, 8.539947], [47.373969, 8.544726], [47.397849, 8.532676], [47.339732, 8.535441], [47.407351, 8.549328], [47.414278, 8.551102], [47.362282, 8.559007], [47.364059, 8.546361], [47.372593, 8.542778], [47.397251, 8.53118], [47.38195, 8.545382], [47.381249, 8.48352], [47.411007, 8.529939], [47.364503, 8.555293], [47.379097, 8.542793], [47.393666, 8.539306], [47.395298, 8.52555], [47.391357, 8.513217], [47.349035, 8.526672], [47.408721, 8.546243], [47.380286, 8.541679], [47.378952, 8.559701], [47.381442, 8.497893], [47.405052, 8.557309], [47.375411, 8.512008], [47.369155, 8.532591], [47.406943, 8.550565], [47.391115, 8.520855], [47.37017, 8.548792], [47.396694, 8.529275], [47.374562, 8.495836], [47.369302, 8.561365], [47.41761, 8.559945], [47.364236, 8.53155], [47.369621, 8.533712], [47.36846, 8.498099], [47.362489, 8.568186], [47.416476, 8.545105], [47.383643, 8.483368], [47.418761, 8.550732], [47.358222, 8.554632], [47.366745, 8.545781], [47.430476, 8.540929], [47.372974, 8.529253], [47.422864, 8.510579], [47.396776, 8.5339], [47.381853, 8.529103], [47.397782, 8.474478], [47.378357, 8.541096], [47.391651, 8.526019], [47.378157, 8.52618], [47.376926, 8.541265], [47.375912, 8.538145], [47.360673, 8.578116], [47.386754, 8.518767], [47.363812, 8.52884], [47.373045, 8.531187], [47.414944, 8.550997], [47.36697, 8.536293], [47.410512, 8.527106], [47.388145, 8.536292], [47.363802, 8.550552], [47.381785, 8.489888], [47.358312, 8.571261], [47.376851, 8.520605], [47.411678, 8.562285], [47.360967, 8.535666], [47.338002, 8.538581], [47.414659, 8.520432], [47.393361, 8.529749], [47.385678, 8.498944], [47.389408, 8.487468], [47.374301, 8.544812], [47.377295, 8.535565], [47.373025, 8.531452], [47.405376, 8.549817], [47.392053, 8.51184], [47.393348, 8.537737], [47.367073, 8.544345], [47.334303, 8.535025], [47.388521, 8.491067], [47.427215, 8.543353], [47.369043, 8.528325], [47.367954, 8.555617], [47.370725, 8.532106], [47.40542, 8.550904], [47.360604, 8.525611], [47.407399, 8.562937], [47.363216, 8.516595], [47.367636, 8.529607], [47.409444, 8.557017], [47.365788, 8.56566], [47.409101, 8.573732], [47.422047, 8.55043], [47.387098, 8.485304], [47.370604, 8.517208], [47.373789, 8.542842], [47.360322, 8.567213], [47.366112, 8.566541], [47.36493, 8.534265], [47.377488, 8.494491], [47.378878, 8.526976], [47.380956, 8.499936], [47.386742, 8.547574], [47.373274, 8.520255], [47.371157, 8.530142], [47.371997, 8.522175], [47.390589, 8.470219], [47.408313, 8.58527], [47.418918, 8.507319], [47.374359, 8.488483], [47.370236, 8.514288], [47.375706, 8.526581], [47.392085, 8.500608], [47.34363, 8.535124], [47.378914, 8.530791], [47.372675, 8.529432], [47.351795, 8.50465], [47.378489, 8.544264], [47.409281, 8.481102], [47.397077, 8.530567], [47.367469, 8.537733], [47.365108, 8.553254], [47.372521, 8.523788], [47.410636, 8.556565], [47.335123, 8.514823], [47.356653, 8.558703], [47.349433, 8.533999], [47.382299, 8.501579], [47.42751, 8.538853], [47.37734, 8.498911], [47.420981, 8.502152], [47.3677, 8.523782], [47.391903, 8.518354], [47.385418, 8.536408], [47.430012, 8.537698], [47.385107, 8.526481], [47.390693, 8.508237], [47.377205, 8.540238], [47.390966, 8.521408], [47.373924, 8.524836], [47.407513, 8.584351], [47.353559, 8.576203], [47.398996, 8.533111], [47.364295, 8.533868], [47.370939, 8.548291], [47.399745, 8.544162], [47.396581, 8.528769], [47.35884, 8.51611], [47.386797, 8.547469], [47.396998, 8.505316], [47.396229, 8.485192], [47.366936, 8.558641], [47.369925, 8.525403], [47.382551, 8.540905], [47.38971, 8.51231], [47.382063, 8.584572], [47.398285, 8.536951], [47.378232, 8.520064], [47.370289, 8.514302], [47.386482, 8.500563], [47.380368, 8.48349], [47.37054, 8.535466], [47.3716, 8.522339], [47.374722, 8.549694], [47.378222, 8.547701], [47.36601, 8.496501], [47.387594, 8.521313], [47.389671, 8.521329], [47.371324, 8.542937], [47.333739, 8.531838], [47.414112, 8.519229], [47.392142, 8.500358], [47.427414, 8.551668], [47.364591, 8.532947], [47.376762, 8.506937], [47.398811, 8.468034], [47.398153, 8.535703], [47.388252, 8.490982], [47.383773, 8.512402], [47.382342, 8.514399], [47.417663, 8.546137], [47.39338, 8.523855], [47.378838, 8.520699], [47.381519, 8.533056], [47.366902, 8.549968], [47.42081, 8.548999], [47.403727, 8.503265], [47.376695, 8.538982], [47.370325, 8.524948], [47.366466, 8.499793], [47.37718, 8.540052], [47.38322, 8.506021], [47.372533, 8.529257], [47.379804, 8.543152], [47.407145, 8.550172], [47.363943, 8.53488], [47.377973, 8.529461], [47.381192, 8.538162], [47.414197, 8.545455], [47.408014, 8.546745], [47.371611, 8.54763], [47.408737, 8.562289], [47.339492, 8.524704], [47.386087, 8.52462], [47.367528, 8.495842], [47.374593, 8.535867], [47.388035, 8.520303], [47.381773, 8.516613], [47.340809, 8.52616], [47.371597, 8.522564], [47.375752, 8.559488], [47.404321, 8.557559], [47.377189, 8.539999], [47.390494, 8.538989], [47.405055, 8.478952], [47.377068, 8.544208], [47.430702, 8.541822], [47.369531, 8.538504], [47.38585, 8.525026], [47.364804, 8.567811], [47.365102, 8.534149], [47.365093, 8.534149], [47.383019, 8.575176], [47.413472, 8.536562], [47.373141, 8.537267], [47.381315, 8.542217], [47.360155, 8.568613], [47.394555, 8.514646], [47.354376, 8.5552], [47.393715, 8.510125], [47.387399, 8.500647], [47.360051, 8.550633], [47.38528, 8.536776], [47.391347, 8.522992], [47.400902, 8.548319], [47.4049, 8.497074], [47.383691, 8.588183], [47.386522, 8.529106], [47.391062, 8.521689], [47.350711, 8.602019], [47.383151, 8.540189], [47.384485, 8.548454], [47.364818, 8.554413], [47.386507, 8.475968], [47.418512, 8.541993], [47.358813, 8.515129], [47.368826, 8.501337], [47.373571, 8.553391], [47.380173, 8.527917], [47.360091, 8.533252], [47.362267, 8.53139], [47.344252, 8.533125], [47.428675, 8.489037], [47.370253, 8.52488], [47.369524, 8.529778], [47.364624, 8.554885], [47.409031, 8.547627], [47.37642, 8.528211], [47.381242, 8.534799], [47.38179, 8.516693], [47.376822, 8.54452], [47.354592, 8.526891], [47.365614, 8.553926], [47.426572, 8.492707], [47.352875, 8.576241], [47.388761, 8.520529], [47.388654, 8.520448], [47.374753, 8.518934], [47.395104, 8.522261], [47.396997, 8.530486], [47.397838, 8.542307], [47.412614, 8.54643], [47.395207, 8.532437], [47.368667, 8.519446], [47.380874, 8.511655], [47.406692, 8.550427], [47.407917, 8.547498], [47.389691, 8.511488], [47.41107, 8.571137], [47.409206, 8.547233], [47.37921, 8.523262], [47.40851, 8.580809], [47.340406, 8.519257], [47.396129, 8.527104], [47.380616, 8.534336], [47.40688, 8.550524], [47.378022, 8.528085], [47.407592, 8.530611], [47.391311, 8.537297], [47.325794, 8.518697], [47.394778, 8.525447], [47.362897, 8.567837], [47.394368, 8.544938], [47.375847, 8.535469], [47.375652, 8.537107], [47.397451, 8.531966], [47.393414, 8.499933], [47.402854, 8.553951], [47.377918, 8.497717], [47.326352, 8.518748], [47.369883, 8.523138], [47.396697, 8.495997], [47.378597, 8.542385], [47.421725, 8.538018], [47.400262, 8.518047], [47.384125, 8.497668], [47.36903, 8.541075], [47.372337, 8.544216], [47.369984, 8.492819], [47.380466, 8.519765], [47.360272, 8.567728], [47.386159, 8.49751], [47.375652, 8.537107], [47.386248, 8.518081], [47.365128, 8.52091], [47.3758, 8.48732], [47.362314, 8.513982], [47.365794, 8.539856], [47.404175, 8.560524], [47.349821, 8.533954], [47.381808, 8.516693], [47.415291, 8.508518], [47.383463, 8.549029], [47.38454, 8.54831], [47.390695, 8.489308], [47.384107, 8.534341], [47.351289, 8.53368], [47.377179, 8.540118], [47.367611, 8.541774], [47.388545, 8.512882], [47.410504, 8.527093], [47.415926, 8.530092], [47.403645, 8.571549], [47.369819, 8.536629], [47.366897, 8.494903], [47.352263, 8.506619], [47.364665, 8.554343], [47.397683, 8.487459], [47.377733, 8.525324], [47.343904, 8.514643], [47.406544, 8.547204], [47.410613, 8.521238], [47.414951, 8.474759], [47.371406, 8.49768], [47.372364, 8.537556], [47.40017, 8.515409], [47.368663, 8.524676], [47.374831, 8.539275], [47.37084, 8.548302], [47.369712, 8.528908], [47.418592, 8.542114], [47.375596, 8.486958], [47.429974, 8.539885], [47.375502, 8.563932], [47.391366, 8.516105], [47.375693, 8.518437], [47.360358, 8.55048], [47.402405, 8.499343], [47.407368, 8.577101], [47.374612, 8.533894], [47.372629, 8.477843], [47.378564, 8.542067], [47.39017, 8.525724], [47.408982, 8.53957], [47.378042, 8.510591], [47.360293, 8.535679], [47.387258, 8.518764], [47.369771, 8.536853], [47.36518, 8.545775], [47.420296, 8.503331], [47.364543, 8.558657], [47.429929, 8.537922], [47.386188, 8.524397], [47.370868, 8.514949], [47.363145, 8.533672], [47.357782, 8.55175], [47.428731, 8.4888], [47.370924, 8.514765], [47.397203, 8.58723], [47.376034, 8.535711], [47.375625, 8.553037], [47.365874, 8.532378], [47.376175, 8.544507], [47.376513, 8.53923], [47.408961, 8.545532], [47.38853, 8.491014], [47.380797, 8.518937], [47.407418, 8.492209], [47.367198, 8.545459], [47.404462, 8.557827], [47.396494, 8.528489], [47.381418, 8.57154], [47.400228, 8.547325], [47.413112, 8.544174], [47.362561, 8.50476], [47.378632, 8.553735], [47.374906, 8.550188], [47.38397, 8.509532], [47.393147, 8.530447], [47.405046, 8.479005], [47.378066, 8.51381], [47.383931, 8.530987], [47.380405, 8.5282], [47.392009, 8.510806], [47.382689, 8.541543], [47.358514, 8.52108], [47.400368, 8.489976], [47.421823, 8.550346], [47.397859, 8.591775], [47.388765, 8.479946], [47.393785, 8.539137], [47.351809, 8.527258], [47.405557, 8.48613], [47.39915, 8.54248], [47.399674, 8.493062], [47.398062, 8.53484], [47.399537, 8.469399], [47.349765, 8.561338], [47.374243, 8.486428], [47.394521, 8.544875], [47.409305, 8.545367], [47.374292, 8.543859], [47.381438, 8.535942], [47.367878, 8.564394], [47.358379, 8.555152], [47.408124, 8.554922], [47.378293, 8.510649], [47.368469, 8.550729], [47.368122, 8.560612], [47.381726, 8.516824], [47.374301, 8.524857], [47.38052, 8.528348], [47.370953, 8.549735], [47.325564, 8.513453], [47.369146, 8.524024], [47.418912, 8.507067], [47.373354, 8.534742], [47.370509, 8.549064], [47.378351, 8.541771], [47.366512, 8.557785], [47.329901, 8.512416], [47.376172, 8.527769], [47.369262, 8.51166], [47.399006, 8.532091], [47.353443, 8.560449], [47.373952, 8.544607], [47.373964, 8.53012], [47.378902, 8.527282], [47.383708, 8.573708], [47.380784, 8.53561], [47.364436, 8.534175], [47.39132, 8.537298], [47.425715, 8.494055], [47.380994, 8.538104], [47.375733, 8.544604], [47.403834, 8.567857], [47.376061, 8.535725], [47.365176, 8.547112], [47.369164, 8.556119], [47.391316, 8.473373], [47.409389, 8.543103], [47.380215, 8.48346], [47.359022, 8.550069], [47.372542, 8.529257], [47.368561, 8.528805], [47.360785, 8.598532], [47.372744, 8.477077], [47.38837, 8.490865], [47.391114, 8.522855], [47.380839, 8.535519], [47.430955, 8.550139], [47.418803, 8.506177], [47.393687, 8.510323], [47.379361, 8.525384], [47.351087, 8.515979], [47.378416, 8.50999], [47.425615, 8.494159], [47.38963, 8.539024], [47.391387, 8.514807], [47.379342, 8.495428], [47.371616, 8.534879], [47.370125, 8.548844], [47.370286, 8.54886], [47.337583, 8.525816], [47.351574, 8.524553], [47.414317, 8.529039], [47.395331, 8.519179], [47.383113, 8.540439], [47.379993, 8.527052], [47.377469, 8.529517], [47.363032, 8.548391], [47.387408, 8.527628], [47.379988, 8.546493], [47.347331, 8.532805], [47.410712, 8.57003], [47.369217, 8.527997], [47.431521, 8.543668], [47.366847, 8.542659], [47.388081, 8.539191], [47.415958, 8.51427], [47.362139, 8.531613], [47.392674, 8.515734], [47.374636, 8.528466], [47.387448, 8.525284], [47.396357, 8.485949], [47.374259, 8.537926], [47.389758, 8.471514], [47.365576, 8.532517], [47.360058, 8.53574], [47.36728, 8.523496], [47.377995, 8.528124], [47.375814, 8.559516], [47.38288, 8.541335], [47.364472, 8.536956], [47.386539, 8.490418], [47.413012, 8.546146], [47.41937, 8.50807], [47.371457, 8.525037], [47.343857, 8.530153], [47.39689, 8.530405], [47.378722, 8.542507], [47.377548, 8.54198], [47.374474, 8.516968], [47.376192, 8.540839], [47.37225, 8.538242], [47.358873, 8.516401], [47.370771, 8.531948], [47.39606, 8.526864], [47.36494, 8.548286], [47.403562, 8.485932], [47.364402, 8.536796], [47.410433, 8.571866], [47.364001, 8.551417], [47.373916, 8.544646], [47.370151, 8.539496], [47.378468, 8.523671], [47.394052, 8.539394], [47.390249, 8.509565], [47.411995, 8.52446], [47.369409, 8.541811], [47.369461, 8.525924], [47.372564, 8.534501], [47.369461, 8.529697], [47.379958, 8.486991], [47.375305, 8.521408], [47.40267, 8.499839], [47.408427, 8.550609], [47.375865, 8.51256], [47.385152, 8.529409], [47.369966, 8.491773], [47.371234, 8.520107], [47.399134, 8.547872], [47.366856, 8.543599], [47.39066, 8.512766], [47.38928, 8.521838], [47.409608, 8.549322], [47.378777, 8.542323], [47.367839, 8.546082], [47.374821, 8.520286], [47.381254, 8.5288], [47.421041, 8.512226], [47.377382, 8.539579], [47.4145, 8.546694], [47.386162, 8.518582], [47.364455, 8.531197], [47.34446, 8.532971], [47.373881, 8.554801], [47.378723, 8.510883], [47.392677, 8.548717], [47.360513, 8.550272], [47.368822, 8.528863], [47.363973, 8.551535], [47.383285, 8.484222], [47.361379, 8.563992], [47.410851, 8.566866], [47.389789, 8.511623], [47.378225, 8.538974], [47.373506, 8.598345], [47.396108, 8.54455], [47.377549, 8.543767], [47.379648, 8.526423], [47.335627, 8.532922], [47.391784, 8.51859], [47.369997, 8.543386], [47.409831, 8.544835], [47.369322, 8.527271], [47.327274, 8.529668], [47.410222, 8.548222], [47.391711, 8.485408], [47.375081, 8.528091], [47.396165, 8.545094], [47.366539, 8.540957], [47.371277, 8.523114], [47.39082, 8.48849], [47.370068, 8.504195], [47.397188, 8.531245], [47.364641, 8.566126], [47.377719, 8.54197], [47.368752, 8.518998], [47.42038, 8.50104], [47.356941, 8.567022], [47.372324, 8.532311], [47.3542, 8.523653], [47.430737, 8.550386], [47.354171, 8.598785], [47.360172, 8.503388], [47.36902, 8.525041], [47.372881, 8.517055], [47.37165, 8.553907], [47.370134, 8.548804], [47.401946, 8.501401], [47.369014, 8.537977], [47.392793, 8.534626], [47.351823, 8.525736], [47.360875, 8.52923], [47.34475, 8.532699], [47.365564, 8.533801], [47.403102, 8.555188], [47.369014, 8.537977], [47.377265, 8.529221], [47.324767, 8.511162], [47.411261, 8.525902], [47.386233, 8.482413], [47.37896, 8.524978], [47.370179, 8.548805], [47.368396, 8.563902], [47.387117, 8.545939], [47.393907, 8.505943], [47.368934, 8.501418], [47.381423, 8.503932], [47.370336, 8.491661], [47.367656, 8.545482], [47.37945, 8.527372], [47.361066, 8.535694], [47.379693, 8.523497], [47.381525, 8.571662], [47.387999, 8.491004], [47.374467, 8.538725], [47.381171, 8.542214], [47.366052, 8.533533], [47.409405, 8.569379], [47.370666, 8.525048], [47.361942, 8.515246], [47.390744, 8.522013], [47.370596, 8.517142], [47.354027, 8.555895], [47.366656, 8.535293], [47.361807, 8.515296], [47.373463, 8.528892], [47.381192, 8.538162], [47.373436, 8.528905], [47.369238, 8.519934], [47.369411, 8.540739], [47.359503, 8.535437], [47.359722, 8.522733], [47.355665, 8.572436], [47.403641, 8.572861], [47.391283, 8.506672], [47.407622, 8.585122], [47.381549, 8.503908], [47.372035, 8.529564], [47.380784, 8.497072], [47.372518, 8.513605], [47.400447, 8.585723], [47.407674, 8.497633], [47.359847, 8.522881], [47.386193, 8.518146], [47.422712, 8.510497], [47.375245, 8.545772], [47.416966, 8.510248], [47.428237, 8.489691], [47.339008, 8.535916], [47.378473, 8.526995], [47.396428, 8.472015], [47.387967, 8.488592], [47.384427, 8.531871], [47.366207, 8.544644], [47.393964, 8.537273], [47.37291, 8.527384], [47.412872, 8.516222], [47.379672, 8.494706], [47.39835, 8.537681], [47.420068, 8.548546], [47.413751, 8.545976], [47.406907, 8.550524], [47.413238, 8.541341], [47.375165, 8.522941], [47.356503, 8.523608], [47.38757, 8.527644], [47.391619, 8.487618], [47.375425, 8.516259], [47.351912, 8.576247], [47.376101, 8.540917], [47.39296, 8.489525], [47.401749, 8.505146], [47.36377, 8.566928], [47.360967, 8.558198], [47.408114, 8.576229], [47.39017, 8.510226], [47.378015, 8.545803], [47.33295, 8.528725], [47.3348, 8.53002], [47.372045, 8.512245], [47.375464, 8.544572], [47.370143, 8.548818], [47.403301, 8.547693], [47.429459, 8.544792], [47.359233, 8.516382], [47.377433, 8.538984], [47.370086, 8.512047], [47.405206, 8.487183], [47.371282, 8.535997], [47.374123, 8.513214], [47.429846, 8.549466], [47.364595, 8.566191], [47.379447, 8.523889], [47.378456, 8.567213], [47.407599, 8.545941], [47.381174, 8.543803], [47.371205, 8.554295], [47.393314, 8.545088], [47.375009, 8.545039], [47.395482, 8.522295], [47.424832, 8.537605], [47.393709, 8.531995], [47.394667, 8.521921], [47.3972, 8.530888], [47.379246, 8.546941], [47.381915, 8.540574], [47.373858, 8.536567], [47.378581, 8.542147], [47.38494, 8.524213], [47.376852, 8.513772], [47.387267, 8.518764], [47.376902, 8.512211], [47.376919, 8.527744], [47.386979, 8.534996], [47.366156, 8.536792], [47.417118, 8.545728], [47.392786, 8.548548], [47.390106, 8.525762], [47.369005, 8.53799], [47.361482, 8.554264], [47.396199, 8.48943], [47.365282, 8.5388], [47.388806, 8.53865], [47.363526, 8.530542], [47.356256, 8.531651], [47.419228, 8.507895], [47.405702, 8.480992], [47.402506, 8.495265], [47.360751, 8.561953], [47.389873, 8.539029], [47.365539, 8.552349], [47.403875, 8.496988], [47.428701, 8.489077], [47.351205, 8.576815], [47.404831, 8.572555], [47.369502, 8.520575], [47.343664, 8.53535], [47.385174, 8.47622], [47.3698, 8.536655], [47.364214, 8.497207], [47.34438, 8.532876], [47.407436, 8.579381], [47.33967, 8.528651], [47.363691, 8.535841], [47.387529, 8.488385], [47.384821, 8.531998], [47.368143, 8.506169], [47.369651, 8.548516], [47.411966, 8.563179], [47.397251, 8.531167], [47.37354, 8.514937], [47.36486, 8.5667], [47.368003, 8.524093], [47.408914, 8.485931], [47.397087, 8.530488], [47.386538, 8.52357], [47.423717, 8.513632], [47.378037, 8.526549], [47.410468, 8.532776], [47.366179, 8.555911], [47.364467, 8.546912], [47.409433, 8.549756], [47.379014, 8.518252], [47.404161, 8.563822], [47.378966, 8.508902], [47.395748, 8.531255], [47.374825, 8.519915], [47.422926, 8.510726], [47.393188, 8.513625], [47.412578, 8.516945], [47.391659, 8.523237], [47.366882, 8.544579], [47.412028, 8.546563], [47.39776, 8.533536], [47.405111, 8.571527], [47.358803, 8.552195], [47.413283, 8.544138], [47.358604, 8.57083], [47.373373, 8.531724], [47.370045, 8.513463], [47.382431, 8.540293], [47.358328, 8.57146], [47.366327, 8.50122], [47.376719, 8.559959], [47.408279, 8.541649], [47.419771, 8.554239], [47.395723, 8.531136], [47.395829, 8.483594], [47.397972, 8.533871], [47.380985, 8.528622], [47.360898, 8.530607], [47.403657, 8.496241], [47.393874, 8.533469], [47.377593, 8.541981], [47.361853, 8.54744], [47.380525, 8.534466], [47.35697, 8.551072], [47.397787, 8.533483], [47.356848, 8.557198], [47.383332, 8.53157], [47.384106, 8.511376], [47.36439, 8.546487], [47.367401, 8.517276], [47.374352, 8.521442], [47.37648, 8.506376], [47.370823, 8.514948], [47.377134, 8.53919], [47.372263, 8.554741], [47.371255, 8.507237], [47.405792, 8.48102], [47.411361, 8.525851], [47.344034, 8.53144], [47.395687, 8.532089], [47.38558, 8.508597], [47.349477, 8.561279], [47.375781, 8.577631], [47.366639, 8.531414], [47.336745, 8.535499], [47.360361, 8.523739], [47.398301, 8.532407], [47.406728, 8.550455], [47.366976, 8.544144], [47.371618, 8.517493], [47.388697, 8.519667], [47.382013, 8.54823], [47.378337, 8.541374], [47.358334, 8.588193], [47.380149, 8.512263], [47.394928, 8.519012], [47.387013, 8.528494], [47.411105, 8.526257], [47.402562, 8.535529], [47.369014, 8.537977], [47.366595, 8.533187], [47.399175, 8.521761], [47.409944, 8.546242], [47.417182, 8.541886], [47.376906, 8.524301], [47.380635, 8.525741], [47.403062, 8.49831], [47.358111, 8.596078], [47.358937, 8.526861], [47.382884, 8.532329], [47.379169, 8.555892], [47.378482, 8.51938], [47.378687, 8.490316], [47.368097, 8.541758], [47.418401, 8.547027], [47.388192, 8.497484], [47.385208, 8.536774], [47.392676, 8.475161], [47.426666, 8.544323], [47.364459, 8.566308], [47.372745, 8.521052], [47.39812, 8.494847], [47.37743, 8.512566], [47.396013, 8.526995], [47.409568, 8.576618], [47.3918, 8.518816], [47.40557, 8.495551], [47.390784, 8.52261], [47.40327, 8.516677], [47.353843, 8.553521], [47.373032, 8.52691], [47.374959, 8.524751], [47.397473, 8.53243], [47.386641, 8.520274], [47.379323, 8.527476], [47.36721, 8.541316], [47.375776, 8.541069], [47.395313, 8.488923], [47.366248, 8.540316], [47.36709, 8.53979], [47.373778, 8.495013], [47.372702, 8.527565], [47.364122, 8.546349], [47.370565, 8.530991], [47.402436, 8.535553], [47.399989, 8.507787], [47.429953, 8.549587], [47.399587, 8.54755], [47.376392, 8.543465], [47.391601, 8.506308], [47.372881, 8.547458], [47.408614, 8.507907], [47.368532, 8.563732], [47.390814, 8.508716], [47.385065, 8.530983], [47.389153, 8.524749], [47.362216, 8.55461], [47.37595, 8.5594], [47.361572, 8.535453], [47.417784, 8.554144], [47.397932, 8.528598], [47.370912, 8.510183], [47.409312, 8.546467], [47.36672, 8.541782], [47.381671, 8.546409], [47.326265, 8.515478], [47.349959, 8.527842], [47.392823, 8.526678], [47.366924, 8.544011], [47.358591, 8.551873], [47.422583, 8.507883], [47.37851, 8.510508], [47.376546, 8.50986], [47.407329, 8.568262], [47.369492, 8.506183], [47.355112, 8.559081], [47.335032, 8.541537], [47.366847, 8.534119], [47.371214, 8.523126], [47.356011, 8.553553], [47.387811, 8.490934], [47.364274, 8.551979], [47.379733, 8.543084], [47.372382, 8.534722], [47.360445, 8.56376], [47.409712, 8.549814], [47.376922, 8.544456], [47.364854, 8.554361], [47.379959, 8.522046], [47.413491, 8.553405], [47.381328, 8.538072], [47.351395, 8.532014], [47.402413, 8.499436], [47.402444, 8.535619], [47.410325, 8.537398], [47.386189, 8.540516], [47.414066, 8.521268], [47.409115, 8.545429], [47.367798, 8.54007], [47.355912, 8.535668], [47.358782, 8.525176], [47.380958, 8.538157], [47.33465, 8.52966], [47.382051, 8.544298], [47.382733, 8.57231], [47.381495, 8.513574], [47.384227, 8.497339], [47.352993, 8.524754], [47.410705, 8.550326], [47.374249, 8.544652], [47.364606, 8.554951], [47.364633, 8.554859], [47.36852, 8.499437], [47.335534, 8.518894], [47.355281, 8.530162], [47.370134, 8.548791], [47.364872, 8.532701], [47.407835, 8.572645], [47.383247, 8.506074], [47.393508, 8.500491], [47.372504, 8.545543], [47.383568, 8.549296], [47.409039, 8.547694], [47.389322, 8.487983], [47.407351, 8.544584], [47.406549, 8.575347], [47.382607, 8.545382], [47.357956, 8.505687], [47.406603, 8.549405], [47.392828, 8.52334], [47.360221, 8.579258], [47.346409, 8.564179], [47.364029, 8.528725], [47.372247, 8.535752], [47.357325, 8.558108], [47.373097, 8.550296], [47.344386, 8.526498], [47.361346, 8.512586], [47.380574, 8.526495], [47.378976, 8.528965], [47.377846, 8.54188], [47.377925, 8.497903], [47.389954, 8.476803], [47.374535, 8.54005], [47.407819, 8.547416], [47.385845, 8.517821], [47.369794, 8.538218], [47.343115, 8.530574], [47.377531, 8.543767], [47.402799, 8.49168], [47.362897, 8.56781], [47.383847, 8.48275], [47.384736, 8.531467], [47.384928, 8.538768], [47.397326, 8.531857], [47.361297, 8.525519], [47.364863, 8.545927], [47.426514, 8.553572], [47.356497, 8.534674], [47.379001, 8.542407], [47.398483, 8.538863], [47.420702, 8.507063], [47.396016, 8.526691], [47.368082, 8.541413], [47.362532, 8.533832], [47.377904, 8.496273], [47.417351, 8.538298], [47.373848, 8.536673], [47.371245, 8.530369], [47.370833, 8.534942], [47.370389, 8.539064], [47.356708, 8.523771], [47.366185, 8.49706], [47.378854, 8.542788], [47.395227, 8.521694], [47.392781, 8.523472], [47.378851, 8.489101], [47.400719, 8.54866], [47.390719, 8.517973], [47.391178, 8.538911], [47.400465, 8.548814], [47.374552, 8.560734], [47.365073, 8.492788], [47.343054, 8.531354], [47.408639, 8.542531], [47.352903, 8.512297], [47.361117, 8.525515], [47.413509, 8.553432], [47.383985, 8.531028], [47.400054, 8.501734], [47.382207, 8.505643], [47.376469, 8.525815], [47.372142, 8.505666], [47.37558, 8.54182], [47.373159, 8.531507], [47.350366, 8.578001], [47.392819, 8.475243], [47.373443, 8.53481], [47.366839, 8.5537], [47.368981, 8.529092], [47.399833, 8.544455], [47.409126, 8.531967], [47.397956, 8.533738], [47.37396, 8.516177], [47.36607, 8.53356], [47.38146, 8.503734], [47.366128, 8.494464], [47.3862, 8.527947], [47.413389, 8.553774], [47.363995, 8.546452], [47.358299, 8.571631], [47.417698, 8.546217], [47.377054, 8.521973], [47.392107, 8.511841], [47.354434, 8.574991], [47.373056, 8.539556], [47.399528, 8.542488], [47.338152, 8.538862], [47.406355, 8.584936], [47.367898, 8.539926], [47.416838, 8.538275], [47.381863, 8.516588], [47.388103, 8.488569], [47.379086, 8.556036], [47.381755, 8.516573], [47.41096, 8.526347], [47.370648, 8.519248], [47.390704, 8.491309], [47.366215, 8.520998], [47.376911, 8.51229], [47.388503, 8.491066], [47.381156, 8.537247], [47.387509, 8.528358], [47.377769, 8.537747], [47.407065, 8.484477], [47.366931, 8.544143], [47.381993, 8.5094], [47.376508, 8.5407], [47.363006, 8.550138], [47.404731, 8.540198], [47.388802, 8.484794], [47.38866, 8.535057], [47.3761, 8.533475], [47.343701, 8.535231], [47.399635, 8.536873], [47.348683, 8.525791], [47.368201, 8.496001], [47.393783, 8.501821], [47.384268, 8.525855], [47.408393, 8.546594], [47.393016, 8.485393], [47.397136, 8.594753], [47.388976, 8.515831], [47.403515, 8.497007], [47.397001, 8.480305], [47.407737, 8.580765], [47.382098, 8.505786], [47.375525, 8.486891], [47.377157, 8.55924], [47.366865, 8.542659], [47.430764, 8.550386], [47.411618, 8.512751], [47.419608, 8.507664], [47.410247, 8.541835], [47.385257, 8.47593], [47.404983, 8.491922], [47.343329, 8.519369], [47.370244, 8.532533], [47.39885, 8.510295], [47.377485, 8.542058], [47.354704, 8.529355], [47.335426, 8.518878], [47.370805, 8.548262], [47.370299, 8.532429], [47.369849, 8.515273], [47.381083, 8.518201], [47.362759, 8.548677], [47.382689, 8.572176], [47.373614, 8.494255], [47.430271, 8.536935], [47.392811, 8.524188], [47.373257, 8.552405], [47.389801, 8.539995], [47.389744, 8.537398], [47.391302, 8.538198], [47.370808, 8.524296], [47.360543, 8.561128], [47.37321, 8.5039], [47.370972, 8.535475], [47.387067, 8.547462], [47.390058, 8.5098], [47.397478, 8.509803], [47.369494, 8.526202], [47.367174, 8.493161], [47.381588, 8.537203], [47.368735, 8.524744], [47.358278, 8.597379], [47.405439, 8.570249], [47.408088, 8.54464], [47.358643, 8.596844], [47.414887, 8.561584], [47.369877, 8.508388], [47.365116, 8.567195], [47.392344, 8.5077], [47.365686, 8.521809], [47.411142, 8.526178], [47.40896, 8.545625], [47.40896, 8.545625], [47.381847, 8.536453], [47.37141, 8.547944], [47.372354, 8.531094], [47.398506, 8.47905], [47.407248, 8.538395], [47.403991, 8.496076], [47.374513, 8.53956], [47.371765, 8.547527], [47.399609, 8.535773], [47.374443, 8.521285], [47.373693, 8.535915], [47.389173, 8.494524], [47.399934, 8.543251], [47.36336, 8.562802], [47.364612, 8.531677], [47.368639, 8.529137], [47.378659, 8.542519], [47.383271, 8.510233], [47.368157, 8.496822], [47.385898, 8.54553], [47.391107, 8.469527], [47.393335, 8.497692], [47.393185, 8.528342], [47.365276, 8.547035], [47.413339, 8.545822], [47.391406, 8.545181], [47.370535, 8.524635], [47.346448, 8.529173], [47.393274, 8.508288], [47.3972, 8.594675], [47.406701, 8.550441], [47.377077, 8.544221], [47.36941, 8.543572], [47.389136, 8.52753], [47.387139, 8.490655], [47.372911, 8.535885], [47.37538, 8.560699], [47.361818, 8.549253], [47.386188, 8.540529], [47.365391, 8.521591], [47.385891, 8.532047], [47.39853, 8.59118], [47.350026, 8.562151], [47.398848, 8.506638], [47.391908, 8.517811], [47.368759, 8.528809], [47.36489, 8.530888], [47.390929, 8.55088], [47.409927, 8.574823], [47.369574, 8.513877], [47.365955, 8.532353], [47.397791, 8.530251], [47.410446, 8.550161], [47.373326, 8.529088], [47.384425, 8.503197], [47.362444, 8.567271], [47.388642, 8.483678], [47.410868, 8.53517], [47.386453, 8.518244], [47.37728, 8.54837], [47.378468, 8.528465], [47.377227, 8.546409], [47.407706, 8.535688], [47.365433, 8.545582], [47.411688, 8.511971], [47.371561, 8.515916], [47.363646, 8.551899], [47.374403, 8.5787], [47.428163, 8.547721], [47.363262, 8.533661], [47.386861, 8.528411], [47.378733, 8.567364], [47.426533, 8.546945], [47.355269, 8.600477], [47.389728, 8.512323], [47.381638, 8.509829], [47.402502, 8.581687], [47.363758, 8.535419], [47.391516, 8.505723], [47.391389, 8.538491], [47.363105, 8.548208], [47.363675, 8.574751], [47.385031, 8.508639], [47.367729, 8.560352], [47.368612, 8.53103], [47.395775, 8.532197], [47.39194, 8.518183], [47.369159, 8.565824], [47.358609, 8.532004], [47.379213, 8.51137], [47.369478, 8.506778], [47.367609, 8.563382], [47.370024, 8.524373], [47.367469, 8.494345], [47.412118, 8.52474], [47.404341, 8.561004], [47.385379, 8.536778], [47.376459, 8.539203], [47.396826, 8.540948], [47.398031, 8.532389], [47.409651, 8.543903], [47.357633, 8.554117], [47.391921, 8.518315], [47.370287, 8.511654], [47.38532, 8.508526], [47.373549, 8.519757], [47.398645, 8.585062], [47.365445, 8.521632], [47.394151, 8.520347], [47.374139, 8.542929], [47.385248, 8.517213], [47.383021, 8.514877], [47.414609, 8.546604], [47.431206, 8.539831], [47.387985, 8.536063], [47.36901, 8.54122], [47.372727, 8.521064], [47.398077, 8.536099], [47.383414, 8.530499], [47.370859, 8.535022], [47.375558, 8.516474], [47.374362, 8.524183], [47.363779, 8.575163], [47.390703, 8.489454], [47.392022, 8.52392], [47.376756, 8.560741], [47.379295, 8.495639], [47.420857, 8.507795], [47.388127, 8.484887], [47.37868, 8.530839], [47.369318, 8.525802], [47.373158, 8.53454], [47.386976, 8.498665], [47.388095, 8.485429], [47.395388, 8.532295], [47.371485, 8.547667], [47.369933, 8.510071], [47.413754, 8.545672], [47.408834, 8.542813], [47.361502, 8.561453], [47.39706, 8.530501], [47.364324, 8.529791], [47.406432, 8.552277], [47.388956, 8.538984], [47.373444, 8.545033], [47.383576, 8.496691], [47.371284, 8.547041], [47.374735, 8.553972], [47.388596, 8.538937], [47.40526, 8.555286], [47.365744, 8.552605], [47.369907, 8.556453], [47.374584, 8.525459], [47.371252, 8.542935], [47.366584, 8.540998], [47.371626, 8.518526], [47.375352, 8.549668], [47.410721, 8.554341], [47.377196, 8.540238], [47.386797, 8.535151], [47.417038, 8.541844], [47.397797, 8.53241], [47.365343, 8.545646], [47.355988, 8.524736], [47.378164, 8.557486], [47.351675, 8.525283], [47.355921, 8.535681], [47.351474, 8.525597], [47.370379, 8.524896], [47.405816, 8.591218], [47.333066, 8.514411], [47.379045, 8.527377], [47.356397, 8.535757], [47.402966, 8.576543], [47.377524, 8.558559], [47.376987, 8.543332], [47.405964, 8.533479], [47.363661, 8.562359], [47.385051, 8.536241], [47.40712, 8.586715], [47.368568, 8.529004], [47.375402, 8.484518], [47.401561, 8.487323], [47.377512, 8.541979], [47.368842, 8.528652], [47.406218, 8.581581], [47.413366, 8.553363], [47.383701, 8.539101], [47.388296, 8.490996], [47.391409, 8.536385], [47.362988, 8.563126], [47.398605, 8.465936], [47.394719, 8.527896], [47.344571, 8.529784], [47.373582, 8.53439], [47.387477, 8.519391], [47.386407, 8.496932], [47.360454, 8.522444], [47.325616, 8.518574], [47.379354, 8.542176], [47.400447, 8.469178], [47.359694, 8.550294], [47.389615, 8.491433], [47.375635, 8.516979], [47.414344, 8.538501], [47.376438, 8.528185], [47.382197, 8.540301], [47.343296, 8.519977], [47.363514, 8.535586], [47.355711, 8.531269], [47.378924, 8.55978], [47.382705, 8.529412], [47.378761, 8.575536], [47.409234, 8.547101], [47.370188, 8.548818], [47.370161, 8.548805], [47.418268, 8.542068], [47.390647, 8.489665], [47.379989, 8.494461], [47.37771, 8.541957], [47.400224, 8.547696], [47.390763, 8.521974], [47.367621, 8.538755], [47.380118, 8.522367], [47.399263, 8.506541], [47.377549, 8.543781], [47.380451, 8.51946], [47.388486, 8.519159], [47.411692, 8.57009], [47.407094, 8.573941], [47.373575, 8.519784], [47.407028, 8.550156], [47.375312, 8.560327], [47.409845, 8.537799], [47.375695, 8.5354], [47.365099, 8.553214], [47.381378, 8.537477], [47.378786, 8.527213], [47.383467, 8.515349], [47.329891, 8.529735], [47.389731, 8.481554], [47.386971, 8.534903], [47.406912, 8.586883], [47.409719, 8.544355], [47.395597, 8.545228], [47.403861, 8.49655], [47.401096, 8.488043], [47.370125, 8.548791], [47.391034, 8.52084], [47.393803, 8.505477], [47.375881, 8.523327], [47.375688, 8.514133], [47.38048, 8.481042], [47.374429, 8.539836], [47.388356, 8.484428], [47.382964, 8.562435], [47.378253, 8.52168], [47.391538, 8.542693], [47.365964, 8.532326], [47.387699, 8.517713], [47.395543, 8.475442], [47.399188, 8.547926], [47.371324, 8.555953], [47.399407, 8.497707], [47.405824, 8.550038], [47.388801, 8.515298], [47.366328, 8.561951], [47.399689, 8.517797], [47.381242, 8.555406], [47.375535, 8.564211], [47.406205, 8.562673], [47.380663, 8.512088], [47.360504, 8.550285], [47.362463, 8.510543], [47.371656, 8.531649], [47.392931, 8.489803], [47.369135, 8.502984], [47.402978, 8.490809], [47.369374, 8.541758], [47.39997, 8.587581], [47.400439, 8.500881], [47.385271, 8.529186], [47.394921, 8.524602], [47.358428, 8.588671], [47.417364, 8.511966], [47.368905, 8.496704], [47.383384, 8.484198], [47.370097, 8.548936], [47.409712, 8.545137], [47.392378, 8.491183], [47.375887, 8.55389], [47.418061, 8.505645], [47.398962, 8.505978], [47.399812, 8.510341], [47.414884, 8.550704], [47.387421, 8.497244], [47.377078, 8.525139], [47.372472, 8.517511], [47.362751, 8.568032], [47.408363, 8.541266], [47.366741, 8.541491], [47.364187, 8.566553], [47.431248, 8.516368], [47.357206, 8.550891], [47.386466, 8.497423], [47.379919, 8.514708], [47.378201, 8.541411], [47.410052, 8.574905], [47.329909, 8.529748], [47.387805, 8.548272], [47.383993, 8.480475], [47.377069, 8.538461], [47.410675, 8.552564], [47.37748, 8.499337], [47.371388, 8.537165], [47.372606, 8.517646], [47.38148, 8.556828], [47.369032, 8.53795], [47.357528, 8.521669], [47.369402, 8.554747], [47.389612, 8.483803], [47.366364, 8.54049], [47.364647, 8.566431], [47.374969, 8.541741], [47.365808, 8.520262], [47.377314, 8.498765], [47.403739, 8.556301], [47.378454, 8.540356], [47.371668, 8.534138], [47.395262, 8.508236], [47.369889, 8.525336], [47.369104, 8.540825], [47.354862, 8.526857], [47.353219, 8.512144], [47.374546, 8.495584], [47.406907, 8.550538], [47.362176, 8.547526], [47.376002, 8.541921], [47.382712, 8.5007], [47.377371, 8.522748], [47.383415, 8.533228], [47.376621, 8.49397], [47.381856, 8.51631], [47.427361, 8.491039], [47.349171, 8.570551], [47.386814, 8.547496], [47.38869, 8.492196], [47.37443, 8.539783], [47.362685, 8.497163], [47.383154, 8.515052], [47.383984, 8.482461], [47.379652, 8.490018], [47.368603, 8.499253], [47.386175, 8.518119], [47.409123, 8.545549], [47.35361, 8.554337], [47.369313, 8.527298], [47.374352, 8.536604], [47.412888, 8.540287], [47.378803, 8.519612], [47.376802, 8.524868], [47.362054, 8.549046], [47.413834, 8.544865], [47.367922, 8.540284], [47.370749, 8.535285], [47.376229, 8.544508], [47.381237, 8.546599], [47.390467, 8.545612], [47.40548, 8.575192], [47.412891, 8.543732], [47.405126, 8.577384], [47.404501, 8.576867], [47.384173, 8.508993], [47.376381, 8.527548], [47.373663, 8.534365], [47.363642, 8.567071], [47.361246, 8.532865], [47.370448, 8.535676], [47.383943, 8.509518], [47.403047, 8.589303], [47.338285, 8.539116], [47.387521, 8.519497], [47.365425, 8.545568], [47.373411, 8.520019], [47.408447, 8.546674], [47.370268, 8.506887], [47.385835, 8.51798], [47.376938, 8.540881], [47.380061, 8.520723], [47.353599, 8.56482], [47.391943, 8.517892], [47.371716, 8.542322], [47.402433, 8.499278], [47.373456, 8.494782], [47.371222, 8.524185], [47.364926, 8.508766], [47.371086, 8.54987], [47.38573, 8.51766], [47.39245, 8.548858], [47.3772, 8.53988], [47.355675, 8.532235], [47.369858, 8.56425], [47.367038, 8.523372], [47.377255, 8.539696], [47.369163, 8.523137], [47.368368, 8.513892], [47.368964, 8.556367], [47.380957, 8.537322], [47.375754, 8.543386], [47.408983, 8.553509], [47.343331, 8.520044], [47.393102, 8.48876], [47.397059, 8.530594], [47.428008, 8.490111], [47.394726, 8.486195], [47.341108, 8.530705], [47.405031, 8.48763], [47.382646, 8.537503], [47.419208, 8.548223], [47.376083, 8.529555], [47.399587, 8.547563], [47.423125, 8.551473], [47.366859, 8.543268], [47.385612, 8.536889], [47.405694, 8.480966], [47.418434, 8.508197], [47.378699, 8.519239], [47.367812, 8.506996], [47.399247, 8.521789], [47.417521, 8.518277], [47.392646, 8.486446], [47.365745, 8.532693], [47.364258, 8.533006], [47.398915, 8.499406], [47.367807, 8.540017], [47.377856, 8.519884], [47.428773, 8.489105], [47.381218, 8.541036], [47.374728, 8.534016], [47.377202, 8.541509], [47.381442, 8.51352], [47.349604, 8.534003], [47.383522, 8.530568], [47.390962, 8.522759], [47.408923, 8.54577], [47.378758, 8.494383], [47.381474, 8.535889], [47.393104, 8.524525], [47.370024, 8.51186], [47.42052, 8.498458], [47.371822, 8.533996], [47.376995, 8.483503], [47.380288, 8.505962], [47.37687, 8.54329], [47.356695, 8.506853], [47.368097, 8.49551], [47.374754, 8.536016], [47.382424, 8.529684], [47.416897, 8.545286], [47.354777, 8.555579], [47.40886, 8.545755], [47.377312, 8.541339], [47.370042, 8.519633], [47.366976, 8.516618], [47.373888, 8.544738], [47.388795, 8.522689], [47.414092, 8.548886], [47.375735, 8.549093], [47.369141, 8.512981], [47.421724, 8.550304], [47.381076, 8.535232], [47.372279, 8.532297], [47.419304, 8.506452], [47.362359, 8.561206], [47.392168, 8.498411], [47.339983, 8.529875], [47.369257, 8.525628], [47.378116, 8.527663], [47.388144, 8.536371], [47.38012, 8.527889], [47.396996, 8.51239], [47.377752, 8.53764], [47.380357, 8.493634], [47.369869, 8.559444], [47.361657, 8.52644], [47.367163, 8.534893], [47.376404, 8.561806], [47.368515, 8.54787], [47.395423, 8.508305], [47.378636, 8.523038], [47.390644, 8.492009], [47.334891, 8.528924], [47.391032, 8.523026], [47.392961, 8.474544], [47.425504, 8.553816], [47.397002, 8.480292], [47.384016, 8.532459], [47.377162, 8.540078], [47.371, 8.531582], [47.380179, 8.483446], [47.354251, 8.557819], [47.378014, 8.527939], [47.370047, 8.544724], [47.389176, 8.517584], [47.391121, 8.523094], [47.356654, 8.523783], [47.383453, 8.548154], [47.423524, 8.546471], [47.365778, 8.535911], [47.404068, 8.588769], [47.336484, 8.518304], [47.386224, 8.532107], [47.377634, 8.508054], [47.402452, 8.553598], [47.401244, 8.550194], [47.39241, 8.523716], [47.375535, 8.53047], [47.397447, 8.502504], [47.39999, 8.494963], [47.387426, 8.527654], [47.420604, 8.548942], [47.377553, 8.538709], [47.382038, 8.515148], [47.418278, 8.520055], [47.351084, 8.534457], [47.367695, 8.561994], [47.364276, 8.531127], [47.386104, 8.517985], [47.399031, 8.475682], [47.37659, 8.554699], [47.373932, 8.531576], [47.378434, 8.541548], [47.378147, 8.509905], [47.410728, 8.545171], [47.406342, 8.552222], [47.405288, 8.551524], [47.41427, 8.561227], [47.379649, 8.52053], [47.36612, 8.536752], [47.396338, 8.527823], [47.374992, 8.515509], [47.361792, 8.560307], [47.396206, 8.527569], [47.376487, 8.525802], [47.356856, 8.535767], [47.39499, 8.51235], [47.373326, 8.504008], [47.366824, 8.543161], [47.419732, 8.547943], [47.381881, 8.530031], [47.367698, 8.494946], [47.390687, 8.53947], [47.387403, 8.497257], [47.394853, 8.52317], [47.413958, 8.563738], [47.394619, 8.488074], [47.394741, 8.525512], [47.381313, 8.491362], [47.366376, 8.547653], [47.415329, 8.528596], [47.385747, 8.482536], [47.413973, 8.549108], [47.359626, 8.522414], [47.368533, 8.520317], [47.375473, 8.544559], [47.363579, 8.535349], [47.377264, 8.538769], [47.399124, 8.507916], [47.363731, 8.535458], [47.385838, 8.519529], [47.365365, 8.560104], [47.363631, 8.557089], [47.390848, 8.478357], [47.381317, 8.541025], [47.409518, 8.549373], [47.383116, 8.572622], [47.39285, 8.474806], [47.402159, 8.496715], [47.368821, 8.532756], [47.357799, 8.525448], [47.419197, 8.506397], [47.405252, 8.555273], [47.37397, 8.536185], [47.380333, 8.500189], [47.360792, 8.522808], [47.366434, 8.540611], [47.37732, 8.543312], [47.370916, 8.563717], [47.375787, 8.544592], [47.39108, 8.545412], [47.36816, 8.541759], [47.376988, 8.49803], [47.370828, 8.543006], [47.397926, 8.534069], [47.38994, 8.476406], [47.366953, 8.52292], [47.374282, 8.524976], [47.376733, 8.535037], [47.377531, 8.511296], [47.398285, 8.536898], [47.406581, 8.527132], [47.354534, 8.552795], [47.391596, 8.538522], [47.357423, 8.521376], [47.373988, 8.546514], [47.36838, 8.498044], [47.378741, 8.530973], [47.339134, 8.525477], [47.414707, 8.546725], [47.376017, 8.535645], [47.366163, 8.548245], [47.376115, 8.535647], [47.374618, 8.541734], [47.373359, 8.518839], [47.372994, 8.528088], [47.420699, 8.502504], [47.395358, 8.525922], [47.332319, 8.529811], [47.370804, 8.546474], [47.40876, 8.483106], [47.393503, 8.512638], [47.403989, 8.569516], [47.402723, 8.545058], [47.373069, 8.538179], [47.37865, 8.542479], [47.428221, 8.49042], [47.374787, 8.52394], [47.416864, 8.514474], [47.366019, 8.519803], [47.382082, 8.505614], [47.370188, 8.511652], [47.412196, 8.542181], [47.423831, 8.516841], [47.369647, 8.467364], [47.370122, 8.564018], [47.392942, 8.548246], [47.373139, 8.544034], [47.400397, 8.506404], [47.401313, 8.534457], [47.397654, 8.533321], [47.363195, 8.527504], [47.384018, 8.548338], [47.372138, 8.512856], [47.324769, 8.519602], [47.377728, 8.50946], [47.376914, 8.541556], [47.381151, 8.504072], [47.366951, 8.543932], [47.39615, 8.531621], [47.38599, 8.518685], [47.360114, 8.530856], [47.374796, 8.527794], [47.431365, 8.516265], [47.371214, 8.523218], [47.383486, 8.496689], [47.42811, 8.545678], [47.361089, 8.589748], [47.408544, 8.550598], [47.367947, 8.540483], [47.392727, 8.523537], [47.370134, 8.548817], [47.382988, 8.529948], [47.361568, 8.517714], [47.370407, 8.511352], [47.386058, 8.535322], [47.393931, 8.505255], [47.376186, 8.488413], [47.353797, 8.553626], [47.380042, 8.547408], [47.365056, 8.553928], [47.375493, 8.543407], [47.419089, 8.546511], [47.373147, 8.524224], [47.416084, 8.5522], [47.421613, 8.507731], [47.359137, 8.596907], [47.383863, 8.529687], [47.37718, 8.52673], [47.375471, 8.528628], [47.392378, 8.491183], [47.370735, 8.524334], [47.404719, 8.534831], [47.387187, 8.539583], [47.387826, 8.517636], [47.393335, 8.492857], [47.352223, 8.52536], [47.368735, 8.545518], [47.380027, 8.520537], [47.363758, 8.535432], [47.365834, 8.533701], [47.370224, 8.548819], [47.367099, 8.539777], [47.370392, 8.522526], [47.370059, 8.562136], [47.376767, 8.535223], [47.372796, 8.517491], [47.406907, 8.550538], [47.395188, 8.525866], [47.390007, 8.525839], [47.398924, 8.538819], [47.364417, 8.557741], [47.369154, 8.527983], [47.373913, 8.538303], [47.407468, 8.548376], [47.36949, 8.548367], [47.373856, 8.514824], [47.386609, 8.497466], [47.383348, 8.527955], [47.400245, 8.543616], [47.379866, 8.524308], [47.359259, 8.56915], [47.374334, 8.524262], [47.366479, 8.545325], [47.369671, 8.525557], [47.374315, 8.521467], [47.353096, 8.556418], [47.353096, 8.556405], [47.40384, 8.568201], [47.36283, 8.558105], [47.351478, 8.531857], [47.40639, 8.481522], [47.39217, 8.541541], [47.376851, 8.544309], [47.423713, 8.544633], [47.389633, 8.511924], [47.393743, 8.50231], [47.391045, 8.522549], [47.377339, 8.53938], [47.37297, 8.536271], [47.382307, 8.514346], [47.368934, 8.501405], [47.386474, 8.496483], [47.377265, 8.538703], [47.370769, 8.535086], [47.356821, 8.557211], [47.361363, 8.576608], [47.410867, 8.550355], [47.392052, 8.517775], [47.363723, 8.56706], [47.378656, 8.539963], [47.351314, 8.576738], [47.382556, 8.514602], [47.335643, 8.540703], [47.352406, 8.562558], [47.403836, 8.576866], [47.384412, 8.539115], [47.363609, 8.535045], [47.386357, 8.482627], [47.368874, 8.529023], [47.380052, 8.536893], [47.372676, 8.534106], [47.365627, 8.539482], [47.367468, 8.550059], [47.399636, 8.585851], [47.374849, 8.541116], [47.428273, 8.489665], [47.395072, 8.525757], [47.410653, 8.485594], [47.389544, 8.477365], [47.386242, 8.498306], [47.354278, 8.553239], [47.353989, 8.553326], [47.379226, 8.539578], [47.375591, 8.54815], [47.38939, 8.521628], [47.356663, 8.523743], [47.404303, 8.576863], [47.374291, 8.544018], [47.370085, 8.564123], [47.410537, 8.543458], [47.35761, 8.521631], [47.378775, 8.526471], [47.377996, 8.526071], [47.370228, 8.536135], [47.388418, 8.52639], [47.389201, 8.546221], [47.359721, 8.558675], [47.3906, 8.491863], [47.359067, 8.596734], [47.373281, 8.52432], [47.374496, 8.527125], [47.34417, 8.535095], [47.40258, 8.553428], [47.428811, 8.488894], [47.357499, 8.571628], [47.377423, 8.539103], [47.375014, 8.538882], [47.411442, 8.544736], [47.379672, 8.527668], [47.371296, 8.523074], [47.394829, 8.525726], [47.36063, 8.521851], [47.35484, 8.601156], [47.381373, 8.54084], [47.353338, 8.576715], [47.370632, 8.524835], [47.390145, 8.547287], [47.383235, 8.515133], [47.374031, 8.544794], [47.379689, 8.494839], [47.384568, 8.533119], [47.40367, 8.486928], [47.39875, 8.506504], [47.403839, 8.486176], [47.373798, 8.533361], [47.370887, 8.514883], [47.385195, 8.548495], [47.35481, 8.534295], [47.397317, 8.531804], [47.379566, 8.521746], [47.387994, 8.488593], [47.357, 8.535704], [47.347369, 8.52591], [47.379002, 8.542341], [47.375828, 8.492127], [47.392699, 8.523616], [47.382886, 8.500332], [47.389755, 8.486866], [47.369871, 8.530169], [47.357918, 8.519493], [47.369871, 8.543436], [47.348468, 8.534324], [47.381827, 8.516601], [47.391196, 8.522764], [47.374366, 8.521786], [47.373781, 8.536115], [47.42022, 8.547754], [47.378217, 8.530327], [47.37471, 8.550012], [47.359459, 8.523932], [47.365454, 8.521605], [47.374396, 8.541504], [47.365267, 8.564617], [47.396201, 8.482303], [47.418037, 8.482705], [47.3898, 8.486827], [47.369533, 8.520139], [47.417197, 8.554331], [47.382477, 8.514415], [47.407024, 8.550593], [47.41665, 8.535355], [47.406961, 8.550565], [47.36435, 8.55533], [47.367218, 8.534841], [47.379535, 8.524037], [47.388588, 8.525612], [47.367099, 8.539791], [47.37683, 8.526643], [47.366953, 8.52292], [47.352352, 8.570883], [47.344233, 8.535084], [47.400236, 8.543642], [47.430904, 8.544133], [47.402728, 8.535135], [47.390922, 8.527037], [47.359758, 8.549276], [47.383425, 8.54822], [47.391639, 8.513898], [47.421179, 8.548066], [47.421265, 8.549419], [47.390654, 8.544781], [47.363581, 8.53515], [47.361984, 8.5507], [47.374851, 8.504515], [47.345306, 8.535701], [47.414044, 8.545426], [47.384313, 8.50746], [47.380082, 8.520446], [47.416789, 8.536776], [47.373584, 8.519811], [47.368082, 8.541387], [47.366531, 8.540904], [47.395956, 8.532147], [47.388232, 8.514598], [47.373487, 8.598424], [47.388731, 8.516992], [47.372438, 8.515431], [47.37876, 8.539383], [47.360576, 8.525716], [47.40522, 8.559433], [47.355147, 8.527207], [47.378889, 8.527732], [47.379614, 8.537626], [47.388766, 8.539046], [47.399721, 8.547645], [47.377686, 8.531309], [47.381662, 8.534066], [47.364296, 8.566463], [47.408145, 8.555599], [47.417375, 8.523297], [47.381627, 8.534038], [47.383332, 8.533464], [47.355721, 8.559359], [47.389847, 8.51214], [47.393793, 8.533547], [47.377042, 8.529045], [47.391097, 8.522749], [47.367074, 8.541405], [47.40007, 8.536511], [47.359313, 8.516463], [47.408767, 8.57941], [47.378797, 8.523161], [47.390966, 8.488214], [47.401813, 8.500153], [47.37592, 8.542012], [47.36766, 8.495157], [47.408759, 8.580231], [47.399025, 8.542385], [47.382229, 8.501339], [47.389898, 8.491981], [47.396871, 8.493683], [47.375329, 8.552991], [47.379272, 8.542293], [47.377235, 8.510244], [47.3525, 8.508185], [47.399277, 8.521471], [47.378554, 8.514522], [47.38534, 8.539876], [47.418967, 8.53095], [47.366086, 8.540405], [47.409366, 8.478732], [47.407387, 8.549263], [47.381549, 8.492081], [47.427032, 8.491616], [47.371586, 8.526669], [47.399661, 8.516909], [47.354307, 8.523682], [47.33959, 8.524759], [47.35135, 8.525395], [47.348936, 8.534307], [47.368388, 8.538546], [47.381717, 8.531114], [47.343093, 8.535748], [47.378482, 8.540264], [47.370425, 8.514199], [47.387323, 8.488196], [47.353358, 8.554372], [47.375456, 8.554768], [47.38446, 8.503224], [47.366891, 8.544606], [47.397125, 8.505266], [47.36526, 8.501808], [47.366279, 8.533313], [47.356479, 8.53568], [47.39354, 8.492968], [47.380198, 8.520528], [47.39018, 8.51016], [47.382447, 8.51468], [47.372609, 8.538263], [47.379048, 8.54511], [47.414031, 8.546817], [47.373599, 8.544891], [47.389896, 8.49214], [47.373848, 8.519538], [47.383985, 8.531028], [47.3674, 8.5356], [47.387097, 8.52631], [47.37748, 8.512924], [47.385481, 8.4751], [47.374709, 8.541683], [47.393027, 8.531796], [47.401087, 8.488056], [47.368051, 8.538976], [47.379812, 8.523327], [47.391699, 8.518973], [47.38698, 8.534877], [47.412582, 8.544998], [47.399402, 8.497296], [47.383929, 8.508154], [47.387966, 8.536156], [47.358972, 8.516417], [47.357292, 8.555923], [47.369163, 8.527943], [47.37113, 8.523508], [47.417725, 8.546152], [47.358472, 8.521768], [47.363648, 8.574724], [47.36896, 8.538015], [47.411339, 8.544243], [47.385678, 8.49309], [47.343379, 8.530249], [47.369871, 8.51387], [47.397275, 8.493757], [47.405552, 8.495524], [47.379418, 8.55991], [47.393493, 8.532865], [47.404351, 8.560978], [47.366131, 8.533773], [47.411472, 8.525509], [47.377594, 8.559673], [47.371478, 8.524747], [47.380861, 8.552087], [47.407552, 8.584869], [47.416558, 8.555258], [47.35116, 8.57684], [47.380767, 8.500833], [47.348876, 8.562007], [47.421229, 8.507471], [47.3656, 8.539429], [47.384796, 8.531786], [47.384986, 8.537405], [47.363694, 8.528904], [47.369106, 8.541553], [47.377323, 8.521131], [47.380258, 8.541784], [47.398603, 8.472189], [47.384944, 8.548424], [47.360644, 8.576526], [47.367954, 8.546296], [47.373326, 8.525301], [47.37774, 8.52551], [47.337411, 8.519197], [47.377202, 8.552739], [47.36929, 8.517261], [47.377787, 8.537747], [47.356048, 8.535565], [47.376983, 8.54655], [47.378527, 8.575518], [47.388526, 8.531147], [47.410347, 8.548264], [47.356362, 8.535637], [47.366549, 8.540891], [47.385095, 8.508508], [47.369855, 8.510678], [47.410339, 8.548211], [47.364676, 8.554185], [47.386245, 8.531736], [47.386209, 8.531696], [47.377505, 8.543727], [47.373651, 8.536549], [47.363126, 8.54695], [47.366941, 8.543111], [47.394751, 8.525433], [47.376138, 8.53615], [47.394663, 8.473226], [47.386408, 8.518256], [47.395052, 8.51149], [47.374432, 8.521443], [47.39866, 8.539184], [47.36574, 8.521796], [47.36468, 8.554675], [47.351737, 8.559222], [47.377794, 8.537946], [47.375031, 8.547489], [47.367828, 8.551973], [47.407714, 8.550806], [47.373938, 8.503001], [47.360544, 8.524272], [47.376872, 8.548706], [47.387771, 8.529224], [47.404577, 8.59457], [47.397527, 8.532458], [47.377001, 8.546563], [47.380637, 8.542613], [47.367363, 8.506842], [47.404556, 8.569422], [47.354099, 8.575301], [47.426315, 8.547112], [47.404708, 8.556626], [47.386378, 8.480296], [47.356389, 8.535638], [47.378221, 8.510635], [47.413943, 8.557867], [47.376106, 8.53566], [47.393356, 8.524543], [47.418579, 8.547163], [47.380384, 8.542701], [47.394585, 8.534424], [47.424797, 8.537485], [47.37797, 8.527925], [47.363326, 8.53357], [47.374493, 8.538844], [47.378235, 8.541689], [47.377478, 8.529517], [47.360432, 8.526653], [47.388192, 8.532266], [47.382506, 8.48275], [47.405449, 8.539417], [47.371342, 8.555979], [47.357023, 8.572491], [47.41004, 8.53241], [47.365098, 8.55332], [47.414134, 8.518805], [47.405387, 8.504716], [47.380478, 8.537577], [47.394672, 8.473239], [47.39225, 8.524521], [47.368942, 8.528482], [47.377356, 8.51855], [47.364012, 8.536192], [47.421458, 8.505064], [47.377958, 8.525316], [47.367038, 8.523359], [47.387827, 8.49802], [47.390231, 8.512453], [47.375482, 8.564104], [47.382994, 8.530186], [47.36293, 8.517331], [47.37589, 8.538529], [47.372537, 8.538327], [47.364663, 8.547168], [47.374574, 8.536952], [47.392686, 8.475068], [47.414271, 8.518649], [47.369516, 8.513306], [47.390014, 8.484076], [47.384391, 8.531897], [47.414821, 8.519402], [47.377749, 8.548301], [47.420606, 8.50282], [47.37937, 8.53774], [47.371543, 8.515837], [47.38715, 8.534986], [47.375139, 8.545571], [47.375338, 8.49654], [47.32906, 8.513867], [47.376083, 8.527714], [47.386158, 8.535271], [47.403763, 8.534149], [47.368188, 8.531154], [47.366654, 8.553392], [47.41169, 8.525262], [47.37405, 8.517145], [47.37042, 8.508028], [47.373137, 8.53295], [47.364622, 8.566218], [47.409575, 8.537767], [47.368536, 8.546546], [47.382494, 8.529832], [47.368477, 8.5292], [47.357129, 8.555152], [47.399431, 8.495124], [47.378622, 8.542532], [47.396676, 8.529261], [47.369421, 8.53392], [47.408676, 8.540518], [47.362333, 8.547146], [47.386288, 8.517552], [47.417426, 8.553911], [47.404932, 8.552948], [47.430745, 8.550399], [47.402387, 8.49933], [47.369681, 8.525518], [47.407634, 8.538495], [47.37636, 8.525958], [47.367254, 8.541409], [47.403192, 8.497955], [47.398203, 8.535174], [47.376902, 8.541807], [47.407917, 8.547498], [47.374429, 8.540803], [47.400118, 8.545693], [47.374262, 8.533847], [47.363462, 8.569835], [47.37163, 8.547604], [47.37438, 8.527004], [47.374473, 8.495649], [47.430319, 8.549887], [47.383544, 8.543362], [47.370862, 8.537538], [47.387601, 8.540519], [47.409915, 8.47971], [47.373762, 8.537187], [47.369031, 8.540943], [47.364987, 8.563856], [47.373813, 8.536553], [47.422332, 8.550674], [47.390499, 8.512657], [47.403837, 8.536761], [47.379056, 8.542302], [47.387117, 8.545939], [47.375133, 8.51579], [47.374126, 8.503137], [47.352466, 8.507986], [47.38131, 8.51026], [47.417305, 8.509659], [47.399815, 8.544428], [47.380788, 8.538074], [47.413822, 8.531971], [47.367929, 8.546084], [47.361277, 8.535249], [47.408354, 8.550647], [47.377583, 8.550522], [47.378376, 8.545705], [47.365359, 8.530672], [47.383858, 8.529237], [47.42554, 8.55102], [47.361161, 8.550246], [47.420462, 8.547799], [47.365361, 8.5305], [47.411496, 8.526782], [47.364176, 8.546337], [47.368135, 8.544367], [47.388379, 8.536283], [47.369534, 8.466899], [47.362641, 8.527029], [47.399856, 8.504671], [47.359361, 8.569748], [47.373978, 8.517104], [47.373334, 8.534914], [47.358402, 8.583984], [47.389435, 8.521536], [47.394794, 8.490661], [47.377872, 8.529644], [47.37002, 8.520056], [47.358159, 8.553665], [47.391388, 8.54518], [47.367549, 8.496465], [47.403235, 8.582153], [47.421375, 8.502372], [47.36827, 8.560218], [47.362522, 8.547189], [47.367695, 8.496243], [47.365526, 8.556546], [47.351474, 8.534174], [47.377996, 8.517477], [47.377491, 8.483327], [47.375815, 8.538819], [47.377224, 8.540198], [47.327078, 8.519014], [47.392827, 8.488397], [47.39672, 8.517829], [47.401765, 8.500443], [47.425716, 8.509589], [47.3875, 8.486583], [47.408928, 8.539569], [47.379244, 8.526269], [47.381764, 8.545166], [47.378849, 8.553568], [47.410845, 8.545094], [47.378307, 8.530342], [47.369248, 8.525588], [47.371433, 8.510313], [47.369306, 8.538486], [47.400143, 8.489932], [47.364121, 8.547355], [47.346299, 8.534385], [47.39318, 8.479118], [47.376672, 8.525289], [47.388426, 8.528443], [47.377124, 8.540223], [47.391085, 8.523067], [47.373567, 8.519757], [47.406903, 8.580496], [47.377663, 8.522317], [47.37861, 8.480939], [47.377193, 8.543363], [47.367611, 8.523675], [47.372436, 8.521376], [47.3892, 8.516935], [47.36659, 8.510705], [47.394811, 8.54088], [47.374597, 8.517289], [47.374942, 8.536986], [47.400785, 8.48858], [47.370211, 8.522668], [47.349266, 8.564477], [47.353075, 8.556642], [47.397992, 8.474151], [47.371067, 8.53876], [47.35219, 8.557987], [47.365636, 8.539469], [47.375932, 8.544528], [47.36607, 8.533507], [47.380002, 8.522219], [47.414339, 8.551236], [47.373862, 8.538037], [47.38385, 8.511834], [47.355356, 8.529806], [47.384868, 8.53184], [47.393776, 8.539057], [47.375032, 8.541769], [47.366844, 8.545783], [47.405717, 8.577595], [47.340171, 8.529918], [47.374433, 8.51853], [47.379248, 8.520137], [47.359702, 8.586236], [47.374956, 8.545938], [47.383769, 8.556399], [47.36925, 8.558385], [47.362996, 8.52178], [47.384994, 8.508718], [47.397905, 8.532466], [47.413792, 8.524589], [47.415305, 8.51382], [47.391376, 8.536107], [47.383646, 8.539258], [47.35961, 8.593674], [47.36364, 8.52321], [47.364226, 8.536382], [47.42767, 8.54661], [47.366366, 8.52504], [47.338309, 8.527049], [47.374409, 8.54108], [47.377395, 8.523], [47.382206, 8.540315], [47.38245, 8.540121], [47.369488, 8.525911], [47.359368, 8.579994], [47.360969, 8.535481], [47.377061, 8.537388], [47.362678, 8.506668], [47.419771, 8.482924], [47.418532, 8.547454], [47.406427, 8.567607], [47.355717, 8.535412], [47.356963, 8.529137], [47.412382, 8.514807], [47.379029, 8.523351], [47.369467, 8.526228], [47.384975, 8.530968], [47.374843, 8.517929], [47.389472, 8.50604], [47.366487, 8.540731], [47.373493, 8.537063], [47.378647, 8.539937], [47.421294, 8.549274], [47.369043, 8.534018], [47.386824, 8.535152], [47.431451, 8.516717], [47.392474, 8.492496], [47.418035, 8.505565], [47.371385, 8.548737], [47.370187, 8.548871], [47.404512, 8.546129], [47.38532, 8.508526], [47.37218, 8.569662], [47.41013, 8.542734], [47.340068, 8.5303], [47.368113, 8.529656], [47.352656, 8.52713], [47.4027, 8.5352], [47.409698, 8.543772], [47.369312, 8.533084], [47.373055, 8.54713], [47.369691, 8.553681], [47.424748, 8.552965], [47.36509, 8.55324], [47.392042, 8.492607], [47.391922, 8.518183], [47.391819, 8.517651], [47.369105, 8.541646], [47.380445, 8.537246], [47.39782, 8.502087], [47.369288, 8.505874], [47.423786, 8.552004], [47.412677, 8.561352], [47.379967, 8.527912], [47.367825, 8.534417], [47.373305, 8.535099], [47.351323, 8.560153], [47.361196, 8.535313], [47.396989, 8.522723], [47.398209, 8.536406], [47.414785, 8.560933], [47.370115, 8.525248], [47.379134, 8.489663], [47.369057, 8.532562], [47.339878, 8.524712], [47.382265, 8.568618], [47.360336, 8.553723], [47.386365, 8.496653], [47.362334, 8.518616], [47.379442, 8.54431], [47.370296, 8.534693], [47.383166, 8.574915], [47.370538, 8.559074], [47.420394, 8.508237], [47.367536, 8.534477], [47.403467, 8.497324], [47.370653, 8.470522], [47.420421, 8.508211], [47.383297, 8.540999], [47.380845, 8.510992], [47.407764, 8.547548], [47.402137, 8.546172], [47.359383, 8.522448], [47.367645, 8.5344], [47.404396, 8.572042], [47.368086, 8.534369], [47.380073, 8.520446], [47.378951, 8.508623], [47.358249, 8.554686], [47.369337, 8.529536], [47.39194, 8.518196], [47.39484, 8.471533], [47.383711, 8.539088], [47.370707, 8.52444], [47.394193, 8.490411], [47.370982, 8.538202], [47.379203, 8.5763], [47.364595, 8.566205], [47.364171, 8.571822], [47.430772, 8.5504], [47.39073, 8.522516], [47.360348, 8.566379], [47.368225, 8.495261], [47.378262, 8.52748], [47.385886, 8.53259], [47.370272, 8.524841], [47.366747, 8.544589], [47.427404, 8.546194], [47.332353, 8.517572], [47.36953, 8.488335], [47.377243, 8.526731], [47.395686, 8.526432], [47.409149, 8.547484], [47.391805, 8.528764], [47.363683, 8.563802], [47.384621, 8.483653], [47.410556, 8.556431], [47.427623, 8.545867], [47.408834, 8.555905], [47.349146, 8.568499], [47.379521, 8.521706], [47.378731, 8.545328], [47.384826, 8.531495], [47.398498, 8.494801], [47.389241, 8.521122], [47.3937, 8.508919], [47.422467, 8.542248], [47.377692, 8.538209], [47.387874, 8.488988], [47.415415, 8.536589], [47.390899, 8.522732], [47.365841, 8.494339], [47.376955, 8.54006], [47.36787, 8.534405], [47.397866, 8.538426], [47.399132, 8.54244], [47.333607, 8.51429], [47.391274, 8.537336], [47.373401, 8.527871], [47.414974, 8.550693], [47.367973, 8.540616], [47.368814, 8.528691], [47.382683, 8.537451], [47.378526, 8.51268], [47.371344, 8.536038], [47.370295, 8.548847], [47.374439, 8.541637], [47.392378, 8.524272], [47.372952, 8.562528], [47.362452, 8.50485], [47.398846, 8.540394], [47.382329, 8.545337], [47.374447, 8.539889], [47.394849, 8.583231], [47.381921, 8.516166], [47.386177, 8.54833], [47.375099, 8.519444], [47.36859, 8.560569], [47.369357, 8.5566], [47.413207, 8.571487], [47.381095, 8.513116], [47.391454, 8.485032], [47.399277, 8.535686], [47.36125, 8.535301], [47.357528, 8.521669], [47.361981, 8.597671], [47.360923, 8.589215], [47.383781, 8.540228], [47.429085, 8.543472], [47.36716, 8.519945], [47.36063, 8.548434], [47.387827, 8.536603], [47.378419, 8.519326], [47.382493, 8.537579], [47.37609, 8.521225], [47.381638, 8.509843], [47.373626, 8.53639], [47.375499, 8.541831], [47.351589, 8.521985], [47.385033, 8.487793], [47.41572, 8.512768], [47.380283, 8.552273], [47.380544, 8.51239], [47.395623, 8.545401], [47.396468, 8.545471], [47.384484, 8.53815], [47.370792, 8.470088], [47.391172, 8.489318], [47.35374, 8.576035], [47.397193, 8.491927], [47.360926, 8.598839], [47.336648, 8.537137], [47.368249, 8.550301], [47.407686, 8.565818], [47.3525, 8.573189], [47.363895, 8.566958], [47.373122, 8.534539], [47.385331, 8.548379], [47.38577, 8.492867], [47.358103, 8.520847], [47.372935, 8.475849], [47.360545, 8.514622], [47.365223, 8.516424], [47.393572, 8.544444], [47.344832, 8.532661], [47.413664, 8.54567], [47.4237, 8.514532], [47.376254, 8.554944], [47.36086, 8.535624], [47.392378, 8.491183], [47.376946, 8.540021], [47.366307, 8.540767], [47.37405, 8.517159], [47.413731, 8.546188], [47.382148, 8.551994], [47.373001, 8.533001], [47.376766, 8.526748], [47.408982, 8.539636], [47.35425, 8.573637], [47.393128, 8.492827], [47.375089, 8.517603], [47.345004, 8.52966], [47.370143, 8.548844], [47.399806, 8.467457], [47.374432, 8.546126], [47.368355, 8.541048], [47.370911, 8.539949], [47.422486, 8.550638], [47.373241, 8.542751], [47.351147, 8.534458], [47.372338, 8.494111], [47.376684, 8.523038], [47.392301, 8.506481], [47.377759, 8.53776], [47.368109, 8.54144], [47.348441, 8.534363], [47.382329, 8.514849], [47.377364, 8.546213], [47.351396, 8.511777], [47.387008, 8.552666], [47.35361, 8.554337], [47.388568, 8.539069], [47.40449, 8.574349], [47.360616, 8.535712], [47.384617, 8.53463], [47.365104, 8.548064], [47.413229, 8.54419], [47.361281, 8.576672], [47.392217, 8.584725], [47.398286, 8.536858], [47.384808, 8.531455], [47.389859, 8.535744], [47.4189, 8.507372], [47.359644, 8.522414], [47.371371, 8.536065], [47.417574, 8.483159], [47.389284, 8.524209], [47.382146, 8.540896], [47.414366, 8.546638], [47.362281, 8.504886], [47.385224, 8.495531], [47.383089, 8.540161], [47.378582, 8.542067], [47.377034, 8.537427], [47.374565, 8.541653], [47.373312, 8.520083], [47.369831, 8.552267], [47.372773, 8.542794], [47.395071, 8.53254], [47.417916, 8.483113], [47.387155, 8.519159], [47.383886, 8.527224], [47.379224, 8.537975], [47.369047, 8.541102], [47.379153, 8.526466], [47.358147, 8.58795], [47.377222, 8.499054], [47.383238, 8.529145], [47.370673, 8.51946], [47.386341, 8.53489], [47.374458, 8.538711], [47.377661, 8.583975], [47.400194, 8.494305], [47.363114, 8.597748], [47.376313, 8.516542], [47.393404, 8.498992], [47.365669, 8.536001], [47.406845, 8.58541], [47.40007, 8.536524], [47.421293, 8.502423], [47.366654, 8.549645], [47.406853, 8.55059], [47.384573, 8.54296], [47.355156, 8.520443], [47.379455, 8.52969], [47.380377, 8.501222], [47.353572, 8.556441], [47.383473, 8.515667], [47.377205, 8.540291], [47.355051, 8.526861], [47.363472, 8.535294], [47.379072, 8.527391], [47.389656, 8.539118], [47.360898, 8.530674], [47.362131, 8.547552], [47.398985, 8.541867], [47.384993, 8.530995], [47.389989, 8.536277], [47.376256, 8.495446], [47.371329, 8.524386], [47.396718, 8.529527], [47.368963, 8.564761], [47.404336, 8.493804], [47.393901, 8.524978], [47.384405, 8.531288], [47.39798, 8.53407], [47.381379, 8.5174], [47.422677, 8.543842], [47.387579, 8.490757], [47.407539, 8.491734], [47.409338, 8.546613], [47.385061, 8.5484], [47.393041, 8.524537], [47.406717, 8.552521], [47.409814, 8.543814], [47.419583, 8.555945], [47.419016, 8.538187], [47.363386, 8.534868], [47.388448, 8.519423], [47.365798, 8.556274], [47.365558, 8.524864], [47.35047, 8.578401], [47.383367, 8.484052], [47.419101, 8.507972], [47.39544, 8.521049], [47.36118, 8.521704], [47.374957, 8.544879], [47.399206, 8.542216], [47.403408, 8.486075], [47.426288, 8.554641], [47.417774, 8.507561], [47.386486, 8.518536], [47.39499, 8.522033], [47.387199, 8.519292], [47.415458, 8.570356], [47.36268, 8.518146], [47.361909, 8.560309], [47.356497, 8.535693], [47.370907, 8.50204], [47.369969, 8.549092], [47.39854, 8.591087], [47.371701, 8.535384], [47.373959, 8.51337], [47.371393, 8.535695], [47.374894, 8.545778], [47.380168, 8.535134], [47.374638, 8.520574], [47.366139, 8.540473], [47.409257, 8.578068], [47.407592, 8.530571], [47.378407, 8.555624], [47.394254, 8.533238], [47.392063, 8.517576], [47.397844, 8.525589], [47.397989, 8.474509], [47.408853, 8.548405], [47.365549, 8.561525], [47.364239, 8.565853], [47.360426, 8.564845], [47.390787, 8.474157], [47.365062, 8.547719], [47.413392, 8.53933], [47.413364, 8.531869], [47.385238, 8.485108], [47.407001, 8.551971], [47.370262, 8.530667], [47.377567, 8.506464], [47.361359, 8.526566], [47.365864, 8.549443], [47.360659, 8.60209], [47.388874, 8.471895], [47.368113, 8.52391], [47.389945, 8.54372], [47.359154, 8.586198], [47.402706, 8.492062], [47.366958, 8.523357], [47.369057, 8.488882], [47.411895, 8.537868], [47.377202, 8.529194], [47.409697, 8.543891], [47.403313, 8.579637], [47.416314, 8.545102], [47.369417, 8.525843], [47.408465, 8.546675], [47.425029, 8.537728], [47.368919, 8.529077], [47.36954, 8.52619], [47.384862, 8.500689], [47.372743, 8.55062], [47.383005, 8.530928], [47.368321, 8.55115], [47.384939, 8.495181], [47.37946, 8.555527], [47.369082, 8.541275], [47.387769, 8.494549], [47.398525, 8.539142], [47.411173, 8.570662], [47.394229, 8.493405], [47.381725, 8.540715], [47.342902, 8.524575], [47.390742, 8.489111], [47.412452, 8.523608], [47.370152, 8.548831], [47.375346, 8.52664], [47.385456, 8.522886], [47.33536, 8.517329], [47.385348, 8.530526], [47.362145, 8.551709], [47.38535, 8.492541], [47.335535, 8.516856], [47.369588, 8.525847], [47.343696, 8.519509], [47.379163, 8.508071], [47.354895, 8.574789], [47.359404, 8.52315], [47.371944, 8.539242], [47.371908, 8.539175], [47.410499, 8.550268], [47.408173, 8.556421], [47.359482, 8.521484], [47.382003, 8.516035], [47.349532, 8.561187], [47.368668, 8.544034], [47.362199, 8.54893], [47.352041, 8.558527], [47.369316, 8.555275], [47.35533, 8.574494], [47.362872, 8.521632], [47.364368, 8.562784], [47.362807, 8.516031], [47.375863, 8.545163], [47.374201, 8.5212], [47.379811, 8.507038], [47.405312, 8.558348], [47.34292, 8.535983], [47.368538, 8.524581], [47.392267, 8.52174], [47.335333, 8.541093], [47.363927, 8.546927], [47.377137, 8.555796], [47.377395, 8.527807], [47.381888, 8.531104], [47.365547, 8.539308], [47.389272, 8.487545], [47.36847, 8.538455], [47.365274, 8.521575], [47.366772, 8.544802], [47.404805, 8.483744], [47.413886, 8.54696], [47.378464, 8.526995], [47.377596, 8.526527], [47.377724, 8.518676], [47.373158, 8.53732], [47.370178, 8.539457], [47.37762, 8.529679], [47.359189, 8.525913], [47.377089, 8.54201], [47.409924, 8.479683], [47.372095, 8.524163], [47.367379, 8.545318], [47.374633, 8.518283], [47.371998, 8.536383], [47.386469, 8.489119], [47.367798, 8.494802], [47.395617, 8.520364], [47.377031, 8.516782], [47.369652, 8.493713], [47.380365, 8.51326], [47.352067, 8.558593], [47.386824, 8.497616], [47.371393, 8.524242], [47.40188, 8.497717], [47.38985, 8.510856], [47.366909, 8.558561], [47.392085, 8.500648], [47.370143, 8.548831], [47.377091, 8.543718], [47.364321, 8.555515], [47.380592, 8.548201], [47.383678, 8.54065], [47.381693, 8.490084], [47.399209, 8.521934], [47.382224, 8.504835], [47.419155, 8.506052], [47.366473, 8.547894], [47.382166, 8.551955], [47.392643, 8.527655], [47.377006, 8.542273], [47.393363, 8.524795], [47.411082, 8.545788], [47.397509, 8.532431], [47.394883, 8.525754], [47.37108, 8.51633], [47.382085, 8.515931], [47.367678, 8.549799], [47.386185, 8.51808], [47.413918, 8.518814], [47.360229, 8.507917], [47.364001, 8.55143], [47.376068, 8.534057], [47.357019, 8.557188], [47.411631, 8.561595], [47.369195, 8.525508], [47.369467, 8.526202], [47.419215, 8.506384], [47.403784, 8.556302], [47.411656, 8.560893], [47.408129, 8.550749], [47.364531, 8.566283], [47.377723, 8.52543], [47.383737, 8.57351], [47.404175, 8.560577], [47.351073, 8.581961], [47.376131, 8.543486], [47.394805, 8.525408], [47.351581, 8.525665], [47.401816, 8.499822], [47.403826, 8.534124], [47.399938, 8.544709], [47.405242, 8.555286], [47.39205, 8.510224], [47.407082, 8.550144], [47.378092, 8.525411], [47.396564, 8.528702], [47.40884, 8.54594], [47.373055, 8.532975], [47.390177, 8.541102], [47.398311, 8.537018], [47.380869, 8.538075], [47.367583, 8.496678], [47.373382, 8.519277], [47.403162, 8.486348], [47.368395, 8.503287], [47.375974, 8.523037], [47.378804, 8.54239], [47.380561, 8.517317], [47.413636, 8.481041], [47.371842, 8.523377], [47.412025, 8.550592], [47.374469, 8.549768], [47.374808, 8.518856], [47.392745, 8.522544], [47.358235, 8.58545], [47.374886, 8.532483], [47.419044, 8.547478], [47.358424, 8.583667], [47.375791, 8.529112], [47.409383, 8.544666], [47.37793, 8.541524], [47.406299, 8.480712], [47.42803, 8.54565], [47.388916, 8.489114], [47.372247, 8.535752], [47.342762, 8.530845], [47.369502, 8.526348], [47.378272, 8.49926], [47.367057, 8.536639], [47.408033, 8.572596], [47.383796, 8.574001], [47.353579, 8.553847], [47.357251, 8.554559], [47.371643, 8.515772], [47.413703, 8.514887], [47.381939, 8.516166], [47.357876, 8.519135], [47.372423, 8.571548], [47.385403, 8.55491], [47.377104, 8.529112], [47.372756, 8.530387], [47.353581, 8.554601], [47.363785, 8.535446], [47.390318, 8.52521], [47.403954, 8.503044], [47.391944, 8.517852], [47.393758, 8.539123], [47.421466, 8.549079], [47.332674, 8.51787], [47.369494, 8.535788], [47.374695, 8.545933], [47.396794, 8.520494], [47.370606, 8.558572], [47.40345, 8.556467], [47.414103, 8.548713], [47.397907, 8.534148], [47.391609, 8.514136], [47.403324, 8.497268], [47.420359, 8.503279], [47.400185, 8.546184], [47.389054, 8.539052], [47.357685, 8.534659], [47.378991, 8.543519], [47.405998, 8.566352], [47.36773, 8.487492], [47.400411, 8.585709], [47.405711, 8.535501], [47.381562, 8.53609], [47.368437, 8.541857], [47.409992, 8.54501], [47.404364, 8.572518], [47.403968, 8.558731], [47.403244, 8.48627], [47.370896, 8.548105], [47.382983, 8.575189], [47.354434, 8.513055], [47.384158, 8.54315], [47.370924, 8.523451], [47.374061, 8.517927], [47.397368, 8.592241], [47.377358, 8.498885], [47.427582, 8.54637], [47.378535, 8.541325], [47.360743, 8.535635], [47.383979, 8.556125], [47.421211, 8.507458], [47.406595, 8.546543], [47.410379, 8.539281], [47.349658, 8.534044], [47.378726, 8.543037], [47.370244, 8.53256], [47.358729, 8.524129], [47.387836, 8.527054], [47.361574, 8.548441], [47.403243, 8.548076], [47.376217, 8.542032], [47.402532, 8.500234], [47.371328, 8.546273], [47.377785, 8.543547], [47.374807, 8.512129], [47.353233, 8.513534], [47.420759, 8.548693], [47.359552, 8.549193], [47.361525, 8.547883], [47.428002, 8.545663], [47.365594, 8.598822], [47.369187, 8.527335], [47.428677, 8.543821], [47.393727, 8.502045], [47.382512, 8.531752], [47.362894, 8.516417], [47.371159, 8.518477], [47.422512, 8.540393], [47.413365, 8.553389], [47.374776, 8.496026], [47.364331, 8.507919], [47.36843, 8.541738], [47.373956, 8.503041], [47.392534, 8.55041], [47.384326, 8.529167], [47.35369, 8.601885], [47.369134, 8.525361], [47.383013, 8.514824], [47.409653, 8.537106], [47.369288, 8.505861], [47.373962, 8.529339], [47.369071, 8.525346], [47.386253, 8.490214], [47.404665, 8.557288], [47.368975, 8.500863], [47.367772, 8.523837], [47.420949, 8.549519], [47.39189, 8.517771], [47.36922, 8.53998], [47.391398, 8.538465], [47.419177, 8.555154], [47.359644, 8.569396], [47.374466, 8.539757], [47.391952, 8.517892], [47.400254, 8.517914], [47.351892, 8.523209], [47.384906, 8.529696], [47.386631, 8.52038], [47.394165, 8.493483], [47.391952, 8.517879], [47.374092, 8.538465], [47.410577, 8.557134], [47.376583, 8.528029], [47.390289, 8.508109], [47.374673, 8.535961], [47.411725, 8.512899], [47.374144, 8.527198], [47.376965, 8.541875], [47.388918, 8.487896], [47.374443, 8.528925], [47.344474, 8.530536], [47.384315, 8.528438], [47.371974, 8.54732], [47.369596, 8.553295], [47.385208, 8.536774], [47.381224, 8.534732], [47.385886, 8.519266], [47.418526, 8.547056], [47.389809, 8.534339], [47.427177, 8.545487], [47.408924, 8.554065], [47.368934, 8.519783], [47.383115, 8.533619], [47.382194, 8.55189], [47.362399, 8.504743], [47.387257, 8.518843], [47.370865, 8.55875], [47.36787, 8.560633], [47.378405, 8.541799], [47.393115, 8.521426], [47.372521, 8.533322], [47.369733, 8.541791], [47.370644, 8.501214], [47.368654, 8.500512], [47.356761, 8.573492], [47.41965, 8.555509], [47.422145, 8.550498], [47.361885, 8.554444], [47.389944, 8.512354], [47.39023, 8.512492], [47.370566, 8.535572], [47.360328, 8.567491], [47.386208, 8.474187], [47.35884, 8.51611], [47.406172, 8.555001], [47.365487, 8.532436], [47.374167, 8.540917], [47.389183, 8.541611], [47.400419, 8.493249], [47.38021, 8.501736], [47.377602, 8.498757], [47.415024, 8.552973], [47.4275, 8.546435], [47.422572, 8.550984], [47.356137, 8.52041], [47.414194, 8.51825], [47.408772, 8.546469], [47.367842, 8.510506], [47.370944, 8.524113], [47.375644, 8.5778], [47.378778, 8.532788], [47.409374, 8.545673], [47.372055, 8.547361], [47.36729, 8.534856], [47.37869, 8.542017], [47.369132, 8.540746], [47.369199, 8.523217], [47.415404, 8.513875], [47.398858, 8.506519], [47.335932, 8.541489], [47.417416, 8.523775], [47.364375, 8.546222], [47.390551, 8.539639], [47.406008, 8.481051], [47.364642, 8.554899], [47.383545, 8.572989], [47.394769, 8.525447], [47.386203, 8.47575], [47.32958, 8.508215], [47.411342, 8.56257], [47.408334, 8.547109], [47.396728, 8.517922], [47.39862, 8.534799], [47.36968, 8.525584], [47.366339, 8.544899], [47.423075, 8.49843], [47.382601, 8.51459], [47.400427, 8.494376], [47.387955, 8.49095], [47.388927, 8.536295], [47.41116, 8.526205], [47.365728, 8.561608], [47.389671, 8.545992], [47.391371, 8.537511], [47.374384, 8.518966], [47.424619, 8.513438], [47.375229, 8.52857], [47.382745, 8.529929], [47.362813, 8.569093], [47.37821, 8.526261], [47.408791, 8.546443], [47.383061, 8.540226], [47.372711, 8.517926], [47.377864, 8.514243], [47.384217, 8.54825], [47.365075, 8.564957], [47.37752, 8.525942], [47.379892, 8.527289], [47.373133, 8.531441], [47.377513, 8.543793], [47.357371, 8.535446], [47.370236, 8.513308], [47.367495, 8.545413], [47.386637, 8.533996], [47.340488, 8.519193], [47.378531, 8.528439], [47.340748, 8.528872], [47.366718, 8.545741], [47.358186, 8.519657], [47.369142, 8.52544], [47.387638, 8.49803], [47.410966, 8.550331], [47.429205, 8.548763], [47.397126, 8.574086], [47.358946, 8.534486], [47.407723, 8.584038], [47.380515, 8.512548], [47.36946, 8.539376], [47.37174, 8.556676], [47.378633, 8.542373], [47.404129, 8.572606], [47.381473, 8.510157], [47.37399, 8.538781], [47.365592, 8.539389], [47.373031, 8.53651], [47.374325, 8.524301], [47.368557, 8.523535], [47.389632, 8.51203], [47.410746, 8.572111], [47.393837, 8.50569], [47.430763, 8.5504], [47.39501, 8.512138], [47.385813, 8.529847], [47.393635, 8.519688], [47.403953, 8.533968], [47.350208, 8.561069], [47.39694, 8.54874], [47.383062, 8.527817], [47.396564, 8.528689], [47.366602, 8.540946], [47.369959, 8.51023], [47.3883, 8.537023], [47.414673, 8.551137], [47.404909, 8.557174], [47.377026, 8.541995], [47.375905, 8.553837], [47.373177, 8.544723], [47.379593, 8.523667], [47.403941, 8.569753], [47.377882, 8.541841], [47.39221, 8.538243], [47.364621, 8.537409], [47.378326, 8.527336], [47.384843, 8.531575], [47.409315, 8.537629], [47.41547, 8.528877], [47.403853, 8.576893], [47.390704, 8.522489], [47.414236, 8.518542], [47.385053, 8.532202], [47.352619, 8.532013], [47.352142, 8.531964], [47.391068, 8.536272], [47.368959, 8.524761], [47.375812, 8.540143], [47.396126, 8.544563], [47.362965, 8.558081], [47.368171, 8.533021], [47.419579, 8.548006], [47.402286, 8.503528], [47.398164, 8.536432], [47.370821, 8.54], [47.419365, 8.547763], [47.377946, 8.549311], [47.369508, 8.545587], [47.364912, 8.533298], [47.35982, 8.522828], [47.389897, 8.542196], [47.382175, 8.551942], [47.420296, 8.503331], [47.375416, 8.484942], [47.410792, 8.570164], [47.358657, 8.534546], [47.355103, 8.562747], [47.37786, 8.5079], [47.392745, 8.522544], [47.358343, 8.571804], [47.370305, 8.548834], [47.371709, 8.557987], [47.386131, 8.518039], [47.371721, 8.54272], [47.362122, 8.547538], [47.368196, 8.539787], [47.402448, 8.548391], [47.374904, 8.527783], [47.366262, 8.555754], [47.370573, 8.55832], [47.375498, 8.528655], [47.353493, 8.576546], [47.398735, 8.539795], [47.390828, 8.521763], [47.373461, 8.598331], [47.378462, 8.540489], [47.361096, 8.535404], [47.375113, 8.547398], [47.384811, 8.524528], [47.352642, 8.524734], [47.381016, 8.542449], [47.37927, 8.537857], [47.377991, 8.54183], [47.379204, 8.538147], [47.427087, 8.546386], [47.406912, 8.496333], [47.411097, 8.526164], [47.365153, 8.553228], [47.398121, 8.535305], [47.410564, 8.556564], [47.370197, 8.548819], [47.387198, 8.519319], [47.428555, 8.543408], [47.411995, 8.524446], [47.363685, 8.535537], [47.378556, 8.542001], [47.365594, 8.532451], [47.355428, 8.574575], [47.373895, 8.538302], [47.357954, 8.520434], [47.383127, 8.572477], [47.392398, 8.543983], [47.408285, 8.546605], [47.413138, 8.546136], [47.358419, 8.520708], [47.403778, 8.57085], [47.364835, 8.530993], [47.369234, 8.527058], [47.370759, 8.515026], [47.422829, 8.541102], [47.382603, 8.529781], [47.407649, 8.491471], [47.366307, 8.540781], [47.361154, 8.590372], [47.378731, 8.539594], [47.379133, 8.516056], [47.426138, 8.547758], [47.375065, 8.55329], [47.387845, 8.492113], [47.388488, 8.492656], [47.377602, 8.542034], [47.399524, 8.585306], [47.411321, 8.562026], [47.376078, 8.559217], [47.383143, 8.530653], [47.361455, 8.576372], [47.398345, 8.532475], [47.369806, 8.51024], [47.374762, 8.518908], [47.3751, 8.550563], [47.376934, 8.540338], [47.362141, 8.559586], [47.376697, 8.533156], [47.372035, 8.529551], [47.367789, 8.523877], [47.349781, 8.561457], [47.366248, 8.545069], [47.377635, 8.522343], [47.374417, 8.54116], [47.374451, 8.521338], [47.428627, 8.536742], [47.393069, 8.521584], [47.341845, 8.530813], [47.40564, 8.591784], [47.378957, 8.542393], [47.382437, 8.528294], [47.37175, 8.553816], [47.360011, 8.569563], [47.378652, 8.540387], [47.378576, 8.545471], [47.370957, 8.548292], [47.362323, 8.577727], [47.354587, 8.602156], [47.373905, 8.544804], [47.401589, 8.499102], [47.408831, 8.579278], [47.375374, 8.560421], [47.404074, 8.563489], [47.378486, 8.5418], [47.397164, 8.594661], [47.365007, 8.535603], [47.375625, 8.512211], [47.398197, 8.536711], [47.391608, 8.505539], [47.369441, 8.512709], [47.365638, 8.539257], [47.361202, 8.576499], [47.409536, 8.549374], [47.383745, 8.542068], [47.373961, 8.538979], [47.391292, 8.54588], [47.375294, 8.528386], [47.368964, 8.540438], [47.404632, 8.54955], [47.348123, 8.532741], [47.411399, 8.52564], [47.404186, 8.588758], [47.371643, 8.515772], [47.418783, 8.506362], [47.369928, 8.5135], [47.393227, 8.478947], [47.37845, 8.541747], [47.376423, 8.515353], [47.369965, 8.510482], [47.370188, 8.548818], [47.379367, 8.527556], [47.389813, 8.478456], [47.369279, 8.527085], [47.389451, 8.538954], [47.356628, 8.523716], [47.389145, 8.494629], [47.367174, 8.544214], [47.367369, 8.541637], [47.404954, 8.557161], [47.370197, 8.548805], [47.388203, 8.497299], [47.38242, 8.537617], [47.369382, 8.541811], [47.374273, 8.543964], [47.3793, 8.542281], [47.405239, 8.593193], [47.371289, 8.531416], [47.413976, 8.548857], [47.373029, 8.532895], [47.4056, 8.549901], [47.375863, 8.515672], [47.369881, 8.561947], [47.377094, 8.552736], [47.38106, 8.569506], [47.380283, 8.512398], [47.379224, 8.52554], [47.398167, 8.536154], [47.378086, 8.483193], [47.39424, 8.480278], [47.393802, 8.500762], [47.406927, 8.587148], [47.369806, 8.51024], [47.368005, 8.567945], [47.41017, 8.57027], [47.360636, 8.565419], [47.405252, 8.555273], [47.386514, 8.528007], [47.376235, 8.536311], [47.38997, 8.484036], [47.364763, 8.554465], [47.390978, 8.526813], [47.382146, 8.51417], [47.393817, 8.472322], [47.408373, 8.550595], [47.377791, 8.498801], [47.389428, 8.511681], [47.375732, 8.523853], [47.376935, 8.540245], [47.411975, 8.512069], [47.373553, 8.530761], [47.379967, 8.527899], [47.378349, 8.545691], [47.374446, 8.540009], [47.369025, 8.571343], [47.385031, 8.494958], [47.411282, 8.570638], [47.420959, 8.502562], [47.36038, 8.533112], [47.374979, 8.539702], [47.403086, 8.575313], [47.397251, 8.53118], [47.386245, 8.531723], [47.379295, 8.527581], [47.400228, 8.547312], [47.416418, 8.533217], [47.393243, 8.513494], [47.368709, 8.521698], [47.385132, 8.532442], [47.377006, 8.528964], [47.369034, 8.528338], [47.364129, 8.547474], [47.36402, 8.549458], [47.39055, 8.513929], [47.358658, 8.53448], [47.398953, 8.541443], [47.394337, 8.47457], [47.369127, 8.524116], [47.403083, 8.497992], [47.357892, 8.534636], [47.379256, 8.544955], [47.392738, 8.545116], [47.373873, 8.530224], [47.36377, 8.533221], [47.357619, 8.521578], [47.353036, 8.557965], [47.383076, 8.54808], [47.361167, 8.560757], [47.377054, 8.513339], [47.359582, 8.522386], [47.390705, 8.508806], [47.362791, 8.554688], [47.370617, 8.524477], [47.36987, 8.510056], [47.396164, 8.540577], [47.413456, 8.521163], [47.366569, 8.533067], [47.418394, 8.546775], [47.358194, 8.553811], [47.379251, 8.527474], [47.36956, 8.467005], [47.374934, 8.518805], [47.380301, 8.512411], [47.391467, 8.51971], [47.409846, 8.545166], [47.364763, 8.554531], [47.386096, 8.518912], [47.417159, 8.506926], [47.379164, 8.544198], [47.380944, 8.548049], [47.41877, 8.540395], [47.378714, 8.544229], [47.389381, 8.521575], [47.397076, 8.532554], [47.376427, 8.538858], [47.378442, 8.540753], [47.408777, 8.555294], [47.368579, 8.538352], [47.368699, 8.524716], [47.377152, 8.540144], [47.391183, 8.489106], [47.372524, 8.529243], [47.376048, 8.559587], [47.367879, 8.49769], [47.422726, 8.550934], [47.419691, 8.500589], [47.378142, 8.54574], [47.385185, 8.532509], [47.415628, 8.529278], [47.414358, 8.517975], [47.353857, 8.553945], [47.330813, 8.515901], [47.409219, 8.544888], [47.373423, 8.527355], [47.389297, 8.539044], [47.369229, 8.491798], [47.375657, 8.533717], [47.355597, 8.601887], [47.377486, 8.543793], [47.34992, 8.53389], [47.381435, 8.517083], [47.376001, 8.524918], [47.358289, 8.555123], [47.41575, 8.552326], [47.378795, 8.542376], [47.389714, 8.511926], [47.420573, 8.509354], [47.379569, 8.543213], [47.415777, 8.569952], [47.364351, 8.555237], [47.391433, 8.534796], [47.364721, 8.55694], [47.379811, 8.490339], [47.360687, 8.524421], [47.368789, 8.506314], [47.366166, 8.540473], [47.386829, 8.4951], [47.33732, 8.519353], [47.398969, 8.538846], [47.408972, 8.539662], [47.400562, 8.534931], [47.40628, 8.492716], [47.362159, 8.547473], [47.414209, 8.518542], [47.365094, 8.559357], [47.380008, 8.526417], [47.380405, 8.548038], [47.35571, 8.572423], [47.395988, 8.521126], [47.377176, 8.539496], [47.398318, 8.532474], [47.420879, 8.549398], [47.38393, 8.515796], [47.385798, 8.548455], [47.394238, 8.52737], [47.357954, 8.520447], [47.370563, 8.524503], [47.382229, 8.492492], [47.386843, 8.519762], [47.370295, 8.548874], [47.370852, 8.554579], [47.378518, 8.527009], [47.428101, 8.545665], [47.391641, 8.525131], [47.382447, 8.537605], [47.385184, 8.530761], [47.402947, 8.575761], [47.390739, 8.52253], [47.405833, 8.553695], [47.381514, 8.491948], [47.399879, 8.495226], [47.403462, 8.486049], [47.376903, 8.512184], [47.385886, 8.532576], [47.368232, 8.506329], [47.361524, 8.517699], [47.371254, 8.530356], [47.41395, 8.548697], [47.403463, 8.55603], [47.378795, 8.542376], [47.392089, 8.517736], [47.401756, 8.545515], [47.359633, 8.557561], [47.369055, 8.553442], [47.36605, 8.521326], [47.355886, 8.595473], [47.400556, 8.544099], [47.357601, 8.554685], [47.354221, 8.502012], [47.390971, 8.488731], [47.361309, 8.505926], [47.417997, 8.554348], [47.408746, 8.546376], [47.388982, 8.539038], [47.404197, 8.561041], [47.393469, 8.511538], [47.384082, 8.532235], [47.383391, 8.574867], [47.403651, 8.572781], [47.379932, 8.541936], [47.369142, 8.525414], [47.371472, 8.556538], [47.386243, 8.533842], [47.366728, 8.49964], [47.419844, 8.504528], [47.384903, 8.537655], [47.387919, 8.490975], [47.37994, 8.495956], [47.374853, 8.518804], [47.406667, 8.551182], [47.393428, 8.47352], [47.403126, 8.547147], [47.396748, 8.532097], [47.385246, 8.530828], [47.377056, 8.520821], [47.39127, 8.514845], [47.36827, 8.554618], [47.385541, 8.54241], [47.368891, 8.539523], [47.379455, 8.529663], [47.34946, 8.534092], [47.382432, 8.487993], [47.371643, 8.515759], [47.375338, 8.516033], [47.378086, 8.510645], [47.369717, 8.525518], [47.357438, 8.52176], [47.388951, 8.515672], [47.388316, 8.520096], [47.377869, 8.521407], [47.383227, 8.484685], [47.403333, 8.497268], [47.431964, 8.543399], [47.385357, 8.530513], [47.369554, 8.541722], [47.385573, 8.530491], [47.375713, 8.476963], [47.425963, 8.493397], [47.379442, 8.544323], [47.37566, 8.537173], [47.393523, 8.54488], [47.36962, 8.551733], [47.363949, 8.549298], [47.391301, 8.523071], [47.366003, 8.545276], [47.405252, 8.555273], [47.378415, 8.540753], [47.383412, 8.498912], [47.389048, 8.486534], [47.39197, 8.517932], [47.429953, 8.549587], [47.402182, 8.496186], [47.391001, 8.487354], [47.392706, 8.539088], [47.3772, 8.513064], [47.387669, 8.529527], [47.36028, 8.534196], [47.381228, 8.551326], [47.363783, 8.551637], [47.381801, 8.535539], [47.3712, 8.512135], [47.382671, 8.532007], [47.421012, 8.549533], [47.374974, 8.544946], [47.398016, 8.532137], [47.373268, 8.599651], [47.38727, 8.488089], [47.35678, 8.55116], [47.383772, 8.573603], [47.366428, 8.545046], [47.402788, 8.500716], [47.372851, 8.532772], [47.373795, 8.536513], [47.370197, 8.548792], [47.377396, 8.543778], [47.348385, 8.532667], [47.343839, 8.530152], [47.420816, 8.549331], [47.354904, 8.574842], [47.379029, 8.542341], [47.39163, 8.523435], [47.391022, 8.523039], [47.371268, 8.528887], [47.365251, 8.520237], [47.40372, 8.578533], [47.370699, 8.516654], [47.394432, 8.526831], [47.385437, 8.526806], [47.364499, 8.536943], [47.391544, 8.505697], [47.387782, 8.519397], [47.370463, 8.510174], [47.402434, 8.503093], [47.3985, 8.538929], [47.430681, 8.550504], [47.381807, 8.548133], [47.375623, 8.541993], [47.401859, 8.493172], [47.376558, 8.548594], [47.378861, 8.524976], [47.395437, 8.526122], [47.368881, 8.548142], [47.358153, 8.519365], [47.379005, 8.508545], [47.387615, 8.486837], [47.423199, 8.535304], [47.379847, 8.524414], [47.37031, 8.602182], [47.365668, 8.510184], [47.371579, 8.472552], [47.382796, 8.529255], [47.372116, 8.519119], [47.376929, 8.539967], [47.413975, 8.544179], [47.384901, 8.509127], [47.415052, 8.551013], [47.348009, 8.534288], [47.365841, 8.545312], [47.3854, 8.542129], [47.368636, 8.524649], [47.389692, 8.511422], [47.405388, 8.592666], [47.363779, 8.553928], [47.38904, 8.510932], [47.346375, 8.527319], [47.404869, 8.574225], [47.370563, 8.526436], [47.358116, 8.519471], [47.364383, 8.546275], [47.372579, 8.517619], [47.405133, 8.480345], [47.403298, 8.497175], [47.412202, 8.546156], [47.414097, 8.550277], [47.37035, 8.513548], [47.370454, 8.514001], [47.396986, 8.539256], [47.353208, 8.511376], [47.374515, 8.54973], [47.411842, 8.525344], [47.396646, 8.541872], [47.374948, 8.534471], [47.393787, 8.472626], [47.380981, 8.492216], [47.369831, 8.547527], [47.381747, 8.541206], [47.372926, 8.535224], [47.371195, 8.535691], [47.405672, 8.549876], [47.378452, 8.540648], [47.406541, 8.553975], [47.349836, 8.561353], [47.384298, 8.485553], [47.368283, 8.541046], [47.359402, 8.522396], [47.388564, 8.535718], [47.381264, 8.540984], [47.386695, 8.534593], [47.383243, 8.540058], [47.404099, 8.483187], [47.359428, 8.584841], [47.378549, 8.496511], [47.387201, 8.51908], [47.409933, 8.576029], [47.394963, 8.522046], [47.385395, 8.539798], [47.378414, 8.540766], [47.37999, 8.536852], [47.373439, 8.5199], [47.37712, 8.49937], [47.391175, 8.523042], [47.379757, 8.524372], [47.36876, 8.524877], [47.354958, 8.557251], [47.361472, 8.54779], [47.397139, 8.530661], [47.366693, 8.544615], [47.372565, 8.534408], [47.392239, 8.516984], [47.403253, 8.48627], [47.371983, 8.535138], [47.358974, 8.591595], [47.379477, 8.527386], [47.364559, 8.56627], [47.389634, 8.521461], [47.336938, 8.518816], [47.358655, 8.582971], [47.367373, 8.494026], [47.36135, 8.525639], [47.369148, 8.564209], [47.383706, 8.529141], [47.37709, 8.540951], [47.409036, 8.548012], [47.398176, 8.536167], [47.369989, 8.510827], [47.366739, 8.565032], [47.427387, 8.546101], [47.382128, 8.51417], [47.409216, 8.54987], [47.398687, 8.590799], [47.414245, 8.534789], [47.38721, 8.519094], [47.413638, 8.545643], [47.392185, 8.503498], [47.405713, 8.494653], [47.410374, 8.543627], [47.3551, 8.532143], [47.374739, 8.537578], [47.392362, 8.502839], [47.398015, 8.503336], [47.369787, 8.537132], [47.376344, 8.527613], [47.411911, 8.51224], [47.378896, 8.526937], [47.382411, 8.505011], [47.377854, 8.529697], [47.377407, 8.501375], [47.368271, 8.536624], [47.427614, 8.54584], [47.398229, 8.532379], [47.396494, 8.528462], [47.36586, 8.547007], [47.393097, 8.521438], [47.39424, 8.480304], [47.413788, 8.536489], [47.382848, 8.557744], [47.370006, 8.548974], [47.410783, 8.545], [47.406514, 8.576195], [47.392143, 8.493311], [47.40585, 8.538843], [47.372388, 8.5236], [47.364846, 8.532674], [47.353454, 8.602105], [47.363219, 8.530629], [47.373952, 8.540846], [47.407713, 8.543452], [47.35933, 8.522368], [47.409678, 8.542089], [47.410347, 8.548277], [47.377692, 8.52584], [47.381022, 8.518015], [47.36996, 8.53123], [47.371824, 8.536684], [47.366446, 8.54506], [47.427789, 8.490478], [47.391979, 8.517853], [47.37787, 8.529909], [47.370994, 8.514912], [47.374035, 8.546303], [47.386145, 8.551641], [47.38187, 8.531156], [47.379902, 8.537632], [47.380144, 8.536723], [47.361386, 8.525693], [47.389249, 8.510698], [47.372771, 8.535472], [47.387678, 8.529527], [47.383004, 8.514837], [47.367898, 8.539953], [47.397452, 8.53182], [47.409073, 8.529011], [47.407705, 8.552714], [47.374508, 8.532475], [47.404028, 8.495984], [47.40022, 8.547245], [47.408574, 8.546558], [47.402203, 8.503711], [47.38423, 8.543098], [47.389989, 8.475903], [47.413532, 8.545402], [47.391979, 8.517945], [47.397976, 8.53252], [47.383127, 8.550201], [47.386012, 8.481985], [47.365046, 8.531527], [47.380309, 8.554247], [47.361209, 8.525385], [47.405334, 8.499786], [47.368796, 8.528717], [47.402148, 8.503843], [47.414395, 8.552934], [47.383327, 8.543437], [47.360612, 8.562294], [47.377721, 8.536104], [47.380041, 8.514181], [47.374547, 8.518784], [47.389426, 8.521563], [47.371039, 8.530272], [47.361489, 8.556329], [47.365249, 8.530922], [47.361963, 8.560364], [47.389741, 8.477435], [47.384979, 8.541895], [47.364637, 8.546055], [47.343963, 8.5303], [47.385007, 8.508334], [47.41982, 8.550065], [47.410681, 8.543435], [47.414607, 8.520206], [47.374641, 8.560829], [47.364213, 8.5667], [47.36655, 8.540772], [47.37061, 8.517539], [47.362766, 8.547049], [47.404176, 8.588771], [47.360616, 8.597429], [47.368306, 8.524377], [47.399065, 8.521944], [47.409385, 8.544454], [47.380747, 8.512765], [47.368076, 8.560678], [47.380763, 8.53312], [47.373984, 8.476241], [47.403606, 8.496929], [47.391521, 8.535924], [47.372732, 8.534875], [47.398378, 8.502986], [47.370606, 8.517036], [47.408833, 8.545821], [47.401335, 8.499282], [47.405812, 8.590741], [47.363053, 8.567496], [47.369514, 8.536477], [47.398249, 8.537003], [47.382148, 8.551981], [47.398172, 8.534617], [47.369041, 8.537951], [47.403944, 8.485502], [47.379289, 8.54432], [47.392122, 8.492688], [47.356924, 8.573363], [47.379706, 8.516372], [47.409418, 8.558832], [47.413857, 8.544322], [47.369809, 8.493213], [47.361022, 8.580149], [47.342701, 8.520084], [47.355878, 8.599855], [47.414544, 8.556183], [47.399031, 8.50537], [47.364086, 8.546348], [47.396993, 8.480265], [47.414515, 8.56098], [47.380122, 8.541821], [47.380652, 8.526748], [47.375905, 8.527432], [47.378795, 8.542403], [47.392239, 8.492611], [47.377216, 8.541946], [47.381809, 8.516614], [47.379022, 8.54495], [47.373118, 8.53683], [47.379591, 8.52768], [47.369504, 8.53849], [47.375537, 8.548188], [47.378733, 8.528046], [47.35546, 8.5566], [47.365921, 8.530287], [47.392763, 8.522518], [47.370957, 8.538003], [47.354782, 8.601486], [47.38593, 8.548749], [47.373324, 8.534967], [47.389718, 8.518284], [47.406649, 8.55032], [47.365539, 8.539282], [47.361822, 8.526205], [47.408641, 8.580268], [47.374133, 8.540691], [47.354914, 8.523258], [47.378435, 8.540462], [47.382805, 8.529268], [47.373422, 8.537048], [47.37626, 8.527943], [47.411153, 8.546784], [47.370206, 8.548806], [47.374434, 8.549675], [47.370709, 8.529948], [47.363699, 8.531247], [47.397979, 8.534176], [47.393209, 8.530634], [47.378326, 8.527349], [47.339902, 8.52986], [47.362825, 8.518931], [47.363379, 8.56275], [47.370146, 8.532465], [47.410582, 8.550084], [47.374185, 8.526695], [47.372998, 8.550254], [47.374682, 8.535975], [47.388453, 8.531344], [47.384903, 8.495154], [47.343307, 8.532166], [47.389719, 8.512323], [47.388289, 8.518135], [47.360358, 8.565374], [47.376842, 8.528259], [47.376796, 8.524603], [47.369107, 8.503063], [47.388934, 8.489168], [47.366586, 8.535067], [47.383956, 8.482606], [47.40261, 8.499559], [47.409109, 8.545125], [47.410541, 8.486069], [47.370052, 8.543294], [47.369844, 8.518636], [47.369446, 8.526572], [47.375791, 8.529112], [47.374258, 8.523691], [47.391973, 8.510779], [47.374958, 8.534418], [47.407792, 8.548357], [47.389649, 8.512123], [47.41033, 8.569492], [47.390832, 8.52224], [47.364267, 8.526294], [47.360432, 8.52472], [47.40011, 8.54931], [47.368033, 8.485816], [47.362657, 8.496262], [47.343322, 8.520097], [47.383245, 8.53982], [47.37907, 8.511208], [47.369142, 8.537794], [47.371399, 8.550035], [47.371046, 8.536178], [47.376534, 8.524638], [47.380155, 8.527916], [47.374482, 8.48683], [47.337582, 8.526901], [47.37382, 8.548073], [47.402383, 8.535499], [47.384224, 8.516093], [47.367671, 8.5221], [47.363699, 8.531261], [47.388844, 8.491153], [47.375321, 8.484516], [47.401126, 8.49953], [47.401878, 8.504791], [47.366762, 8.545834], [47.410779, 8.555773], [47.405572, 8.549967], [47.36475, 8.532341], [47.391538, 8.542693], [47.365011, 8.53138], [47.386586, 8.541293], [47.401278, 8.534403], [47.37085, 8.548276], [47.384967, 8.488189], [47.376002, 8.541921], [47.397797, 8.541935], [47.351871, 8.528305], [47.409027, 8.548025], [47.385007, 8.508321], [47.385333, 8.539704], [47.374335, 8.53753], [47.408556, 8.546531], [47.370161, 8.548818], [47.410102, 8.52772], [47.406898, 8.550524], [47.369041, 8.537937], [47.411124, 8.526204], [47.367462, 8.552548], [47.388358, 8.520375], [47.384814, 8.492146], [47.386792, 8.549853], [47.373365, 8.531684], [47.37028, 8.524974], [47.417617, 8.52533], [47.368283, 8.534413], [47.372891, 8.535143], [47.370611, 8.53556], [47.399579, 8.547497], [47.373291, 8.546923], [47.408965, 8.570244], [47.364332, 8.555329], [47.394232, 8.490133], [47.414048, 8.543133], [47.366625, 8.520477], [47.429953, 8.549574], [47.377621, 8.498691], [47.379353, 8.49519], [47.376406, 8.490854], [47.367411, 8.536328], [47.398001, 8.474218], [47.377557, 8.54198], [47.373543, 8.531873], [47.378413, 8.510334], [47.388084, 8.540741], [47.367951, 8.533413], [47.426906, 8.546515], [47.426511, 8.510189], [47.378575, 8.575214], [47.40929, 8.572875], [47.391131, 8.487873], [47.381122, 8.491623], [47.370161, 8.548805], [47.415107, 8.477439], [47.364965, 8.502623], [47.413619, 8.546663], [47.389662, 8.487248], [47.369207, 8.528024], [47.351427, 8.524854], [47.425425, 8.553681], [47.356499, 8.551446], [47.386374, 8.49664], [47.375425, 8.486928], [47.372025, 8.547692], [47.373961, 8.536132], [47.403413, 8.497323], [47.37176, 8.522541], [47.380934, 8.535044], [47.403672, 8.571497], [47.385645, 8.482865], [47.377971, 8.492911], [47.37856, 8.523527], [47.370088, 8.548909], [47.392294, 8.482651], [47.39345, 8.512584], [47.416315, 8.553424], [47.386184, 8.535311], [47.382386, 8.540305], [47.368031, 8.560716], [47.36424, 8.533019], [47.392298, 8.502931], [47.376443, 8.489769], [47.385025, 8.508268], [47.389867, 8.510896], [47.381785, 8.489888], [47.386988, 8.500295], [47.419395, 8.510284], [47.357138, 8.522058], [47.411161, 8.526059], [47.364586, 8.566204], [47.368503, 8.52454], [47.417531, 8.5616], [47.369041, 8.537937], [47.405173, 8.481817], [47.369607, 8.525688], [47.390315, 8.490639], [47.408978, 8.578924], [47.390317, 8.50803], [47.381478, 8.503761], [47.40386, 8.485739], [47.372927, 8.546479], [47.414133, 8.518977], [47.38568, 8.521063], [47.365859, 8.53202], [47.365263, 8.502457], [47.414809, 8.520687], [47.377229, 8.538636], [47.406925, 8.550538], [47.373867, 8.538408], [47.362231, 8.526637], [47.373814, 8.53642], [47.367486, 8.519806], [47.367825, 8.539157], [47.370197, 8.548805], [47.379006, 8.559702], [47.365015, 8.553517], [47.404569, 8.483964], [47.375015, 8.536895], [47.378449, 8.540886], [47.414697, 8.560732], [47.385061, 8.532308], [47.378147, 8.509945], [47.377612, 8.543756], [47.386699, 8.497428], [47.404767, 8.549552], [47.376371, 8.523827], [47.387156, 8.519093], [47.376089, 8.53942], [47.375242, 8.540449], [47.368454, 8.547604], [47.387026, 8.490216], [47.377799, 8.526968], [47.412344, 8.551102], [47.368078, 8.538937], [47.37706, 8.539454], [47.358713, 8.500698], [47.37388, 8.544671], [47.376211, 8.544521], [47.366661, 8.546084], [47.369919, 8.5135], [47.397714, 8.532674], [47.373814, 8.536487], [47.385043, 8.532374], [47.378072, 8.541805], [47.366577, 8.540799], [47.388235, 8.536254], [47.371684, 8.564342], [47.372705, 8.566588], [47.324727, 8.518397], [47.370586, 8.517247], [47.407112, 8.487234], [47.374859, 8.484904], [47.387946, 8.49095], [47.39803, 8.533448], [47.378531, 8.528439], [47.365433, 8.554029], [47.367058, 8.536533], [47.376136, 8.527794], [47.362777, 8.559904], [47.343374, 8.535542], [47.383292, 8.484434], [47.384816, 8.531588], [47.362458, 8.612734], [47.381653, 8.542621], [47.405838, 8.590781], [47.417816, 8.545199], [47.383098, 8.527818], [47.363197, 8.51956], [47.388638, 8.479056], [47.403445, 8.548531], [47.421618, 8.550116], [47.374612, 8.538648], [47.383768, 8.531103], [47.371643, 8.515772], [47.412712, 8.522818], [47.370158, 8.55847], [47.413907, 8.547609], [47.385688, 8.520202], [47.405116, 8.482186], [47.396581, 8.528769], [47.407988, 8.572582], [47.374548, 8.539693], [47.362196, 8.559442], [47.381424, 8.537411], [47.363182, 8.522115], [47.389033, 8.495051], [47.373306, 8.532146], [47.370307, 8.517295], [47.382075, 8.531359], [47.37341, 8.531658], [47.41349, 8.529989], [47.358991, 8.534447], [47.374111, 8.519292], [47.391312, 8.53898], [47.379854, 8.554767], [47.366168, 8.540261], [47.403823, 8.489846], [47.411018, 8.544965], [47.393806, 8.50618], [47.392834, 8.537938], [47.381041, 8.503328], [47.419113, 8.548752], [47.413897, 8.543912], [47.400211, 8.494318], [47.371634, 8.515772], [47.406482, 8.581269], [47.366377, 8.553148], [47.359874, 8.59605], [47.361825, 8.515256], [47.375286, 8.549918], [47.38419, 8.511033], [47.405695, 8.5916], [47.370134, 8.548817], [47.356907, 8.551084], [47.366565, 8.501689], [47.400728, 8.548607], [47.361575, 8.551102], [47.369703, 8.540308], [47.410295, 8.573996], [47.357727, 8.521581], [47.404874, 8.572768], [47.409215, 8.543417], [47.377216, 8.54196], [47.41709, 8.523053], [47.411244, 8.508477], [47.39119, 8.489292], [47.363665, 8.531975], [47.330162, 8.529634], [47.414318, 8.55439], [47.37047, 8.5142], [47.391829, 8.518512], [47.358731, 8.555], [47.405308, 8.577136], [47.373503, 8.519835], [47.388473, 8.490324], [47.393007, 8.524351], [47.35822, 8.587873], [47.374581, 8.53053], [47.362498, 8.568186], [47.406276, 8.58296], [47.371681, 8.529954], [47.425853, 8.493713], [47.387304, 8.517678], [47.366921, 8.544275], [47.375347, 8.533261], [47.391052, 8.479712], [47.370186, 8.549017], [47.408255, 8.550685], [47.409942, 8.47971], [47.409438, 8.564159], [47.360388, 8.566817], [47.38834, 8.520348], [47.419287, 8.537146], [47.373857, 8.527152], [47.366406, 8.54829], [47.387175, 8.535172], [47.40938, 8.54309], [47.370088, 8.511742], [47.369382, 8.54185], [47.399028, 8.54771], [47.37662, 8.545046], [47.364967, 8.547293], [47.356548, 8.523595], [47.375785, 8.535375], [47.376911, 8.526711], [47.372686, 8.534941], [47.391913, 8.518235], [47.402831, 8.501962], [47.359105, 8.526202], [47.381826, 8.516667], [47.384328, 8.531842], [47.345697, 8.520079], [47.391409, 8.523113], [47.369733, 8.525704], [47.367456, 8.501706], [47.374583, 8.534066], [47.385163, 8.53676], [47.349895, 8.576482], [47.373841, 8.536487], [47.359446, 8.509013], [47.355409, 8.554362], [47.393329, 8.52453], [47.40043, 8.59285], [47.367185, 8.540243], [47.360834, 8.535557], [47.397995, 8.532467], [47.413832, 8.54505], [47.420005, 8.509475], [47.414026, 8.545439], [47.33751, 8.519185], [47.373915, 8.544685], [47.375373, 8.496673], [47.384942, 8.537338], [47.355456, 8.572656], [47.398842, 8.53895], [47.409314, 8.545354], [47.38447, 8.534931], [47.398215, 8.516694], [47.375511, 8.548069], [47.427423, 8.551695], [47.386513, 8.529079], [47.358458, 8.518445], [47.377168, 8.540409], [47.358785, 8.521946], [47.366841, 8.543201], [47.395716, 8.522273], [47.411607, 8.528321], [47.366444, 8.545245], [47.354441, 8.527669], [47.425511, 8.557792], [47.377209, 8.539867], [47.378546, 8.540146], [47.370188, 8.548818], [47.377457, 8.5038], [47.386269, 8.498307], [47.377426, 8.550029], [47.403071, 8.589582], [47.379967, 8.527899], [47.36798, 8.540775], [47.37861, 8.526799], [47.37614, 8.500238], [47.370116, 8.54879], [47.35034, 8.577921], [47.386813, 8.516278], [47.363713, 8.520167], [47.421896, 8.550228]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_686ae80bdcb04d078848c0241d22ef26 = L.heatLayer(\n", - " [[47.369034, 8.528325], [47.373656, 8.534153], [47.365203, 8.547113], [47.373933, 8.546592], [47.347334, 8.534393], [47.378795, 8.5272], [47.3856, 8.530544], [47.378962, 8.559596], [47.377284, 8.541352], [47.356204, 8.555874], [47.409717, 8.544554], [47.410909, 8.563647], [47.360514, 8.561339], [47.371529, 8.511586], [47.328634, 8.51804], [47.364149, 8.546349], [47.416633, 8.555021], [47.371249, 8.535692], [47.402386, 8.495514], [47.418279, 8.546627], [47.363489, 8.575382], [47.36666, 8.541476], [47.395204, 8.519322], [47.363927, 8.546941], [47.378768, 8.542349], [47.375765, 8.529005], [47.403696, 8.48306], [47.403662, 8.571655], [47.382368, 8.488124], [47.401459, 8.548371], [47.38315, 8.515581], [47.36149, 8.502858], [47.366256, 8.545162], [47.430827, 8.550388], [47.361993, 8.5572], [47.378035, 8.526721], [47.328552, 8.518091], [47.358289, 8.55887], [47.384453, 8.542321], [47.374497, 8.517446], [47.392147, 8.5477], [47.399712, 8.495792], [47.410513, 8.54791], [47.375378, 8.536598], [47.374762, 8.536043], [47.373812, 8.537665], [47.402396, 8.49937], [47.428031, 8.542708], [47.387511, 8.528186], [47.388433, 8.520046], [47.368552, 8.528831], [47.370994, 8.537911], [47.391001, 8.522416], [47.368665, 8.564914], [47.335007, 8.529958], [47.41076, 8.544602], [47.393466, 8.500119], [47.426243, 8.554613], [47.418678, 8.547232], [47.391607, 8.519183], [47.392755, 8.523458], [47.386014, 8.495706], [47.38813, 8.535947], [47.396555, 8.528676], [47.394017, 8.52506], [47.373165, 8.503926], [47.344708, 8.528608], [47.364638, 8.566444], [47.347538, 8.532743], [47.377432, 8.539037], [47.40862, 8.546373], [47.381061, 8.54241], [47.365292, 8.521602], [47.372297, 8.526644], [47.364825, 8.566646], [47.375888, 8.527405], [47.411062, 8.532736], [47.403082, 8.570212], [47.373617, 8.536377], [47.385362, 8.500077], [47.387005, 8.528427], [47.37741, 8.539514], [47.348407, 8.533118], [47.376016, 8.535751], [47.385478, 8.536767], [47.395728, 8.518074], [47.395096, 8.520327], [47.377198, 8.540013], [47.374146, 8.533699], [47.374548, 8.533999], [47.367734, 8.487956], [47.373629, 8.597752], [47.376121, 8.540758], [47.35706, 8.59767], [47.373425, 8.519503], [47.389696, 8.511872], [47.428329, 8.545405], [47.405509, 8.579605], [47.37834, 8.493779], [47.37533, 8.561214], [47.414158, 8.482947], [47.373954, 8.538807], [47.36027, 8.568853], [47.372489, 8.563882], [47.417703, 8.554143], [47.374199, 8.568394], [47.348632, 8.533123], [47.373958, 8.526015], [47.403637, 8.570489], [47.373415, 8.534863], [47.364072, 8.556171], [47.380854, 8.511893], [47.407705, 8.535728], [47.377042, 8.544154], [47.377136, 8.552115], [47.426897, 8.546541], [47.377701, 8.538195], [47.36832, 8.504517], [47.39073, 8.545352], [47.366079, 8.533547], [47.400788, 8.5489], [47.372086, 8.523236], [47.402361, 8.499289], [47.381391, 8.533252], [47.367983, 8.540458], [47.389176, 8.509849], [47.376365, 8.510041], [47.393893, 8.521004], [47.418818, 8.530576], [47.376566, 8.548766], [47.370928, 8.535394], [47.395091, 8.524698], [47.365326, 8.598723], [47.378547, 8.528718], [47.388421, 8.486177], [47.369672, 8.525544], [47.391832, 8.484946], [47.424285, 8.54312], [47.364588, 8.554924], [47.34376, 8.525175], [47.375305, 8.485377], [47.385565, 8.530437], [47.368848, 8.54785], [47.388603, 8.477956], [47.359386, 8.596264], [47.387102, 8.489781], [47.373422, 8.552951], [47.402579, 8.582073], [47.364774, 8.532633], [47.382119, 8.540882], [47.421143, 8.548131], [47.414728, 8.551059], [47.360872, 8.524861], [47.371625, 8.515772], [47.364566, 8.532814], [47.36832, 8.484882], [47.391347, 8.522953], [47.38451, 8.542958], [47.393841, 8.50826], [47.3355, 8.518748], [47.370361, 8.518183], [47.357039, 8.52207], [47.411746, 8.525051], [47.377308, 8.509226], [47.371967, 8.556416], [47.37868, 8.567297], [47.367932, 8.48604], [47.350007, 8.570608], [47.377713, 8.525575], [47.389156, 8.532114], [47.380724, 8.582663], [47.396721, 8.529262], [47.401541, 8.548306], [47.381925, 8.512828], [47.382829, 8.555942], [47.336519, 8.518411], [47.362906, 8.567824], [47.387355, 8.487693], [47.349174, 8.562861], [47.4109, 8.562746], [47.385089, 8.532282], [47.37604, 8.48461], [47.380872, 8.53491], [47.403163, 8.500074], [47.371084, 8.514953], [47.385778, 8.53264], [47.411073, 8.545748], [47.378064, 8.495495], [47.359685, 8.515226], [47.364261, 8.536449], [47.41364, 8.545364], [47.364103, 8.546375], [47.396808, 8.540961], [47.361124, 8.517188], [47.414694, 8.56109], [47.374504, 8.521498], [47.393495, 8.492079], [47.380098, 8.508991], [47.403657, 8.496202], [47.393345, 8.524795], [47.358412, 8.521436], [47.359881, 8.594435], [47.366711, 8.544642], [47.382738, 8.575435], [47.405252, 8.55526], [47.384191, 8.497312], [47.355524, 8.600138], [47.370827, 8.470194], [47.368116, 8.536846], [47.362912, 8.556147], [47.359812, 8.527567], [47.369853, 8.518649], [47.416321, 8.545354], [47.383245, 8.548256], [47.386724, 8.547574], [47.386801, 8.534741], [47.38012, 8.535504], [47.375732, 8.526687], [47.409277, 8.545406], [47.411177, 8.526219], [47.370116, 8.548817], [47.414778, 8.519229], [47.367543, 8.540329], [47.377441, 8.499628], [47.340403, 8.519601], [47.386599, 8.481797], [47.392874, 8.496041], [47.370302, 8.545312], [47.367001, 8.523543], [47.366493, 8.566245], [47.395934, 8.493863], [47.376872, 8.510581], [47.37656, 8.538993], [47.370402, 8.5225], [47.370325, 8.514303], [47.361534, 8.560937], [47.40712, 8.586702], [47.398377, 8.54714], [47.399767, 8.543765], [47.38099, 8.492229], [47.370188, 8.548792], [47.354799, 8.526856], [47.378056, 8.513849], [47.375817, 8.529139], [47.372116, 8.515266], [47.404584, 8.491278], [47.391506, 8.528003], [47.360508, 8.535723], [47.376417, 8.564137], [47.369455, 8.528426], [47.409433, 8.546085], [47.363105, 8.556694], [47.359671, 8.522454], [47.41272, 8.482826], [47.388797, 8.520517], [47.384025, 8.480939], [47.357617, 8.553918], [47.404283, 8.54472], [47.410368, 8.539519], [47.389719, 8.512323], [47.373362, 8.547031], [47.372882, 8.535156], [47.37328, 8.533033], [47.404418, 8.557707], [47.396674, 8.510198], [47.417216, 8.522989], [47.369107, 8.525347], [47.375872, 8.559133], [47.385581, 8.542927], [47.356856, 8.52241], [47.358311, 8.556567], [47.378802, 8.526445], [47.376446, 8.549108], [47.362293, 8.532476], [47.372784, 8.535048], [47.36801, 8.540432], [47.38652, 8.540656], [47.375411, 8.484531], [47.353343, 8.576185], [47.387086, 8.547316], [47.369507, 8.525779], [47.410047, 8.535391], [47.388549, 8.479001], [47.410547, 8.556524], [47.367335, 8.544297], [47.378406, 8.516849], [47.340656, 8.52711], [47.371088, 8.516437], [47.381327, 8.541012], [47.37104, 8.537767], [47.389883, 8.539851], [47.398345, 8.53731], [47.378557, 8.504523], [47.363386, 8.534855], [47.329118, 8.529679], [47.376805, 8.535039], [47.412809, 8.514299], [47.394601, 8.494009], [47.407201, 8.585816], [47.374481, 8.540129], [47.355029, 8.562031], [47.414738, 8.519612], [47.383394, 8.548643], [47.371225, 8.523007], [47.419374, 8.508654], [47.378495, 8.575186], [47.364466, 8.566493], [47.381665, 8.513657], [47.416591, 8.513885], [47.375261, 8.525194], [47.369296, 8.528158], [47.376922, 8.540735], [47.416685, 8.568195], [47.36028, 8.523684], [47.356895, 8.522067], [47.393447, 8.537739], [47.376896, 8.554626], [47.373244, 8.533019], [47.402833, 8.577255], [47.37009, 8.518323], [47.358001, 8.554244], [47.326399, 8.516539], [47.394838, 8.525739], [47.411579, 8.54556], [47.396002, 8.545303], [47.386616, 8.468871], [47.3925, 8.516088], [47.372981, 8.547367], [47.374731, 8.495985], [47.366573, 8.54023], [47.337514, 8.530261], [47.389264, 8.54152], [47.386921, 8.544809], [47.393505, 8.539184], [47.409168, 8.571534], [47.379962, 8.547274], [47.367968, 8.544827], [47.37017, 8.548778], [47.397766, 8.530038], [47.382957, 8.557614], [47.370359, 8.513615], [47.414995, 8.551369], [47.376758, 8.538057], [47.366985, 8.523358], [47.370653, 8.516772], [47.37646, 8.543838], [47.416296, 8.545115], [47.390015, 8.536383], [47.356752, 8.523917], [47.4037, 8.571444], [47.373938, 8.503014], [47.377717, 8.507778], [47.378406, 8.555677], [47.403694, 8.5784], [47.355276, 8.574506], [47.36974, 8.54011], [47.374368, 8.521627], [47.380163, 8.528089], [47.370179, 8.548805], [47.368135, 8.54152], [47.361132, 8.531645], [47.35588, 8.531431], [47.360504, 8.550298], [47.427353, 8.545848], [47.414203, 8.519124], [47.387937, 8.490949], [47.357231, 8.506321], [47.388935, 8.489048], [47.357103, 8.556886], [47.362704, 8.496104], [47.413307, 8.531271], [47.37852, 8.506496], [47.371235, 8.531389], [47.394089, 8.475056], [47.405261, 8.555247], [47.380305, 8.483488], [47.407223, 8.585379], [47.375927, 8.523235], [47.399828, 8.544018], [47.377616, 8.507007], [47.366808, 8.499747], [47.361801, 8.560307], [47.378172, 8.5341], [47.376545, 8.529233], [47.373915, 8.524823], [47.393453, 8.539064], [47.384145, 8.497364], [47.365335, 8.545527], [47.365117, 8.553241], [47.379755, 8.526544], [47.364351, 8.555237], [47.386091, 8.521362], [47.378769, 8.510778], [47.419516, 8.547991], [47.373832, 8.536487], [47.366564, 8.540256], [47.385363, 8.532738], [47.352294, 8.507082], [47.368402, 8.546477], [47.380891, 8.492307], [47.416279, 8.544134], [47.390932, 8.523143], [47.369274, 8.541822], [47.368696, 8.493006], [47.362131, 8.547552], [47.391264, 8.485134], [47.366067, 8.548944], [47.37385, 8.536501], [47.389733, 8.51182], [47.370648, 8.535468], [47.376372, 8.539903], [47.374219, 8.521214], [47.414076, 8.514431], [47.410678, 8.550312], [47.389737, 8.486839], [47.405559, 8.550483], [47.37603, 8.541816], [47.431268, 8.543769], [47.393163, 8.528805], [47.408492, 8.546635], [47.401215, 8.588111], [47.375886, 8.540859], [47.384298, 8.554728], [47.347253, 8.532512], [47.402427, 8.535579], [47.391243, 8.538727], [47.386753, 8.502409], [47.331935, 8.535241], [47.412301, 8.52436], [47.415679, 8.563443], [47.376392, 8.536857], [47.360933, 8.525048], [47.369155, 8.491995], [47.404621, 8.484151], [47.361773, 8.505419], [47.392556, 8.475516], [47.371527, 8.558221], [47.413799, 8.546666], [47.391423, 8.535869], [47.402076, 8.545985], [47.386688, 8.539043], [47.3849, 8.550185], [47.370215, 8.548806], [47.372747, 8.550236], [47.388539, 8.487027], [47.385427, 8.517336], [47.368946, 8.540358], [47.32477, 8.510871], [47.365649, 8.520894], [47.383844, 8.52974], [47.344532, 8.532959], [47.41498, 8.551011], [47.362541, 8.533885], [47.351314, 8.576738], [47.382992, 8.575176], [47.364586, 8.566191], [47.361371, 8.512838], [47.357465, 8.524554], [47.370644, 8.517725], [47.404169, 8.563955], [47.41167, 8.537876], [47.379074, 8.522345], [47.407371, 8.579592], [47.378535, 8.555375], [47.401364, 8.508875], [47.357675, 8.521434], [47.377228, 8.551918], [47.37223, 8.540307], [47.379268, 8.495665], [47.406307, 8.492677], [47.358281, 8.584432], [47.370949, 8.548278], [47.386793, 8.534674], [47.386623, 8.547797], [47.422111, 8.549411], [47.334864, 8.529955], [47.415678, 8.546732], [47.368932, 8.559597], [47.361562, 8.554358], [47.374673, 8.535948], [47.375883, 8.541177], [47.365767, 8.496549], [47.361245, 8.506004], [47.415275, 8.514203], [47.360188, 8.522968], [47.390507, 8.522326], [47.415179, 8.5177], [47.376802, 8.528656], [47.432354, 8.528812], [47.367888, 8.494804], [47.41429, 8.550745], [47.372982, 8.533119], [47.386565, 8.490432], [47.340024, 8.530286], [47.375467, 8.560092], [47.362926, 8.549131], [47.37654, 8.515395], [47.410418, 8.543668], [47.365116, 8.553307], [47.383088, 8.540187], [47.356096, 8.562371], [47.369151, 8.503236], [47.369213, 8.540708], [47.414682, 8.545532], [47.376822, 8.541779], [47.373548, 8.519783], [47.416003, 8.552212], [47.400402, 8.501039], [47.394838, 8.525726], [47.430019, 8.544552], [47.376592, 8.514654], [47.361744, 8.516287], [47.400254, 8.547431], [47.371379, 8.530478], [47.356982, 8.535716], [47.424213, 8.496955], [47.39116, 8.52275], [47.37578, 8.549067], [47.393081, 8.544951], [47.376296, 8.55991], [47.424828, 8.499485], [47.376484, 8.552618], [47.397721, 8.532925], [47.37582, 8.537389], [47.364287, 8.555355], [47.41349, 8.52995], [47.366287, 8.548459], [47.41648, 8.55311], [47.377015, 8.548828], [47.397643, 8.588193], [47.375908, 8.541323], [47.386761, 8.535217], [47.361643, 8.526095], [47.360147, 8.523536], [47.351536, 8.530416], [47.351861, 8.53033], [47.354263, 8.57594], [47.365712, 8.532348], [47.382491, 8.572199], [47.341836, 8.530826], [47.375546, 8.548228], [47.413829, 8.545395], [47.39868, 8.471727], [47.363984, 8.54759], [47.367635, 8.540159], [47.399042, 8.533059], [47.362356, 8.516207], [47.369216, 8.550731], [47.385508, 8.508583], [47.372704, 8.517793], [47.370072, 8.525009], [47.422845, 8.542229], [47.370871, 8.524218], [47.396301, 8.526034], [47.369615, 8.528641], [47.378598, 8.523329], [47.362284, 8.532489], [47.366495, 8.494657], [47.372602, 8.534356], [47.409358, 8.545381], [47.370894, 8.548343], [47.35325, 8.527023], [47.393873, 8.472058], [47.363074, 8.51732], [47.363635, 8.535165], [47.375021, 8.549475], [47.423616, 8.510992], [47.377913, 8.50998], [47.391, 8.507143], [47.381852, 8.489465], [47.347025, 8.529053], [47.407138, 8.586742], [47.374509, 8.539944], [47.366095, 8.533733], [47.401965, 8.499308], [47.371398, 8.530346], [47.361507, 8.597396], [47.391628, 8.538933], [47.370204, 8.556459], [47.39698, 8.530433], [47.368577, 8.52903], [47.366788, 8.542234], [47.40949, 8.522978], [47.383151, 8.540255], [47.399545, 8.496398], [47.396172, 8.527303], [47.347331, 8.532778], [47.380369, 8.528172], [47.383435, 8.512912], [47.372768, 8.477369], [47.363377, 8.529162], [47.353253, 8.512317], [47.413056, 8.524495], [47.375176, 8.501437], [47.406835, 8.550576], [47.390925, 8.521937], [47.387308, 8.547599], [47.397194, 8.491781], [47.391371, 8.537537], [47.375646, 8.510967], [47.378123, 8.510606], [47.377673, 8.508598], [47.375714, 8.578066], [47.352375, 8.507071], [47.375567, 8.560001], [47.38252, 8.475215], [47.356003, 8.535604], [47.358856, 8.533518], [47.383179, 8.540123], [47.390682, 8.478897], [47.369212, 8.567838], [47.36923, 8.567825], [47.399357, 8.585885], [47.41161, 8.50973], [47.424944, 8.553128], [47.344404, 8.530283], [47.393445, 8.52942], [47.393904, 8.486656], [47.366921, 8.544275], [47.356991, 8.53569], [47.396526, 8.530808], [47.382846, 8.540116], [47.416956, 8.545751], [47.39342, 8.500277], [47.374901, 8.51944], [47.364908, 8.530822], [47.412253, 8.556771], [47.390748, 8.522583], [47.360298, 8.523698], [47.383557, 8.530608], [47.3612, 8.525345], [47.37298, 8.533397], [47.37385, 8.536487], [47.37302, 8.532908], [47.376842, 8.543448], [47.382421, 8.551656], [47.367292, 8.523165], [47.421358, 8.550005], [47.369398, 8.525883], [47.371879, 8.522279], [47.37307, 8.550309], [47.387894, 8.485823], [47.344057, 8.530911], [47.38184, 8.54191], [47.389933, 8.492009], [47.362095, 8.535332], [47.39008, 8.511231], [47.375945, 8.535603], [47.410774, 8.554355], [47.374149, 8.520934], [47.367128, 8.544266], [47.369112, 8.517151], [47.424557, 8.553239], [47.364332, 8.555316], [47.368513, 8.499172], [47.391122, 8.522988], [47.349522, 8.532214], [47.381176, 8.491544], [47.367942, 8.560608], [47.424669, 8.550007], [47.404819, 8.576543], [47.416268, 8.51474], [47.327451, 8.51279], [47.408585, 8.580505], [47.404764, 8.594799], [47.374227, 8.516487], [47.368527, 8.546546], [47.374292, 8.543819], [47.376794, 8.527649], [47.398026, 8.535833], [47.387482, 8.484609], [47.391097, 8.541797], [47.391062, 8.538882], [47.392553, 8.538131], [47.369209, 8.543899], [47.355944, 8.553936], [47.387616, 8.527579], [47.401043, 8.535392], [47.396998, 8.530327], [47.388458, 8.491079], [47.370277, 8.548873], [47.387089, 8.522389], [47.360373, 8.53572], [47.380869, 8.526673], [47.364869, 8.566727], [47.406297, 8.551294], [47.409568, 8.537568], [47.398829, 8.540301], [47.369694, 8.540268], [47.414575, 8.551029], [47.412169, 8.550542], [47.410711, 8.554433], [47.385199, 8.530112], [47.373065, 8.528116], [47.376648, 8.527845], [47.362677, 8.497097], [47.387281, 8.487956], [47.36815, 8.541772], [47.378518, 8.540291], [47.392829, 8.523168], [47.365877, 8.494353], [47.36414, 8.546309], [47.367544, 8.539363], [47.387286, 8.500142], [47.382342, 8.514399], [47.426297, 8.554667], [47.37558, 8.537079], [47.368636, 8.546509], [47.361363, 8.526182], [47.358027, 8.520276], [47.380091, 8.525174], [47.390664, 8.478857], [47.371922, 8.556455], [47.398336, 8.537297], [47.355953, 8.554902], [47.371041, 8.549856], [47.387898, 8.540472], [47.345165, 8.529743], [47.375066, 8.545663], [47.373217, 8.533005], [47.364729, 8.556172], [47.394939, 8.516826], [47.409685, 8.523273], [47.406862, 8.55059], [47.419774, 8.500352], [47.379435, 8.545939], [47.369844, 8.518636], [47.364985, 8.521728], [47.372265, 8.540454], [47.359766, 8.50845], [47.354168, 8.553436], [47.407187, 8.566258], [47.369899, 8.529071], [47.37729, 8.538849], [47.373465, 8.561506], [47.36048, 8.535855], [47.366629, 8.544706], [47.363195, 8.548249], [47.363717, 8.531261], [47.374574, 8.541706], [47.404418, 8.574308], [47.356593, 8.523583], [47.397341, 8.587789], [47.3925, 8.492603], [47.391382, 8.487017], [47.407386, 8.541922], [47.369678, 8.538215], [47.380025, 8.548216], [47.382475, 8.514614], [47.370858, 8.54829], [47.427921, 8.545701], [47.375599, 8.577865], [47.359189, 8.527806], [47.391296, 8.535059], [47.361189, 8.525517], [47.383293, 8.499095], [47.385963, 8.475507], [47.413218, 8.538717], [47.406414, 8.588992], [47.378896, 8.526924], [47.376676, 8.497732], [47.407006, 8.550553], [47.385541, 8.542397], [47.381192, 8.538162], [47.392546, 8.475635], [47.377546, 8.509694], [47.383736, 8.512467], [47.369164, 8.538284], [47.389306, 8.51609], [47.407574, 8.530637], [47.366976, 8.523318], [47.404148, 8.559662], [47.357524, 8.535489], [47.364664, 8.532896], [47.357434, 8.521217], [47.372139, 8.556393], [47.375759, 8.498694], [47.366894, 8.544301], [47.390411, 8.509489], [47.343016, 8.520051], [47.372716, 8.525103], [47.404946, 8.557095], [47.366809, 8.518124], [47.425995, 8.547742], [47.409044, 8.550052], [47.364472, 8.536943], [47.4057, 8.595601], [47.365109, 8.534321], [47.378398, 8.49235], [47.404696, 8.549471], [47.405053, 8.482185], [47.372044, 8.529565], [47.377974, 8.548199], [47.385546, 8.530477], [47.37865, 8.544373], [47.3771, 8.541812], [47.383147, 8.550055], [47.360454, 8.522364], [47.384986, 8.48509], [47.391118, 8.489277], [47.374881, 8.517718], [47.37413, 8.497748], [47.373554, 8.534429], [47.386006, 8.548287], [47.387339, 8.493375], [47.390998, 8.513157], [47.366493, 8.542002], [47.385007, 8.508334], [47.386462, 8.477], [47.378414, 8.543653], [47.368017, 8.540657], [47.406652, 8.578609], [47.371636, 8.53566], [47.343059, 8.519351], [47.328797, 8.517884], [47.361155, 8.600234], [47.373796, 8.486142], [47.413918, 8.551082], [47.373852, 8.517181], [47.353105, 8.572103], [47.36063, 8.529477], [47.412064, 8.545636], [47.385193, 8.530734], [47.37453, 8.54532], [47.372703, 8.534054], [47.386513, 8.529093], [47.407523, 8.548245], [47.428302, 8.542567], [47.383208, 8.515145], [47.374378, 8.55268], [47.408956, 8.53953], [47.369482, 8.553875], [47.377261, 8.510351], [47.378914, 8.518383], [47.373988, 8.54086], [47.366215, 8.520959], [47.371487, 8.524786], [47.397717, 8.533257], [47.399049, 8.514061], [47.393412, 8.537698], [47.415225, 8.544244], [47.374459, 8.539532], [47.410485, 8.573006], [47.3513, 8.576301], [47.36778, 8.522963], [47.360571, 8.535711], [47.353013, 8.572287], [47.360009, 8.568861], [47.421403, 8.550045], [47.375523, 8.526908], [47.363326, 8.533557], [47.390882, 8.466596], [47.366753, 8.5421], [47.353166, 8.575917], [47.360122, 8.571061], [47.366314, 8.534306], [47.377847, 8.50925], [47.416879, 8.547155], [47.390531, 8.490616], [47.374762, 8.518868], [47.361834, 8.51527], [47.363562, 8.519991], [47.381785, 8.536359], [47.387495, 8.476159], [47.398488, 8.500776], [47.360304, 8.550466], [47.391823, 8.513438], [47.369437, 8.525632], [47.358211, 8.550211], [47.376821, 8.526723], [47.366052, 8.521167], [47.369105, 8.54162], [47.420531, 8.501228], [47.369266, 8.525628], [47.356647, 8.52361], [47.370846, 8.491036], [47.368463, 8.498787], [47.363424, 8.499984], [47.40699, 8.550327], [47.348525, 8.534034], [47.372528, 8.534567], [47.367865, 8.532021], [47.402992, 8.494241], [47.411162, 8.54681], [47.383707, 8.481277], [47.370859, 8.535022], [47.339987, 8.530378], [47.349941, 8.569958], [47.365626, 8.556402], [47.388126, 8.521086], [47.402575, 8.492577], [47.374376, 8.502401], [47.429626, 8.541428], [47.389639, 8.540005], [47.414245, 8.518502], [47.421014, 8.507401], [47.388097, 8.485191], [47.412003, 8.547305], [47.371104, 8.538589], [47.378711, 8.526549], [47.393731, 8.513291], [47.379125, 8.51113], [47.385643, 8.480004], [47.383458, 8.531599], [47.387649, 8.48701], [47.410649, 8.57191], [47.37447, 8.549702], [47.371458, 8.521145], [47.37126, 8.528847], [47.38828, 8.528692], [47.373038, 8.532909], [47.377399, 8.526417], [47.368847, 8.529049], [47.412669, 8.526421], [47.370936, 8.531674], [47.367931, 8.556212], [47.391493, 8.534215], [47.368172, 8.496147], [47.354333, 8.511333], [47.399266, 8.542562], [47.408196, 8.557693], [47.368481, 8.556939], [47.377517, 8.499206], [47.376143, 8.553458], [47.360912, 8.549962], [47.410726, 8.572256], [47.372071, 8.529565], [47.375248, 8.547322], [47.391644, 8.519144], [47.367796, 8.544942], [47.366624, 8.532936], [47.371481, 8.556525], [47.399822, 8.542732], [47.362649, 8.530961], [47.370713, 8.535218], [47.360914, 8.571899], [47.376152, 8.521253], [47.427712, 8.545935], [47.350023, 8.527817], [47.370233, 8.518472], [47.401968, 8.552554], [47.367898, 8.49765], [47.383022, 8.530134], [47.380844, 8.511005], [47.36908, 8.523427], [47.372055, 8.534186], [47.390912, 8.523302], [47.364633, 8.554899], [47.384072, 8.492595], [47.405626, 8.565828], [47.342323, 8.536341], [47.376796, 8.511017], [47.407668, 8.58405], [47.411479, 8.526622], [47.375944, 8.530015], [47.386426, 8.518257], [47.364499, 8.53697], [47.37386, 8.536395], [47.388961, 8.525169], [47.395494, 8.540046], [47.388179, 8.525047], [47.378831, 8.530962], [47.359002, 8.553086], [47.394797, 8.523407], [47.3731, 8.53777], [47.393491, 8.483615], [47.367923, 8.523986], [47.365269, 8.500868], [47.370034, 8.543307], [47.383346, 8.574879], [47.383877, 8.542349], [47.370188, 8.548792], [47.377012, 8.539757], [47.389957, 8.491426], [47.373998, 8.546342], [47.370204, 8.53767], [47.41078, 8.567686], [47.393672, 8.509025], [47.405764, 8.591045], [47.400193, 8.546224], [47.378112, 8.493232], [47.381195, 8.537804], [47.391676, 8.492255], [47.413752, 8.546811], [47.368827, 8.548088], [47.382339, 8.530093], [47.361667, 8.529207], [47.365979, 8.562646], [47.394783, 8.525804], [47.399177, 8.521549], [47.374201, 8.521227], [47.418885, 8.507053], [47.370161, 8.548818], [47.368382, 8.517269], [47.408802, 8.549053], [47.351067, 8.513358], [47.362554, 8.519997], [47.361412, 8.525746], [47.374444, 8.540181], [47.380332, 8.483462], [47.375865, 8.54115], [47.404525, 8.550382], [47.367929, 8.540483], [47.377748, 8.537971], [47.413768, 8.520428], [47.430009, 8.486677], [47.411641, 8.507425], [47.404679, 8.581641], [47.370098, 8.539363], [47.401235, 8.550168], [47.402298, 8.499301], [47.368115, 8.541665], [47.369379, 8.526994], [47.355534, 8.53476], [47.367604, 8.538702], [47.402545, 8.553295], [47.383867, 8.534005], [47.38825, 8.518426], [47.376785, 8.528602], [47.364918, 8.554322], [47.398828, 8.540367], [47.410204, 8.541662], [47.374383, 8.519059], [47.40689, 8.550511], [47.375963, 8.53367], [47.373094, 8.532671], [47.426719, 8.549083], [47.387363, 8.487746], [47.411836, 8.525092], [47.404754, 8.594878], [47.389207, 8.539042], [47.40536, 8.592745], [47.414041, 8.519201], [47.361128, 8.601094], [47.361219, 8.502045], [47.378879, 8.539213], [47.361103, 8.549715], [47.373614, 8.529054], [47.40113, 8.549887], [47.39311, 8.484945], [47.361365, 8.565342], [47.334922, 8.518035], [47.377036, 8.512293], [47.409321, 8.535151], [47.361678, 8.523289], [47.363148, 8.525795], [47.391917, 8.517798], [47.393179, 8.474243], [47.403588, 8.559875], [47.370553, 8.487614], [47.358295, 8.587543], [47.384983, 8.531035], [47.39321, 8.524752], [47.373926, 8.54642], [47.370242, 8.548806], [47.407158, 8.586504], [47.385169, 8.532363], [47.412405, 8.550361], [47.381498, 8.503549], [47.370125, 8.548844], [47.370269, 8.513586], [47.380386, 8.515777], [47.387297, 8.488089], [47.373854, 8.537944], [47.414458, 8.552908], [47.359644, 8.569396], [47.38705, 8.528428], [47.38329, 8.486593], [47.391936, 8.533919], [47.42802, 8.54569], [47.37333, 8.52007], [47.387239, 8.486565], [47.383961, 8.53165], [47.352175, 8.525651], [47.363967, 8.528565], [47.373319, 8.535523], [47.409291, 8.528764], [47.354967, 8.574817], [47.391128, 8.489198], [47.36345, 8.533824], [47.375418, 8.535235], [47.419174, 8.505986], [47.41942, 8.556021], [47.359, 8.52207], [47.339541, 8.529919], [47.410981, 8.529859], [47.37386, 8.536368], [47.389263, 8.527387], [47.360538, 8.597176], [47.411673, 8.561861], [47.368737, 8.519659], [47.361096, 8.531565], [47.41551, 8.563148], [47.393067, 8.531306], [47.414335, 8.551673], [47.365176, 8.547112], [47.376749, 8.535196], [47.376509, 8.521631], [47.388355, 8.526389], [47.41406, 8.541901], [47.385164, 8.495159], [47.373223, 8.550246], [47.397565, 8.481694], [47.410742, 8.571581], [47.375972, 8.537537], [47.420697, 8.502663], [47.392388, 8.524193], [47.378819, 8.50923], [47.372838, 8.528376], [47.381306, 8.542216], [47.380331, 8.54164], [47.379973, 8.497242], [47.393109, 8.474003], [47.398678, 8.471873], [47.366686, 8.542496], [47.371187, 8.524118], [47.380774, 8.512792], [47.359348, 8.597428], [47.406759, 8.587767], [47.407227, 8.547219], [47.360336, 8.553723], [47.383647, 8.512439], [47.363868, 8.566931], [47.349006, 8.565332], [47.387262, 8.485095], [47.364398, 8.548499], [47.393757, 8.53352], [47.382583, 8.528085], [47.371499, 8.535817], [47.357121, 8.556846], [47.3952, 8.535947], [47.396661, 8.518371], [47.398851, 8.536062], [47.370984, 8.531317], [47.360556, 8.556998], [47.405951, 8.557315], [47.399264, 8.515112], [47.386731, 8.544898], [47.430736, 8.550399], [47.373574, 8.51609], [47.374377, 8.54063], [47.355069, 8.557942], [47.366528, 8.540255], [47.352604, 8.525024], [47.38516, 8.532376], [47.368717, 8.509265], [47.398863, 8.533863], [47.376787, 8.535012], [47.405116, 8.480173], [47.360414, 8.526692], [47.36877, 8.547558], [47.352873, 8.557141], [47.409427, 8.538228], [47.362061, 8.551085], [47.376334, 8.487966], [47.375121, 8.545584], [47.368672, 8.51893], [47.359522, 8.557863], [47.374803, 8.55151], [47.382271, 8.501631], [47.385956, 8.498023], [47.341047, 8.524736], [47.37523, 8.533192], [47.407412, 8.585396], [47.370306, 8.513481], [47.413615, 8.553606], [47.40071, 8.548673], [47.379969, 8.514232], [47.372184, 8.530984], [47.369098, 8.525334], [47.399092, 8.541975], [47.385414, 8.475536], [47.368946, 8.540398], [47.390685, 8.539722], [47.353483, 8.576572], [47.364188, 8.556227], [47.367161, 8.539924], [47.375112, 8.545597], [47.372314, 8.563336], [47.391715, 8.51341], [47.39671, 8.517948], [47.381924, 8.529277], [47.385369, 8.529294], [47.386511, 8.52545], [47.376656, 8.544001], [47.424979, 8.541054], [47.409506, 8.57651], [47.369056, 8.523108], [47.373017, 8.531332], [47.400815, 8.548887], [47.375232, 8.552803], [47.407187, 8.585457], [47.379171, 8.526426], [47.381303, 8.511981], [47.408262, 8.547147], [47.39121, 8.523175], [47.414566, 8.564095], [47.365236, 8.502443], [47.414313, 8.551156], [47.353171, 8.577267], [47.395131, 8.5194], [47.37257, 8.514758], [47.340875, 8.5316], [47.419726, 8.533444], [47.407916, 8.544821], [47.386187, 8.548238], [47.377522, 8.529597], [47.391485, 8.486542], [47.406509, 8.583972], [47.404152, 8.563888], [47.38395, 8.545105], [47.351051, 8.576931], [47.3709, 8.526906], [47.367074, 8.523426], [47.357634, 8.554024], [47.351306, 8.560986], [47.367784, 8.539593], [47.393369, 8.49307], [47.372467, 8.542801], [47.349241, 8.532473], [47.367945, 8.546296], [47.361607, 8.603581], [47.376119, 8.528602], [47.361486, 8.56124], [47.403884, 8.569196], [47.365108, 8.553241], [47.365681, 8.552538], [47.415529, 8.563135], [47.36043, 8.547636], [47.363832, 8.533329], [47.355668, 8.555545], [47.381248, 8.53701], [47.360685, 8.529359], [47.406984, 8.534043], [47.381815, 8.529328], [47.373591, 8.524843], [47.360373, 8.53572], [47.382383, 8.548106], [47.377067, 8.544314], [47.335251, 8.541224], [47.391054, 8.522563], [47.374977, 8.540933], [47.361247, 8.549665], [47.384657, 8.531306], [47.373106, 8.550283], [47.418671, 8.507818], [47.357059, 8.535215], [47.370306, 8.548649], [47.400676, 8.492672], [47.404936, 8.492133], [47.370261, 8.548727], [47.379002, 8.542367], [47.371681, 8.536602], [47.367462, 8.522348], [47.349633, 8.577562], [47.373224, 8.536964], [47.412962, 8.538248], [47.357739, 8.534633], [47.363766, 8.547784], [47.370343, 8.524935], [47.334757, 8.529794], [47.354764, 8.526736], [47.40324, 8.547414], [47.379126, 8.559361], [47.40308, 8.486466], [47.381913, 8.491599], [47.37747, 8.49845], [47.381948, 8.516153], [47.381948, 8.516153], [47.376173, 8.534337], [47.405387, 8.504702], [47.400178, 8.493986], [47.368186, 8.529552], [47.379675, 8.530171], [47.405272, 8.558732], [47.385213, 8.47585], [47.40965, 8.542168], [47.377327, 8.499308], [47.398028, 8.474218], [47.37017, 8.539444], [47.376983, 8.490746], [47.389278, 8.478949], [47.36844, 8.498363], [47.359644, 8.548996], [47.372238, 8.535726], [47.349765, 8.561338], [47.372638, 8.534304], [47.37237, 8.534126], [47.37511, 8.52976], [47.373898, 8.540898], [47.357525, 8.507558], [47.4071, 8.553854], [47.384421, 8.486893], [47.417688, 8.545356], [47.351624, 8.560675], [47.384985, 8.508797], [47.372363, 8.503075], [47.37549, 8.524709], [47.413248, 8.5459], [47.362969, 8.563218], [47.38198, 8.536615], [47.379918, 8.490394], [47.369173, 8.538284], [47.369019, 8.502916], [47.382404, 8.540253], [47.367613, 8.538729], [47.362399, 8.567244], [47.384367, 8.507527], [47.415888, 8.515978], [47.367926, 8.532234], [47.38143, 8.537743], [47.378292, 8.541306], [47.342194, 8.529073], [47.37509, 8.526171], [47.375482, 8.514976], [47.413844, 8.545647], [47.409166, 8.483882], [47.375366, 8.501282], [47.405261, 8.55526], [47.39021, 8.533857], [47.37062, 8.53564], [47.361788, 8.560731], [47.414917, 8.54168], [47.383494, 8.531547], [47.33991, 8.5299], [47.372684, 8.550248], [47.372917, 8.53521], [47.370859, 8.535022], [47.381518, 8.503324], [47.36904, 8.541896], [47.378621, 8.501492], [47.382032, 8.53018], [47.375874, 8.537443], [47.352138, 8.558727], [47.373833, 8.536381], [47.387687, 8.529501], [47.413307, 8.545371], [47.378867, 8.510886], [47.347091, 8.563386], [47.408367, 8.544619], [47.366444, 8.600191], [47.378156, 8.509958], [47.394742, 8.525433], [47.384332, 8.507433], [47.381827, 8.530944], [47.369657, 8.467219], [47.378372, 8.54148], [47.371177, 8.51853], [47.374653, 8.538106], [47.377799, 8.507647], [47.390472, 8.47925], [47.353608, 8.526289], [47.398176, 8.53426], [47.380959, 8.53809], [47.40219, 8.508083], [47.376956, 8.535214], [47.377645, 8.511669], [47.42657, 8.548669], [47.373201, 8.503913], [47.346352, 8.564416], [47.372468, 8.526594], [47.374959, 8.547474], [47.379853, 8.55486], [47.381625, 8.517007], [47.425615, 8.494159], [47.392155, 8.477137], [47.372927, 8.531344], [47.402322, 8.535193], [47.391056, 8.479315], [47.364992, 8.555886], [47.370169, 8.54045], [47.364306, 8.520218], [47.376718, 8.543221], [47.39208, 8.499191], [47.363011, 8.557963], [47.384818, 8.531442], [47.413265, 8.541328], [47.429259, 8.488081], [47.369938, 8.552322], [47.357493, 8.553743], [47.369081, 8.547961], [47.367674, 8.545469], [47.358666, 8.526921], [47.431041, 8.550538], [47.373858, 8.519392], [47.37485, 8.545698], [47.368608, 8.560596], [47.382068, 8.54153], [47.37776, 8.537707], [47.422112, 8.538927], [47.381147, 8.538174], [47.378725, 8.54215], [47.370284, 8.545312], [47.375312, 8.522587], [47.398768, 8.506584], [47.373065, 8.50403], [47.375607, 8.548415], [47.378063, 8.543699], [47.403711, 8.560209], [47.368104, 8.560625], [47.381362, 8.517227], [47.370776, 8.508433], [47.364879, 8.558333], [47.36825, 8.533194], [47.381864, 8.536493], [47.407168, 8.586438], [47.39763, 8.532937], [47.373447, 8.561492], [47.356733, 8.557037], [47.361327, 8.517523], [47.357121, 8.521992], [47.375273, 8.490871], [47.417335, 8.522859], [47.382718, 8.486251], [47.37069, 8.524386], [47.373888, 8.544751], [47.374058, 8.516245], [47.388646, 8.520355], [47.389568, 8.48171], [47.374318, 8.544958], [47.348177, 8.562707], [47.376961, 8.541266], [47.393696, 8.502548], [47.388668, 8.485758], [47.374465, 8.539916], [47.376967, 8.543557], [47.370004, 8.556693], [47.369512, 8.526216], [47.391375, 8.537127], [47.405161, 8.480187], [47.379215, 8.537896], [47.369464, 8.526572], [47.393712, 8.533519], [47.358413, 8.583813], [47.377863, 8.529671], [47.367475, 8.556825], [47.375482, 8.530403], [47.371341, 8.534529], [47.372731, 8.530161], [47.356439, 8.55576], [47.373147, 8.552548], [47.378315, 8.541731], [47.368046, 8.530039], [47.378408, 8.509897], [47.36553, 8.539282], [47.383374, 8.515586], [47.399051, 8.533059], [47.410488, 8.529703], [47.373192, 8.503926], [47.35824, 8.554633], [47.391249, 8.522871], [47.36445, 8.566321], [47.373156, 8.503912], [47.374967, 8.531531], [47.372926, 8.53525], [47.427251, 8.491302], [47.370279, 8.52504], [47.370941, 8.508039], [47.349428, 8.562694], [47.375443, 8.549577], [47.325952, 8.513408], [47.38945, 8.511271], [47.363443, 8.575421], [47.39242, 8.489621], [47.376747, 8.527794], [47.374335, 8.524129], [47.413253, 8.538837], [47.402325, 8.5528], [47.408502, 8.546569], [47.368247, 8.51144], [47.356071, 8.532163], [47.391488, 8.505908], [47.403698, 8.557784], [47.370983, 8.520009], [47.352184, 8.523692], [47.398743, 8.538908], [47.341863, 8.5308], [47.351617, 8.563256], [47.41305, 8.535573], [47.369144, 8.525242], [47.369166, 8.518106], [47.358861, 8.516745], [47.400316, 8.48975], [47.418854, 8.507437], [47.361858, 8.560931], [47.383202, 8.506007], [47.409575, 8.542524], [47.387632, 8.552308], [47.410521, 8.569323], [47.381799, 8.51668], [47.359721, 8.558675], [47.381507, 8.571661], [47.42039, 8.551575], [47.343364, 8.519463], [47.369913, 8.552176], [47.376587, 8.544661], [47.360144, 8.596056], [47.39306, 8.489434], [47.404927, 8.593796], [47.394751, 8.525446], [47.406074, 8.552071], [47.403651, 8.487007], [47.370574, 8.555434], [47.39786, 8.554058], [47.384618, 8.524922], [47.36446, 8.5467], [47.375806, 8.52743], [47.377075, 8.527403], [47.409986, 8.543751], [47.367467, 8.496596], [47.380013, 8.557883], [47.370122, 8.563951], [47.412993, 8.546226], [47.403424, 8.570246], [47.3835, 8.574763], [47.396674, 8.545555], [47.373607, 8.553392], [47.372034, 8.547639], [47.384473, 8.549699], [47.363857, 8.55332], [47.381588, 8.537176], [47.37375, 8.535651], [47.364948, 8.521807], [47.368916, 8.501391], [47.38536, 8.528274], [47.366046, 8.560383], [47.35932, 8.522513], [47.366392, 8.541272], [47.392283, 8.506467], [47.38879, 8.530821], [47.368235, 8.546103], [47.400735, 8.592936], [47.409599, 8.54377], [47.411991, 8.546642], [47.414035, 8.545426], [47.386595, 8.541293], [47.415344, 8.4791], [47.382076, 8.529333], [47.391634, 8.513474], [47.399078, 8.535828], [47.409269, 8.543445], [47.395811, 8.506312], [47.366903, 8.544288], [47.396069, 8.526798], [47.419189, 8.505323], [47.372638, 8.534278], [47.399733, 8.586039], [47.412095, 8.517545], [47.38595, 8.480884], [47.376092, 8.540956], [47.391316, 8.536741], [47.382879, 8.529111], [47.368879, 8.53988], [47.406451, 8.587959], [47.352447, 8.55925], [47.379645, 8.519007], [47.403834, 8.576985], [47.385512, 8.520794], [47.414185, 8.546674], [47.40858, 8.531744], [47.382473, 8.487398], [47.380007, 8.520709], [47.399088, 8.480386], [47.379511, 8.516991], [47.419731, 8.548062], [47.408295, 8.577054], [47.365083, 8.534268], [47.384124, 8.541997], [47.383261, 8.540045], [47.373979, 8.544594], [47.379059, 8.528768], [47.398282, 8.537256], [47.359117, 8.524018], [47.381222, 8.503266], [47.364097, 8.54607], [47.360609, 8.557092], [47.36499, 8.508621], [47.349246, 8.562849], [47.378804, 8.531014], [47.371141, 8.51845], [47.376704, 8.524787], [47.371206, 8.542987], [47.371187, 8.524105], [47.384166, 8.527045], [47.382897, 8.529072], [47.357917, 8.520486], [47.406874, 8.574307], [47.374584, 8.525459], [47.388404, 8.486031], [47.370971, 8.546862], [47.427354, 8.552343], [47.369454, 8.526665], [47.389463, 8.521524], [47.374759, 8.539234], [47.370088, 8.525274], [47.376081, 8.535514], [47.363819, 8.535632], [47.37163, 8.547604], [47.410638, 8.544242], [47.370957, 8.531343], [47.429827, 8.486965], [47.392514, 8.491159], [47.36887, 8.53988], [47.385845, 8.498418], [47.386796, 8.547496], [47.36787, 8.56062], [47.390657, 8.489573], [47.363443, 8.546785], [47.377474, 8.485221], [47.427652, 8.54653], [47.405233, 8.481129], [47.364597, 8.554925], [47.376638, 8.52701], [47.391148, 8.523094], [47.397005, 8.530606], [47.370301, 8.491528], [47.399084, 8.533298], [47.375994, 8.541802], [47.371383, 8.515661], [47.375712, 8.53736], [47.372728, 8.518032], [47.429937, 8.539022], [47.37153, 8.536373], [47.389565, 8.540149], [47.345085, 8.529635], [47.38307, 8.530717], [47.406834, 8.481147], [47.408918, 8.548128], [47.378137, 8.526352], [47.377069, 8.544168], [47.368751, 8.552324], [47.424354, 8.553672], [47.430034, 8.549589], [47.377367, 8.539327], [47.382221, 8.515801], [47.373058, 8.536511], [47.401363, 8.504066], [47.414332, 8.541695], [47.414886, 8.541176], [47.365491, 8.531946], [47.378984, 8.54238], [47.364728, 8.530832], [47.408954, 8.550077], [47.409567, 8.537634], [47.40932, 8.572531], [47.37873, 8.542534], [47.419887, 8.547761], [47.355504, 8.556601], [47.380457, 8.525525], [47.375528, 8.548162], [47.377475, 8.526021], [47.382085, 8.529346], [47.402477, 8.546391], [47.37385, 8.536501], [47.387935, 8.539413], [47.361187, 8.563379], [47.379687, 8.529854], [47.369144, 8.525229], [47.370252, 8.525026], [47.361892, 8.560243], [47.37152, 8.526985], [47.335467, 8.519382], [47.381534, 8.54189], [47.371716, 8.536695], [47.37119, 8.523854], [47.369705, 8.508464], [47.370931, 8.548278], [47.37079, 8.546977], [47.362831, 8.548731], [47.401196, 8.534428], [47.399502, 8.495179], [47.36907, 8.528286], [47.375122, 8.518902], [47.369709, 8.467379], [47.425516, 8.515643], [47.373231, 8.531549], [47.378509, 8.540331], [47.348435, 8.534005], [47.371227, 8.528436], [47.361502, 8.561479], [47.392487, 8.491119], [47.403035, 8.580532], [47.384586, 8.509147], [47.376224, 8.537529], [47.402761, 8.577267], [47.394063, 8.544839], [47.402905, 8.550467], [47.361032, 8.553301], [47.409346, 8.544758], [47.372634, 8.494209], [47.367125, 8.539884], [47.360167, 8.579323], [47.357044, 8.590362], [47.370152, 8.548804], [47.405703, 8.535395], [47.417153, 8.523081], [47.363413, 8.534882], [47.392745, 8.522557], [47.366918, 8.492613], [47.380747, 8.525253], [47.370733, 8.515966], [47.402342, 8.499316], [47.375294, 8.540649], [47.356677, 8.535617], [47.36828, 8.524324], [47.388498, 8.470656], [47.371143, 8.529798], [47.377548, 8.528764], [47.37405, 8.544767], [47.405975, 8.548292], [47.370672, 8.530132], [47.374453, 8.541148], [47.367983, 8.540444], [47.420041, 8.509449], [47.380347, 8.487807], [47.391429, 8.52571], [47.371818, 8.541993], [47.370822, 8.515041], [47.405716, 8.585015], [47.377924, 8.528016], [47.40277, 8.501735], [47.404412, 8.572215], [47.427404, 8.546207], [47.385209, 8.507915], [47.404307, 8.580096], [47.377726, 8.527059], [47.387595, 8.49783], [47.373518, 8.534521], [47.3792, 8.53861], [47.368496, 8.499132], [47.370952, 8.536639], [47.376689, 8.540571], [47.338049, 8.528883], [47.359069, 8.526175], [47.399535, 8.497471], [47.371945, 8.547504], [47.414044, 8.556637], [47.403103, 8.555148], [47.409347, 8.5466], [47.335126, 8.519269], [47.36535, 8.531639], [47.368863, 8.514816], [47.375227, 8.515315], [47.395213, 8.484125], [47.378154, 8.532166], [47.371615, 8.515918], [47.369266, 8.525642], [47.377068, 8.583896], [47.357321, 8.58874], [47.393275, 8.530278], [47.404608, 8.557591], [47.3613, 8.532827], [47.357462, 8.521099], [47.409615, 8.576433], [47.419643, 8.504842], [47.331698, 8.516421], [47.378921, 8.542379], [47.37214, 8.556221], [47.367495, 8.537853], [47.388805, 8.49543], [47.366859, 8.543268], [47.402364, 8.579193], [47.367336, 8.535625], [47.40387, 8.568745], [47.364559, 8.566217], [47.404832, 8.483691], [47.370981, 8.535422], [47.369339, 8.525497], [47.393364, 8.494514], [47.413705, 8.552667], [47.402281, 8.552746], [47.359472, 8.522556], [47.372582, 8.534515], [47.411442, 8.54667], [47.391829, 8.518512], [47.393399, 8.500515], [47.392068, 8.500515], [47.386082, 8.504899], [47.340922, 8.52464], [47.416102, 8.552227], [47.418552, 8.547203], [47.376209, 8.536231], [47.369562, 8.548435], [47.364586, 8.566231], [47.373162, 8.551952], [47.359089, 8.525077], [47.36729, 8.544309], [47.353456, 8.576638], [47.368948, 8.532613], [47.418112, 8.554549], [47.365949, 8.532048], [47.374489, 8.540248], [47.381843, 8.531143], [47.414422, 8.483561], [47.369444, 8.52681], [47.409847, 8.545087], [47.377211, 8.523446], [47.356876, 8.522212], [47.374465, 8.495623], [47.400316, 8.543723], [47.377707, 8.51179], [47.381616, 8.530423], [47.386846, 8.51853], [47.373581, 8.54489], [47.373642, 8.575639], [47.387827, 8.527106], [47.37017, 8.518404], [47.378091, 8.497469], [47.390172, 8.511021], [47.399512, 8.517435], [47.414102, 8.550661], [47.362195, 8.5475], [47.387636, 8.488387], [47.396094, 8.52705], [47.374386, 8.521654], [47.366527, 8.545022], [47.398279, 8.537534], [47.409556, 8.572298], [47.372376, 8.540138], [47.426148, 8.554266], [47.385616, 8.482997], [47.3751, 8.540221], [47.358544, 8.517944], [47.378272, 8.527348], [47.392378, 8.516615], [47.423541, 8.554093], [47.366474, 8.547775], [47.397937, 8.506938], [47.390046, 8.491534], [47.378216, 8.541768], [47.378164, 8.493392], [47.366954, 8.544581], [47.374078, 8.540835], [47.379434, 8.525266], [47.387981, 8.491003], [47.370438, 8.526341], [47.39104, 8.47803], [47.36452, 8.532879], [47.387265, 8.518949], [47.377294, 8.535592], [47.370336, 8.507365], [47.387234, 8.500909], [47.358818, 8.533729], [47.379012, 8.483251], [47.372716, 8.538424], [47.360882, 8.517011], [47.388579, 8.525612], [47.365229, 8.533993], [47.374695, 8.549667], [47.362438, 8.547505], [47.404373, 8.573433], [47.370796, 8.546395], [47.418654, 8.507738], [47.367534, 8.541322], [47.416991, 8.538238], [47.382914, 8.500227], [47.381976, 8.505373], [47.363344, 8.548676], [47.404541, 8.484136], [47.427422, 8.546155], [47.362659, 8.549681], [47.393511, 8.512757], [47.357747, 8.554503], [47.359455, 8.592996], [47.381948, 8.516179], [47.353402, 8.572017], [47.383131, 8.531964], [47.376979, 8.542259], [47.37052, 8.558147], [47.386592, 8.525452], [47.382377, 8.514466], [47.40537, 8.578158], [47.378777, 8.542363], [47.370225, 8.532652], [47.384894, 8.495141], [47.37751, 8.50976], [47.402446, 8.535434], [47.356427, 8.573643], [47.366451, 8.551984], [47.370134, 8.548831], [47.384293, 8.526994], [47.376946, 8.527732], [47.37788, 8.531671], [47.408371, 8.54703], [47.352383, 8.510155], [47.333271, 8.529949], [47.419904, 8.554387], [47.380395, 8.548157], [47.36652, 8.544836], [47.393469, 8.526824], [47.389915, 8.487041], [47.360912, 8.513874], [47.374454, 8.540075], [47.388189, 8.480994], [47.386221, 8.518054], [47.367657, 8.578689], [47.425834, 8.493779], [47.377698, 8.544221], [47.369973, 8.552429], [47.39348, 8.529566], [47.377011, 8.527468], [47.366113, 8.533773], [47.384163, 8.497444], [47.413855, 8.545488], [47.392183, 8.495881], [47.412204, 8.524159], [47.375737, 8.488325], [47.407072, 8.55396], [47.369473, 8.528426], [47.354855, 8.556825], [47.376357, 8.521496], [47.366533, 8.556594], [47.400505, 8.543753], [47.370534, 8.514161], [47.425257, 8.510601], [47.359148, 8.521636], [47.379793, 8.506958], [47.400008, 8.494884], [47.37384, 8.50288], [47.377769, 8.537747], [47.37937, 8.537713], [47.38304, 8.548053], [47.402017, 8.499548], [47.375838, 8.518307], [47.38671, 8.528196], [47.399815, 8.587776], [47.399828, 8.504763], [47.370958, 8.53129], [47.373878, 8.54103], [47.410087, 8.544429], [47.380209, 8.513562], [47.354153, 8.511342], [47.385428, 8.508555], [47.377013, 8.539625], [47.416467, 8.546059], [47.371765, 8.54754], [47.373113, 8.535439], [47.387191, 8.51912], [47.386862, 8.535007], [47.370114, 8.518641], [47.353459, 8.576333], [47.391765, 8.485448], [47.419852, 8.482873], [47.380487, 8.493146], [47.370717, 8.516707], [47.391898, 8.515029], [47.38977, 8.511675], [47.370015, 8.543333], [47.370281, 8.532494], [47.357135, 8.507894], [47.339628, 8.53786], [47.373378, 8.530254], [47.366315, 8.533327], [47.400169, 8.50383], [47.377134, 8.54013], [47.353317, 8.576132], [47.386202, 8.518146], [47.364577, 8.566231], [47.375201, 8.522942], [47.369363, 8.525816], [47.369292, 8.525682], [47.363613, 8.547808], [47.369819, 8.556292], [47.356263, 8.523272], [47.371438, 8.547918], [47.388167, 8.491364], [47.347367, 8.532766], [47.41236, 8.523858], [47.361344, 8.550819], [47.392442, 8.502854], [47.378793, 8.531226], [47.378784, 8.531239], [47.375052, 8.518635], [47.403933, 8.534153], [47.376744, 8.543327], [47.38362, 8.539112], [47.377765, 8.531496], [47.385877, 8.542112], [47.373035, 8.475759], [47.378601, 8.509437], [47.428781, 8.545175], [47.376402, 8.52821], [47.375663, 8.543503], [47.3524, 8.534166], [47.364081, 8.528912], [47.411318, 8.570586], [47.360927, 8.520918], [47.364843, 8.56666], [47.403468, 8.584013], [47.417239, 8.544392], [47.385203, 8.54386], [47.380128, 8.527969], [47.412244, 8.554929], [47.386943, 8.490479], [47.398645, 8.533156], [47.367208, 8.559282], [47.359362, 8.586136], [47.354391, 8.531017], [47.336456, 8.51751], [47.377354, 8.539685], [47.3818, 8.516627], [47.349672, 8.561561], [47.379056, 8.542368], [47.382431, 8.537419], [47.370488, 8.518093], [47.363547, 8.546297], [47.361829, 8.560202], [47.363388, 8.520319], [47.37982, 8.536796], [47.391012, 8.521237], [47.418261, 8.5466], [47.369895, 8.556757], [47.352952, 8.572113], [47.366577, 8.540799], [47.412124, 8.55062], [47.378482, 8.527048], [47.381236, 8.537315], [47.371536, 8.518591], [47.38568, 8.521076], [47.390428, 8.525014], [47.357766, 8.534647], [47.419819, 8.500366], [47.414632, 8.520379], [47.405211, 8.593245], [47.398525, 8.494828], [47.359797, 8.532028], [47.363903, 8.547576], [47.378776, 8.496317], [47.36745, 8.489565], [47.384511, 8.538137], [47.386036, 8.493256], [47.349818, 8.561339], [47.386985, 8.516215], [47.359788, 8.594764], [47.353865, 8.512329], [47.359242, 8.535511], [47.39442, 8.519518], [47.390497, 8.491344], [47.357526, 8.571655], [47.370703, 8.517263], [47.37503, 8.545688], [47.335067, 8.526493], [47.405626, 8.549994], [47.359095, 8.50702], [47.370161, 8.548818], [47.370975, 8.53133], [47.419579, 8.502044], [47.381867, 8.547525], [47.374668, 8.52411], [47.366321, 8.544925], [47.365565, 8.539349], [47.377771, 8.521313], [47.364685, 8.537305], [47.370143, 8.548804], [47.385093, 8.530865], [47.377883, 8.511264], [47.370169, 8.532889], [47.375805, 8.539931], [47.353382, 8.576835], [47.400286, 8.591032], [47.362189, 8.597543], [47.366917, 8.492746], [47.371057, 8.521666], [47.374677, 8.549667], [47.370652, 8.524611], [47.40414, 8.562245], [47.349905, 8.566357], [47.398849, 8.47185], [47.378578, 8.541498], [47.379434, 8.483352], [47.421281, 8.511594], [47.372564, 8.534501], [47.378797, 8.528908], [47.394309, 8.536008], [47.377843, 8.513541], [47.377641, 8.498427], [47.376758, 8.559642], [47.390337, 8.525197], [47.392458, 8.523386], [47.382332, 8.488084], [47.378114, 8.510593], [47.387253, 8.50079], [47.364335, 8.533418], [47.366155, 8.540632], [47.367578, 8.535749], [47.367076, 8.53656], [47.379797, 8.526797], [47.370391, 8.518806], [47.374468, 8.546114], [47.39089, 8.521831], [47.373416, 8.534823], [47.413624, 8.477304], [47.406844, 8.550576], [47.357602, 8.521538], [47.352695, 8.572545], [47.377544, 8.504093], [47.380387, 8.547998], [47.401585, 8.553977], [47.397011, 8.480292], [47.362752, 8.519114], [47.372728, 8.542794], [47.377895, 8.50794], [47.383327, 8.543437], [47.410395, 8.542316], [47.375959, 8.536001], [47.366375, 8.544926], [47.409517, 8.549532], [47.394339, 8.493182], [47.393338, 8.4945], [47.403527, 8.588916], [47.382887, 8.530091], [47.379131, 8.544833], [47.363901, 8.531702], [47.376551, 8.525684], [47.371934, 8.522147], [47.379331, 8.527542], [47.416803, 8.568078], [47.381603, 8.515471], [47.404499, 8.580776], [47.378607, 8.505888], [47.380292, 8.512411], [47.363255, 8.533489], [47.377602, 8.542021], [47.382265, 8.512067], [47.414772, 8.552995], [47.426141, 8.544683], [47.364588, 8.508295], [47.383763, 8.532652], [47.353573, 8.554469], [47.384077, 8.489072], [47.353619, 8.554364], [47.373023, 8.534471], [47.425615, 8.494172], [47.383347, 8.515598], [47.382887, 8.531124], [47.39197, 8.517905], [47.376467, 8.514572], [47.420987, 8.50251], [47.390994, 8.488135], [47.378706, 8.528059], [47.37845, 8.510189], [47.395848, 8.532132], [47.366481, 8.553587], [47.395632, 8.536843], [47.388976, 8.515831], [47.393562, 8.472688], [47.372302, 8.494123], [47.402974, 8.576675], [47.37422, 8.524961], [47.380671, 8.502526], [47.380653, 8.502513], [47.366429, 8.547721], [47.379782, 8.527419], [47.390189, 8.543619], [47.39365, 8.472928], [47.380474, 8.519831], [47.380808, 8.528301], [47.414204, 8.546635], [47.36718, 8.539753], [47.429948, 8.538757], [47.419097, 8.506448], [47.372535, 8.535639], [47.372763, 8.534412], [47.392028, 8.541273], [47.410595, 8.550601], [47.398837, 8.54038], [47.378504, 8.528505], [47.373073, 8.574925], [47.360122, 8.547894], [47.361973, 8.560231], [47.389485, 8.540108], [47.371501, 8.521291], [47.400461, 8.503345], [47.375595, 8.528909], [47.377739, 8.537984], [47.381763, 8.516732], [47.374538, 8.540686], [47.373789, 8.544736], [47.373373, 8.519356], [47.425682, 8.497567], [47.421327, 8.54958], [47.359341, 8.592755], [47.379375, 8.511373], [47.385974, 8.535677], [47.366914, 8.54311], [47.374452, 8.540327], [47.394516, 8.589596], [47.426067, 8.554225], [47.430933, 8.539228], [47.359742, 8.522509], [47.365964, 8.53234], [47.375713, 8.481002], [47.368263, 8.495129], [47.416507, 8.514188], [47.345111, 8.534519], [47.357411, 8.527452], [47.378797, 8.544071], [47.365629, 8.549544], [47.401265, 8.545174], [47.403191, 8.486203], [47.367261, 8.545395], [47.368061, 8.546378], [47.38057, 8.500763], [47.364323, 8.536596], [47.34331, 8.519475], [47.376603, 8.54486], [47.366322, 8.565354], [47.371208, 8.531401], [47.368912, 8.533526], [47.396729, 8.529289], [47.357634, 8.554011], [47.369099, 8.547935], [47.387931, 8.486645], [47.3666, 8.541157], [47.36174, 8.52247], [47.369764, 8.533808], [47.414769, 8.519229], [47.368011, 8.533772], [47.361383, 8.602517], [47.365054, 8.538252], [47.411689, 8.545311], [47.393776, 8.487833], [47.364559, 8.566217], [47.399229, 8.542667], [47.377666, 8.509432], [47.406826, 8.550563], [47.411507, 8.525616], [47.372903, 8.555522], [47.378975, 8.542327], [47.396732, 8.486222], [47.402999, 8.486477], [47.373886, 8.513514], [47.377972, 8.526746], [47.365732, 8.557517], [47.391625, 8.514375], [47.364544, 8.508242], [47.365254, 8.545485], [47.363067, 8.535299], [47.377131, 8.533814], [47.403846, 8.56844], [47.387233, 8.488273], [47.386271, 8.521353], [47.359437, 8.521509], [47.390509, 8.527916], [47.387298, 8.485056], [47.365227, 8.545538], [47.385994, 8.542009], [47.363313, 8.55744], [47.361658, 8.573993], [47.405802, 8.590794], [47.374389, 8.526991], [47.36996, 8.549079], [47.351196, 8.576815], [47.369732, 8.540097], [47.369123, 8.541607], [47.376529, 8.527101], [47.375799, 8.545201], [47.393405, 8.500926], [47.400304, 8.590105], [47.409158, 8.547511], [47.367233, 8.541766], [47.347753, 8.52433], [47.384895, 8.531841], [47.399321, 8.542404], [47.383912, 8.529265], [47.377142, 8.540237], [47.374968, 8.547461], [47.375812, 8.495861], [47.375821, 8.495848], [47.392216, 8.524295], [47.362683, 8.548172], [47.362174, 8.550558], [47.372228, 8.537712], [47.374034, 8.544555], [47.37869, 8.54203], [47.380644, 8.525728], [47.364388, 8.555132], [47.38812, 8.519827], [47.391437, 8.513351], [47.369748, 8.520289], [47.380756, 8.512752], [47.394899, 8.490915], [47.355404, 8.503438], [47.356748, 8.506986], [47.419152, 8.506409], [47.374992, 8.52605], [47.36482, 8.525829], [47.372662, 8.532729], [47.35555, 8.512006], [47.386979, 8.534956], [47.365227, 8.545538], [47.36855, 8.563706], [47.412786, 8.543425], [47.390832, 8.5222], [47.373465, 8.542835], [47.333931, 8.515262], [47.39391, 8.505665], [47.374542, 8.549743], [47.378537, 8.541126], [47.370714, 8.535205], [47.365618, 8.539482], [47.384414, 8.531367], [47.404144, 8.564697], [47.384446, 8.547831], [47.426159, 8.50146], [47.386309, 8.531671], [47.376822, 8.535105], [47.371993, 8.489469], [47.391652, 8.477989], [47.39804, 8.532455], [47.366945, 8.536146], [47.370347, 8.513959], [47.391036, 8.489448], [47.388817, 8.527961], [47.413158, 8.509668], [47.376711, 8.534494], [47.353646, 8.554325], [47.378384, 8.496839], [47.35147, 8.560831], [47.388334, 8.53815], [47.367147, 8.506904], [47.370555, 8.508931], [47.383472, 8.573094], [47.413293, 8.509658], [47.362079, 8.516943], [47.389702, 8.471739], [47.385023, 8.485011], [47.395847, 8.506287], [47.386513, 8.529093], [47.373523, 8.512911], [47.369148, 8.532365], [47.389554, 8.546069], [47.35745, 8.521403], [47.357276, 8.521757], [47.379065, 8.508838], [47.409483, 8.53803], [47.397856, 8.481249], [47.387117, 8.545939], [47.372276, 8.540255], [47.374997, 8.523574], [47.365906, 8.556263], [47.383258, 8.484222], [47.40828, 8.506112], [47.360322, 8.573594], [47.359449, 8.507623], [47.375323, 8.485377], [47.369293, 8.540776], [47.369899, 8.529097], [47.362037, 8.597474], [47.400221, 8.494226], [47.372132, 8.513492], [47.419578, 8.548046], [47.402405, 8.487512], [47.378993, 8.542367], [47.372935, 8.475849], [47.37098, 8.546849], [47.381175, 8.491677], [47.40512, 8.559537], [47.422794, 8.49963], [47.392221, 8.517023], [47.373665, 8.553896], [47.369062, 8.525267], [47.404964, 8.549662], [47.372714, 8.519608], [47.366565, 8.541077], [47.369074, 8.527822], [47.417977, 8.559211], [47.364906, 8.531021], [47.37639, 8.537069], [47.36562, 8.549584], [47.398624, 8.494804], [47.372805, 8.532785], [47.381174, 8.538174], [47.380934, 8.512967], [47.388656, 8.482116], [47.386201, 8.518212], [47.369469, 8.529856], [47.369969, 8.531243], [47.334553, 8.539026], [47.402676, 8.49238], [47.404965, 8.594499], [47.382564, 8.514656], [47.358481, 8.517982], [47.369116, 8.528207], [47.422613, 8.510508], [47.371361, 8.527631], [47.354747, 8.514174], [47.375657, 8.516555], [47.378836, 8.532339], [47.364825, 8.566633], [47.396967, 8.545972], [47.389152, 8.543836], [47.385566, 8.548278], [47.369182, 8.527877], [47.367808, 8.541818], [47.372921, 8.551762], [47.390732, 8.508794], [47.395552, 8.532099], [47.355084, 8.5619], [47.330175, 8.512898], [47.385979, 8.51789], [47.364786, 8.547395], [47.368716, 8.540936], [47.337983, 8.538634], [47.385712, 8.47439], [47.357419, 8.559553], [47.37693, 8.537001], [47.370463, 8.52462], [47.408895, 8.545862], [47.382278, 8.54025], [47.364975, 8.531379], [47.381808, 8.513793], [47.399335, 8.521923], [47.407535, 8.546072], [47.367817, 8.560487], [47.371575, 8.526867], [47.417924, 8.541398], [47.391583, 8.487604], [47.373895, 8.538302], [47.334499, 8.538999], [47.343822, 8.51087], [47.371346, 8.546261], [47.355204, 8.530623], [47.389926, 8.512288], [47.412804, 8.522515], [47.417171, 8.544908], [47.387616, 8.500479], [47.391123, 8.522855], [47.375266, 8.560365], [47.394758, 8.525619], [47.351875, 8.55982], [47.36672, 8.541782], [47.360227, 8.534049], [47.376787, 8.540653], [47.373894, 8.536607], [47.376796, 8.540653], [47.413983, 8.561088], [47.367967, 8.535558], [47.404611, 8.560149], [47.383877, 8.542349], [47.357582, 8.52167], [47.366309, 8.540595], [47.391014, 8.515303], [47.381055, 8.492019], [47.354841, 8.523415], [47.372008, 8.529577], [47.372737, 8.537113], [47.368669, 8.528873], [47.357528, 8.521669], [47.424284, 8.543187], [47.381899, 8.528998], [47.414593, 8.551056], [47.394596, 8.486709], [47.369023, 8.537977], [47.335584, 8.519384], [47.387135, 8.494112], [47.398267, 8.473587], [47.363765, 8.551677], [47.344456, 8.530496], [47.379913, 8.556133], [47.404066, 8.534407], [47.376949, 8.543517], [47.391517, 8.513419], [47.353697, 8.558442], [47.349479, 8.536819], [47.405256, 8.557632], [47.387206, 8.554498], [47.364894, 8.519899], [47.408312, 8.584461], [47.363449, 8.55735], [47.379703, 8.515763], [47.385968, 8.518141], [47.377904, 8.548092], [47.378047, 8.548121], [47.373821, 8.531892], [47.411318, 8.570612], [47.405221, 8.559353], [47.377583, 8.543106], [47.383308, 8.543596], [47.369675, 8.529953], [47.402137, 8.495218], [47.341291, 8.524714], [47.359591, 8.522386], [47.414333, 8.551872], [47.354498, 8.523474], [47.370704, 8.549359], [47.387474, 8.48751], [47.389081, 8.494734], [47.363638, 8.566595], [47.37874, 8.519637], [47.3896, 8.521222], [47.372964, 8.520712], [47.359122, 8.507087], [47.37918, 8.529313], [47.349637, 8.561534], [47.376693, 8.526866], [47.420287, 8.509122], [47.370676, 8.537256], [47.387523, 8.518305], [47.364612, 8.537369], [47.37395, 8.544818], [47.39391, 8.505625], [47.403686, 8.539421], [47.388225, 8.520161], [47.412018, 8.546643], [47.377095, 8.529072], [47.392449, 8.52434], [47.393378, 8.499932], [47.393404, 8.500065], [47.353647, 8.524119], [47.35881, 8.557133], [47.387357, 8.514858], [47.376758, 8.528615], [47.410686, 8.571778], [47.346632, 8.528714], [47.334904, 8.518047], [47.394847, 8.525753], [47.390414, 8.510152], [47.372533, 8.478582], [47.419762, 8.504619], [47.343818, 8.535194], [47.375497, 8.526828], [47.394664, 8.518371], [47.421521, 8.499207], [47.378516, 8.541404], [47.362098, 8.547233], [47.369072, 8.541381], [47.390959, 8.522084], [47.402246, 8.486277], [47.365101, 8.534229], [47.359398, 8.553068], [47.375329, 8.516019], [47.3788, 8.509375], [47.337921, 8.530071], [47.362488, 8.522273], [47.342552, 8.531158], [47.374911, 8.532656], [47.362551, 8.548752], [47.417188, 8.544007], [47.398291, 8.532473], [47.361281, 8.55087], [47.383208, 8.543673], [47.37026, 8.548833], [47.368886, 8.535379], [47.366976, 8.518512], [47.370187, 8.548911], [47.35949, 8.568559], [47.379291, 8.515596], [47.387145, 8.473027], [47.352022, 8.525634], [47.362602, 8.520713], [47.353564, 8.554482], [47.35316, 8.525168], [47.399062, 8.542293], [47.407189, 8.586146], [47.383877, 8.527238], [47.382163, 8.508516], [47.39208, 8.499217], [47.350557, 8.578733], [47.384544, 8.493147], [47.414064, 8.529166], [47.361464, 8.549577], [47.386256, 8.480916], [47.401576, 8.531415], [47.368973, 8.540438], [47.368825, 8.535113], [47.409234, 8.547101], [47.402342, 8.499316], [47.413807, 8.571831], [47.364402, 8.546209], [47.396325, 8.543455], [47.393096, 8.513848], [47.387672, 8.517699], [47.389104, 8.517543], [47.397491, 8.532431], [47.415041, 8.52093], [47.358186, 8.554618], [47.383051, 8.500018], [47.372224, 8.515188], [47.402307, 8.499315], [47.333519, 8.518906], [47.413627, 8.481028], [47.385021, 8.495024], [47.429927, 8.538187], [47.383167, 8.532838], [47.404871, 8.576782], [47.375149, 8.491571], [47.363431, 8.548042], [47.364882, 8.530782], [47.362159, 8.547513], [47.366416, 8.54821], [47.40871, 8.546402], [47.381224, 8.537646], [47.371734, 8.519508], [47.410572, 8.550177], [47.4226, 8.511939], [47.397778, 8.533483], [47.37674, 8.559655], [47.349612, 8.561335], [47.337064, 8.519811], [47.402809, 8.498477], [47.36415, 8.563004], [47.420147, 8.554406], [47.410909, 8.561792], [47.367976, 8.524106], [47.380417, 8.517327], [47.382203, 8.545347], [47.404093, 8.564338], [47.390836, 8.478741], [47.369868, 8.556783], [47.363244, 8.55344], [47.385378, 8.529281], [47.360422, 8.550416], [47.370561, 8.54929], [47.360032, 8.550672], [47.405162, 8.559908], [47.352368, 8.573848], [47.362173, 8.550677], [47.388271, 8.520082], [47.380444, 8.534451], [47.348359, 8.562526], [47.377674, 8.542022], [47.36457, 8.554924], [47.384543, 8.534761], [47.39526, 8.5085], [47.402352, 8.499303], [47.398743, 8.495521], [47.360099, 8.554036], [47.375785, 8.516293], [47.377909, 8.541855], [47.405609, 8.549914], [47.397683, 8.541589], [47.379596, 8.554524], [47.399909, 8.543079], [47.373328, 8.528902], [47.382236, 8.537163], [47.393327, 8.525669], [47.355341, 8.600505], [47.375934, 8.553626], [47.390868, 8.522281], [47.377397, 8.501494], [47.349521, 8.532307], [47.386072, 8.49625], [47.374034, 8.544555], [47.363781, 8.574912], [47.371259, 8.52314], [47.381861, 8.531116], [47.381717, 8.531114], [47.3607, 8.529703], [47.402656, 8.55396], [47.374236, 8.524127], [47.384574, 8.545701], [47.387116, 8.485331], [47.368331, 8.529396], [47.381151, 8.537737], [47.372638, 8.534291], [47.372947, 8.528246], [47.373942, 8.540912], [47.403336, 8.536499], [47.355472, 8.553463], [47.372673, 8.52101], [47.345031, 8.529661], [47.383746, 8.573576], [47.380352, 8.528066], [47.372714, 8.534809], [47.37768, 8.537586], [47.388642, 8.525613], [47.367653, 8.534519], [47.41, 8.543155], [47.398034, 8.535926], [47.417574, 8.513547], [47.405673, 8.585756], [47.401406, 8.485651], [47.402039, 8.499018], [47.3831, 8.57245], [47.387799, 8.53296], [47.389125, 8.494801], [47.424032, 8.550763], [47.361502, 8.525775], [47.36114, 8.535497], [47.402307, 8.55276], [47.342679, 8.531055], [47.375472, 8.541844], [47.373757, 8.515775], [47.33799, 8.537919], [47.405683, 8.492082], [47.377143, 8.535456], [47.36997, 8.520545], [47.340144, 8.529944], [47.412004, 8.52442], [47.385816, 8.5248], [47.378867, 8.531042], [47.380266, 8.527654], [47.366456, 8.547774], [47.387006, 8.53403], [47.374895, 8.501656], [47.366492, 8.517363], [47.372655, 8.534463], [47.370601, 8.529999], [47.375779, 8.530356], [47.388063, 8.490912], [47.352202, 8.558543], [47.347448, 8.532754], [47.366268, 8.548565], [47.4059, 8.533544], [47.388064, 8.537204], [47.396127, 8.544431], [47.33544, 8.519342], [47.39739, 8.520227], [47.38969, 8.537476], [47.363397, 8.535544], [47.374367, 8.521694], [47.353481, 8.53215], [47.422574, 8.507856], [47.398201, 8.516203], [47.419392, 8.547763], [47.377946, 8.541829], [47.369893, 8.552348], [47.360813, 8.509954], [47.377349, 8.498884], [47.386725, 8.547415], [47.391677, 8.519409], [47.418862, 8.530643], [47.405564, 8.549966], [47.410694, 8.571871], [47.377109, 8.54838], [47.382121, 8.475591], [47.365028, 8.548407], [47.386289, 8.518413], [47.393301, 8.478683], [47.345223, 8.528341], [47.40806, 8.572597], [47.386487, 8.518404], [47.366877, 8.541401], [47.365141, 8.530906], [47.365692, 8.549519], [47.374455, 8.539996], [47.410408, 8.53622], [47.374167, 8.540917], [47.380881, 8.512873], [47.364687, 8.547433], [47.367227, 8.539595], [47.370952, 8.52324], [47.385863, 8.485597], [47.376776, 8.559603], [47.360169, 8.54771], [47.358193, 8.55209], [47.411957, 8.517939], [47.378335, 8.557464], [47.425473, 8.542098], [47.40459, 8.486615], [47.353356, 8.511882], [47.405155, 8.478809], [47.401175, 8.593025], [47.377856, 8.526664], [47.370188, 8.548805], [47.367863, 8.539859], [47.348513, 8.534298], [47.371443, 8.550182], [47.408963, 8.550064], [47.366246, 8.527275], [47.370533, 8.524833], [47.370981, 8.493898], [47.383211, 8.506034], [47.389213, 8.544089], [47.376939, 8.535147], [47.412095, 8.517531], [47.373339, 8.531538], [47.378279, 8.577896], [47.387709, 8.532971], [47.380726, 8.533186], [47.394715, 8.525459], [47.41627, 8.544134], [47.397907, 8.534148], [47.373617, 8.536377], [47.368735, 8.52473], [47.364552, 8.558631], [47.37916, 8.542808], [47.402115, 8.535241], [47.357915, 8.52169], [47.41217, 8.550422], [47.393264, 8.49373], [47.396575, 8.538002], [47.36187, 8.547599], [47.37537, 8.557984], [47.425266, 8.55336], [47.380699, 8.518856], [47.357091, 8.552544], [47.370209, 8.495724], [47.386185, 8.51808], [47.372562, 8.517565], [47.37276, 8.53383], [47.39222, 8.517169], [47.411163, 8.570834], [47.377769, 8.53772], [47.392405, 8.491263], [47.402744, 8.554161], [47.350029, 8.52427], [47.378853, 8.568943], [47.343391, 8.535675], [47.380608, 8.512232], [47.378624, 8.559152], [47.402343, 8.552801], [47.368478, 8.544228], [47.36453, 8.55442], [47.381443, 8.534445], [47.419943, 8.503549], [47.379577, 8.527282], [47.378803, 8.519612], [47.359861, 8.549768], [47.404884, 8.572688], [47.339488, 8.527999], [47.406934, 8.550552], [47.380343, 8.528053], [47.380159, 8.541782], [47.405149, 8.481564], [47.382235, 8.509471], [47.368936, 8.529091], [47.37708, 8.543943], [47.374457, 8.541664], [47.358158, 8.548184], [47.425091, 8.5482], [47.407946, 8.583288], [47.393266, 8.530317], [47.362261, 8.559311], [47.358035, 8.519482], [47.410913, 8.563223], [47.362234, 8.54713], [47.37125, 8.507714], [47.388292, 8.497394], [47.379402, 8.523902], [47.400448, 8.595527], [47.377524, 8.538854], [47.356494, 8.510092], [47.363048, 8.546671], [47.382572, 8.546189], [47.368498, 8.53075], [47.334839, 8.530617], [47.370535, 8.513089], [47.37656, 8.541827], [47.377958, 8.548067], [47.354809, 8.556877], [47.409034, 8.545454], [47.359165, 8.532187], [47.366753, 8.549581], [47.360729, 8.54747], [47.383099, 8.543777], [47.384408, 8.53191], [47.372638, 8.534317], [47.366045, 8.532341], [47.370134, 8.548804], [47.379923, 8.541936], [47.374338, 8.525719], [47.383895, 8.542376], [47.364659, 8.537185], [47.369031, 8.540943], [47.373129, 8.528064], [47.391003, 8.521316], [47.378376, 8.541057], [47.379901, 8.511874], [47.388476, 8.491053], [47.366278, 8.544739], [47.360423, 8.526692], [47.375982, 8.524971], [47.359733, 8.535866], [47.393815, 8.547231], [47.36692, 8.544368], [47.409858, 8.549553], [47.375659, 8.537319], [47.36386, 8.53419], [47.348158, 8.562773], [47.404169, 8.574025], [47.364406, 8.552286], [47.357786, 8.550414], [47.382612, 8.48703], [47.393465, 8.483442], [47.374313, 8.542641], [47.378408, 8.50995], [47.386265, 8.518094], [47.394393, 8.541414], [47.389598, 8.521487], [47.394616, 8.521615], [47.362521, 8.518739], [47.392292, 8.511289], [47.373515, 8.598319], [47.411841, 8.53788], [47.391317, 8.537576], [47.41394, 8.519371], [47.403475, 8.497417], [47.387121, 8.542734], [47.377127, 8.541825], [47.366648, 8.547434], [47.387801, 8.544086], [47.366362, 8.55565], [47.378493, 8.514335], [47.375322, 8.48539], [47.376968, 8.543438], [47.425715, 8.494029], [47.369434, 8.52591], [47.368159, 8.541825], [47.398054, 8.534747], [47.403164, 8.540324], [47.381402, 8.535888], [47.390705, 8.522383], [47.368573, 8.541794], [47.37754, 8.511363], [47.37647, 8.483797], [47.384418, 8.500045], [47.37305, 8.495886], [47.416318, 8.50838], [47.367688, 8.495012], [47.404466, 8.559324], [47.389719, 8.511436], [47.363675, 8.563696], [47.369181, 8.527944], [47.40663, 8.545709], [47.364042, 8.531109], [47.387573, 8.497353], [47.351896, 8.50542], [47.39208, 8.499204], [47.41785, 8.556611], [47.370116, 8.54883], [47.395203, 8.540385], [47.361261, 8.521705], [47.360502, 8.524033], [47.393279, 8.521204], [47.364217, 8.556042], [47.400404, 8.500748], [47.358006, 8.525372], [47.40537, 8.503616], [47.394068, 8.493362], [47.36735, 8.519883], [47.388428, 8.526284], [47.408528, 8.546596], [47.367086, 8.540148], [47.402921, 8.491086], [47.378665, 8.539963], [47.371651, 8.534972], [47.353552, 8.55382], [47.367227, 8.559164], [47.395058, 8.522472], [47.366471, 8.541525], [47.388298, 8.536255], [47.373808, 8.536116], [47.367354, 8.507821], [47.377787, 8.522438], [47.398169, 8.585952], [47.397323, 8.531155], [47.419941, 8.506664], [47.372332, 8.542812], [47.399304, 8.495201], [47.389324, 8.520991], [47.338638, 8.538872], [47.365466, 8.546893], [47.418871, 8.530643], [47.359525, 8.548199], [47.378557, 8.575214], [47.392249, 8.516957], [47.365626, 8.539495], [47.369195, 8.525561], [47.370188, 8.548805], [47.388198, 8.536333], [47.38143, 8.537743], [47.369248, 8.525615], [47.362278, 8.547303], [47.357428, 8.521866], [47.367499, 8.552496], [47.388226, 8.473856], [47.3752, 8.518294], [47.353944, 8.526918], [47.353339, 8.55539], [47.394946, 8.486809], [47.326952, 8.518998], [47.372573, 8.534528], [47.391362, 8.537524], [47.393343, 8.539194], [47.366831, 8.54336], [47.370645, 8.532039], [47.406952, 8.550592], [47.352175, 8.525651], [47.357567, 8.555373], [47.374967, 8.560584], [47.361421, 8.52572], [47.364194, 8.554718], [47.373668, 8.553618], [47.368878, 8.539986], [47.383166, 8.506059], [47.364473, 8.53689], [47.410611, 8.544215], [47.375951, 8.541629], [47.387701, 8.53664], [47.377628, 8.522157], [47.343673, 8.535271], [47.373362, 8.534782], [47.362278, 8.547303], [47.393907, 8.50593], [47.335101, 8.518078], [47.382874, 8.540037], [47.360784, 8.548239], [47.376515, 8.543706], [47.370463, 8.510135], [47.387692, 8.53664], [47.360297, 8.566934], [47.385445, 8.536382], [47.37654, 8.548633], [47.389009, 8.488798], [47.385684, 8.519685], [47.380702, 8.525279], [47.404902, 8.585408], [47.420677, 8.503935], [47.392692, 8.486394], [47.348213, 8.562682], [47.410606, 8.568941], [47.386872, 8.502147], [47.380368, 8.549958], [47.385317, 8.536618], [47.36922, 8.518094], [47.371688, 8.5196], [47.384119, 8.531176], [47.369061, 8.528325], [47.366033, 8.521193], [47.376125, 8.535581], [47.366544, 8.545141], [47.427326, 8.552396], [47.387418, 8.484688], [47.383507, 8.495405], [47.393449, 8.512637], [47.373825, 8.544697], [47.416543, 8.553098], [47.391388, 8.538584], [47.396832, 8.529807], [47.377639, 8.543769], [47.376147, 8.541779], [47.396581, 8.528848], [47.39218, 8.517539], [47.378526, 8.50982], [47.385424, 8.500197], [47.384859, 8.531827], [47.408071, 8.494527], [47.338351, 8.532131], [47.376918, 8.524023], [47.384484, 8.538137], [47.4043, 8.54476], [47.341495, 8.518313], [47.388236, 8.551208], [47.379108, 8.538741], [47.355124, 8.561557], [47.343651, 8.519521], [47.370516, 8.493664], [47.373852, 8.517128], [47.376104, 8.512923], [47.378208, 8.525533], [47.37603, 8.559587], [47.369314, 8.528171], [47.379962, 8.547353], [47.360568, 8.567801], [47.397113, 8.530568], [47.377377, 8.498819], [47.376193, 8.544507], [47.405672, 8.489312], [47.38334, 8.515413], [47.34919, 8.56212], [47.368682, 8.501347], [47.370322, 8.548874], [47.391038, 8.522297], [47.359647, 8.547712], [47.380292, 8.512411], [47.369624, 8.532468], [47.385656, 8.501315], [47.377402, 8.479234], [47.370736, 8.524308], [47.37893, 8.523349], [47.374602, 8.514813], [47.422306, 8.550647], [47.393348, 8.525391], [47.372882, 8.53607], [47.361307, 8.533978], [47.378208, 8.530326], [47.361501, 8.560685], [47.378795, 8.542376], [47.364838, 8.532542], [47.352965, 8.57807], [47.404941, 8.552948], [47.378924, 8.526885], [47.392792, 8.52334], [47.361406, 8.533994], [47.406467, 8.583666], [47.379768, 8.528981], [47.376601, 8.521395], [47.373289, 8.533059], [47.368912, 8.500862], [47.427923, 8.490573], [47.378867, 8.544205], [47.368067, 8.560704], [47.370079, 8.548882], [47.381158, 8.536982], [47.370202, 8.558498], [47.380548, 8.519674], [47.381821, 8.533499], [47.389171, 8.515226], [47.364209, 8.555936], [47.410476, 8.53283], [47.367904, 8.495956], [47.368336, 8.522127], [47.373163, 8.532977], [47.371428, 8.546077], [47.394722, 8.540878], [47.348286, 8.562643], [47.35402, 8.559362], [47.357721, 8.534633], [47.359252, 8.535379], [47.412781, 8.51728], [47.371632, 8.472726], [47.326919, 8.517727], [47.358633, 8.555846], [47.341684, 8.530638], [47.390923, 8.523116], [47.377449, 8.500701], [47.367678, 8.495078], [47.392034, 8.517827], [47.388621, 8.481943], [47.415097, 8.510118], [47.386803, 8.489086], [47.380336, 8.536383], [47.391384, 8.537087], [47.426172, 8.554598], [47.377422, 8.541977], [47.397603, 8.586722], [47.398271, 8.537428], [47.370057, 8.564162], [47.369662, 8.525636], [47.375105, 8.516822], [47.367829, 8.546227], [47.394769, 8.52546], [47.372713, 8.517714], [47.379082, 8.522478], [47.381252, 8.51745], [47.357927, 8.519506], [47.371674, 8.535423], [47.376436, 8.529376], [47.37619, 8.529729], [47.360518, 8.549795], [47.350895, 8.53444], [47.404378, 8.550723], [47.414152, 8.518792], [47.373897, 8.544698], [47.370382, 8.518819], [47.41434, 8.572452], [47.41258, 8.525306], [47.369771, 8.543487], [47.422788, 8.535959], [47.365045, 8.531579], [47.359995, 8.522408], [47.382391, 8.548225], [47.364852, 8.56666], [47.377626, 8.522356], [47.37767, 8.519549], [47.378725, 8.527967], [47.38906, 8.517383], [47.373275, 8.535482], [47.385484, 8.530423], [47.378124, 8.527729], [47.381968, 8.529304], [47.362326, 8.553474], [47.358358, 8.583891], [47.36591, 8.532365], [47.421136, 8.50189], [47.397277, 8.50821], [47.371309, 8.546286], [47.392487, 8.491092], [47.368557, 8.524488], [47.37473, 8.543219], [47.390842, 8.522108], [47.383384, 8.548815], [47.378816, 8.559831], [47.394722, 8.540852], [47.382665, 8.575513], [47.378283, 8.541359], [47.37181, 8.540047], [47.375083, 8.553277], [47.374167, 8.54473], [47.40376, 8.548551], [47.377999, 8.529541], [47.378904, 8.530844], [47.379721, 8.51183], [47.370696, 8.537045], [47.371034, 8.518395], [47.369455, 8.526586], [47.374948, 8.541131], [47.386674, 8.473415], [47.37235, 8.545659], [47.356598, 8.552388], [47.368663, 8.552057], [47.371521, 8.519199], [47.373082, 8.532989], [47.367901, 8.49634], [47.388493, 8.486219], [47.373906, 8.544778], [47.408808, 8.546483], [47.378077, 8.483193], [47.377851, 8.507886], [47.376456, 8.509884], [47.384552, 8.503014], [47.370131, 8.539721], [47.372603, 8.53327], [47.346434, 8.564325], [47.386743, 8.519958], [47.40921, 8.544901], [47.366576, 8.545552], [47.378389, 8.54062], [47.405972, 8.590069], [47.376536, 8.534901], [47.378702, 8.543619], [47.350109, 8.56108], [47.39898, 8.54147], [47.384215, 8.528529], [47.357224, 8.508055], [47.382779, 8.531122], [47.382063, 8.536418], [47.347438, 8.532873], [47.355047, 8.523512], [47.376042, 8.565718], [47.341, 8.533601], [47.369108, 8.547949], [47.369809, 8.4932], [47.361802, 8.560228], [47.412722, 8.545425], [47.371444, 8.527368], [47.411682, 8.509784], [47.370714, 8.535205], [47.405851, 8.591312], [47.392781, 8.523485], [47.424729, 8.553031], [47.379128, 8.522413], [47.394171, 8.48996], [47.36951, 8.543535], [47.378, 8.511226], [47.335607, 8.540649], [47.387461, 8.545735], [47.37209, 8.549361], [47.39865, 8.539197], [47.383569, 8.54074], [47.387292, 8.545519], [47.402091, 8.552769], [47.371104, 8.537689], [47.359437, 8.521509], [47.402545, 8.535462], [47.378101, 8.526418], [47.404451, 8.594633], [47.375427, 8.526628], [47.366099, 8.562331], [47.399594, 8.543032], [47.400769, 8.542447], [47.383992, 8.548179], [47.409278, 8.550057], [47.375792, 8.527059], [47.404796, 8.483717], [47.350275, 8.560647], [47.420824, 8.501566], [47.370188, 8.539444], [47.361291, 8.547918], [47.378274, 8.509749], [47.38309, 8.528625], [47.373876, 8.536554], [47.367119, 8.52344], [47.390887, 8.486093], [47.358256, 8.550159], [47.387271, 8.500804], [47.395888, 8.494021], [47.362988, 8.549158], [47.381184, 8.491664], [47.377014, 8.539532], [47.367517, 8.494042], [47.406566, 8.576341], [47.358918, 8.516429], [47.361084, 8.549847], [47.366079, 8.496899], [47.354892, 8.558573], [47.373727, 8.53328], [47.370179, 8.548792], [47.405687, 8.591494], [47.375141, 8.518809], [47.38246, 8.492815], [47.378156, 8.509892], [47.387596, 8.486929], [47.364524, 8.531516], [47.418625, 8.547125], [47.371283, 8.529178], [47.412306, 8.568924], [47.374726, 8.527541], [47.369454, 8.531405], [47.378504, 8.566022], [47.35477, 8.57476], [47.367742, 8.545934], [47.415067, 8.551371], [47.373235, 8.529165], [47.431152, 8.515995], [47.376792, 8.543023], [47.380155, 8.527916], [47.361982, 8.505132], [47.349907, 8.570699], [47.347365, 8.566674], [47.407103, 8.545136], [47.381076, 8.518056], [47.383468, 8.483855], [47.376024, 8.577663], [47.36652, 8.561625], [47.366391, 8.540398], [47.402884, 8.554534], [47.419156, 8.505999], [47.389492, 8.521299], [47.393436, 8.524651], [47.351771, 8.559408], [47.399573, 8.50509], [47.358239, 8.571405], [47.372099, 8.521886], [47.403926, 8.572257], [47.376202, 8.544508], [47.368938, 8.540279], [47.35855, 8.534491], [47.356829, 8.509861], [47.422318, 8.510263], [47.370621, 8.535481], [47.371499, 8.518656], [47.374297, 8.537688], [47.415698, 8.513138], [47.36036, 8.566936], [47.412131, 8.569305], [47.380151, 8.537849], [47.377206, 8.540105], [47.358917, 8.516469], [47.378782, 8.516076], [47.335582, 8.540516], [47.378689, 8.523159], [47.399852, 8.516714], [47.377034, 8.524105], [47.35383, 8.534169], [47.365055, 8.545653], [47.374397, 8.518556], [47.360354, 8.564804], [47.38143, 8.537743], [47.336422, 8.537265], [47.372792, 8.534228], [47.411115, 8.526138], [47.372027, 8.554882], [47.417282, 8.544579], [47.365728, 8.561608], [47.39713, 8.530648], [47.36556, 8.553899], [47.392004, 8.500686], [47.413977, 8.541144], [47.369257, 8.525668], [47.392253, 8.524163], [47.381441, 8.517467], [47.371277, 8.525113], [47.372696, 8.534888], [47.362477, 8.533963], [47.406351, 8.520025], [47.38419, 8.53123], [47.3416, 8.528121], [47.373894, 8.538421], [47.410408, 8.572567], [47.388579, 8.484644], [47.378555, 8.526877], [47.383202, 8.506033], [47.370602, 8.522279], [47.403339, 8.498593], [47.357441, 8.534746], [47.351609, 8.56319], [47.364276, 8.566648], [47.361322, 8.551308], [47.388809, 8.515391], [47.414225, 8.53402], [47.389758, 8.471514], [47.368258, 8.551214], [47.373046, 8.532988], [47.366427, 8.541432], [47.383015, 8.530836], [47.389285, 8.488128], [47.378473, 8.540238], [47.364559, 8.566217], [47.39805, 8.535184], [47.374215, 8.524458], [47.380596, 8.53456], [47.368429, 8.498522], [47.38344, 8.482967], [47.374319, 8.52491], [47.384928, 8.489513], [47.415242, 8.506132], [47.366112, 8.548892], [47.362807, 8.567901], [47.342356, 8.530929], [47.37657, 8.541787], [47.365515, 8.536064], [47.365608, 8.518616], [47.37569, 8.539677], [47.357601, 8.521644], [47.377265, 8.538703], [47.341549, 8.519254], [47.369404, 8.533827], [47.361168, 8.557858], [47.363559, 8.567268], [47.375655, 8.53961], [47.368273, 8.546793], [47.403301, 8.50266], [47.377013, 8.539611], [47.415538, 8.563082], [47.369187, 8.527361], [47.383046, 8.549285], [47.413548, 8.546568], [47.329661, 8.516936], [47.344807, 8.533388], [47.365648, 8.598863], [47.378633, 8.559152], [47.385289, 8.481401], [47.376983, 8.526713], [47.376381, 8.527574], [47.364335, 8.529605], [47.409826, 8.538819], [47.365054, 8.508569], [47.390975, 8.522389], [47.366806, 8.543187], [47.371007, 8.516475], [47.39804, 8.535277], [47.369115, 8.54158], [47.36434, 8.532889], [47.412957, 8.537797], [47.401279, 8.551202], [47.3701, 8.504699], [47.388264, 8.497472], [47.381812, 8.489862], [47.377522, 8.550388], [47.372619, 8.53441], [47.366226, 8.532213], [47.414787, 8.519256], [47.358012, 8.532388], [47.387934, 8.520499], [47.392688, 8.539101], [47.378863, 8.542788], [47.38712, 8.519026], [47.362639, 8.548026], [47.361572, 8.576401], [47.376626, 8.543391], [47.361351, 8.534112], [47.3757, 8.545212], [47.366565, 8.544824], [47.39771, 8.533044], [47.402146, 8.552757], [47.385075, 8.478192], [47.372099, 8.521833], [47.388775, 8.485827], [47.410208, 8.565408], [47.389753, 8.512615], [47.376436, 8.529323], [47.377679, 8.522476], [47.371343, 8.492714], [47.333379, 8.535681], [47.375766, 8.518279], [47.388431, 8.487078], [47.397087, 8.530501], [47.37104, 8.543394], [47.373988, 8.544581], [47.378301, 8.509802], [47.360947, 8.548136], [47.387149, 8.535066], [47.339185, 8.525783], [47.385692, 8.519738], [47.424515, 8.522568], [47.364351, 8.496918], [47.365583, 8.513532], [47.33819, 8.530116], [47.402092, 8.552743], [47.375512, 8.5638], [47.382232, 8.541348], [47.399887, 8.506103], [47.368781, 8.521752], [47.403867, 8.585479], [47.360443, 8.566792], [47.370734, 8.51684], [47.380456, 8.54833], [47.389542, 8.512041], [47.370336, 8.513164], [47.389018, 8.488825], [47.378403, 8.520094], [47.407196, 8.585458], [47.374822, 8.54583], [47.374798, 8.518869], [47.390923, 8.522123], [47.403853, 8.57688], [47.350721, 8.60194], [47.419693, 8.54826], [47.366805, 8.532807], [47.398056, 8.535463], [47.367284, 8.534485], [47.410219, 8.538138], [47.381935, 8.529039], [47.401703, 8.54823], [47.370335, 8.53905], [47.391764, 8.486495], [47.415019, 8.560951], [47.419578, 8.548085], [47.371287, 8.524041], [47.389016, 8.48901], [47.387312, 8.547188], [47.395971, 8.52673], [47.371774, 8.54284], [47.373197, 8.539877], [47.395104, 8.522261], [47.371495, 8.53632], [47.378031, 8.528098], [47.367543, 8.560905], [47.379704, 8.567438], [47.41556, 8.558948], [47.377684, 8.528607], [47.395725, 8.516511], [47.360281, 8.523552], [47.371797, 8.523363], [47.396079, 8.520929], [47.397735, 8.541788], [47.378119, 8.510037], [47.369144, 8.525242], [47.364724, 8.522729], [47.376721, 8.522946], [47.389494, 8.519074], [47.374095, 8.520947], [47.370179, 8.548805], [47.400035, 8.54585], [47.376968, 8.542471], [47.350114, 8.534344], [47.370708, 8.470364], [47.335722, 8.540003], [47.37505, 8.544603], [47.398479, 8.500789], [47.373429, 8.517212], [47.401703, 8.552032], [47.375563, 8.516951], [47.375555, 8.524499], [47.418038, 8.527406], [47.376294, 8.499155], [47.3818, 8.529963], [47.37651, 8.52526], [47.377652, 8.522449], [47.397293, 8.493797], [47.422373, 8.553048], [47.412699, 8.540296], [47.369072, 8.529054], [47.413874, 8.527347], [47.359642, 8.58691], [47.383325, 8.53994], [47.365185, 8.538586], [47.348486, 8.562409], [47.378957, 8.54234], [47.376944, 8.554349], [47.423142, 8.546026], [47.414946, 8.544292], [47.404357, 8.572306], [47.386141, 8.548316], [47.417981, 8.554175], [47.367876, 8.545963], [47.410909, 8.567397], [47.376392, 8.510068], [47.384892, 8.50906], [47.380414, 8.528134], [47.409063, 8.544249], [47.369125, 8.548002], [47.366375, 8.541179], [47.381679, 8.537099], [47.38149, 8.503456], [47.354107, 8.561548], [47.414444, 8.553425], [47.364079, 8.546096], [47.413901, 8.551028], [47.399816, 8.495291], [47.407702, 8.57887], [47.370182, 8.51328], [47.36358, 8.533323], [47.387271, 8.488009], [47.37017, 8.548805], [47.386545, 8.498524], [47.377796, 8.537747], [47.39056, 8.522433], [47.410393, 8.548225], [47.398491, 8.538889], [47.418316, 8.510209], [47.362312, 8.547423], [47.366492, 8.547709], [47.36765, 8.495262], [47.390433, 8.53969], [47.388535, 8.52067], [47.388161, 8.520252], [47.400925, 8.517411], [47.419484, 8.500651], [47.371732, 8.536854], [47.364528, 8.547165], [47.406002, 8.590586], [47.410596, 8.531613], [47.384126, 8.516025], [47.374386, 8.538683], [47.380901, 8.55818], [47.376747, 8.534508], [47.373297, 8.553822], [47.364978, 8.563843], [47.379463, 8.559858], [47.383471, 8.548128], [47.39922, 8.54264], [47.367119, 8.54424], [47.388343, 8.470825], [47.382582, 8.537621], [47.366945, 8.560415], [47.379484, 8.527611], [47.375456, 8.554768], [47.36496, 8.531061], [47.382205, 8.540341], [47.413901, 8.518761], [47.383049, 8.486376], [47.385084, 8.530891], [47.387814, 8.485715], [47.363609, 8.554798], [47.410458, 8.532896], [47.365108, 8.553254], [47.376969, 8.514702], [47.370973, 8.531582], [47.362645, 8.504417], [47.375309, 8.515211], [47.405241, 8.504898], [47.384691, 8.50262], [47.419842, 8.556162], [47.33536, 8.54112], [47.370161, 8.548791], [47.378791, 8.491762], [47.387679, 8.500481], [47.377875, 8.519845], [47.375205, 8.491426], [47.402551, 8.547969], [47.359241, 8.522273], [47.383868, 8.475426], [47.389473, 8.511696], [47.352335, 8.524886], [47.42705, 8.491656], [47.413751, 8.546016], [47.375831, 8.489797], [47.375857, 8.541071], [47.419614, 8.548099], [47.404276, 8.484502], [47.381405, 8.503918], [47.384501, 8.53823], [47.374068, 8.544741], [47.359232, 8.52226], [47.385879, 8.519001], [47.373143, 8.537002], [47.362529, 8.518858], [47.386434, 8.534601], [47.391233, 8.51593], [47.384367, 8.550346], [47.387348, 8.486421], [47.382873, 8.540103], [47.416544, 8.54178], [47.409588, 8.576432], [47.381522, 8.492068], [47.386493, 8.517808], [47.390758, 8.55085], [47.392115, 8.511974], [47.392116, 8.511921], [47.408526, 8.550585], [47.37814, 8.509693], [47.412104, 8.566601], [47.378786, 8.542376], [47.423852, 8.544172], [47.335088, 8.52996], [47.393653, 8.541598], [47.401969, 8.545824], [47.398738, 8.532867], [47.370316, 8.524948], [47.397043, 8.530341], [47.383884, 8.529304], [47.392228, 8.493909], [47.400254, 8.547392], [47.369098, 8.547975], [47.39111, 8.489197], [47.367427, 8.558016], [47.376009, 8.488992], [47.368483, 8.496656], [47.40413, 8.559662], [47.427123, 8.546347], [47.352459, 8.524187], [47.372429, 8.546839], [47.372638, 8.534264], [47.360299, 8.567689], [47.343301, 8.519488], [47.414, 8.519717], [47.417568, 8.509386], [47.400967, 8.550944], [47.355431, 8.552151], [47.380462, 8.512481], [47.372683, 8.535232], [47.372576, 8.553066], [47.389512, 8.512359], [47.42657, 8.548669], [47.361444, 8.602769], [47.419753, 8.501677], [47.388645, 8.520421], [47.367876, 8.496061], [47.391089, 8.479594], [47.386033, 8.517931], [47.39675, 8.509762], [47.359161, 8.535496], [47.364231, 8.533946], [47.367981, 8.546363], [47.414725, 8.519148], [47.37253, 8.553078], [47.402508, 8.535501], [47.383664, 8.536438], [47.386585, 8.496181], [47.374256, 8.523929], [47.401844, 8.55234], [47.36607, 8.496873], [47.382418, 8.548199], [47.36525, 8.538455], [47.386665, 8.541533], [47.368987, 8.538016], [47.386515, 8.547728], [47.378697, 8.510724], [47.406853, 8.550603], [47.354977, 8.552526], [47.411697, 8.53785], [47.393259, 8.530105], [47.398466, 8.53873], [47.399067, 8.589655], [47.371389, 8.550154], [47.386906, 8.490518], [47.422873, 8.541236], [47.385933, 8.519055], [47.386098, 8.518674], [47.400798, 8.54886], [47.42244, 8.550743], [47.364487, 8.566282], [47.380036, 8.535741], [47.393274, 8.473715], [47.415866, 8.507616], [47.393796, 8.545442], [47.373349, 8.542806], [47.357312, 8.51306], [47.402032, 8.5801], [47.405588, 8.550245], [47.402827, 8.553897], [47.350978, 8.577075], [47.38922, 8.470312], [47.363443, 8.533612], [47.38244, 8.514534], [47.393487, 8.544893], [47.365133, 8.567354], [47.405971, 8.481156], [47.369042, 8.528351], [47.40782, 8.580542], [47.369256, 8.519948], [47.365232, 8.538441], [47.423483, 8.551719], [47.422304, 8.497182], [47.391591, 8.514136], [47.406853, 8.550576], [47.364887, 8.548152], [47.407706, 8.538457], [47.335952, 8.529991], [47.394542, 8.540874], [47.366932, 8.54311], [47.410731, 8.571779], [47.378227, 8.510052], [47.411124, 8.546094], [47.36916, 8.525454], [47.339547, 8.520735], [47.369968, 8.547357], [47.378098, 8.520975], [47.394438, 8.538488], [47.416565, 8.547996], [47.365429, 8.547025], [47.370598, 8.524609], [47.382447, 8.499184], [47.34315, 8.530681], [47.365721, 8.548434], [47.368857, 8.547864], [47.374452, 8.549702], [47.393871, 8.504962], [47.425228, 8.50005], [47.369662, 8.52565], [47.388513, 8.478007], [47.412112, 8.563884], [47.382483, 8.530003], [47.381836, 8.533751], [47.386501, 8.523636], [47.379919, 8.527276], [47.389678, 8.511872], [47.390294, 8.509474], [47.366409, 8.541405], [47.420782, 8.549184], [47.370122, 8.564018], [47.379062, 8.489582], [47.36653, 8.540918], [47.395062, 8.503582], [47.387071, 8.519528], [47.396366, 8.525824], [47.357916, 8.521558], [47.386832, 8.490835], [47.372217, 8.532216], [47.367962, 8.540828], [47.381644, 8.540767], [47.341183, 8.530349], [47.396014, 8.483068], [47.359902, 8.521744], [47.365949, 8.545314], [47.404424, 8.533606], [47.364235, 8.536408], [47.421887, 8.510175], [47.416081, 8.56919], [47.405915, 8.537691], [47.402194, 8.496915], [47.414133, 8.518924], [47.36443, 8.530005], [47.41037, 8.542143], [47.340526, 8.531381], [47.36359, 8.519926], [47.36554, 8.532516], [47.378274, 8.526196], [47.382425, 8.481755], [47.420035, 8.546412], [47.408144, 8.546337], [47.40501, 8.585464], [47.386629, 8.534843], [47.385375, 8.530526], [47.373422, 8.561359], [47.408874, 8.539647], [47.359829, 8.522881], [47.370423, 8.497939], [47.414285, 8.53911], [47.388799, 8.491086], [47.425738, 8.553873], [47.411962, 8.527957], [47.361726, 8.55415], [47.386182, 8.518344], [47.424511, 8.553331], [47.403926, 8.572257], [47.395348, 8.525975], [47.374607, 8.532491], [47.36993, 8.521934], [47.365277, 8.538389], [47.385824, 8.532469], [47.422487, 8.510479], [47.388588, 8.483691], [47.397463, 8.533556], [47.37841, 8.500905], [47.37953, 8.529413], [47.369445, 8.525751], [47.353465, 8.576611], [47.381033, 8.532119], [47.409539, 8.540628], [47.364901, 8.547583], [47.352202, 8.558543], [47.355415, 8.531184], [47.390001, 8.49144], [47.364202, 8.547357], [47.416719, 8.514656], [47.373129, 8.534672], [47.394229, 8.488424], [47.419835, 8.504488], [47.361802, 8.560228], [47.360748, 8.550144], [47.369092, 8.52303], [47.414345, 8.551621], [47.346459, 8.528896], [47.376341, 8.526011], [47.39824, 8.53699], [47.376944, 8.541199], [47.357102, 8.522111], [47.385982, 8.498156], [47.409114, 8.545496], [47.377842, 8.507899], [47.410149, 8.541674], [47.388593, 8.535506], [47.366396, 8.552089], [47.399753, 8.588543], [47.41231, 8.558297], [47.375148, 8.513235], [47.366912, 8.544302], [47.397243, 8.531154], [47.417081, 8.523026], [47.368496, 8.499159], [47.343559, 8.530239], [47.382414, 8.514361], [47.424717, 8.495971], [47.409603, 8.576711], [47.380607, 8.525807], [47.386996, 8.547367], [47.373361, 8.524467], [47.370179, 8.548792], [47.41969, 8.508474], [47.378863, 8.542735], [47.375177, 8.518744], [47.369275, 8.541769], [47.384206, 8.516106], [47.417824, 8.505004], [47.38247, 8.540943], [47.360139, 8.547987], [47.399813, 8.591539], [47.378809, 8.52287], [47.376228, 8.54088], [47.42699, 8.55549], [47.394464, 8.525295], [47.368941, 8.541881], [47.418516, 8.510041], [47.354321, 8.575584], [47.368198, 8.556456], [47.370452, 8.527665], [47.370152, 8.548791], [47.376222, 8.56755], [47.38234, 8.540344], [47.401295, 8.534443], [47.342032, 8.529083], [47.393203, 8.52458], [47.369265, 8.541848], [47.35911, 8.526613], [47.352747, 8.558065], [47.329331, 8.515633], [47.386825, 8.49061], [47.3901, 8.510053], [47.381561, 8.582575], [47.402133, 8.584368], [47.387383, 8.487587], [47.373235, 8.533005], [47.36903, 8.541049], [47.385529, 8.529457], [47.369329, 8.541796], [47.360933, 8.530754], [47.351041, 8.576997], [47.397194, 8.587216], [47.35553, 8.558587], [47.387316, 8.500778], [47.410321, 8.548197], [47.406853, 8.55059], [47.361185, 8.532692], [47.356936, 8.535848], [47.36641, 8.545072], [47.369538, 8.526322], [47.362627, 8.534244], [47.380027, 8.48343], [47.356202, 8.523059], [47.362185, 8.54754], [47.372749, 8.534982], [47.378615, 8.541472], [47.391744, 8.542817], [47.390566, 8.489716], [47.37519, 8.518334], [47.388385, 8.536522], [47.407139, 8.592055], [47.377153, 8.540091], [47.381532, 8.513522], [47.378212, 8.547833], [47.419587, 8.548033], [47.396906, 8.520032], [47.3849, 8.531271], [47.406503, 8.552384], [47.373296, 8.484675], [47.385266, 8.508538], [47.372719, 8.542807], [47.39311, 8.495728], [47.378516, 8.54143], [47.346495, 8.564498], [47.405923, 8.557447], [47.430381, 8.540582], [47.39178, 8.518935], [47.414299, 8.518517], [47.386857, 8.488094], [47.387047, 8.485912], [47.369783, 8.509803], [47.391359, 8.514939], [47.391379, 8.538637], [47.368741, 8.560731], [47.357849, 8.52296], [47.377317, 8.53983], [47.360478, 8.552045], [47.371004, 8.547207], [47.365492, 8.499125], [47.38105, 8.503315], [47.376266, 8.558347], [47.371105, 8.547911], [47.354313, 8.575491], [47.37762, 8.541994], [47.370922, 8.548264], [47.352195, 8.525386], [47.425733, 8.53651], [47.357365, 8.554906], [47.382997, 8.485144], [47.361915, 8.547627], [47.358177, 8.554631], [47.370457, 8.549804], [47.405028, 8.572691], [47.374096, 8.502474], [47.38435, 8.548398], [47.378262, 8.527388], [47.380984, 8.537336], [47.373183, 8.503886], [47.372089, 8.521925], [47.363763, 8.526363], [47.376038, 8.540995], [47.353124, 8.52706], [47.370725, 8.471477], [47.391181, 8.550859], [47.39252, 8.511055], [47.344124, 8.531415], [47.412126, 8.564295], [47.405877, 8.590504], [47.399971, 8.545041], [47.369384, 8.533138], [47.426024, 8.508376], [47.375874, 8.54119], [47.391221, 8.53919], [47.365211, 8.509102], [47.392332, 8.50313], [47.367424, 8.541558], [47.377927, 8.541921], [47.369141, 8.529333], [47.388334, 8.539104], [47.36413, 8.546375], [47.358442, 8.583615], [47.386504, 8.529119], [47.379242, 8.537976], [47.403, 8.591316], [47.36173, 8.561166], [47.374377, 8.551872], [47.373319, 8.531762], [47.36131, 8.563593], [47.401914, 8.552514], [47.365062, 8.547706], [47.373711, 8.535981], [47.367099, 8.539791], [47.38213, 8.515892], [47.364902, 8.53151], [47.367119, 8.544266], [47.368839, 8.496027], [47.372953, 8.475863], [47.374478, 8.528992], [47.407821, 8.545297], [47.392416, 8.506695], [47.408704, 8.580296], [47.380395, 8.548078], [47.365012, 8.531221], [47.386997, 8.490454], [47.409577, 8.549759], [47.378038, 8.527317], [47.398504, 8.546958], [47.40205, 8.584592], [47.426539, 8.546282], [47.391295, 8.520846], [47.376919, 8.539093], [47.430854, 8.550375], [47.402759, 8.491136], [47.378289, 8.551], [47.412073, 8.541794], [47.3759, 8.541297], [47.36988, 8.509024], [47.376983, 8.49076], [47.36366, 8.546657], [47.414437, 8.546666], [47.375442, 8.558065], [47.41718, 8.542973], [47.396232, 8.544711], [47.351869, 8.52571], [47.39, 8.539867], [47.384987, 8.484984], [47.379022, 8.518358], [47.391395, 8.514953], [47.389917, 8.512327], [47.377787, 8.531073], [47.357608, 8.553984], [47.371565, 8.562631], [47.419228, 8.507842], [47.411797, 8.537786], [47.358666, 8.585552], [47.378315, 8.543677], [47.422825, 8.535853], [47.367189, 8.545459], [47.364713, 8.554027], [47.411725, 8.537798], [47.398959, 8.505369], [47.378055, 8.509148], [47.40788, 8.565266], [47.370859, 8.535049], [47.363434, 8.515395], [47.394437, 8.525294], [47.400019, 8.545651], [47.413062, 8.558723], [47.399683, 8.543206], [47.387731, 8.521065], [47.415792, 8.553572], [47.381795, 8.489835], [47.374189, 8.54428], [47.362779, 8.548519], [47.377503, 8.541992], [47.402854, 8.549287], [47.396914, 8.541109], [47.408547, 8.529504], [47.381138, 8.518136], [47.363256, 8.499637], [47.364869, 8.566713], [47.356934, 8.535054], [47.377716, 8.537626], [47.410391, 8.543667], [47.411085, 8.545457], [47.398873, 8.533744], [47.372792, 8.534161], [47.40218, 8.55289], [47.369247, 8.541874], [47.397964, 8.533858], [47.369514, 8.536451], [47.369446, 8.526612], [47.379552, 8.537492], [47.390816, 8.469906], [47.392647, 8.48638], [47.409521, 8.537766], [47.398064, 8.535595], [47.383394, 8.484039], [47.41434, 8.517974], [47.356152, 8.532178], [47.376903, 8.537027], [47.357013, 8.52195], [47.387985, 8.545534], [47.399599, 8.50517], [47.368035, 8.540618], [47.351158, 8.582479], [47.375502, 8.545235], [47.399098, 8.547844], [47.408953, 8.54642], [47.383999, 8.5094], [47.372265, 8.535753], [47.383079, 8.540187], [47.371916, 8.519247], [47.374215, 8.532151], [47.393229, 8.524647], [47.372423, 8.53328], [47.339541, 8.529959], [47.412995, 8.544198], [47.386102, 8.518277], [47.402984, 8.576556], [47.399017, 8.522287], [47.416479, 8.511392], [47.388965, 8.537991], [47.383748, 8.534228], [47.40649, 8.562971], [47.38597, 8.517943], [47.388315, 8.520162], [47.348485, 8.534377], [47.41077, 8.55572], [47.389591, 8.521235], [47.381599, 8.536064], [47.377714, 8.541599], [47.369104, 8.555827], [47.408461, 8.503002], [47.365133, 8.567315], [47.387681, 8.486494], [47.384193, 8.489154], [47.370268, 8.548847], [47.388062, 8.520277], [47.387937, 8.491002], [47.364709, 8.554516], [47.36006, 8.59007], [47.407429, 8.494859], [47.404523, 8.571859], [47.37596, 8.535935], [47.382861, 8.529058], [47.39925, 8.542336], [47.365005, 8.56473], [47.379034, 8.524768], [47.370708, 8.516733], [47.397694, 8.596527], [47.360065, 8.568637], [47.379305, 8.49556], [47.370534, 8.524714], [47.372593, 8.534316], [47.403695, 8.570106], [47.370196, 8.550739], [47.393547, 8.529131], [47.375749, 8.496866], [47.364595, 8.566205], [47.373212, 8.535481], [47.363967, 8.549311], [47.402513, 8.499412], [47.367154, 8.523467], [47.394319, 8.493394], [47.363768, 8.53346], [47.400118, 8.549416], [47.365761, 8.565647], [47.387486, 8.499974], [47.416827, 8.506853], [47.421717, 8.550118], [47.388884, 8.479802], [47.39812, 8.536285], [47.3776, 8.538471], [47.363953, 8.566575], [47.428645, 8.552728], [47.367605, 8.544237], [47.374779, 8.527648], [47.386168, 8.545496], [47.340008, 8.530008], [47.363726, 8.563975], [47.415239, 8.550301], [47.414281, 8.518556], [47.36196, 8.547601], [47.417633, 8.538901], [47.406472, 8.549932], [47.40214, 8.487971], [47.410792, 8.544073], [47.380196, 8.506265], [47.359224, 8.535471], [47.425577, 8.494291], [47.400354, 8.477576], [47.393688, 8.472611], [47.376682, 8.555363], [47.373267, 8.519076], [47.389911, 8.517797], [47.420646, 8.504345], [47.430955, 8.550112], [47.338436, 8.531736], [47.420845, 8.549185], [47.391712, 8.485288], [47.36685, 8.543228], [47.377514, 8.548402], [47.363482, 8.535135], [47.397101, 8.594752], [47.403535, 8.485905], [47.413152, 8.483775], [47.405604, 8.490835], [47.372721, 8.535034], [47.397283, 8.594504], [47.392542, 8.502816], [47.375405, 8.549722], [47.363678, 8.520086], [47.358283, 8.553919], [47.33005, 8.534766], [47.374929, 8.54125], [47.406662, 8.495215], [47.388565, 8.48716], [47.398986, 8.505343], [47.349045, 8.562223], [47.363102, 8.517228], [47.343509, 8.535585], [47.330171, 8.529687], [47.379977, 8.541937], [47.383727, 8.50864], [47.412604, 8.517051], [47.358856, 8.534471], [47.394684, 8.52971], [47.384616, 8.502883], [47.394145, 8.529554], [47.372415, 8.5265], [47.369521, 8.526243], [47.373435, 8.531791], [47.418315, 8.508394], [47.427616, 8.54653], [47.376409, 8.527482], [47.341115, 8.53093], [47.372891, 8.535104], [47.417538, 8.513547], [47.390559, 8.484511], [47.371178, 8.516478], [47.374528, 8.537031], [47.379873, 8.542505], [47.368626, 8.543808], [47.430576, 8.550237], [47.361982, 8.526354], [47.373654, 8.534378], [47.382565, 8.514629], [47.389025, 8.477063], [47.387271, 8.488062], [47.369735, 8.543513], [47.378582, 8.542081], [47.411343, 8.525851], [47.384198, 8.516039], [47.381498, 8.534301], [47.372766, 8.535008], [47.39235, 8.503104], [47.382621, 8.529715], [47.357139, 8.514262], [47.408143, 8.552101], [47.366659, 8.55653], [47.377864, 8.516203], [47.404348, 8.572293], [47.420313, 8.503371], [47.328689, 8.513119], [47.419181, 8.506211], [47.387696, 8.486812], [47.369667, 8.533687], [47.391149, 8.487847], [47.364028, 8.551457], [47.340193, 8.535212], [47.429971, 8.549575], [47.376056, 8.559614], [47.37152, 8.517399], [47.394701, 8.525935], [47.396825, 8.541028], [47.360296, 8.532488], [47.373156, 8.503912], [47.363342, 8.557202], [47.381014, 8.535125], [47.409196, 8.538885], [47.416472, 8.534252], [47.379382, 8.524087], [47.405626, 8.565828], [47.376737, 8.548743], [47.397511, 8.532206], [47.388807, 8.530954], [47.393714, 8.50839], [47.390805, 8.522213], [47.3664, 8.540451], [47.394802, 8.525739], [47.371398, 8.522785], [47.381812, 8.541936], [47.354533, 8.556567], [47.360172, 8.523669], [47.369626, 8.525596], [47.398021, 8.534468], [47.406912, 8.586896], [47.406835, 8.550589], [47.406816, 8.550668], [47.409044, 8.550079], [47.419227, 8.506053], [47.365232, 8.547828], [47.363651, 8.598833], [47.377648, 8.543756], [47.383895, 8.546177], [47.398905, 8.586048], [47.41818, 8.546638], [47.340704, 8.537247], [47.390714, 8.508807], [47.385082, 8.498283], [47.399727, 8.504973], [47.406039, 8.550082], [47.386094, 8.518144], [47.38683, 8.512543], [47.372602, 8.53429], [47.364771, 8.554571], [47.402382, 8.535565], [47.427983, 8.545769], [47.376911, 8.499551], [47.390685, 8.489494], [47.366246, 8.553688], [47.368961, 8.528416], [47.363215, 8.567526], [47.420175, 8.548628], [47.379698, 8.516319], [47.422346, 8.538918], [47.378742, 8.510778], [47.380126, 8.528141], [47.375037, 8.519337], [47.360632, 8.524486], [47.416297, 8.545075], [47.354998, 8.52768], [47.388716, 8.537707], [47.333951, 8.528455], [47.397043, 8.530381], [47.369296, 8.528198], [47.376593, 8.52697], [47.363413, 8.547976], [47.367533, 8.545241], [47.385437, 8.521097], [47.364117, 8.536432], [47.391677, 8.519436], [47.41531, 8.562494], [47.410642, 8.551318], [47.391354, 8.537457], [47.424589, 8.536712], [47.371643, 8.521559], [47.373037, 8.547196], [47.370859, 8.535035], [47.402954, 8.486476], [47.383719, 8.539128], [47.381822, 8.541883], [47.385223, 8.517067], [47.347141, 8.563784], [47.361548, 8.561401], [47.377086, 8.543347], [47.370583, 8.531931], [47.369544, 8.541854], [47.382094, 8.537889], [47.383271, 8.493678], [47.401515, 8.487481], [47.355259, 8.534304], [47.383047, 8.51399], [47.376024, 8.53579], [47.403664, 8.57139], [47.335956, 8.515171], [47.367758, 8.496258], [47.387931, 8.486645], [47.419641, 8.548073], [47.340162, 8.529918], [47.378433, 8.534132], [47.37912, 8.522293], [47.402324, 8.499381], [47.37674, 8.53901], [47.37271, 8.534319], [47.375074, 8.553303], [47.356225, 8.558323], [47.409847, 8.567441], [47.367598, 8.539338], [47.373716, 8.536365], [47.376437, 8.528251], [47.404812, 8.576397], [47.382855, 8.5316], [47.427204, 8.546349], [47.358294, 8.586762], [47.39517, 8.52005], [47.391961, 8.517879], [47.394873, 8.517249], [47.405254, 8.480824], [47.400286, 8.588316], [47.375829, 8.563555], [47.370845, 8.519305], [47.378794, 8.542416], [47.378828, 8.542708], [47.373682, 8.553989], [47.373828, 8.537771], [47.377725, 8.511817], [47.414518, 8.556064], [47.406769, 8.584932], [47.369293, 8.527522], [47.417637, 8.50777], [47.372775, 8.519794], [47.334353, 8.539207], [47.369043, 8.528259], [47.369464, 8.525579], [47.403062, 8.49831], [47.368208, 8.496147], [47.372688, 8.538529], [47.409296, 8.553794], [47.356848, 8.527043], [47.378699, 8.542096], [47.3672, 8.528181], [47.400357, 8.585734], [47.416518, 8.511101], [47.367898, 8.539953], [47.377485, 8.541992], [47.405294, 8.528232], [47.368897, 8.489686], [47.378289, 8.528381], [47.368063, 8.541452], [47.377233, 8.526824], [47.36654, 8.544625], [47.382832, 8.533997], [47.384858, 8.531973], [47.410525, 8.550388], [47.420104, 8.548587], [47.366726, 8.53642], [47.380524, 8.512562], [47.383504, 8.498702], [47.376657, 8.515371], [47.388436, 8.53594], [47.405272, 8.558705], [47.418453, 8.508078], [47.373044, 8.53324], [47.386263, 8.53175], [47.409323, 8.545367], [47.363609, 8.535045], [47.412804, 8.543492], [47.414332, 8.547287], [47.368687, 8.528874], [47.390656, 8.509295], [47.360722, 8.52928], [47.409497, 8.49698], [47.367779, 8.535435], [47.399425, 8.517169], [47.386511, 8.497411], [47.410941, 8.571452], [47.367081, 8.53979], [47.401392, 8.490076], [47.375516, 8.48689], [47.376863, 8.540297], [47.413945, 8.544536], [47.415435, 8.52881], [47.425823, 8.547818], [47.339931, 8.535326], [47.384442, 8.503224], [47.371579, 8.515864], [47.386724, 8.516157], [47.360285, 8.600798], [47.405065, 8.565193], [47.371588, 8.515864], [47.351594, 8.525255], [47.361981, 8.549164], [47.370179, 8.548818], [47.382531, 8.529779], [47.363719, 8.551742], [47.358279, 8.555295], [47.371627, 8.517507], [47.354168, 8.553436], [47.369685, 8.520301], [47.368349, 8.551071], [47.379195, 8.544768], [47.375426, 8.528614], [47.371309, 8.518824], [47.416329, 8.54542], [47.372322, 8.523029], [47.374459, 8.530091], [47.370735, 8.524321], [47.391358, 8.515045], [47.368078, 8.54087], [47.40948, 8.549545], [47.39897, 8.533057], [47.378573, 8.542107], [47.373008, 8.531345], [47.381351, 8.534629], [47.370843, 8.570296], [47.363853, 8.549018], [47.365506, 8.545557], [47.425971, 8.493557], [47.37821, 8.532035], [47.403161, 8.537847], [47.383642, 8.548105], [47.354259, 8.575411], [47.414695, 8.519466], [47.377327, 8.538784], [47.382126, 8.512462], [47.402687, 8.547879], [47.402118, 8.548106], [47.385986, 8.518129], [47.419734, 8.53355], [47.374416, 8.541226], [47.403632, 8.550628], [47.376731, 8.524801], [47.356125, 8.557527], [47.39345, 8.491058], [47.427951, 8.536927], [47.397744, 8.533297], [47.36844, 8.565836], [47.418611, 8.503589], [47.368196, 8.538847], [47.377171, 8.540091], [47.359999, 8.595245], [47.356394, 8.510222], [47.397964, 8.533858], [47.425853, 8.493713], [47.414831, 8.551538], [47.36819, 8.524309], [47.40386, 8.569752], [47.386308, 8.531751], [47.370918, 8.543008], [47.385193, 8.530774], [47.378435, 8.540462], [47.387628, 8.47542], [47.416122, 8.531302], [47.365443, 8.545529], [47.427635, 8.546504], [47.36697, 8.520074], [47.376559, 8.541919], [47.361196, 8.600593], [47.36183, 8.561023], [47.397872, 8.534028], [47.425614, 8.494212], [47.385569, 8.517577], [47.376312, 8.48639], [47.377247, 8.538729], [47.369336, 8.536315], [47.425041, 8.539252], [47.369877, 8.508388], [47.398794, 8.499801], [47.377731, 8.537918], [47.333835, 8.514996], [47.369038, 8.541181], [47.383592, 8.548621], [47.414081, 8.51679], [47.375322, 8.48539], [47.421142, 8.548145], [47.374623, 8.514522], [47.380414, 8.483332], [47.379736, 8.527603], [47.379017, 8.54356], [47.414333, 8.483493], [47.408264, 8.550685], [47.381445, 8.571501], [47.365144, 8.553228], [47.390943, 8.473882], [47.377052, 8.533693], [47.406294, 8.582961], [47.371097, 8.520303], [47.386004, 8.535347], [47.373951, 8.502564], [47.362619, 8.55765], [47.355681, 8.560628], [47.387596, 8.486929], [47.369254, 8.491984], [47.374256, 8.544798], [47.408463, 8.546834], [47.368339, 8.551163], [47.356654, 8.523743], [47.405991, 8.580808], [47.386686, 8.534553], [47.354135, 8.527689], [47.388009, 8.490991], [47.368959, 8.524788], [47.35581, 8.531298], [47.366991, 8.535009], [47.386126, 8.514675], [47.354841, 8.574814], [47.370197, 8.548819], [47.363515, 8.569995], [47.379928, 8.537672], [47.410918, 8.545003], [47.362579, 8.568148], [47.357802, 8.547806], [47.366007, 8.562527], [47.370188, 8.511665], [47.363304, 8.548093], [47.37499, 8.545158], [47.379426, 8.542244], [47.378411, 8.54111], [47.404242, 8.561943], [47.339478, 8.535674], [47.370574, 8.548866], [47.411078, 8.52627], [47.387587, 8.486929], [47.405116, 8.4822], [47.424719, 8.495745], [47.414197, 8.545482], [47.388801, 8.48788], [47.379388, 8.555579], [47.372437, 8.524157], [47.387778, 8.52941], [47.383563, 8.475275], [47.39599, 8.545514], [47.364428, 8.531209], [47.384296, 8.528531], [47.378282, 8.509881], [47.374368, 8.521641], [47.414041, 8.525866], [47.367929, 8.546097], [47.419179, 8.506423], [47.369867, 8.54194], [47.358786, 8.516055], [47.414095, 8.550436], [47.371579, 8.51589], [47.400647, 8.502753], [47.409255, 8.544955], [47.406041, 8.553594], [47.391028, 8.52243], [47.376365, 8.528289], [47.376168, 8.551777], [47.381504, 8.513601], [47.403445, 8.579084], [47.361276, 8.517284], [47.368651, 8.483048], [47.376593, 8.534637], [47.377517, 8.511918], [47.37665, 8.541815], [47.397367, 8.531289], [47.376056, 8.515147], [47.387868, 8.479703], [47.365176, 8.547112], [47.402455, 8.582719], [47.366937, 8.492574], [47.384375, 8.531658], [47.380764, 8.518672], [47.382952, 8.530847], [47.382184, 8.492504], [47.389307, 8.494579], [47.382976, 8.543536], [47.329832, 8.530316], [47.350431, 8.532246], [47.364776, 8.531495], [47.375872, 8.516626], [47.404529, 8.574973], [47.372482, 8.538379], [47.368027, 8.530105], [47.371716, 8.519548], [47.387377, 8.52523], [47.403798, 8.497529], [47.371165, 8.530328], [47.391036, 8.522549], [47.379235, 8.525368], [47.36435, 8.53469], [47.397682, 8.533163], [47.409028, 8.539531], [47.376921, 8.527493], [47.379721, 8.50705], [47.373468, 8.531249], [47.419151, 8.506542], [47.403884, 8.569183], [47.357579, 8.571695], [47.361922, 8.51551], [47.384692, 8.509268], [47.409035, 8.550065], [47.386149, 8.518039], [47.364252, 8.536475], [47.366943, 8.522946], [47.407206, 8.558719], [47.397917, 8.534069], [47.359728, 8.562567], [47.368918, 8.54053], [47.367925, 8.538947], [47.393393, 8.537738], [47.384179, 8.516158], [47.39235, 8.503104], [47.375997, 8.538637], [47.375996, 8.559308], [47.396974, 8.496228], [47.420463, 8.51342], [47.357738, 8.554463], [47.388585, 8.536354], [47.365897, 8.521376], [47.375721, 8.53548], [47.337298, 8.53506], [47.38496, 8.495791], [47.392245, 8.537423], [47.354141, 8.557102], [47.350336, 8.56082], [47.409216, 8.547114], [47.374445, 8.578979], [47.400159, 8.548834], [47.329894, 8.512178], [47.391054, 8.489395], [47.378558, 8.575201], [47.387031, 8.547395], [47.384791, 8.531375], [47.3932, 8.530647], [47.407122, 8.554385], [47.379967, 8.527912], [47.382813, 8.532262], [47.361768, 8.552575], [47.374021, 8.475063], [47.361819, 8.525543], [47.401807, 8.552366], [47.375802, 8.537441], [47.414345, 8.551607], [47.404028, 8.558984], [47.397061, 8.530382], [47.405855, 8.590927], [47.370172, 8.540132], [47.374614, 8.549732], [47.4097, 8.544421], [47.369767, 8.508571], [47.359635, 8.522427], [47.383491, 8.515641], [47.392461, 8.528857], [47.373511, 8.561428], [47.347862, 8.532789], [47.375489, 8.547605], [47.379728, 8.542621], [47.372791, 8.497642], [47.40438, 8.533579], [47.381822, 8.541896], [47.382262, 8.5476], [47.400652, 8.533979], [47.419079, 8.506487], [47.377528, 8.50972], [47.410648, 8.571923], [47.383088, 8.540267], [47.413516, 8.539544], [47.371121, 8.530128], [47.411187, 8.570172], [47.363053, 8.550881], [47.373244, 8.533019], [47.388979, 8.494997], [47.402045, 8.544527], [47.365403, 8.546879], [47.378992, 8.538712], [47.389702, 8.492759], [47.368128, 8.511729], [47.409881, 8.54624], [47.384314, 8.548411], [47.375932, 8.494526], [47.381446, 8.536008], [47.38167, 8.533245], [47.387903, 8.519942], [47.354922, 8.574763], [47.385979, 8.517956], [47.363776, 8.535485], [47.37438, 8.525071], [47.394718, 8.473174], [47.3705, 8.54909], [47.374488, 8.539374], [47.350383, 8.527811], [47.363437, 8.535121], [47.358933, 8.570281], [47.376639, 8.548622], [47.374716, 8.527607], [47.413985, 8.541264], [47.383378, 8.533373], [47.356905, 8.555042], [47.387209, 8.51912], [47.408763, 8.546482], [47.394864, 8.525793], [47.403559, 8.54701], [47.374272, 8.524155], [47.367821, 8.510836], [47.358158, 8.51787], [47.391189, 8.51581], [47.386228, 8.518213], [47.398012, 8.534481], [47.374457, 8.484605], [47.385287, 8.494486], [47.339955, 8.529927], [47.364223, 8.531033], [47.403564, 8.588864], [47.37305, 8.534498], [47.425962, 8.49357], [47.414932, 8.570782], [47.340116, 8.519556], [47.378236, 8.544338], [47.416747, 8.549683], [47.351038, 8.58192], [47.408856, 8.554554], [47.369892, 8.513526], [47.348291, 8.529211], [47.41456, 8.571185], [47.416097, 8.546197], [47.384163, 8.531203], [47.338969, 8.538125], [47.409124, 8.541719], [47.333843, 8.515036], [47.400242, 8.542065], [47.371502, 8.525065], [47.351472, 8.525795], [47.377593, 8.541994], [47.366295, 8.552325], [47.382442, 8.514309], [47.374124, 8.502343], [47.406755, 8.550468], [47.354534, 8.523475], [47.379402, 8.528669], [47.361102, 8.555381], [47.37377, 8.546748], [47.367985, 8.540233], [47.362037, 8.59746], [47.357871, 8.572205], [47.378727, 8.542891], [47.35819, 8.51922], [47.385132, 8.548494], [47.357734, 8.520906], [47.371836, 8.48801], [47.367937, 8.54619], [47.396462, 8.543285], [47.36447, 8.546661], [47.377531, 8.543794], [47.399472, 8.5332], [47.414141, 8.551259], [47.405379, 8.592653], [47.389627, 8.487089], [47.391546, 8.539925], [47.360938, 8.553736], [47.377001, 8.569738], [47.372256, 8.535739], [47.377449, 8.541978], [47.386236, 8.527961], [47.361811, 8.560228], [47.371082, 8.523798], [47.372982, 8.547327], [47.380812, 8.504833], [47.380025, 8.520709], [47.356156, 8.559924], [47.387577, 8.486969], [47.36199, 8.526499], [47.393132, 8.530195], [47.397778, 8.533549], [47.38771, 8.486269], [47.3689, 8.525277], [47.416537, 8.522564], [47.396019, 8.518756], [47.361095, 8.525038], [47.360053, 8.564308], [47.374316, 8.529955], [47.404564, 8.548197], [47.354904, 8.574789], [47.376852, 8.543342], [47.375812, 8.54013], [47.394454, 8.474506], [47.373253, 8.514852], [47.389975, 8.485479], [47.393765, 8.488018], [47.373506, 8.534825], [47.369059, 8.53803], [47.368285, 8.529488], [47.359443, 8.549283], [47.373619, 8.537052], [47.37446, 8.539426], [47.370947, 8.523835], [47.417796, 8.546286], [47.378842, 8.559924], [47.374714, 8.551442], [47.368201, 8.536411], [47.369084, 8.52777], [47.37878, 8.523055], [47.384726, 8.529718], [47.353815, 8.52624], [47.370263, 8.513308], [47.403862, 8.57688], [47.369233, 8.528117], [47.390722, 8.522437], [47.335034, 8.529972], [47.375886, 8.540886], [47.403427, 8.530605], [47.377506, 8.498464], [47.377543, 8.538815], [47.38021, 8.501749], [47.383926, 8.532483], [47.383915, 8.532735], [47.377367, 8.498951], [47.399673, 8.543299], [47.386252, 8.518558], [47.420858, 8.507663], [47.407866, 8.531107], [47.353596, 8.576138], [47.383392, 8.515613], [47.413262, 8.545436], [47.37045, 8.566275], [47.366841, 8.543214], [47.373824, 8.538288], [47.402172, 8.499286], [47.397012, 8.52222], [47.360515, 8.567707], [47.378274, 8.541346], [47.374289, 8.524221], [47.39075, 8.508821], [47.386477, 8.529118], [47.409394, 8.572307], [47.391204, 8.52287], [47.362624, 8.519284], [47.362734, 8.567979], [47.385212, 8.517199], [47.416702, 8.545905], [47.37845, 8.510176], [47.328508, 8.529521], [47.394311, 8.525371], [47.398327, 8.537217], [47.361962, 8.560469], [47.383345, 8.499361], [47.383116, 8.515289], [47.427546, 8.546343], [47.402038, 8.499177], [47.37902, 8.542394], [47.377723, 8.507129], [47.420801, 8.51283], [47.373444, 8.531844], [47.375839, 8.541057], [47.411115, 8.526191], [47.372073, 8.554816], [47.376718, 8.544121], [47.370257, 8.519756], [47.377223, 8.540225], [47.371909, 8.517181], [47.383375, 8.498978], [47.404047, 8.568139], [47.369234, 8.539411], [47.367405, 8.523631], [47.372267, 8.540255], [47.357862, 8.572204], [47.402351, 8.499329], [47.410909, 8.545003], [47.398073, 8.535635], [47.39249, 8.475899], [47.409162, 8.549936], [47.40649, 8.581282], [47.37516, 8.518704], [47.369757, 8.556158], [47.362506, 8.568279], [47.414124, 8.542698], [47.365968, 8.504007], [47.360438, 8.552455], [47.391372, 8.537444], [47.346636, 8.533015], [47.370178, 8.539457], [47.36963, 8.553521], [47.421387, 8.549806], [47.356408, 8.535506], [47.354772, 8.574535], [47.39384, 8.505452], [47.370846, 8.519292], [47.405126, 8.565472], [47.419943, 8.535264], [47.376943, 8.513628], [47.398846, 8.540381], [47.395428, 8.526136], [47.414708, 8.56056], [47.362912, 8.55616], [47.379244, 8.50802], [47.364595, 8.566205], [47.40413, 8.559622], [47.372472, 8.545158], [47.412745, 8.544948], [47.379809, 8.527459], [47.369714, 8.533476], [47.343639, 8.535085], [47.420551, 8.502952], [47.402059, 8.584592], [47.38493, 8.508889], [47.367245, 8.559204], [47.397964, 8.533858], [47.38284, 8.513999], [47.377052, 8.544048], [47.358582, 8.553673], [47.419384, 8.547631], [47.370215, 8.548832], [47.343391, 8.535675], [47.366443, 8.533078], [47.359391, 8.594874], [47.390128, 8.532094], [47.371805, 8.522502], [47.413622, 8.553779], [47.369183, 8.518172], [47.419911, 8.506941], [47.356915, 8.532366], [47.387624, 8.490745], [47.370916, 8.549761], [47.356601, 8.523742], [47.374035, 8.546316], [47.361458, 8.561399], [47.366151, 8.521156], [47.381808, 8.51668], [47.368907, 8.501378], [47.383261, 8.499611], [47.385084, 8.530851], [47.366045, 8.532355], [47.356777, 8.527929], [47.363096, 8.508212], [47.388335, 8.519911], [47.379778, 8.527829], [47.354459, 8.557783], [47.412136, 8.550249], [47.369578, 8.525886], [47.419914, 8.547695], [47.401081, 8.544653], [47.376024, 8.538651], [47.328496, 8.514504], [47.385074, 8.501104], [47.41169, 8.562908], [47.414065, 8.550806], [47.410253, 8.549614], [47.418035, 8.505618], [47.389539, 8.536281], [47.383394, 8.548683], [47.41049, 8.550268], [47.412352, 8.523751], [47.377809, 8.531563], [47.407162, 8.586159], [47.397304, 8.531354], [47.380842, 8.538062], [47.391394, 8.537034], [47.395549, 8.517978], [47.356634, 8.553315], [47.381315, 8.542243], [47.396029, 8.485413], [47.391936, 8.533919], [47.376276, 8.557328], [47.369063, 8.525253], [47.377455, 8.543236], [47.385093, 8.530878], [47.374078, 8.546463], [47.371722, 8.517893], [47.387481, 8.486675], [47.371201, 8.547251], [47.381541, 8.51543], [47.404008, 8.496182], [47.391124, 8.538963], [47.407001, 8.481574], [47.358583, 8.519546], [47.374487, 8.53944], [47.392589, 8.539099], [47.390561, 8.50887], [47.36861, 8.546416], [47.356625, 8.553328], [47.364472, 8.536983], [47.364744, 8.557337], [47.369491, 8.553902], [47.420187, 8.503422], [47.369446, 8.540753], [47.384498, 8.531899], [47.36948, 8.533445], [47.399375, 8.495242], [47.339419, 8.519012], [47.400654, 8.502965], [47.397449, 8.546353], [47.378265, 8.509762], [47.372866, 8.535911], [47.362498, 8.568172], [47.365889, 8.501834], [47.367842, 8.564446], [47.378653, 8.544095], [47.405209, 8.593484], [47.378172, 8.530299], [47.377247, 8.538703], [47.414407, 8.554484], [47.373795, 8.535625], [47.35348, 8.556691], [47.391375, 8.528556], [47.370922, 8.508158], [47.340497, 8.51918], [47.368789, 8.540832], [47.365239, 8.501172], [47.408989, 8.572365], [47.362787, 8.548598], [47.399339, 8.542431], [47.376467, 8.491067], [47.373761, 8.536393], [47.363877, 8.497677], [47.374059, 8.544754], [47.370206, 8.548819], [47.37581, 8.535587], [47.388265, 8.493446], [47.364676, 8.537318], [47.38021, 8.501749], [47.37503, 8.549502], [47.41328, 8.545383], [47.379848, 8.543193], [47.363525, 8.535321], [47.368585, 8.499174], [47.374519, 8.545479], [47.358139, 8.572369], [47.374783, 8.503097], [47.410768, 8.567951], [47.389296, 8.543879], [47.398294, 8.536978], [47.393302, 8.524556], [47.385125, 8.516959], [47.389714, 8.511873], [47.386202, 8.529603], [47.382402, 8.530015], [47.375748, 8.53548], [47.373175, 8.527946], [47.378894, 8.527242], [47.376354, 8.537095], [47.397017, 8.530248], [47.41129, 8.545647], [47.387577, 8.486969], [47.387214, 8.476432], [47.38138, 8.534497], [47.365335, 8.564181], [47.401436, 8.50106], [47.391054, 8.489395], [47.371034, 8.535555], [47.371159, 8.53475], [47.379123, 8.533365], [47.364105, 8.546229], [47.378682, 8.54191], [47.41917, 8.506436], [47.373839, 8.537599], [47.376178, 8.539488], [47.374869, 8.527649], [47.378136, 8.519797], [47.362327, 8.504755], [47.368141, 8.541785], [47.370161, 8.548805], [47.379091, 8.538674], [47.386495, 8.529106], [47.374034, 8.531327], [47.430955, 8.550139], [47.374068, 8.544728], [47.425578, 8.494225], [47.43117, 8.516009], [47.368943, 8.496519], [47.392395, 8.503171], [47.362668, 8.551601], [47.387652, 8.533222], [47.382372, 8.487661], [47.392091, 8.498052], [47.373408, 8.525183], [47.365895, 8.545313], [47.360422, 8.597028], [47.392593, 8.524329], [47.382021, 8.551184], [47.408745, 8.550232], [47.335407, 8.51901], [47.370297, 8.518354], [47.368759, 8.492941], [47.355107, 8.534275], [47.402124, 8.496688], [47.367889, 8.52188], [47.376056, 8.559601], [47.377013, 8.543359], [47.378425, 8.50999], [47.3735, 8.534494], [47.364579, 8.537117], [47.375131, 8.525576], [47.375833, 8.544553], [47.379533, 8.554456], [47.399948, 8.504421], [47.374273, 8.524989], [47.407075, 8.586727], [47.383015, 8.529008], [47.378628, 8.499757], [47.388263, 8.519936], [47.410522, 8.572861], [47.403387, 8.497203], [47.394035, 8.525021], [47.394835, 8.473123], [47.376097, 8.488306], [47.347341, 8.563537], [47.356635, 8.551276], [47.374544, 8.54103], [47.409268, 8.545393], [47.419742, 8.547864], [47.377476, 8.541991], [47.358772, 8.551705], [47.367537, 8.540038], [47.40342, 8.574327], [47.380357, 8.542713], [47.423572, 8.551774], [47.380985, 8.511379], [47.387827, 8.527093], [47.425697, 8.556272], [47.377104, 8.540461], [47.3672, 8.533861], [47.351432, 8.52913], [47.379785, 8.537576], [47.388339, 8.526229], [47.35236, 8.558097], [47.393894, 8.54465], [47.376078, 8.537738], [47.383226, 8.539938], [47.353107, 8.512565], [47.406805, 8.567602], [47.355626, 8.526939], [47.386347, 8.551248], [47.369542, 8.466952], [47.386245, 8.53171], [47.385434, 8.542315], [47.404561, 8.572602], [47.389437, 8.52706], [47.41405, 8.546685], [47.41722, 8.510042], [47.391043, 8.522735], [47.374318, 8.516409], [47.363728, 8.551716], [47.369229, 8.491798], [47.373293, 8.503677], [47.37351, 8.542889], [47.37264, 8.529365], [47.393769, 8.472612], [47.376742, 8.540652], [47.374247, 8.544798], [47.370615, 8.511184], [47.402073, 8.49927], [47.335564, 8.516711], [47.385331, 8.494593], [47.37047, 8.537186], [47.4201, 8.50892], [47.419632, 8.505067], [47.368468, 8.529187], [47.371648, 8.547604], [47.378444, 8.540528], [47.370459, 8.537344], [47.409539, 8.54997], [47.366417, 8.540531], [47.362666, 8.555533], [47.378644, 8.528879], [47.399362, 8.542908], [47.362581, 8.534322], [47.38639, 8.518243], [47.376256, 8.544522], [47.371569, 8.515983], [47.37897, 8.524886], [47.360659, 8.529332], [47.35933, 8.522381], [47.37996, 8.55224], [47.393939, 8.541802], [47.378795, 8.542376], [47.377043, 8.533666], [47.354071, 8.575354], [47.419792, 8.500366], [47.420143, 8.53886], [47.422548, 8.4961], [47.373915, 8.535284], [47.401075, 8.491394], [47.375348, 8.561175], [47.36948, 8.520098], [47.369355, 8.525696], [47.367173, 8.533874], [47.395253, 8.485716], [47.403019, 8.572052], [47.379306, 8.553816], [47.40766, 8.584871], [47.339253, 8.529979], [47.376838, 8.544799], [47.364734, 8.56675], [47.398814, 8.540883], [47.372872, 8.567042], [47.364247, 8.531351], [47.424783, 8.548446], [47.379969, 8.541924], [47.408336, 8.565514], [47.374584, 8.550036], [47.400148, 8.590446], [47.369927, 8.510759], [47.360223, 8.551378], [47.414468, 8.475452], [47.349663, 8.56164], [47.358543, 8.518063], [47.375735, 8.549133], [47.375722, 8.559792], [47.370441, 8.529744], [47.364964, 8.508581], [47.403834, 8.546433], [47.376715, 8.541645], [47.399656, 8.468116], [47.374439, 8.541717], [47.395307, 8.491638], [47.388074, 8.519972], [47.381621, 8.513577], [47.386797, 8.547416], [47.369052, 8.528325], [47.426971, 8.491429], [47.360413, 8.552203], [47.369037, 8.527994], [47.358599, 8.517865], [47.394927, 8.525807], [47.386183, 8.518199], [47.37212, 8.487353], [47.374994, 8.545701], [47.416368, 8.544175], [47.357822, 8.519094], [47.373524, 8.556422], [47.370589, 8.526542], [47.342017, 8.530644], [47.408962, 8.550143], [47.358953, 8.516509], [47.372544, 8.517512], [47.399197, 8.541315], [47.381467, 8.55541], [47.414626, 8.54667], [47.37248, 8.478449], [47.386855, 8.489219], [47.420717, 8.502465], [47.372582, 8.521141], [47.36231, 8.557922], [47.373067, 8.500944], [47.383504, 8.530567], [47.365859, 8.550013], [47.368857, 8.560866], [47.376121, 8.525583], [47.403359, 8.497309], [47.359673, 8.516457], [47.391208, 8.545243], [47.386273, 8.518201], [47.413968, 8.542138], [47.356645, 8.523769], [47.378252, 8.541716], [47.382761, 8.540591], [47.361801, 8.560281], [47.357149, 8.52186], [47.409558, 8.544246], [47.372455, 8.515471], [47.372848, 8.533977], [47.363137, 8.549612], [47.368874, 8.519424], [47.383267, 8.484195], [47.409535, 8.575385], [47.37013, 8.551028], [47.368606, 8.547753], [47.386238, 8.518187], [47.380748, 8.515572], [47.411262, 8.57077], [47.350246, 8.560858], [47.387982, 8.524937], [47.37611, 8.540996], [47.385795, 8.496019], [47.371515, 8.550183], [47.381987, 8.54435], [47.362751, 8.548571], [47.394205, 8.490119], [47.392526, 8.538104], [47.386077, 8.481827], [47.405005, 8.505132], [47.355915, 8.592628], [47.376398, 8.489808], [47.363295, 8.513922], [47.394229, 8.493392], [47.408721, 8.546229], [47.383512, 8.530607], [47.36607, 8.533573], [47.393055, 8.539267], [47.404915, 8.534968], [47.368487, 8.524328], [47.381801, 8.516468], [47.379086, 8.483968], [47.360358, 8.548627], [47.369451, 8.555291], [47.381942, 8.52929], [47.399033, 8.542425], [47.419195, 8.54764], [47.364486, 8.552446], [47.404371, 8.533592], [47.3638, 8.535751], [47.375925, 8.553639], [47.372073, 8.53412], [47.384749, 8.502131], [47.370574, 8.546973], [47.373535, 8.544929], [47.372038, 8.53408], [47.413023, 8.550665], [47.356947, 8.555307], [47.369707, 8.525545], [47.338971, 8.527486], [47.393273, 8.493691], [47.3672, 8.533874], [47.369866, 8.520106], [47.38069, 8.516909], [47.364408, 8.546553], [47.347172, 8.534376], [47.374737, 8.537816], [47.36977, 8.552067], [47.408556, 8.546531], [47.410372, 8.538154], [47.414427, 8.519209], [47.364146, 8.551301], [47.354141, 8.575514], [47.369551, 8.525912], [47.36859, 8.560582], [47.37017, 8.548818], [47.399142, 8.514646], [47.360376, 8.550468], [47.384268, 8.507459], [47.379156, 8.522241], [47.42159, 8.550221], [47.362813, 8.559865], [47.413066, 8.546161], [47.374123, 8.515134], [47.340884, 8.519174], [47.370724, 8.535059], [47.389763, 8.537371], [47.375652, 8.553104], [47.392564, 8.536966], [47.370462, 8.539926], [47.368759, 8.528809], [47.38971, 8.512323], [47.370469, 8.551367], [47.366682, 8.559748], [47.347004, 8.528325], [47.382304, 8.499102], [47.365217, 8.533344], [47.364333, 8.529804], [47.393032, 8.524563], [47.407668, 8.58405], [47.397026, 8.530288], [47.367091, 8.544345], [47.36925, 8.525429], [47.377493, 8.504727], [47.369596, 8.52018], [47.422229, 8.497472], [47.344896, 8.533416], [47.362777, 8.559904], [47.378881, 8.542802], [47.389886, 8.531043], [47.376869, 8.520645], [47.379603, 8.525468], [47.363349, 8.55004], [47.384678, 8.531956], [47.410211, 8.534269], [47.376829, 8.543858], [47.377152, 8.541985], [47.368606, 8.547713], [47.376417, 8.527509], [47.366548, 8.540918], [47.367962, 8.544548], [47.369617, 8.525609], [47.397707, 8.584419], [47.356499, 8.551419], [47.372573, 8.535521], [47.39028, 8.514904], [47.361887, 8.547732], [47.389082, 8.488694], [47.382783, 8.57541], [47.37861, 8.565269], [47.375776, 8.500694], [47.372999, 8.531306], [47.37604, 8.54167], [47.380054, 8.522418], [47.377261, 8.510364], [47.344439, 8.530456], [47.383794, 8.529368], [47.351753, 8.559394], [47.367058, 8.536506], [47.3754, 8.518007], [47.368788, 8.541918], [47.424861, 8.53742], [47.390814, 8.522227], [47.423783, 8.535383], [47.368996, 8.537976], [47.42874, 8.48876], [47.360687, 8.524447], [47.396968, 8.539269], [47.372933, 8.534469], [47.371326, 8.536065], [47.378805, 8.483221], [47.377767, 8.537932], [47.353184, 8.526426], [47.416103, 8.547417], [47.395739, 8.545443], [47.362366, 8.504478], [47.367107, 8.545563], [47.370038, 8.511371], [47.407722, 8.584051], [47.414297, 8.55097], [47.407529, 8.489826], [47.36787, 8.560633], [47.375099, 8.485254], [47.385895, 8.532563], [47.371606, 8.515904], [47.401306, 8.551229], [47.372914, 8.524127], [47.403844, 8.576893], [47.384749, 8.502144], [47.412378, 8.546624], [47.329023, 8.513906], [47.369027, 8.525239], [47.385297, 8.500288], [47.37731, 8.539578], [47.36583, 8.539857], [47.374304, 8.543528], [47.375554, 8.535053], [47.380702, 8.525332], [47.385075, 8.530904], [47.341092, 8.527635], [47.364339, 8.531115], [47.373938, 8.503014], [47.389174, 8.512935], [47.38107, 8.49239], [47.380447, 8.506376], [47.357628, 8.520626], [47.361861, 8.51527], [47.360937, 8.506329], [47.37416, 8.544545], [47.375087, 8.518742], [47.369172, 8.52793], [47.370268, 8.537592], [47.364022, 8.497481]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_455fbc59560cd56d4c6be9eedfdb0a05 = L.heatLayer(\n", - " [[47.391814, 8.541109], [47.37959, 8.537254], [47.372631, 8.535085], [47.382684, 8.487018], [47.377854, 8.529684], [47.370599, 8.524504], [47.370427, 8.51788], [47.376579, 8.568723], [47.370206, 8.548819], [47.334244, 8.516473], [47.399149, 8.521681], [47.349538, 8.561558], [47.406761, 8.49515], [47.418246, 8.506139], [47.376327, 8.513179], [47.368768, 8.528796], [47.366456, 8.561756], [47.369885, 8.547541], [47.399649, 8.538198], [47.402852, 8.577137], [47.387476, 8.487285], [47.40391, 8.548872], [47.393873, 8.505704], [47.414612, 8.563063], [47.37436, 8.541437], [47.368247, 8.541099], [47.361964, 8.560218], [47.360696, 8.524368], [47.361, 8.55383], [47.38443, 8.538215], [47.368299, 8.511693], [47.37556, 8.533556], [47.386085, 8.540064], [47.368714, 8.500844], [47.370886, 8.548211], [47.360243, 8.522863], [47.380138, 8.543027], [47.411291, 8.545554], [47.375435, 8.547524], [47.373841, 8.536447], [47.382275, 8.533072], [47.382229, 8.533111], [47.379042, 8.559703], [47.387158, 8.535093], [47.358312, 8.583096], [47.407442, 8.574187], [47.37413, 8.524893], [47.358321, 8.583149], [47.367856, 8.56111], [47.368324, 8.560219], [47.399326, 8.521976], [47.364822, 8.555856], [47.358937, 8.516323], [47.375695, 8.496812], [47.38878, 8.510807], [47.387965, 8.539149], [47.375438, 8.547273], [47.401747, 8.586162], [47.361516, 8.547923], [47.361643, 8.547846], [47.360928, 8.507282], [47.374894, 8.545791], [47.359383, 8.522462], [47.359162, 8.551369], [47.385661, 8.548624], [47.405636, 8.549941], [47.36475, 8.553975], [47.405243, 8.555246], [47.385069, 8.508375], [47.370188, 8.548805], [47.424351, 8.504472], [47.362611, 8.558444], [47.378008, 8.526667], [47.372515, 8.52923], [47.376528, 8.532914], [47.402786, 8.496118], [47.390549, 8.489623], [47.426898, 8.554799], [47.407857, 8.58041], [47.414252, 8.541574], [47.395703, 8.545455], [47.42096, 8.549387], [47.379325, 8.495308], [47.41525, 8.545424], [47.375653, 8.544576], [47.393973, 8.481981], [47.390104, 8.512583], [47.384796, 8.531786], [47.370939, 8.548318], [47.374755, 8.528322], [47.373888, 8.544751], [47.377528, 8.502953], [47.383193, 8.506073], [47.37782, 8.509236], [47.348558, 8.534352], [47.356969, 8.507401], [47.382054, 8.516314], [47.369452, 8.525884], [47.377112, 8.529152], [47.369025, 8.525385], [47.409511, 8.542576], [47.376783, 8.49784], [47.367408, 8.54128], [47.412959, 8.540394], [47.384409, 8.488218], [47.371424, 8.536186], [47.370125, 8.54883], [47.380652, 8.525808], [47.377223, 8.540225], [47.377935, 8.532519], [47.365696, 8.566771], [47.389028, 8.49562], [47.367271, 8.523535], [47.405972, 8.558879], [47.379062, 8.538846], [47.386797, 8.535231], [47.380824, 8.572468], [47.362162, 8.549062], [47.369097, 8.5254], [47.362699, 8.518928], [47.379516, 8.537465], [47.364919, 8.54761], [47.368252, 8.536782], [47.37827, 8.519906], [47.371633, 8.525452], [47.365728, 8.560694], [47.36274, 8.56087], [47.369372, 8.525869], [47.403665, 8.571298], [47.423032, 8.548051], [47.385508, 8.517311], [47.415351, 8.544274], [47.369986, 8.556653], [47.330786, 8.515847], [47.375485, 8.560118], [47.362768, 8.563571], [47.363277, 8.549972], [47.387949, 8.486658], [47.40596, 8.553579], [47.370134, 8.548791], [47.402228, 8.507872], [47.409399, 8.53828], [47.409007, 8.550091], [47.377858, 8.52828], [47.379259, 8.528573], [47.402241, 8.545605], [47.376713, 8.539023], [47.356626, 8.551289], [47.378274, 8.526156], [47.368125, 8.536846], [47.364647, 8.566431], [47.353807, 8.558206], [47.392402, 8.523636], [47.386477, 8.518536], [47.394856, 8.52574], [47.366149, 8.545054], [47.358352, 8.587227], [47.357144, 8.55825], [47.399501, 8.542487], [47.393282, 8.53902], [47.366889, 8.520165], [47.411248, 8.567629], [47.37273, 8.52934], [47.351996, 8.534118], [47.391946, 8.510778], [47.35427, 8.557793], [47.410618, 8.572294], [47.359924, 8.56183], [47.401277, 8.57909], [47.389209, 8.527492], [47.38138, 8.491932], [47.371924, 8.49111], [47.369097, 8.52348], [47.388189, 8.490968], [47.369319, 8.541889], [47.377556, 8.528843], [47.378429, 8.531695], [47.380431, 8.548118], [47.402419, 8.535433], [47.400949, 8.50411], [47.373889, 8.544671], [47.376895, 8.483607], [47.374892, 8.519466], [47.426986, 8.546609], [47.360295, 8.566233], [47.360298, 8.566868], [47.404249, 8.564964], [47.405195, 8.50507], [47.374169, 8.514049], [47.374853, 8.518843], [47.36648, 8.545272], [47.358639, 8.557143], [47.366889, 8.520165], [47.366989, 8.536214], [47.370653, 8.517765], [47.389543, 8.521618], [47.370188, 8.548818], [47.409486, 8.540468], [47.382743, 8.540604], [47.389989, 8.491785], [47.412246, 8.524505], [47.373828, 8.503211], [47.37277, 8.499945], [47.380418, 8.54286], [47.385339, 8.530539], [47.376383, 8.510068], [47.371939, 8.489455], [47.38322, 8.506047], [47.409084, 8.547774], [47.425744, 8.49383], [47.408053, 8.577857], [47.395357, 8.521259], [47.357963, 8.520447], [47.399465, 8.521568], [47.368709, 8.501334], [47.358455, 8.517783], [47.397672, 8.533348], [47.422703, 8.49878], [47.387402, 8.487482], [47.394249, 8.480278], [47.367967, 8.540298], [47.404632, 8.556969], [47.36268, 8.510362], [47.420753, 8.549342], [47.370188, 8.548805], [47.391632, 8.523237], [47.401474, 8.581916], [47.395595, 8.48563], [47.410781, 8.545212], [47.368095, 8.523844], [47.383316, 8.539914], [47.378062, 8.510327], [47.363114, 8.517864], [47.371795, 8.534048], [47.364595, 8.566218], [47.39072, 8.539749], [47.377581, 8.511814], [47.399614, 8.54759], [47.379354, 8.542269], [47.364077, 8.547222], [47.389623, 8.51199], [47.374477, 8.546127], [47.369639, 8.467179], [47.370434, 8.514199], [47.381021, 8.528689], [47.385111, 8.503847], [47.3734, 8.503864], [47.379124, 8.495675], [47.353032, 8.572115], [47.398386, 8.537642], [47.35612, 8.520317], [47.372011, 8.534966], [47.381472, 8.571528], [47.373707, 8.559803], [47.405802, 8.53541], [47.375212, 8.544593], [47.391493, 8.538877], [47.380313, 8.548222], [47.355913, 8.535536], [47.382274, 8.495499], [47.369775, 8.508677], [47.365559, 8.53907], [47.349119, 8.562065], [47.373808, 8.535162], [47.385926, 8.532153], [47.365741, 8.536016], [47.369893, 8.552334], [47.372855, 8.535116], [47.413697, 8.520373], [47.397863, 8.534001], [47.369503, 8.526203], [47.410724, 8.544588], [47.414533, 8.52047], [47.351956, 8.504746], [47.416677, 8.546713], [47.369292, 8.555923], [47.408546, 8.546597], [47.43116, 8.516102], [47.36171, 8.511203], [47.366756, 8.541836], [47.414234, 8.53402], [47.376779, 8.536839], [47.367117, 8.561266], [47.369945, 8.5488], [47.378602, 8.509398], [47.372256, 8.535739], [47.393209, 8.530647], [47.428157, 8.542631], [47.397533, 8.533716], [47.336063, 8.524872], [47.338359, 8.532224], [47.411275, 8.562104], [47.384229, 8.489181], [47.388646, 8.491136], [47.363174, 8.530641], [47.405794, 8.590714], [47.405867, 8.590676], [47.371223, 8.520253], [47.368855, 8.548036], [47.425719, 8.553913], [47.388026, 8.528912], [47.374546, 8.539905], [47.375838, 8.536409], [47.407148, 8.586609], [47.399047, 8.51422], [47.393212, 8.524593], [47.373672, 8.534391], [47.382843, 8.530011], [47.375643, 8.559552], [47.375502, 8.56384], [47.377276, 8.523262], [47.37036, 8.530788], [47.399362, 8.542908], [47.384702, 8.531334], [47.37996, 8.555948], [47.391933, 8.517984], [47.375763, 8.536752], [47.374044, 8.534055], [47.383971, 8.504579], [47.362196, 8.559455], [47.346023, 8.531269], [47.352133, 8.558237], [47.414037, 8.561076], [47.39447, 8.53417], [47.38061, 8.536931], [47.37606, 8.535765], [47.422674, 8.546944], [47.361327, 8.505926], [47.365337, 8.52159], [47.366233, 8.537217], [47.369767, 8.535437], [47.371419, 8.530095], [47.400866, 8.537018], [47.344792, 8.531125], [47.362778, 8.519128], [47.421333, 8.549871], [47.380434, 8.543999], [47.397215, 8.531193], [47.400176, 8.547059], [47.416865, 8.54017], [47.383399, 8.543412], [47.410804, 8.558729], [47.380375, 8.493634], [47.360998, 8.51712], [47.370809, 8.524111], [47.418132, 8.508721], [47.360433, 8.601291], [47.367195, 8.544784], [47.389228, 8.491372], [47.379235, 8.508046], [47.387009, 8.519381], [47.391363, 8.537497], [47.419512, 8.505383], [47.415796, 8.558741], [47.369112, 8.554079], [47.377071, 8.535402], [47.339411, 8.519885], [47.375957, 8.541854], [47.376316, 8.547569], [47.341794, 8.52], [47.339141, 8.519867], [47.381275, 8.533237], [47.381491, 8.503337], [47.361386, 8.551177], [47.390468, 8.539797], [47.390944, 8.489724], [47.368311, 8.50453], [47.377149, 8.540422], [47.374458, 8.521576], [47.413776, 8.546189], [47.375098, 8.518623], [47.375009, 8.52801], [47.347331, 8.532791], [47.414568, 8.561047], [47.389344, 8.537906], [47.37407, 8.528414], [47.380233, 8.483461], [47.331077, 8.53562], [47.348165, 8.529222], [47.363535, 8.532436], [47.369831, 8.55228], [47.413843, 8.545819], [47.40224, 8.556005], [47.40816, 8.57248], [47.396104, 8.526904], [47.350366, 8.560583], [47.413088, 8.558816], [47.417948, 8.546382], [47.381795, 8.489835], [47.37676, 8.535077], [47.411336, 8.544574], [47.38336, 8.474913], [47.369124, 8.525427], [47.378875, 8.526314], [47.399843, 8.543342], [47.367396, 8.545371], [47.409965, 8.541247], [47.404885, 8.572582], [47.366217, 8.548272], [47.395506, 8.545372], [47.374518, 8.530542], [47.389129, 8.551862], [47.401858, 8.531089], [47.369231, 8.541688], [47.350054, 8.562125], [47.374765, 8.529077], [47.419522, 8.508206], [47.372611, 8.534317], [47.379238, 8.538386], [47.379993, 8.527966], [47.387936, 8.536526], [47.361135, 8.522709], [47.414124, 8.518951], [47.393199, 8.53066], [47.368645, 8.524649], [47.383236, 8.574228], [47.354158, 8.531886], [47.418761, 8.540408], [47.386185, 8.51808], [47.393482, 8.512942], [47.429839, 8.544574], [47.371787, 8.529228], [47.399896, 8.495345], [47.386241, 8.517776], [47.424591, 8.495889], [47.367751, 8.534627], [47.393419, 8.529366], [47.409316, 8.549793], [47.414291, 8.539362], [47.344526, 8.529809], [47.373538, 8.537077], [47.355703, 8.556552], [47.377571, 8.546205], [47.397444, 8.553414], [47.390902, 8.523368], [47.353637, 8.554351], [47.415983, 8.527867], [47.378625, 8.519463], [47.37067, 8.56493], [47.378449, 8.523789], [47.383424, 8.511243], [47.359948, 8.559381], [47.383192, 8.506126], [47.380534, 8.53448], [47.377093, 8.540699], [47.370154, 8.521065], [47.376429, 8.534859], [47.406643, 8.548068], [47.382743, 8.540604], [47.364983, 8.531486], [47.396249, 8.487961], [47.364678, 8.548386], [47.372431, 8.532433], [47.409021, 8.543957], [47.367615, 8.555411], [47.40692, 8.487588], [47.375078, 8.518755], [47.373017, 8.547368], [47.365183, 8.519773], [47.37551, 8.536866], [47.35289, 8.557181], [47.414438, 8.51901], [47.363757, 8.547798], [47.384714, 8.548909], [47.370197, 8.548819], [47.376798, 8.543341], [47.36508, 8.553293], [47.371325, 8.52089], [47.373831, 8.545955], [47.356237, 8.535582], [47.39736, 8.527275], [47.410385, 8.548106], [47.415019, 8.515616], [47.374725, 8.518099], [47.385869, 8.492776], [47.369073, 8.530828], [47.380962, 8.492348], [47.373535, 8.545008], [47.387188, 8.488272], [47.383768, 8.540599], [47.35767, 8.572505], [47.370179, 8.548792], [47.344951, 8.533338], [47.378842, 8.525122], [47.386447, 8.534164], [47.398362, 8.537403], [47.40485, 8.548388], [47.381888, 8.531117], [47.391031, 8.521132], [47.384581, 8.52508], [47.362095, 8.551324], [47.407572, 8.546855], [47.37387, 8.544684], [47.388533, 8.483809], [47.397643, 8.588206], [47.348602, 8.563457], [47.378303, 8.528819], [47.397821, 8.538399], [47.386933, 8.490625], [47.421385, 8.550032], [47.369207, 8.528024], [47.356592, 8.523715], [47.38068, 8.538098], [47.359099, 8.550454], [47.414569, 8.56008], [47.360275, 8.566471], [47.404427, 8.572467], [47.340687, 8.529558], [47.395149, 8.524222], [47.381646, 8.51673], [47.357345, 8.550431], [47.418317, 8.552936], [47.349947, 8.533944], [47.4108, 8.545173], [47.376451, 8.489928], [47.422281, 8.547585], [47.355333, 8.600386], [47.359214, 8.522286], [47.402342, 8.499316], [47.365388, 8.54562], [47.361619, 8.514259], [47.393383, 8.500329], [47.357384, 8.588662], [47.380936, 8.492255], [47.381795, 8.489835], [47.404208, 8.573707], [47.367807, 8.560579], [47.373876, 8.546022], [47.409978, 8.552046], [47.399692, 8.504827], [47.393821, 8.524818], [47.399635, 8.50517], [47.368325, 8.536691], [47.328651, 8.52967], [47.369755, 8.540481], [47.378564, 8.542067], [47.404352, 8.533618], [47.361455, 8.56541], [47.365116, 8.55328], [47.375718, 8.564771], [47.391107, 8.46954], [47.412972, 8.538128], [47.416296, 8.545128], [47.358294, 8.586762], [47.366639, 8.547447], [47.402705, 8.535691], [47.365338, 8.494237], [47.380205, 8.558456], [47.369032, 8.528457], [47.377599, 8.492255], [47.377892, 8.537047], [47.37087, 8.520524], [47.362613, 8.497215], [47.369318, 8.525815], [47.395363, 8.546243], [47.426278, 8.554733], [47.37582, 8.512546], [47.415106, 8.510118], [47.374476, 8.541585], [47.397989, 8.474535], [47.405909, 8.480983], [47.377085, 8.527244], [47.409523, 8.549837], [47.373924, 8.53155], [47.407936, 8.583327], [47.393947, 8.494711], [47.379877, 8.527884], [47.377523, 8.498623], [47.35709, 8.535758], [47.365117, 8.553214], [47.402887, 8.580966], [47.405835, 8.591086], [47.373961, 8.517051], [47.37786, 8.544224], [47.381426, 8.517162], [47.414464, 8.553213], [47.334022, 8.531447], [47.410341, 8.544196], [47.378042, 8.510605], [47.412123, 8.5507], [47.3718, 8.516279], [47.374618, 8.487707], [47.406481, 8.550012], [47.399531, 8.496901], [47.40591, 8.491795], [47.405017, 8.571022], [47.423891, 8.502647], [47.386147, 8.524993], [47.377696, 8.525403], [47.413748, 8.545433], [47.373544, 8.527887], [47.393067, 8.524683], [47.370285, 8.515758], [47.372213, 8.553389], [47.379269, 8.537897], [47.368899, 8.54809], [47.374093, 8.489021], [47.393478, 8.512452], [47.356418, 8.51152], [47.425926, 8.493542], [47.375005, 8.513126], [47.390064, 8.485494], [47.373389, 8.531976], [47.42477, 8.537564], [47.367863, 8.539833], [47.402824, 8.499736], [47.421215, 8.511858], [47.383088, 8.530784], [47.404919, 8.557094], [47.386461, 8.51835], [47.428058, 8.547387], [47.383424, 8.533241], [47.376381, 8.527574], [47.392369, 8.491209], [47.378486, 8.528452], [47.392068, 8.500502], [47.374512, 8.541586], [47.363366, 8.557507], [47.375544, 8.541819], [47.395748, 8.545483], [47.431151, 8.516101], [47.366711, 8.542748], [47.410611, 8.557254], [47.369485, 8.526255], [47.366202, 8.545187], [47.387692, 8.538494], [47.359324, 8.569906], [47.376491, 8.528252], [47.408782, 8.549252], [47.36186, 8.547692], [47.365391, 8.53111], [47.41002, 8.527851], [47.366833, 8.543108], [47.40992, 8.541259], [47.360343, 8.523725], [47.397174, 8.594555], [47.375923, 8.559492], [47.352706, 8.524642], [47.360369, 8.523845], [47.410877, 8.563209], [47.389191, 8.48859], [47.335269, 8.541198], [47.337064, 8.519825], [47.386823, 8.547536], [47.403395, 8.548133], [47.416888, 8.545326], [47.402408, 8.582943], [47.364574, 8.546133], [47.380925, 8.572284], [47.383517, 8.533005], [47.419907, 8.535303], [47.36022, 8.562882], [47.386277, 8.493473], [47.373923, 8.502749], [47.387548, 8.537617], [47.405799, 8.591112], [47.379989, 8.520735], [47.400683, 8.532589], [47.396357, 8.485883], [47.406543, 8.584185], [47.379909, 8.527329], [47.377665, 8.538274], [47.36067, 8.566519], [47.384701, 8.527638], [47.378157, 8.52618], [47.376038, 8.488768], [47.403835, 8.546393], [47.378917, 8.527613], [47.374072, 8.527289], [47.390949, 8.507752], [47.33707, 8.520089], [47.394268, 8.484133], [47.3897, 8.511541], [47.410645, 8.550987], [47.367587, 8.545176], [47.354579, 8.53204], [47.414215, 8.51886], [47.365854, 8.546703], [47.374895, 8.536244], [47.379794, 8.53759], [47.404088, 8.548081], [47.375377, 8.485378], [47.35863, 8.517336], [47.359332, 8.507674], [47.378403, 8.52012], [47.382096, 8.505071], [47.37395, 8.544832], [47.367339, 8.530607], [47.37272, 8.56778], [47.376159, 8.526338], [47.367897, 8.494804], [47.413557, 8.554069], [47.377728, 8.517286], [47.3705, 8.492485], [47.368223, 8.544527], [47.364184, 8.54737], [47.367155, 8.54428], [47.414423, 8.537787], [47.385298, 8.536776], [47.39915, 8.521535], [47.373555, 8.534416], [47.357722, 8.599882], [47.409567, 8.5377], [47.378005, 8.521264], [47.368741, 8.543995], [47.375666, 8.537518], [47.365388, 8.535241], [47.372349, 8.505657], [47.416646, 8.555459], [47.411526, 8.54544], [47.368345, 8.527887], [47.381467, 8.529042], [47.39108, 8.522629], [47.373174, 8.503926], [47.379808, 8.546489], [47.411926, 8.538345], [47.391199, 8.488298], [47.42744, 8.539567], [47.369256, 8.527614], [47.366902, 8.544394], [47.395234, 8.508394], [47.357323, 8.550827], [47.342024, 8.530856], [47.420697, 8.551475], [47.414778, 8.519229], [47.359479, 8.551164], [47.349817, 8.575316], [47.385573, 8.536159], [47.373617, 8.536377], [47.354681, 8.575565], [47.373599, 8.527809], [47.373861, 8.544684], [47.356589, 8.527792], [47.418488, 8.549163], [47.378344, 8.52731], [47.356557, 8.532186], [47.391629, 8.512997], [47.386383, 8.48182], [47.429908, 8.54956], [47.359271, 8.534347], [47.414544, 8.558039], [47.4059, 8.580912], [47.352453, 8.557781], [47.371564, 8.535646], [47.402157, 8.585561], [47.388578, 8.483717], [47.336678, 8.533089], [47.388164, 8.484782], [47.397432, 8.509935], [47.353287, 8.525091], [47.41162, 8.544951], [47.391164, 8.489225], [47.36845, 8.54714], [47.361578, 8.561031], [47.378393, 8.519286], [47.381827, 8.533751], [47.377548, 8.54198], [47.38273, 8.532472], [47.377695, 8.541731], [47.374115, 8.502342], [47.406353, 8.537979], [47.378015, 8.508658], [47.421259, 8.542554], [47.370304, 8.548874], [47.402931, 8.581895], [47.356635, 8.551263], [47.390823, 8.52224], [47.40863, 8.503257], [47.386541, 8.52806], [47.387412, 8.497257], [47.358924, 8.557374], [47.401674, 8.50064], [47.383192, 8.547248], [47.403225, 8.497253], [47.359936, 8.522023], [47.377856, 8.508297], [47.369031, 8.540956], [47.404501, 8.558464], [47.364834, 8.566646], [47.392136, 8.509709], [47.376096, 8.535818], [47.380233, 8.515827], [47.373948, 8.476266], [47.374468, 8.502164], [47.410295, 8.54242], [47.358666, 8.585552], [47.377668, 8.512041], [47.374273, 8.526909], [47.391904, 8.518195], [47.374251, 8.517732], [47.370016, 8.511834], [47.374686, 8.52411], [47.383471, 8.528342], [47.414594, 8.483472], [47.398563, 8.538931], [47.37109, 8.520091], [47.369373, 8.525683], [47.366166, 8.540486], [47.381291, 8.528602], [47.373575, 8.51985], [47.348085, 8.571163], [47.33618, 8.524848], [47.378943, 8.478959], [47.402649, 8.49234], [47.385789, 8.528601], [47.359856, 8.531473], [47.37568, 8.544563], [47.417565, 8.483186], [47.407537, 8.579118], [47.36182, 8.560202], [47.431774, 8.543514], [47.36781, 8.539713], [47.406522, 8.550357], [47.375541, 8.526948], [47.359252, 8.592594], [47.376409, 8.527429], [47.409243, 8.547062], [47.405201, 8.585282], [47.378669, 8.519503], [47.365795, 8.532151], [47.40018, 8.546728], [47.386369, 8.51852], [47.36994, 8.564146], [47.398328, 8.54184], [47.393971, 8.525112], [47.364836, 8.554387], [47.408884, 8.557244], [47.361588, 8.503006], [47.359945, 8.522989], [47.376122, 8.534018], [47.400083, 8.590644], [47.405254, 8.502606], [47.380638, 8.548083], [47.354372, 8.555544], [47.382876, 8.474639], [47.403135, 8.486374], [47.397165, 8.530768], [47.38335, 8.515254], [47.402707, 8.552371], [47.364654, 8.536775], [47.363716, 8.562307], [47.393281, 8.501652], [47.39339, 8.500581], [47.376252, 8.484018], [47.383094, 8.532056], [47.420801, 8.549078], [47.3756, 8.548176], [47.341185, 8.536834], [47.419087, 8.546697], [47.419192, 8.507934], [47.388374, 8.545237], [47.369163, 8.527943], [47.38693, 8.544823], [47.35809, 8.553385], [47.369106, 8.549074], [47.365031, 8.531195], [47.389377, 8.521072], [47.362461, 8.54883], [47.373697, 8.544998], [47.385253, 8.536722], [47.364466, 8.555478], [47.383316, 8.539927], [47.417899, 8.554292], [47.398988, 8.541563], [47.373866, 8.49516], [47.396456, 8.528713], [47.394142, 8.493085], [47.360702, 8.55021], [47.418048, 8.502252], [47.376545, 8.540635], [47.389663, 8.511554], [47.373814, 8.502853], [47.410883, 8.54491], [47.404201, 8.561531], [47.368955, 8.540412], [47.366522, 8.536164], [47.415268, 8.510095], [47.407144, 8.586185], [47.38592, 8.521399], [47.390696, 8.508833], [47.409256, 8.54481], [47.378411, 8.541084], [47.377018, 8.537188], [47.365081, 8.531567], [47.378186, 8.517361], [47.378682, 8.54199], [47.408817, 8.55022], [47.37429, 8.522222], [47.379474, 8.527638], [47.381824, 8.483624], [47.372954, 8.522751], [47.379867, 8.525103], [47.363333, 8.52045], [47.373168, 8.494842], [47.364842, 8.566673], [47.375545, 8.548268], [47.378791, 8.522883], [47.374845, 8.518711], [47.370188, 8.548818], [47.38491, 8.495379], [47.392684, 8.524265], [47.425564, 8.497684], [47.36641, 8.541312], [47.386861, 8.528424], [47.374499, 8.540063], [47.365851, 8.55266], [47.410233, 8.546075], [47.384408, 8.542373], [47.357643, 8.572518], [47.39133, 8.536198], [47.367083, 8.523439], [47.373588, 8.553524], [47.364624, 8.554899], [47.407858, 8.536751], [47.367128, 8.544319], [47.394329, 8.48938], [47.401176, 8.58293], [47.365034, 8.536518], [47.395761, 8.482189], [47.369245, 8.49201], [47.362233, 8.526398], [47.371263, 8.530356], [47.364816, 8.570327], [47.367739, 8.530178], [47.404083, 8.563556], [47.362052, 8.52654], [47.370227, 8.539101], [47.364632, 8.537171], [47.392412, 8.538737], [47.379583, 8.510252], [47.384118, 8.548248], [47.369921, 8.508442], [47.377389, 8.529436], [47.390763, 8.521961], [47.368574, 8.499385], [47.383913, 8.542416], [47.361625, 8.526055], [47.357081, 8.535771], [47.401857, 8.548193], [47.391369, 8.550916], [47.431772, 8.531358], [47.402105, 8.579956], [47.335342, 8.541146], [47.383326, 8.486594], [47.373852, 8.535282], [47.342197, 8.526797], [47.361162, 8.526562], [47.366938, 8.544342], [47.364533, 8.531503], [47.420911, 8.548842], [47.381546, 8.548194], [47.378927, 8.519826], [47.396554, 8.528834], [47.391068, 8.52296], [47.391018, 8.522509], [47.361046, 8.571279], [47.361046, 8.571293], [47.36187, 8.515271], [47.39432, 8.489353], [47.399771, 8.544334], [47.339954, 8.529993], [47.366185, 8.545028], [47.411954, 8.528765], [47.375148, 8.525748], [47.364918, 8.565377], [47.430433, 8.542625], [47.356046, 8.553607], [47.360589, 8.535751], [47.381803, 8.533473], [47.355631, 8.55655], [47.35205, 8.50533], [47.37384, 8.53658], [47.38797, 8.485374], [47.424784, 8.495495], [47.357635, 8.553971], [47.390994, 8.486122], [47.418066, 8.51972], [47.380365, 8.513234], [47.386565, 8.540643], [47.378396, 8.54556], [47.378284, 8.510636], [47.381087, 8.555667], [47.362767, 8.522226], [47.405148, 8.500352], [47.385778, 8.520204], [47.364842, 8.566686], [47.40712, 8.586741], [47.410155, 8.566308], [47.369783, 8.556225], [47.370119, 8.532412], [47.366176, 8.540328], [47.3691, 8.525109], [47.426942, 8.546542], [47.369839, 8.510479], [47.348343, 8.534255], [47.379411, 8.489801], [47.338223, 8.527603], [47.370695, 8.549359], [47.358119, 8.518173], [47.405928, 8.540103], [47.381034, 8.569373], [47.415759, 8.481944], [47.387408, 8.500647], [47.399852, 8.495292], [47.382129, 8.488716], [47.373713, 8.503049], [47.378801, 8.478705], [47.378943, 8.478946], [47.394137, 8.508279], [47.397235, 8.540506], [47.369461, 8.525897], [47.419677, 8.548021], [47.326001, 8.518727], [47.39788, 8.534121], [47.370426, 8.524685], [47.386494, 8.529145], [47.371324, 8.520096], [47.40237, 8.545356], [47.369398, 8.525922], [47.369666, 8.533793], [47.38427, 8.52849], [47.407404, 8.549342], [47.33742, 8.519236], [47.376033, 8.488384], [47.431363, 8.51649], [47.415755, 8.531043], [47.381519, 8.548127], [47.38322, 8.506021], [47.404888, 8.576822], [47.361715, 8.547808], [47.361811, 8.560215], [47.393607, 8.512137], [47.371536, 8.511772], [47.407878, 8.565425], [47.409377, 8.550046], [47.390867, 8.522307], [47.380799, 8.512024], [47.406816, 8.550655], [47.404424, 8.533593], [47.409536, 8.535248], [47.375112, 8.545571], [47.378966, 8.542393], [47.376103, 8.536004], [47.382768, 8.514064], [47.416809, 8.547021], [47.366148, 8.540499], [47.394096, 8.493177], [47.375496, 8.518353], [47.37025, 8.556327], [47.366787, 8.54978], [47.40182, 8.548232], [47.375896, 8.494486], [47.384761, 8.497906], [47.361955, 8.560191], [47.365619, 8.552444], [47.366777, 8.520599], [47.377539, 8.54198], [47.387229, 8.518962], [47.380097, 8.522605], [47.409319, 8.546706], [47.408956, 8.566521], [47.414331, 8.518014], [47.373041, 8.534551], [47.401393, 8.588261], [47.429343, 8.542854], [47.372868, 8.562818], [47.393658, 8.512416], [47.409037, 8.539492], [47.375221, 8.550208], [47.424382, 8.544262], [47.385346, 8.493944], [47.404145, 8.532739], [47.373616, 8.538389], [47.380283, 8.512398], [47.370179, 8.548818], [47.376805, 8.535052], [47.381035, 8.503964], [47.379431, 8.527518], [47.379261, 8.517847], [47.358281, 8.585319], [47.413827, 8.509297], [47.387878, 8.520763], [47.36018, 8.534273], [47.328702, 8.517525], [47.372542, 8.529257], [47.35294, 8.524673], [47.389891, 8.538036], [47.386155, 8.525112], [47.375989, 8.559162], [47.375093, 8.528647], [47.373456, 8.52002], [47.381692, 8.547985], [47.382353, 8.547522], [47.363778, 8.567021], [47.393736, 8.502111], [47.365551, 8.566926], [47.351035, 8.582211], [47.389786, 8.471449], [47.360504, 8.526601], [47.387896, 8.524525], [47.368972, 8.540518], [47.377321, 8.563719], [47.387182, 8.478935], [47.379709, 8.566908], [47.379719, 8.566882], [47.398864, 8.533744], [47.387922, 8.498538], [47.393222, 8.524461], [47.400958, 8.491392], [47.392973, 8.522218], [47.391188, 8.515863], [47.385978, 8.548459], [47.372935, 8.536164], [47.384168, 8.575506], [47.397958, 8.532559], [47.353488, 8.55861], [47.378633, 8.559165], [47.402854, 8.536065], [47.373275, 8.520135], [47.377606, 8.558441], [47.34006, 8.530273], [47.359542, 8.549245], [47.362233, 8.55939], [47.379423, 8.51879], [47.375808, 8.487373], [47.39375, 8.502443], [47.383083, 8.514997], [47.423697, 8.54442], [47.378051, 8.510565], [47.383594, 8.545668], [47.367741, 8.509802], [47.366951, 8.543945], [47.377759, 8.498336], [47.388756, 8.536291], [47.378413, 8.496641], [47.369358, 8.528265], [47.366061, 8.533533], [47.374644, 8.538106], [47.424157, 8.549003], [47.368738, 8.501216], [47.370302, 8.522617], [47.379015, 8.495766], [47.363765, 8.551677], [47.377368, 8.512432], [47.372404, 8.505552], [47.38472, 8.527493], [47.39177, 8.513318], [47.406481, 8.550012], [47.36494, 8.537879], [47.379537, 8.558773], [47.386225, 8.51857], [47.389731, 8.512005], [47.392499, 8.50255], [47.393842, 8.481555], [47.378592, 8.542928], [47.387297, 8.533718], [47.369726, 8.536866], [47.414133, 8.518964], [47.371073, 8.523811], [47.396461, 8.543312], [47.373939, 8.476266], [47.39285, 8.474886], [47.415598, 8.563362], [47.377183, 8.521632], [47.383782, 8.549486], [47.360962, 8.588872], [47.411697, 8.537864], [47.3682, 8.546036], [47.413716, 8.536527], [47.375661, 8.537134], [47.336682, 8.517316], [47.372921, 8.528192], [47.426466, 8.55487], [47.400117, 8.547654], [47.385952, 8.517982], [47.35963, 8.593516], [47.363742, 8.575269], [47.354736, 8.555102], [47.401498, 8.578538], [47.392472, 8.487794], [47.391627, 8.480823], [47.379065, 8.542329], [47.374183, 8.543009], [47.403608, 8.534278], [47.410366, 8.548159], [47.426567, 8.544281], [47.341112, 8.536938], [47.368052, 8.546378], [47.380825, 8.503417], [47.400881, 8.517278], [47.366948, 8.541443], [47.337916, 8.5017], [47.358537, 8.551832], [47.382414, 8.529697], [47.416004, 8.530439], [47.387251, 8.501081], [47.397949, 8.532559], [47.412962, 8.538221], [47.371272, 8.536077], [47.361217, 8.502217], [47.364577, 8.566244], [47.382886, 8.513934], [47.346101, 8.534421], [47.386529, 8.523596], [47.396321, 8.543852], [47.39783, 8.529006], [47.37659, 8.525394], [47.35285, 8.510244], [47.360421, 8.549568], [47.369275, 8.527482], [47.379366, 8.511386], [47.424816, 8.537458], [47.344374, 8.526815], [47.377034, 8.53744], [47.383078, 8.530903], [47.409159, 8.547444], [47.413757, 8.524549], [47.37617, 8.546943], [47.36226, 8.559324], [47.375482, 8.520829], [47.384482, 8.492974], [47.39488, 8.544988], [47.369933, 8.549131], [47.355942, 8.555961], [47.370152, 8.548804], [47.41722, 8.543504], [47.429345, 8.546407], [47.358973, 8.549565], [47.403114, 8.588881], [47.411649, 8.562457], [47.3835, 8.515655], [47.367107, 8.545563], [47.374435, 8.541107], [47.385189, 8.536814], [47.422502, 8.551725], [47.381487, 8.530751], [47.34845, 8.534363], [47.411169, 8.526152], [47.42323, 8.498181], [47.40679, 8.550522], [47.347728, 8.563571], [47.370061, 8.548909], [47.358319, 8.571486], [47.361267, 8.487934], [47.337661, 8.521372], [47.356217, 8.55831], [47.352114, 8.523545], [47.369657, 8.467206], [47.333386, 8.518692], [47.36377, 8.57515], [47.376174, 8.528497], [47.360473, 8.535643], [47.40562, 8.537473], [47.388152, 8.520239], [47.395257, 8.540346], [47.344442, 8.53297], [47.379099, 8.538754], [47.389979, 8.522064], [47.373216, 8.550113], [47.355512, 8.56134], [47.343106, 8.534359], [47.363103, 8.518089], [47.386964, 8.488122], [47.386632, 8.518301], [47.361879, 8.547639], [47.37629, 8.547555], [47.390721, 8.522543], [47.377265, 8.53967], [47.374646, 8.487588], [47.376662, 8.549006], [47.396134, 8.527528], [47.357223, 8.552851], [47.413443, 8.530187], [47.394201, 8.488543], [47.392356, 8.539001], [47.376019, 8.528706], [47.377487, 8.538946], [47.38808, 8.485085], [47.38339, 8.543465], [47.376917, 8.544059], [47.365108, 8.553214], [47.406835, 8.550589], [47.404641, 8.556983], [47.374032, 8.544767], [47.366813, 8.535786], [47.419625, 8.50781], [47.402027, 8.499336], [47.358103, 8.498488], [47.39822, 8.532472], [47.379853, 8.554847], [47.393003, 8.525689], [47.419272, 8.507976], [47.3695, 8.52844], [47.387945, 8.526937], [47.344994, 8.533564], [47.408417, 8.57658], [47.363635, 8.531378], [47.381041, 8.532265], [47.396846, 8.534113], [47.363497, 8.546733], [47.397364, 8.502661], [47.35556, 8.507969], [47.430557, 8.547492], [47.407103, 8.585747], [47.35206, 8.558342], [47.367996, 8.544708], [47.36403, 8.511289], [47.342377, 8.530691], [47.335384, 8.525282], [47.369565, 8.520629], [47.381129, 8.538173], [47.381427, 8.53806], [47.335016, 8.528133], [47.42002, 8.508826], [47.371069, 8.518436], [47.406871, 8.55059], [47.387704, 8.478932], [47.413721, 8.54628], [47.373425, 8.513756], [47.422904, 8.511097], [47.369671, 8.525584], [47.367639, 8.565898], [47.395766, 8.54543], [47.370722, 8.535284], [47.417683, 8.51343], [47.3932, 8.530647], [47.401553, 8.495113], [47.401392, 8.53467], [47.41818, 8.546638], [47.372907, 8.567056], [47.34934, 8.534381], [47.373899, 8.52943], [47.379121, 8.552461], [47.36904, 8.538043], [47.381344, 8.542045], [47.405432, 8.592707], [47.372605, 8.509105], [47.359561, 8.55102], [47.397946, 8.510753], [47.363869, 8.535103], [47.416922, 8.51311], [47.378903, 8.523335], [47.375546, 8.529279], [47.379455, 8.529716], [47.397759, 8.533562], [47.379505, 8.547132], [47.3998, 8.53938], [47.365739, 8.516103], [47.41726, 8.523136], [47.381148, 8.491663], [47.36044, 8.561523], [47.397551, 8.501976], [47.394137, 8.530481], [47.354788, 8.556281], [47.360734, 8.585583], [47.397683, 8.509105], [47.405914, 8.581349], [47.38196, 8.548084], [47.393425, 8.503615], [47.42308, 8.542115], [47.383465, 8.484226], [47.402098, 8.497562], [47.422375, 8.53872], [47.402556, 8.492709], [47.374833, 8.527662], [47.369014, 8.53795], [47.386742, 8.547521], [47.421048, 8.549561], [47.40198, 8.499653], [47.360944, 8.505575], [47.38494, 8.508744], [47.370994, 8.548186], [47.347398, 8.516117], [47.376421, 8.560006], [47.353996, 8.53089], [47.37165, 8.502386], [47.365126, 8.553215], [47.393021, 8.526669], [47.352403, 8.573875], [47.396391, 8.528023], [47.374619, 8.541681], [47.391864, 8.53205], [47.367738, 8.533118], [47.375168, 8.492511], [47.363158, 8.594175], [47.369607, 8.528614], [47.357065, 8.55523], [47.37865, 8.519622], [47.370182, 8.51324], [47.370499, 8.510162], [47.417044, 8.548722], [47.382696, 8.529385], [47.371197, 8.490963], [47.368896, 8.538133], [47.40661, 8.551472], [47.329729, 8.530697], [47.373573, 8.503603], [47.40356, 8.572832], [47.36904, 8.538043], [47.364384, 8.536756], [47.383428, 8.515627], [47.375526, 8.520896], [47.373293, 8.552405], [47.365112, 8.526364], [47.367382, 8.535586], [47.361842, 8.547665], [47.369889, 8.510917], [47.382144, 8.512515], [47.372091, 8.547375], [47.381008, 8.50301], [47.400217, 8.592501], [47.401008, 8.534331], [47.371499, 8.546171], [47.427094, 8.491697], [47.381066, 8.507527], [47.3624, 8.612309], [47.373201, 8.520346], [47.36709, 8.53979], [47.414645, 8.519968], [47.404831, 8.548533], [47.404726, 8.546332], [47.378741, 8.531], [47.38456, 8.487413], [47.404327, 8.546615], [47.414257, 8.536366], [47.377945, 8.526706], [47.421741, 8.500736], [47.378786, 8.510845], [47.403418, 8.534473], [47.378528, 8.542066], [47.383163, 8.531355], [47.370689, 8.516746], [47.37326, 8.535072], [47.393575, 8.511686], [47.409777, 8.543933], [47.393507, 8.526706], [47.359529, 8.535583], [47.365392, 8.564791], [47.379346, 8.542163], [47.370022, 8.558573], [47.404705, 8.549472], [47.390223, 8.52485], [47.384629, 8.484752], [47.402623, 8.541452], [47.363658, 8.507787], [47.39047, 8.539611], [47.403844, 8.576893], [47.365614, 8.548286], [47.37929, 8.515609], [47.38064, 8.517543], [47.364126, 8.520307], [47.377547, 8.542072], [47.359733, 8.549077], [47.377696, 8.531216], [47.408096, 8.572571], [47.379757, 8.537668], [47.360682, 8.531636], [47.382731, 8.539902], [47.361625, 8.506833], [47.371881, 8.525894], [47.428006, 8.490349], [47.369088, 8.537819], [47.372574, 8.547623], [47.356766, 8.532853], [47.36214, 8.535333], [47.394405, 8.50851], [47.377135, 8.526716], [47.369551, 8.553294], [47.35001, 8.533879], [47.406512, 8.556094], [47.370157, 8.539801], [47.380819, 8.497139], [47.367147, 8.536627], [47.362506, 8.533699], [47.377056, 8.528436], [47.388894, 8.515949], [47.372467, 8.566119], [47.384373, 8.53183], [47.362761, 8.567966], [47.385434, 8.536686], [47.362594, 8.533965], [47.40411, 8.56353], [47.379824, 8.519129], [47.367974, 8.540431], [47.403794, 8.558104], [47.387982, 8.490977], [47.383342, 8.510314], [47.362251, 8.559324], [47.339526, 8.527762], [47.418224, 8.546679], [47.378055, 8.526496], [47.389877, 8.535731], [47.340496, 8.537389], [47.365639, 8.532518], [47.425853, 8.4937], [47.341327, 8.530379], [47.408652, 8.504781], [47.370134, 8.548804], [47.388969, 8.477248], [47.40569, 8.56934], [47.393409, 8.524611], [47.374645, 8.550156], [47.401997, 8.491797], [47.398696, 8.548578], [47.353586, 8.576164], [47.388572, 8.470366], [47.385409, 8.536461], [47.382955, 8.515273], [47.390549, 8.545441], [47.412019, 8.5503], [47.409149, 8.54751], [47.363044, 8.556401], [47.370106, 8.548883], [47.374916, 8.518818], [47.417486, 8.545789], [47.374977, 8.537093], [47.358374, 8.571381], [47.376037, 8.533526], [47.372548, 8.555912], [47.360447, 8.531776], [47.383088, 8.48406], [47.391996, 8.523761], [47.389702, 8.539039], [47.388421, 8.487197], [47.377658, 8.55496], [47.397491, 8.532484], [47.373245, 8.529073], [47.37328, 8.514852], [47.382625, 8.54823], [47.356446, 8.570745], [47.371751, 8.523494], [47.397037, 8.480399], [47.419549, 8.508246], [47.354855, 8.554959], [47.365673, 8.521212], [47.353492, 8.576559], [47.379353, 8.542295], [47.401468, 8.587017], [47.348385, 8.562553], [47.425889, 8.493634], [47.390509, 8.508643], [47.368919, 8.540437], [47.40247, 8.556447], [47.364861, 8.537679], [47.367315, 8.545382], [47.410102, 8.542866], [47.372524, 8.543398], [47.3867, 8.525428], [47.387125, 8.546019], [47.398976, 8.541841], [47.40944, 8.549968], [47.36005, 8.550673], [47.407785, 8.585033], [47.37082, 8.535326], [47.369911, 8.552295], [47.419632, 8.54806], [47.37493, 8.534457], [47.391298, 8.486313], [47.369768, 8.561574], [47.418792, 8.530429], [47.369127, 8.504878], [47.386828, 8.534715], [47.376812, 8.499602], [47.378525, 8.54147], [47.399248, 8.542522], [47.373438, 8.520033], [47.417245, 8.522804], [47.42611, 8.543171], [47.381169, 8.504099], [47.390719, 8.515125], [47.361811, 8.560241], [47.394907, 8.536484], [47.339048, 8.519256], [47.414728, 8.559434], [47.368815, 8.524838], [47.414422, 8.545487], [47.381015, 8.491435], [47.408556, 8.546518], [47.373223, 8.535177], [47.387314, 8.552592], [47.386082, 8.504912], [47.379596, 8.567462], [47.395819, 8.528581], [47.371537, 8.547893], [47.369379, 8.499878], [47.352791, 8.525187], [47.371876, 8.529336], [47.383701, 8.588131], [47.370147, 8.504474], [47.37287, 8.546742], [47.373201, 8.503913], [47.407381, 8.547076], [47.374468, 8.552655], [47.400632, 8.534151], [47.418539, 8.547653], [47.385769, 8.492906], [47.377152, 8.535416], [47.371745, 8.473152], [47.419447, 8.506574], [47.396463, 8.504802], [47.36971, 8.507908], [47.409026, 8.550065], [47.362485, 8.526417], [47.408611, 8.546413], [47.370197, 8.548819], [47.365321, 8.546983], [47.380328, 8.503672], [47.388513, 8.489901], [47.369375, 8.532224], [47.374643, 8.495838], [47.404234, 8.561002], [47.377739, 8.537984], [47.373002, 8.485318], [47.373067, 8.536537], [47.356649, 8.534849], [47.398979, 8.533044], [47.380823, 8.549477], [47.371357, 8.515542], [47.372167, 8.539379], [47.398688, 8.539079], [47.410375, 8.539718], [47.369628, 8.540571], [47.394726, 8.478274], [47.37741, 8.500117], [47.356364, 8.591777], [47.427825, 8.490465], [47.387036, 8.519355], [47.370925, 8.502054], [47.381119, 8.528784], [47.409056, 8.539359], [47.361545, 8.506659], [47.393309, 8.542783], [47.404399, 8.50361], [47.36814, 8.523911], [47.404659, 8.574578], [47.375844, 8.529205], [47.410859, 8.563222], [47.398778, 8.539015], [47.34761, 8.532731], [47.397717, 8.533309], [47.369922, 8.511236], [47.371186, 8.523244], [47.367393, 8.546668], [47.408958, 8.543969], [47.386872, 8.497233], [47.366466, 8.544862], [47.356942, 8.507361], [47.377674, 8.538195], [47.417172, 8.541939], [47.378929, 8.542459], [47.375382, 8.526667], [47.411703, 8.549512], [47.365251, 8.520158], [47.385232, 8.547397], [47.370461, 8.475881], [47.405581, 8.54998], [47.394529, 8.546888], [47.379492, 8.516156], [47.370568, 8.535413], [47.364478, 8.531608], [47.408874, 8.558357], [47.426497, 8.536579], [47.402478, 8.553678], [47.369407, 8.525896], [47.366657, 8.507304], [47.364167, 8.526425], [47.37461, 8.536], [47.366769, 8.532833], [47.381688, 8.541827], [47.379142, 8.495649], [47.370519, 8.51767], [47.37459, 8.566999], [47.388171, 8.486014], [47.40054, 8.588971], [47.373545, 8.534508], [47.390728, 8.536133], [47.386547, 8.539742], [47.396372, 8.543244], [47.369333, 8.547874], [47.40257, 8.469246], [47.381131, 8.517898], [47.396898, 8.509288], [47.340414, 8.537453], [47.392626, 8.494565], [47.378301, 8.509802], [47.399286, 8.495201], [47.337614, 8.530131], [47.3764, 8.54912], [47.382719, 8.515493], [47.419596, 8.548073], [47.369871, 8.533982], [47.362597, 8.568135], [47.370674, 8.516441], [47.374878, 8.527623], [47.391903, 8.518301], [47.391908, 8.517838], [47.357655, 8.509017], [47.392087, 8.517894], [47.371846, 8.60154], [47.367531, 8.537893], [47.377025, 8.544048], [47.375294, 8.550064], [47.367108, 8.539778], [47.331043, 8.536374], [47.370224, 8.518405], [47.358972, 8.516417], [47.422224, 8.512687], [47.410607, 8.538066], [47.381599, 8.548275], [47.348099, 8.534342], [47.419641, 8.555575], [47.370416, 8.514265], [47.384921, 8.537563], [47.381463, 8.490716], [47.37995, 8.521039], [47.387341, 8.543202], [47.378132, 8.509627], [47.370278, 8.51164], [47.358167, 8.526501], [47.36196, 8.559728], [47.364559, 8.566257], [47.375233, 8.518586], [47.360021, 8.500274], [47.401207, 8.492656], [47.397024, 8.540939], [47.386035, 8.492382], [47.37981, 8.520612], [47.403579, 8.53449], [47.379102, 8.561876], [47.366665, 8.535267], [47.368273, 8.5116], [47.385629, 8.533194], [47.385106, 8.532296], [47.375446, 8.544585], [47.394164, 8.525673], [47.399739, 8.541075], [47.387634, 8.533208], [47.419681, 8.535431], [47.394278, 8.539319], [47.374443, 8.549675], [47.392683, 8.515694], [47.419753, 8.482924], [47.40216, 8.535295], [47.351735, 8.563127], [47.359071, 8.550586], [47.397326, 8.531871], [47.370372, 8.518037], [47.396225, 8.522708], [47.375717, 8.536883], [47.39659, 8.528769], [47.368578, 8.528991], [47.37719, 8.539893], [47.37683, 8.52761], [47.337152, 8.520978], [47.389673, 8.511514], [47.372812, 8.529196], [47.411805, 8.512994], [47.358854, 8.553467], [47.413784, 8.545341], [47.366102, 8.548085], [47.376664, 8.534731], [47.35205, 8.505277], [47.374049, 8.54482], [47.387747, 8.498946], [47.368705, 8.500844], [47.376932, 8.507073], [47.398523, 8.494974], [47.41425, 8.566938], [47.379971, 8.515888], [47.360976, 8.535732], [47.390804, 8.47429], [47.402701, 8.517924], [47.373822, 8.519445], [47.361539, 8.531402], [47.380996, 8.532264], [47.366929, 8.547254], [47.351143, 8.560162], [47.366942, 8.492998], [47.374111, 8.516378], [47.381682, 8.51375], [47.330533, 8.514056], [47.351805, 8.534366], [47.360623, 8.561183], [47.367086, 8.544001], [47.382485, 8.529858], [47.408717, 8.549396], [47.406862, 8.550603], [47.365183, 8.526472], [47.347872, 8.562648], [47.377458, 8.541991], [47.375869, 8.544527], [47.339801, 8.529117], [47.422047, 8.550416], [47.397262, 8.536678], [47.376482, 8.549056], [47.373717, 8.513298], [47.386043, 8.539758], [47.382558, 8.529753], [47.390076, 8.544093], [47.375587, 8.528803], [47.373391, 8.538332], [47.40581, 8.481034], [47.354145, 8.523771], [47.370374, 8.522539], [47.366184, 8.497127], [47.413272, 8.545357], [47.393952, 8.513707], [47.359083, 8.578836], [47.409803, 8.549724], [47.385828, 8.519622], [47.36153, 8.561387], [47.359242, 8.569944], [47.399962, 8.495029], [47.369133, 8.557456], [47.358314, 8.520428], [47.376681, 8.548967], [47.383925, 8.529781], [47.373631, 8.518633], [47.37436, 8.541463], [47.391959, 8.518144], [47.393873, 8.497968], [47.368598, 8.520133], [47.379058, 8.522213], [47.381514, 8.528792], [47.378462, 8.515659], [47.37778, 8.507779], [47.371014, 8.548002], [47.379278, 8.537884], [47.38828, 8.48681], [47.399434, 8.520998], [47.392405, 8.524299], [47.352361, 8.56261], [47.39598, 8.527657], [47.373586, 8.534919], [47.393776, 8.510338], [47.387347, 8.529401], [47.373388, 8.534915], [47.389199, 8.527505], [47.373025, 8.531425], [47.363131, 8.548341], [47.36539, 8.535082], [47.38752, 8.488345], [47.425735, 8.547644], [47.376789, 8.517571], [47.416983, 8.545725], [47.360989, 8.567015], [47.403844, 8.576893], [47.37283, 8.529197], [47.409352, 8.544136], [47.361123, 8.567111], [47.367319, 8.490092], [47.384124, 8.497695], [47.37843, 8.51044], [47.375346, 8.523766], [47.410709, 8.524407], [47.352192, 8.529529], [47.371838, 8.510321], [47.375358, 8.543364], [47.385815, 8.533462], [47.380088, 8.553819], [47.406235, 8.551186], [47.393273, 8.492684], [47.383261, 8.531476], [47.401162, 8.49957], [47.371505, 8.534294], [47.377914, 8.530003], [47.377269, 8.557017], [47.399913, 8.591435], [47.408184, 8.577396], [47.370769, 8.515013], [47.369952, 8.543425], [47.372176, 8.530891], [47.378022, 8.536626], [47.381199, 8.528878], [47.376312, 8.489356], [47.40048, 8.550139], [47.372654, 8.550499], [47.390764, 8.522742], [47.421924, 8.510136], [47.421085, 8.548461], [47.371406, 8.5465], [47.423991, 8.511225], [47.423016, 8.543147], [47.362172, 8.533877], [47.3412, 8.52761], [47.414346, 8.539323], [47.349807, 8.575395], [47.39963, 8.520246], [47.34381, 8.535088], [47.357973, 8.555262], [47.394138, 8.527527], [47.381933, 8.529211], [47.396089, 8.483718], [47.396011, 8.54529], [47.406916, 8.481109], [47.415649, 8.570108], [47.37789, 8.533485], [47.374629, 8.553718], [47.369201, 8.532499], [47.38594, 8.542034], [47.361337, 8.512572], [47.407882, 8.547431], [47.366865, 8.562214], [47.38781, 8.49892], [47.391492, 8.538997], [47.392635, 8.524741], [47.359915, 8.548869], [47.383417, 8.499336], [47.394845, 8.529753], [47.387961, 8.474341], [47.394957, 8.540671], [47.383886, 8.531012], [47.393351, 8.495984], [47.369998, 8.54328], [47.370789, 8.524362], [47.377611, 8.528752], [47.363546, 8.571399], [47.372009, 8.554881], [47.391406, 8.541419], [47.364068, 8.533108], [47.401363, 8.593083], [47.361694, 8.574033], [47.391333, 8.478486], [47.36027, 8.56148], [47.374705, 8.568127], [47.411806, 8.537786], [47.375848, 8.521115], [47.367735, 8.498746], [47.365669, 8.545428], [47.372337, 8.523268], [47.406817, 8.550576], [47.375494, 8.563826], [47.377598, 8.518594], [47.374002, 8.526069], [47.407042, 8.585574], [47.382639, 8.529689], [47.397665, 8.509105], [47.386086, 8.539958], [47.377486, 8.543806], [47.357355, 8.553184], [47.373853, 8.57616], [47.375379, 8.516378], [47.371967, 8.556416], [47.390117, 8.510132], [47.363951, 8.531266], [47.375481, 8.524722], [47.390739, 8.522516], [47.368845, 8.501257], [47.373832, 8.536474], [47.41628, 8.545817], [47.421483, 8.55014], [47.407933, 8.50853], [47.349236, 8.522546], [47.370106, 8.548883], [47.370647, 8.522227], [47.372685, 8.53412], [47.392834, 8.532202], [47.394028, 8.493706], [47.388706, 8.520634], [47.367869, 8.523985], [47.374534, 8.490009], [47.379839, 8.506893], [47.377485, 8.541978], [47.39302, 8.492798], [47.402099, 8.499417], [47.363248, 8.53521], [47.375596, 8.539225], [47.400348, 8.537616], [47.35708, 8.535785], [47.336929, 8.518869], [47.377413, 8.499786], [47.427023, 8.491576], [47.394731, 8.524704], [47.371301, 8.549941], [47.373832, 8.536474], [47.378708, 8.575442], [47.372296, 8.518143], [47.399398, 8.540034], [47.375983, 8.528745], [47.422318, 8.53905], [47.364541, 8.537275], [47.367461, 8.494226], [47.408177, 8.558766], [47.38732, 8.499361], [47.37268, 8.53841], [47.368333, 8.524404], [47.363111, 8.517268], [47.388174, 8.540756], [47.379263, 8.524336], [47.351038, 8.563588], [47.398782, 8.532894], [47.361418, 8.532776], [47.421701, 8.550873], [47.385962, 8.528393], [47.403957, 8.590038], [47.370798, 8.519582], [47.379453, 8.529915], [47.37843, 8.532476], [47.377117, 8.559689], [47.373904, 8.538329], [47.367795, 8.534708], [47.410819, 8.545014], [47.373005, 8.512437], [47.363904, 8.547509], [47.400662, 8.492314], [47.374385, 8.552931], [47.382395, 8.534571], [47.419193, 8.546977], [47.390051, 8.546769], [47.369124, 8.53782], [47.383399, 8.586853], [47.381397, 8.542139], [47.330993, 8.515878], [47.369402, 8.540659], [47.391916, 8.48467], [47.360391, 8.535773], [47.398352, 8.585598], [47.399593, 8.468181], [47.413121, 8.541391], [47.370582, 8.515778], [47.410286, 8.53113], [47.374073, 8.5498], [47.414638, 8.542629], [47.355439, 8.513301], [47.363673, 8.532081], [47.387147, 8.519053], [47.369164, 8.556119], [47.367366, 8.487962], [47.370143, 8.548791], [47.398175, 8.53622], [47.406733, 8.547169], [47.411145, 8.550441], [47.370161, 8.548805], [47.383828, 8.497676], [47.374133, 8.502369], [47.379533, 8.544153], [47.385533, 8.517484], [47.378527, 8.568247], [47.389718, 8.511502], [47.364604, 8.566205], [47.357538, 8.553744], [47.388438, 8.473356], [47.407609, 8.546803], [47.399864, 8.504685], [47.414601, 8.551136], [47.390463, 8.479211], [47.407065, 8.576869], [47.375913, 8.53608], [47.394642, 8.513946], [47.363098, 8.506002], [47.358309, 8.580673], [47.376855, 8.54864], [47.360711, 8.525692], [47.404092, 8.534461], [47.391391, 8.512516], [47.360153, 8.534246], [47.359587, 8.524716], [47.362566, 8.54719], [47.338851, 8.538241], [47.350773, 8.579559], [47.367083, 8.523373], [47.400655, 8.501839], [47.416368, 8.546057], [47.38716, 8.494258], [47.365975, 8.545341], [47.369644, 8.539883], [47.363909, 8.520382], [47.385235, 8.536709], [47.379187, 8.538054], [47.42034, 8.503358], [47.421503, 8.501129], [47.361769, 8.578258], [47.373413, 8.531301], [47.391931, 8.518275], [47.363715, 8.575268], [47.409286, 8.553807], [47.397972, 8.533871], [47.376359, 8.527018], [47.380961, 8.528383], [47.362222, 8.547488], [47.418485, 8.503639], [47.385988, 8.51797], [47.410203, 8.543637], [47.395425, 8.540668], [47.412519, 8.568239], [47.393619, 8.535769], [47.365055, 8.54568], [47.367426, 8.53944], [47.352645, 8.508996], [47.37017, 8.548805], [47.390481, 8.512656], [47.367382, 8.494065], [47.373008, 8.562251], [47.360621, 8.550221], [47.363011, 8.512487], [47.414114, 8.546646], [47.38966, 8.512944], [47.379296, 8.508233], [47.369169, 8.527348], [47.351944, 8.525315], [47.349101, 8.533039], [47.383402, 8.484198], [47.368333, 8.524378], [47.38311, 8.50623], [47.409888, 8.549235], [47.402567, 8.556581], [47.38621, 8.518279], [47.365936, 8.58085], [47.371522, 8.542927], [47.369446, 8.526532], [47.36921, 8.543886], [47.366328, 8.536677], [47.403234, 8.534854], [47.394302, 8.541466], [47.375741, 8.540962], [47.360674, 8.553161], [47.391575, 8.53219], [47.410785, 8.556038], [47.368903, 8.500861], [47.363478, 8.564513], [47.392159, 8.492569], [47.387547, 8.572121], [47.346573, 8.533041], [47.378118, 8.520777], [47.375096, 8.582291], [47.427612, 8.491137], [47.396046, 8.545343], [47.374592, 8.520784], [47.37977, 8.526796], [47.37762, 8.516264], [47.375362, 8.557918], [47.368117, 8.515807], [47.360602, 8.56984], [47.378412, 8.540991], [47.365286, 8.553403], [47.388958, 8.515831], [47.377927, 8.537154], [47.385398, 8.545096], [47.36475, 8.56781], [47.417124, 8.544151], [47.391563, 8.534375], [47.375031, 8.545596], [47.411839, 8.51314], [47.393801, 8.502815], [47.357574, 8.521591], [47.401506, 8.487495], [47.353646, 8.554351], [47.41334, 8.53151], [47.395766, 8.532223], [47.371031, 8.547168], [47.364531, 8.534521], [47.398837, 8.54038], [47.366528, 8.542083], [47.372191, 8.547258], [47.404954, 8.557175], [47.377413, 8.515333], [47.387006, 8.534056], [47.340978, 8.518726], [47.405074, 8.481854], [47.382688, 8.543477], [47.366529, 8.544876], [47.366315, 8.540834], [47.379115, 8.508296], [47.362047, 8.518491], [47.405202, 8.557564], [47.385396, 8.528315], [47.381294, 8.510101], [47.384404, 8.548399], [47.407615, 8.584036], [47.367095, 8.543974], [47.366728, 8.541862], [47.368756, 8.501216], [47.370943, 8.523239], [47.379912, 8.544028], [47.408127, 8.553664], [47.369689, 8.52561], [47.3932, 8.530634], [47.340977, 8.536935], [47.371267, 8.529946], [47.40614, 8.553662], [47.413017, 8.536208], [47.381203, 8.491571], [47.376477, 8.518293], [47.404064, 8.563608], [47.425654, 8.509442], [47.374939, 8.527863], [47.413596, 8.477397], [47.368968, 8.538095], [47.38253, 8.514509], [47.422262, 8.539208], [47.375886, 8.540886], [47.376728, 8.548703], [47.408372, 8.550648], [47.427922, 8.490692], [47.411384, 8.485277], [47.413885, 8.547079], [47.355021, 8.562852], [47.379095, 8.525895], [47.407745, 8.583628], [47.369259, 8.534923], [47.3736, 8.53631], [47.357016, 8.55838], [47.371432, 8.534412], [47.35285, 8.526551], [47.385381, 8.5365], [47.385814, 8.532575], [47.359097, 8.531855], [47.387421, 8.539575], [47.399587, 8.547537], [47.36481, 8.502766], [47.374297, 8.538615], [47.389917, 8.512301], [47.384521, 8.539952], [47.35873, 8.517299], [47.341829, 8.530561], [47.36653, 8.540918], [47.407524, 8.584961], [47.404786, 8.57262], [47.383394, 8.484026], [47.344338, 8.526867], [47.357585, 8.552646], [47.373694, 8.481452], [47.354392, 8.509772], [47.378199, 8.534153], [47.376563, 8.543429], [47.40249, 8.493065], [47.37395, 8.517196], [47.370967, 8.548212], [47.372744, 8.547759], [47.375302, 8.484622], [47.367757, 8.533939], [47.376052, 8.497137], [47.361793, 8.507101], [47.431053, 8.550233], [47.370188, 8.548805], [47.383624, 8.532093], [47.349664, 8.561508], [47.377086, 8.529125], [47.392272, 8.526972], [47.392044, 8.499217], [47.375039, 8.558758], [47.406726, 8.574742], [47.371691, 8.517429], [47.381411, 8.550986], [47.370939, 8.53795], [47.383564, 8.515497], [47.406223, 8.582893], [47.377066, 8.515909], [47.365032, 8.567564], [47.397508, 8.493894], [47.375257, 8.522692], [47.376318, 8.525587], [47.383957, 8.508088], [47.414099, 8.54161], [47.40259, 8.581808], [47.375269, 8.511794], [47.359063, 8.549487], [47.401989, 8.537147], [47.41406, 8.541888], [47.393801, 8.496933], [47.414152, 8.551087], [47.344084, 8.529906], [47.354987, 8.556113], [47.344117, 8.531151], [47.365486, 8.539109], [47.356137, 8.53562], [47.358547, 8.531989], [47.381804, 8.543723], [47.360912, 8.53581], [47.387975, 8.485785], [47.38952, 8.540148], [47.380462, 8.512494], [47.376181, 8.53443], [47.383025, 8.515433], [47.391547, 8.542654], [47.414524, 8.53384], [47.387746, 8.48623], [47.37999, 8.536852], [47.390061, 8.537166], [47.374505, 8.546061], [47.377741, 8.537839], [47.389698, 8.524204], [47.364086, 8.56679], [47.385525, 8.527033], [47.383526, 8.573028], [47.35955, 8.593369], [47.355238, 8.523185], [47.377378, 8.512366], [47.420576, 8.550041], [47.369199, 8.527931], [47.391439, 8.538956], [47.381176, 8.513078], [47.390032, 8.511548], [47.343945, 8.5303], [47.423629, 8.543014], [47.362276, 8.564183], [47.370215, 8.548793], [47.364761, 8.566711], [47.397185, 8.493768], [47.349683, 8.527612], [47.339364, 8.527732], [47.389397, 8.493574], [47.377366, 8.51945], [47.373907, 8.544659], [47.373518, 8.531647], [47.362495, 8.547162], [47.37333, 8.531498], [47.39185, 8.542951], [47.364059, 8.531202], [47.39339, 8.542811], [47.3665, 8.540361], [47.376114, 8.488412], [47.369542, 8.466952], [47.385339, 8.507401], [47.398019, 8.474152], [47.42042, 8.50837], [47.339994, 8.530524], [47.384124, 8.497695], [47.37586, 8.577844], [47.358107, 8.551625], [47.351073, 8.580161], [47.364022, 8.497494], [47.409959, 8.532342], [47.369997, 8.525325], [47.36831, 8.546727], [47.397447, 8.489667], [47.371531, 8.534347], [47.365444, 8.545449], [47.360373, 8.564672], [47.374986, 8.547462], [47.382829, 8.497762], [47.360077, 8.535687], [47.368634, 8.483021], [47.360697, 8.5357], [47.369014, 8.53795], [47.414988, 8.527502], [47.363434, 8.533625], [47.368219, 8.546818], [47.389356, 8.469255], [47.378284, 8.510623], [47.393344, 8.497772], [47.370363, 8.550252], [47.405662, 8.585054], [47.377879, 8.546012], [47.382531, 8.551393], [47.414452, 8.553558], [47.410649, 8.571884], [47.403107, 8.547199], [47.403055, 8.534784], [47.387895, 8.520763], [47.380162, 8.528155], [47.399002, 8.541974], [47.343963, 8.5303], [47.388787, 8.489456], [47.421203, 8.550253], [47.388085, 8.488568], [47.418926, 8.507452], [47.3701, 8.544818], [47.374538, 8.539772], [47.393776, 8.510365], [47.373502, 8.542796], [47.3712, 8.510176], [47.381222, 8.503279], [47.408583, 8.546478], [47.364323, 8.555329], [47.383193, 8.506033], [47.402115, 8.535255], [47.382463, 8.528334], [47.343391, 8.519463], [47.360316, 8.553869], [47.426921, 8.510568], [47.397693, 8.508933], [47.397358, 8.531275], [47.366781, 8.540062], [47.365621, 8.532465], [47.392944, 8.530072], [47.377098, 8.541057], [47.410942, 8.567702], [47.359475, 8.522265], [47.377812, 8.482658], [47.379002, 8.544221], [47.366958, 8.544197], [47.37797, 8.536413], [47.367851, 8.601651], [47.406652, 8.553739], [47.392127, 8.51261], [47.368813, 8.557979], [47.404294, 8.500375], [47.39405, 8.493348], [47.409235, 8.537601], [47.360349, 8.500784], [47.384141, 8.574538], [47.349875, 8.533902], [47.412628, 8.512493], [47.340763, 8.530142], [47.379263, 8.515648], [47.358035, 8.555356], [47.358705, 8.516054], [47.388769, 8.489522], [47.340523, 8.537336], [47.360728, 8.597975], [47.366753, 8.545821], [47.37396, 8.542885], [47.402555, 8.469908], [47.354312, 8.575518], [47.358054, 8.526035], [47.399511, 8.540434], [47.389889, 8.54205], [47.371384, 8.555384], [47.40448, 8.55694], [47.378055, 8.526523], [47.366555, 8.559864], [47.361364, 8.549667], [47.363587, 8.575411], [47.374512, 8.521564], [47.373259, 8.542818], [47.370847, 8.508487], [47.398096, 8.532231], [47.390037, 8.480514], [47.373032, 8.534511], [47.382922, 8.513895], [47.402155, 8.497205], [47.331384, 8.512552], [47.379808, 8.494643], [47.392564, 8.515944], [47.352606, 8.503488], [47.374594, 8.538661], [47.410519, 8.550004], [47.377719, 8.541983], [47.425717, 8.526807], [47.420396, 8.53587], [47.3901, 8.474554], [47.35712, 8.522085], [47.409258, 8.571536], [47.379205, 8.538054], [47.365008, 8.545877], [47.395047, 8.486599], [47.417679, 8.546283], [47.397002, 8.480292], [47.396439, 8.506471], [47.391325, 8.544252], [47.379289, 8.544346], [47.366031, 8.545184], [47.412871, 8.543944], [47.392221, 8.523752], [47.382904, 8.543441], [47.374751, 8.512406], [47.38867, 8.537812], [47.352817, 8.527173], [47.391395, 8.47858], [47.370932, 8.548079], [47.409279, 8.5731], [47.408799, 8.546456], [47.38316, 8.540228], [47.364914, 8.537826], [47.384986, 8.508678], [47.358645, 8.515801], [47.368015, 8.540856], [47.392368, 8.503131], [47.339307, 8.531899], [47.335736, 8.518488], [47.37983, 8.525261], [47.369689, 8.525584], [47.3729, 8.535183], [47.390718, 8.536252], [47.368916, 8.534055], [47.362627, 8.519986], [47.387818, 8.52708], [47.373545, 8.538229], [47.369879, 8.466575], [47.404525, 8.549441], [47.389073, 8.529463], [47.349983, 8.533865], [47.359906, 8.535671], [47.409196, 8.550095], [47.336598, 8.539598], [47.400202, 8.537759], [47.367486, 8.545386], [47.35986, 8.535749], [47.370474, 8.534842], [47.359388, 8.549361], [47.395415, 8.514028], [47.378581, 8.510642], [47.389244, 8.515069], [47.404768, 8.483875], [47.379939, 8.544042], [47.390636, 8.522038], [47.379655, 8.529522], [47.424046, 8.500424], [47.408027, 8.542558], [47.37138, 8.510232], [47.375615, 8.530591], [47.370921, 8.531329], [47.363161, 8.520513], [47.369264, 8.556029], [47.430485, 8.540956], [47.373353, 8.531988], [47.430955, 8.550112], [47.355096, 8.556976], [47.378354, 8.5414], [47.421246, 8.549552], [47.367918, 8.512016], [47.400345, 8.489525], [47.34389, 8.535182], [47.352162, 8.558026], [47.386659, 8.495917], [47.37876, 8.575602], [47.34937, 8.53593], [47.357029, 8.552397], [47.392681, 8.52551], [47.366699, 8.494965], [47.364141, 8.529151], [47.369319, 8.541809], [47.385397, 8.542434], [47.427422, 8.546155], [47.42706, 8.546399], [47.381809, 8.529976], [47.419707, 8.546776], [47.375785, 8.487915], [47.379397, 8.555579], [47.384762, 8.527852], [47.389664, 8.511514], [47.369529, 8.520602], [47.376182, 8.536178], [47.40898, 8.55013], [47.36134, 8.554062], [47.374442, 8.517524], [47.384445, 8.531885], [47.412114, 8.546035], [47.345174, 8.534534], [47.40523, 8.577757], [47.36445, 8.5552], [47.403664, 8.571443], [47.351821, 8.526901], [47.39478, 8.536654], [47.384405, 8.531288], [47.375535, 8.520883], [47.363914, 8.553931], [47.392083, 8.497932], [47.377639, 8.543743], [47.373785, 8.519484], [47.361995, 8.548674], [47.373814, 8.536473], [47.414394, 8.537999], [47.38204, 8.492462], [47.341668, 8.519997], [47.37696, 8.543252], [47.402873, 8.557555], [47.386832, 8.481868], [47.344046, 8.528264], [47.374141, 8.502422], [47.381846, 8.528878], [47.378378, 8.521762], [47.410804, 8.558742], [47.354233, 8.563404], [47.378429, 8.541084], [47.370152, 8.548804], [47.390756, 8.53314], [47.373264, 8.547876], [47.370103, 8.56411], [47.410858, 8.546618], [47.369792, 8.513656], [47.399731, 8.518102], [47.390741, 8.528067], [47.386166, 8.518119], [47.368227, 8.496055], [47.404859, 8.548375], [47.360524, 8.523557], [47.377758, 8.543586], [47.377247, 8.538636], [47.357279, 8.572933], [47.394714, 8.525538], [47.36209, 8.549034], [47.358648, 8.547797], [47.378934, 8.510371], [47.399513, 8.54307], [47.396777, 8.541371], [47.420587, 8.538511], [47.37378, 8.544735], [47.379002, 8.544221], [47.424392, 8.512611], [47.359866, 8.507274], [47.389626, 8.521394], [47.408498, 8.574779], [47.370454, 8.510161], [47.413763, 8.546652], [47.373973, 8.495255], [47.397951, 8.474694], [47.418532, 8.552994], [47.37069, 8.51668], [47.408108, 8.547237], [47.38509, 8.536878], [47.36712, 8.5366], [47.412455, 8.523369], [47.41447, 8.51754], [47.386524, 8.48908], [47.3746, 8.484741], [47.366239, 8.540369], [47.373727, 8.533333], [47.388348, 8.480322], [47.402396, 8.499383], [47.386954, 8.473288], [47.400288, 8.516259], [47.405854, 8.581109], [47.400747, 8.588114], [47.38829, 8.519977], [47.390778, 8.524213], [47.361328, 8.547813], [47.379823, 8.527843], [47.358656, 8.535618], [47.346913, 8.56321], [47.37534, 8.516787], [47.385814, 8.532601], [47.369193, 8.571572], [47.406642, 8.546266], [47.354609, 8.555232], [47.348522, 8.534351], [47.374263, 8.525081], [47.390941, 8.523064], [47.379099, 8.553838], [47.391529, 8.538944], [47.375748, 8.558985], [47.374531, 8.551743], [47.365261, 8.53067], [47.370003, 8.52085], [47.364749, 8.554107], [47.417078, 8.512782], [47.362708, 8.562312], [47.335828, 8.540204], [47.392078, 8.492541], [47.384805, 8.531786], [47.378489, 8.541443], [47.396738, 8.529328], [47.373836, 8.502363], [47.402339, 8.493764], [47.393417, 8.500608], [47.386356, 8.496627], [47.386495, 8.496232], [47.369679, 8.525663], [47.371512, 8.519186], [47.358486, 8.527024], [47.371352, 8.547426], [47.384929, 8.531047], [47.36879, 8.524639], [47.362604, 8.614339], [47.426995, 8.54661], [47.374084, 8.527872], [47.42487, 8.537407], [47.392507, 8.549522], [47.379277, 8.550266], [47.353437, 8.57673], [47.391094, 8.523067], [47.369691, 8.553681], [47.40638, 8.480674], [47.387617, 8.500334], [47.41228, 8.546489], [47.389925, 8.491916], [47.371438, 8.547904], [47.399144, 8.542175], [47.364856, 8.563496], [47.391674, 8.513912], [47.371935, 8.518202], [47.377777, 8.537826], [47.343483, 8.535412], [47.426324, 8.554668], [47.385211, 8.485094], [47.349988, 8.527658], [47.346233, 8.564638], [47.397969, 8.515126], [47.394142, 8.475189], [47.350988, 8.52654], [47.383483, 8.534606], [47.38376, 8.498244], [47.392112, 8.511365], [47.411232, 8.52614], [47.369115, 8.541501], [47.357435, 8.572606], [47.368221, 8.496743], [47.372581, 8.534621], [47.38314, 8.513661], [47.376864, 8.525916], [47.377723, 8.507089], [47.380332, 8.519656], [47.42384, 8.516855], [47.426576, 8.492336], [47.405753, 8.577636], [47.386208, 8.525153], [47.387396, 8.519402], [47.366913, 8.52329], [47.373617, 8.536377], [47.368461, 8.517469], [47.368435, 8.517389], [47.401679, 8.5059], [47.389768, 8.522523], [47.374025, 8.544542], [47.392684, 8.545141], [47.37292, 8.526365], [47.392337, 8.523834], [47.401598, 8.586622], [47.366027, 8.532341], [47.376021, 8.541829], [47.380621, 8.512802], [47.366682, 8.535426], [47.369716, 8.525558], [47.373218, 8.519552], [47.3742, 8.52226], [47.372158, 8.520325], [47.351814, 8.525749], [47.376658, 8.559719], [47.377507, 8.504224], [47.373278, 8.532265], [47.392722, 8.524093], [47.420757, 8.547063], [47.383065, 8.575111], [47.379054, 8.522583], [47.414717, 8.546579], [47.402754, 8.530432], [47.388134, 8.520225], [47.383877, 8.577566], [47.366573, 8.540217], [47.401702, 8.553966], [47.412109, 8.566058], [47.379996, 8.528589], [47.371513, 8.542848], [47.387337, 8.518898], [47.378821, 8.519626], [47.373844, 8.535176], [47.368743, 8.528636], [47.364799, 8.566553], [47.365106, 8.500958], [47.329809, 8.529826], [47.365388, 8.539067], [47.36838, 8.547841], [47.361774, 8.525555], [47.385511, 8.520887], [47.40057, 8.477606], [47.390517, 8.491106], [47.415221, 8.546563], [47.38328, 8.530391], [47.34512, 8.53358], [47.364201, 8.547489], [47.366936, 8.536133], [47.374895, 8.534417], [47.372234, 8.532362], [47.420967, 8.549506], [47.381862, 8.515741], [47.392356, 8.539014], [47.358355, 8.55208], [47.372033, 8.538396], [47.388026, 8.539309], [47.389669, 8.511951], [47.370554, 8.512957], [47.391829, 8.517611], [47.377418, 8.535806], [47.377787, 8.537694], [47.369084, 8.527796], [47.356909, 8.535834], [47.36877, 8.524824], [47.410774, 8.545013], [47.371487, 8.5228], [47.375368, 8.485312], [47.350213, 8.53428], [47.37017, 8.548792], [47.352851, 8.573236], [47.412158, 8.546076], [47.379397, 8.544309], [47.339996, 8.530312], [47.406675, 8.582664], [47.381183, 8.538188], [47.369464, 8.526572], [47.380667, 8.568332], [47.3635, 8.550202], [47.340686, 8.537247], [47.37191, 8.542803], [47.361751, 8.515506], [47.3744, 8.516239], [47.397692, 8.522618], [47.410322, 8.53769], [47.390676, 8.48948], [47.390369, 8.539808], [47.369434, 8.52591], [47.357856, 8.588302], [47.367429, 8.489843], [47.370058, 8.564096], [47.37871, 8.529529], [47.369495, 8.536583], [47.370716, 8.516747], [47.40848, 8.574766], [47.353924, 8.526202], [47.357605, 8.550542], [47.376587, 8.544701], [47.370361, 8.522963], [47.369409, 8.513172], [47.362777, 8.548664], [47.392768, 8.523035], [47.378217, 8.527493], [47.371637, 8.547736], [47.367364, 8.494012], [47.354906, 8.556125], [47.377284, 8.543325], [47.380585, 8.558252], [47.377769, 8.540488], [47.392069, 8.524663], [47.414069, 8.482799], [47.353661, 8.553743], [47.36113, 8.53563], [47.377665, 8.529719], [47.365055, 8.54564], [47.37838, 8.530198], [47.380345, 8.494878], [47.34891, 8.533181], [47.399491, 8.495351], [47.363831, 8.531581], [47.358342, 8.515477], [47.401883, 8.500353], [47.416915, 8.5453], [47.387419, 8.486608], [47.377846, 8.509343], [47.367923, 8.564382], [47.360526, 8.535776], [47.370088, 8.511756], [47.361755, 8.51123], [47.392747, 8.545089], [47.379015, 8.559689], [47.377559, 8.555805], [47.422662, 8.540661], [47.377068, 8.55267], [47.37128, 8.522889], [47.372062, 8.521965], [47.384589, 8.493174], [47.342448, 8.530719], [47.36796, 8.501597], [47.357319, 8.521943], [47.36848, 8.528883], [47.429952, 8.549614], [47.394936, 8.517237], [47.349298, 8.570381], [47.389592, 8.511526], [47.365551, 8.566926], [47.411563, 8.525418], [47.356336, 8.527019], [47.369041, 8.537937], [47.366836, 8.544697], [47.383253, 8.530443], [47.3763, 8.544563], [47.348982, 8.574239], [47.403034, 8.536042], [47.356058, 8.535512], [47.397967, 8.532546], [47.367496, 8.555555], [47.396022, 8.545038], [47.384805, 8.531773], [47.377569, 8.574199], [47.363394, 8.534908], [47.401808, 8.499729], [47.374472, 8.562507], [47.357866, 8.520167], [47.395176, 8.524236], [47.410427, 8.543708], [47.380409, 8.542873], [47.368925, 8.501405], [47.358358, 8.583891], [47.383656, 8.588063], [47.37302, 8.532921], [47.411858, 8.515035], [47.370189, 8.525078], [47.375024, 8.518767], [47.3546, 8.555218], [47.394169, 8.493073], [47.341791, 8.530732], [47.369636, 8.526404], [47.378588, 8.523369], [47.376183, 8.540852], [47.377218, 8.553017], [47.383043, 8.530743], [47.377358, 8.527872], [47.377643, 8.574002], [47.368462, 8.521229], [47.372843, 8.533514], [47.368058, 8.560704], [47.370017, 8.543214], [47.374422, 8.541518], [47.392308, 8.544047], [47.373109, 8.532976], [47.367234, 8.545394], [47.383337, 8.543358], [47.36043, 8.547702], [47.407943, 8.582678], [47.367435, 8.541333], [47.366284, 8.557224], [47.37746, 8.522856], [47.385676, 8.530135], [47.354977, 8.557172], [47.372316, 8.502373], [47.366487, 8.556672], [47.38779, 8.532947], [47.401489, 8.499166], [47.366906, 8.545811], [47.369479, 8.520191], [47.359822, 8.57684], [47.380846, 8.549822], [47.425834, 8.493739], [47.396564, 8.541989], [47.398911, 8.533559], [47.363739, 8.535511], [47.368806, 8.500581], [47.374474, 8.529469], [47.420563, 8.502607], [47.420785, 8.53654], [47.42157, 8.538213], [47.341002, 8.519957], [47.380025, 8.547275], [47.370434, 8.514199], [47.364437, 8.536836], [47.408228, 8.569261], [47.367525, 8.600943], [47.426315, 8.554694], [47.359449, 8.535449], [47.419614, 8.507969], [47.372753, 8.535498], [47.383395, 8.515308], [47.383052, 8.53073], [47.405862, 8.581123], [47.368996, 8.537989], [47.397395, 8.532164], [47.373776, 8.519497], [47.38853, 8.536419], [47.360343, 8.523725], [47.344913, 8.52979], [47.410837, 8.545015], [47.375068, 8.524661], [47.400986, 8.491234], [47.364177, 8.556491], [47.404025, 8.556559], [47.347328, 8.533096], [47.385381, 8.5365], [47.37743, 8.512526], [47.365556, 8.546816], [47.363872, 8.535739], [47.369226, 8.527971], [47.375709, 8.54896], [47.360163, 8.533227], [47.358158, 8.550037], [47.430325, 8.542662], [47.353808, 8.571946], [47.41739, 8.553937], [47.363895, 8.546503], [47.37119, 8.488818], [47.404472, 8.55686], [47.377395, 8.500753], [47.371865, 8.542802], [47.379971, 8.528416], [47.389896, 8.50981], [47.354397, 8.523697], [47.37305, 8.534511], [47.37831, 8.556324], [47.368272, 8.536531], [47.336785, 8.537008], [47.349966, 8.560971], [47.350401, 8.534363], [47.381014, 8.535138], [47.359035, 8.551499], [47.326177, 8.513386], [47.427984, 8.545716], [47.389126, 8.542802], [47.428923, 8.488446], [47.370277, 8.548873], [47.399768, 8.542784], [47.415689, 8.548389], [47.383795, 8.550956], [47.365504, 8.539175], [47.362037, 8.506047], [47.363695, 8.520153], [47.381433, 8.506687], [47.37296, 8.546811], [47.399852, 8.477446], [47.407372, 8.562897], [47.388064, 8.488872], [47.378794, 8.519612], [47.352311, 8.507189], [47.363635, 8.549238], [47.387844, 8.490351], [47.338104, 8.538226], [47.375712, 8.539293], [47.341094, 8.536885], [47.386252, 8.518558], [47.364779, 8.53777], [47.395723, 8.508046], [47.376979, 8.52899], [47.376704, 8.544637], [47.360469, 8.552032], [47.353689, 8.553624], [47.376408, 8.527535], [47.37401, 8.554446], [47.423053, 8.551551], [47.371623, 8.515944], [47.37378, 8.537174], [47.374005, 8.501599], [47.414316, 8.53862], [47.374523, 8.546088], [47.379116, 8.516029], [47.384991, 8.495408], [47.426665, 8.492404], [47.393264, 8.478855], [47.409534, 8.479053], [47.405259, 8.578433], [47.36066, 8.524407], [47.391417, 8.477176], [47.393192, 8.52862], [47.404217, 8.573761], [47.376137, 8.553153], [47.413558, 8.546489], [47.360905, 8.502886], [47.42685, 8.491864], [47.384418, 8.547896], [47.377679, 8.511922], [47.334083, 8.518269], [47.357629, 8.588455], [47.387378, 8.488144], [47.376741, 8.483657], [47.377905, 8.530016], [47.423059, 8.542419], [47.363951, 8.533159], [47.344064, 8.53111], [47.362477, 8.518712], [47.383267, 8.484235], [47.384819, 8.534104], [47.366354, 8.540503], [47.378731, 8.514856], [47.36623, 8.540382], [47.391329, 8.522966], [47.364047, 8.56708], [47.377464, 8.518592], [47.383806, 8.533832], [47.339635, 8.528624], [47.364701, 8.545924], [47.376667, 8.497706], [47.405676, 8.549452], [47.377113, 8.540461], [47.431282, 8.54418], [47.392393, 8.492521], [47.353178, 8.527034], [47.377427, 8.535793], [47.382676, 8.483945], [47.404506, 8.55698], [47.403832, 8.565299], [47.368392, 8.546649], [47.360432, 8.526679], [47.354799, 8.526869], [47.375027, 8.539425], [47.377408, 8.526377], [47.374853, 8.538786], [47.39026, 8.510268], [47.373002, 8.485332], [47.430955, 8.550139], [47.402932, 8.580967], [47.357121, 8.555033], [47.409743, 8.544714], [47.370152, 8.548791], [47.38199, 8.571883], [47.402686, 8.492287], [47.375698, 8.526567], [47.358954, 8.527894], [47.384539, 8.480817], [47.406874, 8.556831], [47.387593, 8.535698], [47.385025, 8.495647], [47.380332, 8.540567], [47.42195, 8.538963], [47.353893, 8.559479], [47.4146, 8.559617], [47.387737, 8.544177], [47.402528, 8.490787], [47.368227, 8.536517], [47.353925, 8.600911], [47.371053, 8.528776], [47.371084, 8.547275], [47.37955, 8.532009], [47.354955, 8.554855], [47.375332, 8.549853], [47.356452, 8.535626], [47.341318, 8.530432], [47.364923, 8.51005], [47.375854, 8.488248], [47.36633, 8.544899], [47.367269, 8.54174], [47.34868, 8.573823], [47.40527, 8.555234], [47.369191, 8.527878], [47.408171, 8.556606], [47.366907, 8.543904], [47.366411, 8.547734], [47.377994, 8.530097], [47.355158, 8.557983], [47.375546, 8.513892], [47.34243, 8.530732], [47.367324, 8.541675], [47.380488, 8.519355], [47.365366, 8.54701], [47.378538, 8.52301], [47.388431, 8.487078], [47.364356, 8.547214], [47.382908, 8.481142], [47.364738, 8.554279], [47.367038, 8.544317], [47.413634, 8.528999], [47.4115, 8.567622], [47.370909, 8.543021], [47.406459, 8.576233], [47.408644, 8.550481], [47.378849, 8.527175], [47.378741, 8.527199], [47.378633, 8.559152], [47.370079, 8.548922], [47.370612, 8.543028], [47.375068, 8.547424], [47.377584, 8.509483], [47.424148, 8.49914], [47.376549, 8.543932], [47.423347, 8.551822], [47.41498, 8.545445], [47.373971, 8.540767], [47.399276, 8.542443], [47.406965, 8.495512], [47.414303, 8.546637], [47.376934, 8.540351], [47.373383, 8.536332], [47.384132, 8.528753], [47.373674, 8.534193], [47.373837, 8.524503], [47.383238, 8.499266], [47.384047, 8.52638], [47.37137, 8.562402], [47.377005, 8.543279], [47.373843, 8.540989], [47.391002, 8.52231], [47.357383, 8.572486], [47.391072, 8.522589], [47.367892, 8.519655], [47.387359, 8.516567], [47.373424, 8.524402], [47.397231, 8.532425], [47.425527, 8.547679], [47.378851, 8.527029], [47.375268, 8.516786], [47.377336, 8.499361], [47.396899, 8.519873], [47.374655, 8.550143], [47.371666, 8.525757], [47.416296, 8.545181], [47.370542, 8.469818], [47.402558, 8.492417], [47.387004, 8.494573], [47.368335, 8.524206], [47.367095, 8.521215], [47.371366, 8.515595], [47.350452, 8.57836], [47.334675, 8.528959], [47.374522, 8.539573], [47.368899, 8.501245], [47.378729, 8.556664], [47.397889, 8.534148], [47.368729, 8.548073], [47.387229, 8.518935], [47.378766, 8.542548], [47.374432, 8.539545], [47.369022, 8.538043], [47.390684, 8.538808], [47.39315, 8.474494], [47.405914, 8.581349], [47.410894, 8.563382], [47.387201, 8.519094], [47.403573, 8.547447], [47.393265, 8.530357], [47.393392, 8.50033], [47.355332, 8.527581], [47.3736, 8.534324], [47.394979, 8.512562], [47.373884, 8.546115], [47.380609, 8.514086], [47.335297, 8.541132], [47.369081, 8.541367], [47.406954, 8.587188], [47.400903, 8.502294], [47.425555, 8.547666], [47.383683, 8.573601], [47.404242, 8.561042], [47.368216, 8.538675], [47.378972, 8.543572], [47.369243, 8.528064], [47.40448, 8.556926], [47.402932, 8.580954], [47.378927, 8.527507], [47.383401, 8.586601], [47.359686, 8.557641], [47.391858, 8.538368], [47.367961, 8.539014], [47.38665, 8.520274], [47.390913, 8.522215], [47.392859, 8.489788], [47.378425, 8.548103], [47.396256, 8.540367], [47.404601, 8.557459], [47.394595, 8.524807], [47.353923, 8.511894], [47.392337, 8.523847], [47.371217, 8.536234], [47.415045, 8.544267], [47.333614, 8.528924], [47.398238, 8.541905], [47.381672, 8.529206], [47.371241, 8.523166], [47.371251, 8.523074], [47.339954, 8.537576], [47.369636, 8.543471], [47.390263, 8.523408], [47.347918, 8.56617], [47.377178, 8.526982], [47.396998, 8.512178], [47.398429, 8.591403], [47.370287, 8.556249], [47.357894, 8.550442], [47.37098, 8.546849], [47.420201, 8.549702], [47.371451, 8.550262], [47.367871, 8.494711], [47.402157, 8.552452], [47.386055, 8.521348], [47.366061, 8.533533], [47.392396, 8.524299], [47.387294, 8.499281], [47.351593, 8.525321], [47.37553, 8.560053], [47.381492, 8.483551], [47.361092, 8.506067], [47.407629, 8.489735], [47.377091, 8.541825], [47.37717, 8.522108], [47.343405, 8.530408], [47.372188, 8.522907], [47.340956, 8.524932], [47.367091, 8.544332], [47.388431, 8.487078], [47.387446, 8.52935], [47.384279, 8.528504], [47.377492, 8.509786], [47.382101, 8.530486], [47.382353, 8.530438], [47.357857, 8.596244], [47.421833, 8.503415], [47.377157, 8.510984], [47.366229, 8.545188], [47.374485, 8.521643], [47.375901, 8.535483], [47.380613, 8.525224], [47.360237, 8.523459], [47.363286, 8.548158], [47.363723, 8.535378], [47.37316, 8.512215], [47.35981, 8.525833], [47.386695, 8.547745], [47.404928, 8.557095], [47.378281, 8.540631], [47.349761, 8.564461], [47.346833, 8.564889], [47.367775, 8.49831], [47.363605, 8.567203], [47.369265, 8.525708], [47.375092, 8.553277], [47.369936, 8.524252], [47.367191, 8.533861], [47.363028, 8.533723], [47.364586, 8.566231], [47.352947, 8.524885], [47.340057, 8.530525], [47.405229, 8.593286], [47.409566, 8.537793], [47.376677, 8.5286], [47.391198, 8.469423], [47.379155, 8.546118], [47.378495, 8.521791], [47.358549, 8.526998], [47.379525, 8.488135], [47.380851, 8.538088], [47.364739, 8.554186], [47.363868, 8.531449], [47.360248, 8.566444], [47.370916, 8.525252], [47.400609, 8.54414], [47.334032, 8.534146], [47.391704, 8.518403], [47.373594, 8.534959], [47.367363, 8.55812], [47.372798, 8.554249], [47.390586, 8.479478], [47.365662, 8.539509], [47.411414, 8.546736], [47.385238, 8.530735], [47.354842, 8.574735], [47.403674, 8.571311], [47.363432, 8.54795], [47.400807, 8.50004], [47.369017, 8.529185], [47.406021, 8.484576], [47.384286, 8.507459], [47.367716, 8.534494], [47.358549, 8.526945], [47.360702, 8.570584], [47.409818, 8.537785], [47.351953, 8.558326], [47.371765, 8.488882], [47.413703, 8.553794], [47.363459, 8.532818], [47.334775, 8.529808], [47.378076, 8.526192], [47.378102, 8.541435], [47.363105, 8.5483], [47.351854, 8.505128], [47.368839, 8.552551], [47.378984, 8.54238], [47.376029, 8.522879], [47.367661, 8.509707], [47.366824, 8.543108], [47.373663, 8.542853], [47.423125, 8.538378], [47.426583, 8.51015], [47.371526, 8.515757], [47.385204, 8.537158], [47.385775, 8.548918], [47.394008, 8.50474], [47.410317, 8.52689], [47.38328, 8.530444], [47.369096, 8.537859], [47.360304, 8.567173], [47.373224, 8.494578], [47.356607, 8.551382], [47.372639, 8.534251], [47.37474, 8.549668], [47.395248, 8.540425], [47.366801, 8.522758], [47.363977, 8.546465], [47.403263, 8.534709], [47.343247, 8.535619], [47.363124, 8.559316], [47.376517, 8.524611], [47.367999, 8.540657], [47.362414, 8.554654], [47.425083, 8.537742], [47.352095, 8.573207], [47.374533, 8.5242], [47.395814, 8.530025], [47.359342, 8.56988], [47.361781, 8.518089], [47.370677, 8.514204], [47.366012, 8.536842], [47.359003, 8.554755], [47.409149, 8.547524], [47.378808, 8.509455], [47.376747, 8.52782], [47.401705, 8.581272], [47.429215, 8.487961], [47.392621, 8.488207], [47.367495, 8.529286], [47.374796, 8.525821], [47.39846, 8.538385], [47.399927, 8.494896], [47.409143, 8.571335], [47.376047, 8.510392], [47.360387, 8.523832], [47.379899, 8.494472], [47.379538, 8.527533], [47.366437, 8.54506], [47.379153, 8.526452], [47.386814, 8.514291], [47.369993, 8.518109], [47.37999, 8.536865], [47.377099, 8.541917], [47.391054, 8.522576], [47.397898, 8.534161], [47.404945, 8.557188], [47.399039, 8.541842], [47.378022, 8.51079], [47.373408, 8.52611], [47.375768, 8.52102], [47.372653, 8.525115], [47.375647, 8.477332], [47.377729, 8.507447], [47.364168, 8.531085], [47.408481, 8.578277], [47.358797, 8.558444], [47.404928, 8.557121], [47.424414, 8.538033], [47.366213, 8.548736], [47.413885, 8.54802], [47.362433, 8.533869], [47.387049, 8.489687], [47.357745, 8.521555], [47.390608, 8.524991], [47.370099, 8.552445], [47.348524, 8.522704], [47.41835, 8.546708], [47.393827, 8.524222], [47.368571, 8.495837], [47.377324, 8.543855], [47.405176, 8.478557], [47.399625, 8.540807], [47.402938, 8.575734], [47.378306, 8.530355], [47.363087, 8.513084], [47.374802, 8.496093], [47.402194, 8.488038], [47.389497, 8.48751], [47.377358, 8.498911], [47.370197, 8.548819], [47.38619, 8.525139], [47.391596, 8.525196], [47.365714, 8.535976], [47.367014, 8.556101], [47.414363, 8.536501], [47.362186, 8.547513], [47.402002, 8.531079], [47.399229, 8.542614], [47.407006, 8.550553], [47.36405, 8.498395], [47.392625, 8.50254], [47.385751, 8.492906], [47.363784, 8.535539], [47.402086, 8.49886], [47.402858, 8.500929], [47.383089, 8.530652], [47.369452, 8.52591], [47.419751, 8.50772], [47.371854, 8.506614], [47.379002, 8.570204], [47.393494, 8.526162], [47.399255, 8.542734], [47.403646, 8.531258], [47.414385, 8.506301], [47.342971, 8.520077], [47.360939, 8.515781], [47.37848, 8.576682], [47.40308, 8.554684], [47.372334, 8.536019], [47.404836, 8.55076], [47.365851, 8.552674], [47.384782, 8.531388], [47.38942, 8.529854], [47.362497, 8.533698], [47.375859, 8.538025], [47.37945, 8.537861], [47.370657, 8.519288], [47.393245, 8.587144], [47.369569, 8.54768], [47.390403, 8.536232], [47.371404, 8.521091], [47.359134, 8.585536], [47.368417, 8.497886], [47.36977, 8.490617], [47.376812, 8.538031], [47.416549, 8.545942], [47.377717, 8.532806], [47.403784, 8.565616], [47.41257, 8.537789], [47.351695, 8.55889], [47.370958, 8.548252], [47.402978, 8.56242], [47.392754, 8.524425], [47.381782, 8.529976], [47.381556, 8.514728], [47.397093, 8.480108], [47.372624, 8.518639], [47.350529, 8.51888], [47.409449, 8.561218], [47.368969, 8.538029], [47.36973, 8.530828], [47.419111, 8.546141], [47.380897, 8.517906], [47.412636, 8.514534], [47.381398, 8.510513], [47.379593, 8.526514], [47.357839, 8.520166], [47.374192, 8.542996], [47.375099, 8.519444], [47.369876, 8.552281], [47.419195, 8.546712], [47.353535, 8.556599], [47.364321, 8.533921], [47.375517, 8.535237], [47.356271, 8.556445], [47.37017, 8.548805], [47.412944, 8.538234], [47.369881, 8.529097], [47.377349, 8.498911], [47.360388, 8.596895], [47.385969, 8.519055], [47.368751, 8.54953], [47.374307, 8.522394], [47.384037, 8.511056], [47.373521, 8.537023], [47.361993, 8.5507], [47.371275, 8.486344], [47.411162, 8.562605], [47.381185, 8.516005], [47.371743, 8.515708], [47.356865, 8.53574], [47.383391, 8.574867], [47.39849, 8.474863], [47.402405, 8.499383], [47.378289, 8.527415], [47.378308, 8.527362], [47.372727, 8.529632], [47.393216, 8.493041], [47.370188, 8.548805], [47.398858, 8.59169], [47.387167, 8.489557], [47.393001, 8.485022], [47.389673, 8.511474], [47.413648, 8.524586], [47.366806, 8.543148], [47.417085, 8.545409], [47.412026, 8.528807], [47.399769, 8.586], [47.367819, 8.534073], [47.363742, 8.575255], [47.413139, 8.515578], [47.398978, 8.513993], [47.375779, 8.559489], [47.361408, 8.576596], [47.380164, 8.501947], [47.379101, 8.508891], [47.399888, 8.541449], [47.3623, 8.532675], [47.367839, 8.546095], [47.404543, 8.556941], [47.404605, 8.557022], [47.369236, 8.527839], [47.377552, 8.533107], [47.361661, 8.526069], [47.376346, 8.527468], [47.367411, 8.546642], [47.38861, 8.491122], [47.368241, 8.533181], [47.370188, 8.548805], [47.382877, 8.507139], [47.369804, 8.541886], [47.376356, 8.527375], [47.415181, 8.512624], [47.377264, 8.526387], [47.349658, 8.56119], [47.41701, 8.522985], [47.381269, 8.491268], [47.367179, 8.539898], [47.413883, 8.545396], [47.379428, 8.569895], [47.346075, 8.534341], [47.370188, 8.548805], [47.40527, 8.490974], [47.420771, 8.50839], [47.414086, 8.550436], [47.383155, 8.58604], [47.36143, 8.551284], [47.391112, 8.523054], [47.385979, 8.51793], [47.365585, 8.537204], [47.373434, 8.53481], [47.36561, 8.552496], [47.42296, 8.551787], [47.389438, 8.511642], [47.39467, 8.486419], [47.393328, 8.478644], [47.41433, 8.518107], [47.396604, 8.593999], [47.372569, 8.529284], [47.363797, 8.575111], [47.364699, 8.598458], [47.378108, 8.541819], [47.337024, 8.520194], [47.370209, 8.535327], [47.366907, 8.520152], [47.373725, 8.554162], [47.364918, 8.545902], [47.406278, 8.541131], [47.380561, 8.548664], [47.40925, 8.55007], [47.379572, 8.527746], [47.371196, 8.524132], [47.372762, 8.534492], [47.369957, 8.466814], [47.370161, 8.548805], [47.407504, 8.548311], [47.405448, 8.579405], [47.336628, 8.517394], [47.375639, 8.554361], [47.399846, 8.543064], [47.370464, 8.532141], [47.366407, 8.557505], [47.387851, 8.519756], [47.372753, 8.534478], [47.37818, 8.515097], [47.374728, 8.524495], [47.379949, 8.523078], [47.379437, 8.569869], [47.37384, 8.53658], [47.373365, 8.531671], [47.382066, 8.514103], [47.368672, 8.543623], [47.408355, 8.550634], [47.38576, 8.532614], [47.413092, 8.515802], [47.377985, 8.53011], [47.374734, 8.544636], [47.377116, 8.569926], [47.373452, 8.534771], [47.373969, 8.531445], [47.366953, 8.522933], [47.38233, 8.499129], [47.366739, 8.563165], [47.349957, 8.561011], [47.346629, 8.528992], [47.359994, 8.594874], [47.345345, 8.534498], [47.392564, 8.492538], [47.37347, 8.530984], [47.382175, 8.541665], [47.377946, 8.537101], [47.366755, 8.49968], [47.343563, 8.53552], [47.402979, 8.580703], [47.37235, 8.542825], [47.354435, 8.573972], [47.354958, 8.523378], [47.371695, 8.556662], [47.421374, 8.549302], [47.414474, 8.556818], [47.370152, 8.548791], [47.376075, 8.543657], [47.370345, 8.550212], [47.372928, 8.504318], [47.389581, 8.487194], [47.387853, 8.539531], [47.390002, 8.480433], [47.372272, 8.503206], [47.383664, 8.496891], [47.42195, 8.510203], [47.386246, 8.480996], [47.365642, 8.532161], [47.348778, 8.578484], [47.37974, 8.524253], [47.364351, 8.555237], [47.379801, 8.520652], [47.384454, 8.531858], [47.355002, 8.534934], [47.354731, 8.575024], [47.379263, 8.552636], [47.388664, 8.479162], [47.332158, 8.517344], [47.381086, 8.513076], [47.405337, 8.592374], [47.388521, 8.491014], [47.374576, 8.538661], [47.381324, 8.542217], [47.412886, 8.537703], [47.409845, 8.549976], [47.37938, 8.544229], [47.364323, 8.554442], [47.393587, 8.539133], [47.375749, 8.535427], [47.411279, 8.57093], [47.392142, 8.493403], [47.37056, 8.524794], [47.400364, 8.585894], [47.381836, 8.516574], [47.366928, 8.553822], [47.387963, 8.527016], [47.365184, 8.521626], [47.365995, 8.55265], [47.414307, 8.550918], [47.390684, 8.484593], [47.371697, 8.52536], [47.378189, 8.53418], [47.410678, 8.558752], [47.382014, 8.548151], [47.354448, 8.560682], [47.382144, 8.512515], [47.360056, 8.581399], [47.384076, 8.508832], [47.376541, 8.543892], [47.379347, 8.522086], [47.393395, 8.49311], [47.375211, 8.545573], [47.407694, 8.568627], [47.375669, 8.537187], [47.378281, 8.512887], [47.379148, 8.544953], [47.361222, 8.535354], [47.379588, 8.53748], [47.371061, 8.520316], [47.368723, 8.483129], [47.369868, 8.547488], [47.403909, 8.556464], [47.410666, 8.571937], [47.361511, 8.525735], [47.375406, 8.5645], [47.367859, 8.495995], [47.377635, 8.520449], [47.378614, 8.542478], [47.377643, 8.518635], [47.36123, 8.51731], [47.386797, 8.547482], [47.380764, 8.52536], [47.41489, 8.541653], [47.379474, 8.527651], [47.370188, 8.511652], [47.364256, 8.531259], [47.374927, 8.496214], [47.407316, 8.57967], [47.362532, 8.533884], [47.420342, 8.539632], [47.376074, 8.559667], [47.414423, 8.552868], [47.361901, 8.560243], [47.366521, 8.540931], [47.369257, 8.527561], [47.381442, 8.531691], [47.416232, 8.511837], [47.383279, 8.540946], [47.387049, 8.518945], [47.372412, 8.553208], [47.420834, 8.501526], [47.39073, 8.522569], [47.412658, 8.480731], [47.373095, 8.514385], [47.397555, 8.49461], [47.360611, 8.528695], [47.346945, 8.530759], [47.374536, 8.539958], [47.377543, 8.522606], [47.386296, 8.504188], [47.365176, 8.547112], [47.368862, 8.539787], [47.365176, 8.547112], [47.381195, 8.503252], [47.365186, 8.547933], [47.353166, 8.526425], [47.40725, 8.549525], [47.366627, 8.545911], [47.375314, 8.485337], [47.36861, 8.531308], [47.397017, 8.530261], [47.385342, 8.542512], [47.389119, 8.488575], [47.398193, 8.532471], [47.368469, 8.528101], [47.357317, 8.57909], [47.386585, 8.518591], [47.372792, 8.520867], [47.39476, 8.525433], [47.42559, 8.557104], [47.38508, 8.498482], [47.386631, 8.489149], [47.384446, 8.547831], [47.403616, 8.556087], [47.376628, 8.527089], [47.37482, 8.543208], [47.415049, 8.515232], [47.405957, 8.577905], [47.402785, 8.535759], [47.359074, 8.550215], [47.370933, 8.556461], [47.408843, 8.542813], [47.37166, 8.525518], [47.364366, 8.546248], [47.329313, 8.51464], [47.372688, 8.534755], [47.37436, 8.541437], [47.363116, 8.506028], [47.39126, 8.514911], [47.416964, 8.538251], [47.384452, 8.528203], [47.367182, 8.533861], [47.393658, 8.501713], [47.365237, 8.499372], [47.377647, 8.541982], [47.373054, 8.566754], [47.394197, 8.49], [47.371773, 8.524991], [47.35549, 8.574709], [47.410365, 8.542646], [47.387253, 8.500803], [47.393827, 8.500934], [47.377246, 8.498326], [47.388207, 8.52016], [47.390847, 8.512968], [47.401382, 8.545202], [47.368365, 8.496706], [47.371344, 8.523698], [47.398014, 8.534256], [47.400918, 8.477878], [47.395315, 8.532333], [47.366806, 8.543134], [47.373756, 8.535942], [47.335335, 8.519075], [47.366696, 8.542391], [47.372536, 8.534593], [47.36436, 8.555211], [47.403978, 8.572457], [47.401999, 8.499507], [47.408069, 8.572584], [47.387493, 8.496212], [47.375295, 8.485496], [47.369885, 8.547554], [47.428355, 8.490502], [47.387013, 8.48966], [47.40314, 8.575301], [47.362429, 8.547426], [47.38701, 8.498931], [47.368946, 8.540398], [47.387362, 8.50066], [47.404736, 8.556534], [47.363447, 8.550108], [47.408241, 8.572548], [47.373407, 8.53481], [47.379879, 8.528652], [47.362541, 8.533885], [47.399247, 8.521709], [47.378512, 8.541854], [47.373041, 8.534498], [47.389697, 8.511859], [47.370204, 8.547164], [47.373967, 8.544885], [47.359635, 8.522414], [47.387574, 8.540518], [47.371923, 8.531919], [47.386299, 8.531698], [47.378297, 8.54173], [47.396181, 8.545373], [47.378768, 8.542336], [47.388834, 8.483258], [47.376754, 8.560993], [47.408172, 8.547119], [47.350924, 8.527624], [47.39503, 8.522538], [47.392303, 8.476703], [47.373298, 8.528226], [47.397122, 8.530621], [47.378311, 8.51061], [47.367451, 8.537812], [47.394854, 8.524084], [47.419679, 8.50479], [47.386741, 8.547614], [47.387356, 8.493454], [47.384226, 8.530304], [47.359768, 8.594115], [47.388923, 8.483366], [47.35979, 8.521318], [47.387316, 8.537334], [47.370217, 8.532573], [47.37327, 8.48061], [47.419139, 8.507827], [47.403325, 8.555484], [47.394339, 8.489261], [47.377203, 8.52146], [47.377656, 8.538247], [47.388322, 8.487169], [47.431466, 8.543773], [47.382412, 8.500998], [47.412134, 8.549534], [47.375465, 8.486492], [47.38844, 8.509622], [47.355971, 8.522776], [47.400018, 8.494844], [47.363596, 8.550561], [47.373136, 8.532977], [47.377334, 8.548411], [47.380052, 8.528365], [47.361389, 8.554619], [47.371097, 8.555246], [47.428154, 8.489941], [47.426501, 8.492626], [47.338684, 8.532071], [47.370161, 8.548831], [47.36905, 8.537951], [47.428282, 8.489719], [47.371934, 8.522161], [47.411499, 8.526477], [47.377043, 8.53744], [47.373526, 8.527913], [47.376238, 8.544508], [47.411845, 8.550548], [47.367916, 8.5446], [47.374444, 8.540181], [47.421518, 8.537112], [47.415522, 8.544198], [47.39062, 8.54274], [47.406921, 8.586843], [47.359054, 8.5495], [47.390002, 8.489427], [47.398476, 8.591205], [47.411076, 8.545457], [47.369979, 8.543359], [47.357773, 8.55923], [47.360103, 8.535754], [47.396824, 8.529807], [47.366035, 8.53062], [47.418469, 8.508238], [47.37831, 8.541347], [47.388431, 8.491025], [47.370179, 8.548805], [47.414787, 8.519256], [47.356253, 8.507956], [47.388557, 8.491028], [47.404549, 8.534709], [47.410429, 8.56956], [47.381906, 8.52925], [47.424456, 8.549698], [47.420299, 8.508805], [47.375776, 8.554152], [47.388431, 8.487078], [47.37641, 8.534924], [47.391756, 8.518709], [47.396074, 8.540522], [47.380987, 8.513087], [47.340296, 8.530014], [47.379976, 8.527913], [47.360297, 8.567861], [47.390689, 8.483096], [47.364672, 8.537702], [47.364321, 8.531075], [47.370708, 8.516667], [47.373842, 8.492896], [47.367432, 8.523618], [47.381258, 8.494459], [47.378272, 8.540631], [47.369814, 8.510241], [47.390787, 8.522213], [47.414088, 8.551191], [47.374788, 8.544677], [47.363021, 8.561643], [47.382466, 8.501013], [47.364595, 8.566257], [47.379662, 8.553201], [47.382117, 8.528778], [47.38529, 8.507823], [47.365355, 8.533016], [47.415104, 8.513219], [47.380116, 8.52826], [47.372782, 8.534254], [47.405077, 8.557482], [47.398033, 8.532243], [47.415764, 8.531043], [47.405428, 8.491414], [47.356757, 8.535699], [47.369321, 8.525563], [47.407468, 8.54835], [47.353442, 8.558741], [47.344018, 8.530275], [47.406826, 8.550589], [47.37754, 8.543767], [47.359794, 8.507272], [47.367888, 8.560647], [47.410968, 8.550079], [47.409292, 8.558843], [47.425871, 8.537175], [47.379754, 8.515102], [47.388345, 8.540746], [47.374347, 8.519058], [47.371768, 8.536842], [47.377052, 8.544075], [47.361364, 8.549654], [47.404673, 8.572154], [47.375664, 8.545304], [47.361139, 8.549755], [47.3945, 8.525322], [47.414718, 8.551112], [47.422644, 8.499296], [47.333992, 8.515462], [47.393877, 8.475608], [47.390751, 8.492091], [47.407124, 8.492892], [47.365206, 8.534495], [47.38306, 8.530836], [47.413332, 8.538997], [47.408116, 8.554856], [47.406168, 8.534729], [47.381149, 8.491623], [47.381046, 8.491979], [47.370887, 8.548105], [47.397622, 8.53291], [47.400906, 8.537575], [47.37214, 8.520298], [47.375875, 8.541098], [47.41916, 8.506449], [47.356572, 8.523927], [47.399312, 8.542457], [47.374778, 8.549523], [47.366914, 8.544037], [47.378117, 8.522763], [47.408037, 8.489399], [47.417725, 8.546178], [47.376444, 8.525642], [47.40148, 8.545231], [47.361084, 8.525289], [47.339014, 8.538099], [47.408813, 8.548842], [47.37449, 8.495795], [47.38881, 8.479933], [47.376124, 8.516605], [47.368619, 8.524622], [47.397665, 8.53311], [47.375203, 8.523657], [47.414328, 8.538369], [47.390643, 8.52323], [47.364585, 8.537369], [47.419776, 8.548103], [47.382012, 8.550204], [47.355813, 8.560909], [47.410285, 8.572326], [47.382689, 8.514804], [47.375232, 8.524399], [47.358181, 8.50957], [47.40457, 8.556955], [47.427134, 8.491313], [47.377703, 8.525615], [47.393729, 8.500853], [47.398373, 8.534277], [47.406005, 8.591222], [47.379604, 8.54434], [47.347989, 8.532686], [47.370872, 8.512553], [47.41457, 8.55902], [47.380634, 8.488898], [47.386001, 8.535638], [47.404946, 8.557135], [47.414206, 8.571456], [47.372381, 8.534842], [47.359685, 8.507469], [47.366166, 8.533853], [47.364295, 8.533854], [47.407507, 8.568438], [47.374287, 8.552797], [47.364393, 8.546196], [47.405532, 8.588138], [47.373785, 8.519457], [47.39788, 8.474613], [47.383145, 8.572477], [47.415168, 8.562319], [47.377398, 8.529436], [47.374633, 8.524056], [47.393216, 8.493027], [47.365074, 8.553968], [47.42465, 8.552857], [47.365368, 8.531666], [47.367066, 8.547019], [47.374486, 8.540486], [47.3766, 8.532929], [47.377626, 8.522329], [47.349034, 8.532522], [47.381993, 8.584386], [47.39738, 8.533726], [47.420625, 8.502728], [47.37706, 8.544168], [47.396854, 8.540856], [47.382178, 8.54038], [47.417278, 8.546845], [47.377715, 8.519603], [47.428254, 8.489758], [47.36037, 8.523686], [47.346488, 8.564379], [47.376229, 8.528406], [47.367851, 8.523984], [47.340929, 8.537239], [47.357503, 8.52155], [47.387926, 8.485214], [47.407002, 8.481561], [47.362006, 8.559597], [47.364756, 8.557059], [47.407536, 8.544085], [47.402083, 8.495256], [47.407189, 8.586146], [47.367733, 8.513496], [47.404156, 8.561557], [47.380283, 8.512398], [47.404191, 8.561677], [47.376942, 8.544271], [47.413401, 8.53937], [47.422323, 8.55074], [47.387855, 8.540286], [47.409522, 8.54989], [47.409033, 8.545573], [47.374076, 8.535366], [47.405264, 8.557711], [47.397998, 8.474522], [47.343827, 8.535247], [47.402037, 8.495348], [47.37626, 8.55991], [47.407858, 8.578542], [47.352673, 8.580314], [47.399265, 8.542681], [47.383466, 8.534513], [47.381819, 8.556186], [47.382205, 8.572047], [47.397708, 8.533243], [47.361703, 8.503233], [47.365937, 8.539978], [47.377669, 8.498321], [47.329669, 8.531318], [47.374447, 8.544643], [47.369181, 8.527997], [47.373585, 8.519744], [47.407584, 8.489774], [47.40953, 8.537766], [47.411633, 8.542725], [47.361536, 8.560765], [47.348546, 8.570961], [47.372299, 8.510013], [47.369202, 8.554081], [47.354287, 8.557806], [47.35618, 8.553769], [47.362666, 8.55552], [47.364235, 8.536408], [47.377407, 8.548293], [47.415299, 8.562719], [47.386073, 8.521322], [47.386376, 8.496375], [47.376047, 8.566102], [47.410191, 8.548566], [47.392329, 8.538987], [47.364064, 8.551379], [47.399722, 8.516155], [47.389034, 8.537383], [47.32932, 8.512933], [47.355231, 8.557866], [47.395759, 8.531136], [47.404153, 8.562762], [47.376003, 8.5295], [47.360453, 8.522483], [47.411188, 8.526033], [47.347311, 8.566686], [47.386555, 8.497531], [47.409035, 8.550052], [47.378475, 8.522956], [47.373975, 8.476201], [47.378708, 8.542043], [47.343836, 8.535234], [47.378364, 8.541334], [47.365761, 8.494298], [47.421077, 8.546526], [47.376189, 8.529755], [47.364834, 8.566646], [47.374106, 8.517888], [47.400074, 8.590643], [47.390782, 8.539896], [47.361545, 8.525961], [47.37017, 8.548805], [47.41438, 8.513629], [47.366964, 8.535061], [47.417183, 8.542642], [47.371391, 8.530121], [47.396032, 8.481041], [47.40727, 8.58526], [47.387613, 8.529738], [47.407754, 8.583562], [47.369121, 8.527691], [47.418808, 8.507582], [47.372761, 8.538372], [47.343845, 8.535221], [47.352294, 8.507122], [47.389231, 8.479134], [47.362068, 8.535344], [47.367191, 8.533848], [47.375535, 8.541845], [47.3556, 8.556947], [47.374703, 8.523329], [47.425886, 8.555321], [47.350643, 8.579066], [47.386934, 8.490426], [47.371741, 8.53406], [47.364717, 8.554556], [47.369717, 8.543539], [47.361069, 8.53543], [47.385782, 8.545408], [47.37017, 8.548805], [47.377337, 8.535844], [47.389401, 8.539444], [47.377461, 8.514963], [47.422237, 8.552183], [47.383477, 8.486809], [47.360894, 8.513795], [47.366945, 8.558602], [47.380237, 8.525918], [47.37087, 8.554592], [47.375295, 8.485482], [47.360305, 8.5522], [47.370674, 8.519315], [47.390002, 8.476407], [47.377326, 8.570526], [47.391714, 8.519318], [47.404047, 8.495892], [47.358678, 8.500605], [47.380825, 8.518858], [47.374299, 8.524208], [47.335359, 8.528907], [47.394215, 8.490067], [47.422815, 8.494422], [47.411495, 8.546738], [47.38295, 8.540542], [47.391772, 8.538923], [47.409774, 8.545205], [47.368857, 8.531737], [47.365851, 8.509883], [47.370702, 8.558866], [47.392003, 8.523986], [47.365433, 8.539028], [47.37018, 8.490056], [47.344342, 8.530229], [47.387312, 8.518738], [47.402728, 8.535135], [47.400683, 8.548633], [47.405639, 8.59181], [47.356085, 8.55615], [47.378164, 8.526406], [47.364921, 8.550231], [47.367645, 8.495805], [47.350099, 8.570345], [47.38443, 8.496787], [47.398482, 8.538929], [47.391307, 8.487294], [47.385012, 8.481197], [47.341676, 8.53433], [47.388014, 8.52919], [47.384437, 8.499873], [47.385056, 8.530917], [47.385002, 8.530982], [47.383689, 8.547908], [47.378083, 8.530218], [47.427502, 8.547203], [47.39798, 8.474535], [47.376968, 8.544338], [47.392137, 8.525949], [47.39245, 8.516551], [47.376382, 8.527468], [47.347975, 8.564027], [47.37729, 8.52656], [47.345822, 8.527758], [47.370161, 8.548818], [47.409205, 8.566844], [47.424356, 8.540365], [47.379563, 8.527772], [47.378876, 8.530989], [47.376082, 8.533501], [47.347379, 8.534394], [47.419192, 8.507881], [47.37964, 8.523443], [47.387484, 8.488318], [47.383307, 8.530431], [47.369909, 8.536552], [47.369073, 8.525134], [47.426052, 8.547385], [47.416597, 8.534294], [47.383565, 8.539283], [47.395697, 8.522352], [47.387011, 8.575434], [47.398093, 8.532509], [47.402701, 8.517924], [47.376954, 8.523958], [47.367349, 8.57892], [47.407442, 8.574174], [47.387968, 8.517824], [47.394601, 8.527934], [47.374467, 8.52159], [47.380104, 8.518023], [47.374073, 8.555375], [47.378849, 8.520513], [47.40963, 8.537675], [47.385885, 8.493015], [47.412957, 8.537797], [47.381204, 8.483519], [47.428164, 8.547562], [47.384268, 8.548503], [47.403893, 8.569209], [47.368878, 8.539947], [47.368778, 8.524917], [47.397705, 8.52601], [47.387905, 8.524525], [47.386517, 8.503597], [47.367434, 8.541453], [47.355908, 8.562248], [47.424186, 8.496928], [47.374456, 8.517021], [47.413946, 8.518788], [47.420844, 8.502401], [47.412151, 8.528875], [47.379342, 8.555604], [47.359143, 8.559894], [47.403285, 8.586142], [47.376861, 8.543356], [47.344958, 8.532584], [47.367611, 8.541761], [47.354014, 8.558145], [47.429277, 8.548712], [47.389436, 8.52151], [47.410009, 8.541327], [47.371765, 8.521945], [47.351797, 8.560441], [47.407224, 8.564258], [47.382038, 8.515201], [47.396354, 8.504946], [47.373753, 8.544748], [47.37827, 8.53042], [47.380354, 8.512492], [47.40502, 8.572625], [47.373535, 8.525027], [47.347197, 8.531743], [47.411079, 8.543204], [47.37145, 8.531525], [47.363009, 8.559168], [47.381334, 8.542164], [47.415274, 8.546644], [47.415347, 8.546526], [47.409438, 8.538029], [47.392699, 8.52359], [47.385679, 8.508652], [47.37136, 8.514297], [47.365877, 8.54992], [47.370421, 8.535662], [47.409215, 8.547194], [47.40696, 8.550632], [47.406145, 8.551224], [47.37866, 8.559139], [47.408535, 8.53173], [47.38277, 8.541479], [47.402736, 8.554068], [47.41935, 8.502517], [47.366796, 8.54234], [47.366946, 8.543561], [47.36291, 8.558173], [47.404553, 8.557762], [47.356629, 8.52357], [47.392341, 8.503117], [47.366522, 8.540904], [47.366857, 8.543413], [47.350478, 8.578454], [47.369032, 8.537964], [47.368521, 8.539714], [47.400762, 8.548859], [47.377842, 8.532822], [47.401044, 8.535365], [47.377591, 8.543159], [47.393518, 8.483575], [47.365008, 8.557065], [47.388015, 8.485282], [47.38755, 8.518266], [47.366516, 8.553614], [47.405648, 8.527908], [47.37494, 8.534431], [47.351753, 8.4896], [47.413861, 8.545806], [47.388819, 8.479933], [47.394088, 8.525154], [47.417821, 8.511233], [47.368941, 8.524748], [47.335108, 8.519216], [47.369994, 8.466709], [47.383826, 8.540202], [47.403176, 8.588935], [47.329928, 8.51239], [47.369495, 8.526189], [47.386416, 8.527885], [47.391502, 8.514055], [47.363923, 8.566852], [47.36655, 8.54824], [47.341326, 8.530524], [47.399321, 8.585858], [47.380856, 8.518462], [47.364913, 8.547318], [47.359369, 8.507555], [47.3766, 8.532929], [47.421771, 8.550159], [47.353769, 8.558364], [47.375339, 8.56034], [47.387501, 8.487418], [47.391147, 8.489145], [47.393236, 8.47892], [47.416974, 8.538132], [47.369617, 8.525583], [47.399169, 8.542321], [47.391079, 8.522815], [47.33125, 8.536365], [47.37449, 8.495782], [47.374471, 8.495888], [47.427572, 8.546436], [47.366504, 8.533304], [47.418864, 8.507411], [47.378172, 8.514011], [47.36849, 8.546678], [47.376858, 8.535132], [47.344266, 8.531643], [47.385497, 8.536661], [47.374756, 8.553628], [47.369115, 8.54158], [47.391719, 8.48554], [47.377007, 8.524065], [47.374864, 8.541487], [47.38402, 8.501269], [47.406612, 8.584465], [47.393343, 8.547645], [47.391681, 8.518972], [47.402086, 8.49886], [47.410337, 8.547469], [47.371912, 8.506218], [47.370618, 8.470455], [47.343785, 8.534902], [47.36886, 8.528612], [47.415037, 8.551701], [47.398815, 8.533279], [47.358312, 8.550001], [47.385609, 8.543776], [47.385724, 8.489952], [47.362048, 8.557082], [47.408589, 8.531757], [47.35304, 8.526489], [47.352181, 8.524976], [47.37097, 8.554502], [47.396235, 8.545374], [47.362994, 8.518166], [47.37279, 8.521026], [47.419826, 8.482846], [47.361463, 8.565476], [47.425808, 8.547473], [47.373922, 8.513448], [47.414376, 8.537985], [47.384422, 8.5484], [47.380556, 8.528362], [47.406494, 8.55045], [47.383052, 8.484046], [47.405641, 8.542827], [47.386477, 8.525277], [47.370842, 8.516749], [47.382486, 8.529752], [47.37983, 8.525261], [47.365218, 8.50145], [47.356714, 8.553343], [47.380219, 8.501749], [47.370097, 8.548936], [47.407767, 8.578673], [47.374246, 8.525002], [47.401223, 8.534508], [47.381132, 8.534955], [47.372954, 8.531344], [47.391244, 8.515652], [47.365547, 8.539348], [47.386916, 8.490466], [47.418529, 8.547719], [47.370222, 8.521477], [47.381146, 8.528744], [47.39382, 8.524977], [47.374743, 8.544636], [47.376635, 8.534903], [47.373664, 8.537093], [47.369427, 8.541838], [47.427807, 8.490491], [47.373933, 8.536237], [47.370398, 8.514264], [47.367798, 8.53909], [47.362131, 8.547552], [47.391037, 8.522496], [47.410348, 8.550106], [47.364446, 8.53685], [47.402838, 8.491389], [47.410877, 8.563302], [47.398212, 8.536155], [47.394774, 8.546668], [47.359254, 8.518938], [47.419454, 8.556233], [47.417762, 8.54981], [47.37986, 8.515343], [47.369587, 8.547694], [47.404052, 8.55656], [47.378974, 8.54242], [47.369023, 8.53795], [47.418259, 8.508552], [47.379326, 8.56004], [47.368743, 8.540937], [47.373602, 8.519864], [47.38621, 8.518213], [47.359868, 8.549054], [47.400654, 8.502938], [47.361282, 8.576606], [47.349996, 8.52775], [47.3413, 8.524714], [47.357601, 8.554685], [47.414453, 8.553438], [47.371069, 8.547923], [47.350549, 8.560203], [47.41491, 8.549949], [47.37017, 8.548805], [47.419962, 8.500501], [47.373444, 8.526177], [47.363719, 8.551755], [47.375544, 8.520897], [47.358192, 8.555929], [47.359881, 8.594475], [47.380645, 8.528496], [47.361174, 8.521412], [47.37378, 8.537188], [47.376556, 8.548819], [47.40956, 8.545889], [47.392999, 8.545068], [47.377829, 8.574324], [47.420296, 8.503331], [47.347217, 8.53443], [47.400187, 8.494013], [47.341294, 8.536744], [47.401983, 8.499308], [47.37038, 8.489822], [47.361892, 8.560243], [47.359624, 8.549168], [47.387367, 8.497269], [47.37774, 8.551068], [47.327382, 8.529683], [47.343866, 8.530153], [47.380369, 8.483371], [47.360446, 8.552574], [47.390762, 8.522027], [47.379996, 8.555962], [47.381143, 8.542359], [47.412878, 8.522318], [47.387006, 8.490481], [47.377906, 8.529923], [47.387543, 8.527683], [47.367817, 8.5605], [47.366742, 8.56192], [47.385609, 8.548411], [47.382078, 8.533889], [47.414954, 8.55003], [47.391478, 8.481403], [47.368556, 8.534088], [47.349564, 8.565251], [47.417645, 8.546137], [47.375751, 8.537983], [47.361864, 8.52553], [47.37383, 8.537612], [47.396324, 8.545468], [47.364941, 8.570382], [47.380972, 8.491222], [47.378546, 8.540199], [47.393299, 8.52482], [47.408556, 8.540899], [47.359089, 8.525063], [47.383727, 8.58825], [47.382134, 8.512554], [47.379027, 8.543546], [47.370031, 8.55664], [47.422385, 8.548992], [47.424214, 8.543026], [47.385619, 8.519883], [47.410475, 8.533002], [47.40872, 8.546256], [47.376476, 8.511593], [47.386852, 8.535113], [47.362944, 8.563045], [47.407314, 8.544703], [47.397672, 8.533322], [47.363859, 8.531462], [47.403675, 8.570265], [47.369585, 8.558114], [47.385829, 8.517675], [47.403388, 8.493136], [47.382048, 8.532286], [47.366085, 8.545132], [47.375642, 8.496771], [47.379901, 8.483361], [47.353909, 8.575324], [47.358972, 8.516377], [47.369445, 8.526704], [47.369076, 8.541831], [47.376995, 8.544325], [47.391444, 8.523114], [47.361015, 8.531576], [47.387476, 8.487271], [47.390657, 8.483678], [47.364295, 8.533881], [47.372853, 8.518167], [47.411682, 8.561914], [47.389596, 8.512003], [47.381888, 8.531183], [47.364529, 8.532866], [47.404833, 8.574237], [47.398366, 8.53784], [47.373422, 8.552951], [47.356789, 8.514122], [47.364604, 8.566218], [47.328589, 8.517986], [47.361755, 8.525647], [47.366576, 8.559574], [47.37768, 8.51175], [47.41057, 8.572584], [47.391664, 8.514111], [47.376236, 8.533345], [47.37302, 8.532882], [47.384408, 8.53195], [47.380358, 8.527378], [47.375808, 8.529138], [47.368601, 8.558557], [47.341367, 8.529983], [47.377769, 8.537747], [47.376445, 8.536951], [47.38394, 8.527252], [47.371786, 8.556598], [47.347092, 8.534322], [47.404012, 8.534433], [47.406778, 8.541499], [47.336437, 8.52619], [47.345031, 8.529661], [47.374615, 8.576401], [47.391879, 8.538965], [47.370143, 8.548804], [47.418394, 8.546815], [47.36922, 8.532446], [47.37345, 8.533102], [47.410108, 8.509766], [47.384748, 8.516872], [47.386474, 8.541714], [47.409791, 8.537785], [47.375945, 8.53371], [47.378451, 8.510149], [47.364733, 8.547368], [47.408085, 8.580137], [47.36176, 8.604431], [47.410447, 8.569507], [47.376179, 8.567324], [47.387004, 8.536136], [47.370695, 8.546605], [47.384453, 8.542401], [47.373506, 8.519504], [47.373885, 8.536567], [47.413186, 8.513432], [47.368916, 8.501391], [47.367306, 8.522609], [47.369288, 8.505887], [47.375623, 8.548587], [47.367932, 8.544839], [47.404007, 8.556572], [47.380922, 8.541957], [47.329, 8.517372], [47.369515, 8.520165], [47.366764, 8.541876], [47.408991, 8.539583], [47.394229, 8.493405], [47.390924, 8.522043], [47.361663, 8.57627], [47.411244, 8.570849], [47.351542, 8.60164], [47.419306, 8.509235], [47.399288, 8.505707], [47.393703, 8.544884], [47.416402, 8.525411], [47.365559, 8.598768], [47.376328, 8.523627], [47.367135, 8.539752], [47.399241, 8.542323], [47.386245, 8.501856], [47.411339, 8.544257], [47.370233, 8.548806], [47.377314, 8.521158], [47.369305, 8.527178], [47.405155, 8.478862], [47.3833, 8.506102], [47.404515, 8.503691], [47.396304, 8.51329], [47.377487, 8.539012], [47.36877, 8.524784], [47.412657, 8.54003], [47.372391, 8.521362], [47.38443, 8.538175], [47.364754, 8.554478], [47.354761, 8.574667], [47.372814, 8.535645], [47.375743, 8.544551], [47.363842, 8.528497], [47.358661, 8.532256], [47.342648, 8.527706], [47.377908, 8.508536], [47.431357, 8.54385], [47.414025, 8.54842], [47.370286, 8.548847], [47.377166, 8.509051], [47.374606, 8.540158], [47.393656, 8.537571], [47.403029, 8.572013], [47.419185, 8.547772], [47.405023, 8.497355], [47.413433, 8.483555], [47.386786, 8.547628], [47.371837, 8.60154], [47.427793, 8.546905], [47.376428, 8.528251], [47.372966, 8.485397], [47.391065, 8.522298], [47.366497, 8.505156], [47.431151, 8.516101], [47.425017, 8.539941], [47.381212, 8.507212], [47.370233, 8.537538], [47.341496, 8.520986], [47.37869, 8.52304], [47.418226, 8.508299], [47.418341, 8.546708], [47.405269, 8.555287], [47.388296, 8.490996], [47.365429, 8.546932], [47.376643, 8.539749], [47.369726, 8.536853], [47.379888, 8.528586], [47.360946, 8.564989], [47.378056, 8.513849], [47.36227, 8.559311], [47.370523, 8.51624], [47.373828, 8.53025], [47.365898, 8.55621], [47.374736, 8.528335], [47.369901, 8.513526], [47.37897, 8.509484], [47.389222, 8.477173], [47.386389, 8.518388], [47.374451, 8.549768], [47.381137, 8.528731], [47.372713, 8.534968], [47.381682, 8.533947], [47.372498, 8.518663], [47.379785, 8.537576], [47.379825, 8.525724], [47.411076, 8.545457], [47.369717, 8.525532], [47.366435, 8.553626], [47.381333, 8.54219], [47.387642, 8.486798], [47.375266, 8.522732], [47.411328, 8.544495], [47.367181, 8.559268], [47.35834, 8.585717], [47.372892, 8.520684], [47.365144, 8.545708], [47.377107, 8.539163], [47.384408, 8.531937], [47.37539, 8.547603], [47.354271, 8.555794], [47.369087, 8.55012], [47.393246, 8.530542], [47.375819, 8.522293], [47.381863, 8.516601], [47.367504, 8.545386], [47.37437, 8.525203], [47.355563, 8.554259], [47.408241, 8.552142], [47.358407, 8.59705], [47.357838, 8.583787], [47.368349, 8.550144], [47.414591, 8.519066], [47.374231, 8.540865], [47.377755, 8.568112], [47.382496, 8.531527], [47.361137, 8.555514], [47.359888, 8.535697], [47.374459, 8.539545], [47.393042, 8.52157], [47.386113, 8.527575], [47.37017, 8.548805], [47.393369, 8.498978], [47.410545, 8.543538], [47.387818, 8.527146], [47.37384, 8.536514], [47.36714, 8.540202], [47.344886, 8.532635], [47.3757, 8.516689], [47.384765, 8.516885], [47.373732, 8.596404], [47.413422, 8.530505], [47.364896, 8.553792], [47.402005, 8.497812], [47.369014, 8.538016], [47.418114, 8.527977], [47.424641, 8.552856], [47.390924, 8.522057], [47.36264, 8.563807], [47.37556, 8.528776], [47.364107, 8.563705], [47.414073, 8.541491], [47.390335, 8.47546], [47.383322, 8.557065], [47.403623, 8.547793], [47.382028, 8.516221], [47.424797, 8.537524], [47.352754, 8.557337], [47.377246, 8.538795], [47.353194, 8.572145], [47.387645, 8.514891], [47.386017, 8.50511], [47.382156, 8.52948], [47.367429, 8.546629], [47.377831, 8.519698], [47.377329, 8.512762], [47.355785, 8.593036], [47.366935, 8.543786], [47.368923, 8.541854], [47.386495, 8.529106], [47.370161, 8.548805], [47.391872, 8.50524], [47.370687, 8.538991], [47.415591, 8.565972], [47.337465, 8.532563], [47.369527, 8.528507], [47.413002, 8.544424], [47.376776, 8.538084], [47.369595, 8.553401], [47.390422, 8.542723], [47.373896, 8.541057], [47.403607, 8.504601], [47.372133, 8.48399], [47.38329, 8.48854], [47.34964, 8.561163], [47.349827, 8.566011], [47.388161, 8.491086], [47.4124, 8.570384], [47.372675, 8.535179], [47.37563, 8.554374], [47.361117, 8.521742], [47.412215, 8.555167], [47.393921, 8.535152], [47.358684, 8.527875], [47.370143, 8.548791], [47.380348, 8.542713], [47.368772, 8.548286], [47.373278, 8.535165], [47.391381, 8.536517], [47.409403, 8.540678], [47.376784, 8.53815], [47.384791, 8.534209], [47.380475, 8.548212], [47.35814, 8.55569], [47.373822, 8.53654], [47.42487, 8.537407], [47.370556, 8.515671], [47.373956, 8.519461], [47.364574, 8.554461], [47.369912, 8.547515], [47.388331, 8.520414], [47.408885, 8.548817], [47.339991, 8.529968], [47.388582, 8.535691], [47.366787, 8.5432], [47.372435, 8.541463], [47.404659, 8.483966], [47.37004, 8.556654], [47.395154, 8.542636], [47.414521, 8.541725], [47.373031, 8.534564], [47.350988, 8.576916], [47.338689, 8.539151], [47.365723, 8.536002], [47.389677, 8.521713], [47.409567, 8.537687], [47.369957, 8.518069], [47.370967, 8.548212], [47.370298, 8.558804], [47.378953, 8.559595], [47.409817, 8.523527], [47.356407, 8.523235], [47.360866, 8.550014], [47.385208, 8.508007], [47.388167, 8.526358], [47.414673, 8.551124], [47.384445, 8.531858], [47.403341, 8.502277], [47.372672, 8.521196], [47.363634, 8.533298], [47.375357, 8.530255], [47.367972, 8.519763], [47.368835, 8.539813], [47.374067, 8.53632], [47.354065, 8.534147], [47.365949, 8.567597], [47.363136, 8.546911], [47.419531, 8.50533], [47.370206, 8.548806], [47.3728, 8.530494], [47.385227, 8.484274], [47.347806, 8.525337], [47.382573, 8.515702], [47.404016, 8.556559], [47.378091, 8.52651], [47.415913, 8.538136], [47.35303, 8.556694], [47.37572, 8.516517], [47.370106, 8.548883], [47.37553, 8.560066], [47.368603, 8.499267], [47.359815, 8.535801], [47.379618, 8.527707], [47.370905, 8.534957], [47.380537, 8.500458], [47.412476, 8.544797], [47.365559, 8.547478], [47.374364, 8.529639], [47.368995, 8.543723], [47.378509, 8.526982], [47.407913, 8.578384], [47.363452, 8.575421], [47.382895, 8.513947], [47.377785, 8.528411], [47.35356, 8.558572], [47.358631, 8.585379], [47.406908, 8.587214], [47.40438, 8.55703], [47.369188, 8.548003], [47.360349, 8.550454], [47.368664, 8.54643], [47.375049, 8.531401], [47.411577, 8.558771], [47.419066, 8.506911], [47.374078, 8.540849], [47.405444, 8.592456], [47.378415, 8.540753], [47.416538, 8.548062], [47.386504, 8.529106], [47.398767, 8.506597], [47.372341, 8.538138], [47.390957, 8.482306], [47.380848, 8.535506], [47.36647, 8.541631], [47.387384, 8.487495], [47.421111, 8.549509], [47.413296, 8.53139], [47.39482, 8.520917], [47.389697, 8.511846], [47.369105, 8.541659], [47.414056, 8.541437], [47.387174, 8.528656], [47.373969, 8.540939], [47.33579, 8.529988], [47.383763, 8.504694], [47.378725, 8.542189], [47.408635, 8.579963], [47.386171, 8.515642], [47.398534, 8.502684], [47.375962, 8.562817], [47.386208, 8.540424], [47.362951, 8.548324], [47.375471, 8.485843], [47.409692, 8.544408], [47.381092, 8.481954], [47.389309, 8.527282], [47.369417, 8.52007], [47.386632, 8.551519], [47.362131, 8.559639], [47.411703, 8.525805], [47.329615, 8.53133], [47.393238, 8.524607], [47.382365, 8.549019], [47.405154, 8.480968], [47.390055, 8.485521], [47.387589, 8.529406], [47.409835, 8.549115], [47.378941, 8.508703], [47.388934, 8.537513], [47.414095, 8.550423], [47.399295, 8.495241], [47.375987, 8.535869], [47.388554, 8.482392], [47.406678, 8.576914], [47.373452, 8.529104], [47.369063, 8.492192], [47.40284, 8.491085], [47.418855, 8.506364], [47.4143, 8.539335], [47.401833, 8.585607], [47.383707, 8.540385], [47.394146, 8.488741], [47.384399, 8.531937], [47.362727, 8.558486], [47.396857, 8.533861], [47.359636, 8.508858], [47.409812, 8.536486], [47.369212, 8.541754], [47.370286, 8.506913], [47.401241, 8.588138], [47.427294, 8.552952], [47.401492, 8.588303], [47.371104, 8.564767], [47.40678, 8.562765], [47.392678, 8.527735], [47.408359, 8.509214], [47.393929, 8.510421], [47.386187, 8.537814], [47.354679, 8.558238], [47.379359, 8.495547], [47.380246, 8.552352], [47.369901, 8.513539], [47.372899, 8.547445], [47.41048, 8.53817], [47.357122, 8.53515], [47.369715, 8.541778], [47.356706, 8.551384], [47.3744, 8.543861], [47.353235, 8.555944], [47.37385, 8.536487], [47.377134, 8.541998], [47.419454, 8.499935], [47.404173, 8.557052], [47.364007, 8.555442], [47.369238, 8.519961], [47.364185, 8.546363], [47.406073, 8.588945], [47.426586, 8.544255], [47.386991, 8.494123], [47.428072, 8.490059], [47.419447, 8.506561], [47.382411, 8.514666], [47.373905, 8.53825], [47.374229, 8.526776], [47.379196, 8.517991], [47.419933, 8.549551], [47.373449, 8.531355], [47.404329, 8.556751], [47.376831, 8.52659], [47.376803, 8.539051], [47.403323, 8.497295], [47.35546, 8.512944], [47.358248, 8.572239], [47.391365, 8.522966], [47.391625, 8.51917], [47.376394, 8.583868], [47.375426, 8.516206], [47.36985, 8.508321], [47.411124, 8.526204], [47.366888, 8.545824], [47.377394, 8.499892], [47.390561, 8.470272], [47.370737, 8.470219]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_64a74ce91ebea74972a98bf2b61dc5fa = L.heatLayer(\n", - " [[47.417156, 8.505296], [47.337015, 8.520274], [47.405579, 8.481705], [47.375414, 8.527078], [47.419348, 8.505565], [47.372766, 8.54731], [47.386263, 8.526054], [47.407997, 8.572622], [47.361892, 8.531131], [47.399611, 8.51553], [47.347594, 8.531645], [47.348517, 8.573951], [47.376946, 8.543848], [47.377303, 8.541299], [47.373624, 8.518474], [47.354972, 8.534232], [47.375563, 8.486666], [47.377784, 8.509249], [47.371643, 8.515772], [47.390352, 8.539728], [47.362636, 8.558657], [47.399304, 8.495201], [47.376958, 8.569578], [47.382601, 8.514564], [47.371969, 8.564639], [47.351377, 8.60108], [47.37416, 8.475701], [47.422825, 8.535827], [47.364481, 8.536943], [47.373619, 8.536204], [47.364803, 8.531508], [47.387155, 8.519119], [47.402153, 8.497417], [47.381507, 8.582627], [47.401562, 8.517583], [47.379451, 8.544323], [47.371203, 8.518557], [47.352206, 8.488272], [47.383088, 8.530797], [47.343005, 8.534635], [47.364257, 8.531193], [47.391239, 8.53919], [47.367638, 8.509217], [47.356836, 8.58407], [47.377752, 8.509818], [47.376238, 8.544508], [47.428558, 8.551507], [47.384761, 8.531732], [47.382879, 8.529124], [47.362122, 8.559639], [47.38359, 8.539429], [47.380375, 8.493634], [47.425179, 8.537082], [47.39559, 8.527093], [47.380421, 8.559414], [47.354172, 8.523679], [47.38803, 8.486647], [47.368627, 8.524728], [47.376418, 8.52739], [47.381719, 8.529988], [47.379324, 8.537858], [47.373278, 8.484662], [47.366973, 8.560376], [47.409521, 8.537766], [47.3644, 8.534108], [47.3932, 8.530647], [47.371756, 8.54754], [47.4313, 8.516555], [47.367771, 8.521056], [47.395645, 8.520272], [47.389245, 8.527427], [47.368351, 8.524392], [47.402527, 8.535462], [47.368895, 8.500729], [47.408922, 8.574563], [47.369339, 8.525511], [47.404652, 8.550279], [47.377726, 8.519418], [47.371673, 8.473097], [47.391381, 8.536557], [47.377337, 8.48343], [47.410597, 8.572624], [47.39896, 8.541655], [47.355785, 8.549948], [47.371372, 8.547281], [47.405986, 8.548094], [47.375517, 8.496597], [47.389358, 8.52119], [47.38567, 8.480071], [47.385432, 8.549043], [47.35733, 8.521705], [47.392736, 8.523524], [47.376304, 8.563791], [47.36811, 8.532821], [47.386948, 8.500691], [47.366469, 8.533224], [47.409513, 8.540482], [47.42589, 8.493595], [47.355051, 8.557915], [47.363598, 8.533324], [47.372878, 8.600821], [47.392071, 8.49923], [47.397051, 8.52185], [47.384134, 8.532408], [47.387402, 8.487482], [47.372652, 8.601015], [47.382556, 8.514576], [47.382967, 8.551892], [47.409282, 8.528764], [47.405149, 8.481538], [47.384871, 8.484902], [47.364851, 8.567693], [47.383755, 8.542956], [47.36698, 8.491741], [47.39376, 8.494522], [47.39952, 8.516628], [47.371482, 8.546157], [47.418937, 8.507266], [47.38998, 8.512302], [47.368309, 8.52218], [47.370189, 8.488057], [47.364272, 8.526718], [47.369401, 8.525644], [47.369392, 8.525591], [47.39166, 8.513528], [47.403711, 8.503106], [47.418141, 8.512605], [47.401959, 8.492021], [47.360506, 8.52259], [47.388023, 8.526369], [47.399057, 8.514141], [47.374335, 8.529876], [47.352493, 8.532024], [47.401539, 8.53148], [47.379705, 8.521286], [47.369455, 8.519846], [47.389174, 8.470536], [47.426693, 8.492298], [47.383588, 8.532158], [47.420673, 8.501404], [47.352948, 8.5247], [47.340026, 8.530061], [47.389656, 8.47187], [47.373785, 8.503064], [47.359681, 8.508806], [47.387192, 8.51904], [47.37775, 8.537852], [47.364165, 8.553062], [47.35876, 8.585117], [47.41964, 8.548219], [47.40806, 8.544758], [47.379327, 8.495136], [47.393247, 8.52466], [47.382634, 8.546323], [47.43127, 8.538811], [47.336315, 8.524811], [47.377265, 8.51292], [47.364477, 8.566308], [47.373527, 8.553311], [47.369591, 8.466529], [47.390714, 8.534729], [47.373744, 8.542881], [47.365514, 8.552124], [47.356399, 8.527961], [47.39894, 8.533308], [47.414181, 8.533926], [47.378203, 8.510648], [47.377692, 8.517259], [47.384122, 8.528858], [47.381984, 8.498659], [47.407839, 8.54527], [47.391983, 8.473174], [47.351877, 8.530529], [47.403767, 8.536547], [47.340617, 8.525547], [47.392269, 8.492333], [47.384085, 8.508832], [47.359665, 8.569979], [47.367595, 8.509004], [47.375914, 8.526545], [47.385924, 8.480791], [47.399215, 8.531883], [47.371083, 8.531346], [47.393001, 8.53924], [47.363041, 8.548365], [47.408928, 8.539556], [47.406938, 8.487588], [47.3586, 8.532003], [47.353471, 8.556624], [47.417757, 8.513273], [47.389172, 8.470708], [47.376521, 8.499927], [47.369733, 8.508372], [47.379606, 8.490109], [47.372204, 8.52406], [47.378444, 8.54805], [47.366055, 8.532289], [47.411792, 8.569973], [47.355394, 8.535287], [47.419012, 8.50308], [47.373084, 8.532777], [47.356814, 8.579026], [47.417419, 8.553713], [47.357817, 8.521635], [47.365876, 8.49442], [47.383162, 8.500576], [47.419929, 8.546145], [47.373688, 8.52887], [47.35279, 8.557272], [47.357587, 8.550581], [47.413012, 8.537719], [47.388021, 8.519825], [47.348479, 8.534138], [47.378679, 8.563669], [47.404373, 8.556778], [47.392968, 8.529397], [47.359811, 8.522867], [47.340781, 8.530129], [47.392212, 8.538985], [47.392286, 8.476491], [47.364577, 8.566231], [47.386459, 8.518535], [47.356606, 8.527025], [47.386935, 8.519578], [47.369091, 8.514516], [47.337818, 8.531419], [47.378223, 8.482984], [47.377265, 8.538703], [47.376987, 8.544285], [47.368034, 8.540737], [47.366544, 8.553562], [47.400195, 8.586605], [47.374726, 8.518907], [47.375936, 8.525129], [47.409557, 8.537793], [47.411149, 8.543471], [47.419228, 8.507922], [47.376501, 8.523392], [47.369964, 8.510654], [47.425611, 8.497513], [47.426007, 8.493557], [47.356423, 8.550888], [47.415361, 8.518406], [47.417274, 8.544499], [47.365, 8.562466], [47.358221, 8.571418], [47.419212, 8.547746], [47.387334, 8.533547], [47.377255, 8.538795], [47.402349, 8.535286], [47.369007, 8.528311], [47.404725, 8.576011], [47.371441, 8.520045], [47.392165, 8.533513], [47.383736, 8.550571], [47.404303, 8.564952], [47.382334, 8.487925], [47.358426, 8.585216], [47.374506, 8.557132], [47.36915, 8.550108], [47.35258, 8.524666], [47.367553, 8.565473], [47.409127, 8.545125], [47.428192, 8.489704], [47.399787, 8.547369], [47.374362, 8.556228], [47.398025, 8.532084], [47.398373, 8.538079], [47.364984, 8.560493], [47.368284, 8.551255], [47.371658, 8.550292], [47.380706, 8.582623], [47.401306, 8.541836], [47.398849, 8.533465], [47.377477, 8.543819], [47.35602, 8.535697], [47.37016, 8.548871], [47.378672, 8.543036], [47.413392, 8.539383], [47.37729, 8.526494], [47.386297, 8.518532], [47.371915, 8.522306], [47.347627, 8.562828], [47.370803, 8.518033], [47.398304, 8.547218], [47.376114, 8.583981], [47.417697, 8.509097], [47.371242, 8.568133], [47.368795, 8.499853], [47.356424, 8.526253], [47.382717, 8.514672], [47.387584, 8.546956], [47.383267, 8.557223], [47.35424, 8.508697], [47.374335, 8.524182], [47.361686, 8.560159], [47.358561, 8.580665], [47.385815, 8.546694], [47.390327, 8.525223], [47.399985, 8.494526], [47.367838, 8.522527], [47.366462, 8.545246], [47.406622, 8.591593], [47.384653, 8.542153], [47.390007, 8.512369], [47.368359, 8.559386], [47.385765, 8.517753], [47.399674, 8.496003], [47.373126, 8.536896], [47.428071, 8.490112], [47.363748, 8.547784], [47.413644, 8.528866], [47.422265, 8.538943], [47.387409, 8.544608], [47.408478, 8.552717], [47.358273, 8.587026], [47.379226, 8.525328], [47.40306, 8.589728], [47.392734, 8.492673], [47.356675, 8.534863], [47.376331, 8.52613], [47.383282, 8.506101], [47.378978, 8.559821], [47.418993, 8.507029], [47.378331, 8.52874], [47.377864, 8.511369], [47.412511, 8.508661], [47.381267, 8.49144], [47.365186, 8.547893], [47.361636, 8.552241], [47.374237, 8.536482], [47.382267, 8.572101], [47.388035, 8.493958], [47.34083, 8.5192], [47.357294, 8.552031], [47.391948, 8.5116], [47.376133, 8.559112], [47.414122, 8.550437], [47.360153, 8.523801], [47.381689, 8.531298], [47.391327, 8.538384], [47.37821, 8.526248], [47.403767, 8.536534], [47.344118, 8.530079], [47.384012, 8.527201], [47.36624, 8.548723], [47.395518, 8.522322], [47.346413, 8.529067], [47.370567, 8.54116], [47.369974, 8.522995], [47.378836, 8.542774], [47.411434, 8.52572], [47.393346, 8.474684], [47.370015, 8.548974], [47.368661, 8.543914], [47.42277, 8.535998], [47.408832, 8.545834], [47.423688, 8.551909], [47.403671, 8.571682], [47.39619, 8.545346], [47.369509, 8.528506], [47.392056, 8.497919], [47.401883, 8.535025], [47.388327, 8.540746], [47.375169, 8.524398], [47.408657, 8.546294], [47.370254, 8.524854], [47.382925, 8.486242], [47.370215, 8.548806], [47.387472, 8.49849], [47.379246, 8.538439], [47.383262, 8.530404], [47.373157, 8.537466], [47.403265, 8.497784], [47.353352, 8.576199], [47.355621, 8.559476], [47.357442, 8.521337], [47.368431, 8.534019], [47.373402, 8.524892], [47.386347, 8.548387], [47.365086, 8.567526], [47.390825, 8.523922], [47.37204, 8.522361], [47.397736, 8.533151], [47.36646, 8.513986], [47.41915, 8.547732], [47.356002, 8.526179], [47.377301, 8.512868], [47.381364, 8.494634], [47.426957, 8.506659], [47.361899, 8.52565], [47.406977, 8.573886], [47.374467, 8.52159], [47.366486, 8.53333], [47.387518, 8.527471], [47.372634, 8.52616], [47.366377, 8.533354], [47.391045, 8.522589], [47.419923, 8.554308], [47.365344, 8.556728], [47.390054, 8.48062], [47.367954, 8.540695], [47.369005, 8.53799], [47.429295, 8.540282], [47.37525, 8.518653], [47.403663, 8.534266], [47.392234, 8.503048], [47.378696, 8.564715], [47.36073, 8.551971], [47.377678, 8.507154], [47.376831, 8.535132], [47.376459, 8.51154], [47.384659, 8.487375], [47.376674, 8.559958], [47.380667, 8.525159], [47.365586, 8.598795], [47.35883, 8.552183], [47.366812, 8.558387], [47.40323, 8.502553], [47.368986, 8.524828], [47.363065, 8.517307], [47.367806, 8.54011], [47.368725, 8.528583], [47.396834, 8.529648], [47.410527, 8.543551], [47.418207, 8.546546], [47.394883, 8.525767], [47.369316, 8.504762], [47.375089, 8.496257], [47.391416, 8.551698], [47.385982, 8.52144], [47.37316, 8.552111], [47.409358, 8.546362], [47.34478, 8.533361], [47.368182, 8.49612], [47.374697, 8.497799], [47.364601, 8.554514], [47.389, 8.488811], [47.429507, 8.487529], [47.393616, 8.519886], [47.427231, 8.546402], [47.425998, 8.493531], [47.375573, 8.557459], [47.409111, 8.547775], [47.405161, 8.48016], [47.378402, 8.526927], [47.354297, 8.557753], [47.423558, 8.54956], [47.371627, 8.517507], [47.387218, 8.51912], [47.384745, 8.509402], [47.380045, 8.483404], [47.383536, 8.539495], [47.388535, 8.53875], [47.362651, 8.506694], [47.408726, 8.566145], [47.387904, 8.48271], [47.377548, 8.528777], [47.370052, 8.511821], [47.379324, 8.537858], [47.400195, 8.548887], [47.404364, 8.556818], [47.369467, 8.526228], [47.372444, 8.503143], [47.357469, 8.550672], [47.36949, 8.525726], [47.37027, 8.525013], [47.361955, 8.560218], [47.373915, 8.544751], [47.348267, 8.571008], [47.371173, 8.530355], [47.402653, 8.499799], [47.398032, 8.53423], [47.362622, 8.533873], [47.386851, 8.490637], [47.383721, 8.510189], [47.42735, 8.546193], [47.401722, 8.505212], [47.406984, 8.487483], [47.360525, 8.561128], [47.377079, 8.523113], [47.373149, 8.534526], [47.380581, 8.500578], [47.379261, 8.53787], [47.402709, 8.554067], [47.421306, 8.549884], [47.372986, 8.567282], [47.370161, 8.548818], [47.355103, 8.559041], [47.381391, 8.56509], [47.37161, 8.506741], [47.377152, 8.535403], [47.368882, 8.501113], [47.37068, 8.470456], [47.413541, 8.545415], [47.380497, 8.544054], [47.385261, 8.530193], [47.366266, 8.540303], [47.374482, 8.5568], [47.39114, 8.532539], [47.374496, 8.546101], [47.396041, 8.526983], [47.387488, 8.516265], [47.369878, 8.517961], [47.360326, 8.553803], [47.409823, 8.541005], [47.410724, 8.544615], [47.404016, 8.556532], [47.390215, 8.545553], [47.367632, 8.515678], [47.405871, 8.553524], [47.391504, 8.519644], [47.387607, 8.527579], [47.38755, 8.486981], [47.374554, 8.545625], [47.391195, 8.488828], [47.388335, 8.490759], [47.369045, 8.541393], [47.38793, 8.498592], [47.374598, 8.489918], [47.354429, 8.574646], [47.361433, 8.531201], [47.377766, 8.543706], [47.391006, 8.522827], [47.392191, 8.501869], [47.387412, 8.540542], [47.392172, 8.500928], [47.384316, 8.528359], [47.415419, 8.551246], [47.37972, 8.490496], [47.371094, 8.523481], [47.38855, 8.483822], [47.421495, 8.548894], [47.37514, 8.501449], [47.415329, 8.534228], [47.389125, 8.522007], [47.391109, 8.522484], [47.378645, 8.523025], [47.411334, 8.525824], [47.394148, 8.509087], [47.370206, 8.548832], [47.396006, 8.52681], [47.387117, 8.545939], [47.367067, 8.530866], [47.369098, 8.52532], [47.396629, 8.478708], [47.384115, 8.497695], [47.395036, 8.516126], [47.381886, 8.548334], [47.369023, 8.537963], [47.374728, 8.532043], [47.366738, 8.544589], [47.367111, 8.534773], [47.353619, 8.554337], [47.403121, 8.57542], [47.411096, 8.526217], [47.329903, 8.512217], [47.371574, 8.547815], [47.33896, 8.538111], [47.354469, 8.601307], [47.378306, 8.530434], [47.386941, 8.528572], [47.376995, 8.539611], [47.368577, 8.529057], [47.371369, 8.517223], [47.414255, 8.51841], [47.358946, 8.534446], [47.354289, 8.57512], [47.416202, 8.541826], [47.412647, 8.480903], [47.417865, 8.502593], [47.364965, 8.559646], [47.366374, 8.545032], [47.381354, 8.565182], [47.413043, 8.543894], [47.413795, 8.547024], [47.383414, 8.530499], [47.414749, 8.560932], [47.369238, 8.541861], [47.359633, 8.566775], [47.368548, 8.501318], [47.409148, 8.547616], [47.366332, 8.534373], [47.388035, 8.493958], [47.362597, 8.506693], [47.376924, 8.541384], [47.368796, 8.528691], [47.394828, 8.525792], [47.334857, 8.530643], [47.367543, 8.499034], [47.405723, 8.591521], [47.386177, 8.47571], [47.397063, 8.540635], [47.374943, 8.516859], [47.364801, 8.525934], [47.373646, 8.552095], [47.384208, 8.51008], [47.369355, 8.520003], [47.379156, 8.522294], [47.425706, 8.494055], [47.361667, 8.550905], [47.389726, 8.511582], [47.428954, 8.542077], [47.42487, 8.537354], [47.378879, 8.526924], [47.422143, 8.50297], [47.373506, 8.519504], [47.36954, 8.526177], [47.40338, 8.570086], [47.369728, 8.508915], [47.373744, 8.517126], [47.379979, 8.507373], [47.379993, 8.522205], [47.369569, 8.549587], [47.387818, 8.527133], [47.405302, 8.558467], [47.364075, 8.550293], [47.366756, 8.600449], [47.356462, 8.572797], [47.370591, 8.564822], [47.367101, 8.544306], [47.389341, 8.539164], [47.36949, 8.466779], [47.36661, 8.541025], [47.382506, 8.534321], [47.372827, 8.514154], [47.382593, 8.529807], [47.388748, 8.487826], [47.403625, 8.55606], [47.395234, 8.540001], [47.373155, 8.547053], [47.41343, 8.538138], [47.407727, 8.580845], [47.408056, 8.55076], [47.39197, 8.517866], [47.403726, 8.571511], [47.380017, 8.490409], [47.392964, 8.514574], [47.338173, 8.53001], [47.380365, 8.484814], [47.398983, 8.542013], [47.384376, 8.498706], [47.331867, 8.516689], [47.372725, 8.529883], [47.363715, 8.566967], [47.388248, 8.52632], [47.394593, 8.479013], [47.377534, 8.522592], [47.365251, 8.500828], [47.37814, 8.517427], [47.375848, 8.536383], [47.349805, 8.532736], [47.370847, 8.51912], [47.370234, 8.548727], [47.379435, 8.542191], [47.364651, 8.554873], [47.370107, 8.548777], [47.405154, 8.570813], [47.364845, 8.545967], [47.361163, 8.590385], [47.377217, 8.538967], [47.360392, 8.526123], [47.367858, 8.545963], [47.378951, 8.559807], [47.351666, 8.576613], [47.391458, 8.519763], [47.391551, 8.519473], [47.409919, 8.54322], [47.376438, 8.521444], [47.369223, 8.550016], [47.377292, 8.512841], [47.368076, 8.541095], [47.370796, 8.514974], [47.358312, 8.584049], [47.381604, 8.515444], [47.389263, 8.527387], [47.389723, 8.511913], [47.356023, 8.562529], [47.420789, 8.502519], [47.429277, 8.548751], [47.368329, 8.534348], [47.366623, 8.516823], [47.39182, 8.518604], [47.394205, 8.525091], [47.404113, 8.564139], [47.392348, 8.525516], [47.374158, 8.521014], [47.380239, 8.501524], [47.398227, 8.54205], [47.391848, 8.531825], [47.410803, 8.558782], [47.381253, 8.542109], [47.356344, 8.507878], [47.380147, 8.520235], [47.336249, 8.533702], [47.352311, 8.534098], [47.418772, 8.507621], [47.333923, 8.535229], [47.398496, 8.494059], [47.366104, 8.533786], [47.360768, 8.598426], [47.376849, 8.499457], [47.407562, 8.58483], [47.413693, 8.532313], [47.357387, 8.52618], [47.403971, 8.532047], [47.373502, 8.489751], [47.367217, 8.533954], [47.391122, 8.504603], [47.369442, 8.547797], [47.389391, 8.512793], [47.415631, 8.5702], [47.404646, 8.557393], [47.398373, 8.541855], [47.378804, 8.54239], [47.380451, 8.519447], [47.37017, 8.548792], [47.366464, 8.54788], [47.398437, 8.591482], [47.370266, 8.518697], [47.373636, 8.542865], [47.36499, 8.545877], [47.386, 8.521414], [47.374253, 8.535648], [47.364393, 8.546209], [47.375121, 8.54189], [47.402998, 8.536942], [47.417409, 8.524491], [47.351746, 8.527257], [47.386322, 8.49644], [47.393457, 8.473374], [47.400835, 8.548702], [47.372424, 8.512054], [47.3708, 8.491101], [47.41228, 8.51511], [47.381398, 8.517188], [47.335422, 8.519394], [47.377957, 8.519701], [47.363774, 8.55165], [47.35734, 8.552813], [47.366252, 8.518934], [47.391561, 8.514506], [47.367196, 8.515166], [47.366803, 8.562081], [47.364493, 8.532879], [47.365046, 8.531513], [47.397622, 8.47535], [47.371115, 8.52409], [47.423034, 8.543227], [47.336714, 8.53309], [47.425941, 8.493927], [47.385348, 8.530539], [47.382172, 8.555068], [47.368414, 8.547166], [47.371422, 8.562588], [47.357, 8.53569], [47.381087, 8.557482], [47.379437, 8.50756], [47.370713, 8.515158], [47.368549, 8.529122], [47.377168, 8.540396], [47.377596, 8.527467], [47.367562, 8.523157], [47.333463, 8.534373], [47.414315, 8.533028], [47.402528, 8.490787], [47.334175, 8.515109], [47.37449, 8.540076], [47.36702, 8.531077], [47.412058, 8.537752], [47.378976, 8.567423], [47.37841, 8.514479], [47.360203, 8.548875], [47.363607, 8.533311], [47.3772, 8.513051], [47.36745, 8.545425], [47.39721, 8.529855], [47.364508, 8.563118], [47.414686, 8.516563], [47.369465, 8.553782], [47.387394, 8.540554], [47.363423, 8.547963], [47.406915, 8.481135], [47.365257, 8.53864], [47.404404, 8.580336], [47.396688, 8.486181], [47.373253, 8.525405], [47.383563, 8.590273], [47.406815, 8.569324], [47.365448, 8.546879], [47.3469, 8.533683], [47.371158, 8.555499], [47.376967, 8.481582], [47.413768, 8.546109], [47.368209, 8.496108], [47.403436, 8.536342], [47.352543, 8.576129], [47.362196, 8.559468], [47.389562, 8.537619], [47.362433, 8.612548], [47.361586, 8.534037], [47.378601, 8.499757], [47.407149, 8.586556], [47.361278, 8.516966], [47.419528, 8.506563], [47.416231, 8.514845], [47.392612, 8.545126], [47.3571, 8.55257], [47.375134, 8.539493], [47.357684, 8.521434], [47.403836, 8.55837], [47.397037, 8.508854], [47.368461, 8.519362], [47.385856, 8.519556], [47.366611, 8.559654], [47.393383, 8.499362], [47.367308, 8.510892], [47.404717, 8.59501], [47.413294, 8.526858], [47.397008, 8.540661], [47.359865, 8.596036], [47.370187, 8.548845], [47.347358, 8.532805], [47.375967, 8.559546], [47.37715, 8.527074], [47.33908, 8.535891], [47.366283, 8.545176], [47.383688, 8.531988], [47.372013, 8.556378], [47.37875, 8.53288], [47.366331, 8.534505], [47.387117, 8.545939], [47.372886, 8.511772], [47.38194, 8.584265], [47.385593, 8.475645], [47.360652, 8.524288], [47.383048, 8.488456], [47.363017, 8.556454], [47.361511, 8.561466], [47.375099, 8.519457], [47.381966, 8.535237], [47.375631, 8.527903], [47.360524, 8.563074], [47.410492, 8.543484], [47.371682, 8.488099], [47.414622, 8.544245], [47.420213, 8.503555], [47.397098, 8.530237], [47.355464, 8.526896], [47.385436, 8.536395], [47.366732, 8.540538], [47.361372, 8.602741], [47.396345, 8.513715], [47.363387, 8.559109], [47.377372, 8.526443], [47.389721, 8.491594], [47.381519, 8.514846], [47.362744, 8.574307], [47.377776, 8.482631], [47.380898, 8.528369], [47.398409, 8.541882], [47.379525, 8.537465], [47.376581, 8.54343], [47.382102, 8.544564], [47.360917, 8.505521], [47.408548, 8.569626], [47.431309, 8.516555], [47.392706, 8.539101], [47.419931, 8.508731], [47.378632, 8.519635], [47.407946, 8.542583], [47.413147, 8.52439], [47.376021, 8.538055], [47.377925, 8.531724], [47.380756, 8.517586], [47.374041, 8.517158], [47.348344, 8.534136], [47.361206, 8.502429], [47.369002, 8.525001], [47.375579, 8.541899], [47.378202, 8.529029], [47.405025, 8.557282], [47.398581, 8.504394], [47.405141, 8.480451], [47.361972, 8.560284], [47.405053, 8.482212], [47.370617, 8.546232], [47.404042, 8.556599], [47.366202, 8.545187], [47.353968, 8.600131], [47.37721, 8.54727], [47.420654, 8.502477], [47.372657, 8.534198], [47.37504, 8.545569], [47.377138, 8.49933], [47.400213, 8.54327], [47.399323, 8.495122], [47.38566, 8.542227], [47.388082, 8.540079], [47.369826, 8.525388], [47.366789, 8.543028], [47.354132, 8.599049], [47.369806, 8.490565], [47.361594, 8.561269], [47.372307, 8.526525], [47.368373, 8.546662], [47.372034, 8.502711], [47.399362, 8.542895], [47.368522, 8.499186], [47.392136, 8.49902], [47.386919, 8.518399], [47.369863, 8.510851], [47.392721, 8.524186], [47.419973, 8.549141], [47.374994, 8.560585], [47.372766, 8.525514], [47.353644, 8.553703], [47.377561, 8.506159], [47.36651, 8.540268], [47.400821, 8.534181], [47.380437, 8.519923], [47.376967, 8.539783], [47.363933, 8.521667], [47.376895, 8.540682], [47.371253, 8.525669], [47.377768, 8.53776], [47.414197, 8.518833], [47.371214, 8.514493], [47.40449, 8.556847], [47.370717, 8.516681], [47.362137, 8.504963], [47.389467, 8.48792], [47.376785, 8.538084], [47.356957, 8.522161], [47.392646, 8.524463], [47.377134, 8.540157], [47.375677, 8.535399], [47.397844, 8.474639], [47.390973, 8.514892], [47.36448, 8.554896], [47.374482, 8.495729], [47.369671, 8.525557], [47.358111, 8.519987], [47.367061, 8.522829], [47.375154, 8.540288], [47.415529, 8.563095], [47.350666, 8.529246], [47.400804, 8.488554], [47.38983, 8.476562], [47.351977, 8.525699], [47.399349, 8.542391], [47.424373, 8.541412], [47.388598, 8.520658], [47.384847, 8.509126], [47.377939, 8.541564], [47.355578, 8.508022], [47.363801, 8.551611], [47.39085, 8.50869], [47.410395, 8.544184], [47.380599, 8.525714], [47.398276, 8.473574], [47.402382, 8.535552], [47.372556, 8.521074], [47.355268, 8.55502], [47.378108, 8.520803], [47.37711, 8.541706], [47.390266, 8.522162], [47.34848, 8.534006], [47.391375, 8.536226], [47.385243, 8.536815], [47.391877, 8.518248], [47.379545, 8.524951], [47.378733, 8.523226], [47.387006, 8.534043], [47.375403, 8.52819], [47.38335, 8.515267], [47.36226, 8.559337], [47.372731, 8.538755], [47.361977, 8.503782], [47.426805, 8.546765], [47.354018, 8.523888], [47.41083, 8.550421], [47.409234, 8.547128], [47.371299, 8.488608], [47.374221, 8.519082], [47.368352, 8.547006], [47.355285, 8.574479], [47.399001, 8.594462], [47.349913, 8.566397], [47.376843, 8.507018], [47.377095, 8.527205], [47.397288, 8.49438], [47.364392, 8.530216], [47.378521, 8.502523], [47.413788, 8.536423], [47.389118, 8.469648], [47.391024, 8.522906], [47.385477, 8.485457], [47.366765, 8.542736], [47.387482, 8.48653], [47.371519, 8.557254], [47.374925, 8.518778], [47.3642, 8.598805], [47.352342, 8.525111], [47.371586, 8.550238], [47.409148, 8.483961], [47.375666, 8.533744], [47.369385, 8.554681], [47.360123, 8.581043], [47.371879, 8.522292], [47.376919, 8.528671], [47.374524, 8.549743], [47.345536, 8.529512], [47.420795, 8.502864], [47.391002, 8.52235], [47.370341, 8.513614], [47.370484, 8.546997], [47.419561, 8.50003], [47.363696, 8.564292], [47.389678, 8.511938], [47.381035, 8.512784], [47.403962, 8.556505], [47.36693, 8.544315], [47.389926, 8.512288], [47.366691, 8.545793], [47.416749, 8.536285], [47.363472, 8.534354], [47.39049, 8.490112], [47.382348, 8.514744], [47.389263, 8.527387], [47.380412, 8.559375], [47.42255, 8.551448], [47.362974, 8.518444], [47.399511, 8.502094], [47.389927, 8.548448], [47.388487, 8.489834], [47.386535, 8.543848], [47.373635, 8.536403], [47.386002, 8.535559], [47.35026, 8.568654], [47.339978, 8.529372], [47.360712, 8.584206], [47.395281, 8.499334], [47.351452, 8.560778], [47.384913, 8.508809], [47.409529, 8.537912], [47.378569, 8.528281], [47.377719, 8.54197], [47.35413, 8.559166], [47.362311, 8.567109], [47.3667, 8.53164], [47.380982, 8.515564], [47.415264, 8.508558], [47.362712, 8.547034], [47.390627, 8.524925], [47.382644, 8.514776], [47.359748, 8.50841], [47.362698, 8.567965], [47.388634, 8.528341], [47.381351, 8.498977], [47.37855, 8.504258], [47.363971, 8.547074], [47.386751, 8.547534], [47.388871, 8.541247], [47.380386, 8.519604], [47.355002, 8.510989], [47.366769, 8.510749], [47.362134, 8.549088], [47.364349, 8.566544], [47.410488, 8.572662], [47.361797, 8.566278], [47.378272, 8.534036], [47.369044, 8.492298], [47.373878, 8.535402], [47.364214, 8.548866], [47.37432, 8.544654], [47.374338, 8.54472], [47.391154, 8.538672], [47.35959, 8.521486], [47.398603, 8.472229], [47.386843, 8.535126], [47.377737, 8.51338], [47.377358, 8.527899], [47.390343, 8.489513], [47.414313, 8.537984], [47.399916, 8.5875], [47.366168, 8.540275], [47.373457, 8.537115], [47.385377, 8.494528], [47.422632, 8.55129], [47.365449, 8.552414], [47.386756, 8.52331], [47.397913, 8.52877], [47.364285, 8.531127], [47.370854, 8.535525], [47.405824, 8.494403], [47.386362, 8.531752], [47.360403, 8.548601], [47.366529, 8.544876], [47.365819, 8.562444], [47.351245, 8.533679], [47.403874, 8.556357], [47.334522, 8.51849], [47.358182, 8.519154], [47.341618, 8.527182], [47.374292, 8.526843], [47.42869, 8.536783], [47.384894, 8.495154], [47.371352, 8.547479], [47.387018, 8.488163], [47.392348, 8.541664], [47.385797, 8.548561], [47.383392, 8.515599], [47.384367, 8.507527], [47.385863, 8.539755], [47.403909, 8.556451], [47.398073, 8.474153], [47.389945, 8.512261], [47.386324, 8.518519], [47.40319, 8.486322], [47.377028, 8.526661], [47.411189, 8.562606], [47.401124, 8.544906], [47.374431, 8.551913], [47.422971, 8.536572], [47.40924, 8.571536], [47.374466, 8.556654], [47.38287, 8.541375], [47.372871, 8.475981], [47.383181, 8.531395], [47.39131, 8.537403], [47.370352, 8.514316], [47.379677, 8.554499], [47.37592, 8.541959], [47.40529, 8.534287], [47.403188, 8.54728], [47.368879, 8.540834], [47.360946, 8.588712], [47.382703, 8.540007], [47.381363, 8.557819], [47.351205, 8.532196], [47.382066, 8.514089], [47.357383, 8.572472], [47.383818, 8.526786], [47.4044, 8.556792], [47.37811, 8.530192], [47.363616, 8.575239], [47.383045, 8.540067], [47.382068, 8.53018], [47.366103, 8.545212], [47.390667, 8.522528], [47.38728, 8.488023], [47.386891, 8.546994], [47.369408, 8.525817], [47.369332, 8.554507], [47.37597, 8.545244], [47.349903, 8.576615], [47.377609, 8.54316], [47.353729, 8.575413], [47.364041, 8.5473], [47.364411, 8.546196], [47.368238, 8.568096], [47.377549, 8.515203], [47.39805, 8.535145], [47.381045, 8.518399], [47.366665, 8.544694], [47.360423, 8.578865], [47.409558, 8.537634], [47.398109, 8.504875], [47.368428, 8.498707], [47.373005, 8.536377], [47.364327, 8.537086], [47.369401, 8.541745], [47.375016, 8.536803], [47.374744, 8.541776], [47.37516, 8.518691], [47.363453, 8.546719], [47.405059, 8.585955], [47.376466, 8.560033], [47.324777, 8.52066], [47.398721, 8.480087], [47.380705, 8.504659], [47.361933, 8.547627], [47.359499, 8.548093], [47.363498, 8.546693], [47.362923, 8.508408], [47.379553, 8.524024], [47.381548, 8.513642], [47.409206, 8.546279], [47.35919, 8.534359], [47.412272, 8.563199], [47.42511, 8.53769], [47.398328, 8.54184], [47.405694, 8.534441], [47.395759, 8.545231], [47.420277, 8.503437], [47.386466, 8.49639], [47.378555, 8.542054], [47.378971, 8.559609], [47.383745, 8.542068], [47.392542, 8.52405], [47.378482, 8.51938], [47.372261, 8.560448], [47.368398, 8.521294], [47.406263, 8.483706], [47.403864, 8.556397], [47.379155, 8.518507], [47.367841, 8.545896], [47.393078, 8.513901], [47.395902, 8.481503], [47.404214, 8.561121], [47.399509, 8.539666], [47.374214, 8.544533], [47.35947, 8.597841], [47.37408, 8.525488], [47.376949, 8.557487], [47.380766, 8.497019], [47.374687, 8.545787], [47.397444, 8.488117], [47.37674, 8.53901], [47.377652, 8.527309], [47.375508, 8.56331], [47.406763, 8.58468], [47.384762, 8.509548], [47.366647, 8.520027], [47.360014, 8.548871], [47.386794, 8.544966], [47.386848, 8.544887], [47.376191, 8.533371], [47.402433, 8.493342], [47.392761, 8.489694], [47.376976, 8.544404], [47.375165, 8.515248], [47.370117, 8.554246], [47.352407, 8.558759], [47.372408, 8.554611], [47.381643, 8.517021], [47.404583, 8.557445], [47.363226, 8.549719], [47.36768, 8.564376], [47.369486, 8.539482], [47.351693, 8.575647], [47.399336, 8.477781], [47.367081, 8.539751], [47.371018, 8.555086], [47.372141, 8.535472], [47.386177, 8.539854], [47.367808, 8.560553], [47.378463, 8.54037], [47.361757, 8.526323], [47.417747, 8.502697], [47.374645, 8.541747], [47.418678, 8.506135], [47.35187, 8.525538], [47.405792, 8.593642], [47.374563, 8.538991], [47.39737, 8.476299], [47.414627, 8.519067], [47.402369, 8.499329], [47.395362, 8.545369], [47.381131, 8.511183], [47.407072, 8.584329], [47.397343, 8.476298], [47.409527, 8.535222], [47.415011, 8.530816], [47.389709, 8.511541], [47.373208, 8.504112], [47.364491, 8.53693], [47.375436, 8.524761], [47.386417, 8.525859], [47.406121, 8.58774], [47.407624, 8.584023], [47.36464, 8.537251], [47.377703, 8.528515], [47.358027, 8.523202], [47.422039, 8.508323], [47.398299, 8.473097], [47.347921, 8.534154], [47.378718, 8.540084], [47.398771, 8.478618], [47.390464, 8.533571], [47.378081, 8.534257], [47.368297, 8.546171], [47.347692, 8.562657], [47.412133, 8.550594], [47.354375, 8.575572], [47.409654, 8.549297], [47.412415, 8.5237], [47.377004, 8.544326], [47.376938, 8.53716], [47.401569, 8.586873], [47.373041, 8.534471], [47.334342, 8.518473], [47.369608, 8.541749], [47.378553, 8.509834], [47.344161, 8.533229], [47.398051, 8.532217], [47.38762, 8.525248], [47.371241, 8.507767], [47.364991, 8.532518], [47.337575, 8.501587], [47.386764, 8.51772], [47.419381, 8.547975], [47.374842, 8.527675], [47.358369, 8.583732], [47.415618, 8.568676], [47.405547, 8.572994], [47.37859, 8.54212], [47.355924, 8.592549], [47.384314, 8.548398], [47.370188, 8.548805], [47.380801, 8.55639], [47.386742, 8.547574], [47.420537, 8.501573], [47.373372, 8.525129], [47.364159, 8.531124], [47.421391, 8.511278], [47.374823, 8.547631], [47.383416, 8.548286], [47.414921, 8.551606], [47.366638, 8.53528], [47.405836, 8.497981], [47.379255, 8.54228], [47.407056, 8.576869], [47.385321, 8.530538], [47.416439, 8.511855], [47.379409, 8.521174], [47.364403, 8.566558], [47.387298, 8.52887], [47.378306, 8.530355], [47.356663, 8.551158], [47.383319, 8.574918], [47.383238, 8.532933], [47.361109, 8.506121], [47.377291, 8.498367], [47.402838, 8.498292], [47.360432, 8.526679], [47.419789, 8.504646], [47.364213, 8.531126], [47.40449, 8.55686], [47.375535, 8.541845], [47.380999, 8.542303], [47.404144, 8.573878], [47.406922, 8.482368], [47.378189, 8.541794], [47.379931, 8.49593], [47.35862, 8.52136], [47.38114, 8.517898], [47.352493, 8.531984], [47.410445, 8.573377], [47.365759, 8.567738], [47.397149, 8.53245], [47.3593, 8.55758], [47.383572, 8.539429], [47.350802, 8.601928], [47.366745, 8.545794], [47.369848, 8.552373], [47.388604, 8.533414], [47.380558, 8.515675], [47.414049, 8.542153], [47.36162, 8.561389], [47.366992, 8.491489], [47.403614, 8.559942], [47.364753, 8.537677], [47.364455, 8.53685], [47.361411, 8.561543], [47.343578, 8.527288], [47.380357, 8.513088], [47.373664, 8.537053], [47.363961, 8.535873], [47.380044, 8.53778], [47.363271, 8.533635], [47.393603, 8.539292], [47.409019, 8.539504], [47.406945, 8.586221], [47.386066, 8.535414], [47.370646, 8.547014], [47.355573, 8.556907], [47.376218, 8.541846], [47.358258, 8.572213], [47.369517, 8.532333], [47.379317, 8.544188], [47.374158, 8.520935], [47.392139, 8.531499], [47.414086, 8.550449], [47.373599, 8.529689], [47.36615, 8.540261], [47.385773, 8.535965], [47.353221, 8.530172], [47.39347, 8.529593], [47.351834, 8.559409], [47.379137, 8.546131], [47.404814, 8.483744], [47.372736, 8.535312], [47.35651, 8.506439], [47.335151, 8.525211], [47.359004, 8.50028], [47.366338, 8.545018], [47.430917, 8.550323], [47.397932, 8.528598], [47.427643, 8.49074], [47.409311, 8.575287], [47.414135, 8.518712], [47.373562, 8.528828], [47.41483, 8.519389], [47.359621, 8.525829], [47.374388, 8.541371], [47.367949, 8.540258], [47.382318, 8.528517], [47.399508, 8.505327], [47.377936, 8.527672], [47.353161, 8.512553], [47.382942, 8.485315], [47.389572, 8.538533], [47.404766, 8.572752], [47.384696, 8.516593], [47.370659, 8.486835], [47.427798, 8.537865], [47.37337, 8.534955], [47.36112, 8.531962], [47.38141, 8.533133], [47.369385, 8.528305], [47.4044, 8.556792], [47.378183, 8.509906], [47.383152, 8.57265], [47.352497, 8.524863], [47.366627, 8.51064], [47.377221, 8.499107], [47.37125, 8.547821], [47.377288, 8.541948], [47.369119, 8.514464], [47.408726, 8.575367], [47.393765, 8.512577], [47.369214, 8.527375], [47.373721, 8.548111], [47.390577, 8.509029], [47.369546, 8.55381], [47.381147, 8.538187], [47.397495, 8.531993], [47.367481, 8.534648], [47.355649, 8.556524], [47.350993, 8.563614], [47.376964, 8.521932], [47.363699, 8.575029], [47.371827, 8.517259], [47.357446, 8.521813], [47.392632, 8.515362], [47.412766, 8.531406], [47.408887, 8.55421], [47.381679, 8.537072], [47.370188, 8.548805], [47.370887, 8.526403], [47.38501, 8.495275], [47.388458, 8.491052], [47.405153, 8.480067], [47.380293, 8.53711], [47.374771, 8.515028], [47.402315, 8.499408], [47.383911, 8.482592], [47.381305, 8.537581], [47.38263, 8.529702], [47.37367, 8.544958], [47.371016, 8.549657], [47.352368, 8.559129], [47.36136, 8.553798], [47.391644, 8.51713], [47.391268, 8.522792], [47.407085, 8.54703], [47.374482, 8.544684], [47.403283, 8.502647], [47.37387, 8.533349], [47.373849, 8.536514], [47.387982, 8.49099], [47.37573, 8.525019], [47.371178, 8.524092], [47.368209, 8.496121], [47.393751, 8.502363], [47.374537, 8.539878], [47.393081, 8.474122], [47.40518, 8.481101], [47.39095, 8.522097], [47.380054, 8.535741], [47.399479, 8.585345], [47.404751, 8.57613], [47.377532, 8.49857], [47.381215, 8.517595], [47.395558, 8.54279], [47.422903, 8.550289], [47.387304, 8.499162], [47.402171, 8.535017], [47.361883, 8.560243], [47.370509, 8.54905], [47.37673, 8.497773], [47.363678, 8.533498], [47.373638, 8.519785], [47.359773, 8.525991], [47.377068, 8.539533], [47.39187, 8.523732], [47.400253, 8.547564], [47.353193, 8.511972], [47.391909, 8.517745], [47.362779, 8.567927], [47.378044, 8.526721], [47.366884, 8.535907], [47.37054, 8.535453], [47.387385, 8.518607], [47.348195, 8.525119], [47.343664, 8.535297], [47.370433, 8.548559], [47.366221, 8.56273], [47.374526, 8.540103], [47.371784, 8.601472], [47.418845, 8.543882], [47.327589, 8.529648], [47.365145, 8.545682], [47.388257, 8.526373], [47.382157, 8.515866], [47.341389, 8.53046], [47.403368, 8.497322], [47.374178, 8.544505], [47.335634, 8.540716], [47.369245, 8.562582], [47.347322, 8.532804], [47.389679, 8.477407], [47.375637, 8.493342], [47.375257, 8.516018], [47.391154, 8.489317], [47.410876, 8.562454], [47.390355, 8.525198], [47.392815, 8.528533], [47.407403, 8.546692], [47.396536, 8.528794], [47.414825, 8.516142], [47.361803, 8.526244], [47.387165, 8.528629], [47.36968, 8.525571], [47.377275, 8.512761], [47.372583, 8.521062], [47.371801, 8.541927], [47.382667, 8.529663], [47.375599, 8.512158], [47.359423, 8.535422], [47.362835, 8.552968], [47.365567, 8.539084], [47.387107, 8.498151], [47.376636, 8.56295], [47.408641, 8.580308], [47.419186, 8.547719], [47.333116, 8.5359], [47.368851, 8.540025], [47.387277, 8.497188], [47.390795, 8.507828], [47.373879, 8.533363], [47.382333, 8.531603], [47.374494, 8.52159], [47.384951, 8.495791], [47.378962, 8.559596], [47.372395, 8.515245], [47.364069, 8.548982], [47.369519, 8.523621], [47.381231, 8.503266], [47.342599, 8.530961], [47.379718, 8.527603], [47.369392, 8.505373], [47.392745, 8.523538], [47.381397, 8.489999], [47.367438, 8.546616], [47.388677, 8.483706], [47.354342, 8.553055], [47.38312, 8.514892], [47.369893, 8.541067], [47.377794, 8.528385], [47.378042, 8.510552], [47.361588, 8.560978], [47.372943, 8.546638], [47.38726, 8.488221], [47.355638, 8.557715], [47.421034, 8.53689], [47.388589, 8.520671], [47.361552, 8.547871], [47.389473, 8.511722], [47.375528, 8.548162], [47.34349, 8.519478], [47.414128, 8.483277], [47.363226, 8.549719], [47.377029, 8.528488], [47.391147, 8.489132], [47.399673, 8.515637], [47.364393, 8.546209], [47.36841, 8.496668], [47.38297, 8.50583], [47.389008, 8.538243], [47.378437, 8.509725], [47.3593, 8.592331], [47.37307, 8.5314], [47.40675, 8.547196], [47.361545, 8.560752], [47.392408, 8.519159], [47.352998, 8.501021], [47.403585, 8.557384], [47.372287, 8.515163], [47.370998, 8.518328], [47.363821, 8.547653], [47.377819, 8.541946], [47.409562, 8.576273], [47.354286, 8.557925], [47.415991, 8.515543], [47.338923, 8.528715], [47.419969, 8.548557], [47.406819, 8.580759], [47.427232, 8.491434], [47.417649, 8.554088], [47.363454, 8.535254], [47.427624, 8.490766], [47.368618, 8.534195], [47.40913, 8.54759], [47.421467, 8.501154], [47.371012, 8.530259], [47.366469, 8.540744], [47.395515, 8.545372], [47.381212, 8.491598], [47.407729, 8.578804], [47.385435, 8.528938], [47.382446, 8.548067], [47.379012, 8.518451], [47.383246, 8.506127], [47.396183, 8.520468], [47.409309, 8.546758], [47.3685, 8.546638], [47.362483, 8.570595], [47.387337, 8.487679], [47.389706, 8.478388], [47.368763, 8.524599], [47.369202, 8.554015], [47.370434, 8.514186], [47.375755, 8.533785], [47.368166, 8.551424], [47.401807, 8.499888], [47.419548, 8.555904], [47.366746, 8.540035], [47.386309, 8.488997], [47.399727, 8.543313], [47.365901, 8.508401], [47.357341, 8.550854], [47.38288, 8.513589], [47.361337, 8.549693], [47.339486, 8.528118], [47.359701, 8.52497], [47.378575, 8.575241], [47.365982, 8.532353], [47.363761, 8.531288], [47.381183, 8.538161], [47.378333, 8.540817], [47.379288, 8.537804], [47.370408, 8.518025], [47.395955, 8.538824], [47.422572, 8.499294], [47.370372, 8.518024], [47.363376, 8.534908], [47.385544, 8.50857], [47.408803, 8.546059], [47.36554, 8.53911], [47.390805, 8.474224], [47.366616, 8.541356], [47.378469, 8.575053], [47.347181, 8.534416], [47.384057, 8.545174], [47.370794, 8.508446], [47.371363, 8.512006], [47.380337, 8.524927], [47.343202, 8.535645], [47.375189, 8.519446], [47.374509, 8.53997], [47.397491, 8.53247], [47.405972, 8.558879], [47.398353, 8.536462], [47.37006, 8.543374], [47.40244, 8.493541], [47.370659, 8.51423], [47.374049, 8.524931], [47.385777, 8.496006], [47.408843, 8.540018], [47.372966, 8.500201], [47.367101, 8.544239], [47.379914, 8.522985], [47.381629, 8.513696], [47.407206, 8.578926], [47.387651, 8.498613], [47.418758, 8.506242], [47.377084, 8.499356], [47.386941, 8.528519], [47.361829, 8.560228], [47.407211, 8.550743], [47.378793, 8.526458], [47.37803, 8.528164], [47.385929, 8.521386], [47.406501, 8.578407], [47.384497, 8.534866], [47.410662, 8.556645], [47.417545, 8.553689], [47.359845, 8.535418], [47.418193, 8.506032], [47.358436, 8.576903], [47.370347, 8.55008], [47.403436, 8.572671], [47.36527, 8.530578], [47.40432, 8.540852], [47.401378, 8.548395], [47.376758, 8.53807], [47.378345, 8.548022], [47.407383, 8.489134], [47.36493, 8.566913], [47.38636, 8.518507], [47.387988, 8.520487], [47.420968, 8.51233], [47.374151, 8.528469], [47.39575, 8.545218], [47.397675, 8.47445], [47.353127, 8.576247], [47.379423, 8.508143], [47.410671, 8.5426], [47.372298, 8.518871], [47.380591, 8.55673], [47.398245, 8.536447], [47.402481, 8.535554], [47.412851, 8.550715], [47.404725, 8.576024], [47.403053, 8.486505], [47.38858, 8.520658], [47.381555, 8.548194], [47.379959, 8.521026], [47.355386, 8.52565], [47.352013, 8.573298], [47.40757, 8.538574], [47.374626, 8.538053], [47.371627, 8.517493], [47.374032, 8.541006], [47.408988, 8.579798], [47.381707, 8.540768], [47.411479, 8.526689], [47.389598, 8.543368], [47.392632, 8.515415], [47.377092, 8.541705], [47.376785, 8.509361], [47.370188, 8.548792], [47.384875, 8.532039], [47.358741, 8.53333], [47.371431, 8.562602], [47.375767, 8.541069], [47.368314, 8.544397], [47.362185, 8.532527], [47.414188, 8.518886], [47.365585, 8.546684], [47.403898, 8.576867], [47.377761, 8.507858], [47.413961, 8.557867], [47.376522, 8.548672], [47.41146, 8.544763], [47.409133, 8.545443], [47.409223, 8.546333], [47.387234, 8.519386], [47.371021, 8.514912], [47.392432, 8.524286], [47.370722, 8.535244], [47.335744, 8.540453], [47.383229, 8.5061], [47.366187, 8.521104], [47.381317, 8.517292], [47.381249, 8.503266], [47.386522, 8.52908], [47.387323, 8.488262], [47.355262, 8.530227], [47.384791, 8.531375], [47.369982, 8.510615], [47.356864, 8.53582], [47.419729, 8.548248], [47.377, 8.541942], [47.368949, 8.524854], [47.385891, 8.518643], [47.355904, 8.535602], [47.356596, 8.535695], [47.387512, 8.581127], [47.36743, 8.521897], [47.366874, 8.543546], [47.365017, 8.483096], [47.391049, 8.523092], [47.39104, 8.521132], [47.407006, 8.537436], [47.377302, 8.539511], [47.384791, 8.531402], [47.415422, 8.483409], [47.415455, 8.508323], [47.372768, 8.494238], [47.374318, 8.543038], [47.402687, 8.535664], [47.360457, 8.569029], [47.385508, 8.528847], [47.371472, 8.54523], [47.379062, 8.511181], [47.36455, 8.566243], [47.389723, 8.511939], [47.377536, 8.544217], [47.409557, 8.537766], [47.361911, 8.560098], [47.374935, 8.512926], [47.363366, 8.533134], [47.3842, 8.510993], [47.366749, 8.537824], [47.370325, 8.514303], [47.372982, 8.516885], [47.394972, 8.525822], [47.380451, 8.519447], [47.388681, 8.531005], [47.358497, 8.52104], [47.390804, 8.474277], [47.400184, 8.494411], [47.374537, 8.541798], [47.39167, 8.511448], [47.373605, 8.553604], [47.36499, 8.54589], [47.363082, 8.533684], [47.412681, 8.540296], [47.36374, 8.535485], [47.410838, 8.571848], [47.388731, 8.538993], [47.353171, 8.512408], [47.367536, 8.53833], [47.370924, 8.537698], [47.409606, 8.576433], [47.370244, 8.513361], [47.370206, 8.548806], [47.408152, 8.531351], [47.405363, 8.534235], [47.402733, 8.577359], [47.356448, 8.55674], [47.370183, 8.529474], [47.381092, 8.518188], [47.40886, 8.545782], [47.373895, 8.538302], [47.380586, 8.512695], [47.361344, 8.563793], [47.377378, 8.543751], [47.414562, 8.570006], [47.367879, 8.560581], [47.369784, 8.508664], [47.386096, 8.56503], [47.372861, 8.538334], [47.393741, 8.524763], [47.395591, 8.489087], [47.365503, 8.546775], [47.374786, 8.53256], [47.375545, 8.513123], [47.387005, 8.528374], [47.411354, 8.544601], [47.37773, 8.526609], [47.373094, 8.532685], [47.372169, 8.522986], [47.366373, 8.561886], [47.395213, 8.489106], [47.411396, 8.572748], [47.398024, 8.508238], [47.37533, 8.477578], [47.383499, 8.530051], [47.404819, 8.576543], [47.368919, 8.540424], [47.384455, 8.488126], [47.415253, 8.563765], [47.391636, 8.517104], [47.37573, 8.558945], [47.413622, 8.514938], [47.358479, 8.556901], [47.373748, 8.515722], [47.385852, 8.518007], [47.377918, 8.518084], [47.360535, 8.535723], [47.370959, 8.537765], [47.344785, 8.533798], [47.358321, 8.550001], [47.370206, 8.548806], [47.372673, 8.523937], [47.385518, 8.548542], [47.391862, 8.469674], [47.405116, 8.482226], [47.378792, 8.539847], [47.376179, 8.56731], [47.405863, 8.553457], [47.377329, 8.500076], [47.40336, 8.579506], [47.386118, 8.521323], [47.403839, 8.5673], [47.402147, 8.502041], [47.410195, 8.542523], [47.361951, 8.515285], [47.403696, 8.556168], [47.377549, 8.543781], [47.353049, 8.556576], [47.376728, 8.516484], [47.368909, 8.548037], [47.343051, 8.529739], [47.371626, 8.517626], [47.369915, 8.530249], [47.371083, 8.51024], [47.370188, 8.548805], [47.391077, 8.523027], [47.357325, 8.52704], [47.373141, 8.542855], [47.374842, 8.527675], [47.390845, 8.5455], [47.390284, 8.509593], [47.367217, 8.523548], [47.383726, 8.573788], [47.414466, 8.556778], [47.370217, 8.532533], [47.384816, 8.531654], [47.365516, 8.565827], [47.404541, 8.557087], [47.375517, 8.535211], [47.382339, 8.530106], [47.384849, 8.531959], [47.414366, 8.52101], [47.413954, 8.551109], [47.374031, 8.524918], [47.354394, 8.55798], [47.382585, 8.52978], [47.358805, 8.516996], [47.405702, 8.556144], [47.393199, 8.53066], [47.374823, 8.552239], [47.379451, 8.54427], [47.360105, 8.561794], [47.382924, 8.496148], [47.392171, 8.495232], [47.363298, 8.533702], [47.383863, 8.528707], [47.364278, 8.554375], [47.407036, 8.550275], [47.412341, 8.560682], [47.376342, 8.567234], [47.368656, 8.518718], [47.389441, 8.539021], [47.389634, 8.521408], [47.363265, 8.553096], [47.424971, 8.553142], [47.37763, 8.529639], [47.398373, 8.541868], [47.383872, 8.532509], [47.426025, 8.493558], [47.388466, 8.520391], [47.386372, 8.496812], [47.403516, 8.506692], [47.376966, 8.539822], [47.373852, 8.542843], [47.365483, 8.546973], [47.42236, 8.550648], [47.365346, 8.534922], [47.354886, 8.574775], [47.389879, 8.477133], [47.358442, 8.518233], [47.417588, 8.54546], [47.377104, 8.529086], [47.428611, 8.543184], [47.382026, 8.473205], [47.355837, 8.532238], [47.368217, 8.546063], [47.360418, 8.535734], [47.410845, 8.564653], [47.368212, 8.541005], [47.374434, 8.54026], [47.386297, 8.500135], [47.370824, 8.536822], [47.416809, 8.547021], [47.368428, 8.498707], [47.386871, 8.528279], [47.427085, 8.546625], [47.399731, 8.518142], [47.376087, 8.533951], [47.38148, 8.503549], [47.378174, 8.526287], [47.329896, 8.514877], [47.383385, 8.484118], [47.39762, 8.502268], [47.399033, 8.586805], [47.386427, 8.541024], [47.372062, 8.521912], [47.399775, 8.547686], [47.376153, 8.5183], [47.366595, 8.521721], [47.357592, 8.521591], [47.366912, 8.555503], [47.366941, 8.544051], [47.348045, 8.534315], [47.378279, 8.530407], [47.383335, 8.539795], [47.367666, 8.494468], [47.406586, 8.513206], [47.404504, 8.594674], [47.336186, 8.529903], [47.361649, 8.52922], [47.379228, 8.545974], [47.365614, 8.503431], [47.422726, 8.550934], [47.361502, 8.561466], [47.372377, 8.565138], [47.399537, 8.502108], [47.354259, 8.524012], [47.371856, 8.557751], [47.396655, 8.522889], [47.409008, 8.574141], [47.381175, 8.50741], [47.377165, 8.552817], [47.416145, 8.553315], [47.367513, 8.537893], [47.41638, 8.551425], [47.400603, 8.585369], [47.413093, 8.541404], [47.371022, 8.530219], [47.390746, 8.521868], [47.371813, 8.518715], [47.358372, 8.519039], [47.378138, 8.499178], [47.403629, 8.548151], [47.409503, 8.537779], [47.41442, 8.519049], [47.383544, 8.515669], [47.341319, 8.530246], [47.3798, 8.521672], [47.383257, 8.560997], [47.380239, 8.501564], [47.362894, 8.516403], [47.377427, 8.509917], [47.363212, 8.568757], [47.373919, 8.520585], [47.390089, 8.492701], [47.373955, 8.591204], [47.383717, 8.573735], [47.385451, 8.536726], [47.396779, 8.507643], [47.371871, 8.512559], [47.384528, 8.483969], [47.365749, 8.519837], [47.381159, 8.549087], [47.389436, 8.472316], [47.41201, 8.54655], [47.388774, 8.479999], [47.37674, 8.524774], [47.399187, 8.542375], [47.359934, 8.594542], [47.365073, 8.553147], [47.401963, 8.501481], [47.410742, 8.557707], [47.3863, 8.526823], [47.409965, 8.574665], [47.376029, 8.559613], [47.412019, 8.563339], [47.373092, 8.504004], [47.370832, 8.531235], [47.391743, 8.518179], [47.356508, 8.551459], [47.40526, 8.555273], [47.384727, 8.534341], [47.392897, 8.474648], [47.393687, 8.502548], [47.373968, 8.541071], [47.386349, 8.496375], [47.355234, 8.575974], [47.370471, 8.524739], [47.385025, 8.548333], [47.390517, 8.4901], [47.377414, 8.53913], [47.382233, 8.540276], [47.386518, 8.517093], [47.37497, 8.523586], [47.369815, 8.510227], [47.408625, 8.539284], [47.398657, 8.532799], [47.373744, 8.544774], [47.384593, 8.53806], [47.368454, 8.555098], [47.408995, 8.54393], [47.392746, 8.521445], [47.376808, 8.513679], [47.361816, 8.515322], [47.347341, 8.532725], [47.359251, 8.535485], [47.40649, 8.589457], [47.351785, 8.509653], [47.37624, 8.500134], [47.39205, 8.532372], [47.424156, 8.549082], [47.365214, 8.538375], [47.382028, 8.498686], [47.373045, 8.547249], [47.385119, 8.495211], [47.363779, 8.575177], [47.401182, 8.517774], [47.370099, 8.518376], [47.356892, 8.535781], [47.385229, 8.54394], [47.415948, 8.566285], [47.375535, 8.530497], [47.383093, 8.497409], [47.383984, 8.538762], [47.407805, 8.543203], [47.415249, 8.570537], [47.356517, 8.55142], [47.36895, 8.524748], [47.342576, 8.536201], [47.367865, 8.520582], [47.382026, 8.489164], [47.365028, 8.534346], [47.378997, 8.559676], [47.379785, 8.53755], [47.412794, 8.533195], [47.381692, 8.549826], [47.37647, 8.544725], [47.373058, 8.532724], [47.366033, 8.562634], [47.407637, 8.538217], [47.372577, 8.529311], [47.356036, 8.509103], [47.377818, 8.541972], [47.376478, 8.534462], [47.391552, 8.534613], [47.357245, 8.526932], [47.386003, 8.535413], [47.354599, 8.55813], [47.339526, 8.527775], [47.390385, 8.491819], [47.412349, 8.54115], [47.340662, 8.519858], [47.367651, 8.554432], [47.36123, 8.547679], [47.398211, 8.541917], [47.41727, 8.544883], [47.36847, 8.505844], [47.380256, 8.54291], [47.383704, 8.548199], [47.404187, 8.540637], [47.358492, 8.578572], [47.367116, 8.539884], [47.382805, 8.529255], [47.386175, 8.518132], [47.368382, 8.546662], [47.381261, 8.534693], [47.397709, 8.533203], [47.335354, 8.541716], [47.388181, 8.536319], [47.387259, 8.542379], [47.427657, 8.545112], [47.366373, 8.541417], [47.372457, 8.532526], [47.385877, 8.542059], [47.373461, 8.519517], [47.392112, 8.476938], [47.382292, 8.530291], [47.332825, 8.536225], [47.362804, 8.535545], [47.360934, 8.530701], [47.358767, 8.533384], [47.394088, 8.493151], [47.40593, 8.555764], [47.404934, 8.552775], [47.356987, 8.512273], [47.375323, 8.485377], [47.3854, 8.517362], [47.370603, 8.524994], [47.368904, 8.502622], [47.363607, 8.535244], [47.411189, 8.562606], [47.41866, 8.530188], [47.390685, 8.491454], [47.384132, 8.530673], [47.397309, 8.533632], [47.354236, 8.575979], [47.370208, 8.535353], [47.370839, 8.518073], [47.372527, 8.534593], [47.426527, 8.548535], [47.386381, 8.518229], [47.38002, 8.544123], [47.390077, 8.522159], [47.391653, 8.519065], [47.376172, 8.527756], [47.390661, 8.523217], [47.359542, 8.549245], [47.381167, 8.491531], [47.36968, 8.525584], [47.354237, 8.598442], [47.375401, 8.526561], [47.394325, 8.510376], [47.373381, 8.534743], [47.359693, 8.535401], [47.37712, 8.541613], [47.383855, 8.526734], [47.379526, 8.555237], [47.364688, 8.521749], [47.369275, 8.527495], [47.36209, 8.529255], [47.366512, 8.541884], [47.353777, 8.534075], [47.363851, 8.533223], [47.369296, 8.527191], [47.356531, 8.510013], [47.413726, 8.546691], [47.379554, 8.524924], [47.369662, 8.525597], [47.3865, 8.554046], [47.37741, 8.535753], [47.370143, 8.548818], [47.357463, 8.521893], [47.36028, 8.534182], [47.410837, 8.544988], [47.363749, 8.535432], [47.3812, 8.528772], [47.393392, 8.525498], [47.380789, 8.503429], [47.42791, 8.491063], [47.403832, 8.571699], [47.340181, 8.529866], [47.392261, 8.503049], [47.417706, 8.545409], [47.410865, 8.554264], [47.361783, 8.505287], [47.375375, 8.560328], [47.379315, 8.537871], [47.359342, 8.569906], [47.386906, 8.534173], [47.397961, 8.474654], [47.376843, 8.522446], [47.378344, 8.52731], [47.360097, 8.563515], [47.385886, 8.544907], [47.410228, 8.565196], [47.373452, 8.52909], [47.415213, 8.570563], [47.403297, 8.497188], [47.387935, 8.520433], [47.374404, 8.496403], [47.355383, 8.600757], [47.36774, 8.496191], [47.414205, 8.518899], [47.422612, 8.553371], [47.407247, 8.550704], [47.37828, 8.528381], [47.388197, 8.520279], [47.358951, 8.558341], [47.412975, 8.537811], [47.362222, 8.52571], [47.386449, 8.491317], [47.365267, 8.564604], [47.414006, 8.549387], [47.40542, 8.59219], [47.373064, 8.511974], [47.397998, 8.474522], [47.394068, 8.489322], [47.367538, 8.496703], [47.3695, 8.506355], [47.36262, 8.558431], [47.35157, 8.525903], [47.378457, 8.530557], [47.370671, 8.516812], [47.39415, 8.490198], [47.349378, 8.534117], [47.401005, 8.535656], [47.379431, 8.537927], [47.375374, 8.547351], [47.388657, 8.516236], [47.390647, 8.508275], [47.379827, 8.527433], [47.383265, 8.543369], [47.381411, 8.551012], [47.363056, 8.51732], [47.364874, 8.533522], [47.336985, 8.520524], [47.372479, 8.547158], [47.394769, 8.52546], [47.354041, 8.557219], [47.369528, 8.543482], [47.383162, 8.572517], [47.371396, 8.521037], [47.398109, 8.541266], [47.376189, 8.525955], [47.427523, 8.551565], [47.386474, 8.534204], [47.414513, 8.558462], [47.356472, 8.558818], [47.339436, 8.527694], [47.361386, 8.522727], [47.399161, 8.542295], [47.378178, 8.515309], [47.368359, 8.547178], [47.387267, 8.499347], [47.37358, 8.544903], [47.3775, 8.537662], [47.369145, 8.556185], [47.389869, 8.488246], [47.405824, 8.550051], [47.375248, 8.544594], [47.388008, 8.491017], [47.369356, 8.554879], [47.375278, 8.485284], [47.356644, 8.573502], [47.379544, 8.527851], [47.387061, 8.51864], [47.348452, 8.534125], [47.426433, 8.547022], [47.384428, 8.507753], [47.359574, 8.535598], [47.424192, 8.543423], [47.355437, 8.574615], [47.37927, 8.53787], [47.37541, 8.514988], [47.41443, 8.51897], [47.365712, 8.520896], [47.376879, 8.520526], [47.381874, 8.51635], [47.344488, 8.532879], [47.37798, 8.508471], [47.378416, 8.510003], [47.374878, 8.540004], [47.372431, 8.542827], [47.415273, 8.547717], [47.366184, 8.545147], [47.390729, 8.539776], [47.37385, 8.536487], [47.369184, 8.51996], [47.398113, 8.479691], [47.363235, 8.549706], [47.399082, 8.542081], [47.423004, 8.546328], [47.381276, 8.503214], [47.378385, 8.567158], [47.407853, 8.582623], [47.362026, 8.550979], [47.374211, 8.54105], [47.366392, 8.541325], [47.364597, 8.537078], [47.376173, 8.518089], [47.402314, 8.487643], [47.374704, 8.560804], [47.37258, 8.534713], [47.427331, 8.552873], [47.375842, 8.577884], [47.402992, 8.559214], [47.34539, 8.535425], [47.343562, 8.51948], [47.354107, 8.55317], [47.402043, 8.498594], [47.412897, 8.537464], [47.379762, 8.527696], [47.354107, 8.575315], [47.374815, 8.519995], [47.398672, 8.492539], [47.362323, 8.554731], [47.392326, 8.502825], [47.364009, 8.551483], [47.406941, 8.493206], [47.364665, 8.554383], [47.386504, 8.529106], [47.35274, 8.602447], [47.384763, 8.509415], [47.377671, 8.537612], [47.373142, 8.531454], [47.412099, 8.546644], [47.369648, 8.533726], [47.353121, 8.524492], [47.373562, 8.526921], [47.3849, 8.542675], [47.414509, 8.55605], [47.359471, 8.504287], [47.419326, 8.50795], [47.367896, 8.524012], [47.402965, 8.572051], [47.374214, 8.544533], [47.373962, 8.546394], [47.394837, 8.48886], [47.398113, 8.546526], [47.399187, 8.547952], [47.351714, 8.558864], [47.387167, 8.53508], [47.364595, 8.566205], [47.408126, 8.54631], [47.390292, 8.510732], [47.372955, 8.533185], [47.369464, 8.541746], [47.365632, 8.553927], [47.375666, 8.500956], [47.363629, 8.532001], [47.36306, 8.567734], [47.378411, 8.567185], [47.371337, 8.530199], [47.366303, 8.544924], [47.374358, 8.552878], [47.408927, 8.548208], [47.365238, 8.538733], [47.374414, 8.52241], [47.366623, 8.516823], [47.375418, 8.524721], [47.355583, 8.556894], [47.36129, 8.548037], [47.364476, 8.555332], [47.409561, 8.546803], [47.389645, 8.487102], [47.378718, 8.521981], [47.376785, 8.541845], [47.368502, 8.519813], [47.397803, 8.529907], [47.355206, 8.51413], [47.413691, 8.546677], [47.397898, 8.534148], [47.364232, 8.547953], [47.3741, 8.52717], [47.370853, 8.524284], [47.389918, 8.512248], [47.374454, 8.539108], [47.409791, 8.538725], [47.427235, 8.553401], [47.37388, 8.521869], [47.393123, 8.537745], [47.368797, 8.540925], [47.397888, 8.534187], [47.410517, 8.550282], [47.355397, 8.53121], [47.41796, 8.508824], [47.367107, 8.554924], [47.40676, 8.541485], [47.383054, 8.479861], [47.410244, 8.56362], [47.418314, 8.510474], [47.376702, 8.534493], [47.392135, 8.477283], [47.404569, 8.557988], [47.362892, 8.548918], [47.369266, 8.494646], [47.383591, 8.577427], [47.361038, 8.560172], [47.390966, 8.479287], [47.398336, 8.591719], [47.372781, 8.534413], [47.414513, 8.520668], [47.38765, 8.476944], [47.358666, 8.585565], [47.376347, 8.559289], [47.370696, 8.510192], [47.383326, 8.529319], [47.409417, 8.538267], [47.370188, 8.548805], [47.368836, 8.563011], [47.395013, 8.52055], [47.326339, 8.51335], [47.377986, 8.528137], [47.37867, 8.530879], [47.385937, 8.516684], [47.383297, 8.5152], [47.374531, 8.524359], [47.379077, 8.51824], [47.36661, 8.544798], [47.37771, 8.538182], [47.387555, 8.519657], [47.403239, 8.502579], [47.393902, 8.505519], [47.401225, 8.490669], [47.383745, 8.573669], [47.379431, 8.528471], [47.37028, 8.513428], [47.364717, 8.554609], [47.374167, 8.54093], [47.368902, 8.540344], [47.412418, 8.514795], [47.364339, 8.548114], [47.414608, 8.519106], [47.371128, 8.547342], [47.359882, 8.594395], [47.362778, 8.548585], [47.413189, 8.534171], [47.383398, 8.52838], [47.404391, 8.556818], [47.375276, 8.522586], [47.36615, 8.540234], [47.363801, 8.551611], [47.369333, 8.505901], [47.427091, 8.544133], [47.38185, 8.509251], [47.380128, 8.49698], [47.383393, 8.498978], [47.358319, 8.55204], [47.379914, 8.521025], [47.38483, 8.52723], [47.37596, 8.540662], [47.39609, 8.522665], [47.368818, 8.539707], [47.370891, 8.52304], [47.364002, 8.531518], [47.395342, 8.518967], [47.387209, 8.551398], [47.368926, 8.537803], [47.411075, 8.570581], [47.357929, 8.554203], [47.408235, 8.547147], [47.391894, 8.518314], [47.330364, 8.512901], [47.367217, 8.523508], [47.393524, 8.500624], [47.370821, 8.559597], [47.364047, 8.528726], [47.386554, 8.496631], [47.374523, 8.546088], [47.394899, 8.490928], [47.399319, 8.505323], [47.398119, 8.53553], [47.358841, 8.51889], [47.37074, 8.549413], [47.36907, 8.528286], [47.368574, 8.524595], [47.36353, 8.50793], [47.365937, 8.532419], [47.377112, 8.543374], [47.324438, 8.518484], [47.406273, 8.581489], [47.375319, 8.529499], [47.423794, 8.549313], [47.375113, 8.491597], [47.352839, 8.602449], [47.38477, 8.526938], [47.414439, 8.554922], [47.357006, 8.573219], [47.391347, 8.542954], [47.369113, 8.554821], [47.395988, 8.536334], [47.403908, 8.57227], [47.375516, 8.486864], [47.429386, 8.544883], [47.357324, 8.53575], [47.412928, 8.524717], [47.38274, 8.539928], [47.410115, 8.553692], [47.367988, 8.540881], [47.374167, 8.540917], [47.365524, 8.545504], [47.348495, 8.534298], [47.403962, 8.556491], [47.369815, 8.466666], [47.364716, 8.554702], [47.376083, 8.559641], [47.364559, 8.566257], [47.350348, 8.577974], [47.380806, 8.518937], [47.378348, 8.528806], [47.42511, 8.537703], [47.374767, 8.549682], [47.375266, 8.517911], [47.380315, 8.528132], [47.373013, 8.50383], [47.376136, 8.515334], [47.361992, 8.56472], [47.418725, 8.557212], [47.339946, 8.529954], [47.367873, 8.536907], [47.364213, 8.526373], [47.34496, 8.533391], [47.373306, 8.550115], [47.372325, 8.518858], [47.395728, 8.474823], [47.364283, 8.529353], [47.380381, 8.534503], [47.419438, 8.505567], [47.366932, 8.54311], [47.410579, 8.550336], [47.371476, 8.519172], [47.35977, 8.550852], [47.364461, 8.534321], [47.380016, 8.520722], [47.368127, 8.562876], [47.390452, 8.491343], [47.379156, 8.4892], [47.349974, 8.56657], [47.377202, 8.526307], [47.353897, 8.526228], [47.374272, 8.523228], [47.36982, 8.552492], [47.361925, 8.515179], [47.371957, 8.556535], [47.388084, 8.545456], [47.373336, 8.534663], [47.384459, 8.498509], [47.381925, 8.516695], [47.365734, 8.532017], [47.373099, 8.518781], [47.373675, 8.528314], [47.348495, 8.534298], [47.375373, 8.540902], [47.366755, 8.564224], [47.397017, 8.530261], [47.354815, 8.574708], [47.410459, 8.539415], [47.40411, 8.563556], [47.354941, 8.557198], [47.410523, 8.569072], [47.414493, 8.512213], [47.413939, 8.539474], [47.387126, 8.54594], [47.40992, 8.541232], [47.374744, 8.541789], [47.371451, 8.550275], [47.410676, 8.571818], [47.414439, 8.51897], [47.374637, 8.487588], [47.368437, 8.547498], [47.412701, 8.482971], [47.420789, 8.508324], [47.369488, 8.525884], [47.398997, 8.533058], [47.389579, 8.511936], [47.360621, 8.552088], [47.368324, 8.524378], [47.376092, 8.559641], [47.372151, 8.51528], [47.377598, 8.522474], [47.40783, 8.545283], [47.389218, 8.482564], [47.357155, 8.554292], [47.364805, 8.548309], [47.409558, 8.537647], [47.356175, 8.598974], [47.374766, 8.52043], [47.399677, 8.543816], [47.372936, 8.531318], [47.420468, 8.498285], [47.371903, 8.536884], [47.394642, 8.52555], [47.365163, 8.531423], [47.379173, 8.561057], [47.424309, 8.535897], [47.36984, 8.552227], [47.376311, 8.522528], [47.337152, 8.539027], [47.38636, 8.518533], [47.365964, 8.53234], [47.364528, 8.561146], [47.396225, 8.522721], [47.385509, 8.521059], [47.364921, 8.552985], [47.364202, 8.529444], [47.374236, 8.537435], [47.376257, 8.538748], [47.358875, 8.521988], [47.400942, 8.507767], [47.396382, 8.543191], [47.345183, 8.534508], [47.391361, 8.54518], [47.378241, 8.541067], [47.405108, 8.487088], [47.379187, 8.542782], [47.388494, 8.491053], [47.385075, 8.528944], [47.384874, 8.508133], [47.376876, 8.535106], [47.353178, 8.511706], [47.366506, 8.545405], [47.361288, 8.525505], [47.372365, 8.494045], [47.398024, 8.535038], [47.370097, 8.509823], [47.371633, 8.513998], [47.375097, 8.518703], [47.371326, 8.536078], [47.350037, 8.533879], [47.392478, 8.502947], [47.375668, 8.523984], [47.382834, 8.530011], [47.378796, 8.530881], [47.383403, 8.484092], [47.373805, 8.545861], [47.386025, 8.518831], [47.384913, 8.508796], [47.378236, 8.5216], [47.375914, 8.527446], [47.410905, 8.544473], [47.374121, 8.52492], [47.390105, 8.512437], [47.382428, 8.53771], [47.369216, 8.523257], [47.403444, 8.486075], [47.368938, 8.540319], [47.387493, 8.496199], [47.403998, 8.556572], [47.390977, 8.522137], [47.373391, 8.531711], [47.349613, 8.561242], [47.359179, 8.558028], [47.385331, 8.494646], [47.343772, 8.535286], [47.345241, 8.535038], [47.378619, 8.540055], [47.395658, 8.545441], [47.409877, 8.48489], [47.407573, 8.582829], [47.407672, 8.582831], [47.377362, 8.522708], [47.389447, 8.511616], [47.363825, 8.515945], [47.357332, 8.550854], [47.3712, 8.531361], [47.36068, 8.587449], [47.391761, 8.538194], [47.364465, 8.546171], [47.411639, 8.572686], [47.361874, 8.507116], [47.417524, 8.546479], [47.346697, 8.563219], [47.36707, 8.545589], [47.385979, 8.517943], [47.378104, 8.483207], [47.393399, 8.500581], [47.382102, 8.531373], [47.380438, 8.519897], [47.378527, 8.540265], [47.331711, 8.538028], [47.39177, 8.54287], [47.361094, 8.549701], [47.372697, 8.534729], [47.376491, 8.540634], [47.379324, 8.537871], [47.384745, 8.529652], [47.372864, 8.53513], [47.352067, 8.505397], [47.356154, 8.535726], [47.398282, 8.532487], [47.36293, 8.517318], [47.353048, 8.53414], [47.362357, 8.566065], [47.366779, 8.540353], [47.3939, 8.525972], [47.412388, 8.516027], [47.370015, 8.543333], [47.383748, 8.512216], [47.335181, 8.524947], [47.408619, 8.546532], [47.37768, 8.538539], [47.396207, 8.545413], [47.342721, 8.536138], [47.401912, 8.581263], [47.393387, 8.498978], [47.381434, 8.517242], [47.404099, 8.48524], [47.374557, 8.521631], [47.359846, 8.568924], [47.374393, 8.518966], [47.406608, 8.506913], [47.351448, 8.566707], [47.385339, 8.530526], [47.3604, 8.516631], [47.385193, 8.530734], [47.385544, 8.528808], [47.381673, 8.516664], [47.368225, 8.531036], [47.380903, 8.518237], [47.363164, 8.517296], [47.374931, 8.544746], [47.371865, 8.547423], [47.374387, 8.535757], [47.396851, 8.529702], [47.368509, 8.558687], [47.387719, 8.538482], [47.383166, 8.473466], [47.38221, 8.530342], [47.361565, 8.535281], [47.370497, 8.539993], [47.389998, 8.512355], [47.388393, 8.515661], [47.389717, 8.511634], [47.399384, 8.495256], [47.396597, 8.533803], [47.393125, 8.479276], [47.390877, 8.522215], [47.404993, 8.555957], [47.3626, 8.535223], [47.380493, 8.519765], [47.381729, 8.529935], [47.42108, 8.502127], [47.374519, 8.544632], [47.391961, 8.517879], [47.380098, 8.528233], [47.409992, 8.504808], [47.37028, 8.513362], [47.410893, 8.547653], [47.377779, 8.507871], [47.411972, 8.525917], [47.39789, 8.54154], [47.375125, 8.511844], [47.371393, 8.528055], [47.408956, 8.53945], [47.372879, 8.538308], [47.382971, 8.527868], [47.371325, 8.530464], [47.401197, 8.543834], [47.411133, 8.526204], [47.380155, 8.501854], [47.362341, 8.547278], [47.355886, 8.535588], [47.363147, 8.517203], [47.369138, 8.504626], [47.359678, 8.512076], [47.386784, 8.530833], [47.348019, 8.534235], [47.385933, 8.518061], [47.396001, 8.545369], [47.368172, 8.496173], [47.395084, 8.524446], [47.421036, 8.50206], [47.369288, 8.505887], [47.369591, 8.543536], [47.376086, 8.535898], [47.374682, 8.514986], [47.374276, 8.5437], [47.376369, 8.534566], [47.368866, 8.547877], [47.363678, 8.546684], [47.368699, 8.540843], [47.37346, 8.534851], [47.381202, 8.497584], [47.333913, 8.53245], [47.385449, 8.529323], [47.371021, 8.510146], [47.371353, 8.520785], [47.383004, 8.530173], [47.389926, 8.512288], [47.365532, 8.553978], [47.377155, 8.536992], [47.418665, 8.50257], [47.394792, 8.525791], [47.386741, 8.490926], [47.370647, 8.546895], [47.366851, 8.543175], [47.369881, 8.52907], [47.378046, 8.526549], [47.345031, 8.529647], [47.377524, 8.536073], [47.396835, 8.540909], [47.374577, 8.538542], [47.378282, 8.563846], [47.361484, 8.561465], [47.377189, 8.540026], [47.36851, 8.517947], [47.410533, 8.5325], [47.369848, 8.515339], [47.405754, 8.503968], [47.359526, 8.521564], [47.379257, 8.559734], [47.360981, 8.565122], [47.364351, 8.555237], [47.369322, 8.528225], [47.340217, 8.529853], [47.364595, 8.566218], [47.390521, 8.489742], [47.379294, 8.543777], [47.404655, 8.55742], [47.383265, 8.506074], [47.375162, 8.517539], [47.399746, 8.519414], [47.329954, 8.529802], [47.398012, 8.532521], [47.393845, 8.501928], [47.367608, 8.506635], [47.369873, 8.52903], [47.379559, 8.526289], [47.400553, 8.589501], [47.406918, 8.587174], [47.388882, 8.488941], [47.370022, 8.564135], [47.373122, 8.547688], [47.388511, 8.49108], [47.370377, 8.514516], [47.382348, 8.572129], [47.374299, 8.497063], [47.388441, 8.492946], [47.355087, 8.557015], [47.370009, 8.536514], [47.389834, 8.544936], [47.35669, 8.558691], [47.386494, 8.490391], [47.363402, 8.520782], [47.382793, 8.483855], [47.369153, 8.528089], [47.398659, 8.505694], [47.377726, 8.507751], [47.368763, 8.534105], [47.398898, 8.533003], [47.37434, 8.542615], [47.375661, 8.537081], [47.345681, 8.529369], [47.425878, 8.493926], [47.37017, 8.548805], [47.370608, 8.524504], [47.375045, 8.526117], [47.410375, 8.548159], [47.386861, 8.535047], [47.371663, 8.535635], [47.396303, 8.513317], [47.335566, 8.519344], [47.389678, 8.511951], [47.407856, 8.531199], [47.357779, 8.548375], [47.378003, 8.548028], [47.388737, 8.491045], [47.367906, 8.534419], [47.373136, 8.536843], [47.40688, 8.550603], [47.399335, 8.542842], [47.379894, 8.528931], [47.361847, 8.560215], [47.381407, 8.541993], [47.394139, 8.531156], [47.402926, 8.557596], [47.404455, 8.557681], [47.393624, 8.501513], [47.370421, 8.519442], [47.422834, 8.493349], [47.390613, 8.489439], [47.378603, 8.542664], [47.37636, 8.518291], [47.395884, 8.515852], [47.353944, 8.512463], [47.381306, 8.54219], [47.371619, 8.506728], [47.389564, 8.543156], [47.388036, 8.485044], [47.380738, 8.52528], [47.397702, 8.532965], [47.370235, 8.53918], [47.364972, 8.545837], [47.378121, 8.512672], [47.375877, 8.538025], [47.39331, 8.524648], [47.409814, 8.541018], [47.378759, 8.542349], [47.377189, 8.52677], [47.399168, 8.521522], [47.367108, 8.539778], [47.40287, 8.554123], [47.413948, 8.544271], [47.376043, 8.529011], [47.375759, 8.523854], [47.424703, 8.55299], [47.377578, 8.514952], [47.368987, 8.538016], [47.3572, 8.526997], [47.371809, 8.506626], [47.380417, 8.505673], [47.390525, 8.52238], [47.386431, 8.496297], [47.373898, 8.53331], [47.340577, 8.537364], [47.351241, 8.565856], [47.390904, 8.522255], [47.424168, 8.502786], [47.369379, 8.547822], [47.371622, 8.547498], [47.376847, 8.559697], [47.378549, 8.5752], [47.381351, 8.517492], [47.41069, 8.543488], [47.375908, 8.54519], [47.380008, 8.526377], [47.368955, 8.540412], [47.397103, 8.492892], [47.374824, 8.540003], [47.364621, 8.566351], [47.38894, 8.515804], [47.408223, 8.546564], [47.376638, 8.536545], [47.386921, 8.46995], [47.367377, 8.541743], [47.375633, 8.520965], [47.382658, 8.529649], [47.414019, 8.549003], [47.393211, 8.524646], [47.363625, 8.533351], [47.403908, 8.536815], [47.380454, 8.534385], [47.41299, 8.538116], [47.406543, 8.584185], [47.374579, 8.494923], [47.377092, 8.540752], [47.41105, 8.545297], [47.361802, 8.560241], [47.408352, 8.548117], [47.395739, 8.545456], [47.38656, 8.541226], [47.376315, 8.522078], [47.386477, 8.529132], [47.368917, 8.501219], [47.376924, 8.541424], [47.350072, 8.562125], [47.374457, 8.541664], [47.426851, 8.491758], [47.380145, 8.528075], [47.375828, 8.536581], [47.371135, 8.542906], [47.427825, 8.490478], [47.367543, 8.535642], [47.389544, 8.521459], [47.372406, 8.547289], [47.367624, 8.513613], [47.393794, 8.524817], [47.408883, 8.539621], [47.39049, 8.479158], [47.366951, 8.543958], [47.354209, 8.523654], [47.399601, 8.543271], [47.35796, 8.552919], [47.421775, 8.546952], [47.393774, 8.506735], [47.385233, 8.526497], [47.416112, 8.547404], [47.372242, 8.542836], [47.343117, 8.530415], [47.35495, 8.557238], [47.363404, 8.534803], [47.413892, 8.545396], [47.372609, 8.532608], [47.360261, 8.534288], [47.366169, 8.526836], [47.376887, 8.528247], [47.382808, 8.515548], [47.424226, 8.506339], [47.359956, 8.5521], [47.349675, 8.561336], [47.419218, 8.547137], [47.407856, 8.532127], [47.395407, 8.514001], [47.402058, 8.498965], [47.354793, 8.553012], [47.351563, 8.525691], [47.365, 8.589859], [47.374353, 8.52703], [47.381061, 8.507063], [47.370081, 8.525049], [47.362516, 8.534586], [47.372203, 8.520339], [47.393617, 8.512004], [47.368779, 8.540938], [47.377766, 8.543692], [47.37305, 8.534498], [47.350843, 8.534306], [47.401149, 8.493118], [47.376204, 8.524406], [47.358482, 8.51777], [47.368167, 8.523871], [47.364627, 8.555547], [47.4079, 8.547392], [47.366523, 8.537925], [47.366994, 8.523344], [47.378404, 8.510374], [47.389411, 8.485124], [47.370197, 8.548819], [47.380193, 8.527798], [47.382677, 8.507413], [47.366661, 8.54137], [47.366346, 8.540477], [47.392878, 8.522759], [47.387243, 8.554366], [47.377256, 8.512906], [47.369551, 8.466979], [47.393375, 8.499203], [47.378535, 8.541378], [47.371837, 8.542815], [47.367126, 8.539778], [47.368252, 8.538649], [47.408317, 8.541424], [47.374543, 8.54111], [47.374131, 8.515161], [47.380413, 8.502203], [47.38295, 8.474429], [47.376192, 8.525597], [47.358204, 8.548159], [47.369959, 8.510217], [47.384187, 8.475976], [47.3587, 8.590252], [47.426256, 8.536362], [47.35525, 8.557826], [47.370253, 8.539167], [47.364955, 8.529724], [47.342676, 8.530433], [47.378149, 8.509706], [47.377577, 8.543689], [47.37475, 8.55237], [47.393298, 8.511521], [47.376547, 8.511713], [47.384295, 8.525816], [47.379802, 8.525327], [47.363435, 8.526847], [47.369521, 8.555438], [47.39839, 8.49778], [47.377061, 8.544022], [47.388748, 8.535271], [47.364993, 8.519914], [47.370545, 8.524516], [47.379352, 8.537766], [47.375361, 8.549681], [47.369589, 8.541815], [47.383419, 8.539466], [47.417186, 8.509869], [47.370152, 8.548804], [47.404798, 8.5769], [47.413832, 8.572018], [47.41543, 8.513902], [47.359645, 8.558183], [47.369799, 8.525388], [47.371289, 8.530503], [47.403871, 8.496444], [47.368815, 8.538145], [47.425705, 8.553528], [47.367875, 8.496247], [47.357179, 8.552691], [47.361758, 8.561021], [47.392867, 8.534455], [47.363309, 8.533437], [47.37024, 8.547138], [47.363626, 8.532279], [47.412262, 8.504363], [47.390592, 8.489796], [47.359048, 8.500427], [47.407854, 8.579814], [47.391996, 8.500553], [47.378963, 8.543572], [47.361544, 8.565438], [47.418395, 8.538161], [47.377735, 8.532806], [47.410526, 8.538065], [47.391098, 8.522696], [47.379156, 8.522307], [47.41461, 8.560478], [47.322863, 8.513796], [47.382622, 8.540005], [47.380718, 8.528312], [47.365696, 8.547295], [47.428581, 8.54256], [47.364258, 8.548046], [47.367561, 8.53371], [47.373085, 8.530831], [47.409799, 8.537811], [47.373084, 8.530897], [47.368025, 8.495561], [47.366455, 8.540347], [47.379215, 8.537975], [47.410776, 8.572642], [47.389938, 8.478618], [47.366897, 8.545811], [47.377587, 8.498505], [47.376093, 8.543658], [47.371573, 8.521306], [47.398909, 8.533705], [47.425899, 8.493542], [47.387049, 8.546468], [47.370926, 8.49403], [47.386358, 8.499315], [47.368735, 8.521818], [47.368237, 8.511612], [47.357183, 8.522046], [47.38212, 8.55018], [47.368211, 8.541058], [47.414702, 8.561209], [47.378195, 8.517335], [47.409168, 8.571521], [47.408252, 8.58507], [47.359861, 8.549795], [47.389121, 8.533875], [47.382911, 8.575267], [47.365026, 8.553371], [47.371334, 8.530477], [47.391069, 8.526696], [47.396952, 8.540911], [47.378912, 8.526183], [47.402065, 8.495269], [47.376004, 8.536002], [47.399109, 8.540108], [47.361495, 8.557534], [47.397896, 8.532492], [47.393189, 8.49304], [47.375041, 8.5247], [47.361227, 8.506017], [47.397927, 8.474442], [47.370572, 8.509024], [47.366142, 8.544868], [47.360719, 8.584418], [47.367396, 8.541611], [47.427014, 8.491589], [47.378357, 8.510545], [47.368284, 8.534373], [47.407111, 8.586768], [47.376048, 8.559574], [47.405414, 8.567267], [47.379001, 8.527337], [47.378174, 8.532034], [47.357945, 8.52042], [47.367057, 8.536612], [47.420893, 8.507809], [47.377115, 8.493066], [47.379185, 8.525857], [47.376141, 8.567548], [47.405295, 8.504913], [47.403801, 8.486374], [47.367887, 8.523985], [47.378988, 8.559676], [47.37034, 8.548901], [47.366123, 8.533601], [47.374352, 8.524236], [47.369454, 8.541892], [47.373444, 8.545046], [47.424293, 8.548793], [47.371925, 8.522147], [47.370313, 8.514673], [47.370336, 8.509324], [47.399109, 8.470026], [47.386372, 8.497806], [47.373933, 8.50161], [47.404234, 8.560975], [47.384655, 8.531531], [47.395777, 8.531124], [47.363242, 8.563793], [47.36993, 8.552203], [47.352694, 8.531657], [47.384178, 8.512357], [47.358082, 8.520224], [47.369325, 8.538433], [47.390736, 8.521947], [47.374976, 8.536259], [47.383377, 8.515321], [47.40291, 8.547102], [47.379083, 8.544183], [47.374284, 8.519017], [47.374083, 8.538452], [47.389035, 8.521104], [47.382951, 8.51375], [47.376326, 8.525719], [47.377599, 8.522368], [47.394653, 8.532968], [47.386704, 8.491004], [47.427696, 8.54286], [47.375323, 8.485377], [47.415724, 8.554141], [47.373595, 8.511892], [47.376077, 8.537751], [47.364981, 8.538291], [47.388286, 8.491168], [47.420165, 8.508709], [47.37741, 8.500091], [47.405269, 8.549775], [47.366555, 8.523137], [47.412219, 8.546342], [47.384705, 8.516659], [47.369699, 8.518765], [47.40514, 8.49537], [47.39341, 8.524571], [47.397142, 8.480639], [47.366506, 8.520673], [47.376528, 8.532888], [47.391539, 8.535925], [47.39807, 8.53594], [47.392695, 8.475095], [47.375352, 8.536478], [47.392282, 8.473961], [47.348263, 8.532241], [47.421305, 8.549911], [47.374988, 8.517813], [47.345305, 8.535886], [47.358991, 8.522083], [47.371928, 8.493626], [47.349542, 8.533988], [47.387649, 8.48701], [47.380088, 8.520684], [47.370909, 8.53166], [47.403743, 8.57073], [47.378974, 8.54528], [47.367487, 8.511902], [47.390986, 8.478029], [47.372936, 8.531318], [47.38057, 8.534467], [47.364809, 8.545966], [47.369575, 8.510845], [47.398878, 8.538924], [47.386268, 8.535021], [47.37832, 8.56084], [47.36804, 8.494833], [47.400913, 8.494306], [47.362199, 8.54893], [47.400894, 8.544503], [47.386428, 8.497635], [47.401951, 8.499785], [47.356712, 8.523413], [47.395185, 8.489211], [47.405145, 8.480968], [47.39418, 8.520162], [47.410274, 8.543651], [47.376864, 8.528789], [47.374747, 8.54988], [47.357856, 8.5544], [47.365091, 8.554008], [47.369973, 8.566305], [47.367416, 8.55264], [47.373256, 8.5617], [47.380084, 8.526908], [47.418095, 8.510762], [47.360489, 8.552734], [47.392864, 8.524308], [47.376739, 8.527727], [47.386152, 8.496331], [47.403767, 8.486161], [47.371866, 8.556639], [47.412396, 8.546624], [47.360533, 8.5631], [47.368902, 8.540318], [47.374992, 8.545012], [47.365997, 8.521246], [47.356572, 8.52394], [47.369039, 8.541009], [47.406773, 8.553251], [47.423826, 8.52034], [47.405694, 8.549479], [47.388735, 8.542278], [47.369852, 8.543462], [47.366519, 8.540255], [47.351215, 8.56113], [47.383908, 8.53247], [47.406547, 8.584622], [47.380331, 8.541653], [47.370152, 8.548818], [47.357252, 8.572973], [47.363661, 8.546604], [47.361514, 8.534009], [47.357658, 8.521275], [47.371009, 8.56156], [47.398221, 8.537069], [47.392565, 8.471476], [47.414092, 8.542339], [47.372088, 8.49392], [47.366448, 8.544848], [47.409037, 8.566523], [47.360809, 8.547564], [47.382671, 8.514777], [47.375918, 8.523261], [47.364232, 8.54794], [47.373905, 8.538263], [47.394874, 8.52578], [47.376794, 8.539024], [47.36405, 8.530248], [47.370945, 8.524007], [47.388003, 8.536103], [47.353767, 8.512168], [47.409309, 8.546772], [47.414751, 8.519215], [47.415365, 8.538072], [47.369545, 8.555756], [47.409596, 8.496995], [47.372158, 8.520311], [47.411685, 8.562497], [47.414075, 8.550701], [47.327347, 8.52963], [47.383783, 8.499595], [47.384381, 8.531936], [47.374177, 8.532349], [47.376336, 8.527534], [47.364926, 8.532769], [47.352194, 8.534056], [47.403488, 8.497033], [47.388511, 8.49108], [47.370134, 8.548817], [47.366085, 8.545185], [47.366079, 8.53352], [47.359277, 8.5223], [47.373487, 8.519584], [47.361102, 8.54986], [47.424064, 8.539868], [47.37291, 8.522697], [47.366557, 8.541938], [47.36788, 8.535199], [47.369861, 8.532102], [47.379066, 8.538502], [47.386861, 8.483617], [47.332103, 8.517395], [47.384471, 8.574823], [47.426813, 8.49193], [47.371615, 8.515891], [47.360543, 8.535843], [47.399968, 8.532071], [47.359335, 8.552061], [47.375158, 8.544605], [47.405195, 8.541466], [47.354177, 8.526102], [47.354986, 8.557146], [47.360457, 8.52206], [47.408973, 8.539636], [47.377636, 8.537519], [47.382537, 8.53762], [47.378491, 8.50966], [47.340559, 8.537377], [47.361689, 8.517319], [47.379213, 8.511357], [47.402436, 8.535513], [47.376408, 8.541797], [47.364992, 8.502624], [47.408595, 8.575815], [47.379016, 8.520874], [47.379829, 8.506986], [47.369223, 8.525402], [47.398664, 8.534031], [47.369361, 8.517355], [47.376056, 8.559601], [47.426196, 8.55489], [47.374398, 8.524184], [47.391342, 8.535854], [47.389342, 8.519071], [47.390486, 8.489569], [47.376683, 8.51553], [47.364102, 8.536128], [47.408664, 8.569721], [47.372701, 8.537112], [47.384953, 8.529511], [47.410724, 8.544602], [47.391043, 8.522761], [47.376187, 8.545103], [47.351456, 8.525543], [47.385848, 8.493133], [47.378761, 8.489139], [47.38677, 8.497615], [47.364022, 8.5464], [47.420497, 8.54886], [47.378645, 8.540122], [47.381156, 8.569853], [47.368855, 8.548036], [47.400316, 8.543723], [47.395177, 8.489119], [47.381255, 8.538176], [47.363109, 8.533698], [47.366611, 8.544719], [47.383316, 8.530405], [47.365778, 8.545271], [47.395854, 8.526714], [47.379592, 8.5218], [47.378718, 8.529662], [47.376797, 8.51389], [47.378478, 8.510084], [47.377228, 8.538742], [47.416509, 8.511087], [47.392887, 8.522772], [47.381128, 8.487994], [47.360651, 8.566624], [47.356753, 8.55116], [47.364559, 8.566217], [47.36249, 8.504639], [47.390715, 8.50878], [47.419059, 8.545875], [47.373425, 8.534823], [47.363403, 8.534922], [47.385184, 8.500881], [47.38971, 8.511422], [47.407623, 8.584977], [47.370221, 8.518736], [47.376144, 8.518287], [47.379398, 8.528086], [47.369096, 8.541699], [47.391048, 8.536524], [47.38724, 8.486525], [47.414392, 8.554219], [47.383243, 8.499637], [47.389373, 8.481388], [47.352304, 8.573053], [47.361441, 8.505254], [47.368208, 8.496134], [47.406611, 8.588175], [47.380082, 8.520419], [47.411168, 8.526258], [47.370069, 8.468432], [47.380623, 8.517424], [47.382512, 8.514456], [47.391394, 8.537034], [47.374544, 8.541004], [47.381896, 8.509146], [47.370576, 8.517287], [47.364061, 8.556409], [47.377692, 8.516305], [47.376536, 8.540608], [47.396668, 8.523445], [47.39553, 8.482899], [47.368865, 8.501099], [47.378473, 8.526995], [47.344775, 8.519557], [47.377264, 8.519687], [47.383747, 8.539075], [47.380966, 8.511498], [47.377442, 8.538932], [47.391952, 8.517931], [47.340839, 8.5192], [47.374573, 8.538925], [47.368288, 8.524351], [47.381932, 8.514034], [47.376499, 8.492472], [47.398601, 8.538693], [47.383777, 8.531116], [47.377061, 8.544009], [47.374236, 8.516474], [47.387336, 8.525745], [47.38651, 8.52553], [47.364293, 8.531246], [47.378597, 8.533897], [47.387367, 8.518633], [47.367999, 8.536936], [47.379955, 8.537672], [47.41737, 8.54568], [47.370161, 8.548791], [47.415754, 8.546362], [47.364772, 8.537651], [47.378518, 8.527009], [47.396684, 8.529314], [47.421597, 8.53824], [47.405047, 8.478886], [47.414098, 8.55298], [47.393338, 8.495467], [47.399457, 8.544248], [47.358221, 8.571418], [47.366226, 8.548312], [47.37758, 8.511853], [47.382958, 8.532185], [47.363805, 8.531448], [47.362501, 8.535221], [47.371334, 8.530451], [47.365247, 8.50905], [47.371855, 8.55501], [47.402445, 8.535593], [47.382345, 8.543668], [47.369823, 8.510254], [47.347002, 8.564165], [47.381285, 8.571392], [47.365277, 8.564564], [47.365199, 8.545617], [47.414562, 8.570006], [47.38722, 8.518895], [47.359861, 8.549821], [47.372227, 8.547232], [47.386545, 8.503491], [47.420685, 8.502027], [47.37233, 8.538283], [47.375978, 8.527394], [47.393073, 8.492972], [47.37433, 8.541794], [47.382863, 8.499921], [47.385799, 8.517953], [47.416612, 8.53558], [47.416639, 8.535607], [47.3542, 8.523653], [47.373501, 8.536308], [47.36625, 8.537311], [47.384909, 8.531338], [47.354207, 8.509371], [47.370864, 8.523066], [47.353618, 8.525203], [47.333607, 8.534455], [47.395357, 8.476127], [47.412788, 8.481303], [47.366375, 8.53452], [47.404722, 8.549512], [47.356244, 8.556444], [47.373253, 8.514799], [47.381416, 8.542033], [47.372937, 8.531225], [47.399426, 8.517076], [47.377043, 8.544022], [47.377265, 8.538716], [47.369898, 8.543384], [47.367997, 8.540842], [47.343683, 8.535218], [47.362343, 8.559114], [47.367458, 8.541744], [47.370456, 8.522422], [47.374583, 8.538833], [47.416172, 8.517349], [47.387859, 8.485623], [47.362501, 8.534307], [47.404118, 8.562709], [47.394251, 8.524999], [47.338286, 8.539011], [47.383524, 8.549163], [47.419944, 8.500475], [47.409257, 8.544743], [47.373332, 8.536993], [47.379257, 8.527779], [47.373509, 8.546769], [47.412696, 8.537765], [47.378531, 8.519818], [47.372881, 8.533369], [47.387887, 8.550128], [47.368447, 8.541844], [47.377562, 8.518647], [47.400174, 8.494437], [47.36127, 8.563103], [47.361434, 8.517631], [47.373878, 8.538262], [47.337079, 8.520103], [47.365542, 8.553978], [47.386827, 8.528265], [47.383732, 8.540611], [47.360688, 8.524302], [47.41732, 8.507009], [47.330483, 8.515576], [47.397086, 8.530607], [47.362496, 8.568398], [47.370154, 8.513346], [47.374527, 8.539971], [47.424574, 8.553253], [47.37414, 8.540969], [47.387806, 8.550139], [47.379703, 8.521484], [47.387809, 8.536589], [47.377465, 8.54321], [47.371532, 8.522881], [47.383473, 8.515641], [47.370879, 8.554606], [47.412269, 8.523948], [47.392431, 8.532923], [47.382035, 8.528935], [47.384377, 8.548399], [47.369821, 8.531638], [47.377056, 8.520821], [47.409778, 8.541017], [47.363742, 8.575269], [47.39888, 8.590432], [47.374319, 8.522063], [47.334557, 8.529989], [47.391088, 8.522775], [47.422592, 8.550812], [47.372968, 8.530855], [47.39137, 8.54522], [47.38728, 8.533585], [47.370876, 8.548343], [47.423075, 8.494507], [47.392858, 8.530613], [47.395509, 8.529979], [47.352832, 8.524698], [47.360813, 8.552701], [47.362975, 8.565442], [47.369723, 8.54003], [47.39974, 8.516129], [47.414345, 8.551594], [47.370188, 8.548805], [47.41014, 8.537977], [47.372499, 8.545093], [47.38673, 8.523177], [47.36442, 8.547123], [47.37223, 8.540373], [47.381046, 8.541218], [47.368529, 8.501344], [47.376911, 8.535186], [47.34925, 8.534353], [47.378306, 8.530395], [47.368365, 8.490828], [47.387836, 8.527093], [47.377327, 8.529342], [47.38284, 8.551082], [47.375074, 8.528806], [47.387438, 8.529218], [47.367989, 8.540762], [47.366543, 8.540521], [47.388676, 8.546568], [47.426706, 8.555087], [47.405275, 8.495373], [47.3672, 8.533835], [47.417071, 8.554328], [47.397682, 8.533163], [47.367582, 8.496744], [47.3962, 8.520548], [47.3689, 8.529103], [47.366889, 8.541971], [47.40601, 8.557793], [47.369134, 8.503077], [47.369458, 8.526268], [47.37917, 8.495583], [47.377143, 8.541998], [47.369568, 8.467058], [47.404884, 8.585487], [47.430571, 8.549839], [47.392294, 8.516932], [47.387408, 8.48784], [47.383154, 8.514151], [47.37786, 8.5079], [47.382555, 8.514669], [47.377182, 8.551997], [47.398865, 8.533678], [47.379136, 8.538662], [47.374616, 8.545693], [47.384323, 8.525697], [47.413244, 8.538823], [47.354804, 8.52352], [47.385382, 8.53642], [47.404267, 8.564924], [47.35367, 8.558376], [47.398969, 8.53307], [47.361824, 8.547678], [47.388335, 8.490759], [47.394211, 8.493405], [47.380825, 8.518898], [47.364633, 8.554886], [47.419384, 8.547644], [47.364031, 8.546413], [47.368315, 8.524391], [47.375652, 8.516992], [47.379078, 8.495714], [47.376975, 8.539849], [47.3824, 8.548225], [47.35343, 8.52704], [47.377511, 8.521162], [47.379728, 8.52751], [47.36981, 8.52323], [47.411445, 8.525482], [47.376793, 8.538137], [47.38571, 8.517871], [47.386073, 8.521336], [47.38531, 8.51728], [47.38214, 8.541545], [47.386948, 8.546757], [47.377638, 8.505617], [47.366104, 8.540379], [47.408535, 8.542131], [47.373824, 8.536368], [47.393072, 8.519332], [47.399274, 8.505335], [47.377826, 8.518294], [47.394808, 8.527977], [47.367642, 8.49517], [47.419808, 8.482872], [47.385184, 8.530787], [47.383396, 8.483801], [47.412924, 8.552492], [47.371067, 8.548109], [47.367486, 8.496411], [47.382121, 8.545385], [47.398704, 8.506635], [47.362293, 8.532503], [47.415376, 8.553802], [47.396182, 8.527237], [47.368568, 8.529004], [47.364887, 8.56674], [47.378394, 8.555995], [47.380418, 8.534345], [47.40416, 8.574051], [47.386343, 8.521288], [47.418742, 8.506984], [47.366877, 8.555383], [47.371594, 8.54759], [47.391008, 8.538881], [47.397963, 8.474402], [47.416754, 8.506944], [47.402444, 8.499066], [47.419475, 8.506482], [47.343678, 8.530003], [47.420707, 8.50261], [47.416216, 8.547883], [47.391943, 8.517892], [47.385202, 8.500855], [47.365027, 8.502677], [47.371925, 8.522121], [47.422668, 8.551357], [47.364186, 8.562979], [47.368324, 8.524391], [47.410375, 8.536869], [47.412141, 8.542219], [47.369068, 8.513139], [47.398749, 8.505669], [47.418451, 8.508224], [47.377769, 8.537747], [47.374261, 8.486442], [47.378427, 8.500084], [47.366636, 8.510574], [47.343371, 8.532035], [47.361674, 8.517914], [47.36524, 8.494129], [47.375744, 8.519762], [47.377176, 8.559187], [47.366816, 8.543002], [47.426592, 8.554819], [47.371691, 8.558052], [47.372682, 8.529617], [47.354456, 8.574581], [47.384093, 8.485324], [47.39482, 8.525739], [47.37443, 8.541664], [47.3687, 8.501427], [47.363751, 8.520008], [47.392496, 8.502921], [47.371824, 8.51947], [47.336383, 8.530026], [47.429046, 8.546639], [47.400719, 8.548647], [47.363386, 8.557375], [47.416269, 8.545127], [47.355887, 8.599855], [47.407731, 8.584065], [47.395003, 8.540632], [47.373533, 8.525252], [47.362122, 8.547552], [47.391056, 8.522311], [47.366891, 8.558587], [47.367535, 8.508672], [47.368114, 8.541771], [47.373831, 8.531786], [47.369531, 8.557213], [47.394685, 8.525776], [47.40631, 8.583146], [47.380666, 8.517571], [47.359235, 8.572578], [47.386933, 8.528413], [47.376319, 8.543557], [47.366921, 8.541468], [47.415483, 8.54645], [47.378581, 8.52701], [47.377787, 8.522491], [47.400857, 8.537031], [47.405251, 8.555286], [47.403415, 8.570232], [47.362505, 8.533884], [47.373379, 8.552725], [47.379587, 8.521416], [47.371214, 8.523152], [47.368861, 8.53988], [47.386426, 8.518257], [47.36009, 8.5229], [47.374609, 8.515978], [47.379616, 8.537401], [47.355609, 8.556934], [47.399141, 8.542467], [47.391396, 8.514874], [47.379575, 8.515999], [47.36509, 8.553267], [47.369851, 8.509195], [47.41024, 8.572325], [47.392528, 8.512075], [47.348585, 8.534313], [47.367602, 8.546434], [47.409197, 8.547246], [47.392388, 8.491156], [47.375113, 8.518928], [47.384594, 8.548284], [47.378987, 8.495831], [47.360889, 8.531587], [47.395697, 8.522432], [47.373529, 8.542784], [47.402941, 8.490915], [47.402396, 8.49937], [47.378226, 8.534088], [47.383787, 8.540493], [47.376865, 8.559671], [47.376216, 8.543952], [47.361795, 8.526111], [47.375903, 8.541005], [47.414026, 8.525535], [47.377725, 8.51179], [47.376729, 8.497866], [47.358288, 8.534618], [47.395161, 8.476905], [47.42589, 8.493608], [47.343772, 8.535259], [47.367288, 8.49936], [47.374777, 8.549536], [47.366557, 8.544718], [47.369041, 8.53803], [47.384866, 8.531986], [47.412245, 8.553008], [47.374953, 8.519613], [47.37773, 8.537997], [47.356235, 8.556404], [47.386202, 8.518173], [47.405541, 8.553265], [47.404552, 8.533476], [47.374288, 8.517706], [47.372293, 8.534681], [47.392319, 8.502534], [47.369129, 8.527731], [47.385181, 8.50798], [47.361738, 8.503287], [47.385047, 8.530917], [47.387976, 8.486659], [47.373233, 8.536965], [47.388857, 8.515127], [47.391952, 8.517865], [47.363775, 8.535565], [47.351366, 8.53032], [47.390803, 8.539618], [47.370644, 8.516785], [47.359963, 8.534414], [47.381157, 8.518057], [47.376985, 8.542604], [47.414215, 8.518873], [47.377247, 8.538663], [47.383066, 8.513977], [47.41058, 8.550283], [47.41058, 8.550296], [47.364519, 8.547178], [47.367158, 8.540163], [47.372175, 8.530944], [47.372927, 8.531291], [47.386157, 8.518158], [47.37295, 8.519387], [47.419079, 8.548539], [47.359764, 8.598947], [47.38338, 8.539783], [47.392432, 8.528128], [47.388997, 8.481129], [47.385788, 8.532521], [47.391427, 8.5231], [47.380679, 8.503626], [47.416129, 8.510298], [47.419604, 8.548179], [47.385538, 8.557641], [47.408882, 8.572283], [47.393345, 8.473809], [47.376051, 8.538651], [47.367419, 8.544921], [47.421065, 8.501836], [47.3956, 8.491988], [47.353625, 8.511993], [47.367165, 8.544214], [47.380109, 8.522327], [47.35982, 8.534305], [47.365323, 8.560765], [47.379627, 8.527707], [47.375088, 8.496337], [47.373663, 8.534378], [47.38665, 8.520274], [47.386307, 8.543207], [47.381892, 8.516324], [47.389047, 8.515899], [47.386915, 8.535074], [47.408692, 8.550177], [47.42132, 8.502411], [47.359613, 8.534314], [47.412823, 8.522462], [47.379144, 8.559401], [47.373036, 8.547302], [47.36947, 8.525911], [47.369142, 8.52544], [47.386055, 8.533745], [47.423338, 8.551809], [47.381816, 8.529222], [47.378601, 8.540081], [47.37304, 8.53655], [47.391042, 8.522894], [47.365486, 8.552269], [47.353075, 8.512128], [47.392074, 8.497906], [47.374083, 8.498025], [47.363439, 8.533969], [47.386453, 8.541078], [47.391394, 8.537047], [47.385263, 8.536696], [47.388686, 8.546542], [47.387394, 8.497243], [47.38597, 8.517943], [47.3911, 8.522405], [47.409855, 8.549857], [47.35427, 8.55308], [47.386237, 8.535392], [47.36733, 8.530594], [47.368266, 8.523873], [47.374814, 8.525834], [47.336239, 8.53005], [47.369401, 8.513158], [47.382474, 8.530003], [47.369938, 8.516307], [47.367564, 8.518126], [47.394073, 8.529632], [47.368141, 8.541811], [47.382639, 8.475058], [47.377994, 8.53011], [47.370097, 8.511756], [47.405981, 8.481011], [47.40309, 8.486426], [47.36672, 8.533308], [47.390044, 8.541815], [47.356391, 8.535479], [47.389114, 8.477158], [47.400042, 8.548897], [47.429926, 8.542959], [47.412569, 8.546363], [47.36382, 8.554299], [47.402386, 8.546429], [47.371251, 8.5231], [47.354461, 8.523619], [47.380585, 8.519489], [47.387778, 8.529397], [47.39262, 8.475411], [47.380475, 8.519805], [47.3795, 8.558826], [47.366069, 8.533679], [47.363627, 8.535085], [47.369448, 8.532054], [47.353322, 8.525131], [47.35873, 8.517299], [47.411201, 8.546506], [47.370769, 8.566825], [47.404329, 8.556685], [47.376458, 8.55712], [47.369406, 8.505757], [47.425212, 8.538381], [47.383343, 8.530379], [47.355725, 8.560722], [47.378734, 8.542163], [47.376169, 8.521359], [47.399996, 8.54524], [47.397946, 8.480244], [47.402925, 8.536119], [47.382897, 8.530952], [47.371977, 8.556403], [47.387468, 8.518437], [47.374805, 8.543843], [47.391476, 8.519737], [47.414098, 8.522647], [47.36187, 8.515257], [47.360866, 8.549114], [47.376399, 8.525628], [47.390034, 8.512382], [47.367708, 8.501645], [47.366566, 8.545685], [47.375263, 8.490911], [47.361011, 8.548098], [47.359166, 8.521636], [47.3764, 8.540764], [47.3642, 8.556942], [47.408008, 8.505298], [47.394268, 8.495009], [47.377054, 8.541903], [47.377229, 8.526373], [47.372225, 8.518989], [47.362176, 8.547553], [47.404294, 8.576849], [47.362636, 8.531424], [47.374339, 8.517972], [47.386618, 8.473705], [47.376965, 8.526686], [47.422569, 8.510414], [47.382731, 8.529466], [47.41443, 8.51897], [47.398783, 8.540366], [47.342953, 8.519163], [47.380929, 8.511577], [47.380068, 8.514261], [47.36716, 8.515166], [47.369902, 8.501729], [47.375409, 8.533315], [47.373718, 8.53426], [47.373736, 8.537121], [47.394298, 8.520059], [47.367921, 8.540364], [47.39913, 8.584211], [47.371801, 8.601539], [47.391703, 8.513767], [47.378889, 8.527718], [47.414687, 8.571055], [47.392549, 8.524315], [47.41182, 8.525834], [47.41468, 8.519108], [47.42598, 8.493557], [47.359705, 8.549196], [47.367201, 8.495148], [47.379509, 8.525864], [47.387945, 8.485148], [47.419718, 8.48287], [47.39801, 8.474231], [47.3932, 8.530647], [47.356321, 8.598766], [47.34486, 8.533442], [47.368959, 8.541828], [47.378941, 8.525044], [47.366952, 8.534386], [47.362886, 8.563454], [47.406354, 8.537859], [47.372719, 8.522905], [47.376767, 8.559602], [47.35761, 8.509016], [47.3793, 8.542254], [47.382504, 8.529726], [47.372732, 8.534875], [47.370689, 8.516746], [47.406847, 8.536121], [47.364028, 8.551417], [47.38633, 8.496507], [47.374175, 8.542982], [47.385162, 8.508059], [47.386779, 8.497562], [47.412108, 8.546658], [47.330349, 8.515481], [47.38254, 8.540163], [47.410523, 8.545883], [47.361387, 8.603086], [47.377485, 8.542018], [47.375976, 8.540822], [47.363172, 8.549652], [47.391083, 8.522378], [47.419589, 8.547913], [47.378786, 8.542389], [47.415637, 8.529305], [47.351256, 8.57618], [47.388598, 8.520672], [47.405179, 8.481128], [47.391389, 8.478235], [47.345003, 8.533564], [47.36379, 8.551796], [47.392207, 8.50983], [47.42553, 8.55766], [47.403589, 8.53445], [47.405921, 8.568762], [47.373868, 8.536501], [47.408998, 8.550104], [47.369437, 8.541732], [47.360323, 8.550427], [47.361909, 8.56027], [47.387023, 8.547355], [47.388336, 8.485606], [47.398742, 8.590668], [47.379819, 8.521645], [47.394799, 8.536535], [47.392831, 8.479972], [47.372543, 8.517631], [47.407829, 8.554797], [47.378683, 8.526668], [47.377063, 8.526741], [47.398892, 8.533652], [47.393399, 8.524783], [47.401052, 8.588227], [47.406737, 8.538212], [47.403968, 8.506383], [47.38712, 8.490748], [47.369333, 8.537533], [47.370179, 8.548805], [47.368855, 8.514803], [47.373826, 8.518054], [47.375568, 8.527902], [47.38772, 8.498892], [47.364955, 8.547611], [47.410348, 8.542593], [47.361084, 8.535695], [47.370391, 8.556635], [47.372229, 8.535752], [47.358559, 8.555142], [47.383128, 8.474617], [47.378493, 8.531564], [47.364423, 8.546805], [47.373059, 8.495899], [47.377873, 8.541854], [47.393361, 8.547725], [47.407875, 8.550889], [47.396392, 8.486082], [47.40713, 8.586675], [47.364851, 8.566673], [47.404663, 8.569504], [47.381028, 8.491978], [47.393796, 8.529348], [47.383433, 8.538923], [47.389592, 8.512519], [47.374903, 8.561695], [47.369453, 8.525791], [47.358907, 8.548888], [47.404062, 8.533877], [47.374376, 8.502334], [47.425825, 8.547619], [47.393109, 8.474056], [47.428346, 8.545431], [47.392516, 8.489848], [47.381087, 8.503289], [47.391547, 8.542654], [47.356906, 8.532366], [47.358582, 8.55186], [47.403137, 8.49798], [47.37761, 8.506729], [47.424466, 8.504687], [47.37025, 8.563795], [47.376968, 8.543358], [47.377978, 8.508776], [47.383389, 8.548246], [47.381031, 8.532331], [47.367669, 8.549812], [47.404128, 8.490938], [47.335115, 8.541327], [47.372954, 8.531344], [47.414188, 8.518872], [47.389664, 8.511501], [47.369236, 8.504761], [47.369726, 8.525492], [47.377476, 8.544878], [47.389254, 8.5274], [47.391629, 8.538814], [47.401996, 8.497918], [47.387284, 8.51883], [47.375101, 8.553251], [47.358994, 8.53221], [47.378581, 8.542173], [47.41977, 8.556108], [47.369708, 8.555627], [47.364453, 8.550248], [47.407987, 8.565387], [47.378538, 8.541907], [47.37302, 8.528155], [47.395569, 8.5454], [47.369619, 8.539618], [47.357597, 8.525827], [47.408719, 8.549171], [47.389249, 8.54409], [47.378022, 8.528085], [47.419518, 8.556155], [47.365139, 8.563065], [47.410549, 8.547844], [47.41193, 8.545541], [47.365414, 8.539187], [47.360072, 8.568862], [47.351946, 8.576513], [47.372368, 8.519044], [47.374031, 8.541112], [47.356982, 8.53479], [47.395323, 8.483862], [47.382739, 8.580759], [47.384907, 8.498677], [47.387023, 8.489554], [47.394816, 8.536654], [47.405811, 8.590807], [47.363251, 8.567526], [47.364615, 8.508349], [47.413184, 8.544136], [47.410329, 8.569598], [47.378822, 8.542364], [47.367511, 8.537138], [47.372954, 8.531344], [47.376871, 8.543184], [47.406754, 8.586508], [47.405552, 8.480764], [47.351957, 8.559756], [47.37557, 8.526737], [47.371725, 8.536708], [47.369859, 8.54186], [47.396937, 8.512945], [47.387346, 8.518885], [47.403689, 8.485855], [47.379031, 8.530741], [47.37902, 8.545188], [47.391294, 8.536237], [47.366461, 8.545391], [47.407154, 8.586], [47.378842, 8.499934], [47.370206, 8.548806], [47.39699, 8.530234], [47.386447, 8.49745], [47.383064, 8.500561], [47.417164, 8.541846], [47.39983, 8.544707], [47.372669, 8.534861], [47.379242, 8.537883], [47.377128, 8.520796], [47.371192, 8.535956], [47.38586, 8.498723], [47.390441, 8.522722], [47.339869, 8.530442], [47.409734, 8.544713], [47.369562, 8.541801], [47.36799, 8.540643], [47.38279, 8.529944], [47.363513, 8.50785], [47.373026, 8.533266], [47.380511, 8.519766], [47.361076, 8.551541], [47.393877, 8.538847], [47.34322, 8.519433], [47.378865, 8.524566], [47.349388, 8.533998], [47.376597, 8.541801], [47.378836, 8.542761], [47.367973, 8.540563], [47.370783, 8.543045], [47.369284, 8.541782], [47.381451, 8.531664], [47.370152, 8.548804], [47.421635, 8.546472], [47.409558, 8.537634], [47.376792, 8.559788], [47.41222, 8.53965], [47.416267, 8.547261], [47.35412, 8.574944], [47.369122, 8.540825], [47.356494, 8.532225], [47.357247, 8.521902], [47.361507, 8.556303], [47.410613, 8.486004], [47.404191, 8.56165], [47.402307, 8.5528], [47.341353, 8.530525], [47.369044, 8.541473], [47.408897, 8.54569], [47.380161, 8.520593], [47.381379, 8.561726], [47.372728, 8.550301], [47.37581, 8.535561], [47.407802, 8.54727], [47.35451, 8.558009], [47.414793, 8.51956], [47.421056, 8.501862], [47.414692, 8.51981], [47.37326, 8.535072], [47.388162, 8.524994], [47.384585, 8.531265], [47.377148, 8.544315], [47.343252, 8.534137], [47.383437, 8.539493], [47.353584, 8.531662], [47.413269, 8.531416], [47.334748, 8.529808], [47.40544, 8.539417], [47.365361, 8.530474], [47.361336, 8.547972], [47.334193, 8.531397], [47.36205, 8.54759], [47.374414, 8.541504], [47.385859, 8.532602], [47.405001, 8.491922], [47.377341, 8.546743], [47.402764, 8.535149], [47.366834, 8.545823], [47.378181, 8.510118], [47.360743, 8.576489], [47.394707, 8.532903], [47.379938, 8.514682], [47.366288, 8.54082], [47.36158, 8.547832], [47.396607, 8.528889], [47.395877, 8.510765], [47.377073, 8.528516], [47.367961, 8.538948], [47.362826, 8.552981], [47.366181, 8.529418], [47.366506, 8.551853], [47.410369, 8.537531], [47.365803, 8.537023], [47.37476, 8.527766], [47.366267, 8.532703], [47.371116, 8.545792], [47.376959, 8.543371], [47.385383, 8.530659], [47.366473, 8.531781], [47.384268, 8.507538], [47.398967, 8.505395], [47.386437, 8.534243], [47.383047, 8.51399], [47.376266, 8.489514], [47.37918, 8.527406], [47.3682, 8.546023], [47.367415, 8.544312], [47.409773, 8.575893], [47.37388, 8.544632], [47.36861, 8.524635], [47.373335, 8.534769], [47.378416, 8.509963], [47.36931, 8.525762], [47.36034, 8.547634], [47.386998, 8.474401], [47.366705, 8.542404], [47.387733, 8.471727], [47.370119, 8.519065], [47.376451, 8.544778], [47.386287, 8.522532], [47.359434, 8.551123], [47.389809, 8.539108], [47.381312, 8.480515], [47.367017, 8.516036], [47.403063, 8.486359], [47.383933, 8.529901], [47.373137, 8.532964], [47.36993, 8.541901], [47.377431, 8.499826], [47.367936, 8.536935], [47.379997, 8.530403], [47.389006, 8.495037], [47.407558, 8.563245], [47.36855, 8.499054], [47.377052, 8.544048], [47.367527, 8.559819], [47.367645, 8.495832], [47.397395, 8.532124], [47.398285, 8.536898], [47.392379, 8.49117], [47.36875, 8.493007], [47.368579, 8.544018], [47.414375, 8.55129], [47.384844, 8.500649], [47.383216, 8.559632], [47.375098, 8.522424], [47.407164, 8.585894], [47.373525, 8.531859], [47.358909, 8.516362], [47.390969, 8.522985], [47.390034, 8.512343], [47.398187, 8.473546], [47.378152, 8.527677], [47.36193, 8.554445], [47.375713, 8.496799], [47.381875, 8.516297], [47.371148, 8.575837], [47.382939, 8.575109], [47.353634, 8.553768], [47.387209, 8.51912], [47.374787, 8.547577], [47.384445, 8.531871], [47.35974, 8.579698], [47.374404, 8.512928], [47.392412, 8.476573], [47.370494, 8.519364], [47.361096, 8.547636], [47.378858, 8.526234], [47.368533, 8.53659], [47.379164, 8.5224], [47.369862, 8.502178], [47.37754, 8.543767], [47.359635, 8.522414], [47.413507, 8.539504], [47.408923, 8.495763], [47.371901, 8.557739], [47.375734, 8.544538], [47.363472, 8.530501], [47.380127, 8.505932], [47.37696, 8.543331], [47.368409, 8.493847], [47.354758, 8.556638], [47.353564, 8.571994], [47.351767, 8.566304], [47.412042, 8.523202], [47.37217, 8.536188], [47.378885, 8.532883], [47.396254, 8.53577], [47.428059, 8.536929], [47.402085, 8.498926], [47.369108, 8.564671], [47.37083, 8.55957], [47.409818, 8.537798], [47.36952, 8.553743], [47.372813, 8.519517], [47.405294, 8.569371], [47.374366, 8.522726], [47.406336, 8.553865], [47.379987, 8.515199], [47.409364, 8.54289], [47.393654, 8.472385], [47.366001, 8.549208], [47.392022, 8.469836], [47.361035, 8.55395], [47.368948, 8.502809], [47.371133, 8.554333], [47.368619, 8.564939], [47.392576, 8.524249], [47.386291, 8.528797], [47.41966, 8.504948], [47.361498, 8.532804], [47.362059, 8.54755], [47.384842, 8.531747], [47.387951, 8.52446], [47.36923, 8.505356], [47.357435, 8.51436], [47.369284, 8.525668], [47.377865, 8.519858], [47.38648, 8.485967], [47.367111, 8.544213], [47.366658, 8.544495], [47.378464, 8.526995], [47.356102, 8.555303], [47.421274, 8.549393], [47.426347, 8.543852], [47.366687, 8.542404], [47.354442, 8.511216], [47.376522, 8.543918], [47.366917, 8.492759], [47.382227, 8.531415], [47.381412, 8.482424], [47.377236, 8.538874], [47.384492, 8.543024], [47.391931, 8.518209], [47.361047, 8.5712], [47.367327, 8.541344], [47.397403, 8.532243], [47.373532, 8.518684], [47.405676, 8.591692], [47.377691, 8.511538], [47.358396, 8.583773], [47.372581, 8.494102], [47.378827, 8.510276], [47.426362, 8.54604], [47.383687, 8.540584], [47.352616, 8.526599], [47.397986, 8.586226], [47.362306, 8.547145], [47.37606, 8.535818], [47.373047, 8.532922], [47.375409, 8.528534], [47.362716, 8.548464], [47.426733, 8.506601], [47.391055, 8.522496], [47.371335, 8.536065], [47.385676, 8.493249], [47.327221, 8.52964], [47.420757, 8.547089], [47.429144, 8.541975], [47.391538, 8.542667], [47.4034, 8.483902], [47.377199, 8.526691], [47.38094, 8.535335], [47.37301, 8.529214], [47.368457, 8.556687], [47.366555, 8.542083], [47.391071, 8.522695], [47.367599, 8.565394], [47.358664, 8.517602], [47.390826, 8.521935], [47.388056, 8.519932], [47.404735, 8.569519], [47.361238, 8.549704], [47.415056, 8.515458], [47.420326, 8.549771], [47.37277, 8.535525], [47.377, 8.541889], [47.36942, 8.540739], [47.398105, 8.594178], [47.361243, 8.554762], [47.38073, 8.491112], [47.387588, 8.475856], [47.409238, 8.544822], [47.403899, 8.56122], [47.374633, 8.549533], [47.344042, 8.531467], [47.377594, 8.543768], [47.378039, 8.52149], [47.378306, 8.530355], [47.344287, 8.535032], [47.371394, 8.547745], [47.349326, 8.570342], [47.382433, 8.552292], [47.355885, 8.53572], [47.397329, 8.594346], [47.376567, 8.518229], [47.398033, 8.50331], [47.387003, 8.525725], [47.397699, 8.533256], [47.427965, 8.545768], [47.390714, 8.508807], [47.369697, 8.508411], [47.335063, 8.519321], [47.375836, 8.545175], [47.396182, 8.544313], [47.384575, 8.480804], [47.368446, 8.537131], [47.370368, 8.514529], [47.37181, 8.601566], [47.377866, 8.509144], [47.42067, 8.502716], [47.369648, 8.529953], [47.409273, 8.52879], [47.383415, 8.513123], [47.371375, 8.54879], [47.415655, 8.512939], [47.404154, 8.563637], [47.365099, 8.554207], [47.413658, 8.528376], [47.40255, 8.54153], [47.373183, 8.503926], [47.360841, 8.553562], [47.368402, 8.546477], [47.371588, 8.535977], [47.378665, 8.53999], [47.368828, 8.539615], [47.365741, 8.520698], [47.362751, 8.548597], [47.372058, 8.538529], [47.364426, 8.557688], [47.368434, 8.512623], [47.404596, 8.571755], [47.397035, 8.514895], [47.397769, 8.533509], [47.380121, 8.501734], [47.373673, 8.530459], [47.354299, 8.575981], [47.370774, 8.525037], [47.38383, 8.526442], [47.387023, 8.518852], [47.38558, 8.520239], [47.382549, 8.52978], [47.378067, 8.511731], [47.36903, 8.541062], [47.382684, 8.530723], [47.381629, 8.513657], [47.375587, 8.526883], [47.416314, 8.545115], [47.371733, 8.515721], [47.430693, 8.541769], [47.421275, 8.502476], [47.409194, 8.539945], [47.392421, 8.492455], [47.37302, 8.532921], [47.369233, 8.505078], [47.369177, 8.525521], [47.420086, 8.503605], [47.391371, 8.537511], [47.366865, 8.53122], [47.425953, 8.493609], [47.373451, 8.53489], [47.378795, 8.530961], [47.380046, 8.536655], [47.353188, 8.525036], [47.36561, 8.535589], [47.390845, 8.523777], [47.374524, 8.539322], [47.385042, 8.541883], [47.376338, 8.559329], [47.381187, 8.53199], [47.408841, 8.570056], [47.399973, 8.544789], [47.3743, 8.524989], [47.392572, 8.538926], [47.408827, 8.546444], [47.375247, 8.51799], [47.371312, 8.52522], [47.376301, 8.54353], [47.419158, 8.547732], [47.387927, 8.492009], [47.417787, 8.509085], [47.402929, 8.57576], [47.39262, 8.475398], [47.401152, 8.544774], [47.364632, 8.504589], [47.366444, 8.532998], [47.36468, 8.547181], [47.36847, 8.538455], [47.393873, 8.504737], [47.384221, 8.543111], [47.372601, 8.547584], [47.394372, 8.522683], [47.415496, 8.544184], [47.364519, 8.532985], [47.36455, 8.566257], [47.404796, 8.594283], [47.369637, 8.523451], [47.388253, 8.49775], [47.406878, 8.552631], [47.380296, 8.496387], [47.412132, 8.550687], [47.411424, 8.546657], [47.409305, 8.572292], [47.373784, 8.531997], [47.385771, 8.526733], [47.408341, 8.544552], [47.415899, 8.54622], [47.371844, 8.530739], [47.40688, 8.481081], [47.366676, 8.541636], [47.377368, 8.527846], [47.361717, 8.54851], [47.424259, 8.540138], [47.378391, 8.557253], [47.356966, 8.535517], [47.372015, 8.516349], [47.371444, 8.547229], [47.380447, 8.54833], [47.40875, 8.503829], [47.396804, 8.541332], [47.400081, 8.501642], [47.391334, 8.535814], [47.370996, 8.564698], [47.371332, 8.536435], [47.422497, 8.539067], [47.414573, 8.559643], [47.375732, 8.527667], [47.424462, 8.552747], [47.409359, 8.572254], [47.351633, 8.560689], [47.381416, 8.534445], [47.383628, 8.539218], [47.371581, 8.518578], [47.424756, 8.553044], [47.371046, 8.536178], [47.327197, 8.517825], [47.391418, 8.513417], [47.410979, 8.545243], [47.382721, 8.500673], [47.366362, 8.537842], [47.344465, 8.530549], [47.424673, 8.495811], [47.3744, 8.542974], [47.371339, 8.486199], [47.3737, 8.534273], [47.377469, 8.538932], [47.370453, 8.524739], [47.418503, 8.54198], [47.388605, 8.480817], [47.37714, 8.498112], [47.395534, 8.532033], [47.387272, 8.500737], [47.386769, 8.518065], [47.375305, 8.485297], [47.370543, 8.469765], [47.369892, 8.523125], [47.412287, 8.483997], [47.372464, 8.559949], [47.370543, 8.469765], [47.387229, 8.518922], [47.412532, 8.51697], [47.375982, 8.52501], [47.370717, 8.522427], [47.384974, 8.531035], [47.372427, 8.521363], [47.390644, 8.491943], [47.393508, 8.500491], [47.391374, 8.537193], [47.38321, 8.545395], [47.420305, 8.503318], [47.425587, 8.553698], [47.396413, 8.540834], [47.401909, 8.585225], [47.371825, 8.473259], [47.373754, 8.536168], [47.364913, 8.554759], [47.36536, 8.531599], [47.385293, 8.517187], [47.375347, 8.484623], [47.367648, 8.538756], [47.3482, 8.533193], [47.39052, 8.489755], [47.370516, 8.508282], [47.378745, 8.53149], [47.359543, 8.549206], [47.377242, 8.540119], [47.368921, 8.524999], [47.379847, 8.511859], [47.394225, 8.489881], [47.387852, 8.529252], [47.424861, 8.537406], [47.409292, 8.544797], [47.356478, 8.521489], [47.373789, 8.542895], [47.348404, 8.532509], [47.346338, 8.533142], [47.382481, 8.548187], [47.377019, 8.539956], [47.393379, 8.499773], [47.35614, 8.509489], [47.354651, 8.556477], [47.366174, 8.533946], [47.41922, 8.547839], [47.402182, 8.496199], [47.393479, 8.474951], [47.341715, 8.536858], [47.418535, 8.54707], [47.397416, 8.531873], [47.413227, 8.53873], [47.38744, 8.535668], [47.358733, 8.521747], [47.380274, 8.512398], [47.352124, 8.570282], [47.375123, 8.524569], [47.410003, 8.543778], [47.365964, 8.53234], [47.37616, 8.583916], [47.384536, 8.531701], [47.369573, 8.543536], [47.372823, 8.600939], [47.353626, 8.554615], [47.37846, 8.51015], [47.387479, 8.518172], [47.358335, 8.597909], [47.380854, 8.542419], [47.393618, 8.512826], [47.382504, 8.529713], [47.402986, 8.555093], [47.352983, 8.576204], [47.401072, 8.543725], [47.369248, 8.527508], [47.365011, 8.531354], [47.412955, 8.538035], [47.369601, 8.513838], [47.373542, 8.484336], [47.37997, 8.54832], [47.387145, 8.519251], [47.367931, 8.540205], [47.400692, 8.548633], [47.370766, 8.5485], [47.368067, 8.541108], [47.370668, 8.53531], [47.371648, 8.472858], [47.374524, 8.557119], [47.392307, 8.492056], [47.374576, 8.557332], [47.400222, 8.548822], [47.381938, 8.516219], [47.385331, 8.548379], [47.377772, 8.529801], [47.371154, 8.531413], [47.420601, 8.508241], [47.367731, 8.487373], [47.375712, 8.535506], [47.420478, 8.503056], [47.375726, 8.519682], [47.371967, 8.524386], [47.38041, 8.519962], [47.393725, 8.50231], [47.376055, 8.515279], [47.409418, 8.575342], [47.372354, 8.535834], [47.379712, 8.50701], [47.378431, 8.540952], [47.363618, 8.554772], [47.386793, 8.534714], [47.371573, 8.536533], [47.41088, 8.565727], [47.409584, 8.549984], [47.388575, 8.520287], [47.408042, 8.58264], [47.372975, 8.528207], [47.395775, 8.530329], [47.41394, 8.541316], [47.35155, 8.528987], [47.387506, 8.534398], [47.37302, 8.532882], [47.36754, 8.537893], [47.363932, 8.549271], [47.378967, 8.570137], [47.352201, 8.577948], [47.378574, 8.509503], [47.37754, 8.543767], [47.376927, 8.54488], [47.366203, 8.540315], [47.366345, 8.540503], [47.373284, 8.535482], [47.38042, 8.51987], [47.35212, 8.558687], [47.372671, 8.53837], [47.355392, 8.554295], [47.385718, 8.543659], [47.380394, 8.513989], [47.40604, 8.591276], [47.367497, 8.554535], [47.403251, 8.550051], [47.374163, 8.525185], [47.416323, 8.545129], [47.381456, 8.535929], [47.379153, 8.486538], [47.397703, 8.553552], [47.397656, 8.541601], [47.344442, 8.532957], [47.340596, 8.537325], [47.394807, 8.523315], [47.367117, 8.539791], [47.408732, 8.494037], [47.370325, 8.514316], [47.415501, 8.516951], [47.370918, 8.535421], [47.376949, 8.52074], [47.396622, 8.5302], [47.344994, 8.533551], [47.388996, 8.495156], [47.405013, 8.576931], [47.391494, 8.519724], [47.372771, 8.533552], [47.386616, 8.530538], [47.387552, 8.527683], [47.362997, 8.548298], [47.364033, 8.566696], [47.369304, 8.552785], [47.375872, 8.533775], [47.379434, 8.530021], [47.413251, 8.532423], [47.360294, 8.579153], [47.372736, 8.534425], [47.36529, 8.598723], [47.382715, 8.575024], [47.372733, 8.601016], [47.426869, 8.491772], [47.414074, 8.51948], [47.371196, 8.529892], [47.370251, 8.478207], [47.378298, 8.525574], [47.37017, 8.548805], [47.37782, 8.509276], [47.371521, 8.53636], [47.374418, 8.49586], [47.413816, 8.559773], [47.401296, 8.53435], [47.387748, 8.490906], [47.38004, 8.541939], [47.41387, 8.545846], [47.406943, 8.550578], [47.402375, 8.544786], [47.365733, 8.53591], [47.358203, 8.553824], [47.379228, 8.491201], [47.372361, 8.513099], [47.405204, 8.570284], [47.378672, 8.523079], [47.398394, 8.547154], [47.372261, 8.52659], [47.400662, 8.591239], [47.373904, 8.541123], [47.427658, 8.545908], [47.412952, 8.537373], [47.360633, 8.529146], [47.414485, 8.520787], [47.410438, 8.569547], [47.416342, 8.506724], [47.379088, 8.508361], [47.376568, 8.548554], [47.365967, 8.547115], [47.369211, 8.527653], [47.383157, 8.506046], [47.363463, 8.55032], [47.368761, 8.540924], [47.377073, 8.541851], [47.412427, 8.514808], [47.378462, 8.541456], [47.413736, 8.546665], [47.370708, 8.516694], [47.40421, 8.561545], [47.360109, 8.595922], [47.374167, 8.521014], [47.403713, 8.550643], [47.38537, 8.529109], [47.37001, 8.552363], [47.383442, 8.54932], [47.415984, 8.512402], [47.388234, 8.520134], [47.389213, 8.533665], [47.396927, 8.512998], [47.365425, 8.545568], [47.386622, 8.541293], [47.370179, 8.548805], [47.358677, 8.517152], [47.400977, 8.502084], [47.359867, 8.576867], [47.409883, 8.545074], [47.359187, 8.585577], [47.371686, 8.556688], [47.392315, 8.516601], [47.420702, 8.549023], [47.375371, 8.524905], [47.381842, 8.583323], [47.416648, 8.513529], [47.386055, 8.545997], [47.409166, 8.570832], [47.381184, 8.49169], [47.377285, 8.523223], [47.375187, 8.518691], [47.371204, 8.520385], [47.3684, 8.541036], [47.395502, 8.484952], [47.382905, 8.513841], [47.363259, 8.529226], [47.375022, 8.541835], [47.325446, 8.518465], [47.367029, 8.544331], [47.384432, 8.529394], [47.368148, 8.560666], [47.391208, 8.520513], [47.3589, 8.516402], [47.367009, 8.555677], [47.373907, 8.544619], [47.391128, 8.489237], [47.383915, 8.529874], [47.388455, 8.525318], [47.382284, 8.533059], [47.372209, 8.547245], [47.374407, 8.540299], [47.376087, 8.537725], [47.362571, 8.534455], [47.370881, 8.537512], [47.41735, 8.509673], [47.367588, 8.555398], [47.369665, 8.564736], [47.369073, 8.541195], [47.329873, 8.529761], [47.366991, 8.49946], [47.39776, 8.533496], [47.364887, 8.537772], [47.360325, 8.566882], [47.366501, 8.540228], [47.363679, 8.562333], [47.374085, 8.53636], [47.372816, 8.525952], [47.402736, 8.535188], [47.360096, 8.563607], [47.337866, 8.53011], [47.35752, 8.521616], [47.378439, 8.510441], [47.35289, 8.579273], [47.359861, 8.549768], [47.421941, 8.500461], [47.36595, 8.55731], [47.338523, 8.53011], [47.404611, 8.542368], [47.39442, 8.519518], [47.397691, 8.533229], [47.413025, 8.55044], [47.373541, 8.534918], [47.360425, 8.564925], [47.391928, 8.504009], [47.380868, 8.538155], [47.373553, 8.536521], [47.372283, 8.535753], [47.378433, 8.54074], [47.339919, 8.529953], [47.387956, 8.485837], [47.367108, 8.539778], [47.359094, 8.592181], [47.394718, 8.521286], [47.36295, 8.559603], [47.386723, 8.490965], [47.369727, 8.54338], [47.36801, 8.546099], [47.412748, 8.522739], [47.399649, 8.542941], [47.391591, 8.538985], [47.370342, 8.537368], [47.378404, 8.500574], [47.403615, 8.534504], [47.40479, 8.588546], [47.378922, 8.556337], [47.382139, 8.550061], [47.379469, 8.544324], [47.365486, 8.552269], [47.353578, 8.576071], [47.422042, 8.506136], [47.3879, 8.492048], [47.417314, 8.546819], [47.364904, 8.56678], [47.372521, 8.534288], [47.406516, 8.480531], [47.410851, 8.526517], [47.364199, 8.507559], [47.364732, 8.531427], [47.388026, 8.520316], [47.370065, 8.491841], [47.385318, 8.517466], [47.371766, 8.521879], [47.393728, 8.545057], [47.372216, 8.532375], [47.36756, 8.545242], [47.348662, 8.56191], [47.382438, 8.528201], [47.332976, 8.518339], [47.394836, 8.523991], [47.359233, 8.597188], [47.338258, 8.539129], [47.383829, 8.529462], [47.371121, 8.538735], [47.41421, 8.518422], [47.405549, 8.550509], [47.337183, 8.530082], [47.390977, 8.478068], [47.408648, 8.546294], [47.402881, 8.486594], [47.370906, 8.520498], [47.36214, 8.547539], [47.40395, 8.574325], [47.368573, 8.541834], [47.405165, 8.478716], [47.411066, 8.544609], [47.344589, 8.530763], [47.375987, 8.535882], [47.372131, 8.530891], [47.359148, 8.563918], [47.380304, 8.535044], [47.351003, 8.579961], [47.393756, 8.505741], [47.390545, 8.479106], [47.370361, 8.514303], [47.404577, 8.572775], [47.360125, 8.524833], [47.382701, 8.537425], [47.370463, 8.518834], [47.386066, 8.535481], [47.40945, 8.549928], [47.407503, 8.585305], [47.391011, 8.488215], [47.407738, 8.548342], [47.376543, 8.543601], [47.391055, 8.532934], [47.381933, 8.529211], [47.373329, 8.531643], [47.368044, 8.540658], [47.372753, 8.525964], [47.358028, 8.52025], [47.386639, 8.546075], [47.38681, 8.534741], [47.414097, 8.553961], [47.399998, 8.536496], [47.379614, 8.501035], [47.382003, 8.541807], [47.383208, 8.539925], [47.374512, 8.530158], [47.365455, 8.553579], [47.367427, 8.541241], [47.375192, 8.518175], [47.391731, 8.513622], [47.344614, 8.532881], [47.381983, 8.555077], [47.378831, 8.527214], [47.378379, 8.540752], [47.378502, 8.540079], [47.366257, 8.545096], [47.418424, 8.508263], [47.372602, 8.523869], [47.377866, 8.519845], [47.405396, 8.592706], [47.368331, 8.560405], [47.36043, 8.550429], [47.411161, 8.570132], [47.378512, 8.545588], [47.401931, 8.581224], [47.370912, 8.531382], [47.413487, 8.530215], [47.387276, 8.499307], [47.40924, 8.577975], [47.367289, 8.545355], [47.390817, 8.552189], [47.388228, 8.519883], [47.356581, 8.52672], [47.405627, 8.581237], [47.363063, 8.549769], [47.367362, 8.522425], [47.356293, 8.555955], [47.403839, 8.486176], [47.413991, 8.541608], [47.409539, 8.537766], [47.379237, 8.491162], [47.361758, 8.561074], [47.341327, 8.530366], [47.376079, 8.488305], [47.38187, 8.542546], [47.357946, 8.52316], [47.376006, 8.488343], [47.384099, 8.50919], [47.38676, 8.547561], [47.369708, 8.543525], [47.380295, 8.535071], [47.366532, 8.545472], [47.394823, 8.525395], [47.370125, 8.539416], [47.411116, 8.532737], [47.37007, 8.548895], [47.419111, 8.507919], [47.382708, 8.514658], [47.363105, 8.548221], [47.377695, 8.528475], [47.41399, 8.525547]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", - " \n", - " \n", - " var heat_map_7486e49350862b17c4e161d300f39479 = L.heatLayer(\n", - " [[47.369153, 8.547963], [47.385638, 8.554743], [47.37637, 8.544829], [47.364462, 8.537062], [47.385805, 8.519198], [47.366212, 8.540381], [47.385025, 8.532347], [47.379997, 8.573377], [47.360529, 8.547664], [47.366521, 8.541884], [47.373397, 8.534889], [47.366232, 8.54675], [47.374678, 8.51251], [47.376749, 8.53807], [47.371013, 8.530192], [47.38033, 8.542699], [47.406915, 8.550644], [47.360296, 8.568894], [47.419578, 8.548032], [47.42092, 8.538505], [47.369392, 8.541745], [47.379717, 8.54658], [47.376057, 8.559587], [47.384743, 8.497946], [47.380839, 8.546855], [47.326256, 8.515504], [47.340051, 8.530247], [47.390567, 8.539786], [47.371364, 8.546182], [47.364279, 8.520231], [47.394164, 8.518016], [47.372296, 8.532456], [47.382421, 8.529962], [47.345536, 8.531378], [47.360943, 8.531575], [47.402769, 8.495932], [47.371563, 8.518512], [47.426103, 8.547718], [47.377051, 8.53752], [47.409504, 8.540469], [47.373502, 8.519941], [47.37181, 8.547528], [47.3684, 8.483957], [47.417315, 8.546766], [47.364366, 8.546195], [47.402927, 8.545341], [47.421339, 8.549222], [47.381212, 8.517899], [47.429423, 8.544751], [47.40305, 8.502642], [47.414093, 8.519374], [47.378156, 8.509918], [47.403861, 8.496497], [47.377778, 8.537747], [47.351597, 8.560635], [47.383005, 8.530941], [47.419651, 8.547994], [47.382851, 8.529177], [47.382777, 8.543558], [47.379496, 8.576677], [47.350223, 8.576066], [47.396081, 8.545463], [47.422985, 8.498454], [47.375323, 8.485377], [47.398316, 8.537508], [47.361338, 8.547694], [47.356457, 8.506305], [47.374416, 8.541266], [47.385302, 8.517241], [47.360407, 8.566804], [47.3797, 8.524729], [47.378425, 8.51003], [47.420379, 8.503094], [47.373345, 8.528942], [47.418966, 8.507002], [47.367916, 8.53998], [47.358357, 8.571288], [47.348461, 8.534072], [47.395871, 8.542982], [47.370326, 8.514289], [47.408102, 8.550735], [47.41365, 8.481439], [47.381478, 8.503761], [47.382486, 8.529739], [47.41309, 8.532287], [47.376749, 8.559602], [47.377038, 8.528462], [47.344061, 8.531427], [47.382569, 8.53427], [47.366989, 8.545654], [47.370677, 8.51521], [47.375496, 8.563548], [47.396135, 8.522692], [47.384241, 8.528649], [47.380006, 8.520881], [47.364577, 8.566231], [47.363823, 8.566969], [47.347349, 8.524215], [47.387239, 8.490591], [47.394055, 8.529605], [47.377493, 8.492028], [47.378804, 8.54239], [47.386281, 8.531737], [47.385688, 8.528824], [47.364852, 8.56666], [47.386767, 8.523071], [47.382742, 8.529307], [47.368097, 8.564094], [47.382656, 8.529848], [47.398399, 8.47294], [47.381663, 8.534052], [47.35426, 8.509504], [47.369164, 8.53263], [47.364646, 8.532908], [47.410576, 8.548786], [47.36336, 8.567423], [47.387679, 8.492653], [47.363404, 8.534816], [47.377715, 8.507036], [47.403563, 8.570739], [47.391301, 8.538277], [47.364899, 8.504833], [47.393155, 8.473951], [47.404419, 8.559522], [47.391675, 8.513886], [47.382352, 8.537272], [47.3897, 8.512508], [47.414191, 8.518528], [47.369497, 8.525911], [47.36098, 8.517146], [47.374265, 8.524856], [47.370994, 8.514912], [47.414376, 8.517922], [47.38014, 8.494662], [47.40555, 8.574452], [47.348245, 8.565885], [47.354806, 8.601791], [47.398079, 8.535887], [47.356911, 8.522292], [47.373017, 8.531346], [47.398474, 8.533113], [47.411985, 8.524565], [47.373431, 8.537035], [47.380933, 8.537984], [47.356295, 8.598686], [47.365693, 8.536266], [47.401932, 8.496949], [47.394788, 8.532971], [47.371877, 8.556507], [47.352173, 8.533447], [47.417269, 8.523096], [47.391899, 8.517798], [47.366523, 8.545432], [47.346439, 8.527267], [47.36277, 8.56798], [47.367682, 8.55773], [47.380443, 8.519327], [47.368018, 8.557406], [47.389464, 8.511762], [47.407337, 8.575748], [47.394422, 8.474029], [47.39553, 8.482913], [47.370992, 8.486828], [47.387789, 8.529225], [47.39697, 8.530472], [47.338226, 8.527272], [47.387277, 8.486393], [47.370263, 8.524854], [47.363779, 8.534215], [47.372005, 8.510748], [47.370107, 8.540303], [47.378883, 8.491525], [47.415499, 8.544714], [47.37301, 8.520646], [47.368233, 8.544461], [47.370688, 8.538832], [47.362069, 8.531386], [47.37649, 8.528345], [47.393621, 8.511541], [47.37798, 8.492898], [47.364541, 8.566256], [47.396961, 8.540911], [47.400235, 8.54751], [47.37562, 8.518528], [47.352523, 8.531707], [47.403531, 8.496265], [47.364913, 8.566794], [47.374377, 8.521628], [47.397551, 8.532776], [47.426648, 8.492258], [47.398391, 8.541868], [47.366394, 8.496839], [47.383263, 8.530377], [47.394309, 8.503355], [47.374741, 8.55233], [47.377603, 8.493804], [47.387304, 8.488341], [47.358527, 8.553791], [47.366934, 8.545719], [47.376529, 8.511726], [47.368131, 8.523831], [47.394865, 8.525753], [47.364029, 8.528633], [47.382799, 8.52997], [47.425, 8.548251], [47.403658, 8.578479], [47.425389, 8.553628], [47.367244, 8.533942], [47.343559, 8.530239], [47.387116, 8.534708], [47.370051, 8.511927], [47.378352, 8.517815], [47.380486, 8.529142], [47.36788, 8.560541], [47.400195, 8.494199], [47.36934, 8.540645], [47.348434, 8.534058], [47.406516, 8.480531], [47.392765, 8.523299], [47.397378, 8.532097], [47.413927, 8.540772], [47.426507, 8.544028], [47.377082, 8.541851], [47.366321, 8.544951], [47.376618, 8.521422], [47.391878, 8.504578], [47.376674, 8.538426], [47.375926, 8.516587], [47.418544, 8.547043], [47.408969, 8.550316], [47.404951, 8.505171], [47.390583, 8.483849], [47.379365, 8.490939], [47.407037, 8.547347], [47.389917, 8.476922], [47.369408, 8.525817], [47.370232, 8.537618], [47.34646, 8.52879], [47.368028, 8.540445], [47.374569, 8.552512], [47.369704, 8.552317], [47.373486, 8.50331], [47.373582, 8.534403], [47.362442, 8.518565], [47.403845, 8.576866], [47.392844, 8.529196], [47.365687, 8.502346], [47.3964, 8.472186], [47.405968, 8.59044], [47.37019, 8.524945], [47.382446, 8.507117], [47.368313, 8.529435], [47.386795, 8.547641], [47.365108, 8.501673], [47.396099, 8.482606], [47.368333, 8.524351], [47.374323, 8.546243], [47.37738, 8.529436], [47.384423, 8.54832], [47.376283, 8.552918], [47.387232, 8.4883], [47.388197, 8.525034], [47.37234, 8.543858], [47.391571, 8.472993], [47.419839, 8.505005], [47.367905, 8.523999], [47.381151, 8.534876], [47.389897, 8.477107], [47.360423, 8.526666], [47.37112, 8.523654], [47.367788, 8.539183], [47.390577, 8.491425], [47.361637, 8.531417], [47.369492, 8.553835], [47.398807, 8.533093], [47.370456, 8.521508], [47.376264, 8.525599], [47.378576, 8.543603], [47.370565, 8.517525], [47.400899, 8.548571], [47.415434, 8.559012], [47.336631, 8.533326], [47.370321, 8.492323], [47.426297, 8.554667], [47.414656, 8.55111], [47.425834, 8.493792], [47.369548, 8.526283], [47.380724, 8.582637], [47.374327, 8.543025], [47.41684, 8.522849], [47.378226, 8.492479], [47.364757, 8.554147], [47.389438, 8.494039], [47.399777, 8.542771], [47.41374, 8.536819], [47.379814, 8.50182], [47.414466, 8.556752], [47.422231, 8.508989], [47.365319, 8.521616], [47.370476, 8.549725], [47.367958, 8.540259], [47.350027, 8.533998], [47.409285, 8.577976], [47.38322, 8.506021], [47.384961, 8.495778], [47.367047, 8.547072], [47.365128, 8.520884], [47.383408, 8.530181], [47.360825, 8.56537], [47.384407, 8.528281], [47.383044, 8.540107], [47.390959, 8.523091], [47.366426, 8.545205], [47.364613, 8.566192], [47.369239, 8.525601], [47.328332, 8.512821], [47.380273, 8.505723], [47.369785, 8.548559], [47.378966, 8.54234], [47.430112, 8.549882], [47.390977, 8.523091], [47.376698, 8.541578], [47.390209, 8.532043], [47.376742, 8.53505], [47.423149, 8.502129], [47.371248, 8.575786], [47.410724, 8.544602], [47.354277, 8.558905], [47.378016, 8.526787], [47.360331, 8.567213], [47.379486, 8.527399], [47.356973, 8.53479], [47.403717, 8.586164], [47.415519, 8.546464], [47.364178, 8.566553], [47.363464, 8.516984], [47.376668, 8.524746], [47.367977, 8.497798], [47.377478, 8.543739], [47.374042, 8.517953], [47.384581, 8.531689], [47.385804, 8.496006], [47.35815, 8.557477], [47.420878, 8.549478], [47.380856, 8.511668], [47.401929, 8.581343], [47.397887, 8.474878], [47.407578, 8.554646], [47.367684, 8.53877], [47.370761, 8.536847], [47.381647, 8.513644], [47.381334, 8.542164], [47.368238, 8.510487], [47.371796, 8.522515], [47.365611, 8.539191], [47.370125, 8.548777], [47.40509, 8.565472], [47.420047, 8.503936], [47.347649, 8.564245], [47.36647, 8.540678], [47.412992, 8.536035], [47.373526, 8.534561], [47.374716, 8.544675], [47.349588, 8.577574], [47.365234, 8.53635], [47.393001, 8.539226], [47.397972, 8.533871], [47.394438, 8.505], [47.388568, 8.483836], [47.376377, 8.516451], [47.370392, 8.51392], [47.39361, 8.489326], [47.36666, 8.54149], [47.391652, 8.53541], [47.369251, 8.528117], [47.374572, 8.534264], [47.370335, 8.514276], [47.370269, 8.548833], [47.365541, 8.554018], [47.371644, 8.546108], [47.367772, 8.501594], [47.407866, 8.531146], [47.397139, 8.508618], [47.40501, 8.585411], [47.383386, 8.515268], [47.356973, 8.534776], [47.402075, 8.498052], [47.362621, 8.565766], [47.41889, 8.505516], [47.415943, 8.515847], [47.368714, 8.500805], [47.373234, 8.536912], [47.354027, 8.555948], [47.383226, 8.530469], [47.370179, 8.548805], [47.413934, 8.541925], [47.388122, 8.498304], [47.377585, 8.529572], [47.37212, 8.54621], [47.407613, 8.548273], [47.380854, 8.512899], [47.384315, 8.528438], [47.340033, 8.530286], [47.38343, 8.515375], [47.407165, 8.586702], [47.379034, 8.524755], [47.372201, 8.556474], [47.36295, 8.559603], [47.381224, 8.503027], [47.326529, 8.513208], [47.399033, 8.513875], [47.40973, 8.549815], [47.378932, 8.530752], [47.403762, 8.534215], [47.364809, 8.55718], [47.380979, 8.572233], [47.374543, 8.541163], [47.37958, 8.542075], [47.359053, 8.549606], [47.398767, 8.506597], [47.370984, 8.548292], [47.367272, 8.544296], [47.426634, 8.546735], [47.361434, 8.566654], [47.414305, 8.483599], [47.381563, 8.535997], [47.367844, 8.521919], [47.401424, 8.4916], [47.374895, 8.560622], [47.36474, 8.55412], [47.367969, 8.544708], [47.384506, 8.534932], [47.353244, 8.558724], [47.381645, 8.533986], [47.359894, 8.507235], [47.409588, 8.537383], [47.403565, 8.487628], [47.393172, 8.530673], [47.371116, 8.545792], [47.427957, 8.545675], [47.366757, 8.542657], [47.37791, 8.497624], [47.392579, 8.528713], [47.383949, 8.55084], [47.381166, 8.491676], [47.366558, 8.545565], [47.364105, 8.554636], [47.380484, 8.548212], [47.387939, 8.536182], [47.38154, 8.513628], [47.380782, 8.533995], [47.371983, 8.547333], [47.369928, 8.513553], [47.383267, 8.484209], [47.426684, 8.549029], [47.3883, 8.523712], [47.374928, 8.520407], [47.385508, 8.517364], [47.40534, 8.59301], [47.38597, 8.517943], [47.363149, 8.557688], [47.370747, 8.549572], [47.367933, 8.494765], [47.38294, 8.513935], [47.38898, 8.494983], [47.376021, 8.541829], [47.400186, 8.494199], [47.371461, 8.519874], [47.397793, 8.538531], [47.379545, 8.507576], [47.421757, 8.498019], [47.340875, 8.519187], [47.340857, 8.519187], [47.382115, 8.541359], [47.396063, 8.482658], [47.373865, 8.526265], [47.370669, 8.548392], [47.362637, 8.558485], [47.407544, 8.546059], [47.3835, 8.572975], [47.376754, 8.536574], [47.355392, 8.600758], [47.414339, 8.518067], [47.370527, 8.526369], [47.402028, 8.495335], [47.370681, 8.470443], [47.38005, 8.486847], [47.381112, 8.528505], [47.378747, 8.515969], [47.371317, 8.524651], [47.387424, 8.479072], [47.343371, 8.530143], [47.369437, 8.525632], [47.358586, 8.585405], [47.378006, 8.527872], [47.39216, 8.498345], [47.372855, 8.514129], [47.393436, 8.499496], [47.3897, 8.534483], [47.386009, 8.50503], [47.377864, 8.54192], [47.377116, 8.541057], [47.387043, 8.526282], [47.419909, 8.54079], [47.400237, 8.543589], [47.378284, 8.526104], [47.374317, 8.524169], [47.389945, 8.512261], [47.378454, 8.540343], [47.40735, 8.489783], [47.367949, 8.540245], [47.377504, 8.496689], [47.367103, 8.544041], [47.388605, 8.475717], [47.354126, 8.575289], [47.376959, 8.543358], [47.375917, 8.523274], [47.412002, 8.515012], [47.39995, 8.545292], [47.387334, 8.533547], [47.371185, 8.521483], [47.375223, 8.518665], [47.36575, 8.545416], [47.378492, 8.540211], [47.41714, 8.506992], [47.360403, 8.531656], [47.329972, 8.533573], [47.423084, 8.49843], [47.375385, 8.540571], [47.364322, 8.507919], [47.3904, 8.533702], [47.371172, 8.530513], [47.397011, 8.480292], [47.416455, 8.508184], [47.375358, 8.528269], [47.369467, 8.526202], [47.354594, 8.510332], [47.429483, 8.537581], [47.365334, 8.532459], [47.37181, 8.601552], [47.410844, 8.543319], [47.36575, 8.535989], [47.381735, 8.531114], [47.384447, 8.539169], [47.36319, 8.549692], [47.386823, 8.541947], [47.41474, 8.560932], [47.389402, 8.511641], [47.413128, 8.538702], [47.371473, 8.530069], [47.372849, 8.535805], [47.373225, 8.536951], [47.373832, 8.536447], [47.387087, 8.498323], [47.388539, 8.478087], [47.374393, 8.495581], [47.365135, 8.554128], [47.419774, 8.550104], [47.355006, 8.556087], [47.414545, 8.551426], [47.409521, 8.542509], [47.368006, 8.540908], [47.364605, 8.554978], [47.337925, 8.519128], [47.38598, 8.492447], [47.365584, 8.549583], [47.370088, 8.511742], [47.397692, 8.533137], [47.390284, 8.512533], [47.370088, 8.511756], [47.366585, 8.540852], [47.376209, 8.541925], [47.367316, 8.533983], [47.413554, 8.481133], [47.359114, 8.570232], [47.373858, 8.536514], [47.388021, 8.486646], [47.402959, 8.536372], [47.421047, 8.50772], [47.399568, 8.515317], [47.393241, 8.537695], [47.375112, 8.545597], [47.405116, 8.504843], [47.397023, 8.530553], [47.387832, 8.517914], [47.361393, 8.502711], [47.396916, 8.51321], [47.382505, 8.53056], [47.372416, 8.550043], [47.373085, 8.569099], [47.426565, 8.51015], [47.393131, 8.542567], [47.375471, 8.54191], [47.393759, 8.524764], [47.408871, 8.548353], [47.36984, 8.552241], [47.389049, 8.545251], [47.397046, 8.493209], [47.375304, 8.522547], [47.425962, 8.49357], [47.380542, 8.533606], [47.409328, 8.546679], [47.375771, 8.564892], [47.38628, 8.490122], [47.373008, 8.531306], [47.383694, 8.589667], [47.39903, 8.541855], [47.3759, 8.54131], [47.36227, 8.559311], [47.378866, 8.489406], [47.365118, 8.529582], [47.369257, 8.525668], [47.397069, 8.530435], [47.362844, 8.531336], [47.37101, 8.545671], [47.373003, 8.485305], [47.360273, 8.523472], [47.363733, 8.531433], [47.398776, 8.494939], [47.393998, 8.476193], [47.367647, 8.545522], [47.368959, 8.524761], [47.372663, 8.532636], [47.359606, 8.585996], [47.377799, 8.511567], [47.408721, 8.546216], [47.377108, 8.526768], [47.40594, 8.581469], [47.40418, 8.563783], [47.390106, 8.475905], [47.366885, 8.543387], [47.397581, 8.509408], [47.386369, 8.51852], [47.385134, 8.494563], [47.392099, 8.541393], [47.354795, 8.523427], [47.367543, 8.515544], [47.382221, 8.488466], [47.413236, 8.545356], [47.365487, 8.515119], [47.32986, 8.530197], [47.3871, 8.538297], [47.379641, 8.52139], [47.410708, 8.572229], [47.367733, 8.534627], [47.382184, 8.541665], [47.354865, 8.511132], [47.364178, 8.548892], [47.404713, 8.572685], [47.407174, 8.586689], [47.399793, 8.543845], [47.366728, 8.535308], [47.394783, 8.525804], [47.375849, 8.495756], [47.33997, 8.530272], [47.382864, 8.54013], [47.383056, 8.575124], [47.427562, 8.546595], [47.369933, 8.549131], [47.376457, 8.528106], [47.389768, 8.5119], [47.396217, 8.54442], [47.375229, 8.522784], [47.405907, 8.553511], [47.391767, 8.517504], [47.358501, 8.586753], [47.391809, 8.527439], [47.41972, 8.5483], [47.405189, 8.593682], [47.364394, 8.532903], [47.385305, 8.530326], [47.376219, 8.525611], [47.371738, 8.535332], [47.412996, 8.550678], [47.375659, 8.578118], [47.376988, 8.52225], [47.403056, 8.57563], [47.36803, 8.556122], [47.389724, 8.51182], [47.378813, 8.542403], [47.400114, 8.517527], [47.410827, 8.5591], [47.420584, 8.550068], [47.404505, 8.544009], [47.376479, 8.541852], [47.359979, 8.51649], [47.36953, 8.555478], [47.367434, 8.546113], [47.392225, 8.477311], [47.390939, 8.523302], [47.361884, 8.526285], [47.335611, 8.519332], [47.399708, 8.543339], [47.411878, 8.537788], [47.360177, 8.518414], [47.392781, 8.523499], [47.412344, 8.557648], [47.358354, 8.584328], [47.348899, 8.562445], [47.38639, 8.518216], [47.394886, 8.529251], [47.424861, 8.537406], [47.388923, 8.52248], [47.373198, 8.55198], [47.39118, 8.51581], [47.403079, 8.547305], [47.369133, 8.525387], [47.410138, 8.542854], [47.374923, 8.5475], [47.40219, 8.546239], [47.372946, 8.520778], [47.410503, 8.547923], [47.360294, 8.57922], [47.339248, 8.526644], [47.409518, 8.549386], [47.369254, 8.491984], [47.375094, 8.545557], [47.370161, 8.548805], [47.357437, 8.521787], [47.410939, 8.522822], [47.352433, 8.562532], [47.35477, 8.552601], [47.365452, 8.50826], [47.356008, 8.532188], [47.37024, 8.552779], [47.425861, 8.493727], [47.384209, 8.51098], [47.339526, 8.527762], [47.377153, 8.539998], [47.354215, 8.561551], [47.355041, 8.55806], [47.381352, 8.517306], [47.409197, 8.547246], [47.36947, 8.520151], [47.362639, 8.527241], [47.334159, 8.515889], [47.372926, 8.547445], [47.342797, 8.530978], [47.399681, 8.517677], [47.383122, 8.51366], [47.387992, 8.536262], [47.378909, 8.524673], [47.375675, 8.516543], [47.369408, 8.525817], [47.413074, 8.546254], [47.37328, 8.514865], [47.376047, 8.559667], [47.376356, 8.559276], [47.369828, 8.53561], [47.37453, 8.566693], [47.404432, 8.574719], [47.408133, 8.553041], [47.378324, 8.530382], [47.383003, 8.545364], [47.38563, 8.520585], [47.388622, 8.541944], [47.407221, 8.538407], [47.374281, 8.524168], [47.356094, 8.55615], [47.37017, 8.548792], [47.375847, 8.540223], [47.377032, 8.516689], [47.391794, 8.527121], [47.428685, 8.488865], [47.417654, 8.546124], [47.344775, 8.519571], [47.376317, 8.567949], [47.405458, 8.509712], [47.372934, 8.530563], [47.417038, 8.541844], [47.390101, 8.480435], [47.382952, 8.530847], [47.389905, 8.526089], [47.396504, 8.534119], [47.385267, 8.517094], [47.374344, 8.524116], [47.376444, 8.540778], [47.38648, 8.48598], [47.391016, 8.478692], [47.407382, 8.550707], [47.378389, 8.530185], [47.379287, 8.537977], [47.386665, 8.517679], [47.40744, 8.548508], [47.381611, 8.535654], [47.359523, 8.548438], [47.377014, 8.583934], [47.352059, 8.505331], [47.382539, 8.514483], [47.362224, 8.526411], [47.399526, 8.496464], [47.402726, 8.556903], [47.376683, 8.515437], [47.373192, 8.503926], [47.370051, 8.511914], [47.367484, 8.546578], [47.430155, 8.544475], [47.374681, 8.52562], [47.372908, 8.550332], [47.385108, 8.536905], [47.385739, 8.535779], [47.374807, 8.544611], [47.410074, 8.545807], [47.403673, 8.571404], [47.360028, 8.523706], [47.385879, 8.532444], [47.371855, 8.60154], [47.376438, 8.528185], [47.373458, 8.537049], [47.374342, 8.518647], [47.370016, 8.54332], [47.400185, 8.546198], [47.380985, 8.545719], [47.366675, 8.544628], [47.367874, 8.496326], [47.417641, 8.539908], [47.397277, 8.494538], [47.378825, 8.539265], [47.391104, 8.522921], [47.406896, 8.537645], [47.373506, 8.519518], [47.366999, 8.544634], [47.364459, 8.566321], [47.393234, 8.489067], [47.396997, 8.530486], [47.420305, 8.503305], [47.365171, 8.554169], [47.3932, 8.530647], [47.383509, 8.515641], [47.328634, 8.513237], [47.427815, 8.547422], [47.392153, 8.495165], [47.368538, 8.569638], [47.36927, 8.510706], [47.386994, 8.525738], [47.374147, 8.519253], [47.364595, 8.566205], [47.419041, 8.507653], [47.394778, 8.471493], [47.368806, 8.512299], [47.358769, 8.498436], [47.362284, 8.532516], [47.362163, 8.533864], [47.370521, 8.519391], [47.391684, 8.538722], [47.377469, 8.52279], [47.364676, 8.56618], [47.377595, 8.498558], [47.390935, 8.538998], [47.380135, 8.528128], [47.372937, 8.535992], [47.368278, 8.556617], [47.361776, 8.522484], [47.386594, 8.528074], [47.370952, 8.536639], [47.357069, 8.532197], [47.370861, 8.554592], [47.400491, 8.543316], [47.375586, 8.558068], [47.387623, 8.551301], [47.392052, 8.517775], [47.382545, 8.5722], [47.382432, 8.529698], [47.379391, 8.510605], [47.422485, 8.540406], [47.391305, 8.53784], [47.364189, 8.536474], [47.389135, 8.495675], [47.365217, 8.501582], [47.368809, 8.539654], [47.388159, 8.517577], [47.420551, 8.502925], [47.366929, 8.544355], [47.37933, 8.511385], [47.362196, 8.532236], [47.359904, 8.535869], [47.368308, 8.546926], [47.357477, 8.534747], [47.415153, 8.550803], [47.370233, 8.518432], [47.378202, 8.541397], [47.367426, 8.494185], [47.366308, 8.540635], [47.356942, 8.566956], [47.340754, 8.530116], [47.388592, 8.491121], [47.366878, 8.518364], [47.381827, 8.516561], [47.369398, 8.525909], [47.371314, 8.523048], [47.399358, 8.495229], [47.364436, 8.561289], [47.354251, 8.557845], [47.411499, 8.526437], [47.401731, 8.500231], [47.397387, 8.532071], [47.422357, 8.549058], [47.398823, 8.506399], [47.414095, 8.550423], [47.370103, 8.520786], [47.377028, 8.528554], [47.369124, 8.525414], [47.388423, 8.541132], [47.422284, 8.549215], [47.402913, 8.580993], [47.39111, 8.522378], [47.361891, 8.548209], [47.358012, 8.587987], [47.380847, 8.511694], [47.374886, 8.527756], [47.369215, 8.52339], [47.357638, 8.521552], [47.364848, 8.502634], [47.372768, 8.494278], [47.369926, 8.536658], [47.374749, 8.549668], [47.365093, 8.521704], [47.369169, 8.525454], [47.400388, 8.5371], [47.423724, 8.544368], [47.376355, 8.527428], [47.415589, 8.518106], [47.371566, 8.536361], [47.418314, 8.546668], [47.37754, 8.543767], [47.392797, 8.525592], [47.370726, 8.522467], [47.371948, 8.535018], [47.377593, 8.521124], [47.370307, 8.524974], [47.409901, 8.54322], [47.403143, 8.552897], [47.357585, 8.526171], [47.389088, 8.538311], [47.421608, 8.550195], [47.370164, 8.51332], [47.343409, 8.535649], [47.34411, 8.531892], [47.364788, 8.566778], [47.379973, 8.48335], [47.394634, 8.536823], [47.397839, 8.530821], [47.353249, 8.572053], [47.414444, 8.553425], [47.38428, 8.531259], [47.410093, 8.527734], [47.372533, 8.529244], [47.35508, 8.534261], [47.386736, 8.490528], [47.326611, 8.518872], [47.369047, 8.525002], [47.391963, 8.532065], [47.364363, 8.548393], [47.368924, 8.528508], [47.369446, 8.525645], [47.371166, 8.538696], [47.3639, 8.551653], [47.369679, 8.531396], [47.385499, 8.528847], [47.365856, 8.549298], [47.381539, 8.532884], [47.374387, 8.541464], [47.363887, 8.566904], [47.374416, 8.541253], [47.396847, 8.587712], [47.410445, 8.573443], [47.342897, 8.519361], [47.374263, 8.524128], [47.364595, 8.566205], [47.379447, 8.523902], [47.402529, 8.535276], [47.371748, 8.558663], [47.4215, 8.49755], [47.404761, 8.574209], [47.364605, 8.537224], [47.378912, 8.523322], [47.417686, 8.545528], [47.3529, 8.529822], [47.340197, 8.519504], [47.370086, 8.537813], [47.398503, 8.494232], [47.349972, 8.53221], [47.38914, 8.494218], [47.371862, 8.601686], [47.383206, 8.479969], [47.376992, 8.541889], [47.364614, 8.566165], [47.418737, 8.511331], [47.430434, 8.542519], [47.396601, 8.510382], [47.366766, 8.54455], [47.378022, 8.528124], [47.350949, 8.559827], [47.366772, 8.542021], [47.360298, 8.567835], [47.366811, 8.544498], [47.383255, 8.499333], [47.365372, 8.538855], [47.359455, 8.52245], [47.378349, 8.514306], [47.369999, 8.52518], [47.370638, 8.5222], [47.414482, 8.557918], [47.365948, 8.536934], [47.367025, 8.513217], [47.409372, 8.538266], [47.382291, 8.480667], [47.401096, 8.48803], [47.398726, 8.471529], [47.428002, 8.545729], [47.372601, 8.550392], [47.351621, 8.576625], [47.378003, 8.530097], [47.374227, 8.524114], [47.352875, 8.602371], [47.374316, 8.524248], [47.367666, 8.556551], [47.367566, 8.496558], [47.386784, 8.486225], [47.40722, 8.585763], [47.384688, 8.509772], [47.37999, 8.536852], [47.386894, 8.535379], [47.36848, 8.53075], [47.33942, 8.527481], [47.372781, 8.533512], [47.350072, 8.561172], [47.372013, 8.556378], [47.390566, 8.545547], [47.389046, 8.527582], [47.360434, 8.566752], [47.362676, 8.533834], [47.365269, 8.520172], [47.386711, 8.479283], [47.369288, 8.505887], [47.360687, 8.516769], [47.354967, 8.523378], [47.374717, 8.544622], [47.378841, 8.529042], [47.377241, 8.535484], [47.380437, 8.519923], [47.396778, 8.541199], [47.411042, 8.571203], [47.397433, 8.474366], [47.402827, 8.588795], [47.374677, 8.54972], [47.356564, 8.554055], [47.409498, 8.479079], [47.383741, 8.540611], [47.383941, 8.530934], [47.377087, 8.557199], [47.36877, 8.524771], [47.386688, 8.542897], [47.373814, 8.561738], [47.398345, 8.537283], [47.371921, 8.562083], [47.371265, 8.549966], [47.394847, 8.525753], [47.421401, 8.549369], [47.36718, 8.539766], [47.396948, 8.529995], [47.429108, 8.541988], [47.358812, 8.521947], [47.366942, 8.544011], [47.398684, 8.53949], [47.386313, 8.48252], [47.374237, 8.525028], [47.352744, 8.531129], [47.379614, 8.521456], [47.361544, 8.554305], [47.35296, 8.558361], [47.36215, 8.559586], [47.415825, 8.538903], [47.377808, 8.498841], [47.371371, 8.516045], [47.404911, 8.486939], [47.366051, 8.540272], [47.403863, 8.546274], [47.365978, 8.503967], [47.393519, 8.51289], [47.346141, 8.533071], [47.356094, 8.55615], [47.356556, 8.532266], [47.388909, 8.527764], [47.364072, 8.556145], [47.365755, 8.546727], [47.369042, 8.537911], [47.389669, 8.521515], [47.376646, 8.53477], [47.373784, 8.521496], [47.384385, 8.531566], [47.379063, 8.527378], [47.337865, 8.532187], [47.408946, 8.539609], [47.405686, 8.587996], [47.411416, 8.525667], [47.350558, 8.580401], [47.370408, 8.514159], [47.369123, 8.541607], [47.404191, 8.56165], [47.399229, 8.54268], [47.368995, 8.541842], [47.369186, 8.525481], [47.355941, 8.535496], [47.363336, 8.533517], [47.382941, 8.540555], [47.371905, 8.538526], [47.381444, 8.528684], [47.420159, 8.509345], [47.387375, 8.497283], [47.368016, 8.540763], [47.391046, 8.52247], [47.398438, 8.591469], [47.398998, 8.512815], [47.373779, 8.537333], [47.392665, 8.515774], [47.364833, 8.548151], [47.370717, 8.538674], [47.369452, 8.52591], [47.359344, 8.551201], [47.377629, 8.542021], [47.383332, 8.53157], [47.365055, 8.531513], [47.394317, 8.526643], [47.403381, 8.486087], [47.34872, 8.534302], [47.358403, 8.521449], [47.366469, 8.540718], [47.372506, 8.478516], [47.387313, 8.545268], [47.395592, 8.531583], [47.385441, 8.494357], [47.37385, 8.531734], [47.369807, 8.466507], [47.368304, 8.564999], [47.377567, 8.528684], [47.36721, 8.546929], [47.379713, 8.537628], [47.335512, 8.519343], [47.401358, 8.538207], [47.354915, 8.526964], [47.368921, 8.54772], [47.375134, 8.526251], [47.408575, 8.572383], [47.397957, 8.535487], [47.372194, 8.535579], [47.369292, 8.527602], [47.403158, 8.554977], [47.401662, 8.499964], [47.377483, 8.502926], [47.389921, 8.489386], [47.370672, 8.532026], [47.33753, 8.524757], [47.366988, 8.536267], [47.417652, 8.546269], [47.366734, 8.52032], [47.364759, 8.547474], [47.372789, 8.523992], [47.369063, 8.547908], [47.370104, 8.529313], [47.368922, 8.540133], [47.425862, 8.4937], [47.370927, 8.5317], [47.40718, 8.546489], [47.367935, 8.497545], [47.408781, 8.542746], [47.369981, 8.525179], [47.370097, 8.548909], [47.379228, 8.491175], [47.360727, 8.573576], [47.411207, 8.570915], [47.410913, 8.535184], [47.363739, 8.500891], [47.383894, 8.533979], [47.367985, 8.524053], [47.37175, 8.517827], [47.360367, 8.550454], [47.36054, 8.550272], [47.388597, 8.525533], [47.351865, 8.531799], [47.371672, 8.519401], [47.414059, 8.541066], [47.408556, 8.540913], [47.375102, 8.481956], [47.37875, 8.542336], [47.382586, 8.529648], [47.360167, 8.560034], [47.383365, 8.515599], [47.387983, 8.524831], [47.397537, 8.532325], [47.383211, 8.506007], [47.408355, 8.574657], [47.381487, 8.513495], [47.405154, 8.480968], [47.384409, 8.574716], [47.362189, 8.549023], [47.393747, 8.507728], [47.368075, 8.524121], [47.381623, 8.490891], [47.373895, 8.502815], [47.367137, 8.544227], [47.379245, 8.491228], [47.392425, 8.506695], [47.386362, 8.493965], [47.375418, 8.524734], [47.397017, 8.530275], [47.394197, 8.525064], [47.358845, 8.510709], [47.37965, 8.52143], [47.39313, 8.53042], [47.376272, 8.541914], [47.417755, 8.555257], [47.419752, 8.504765], [47.398986, 8.539893], [47.401594, 8.490663], [47.367411, 8.546642], [47.367411, 8.546669], [47.373048, 8.53659], [47.409575, 8.542458], [47.373639, 8.535013], [47.385716, 8.548546], [47.379419, 8.559764], [47.387926, 8.529042], [47.369637, 8.536811], [47.344739, 8.519557], [47.377864, 8.511369], [47.36585, 8.49434], [47.358837, 8.586403], [47.354481, 8.555428], [47.419091, 8.508065], [47.377086, 8.533892], [47.383498, 8.533017], [47.403674, 8.571364], [47.334837, 8.534665], [47.397095, 8.492839], [47.382789, 8.529997], [47.370887, 8.53497], [47.384733, 8.531824], [47.368955, 8.529064], [47.42231, 8.506353], [47.405733, 8.585996], [47.41492, 8.561903], [47.412315, 8.483851], [47.408754, 8.549304], [47.360089, 8.53537], [47.390513, 8.539784], [47.371748, 8.558649], [47.38473, 8.537864], [47.368895, 8.538173], [47.370508, 8.549156], [47.389732, 8.5119], [47.405126, 8.570918], [47.373299, 8.494249], [47.357799, 8.521582], [47.375918, 8.533723], [47.364586, 8.566244], [47.362511, 8.534136], [47.343248, 8.519381], [47.369465, 8.519767], [47.361873, 8.510068], [47.362569, 8.527014], [47.429144, 8.541988], [47.373122, 8.534526], [47.383252, 8.515199], [47.428002, 8.545729], [47.361043, 8.531497], [47.37454, 8.53956], [47.382514, 8.540083], [47.37959, 8.507616], [47.357428, 8.521826], [47.396988, 8.530473], [47.380073, 8.520393], [47.369288, 8.505847], [47.361034, 8.516194], [47.396989, 8.523664], [47.382086, 8.541517], [47.409114, 8.544648], [47.370139, 8.53604], [47.367856, 8.561123], [47.3827, 8.557198], [47.380344, 8.534608], [47.358318, 8.574266], [47.356336, 8.531798], [47.376459, 8.511553], [47.367734, 8.560737], [47.375854, 8.488221], [47.361821, 8.560122], [47.379162, 8.526439], [47.358944, 8.552569], [47.361364, 8.602622], [47.373588, 8.553511], [47.361362, 8.554592], [47.389237, 8.546248], [47.365346, 8.56765], [47.378552, 8.523434], [47.375722, 8.535414], [47.364497, 8.550355], [47.368888, 8.539867], [47.37845, 8.523763], [47.360152, 8.522993], [47.389853, 8.524922], [47.357102, 8.522045], [47.404089, 8.585828], [47.377028, 8.559595], [47.378207, 8.541768], [47.418274, 8.543327], [47.39098, 8.484718], [47.426424, 8.547048], [47.364559, 8.566257], [47.386569, 8.528855], [47.389241, 8.536434], [47.335889, 8.540337], [47.402444, 8.576585], [47.35396, 8.55535], [47.391574, 8.542668], [47.36678, 8.498886], [47.36782, 8.487441], [47.354018, 8.555921], [47.380165, 8.547728], [47.387684, 8.52513], [47.404161, 8.561954], [47.402792, 8.535971], [47.395316, 8.499441], [47.37596, 8.540636], [47.364842, 8.521672], [47.388575, 8.479055], [47.378574, 8.528679], [47.362311, 8.551355], [47.396162, 8.527475], [47.373166, 8.534553], [47.371477, 8.557796], [47.377255, 8.529287], [47.391792, 8.51867], [47.347252, 8.533571], [47.371408, 8.5197], [47.400335, 8.537073], [47.374774, 8.52047], [47.371826, 8.512532], [47.402938, 8.575747], [47.375777, 8.523828], [47.420376, 8.508236], [47.390912, 8.4882], [47.3823, 8.543641], [47.371679, 8.5225], [47.362379, 8.548868], [47.384403, 8.548505], [47.369038, 8.553296], [47.358237, 8.57159], [47.427474, 8.546341], [47.377286, 8.535565], [47.398569, 8.539209], [47.37175, 8.556624], [47.345717, 8.52941], [47.376103, 8.524629], [47.365168, 8.494207], [47.396851, 8.52015], [47.379379, 8.525358], [47.374375, 8.540802], [47.405133, 8.59388], [47.368483, 8.541819], [47.365401, 8.494265], [47.377854, 8.531551], [47.410639, 8.548787], [47.342025, 8.519343], [47.378959, 8.525031], [47.371377, 8.490953], [47.368391, 8.537288], [47.377343, 8.548398], [47.385275, 8.517227], [47.380674, 8.54807], [47.377014, 8.544207], [47.379722, 8.497104], [47.366314, 8.553133], [47.418698, 8.507765], [47.355503, 8.558613], [47.378502, 8.501622], [47.420275, 8.547649], [47.392576, 8.515639], [47.400124, 8.586564], [47.384845, 8.509298], [47.385954, 8.54814], [47.361517, 8.576466], [47.417335, 8.512217], [47.386387, 8.518521], [47.374377, 8.521614], [47.386504, 8.529119], [47.383656, 8.574475], [47.367084, 8.529053], [47.400862, 8.589177], [47.381479, 8.528765], [47.386121, 8.518131], [47.396514, 8.497305], [47.380098, 8.520645], [47.376865, 8.541926], [47.388964, 8.532414], [47.36076, 8.530035], [47.369488, 8.525884], [47.352594, 8.52509], [47.371404, 8.562588], [47.370188, 8.548805], [47.396762, 8.529673], [47.348195, 8.562681], [47.370545, 8.524529], [47.378087, 8.510553], [47.382345, 8.528464], [47.368946, 8.540385], [47.36512, 8.534123], [47.375784, 8.537375], [47.37325, 8.514137], [47.373082, 8.533015], [47.370232, 8.556393], [47.336207, 8.518166], [47.413861, 8.545833], [47.399762, 8.544268], [47.406961, 8.550592], [47.39173, 8.517569], [47.42699, 8.553688], [47.367947, 8.546124], [47.379142, 8.533339], [47.366649, 8.537941], [47.371477, 8.519146], [47.393634, 8.533173], [47.367108, 8.539764], [47.365254, 8.538945], [47.368726, 8.515118], [47.375094, 8.547424], [47.388838, 8.526756], [47.397213, 8.531431], [47.380414, 8.515711], [47.40001, 8.545651], [47.387432, 8.479165], [47.376919, 8.541013], [47.414749, 8.560932], [47.417773, 8.50279], [47.35971, 8.531655], [47.383136, 8.528507], [47.381232, 8.49132], [47.36236, 8.533934], [47.365037, 8.531513], [47.378564, 8.542054], [47.365139, 8.50223], [47.375959, 8.536014], [47.363503, 8.547991], [47.339946, 8.529967], [47.35779, 8.509033], [47.366943, 8.543892], [47.428155, 8.489769], [47.329124, 8.51756], [47.399865, 8.494868], [47.430228, 8.540592], [47.388108, 8.520185], [47.378786, 8.527226], [47.385045, 8.532149], [47.378102, 8.528166], [47.391182, 8.489186], [47.368254, 8.511626], [47.386382, 8.525779], [47.399605, 8.542821], [47.378699, 8.529714], [47.376841, 8.536959], [47.372373, 8.537609], [47.421272, 8.549605], [47.378838, 8.545397], [47.416481, 8.511233], [47.425366, 8.494817], [47.36224, 8.547475], [47.368512, 8.52454], [47.373664, 8.533279], [47.373067, 8.536498], [47.383817, 8.532587], [47.382639, 8.529702], [47.371133, 8.527917], [47.387796, 8.49847], [47.38346, 8.533255], [47.374503, 8.52163], [47.335901, 8.524895], [47.380466, 8.548225], [47.380097, 8.528432], [47.36947, 8.525911], [47.375376, 8.529156], [47.367047, 8.531064], [47.39897, 8.513848], [47.391556, 8.480702], [47.410162, 8.534718], [47.360962, 8.571635], [47.388003, 8.486659], [47.389726, 8.512562], [47.40045, 8.508472], [47.369385, 8.472457], [47.427608, 8.54649], [47.377722, 8.52841], [47.413989, 8.525693], [47.361969, 8.547562], [47.385195, 8.500603], [47.400686, 8.534152], [47.366426, 8.532971], [47.409476, 8.546272], [47.371699, 8.517455], [47.380257, 8.542804], [47.379233, 8.537975], [47.399077, 8.533072], [47.365108, 8.553241], [47.374741, 8.549562], [47.372685, 8.552883], [47.379124, 8.518029], [47.394847, 8.525753], [47.396462, 8.543285], [47.371798, 8.538458], [47.351945, 8.53188], [47.368955, 8.540398], [47.414197, 8.571455], [47.395642, 8.545242], [47.390567, 8.539812], [47.406416, 8.55388], [47.42069, 8.502544], [47.405042, 8.557428], [47.374094, 8.544795], [47.346017, 8.533797], [47.370178, 8.53947], [47.376075, 8.514141], [47.399958, 8.59235], [47.357886, 8.557802], [47.381626, 8.542634], [47.391833, 8.480867], [47.339249, 8.524725], [47.357862, 8.572204], [47.362196, 8.559455], [47.387807, 8.53402], [47.350177, 8.534306], [47.40991, 8.541272], [47.413791, 8.54554], [47.354526, 8.530967], [47.366512, 8.54187], [47.370087, 8.511862], [47.369679, 8.511284], [47.373525, 8.598266], [47.374536, 8.539984], [47.397717, 8.533309], [47.373671, 8.538218], [47.39174, 8.513662], [47.412217, 8.546554], [47.409717, 8.576117], [47.374173, 8.515572], [47.369558, 8.506833], [47.382278, 8.54025], [47.409627, 8.549309], [47.377937, 8.541829], [47.365829, 8.559637], [47.422894, 8.550222], [47.38254, 8.529753], [47.378912, 8.526222], [47.423861, 8.522276], [47.40915, 8.575178], [47.383933, 8.509717], [47.371459, 8.536239], [47.397439, 8.532284], [47.375137, 8.553238], [47.368552, 8.528831], [47.378545, 8.541219], [47.419382, 8.539414], [47.362224, 8.559403], [47.34083, 8.519186], [47.344645, 8.528647], [47.414012, 8.519412], [47.374727, 8.53975], [47.361333, 8.525506], [47.388521, 8.491067], [47.416206, 8.549804], [47.362375, 8.564159], [47.347827, 8.534535], [47.370179, 8.548805], [47.366932, 8.544117], [47.369538, 8.540609], [47.364719, 8.554424], [47.388099, 8.528728], [47.376492, 8.527272], [47.38711, 8.519198], [47.381132, 8.534995], [47.410986, 8.570526], [47.379342, 8.555657], [47.375163, 8.536501], [47.378561, 8.541484], [47.380547, 8.528361], [47.393931, 8.4994], [47.410584, 8.551701], [47.373053, 8.533266], [47.363724, 8.519955], [47.381966, 8.541859], [47.414048, 8.54039], [47.42599, 8.49642], [47.36984, 8.552241], [47.369445, 8.526625], [47.363281, 8.549641], [47.367032, 8.532587], [47.397599, 8.532446], [47.376798, 8.517638], [47.413052, 8.536262], [47.375976, 8.541749], [47.385378, 8.520646], [47.369598, 8.512236], [47.409782, 8.549975], [47.37135, 8.54295], [47.367445, 8.558029], [47.405678, 8.59152], [47.367058, 8.494999], [47.33819, 8.530116], [47.426032, 8.554184], [47.378699, 8.542056], [47.369448, 8.532054], [47.341427, 8.536945], [47.356179, 8.550076], [47.380521, 8.541498], [47.411553, 8.541598], [47.414091, 8.549005], [47.362921, 8.517344], [47.381487, 8.542061], [47.429988, 8.549654], [47.39509, 8.4937], [47.374301, 8.52491], [47.421958, 8.550295], [47.40765, 8.58768], [47.419099, 8.546459], [47.377925, 8.536465], [47.399159, 8.542493], [47.38732, 8.49058], [47.390759, 8.508874], [47.404213, 8.481573], [47.42029, 8.500945], [47.377783, 8.511315], [47.3812, 8.528772], [47.373626, 8.53639], [47.363018, 8.570209], [47.378682, 8.52292], [47.3611, 8.53596], [47.394184, 8.525421], [47.369446, 8.532239], [47.373248, 8.520122], [47.402315, 8.54546], [47.378332, 8.530461], [47.369412, 8.543466], [47.376936, 8.525904], [47.357605, 8.550555], [47.366394, 8.522048], [47.410067, 8.542826], [47.395539, 8.48286], [47.356666, 8.523439], [47.389928, 8.484631], [47.329782, 8.529918], [47.377256, 8.538689], [47.337747, 8.535122], [47.372611, 8.534317], [47.355858, 8.549764], [47.377164, 8.520823], [47.373826, 8.518054], [47.418945, 8.50732], [47.376889, 8.498015], [47.370188, 8.548818], [47.377021, 8.539744], [47.387165, 8.519093], [47.378419, 8.500945], [47.365042, 8.538477], [47.385015, 8.55869], [47.386852, 8.535047], [47.39128, 8.520474], [47.408148, 8.552498], [47.411011, 8.570725], [47.369576, 8.5516], [47.357871, 8.572191], [47.367675, 8.538823], [47.364577, 8.566231], [47.391465, 8.514173], [47.380847, 8.491193], [47.391045, 8.522549], [47.381542, 8.542049], [47.38663, 8.491241], [47.386901, 8.490081], [47.337101, 8.519693], [47.385146, 8.495172], [47.408591, 8.580824], [47.398767, 8.506597], [47.390748, 8.527365], [47.388422, 8.491065], [47.384793, 8.54164], [47.383765, 8.512256], [47.384209, 8.510967], [47.383612, 8.482798], [47.360345, 8.55371], [47.370344, 8.509351], [47.394883, 8.52578], [47.396475, 8.528608], [47.387449, 8.525244], [47.365196, 8.558075], [47.364997, 8.521358], [47.389739, 8.471633], [47.37754, 8.496716], [47.37469, 8.520866], [47.386655, 8.539705], [47.409909, 8.546161], [47.391301, 8.538344], [47.382752, 8.548113], [47.38146, 8.503747], [47.373268, 8.518983], [47.391476, 8.512054], [47.370041, 8.537865], [47.363291, 8.499757], [47.41017, 8.54239], [47.393113, 8.531268], [47.365379, 8.535227], [47.397927, 8.474428], [47.375819, 8.542222], [47.419193, 8.546991], [47.416189, 8.569232], [47.410381, 8.538141], [47.390016, 8.512303], [47.392485, 8.53862], [47.383253, 8.53986], [47.375248, 8.547322], [47.36639, 8.532971], [47.366232, 8.53825], [47.355784, 8.528305], [47.360679, 8.524302], [47.397385, 8.531355], [47.36695, 8.544117], [47.35435, 8.52682], [47.401892, 8.499346], [47.366432, 8.518937], [47.373032, 8.534497], [47.360039, 8.568531], [47.374272, 8.524115], [47.386927, 8.502068], [47.386384, 8.541726], [47.375229, 8.51807], [47.367587, 8.545163], [47.370188, 8.548818], [47.352425, 8.576298], [47.356928, 8.534789], [47.371825, 8.524237], [47.38852, 8.491093], [47.380909, 8.537613], [47.383079, 8.540214], [47.378921, 8.523322], [47.374923, 8.523757], [47.364296, 8.536529], [47.362623, 8.497109], [47.375839, 8.538197], [47.379899, 8.494499], [47.381918, 8.51647], [47.388162, 8.474], [47.365874, 8.53999], [47.418918, 8.508326], [47.400683, 8.548606], [47.374619, 8.550142], [47.373119, 8.529136], [47.375651, 8.535253], [47.375232, 8.534953], [47.365867, 8.532152], [47.367736, 8.552157], [47.405204, 8.551787], [47.375613, 8.516422], [47.345345, 8.534484], [47.369906, 8.52543], [47.373871, 8.544671], [47.399223, 8.542402], [47.378851, 8.49996], [47.354078, 8.557166], [47.355712, 8.556539], [47.378476, 8.510296], [47.361548, 8.561387], [47.393411, 8.500237], [47.422376, 8.548992], [47.368499, 8.555059], [47.426036, 8.493346], [47.3638, 8.551757], [47.36374, 8.547704], [47.399243, 8.522146], [47.366614, 8.533108], [47.386546, 8.541676], [47.37912, 8.522267], [47.41403, 8.526131], [47.406418, 8.481404], [47.355398, 8.520527], [47.366983, 8.491423], [47.391224, 8.538806], [47.358493, 8.571132], [47.335072, 8.518355], [47.357863, 8.514726], [47.372053, 8.529565], [47.388495, 8.475993], [47.36085, 8.513675], [47.42764, 8.549672], [47.406824, 8.552603], [47.407508, 8.547039], [47.395561, 8.526284], [47.388051, 8.49617], [47.370416, 8.514238], [47.372992, 8.547155], [47.366392, 8.559067], [47.431363, 8.51649], [47.374335, 8.524116], [47.375332, 8.516681], [47.352493, 8.531971], [47.371013, 8.555602], [47.39475, 8.525565], [47.374132, 8.502422], [47.36712, 8.52908], [47.363978, 8.546319], [47.410499, 8.550281], [47.370717, 8.51672], [47.382256, 8.533151], [47.374113, 8.540982], [47.3801, 8.52038], [47.355903, 8.535668], [47.407484, 8.489918], [47.375221, 8.547348], [47.368729, 8.501202], [47.358696, 8.516067], [47.359341, 8.580007], [47.414019, 8.519638], [47.384286, 8.525829], [47.414152, 8.518805], [47.360003, 8.594901], [47.400201, 8.54637], [47.417569, 8.554047], [47.361288, 8.522725], [47.393029, 8.474903], [47.371106, 8.524103], [47.369863, 8.529096], [47.387393, 8.486475], [47.3904, 8.475236], [47.409111, 8.48404], [47.377623, 8.52654], [47.386968, 8.51897], [47.362559, 8.563765], [47.391973, 8.492234], [47.367872, 8.501476], [47.399637, 8.495155], [47.391798, 8.518935], [47.355221, 8.574584], [47.366802, 8.544498], [47.340121, 8.525722], [47.40209, 8.498396], [47.40007, 8.536511], [47.408036, 8.577804], [47.413998, 8.549321], [47.382762, 8.514713], [47.371508, 8.546237], [47.423899, 8.54302], [47.377698, 8.537586], [47.407383, 8.585647], [47.366357, 8.544939], [47.356674, 8.532162], [47.375857, 8.495809], [47.386948, 8.48497], [47.364482, 8.553823], [47.402444, 8.576585], [47.379698, 8.527801], [47.403038, 8.547873], [47.403869, 8.568864], [47.389249, 8.510698], [47.382941, 8.514743], [47.378504, 8.539894], [47.328284, 8.52945], [47.391983, 8.529893], [47.402608, 8.498831], [47.370197, 8.548805], [47.359587, 8.576967], [47.374005, 8.544687], [47.366186, 8.540288], [47.414319, 8.53923], [47.364859, 8.602142], [47.356523, 8.52337], [47.405644, 8.556566], [47.362097, 8.531373], [47.377692, 8.538222], [47.367616, 8.534638], [47.336467, 8.520196], [47.409232, 8.573245], [47.403762, 8.534229], [47.382081, 8.498806], [47.352491, 8.508185], [47.367758, 8.496205], [47.419054, 8.537008], [47.389587, 8.511989], [47.344623, 8.533821], [47.388876, 8.495498], [47.329782, 8.529918], [47.37309, 8.533082], [47.363223, 8.560205], [47.37142, 8.556339], [47.407562, 8.550763], [47.376775, 8.535303], [47.398123, 8.535994], [47.377939, 8.541524], [47.376024, 8.510922], [47.401339, 8.58826], [47.391362, 8.53751], [47.40679, 8.536477], [47.391101, 8.522285], [47.422423, 8.55057], [47.369993, 8.522955], [47.402651, 8.535637], [47.36258, 8.534428], [47.373332, 8.515012], [47.403175, 8.580005], [47.388866, 8.539923], [47.418916, 8.544864], [47.397227, 8.491173], [47.364604, 8.566191], [47.39974, 8.518089], [47.374468, 8.535811], [47.367548, 8.546394], [47.378107, 8.509348], [47.414266, 8.546676], [47.40931, 8.577261], [47.368161, 8.544394], [47.372665, 8.498685], [47.338773, 8.538796], [47.382809, 8.527957], [47.378308, 8.517761], [47.40514, 8.481551], [47.40513, 8.481577], [47.367825, 8.523904], [47.372047, 8.568534], [47.37301, 8.562053], [47.385895, 8.492896], [47.409261, 8.543339], [47.340968, 8.536935], [47.384767, 8.537679], [47.386006, 8.51895], [47.386513, 8.529079], [47.395776, 8.526434], [47.372584, 8.534329], [47.38958, 8.521446], [47.381513, 8.502954], [47.414413, 8.483588], [47.369256, 8.529494], [47.400876, 8.594079], [47.386897, 8.534081], [47.385616, 8.508598], [47.369898, 8.510891], [47.37136, 8.542911], [47.364437, 8.536889], [47.366452, 8.540638], [47.374189, 8.544307], [47.359939, 8.559355], [47.391391, 8.52306], [47.409638, 8.505066], [47.362771, 8.53524], [47.393363, 8.497614], [47.36227, 8.559311], [47.374092, 8.553468], [47.397404, 8.532177], [47.412509, 8.538556], [47.398137, 8.465941], [47.353227, 8.534289], [47.383627, 8.536543], [47.363679, 8.532386], [47.37388, 8.524743], [47.386723, 8.523984], [47.348465, 8.523206], [47.398382, 8.541868], [47.389091, 8.53043], [47.384727, 8.534327], [47.383061, 8.530717], [47.373639, 8.535], [47.340314, 8.519467], [47.368574, 8.524595], [47.367373, 8.493999], [47.379803, 8.506853], [47.386796, 8.547496], [47.384781, 8.509363], [47.385408, 8.5087], [47.375418, 8.540876], [47.370406, 8.524897], [47.348031, 8.562876], [47.375655, 8.493316], [47.371173, 8.531374], [47.357817, 8.521622], [47.332427, 8.529839], [47.378865, 8.511072], [47.36225, 8.575991], [47.410432, 8.548756], [47.399518, 8.549165], [47.367081, 8.548264], [47.37048, 8.524739], [47.391321, 8.536225], [47.391087, 8.520921], [47.379024, 8.533469], [47.414457, 8.480673], [47.391855, 8.517704], [47.428677, 8.543808], [47.413137, 8.546242], [47.400803, 8.48862], [47.368162, 8.536807], [47.370188, 8.518431], [47.411701, 8.525978], [47.385769, 8.542123], [47.387136, 8.526946], [47.407604, 8.582379], [47.39087, 8.523022], [47.385193, 8.508682], [47.385084, 8.50872], [47.371444, 8.535961], [47.343998, 8.535185], [47.418869, 8.544161], [47.405168, 8.480399], [47.367639, 8.545402], [47.413624, 8.477291], [47.427195, 8.546362], [47.407229, 8.550743], [47.3706, 8.517671], [47.399707, 8.543432], [47.391299, 8.535628], [47.383718, 8.508653], [47.339785, 8.529818], [47.40034, 8.533681], [47.348267, 8.562656], [47.375349, 8.485417], [47.367715, 8.495052], [47.339182, 8.526008], [47.388134, 8.474066], [47.375918, 8.510721], [47.352971, 8.527096], [47.377202, 8.529207], [47.423707, 8.516627], [47.388305, 8.49101], [47.385515, 8.542317], [47.373354, 8.525195], [47.387824, 8.529292], [47.372577, 8.500392], [47.384019, 8.480608], [47.42324, 8.549818], [47.355403, 8.559656], [47.375341, 8.519515], [47.375713, 8.526832], [47.360449, 8.54945], [47.36431, 8.548259], [47.414054, 8.518737], [47.431327, 8.516476], [47.406766, 8.567852], [47.392425, 8.491012], [47.384686, 8.503189], [47.39064, 8.479532], [47.41075, 8.550326], [47.385014, 8.50852], [47.406446, 8.549866], [47.383406, 8.530473], [47.389743, 8.511688], [47.39885, 8.533293], [47.373988, 8.544594], [47.363099, 8.550763], [47.366355, 8.545111], [47.40779, 8.490838], [47.368025, 8.522664], [47.402309, 8.493154], [47.408854, 8.539846], [47.36035, 8.523884], [47.377477, 8.503628], [47.326706, 8.517379], [47.379016, 8.516107], [47.389356, 8.529018], [47.360862, 8.588141], [47.405325, 8.577269], [47.372571, 8.517552], [47.355816, 8.554105], [47.378036, 8.532349], [47.37719, 8.554897], [47.389558, 8.539023], [47.420945, 8.502125], [47.369508, 8.466779], [47.382404, 8.540279], [47.386652, 8.481878], [47.374306, 8.51764], [47.389165, 8.483503], [47.39476, 8.525433], [47.364981, 8.545877], [47.374823, 8.525848], [47.370359, 8.543181], [47.373067, 8.536524], [47.36651, 8.553336], [47.364374, 8.531248], [47.364102, 8.547487], [47.387344, 8.498699], [47.398387, 8.53943], [47.349923, 8.57459], [47.362141, 8.559613], [47.39303, 8.47477], [47.36844, 8.524486], [47.387102, 8.489781], [47.380071, 8.54815], [47.380189, 8.520527], [47.376602, 8.52697], [47.373748, 8.503116], [47.369031, 8.540943], [47.380477, 8.528108], [47.404674, 8.588477], [47.398701, 8.541477], [47.387187, 8.553676], [47.366924, 8.543057], [47.377514, 8.527611], [47.378885, 8.531042], [47.4026, 8.535304], [47.374937, 8.579295], [47.376327, 8.537055], [47.374067, 8.542901], [47.384773, 8.531362], [47.397111, 8.530793], [47.373162, 8.53687], [47.37902, 8.544235], [47.371635, 8.538626], [47.390709, 8.478805], [47.382772, 8.52993], [47.368859, 8.538212], [47.369301, 8.541849], [47.409386, 8.549967], [47.396715, 8.550656], [47.391075, 8.486163], [47.391082, 8.522404], [47.387819, 8.544047], [47.370411, 8.522487], [47.365816, 8.533727], [47.363206, 8.506017], [47.379234, 8.495426], [47.397131, 8.493741], [47.356569, 8.534662], [47.410759, 8.53432], [47.418711, 8.557768], [47.364651, 8.598722], [47.368105, 8.541797], [47.36747, 8.544287], [47.415909, 8.5452], [47.376329, 8.543464], [47.365274, 8.492395], [47.399533, 8.51521], [47.340029, 8.519157], [47.420945, 8.502111], [47.390124, 8.510397], [47.387061, 8.518667], [47.428554, 8.545356], [47.41877, 8.540395], [47.357104, 8.535242], [47.382696, 8.500408], [47.362249, 8.547422], [47.384155, 8.509046], [47.408832, 8.54867], [47.431756, 8.54354], [47.376061, 8.529024], [47.373733, 8.545847], [47.370793, 8.535365], [47.378228, 8.526248], [47.362503, 8.518805], [47.391084, 8.522272], [47.386575, 8.490406], [47.413927, 8.518827], [47.367772, 8.560473], [47.387861, 8.51769], [47.40174, 8.550046], [47.378766, 8.526484], [47.362131, 8.547552], [47.388254, 8.551208], [47.383067, 8.513845], [47.375148, 8.528569], [47.34093, 8.537186], [47.411614, 8.546594], [47.397673, 8.533203], [47.386214, 8.498346], [47.370672, 8.516733], [47.371551, 8.556739], [47.385, 8.487461], [47.374052, 8.532254], [47.354072, 8.523823], [47.386521, 8.490405], [47.380823, 8.54949], [47.357881, 8.508995], [47.368258, 8.529461], [47.375395, 8.519516], [47.361616, 8.554372], [47.380346, 8.542872], [47.359252, 8.569864], [47.390864, 8.533116], [47.38817, 8.520279], [47.376967, 8.569499], [47.362337, 8.52689], [47.378291, 8.53393], [47.368704, 8.499997], [47.380258, 8.541784], [47.409521, 8.537779], [47.391799, 8.518922], [47.391397, 8.538597], [47.362196, 8.559455], [47.390406, 8.539703], [47.366425, 8.540664], [47.34283, 8.536047], [47.39351, 8.529249], [47.395582, 8.535557], [47.36738, 8.496276], [47.375857, 8.53637], [47.379273, 8.491136], [47.364741, 8.568803], [47.389228, 8.541546], [47.367857, 8.546148], [47.358286, 8.581202], [47.378217, 8.527426], [47.397905, 8.532479], [47.373479, 8.534745], [47.381451, 8.542153], [47.356665, 8.523624], [47.374267, 8.518898], [47.382202, 8.550089], [47.394068, 8.493349], [47.378468, 8.528451], [47.383029, 8.57515], [47.381424, 8.54206], [47.422824, 8.494396], [47.364246, 8.521885], [47.358272, 8.515304], [47.399273, 8.533328], [47.364715, 8.532208], [47.383265, 8.529159], [47.337902, 8.538685], [47.379912, 8.528905], [47.383208, 8.539872], [47.383596, 8.52845], [47.362753, 8.518995], [47.369383, 8.541758], [47.376034, 8.538585], [47.358263, 8.585358], [47.336476, 8.521123], [47.387242, 8.48826], [47.419994, 8.506744], [47.390285, 8.509513], [47.402929, 8.57576], [47.369613, 8.533633], [47.398669, 8.539171], [47.397693, 8.4884], [47.421172, 8.549722], [47.369809, 8.536682], [47.414627, 8.551255], [47.377284, 8.525249], [47.367084, 8.541366], [47.406812, 8.58064], [47.36999, 8.510668], [47.398724, 8.590707], [47.37776, 8.53772], [47.378617, 8.492037], [47.405972, 8.558866], [47.396089, 8.485772], [47.368564, 8.496591], [47.411524, 8.544711], [47.381405, 8.53753], [47.376299, 8.511351], [47.356381, 8.551496], [47.378432, 8.543614], [47.425337, 8.54688], [47.419265, 8.547933], [47.362251, 8.547276], [47.391044, 8.522642], [47.373103, 8.527971], [47.363609, 8.554785], [47.373561, 8.529], [47.34876, 8.578523], [47.379372, 8.542229], [47.376964, 8.521932], [47.36795, 8.541132], [47.381167, 8.517898], [47.366562, 8.553602], [47.383211, 8.506034], [47.349143, 8.56421], [47.390269, 8.510268], [47.397017, 8.530261], [47.355278, 8.512172], [47.399809, 8.541262], [47.370188, 8.509732], [47.376955, 8.542841], [47.409012, 8.547733], [47.363443, 8.546745], [47.374534, 8.539269], [47.404176, 8.560471], [47.35236, 8.524092], [47.388048, 8.519852], [47.402854, 8.553938], [47.406736, 8.503723], [47.345385, 8.518829], [47.370088, 8.511742], [47.425604, 8.498241], [47.397891, 8.507043], [47.368619, 8.499465], [47.377523, 8.548402], [47.36342, 8.51983], [47.367719, 8.535077], [47.354713, 8.558411], [47.419809, 8.504355], [47.366809, 8.544723], [47.358284, 8.587742], [47.358586, 8.534452], [47.372402, 8.538285], [47.37211, 8.544409], [47.426831, 8.49197], [47.374299, 8.524115], [47.362222, 8.547474], [47.354806, 8.523229], [47.376342, 8.518238], [47.422545, 8.499334], [47.383399, 8.499349], [47.417191, 8.541887], [47.388516, 8.470629], [47.414244, 8.483399], [47.364455, 8.530257], [47.367117, 8.539751], [47.352404, 8.576576], [47.370695, 8.549385], [47.369844, 8.543436], [47.367831, 8.496087], [47.375248, 8.517924], [47.378929, 8.509033], [47.374751, 8.552264], [47.422845, 8.542202], [47.389128, 8.482628], [47.390939, 8.47824], [47.378385, 8.540977], [47.404344, 8.485033], [47.363094, 8.549386], [47.335067, 8.527459], [47.374453, 8.539294], [47.408712, 8.546229], [47.392916, 8.542523], [47.359562, 8.511954], [47.389301, 8.510818], [47.372959, 8.524168], [47.405139, 8.479577], [47.33419, 8.519317], [47.37018, 8.539311], [47.377909, 8.511291], [47.367612, 8.538821], [47.387927, 8.536473], [47.377489, 8.526405], [47.388783, 8.517258], [47.419255, 8.53574], [47.36127, 8.534084], [47.377171, 8.540025], [47.371718, 8.547804], [47.373626, 8.536377], [47.405073, 8.572706], [47.360381, 8.553698], [47.364511, 8.546119], [47.369683, 8.466293], [47.375722, 8.537347], [47.377322, 8.522204], [47.359128, 8.551156], [47.366419, 8.545046], [47.407723, 8.584038], [47.377335, 8.546372], [47.348548, 8.534378], [47.335059, 8.52734], [47.344045, 8.52833], [47.373486, 8.513916], [47.371612, 8.54759], [47.414235, 8.5405], [47.37474, 8.581052], [47.41406, 8.541928], [47.372173, 8.547271], [47.356715, 8.523043], [47.37435, 8.538735], [47.377197, 8.540171], [47.385863, 8.532179], [47.369671, 8.525637], [47.381129, 8.518163], [47.378547, 8.522997], [47.365814, 8.547165], [47.379504, 8.5274], [47.409982, 8.543195], [47.39984, 8.490708], [47.399877, 8.490576], [47.378768, 8.542323], [47.388334, 8.490772], [47.372406, 8.515947], [47.410225, 8.546963], [47.394454, 8.493436], [47.392745, 8.522557], [47.362482, 8.547559], [47.364814, 8.566792], [47.373118, 8.536816], [47.357092, 8.512593], [47.363607, 8.533377], [47.37236, 8.565098], [47.358287, 8.520387], [47.428766, 8.48888], [47.368738, 8.501216], [47.35843, 8.525288], [47.36531, 8.521563], [47.393326, 8.520993], [47.394604, 8.521906], [47.37289, 8.547445], [47.374779, 8.527648], [47.362779, 8.567914], [47.398243, 8.536659], [47.376948, 8.512159], [47.388688, 8.472474], [47.429754, 8.544029], [47.421013, 8.50748], [47.36908, 8.52528], [47.376726, 8.548981], [47.396042, 8.52685], [47.360753, 8.585491], [47.387592, 8.547035], [47.351869, 8.522746], [47.396805, 8.529833], [47.387121, 8.477794], [47.360957, 8.531046], [47.364689, 8.554715], [47.362159, 8.531441], [47.381087, 8.503289], [47.373943, 8.536118], [47.415484, 8.54637], [47.342466, 8.530693], [47.371718, 8.547791], [47.376, 8.537419], [47.383245, 8.484619], [47.407427, 8.587516], [47.374489, 8.540221], [47.402008, 8.535173], [47.413282, 8.56754], [47.389196, 8.543002], [47.388307, 8.536269], [47.371517, 8.53015], [47.423838, 8.552177], [47.370088, 8.511742], [47.393004, 8.514045], [47.357497, 8.526937], [47.376119, 8.503495], [47.369794, 8.53545], [47.374974, 8.517349], [47.344868, 8.533601], [47.385458, 8.524541], [47.348306, 8.562432], [47.368735, 8.534237], [47.422654, 8.499243], [47.364909, 8.545889], [47.38044, 8.548079], [47.390178, 8.536254], [47.369428, 8.541732], [47.38662, 8.518618], [47.400633, 8.534085], [47.39951, 8.503141], [47.364679, 8.554781], [47.364466, 8.532918], [47.403816, 8.496523], [47.370606, 8.558559], [47.369988, 8.549053], [47.370649, 8.54851], [47.396999, 8.530248], [47.417353, 8.554029], [47.374414, 8.530103], [47.409702, 8.549907], [47.408806, 8.54011], [47.403716, 8.557838], [47.364601, 8.532855], [47.40477, 8.488566], [47.36025, 8.566271], [47.375718, 8.510876], [47.377018, 8.5597], [47.399839, 8.54468], [47.409512, 8.537766], [47.383333, 8.515227], [47.420184, 8.535494], [47.407112, 8.573942], [47.385025, 8.532334], [47.398644, 8.512145], [47.36673, 8.54263], [47.378653, 8.529806], [47.360223, 8.594442], [47.370922, 8.53125], [47.369038, 8.541142], [47.377292, 8.512828], [47.404928, 8.557148], [47.379543, 8.542167], [47.423533, 8.548406], [47.389673, 8.512494], [47.367036, 8.541669], [47.386354, 8.518242], [47.403875, 8.569129], [47.369146, 8.52311], [47.418411, 8.546882], [47.364427, 8.534188], [47.361734, 8.517333], [47.390065, 8.523496], [47.358328, 8.505324], [47.377908, 8.54298], [47.335516, 8.51888], [47.407047, 8.576842], [47.39234, 8.476585], [47.391348, 8.516131], [47.366078, 8.533679], [47.373841, 8.536461], [47.360447, 8.53175], [47.374274, 8.543845], [47.396738, 8.529315], [47.370118, 8.524944], [47.391676, 8.518601], [47.425908, 8.493608], [47.369509, 8.525647], [47.385728, 8.482562], [47.368324, 8.538638], [47.379061, 8.53335], [47.422222, 8.549015], [47.362333, 8.547132], [47.37106, 8.547949], [47.363337, 8.514228], [47.371601, 8.535488], [47.367505, 8.494319], [47.3931, 8.47403], [47.387184, 8.539875], [47.384787, 8.55254], [47.365748, 8.521929], [47.356359, 8.522652], [47.390072, 8.511098], [47.384209, 8.510967], [47.38008, 8.520644], [47.390904, 8.492041], [47.393283, 8.586072], [47.37983, 8.544146], [47.337083, 8.519653], [47.357454, 8.521893], [47.377875, 8.57418], [47.35804, 8.519826], [47.427448, 8.536877], [47.390478, 8.488456], [47.414754, 8.553034], [47.377796, 8.537707], [47.378426, 8.540475], [47.379426, 8.52516], [47.378795, 8.54239], [47.377799, 8.511593], [47.393502, 8.48833], [47.369165, 8.503607], [47.390179, 8.52281], [47.404713, 8.572685], [47.36714, 8.531715], [47.387891, 8.498896], [47.375185, 8.553001], [47.394102, 8.527499], [47.378307, 8.530342], [47.374877, 8.549459], [47.374239, 8.519056], [47.401661, 8.547938], [47.368346, 8.493833], [47.393227, 8.512328], [47.390797, 8.523087], [47.377762, 8.521326], [47.404653, 8.550199], [47.411373, 8.544469], [47.381736, 8.529114], [47.378064, 8.526483], [47.387846, 8.536537], [47.364284, 8.53118], [47.349389, 8.527275], [47.370593, 8.543094], [47.340946, 8.526904], [47.396468, 8.528396], [47.377441, 8.499641], [47.337065, 8.519692], [47.379813, 8.506826], [47.396355, 8.513623], [47.38451, 8.543024], [47.377378, 8.512353], [47.375419, 8.529409], [47.380159, 8.527572], [47.39602, 8.4854], [47.398104, 8.536139], [47.382251, 8.504796], [47.357157, 8.522006], [47.37017, 8.548792], [47.383254, 8.539793], [47.376867, 8.527558], [47.380562, 8.534427], [47.408023, 8.546732], [47.405472, 8.503353], [47.372777, 8.558247], [47.412474, 8.509681], [47.37189, 8.522014], [47.387052, 8.533885], [47.386511, 8.497398], [47.389926, 8.512301], [47.404708, 8.552903], [47.356389, 8.523235], [47.369055, 8.553429], [47.384883, 8.532092], [47.361196, 8.53244], [47.373608, 8.536403], [47.368938, 8.540319], [47.376344, 8.558667], [47.3752, 8.515328], [47.376758, 8.538057], [47.414286, 8.51898], [47.377417, 8.52643], [47.38335, 8.515281], [47.392622, 8.523151], [47.368061, 8.538923], [47.363714, 8.533498], [47.397368, 8.541569], [47.376829, 8.538138], [47.369582, 8.54347], [47.376693, 8.538307], [47.386936, 8.53473], [47.372935, 8.547472], [47.349776, 8.533927], [47.378996, 8.530713], [47.368727, 8.548205], [47.361737, 8.549304], [47.37799, 8.526746], [47.372364, 8.534749], [47.413707, 8.556153], [47.421439, 8.550072], [47.384092, 8.531096], [47.377634, 8.527309], [47.39063, 8.508249], [47.397987, 8.539859], [47.367094, 8.5375], [47.388927, 8.550494], [47.391992, 8.51164], [47.343082, 8.519801], [47.351738, 8.575635], [47.372574, 8.534462], [47.350703, 8.601939], [47.374473, 8.495729], [47.376082, 8.577227], [47.399223, 8.542402], [47.403938, 8.568269], [47.398752, 8.590562], [47.385983, 8.490182], [47.380562, 8.534427], [47.393402, 8.537725], [47.368003, 8.540246], [47.413007, 8.536287], [47.395408, 8.518717], [47.373807, 8.542869], [47.344842, 8.533415], [47.389946, 8.536037], [47.374932, 8.536192], [47.392016, 8.526437], [47.343062, 8.530494], [47.372757, 8.538808], [47.378716, 8.527953], [47.358505, 8.555128], [47.376583, 8.528029], [47.386839, 8.551483], [47.364098, 8.546031], [47.41915, 8.547719], [47.367576, 8.529367], [47.423376, 8.549702], [47.379409, 8.521253], [47.398932, 8.520855], [47.413586, 8.553858], [47.392268, 8.516825], [47.376004, 8.527461], [47.370792, 8.543018], [47.392614, 8.523137], [47.335153, 8.519243], [47.421179, 8.548092], [47.363024, 8.548272], [47.412717, 8.552488], [47.375412, 8.545299], [47.374438, 8.544643], [47.395795, 8.545272], [47.421775, 8.546952], [47.409008, 8.53969], [47.421935, 8.537651], [47.408562, 8.550559], [47.415527, 8.54649], [47.370882, 8.549574], [47.369821, 8.552306], [47.386816, 8.518821], [47.385728, 8.493488], [47.371063, 8.542918], [47.378404, 8.525696], [47.38173, 8.536424], [47.404397, 8.574692], [47.382491, 8.515767], [47.383306, 8.530484], [47.397978, 8.524744], [47.379374, 8.490913], [47.370814, 8.548222], [47.374245, 8.527001], [47.383253, 8.539873], [47.374573, 8.517023], [47.371634, 8.502147], [47.356463, 8.535481], [47.355859, 8.535561], [47.387045, 8.485117], [47.375416, 8.484982], [47.402397, 8.503185], [47.375936, 8.525155], [47.384655, 8.542855], [47.389285, 8.521242], [47.38948, 8.521537], [47.382384, 8.530094], [47.420113, 8.500677], [47.426822, 8.491956], [47.361799, 8.549332], [47.374922, 8.525876], [47.365385, 8.546891], [47.37258, 8.534779], [47.373494, 8.519849], [47.386788, 8.547495], [47.367109, 8.558353], [47.415051, 8.527477], [47.393683, 8.537492], [47.368261, 8.524403], [47.358166, 8.518929], [47.409099, 8.545191], [47.361528, 8.565239], [47.373636, 8.542852], [47.40427, 8.485177], [47.380168, 8.550232], [47.407908, 8.574396], [47.414476, 8.553863], [47.339768, 8.535415], [47.390538, 8.53903], [47.369721, 8.531742], [47.373468, 8.513969], [47.362496, 8.534744], [47.37849, 8.523234], [47.37333, 8.531511], [47.337484, 8.524862], [47.388998, 8.515434], [47.378903, 8.523388], [47.383289, 8.530431], [47.389678, 8.511898], [47.367706, 8.495025], [47.399464, 8.477571], [47.377757, 8.507315], [47.405017, 8.557176], [47.380519, 8.552967], [47.427734, 8.490609], [47.387948, 8.519956], [47.392042, 8.512092], [47.40613, 8.504108], [47.365217, 8.545683], [47.373389, 8.531909], [47.388937, 8.530493], [47.377063, 8.54197], [47.363463, 8.551247], [47.386245, 8.531789], [47.368321, 8.551203], [47.367128, 8.564749], [47.373942, 8.474942], [47.364927, 8.53167], [47.37271, 8.542793], [47.399002, 8.541894], [47.386806, 8.547483], [47.389347, 8.521402], [47.379816, 8.526744], [47.381373, 8.538059], [47.388186, 8.514716], [47.395875, 8.532132], [47.371117, 8.542919], [47.360291, 8.567543], [47.409036, 8.548012], [47.370598, 8.52077], [47.388008, 8.528925], [47.427738, 8.548812], [47.340696, 8.519091], [47.377824, 8.532888], [47.382335, 8.48378], [47.365031, 8.548129], [47.379925, 8.546479], [47.398294, 8.536991], [47.413212, 8.545939], [47.36491, 8.529683], [47.370255, 8.539022], [47.388424, 8.488787], [47.397023, 8.53054], [47.36524, 8.564656], [47.376757, 8.538176], [47.373487, 8.534851], [47.34436, 8.530269], [47.353697, 8.558429], [47.372686, 8.534941], [47.356416, 8.523248], [47.380161, 8.520619], [47.366642, 8.524423], [47.397518, 8.532471], [47.364223, 8.526267], [47.410938, 8.550423], [47.357256, 8.521968], [47.407075, 8.552767], [47.414308, 8.550798], [47.403949, 8.561605], [47.370294, 8.492389], [47.39682, 8.534006], [47.356472, 8.551432], [47.365984, 8.531175], [47.362099, 8.554607], [47.406816, 8.569258], [47.370284, 8.535884], [47.370039, 8.534277], [47.357439, 8.58865], [47.366925, 8.545732], [47.362496, 8.533804], [47.356861, 8.507412], [47.365425, 8.538882], [47.378191, 8.52642], [47.421434, 8.548694], [47.421434, 8.548694], [47.364577, 8.566231], [47.383482, 8.531878], [47.374997, 8.539755], [47.36538, 8.530448], [47.386941, 8.528558], [47.363679, 8.549345], [47.375513, 8.486202], [47.370358, 8.548875], [47.42685, 8.491877], [47.351959, 8.558591], [47.40718, 8.546476], [47.37345, 8.531222], [47.325805, 8.518538], [47.369805, 8.526646], [47.386621, 8.54136], [47.383238, 8.506074], [47.37429, 8.47916], [47.393784, 8.502748], [47.408877, 8.545888], [47.360296, 8.56528], [47.419698, 8.546789], [47.385944, 8.498446], [47.374113, 8.540942], [47.352368, 8.559129], [47.375447, 8.549166], [47.395269, 8.508448], [47.365775, 8.547509], [47.374728, 8.520615], [47.374145, 8.529104], [47.355784, 8.559307], [47.39054, 8.491544], [47.40908, 8.55004], [47.390695, 8.550862], [47.391692, 8.513992], [47.41877, 8.540395], [47.397946, 8.48035], [47.368568, 8.529043], [47.36969, 8.543525], [47.365186, 8.547893], [47.382049, 8.529385], [47.38344, 8.530593], [47.369115, 8.541567], [47.368731, 8.537468], [47.383062, 8.530704], [47.36129, 8.529199], [47.426183, 8.502852], [47.41151, 8.526239], [47.378664, 8.54191], [47.360457, 8.547676], [47.418238, 8.482377], [47.369365, 8.541744], [47.36186, 8.553252], [47.335326, 8.519088], [47.418261, 8.5466], [47.385243, 8.54247], [47.385678, 8.542174], [47.38509, 8.499264], [47.35849, 8.517876], [47.343696, 8.530057], [47.378616, 8.505928], [47.38696, 8.5284], [47.399257, 8.542535], [47.405127, 8.5854], [47.377038, 8.528449], [47.356488, 8.53564], [47.366876, 8.549928], [47.357792, 8.554464], [47.425924, 8.493754], [47.373214, 8.542804], [47.36709, 8.53979], [47.421439, 8.536898], [47.360608, 8.504946], [47.399532, 8.494848], [47.389195, 8.521253], [47.369204, 8.527454], [47.376238, 8.544508], [47.402413, 8.553001], [47.383403, 8.484079], [47.369586, 8.539365], [47.353831, 8.601253], [47.363099, 8.522312], [47.351981, 8.560087], [47.365387, 8.5316], [47.350242, 8.530323], [47.348317, 8.533209], [47.349524, 8.533961], [47.403672, 8.571497], [47.398651, 8.532547], [47.343332, 8.518986], [47.381368, 8.512777], [47.417989, 8.544978], [47.371989, 8.51239], [47.37222, 8.520405], [47.410684, 8.571924], [47.369344, 8.526914], [47.388632, 8.485731], [47.413212, 8.475136], [47.335092, 8.518091], [47.365876, 8.531186], [47.360121, 8.535741], [47.385775, 8.548931], [47.358593, 8.52132], [47.392714, 8.523007], [47.406925, 8.550538], [47.384412, 8.532427], [47.373326, 8.531948], [47.376527, 8.521552], [47.380945, 8.518583], [47.375346, 8.540888], [47.378573, 8.542094], [47.343344, 8.525391], [47.389803, 8.529266], [47.372005, 8.522241], [47.380494, 8.528268], [47.363151, 8.52925], [47.370852, 8.554605], [47.378929, 8.545293], [47.38879, 8.530848], [47.376916, 8.541371], [47.375331, 8.530188], [47.395494, 8.531502], [47.366774, 8.535163], [47.389162, 8.520935], [47.399614, 8.542808], [47.385517, 8.508583], [47.370179, 8.548805], [47.373501, 8.542823], [47.373924, 8.533403], [47.365108, 8.553214], [47.335942, 8.537613], [47.408688, 8.580123], [47.378542, 8.565811], [47.396777, 8.541358], [47.389118, 8.524695], [47.328707, 8.517909], [47.354344, 8.523643], [47.388257, 8.497287], [47.391724, 8.518285], [47.36789, 8.522701], [47.394629, 8.487969], [47.368139, 8.508605], [47.381047, 8.528756], [47.37058, 8.524543], [47.350045, 8.566731], [47.383457, 8.515402], [47.370175, 8.540808], [47.392984, 8.528735], [47.388493, 8.491093], [47.372211, 8.520471], [47.379604, 8.54426], [47.377137, 8.554803], [47.360371, 8.523633], [47.357008, 8.571246], [47.368632, 8.544086], [47.367928, 8.557431], [47.368966, 8.519293], [47.385635, 8.482931], [47.422108, 8.504759], [47.396357, 8.482942], [47.368739, 8.523274], [47.397816, 8.541856], [47.372289, 8.521678], [47.409735, 8.543667], [47.365557, 8.539203], [47.402418, 8.535552], [47.412262, 8.546475], [47.40081, 8.491866], [47.370399, 8.514158], [47.378055, 8.526509], [47.406826, 8.48703], [47.373287, 8.535099], [47.39013, 8.525153], [47.360143, 8.54763], [47.374815, 8.515122], [47.371236, 8.525629], [47.387709, 8.540508], [47.376468, 8.51154], [47.414103, 8.519228], [47.363878, 8.566851], [47.391422, 8.478554], [47.376473, 8.528278], [47.383362, 8.548298], [47.36927, 8.510786], [47.376747, 8.49784], [47.411053, 8.546941], [47.387252, 8.488168], [47.356936, 8.535808], [47.364918, 8.554322], [47.413075, 8.517631], [47.359327, 8.569628], [47.409439, 8.54639], [47.369371, 8.537348], [47.366577, 8.540799], [47.36909, 8.539448], [47.381506, 8.530672], [47.402088, 8.497615], [47.364831, 8.53797], [47.404497, 8.533502], [47.38374, 8.51211], [47.364656, 8.566418], [47.429736, 8.543048], [47.395534, 8.532099], [47.408866, 8.574787], [47.412591, 8.525161], [47.366148, 8.545186], [47.374552, 8.489957], [47.41212, 8.564057], [47.410877, 8.563262], [47.388967, 8.515831], [47.36412, 8.537147], [47.380371, 8.507778], [47.335911, 8.540867], [47.383116, 8.540175], [47.366121, 8.533813], [47.374469, 8.53944], [47.419139, 8.507787], [47.387563, 8.529353], [47.360804, 8.551827], [47.386661, 8.497692], [47.377468, 8.54844], [47.374344, 8.524116], [47.392142, 8.524505], [47.427886, 8.490639], [47.419782, 8.548394], [47.403065, 8.588403], [47.368423, 8.54714], [47.391288, 8.473438], [47.409093, 8.562588], [47.374166, 8.542982], [47.373093, 8.52421], [47.38655, 8.528047], [47.375728, 8.527203], [47.384427, 8.531858], [47.398567, 8.591141], [47.370088, 8.512775], [47.363913, 8.566971], [47.410721, 8.556183], [47.351763, 8.525483], [47.368911, 8.540331], [47.356011, 8.551687], [47.393363, 8.524795], [47.351661, 8.524872], [47.36598, 8.540178], [47.375419, 8.513134], [47.409853, 8.537826], [47.373933, 8.53151], [47.382846, 8.5316], [47.374016, 8.546382], [47.407488, 8.562064], [47.373871, 8.544658], [47.390253, 8.491485], [47.388048, 8.519813], [47.357325, 8.570049], [47.409252, 8.543365], [47.377362, 8.548253], [47.405963, 8.558852], [47.37581, 8.484221], [47.375257, 8.517911], [47.370464, 8.532075], [47.368274, 8.534413], [47.368765, 8.50119], [47.386175, 8.535324], [47.409432, 8.54048], [47.378804, 8.54239], [47.370161, 8.548805], [47.371433, 8.524719], [47.376804, 8.535091], [47.398864, 8.542275], [47.373182, 8.529111], [47.373288, 8.533099], [47.37959, 8.524965], [47.338025, 8.52474], [47.366922, 8.523317], [47.391031, 8.521171], [47.379995, 8.521013], [47.366612, 8.535147], [47.380133, 8.540735], [47.403427, 8.570842], [47.375304, 8.485456], [47.374823, 8.525834], [47.413754, 8.520043], [47.373174, 8.503926], [47.355434, 8.603763], [47.372384, 8.53455], [47.330269, 8.516287], [47.37818, 8.527545], [47.397037, 8.503992], [47.365107, 8.553307], [47.410571, 8.538039], [47.412288, 8.51523], [47.368052, 8.53981], [47.356694, 8.523413], [47.365667, 8.5465], [47.415508, 8.546622], [47.340184, 8.519981], [47.357944, 8.520473], [47.397136, 8.530979], [47.409834, 8.51787], [47.398628, 8.53301], [47.373617, 8.536377], [47.334776, 8.533487], [47.393337, 8.527497], [47.385279, 8.494367], [47.378174, 8.526247], [47.375634, 8.553103], [47.353268, 8.561862], [47.37445, 8.54614], [47.378138, 8.493285], [47.379196, 8.538054], [47.377715, 8.51183], [47.421727, 8.550012], [47.378849, 8.530962], [47.401784, 8.517866], [47.412441, 8.517114], [47.399434, 8.517182], [47.409708, 8.54458], [47.392483, 8.515902], [47.376182, 8.536191], [47.411996, 8.56102], [47.36329, 8.575458], [47.39569, 8.516444], [47.362428, 8.551291], [47.367707, 8.539181], [47.37607, 8.488305], [47.383139, 8.529169], [47.368163, 8.545122], [47.385906, 8.498578], [47.37602, 8.541842], [47.405312, 8.547126], [47.397849, 8.535525], [47.394126, 8.488939], [47.374889, 8.516858], [47.389612, 8.512268], [47.33125, 8.513435], [47.374048, 8.475156], [47.340983, 8.526852], [47.432598, 8.527743], [47.37518, 8.518453], [47.356539, 8.523608], [47.393535, 8.483655], [47.369573, 8.543483], [47.393434, 8.500622], [47.39792, 8.501904], [47.403452, 8.488129], [47.367506, 8.535761], [47.370572, 8.512957], [47.377537, 8.492174], [47.379875, 8.558145], [47.374064, 8.486293], [47.377207, 8.540013], [47.402929, 8.57576], [47.422586, 8.550507], [47.373271, 8.533019], [47.367397, 8.544351], [47.419502, 8.506522], [47.382639, 8.529702], [47.380982, 8.518491], [47.370188, 8.539444], [47.374397, 8.542325], [47.384979, 8.495738], [47.370251, 8.54882], [47.393726, 8.512854], [47.406773, 8.532595], [47.356572, 8.551315], [47.368172, 8.496147], [47.410402, 8.548159], [47.397854, 8.533975], [47.395142, 8.525931], [47.41411, 8.548899], [47.400026, 8.545824], [47.357621, 8.557267], [47.383131, 8.531964], [47.372509, 8.517405], [47.362723, 8.53549], [47.40676, 8.541485], [47.374451, 8.546047], [47.36795, 8.541119], [47.371501, 8.547879], [47.383334, 8.539861], [47.368167, 8.523885], [47.360832, 8.561041], [47.363993, 8.547591], [47.402171, 8.499418], [47.391185, 8.539189], [47.402955, 8.498268], [47.403472, 8.487917], [47.365346, 8.538761], [47.373968, 8.542978], [47.372374, 8.532776], [47.428226, 8.48985], [47.39317, 8.524222], [47.404929, 8.486966], [47.369494, 8.526282], [47.355386, 8.55677], [47.358839, 8.582564], [47.382127, 8.528725], [47.377477, 8.543806], [47.386144, 8.528131], [47.389012, 8.484454], [47.384385, 8.531526], [47.360588, 8.597574], [47.366037, 8.51983], [47.372829, 8.520709], [47.364061, 8.556396], [47.36522, 8.492474], [47.358252, 8.508658], [47.351901, 8.504877], [47.401224, 8.543821], [47.394759, 8.523605], [47.368769, 8.52489], [47.372953, 8.546585], [47.34801, 8.534248], [47.41717, 8.512585], [47.36261, 8.535064], [47.393004, 8.534246], [47.389701, 8.486918], [47.387277, 8.499214], [47.400963, 8.518074], [47.372882, 8.519836], [47.366607, 8.541409], [47.380985, 8.538197], [47.40309, 8.547159], [47.369548, 8.538557], [47.373181, 8.528224], [47.353702, 8.556947], [47.406211, 8.53306], [47.417239, 8.553682], [47.377666, 8.543757], [47.36453, 8.497054], [47.387935, 8.499042], [47.397527, 8.588032], [47.362346, 8.526824], [47.366204, 8.530729], [47.379748, 8.529126], [47.381623, 8.520159], [47.360932, 8.571978], [47.413919, 8.551042], [47.374523, 8.546075], [47.374385, 8.521747], [47.398861, 8.506201], [47.408399, 8.546938], [47.377353, 8.498434], [47.362876, 8.533653], [47.37198, 8.53633], [47.372339, 8.538297], [47.362159, 8.547513], [47.379576, 8.516767], [47.381925, 8.536693], [47.386257, 8.548412], [47.378006, 8.512551], [47.364965, 8.534279], [47.389682, 8.511541], [47.38814, 8.49143], [47.370178, 8.53759], [47.388102, 8.519854], [47.391705, 8.518377], [47.419809, 8.500459], [47.364604, 8.595358], [47.370182, 8.52958], [47.360202, 8.535743], [47.386529, 8.539729], [47.361591, 8.535401], [47.370331, 8.548888], [47.374214, 8.544519], [47.35664, 8.523385], [47.34405, 8.530699], [47.370516, 8.516107], [47.360596, 8.524512], [47.36798, 8.540828], [47.390768, 8.508874], [47.383886, 8.542376], [47.364371, 8.552272], [47.36468, 8.547181], [47.361616, 8.526028], [47.403837, 8.570281], [47.357702, 8.588391], [47.363826, 8.562097], [47.357392, 8.521865], [47.403173, 8.497968], [47.382011, 8.516167], [47.363344, 8.533597], [47.390909, 8.521712], [47.385126, 8.508059], [47.431376, 8.543784], [47.425259, 8.543737], [47.339277, 8.529358], [47.367672, 8.539088], [47.367009, 8.541656], [47.339805, 8.530546], [47.37803, 8.528178], [47.386344, 8.518308], [47.396254, 8.51472], [47.385993, 8.529824], [47.357479, 8.572726], [47.41739, 8.512059], [47.380617, 8.537156], [47.383723, 8.540611], [47.405177, 8.487342], [47.37302, 8.532908], [47.419728, 8.50442], [47.369081, 8.541341], [47.368446, 8.54665], [47.392359, 8.503077], [47.357903, 8.520115], [47.398115, 8.585951], [47.380636, 8.512153], [47.371169, 8.514545], [47.421009, 8.501993], [47.365254, 8.509235], [47.398564, 8.591472], [47.403663, 8.534266], [47.370408, 8.528565], [47.373006, 8.546653], [47.393419, 8.50033], [47.377441, 8.499628], [47.37669, 8.501123], [47.365753, 8.565594], [47.355398, 8.534837], [47.354022, 8.553605], [47.420533, 8.502965], [47.399786, 8.542785], [47.335754, 8.529974], [47.396336, 8.513649], [47.368936, 8.529104], [47.379925, 8.545538], [47.379884, 8.524309], [47.370732, 8.565024], [47.383865, 8.492617], [47.329934, 8.514652], [47.399538, 8.495166], [47.364259, 8.546153], [47.371463, 8.515742], [47.409092, 8.573785], [47.411874, 8.528671], [47.391426, 8.492051], [47.360423, 8.526653], [47.418515, 8.508172], [47.416462, 8.511272], [47.386195, 8.504305], [47.376861, 8.543329], [47.397109, 8.492296], [47.375841, 8.540885], [47.393347, 8.527457], [47.351228, 8.559727], [47.409485, 8.544337], [47.422668, 8.551357], [47.360711, 8.585226], [47.376459, 8.52694], [47.370253, 8.489951], [47.326405, 8.515957], [47.348365, 8.562817], [47.387491, 8.48653], [47.404714, 8.549472], [47.378647, 8.541804], [47.426301, 8.505572], [47.35613, 8.556111], [47.374886, 8.544758], [47.35439, 8.523498], [47.420743, 8.502585], [47.372549, 8.547385], [47.387642, 8.486838], [47.368834, 8.539866], [47.362489, 8.51057], [47.34482, 8.519585], [47.392448, 8.492456], [47.403077, 8.575339], [47.383272, 8.539833], [47.374789, 8.536056], [47.403489, 8.48601], [47.387231, 8.486512], [47.381038, 8.537271], [47.382709, 8.493151], [47.378583, 8.541021], [47.43078, 8.54022], [47.367284, 8.544892], [47.374403, 8.541663], [47.376934, 8.541292], [47.374978, 8.551077], [47.359783, 8.534397], [47.381534, 8.571635], [47.36753, 8.523713], [47.359279, 8.569918], [47.390705, 8.50882], [47.411206, 8.544108], [47.373816, 8.533441], [47.403676, 8.571179], [47.38619, 8.49612], [47.383075, 8.574992], [47.383896, 8.577539], [47.374555, 8.538952], [47.329383, 8.516824], [47.372245, 8.535964], [47.360164, 8.568653], [47.370953, 8.524153], [47.41964, 8.548219], [47.403091, 8.589357], [47.402351, 8.499316], [47.384483, 8.542971], [47.369513, 8.526176], [47.428327, 8.489666], [47.361344, 8.550845], [47.362499, 8.53448], [47.409133, 8.545443], [47.373772, 8.524674], [47.370325, 8.524948], [47.426589, 8.54676], [47.367364, 8.494025], [47.370822, 8.548302], [47.428572, 8.54256], [47.354973, 8.554829], [47.383229, 8.506034], [47.378026, 8.516166], [47.401169, 8.501677], [47.368724, 8.51243], [47.373742, 8.538339], [47.397568, 8.532922], [47.392163, 8.495086], [47.374813, 8.551431], [47.385101, 8.530918], [47.361944, 8.548342], [47.385068, 8.48492], [47.388417, 8.536032], [47.36719, 8.535926], [47.387133, 8.524364], [47.377371, 8.496528], [47.372154, 8.56316], [47.396274, 8.527981], [47.370571, 8.526516], [47.412583, 8.523133], [47.378189, 8.522725], [47.37741, 8.500064], [47.362856, 8.512722], [47.397026, 8.530288], [47.367651, 8.495104], [47.375616, 8.544601], [47.373479, 8.534745], [47.410479, 8.532538], [47.35254, 8.525089], [47.366157, 8.540499], [47.386446, 8.493688], [47.38649, 8.493729], [47.376861, 8.54329], [47.378392, 8.519299], [47.367025, 8.522882], [47.378858, 8.542338], [47.37867, 8.527105], [47.386967, 8.489791], [47.363737, 8.526283], [47.37806, 8.510565], [47.367924, 8.494765], [47.3616, 8.549474], [47.386941, 8.528545], [47.380492, 8.54265], [47.367495, 8.519727], [47.383124, 8.530719], [47.361417, 8.548914], [47.409503, 8.542522], [47.35076, 8.534529], [47.386843, 8.490623], [47.392082, 8.517523], [47.409548, 8.537753], [47.407857, 8.583127], [47.373645, 8.546639], [47.369488, 8.525911], [47.420817, 8.502347], [47.36366, 8.533418], [47.389705, 8.511952], [47.378256, 8.541385], [47.389473, 8.511709], [47.373241, 8.519036], [47.381984, 8.51614], [47.353232, 8.527035], [47.427871, 8.511939], [47.390598, 8.467186], [47.356381, 8.522189], [47.359359, 8.596343], [47.388275, 8.526307], [47.375881, 8.510786], [47.404654, 8.554757], [47.398032, 8.532309], [47.408472, 8.578264], [47.373747, 8.535982], [47.367888, 8.564328], [47.425982, 8.493384], [47.406984, 8.541635], [47.38803, 8.519812], [47.383011, 8.57507], [47.375569, 8.496797], [47.391659, 8.513634], [47.398445, 8.494734], [47.357015, 8.52559], [47.382472, 8.528388], [47.420506, 8.548887], [47.360295, 8.591743], [47.414833, 8.546675], [47.387871, 8.519557], [47.362256, 8.532595], [47.368489, 8.562606], [47.374794, 8.549643], [47.368863, 8.502291], [47.369433, 8.537442], [47.369454, 8.541892], [47.336337, 8.530091], [47.374889, 8.518778], [47.394338, 8.48938], [47.396745, 8.532402], [47.378637, 8.499705], [47.344306, 8.535006], [47.372062, 8.521898], [47.405822, 8.590622], [47.378867, 8.526195], [47.370688, 8.564943], [47.385616, 8.508598], [47.373168, 8.531521], [47.375551, 8.544799], [47.368745, 8.540765], [47.396404, 8.540873], [47.392258, 8.533197], [47.375161, 8.515671], [47.36969, 8.525531], [47.366252, 8.540846], [47.361616, 8.506753], [47.409964, 8.535668], [47.398515, 8.494934], [47.366647, 8.494792], [47.370768, 8.526559], [47.365835, 8.556195], [47.400557, 8.548683], [47.374685, 8.537604], [47.393859, 8.504353], [47.384747, 8.531335], [47.383021, 8.545377], [47.363133, 8.560282], [47.366521, 8.540944], [47.403635, 8.485774], [47.398479, 8.500789], [47.381382, 8.540894], [47.385855, 8.517715], [47.358741, 8.516121], [47.367328, 8.545965], [47.377399, 8.510049], [47.342535, 8.531039], [47.391032, 8.536298], [47.425349, 8.543726], [47.364705, 8.548413], [47.389751, 8.485356], [47.369333, 8.526159], [47.392551, 8.502803], [47.364527, 8.530271], [47.388136, 8.520093], [47.382714, 8.529399], [47.353636, 8.601897], [47.353445, 8.602118], [47.382515, 8.483823], [47.362824, 8.508472], [47.399638, 8.468182], [47.378789, 8.523042], [47.343074, 8.535827], [47.361952, 8.548409], [47.382725, 8.48641], [47.378966, 8.542327], [47.417232, 8.544101], [47.370115, 8.548896], [47.392695, 8.475068], [47.378561, 8.523434], [47.386748, 8.486158], [47.381478, 8.503761], [47.380876, 8.543889], [47.376133, 8.488267], [47.365559, 8.554018], [47.39352, 8.532958], [47.370251, 8.557214], [47.37504, 8.539941], [47.336134, 8.541057], [47.38279, 8.548856], [47.377808, 8.529802], [47.36904, 8.540956], [47.399295, 8.54239], [47.380249, 8.541784], [47.377031, 8.540592], [47.393674, 8.490109], [47.37326, 8.51889], [47.393649, 8.505673], [47.404811, 8.576503], [47.413039, 8.55643], [47.413011, 8.556496], [47.35293, 8.510312], [47.368628, 8.524543], [47.368768, 8.528796], [47.384237, 8.538582], [47.378406, 8.523656], [47.37017, 8.548805], [47.391504, 8.519644], [47.420368, 8.503226], [47.367984, 8.540352], [47.396273, 8.514654], [47.360975, 8.531033], [47.408844, 8.55674], [47.389295, 8.479002], [47.401346, 8.545175], [47.371971, 8.493852], [47.377303, 8.541339], [47.394925, 8.48612], [47.392148, 8.495761], [47.388561, 8.483664], [47.388025, 8.485189], [47.406183, 8.537896], [47.372063, 8.547388], [47.391113, 8.478919], [47.372601, 8.547598], [47.35059, 8.576299], [47.366639, 8.547434], [47.385894, 8.54496], [47.38921, 8.541546], [47.365862, 8.533648], [47.429917, 8.53926], [47.387571, 8.529459], [47.377478, 8.543726], [47.364973, 8.502703], [47.362586, 8.561952], [47.392679, 8.539101], [47.405108, 8.572733], [47.388503, 8.491066], [47.342536, 8.530999], [47.377458, 8.510527], [47.370932, 8.548106], [47.355006, 8.556074], [47.405306, 8.486973], [47.393794, 8.501623], [47.392365, 8.539015], [47.366504, 8.541817], [47.416394, 8.546151], [47.366242, 8.537218], [47.374914, 8.5475], [47.392714, 8.532491], [47.378082, 8.52651], [47.364203, 8.531165], [47.373931, 8.538383], [47.38963, 8.492744], [47.421439, 8.549131], [47.374816, 8.517955], [47.373852, 8.538103], [47.365565, 8.546869], [47.364051, 8.526369], [47.36593, 8.51007], [47.381452, 8.534432], [47.376299, 8.554945], [47.389547, 8.513485], [47.363974, 8.551456], [47.407151, 8.586305], [47.41734, 8.523257], [47.372808, 8.525873], [47.369793, 8.53553], [47.374326, 8.525136], [47.388003, 8.519812], [47.409133, 8.545443], [47.369164, 8.53263], [47.393865, 8.506618], [47.420487, 8.50303], [47.337492, 8.519185], [47.404391, 8.556792], [47.378036, 8.543698], [47.370108, 8.51925], [47.399597, 8.542741], [47.379052, 8.554022], [47.359121, 8.592221], [47.36262, 8.562165], [47.385401, 8.522951], [47.32468, 8.516637], [47.345129, 8.53358], [47.408964, 8.539623], [47.401501, 8.543006], [47.39278, 8.502318], [47.376003, 8.543629], [47.371797, 8.536644], [47.402989, 8.503383], [47.375917, 8.538516], [47.408747, 8.54627], [47.383657, 8.506427], [47.369444, 8.533404], [47.369943, 8.556467], [47.399847, 8.544786], [47.409937, 8.545062], [47.396126, 8.520798], [47.365007, 8.538437], [47.399946, 8.544788], [47.404509, 8.569673], [47.415686, 8.570056], [47.369369, 8.533813], [47.398925, 8.541561], [47.367092, 8.544292], [47.361712, 8.574034], [47.384064, 8.532195], [47.32859, 8.51313], [47.372695, 8.53404], [47.374922, 8.544746], [47.392041, 8.500528], [47.393429, 8.473493], [47.429371, 8.487672], [47.394824, 8.486343], [47.373137, 8.547039], [47.415542, 8.529873], [47.352031, 8.519863], [47.375746, 8.516623], [47.408156, 8.52613], [47.388434, 8.517013], [47.420444, 8.547772], [47.369544, 8.541801], [47.388446, 8.520536], [47.385369, 8.538764], [47.359045, 8.549473], [47.398712, 8.532681], [47.39458, 8.487411], [47.374316, 8.524248], [47.371176, 8.535717], [47.408801, 8.544389], [47.398997, 8.533058], [47.378534, 8.541417], [47.392102, 8.523975], [47.394907, 8.486093], [47.370313, 8.548861], [47.411055, 8.545748], [47.394856, 8.525726], [47.371078, 8.518462], [47.413851, 8.547807], [47.332485, 8.517906], [47.37831, 8.541333], [47.385109, 8.550851], [47.354042, 8.558092], [47.364284, 8.546339], [47.384209, 8.51098], [47.383408, 8.499349], [47.430544, 8.549799], [47.377815, 8.507912], [47.358964, 8.534433], [47.362209, 8.504951], [47.359715, 8.594008], [47.378962, 8.559596], [47.367816, 8.506533], [47.415227, 8.553388], [47.369521, 8.526282], [47.369296, 8.528171], [47.356663, 8.551211], [47.33688, 8.53922], [47.371748, 8.521826], [47.405029, 8.577143], [47.386776, 8.502781], [47.39016, 8.510358], [47.408548, 8.565929], [47.359218, 8.547385], [47.372736, 8.511451], [47.382874, 8.499723], [47.365407, 8.545541], [47.372979, 8.546705], [47.392118, 8.545063], [47.404688, 8.554042], [47.376731, 8.524801], [47.365498, 8.521672], [47.366727, 8.561563], [47.375228, 8.515209], [47.375013, 8.545569], [47.360261, 8.52285], [47.389254, 8.546381], [47.393168, 8.531083], [47.413203, 8.545938], [47.378884, 8.542431], [47.359861, 8.549768], [47.382914, 8.548117], [47.375695, 8.524025], [47.364411, 8.546156], [47.385151, 8.508298], [47.362556, 8.534136], [47.367992, 8.551712], [47.390282, 8.525262], [47.383061, 8.530717], [47.392103, 8.535274], [47.362619, 8.558497], [47.430003, 8.537751], [47.357862, 8.572204], [47.356566, 8.532147], [47.369414, 8.539402], [47.374885, 8.501749], [47.365433, 8.545582], [47.398776, 8.494899], [47.369796, 8.533358], [47.409608, 8.549335], [47.386788, 8.519867], [47.377599, 8.538551], [47.376169, 8.553525], [47.377004, 8.544339], [47.395401, 8.526122], [47.37724, 8.48221], [47.377346, 8.526323], [47.383871, 8.529807], [47.34972, 8.532258], [47.393385, 8.483295], [47.383301, 8.506022], [47.360518, 8.528031], [47.376823, 8.535065], [47.376907, 8.541304], [47.372838, 8.536917], [47.377516, 8.548203], [47.369293, 8.525669], [47.360981, 8.565109], [47.394564, 8.514673], [47.398466, 8.537776], [47.375085, 8.54565], [47.396508, 8.5289], [47.35328, 8.512331], [47.380945, 8.492228], [47.369187, 8.527282], [47.373855, 8.530237], [47.365178, 8.518409], [47.365967, 8.531108], [47.363851, 8.566904], [47.396235, 8.514839], [47.39258, 8.533336], [47.37246, 8.550084], [47.371662, 8.547949], [47.367266, 8.523125], [47.427174, 8.554195], [47.396982, 8.486385], [47.340138, 8.530527], [47.397189, 8.531113], [47.39331, 8.524635], [47.398149, 8.465689], [47.383289, 8.488672], [47.400134, 8.489985], [47.369089, 8.56201], [47.396931, 8.513581], [47.34181, 8.525955], [47.36882, 8.518509], [47.382859, 8.543454], [47.37758, 8.511853], [47.376026, 8.515556], [47.394693, 8.490897], [47.404123, 8.56402], [47.377043, 8.533666], [47.394808, 8.524176], [47.381836, 8.536599], [47.378727, 8.522974], [47.374027, 8.513821], [47.408983, 8.539464], [47.374263, 8.540296], [47.363471, 8.534433], [47.40628, 8.558726], [47.392135, 8.499099], [47.378432, 8.510202], [47.366288, 8.519901], [47.387681, 8.488388], [47.422976, 8.494558], [47.383832, 8.531051], [47.373895, 8.513448], [47.378233, 8.499604], [47.405142, 8.480332], [47.372517, 8.517525], [47.391389, 8.478248], [47.376985, 8.539743], [47.369345, 8.525802], [47.374362, 8.521309], [47.364902, 8.547504], [47.365379, 8.567889], [47.362363, 8.504822], [47.3699, 8.510772], [47.372078, 8.510551], [47.357369, 8.521415], [47.379418, 8.55983], [47.367336, 8.523325], [47.422468, 8.540233], [47.403399, 8.550531], [47.420167, 8.50366], [47.390579, 8.539534], [47.387633, 8.518069], [47.395085, 8.522393], [47.389761, 8.511675], [47.367363, 8.541305], [47.396084, 8.545132], [47.367092, 8.523386], [47.420122, 8.509411], [47.335127, 8.51919], [47.419203, 8.546858], [47.377239, 8.528082], [47.417428, 8.511875], [47.4076, 8.486051], [47.371115, 8.520277], [47.405148, 8.557629], [47.392887, 8.525633], [47.368957, 8.502809], [47.396937, 8.512945], [47.368873, 8.552737], [47.389895, 8.475305], [47.427022, 8.54657], [47.414038, 8.548884], [47.376858, 8.541767], [47.3777, 8.543095], [47.38841, 8.520522], [47.371151, 8.516398], [47.372987, 8.514409], [47.369701, 8.516647], [47.368879, 8.539894], [47.375887, 8.553863], [47.377139, 8.529166], [47.368592, 8.528435], [47.33131, 8.514707], [47.37758, 8.53867], [47.414321, 8.518093], [47.392673, 8.51584], [47.362104, 8.547565], [47.374049, 8.541073], [47.37658, 8.538874], [47.386754, 8.531137], [47.385312, 8.539995], [47.365647, 8.532558], [47.412055, 8.546564], [47.340171, 8.519372], [47.387608, 8.529367], [47.390369, 8.479619], [47.376731, 8.524787], [47.378669, 8.510842], [47.374487, 8.539453], [47.359253, 8.581633], [47.394061, 8.525167], [47.392882, 8.514652], [47.374534, 8.580014], [47.35361, 8.554337], [47.407027, 8.547413], [47.378097, 8.557856], [47.367682, 8.520949], [47.372861, 8.47602], [47.419632, 8.555575], [47.363242, 8.5675], [47.378532, 8.502364], [47.381383, 8.503348], [47.324745, 8.518384], [47.396176, 8.544949], [47.362825, 8.567901], [47.358407, 8.556887], [47.394838, 8.525753], [47.380304, 8.519801], [47.410359, 8.524307], [47.396884, 8.530034], [47.375911, 8.537285], [47.378209, 8.530247], [47.371166, 8.538749], [47.362186, 8.526662], [47.369314, 8.528185], [47.386047, 8.482091], [47.394588, 8.521694], [47.364056, 8.550385], [47.388273, 8.516996], [47.42121, 8.537252], [47.386587, 8.520286], [47.378064, 8.526523], [47.377996, 8.526045], [47.408981, 8.571358], [47.387544, 8.496518], [47.390495, 8.522723], [47.376935, 8.541199], [47.392427, 8.492707], [47.380154, 8.528062], [47.39655, 8.504181], [47.414778, 8.481037], [47.397585, 8.586735], [47.386302, 8.497579], [47.374428, 8.539995], [47.378053, 8.51038], [47.367638, 8.541761], [47.378369, 8.528529], [47.365742, 8.550884], [47.411768, 8.513046], [47.410444, 8.569812], [47.399266, 8.53305], [47.378312, 8.496851], [47.373732, 8.476262], [47.349885, 8.576548], [47.391191, 8.489252], [47.358291, 8.553998], [47.383591, 8.574646], [47.363331, 8.548133], [47.403661, 8.571735], [47.369228, 8.527746], [47.386791, 8.523443], [47.427306, 8.552581], [47.375736, 8.584926], [47.407752, 8.47817], [47.383878, 8.542336], [47.405075, 8.560543], [47.371635, 8.522393], [47.353892, 8.561438], [47.368033, 8.538989], [47.395127, 8.493555], [47.364972, 8.55431], [47.353943, 8.578342], [47.374413, 8.49631], [47.367965, 8.540444], [47.408617, 8.550481], [47.420982, 8.502086], [47.374627, 8.541747], [47.410559, 8.572743], [47.391327, 8.538424], [47.37429, 8.522222], [47.381836, 8.533751], [47.353595, 8.576151], [47.368396, 8.524432], [47.399437, 8.548143], [47.407341, 8.58713], [47.369468, 8.555318], [47.383121, 8.486457], [47.422868, 8.499406], [47.374826, 8.518816], [47.388429, 8.520443], [47.37914, 8.53065], [47.351554, 8.525678], [47.363038, 8.518273], [47.406357, 8.5039], [47.361983, 8.533913], [47.37868, 8.523145], [47.366549, 8.540891], [47.390845, 8.5455], [47.374971, 8.536828], [47.368294, 8.551228], [47.390091, 8.491456], [47.362454, 8.504731], [47.354043, 8.526893], [47.422622, 8.510442], [47.363802, 8.535552], [47.424401, 8.543163], [47.37262, 8.534317], [47.393636, 8.491327], [47.367109, 8.539711], [47.372979, 8.546705], [47.360246, 8.504171], [47.414822, 8.519376], [47.398796, 8.506386], [47.371515, 8.515982], [47.371756, 8.54284], [47.370734, 8.516827], [47.367315, 8.541622], [47.413945, 8.540799], [47.383222, 8.529913], [47.368467, 8.54722], [47.368574, 8.524595], [47.370681, 8.532], [47.363992, 8.55143], [47.366406, 8.548263], [47.379838, 8.564739], [47.385222, 8.527715], [47.38618, 8.548039], [47.360225, 8.566019], [47.374455, 8.539956], [47.374922, 8.545699], [47.381388, 8.513466], [47.37396, 8.524863], [47.37477, 8.527621], [47.373266, 8.535469], [47.346995, 8.528404], [47.37387, 8.542883], [47.36056, 8.552881], [47.370805, 8.491564], [47.357461, 8.523151], [47.380004, 8.528681], [47.37909, 8.538807], [47.391187, 8.538898], [47.390897, 8.522069], [47.392412, 8.492442], [47.376674, 8.559958], [47.386433, 8.518495], [47.372732, 8.534875], [47.367498, 8.545095], [47.410593, 8.527187], [47.36909, 8.541368], [47.357181, 8.523211], [47.366666, 8.535174], [47.378341, 8.510293], [47.354273, 8.575861], [47.394973, 8.525689], [47.379129, 8.54229], [47.414589, 8.517277], [47.375886, 8.536092], [47.361111, 8.555368], [47.375541, 8.517414], [47.402159, 8.502611], [47.400093, 8.590564], [47.403452, 8.488103], [47.372978, 8.536443], [47.341692, 8.526032], [47.3932, 8.530647], [47.369239, 8.525628], [47.357317, 8.598986], [47.364528, 8.547165], [47.404257, 8.579724], [47.328076, 8.529539], [47.352852, 8.511012], [47.396316, 8.540646], [47.372858, 8.535725], [47.375183, 8.550339], [47.370143, 8.548804], [47.391016, 8.542709], [47.373761, 8.544841], [47.412693, 8.517119], [47.371361, 8.547506], [47.373122, 8.534499], [47.37393, 8.476253], [47.412991, 8.536062], [47.407529, 8.543833], [47.399673, 8.495142], [47.360273, 8.565703], [47.37434, 8.514953], [47.39672, 8.529288], [47.355259, 8.555007], [47.390192, 8.491259], [47.422613, 8.550521], [47.371185, 8.555513], [47.374811, 8.529012], [47.371541, 8.487726], [47.400698, 8.538564], [47.419862, 8.507404], [47.381469, 8.513495], [47.38837, 8.539118], [47.364057, 8.536193], [47.371352, 8.547426], [47.375064, 8.529865], [47.400807, 8.5385], [47.375155, 8.550524], [47.376428, 8.528237], [47.382808, 8.515535], [47.383076, 8.514785], [47.367411, 8.546655], [47.415958, 8.507419], [47.384835, 8.531548], [47.372989, 8.475811], [47.392873, 8.514652], [47.379448, 8.527544], [47.366934, 8.544765], [47.414278, 8.551102], [47.384333, 8.531273], [47.375662, 8.487635], [47.380088, 8.520697], [47.409928, 8.543167], [47.380923, 8.53809], [47.370088, 8.525208], [47.375936, 8.535617], [47.369922, 8.547502], [47.390257, 8.509579], [47.362735, 8.518995], [47.409367, 8.544534], [47.412798, 8.540338], [47.401694, 8.548243], [47.426711, 8.492299], [47.426841, 8.49189], [47.379352, 8.495282], [47.409466, 8.537897], [47.360138, 8.595777], [47.38696, 8.5284], [47.392264, 8.517236], [47.361162, 8.521677], [47.355622, 8.560296], [47.354356, 8.574777], [47.41424, 8.518092], [47.386194, 8.497564], [47.397534, 8.540287], [47.369338, 8.525603], [47.38286, 8.529164], [47.364834, 8.566646], [47.388767, 8.488688], [47.417185, 8.507019], [47.376596, 8.544701], [47.37028, 8.514315], [47.382639, 8.529689], [47.369616, 8.488747], [47.396827, 8.540829], [47.373133, 8.53148], [47.367099, 8.541684], [47.421149, 8.509246], [47.408511, 8.546556], [47.377247, 8.538716], [47.375196, 8.518705], [47.369359, 8.527219], [47.366425, 8.540624], [47.39358, 8.524614], [47.409548, 8.537753], [47.397431, 8.532191], [47.332096, 8.532439], [47.379188, 8.537908], [47.368069, 8.540883], [47.366435, 8.545219], [47.390054, 8.538927], [47.393976, 8.530385], [47.397482, 8.532457], [47.412721, 8.529457], [47.369829, 8.535504], [47.380894, 8.518251], [47.40156, 8.545339], [47.403384, 8.556784], [47.389709, 8.511502], [47.391486, 8.519644], [47.367021, 8.544145], [47.349521, 8.565065], [47.386951, 8.528386], [47.392479, 8.502775], [47.394916, 8.486093], [47.389918, 8.512248], [47.373699, 8.54476], [47.389064, 8.535198], [47.399425, 8.497641], [47.374776, 8.501839], [47.380036, 8.520484], [47.413829, 8.52455], [47.400828, 8.517144], [47.378478, 8.510097], [47.413267, 8.532582], [47.386121, 8.526793], [47.388466, 8.519424], [47.342491, 8.530906], [47.362269, 8.559337], [47.423634, 8.539727], [47.383272, 8.530298], [47.386209, 8.525047], [47.364742, 8.521697], [47.381288, 8.535634], [47.384417, 8.531911], [47.385019, 8.531022], [47.369108, 8.547949], [47.36823, 8.55124], [47.407718, 8.583561], [47.408186, 8.558753], [47.391061, 8.489647], [47.392165, 8.495801], [47.363333, 8.553561], [47.347424, 8.533376], [47.412104, 8.543305], [47.379083, 8.542369], [47.390729, 8.489614], [47.382443, 8.540929], [47.367036, 8.541669], [47.411115, 8.526178], [47.33509, 8.519295], [47.366504, 8.519919], [47.427204, 8.546336], [47.357564, 8.520796], [47.357515, 8.523125], [47.375024, 8.539769], [47.36583, 8.532231], [47.37733, 8.535619], [47.358162, 8.527017], [47.36456, 8.595211], [47.375155, 8.550537], [47.385236, 8.507875], [47.369437, 8.528479], [47.36794, 8.544071], [47.33262, 8.517882], [47.377016, 8.538393], [47.378581, 8.540253], [47.385069, 8.508468], [47.388632, 8.533295], [47.378381, 8.540461], [47.387661, 8.49954], [47.375346, 8.561426], [47.386898, 8.535008], [47.378265, 8.541332], [47.355211, 8.530848], [47.37058, 8.492553], [47.407489, 8.546151], [47.35135, 8.576725], [47.422018, 8.502902], [47.409568, 8.544193], [47.37655, 8.543866], [47.396777, 8.541345], [47.370783, 8.558947], [47.360248, 8.566483], [47.365184, 8.56484], [47.403128, 8.537488], [47.377053, 8.542062], [47.398666, 8.539476], [47.373884, 8.53662], [47.357881, 8.549912], [47.430915, 8.543947], [47.406549, 8.550385], [47.391379, 8.514714], [47.379467, 8.527439], [47.38578, 8.548402], [47.35784, 8.519174], [47.351202, 8.559647], [47.390886, 8.522215], [47.432448, 8.528456], [47.412393, 8.516517], [47.38775, 8.518098], [47.369408, 8.52583], [47.4004, 8.548136], [47.411611, 8.509611], [47.383447, 8.539374], [47.388514, 8.488815], [47.393627, 8.512918], [47.383295, 8.484103], [47.412227, 8.554876], [47.347921, 8.524558], [47.377309, 8.53873], [47.380342, 8.528145], [47.338297, 8.531164], [47.376047, 8.540969], [47.369735, 8.525492], [47.375887, 8.515964], [47.386705, 8.547639], [47.360288, 8.534262], [47.370919, 8.535407], [47.372007, 8.520123], [47.355058, 8.562786], [47.417898, 8.504873], [47.406899, 8.481002], [47.389218, 8.48459], [47.374386, 8.541596], [47.425935, 8.493609], [47.425935, 8.493596], [47.383045, 8.528598], [47.379959, 8.52876], [47.385163, 8.50798], [47.405261, 8.555247], [47.359646, 8.593675], [47.374041, 8.49764], [47.40514, 8.481471], [47.35969, 8.586567], [47.370399, 8.538045], [47.390777, 8.470276], [47.37689, 8.542191], [47.387293, 8.539771], [47.39721, 8.587336], [47.419669, 8.546987], [47.394511, 8.487132], [47.371692, 8.473071], [47.372452, 8.518715], [47.378965, 8.542433], [47.386118, 8.52131], [47.35478, 8.574614], [47.368539, 8.562064], [47.378984, 8.542367], [47.377293, 8.539551], [47.409594, 8.537675], [47.383632, 8.573243], [47.361811, 8.560228], [47.410365, 8.479613], [47.392877, 8.489802], [47.36897, 8.528442], [47.408283, 8.574629], [47.372074, 8.487472], [47.38168, 8.516849], [47.42856, 8.542891], [47.371003, 8.530245], [47.352812, 8.57624], [47.369306, 8.538472], [47.36941, 8.505347], [47.360064, 8.595921], [47.398524, 8.494921], [47.365116, 8.55328], [47.371065, 8.515033], [47.391885, 8.511585], [47.341406, 8.521024], [47.357727, 8.554635], [47.37361, 8.536204], [47.36051, 8.512582], [47.369858, 8.552201], [47.399831, 8.542759], [47.383748, 8.549273], [47.403964, 8.569237], [47.418029, 8.506241], [47.409596, 8.479174], [47.377716, 8.51175], [47.379882, 8.494379], [47.36799, 8.536936], [47.380024, 8.485695], [47.413873, 8.544521], [47.339911, 8.52986], [47.365622, 8.532372], [47.370382, 8.524605], [47.377178, 8.535523], [47.414293, 8.518238], [47.411398, 8.544669], [47.407382, 8.554496], [47.377975, 8.548146], [47.397401, 8.540086], [47.391389, 8.538478], [47.373915, 8.540978], [47.339815, 8.53048], [47.406919, 8.481758], [47.367889, 8.539992], [47.394907, 8.48608], [47.360938, 8.553802], [47.398684, 8.53941], [47.374457, 8.539757], [47.371747, 8.547527], [47.355982, 8.572191], [47.362273, 8.513584], [47.3977, 8.533177], [47.412931, 8.522398], [47.394856, 8.525753], [47.39476, 8.52542], [47.392796, 8.474858], [47.376319, 8.544497], [47.365923, 8.545142], [47.38121, 8.54383], [47.375517, 8.563297], [47.375506, 8.563482], [47.40891, 8.539582], [47.391662, 8.519105], [47.390791, 8.538982], [47.38691, 8.526995], [47.391372, 8.537471], [47.380869, 8.538075], [47.363336, 8.499771], [47.421035, 8.502113], [47.381174, 8.517144], [47.364677, 8.548452], [47.374255, 8.536429], [47.366014, 8.545091], [47.390241, 8.467802], [47.362446, 8.533393], [47.380276, 8.51992], [47.374558, 8.53866], [47.36402, 8.528725], [47.361493, 8.561479], [47.355996, 8.552296], [47.402822, 8.491151], [47.410353, 8.540155], [47.428339, 8.490329], [47.380109, 8.52038], [47.386915, 8.53416], [47.367887, 8.540204], [47.385989, 8.516817], [47.382001, 8.584478], [47.373092, 8.504057], [47.388352, 8.536256], [47.416776, 8.513279], [47.377149, 8.498152], [47.421888, 8.508161], [47.418261, 8.546627], [47.38615, 8.517973], [47.42308, 8.542075], [47.377093, 8.540699], [47.391625, 8.519157], [47.364182, 8.551302], [47.391467, 8.486595], [47.393727, 8.493196], [47.375614, 8.541052], [47.353377, 8.575471], [47.42377, 8.545244], [47.378775, 8.545409], [47.37772, 8.53809], [47.404171, 8.56373], [47.388847, 8.479868], [47.423866, 8.539838], [47.34974, 8.533913], [47.383876, 8.529251], [47.400555, 8.493106], [47.368185, 8.529618], [47.393718, 8.47228], [47.377227, 8.539815], [47.392055, 8.497985], [47.370692, 8.519368], [47.391354, 8.49201], [47.36596, 8.503941], [47.392895, 8.473854], [47.391363, 8.537404], [47.379014, 8.542977], [47.39073, 8.508065], [47.369527, 8.511201], [47.388582, 8.49124], [47.380308, 8.505803], [47.353799, 8.556181], [47.377229, 8.498299], [47.378928, 8.559383], [47.372797, 8.535552], [47.377845, 8.52971], [47.397235, 8.530968], [47.353026, 8.577317], [47.378996, 8.559742], [47.379014, 8.559809], [47.386223, 8.498346], [47.373858, 8.536554], [47.373145, 8.53683], [47.363508, 8.535228], [47.370188, 8.548792], [47.376175, 8.515003], [47.364817, 8.532872], [47.364638, 8.566457], [47.36248, 8.568212], [47.403769, 8.545729], [47.388613, 8.472896], [47.366315, 8.53804], [47.370595, 8.494791], [47.348972, 8.562406], [47.387247, 8.518962], [47.413318, 8.572113], [47.356493, 8.510172], [47.411037, 8.545787], [47.35823, 8.571405], [47.349885, 8.576548], [47.361223, 8.5503], [47.382765, 8.535452], [47.378883, 8.545384], [47.358002, 8.525836], [47.42627, 8.55468], [47.402048, 8.546077], [47.367872, 8.532299], [47.38654, 8.520444], [47.358328, 8.57146], [47.344039, 8.529905], [47.370541, 8.527746], [47.365818, 8.546728], [47.376278, 8.522196], [47.377716, 8.510784], [47.391782, 8.518776], [47.364936, 8.531683], [47.398067, 8.534376], [47.374487, 8.539493], [47.371234, 8.515301], [47.394738, 8.529645], [47.381369, 8.542178], [47.374955, 8.496135], [47.341514, 8.519147], [47.38933, 8.488076], [47.32976, 8.516938], [47.369022, 8.540956], [47.377614, 8.498466], [47.366824, 8.555315], [47.366565, 8.541977], [47.379049, 8.518372], [47.369089, 8.541487], [47.373885, 8.536567], [47.385518, 8.521033], [47.36807, 8.554799], [47.430472, 8.540452], [47.38078, 8.528432], [47.374015, 8.544581], [47.375445, 8.535156], [47.383402, 8.574708], [47.386266, 8.475804], [47.415867, 8.512453], [47.400328, 8.543458], [47.362765, 8.527283], [47.368332, 8.546317], [47.350017, 8.576856], [47.356001, 8.528151], [47.37017, 8.548792], [47.39157, 8.478093], [47.393314, 8.496102], [47.366609, 8.540217], [47.399947, 8.587156], [47.404965, 8.491842], [47.397579, 8.532631], [47.414318, 8.518424], [47.373928, 8.536754], [47.369357, 8.532184], [47.378634, 8.505849], [47.399376, 8.54793], [47.387882, 8.539319], [47.395552, 8.532099], [47.370316, 8.524948], [47.422445, 8.499464], [47.413254, 8.545356], [47.367689, 8.53922], [47.386768, 8.523018], [47.390441, 8.539796], [47.366978, 8.543919], [47.370039, 8.534264], [47.365267, 8.564617], [47.384756, 8.531348], [47.366883, 8.534119], [47.39651, 8.542001], [47.376477, 8.534555], [47.392565, 8.471463], [47.384341, 8.548385], [47.400217, 8.546556], [47.407388, 8.544453], [47.4089, 8.549056], [47.378543, 8.541444], [47.402333, 8.499315], [47.365621, 8.532452], [47.372398, 8.521561], [47.361786, 8.526164], [47.347114, 8.528155], [47.403327, 8.547734], [47.378184, 8.483248], [47.383371, 8.499375], [47.408319, 8.55062], [47.356339, 8.555864], [47.386946, 8.501936], [47.363598, 8.533311], [47.388588, 8.538884], [47.393776, 8.528645], [47.36804, 8.534514], [47.337106, 8.519124], [47.371852, 8.538499], [47.392839, 8.490026], [47.391595, 8.478319], [47.39236, 8.503064], [47.420478, 8.50307], [47.36277, 8.567953], [47.362816, 8.572469], [47.373271, 8.533019], [47.362243, 8.55931], [47.364425, 8.548513], [47.36844, 8.524486], [47.393385, 8.499111], [47.366629, 8.547553], [47.378682, 8.54199], [47.392396, 8.528087], [47.371334, 8.530464], [47.377467, 8.544838], [47.40071, 8.548673], [47.370804, 8.510194], [47.39164, 8.525277], [47.414134, 8.52172], [47.376474, 8.534873], [47.415383, 8.546527], [47.398387, 8.53947], [47.392071, 8.499217], [47.3835, 8.531865], [47.380531, 8.5128], [47.400193, 8.546291], [47.35818, 8.59543], [47.389698, 8.535688], [47.351661, 8.525812], [47.362556, 8.53411], [47.375323, 8.525222], [47.34228, 8.524761], [47.377486, 8.543806], [47.371981, 8.520056], [47.378267, 8.526911], [47.418912, 8.507067], [47.370802, 8.526798], [47.344984, 8.53363], [47.409703, 8.549828], [47.391366, 8.515125], [47.378785, 8.542495], [47.380321, 8.542712], [47.400461, 8.543686], [47.378654, 8.569045], [47.367338, 8.537333], [47.408047, 8.542346], [47.360423, 8.526679], [47.372191, 8.473504], [47.386235, 8.518451], [47.392468, 8.476336], [47.359249, 8.569229], [47.399132, 8.542466], [47.375936, 8.577396], [47.364358, 8.526256], [47.387142, 8.485424], [47.36605, 8.548838], [47.378054, 8.510287], [47.381298, 8.510644], [47.373426, 8.535684], [47.395813, 8.524382], [47.33896, 8.538111], [47.426867, 8.491931], [47.364338, 8.531155], [47.382735, 8.486278], [47.389915, 8.492088], [47.380343, 8.528066], [47.366305, 8.534319], [47.427582, 8.546396], [47.370106, 8.548883], [47.37893, 8.531017], [47.39553, 8.482873], [47.420702, 8.547155], [47.379445, 8.529809], [47.370718, 8.547016], [47.366707, 8.523219], [47.388001, 8.484937], [47.364869, 8.566713], [47.377707, 8.510797], [47.368148, 8.534476], [47.412719, 8.540137], [47.377628, 8.538366], [47.377017, 8.548616], [47.395201, 8.537709], [47.359597, 8.54918], [47.384855, 8.509205], [47.398178, 8.473519], [47.382901, 8.515232], [47.381182, 8.551378], [47.369491, 8.528466], [47.406961, 8.550592], [47.388893, 8.516042], [47.371533, 8.504356], [47.375176, 8.560377], [47.372987, 8.500837], [47.397399, 8.533674], [47.383327, 8.539676], [47.42534, 8.494657], [47.374853, 8.493512], [47.387326, 8.498712], [47.386259, 8.482519], [47.382193, 8.492491], [47.393654, 8.529146], [47.376059, 8.53595], [47.363503, 8.526318], [47.390305, 8.510308], [47.34531, 8.529613], [47.419004, 8.538492], [47.417163, 8.541038], [47.391529, 8.525606], [47.363355, 8.533359], [47.417056, 8.510277], [47.368708, 8.528556], [47.359353, 8.557661], [47.406186, 8.493178], [47.375967, 8.541841], [47.37959, 8.553292], [47.377386, 8.512393], [47.392692, 8.524331], [47.408737, 8.549251], [47.384975, 8.485289], [47.374984, 8.553262], [47.425989, 8.49357], [47.36424, 8.53486], [47.364808, 8.532859], [47.371951, 8.51652], [47.399408, 8.516095], [47.419513, 8.555784], [47.368963, 8.540478], [47.403191, 8.491092], [47.390172, 8.525512], [47.386181, 8.482292], [47.401926, 8.581701], [47.390585, 8.539799], [47.372346, 8.538495], [47.358201, 8.554036], [47.375887, 8.543587], [47.395741, 8.539667], [47.366834, 8.543082], [47.357454, 8.521893], [47.364013, 8.546386], [47.357272, 8.52316], [47.359675, 8.587176], [47.374742, 8.518205], [47.391282, 8.505771], [47.394907, 8.486119], [47.393621, 8.510627], [47.384004, 8.543252], [47.376563, 8.540556], [47.409886, 8.543816], [47.397491, 8.532457], [47.429962, 8.549574], [47.404302, 8.55577], [47.420414, 8.503174], [47.419988, 8.482796], [47.372052, 8.536371], [47.38681, 8.486238], [47.366682, 8.560688], [47.370676, 8.537269], [47.381694, 8.513486], [47.368706, 8.528728], [47.363605, 8.574551], [47.373041, 8.534484], [47.405863, 8.58111], [47.387954, 8.536447], [47.406698, 8.584837], [47.391828, 8.517651], [47.378549, 8.575187], [47.380988, 8.503208], [47.401653, 8.499951], [47.364559, 8.566243], [47.393313, 8.495175], [47.405015, 8.496229], [47.362278, 8.547303], [47.367637, 8.53432], [47.357312, 8.554746], [47.369858, 8.491864], [47.421005, 8.549387], [47.370939, 8.548291], [47.369782, 8.50983], [47.362805, 8.56806], [47.396979, 8.530499], [47.395174, 8.545299], [47.426533, 8.544108], [47.395188, 8.48484], [47.369332, 8.554507], [47.374921, 8.534457], [47.370161, 8.548805], [47.342745, 8.533571], [47.413624, 8.477304], [47.372454, 8.55452], [47.373859, 8.538328], [47.373894, 8.536568], [47.399379, 8.522043], [47.406585, 8.551313], [47.425294, 8.5523], [47.404659, 8.549537], [47.385608, 8.548517], [47.386356, 8.493633], [47.36861, 8.524635], [47.374523, 8.546075], [47.363002, 8.533603], [47.375722, 8.557859], [47.35529, 8.530096], [47.412859, 8.537662], [47.343837, 8.521709], [47.372254, 8.537792], [47.368516, 8.496921], [47.420114, 8.548454], [47.353341, 8.525039], [47.367764, 8.563226], [47.383553, 8.543349], [47.410166, 8.538018], [47.389723, 8.511913], [47.375283, 8.541853], [47.378572, 8.542133], [47.378582, 8.542067], [47.39335, 8.493109], [47.352532, 8.602548], [47.373438, 8.52002], [47.369377, 8.526266], [47.370332, 8.513548], [47.38342, 8.572841], [47.369426, 8.52677], [47.368979, 8.528416], [47.350199, 8.561095], [47.373885, 8.536567], [47.361748, 8.526362], [47.366765, 8.535203], [47.394715, 8.525472], [47.368732, 8.528808], [47.369421, 8.511928], [47.392232, 8.524547], [47.412206, 8.549588], [47.365119, 8.554922], [47.401188, 8.543834], [47.38532, 8.508513], [47.387492, 8.487457], [47.369445, 8.525751], [47.354839, 8.528352], [47.384065, 8.50123], [47.376064, 8.52774], [47.370307, 8.532574], [47.383247, 8.532933], [47.374209, 8.536508], [47.364501, 8.550898], [47.392407, 8.5028], [47.358382, 8.574188], [47.374438, 8.540856], [47.397204, 8.491742], [47.34942, 8.561595], [47.368867, 8.547732], [47.370994, 8.530245], [47.386941, 8.528558], [47.375409, 8.52476], [47.374112, 8.515293], [47.377256, 8.538716], [47.387679, 8.519858], [47.379143, 8.511196], [47.375522, 8.562728], [47.402341, 8.499448], [47.381668, 8.5153], [47.387308, 8.537294], [47.41185, 8.554736], [47.371063, 8.523917], [47.39489, 8.485987], [47.374509, 8.53907], [47.424861, 8.537406], [47.376293, 8.522541], [47.39212, 8.524015], [47.370215, 8.548819], [47.378341, 8.540884], [47.374214, 8.524564], [47.371792, 8.601539], [47.388936, 8.530586], [47.394132, 8.493218], [47.414148, 8.551484], [47.333451, 8.535709], [47.365101, 8.534255], [47.397172, 8.540518], [47.3864, 8.525753], [47.362457, 8.556693], [47.371178, 8.524078], [47.389723, 8.511913], [47.380244, 8.52037], [47.409512, 8.537766], [47.392266, 8.523726], [47.345031, 8.529647], [47.371279, 8.528715], [47.419696, 8.504962], [47.366619, 8.548559], [47.360741, 8.598385], [47.392395, 8.532975], [47.404965, 8.491842], [47.367181, 8.490487], [47.373063, 8.500335], [47.405636, 8.58129], [47.409521, 8.537766], [47.379295, 8.527541], [47.373314, 8.536979], [47.360925, 8.547646], [47.372346, 8.523281], [47.370161, 8.548818], [47.412389, 8.523659], [47.382298, 8.514319], [47.375698, 8.544563], [47.427593, 8.546118], [47.356577, 8.535787], [47.371095, 8.523362], [47.364137, 8.570696], [47.394306, 8.526841], [47.392061, 8.517748], [47.378912, 8.526196], [47.361539, 8.561374], [47.37326, 8.535111], [47.396935, 8.530366], [47.408382, 8.581071], [47.372088, 8.515331], [47.380414, 8.519552], [47.396813, 8.541372], [47.358456, 8.532106], [47.370555, 8.531957], [47.400872, 8.588143], [47.374629, 8.538701], [47.372001, 8.529365], [47.367577, 8.549929], [47.387684, 8.525103], [47.388749, 8.538966], [47.371906, 8.536527], [47.350808, 8.579678], [47.413973, 8.548181], [47.35349, 8.559351], [47.372812, 8.502237], [47.361194, 8.517362], [47.369564, 8.538769], [47.354421, 8.553322], [47.376026, 8.535592], [47.402736, 8.535201], [47.378113, 8.510686], [47.373487, 8.518643], [47.373885, 8.536528], [47.369823, 8.549301], [47.375824, 8.543546], [47.388436, 8.541556], [47.374151, 8.502409], [47.414494, 8.554764], [47.404243, 8.561877], [47.366634, 8.520504], [47.389775, 8.521808], [47.413822, 8.545209], [47.36114, 8.560823], [47.387669, 8.529514], [47.403327, 8.4861], [47.382569, 8.534296], [47.364905, 8.531193], [47.376025, 8.52431], [47.366727, 8.544827], [47.367957, 8.540338], [47.417144, 8.523027], [47.374859, 8.547592], [47.347394, 8.531866], [47.375544, 8.538058], [47.374573, 8.520864], [47.413308, 8.545358], [47.384111, 8.547069], [47.389205, 8.489027], [47.385302, 8.517241], [47.354589, 8.523423], [47.353716, 8.553691], [47.377369, 8.512366], [47.40529, 8.490802], [47.385365, 8.517268], [47.3895, 8.521326], [47.400034, 8.536484], [47.409015, 8.545507], [47.364661, 8.598656], [47.372098, 8.521912], [47.361684, 8.52648], [47.364338, 8.533061], [47.409243, 8.547088], [47.410724, 8.555865], [47.37513, 8.547452], [47.388748, 8.485813], [47.387515, 8.534385], [47.363515, 8.521155], [47.35588, 8.5257], [47.404186, 8.54913], [47.357537, 8.521683], [47.40002, 8.584336], [47.425913, 8.544082], [47.379815, 8.52775], [47.366055, 8.549249], [47.364713, 8.556913], [47.378368, 8.579792], [47.390677, 8.522515], [47.386071, 8.528209], [47.408118, 8.553703], [47.431393, 8.517193], [47.412543, 8.546309], [47.379256, 8.55992], [47.395054, 8.493673], [47.363211, 8.535262], [47.370152, 8.548804], [47.396221, 8.493948], [47.371514, 8.541855], [47.366866, 8.543493], [47.388405, 8.547648], [47.378131, 8.510633], [47.379863, 8.520719], [47.397703, 8.532912], [47.416686, 8.55322], [47.386198, 8.518557], [47.347384, 8.532845], [47.366753, 8.542114], [47.415296, 8.553681], [47.373019, 8.520647], [47.363789, 8.498443], [47.370197, 8.548819], [47.370331, 8.548888], [47.412847, 8.482682], [47.367632, 8.534797], [47.417976, 8.546289], [47.37937, 8.495323], [47.381969, 8.483455], [47.414261, 8.483518], [47.344406, 8.532917], [47.370306, 8.530734], [47.397169, 8.531298], [47.387238, 8.518949], [47.367197, 8.541765], [47.414203, 8.546715], [47.365215, 8.530762], [47.403106, 8.516939], [47.353915, 8.554436], [47.376834, 8.540482], [47.391506, 8.514611], [47.351001, 8.582873], [47.387948, 8.536195], [47.367905, 8.540191], [47.4051, 8.589109], [47.379768, 8.528981], [47.367833, 8.541143], [47.387886, 8.48663], [47.362976, 8.550416], [47.371254, 8.555805], [47.385627, 8.520929], [47.382376, 8.534663], [47.387601, 8.539512], [47.375722, 8.535414], [47.419572, 8.55613], [47.419572, 8.556196], [47.358407, 8.5569], [47.40542, 8.550878], [47.414763, 8.551179], [47.367951, 8.494739], [47.340839, 8.519187], [47.378416, 8.540554], [47.382292, 8.533099], [47.3975, 8.53247], [47.38902, 8.491487], [47.369111, 8.527704], [47.394973, 8.48673], [47.357792, 8.572044], [47.387868, 8.538882], [47.39073, 8.489455], [47.396786, 8.534734], [47.367355, 8.545926], [47.424828, 8.54838], [47.424742, 8.537603], [47.384277, 8.525829], [47.382679, 8.545384], [47.370304, 8.548887], [47.398024, 8.503336], [47.369163, 8.52793], [47.368863, 8.548155], [47.385918, 8.517743], [47.384199, 8.531178], [47.371428, 8.546103], [47.416017, 8.515596], [47.386372, 8.518256], [47.398103, 8.501603], [47.40435, 8.572134], [47.387294, 8.529254], [47.374824, 8.537116], [47.380613, 8.51941], [47.401347, 8.543188], [47.378256, 8.526143], [47.370167, 8.547282], [47.390603, 8.539786], [47.365185, 8.547126], [47.391864, 8.532037], [47.371881, 8.525907], [47.386725, 8.547415], [47.390007, 8.536317], [47.374173, 8.515572], [47.380322, 8.541653], [47.38082, 8.497113], [47.399237, 8.54745], [47.397052, 8.530328], [47.374718, 8.530281], [47.365529, 8.546908], [47.414222, 8.519006], [47.358156, 8.519948], [47.378432, 8.510189], [47.366748, 8.53315], [47.393696, 8.502548], [47.362619, 8.518873], [47.370147, 8.536106], [47.35343, 8.525094], [47.36734, 8.556862], [47.407221, 8.549696], [47.368039, 8.524094], [47.387624, 8.499619], [47.358552, 8.585192], [47.414452, 8.507839], [47.369689, 8.525571], [47.370152, 8.548778], [47.406638, 8.5672], [47.398424, 8.500933], [47.377616, 8.518661], [47.378498, 8.54143], [47.374482, 8.556827], [47.357351, 8.523334], [47.368918, 8.529103], [47.42588, 8.493714], [47.372766, 8.535048], [47.37811, 8.509984], [47.360472, 8.549808], [47.374378, 8.538643], [47.369662, 8.525636], [47.376677, 8.524786], [47.364638, 8.566444], [47.368887, 8.539973], [47.371896, 8.522411], [47.390918, 8.521672], [47.367093, 8.529053], [47.35761, 8.521658], [47.398129, 8.59088], [47.377702, 8.538076], [47.36748, 8.541308], [47.383943, 8.531702], [47.388708, 8.496157], [47.358279, 8.555295], [47.372219, 8.518671], [47.402651, 8.546011], [47.367997, 8.539902], [47.38264, 8.529676], [47.421878, 8.55028], [47.425934, 8.493622], [47.38095, 8.538011], [47.378344, 8.527283], [47.37436, 8.541424], [47.379713, 8.497104], [47.374091, 8.527183], [47.418731, 8.530282], [47.393331, 8.530027], [47.404158, 8.549235], [47.40513, 8.478583], [47.397986, 8.532467], [47.372978, 8.514436], [47.369633, 8.525834], [47.405216, 8.481049], [47.335163, 8.519164], [47.430851, 8.544105], [47.408535, 8.53173], [47.408217, 8.547173], [47.375078, 8.518742], [47.38709, 8.534667], [47.397535, 8.532564], [47.431264, 8.516541], [47.371618, 8.517493], [47.386243, 8.540517], [47.361431, 8.512177], [47.370511, 8.52327], [47.370226, 8.524893], [47.378581, 8.54212], [47.387716, 8.479568], [47.403772, 8.485605], [47.401541, 8.58788], [47.371006, 8.545989], [47.395054, 8.516074], [47.367726, 8.540042], [47.37325, 8.494632], [47.374228, 8.524088], [47.379218, 8.549801], [47.357954, 8.520447], [47.365766, 8.548395], [47.370052, 8.518561], [47.353313, 8.525144], [47.375768, 8.535269], [47.368429, 8.541817], [47.352495, 8.572765], [47.374553, 8.547598], [47.393387, 8.529829], [47.370146, 8.536265], [47.372855, 8.535116], [47.359069, 8.570218], [47.378949, 8.508742], [47.388588, 8.483691], [47.385307, 8.520539], [47.374448, 8.541664], [47.364316, 8.548604], [47.404376, 8.59487], [47.391081, 8.52255], [47.37642, 8.528171], [47.382129, 8.531321], [47.381709, 8.531007], [47.368228, 8.524111], [47.37141, 8.54613], [47.430065, 8.486506], [47.382802, 8.485842], [47.367905, 8.523972], [47.401376, 8.550489], [47.414035, 8.518843], [47.351995, 8.525634], [47.365208, 8.545603], [47.430846, 8.543654], [47.375845, 8.545176], [47.416641, 8.569003], [47.376385, 8.528117], [47.379621, 8.507114], [47.377557, 8.528724], [47.391032, 8.533477], [47.40513, 8.481617], [47.351571, 8.525797], [47.387401, 8.493455], [47.397949, 8.534414], [47.417003, 8.549304], [47.37935, 8.542692], [47.381388, 8.537371], [47.407759, 8.531065], [47.38143, 8.535809], [47.372769, 8.600991], [47.376146, 8.577096], [47.370512, 8.535571], [47.394119, 8.475798], [47.397934, 8.477634], [47.351395, 8.601068], [47.374157, 8.535434], [47.398995, 8.533256], [47.364541, 8.566243], [47.386613, 8.518446], [47.406534, 8.584118], [47.405635, 8.549968], [47.369079, 8.529279], [47.410367, 8.548119], [47.421332, 8.549977], [47.362668, 8.52703], [47.375589, 8.548335], [47.403255, 8.497876], [47.350976, 8.576307], [47.383463, 8.499178], [47.355269, 8.515071], [47.353865, 8.523858], [47.363749, 8.535419], [47.368833, 8.528638], [47.37493, 8.534457], [47.370197, 8.548805], [47.388803, 8.520821], [47.37392, 8.476279], [47.377496, 8.527597], [47.374967, 8.534431], [47.377472, 8.494331], [47.39194, 8.518249], [47.379011, 8.529058], [47.391104, 8.522988], [47.365, 8.502677], [47.399842, 8.49345], [47.373035, 8.533253], [47.371759, 8.542575], [47.370188, 8.548805], [47.382028, 8.516208], [47.424901, 8.548329], [47.38018, 8.528155], [47.397492, 8.587991], [47.378642, 8.494288], [47.390841, 8.508703], [47.376422, 8.516505], [47.41957, 8.548019], [47.378512, 8.541854], [47.387269, 8.488234], [47.372735, 8.535511], [47.363159, 8.548209], [47.416217, 8.522187], [47.374363, 8.523097], [47.408834, 8.579848], [47.371434, 8.550182], [47.357037, 8.570135], [47.378479, 8.509978], [47.399812, 8.529564], [47.364228, 8.536183], [47.364183, 8.536116], [47.376386, 8.534606], [47.37554, 8.558107], [47.364638, 8.566457], [47.378602, 8.575294], [47.388746, 8.491058], [47.425763, 8.547499], [47.388314, 8.51452], [47.369794, 8.557907], [47.381407, 8.517215], [47.392886, 8.485802], [47.367082, 8.544332], [47.367688, 8.495038], [47.377738, 8.53809], [47.370161, 8.548831], [47.359596, 8.576967], [47.386751, 8.547574], [47.3977, 8.533163], [47.343921, 8.530022], [47.370197, 8.548792], [47.412244, 8.558679], [47.365539, 8.568118], [47.37276, 8.600938], [47.377957, 8.541564], [47.422279, 8.499885], [47.378088, 8.50944], [47.381651, 8.582537], [47.406952, 8.550578], [47.371098, 8.524064], [47.37135, 8.542977], [47.369671, 8.525597], [47.367169, 8.553151], [47.366455, 8.547893], [47.376556, 8.528055], [47.409949, 8.543843], [47.41566, 8.563522], [47.374245, 8.540322], [47.364715, 8.547301], [47.408011, 8.536754], [47.371038, 8.536125], [47.36319, 8.549732], [47.387939, 8.536195], [47.403671, 8.588972], [47.351808, 8.575861], [47.361812, 8.526218], [47.411918, 8.524935], [47.370497, 8.52858], [47.378858, 8.542338], [47.369855, 8.53659], [47.385032, 8.484932], [47.38046, 8.519434], [47.396647, 8.540799], [47.3765, 8.521578], [47.373896, 8.54103], [47.359325, 8.5698], [47.376626, 8.543404], [47.390859, 8.52228], [47.368386, 8.539725], [47.370307, 8.548622], [47.371477, 8.519053], [47.363382, 8.534339], [47.391312, 8.515163], [47.371906, 8.49111], [47.400591, 8.544179], [47.370761, 8.53118], [47.425084, 8.537636], [47.378479, 8.509978], [47.39392, 8.534384], [47.425037, 8.548199], [47.390986, 8.522084], [47.365142, 8.532747], [47.377004, 8.584013], [47.351944, 8.505117], [47.411341, 8.544098], [47.397336, 8.541197], [47.376491, 8.525418], [47.428336, 8.48968], [47.378733, 8.542216], [47.382201, 8.534222], [47.362261, 8.559311], [47.35505, 8.557041], [47.372964, 8.547301], [47.405849, 8.590636], [47.386914, 8.547458], [47.379286, 8.495652], [47.368904, 8.540119], [47.330896, 8.536635], [47.375722, 8.496813], [47.36029, 8.567715], [47.403673, 8.571457], [47.391419, 8.513324], [47.404427, 8.556806], [47.406605, 8.584266], [47.366248, 8.548763], [47.402453, 8.535633], [47.366345, 8.522497], [47.39509, 8.53621], [47.354728, 8.526748], [47.382396, 8.537352], [47.369398, 8.525896], [47.406623, 8.58783], [47.344202, 8.532674], [47.386842, 8.535179], [47.3774, 8.509956], [47.411197, 8.54595], [47.373452, 8.529104], [47.360838, 8.505361], [47.387579, 8.515167], [47.394847, 8.52574], [47.366764, 8.541849], [47.37552, 8.548122], [47.377294, 8.541312], [47.422332, 8.550674], [47.376629, 8.52795], [47.382848, 8.532355], [47.367288, 8.519802], [47.386525, 8.498762], [47.356542, 8.523238], [47.416856, 8.535412], [47.377446, 8.509864], [47.378427, 8.540382], [47.365868, 8.509936], [47.403759, 8.493925], [47.370188, 8.548792], [47.345157, 8.533448], [47.40816, 8.546536], [47.348149, 8.52807], [47.386734, 8.547402], [47.374581, 8.5456], [47.374328, 8.542919], [47.37004, 8.564082], [47.399755, 8.492084], [47.373545, 8.534521], [47.386338, 8.52093], [47.37693, 8.537014], [47.338426, 8.531828], [47.399385, 8.547943], [47.413909, 8.518814], [47.376304, 8.563777], [47.408806, 8.550445], [47.373186, 8.475894], [47.376043, 8.535738], [47.418052, 8.515373], [47.419185, 8.546831], [47.366847, 8.534132], [47.378464, 8.54029], [47.408084, 8.577513], [47.370998, 8.518341], [47.363159, 8.557595], [47.402882, 8.498359], [47.374025, 8.543602], [47.41999, 8.554813], [47.383986, 8.543225], [47.378293, 8.560879], [47.379916, 8.506325], [47.364427, 8.534148], [47.388, 8.490964], [47.37397, 8.544647], [47.420515, 8.502925], [47.380418, 8.542847], [47.37302, 8.532908], [47.407964, 8.583248], [47.368735, 8.524744], [47.402142, 8.584382], [47.362089, 8.5491], [47.364854, 8.532701], [47.393821, 8.506471], [47.366215, 8.537204], [47.369203, 8.527507], [47.377651, 8.498347], [47.378783, 8.564068], [47.389583, 8.472041], [47.363387, 8.557256]],\n", - " {"blur": 10, "gradient": {"0.1": "blue", "0.3": "cyan", "0.5": "lime", "0.7": "yellow", "0.9": "red"}, "maxOpacity": 0.8, "maxZoom": 18, "minOpacity": 0.5, "radius": 8}\n", - " );\n", + " tile_layer_142265af8d0477637c48f9bc1a7d68d1.addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", " \n", " \n", "\n", - " function geo_json_99f5f7ef3a3f4481a0187939f00f241a_onEachFeature(feature, layer) {\n", + " var times = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12];\n", + "\n", + " map_c0fb97d6ede857e174bfd07595101d7f.timeDimension = L.timeDimension(\n", + " {times : times, currentTime: new Date(1)}\n", + " );\n", + "\n", + " var heat_map_9f26dae603b077b11216d5a0957079cbControl = new L.Control.TimeDimensionCustom([2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022], {\n", + " autoPlay: false,\n", + " backwardButton: true,\n", + " displayDate: true,\n", + " forwardButton: true,\n", + " limitMinimumRange: 5,\n", + " limitSliders: true,\n", + " loopButton: true,\n", + " maxSpeed: 10,\n", + " minSpeed: 0.1,\n", + " playButton: true,\n", + " playReverseButton: true,\n", + " position: "bottomleft",\n", + " speedSlider: true,\n", + " speedStep: 0.1,\n", + " styleNS: "leaflet-control-timecontrol",\n", + " timeSlider: true,\n", + " timeSliderDrapUpdate: false,\n", + " timeSteps: 1\n", + " })\n", + " .addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", + "\n", + " var heat_map_9f26dae603b077b11216d5a0957079cb = new TDHeatmap([[[47.352168, 8.55841], [47.368512, 8.52932], [47.375376, 8.534877], [47.369756, 8.513682], [47.401865, 8.531288], [47.428652, 8.543582], [47.391125, 8.522617], [47.376931, 8.541636], [47.374602, 8.535854], [47.366542, 8.540613], [47.387107, 8.519462], [47.394692, 8.546759], [47.404676, 8.557116], [47.367753, 8.545709], [47.37445, 8.546113], [47.403796, 8.485857], [47.367773, 8.494523], [47.387926, 8.485241], [47.373877, 8.5135], [47.39161, 8.527568], [47.384609, 8.531597], [47.421708, 8.550131], [47.363555, 8.554744], [47.388514, 8.483835], [47.377256, 8.538689], [47.409028, 8.566496], [47.352644, 8.572305], [47.363447, 8.554768], [47.377263, 8.510179], [47.39341, 8.525459], [47.375442, 8.547763], [47.421067, 8.549495], [47.41099, 8.543149], [47.410956, 8.542937], [47.373272, 8.531947], [47.396116, 8.505378], [47.34129, 8.530524], [47.356698, 8.57349], [47.366118, 8.53229], [47.400643, 8.549069], [47.407342, 8.565996], [47.370233, 8.548819], [47.369283, 8.541901], [47.377485, 8.542005], [47.417596, 8.553995], [47.374397, 8.518503], [47.364218, 8.551263], [47.371403, 8.53645], [47.370147, 8.602311], [47.413218, 8.53873], [47.358105, 8.524408], [47.391821, 8.500047], [47.357968, 8.532268], [47.368238, 8.520166], [47.351863, 8.527285], [47.407434, 8.563004], [47.369667, 8.53366], [47.419423, 8.508177], [47.422315, 8.512583], [47.35768, 8.552053], [47.397972, 8.47435], [47.386281, 8.531737], [47.408712, 8.546229], [47.372678, 8.534795], [47.388015, 8.520448], [47.361218, 8.552709], [47.375944, 8.54139], [47.389535, 8.51281], [47.393999, 8.543989], [47.421475, 8.511042], [47.378301, 8.54132], [47.407516, 8.548073], [47.388406, 8.520032], [47.401769, 8.581194], [47.350735, 8.577043], [47.379003, 8.556286], [47.371053, 8.516343], [47.379671, 8.545771], [47.408017, 8.547407], [47.396566, 8.540784], [47.392391, 8.487779], [47.406853, 8.550603], [47.374376, 8.521707], [47.336727, 8.516404], [47.416753, 8.572252], [47.36069, 8.56542], [47.394205, 8.517434], [47.375645, 8.516807], [47.387956, 8.49087], [47.374194, 8.491737], [47.377228, 8.539762], [47.413983, 8.548088], [47.36765, 8.495262], [47.362623, 8.527068], [47.400357, 8.585721], [47.362708, 8.567886], [47.377521, 8.542006], [47.375891, 8.510667], [47.427058, 8.546637], [47.388324, 8.548614], [47.37063, 8.527854], [47.378502, 8.510468], [47.402744, 8.491785], [47.375415, 8.517372], [47.376857, 8.535198], [47.375142, 8.51865], [47.421599, 8.550208], [47.334593, 8.52999], [47.380295, 8.541666], [47.385078, 8.547526], [47.409537, 8.543623], [47.379452, 8.544244], [47.421691, 8.499303], [47.38648, 8.541039], [47.405212, 8.505123], [47.373017, 8.531359], [47.397216, 8.5311], [47.365265, 8.521588], [47.381359, 8.512737], [47.386961, 8.534956], [47.385109, 8.476404], [47.359661, 8.549036], [47.375257, 8.523698], [47.379241, 8.5286], [47.37565, 8.537332], [47.354234, 8.554986], [47.385807, 8.526734], [47.364907, 8.530994], [47.378324, 8.530395], [47.359178, 8.596458], [47.381372, 8.518075], [47.375548, 8.524313], [47.379301, 8.525992], [47.390691, 8.478844], [47.420592, 8.540804], [47.383768, 8.515792], [47.384964, 8.532147], [47.383683, 8.588104], [47.415446, 8.54462], [47.374697, 8.55789], [47.37935, 8.495494], [47.376592, 8.53665], [47.4244, 8.552692], [47.389996, 8.484063], [47.366961, 8.543905], [47.36677, 8.501918], [47.370977, 8.530205], [47.414524, 8.54419], [47.386315, 8.499116], [47.406837, 8.550364], [47.378083, 8.530178], [47.372117, 8.521847], [47.399555, 8.496319], [47.369434, 8.52591], [47.392108, 8.510821], [47.375349, 8.485404], [47.354979, 8.554233], [47.371146, 8.53038], [47.39006, 8.525854], [47.371124, 8.520277], [47.407189, 8.50344], [47.41151, 8.532864], [47.359925, 8.580099], [47.399946, 8.544841], [47.403344, 8.48614], [47.382009, 8.530749], [47.387185, 8.509186], [47.378417, 8.540514], [47.40754, 8.503368], [47.379197, 8.564143], [47.378414, 8.543653], [47.378516, 8.541404], [47.361626, 8.5486], [47.394143, 8.525063], [47.370985, 8.535938], [47.398832, 8.533306], [47.372442, 8.523641], [47.407711, 8.578817], [47.369841, 8.510294], [47.371042, 8.535701], [47.387614, 8.498678], [47.378235, 8.528394], [47.381164, 8.582673], [47.373317, 8.524347], [47.414166, 8.546793], [47.38457, 8.509835], [47.384491, 8.51639], [47.351648, 8.576599], [47.370713, 8.535231], [47.370013, 8.564121], [47.370463, 8.524633], [47.360324, 8.562394], [47.370394, 8.534774], [47.380655, 8.556651], [47.362489, 8.534585], [47.371212, 8.527204], [47.356772, 8.573293], [47.385062, 8.495462], [47.377758, 8.52845], [47.378155, 8.548163], [47.361911, 8.531039], [47.385484, 8.529456], [47.365242, 8.53071], [47.409837, 8.545166], [47.357632, 8.521142], [47.373663, 8.54664], [47.408737, 8.579661], [47.380399, 8.512493], [47.406725, 8.584825], [47.373444, 8.512657], [47.373845, 8.537878], [47.399668, 8.517121], [47.386642, 8.547704], [47.366437, 8.5413], [47.376157, 8.544507], [47.363434, 8.546758], [47.338792, 8.530195], [47.359436, 8.521589], [47.37086, 8.548144], [47.33881, 8.530169], [47.373961, 8.538992], [47.413271, 8.53885], [47.379779, 8.527737], [47.391631, 8.492294], [47.398208, 8.536512], [47.381223, 8.532017], [47.373546, 8.534336], [47.357638, 8.551814], [47.397914, 8.508461], [47.400808, 8.492025], [47.399896, 8.544443], [47.394119, 8.525632], [47.387543, 8.490783], [47.38828, 8.49081], [47.414734, 8.519148], [47.36371, 8.551768], [47.372631, 8.547307], [47.373544, 8.528827], [47.410358, 8.548105], [47.374337, 8.542973], [47.372706, 8.525222], [47.370434, 8.549419], [47.38135, 8.535754], [47.391607, 8.519209], [47.375382, 8.526654], [47.391063, 8.479474], [47.386225, 8.531921], [47.378413, 8.53049], [47.372008, 8.53629], [47.377373, 8.509995], [47.414977, 8.551382], [47.409795, 8.549538], [47.377683, 8.538248], [47.343638, 8.53519], [47.378156, 8.48734], [47.366909, 8.558561], [47.390762, 8.522027], [47.416784, 8.54588], [47.410161, 8.57394], [47.363824, 8.56689], [47.367852, 8.539078], [47.374924, 8.534166], [47.374363, 8.543026], [47.369932, 8.533202], [47.36475, 8.553935], [47.398004, 8.494765], [47.397815, 8.532411], [47.377043, 8.544075], [47.378014, 8.515504], [47.361652, 8.532701], [47.373541, 8.519664], [47.378544, 8.530016], [47.364501, 8.547138], [47.391654, 8.538987], [47.378173, 8.509972], [47.355464, 8.559869], [47.38127, 8.53272], [47.334931, 8.527588], [47.393324, 8.529802], [47.381279, 8.531833], [47.361546, 8.547659], [47.364643, 8.517868], [47.362016, 8.52654], [47.395044, 8.525863], [47.363204, 8.557583], [47.38885, 8.515816], [47.367909, 8.522661], [47.353443, 8.576134], [47.378189, 8.541781], [47.412205, 8.523099], [47.378896, 8.526924], [47.374769, 8.55135], [47.39006, 8.525854], [47.42587, 8.49378], [47.392522, 8.527149], [47.384624, 8.530074], [47.407568, 8.584233], [47.387834, 8.498272], [47.386171, 8.498212], [47.395506, 8.545359], [47.367515, 8.545201], [47.408835, 8.550273], [47.43021, 8.540592], [47.385208, 8.536774], [47.385967, 8.518287], [47.381482, 8.482677], [47.419154, 8.506118], [47.38, 8.51667], [47.370098, 8.548843], [47.38095, 8.535164], [47.394099, 8.529738], [47.378312, 8.523985], [47.391517, 8.514373], [47.342498, 8.53121], [47.371335, 8.536065], [47.37204, 8.516641], [47.378048, 8.513823], [47.363924, 8.530312], [47.412136, 8.483782], [47.409217, 8.53287], [47.379057, 8.525153], [47.407502, 8.491866], [47.378296, 8.554086], [47.394395, 8.489024], [47.369684, 8.53374], [47.411294, 8.562025], [47.369698, 8.536097], [47.376894, 8.557632], [47.372675, 8.555835], [47.390633, 8.515613], [47.397719, 8.47453], [47.368982, 8.541299], [47.365185, 8.52152], [47.36026, 8.552239], [47.347345, 8.533189], [47.413384, 8.539277], [47.415042, 8.515961], [47.389764, 8.536325], [47.37829, 8.507047], [47.39118, 8.487503], [47.381096, 8.517844], [47.379532, 8.548113], [47.392477, 8.506908], [47.394041, 8.493269], [47.370069, 8.518614], [47.368627, 8.546535], [47.419116, 8.506409], [47.424591, 8.508639], [47.412498, 8.525437], [47.370054, 8.541189], [47.363643, 8.535205], [47.384442, 8.503224], [47.417397, 8.545734], [47.364743, 8.565784], [47.371059, 8.537622], [47.369541, 8.531738], [47.369313, 8.522557], [47.420574, 8.502409], [47.36958, 8.525701], [47.427247, 8.54566], [47.367815, 8.495835], [47.372087, 8.546792], [47.375887, 8.515938], [47.418268, 8.546773], [47.408747, 8.546283], [47.400191, 8.54743], [47.373371, 8.531936], [47.378912, 8.526209], [47.340412, 8.519588], [47.417734, 8.546152], [47.349907, 8.5615], [47.42267, 8.495479], [47.351996, 8.558499], [47.371847, 8.520941], [47.380455, 8.542821], [47.386039, 8.529732], [47.379044, 8.559491], [47.412037, 8.54655], [47.356208, 8.558257], [47.352387, 8.571903], [47.356004, 8.556135], [47.359691, 8.586435], [47.391162, 8.515796], [47.405593, 8.577473], [47.377881, 8.532492], [47.398131, 8.536074], [47.419116, 8.506409], [47.363977, 8.555785], [47.384211, 8.499087], [47.376833, 8.515811], [47.364087, 8.526304], [47.373576, 8.519705], [47.372675, 8.528452], [47.36092, 8.591333], [47.326904, 8.513533], [47.373484, 8.537102], [47.415342, 8.547997], [47.360197, 8.522955], [47.403671, 8.546548], [47.407437, 8.584708], [47.348415, 8.523761], [47.415106, 8.514915], [47.367974, 8.540458], [47.376964, 8.527692], [47.371094, 8.523534], [47.410578, 8.572637], [47.374668, 8.549667], [47.383834, 8.509701], [47.370553, 8.524542], [47.377595, 8.498611], [47.384809, 8.509284], [47.352632, 8.524826], [47.384759, 8.531957], [47.366594, 8.545566], [47.412227, 8.546408], [47.390782, 8.478793], [47.373764, 8.536062], [47.389099, 8.510311], [47.358922, 8.582394], [47.376968, 8.493315], [47.370188, 8.548792], [47.369206, 8.54803], [47.390889, 8.547501], [47.371307, 8.528623], [47.409696, 8.569094], [47.377112, 8.540554], [47.377579, 8.508132], [47.355113, 8.574542], [47.372399, 8.534802], [47.382308, 8.545601], [47.364855, 8.530715], [47.384417, 8.531924], [47.354821, 8.532111], [47.368608, 8.528673], [47.369024, 8.537937], [47.419561, 8.548006], [47.390678, 8.522383], [47.390195, 8.490928], [47.388143, 8.528848], [47.407783, 8.583364], [47.378435, 8.540462], [47.377788, 8.507845], [47.418107, 8.544768], [47.387763, 8.500112], [47.420795, 8.546878], [47.361807, 8.515256], [47.366211, 8.545174], [47.39835, 8.537721], [47.376025, 8.537618], [47.373885, 8.536541], [47.407895, 8.565584], [47.376909, 8.527784], [47.379353, 8.544162], [47.400648, 8.548513], [47.426181, 8.495165], [47.377258, 8.512615], [47.373374, 8.551401], [47.353493, 8.527041], [47.400065, 8.49462], [47.425414, 8.55384], [47.387597, 8.529499], [47.372758, 8.534969], [47.394178, 8.525103], [47.381905, 8.509173], [47.344813, 8.53364], [47.368064, 8.492225], [47.392958, 8.492757], [47.374444, 8.540207], [47.371353, 8.547386], [47.378146, 8.532086], [47.372529, 8.54757], [47.378637, 8.531554], [47.35973, 8.565201], [47.402571, 8.547824], [47.378384, 8.526953], [47.376821, 8.559577], [47.402574, 8.492669], [47.390658, 8.491427], [47.363048, 8.530691], [47.387812, 8.490881], [47.418503, 8.542006], [47.359809, 8.53543], [47.368201, 8.559872], [47.390466, 8.491834], [47.405754, 8.547003], [47.383538, 8.534541], [47.383366, 8.498991], [47.401848, 8.554658], [47.359033, 8.558223], [47.373729, 8.514888], [47.370936, 8.518247], [47.38697, 8.528334], [47.41228, 8.515044], [47.383294, 8.572838], [47.352142, 8.558317], [47.382305, 8.488057], [47.368273, 8.546806], [47.376578, 8.541893], [47.376484, 8.528106], [47.371362, 8.536039], [47.385371, 8.475284], [47.361727, 8.593336], [47.373509, 8.534454], [47.36422, 8.526505], [47.377279, 8.514284], [47.385976, 8.489984], [47.386115, 8.537892], [47.36632, 8.600029], [47.365899, 8.548636], [47.387566, 8.487207], [47.36108, 8.531392], [47.369403, 8.528253], [47.380626, 8.525728], [47.376109, 8.527741], [47.381308, 8.53733], [47.380465, 8.542676], [47.36886, 8.528586], [47.367653, 8.534519], [47.398992, 8.506615], [47.378879, 8.52209], [47.391147, 8.489105], [47.414279, 8.550943], [47.391227, 8.52042], [47.358017, 8.555356], [47.373204, 8.515235], [47.385436, 8.508568], [47.391964, 8.482353], [47.409636, 8.549283], [47.427012, 8.491814], [47.364277, 8.536674], [47.370796, 8.5351], [47.373072, 8.52556], [47.372788, 8.535618], [47.381244, 8.51541], [47.379874, 8.527288], [47.374316, 8.524275], [47.378444, 8.541455], [47.360111, 8.579507], [47.39857, 8.539116], [47.41149, 8.525536], [47.351566, 8.602024], [47.382607, 8.54819], [47.39133, 8.536198], [47.415859, 8.514281], [47.377761, 8.507858], [47.360649, 8.551122], [47.366409, 8.545112], [47.376601, 8.527115], [47.390738, 8.479627], [47.363639, 8.550694], [47.364587, 8.548503], [47.375741, 8.527707], [47.399665, 8.468103], [47.38242, 8.530068], [47.390995, 8.523078], [47.366899, 8.533405], [47.37278, 8.535512], [47.374255, 8.525028], [47.381798, 8.529208], [47.363058, 8.548445], [47.409473, 8.542787], [47.384998, 8.495659], [47.389229, 8.546195], [47.385646, 8.506374], [47.391647, 8.511024], [47.409885, 8.487951], [47.414439, 8.518003], [47.383238, 8.506074], [47.381247, 8.513225], [47.364153, 8.563614], [47.415049, 8.513337], [47.402763, 8.535215], [47.356907, 8.535053], [47.378599, 8.51933], [47.395491, 8.526097], [47.3698, 8.529042], [47.370348, 8.557375], [47.4117, 8.509718], [47.416762, 8.572226], [47.396749, 8.537648], [47.359226, 8.549437], [47.40582, 8.544818], [47.370173, 8.540993], [47.369957, 8.510429], [47.355619, 8.532419], [47.393113, 8.526433], [47.35031, 8.577285], [47.384115, 8.52866], [47.370906, 8.548065], [47.3777, 8.511551], [47.376735, 8.543327], [47.379513, 8.537862], [47.405104, 8.478556], [47.388449, 8.484085], [47.373165, 8.552588], [47.376961, 8.543226], [47.380385, 8.525484], [47.370673, 8.508841], [47.375479, 8.486929], [47.369023, 8.53795], [47.389265, 8.527242], [47.383246, 8.488526], [47.408255, 8.569262], [47.376961, 8.522289], [47.377237, 8.538835], [47.356865, 8.534761], [47.378015, 8.517384], [47.36807, 8.550151], [47.377075, 8.540646], [47.3695, 8.528493], [47.376225, 8.544919], [47.369426, 8.526797], [47.428536, 8.542493], [47.402127, 8.497337], [47.375499, 8.557709], [47.383238, 8.506074], [47.404445, 8.574375], [47.353725, 8.558311], [47.408736, 8.550231], [47.413878, 8.5534], [47.365898, 8.501927], [47.387752, 8.50035], [47.391846, 8.533904], [47.364713, 8.520028], [47.387577, 8.497909], [47.408063, 8.538809], [47.393842, 8.497332], [47.366016, 8.533506], [47.42108, 8.502127], [47.395468, 8.520917], [47.364845, 8.554347], [47.413227, 8.538704], [47.410316, 8.542115], [47.374602, 8.538674], [47.360669, 8.524407], [47.383197, 8.483995], [47.357256, 8.521955], [47.390142, 8.510438], [47.399578, 8.542807], [47.375466, 8.484493], [47.377599, 8.538524], [47.383238, 8.505994], [47.382056, 8.481828], [47.410825, 8.56766], [47.368845, 8.539721], [47.429032, 8.489283], [47.385524, 8.51751], [47.387202, 8.535173], [47.363398, 8.564485], [47.370479, 8.516146], [47.379273, 8.546041], [47.354623, 8.573221], [47.389767, 8.492429], [47.425084, 8.53765], [47.381033, 8.504229], [47.419896, 8.506623], [47.368203, 8.560614], [47.400133, 8.545958], [47.357275, 8.521836], [47.392111, 8.532559], [47.370596, 8.535308], [47.369673, 8.554581], [47.39607, 8.515193], [47.401238, 8.54512], [47.403505, 8.487216], [47.391091, 8.522418], [47.379156, 8.495093], [47.376903, 8.512184], [47.371917, 8.522028], [47.363489, 8.520135], [47.367334, 8.52355], [47.413462, 8.530082], [47.373488, 8.519478], [47.382878, 8.530091], [47.354443, 8.523632], [47.383607, 8.529152], [47.378432, 8.510202], [47.378124, 8.530656], [47.375038, 8.536393], [47.381362, 8.528696], [47.408741, 8.539379], [47.378521, 8.541854], [47.370106, 8.548883], [47.414033, 8.541914], [47.377452, 8.498502], [47.357669, 8.581732], [47.390405, 8.539769], [47.376192, 8.540839], [47.354506, 8.525552], [47.429415, 8.540006], [47.381111, 8.518083], [47.370805, 8.526454], [47.390196, 8.539089], [47.418796, 8.506959], [47.416161, 8.546066], [47.35401, 8.57338], [47.369197, 8.548003], [47.390018, 8.491613], [47.381586, 8.54205], [47.381837, 8.509648], [47.377497, 8.538853], [47.375528, 8.548201], [47.382004, 8.514035], [47.366834, 8.520256], [47.392572, 8.494604], [47.381282, 8.514259], [47.396717, 8.540999], [47.385797, 8.548534], [47.392904, 8.534363], [47.374412, 8.541676], [47.403847, 8.547957], [47.384444, 8.532918], [47.386814, 8.490795], [47.381528, 8.554683], [47.356687, 8.553329], [47.373931, 8.536449], [47.37077, 8.536887], [47.362921, 8.522189], [47.373576, 8.519691], [47.376566, 8.526982], [47.391176, 8.488868], [47.426297, 8.554667], [47.374852, 8.517943], [47.37702, 8.541783], [47.387253, 8.522128], [47.414787, 8.519229], [47.358889, 8.51664], [47.369972, 8.548774], [47.422458, 8.55073], [47.386683, 8.518686], [47.367715, 8.494986], [47.390718, 8.517165], [47.384491, 8.516376], [47.391254, 8.487253], [47.367663, 8.545747], [47.425082, 8.510982], [47.372945, 8.531318], [47.336391, 8.53962], [47.375925, 8.530081], [47.372894, 8.539593], [47.377783, 8.565173], [47.381469, 8.503721], [47.407356, 8.550666], [47.369704, 8.50857], [47.382009, 8.530749], [47.362655, 8.518887], [47.381246, 8.513238], [47.370668, 8.469834], [47.358118, 8.534548], [47.362632, 8.615147], [47.384689, 8.509639], [47.378507, 8.54143], [47.373458, 8.537009], [47.395017, 8.489884], [47.407713, 8.543466], [47.374638, 8.529287], [47.400708, 8.507868], [47.378882, 8.522686], [47.359853, 8.549715], [47.379346, 8.526019], [47.402939, 8.547871], [47.367462, 8.545094], [47.385975, 8.51834], [47.398094, 8.532443], [47.397934, 8.546442], [47.362741, 8.521232], [47.378784, 8.542575], [47.354292, 8.575755], [47.364586, 8.537342], [47.355199, 8.531219], [47.411442, 8.54671], [47.399551, 8.547576], [47.388634, 8.528302], [47.360058, 8.550818], [47.371169, 8.514531], [47.383181, 8.539924], [47.375219, 8.515222], [47.359517, 8.522544], [47.383633, 8.548171], [47.381475, 8.532989], [47.375405, 8.517438], [47.389779, 8.521305], [47.42557, 8.494105], [47.378541, 8.528413], [47.370151, 8.548924], [47.369347, 8.541704], [47.391218, 8.549786], [47.369459, 8.526149], [47.35763, 8.554487], [47.367906, 8.494751], [47.375713, 8.548629], [47.34102, 8.524762], [47.378291, 8.509855], [47.387369, 8.52707], [47.370357, 8.518606], [47.3669, 8.539906], [47.402871, 8.554004], [47.376222, 8.548944], [47.369053, 8.525306], [47.412278, 8.554228], [47.39142, 8.538982], [47.431398, 8.516676], [47.376316, 8.527772], [47.37081, 8.542979], [47.430219, 8.544344], [47.392114, 8.524637], [47.420604, 8.508851], [47.4189, 8.506365], [47.37772, 8.517153], [47.428121, 8.490524], [47.370182, 8.513307], [47.414218, 8.518568], [47.374797, 8.527661], [47.410921, 8.558771], [47.369156, 8.532524], [47.364001, 8.551457], [47.370804, 8.548315], [47.361951, 8.547614], [47.385493, 8.530462], [47.367729, 8.546371], [47.38695, 8.547393], [47.374397, 8.521363], [47.379649, 8.521536], [47.375886, 8.538026], [47.421118, 8.501903], [47.341081, 8.519231], [47.342536, 8.53092], [47.414793, 8.561052], [47.369569, 8.493963], [47.386465, 8.49651], [47.376929, 8.535226], [47.410865, 8.563514], [47.373918, 8.54634], [47.365375, 8.552597], [47.356702, 8.52344], [47.382354, 8.530425], [47.373247, 8.535495], [47.378939, 8.52907], [47.365677, 8.553901], [47.427536, 8.547429], [47.429183, 8.546417], [47.387925, 8.529135], [47.374148, 8.5192], [47.409082, 8.573931], [47.369053, 8.525293], [47.380355, 8.542872], [47.387933, 8.477439], [47.379645, 8.527694], [47.383633, 8.548145], [47.413889, 8.52483], [47.405663, 8.481362], [47.403137, 8.555308], [47.37946, 8.544297], [47.401354, 8.545255], [47.381469, 8.503734], [47.394249, 8.490186], [47.380503, 8.519686], [47.364003, 8.547485], [47.368185, 8.550339], [47.372125, 8.542794], [47.373511, 8.54277], [47.373825, 8.483918], [47.402552, 8.487157], [47.398759, 8.506531], [47.381314, 8.53574], [47.37377, 8.53826], [47.383625, 8.51567], [47.383724, 8.515752], [47.372705, 8.534861], [47.405133, 8.555469], [47.365885, 8.545379], [47.357995, 8.532282], [47.411789, 8.525304], [47.38817, 8.5251], [47.375354, 8.516179], [47.372974, 8.511893], [47.369039, 8.541022], [47.371705, 8.521666], [47.367169, 8.555905], [47.378518, 8.531763], [47.412951, 8.540354], [47.368188, 8.554708], [47.360274, 8.589399], [47.369014, 8.538003], [47.370302, 8.547205], [47.39804, 8.532402], [47.328314, 8.514712], [47.37202, 8.53494], [47.368207, 8.546156], [47.383757, 8.510216], [47.375471, 8.528655], [47.369736, 8.536839], [47.399814, 8.544521], [47.343887, 8.534587], [47.38814, 8.48449], [47.350978, 8.534282], [47.371515, 8.522682], [47.373047, 8.532949], [47.38416, 8.52866], [47.37331, 8.535536], [47.388461, 8.52851], [47.388498, 8.490537], [47.413586, 8.545416], [47.40376, 8.548604], [47.405813, 8.590635], [47.372874, 8.547272], [47.430715, 8.549789], [47.364194, 8.551977], [47.364899, 8.554348], [47.39866, 8.539171], [47.391041, 8.522986], [47.359708, 8.594709], [47.4163, 8.506432], [47.408903, 8.539356], [47.378901, 8.519786], [47.404984, 8.577182], [47.39133, 8.536198], [47.381536, 8.571384], [47.375641, 8.487939], [47.409228, 8.564433], [47.378423, 8.510202], [47.363348, 8.552939], [47.39019, 8.516796], [47.34846, 8.534191], [47.412086, 8.563844], [47.394706, 8.471465], [47.377716, 8.507936], [47.374224, 8.551908], [47.400037, 8.545625], [47.380316, 8.50587], [47.38565, 8.535684], [47.418393, 8.554422], [47.350916, 8.576954], [47.387756, 8.485131], [47.353088, 8.512658], [47.332811, 8.534849], [47.410506, 8.542], [47.380276, 8.542659], [47.373904, 8.538355], [47.343355, 8.535688], [47.371069, 8.538549], [47.392191, 8.492981], [47.409521, 8.545358], [47.373283, 8.535509], [47.370522, 8.535492], [47.361908, 8.548328], [47.361827, 8.505367], [47.410038, 8.542957], [47.363429, 8.550094], [47.406427, 8.532998], [47.378451, 8.540714], [47.37267, 8.498103], [47.373032, 8.534471], [47.379047, 8.544209], [47.381583, 8.532938], [47.367039, 8.491186], [47.368269, 8.538809], [47.381066, 8.52861], [47.355053, 8.509322], [47.368988, 8.511151], [47.363157, 8.556801], [47.369134, 8.548015], [47.381718, 8.513778], [47.371379, 8.516072], [47.36726, 8.544587], [47.36205, 8.547537], [47.366815, 8.543161], [47.3909, 8.488531], [47.367607, 8.534651], [47.399645, 8.495301], [47.375168, 8.522584], [47.409243, 8.547115], [47.427538, 8.546303], [47.368661, 8.543901], [47.421048, 8.5496], [47.392918, 8.522309], [47.364422, 8.497105], [47.378734, 8.54219], [47.386731, 8.502833], [47.376025, 8.539485], [47.37169, 8.518448], [47.372496, 8.478622], [47.392029, 8.528874], [47.387751, 8.529436], [47.377622, 8.498572], [47.396096, 8.526851], [47.372622, 8.547293], [47.387869, 8.522604], [47.387315, 8.533665], [47.391108, 8.515795], [47.390677, 8.522515], [47.391603, 8.523475], [47.37027, 8.548714], [47.381279, 8.542229], [47.378479, 8.488405], [47.396833, 8.541121], [47.377265, 8.538703], [47.410765, 8.567394], [47.360276, 8.568165], [47.412173, 8.546434], [47.391824, 8.52389], [47.371498, 8.534969], [47.354035, 8.520089], [47.372867, 8.535818], [47.42174, 8.553339], [47.348826, 8.532557], [47.378248, 8.520289], [47.369129, 8.52777], [47.377523, 8.527598], [47.37352, 8.519915], [47.410471, 8.54188], [47.374292, 8.52495], [47.393803, 8.524844], [47.368232, 8.539788], [47.377174, 8.523618], [47.370735, 8.487406], [47.364058, 8.536021], [47.364812, 8.504566], [47.396474, 8.52874], [47.383171, 8.530521], [47.380755, 8.518672], [47.3848, 8.531402], [47.410044, 8.549874], [47.399739, 8.543923], [47.376129, 8.536097], [47.39067, 8.523191], [47.351395, 8.601094], [47.374424, 8.540419], [47.365676, 8.503564], [47.378665, 8.541817], [47.398645, 8.539767], [47.38082, 8.536618], [47.378905, 8.522143], [47.367725, 8.490987], [47.398752, 8.524693], [47.390165, 8.547009], [47.375719, 8.529057], [47.377228, 8.52926], [47.386939, 8.484996], [47.417146, 8.54561], [47.375581, 8.514064], [47.413997, 8.521983], [47.390675, 8.489573], [47.364164, 8.561535], [47.362225, 8.54717], [47.380349, 8.550116], [47.380622, 8.549777], [47.397255, 8.594557], [47.37383, 8.476304], [47.379989, 8.520695], [47.360275, 8.56557], [47.390779, 8.488979], [47.374966, 8.544892], [47.395334, 8.546402], [47.38321, 8.528323], [47.368984, 8.5326], [47.402238, 8.486091], [47.40369, 8.5888], [47.382544, 8.548228], [47.389663, 8.521236], [47.369866, 8.521165], [47.389581, 8.485207], [47.376065, 8.5277], [47.360225, 8.567026], [47.375849, 8.524849], [47.378436, 8.567464], [47.378793, 8.49445], [47.405059, 8.48253], [47.398291, 8.537309], [47.426014, 8.547623], [47.377965, 8.51398], [47.362278, 8.54729], [47.365098, 8.55328], [47.37216, 8.540094], [47.380608, 8.517066], [47.413401, 8.539343], [47.405596, 8.481838], [47.398435, 8.538252], [47.387008, 8.486295], [47.369994, 8.508391], [47.388604, 8.53903], [47.373226, 8.525418], [47.392354, 8.489911], [47.373163, 8.533017], [47.394758, 8.525658], [47.362818, 8.506128], [47.373299, 8.52432], [47.378841, 8.523254], [47.409603, 8.537661], [47.346322, 8.563833], [47.400905, 8.54612], [47.400258, 8.494174], [47.391159, 8.487755], [47.366429, 8.544927], [47.3834, 8.49915], [47.378089, 8.509401], [47.373241, 8.518956], [47.345012, 8.534517], [47.409562, 8.493762], [47.379645, 8.527694], [47.381105, 8.555641], [47.415241, 8.558464], [47.385349, 8.494607], [47.369184, 8.554014], [47.335949, 8.531169], [47.410567, 8.486109], [47.367108, 8.539751], [47.371723, 8.556623], [47.367807, 8.544717], [47.352599, 8.559425], [47.3729, 8.520803], [47.347129, 8.531345], [47.366893, 8.544381], [47.383146, 8.530308], [47.373904, 8.536409], [47.379647, 8.524595], [47.360953, 8.571661], [47.422458, 8.550743], [47.361979, 8.56047], [47.36711, 8.529106], [47.360934, 8.598959], [47.40285, 8.500823], [47.374261, 8.561059], [47.387016, 8.486335], [47.381417, 8.571606], [47.393148, 8.492642], [47.378146, 8.548123], [47.407009, 8.550248], [47.411592, 8.509716], [47.385539, 8.520782], [47.391542, 8.486212], [47.3782, 8.525453], [47.370323, 8.513601], [47.378376, 8.510479], [47.388515, 8.486789], [47.365451, 8.545595], [47.378522, 8.5752], [47.370101, 8.556894], [47.361871, 8.515138], [47.383723, 8.505117], [47.380715, 8.492833], [47.370027, 8.519249], [47.345086, 8.529569], [47.404013, 8.574366], [47.41388, 8.520059], [47.414793, 8.5196], [47.368047, 8.560902], [47.356893, 8.555332], [47.386993, 8.501739], [47.368385, 8.537024], [47.368384, 8.537103], [47.365097, 8.530826], [47.385619, 8.536054], [47.383012, 8.500348], [47.359935, 8.532653], [47.368036, 8.540578], [47.383878, 8.530933], [47.366801, 8.60049], [47.391626, 8.517143], [47.376974, 8.543769], [47.394097, 8.493151], [47.344713, 8.530925], [47.374983, 8.52601], [47.402145, 8.499272], [47.404838, 8.594602], [47.351325, 8.560921], [47.377014, 8.514663], [47.370623, 8.557765], [47.390108, 8.538942], [47.385223, 8.517027], [47.398904, 8.540859], [47.413568, 8.553804], [47.379008, 8.509234], [47.370534, 8.549276], [47.400975, 8.588676], [47.399743, 8.517718], [47.376578, 8.544688], [47.378546, 8.510575], [47.356408, 8.526955], [47.395723, 8.529228], [47.3764, 8.543519], [47.386217, 8.52514], [47.391381, 8.487123], [47.38206, 8.547119], [47.37971, 8.542581], [47.375203, 8.547334], [47.37838, 8.530211], [47.408498, 8.58114], [47.39115, 8.47782], [47.350081, 8.56112], [47.40767, 8.54418], [47.375136, 8.558959], [47.36727, 8.545381], [47.411333, 8.562609], [47.418411, 8.546921], [47.374887, 8.523783], [47.388492, 8.490311], [47.35889, 8.516468], [47.353938, 8.560446], [47.363381, 8.533478], [47.348431, 8.562448], [47.376975, 8.539876], [47.37382, 8.537692], [47.36404, 8.53602], [47.408804, 8.579304], [47.417673, 8.483148], [47.36226, 8.547303], [47.372191, 8.521596], [47.3721, 8.57505], [47.36479, 8.554439], [47.375908, 8.541376], [47.410944, 8.543268], [47.372533, 8.505211], [47.399823, 8.544508], [47.359756, 8.588038], [47.383608, 8.483288], [47.338878, 8.538176], [47.376747, 8.525013], [47.370426, 8.514172], [47.366424, 8.533197], [47.38072, 8.550839], [47.391192, 8.523162], [47.385774, 8.517753], [47.40832, 8.581812], [47.369549, 8.52615], [47.359181, 8.553183], [47.375467, 8.517571], [47.378041, 8.510658], [47.373252, 8.553782], [47.356527, 8.55134], [47.366901, 8.535073], [47.383988, 8.556086], [47.382667, 8.540046], [47.400259, 8.50868], [47.373707, 8.538232], [47.364963, 8.557104], [47.380137, 8.528009], [47.404347, 8.565032], [47.383302, 8.515611], [47.387584, 8.519459], [47.328952, 8.512833], [47.369009, 8.541379], [47.330763, 8.536487], [47.414405, 8.537827], [47.358248, 8.557479], [47.41681, 8.510577], [47.374974, 8.519296], [47.386067, 8.535322], [47.409571, 8.578088], [47.380974, 8.503764], [47.360298, 8.523645], [47.369723, 8.501632], [47.384888, 8.526848], [47.373228, 8.520373], [47.385079, 8.508362], [47.363358, 8.557507], [47.391086, 8.522934], [47.375777, 8.523828], [47.38968, 8.493169], [47.357456, 8.524567], [47.390105, 8.510463], [47.370553, 8.509196], [47.369586, 8.531765], [47.419354, 8.556337], [47.419134, 8.556836], [47.372015, 8.522162], [47.394937, 8.486809], [47.421351, 8.49813], [47.366789, 8.543055], [47.41119, 8.545764], [47.36462, 8.566417], [47.374015, 8.544581], [47.425916, 8.555865], [47.388592, 8.480181], [47.38163, 8.532754], [47.375733, 8.544604], [47.367906, 8.494764], [47.417281, 8.512203], [47.430065, 8.544433], [47.362195, 8.5475], [47.378523, 8.517871], [47.404749, 8.594534], [47.363068, 8.565987], [47.366531, 8.540891], [47.386673, 8.488448], [47.37607, 8.559085], [47.367317, 8.539517], [47.393048, 8.488772], [47.373762, 8.500667], [47.377451, 8.538998], [47.380496, 8.567362], [47.378032, 8.493098], [47.333765, 8.53201], [47.402369, 8.499396], [47.427073, 8.544106], [47.385589, 8.483036], [47.395652, 8.522391], [47.387334, 8.516328], [47.361531, 8.526464], [47.374632, 8.524136], [47.376567, 8.543906], [47.416252, 8.506762], [47.365718, 8.550592], [47.369006, 8.528417], [47.409171, 8.541482], [47.379154, 8.54241], [47.414048, 8.549733], [47.383105, 8.500005], [47.374565, 8.540673], [47.389156, 8.47043], [47.376346, 8.558534], [47.39048, 8.522418], [47.360096, 8.595512], [47.409641, 8.545931], [47.393246, 8.478868], [47.369274, 8.519948], [47.370448, 8.54983], [47.373132, 8.53536], [47.394187, 8.52509], [47.370599, 8.516784], [47.378099, 8.541766], [47.364116, 8.534711], [47.409172, 8.545126], [47.400224, 8.489933], [47.385585, 8.532994], [47.37672, 8.516365], [47.374898, 8.518765], [47.39026, 8.521897], [47.411499, 8.526424], [47.374776, 8.485128], [47.379349, 8.521888], [47.378671, 8.523132], [47.381442, 8.497906], [47.365247, 8.521575], [47.417496, 8.541946], [47.372972, 8.496507], [47.376392, 8.524476], [47.363896, 8.566891], [47.3787, 8.529674], [47.389463, 8.511854], [47.370653, 8.516772], [47.393928, 8.543935], [47.415429, 8.544514], [47.367737, 8.546384], [47.371833, 8.52241], [47.374035, 8.551931], [47.419737, 8.50438], [47.37335, 8.536967], [47.385353, 8.536605], [47.357777, 8.514367], [47.419669, 8.504909], [47.381299, 8.541024], [47.382814, 8.529255], [47.392328, 8.52382], [47.392121, 8.494781], [47.364373, 8.548234], [47.374565, 8.516891], [47.376231, 8.56755], [47.358946, 8.534446], [47.374753, 8.54171], [47.390113, 8.510583], [47.386485, 8.496311], [47.385803, 8.529926], [47.344025, 8.530408], [47.369606, 8.548462], [47.420865, 8.512739], [47.41402, 8.508838], [47.373576, 8.519705], [47.368874, 8.560919], [47.375984, 8.514205], [47.377923, 8.525222], [47.379701, 8.527497], [47.391715, 8.51341], [47.376875, 8.541833], [47.413056, 8.517697], [47.353702, 8.512366], [47.393769, 8.508272], [47.426347, 8.541891], [47.410829, 8.554317], [47.369548, 8.53383], [47.409154, 8.549843], [47.382698, 8.500262], [47.39029, 8.516706], [47.366354, 8.540503], [47.379324, 8.507187], [47.368271, 8.522351], [47.393189, 8.474151], [47.36329, 8.549602], [47.368722, 8.500924], [47.372688, 8.534702], [47.336378, 8.524799], [47.346191, 8.534396], [47.371894, 8.536884], [47.366907, 8.545784], [47.356724, 8.553317], [47.366348, 8.499844], [47.358527, 8.551912], [47.335162, 8.54109], [47.396493, 8.528661], [47.358487, 8.534503], [47.375636, 8.496427], [47.376974, 8.535227], [47.37186, 8.522371], [47.387873, 8.486074], [47.369065, 8.527862], [47.412389, 8.546425], [47.366332, 8.53436], [47.370043, 8.543307], [47.385269, 8.487625], [47.333767, 8.514571], [47.363299, 8.533569], [47.380931, 8.535335], [47.370085, 8.540792], [47.369391, 8.525671], [47.342664, 8.531663], [47.382475, 8.52999], [47.411225, 8.525994], [47.405059, 8.482517], [47.419605, 8.548086], [47.391529, 8.539898], [47.366316, 8.540794], [47.382411, 8.530095], [47.398848, 8.49494], [47.390609, 8.522991], [47.370817, 8.52427], [47.367289, 8.545329], [47.419623, 8.5481], [47.391751, 8.519173], [47.365635, 8.521516], [47.408642, 8.580215], [47.37485, 8.534376], [47.376983, 8.546537], [47.427152, 8.49134], [47.360426, 8.564793], [47.383004, 8.513843], [47.365867, 8.530246], [47.366497, 8.516873], [47.370948, 8.538003], [47.378317, 8.527349], [47.406907, 8.550577], [47.361173, 8.529144], [47.375057, 8.528686], [47.344015, 8.532498], [47.367965, 8.540418], [47.375523, 8.516434], [47.390564, 8.489889], [47.36674, 8.527364], [47.400299, 8.548346], [47.375565, 8.494333], [47.397958, 8.532546], [47.378324, 8.540804], [47.355422, 8.525651], [47.388977, 8.51762], [47.382081, 8.49882], [47.37599, 8.512642], [47.41143, 8.563711], [47.36135, 8.506337], [47.369971, 8.541399], [47.409079, 8.572327], [47.429926, 8.539181], [47.385488, 8.542329], [47.37541, 8.540823], [47.390739, 8.546266], [47.375577, 8.526909], [47.406002, 8.484655], [47.366499, 8.531901], [47.361721, 8.574074], [47.418892, 8.507292], [47.406096, 8.584824], [47.421172, 8.549762], [47.369179, 8.54803], [47.393373, 8.473651], [47.403732, 8.550591], [47.409347, 8.540889], [47.361357, 8.512401], [47.358923, 8.549087], [47.329559, 8.529622], [47.391291, 8.487148], [47.415105, 8.570574], [47.391323, 8.542636], [47.392689, 8.523695], [47.385512, 8.533112], [47.396279, 8.509144], [47.374518, 8.53997], [47.378674, 8.541844], [47.397043, 8.530355], [47.364277, 8.555474], [47.38651, 8.527516], [47.37069, 8.516733], [47.39364, 8.510548], [47.411166, 8.543524], [47.411268, 8.532793], [47.36911, 8.52781], [47.399785, 8.543805], [47.364167, 8.546284], [47.400184, 8.546264], [47.35344, 8.554281], [47.38305, 8.514718], [47.391347, 8.522926], [47.38227, 8.488043], [47.364348, 8.546168], [47.384019, 8.482608], [47.377905, 8.528056], [47.367487, 8.54532], [47.419272, 8.508029], [47.391036, 8.527331], [47.416519, 8.508079], [47.404633, 8.571663], [47.378348, 8.52976], [47.417723, 8.545423], [47.404204, 8.561293], [47.412283, 8.553645], [47.354413, 8.558775], [47.414486, 8.483496], [47.363441, 8.507902], [47.411957, 8.563192], [47.391465, 8.511285], [47.400587, 8.548313], [47.412167, 8.481251], [47.372542, 8.529257], [47.39181, 8.51765], [47.365196, 8.537474], [47.378538, 8.510456], [47.41784, 8.553894], [47.37352, 8.519915], [47.421802, 8.546886], [47.363014, 8.548365], [47.370767, 8.535259], [47.403674, 8.571338], [47.387492, 8.536861], [47.379845, 8.554794], [47.374103, 8.544822], [47.414418, 8.513484], [47.360571, 8.535684], [47.365791, 8.526934], [47.377318, 8.4994], [47.392222, 8.476675], [47.403476, 8.548187], [47.36009, 8.522873], [47.413205, 8.531508], [47.362482, 8.53436], [47.370667, 8.469913], [47.424512, 8.522886], [47.362431, 8.526429], [47.373886, 8.538302], [47.385878, 8.532457], [47.373328, 8.50377], [47.382933, 8.530966], [47.376813, 8.514116], [47.392386, 8.524351], [47.389897, 8.48108], [47.37548, 8.564303], [47.385193, 8.539277], [47.367487, 8.54532], [47.378951, 8.510491], [47.377007, 8.542154], [47.419186, 8.547653], [47.387077, 8.535038], [47.386694, 8.520342], [47.335831, 8.532331], [47.364674, 8.546016], [47.383081, 8.528652], [47.333422, 8.518706], [47.370073, 8.541044], [47.362545, 8.504534], [47.36653, 8.541884], [47.389423, 8.543762], [47.386193, 8.526795], [47.372722, 8.534928], [47.383172, 8.539924], [47.382558, 8.52978], [47.406907, 8.550577], [47.370121, 8.479727], [47.377063, 8.523933], [47.388012, 8.488646], [47.3666, 8.544891], [47.369956, 8.52306], [47.3745, 8.532449], [47.400239, 8.585851], [47.362916, 8.554744], [47.36909, 8.525161], [47.407153, 8.551152], [47.388045, 8.490991], [47.387614, 8.541023], [47.376621, 8.527897], [47.391385, 8.519814], [47.3861, 8.508833], [47.407876, 8.580305], [47.431, 8.550126], [47.381667, 8.528795], [47.369036, 8.525213], [47.376855, 8.543038], [47.37443, 8.53973], [47.399764, 8.544056], [47.376039, 8.541816], [47.415072, 8.544254], [47.387963, 8.494049], [47.378464, 8.531735], [47.407599, 8.547862], [47.422914, 8.550063], [47.360615, 8.501239], [47.373446, 8.481037], [47.3588, 8.583821], [47.382313, 8.499102], [47.405976, 8.548213], [47.380567, 8.519542], [47.379763, 8.494615], [47.401473, 8.491124], [47.357161, 8.552691], [47.406894, 8.586869], [47.387866, 8.524908], [47.3786, 8.55886], [47.37477, 8.527608], [47.421141, 8.500419], [47.403263, 8.534656], [47.410613, 8.550562], [47.430519, 8.485998], [47.386099, 8.492238], [47.381666, 8.490097], [47.428073, 8.489913], [47.376715, 8.544465], [47.37235, 8.574393], [47.383216, 8.540985], [47.394018, 8.524968], [47.385275, 8.494844], [47.357665, 8.521513], [47.360678, 8.524434], [47.364473, 8.536863], [47.396058, 8.545012], [47.37112, 8.5303], [47.386901, 8.545988], [47.405894, 8.548357], [47.410858, 8.546618], [47.384997, 8.508453], [47.36687, 8.513465], [47.391373, 8.520172], [47.338388, 8.532079], [47.399713, 8.543777], [47.365781, 8.538413], [47.377797, 8.532834], [47.398313, 8.533044], [47.391439, 8.519868], [47.369846, 8.554452], [47.404344, 8.572677], [47.364629, 8.566417], [47.398685, 8.542166], [47.37012, 8.5512], [47.366427, 8.545152], [47.422876, 8.550314], [47.376592, 8.527102], [47.38743, 8.525284], [47.378675, 8.517954], [47.413992, 8.541489], [47.351126, 8.582981], [47.372545, 8.534593], [47.372036, 8.534212], [47.37737, 8.548346], [47.383004, 8.513843], [47.389462, 8.512927], [47.389694, 8.533184], [47.385106, 8.495555], [47.385896, 8.533451], [47.403105, 8.575274], [47.374111, 8.516339], [47.403881, 8.558424], [47.378802, 8.529359], [47.343768, 8.534836], [47.37318, 8.536963], [47.392596, 8.502778], [47.393869, 8.505174], [47.373419, 8.53824], [47.374372, 8.542987], [47.417895, 8.509088], [47.38413, 8.539467], [47.361852, 8.547586], [47.381574, 8.550883], [47.426482, 8.54192], [47.370081, 8.525089], [47.374035, 8.498315], [47.369417, 8.52579], [47.336121, 8.514804], [47.348145, 8.527527], [47.378934, 8.524832], [47.375946, 8.533591], [47.385118, 8.531077], [47.386543, 8.482975], [47.375732, 8.526767], [47.364484, 8.546131], [47.385929, 8.498102], [47.395023, 8.545097], [47.375941, 8.529353], [47.427875, 8.490904], [47.392878, 8.522759], [47.369814, 8.509301], [47.355574, 8.532431], [47.370357, 8.518633], [47.389326, 8.524514], [47.383996, 8.511638], [47.378786, 8.542363], [47.379896, 8.521091], [47.374013, 8.544806], [47.374034, 8.520773], [47.371892, 8.521895], [47.3836, 8.529934], [47.372043, 8.502698], [47.359575, 8.524994], [47.367756, 8.523559], [47.389519, 8.473099], [47.377924, 8.528016], [47.406255, 8.566768], [47.375613, 8.526976], [47.377264, 8.538769], [47.370166, 8.540807], [47.358937, 8.534459], [47.39131, 8.537311], [47.377619, 8.521151], [47.361836, 8.549227], [47.368973, 8.556327], [47.383995, 8.529041], [47.410796, 8.557682], [47.372964, 8.520751], [47.419175, 8.507828], [47.379398, 8.495164], [47.407433, 8.57416], [47.412287, 8.509465], [47.365094, 8.549096], [47.364413, 8.566479], [47.362855, 8.558304], [47.370372, 8.524737], [47.371589, 8.519651], [47.393755, 8.53748], [47.367651, 8.496123], [47.357547, 8.52159], [47.385665, 8.493527], [47.381728, 8.516599], [47.370962, 8.516447], [47.335235, 8.534422], [47.412189, 8.55033], [47.407657, 8.548301], [47.377945, 8.497665], [47.374531, 8.525352], [47.371948, 8.534952], [47.380088, 8.548217], [47.37766, 8.508068], [47.377494, 8.521082], [47.380455, 8.537113], [47.370627, 8.532051], [47.37927, 8.537844], [47.388653, 8.492288], [47.424577, 8.513066], [47.391565, 8.511155], [47.379571, 8.524991], [47.36716, 8.532444], [47.366944, 8.520033], [47.379239, 8.522084], [47.366855, 8.518032], [47.38785, 8.519888], [47.373011, 8.532908], [47.389997, 8.522038], [47.36596, 8.500988], [47.379396, 8.53778], [47.367372, 8.494184], [47.352876, 8.527571], [47.375692, 8.529057], [47.382235, 8.514265], [47.370287, 8.541234], [47.374454, 8.540049], [47.388076, 8.540727], [47.374965, 8.519375], [47.429936, 8.540003], [47.417617, 8.553717], [47.406238, 8.55373], [47.3594, 8.585859], [47.361715, 8.526044], [47.381099, 8.502879], [47.36621, 8.553714], [47.380543, 8.567231], [47.398443, 8.494893], [47.368118, 8.555475], [47.361202, 8.525159], [47.358502, 8.553619], [47.357118, 8.527035], [47.372864, 8.542717], [47.369389, 8.525882], [47.363317, 8.533583], [47.396026, 8.541793], [47.374776, 8.549629], [47.403705, 8.534519], [47.395384, 8.533672], [47.374509, 8.53997], [47.402342, 8.499316], [47.379999, 8.520669], [47.379719, 8.549176], [47.395678, 8.536765], [47.376463, 8.548247], [47.38332, 8.505983], [47.383012, 8.514863], [47.354086, 8.553513], [47.377954, 8.541895], [47.391621, 8.505142], [47.379652, 8.542129], [47.387151, 8.540549], [47.374112, 8.515266], [47.372563, 8.535547], [47.406902, 8.586909], [47.373965, 8.526174], [47.369832, 8.547487], [47.341329, 8.530154], [47.394769, 8.525433], [47.359747, 8.550415], [47.371111, 8.530327], [47.370686, 8.53523], [47.370053, 8.541321], [47.360256, 8.566536], [47.387262, 8.519201], [47.391686, 8.513581], [47.363506, 8.569941], [47.412974, 8.551009], [47.393799, 8.472321], [47.376434, 8.543718], [47.383526, 8.573042], [47.418489, 8.508], [47.377536, 8.504013], [47.409745, 8.531211], [47.382155, 8.514197], [47.346573, 8.563878], [47.367354, 8.490225], [47.369526, 8.52856], [47.407525, 8.584908], [47.374672, 8.539907], [47.403628, 8.554815], [47.390747, 8.479614], [47.35437, 8.557676], [47.381808, 8.529169], [47.414008, 8.543636], [47.357656, 8.588483], [47.372556, 8.532541], [47.419706, 8.50483], [47.378123, 8.536469], [47.37931, 8.559894], [47.409683, 8.545282], [47.378423, 8.543653], [47.385172, 8.536787], [47.36578, 8.552579], [47.357943, 8.519705], [47.374011, 8.519396], [47.414366, 8.551263], [47.409853, 8.537826], [47.384971, 8.532319], [47.369298, 8.510614], [47.372782, 8.518033], [47.36442, 8.546183], [47.362412, 8.547333], [47.41358, 8.572025], [47.377572, 8.522328], [47.368154, 8.548935], [47.36422, 8.547317], [47.365934, 8.52703], [47.358468, 8.50575], [47.3706, 8.516691], [47.344021, 8.529905], [47.402342, 8.499316], [47.391533, 8.519446], [47.391961, 8.517879], [47.385749, 8.532786], [47.411199, 8.570769], [47.385017, 8.532267], [47.391195, 8.516168], [47.38435, 8.548385], [47.371418, 8.471477], [47.365516, 8.521712], [47.369909, 8.536591], [47.392253, 8.524177], [47.376112, 8.535978], [47.35479, 8.526829], [47.395134, 8.532462], [47.370106, 8.548883], [47.372514, 8.478609], [47.379124, 8.511262], [47.382361, 8.544755], [47.425825, 8.556023], [47.420157, 8.507609], [47.368068, 8.494728], [47.380954, 8.526198], [47.395146, 8.491449], [47.393774, 8.502801], [47.349816, 8.575409], [47.379402, 8.523888], [47.347484, 8.532808], [47.382125, 8.512567], [47.401035, 8.548534], [47.395356, 8.518477], [47.378519, 8.523076], [47.388488, 8.486722], [47.369126, 8.547922], [47.370344, 8.524776], [47.376402, 8.528171], [47.383269, 8.513332], [47.376925, 8.544192], [47.378371, 8.530237], [47.412151, 8.524105], [47.387376, 8.488329], [47.380239, 8.526673], [47.368136, 8.522348], [47.351394, 8.525476], [47.364505, 8.566256], [47.364231, 8.531086], [47.369458, 8.526294], [47.334921, 8.524862], [47.371954, 8.517103], [47.380024, 8.546467], [47.374904, 8.54946], [47.377767, 8.525524], [47.395937, 8.5455], [47.364822, 8.555843], [47.376999, 8.543888], [47.364719, 8.545964], [47.369014, 8.538003], [47.379389, 8.507917], [47.401928, 8.488563], [47.376648, 8.527831], [47.382107, 8.50972], [47.401587, 8.48951], [47.381266, 8.548228], [47.393373, 8.520769], [47.367092, 8.544279], [47.390824, 8.474065], [47.340021, 8.51913], [47.393364, 8.520835], [47.383554, 8.480254], [47.420853, 8.549252], [47.422822, 8.551215], [47.364536, 8.553785], [47.356709, 8.523691], [47.382503, 8.500934], [47.373766, 8.515762], [47.413034, 8.553183], [47.39289, 8.522454], [47.385061, 8.529513], [47.3906, 8.522964], [47.371089, 8.520171], [47.430153, 8.549313], [47.381219, 8.49773], [47.3638, 8.55177], [47.366756, 8.535216], [47.374413, 8.521642], [47.343985, 8.528064], [47.367888, 8.560621], [47.365722, 8.532269], [47.387158, 8.535093], [47.398779, 8.533199], [47.417905, 8.508916], [47.38512, 8.503873], [47.362478, 8.533883], [47.386764, 8.490396], [47.37782, 8.574324], [47.381313, 8.506976], [47.390915, 8.522017], [47.362813, 8.533599], [47.379208, 8.526334], [47.402929, 8.575747], [47.388852, 8.496186], [47.378529, 8.575319], [47.374477, 8.540499], [47.382766, 8.575343], [47.394366, 8.541321], [47.39106, 8.477792], [47.381438, 8.537862], [47.388591, 8.523281], [47.385812, 8.482285], [47.362408, 8.592782], [47.405628, 8.585715], [47.377095, 8.529112], [47.402297, 8.543552], [47.376041, 8.526402], [47.369633, 8.525848], [47.361784, 8.576776], [47.360039, 8.568518], [47.370275, 8.52741], [47.361526, 8.554304], [47.369616, 8.538969], [47.38826, 8.546798], [47.388009, 8.48503], [47.417243, 8.512427], [47.40438, 8.533592], [47.38108, 8.542371], [47.399906, 8.544337], [47.371423, 8.517225], [47.407076, 8.586687], [47.410223, 8.546181], [47.415509, 8.56605], [47.405453, 8.592456], [47.383733, 8.498243], [47.386788, 8.547482], [47.365342, 8.545725], [47.377217, 8.539894], [47.419908, 8.548344], [47.369143, 8.528142], [47.406912, 8.586856], [47.374325, 8.531902], [47.37394, 8.576387], [47.369868, 8.547474], [47.393074, 8.492799], [47.411681, 8.512792], [47.344486, 8.518705], [47.368188, 8.553821], [47.407908, 8.547498], [47.368733, 8.519183], [47.376714, 8.511147], [47.376264, 8.525652], [47.377417, 8.526404], [47.371382, 8.509028], [47.384576, 8.500392], [47.366711, 8.541755], [47.352853, 8.557326], [47.391913, 8.543006], [47.341336, 8.530432], [47.416259, 8.532935], [47.379638, 8.507194], [47.328917, 8.513732], [47.398671, 8.547425], [47.390878, 8.522109], [47.384964, 8.53216], [47.367312, 8.537226], [47.402459, 8.499371], [47.383076, 8.513871], [47.413268, 8.531496], [47.391886, 8.542992], [47.411586, 8.558772], [47.385643, 8.532651], [47.413971, 8.548406], [47.363841, 8.531422], [47.380304, 8.50138], [47.3864, 8.527739], [47.370545, 8.51289], [47.379076, 8.555241], [47.385347, 8.517202], [47.396807, 8.529648], [47.403926, 8.569501], [47.39162, 8.505182], [47.386815, 8.547456], [47.413507, 8.539504], [47.383546, 8.512662], [47.356939, 8.522174], [47.374176, 8.544744], [47.389786, 8.526378], [47.373814, 8.546868], [47.398778, 8.524707], [47.368827, 8.563024], [47.393776, 8.500695], [47.39718, 8.531126], [47.373769, 8.538339], [47.381379, 8.5174], [47.36125, 8.535301], [47.385845, 8.485597], [47.377716, 8.522397], [47.397482, 8.532457], [47.360925, 8.57178], [47.373515, 8.529078], [47.342508, 8.526261], [47.419086, 8.506726], [47.415189, 8.550777], [47.399979, 8.545134], [47.407314, 8.549433], [47.387407, 8.487932], [47.428765, 8.489039], [47.370824, 8.522562], [47.393737, 8.496111], [47.396992, 8.480305], [47.37485, 8.534376], [47.370804, 8.548328], [47.370607, 8.52077], [47.406844, 8.550589], [47.364533, 8.548449], [47.410954, 8.563635], [47.380025, 8.548269], [47.404024, 8.534049], [47.381232, 8.536798], [47.366807, 8.543028], [47.366622, 8.541661], [47.332652, 8.529857], [47.391589, 8.513473], [47.365887, 8.549854], [47.367888, 8.560621], [47.352964, 8.556944], [47.407206, 8.564245], [47.400661, 8.534006], [47.36442, 8.546156], [47.370788, 8.491458], [47.364634, 8.549153], [47.348898, 8.573602], [47.379508, 8.525082], [47.414505, 8.520522], [47.393223, 8.526276], [47.366554, 8.545022], [47.374903, 8.525902], [47.415709, 8.548151], [47.364711, 8.560832], [47.37459, 8.527697], [47.399786, 8.495595], [47.412227, 8.546422], [47.414557, 8.551095], [47.384007, 8.532511], [47.346565, 8.563798], [47.356421, 8.523712], [47.374007, 8.546342], [47.381065, 8.541125], [47.418608, 8.50783], [47.406411, 8.538444], [47.375608, 8.544548], [47.39213, 8.511391], [47.405759, 8.532309], [47.376749, 8.499561], [47.38034, 8.501314], [47.351644, 8.534217], [47.383067, 8.513858], [47.360453, 8.522497], [47.368366, 8.541843], [47.37047, 8.518039], [47.384741, 8.531957], [47.378153, 8.557632], [47.375212, 8.54458], [47.375545, 8.518844], [47.373391, 8.531764], [47.346645, 8.532049], [47.367056, 8.544331], [47.376848, 8.535278], [47.375607, 8.53704], [47.365451, 8.535202], [47.383202, 8.506086], [47.36893, 8.547667], [47.376908, 8.535531], [47.36243, 8.54736], [47.360648, 8.548382], [47.410768, 8.546564], [47.396816, 8.529701], [47.40459, 8.594173], [47.395052, 8.529758], [47.353619, 8.55439], [47.37999, 8.548122], [47.367999, 8.54627], [47.388312, 8.525249], [47.412396, 8.525806], [47.375375, 8.484544], [47.364864, 8.531655], [47.41059, 8.55296], [47.413775, 8.550959], [47.359393, 8.522396], [47.377589, 8.522448], [47.362553, 8.534441], [47.356325, 8.553613], [47.372994, 8.552624], [47.411877, 8.537867], [47.373213, 8.552218], [47.38405, 8.540273], [47.378491, 8.509647], [47.403034, 8.536029], [47.344943, 8.531392], [47.370681, 8.516733], [47.402095, 8.543985], [47.401399, 8.545229], [47.413633, 8.529052], [47.344132, 8.531495], [47.39986, 8.587698], [47.369882, 8.510719], [47.348378, 8.534361], [47.407553, 8.550763], [47.369025, 8.525372], [47.412343, 8.523751], [47.4228, 8.499007], [47.364766, 8.530647], [47.360856, 8.505361], [47.344615, 8.529904], [47.391642, 8.513514], [47.410396, 8.572011], [47.376319, 8.527494], [47.390859, 8.539328], [47.364173, 8.551328], [47.41227, 8.523816], [47.360278, 8.552213], [47.364316, 8.60074], [47.39813, 8.536193], [47.358083, 8.588081], [47.378153, 8.541807], [47.405936, 8.587259], [47.408681, 8.544718], [47.388064, 8.520078], [47.393523, 8.539198], [47.411258, 8.548031], [47.372661, 8.499096], [47.367852, 8.549472], [47.42706, 8.491484], [47.397626, 8.596128], [47.387523, 8.519246], [47.322968, 8.514062], [47.380359, 8.547137], [47.361838, 8.567589], [47.367216, 8.545433], [47.402249, 8.535377], [47.387833, 8.488497], [47.369044, 8.525293], [47.377682, 8.506731], [47.378356, 8.526039], [47.364361, 8.555118], [47.414895, 8.541176], [47.370297, 8.548635], [47.352531, 8.533706], [47.360024, 8.552512], [47.401806, 8.506777], [47.414216, 8.550929], [47.376289, 8.567167], [47.361571, 8.532779], [47.410131, 8.541727], [47.410885, 8.562467], [47.370215, 8.548806], [47.362944, 8.549118], [47.370297, 8.513468], [47.365105, 8.501991], [47.372011, 8.53494], [47.367286, 8.563296], [47.390617, 8.523123], [47.391048, 8.479143], [47.399499, 8.50534], [47.404581, 8.572377], [47.339175, 8.5191], [47.396971, 8.577898], [47.384041, 8.528923], [47.362426, 8.504783], [47.370546, 8.548932], [47.390539, 8.474801], [47.37999, 8.536839], [47.372676, 8.534133], [47.378156, 8.541436], [47.385159, 8.539965], [47.378039, 8.541473], [47.370708, 8.517607], [47.368638, 8.52449], [47.417908, 8.50376], [47.393817, 8.472269], [47.368534, 8.528831], [47.374319, 8.542906], [47.390923, 8.522136], [47.387014, 8.489593], [47.391529, 8.54268], [47.374993, 8.534485], [47.372611, 8.534317], [47.393342, 8.545009], [47.379296, 8.523701], [47.364824, 8.554651], [47.412036, 8.549479], [47.366513, 8.540864], [47.39091, 8.482504], [47.413176, 8.545951], [47.369484, 8.506103], [47.411198, 8.543989], [47.390627, 8.522978], [47.420963, 8.501224], [47.375761, 8.543545], [47.376886, 8.512051], [47.379645, 8.527694], [47.405879, 8.573041], [47.380833, 8.528606], [47.383506, 8.573214], [47.385744, 8.487794], [47.4083, 8.546976], [47.387368, 8.498117], [47.348299, 8.533142], [47.391536, 8.513313], [47.386787, 8.469801], [47.347947, 8.520892], [47.368107, 8.578685], [47.406522, 8.573545], [47.380913, 8.52866], [47.393421, 8.537699], [47.410543, 8.572557], [47.389627, 8.512533], [47.402399, 8.585699], [47.409178, 8.547273], [47.379014, 8.494865], [47.380695, 8.504778], [47.367991, 8.519591], [47.366443, 8.540677], [47.342594, 8.536188], [47.40177, 8.489063], [47.362325, 8.55918], [47.370216, 8.521212], [47.375768, 8.487836], [47.380026, 8.520656], [47.388334, 8.536269], [47.386945, 8.490228], [47.424109, 8.505289], [47.368909, 8.496214], [47.346979, 8.531964], [47.374315, 8.552731], [47.381589, 8.537018], [47.403162, 8.587703], [47.372665, 8.528598], [47.405378, 8.591845], [47.407407, 8.56299], [47.379513, 8.5245], [47.379958, 8.527833], [47.391673, 8.518933], [47.377432, 8.539064], [47.37026, 8.54882], [47.396798, 8.483905], [47.379773, 8.494562], [47.387068, 8.547356], [47.385204, 8.50059], [47.384778, 8.496052], [47.375033, 8.511988], [47.368451, 8.524288], [47.36923, 8.553009], [47.41445, 8.556592], [47.359153, 8.535443], [47.363152, 8.563804], [47.364989, 8.537443], [47.388999, 8.524892], [47.382252, 8.547653], [47.409453, 8.538308], [47.385093, 8.528984], [47.37197, 8.536462], [47.393918, 8.525019], [47.373459, 8.519768], [47.371781, 8.530738], [47.335697, 8.51596], [47.413872, 8.545634], [47.390716, 8.483123], [47.377419, 8.529105], [47.369145, 8.527969], [47.348142, 8.562588], [47.387142, 8.499198], [47.401443, 8.491494], [47.399953, 8.591078], [47.3412, 8.527637], [47.386263, 8.53171], [47.362612, 8.547151], [47.386181, 8.528], [47.385375, 8.517163], [47.398187, 8.473466], [47.381698, 8.51685], [47.379179, 8.529446], [47.411751, 8.512992], [47.368537, 8.556755], [47.366702, 8.531388], [47.378332, 8.578043], [47.386906, 8.535087], [47.365819, 8.561517], [47.362866, 8.517409], [47.374591, 8.484727], [47.386171, 8.498212], [47.330108, 8.515291], [47.3906, 8.491889], [47.397446, 8.531568], [47.386905, 8.528505], [47.370612, 8.470097], [47.360504, 8.522828], [47.385493, 8.529443], [47.377325, 8.526627], [47.395023, 8.545097], [47.399494, 8.517435], [47.377058, 8.483478], [47.383727, 8.496932], [47.375212, 8.544593], [47.397002, 8.514642], [47.402141, 8.495787], [47.411859, 8.543512], [47.370271, 8.529687], [47.360041, 8.550659], [47.39812, 8.53251], [47.379039, 8.525139], [47.37831, 8.509829], [47.356721, 8.509885], [47.371057, 8.523652], [47.428988, 8.545166], [47.363898, 8.56668], [47.410627, 8.542559], [47.365398, 8.532302], [47.382973, 8.540013], [47.402436, 8.535593], [47.360786, 8.530115], [47.379514, 8.544298], [47.40367, 8.578161], [47.401514, 8.545417], [47.388438, 8.491198], [47.35278, 8.572163], [47.416278, 8.545114], [47.373057, 8.53279], [47.37709, 8.496708], [47.366918, 8.558641], [47.408625, 8.550574], [47.355219, 8.554516], [47.384355, 8.534704], [47.386443, 8.543091], [47.386706, 8.547533], [47.391179, 8.515942], [47.407946, 8.54253], [47.408932, 8.543928], [47.356527, 8.551367], [47.406871, 8.550577], [47.370278, 8.563703], [47.374758, 8.489074], [47.369665, 8.523412], [47.407093, 8.531051], [47.394249, 8.49318], [47.37074, 8.540012], [47.408635, 8.57995], [47.373615, 8.546957], [47.394416, 8.526605], [47.351003, 8.579947], [47.370056, 8.54099], [47.368399, 8.562591], [47.378531, 8.502444], [47.376565, 8.534769], [47.394542, 8.472733], [47.417176, 8.510001], [47.378538, 8.526797], [47.374288, 8.486429], [47.409337, 8.528685], [47.389781, 8.483979], [47.369369, 8.5271], [47.38034, 8.526463], [47.389263, 8.546381], [47.417843, 8.502977], [47.37137, 8.519938], [47.344338, 8.528746], [47.369172, 8.52797], [47.393094, 8.492614], [47.37719, 8.539893], [47.362753, 8.535213], [47.373437, 8.493868], [47.383496, 8.488716], [47.385531, 8.536821], [47.417198, 8.512466], [47.399735, 8.495263], [47.3694, 8.541864], [47.36063, 8.522791], [47.397485, 8.489482], [47.407601, 8.530651], [47.38861, 8.480247], [47.366935, 8.522906], [47.366764, 8.540035], [47.377671, 8.54324], [47.393803, 8.52295], [47.359048, 8.520747], [47.399896, 8.495359], [47.376563, 8.549017], [47.387718, 8.532879], [47.408978, 8.550303], [47.335099, 8.519282], [47.370351, 8.518342], [47.403277, 8.49846], [47.40395, 8.534299], [47.362587, 8.519389], [47.386766, 8.53082], [47.37487, 8.517983], [47.41223, 8.555499], [47.370203, 8.518696], [47.389793, 8.512086], [47.38985, 8.477331], [47.399178, 8.495172], [47.386028, 8.498117], [47.388379, 8.539078], [47.368392, 8.556911], [47.403084, 8.490043], [47.390932, 8.52215], [47.372545, 8.534607], [47.379727, 8.527524], [47.367192, 8.533755], [47.369339, 8.531204], [47.384366, 8.516295], [47.377494, 8.541992], [47.366392, 8.559067], [47.412179, 8.550436], [47.372388, 8.523587], [47.335937, 8.515237], [47.382722, 8.539915], [47.374683, 8.529274], [47.329443, 8.514246], [47.366815, 8.543174], [47.366337, 8.600083], [47.365584, 8.559804], [47.38601, 8.498116], [47.378589, 8.54224], [47.377927, 8.526666], [47.360439, 8.569042], [47.385043, 8.49562], [47.366429, 8.54494], [47.357199, 8.571039], [47.383132, 8.505873], [47.385576, 8.499326], [47.343718, 8.535285], [47.407894, 8.583114], [47.371194, 8.549925], [47.376536, 8.541535], [47.386842, 8.535139], [47.414056, 8.548938], [47.376723, 8.544558], [47.425037, 8.551963], [47.388648, 8.522977], [47.354225, 8.553145], [47.362568, 8.547971], [47.409679, 8.543811], [47.377123, 8.529033], [47.378822, 8.508925], [47.384336, 8.534783], [47.394244, 8.47384], [47.366195, 8.52219], [47.357075, 8.535427], [47.398614, 8.53925], [47.402089, 8.498529], [47.370083, 8.512298], [47.371581, 8.558262], [47.380181, 8.525215], [47.354327, 8.555623], [47.385502, 8.530436], [47.382864, 8.547612], [47.3846, 8.531623], [47.35445, 8.553071], [47.425898, 8.547515], [47.412344, 8.523645], [47.404466, 8.556489], [47.391303, 8.513256], [47.389218, 8.485584], [47.380987, 8.52845], [47.374345, 8.543012], [47.38793, 8.498578], [47.377559, 8.498558], [47.37913, 8.495013], [47.378839, 8.542443], [47.3857, 8.543645], [47.409502, 8.542562], [47.403207, 8.587637], [47.381604, 8.492003], [47.403343, 8.54886], [47.381325, 8.534509], [47.389997, 8.543893], [47.392676, 8.529934], [47.393785, 8.502656], [47.362242, 8.518733], [47.377849, 8.509091], [47.396848, 8.595727], [47.365441, 8.537241], [47.377385, 8.498885], [47.377788, 8.507845], [47.426279, 8.554654], [47.413936, 8.544536], [47.35114, 8.582518], [47.376291, 8.527506], [47.369217, 8.532698], [47.394595, 8.531457], [47.386517, 8.503557], [47.404686, 8.572724], [47.367783, 8.515867], [47.410712, 8.572812], [47.411725, 8.512912], [47.397592, 8.502334], [47.368999, 8.529158], [47.384645, 8.509559], [47.352274, 8.509279], [47.357958, 8.572511], [47.391852, 8.510339], [47.372252, 8.53419], [47.374184, 8.544836], [47.372816, 8.486056], [47.401787, 8.534705], [47.377246, 8.538756], [47.367912, 8.540364], [47.419888, 8.482953], [47.370558, 8.53544], [47.410041, 8.537962], [47.375539, 8.554518], [47.375671, 8.545437], [47.368177, 8.565102], [47.344708, 8.528622], [47.398369, 8.537562], [47.370197, 8.548792], [47.372602, 8.547478], [47.403779, 8.546577], [47.38318, 8.483889], [47.406633, 8.548174], [47.38971, 8.511435], [47.366081, 8.529469], [47.376383, 8.513882], [47.393492, 8.532057], [47.371309, 8.538779], [47.385493, 8.530462], [47.365273, 8.519748], [47.399367, 8.515657], [47.39104, 8.479036], [47.378977, 8.522198], [47.379304, 8.495586], [47.360573, 8.528827], [47.378598, 8.542306], [47.403146, 8.49798], [47.37746, 8.491683], [47.364419, 8.550989], [47.39002, 8.480407], [47.377135, 8.540091], [47.381735, 8.545298], [47.367547, 8.546592], [47.36721, 8.537516], [47.405808, 8.581214], [47.393392, 8.499363], [47.356416, 8.553549], [47.378252, 8.541716], [47.366617, 8.551591], [47.387181, 8.519292], [47.388388, 8.483872], [47.375784, 8.537388], [47.420642, 8.513543], [47.364735, 8.554623], [47.406518, 8.584834], [47.369306, 8.527099], [47.407402, 8.53641], [47.390753, 8.522027], [47.371675, 8.510358], [47.365837, 8.521944], [47.397364, 8.533541], [47.36355, 8.521289], [47.397751, 8.533496], [47.380479, 8.519355], [47.401803, 8.500232], [47.378222, 8.544934], [47.395777, 8.511876], [47.398902, 8.533493], [47.357395, 8.521561], [47.369064, 8.541208], [47.353337, 8.576847], [47.41165, 8.562338], [47.380403, 8.541602], [47.400165, 8.501392], [47.366851, 8.553423], [47.429841, 8.549081], [47.365028, 8.553107], [47.379277, 8.495586], [47.388589, 8.528354], [47.378951, 8.495884], [47.368865, 8.519477], [47.378794, 8.542509], [47.349973, 8.561197], [47.366316, 8.520828], [47.366307, 8.520841], [47.384156, 8.504013], [47.377386, 8.542003], [47.377184, 8.52922], [47.360751, 8.553547], [47.388614, 8.486777], [47.417592, 8.546003], [47.403638, 8.496334], [47.377311, 8.512762], [47.378584, 8.542782], [47.371102, 8.547328], [47.378591, 8.558899], [47.362252, 8.559297], [47.369166, 8.519986], [47.376988, 8.537505], [47.375771, 8.543479], [47.355499, 8.528988], [47.382342, 8.487978], [47.402442, 8.546205], [47.362846, 8.527298], [47.341463, 8.536959], [47.427446, 8.538944], [47.391853, 8.510207], [47.41789, 8.559872], [47.430718, 8.541955], [47.338703, 8.532045], [47.376226, 8.542032], [47.373035, 8.520806], [47.377037, 8.539996], [47.38834, 8.516494], [47.355249, 8.552359], [47.36689, 8.520019], [47.367418, 8.531787], [47.379454, 8.524035], [47.387841, 8.485716], [47.402616, 8.553456], [47.352859, 8.526525], [47.340666, 8.529915], [47.379645, 8.527694], [47.410597, 8.572571], [47.374841, 8.545684], [47.3847, 8.50262], [47.381875, 8.535408], [47.426377, 8.554722], [47.35644, 8.510117], [47.361969, 8.503662], [47.361721, 8.574074], [47.38829, 8.486784], [47.370188, 8.548792], [47.37256, 8.529297], [47.378164, 8.509985], [47.375855, 8.51072], [47.387632, 8.499698], [47.389807, 8.536511], [47.401018, 8.535179], [47.400447, 8.548906], [47.377513, 8.529571], [47.362615, 8.5048], [47.371837, 8.601527], [47.398113, 8.532298], [47.383511, 8.539256], [47.374565, 8.538859], [47.413339, 8.539196], [47.359688, 8.549063], [47.405604, 8.569855], [47.358937, 8.534459], [47.378996, 8.525959], [47.386498, 8.485981], [47.37154, 8.534334], [47.373502, 8.519928], [47.336083, 8.517965], [47.40118, 8.538004], [47.38325, 8.513438], [47.393182, 8.492854], [47.370978, 8.534826], [47.363641, 8.547716], [47.358981, 8.516351], [47.371674, 8.472978], [47.372641, 8.529246], [47.377042, 8.529045], [47.402342, 8.499316], [47.357376, 8.521666], [47.400055, 8.545652], [47.368066, 8.495999], [47.396727, 8.548418], [47.401254, 8.501321], [47.371023, 8.52532], [47.357621, 8.585662], [47.419596, 8.50508], [47.397889, 8.511097], [47.371019, 8.538984], [47.402208, 8.4993], [47.366728, 8.545701], [47.40513, 8.551985], [47.358986, 8.570428], [47.391431, 8.514967], [47.381176, 8.491584], [47.420997, 8.507281], [47.37271, 8.563304], [47.423366, 8.549808], [47.366904, 8.52329], [47.404077, 8.573307], [47.399824, 8.544415], [47.382705, 8.529399], [47.365163, 8.502614], [47.364274, 8.547371], [47.395211, 8.545154], [47.419773, 8.504381], [47.403214, 8.547374], [47.366416, 8.540637], [47.395182, 8.49153], [47.378066, 8.521544], [47.373989, 8.525592], [47.390818, 8.521869], [47.381342, 8.537516], [47.383496, 8.488716], [47.362656, 8.520648], [47.391398, 8.478249], [47.36844, 8.524486], [47.376867, 8.527558], [47.395991, 8.545448], [47.405288, 8.492948], [47.362517, 8.53444], [47.394696, 8.513973], [47.355132, 8.557917], [47.397493, 8.489641], [47.366432, 8.541856], [47.384244, 8.497353], [47.391068, 8.522947], [47.387832, 8.49847], [47.351633, 8.560676], [47.407474, 8.53832], [47.378984, 8.542367], [47.386865, 8.518438], [47.365081, 8.502652], [47.384035, 8.516089], [47.387309, 8.525745], [47.387045, 8.546017], [47.402342, 8.546375], [47.413902, 8.548033], [47.414032, 8.525879], [47.361411, 8.501745], [47.412938, 8.537876], [47.384414, 8.531314], [47.34485, 8.533574], [47.374209, 8.537528], [47.371001, 8.53145], [47.409693, 8.549894], [47.364374, 8.546275], [47.366903, 8.544328], [47.422363, 8.499595], [47.374865, 8.512726], [47.405993, 8.484681], [47.389818, 8.536326], [47.370545, 8.54913], [47.420565, 8.502435], [47.373624, 8.476247], [47.392841, 8.539038], [47.371725, 8.519548], [47.389446, 8.521325], [47.375975, 8.541921], [47.389219, 8.541559], [47.370541, 8.516253], [47.37232, 8.510662], [47.357616, 8.55409], [47.395951, 8.4861], [47.385135, 8.508072], [47.380403, 8.502296], [47.377016, 8.544021], [47.364505, 8.566256], [47.368809, 8.556522], [47.407674, 8.538059], [47.383016, 8.499885], [47.378775, 8.526471], [47.387004, 8.528507], [47.38737, 8.527918], [47.366116, 8.537242], [47.363464, 8.535201], [47.369481, 8.51704], [47.369895, 8.508389], [47.385246, 8.507743], [47.405381, 8.584306], [47.419543, 8.548018], [47.406062, 8.590044], [47.402427, 8.535592], [47.373897, 8.538183], [47.374685, 8.537577], [47.35789, 8.508902], [47.375112, 8.525721], [47.409871, 8.569561], [47.412384, 8.537507], [47.383421, 8.484079], [47.399398, 8.542816], [47.375206, 8.518599], [47.374836, 8.518684], [47.365219, 8.521653], [47.397167, 8.493834], [47.40451, 8.53692], [47.372727, 8.535378], [47.377683, 8.507578], [47.380211, 8.542949], [47.371509, 8.488268], [47.399477, 8.54303], [47.407487, 8.58508], [47.410777, 8.558755], [47.393195, 8.528223], [47.363386, 8.557335], [47.42284, 8.551255], [47.376867, 8.535172], [47.419727, 8.504526], [47.369909, 8.528025], [47.385415, 8.475364], [47.389792, 8.540008], [47.377332, 8.512458], [47.37137, 8.547519], [47.374164, 8.524152], [47.370679, 8.516878], [47.377573, 8.509735], [47.413852, 8.54578], [47.371381, 8.502288], [47.358116, 8.519444], [47.37842, 8.514413], [47.35783, 8.579988], [47.4093, 8.546758], [47.377539, 8.54198], [47.377454, 8.507044], [47.421138, 8.501704], [47.41216, 8.550594], [47.373365, 8.531644], [47.365312, 8.538562], [47.364452, 8.548527], [47.397881, 8.534002], [47.408628, 8.567892], [47.419236, 8.507948], [47.365416, 8.548322], [47.392664, 8.515853], [47.402491, 8.544881], [47.374436, 8.540048], [47.41305, 8.550653], [47.403919, 8.54609], [47.380502, 8.505198], [47.366412, 8.544847], [47.373056, 8.532949], [47.427025, 8.549062], [47.365681, 8.539457], [47.390603, 8.489624], [47.366455, 8.54036], [47.396471, 8.543193], [47.371404, 8.547732], [47.394185, 8.525368], [47.3667, 8.542033], [47.383994, 8.531028], [47.358368, 8.583812], [47.377298, 8.510245], [47.373354, 8.565556], [47.397104, 8.492813], [47.394276, 8.490253], [47.38472, 8.509242], [47.335574, 8.532841], [47.36616, 8.545756], [47.381113, 8.491636], [47.356221, 8.589868], [47.389395, 8.493799], [47.366574, 8.542031], [47.378043, 8.527767], [47.413531, 8.553896], [47.41027, 8.549773], [47.364267, 8.531074], [47.381632, 8.532502], [47.352284, 8.534098], [47.397989, 8.474549], [47.37455, 8.546023], [47.366289, 8.494507], [47.384278, 8.525723], [47.40559, 8.549994], [47.374371, 8.544973], [47.370054, 8.541176], [47.390953, 8.478743], [47.377495, 8.567974], [47.398753, 8.525528], [47.352103, 8.558634], [47.37711, 8.541759], [47.363941, 8.553944], [47.374338, 8.514251], [47.385887, 8.487836], [47.40903, 8.543944], [47.377611, 8.529665], [47.418198, 8.546572], [47.410713, 8.545728], [47.371317, 8.547399], [47.398096, 8.536007], [47.376546, 8.532914], [47.39413, 8.493403], [47.389859, 8.477331], [47.383822, 8.511966], [47.393435, 8.524717], [47.390433, 8.509026], [47.36459, 8.508163], [47.357027, 8.534751], [47.406826, 8.550523], [47.373554, 8.538229], [47.384993, 8.531008], [47.410942, 8.545361], [47.405264, 8.482733], [47.375919, 8.515409], [47.399064, 8.522103], [47.375372, 8.53338], [47.404606, 8.54943], [47.407634, 8.531831], [47.374168, 8.502423], [47.386113, 8.53523], [47.378119, 8.548096], [47.373891, 8.530278], [47.386486, 8.529119], [47.389233, 8.542937], [47.378956, 8.548101], [47.379718, 8.542687], [47.376821, 8.526683], [47.364145, 8.549566], [47.365922, 8.545248], [47.367734, 8.539168], [47.365181, 8.553096], [47.360956, 8.531151], [47.358667, 8.526908], [47.405754, 8.548884], [47.370022, 8.564121], [47.390923, 8.522136], [47.369115, 8.537806], [47.368471, 8.551523], [47.36587, 8.549722], [47.36876, 8.53821], [47.377319, 8.541472], [47.405866, 8.560599], [47.369962, 8.532898], [47.383493, 8.574551], [47.382145, 8.515309], [47.390724, 8.523165], [47.369257, 8.525655], [47.368, 8.562993], [47.418733, 8.547127], [47.390877, 8.489127], [47.391936, 8.510911], [47.375976, 8.541828], [47.364706, 8.549207], [47.390649, 8.491493], [47.340226, 8.51932], [47.391114, 8.522816], [47.395755, 8.486838], [47.369735, 8.525519], [47.401882, 8.499545], [47.363622, 8.560809], [47.427502, 8.550928], [47.369028, 8.528007], [47.410841, 8.563274], [47.383958, 8.550827], [47.373113, 8.544841], [47.381176, 8.491584], [47.373265, 8.520294], [47.37673, 8.497733], [47.372788, 8.535618], [47.421678, 8.502669], [47.427486, 8.543253], [47.393399, 8.524756], [47.376281, 8.511271], [47.368718, 8.546365], [47.380367, 8.547309], [47.380082, 8.528127], [47.360542, 8.596779], [47.355407, 8.512903], [47.33745, 8.53423], [47.369541, 8.55336], [47.379908, 8.52174], [47.374868, 8.527729], [47.371725, 8.519561], [47.425781, 8.493646], [47.367844, 8.539991], [47.408965, 8.531937], [47.402474, 8.544788], [47.409079, 8.550172], [47.415741, 8.551411], [47.42006, 8.482811], [47.366308, 8.540661], [47.379545, 8.524911], [47.376657, 8.523104], [47.399959, 8.541569], [47.363451, 8.567266], [47.387851, 8.539769], [47.367444, 8.512709], [47.381363, 8.491826], [47.423741, 8.511074], [47.378781, 8.522922], [47.399423, 8.543082], [47.41425, 8.517973], [47.383133, 8.529818], [47.422472, 8.499398], [47.361289, 8.525413], [47.426269, 8.554733], [47.421478, 8.548827], [47.373802, 8.537731], [47.364071, 8.556304], [47.373288, 8.533073], [47.371354, 8.518759], [47.376365, 8.552814], [47.368256, 8.524019], [47.366937, 8.548248], [47.363778, 8.566942], [47.39788, 8.4746], [47.38654, 8.52904], [47.413923, 8.554315], [47.411704, 8.525673], [47.380714, 8.526895], [47.398332, 8.537667], [47.368924, 8.543642], [47.372723, 8.525341], [47.402092, 8.499205], [47.371724, 8.519574], [47.358759, 8.516108], [47.385914, 8.553212], [47.378455, 8.526981], [47.430527, 8.511661], [47.363966, 8.547617], [47.367164, 8.563876], [47.364947, 8.50261], [47.406651, 8.506185], [47.387319, 8.487679], [47.377231, 8.499067], [47.363987, 8.535993], [47.424982, 8.548264], [47.393462, 8.524731], [47.378582, 8.526838], [47.402547, 8.553083], [47.384408, 8.534784], [47.414566, 8.560398], [47.411829, 8.524841], [47.361773, 8.560452], [47.409078, 8.481734], [47.422495, 8.550611], [47.36922, 8.541874], [47.336356, 8.526241], [47.367512, 8.523673], [47.412336, 8.506193], [47.391606, 8.51354], [47.374216, 8.475398], [47.362577, 8.612604], [47.344966, 8.533696], [47.377107, 8.523034], [47.418553, 8.547123], [47.335067, 8.527419], [47.388597, 8.483691], [47.379606, 8.537453], [47.376271, 8.494798], [47.376775, 8.527755], [47.362275, 8.532516], [47.376089, 8.489153], [47.357784, 8.527009], [47.379946, 8.483349], [47.413585, 8.530389], [47.37642, 8.528184], [47.386379, 8.518494], [47.374518, 8.539957], [47.369605, 8.533566], [47.366455, 8.540333], [47.375401, 8.526574], [47.388361, 8.539117], [47.372618, 8.521221], [47.39425, 8.490173], [47.376438, 8.534859], [47.370627, 8.524332], [47.346387, 8.528907], [47.392891, 8.53476], [47.419836, 8.504395], [47.383495, 8.530567], [47.367068, 8.543947], [47.362761, 8.567966], [47.37466, 8.549587], [47.399742, 8.492507], [47.370908, 8.535526], [47.419967, 8.506757], [47.403296, 8.493465], [47.383619, 8.530742], [47.348387, 8.534335], [47.360793, 8.550106], [47.411133, 8.526138], [47.371551, 8.550184], [47.405671, 8.585915], [47.371456, 8.562735], [47.365998, 8.533585], [47.382337, 8.549125], [47.343419, 8.535583], [47.37803, 8.541473], [47.354206, 8.557818], [47.388392, 8.480468], [47.411062, 8.571018], [47.40588, 8.586609], [47.391138, 8.489079], [47.373281, 8.52432], [47.399854, 8.544098], [47.378462, 8.567478], [47.390976, 8.517408], [47.374, 8.524414], [47.404073, 8.564523], [47.420898, 8.507293], [47.344288, 8.535018], [47.378948, 8.508888], [47.378388, 8.541692], [47.370707, 8.538687], [47.372724, 8.534729], [47.369897, 8.541623], [47.383472, 8.512806], [47.375222, 8.525498], [47.32923, 8.518779], [47.391367, 8.536106], [47.398223, 8.536831], [47.372981, 8.531345], [47.373376, 8.494701], [47.382334, 8.487872], [47.374306, 8.522474], [47.372364, 8.537635], [47.373896, 8.538263], [47.39619, 8.505154], [47.430964, 8.550152], [47.370188, 8.548792], [47.368879, 8.539867], [47.376363, 8.54369], [47.359387, 8.535422], [47.374509, 8.53997], [47.40378, 8.534163], [47.354099, 8.575288], [47.364891, 8.545875], [47.381996, 8.529278], [47.366636, 8.540178], [47.387527, 8.498372], [47.389358, 8.536396], [47.373612, 8.519745], [47.376067, 8.537923], [47.355534, 8.553583], [47.370334, 8.518235], [47.382451, 8.529645], [47.375686, 8.556958], [47.377214, 8.512561], [47.363087, 8.547294], [47.353471, 8.558544], [47.369886, 8.510269], [47.393206, 8.494153], [47.375836, 8.523313], [47.396162, 8.532231], [47.40228, 8.57678], [47.348259, 8.562643], [47.373959, 8.544832], [47.387861, 8.498325], [47.389713, 8.511979], [47.368858, 8.528824], [47.409992, 8.543115], [47.355601, 8.532405], [47.375491, 8.524616], [47.375613, 8.526963], [47.404588, 8.533437], [47.364446, 8.536929], [47.402804, 8.57744], [47.366496, 8.545432], [47.384868, 8.493074], [47.32315, 8.504171], [47.372889, 8.554132], [47.429901, 8.53808], [47.356579, 8.522179], [47.369533, 8.533552], [47.392231, 8.476675], [47.387832, 8.524696], [47.384216, 8.511139], [47.406236, 8.588816], [47.410629, 8.551676], [47.370214, 8.537591], [47.372035, 8.519117], [47.374416, 8.541253], [47.374407, 8.541226], [47.365128, 8.534163], [47.392387, 8.524285], [47.37859, 8.542187], [47.414015, 8.549427], [47.368105, 8.546498], [47.426315, 8.554668], [47.415949, 8.51427], [47.412976, 8.541494], [47.363031, 8.535245], [47.339872, 8.530124], [47.36823, 8.560562], [47.395588, 8.475469], [47.370116, 8.548843], [47.379901, 8.527289], [47.381201, 8.582567], [47.412295, 8.557978], [47.372629, 8.52857], [47.392116, 8.509921], [47.429814, 8.549054], [47.372711, 8.534173], [47.354352, 8.553042], [47.364412, 8.546143], [47.377796, 8.541495], [47.384697, 8.544114], [47.411133, 8.526151], [47.375975, 8.541921], [47.381789, 8.540611], [47.371494, 8.547667], [47.375491, 8.544559], [47.392441, 8.503013], [47.378866, 8.527281], [47.374457, 8.53981], [47.369083, 8.556131], [47.364429, 8.54617], [47.411406, 8.525786], [47.378387, 8.517034], [47.414706, 8.551469], [47.380395, 8.528252], [47.386105, 8.548342], [47.385329, 8.530631], [47.403262, 8.548011], [47.394474, 8.541323], [47.382138, 8.531321], [47.425368, 8.494592], [47.431345, 8.516476], [47.358937, 8.534459], [47.410742, 8.555865], [47.364305, 8.566463], [47.379838, 8.524387], [47.381925, 8.559234], [47.40175, 8.499224], [47.358312, 8.584962], [47.36328, 8.546848], [47.368988, 8.52839], [47.386545, 8.503478], [47.418705, 8.547153], [47.375535, 8.540879], [47.414106, 8.51895], [47.369663, 8.518778], [47.350957, 8.559907], [47.372936, 8.531318], [47.362098, 8.529268], [47.38206, 8.502077], [47.360768, 8.550833], [47.392371, 8.481076], [47.409094, 8.578118], [47.367334, 8.52355], [47.406907, 8.550577], [47.357861, 8.509193], [47.386971, 8.53485], [47.419958, 8.506757], [47.379367, 8.527556], [47.414802, 8.561052], [47.341068, 8.530241], [47.380458, 8.519606], [47.358799, 8.585754], [47.403867, 8.486031], [47.395903, 8.510924], [47.370713, 8.535218], [47.388292, 8.497354], [47.381022, 8.538079], [47.383094, 8.513805], [47.364836, 8.55436], [47.405117, 8.481126], [47.413682, 8.546611], [47.390344, 8.51676], [47.36359, 8.535164], [47.381384, 8.533093], [47.392415, 8.509715], [47.390102, 8.509907], [47.393426, 8.524717], [47.375829, 8.540183], [47.376671, 8.534956], [47.392351, 8.47632], [47.381041, 8.535126], [47.367155, 8.544254], [47.399133, 8.507942], [47.389493, 8.526928], [47.367082, 8.544385], [47.37929, 8.559192], [47.374094, 8.535433], [47.362601, 8.574225], [47.402351, 8.499316], [47.379783, 8.527379], [47.388183, 8.497497], [47.370003, 8.520863], [47.394663, 8.526146], [47.371903, 8.52069], [47.371861, 8.601792], [47.37124, 8.558122], [47.363255, 8.575404], [47.360212, 8.551669], [47.323053, 8.514633], [47.369187, 8.602978], [47.34, 8.529902], [47.369456, 8.520733], [47.37923, 8.552357], [47.3702, 8.491831], [47.371952, 8.536475], [47.410357, 8.548225], [47.397011, 8.480266], [47.391864, 8.482404], [47.369646, 8.536824], [47.387233, 8.488247], [47.39988, 8.585764], [47.349749, 8.53112], [47.362366, 8.561405], [47.378531, 8.5752], [47.373324, 8.533087], [47.399509, 8.50126], [47.361422, 8.506405], [47.348335, 8.533116], [47.354772, 8.55509], [47.376928, 8.517137], [47.377473, 8.509825], [47.347494, 8.564493], [47.357433, 8.553464], [47.387368, 8.498143], [47.383683, 8.588104], [47.368253, 8.536716], [47.37774, 8.543573], [47.366087, 8.533666], [47.407449, 8.585357], [47.373636, 8.542852], [47.408897, 8.54569], [47.359453, 8.551097], [47.365404, 8.537399], [47.378769, 8.530881], [47.416507, 8.506489], [47.397285, 8.510277], [47.370562, 8.48956], [47.396013, 8.527022], [47.372185, 8.520378], [47.36817, 8.538793], [47.369103, 8.57157], [47.41393, 8.544231], [47.360514, 8.569666], [47.371124, 8.520264], [47.36778, 8.54477], [47.416116, 8.565586], [47.378944, 8.509378], [47.369808, 8.530128], [47.427389, 8.539275], [47.412087, 8.546034], [47.382093, 8.5539], [47.367967, 8.568235], [47.42079, 8.508205], [47.408917, 8.546432], [47.4057, 8.489194], [47.391033, 8.522867], [47.384315, 8.531286], [47.423769, 8.496363], [47.39105, 8.522933], [47.368364, 8.541035], [47.422459, 8.550637], [47.391321, 8.536238], [47.369878, 8.540762], [47.35783, 8.580001], [47.370997, 8.535647], [47.425019, 8.539756], [47.36956, 8.547667], [47.405121, 8.48163], [47.405121, 8.481657], [47.381201, 8.538162], [47.357855, 8.520405], [47.405813, 8.590648], [47.375052, 8.545239], [47.384306, 8.531273], [47.409189, 8.544252], [47.368264, 8.511586], [47.337799, 8.519151], [47.369435, 8.525844], [47.39106, 8.52096], [47.358193, 8.571444], [47.378549, 8.560395], [47.357884, 8.571848], [47.420293, 8.50846], [47.36173, 8.526375], [47.38836, 8.536323], [47.37674, 8.523821], [47.388833, 8.477417], [47.370515, 8.549395], [47.363756, 8.535657], [47.362901, 8.556319]], [[47.368651, 8.534527], [47.381456, 8.535902], [47.364672, 8.536815], [47.366747, 8.542683], [47.366373, 8.540477], [47.369319, 8.541849], [47.365272, 8.538919], [47.384418, 8.516547], [47.370776, 8.535246], [47.357772, 8.521621], [47.380824, 8.538088], [47.407642, 8.584036], [47.349663, 8.529729], [47.349663, 8.529729], [47.368516, 8.530697], [47.354588, 8.552756], [47.356879, 8.514164], [47.378192, 8.509906], [47.386705, 8.547639], [47.3832, 8.53031], [47.372454, 8.535651], [47.376483, 8.521525], [47.39423, 8.493326], [47.375506, 8.547698], [47.365099, 8.545773], [47.410654, 8.543447], [47.37328, 8.533059], [47.37454, 8.538607], [47.387519, 8.519709], [47.345473, 8.532369], [47.390575, 8.48965], [47.366938, 8.564877], [47.388899, 8.483021], [47.377242, 8.541987], [47.361537, 8.565293], [47.370574, 8.470295], [47.38048, 8.517262], [47.38429, 8.53208], [47.38972, 8.486825], [47.407993, 8.58672], [47.390903, 8.523328], [47.403984, 8.573636], [47.363556, 8.52154], [47.403674, 8.571324], [47.411669, 8.563226], [47.370089, 8.548843], [47.3905, 8.479119], [47.420726, 8.502452], [47.38551, 8.488756], [47.36641, 8.545072], [47.369749, 8.522116], [47.404831, 8.542889], [47.366432, 8.540836], [47.368323, 8.546304], [47.408893, 8.532837], [47.378481, 8.540397], [47.360981, 8.531417], [47.373426, 8.51745], [47.365182, 8.531344], [47.395258, 8.526013], [47.406349, 8.582869], [47.375489, 8.537157], [47.371167, 8.548058], [47.357085, 8.555006], [47.367594, 8.519782], [47.3299, 8.529775], [47.377629, 8.529692], [47.363148, 8.535234], [47.378887, 8.526937], [47.344007, 8.531426], [47.376938, 8.540908], [47.388316, 8.536269], [47.359227, 8.553065], [47.410616, 8.572519], [47.378852, 8.524976], [47.37125, 8.537453], [47.367893, 8.54607], [47.360781, 8.548583], [47.374507, 8.540209], [47.377749, 8.48855], [47.368853, 8.511082], [47.387456, 8.525417], [47.398787, 8.506438], [47.377005, 8.543346], [47.376742, 8.483617], [47.38209, 8.49886], [47.369614, 8.513454], [47.39417, 8.482104], [47.40055, 8.492749], [47.415954, 8.515595], [47.365487, 8.598767], [47.373224, 8.550193], [47.399799, 8.541367], [47.384455, 8.516455], [47.415745, 8.546336], [47.393832, 8.500444], [47.393766, 8.499741], [47.392098, 8.549037], [47.417065, 8.541897], [47.375553, 8.541793], [47.393443, 8.512319], [47.407912, 8.536699], [47.41387, 8.546694], [47.387677, 8.497699], [47.353103, 8.528396], [47.386351, 8.533871], [47.382284, 8.551838], [47.369166, 8.527612], [47.376647, 8.548754], [47.415587, 8.509571], [47.37329, 8.494235], [47.390741, 8.523311], [47.395714, 8.532076], [47.40952, 8.542642], [47.373342, 8.5331], [47.400645, 8.544127], [47.375191, 8.537336], [47.359591, 8.569302], [47.361288, 8.525519], [47.370253, 8.514354], [47.370197, 8.548792], [47.374389, 8.52511], [47.417325, 8.554135], [47.369048, 8.518222], [47.358312, 8.5206], [47.409004, 8.545758], [47.393807, 8.503093], [47.351404, 8.576726], [47.369071, 8.525293], [47.381272, 8.556969], [47.401457, 8.489852], [47.413318, 8.521479], [47.416237, 8.545644], [47.373297, 8.533086], [47.395867, 8.506062], [47.382801, 8.556021], [47.414522, 8.551002], [47.369041, 8.502479], [47.361684, 8.561205], [47.356546, 8.558701], [47.386953, 8.534903], [47.410358, 8.548119], [47.369657, 8.533713], [47.378858, 8.531002], [47.366358, 8.534453], [47.397531, 8.489364], [47.370289, 8.514315], [47.376649, 8.495785], [47.395908, 8.526755], [47.4145, 8.554221], [47.416238, 8.532352], [47.395402, 8.526069], [47.413885, 8.546059], [47.388449, 8.484098], [47.373171, 8.551992], [47.376002, 8.577146], [47.374168, 8.502423], [47.377127, 8.521829], [47.423714, 8.539795], [47.393183, 8.530474], [47.382454, 8.544439], [47.382539, 8.529793], [47.391439, 8.519882], [47.374283, 8.524949], [47.370464, 8.526407], [47.368437, 8.534337], [47.388608, 8.545229], [47.377912, 8.510046], [47.383833, 8.530892], [47.369665, 8.506994], [47.425791, 8.49354], [47.382675, 8.507639], [47.39878, 8.590549], [47.405201, 8.480757], [47.368183, 8.524097], [47.410929, 8.542923], [47.359224, 8.516435], [47.40688, 8.550537], [47.378217, 8.54353], [47.373189, 8.551913], [47.374206, 8.47557], [47.369603, 8.55348], [47.378722, 8.542441], [47.37158, 8.522484], [47.369772, 8.53684], [47.409755, 8.544316], [47.372685, 8.547321], [47.370417, 8.518038], [47.372872, 8.547471], [47.381852, 8.51386], [47.363026, 8.556467], [47.400729, 8.548541], [47.387147, 8.519026], [47.39688, 8.493656], [47.38439, 8.531976], [47.357784, 8.554385], [47.393601, 8.529132], [47.381387, 8.510738], [47.386447, 8.496509], [47.377189, 8.540052], [47.409506, 8.549704], [47.355927, 8.522682], [47.422539, 8.550745], [47.41144, 8.528], [47.377689, 8.537573], [47.393741, 8.472731], [47.376784, 8.538163], [47.405492, 8.549872], [47.386051, 8.539851], [47.413184, 8.533733], [47.37774, 8.54356], [47.37639, 8.527548], [47.371096, 8.535623], [47.367182, 8.523454], [47.412702, 8.517067], [47.37339, 8.528957], [47.372034, 8.502711], [47.397472, 8.493827], [47.365207, 8.545696], [47.388477, 8.536325], [47.387242, 8.48532], [47.376874, 8.541939], [47.385322, 8.475706], [47.399754, 8.5185], [47.40027, 8.493869], [47.377218, 8.539881], [47.391396, 8.5453], [47.354878, 8.574696], [47.37376, 8.500839], [47.361463, 8.532764], [47.384417, 8.528123], [47.376642, 8.544596], [47.36844, 8.536919], [47.387989, 8.485229], [47.383263, 8.548256], [47.338293, 8.530648], [47.373297, 8.533086], [47.37745, 8.541964], [47.391477, 8.486423], [47.358273, 8.584352], [47.360254, 8.566761], [47.392368, 8.476466], [47.365215, 8.501768], [47.372488, 8.526383], [47.406752, 8.585779], [47.365789, 8.556326], [47.364, 8.546889], [47.381397, 8.542099], [47.405557, 8.562726], [47.410864, 8.562718], [47.366487, 8.540771], [47.410044, 8.569327], [47.3704, 8.549207], [47.334841, 8.531344], [47.372309, 8.572128], [47.364738, 8.534539], [47.400627, 8.508754], [47.413341, 8.531457], [47.378755, 8.539926], [47.386924, 8.535088], [47.387837, 8.4861], [47.378482, 8.526995], [47.414747, 8.519666], [47.384755, 8.532355], [47.419697, 8.556212], [47.392383, 8.539015], [47.386105, 8.548342], [47.366418, 8.540399], [47.3852, 8.529079], [47.373289, 8.533046], [47.407696, 8.546129], [47.386242, 8.49824], [47.395533, 8.482582], [47.387368, 8.49813], [47.384408, 8.531924], [47.381495, 8.513561], [47.415787, 8.552247], [47.372445, 8.537544], [47.409646, 8.575983], [47.383158, 8.505913], [47.387637, 8.519553], [47.377031, 8.553702], [47.383986, 8.547874], [47.369277, 8.548137], [47.378691, 8.509452], [47.370575, 8.546933], [47.367584, 8.523701], [47.39093, 8.523302], [47.419678, 8.548008], [47.369482, 8.566003], [47.403274, 8.497784], [47.373377, 8.514099], [47.372829, 8.514035], [47.389354, 8.491401], [47.40067, 8.492327], [47.391413, 8.519775], [47.366206, 8.548471], [47.367951, 8.560582], [47.411153, 8.545803], [47.372159, 8.555215], [47.37606, 8.535752], [47.377495, 8.543793], [47.369772, 8.532007], [47.369561, 8.525806], [47.368161, 8.521647], [47.377216, 8.526784], [47.382182, 8.512224], [47.372156, 8.473398], [47.377358, 8.512524], [47.374159, 8.54089], [47.375891, 8.51652], [47.362162, 8.529257], [47.392513, 8.523294], [47.354325, 8.51124], [47.376519, 8.534847], [47.378429, 8.526914], [47.363642, 8.567138], [47.373536, 8.544902], [47.376078, 8.524337], [47.379222, 8.511357], [47.391532, 8.486278], [47.362195, 8.547487], [47.380735, 8.512089], [47.394011, 8.532386], [47.360841, 8.553602], [47.360287, 8.570773], [47.369269, 8.52535], [47.411284, 8.486442], [47.407795, 8.578501], [47.381127, 8.49202], [47.385312, 8.530565], [47.347672, 8.528073], [47.357086, 8.593355], [47.333931, 8.515276], [47.379969, 8.541924], [47.409272, 8.549713], [47.403916, 8.503322], [47.37836, 8.517948], [47.363922, 8.533304], [47.378939, 8.544273], [47.427816, 8.536964], [47.428465, 8.489311], [47.348272, 8.533142], [47.376916, 8.527996], [47.371001, 8.531437], [47.375318, 8.531552], [47.377372, 8.511081], [47.414488, 8.554513], [47.37939, 8.54219], [47.379435, 8.537556], [47.402031, 8.545998], [47.387834, 8.488457], [47.382012, 8.475774], [47.417114, 8.506978], [47.357668, 8.535439], [47.38353, 8.513337], [47.402145, 8.497351], [47.363794, 8.598928], [47.394604, 8.531417], [47.378491, 8.502906], [47.397363, 8.531766], [47.407645, 8.538323], [47.42387, 8.522316], [47.339402, 8.518946], [47.428742, 8.543544], [47.373226, 8.533045], [47.396348, 8.513384], [47.36999, 8.548814], [47.378564, 8.54208], [47.376909, 8.527837], [47.377018, 8.541916], [47.360579, 8.516754], [47.379758, 8.536635], [47.406489, 8.550052], [47.380382, 8.534397], [47.380411, 8.513089], [47.364499, 8.554843], [47.399589, 8.497433], [47.359581, 8.558235], [47.368044, 8.540618], [47.381435, 8.517123], [47.403137, 8.555321], [47.376512, 8.559902], [47.363901, 8.551494], [47.381262, 8.571802], [47.410746, 8.545185], [47.385913, 8.492909], [47.419366, 8.505579], [47.378191, 8.52634], [47.419523, 8.50814], [47.370663, 8.47035], [47.386726, 8.547335], [47.356399, 8.519343], [47.391529, 8.54268], [47.363046, 8.522205], [47.386922, 8.519022], [47.36163, 8.561283], [47.427546, 8.546316], [47.4138, 8.545553], [47.36119, 8.532136], [47.370191, 8.514273], [47.384432, 8.548307], [47.365751, 8.545337], [47.398024, 8.534097], [47.408821, 8.504003], [47.405395, 8.565465], [47.373991, 8.530134], [47.383666, 8.52865], [47.370324, 8.469099], [47.378256, 8.541345], [47.3623, 8.504768], [47.392283, 8.514282], [47.367102, 8.54412], [47.371563, 8.517611], [47.390919, 8.52354], [47.421288, 8.549897], [47.391784, 8.505013], [47.376086, 8.512949], [47.386369, 8.518507], [47.378866, 8.510913], [47.414097, 8.51895], [47.361869, 8.532626], [47.376222, 8.526247], [47.392324, 8.503037], [47.35414, 8.530932], [47.398168, 8.535041], [47.332637, 8.518028], [47.380008, 8.52643], [47.398614, 8.593579], [47.389249, 8.521268], [47.423843, 8.521321], [47.391421, 8.5342], [47.368022, 8.485962], [47.378957, 8.529123], [47.353393, 8.51179], [47.407702, 8.578804], [47.376584, 8.494076], [47.414287, 8.572398], [47.378552, 8.541444], [47.347775, 8.530537], [47.331394, 8.537294], [47.370389, 8.514251], [47.363548, 8.500119], [47.360984, 8.560197], [47.361657, 8.526479], [47.399463, 8.543626], [47.3878, 8.527092], [47.374775, 8.520444], [47.375297, 8.486198], [47.366513, 8.540838], [47.384033, 8.497825], [47.375949, 8.529446], [47.361581, 8.565386], [47.386704, 8.488038], [47.372446, 8.550613], [47.4114, 8.54443], [47.404213, 8.562234], [47.383754, 8.526904], [47.334773, 8.52998], [47.406784, 8.536119], [47.365391, 8.564818], [47.379151, 8.495596], [47.394685, 8.531472], [47.354386, 8.557888], [47.392285, 8.502361], [47.370561, 8.549316], [47.374708, 8.588784], [47.385668, 8.499023], [47.408943, 8.574338], [47.368608, 8.540947], [47.375435, 8.560581], [47.375264, 8.490832], [47.415493, 8.563121], [47.424304, 8.508514], [47.400123, 8.58663], [47.349682, 8.562448], [47.422368, 8.542259], [47.370233, 8.548819], [47.405483, 8.549872], [47.386245, 8.535498], [47.394853, 8.527952], [47.398059, 8.536085], [47.367038, 8.544278], [47.359571, 8.522611], [47.357721, 8.554397], [47.377228, 8.539775], [47.410272, 8.544884], [47.430843, 8.544012], [47.39102, 8.522297], [47.366043, 8.530647], [47.354953, 8.554127], [47.3764, 8.544525], [47.375682, 8.512888], [47.388882, 8.495829], [47.388927, 8.515301], [47.383403, 8.484079], [47.378733, 8.542269], [47.370139, 8.5217], [47.361607, 8.506753], [47.380853, 8.517826], [47.402018, 8.495441], [47.369912, 8.537214], [47.359789, 8.588383], [47.393426, 8.524717], [47.368822, 8.528863], [47.388356, 8.526283], [47.387914, 8.488552], [47.422705, 8.543764], [47.375283, 8.544647], [47.387173, 8.551411], [47.367583, 8.520934], [47.364604, 8.566191], [47.338648, 8.538793], [47.385065, 8.54791], [47.389419, 8.511695], [47.372981, 8.54738], [47.385849, 8.48214], [47.390548, 8.489716], [47.371547, 8.519266], [47.375142, 8.51865], [47.413359, 8.531405], [47.39923, 8.542588], [47.398648, 8.542271], [47.373957, 8.48919], [47.370579, 8.528475], [47.379825, 8.528651], [47.398206, 8.536724], [47.390178, 8.528678], [47.338225, 8.528317], [47.414326, 8.538501], [47.374454, 8.539175], [47.377355, 8.548107], [47.374131, 8.51908], [47.426869, 8.546567], [47.388998, 8.48897], [47.367061, 8.545602], [47.380651, 8.52688], [47.426626, 8.555045], [47.367906, 8.494778], [47.389741, 8.511913], [47.393592, 8.501115], [47.409862, 8.479563], [47.370708, 8.470391], [47.372222, 8.524033], [47.36768, 8.539194], [47.392139, 8.476872], [47.419596, 8.548073], [47.378577, 8.519713], [47.392072, 8.499151], [47.383398, 8.548246], [47.416152, 8.546079], [47.411118, 8.57086], [47.377105, 8.527126], [47.38309, 8.528625], [47.377016, 8.535573], [47.420745, 8.501445], [47.376319, 8.495434], [47.387247, 8.518975], [47.373966, 8.476267], [47.378501, 8.540198], [47.370197, 8.548792], [47.391522, 8.516704], [47.370188, 8.548792], [47.363659, 8.55983], [47.368519, 8.541819], [47.361378, 8.513089], [47.403056, 8.576531], [47.385781, 8.548309], [47.381853, 8.583998], [47.370078, 8.548988], [47.370061, 8.548895], [47.407258, 8.568128], [47.390587, 8.489412], [47.388355, 8.54072], [47.374861, 8.519876], [47.362948, 8.518337], [47.357369, 8.550723], [47.360305, 8.565253], [47.407564, 8.53069], [47.374577, 8.538555], [47.383282, 8.548164], [47.372727, 8.510458], [47.36331, 8.527678], [47.374089, 8.513928], [47.363342, 8.520477], [47.390703, 8.522595], [47.373004, 8.546904], [47.362828, 8.521472], [47.372836, 8.518074], [47.374529, 8.540699], [47.415133, 8.562239], [47.369725, 8.525585], [47.367855, 8.551934], [47.406008, 8.481051], [47.378444, 8.540515], [47.40411, 8.541099], [47.378065, 8.530165], [47.390539, 8.52283], [47.328158, 8.529408], [47.400474, 8.531922], [47.369511, 8.538702], [47.394744, 8.536679], [47.384376, 8.531526], [47.415755, 8.512888], [47.363709, 8.551874], [47.405237, 8.561368], [47.347312, 8.528119], [47.375109, 8.529839], [47.360796, 8.548848], [47.3825, 8.548108], [47.370197, 8.548805], [47.382048, 8.514062], [47.388582, 8.486247], [47.377281, 8.548291], [47.407041, 8.55066], [47.359447, 8.552619], [47.348396, 8.534296], [47.391209, 8.48916], [47.369678, 8.532456], [47.414008, 8.549202], [47.369462, 8.541918], [47.409561, 8.569091], [47.375102, 8.52482], [47.401878, 8.504871], [47.374554, 8.539031], [47.369161, 8.548029], [47.362, 8.560232], [47.398969, 8.513954], [47.398969, 8.51398], [47.337696, 8.530106], [47.38729, 8.527811], [47.398614, 8.547755], [47.388865, 8.484809], [47.409204, 8.538939], [47.404628, 8.594915], [47.370504, 8.535518], [47.395903, 8.545261], [47.366738, 8.541769], [47.365977, 8.55727], [47.374318, 8.544892], [47.368103, 8.529709], [47.371389, 8.522719], [47.355235, 8.527394], [47.405201, 8.56138], [47.404345, 8.574413], [47.40677, 8.585766], [47.417724, 8.54537], [47.410986, 8.562178], [47.366613, 8.547341], [47.36612, 8.531999], [47.37017, 8.548778], [47.384835, 8.539985], [47.36956, 8.466992], [47.422074, 8.550444], [47.429435, 8.54165], [47.361086, 8.535496], [47.405612, 8.591836], [47.374794, 8.55245], [47.374105, 8.546503], [47.376306, 8.534485], [47.406627, 8.567359], [47.353125, 8.577293], [47.344247, 8.532688], [47.360624, 8.524459], [47.36875, 8.528835], [47.372872, 8.567042], [47.38241, 8.558331], [47.364535, 8.53701], [47.363642, 8.546617], [47.370123, 8.543335], [47.405629, 8.54969], [47.410741, 8.550326], [47.408619, 8.529532], [47.395876, 8.515772], [47.376877, 8.540668], [47.387147, 8.519053], [47.386048, 8.545824], [47.338922, 8.539288], [47.3768, 8.517439], [47.365346, 8.521603], [47.35711, 8.523117], [47.409484, 8.543569], [47.408531, 8.580504], [47.39361, 8.511792], [47.352033, 8.558368], [47.393219, 8.492696], [47.376902, 8.517097], [47.377599, 8.522342], [47.377255, 8.529274], [47.381334, 8.510605], [47.374103, 8.542954], [47.378607, 8.504961], [47.390629, 8.489638], [47.342789, 8.530793], [47.357756, 8.554477], [47.378796, 8.530921], [47.384307, 8.528359], [47.406779, 8.584826], [47.410389, 8.487895], [47.366473, 8.540347], [47.37702, 8.537056], [47.38308, 8.541074], [47.359479, 8.557677], [47.366507, 8.534853], [47.372414, 8.523773], [47.338896, 8.539169], [47.377338, 8.546081], [47.362743, 8.519048], [47.368096, 8.536117], [47.361527, 8.525907], [47.402919, 8.554641], [47.404519, 8.575079], [47.408668, 8.546136], [47.341747, 8.530731], [47.384476, 8.538097], [47.381939, 8.555937], [47.372814, 8.535645], [47.38848, 8.528471], [47.359688, 8.549063], [47.361352, 8.522607], [47.370703, 8.535363], [47.374977, 8.483795], [47.377159, 8.52518], [47.368164, 8.510684], [47.369981, 8.548841], [47.376936, 8.533518], [47.358322, 8.509864], [47.419755, 8.504447], [47.37707, 8.539348], [47.38408, 8.525745], [47.365935, 8.548598], [47.391941, 8.51809], [47.375623, 8.537318], [47.378461, 8.548156], [47.387927, 8.485148], [47.37466, 8.545879], [47.390846, 8.514969], [47.370547, 8.517564], [47.387666, 8.525143], [47.38599, 8.498235], [47.408503, 8.564987], [47.406912, 8.586869], [47.368599, 8.534353], [47.382981, 8.540159], [47.37042, 8.518661], [47.390486, 8.509133], [47.392833, 8.532295], [47.389673, 8.534509], [47.353254, 8.577044], [47.373943, 8.544606], [47.374979, 8.492508], [47.378581, 8.5422], [47.378698, 8.544016], [47.332674, 8.517949], [47.381321, 8.483548], [47.40362, 8.49636], [47.392695, 8.524093], [47.376696, 8.511187], [47.403938, 8.549681], [47.423985, 8.549026], [47.399479, 8.583503], [47.428101, 8.489848], [47.35479, 8.526829], [47.410038, 8.542997], [47.393462, 8.524731], [47.367895, 8.541184], [47.384964, 8.53212], [47.37639, 8.525615], [47.382683, 8.537411], [47.42874, 8.488826], [47.348303, 8.562697], [47.392327, 8.523926], [47.380442, 8.51946], [47.391253, 8.515666], [47.370481, 8.52462], [47.373437, 8.538227], [47.354715, 8.558265], [47.419552, 8.548019], [47.374784, 8.520365], [47.388487, 8.488788], [47.364399, 8.55022], [47.350669, 8.579146], [47.406701, 8.538291], [47.408005, 8.546745], [47.375081, 8.519391], [47.36833, 8.546542], [47.351401, 8.534238], [47.36637, 8.533222], [47.403777, 8.548671], [47.394223, 8.490159], [47.378802, 8.542588], [47.402598, 8.49993], [47.37273, 8.529393], [47.364357, 8.556442], [47.369622, 8.533646], [47.381968, 8.551064], [47.36844, 8.55], [47.360854, 8.531507], [47.389898, 8.491981], [47.428029, 8.545663], [47.37759, 8.506901], [47.368583, 8.524621], [47.36712, 8.544134], [47.411209, 8.570743], [47.422586, 8.550507], [47.383428, 8.539453], [47.362419, 8.535299], [47.36509, 8.553267], [47.369222, 8.525561], [47.368987, 8.538016], [47.355574, 8.532458], [47.35981, 8.508544], [47.366388, 8.520764], [47.412143, 8.54858], [47.381528, 8.548194], [47.388317, 8.490745], [47.379125, 8.511196], [47.347414, 8.526824], [47.362627, 8.519933], [47.370776, 8.535219], [47.388599, 8.528261], [47.372239, 8.535554], [47.367108, 8.539751], [47.375544, 8.52091], [47.396172, 8.505207], [47.379972, 8.548122], [47.376952, 8.528963], [47.37149, 8.515783], [47.418536, 8.54695], [47.365461, 8.546456], [47.374776, 8.501945], [47.390681, 8.48895], [47.379278, 8.537937], [47.386373, 8.473939], [47.404635, 8.550225], [47.410804, 8.560544], [47.414862, 8.545562], [47.381959, 8.513968], [47.358936, 8.577311], [47.406907, 8.550577], [47.365334, 8.532446], [47.372971, 8.55126], [47.377654, 8.537546], [47.366228, 8.553727], [47.363031, 8.525779], [47.419794, 8.533936], [47.374461, 8.521325], [47.379025, 8.494654], [47.374264, 8.525028], [47.37268, 8.534609], [47.393857, 8.505479], [47.38058, 8.512377], [47.390712, 8.539722], [47.36374, 8.535432], [47.383029, 8.575137], [47.418132, 8.510709], [47.392098, 8.502158], [47.37094, 8.548265], [47.404685, 8.557129], [47.361037, 8.548165], [47.402963, 8.535988], [47.36473, 8.554159], [47.362831, 8.548731], [47.38154, 8.513575], [47.42501, 8.55195], [47.373235, 8.533058], [47.370644, 8.516772], [47.400109, 8.545693], [47.408832, 8.557057], [47.37311, 8.532937], [47.386716, 8.495627], [47.419124, 8.506462], [47.419037, 8.539778], [47.407877, 8.550757], [47.414074, 8.541371], [47.38409, 8.509243], [47.407534, 8.584895], [47.380015, 8.546494], [47.39133, 8.536198], [47.36812, 8.547796], [47.389265, 8.527228], [47.371834, 8.536605], [47.363977, 8.530366], [47.380453, 8.524956], [47.416685, 8.509567], [47.358722, 8.517179], [47.404812, 8.557039], [47.374584, 8.541587], [47.375711, 8.539346], [47.369185, 8.538947], [47.372536, 8.528926], [47.361544, 8.514589], [47.362473, 8.53526], [47.373157, 8.534606], [47.378892, 8.566825], [47.378297, 8.530368], [47.365181, 8.566045], [47.390487, 8.522591], [47.387669, 8.5295], [47.355638, 8.532274], [47.376861, 8.543329], [47.416309, 8.508393], [47.416089, 8.508786], [47.416354, 8.508381], [47.416062, 8.508826], [47.399565, 8.49616], [47.417512, 8.483105], [47.365476, 8.552388], [47.423124, 8.538471], [47.377411, 8.539368], [47.37814, 8.483221], [47.418571, 8.547137], [47.386697, 8.5476], [47.40405, 8.578871], [47.406684, 8.561517], [47.422589, 8.537055], [47.420883, 8.507849], [47.415567, 8.521445], [47.378489, 8.509912], [47.369014, 8.53799], [47.378822, 8.563791], [47.384941, 8.508691], [47.363357, 8.519775], [47.395661, 8.522365], [47.363902, 8.531635], [47.364757, 8.502685], [47.413851, 8.546813], [47.364349, 8.555422], [47.384233, 8.497578], [47.387093, 8.48982], [47.412289, 8.553963], [47.390789, 8.488913], [47.378305, 8.540923], [47.34928, 8.577753], [47.343886, 8.529915], [47.40347, 8.556296], [47.394589, 8.525483], [47.376905, 8.540616], [47.424701, 8.537218], [47.365254, 8.556765], [47.39179, 8.487595], [47.337786, 8.535732], [47.395437, 8.494078], [47.377149, 8.543296], [47.371405, 8.547559], [47.391279, 8.514845], [47.382196, 8.540367], [47.343491, 8.535545], [47.368209, 8.555305], [47.367983, 8.546111], [47.352018, 8.576488], [47.36989, 8.525217], [47.38817, 8.525087], [47.357478, 8.526116], [47.381469, 8.503747], [47.406934, 8.526927], [47.407885, 8.583034], [47.38151, 8.548193], [47.365886, 8.532073], [47.357462, 8.572659], [47.330027, 8.534355], [47.37327, 8.535032], [47.38652, 8.520722], [47.393104, 8.526472], [47.410777, 8.555945], [47.357448, 8.588624], [47.380863, 8.536804], [47.380231, 8.541784], [47.352211, 8.565982], [47.342206, 8.530635], [47.370059, 8.537852], [47.375719, 8.529057], [47.366077, 8.533693], [47.382092, 8.488781], [47.380623, 8.525092], [47.403013, 8.490863], [47.429751, 8.549], [47.373226, 8.533058], [47.373456, 8.561506], [47.361934, 8.548395], [47.378422, 8.540899], [47.375955, 8.541126], [47.372734, 8.53273], [47.393435, 8.52473], [47.368307, 8.524338], [47.370084, 8.540845], [47.378579, 8.541485], [47.391674, 8.485513], [47.402083, 8.499204], [47.409587, 8.537462], [47.41476, 8.519215], [47.414234, 8.483478], [47.369602, 8.536691], [47.36733, 8.489907], [47.359199, 8.523901], [47.407549, 8.54643], [47.410061, 8.546231], [47.384809, 8.531415], [47.418645, 8.507751], [47.382101, 8.530486], [47.391486, 8.486436], [47.389405, 8.513244], [47.373262, 8.523472], [47.376976, 8.539743], [47.385907, 8.498459], [47.426446, 8.492771], [47.391031, 8.523066], [47.425815, 8.493858], [47.368712, 8.532846], [47.398533, 8.538281], [47.392244, 8.524163], [47.376572, 8.540648], [47.374797, 8.539989], [47.367526, 8.523143], [47.382351, 8.5144], [47.392504, 8.503054], [47.37924, 8.528626], [47.360747, 8.488731], [47.408887, 8.558821], [47.373047, 8.532949], [47.378134, 8.527703], [47.424521, 8.535318], [47.37494, 8.544786], [47.41861, 8.546819], [47.428018, 8.490005], [47.375808, 8.529152], [47.372646, 8.550419], [47.369035, 8.525279], [47.406912, 8.586843], [47.378315, 8.528475], [47.37642, 8.528184], [47.428619, 8.54329], [47.371422, 8.524931], [47.361829, 8.507128], [47.377185, 8.528187], [47.39558, 8.526205], [47.393378, 8.545036], [47.374605, 8.512601], [47.393233, 8.522302], [47.328673, 8.517749], [47.375777, 8.512307], [47.370689, 8.524466], [47.383099, 8.515262], [47.401148, 8.549888], [47.404243, 8.48519], [47.343606, 8.530015], [47.385497, 8.494133], [47.373489, 8.531845], [47.363427, 8.533387], [47.384701, 8.492634], [47.42598, 8.493517], [47.363994, 8.536152], [47.376454, 8.541692], [47.367898, 8.539979], [47.383992, 8.500341], [47.39116, 8.522803], [47.386897, 8.526557], [47.413087, 8.550521], [47.359259, 8.597334], [47.384994, 8.524201], [47.429891, 8.542905], [47.364441, 8.566373], [47.354448, 8.520243], [47.370215, 8.548806], [47.388813, 8.515947], [47.37669, 8.540532], [47.41923, 8.546872], [47.354649, 8.534173], [47.375964, 8.535524], [47.406907, 8.550577], [47.369435, 8.525844], [47.393426, 8.524717], [47.362751, 8.548544], [47.410627, 8.542519], [47.407681, 8.583732], [47.361999, 8.526473], [47.385446, 8.499747], [47.392244, 8.524203], [47.371272, 8.525643], [47.377731, 8.537878], [47.42493, 8.501197], [47.386227, 8.474148], [47.402728, 8.501456], [47.403024, 8.588879], [47.356542, 8.522298], [47.372871, 8.533422], [47.386905, 8.547418], [47.361288, 8.53411], [47.385086, 8.48496], [47.376427, 8.527483], [47.427884, 8.545806], [47.344647, 8.527456], [47.377016, 8.542101], [47.380424, 8.504865], [47.382459, 8.540201], [47.362425, 8.548816], [47.38769, 8.488388], [47.410149, 8.542681], [47.403002, 8.542229], [47.379064, 8.527258], [47.392244, 8.524163], [47.37386, 8.553251], [47.379422, 8.52177], [47.371544, 8.546265], [47.376749, 8.53803], [47.411042, 8.547139], [47.369322, 8.533971], [47.374946, 8.485224], [47.394071, 8.525035], [47.364204, 8.530185], [47.37466, 8.545879], [47.371351, 8.554099], [47.366829, 8.544498], [47.375019, 8.52221], [47.380332, 8.520636], [47.370215, 8.548793], [47.375435, 8.518166], [47.36455, 8.566243], [47.375261, 8.485204], [47.384978, 8.48501], [47.372096, 8.502832], [47.401948, 8.577634], [47.379045, 8.527351], [47.37019, 8.521053], [47.40381, 8.486387], [47.420698, 8.50265], [47.397845, 8.534067], [47.408178, 8.557746], [47.374559, 8.521406], [47.422503, 8.550757], [47.374966, 8.534511], [47.384274, 8.538477], [47.353892, 8.561438], [47.37773, 8.537997], [47.358036, 8.553358], [47.386441, 8.518509], [47.370202, 8.522721], [47.377689, 8.522384], [47.371487, 8.5248], [47.366912, 8.544302], [47.366332, 8.54098], [47.423072, 8.541995], [47.380057, 8.543038], [47.397521, 8.532126], [47.396789, 8.529687], [47.413857, 8.527241], [47.371093, 8.558464], [47.380116, 8.537742], [47.398711, 8.53284], [47.370811, 8.549467], [47.418823, 8.544213], [47.372877, 8.532839], [47.363977, 8.549205], [47.410392, 8.548331], [47.375311, 8.528426], [47.423464, 8.551811], [47.386319, 8.497699], [47.409804, 8.57543], [47.393408, 8.524743], [47.358205, 8.525323], [47.365788, 8.538612], [47.375905, 8.488606], [47.375064, 8.529865], [47.415673, 8.512992], [47.379158, 8.556024], [47.374673, 8.514973], [47.335037, 8.524891], [47.379189, 8.508112], [47.388524, 8.485703], [47.377641, 8.526501], [47.363888, 8.566812], [47.372287, 8.558767], [47.384666, 8.53128], [47.375596, 8.527797], [47.367852, 8.50652], [47.393426, 8.524717], [47.41228, 8.546555], [47.406322, 8.582882], [47.417448, 8.546], [47.387165, 8.519093], [47.376265, 8.528406], [47.387849, 8.524736], [47.371475, 8.526057], [47.367673, 8.541802], [47.377597, 8.535916], [47.429848, 8.544575], [47.369719, 8.523347], [47.366069, 8.533639], [47.403808, 8.485619], [47.367999, 8.54063], [47.409428, 8.542812], [47.381646, 8.492361], [47.403588, 8.57274], [47.380234, 8.548048], [47.378235, 8.514992], [47.390863, 8.478768], [47.375177, 8.525471], [47.373834, 8.54663], [47.367542, 8.545215], [47.381186, 8.503238], [47.376116, 8.516472], [47.374067, 8.524879], [47.412218, 8.546368], [47.406352, 8.570639], [47.360956, 8.56855], [47.424997, 8.537277], [47.389375, 8.528966], [47.337342, 8.517051], [47.414012, 8.541277], [47.378655, 8.488872], [47.373297, 8.533086], [47.370589, 8.538803], [47.374407, 8.5412], [47.403759, 8.567206], [47.37989, 8.494459], [47.358624, 8.558639], [47.390044, 8.537099], [47.422264, 8.547545], [47.384154, 8.497378], [47.365665, 8.559793], [47.377284, 8.512748], [47.373334, 8.534901], [47.378777, 8.542376], [47.374501, 8.53895], [47.345885, 8.534456], [47.392238, 8.539131], [47.356395, 8.532143], [47.382844, 8.529945], [47.413456, 8.530665], [47.429901, 8.538054], [47.376563, 8.562962], [47.391338, 8.536252], [47.389728, 8.486852], [47.367781, 8.544704], [47.351352, 8.560921], [47.39078, 8.508503], [47.386226, 8.533736], [47.359378, 8.5523], [47.413595, 8.532191], [47.378174, 8.509932], [47.354304, 8.525945], [47.373603, 8.519692], [47.37846, 8.543535], [47.377199, 8.539973], [47.36074, 8.516836], [47.366618, 8.540178], [47.374584, 8.538674], [47.413541, 8.55383], [47.412177, 8.551615], [47.37772, 8.509353], [47.37626, 8.538417], [47.403557, 8.487429], [47.392504, 8.503027], [47.400098, 8.545851], [47.372658, 8.547254], [47.378829, 8.519692], [47.414134, 8.551046], [47.362961, 8.535072], [47.421467, 8.501194], [47.365267, 8.547882], [47.387832, 8.529438], [47.35937, 8.592491], [47.384975, 8.508863], [47.374444, 8.495874], [47.39004, 8.536596], [47.410268, 8.542459], [47.369353, 8.537361], [47.413933, 8.526898], [47.385132, 8.508403], [47.361333, 8.525546], [47.377284, 8.512722], [47.394747, 8.490912], [47.39405, 8.493309], [47.385022, 8.508639], [47.367096, 8.540042], [47.385863, 8.527384], [47.350965, 8.582951], [47.375169, 8.528251], [47.363929, 8.547642], [47.403215, 8.547215], [47.33569, 8.53287], [47.372008, 8.529551], [47.372854, 8.542783], [47.378564, 8.541166], [47.381808, 8.540505], [47.359754, 8.535562], [47.350886, 8.534466], [47.363797, 8.575124], [47.368407, 8.560009], [47.358192, 8.571576], [47.369476, 8.526255], [47.368333, 8.524444], [47.394967, 8.519622], [47.406893, 8.584232], [47.363427, 8.535253], [47.399265, 8.502381], [47.384295, 8.54853], [47.37978, 8.554951], [47.362703, 8.515658], [47.42029, 8.548816], [47.383291, 8.499347], [47.37985, 8.527831], [47.419899, 8.500447], [47.37687, 8.536655], [47.367655, 8.523782], [47.37157, 8.515903], [47.391035, 8.478612], [47.386697, 8.496753], [47.366271, 8.540753], [47.404778, 8.565174], [47.3702, 8.521026], [47.409845, 8.541549], [47.412672, 8.514495], [47.382655, 8.529888], [47.357904, 8.510319], [47.37222, 8.54326], [47.388307, 8.536255], [47.367373, 8.52314], [47.376349, 8.528064], [47.3687, 8.521684], [47.414101, 8.544248], [47.398182, 8.536393], [47.395842, 8.540358], [47.40218, 8.496384], [47.404216, 8.560962], [47.352151, 8.558251], [47.39133, 8.536198], [47.370405, 8.518316], [47.366122, 8.54038], [47.373367, 8.480863], [47.41445, 8.517804], [47.341462, 8.530421], [47.420416, 8.538534], [47.374456, 8.529495], [47.384533, 8.534866], [47.377072, 8.541943], [47.388294, 8.517619], [47.37715, 8.523207], [47.362747, 8.550888], [47.386938, 8.539234], [47.364721, 8.554173], [47.372341, 8.545632], [47.351031, 8.559697], [47.373647, 8.597766], [47.374266, 8.542852], [47.427464, 8.551126], [47.366426, 8.545258], [47.416674, 8.514669], [47.384967, 8.547868], [47.414139, 8.549602], [47.382089, 8.528896], [47.405086, 8.560318], [47.362092, 8.550649], [47.36631, 8.531936], [47.418138, 8.50615], [47.404528, 8.576881], [47.364411, 8.546156], [47.374992, 8.52601], [47.426063, 8.493373], [47.365117, 8.553188], [47.374013, 8.544846], [47.358076, 8.519867], [47.431097, 8.550274], [47.402306, 8.543513], [47.408712, 8.54619], [47.413245, 8.532078], [47.385618, 8.518108], [47.399531, 8.538341], [47.358937, 8.534459], [47.391004, 8.523078], [47.429961, 8.549614], [47.427106, 8.545366], [47.407883, 8.503242], [47.371561, 8.51589], [47.376927, 8.538312], [47.372992, 8.547142], [47.362208, 8.548944], [47.422457, 8.55077], [47.362412, 8.547319], [47.372574, 8.521088], [47.353583, 8.554429], [47.389491, 8.521339], [47.338479, 8.530056], [47.361323, 8.525691], [47.365674, 8.549572], [47.372648, 8.534225], [47.356128, 8.559129], [47.372745, 8.510485], [47.351747, 8.566502], [47.377982, 8.511186], [47.370883, 8.544808], [47.41589, 8.545212], [47.39567, 8.522431], [47.371173, 8.530381], [47.399557, 8.586578], [47.420086, 8.51043], [47.417137, 8.545623], [47.357918, 8.520473], [47.369849, 8.552201], [47.388658, 8.488805], [47.373026, 8.475732], [47.344209, 8.52615], [47.372358, 8.486921], [47.344398, 8.529952], [47.365675, 8.563447], [47.37089, 8.544954], [47.363572, 8.535111], [47.378786, 8.542363], [47.398501, 8.591404], [47.377263, 8.538888], [47.410371, 8.539188], [47.380686, 8.504765], [47.380431, 8.541576], [47.364392, 8.533115], [47.390803, 8.50608], [47.422466, 8.536708], [47.419528, 8.506536], [47.373987, 8.540012], [47.385994, 8.518235], [47.361361, 8.522608], [47.413721, 8.545419], [47.427518, 8.547376], [47.400198, 8.489906], [47.367216, 8.545433], [47.390442, 8.509106], [47.355545, 8.528843], [47.369182, 8.532565], [47.378306, 8.530408], [47.388249, 8.49126], [47.377599, 8.522342], [47.394428, 8.534871], [47.376136, 8.527728], [47.386721, 8.488131], [47.390432, 8.509172], [47.394742, 8.536825], [47.348587, 8.534061], [47.390697, 8.55159], [47.366239, 8.52227], [47.39146, 8.519538], [47.379135, 8.559361], [47.361069, 8.535403], [47.40906, 8.543666], [47.414868, 8.54111], [47.385541, 8.532927], [47.370353, 8.51429], [47.389544, 8.521419], [47.401521, 8.581705], [47.373852, 8.546644], [47.414785, 8.512696], [47.379206, 8.53036], [47.371326, 8.536078], [47.370577, 8.519207], [47.377143, 8.540157], [47.422841, 8.494555], [47.422266, 8.549202], [47.412199, 8.546527], [47.419066, 8.537592], [47.381086, 8.565918], [47.393602, 8.501976], [47.366745, 8.544854], [47.361648, 8.56127], [47.373101, 8.547092], [47.408867, 8.54879], [47.385204, 8.50059], [47.387436, 8.5189], [47.371412, 8.53461], [47.379152, 8.529445], [47.373135, 8.567656], [47.389017, 8.469964], [47.422901, 8.538254], [47.371617, 8.546081], [47.374304, 8.502399], [47.370805, 8.517901], [47.361153, 8.590504], [47.371055, 8.519998], [47.350924, 8.577007], [47.388168, 8.516623], [47.383249, 8.484169], [47.373048, 8.555366], [47.399979, 8.490194], [47.395127, 8.536051], [47.376092, 8.527688], [47.374222, 8.544586], [47.366638, 8.54566], [47.363481, 8.551234], [47.410212, 8.54361], [47.369699, 8.536905], [47.365903, 8.500312], [47.368077, 8.546603], [47.387644, 8.486559], [47.368088, 8.485645], [47.384665, 8.477733], [47.370313, 8.556342], [47.408269, 8.577001], [47.377113, 8.535773], [47.379754, 8.527537], [47.366197, 8.516245], [47.377816, 8.507819], [47.406581, 8.56292], [47.379307, 8.537712], [47.365099, 8.55324], [47.413321, 8.545782], [47.399952, 8.587541], [47.368064, 8.541426], [47.352228, 8.509331], [47.428753, 8.545215], [47.406019, 8.548452], [47.376762, 8.543288], [47.364102, 8.536207], [47.396859, 8.548765], [47.365723, 8.535962], [47.366827, 8.54475], [47.381949, 8.5437], [47.36869, 8.482784], [47.377936, 8.5324], [47.376592, 8.527115], [47.378775, 8.514923], [47.392578, 8.502817], [47.384483, 8.543011], [47.371588, 8.515917], [47.358789, 8.558338], [47.356661, 8.522049], [47.370537, 8.548958], [47.361344, 8.563832], [47.358244, 8.588125], [47.414918, 8.545298], [47.384493, 8.480856], [47.353631, 8.554033], [47.413115, 8.563468], [47.365538, 8.56825], [47.382763, 8.529983], [47.396473, 8.579146], [47.380695, 8.496951], [47.419052, 8.506474], [47.41401, 8.550872], [47.350168, 8.534306], [47.380212, 8.526673], [47.388518, 8.520524], [47.348396, 8.534349], [47.343256, 8.535699], [47.368396, 8.497303], [47.404857, 8.59182], [47.365539, 8.513478], [47.350489, 8.561737], [47.394795, 8.490502], [47.411202, 8.546361], [47.361989, 8.525665], [47.363931, 8.553971], [47.36641, 8.545059], [47.374571, 8.545718], [47.369665, 8.5089], [47.378484, 8.493875], [47.349979, 8.527657], [47.373147, 8.503925], [47.383415, 8.540869], [47.392828, 8.506902], [47.373896, 8.538263], [47.364815, 8.537797], [47.393388, 8.499786], [47.383683, 8.510427], [47.382945, 8.540145], [47.360414, 8.526679], [47.419061, 8.544722], [47.36789, 8.551988], [47.380058, 8.570796], [47.392784, 8.532771], [47.391339, 8.536225], [47.408928, 8.539556], [47.41976, 8.509708], [47.381617, 8.516861], [47.368302, 8.534387], [47.385794, 8.525171], [47.392224, 8.541502], [47.393597, 8.538047], [47.389356, 8.528979], [47.377256, 8.538729], [47.369014, 8.537977], [47.402377, 8.546416], [47.375528, 8.548188], [47.364757, 8.54946], [47.371344, 8.547333], [47.404416, 8.57456], [47.418152, 8.554218], [47.397958, 8.532493], [47.400772, 8.54878], [47.378618, 8.569084], [47.374264, 8.542998], [47.366756, 8.541836], [47.389765, 8.511291], [47.36984, 8.552241], [47.373163, 8.536844], [47.399345, 8.505456], [47.381407, 8.52871], [47.369873, 8.536564], [47.376585, 8.526903], [47.374966, 8.52789], [47.374576, 8.538661], [47.376044, 8.553416], [47.409891, 8.541404], [47.361347, 8.549588], [47.370946, 8.535408], [47.38182, 8.516375], [47.401986, 8.545944], [47.397319, 8.553332], [47.405568, 8.539115], [47.379148, 8.538411], [47.390905, 8.522096], [47.359613, 8.563306], [47.371883, 8.542789], [47.372499, 8.517498], [47.379568, 8.527282], [47.390761, 8.489005], [47.380394, 8.541615], [47.361516, 8.547883], [47.366315, 8.53428], [47.386423, 8.518508], [47.368651, 8.537373], [47.412882, 8.520953], [47.377492, 8.509759], [47.369881, 8.509858], [47.371999, 8.601477], [47.372113, 8.539431], [47.370698, 8.516746], [47.383224, 8.553222], [47.418067, 8.510893], [47.341657, 8.530677], [47.403268, 8.547335], [47.376417, 8.527509], [47.369708, 8.543486], [47.373094, 8.503818], [47.398346, 8.591679], [47.389953, 8.536236], [47.371258, 8.558176], [47.409852, 8.529385], [47.384401, 8.531725], [47.359604, 8.593436], [47.374691, 8.535935], [47.425389, 8.536781], [47.384791, 8.531402], [47.398192, 8.536287], [47.3664, 8.522353], [47.393602, 8.537583], [47.374788, 8.527648], [47.408693, 8.546348], [47.408054, 8.547289], [47.362627, 8.535224], [47.369606, 8.525768], [47.38531, 8.51732], [47.370079, 8.543295], [47.407418, 8.56095], [47.398145, 8.546937], [47.397898, 8.534148], [47.374896, 8.540005], [47.365268, 8.547816], [47.373286, 8.531444], [47.374697, 8.523925], [47.344059, 8.52968], [47.363881, 8.53194], [47.378365, 8.526039], [47.33986, 8.524738], [47.403442, 8.556374], [47.377987, 8.521304], [47.358872, 8.557161], [47.366715, 8.541411], [47.364577, 8.566217], [47.378601, 8.499744], [47.325903, 8.518619], [47.369631, 8.467073], [47.398301, 8.479854], [47.363394, 8.533028], [47.379544, 8.542127], [47.37886, 8.525069], [47.340252, 8.529894], [47.402511, 8.492642], [47.383763, 8.539248], [47.387564, 8.519657], [47.326838, 8.517659], [47.366944, 8.562454], [47.393871, 8.504949], [47.406946, 8.536149], [47.370613, 8.516242], [47.368119, 8.541334], [47.380512, 8.519647], [47.405126, 8.482041], [47.339928, 8.529966], [47.376843, 8.522446], [47.376561, 8.524638], [47.41194, 8.528341], [47.345138, 8.53448], [47.392693, 8.510727], [47.390873, 8.48861], [47.376043, 8.535711], [47.410705, 8.550312], [47.378562, 8.510774], [47.383298, 8.543662], [47.367191, 8.528168], [47.383905, 8.530946], [47.38112, 8.553178], [47.362204, 8.547514], [47.371435, 8.522667], [47.419631, 8.548179], [47.400122, 8.494224], [47.384443, 8.503211], [47.357056, 8.555204], [47.369207, 8.505859], [47.422476, 8.55073], [47.361915, 8.566135], [47.427367, 8.546259], [47.368489, 8.53075], [47.368447, 8.564181], [47.368836, 8.501284], [47.389609, 8.538415], [47.376911, 8.532352], [47.387385, 8.52915], [47.396992, 8.480305], [47.367102, 8.5442], [47.389145, 8.527597], [47.389605, 8.491512], [47.384728, 8.484794], [47.401335, 8.582298], [47.384409, 8.531831], [47.377684, 8.543744], [47.381361, 8.514419], [47.370613, 8.54945], [47.364182, 8.554095], [47.373961, 8.501452], [47.416387, 8.545978], [47.385867, 8.493014], [47.386942, 8.535062], [47.385011, 8.530956], [47.393447, 8.544375], [47.410739, 8.5534], [47.38515, 8.537157], [47.378677, 8.514789], [47.378929, 8.542419], [47.38752, 8.488372], [47.377387, 8.51136], [47.381935, 8.529025], [47.41236, 8.55036], [47.3962, 8.48535], [47.37571, 8.529057], [47.37446, 8.527111], [47.403168, 8.489713], [47.36736, 8.545357], [47.378521, 8.541907], [47.362667, 8.563741], [47.42216, 8.512831], [47.376358, 8.528077], [47.390074, 8.517695], [47.387449, 8.51943], [47.386438, 8.496469], [47.379866, 8.537618], [47.381298, 8.515464], [47.37426, 8.532152], [47.405544, 8.581434], [47.410521, 8.553555], [47.390547, 8.52287], [47.39984, 8.490681], [47.411555, 8.545189], [47.372583, 8.534448], [47.377688, 8.510915], [47.380195, 8.541809], [47.387557, 8.500041], [47.382576, 8.532628], [47.380956, 8.551533], [47.373612, 8.519758], [47.40292, 8.57576], [47.367591, 8.537245], [47.370117, 8.512524], [47.372754, 8.534439], [47.373164, 8.532911], [47.376204, 8.489394], [47.379395, 8.522683], [47.361286, 8.535302], [47.37647, 8.541838], [47.406889, 8.481108], [47.389231, 8.510697], [47.382604, 8.552229], [47.370895, 8.53121], [47.413168, 8.550549], [47.356879, 8.514164], [47.387751, 8.529383], [47.394134, 8.525063], [47.377498, 8.511984], [47.352956, 8.556944], [47.370814, 8.559424], [47.377628, 8.509603], [47.369461, 8.525924], [47.43093, 8.549899], [47.377078, 8.527032], [47.366711, 8.544589], [47.384037, 8.504315], [47.380702, 8.512724], [47.377585, 8.529638], [47.374335, 8.524116], [47.380715, 8.492859], [47.384711, 8.500448], [47.414904, 8.541084], [47.391469, 8.48237], [47.391801, 8.481436], [47.368788, 8.528651], [47.346788, 8.535083], [47.379687, 8.510651], [47.374796, 8.484917], [47.371554, 8.518604], [47.372737, 8.529605], [47.384908, 8.531351], [47.409322, 8.545407], [47.373032, 8.534484], [47.362577, 8.522407], [47.376958, 8.520727], [47.429108, 8.548602], [47.393787, 8.472626], [47.373683, 8.530353], [47.416108, 8.565559], [47.368128, 8.545942], [47.378496, 8.528399], [47.370946, 8.535408], [47.421316, 8.547883], [47.371379, 8.54744], [47.345579, 8.534436], [47.343329, 8.535594], [47.400569, 8.506262], [47.389776, 8.511993], [47.373063, 8.533094], [47.378624, 8.542399], [47.381885, 8.48981], [47.414072, 8.550011], [47.387874, 8.540127], [47.390419, 8.527875], [47.381522, 8.513535], [47.408883, 8.539581], [47.374487, 8.539453], [47.36997, 8.510932], [47.345129, 8.53448], [47.357975, 8.579872], [47.415368, 8.483447], [47.391584, 8.52358], [47.380698, 8.528537], [47.375333, 8.485232], [47.371864, 8.517207], [47.397603, 8.481417], [47.392968, 8.524655], [47.407266, 8.490099], [47.389458, 8.53914], [47.369877, 8.547435], [47.373226, 8.514772], [47.383822, 8.527289], [47.371291, 8.536011], [47.358145, 8.520146], [47.374669, 8.549627], [47.369137, 8.544877], [47.35912, 8.521781], [47.354395, 8.526794], [47.39523, 8.540372], [47.372233, 8.542797], [47.3804, 8.54286], [47.404003, 8.563408], [47.368279, 8.546197], [47.407129, 8.586728], [47.408547, 8.546557], [47.356025, 8.522737], [47.373122, 8.534513], [47.397367, 8.531275], [47.354867, 8.560148], [47.397473, 8.53243], [47.397033, 8.512219], [47.386832, 8.490782], [47.377073, 8.548392], [47.402176, 8.495841], [47.37844, 8.566034], [47.387369, 8.519349], [47.359273, 8.557606], [47.373096, 8.475958], [47.424357, 8.548689], [47.377593, 8.498757], [47.377421, 8.533581], [47.396787, 8.53749], [47.385135, 8.48851], [47.354018, 8.555908], [47.386055, 8.518501], [47.370139, 8.547321], [47.364518, 8.533051], [47.395397, 8.532295], [47.370102, 8.519012], [47.369365, 8.506352], [47.358421, 8.526254], [47.368367, 8.492615], [47.370635, 8.561168], [47.333466, 8.518812], [47.413762, 8.546692], [47.390609, 8.522991], [47.409474, 8.561417], [47.374921, 8.544878], [47.419723, 8.504923], [47.375408, 8.547537], [47.355315, 8.554796], [47.412295, 8.558031], [47.361306, 8.525506], [47.355415, 8.531197], [47.376633, 8.544622], [47.387331, 8.530063], [47.422884, 8.547531], [47.371592, 8.536494], [47.377045, 8.535295], [47.372753, 8.535485], [47.372046, 8.534133], [47.389274, 8.529096], [47.345969, 8.531281], [47.37, 8.566359], [47.376897, 8.554547], [47.403322, 8.49748], [47.402753, 8.535294], [47.375817, 8.577658], [47.385502, 8.530449], [47.390873, 8.48861], [47.394133, 8.493125], [47.376353, 8.543769], [47.37137, 8.516151], [47.406705, 8.535985], [47.357388, 8.597346], [47.380927, 8.542394], [47.41234, 8.542117], [47.370208, 8.557015], [47.370443, 8.539026], [47.427505, 8.543134], [47.420122, 8.54758], [47.382021, 8.550164], [47.3796, 8.52772], [47.369059, 8.538004], [47.377256, 8.539656], [47.35031, 8.534494], [47.398922, 8.538965], [47.411091, 8.545788], [47.353592, 8.55439], [47.421443, 8.497867], [47.377153, 8.541958], [47.367498, 8.494107], [47.366793, 8.521685], [47.425871, 8.547474], [47.340713, 8.537221], [47.388781, 8.530808], [47.409409, 8.545727], [47.37492, 8.553419], [47.369353, 8.537308], [47.389016, 8.548628], [47.367793, 8.539633], [47.371103, 8.523521], [47.377265, 8.538676], [47.380714, 8.504712], [47.341126, 8.530692], [47.359361, 8.552207], [47.379308, 8.495229], [47.383778, 8.530096], [47.373543, 8.495128], [47.385499, 8.52886], [47.378024, 8.554279], [47.374713, 8.549641], [47.40779, 8.552239], [47.370723, 8.535205], [47.401031, 8.488254], [47.369772, 8.480515], [47.38607, 8.493482], [47.36931, 8.525762], [47.400196, 8.494066], [47.371775, 8.493676], [47.338272, 8.530012], [47.356773, 8.523534], [47.378096, 8.51054], [47.365422, 8.539226], [47.365028, 8.53146], [47.42706, 8.546412], [47.408952, 8.545572], [47.380193, 8.542961], [47.358238, 8.518891], [47.356458, 8.510158], [47.369298, 8.505768], [47.352946, 8.556984], [47.370489, 8.549275], [47.364257, 8.533139], [47.338042, 8.525839], [47.380301, 8.520106], [47.367166, 8.523176], [47.388812, 8.522782], [47.370116, 8.511663], [47.390941, 8.522097], [47.368461, 8.559971], [47.407651, 8.584023], [47.367076, 8.495013], [47.404619, 8.594929], [47.366948, 8.548023], [47.36647, 8.533105], [47.370759, 8.522733], [47.355154, 8.532158], [47.357797, 8.521847], [47.372951, 8.533556], [47.368327, 8.548687], [47.385914, 8.532498], [47.386272, 8.53179], [47.372758, 8.534969], [47.338842, 8.538228], [47.360971, 8.531456], [47.409344, 8.549714], [47.335707, 8.540611], [47.366955, 8.544448], [47.383729, 8.512242], [47.391909, 8.483491], [47.382137, 8.514197], [47.421161, 8.549947], [47.399767, 8.543738], [47.400836, 8.491906], [47.360008, 8.532535], [47.396122, 8.493946], [47.375139, 8.547438], [47.38871, 8.520276], [47.420207, 8.509015], [47.392461, 8.502762], [47.360396, 8.526692], [47.366959, 8.543098], [47.372508, 8.517538], [47.405152, 8.504897], [47.378748, 8.49441], [47.385961, 8.517943], [47.361804, 8.526191], [47.409158, 8.547497], [47.359448, 8.511661], [47.397941, 8.532479], [47.373288, 8.533073], [47.37525, 8.53302], [47.37884, 8.508952], [47.390362, 8.47946], [47.387816, 8.488457], [47.384848, 8.508053], [47.378671, 8.523132], [47.397996, 8.474695], [47.369495, 8.526123], [47.362997, 8.535033], [47.409584, 8.53778], [47.384316, 8.531246], [47.36363, 8.558188], [47.386751, 8.547601], [47.359701, 8.566313], [47.375626, 8.54823], [47.398225, 8.542355], [47.34528, 8.535621], [47.377809, 8.525869], [47.366041, 8.540365], [47.353685, 8.600588], [47.366747, 8.541822], [47.363792, 8.517481], [47.364309, 8.52182], [47.427602, 8.549949], [47.364436, 8.531249], [47.369158, 8.527559], [47.42967, 8.537797], [47.402227, 8.552719], [47.396658, 8.504197], [47.409319, 8.546692], [47.355509, 8.527889], [47.386918, 8.486307], [47.371782, 8.516331], [47.410753, 8.542561], [47.393373, 8.513099], [47.372685, 8.534106], [47.361547, 8.535241], [47.378736, 8.529675], [47.354297, 8.557727], [47.372273, 8.53578], [47.345005, 8.529594], [47.387384, 8.518726], [47.390585, 8.508208], [47.376491, 8.543467], [47.357428, 8.521879], [47.368411, 8.546504], [47.391696, 8.513555], [47.397991, 8.47431], [47.336844, 8.539245], [47.376861, 8.543316], [47.394122, 8.540574], [47.367378, 8.523577], [47.376876, 8.535106], [47.361496, 8.551907], [47.34031, 8.524721], [47.371633, 8.521625], [47.356608, 8.551329], [47.384801, 8.531336], [47.354039, 8.557417], [47.418149, 8.528044], [47.397087, 8.493687], [47.375314, 8.485377], [47.369333, 8.557195], [47.387667, 8.521182], [47.407793, 8.560375], [47.40895, 8.543915], [47.376035, 8.535645], [47.377486, 8.543806], [47.38936, 8.51617], [47.405165, 8.552105], [47.367013, 8.544118], [47.393778, 8.493608], [47.36751, 8.546631], [47.415629, 8.508035], [47.334289, 8.532722], [47.327122, 8.529599], [47.419645, 8.548551], [47.358918, 8.516416], [47.367422, 8.495523], [47.391025, 8.489633], [47.380223, 8.542618], [47.389718, 8.542086], [47.381558, 8.513615], [47.379645, 8.527681], [47.378219, 8.531969], [47.4057, 8.591096], [47.419247, 8.505828], [47.353454, 8.530217], [47.405169, 8.480293], [47.392212, 8.476715], [47.405811, 8.590807], [47.405811, 8.590807], [47.363596, 8.575411], [47.398535, 8.541911], [47.34005, 8.530339], [47.358218, 8.519115], [47.364798, 8.537678], [47.421645, 8.550183], [47.39086, 8.522082], [47.383342, 8.511374], [47.393514, 8.473018], [47.378085, 8.526179], [47.373337, 8.53559], [47.379187, 8.518057], [47.403822, 8.560755], [47.384498, 8.480379], [47.355942, 8.535417], [47.389991, 8.52564], [47.36218, 8.50413], [47.378707, 8.54211], [47.405262, 8.55791], [47.390844, 8.504478], [47.385839, 8.530006], [47.387767, 8.51529], [47.409549, 8.529153], [47.394294, 8.525212], [47.361326, 8.570332], [47.399556, 8.516589], [47.366192, 8.540593], [47.386807, 8.502357], [47.407449, 8.548456], [47.375242, 8.518586], [47.367293, 8.520226], [47.378386, 8.530476], [47.359843, 8.535669], [47.373908, 8.527484], [47.375198, 8.484209], [47.380772, 8.519758], [47.392196, 8.524533], [47.377258, 8.543152], [47.413049, 8.540396], [47.410439, 8.532975], [47.377256, 8.529195], [47.37598, 8.559175], [47.405175, 8.480611], [47.399175, 8.521774], [47.406862, 8.550577], [47.351148, 8.568925], [47.363007, 8.526374], [47.362136, 8.503997], [47.391478, 8.514677], [47.382371, 8.530438], [47.382563, 8.563022], [47.384368, 8.548399], [47.422903, 8.551256], [47.369012, 8.524882], [47.381875, 8.556942], [47.369122, 8.503368], [47.410272, 8.529712], [47.383085, 8.513845], [47.375561, 8.517149], [47.383937, 8.530444], [47.367361, 8.544337], [47.354896, 8.574696], [47.403374, 8.49866], [47.397473, 8.532417], [47.420287, 8.503318], [47.367099, 8.539777], [47.408291, 8.529883], [47.385317, 8.521373], [47.389008, 8.536336], [47.379179, 8.527446], [47.364532, 8.566243], [47.392244, 8.524176], [47.386919, 8.534624], [47.345345, 8.536337], [47.377641, 8.526488], [47.368154, 8.541441], [47.379374, 8.517279], [47.372892, 8.535951], [47.419098, 8.506368], [47.405244, 8.49092], [47.390976, 8.523184], [47.3874, 8.518965], [47.382491, 8.501185], [47.381717, 8.531206], [47.373132, 8.535373], [47.359745, 8.594617], [47.374386, 8.502242], [47.424305, 8.549417], [47.359715, 8.550904], [47.380014, 8.543752], [47.379663, 8.527668], [47.368488, 8.530856], [47.37454, 8.539547], [47.35631, 8.573641], [47.373987, 8.544713], [47.39198, 8.530264], [47.374463, 8.537255], [47.40931, 8.54485], [47.389758, 8.512072], [47.378417, 8.540501], [47.370381, 8.509272], [47.368311, 8.5344], [47.41078, 8.550036], [47.371402, 8.555372], [47.410691, 8.572189], [47.347709, 8.562764], [47.364436, 8.531262], [47.358144, 8.558959], [47.371521, 8.547628], [47.414189, 8.550067], [47.358693, 8.586413], [47.382231, 8.551784], [47.405893, 8.548423], [47.406866, 8.536055], [47.38068, 8.50054], [47.378691, 8.529648], [47.413029, 8.516795], [47.399501, 8.540513], [47.388868, 8.515829], [47.369571, 8.5286], [47.37831, 8.541333], [47.37845, 8.510229], [47.385282, 8.508711], [47.371704, 8.524619], [47.410491, 8.479628], [47.360915, 8.525061], [47.36918, 8.528063], [47.334981, 8.519333], [47.382261, 8.533535], [47.394194, 8.527223], [47.353444, 8.55759], [47.344302, 8.532584], [47.368042, 8.53895], [47.368342, 8.498229], [47.3585, 8.510119], [47.376301, 8.525573], [47.407261, 8.503428], [47.374098, 8.525396], [47.375483, 8.549114], [47.3877, 8.486388], [47.396616, 8.510687], [47.366529, 8.566219], [47.374391, 8.522025], [47.376175, 8.528418], [47.374237, 8.535476], [47.37252, 8.534407], [47.412293, 8.556361], [47.391792, 8.518644], [47.361447, 8.551311], [47.403188, 8.547254], [47.398956, 8.59001], [47.373429, 8.520033], [47.37187, 8.522278], [47.368737, 8.537746], [47.363337, 8.533318], [47.373846, 8.530211], [47.404181, 8.485109], [47.377724, 8.525324], [47.382094, 8.488596], [47.410875, 8.561592], [47.36577, 8.539578], [47.414798, 8.551219], [47.376603, 8.543933], [47.374717, 8.52758], [47.372889, 8.521081], [47.381894, 8.5475], [47.391529, 8.54268], [47.419669, 8.547995], [47.39386, 8.493477], [47.401869, 8.551532], [47.370179, 8.513585], [47.382411, 8.532955], [47.366718, 8.545767], [47.352306, 8.576494], [47.352797, 8.524512], [47.376056, 8.559614], [47.392598, 8.475848], [47.342035, 8.530645], [47.379951, 8.520999], [47.370553, 8.54447], [47.370886, 8.548237], [47.346368, 8.564628], [47.369069, 8.537872], [47.385661, 8.532585], [47.388337, 8.540653], [47.360014, 8.51661], [47.377386, 8.501785], [47.366482, 8.540334], [47.421256, 8.501601], [47.387311, 8.518844], [47.391624, 8.513554], [47.376031, 8.511081], [47.353818, 8.557055], [47.377664, 8.496878], [47.368339, 8.54645], [47.414982, 8.515735], [47.357531, 8.600076], [47.391015, 8.520972], [47.374394, 8.525561], [47.375585, 8.501021], [47.375908, 8.523288], [47.397767, 8.533734], [47.375652, 8.54835], [47.38619, 8.521338], [47.373699, 8.517125], [47.39866, 8.539184], [47.413452, 8.530134], [47.381427, 8.484795], [47.363822, 8.559674], [47.378246, 8.548059], [47.370278, 8.548834], [47.386714, 8.547613], [47.410999, 8.54315], [47.368629, 8.518691], [47.380249, 8.541771], [47.400698, 8.544274], [47.411621, 8.559819], [47.379708, 8.515154], [47.361273, 8.52336], [47.369831, 8.538152], [47.412179, 8.550423], [47.385069, 8.508455], [47.380507, 8.512482], [47.374223, 8.502345], [47.36787, 8.560607], [47.376119, 8.494702], [47.378032, 8.493098], [47.394174, 8.527461], [47.370499, 8.517908], [47.39754, 8.489324], [47.357853, 8.572178], [47.377846, 8.54188], [47.355028, 8.529256], [47.38, 8.553671], [47.375176, 8.54736], [47.339569, 8.53553], [47.369337, 8.525736], [47.408156, 8.545992], [47.375055, 8.48516], [47.383175, 8.506073], [47.383789, 8.532745], [47.414076, 8.541186], [47.388435, 8.52847], [47.354945, 8.509373], [47.348558, 8.563351], [47.389262, 8.521837], [47.356902, 8.555319], [47.373348, 8.531511], [47.37068, 8.516746], [47.376381, 8.525615], [47.387028, 8.501858], [47.384732, 8.543294], [47.37893, 8.542406], [47.377669, 8.525455], [47.338254, 8.528172], [47.418887, 8.498002], [47.38216, 8.488213], [47.383313, 8.484037], [47.369335, 8.491946], [47.374161, 8.513943], [47.36671, 8.541914], [47.408068, 8.544878], [47.37434, 8.495527], [47.420133, 8.508258], [47.414209, 8.518555], [47.378692, 8.516153], [47.371513, 8.542835], [47.348478, 8.534191], [47.370235, 8.532533], [47.37513, 8.549345], [47.39161, 8.485697], [47.361257, 8.560733], [47.366404, 8.538188], [47.36799, 8.51975], [47.388636, 8.509785], [47.41553, 8.541547], [47.392232, 8.502293], [47.33658, 8.530123], [47.394084, 8.475691], [47.372271, 8.536044], [47.361793, 8.560241], [47.40591, 8.590796], [47.393845, 8.512671], [47.378804, 8.527227], [47.384633, 8.530061], [47.381736, 8.545258], [47.392776, 8.534506], [47.393369, 8.49303], [47.360466, 8.535378], [47.360059, 8.531835], [47.372805, 8.543206], [47.374151, 8.515015], [47.418252, 8.548482], [47.424705, 8.543381], [47.360071, 8.547615], [47.372919, 8.520764], [47.377396, 8.521], [47.403673, 8.571444], [47.373511, 8.552158], [47.40036, 8.543803], [47.377525, 8.522566], [47.351422, 8.57674], [47.392815, 8.522784], [47.389742, 8.511767], [47.389228, 8.541546], [47.403887, 8.567937], [47.381531, 8.498001], [47.381749, 8.541947], [47.364564, 8.536812], [47.378435, 8.550857], [47.375744, 8.549106], [47.354936, 8.534245], [47.375416, 8.561653], [47.368448, 8.548306], [47.396006, 8.5211], [47.378861, 8.524976], [47.388804, 8.522716], [47.370462, 8.549261], [47.378253, 8.52748], [47.378977, 8.551557], [47.368762, 8.540818], [47.391917, 8.517825], [47.393108, 8.474162], [47.416508, 8.553071], [47.417986, 8.560139], [47.381077, 8.503316], [47.373862, 8.529509], [47.368126, 8.532993], [47.406722, 8.586971], [47.397275, 8.493757], [47.418241, 8.543048], [47.375789, 8.549121], [47.372716, 8.534663], [47.368449, 8.550927], [47.380732, 8.5782], [47.378074, 8.529225], [47.3825, 8.505172], [47.362478, 8.533817], [47.41418, 8.535026], [47.36929, 8.491972], [47.369589, 8.564231], [47.41342, 8.54581], [47.37126, 8.520148], [47.368283, 8.550474], [47.397465, 8.532337], [47.3666, 8.536417], [47.398159, 8.536048], [47.373995, 8.501771], [47.410861, 8.563076], [47.386573, 8.479651], [47.382682, 8.529915], [47.411267, 8.567577], [47.368964, 8.501035], [47.373622, 8.549963], [47.358848, 8.55221], [47.412899, 8.547589], [47.375597, 8.535305], [47.377045, 8.521947], [47.377344, 8.529422], [47.371177, 8.534711], [47.369532, 8.553346], [47.382544, 8.548189], [47.349774, 8.532286], [47.38008, 8.537808], [47.374291, 8.541131], [47.386318, 8.525897], [47.37055, 8.469924], [47.365124, 8.516488], [47.40324, 8.547427], [47.413456, 8.532586], [47.378954, 8.538857], [47.425174, 8.546095], [47.409847, 8.545087], [47.399225, 8.59187], [47.380256, 8.552273], [47.389867, 8.526393], [47.390362, 8.491368], [47.371162, 8.54288], [47.366196, 8.557023], [47.378495, 8.575186], [47.372398, 8.547183], [47.378966, 8.542393], [47.412714, 8.537792], [47.387724, 8.499515], [47.378624, 8.519502], [47.377765, 8.498707], [47.422359, 8.550675], [47.361865, 8.507102], [47.378454, 8.509765], [47.375817, 8.547108], [47.422247, 8.538969], [47.422415, 8.512412], [47.365703, 8.537154], [47.369546, 8.543496], [47.412151, 8.546831], [47.410422, 8.572051], [47.42029, 8.508778], [47.376508, 8.524584], [47.371586, 8.51025], [47.387661, 8.529447], [47.398859, 8.506427], [47.384617, 8.53463], [47.375512, 8.563827], [47.363752, 8.530361], [47.374683, 8.537723], [47.383509, 8.536607], [47.366931, 8.544209], [47.378018, 8.524694], [47.389313, 8.54021], [47.397482, 8.532444], [47.367898, 8.544613], [47.376454, 8.52551], [47.366058, 8.545211], [47.376021, 8.541816], [47.391332, 8.50621], [47.365923, 8.534841], [47.378299, 8.527375], [47.381915, 8.52925], [47.410886, 8.563275], [47.418123, 8.510709], [47.386723, 8.544858], [47.378463, 8.550752], [47.379634, 8.542102], [47.37239, 8.547156], [47.379828, 8.542477], [47.386936, 8.473288], [47.385007, 8.537075], [47.375906, 8.529313], [47.376229, 8.544508], [47.42751, 8.547323], [47.43, 8.549337], [47.409065, 8.54788], [47.386109, 8.521389], [47.388448, 8.491105], [47.366897, 8.533603], [47.34706, 8.528207], [47.411193, 8.485525], [47.360351, 8.552188], [47.388402, 8.525264], [47.379634, 8.542102], [47.370179, 8.548792], [47.372822, 8.535831], [47.377515, 8.527531], [47.376774, 8.559775], [47.369523, 8.526031], [47.41256, 8.546389], [47.398334, 8.479205], [47.349382, 8.562733], [47.390789, 8.508556], [47.382302, 8.533006], [47.361298, 8.5254], [47.385302, 8.507585], [47.373041, 8.51927], [47.370215, 8.548806], [47.366527, 8.545088], [47.374486, 8.536699], [47.370161, 8.548791], [47.404656, 8.574883], [47.358944, 8.551589], [47.389904, 8.475358], [47.382219, 8.530356], [47.411099, 8.535506], [47.406493, 8.584648], [47.371498, 8.557479], [47.407587, 8.564889], [47.361411, 8.54763], [47.416923, 8.545459], [47.39863, 8.506872], [47.373736, 8.546549], [47.389386, 8.51625], [47.377944, 8.492871], [47.407206, 8.564298], [47.366738, 8.541782], [47.369397, 8.537481], [47.402436, 8.535579], [47.409013, 8.542989], [47.374298, 8.521414], [47.370188, 8.548792], [47.367611, 8.552935], [47.359781, 8.594565], [47.427178, 8.536818], [47.378173, 8.509972], [47.386417, 8.531647], [47.386961, 8.533976], [47.40762, 8.543716], [47.368599, 8.520067], [47.329972, 8.533547], [47.364908, 8.504846], [47.378232, 8.51723], [47.408117, 8.53881], [47.383087, 8.530837], [47.377262, 8.556832], [47.41941, 8.547777], [47.373047, 8.532949], [47.353033, 8.553531], [47.366989, 8.523795], [47.385575, 8.528424], [47.393677, 8.491765], [47.3684, 8.556924], [47.389053, 8.538191], [47.393408, 8.524703], [47.355443, 8.600189], [47.370361, 8.514396], [47.391532, 8.519499], [47.369436, 8.541838], [47.373972, 8.527327], [47.366065, 8.559404], [47.378638, 8.539976], [47.363898, 8.549045], [47.41919, 8.508106], [47.373266, 8.531589], [47.388762, 8.491178], [47.420132, 8.548481], [47.350027, 8.56673], [47.374488, 8.539321], [47.3783, 8.509855], [47.414215, 8.518886], [47.404578, 8.483965], [47.374415, 8.527137], [47.365184, 8.555639], [47.409878, 8.540874], [47.393799, 8.509849], [47.380046, 8.554454], [47.371392, 8.546129], [47.382514, 8.540083], [47.375375, 8.560341], [47.41384, 8.527187], [47.391023, 8.521012], [47.370642, 8.535137], [47.347628, 8.566402], [47.403265, 8.555125], [47.364084, 8.547447], [47.425944, 8.493583], [47.391556, 8.54268], [47.371942, 8.516494], [47.378802, 8.539794], [47.379981, 8.548135], [47.409608, 8.537132], [47.373629, 8.519785], [47.391358, 8.538954], [47.381038, 8.503659], [47.366354, 8.540556], [47.355289, 8.596731], [47.387199, 8.519226], [47.378048, 8.513836], [47.375182, 8.518254], [47.408956, 8.539437], [47.371707, 8.519561], [47.378003, 8.508949], [47.374749, 8.48906], [47.369181, 8.527997], [47.404273, 8.560658], [47.400311, 8.494267], [47.374833, 8.527635], [47.374284, 8.543792], [47.409988, 8.550059], [47.368951, 8.524722], [47.40017, 8.586459], [47.380381, 8.512453], [47.386824, 8.502517], [47.366392, 8.559067], [47.388596, 8.48675], [47.360976, 8.531006], [47.383699, 8.5155], [47.406385, 8.583744], [47.374109, 8.502011], [47.403169, 8.547333], [47.370544, 8.549236], [47.376521, 8.526995], [47.402391, 8.535539], [47.390752, 8.548624], [47.398109, 8.535623], [47.375695, 8.537333], [47.360305, 8.550426], [47.392477, 8.506908], [47.371109, 8.530512], [47.38453, 8.539052], [47.397012, 8.530752], [47.41072, 8.553413], [47.377461, 8.541673], [47.380501, 8.525659], [47.403325, 8.534803], [47.400374, 8.548931], [47.361589, 8.547779], [47.415221, 8.562373], [47.391058, 8.523066], [47.378129, 8.509918], [47.379612, 8.542579], [47.37253, 8.528582], [47.365806, 8.539512], [47.364402, 8.55643], [47.366443, 8.540691], [47.41996, 8.548544], [47.357803, 8.552413], [47.404501, 8.575012], [47.388282, 8.485605], [47.364523, 8.566229], [47.37962, 8.523628], [47.385841, 8.525013], [47.381576, 8.513603], [47.358546, 8.532082], [47.373494, 8.519835], [47.420226, 8.508936], [47.394494, 8.479091], [47.390923, 8.52211], [47.366679, 8.501995], [47.374407, 8.517484], [47.368272, 8.536571], [47.370233, 8.548819], [47.390694, 8.522582], [47.377856, 8.519884], [47.402534, 8.535648], [47.382367, 8.49909], [47.350169, 8.532307], [47.410641, 8.543924], [47.364276, 8.546259], [47.423053, 8.503797], [47.357457, 8.521628], [47.361338, 8.549601], [47.381935, 8.529025], [47.409443, 8.549703], [47.336878, 8.520482], [47.396694, 8.537753], [47.374821, 8.520299], [47.363959, 8.530326], [47.374762, 8.54461], [47.385031, 8.508639], [47.427187, 8.536818], [47.374184, 8.5192], [47.391061, 8.538895], [47.36454, 8.531688], [47.363993, 8.531584], [47.368258, 8.561449], [47.370372, 8.527544], [47.388954, 8.485896], [47.385306, 8.542485], [47.386538, 8.541636], [47.376608, 8.54339], [47.385722, 8.508786], [47.372422, 8.545647], [47.368843, 8.501496], [47.375009, 8.545118], [47.365987, 8.546997], [47.404243, 8.560949], [47.41771, 8.483056], [47.378767, 8.519651], [47.37843, 8.525881], [47.367973, 8.495361], [47.39595, 8.540307], [47.391835, 8.484615], [47.374308, 8.530803], [47.391099, 8.52259], [47.423119, 8.542778], [47.382457, 8.537592], [47.430624, 8.541529], [47.374751, 8.523873], [47.409168, 8.547458], [47.373657, 8.519719], [47.33854, 8.530176], [47.372531, 8.528542], [47.37718, 8.522002], [47.372775, 8.528441], [47.393767, 8.53915], [47.356887, 8.553201], [47.374281, 8.525121], [47.371278, 8.536434], [47.387256, 8.539863], [47.378586, 8.540664], [47.419306, 8.556734], [47.377071, 8.569978], [47.373662, 8.536351], [47.364789, 8.554624], [47.385966, 8.504804], [47.388705, 8.546436], [47.391039, 8.481169], [47.35479, 8.526829], [47.370027, 8.519262], [47.368409, 8.556924], [47.354552, 8.574001], [47.378731, 8.542507], [47.335594, 8.525008], [47.360476, 8.563404], [47.382749, 8.514143], [47.346614, 8.528714], [47.369755, 8.540428], [47.35159, 8.53039], [47.365911, 8.501437], [47.36652, 8.501754], [47.398276, 8.536964], [47.399798, 8.544255], [47.380989, 8.556526], [47.377995, 8.510776], [47.391625, 8.513395], [47.368836, 8.501244], [47.382219, 8.530342], [47.413672, 8.554217], [47.371935, 8.519221], [47.379062, 8.538846], [47.373671, 8.536338], [47.413023, 8.550612], [47.380524, 8.512562], [47.379124, 8.519963], [47.363034, 8.527355], [47.366496, 8.540784], [47.389527, 8.521353], [47.37214, 8.539431], [47.352104, 8.558488], [47.394072, 8.475996], [47.385563, 8.53061], [47.378388, 8.523656], [47.422439, 8.550822], [47.392196, 8.494464], [47.387272, 8.519121], [47.380219, 8.542988], [47.353827, 8.600737], [47.419062, 8.538055], [47.364853, 8.530927], [47.392086, 8.500502], [47.398093, 8.501682], [47.36167, 8.532755], [47.415512, 8.553712], [47.411667, 8.561596], [47.337956, 8.538686], [47.377459, 8.539038], [47.37305, 8.51923], [47.373334, 8.553691], [47.376402, 8.528131], [47.364149, 8.565811], [47.374261, 8.524327], [47.37868, 8.523132], [47.374527, 8.539971], [47.341489, 8.530409], [47.353644, 8.554589], [47.414837, 8.541533], [47.386327, 8.52591], [47.374858, 8.532655], [47.41403, 8.550673], [47.398861, 8.533148], [47.422716, 8.550961], [47.374405, 8.55182], [47.390612, 8.489625], [47.368946, 8.540358], [47.364707, 8.554689], [47.364614, 8.566139], [47.368953, 8.501233], [47.364295, 8.546101], [47.38786, 8.486603], [47.381728, 8.530928], [47.406277, 8.562741], [47.417336, 8.55387], [47.351626, 8.583429], [47.369814, 8.552161], [47.377817, 8.529815], [47.366426, 8.548065], [47.39276, 8.532453], [47.394365, 8.489328], [47.373573, 8.534363], [47.412813, 8.522515], [47.344518, 8.530656], [47.373662, 8.536351], [47.349466, 8.532412], [47.37553, 8.524352], [47.340635, 8.530272], [47.391405, 8.55089], [47.362729, 8.515712], [47.415503, 8.545244], [47.367788, 8.534469], [47.367427, 8.506764], [47.372817, 8.483938], [47.374238, 8.542984], [47.383035, 8.473967], [47.370152, 8.548791], [47.420645, 8.502477], [47.378279, 8.530381], [47.402454, 8.53558], [47.387361, 8.519282], [47.403725, 8.485803], [47.377339, 8.535619], [47.37865, 8.496368], [47.409566, 8.53778], [47.395531, 8.493709], [47.369312, 8.543517], [47.373779, 8.537333], [47.389487, 8.483708], [47.371448, 8.562642], [47.364758, 8.554067], [47.372982, 8.533133], [47.371159, 8.518517], [47.379495, 8.544417], [47.375614, 8.527797], [47.334639, 8.529964], [47.414423, 8.4805], [47.376168, 8.516698], [47.412921, 8.54629], [47.401715, 8.581153], [47.39408, 8.525035], [47.371881, 8.52592], [47.391273, 8.523229], [47.364291, 8.52182], [47.377486, 8.543793], [47.374753, 8.541723], [47.385117, 8.508125], [47.361537, 8.565293], [47.370088, 8.548909], [47.394857, 8.520799], [47.386096, 8.548342], [47.402544, 8.487131], [47.42263, 8.550574], [47.392705, 8.490898], [47.365258, 8.501027], [47.415646, 8.512952], [47.398164, 8.534524], [47.378759, 8.519571], [47.371494, 8.54768], [47.398015, 8.534163], [47.36922, 8.516121], [47.35839, 8.505444], [47.369434, 8.537297], [47.413714, 8.550773], [47.379885, 8.516482], [47.389438, 8.485111], [47.379487, 8.537742], [47.383945, 8.532404], [47.374677, 8.545933], [47.419134, 8.506356], [47.387493, 8.519523], [47.401277, 8.534456], [47.376655, 8.534744], [47.38709, 8.497052], [47.364336, 8.529553], [47.380993, 8.507578], [47.376528, 8.527233], [47.411126, 8.542039], [47.367209, 8.544321], [47.397952, 8.534122], [47.371862, 8.522133], [47.381406, 8.517347], [47.370769, 8.515013], [47.385278, 8.550113], [47.421257, 8.507366], [47.387961, 8.485387], [47.393788, 8.472586], [47.403885, 8.569103], [47.36767, 8.495051], [47.376178, 8.488254], [47.41236, 8.550373], [47.387966, 8.485811], [47.376758, 8.538097], [47.371456, 8.547852], [47.374823, 8.552226], [47.371716, 8.523388], [47.362198, 8.526398], [47.373077, 8.525931], [47.360966, 8.531072], [47.37869, 8.54203], [47.367325, 8.545316], [47.372816, 8.524006], [47.431364, 8.516464], [47.405176, 8.557524], [47.364347, 8.5501], [47.379481, 8.52977], [47.375939, 8.541946], [47.37278, 8.538293], [47.385193, 8.530708], [47.429636, 8.487227], [47.361466, 8.5258], [47.35761, 8.521618], [47.348896, 8.528019], [47.369027, 8.503009], [47.39036, 8.505316], [47.381158, 8.491531], [47.403539, 8.496358], [47.38959, 8.493115], [47.414181, 8.541533], [47.382147, 8.533215], [47.404731, 8.59452], [47.382387, 8.514347], [47.378624, 8.519529], [47.411882, 8.546706], [47.414639, 8.475429], [47.40505, 8.482543], [47.366744, 8.535494], [47.397923, 8.531472], [47.373897, 8.544778], [47.367016, 8.513216], [47.364814, 8.566778], [47.395757, 8.54543], [47.398987, 8.541589], [47.398718, 8.539702], [47.369909, 8.602663], [47.412944, 8.481955], [47.404671, 8.595062], [47.386775, 8.499959], [47.364577, 8.566204], [47.36058, 8.597468], [47.370667, 8.524942], [47.350178, 8.532307], [47.426312, 8.541877], [47.367136, 8.534893], [47.334935, 8.529983], [47.426297, 8.554641], [47.420521, 8.482568], [47.377003, 8.539757], [47.372011, 8.534953], [47.4106, 8.549992], [47.350952, 8.583269], [47.422914, 8.54345], [47.347114, 8.563783], [47.362332, 8.526427], [47.376647, 8.528957], [47.367853, 8.560514], [47.392459, 8.50304], [47.395384, 8.533672], [47.375987, 8.488436], [47.377031, 8.539678], [47.427089, 8.551754], [47.396675, 8.494526], [47.366763, 8.541995], [47.398876, 8.547575], [47.371335, 8.530331], [47.402418, 8.535579], [47.36891, 8.540424], [47.422993, 8.551192], [47.368924, 8.524708], [47.372572, 8.517486], [47.390168, 8.491934], [47.369292, 8.525761], [47.405271, 8.480918], [47.383667, 8.573376], [47.391229, 8.515427], [47.357287, 8.600177], [47.360277, 8.568986], [47.408673, 8.546507], [47.378732, 8.539554], [47.382953, 8.528914], [47.378057, 8.513836], [47.36115, 8.535378], [47.360286, 8.568999], [47.36034, 8.569001], [47.360242, 8.568879], [47.384609, 8.502711], [47.371379, 8.547506], [47.423335, 8.494551], [47.402707, 8.501761], [47.414492, 8.533323], [47.389163, 8.482722], [47.351093, 8.559738], [47.370609, 8.512799], [47.364313, 8.557315], [47.352614, 8.576276], [47.379528, 8.527639], [47.381952, 8.512763], [47.377008, 8.543915], [47.371878, 8.522358], [47.352027, 8.576435], [47.410461, 8.569905], [47.375615, 8.526777], [47.413577, 8.523538], [47.374429, 8.55672], [47.393604, 8.538219], [47.361739, 8.526362], [47.334368, 8.533822], [47.369184, 8.527666], [47.407662, 8.583785], [47.402143, 8.579705], [47.409188, 8.546279], [47.384161, 8.528581], [47.399405, 8.476126], [47.405591, 8.549941], [47.369305, 8.523418], [47.399055, 8.542094], [47.410841, 8.537979], [47.398032, 8.532309], [47.375203, 8.54458], [47.408209, 8.546166], [47.369399, 8.525803], [47.393766, 8.502735], [47.356282, 8.551521], [47.384972, 8.508201], [47.393385, 8.493296], [47.367825, 8.494749], [47.360477, 8.596963], [47.362533, 8.520394], [47.398259, 8.536858], [47.376847, 8.542852], [47.371486, 8.547535], [47.365099, 8.521121], [47.375381, 8.557865], [47.391644, 8.519117], [47.413111, 8.479308], [47.363627, 8.535085], [47.37776, 8.537707], [47.359954, 8.532547], [47.364006, 8.526315], [47.368984, 8.541127], [47.377606, 8.537862], [47.406088, 8.590071], [47.387574, 8.488386], [47.419819, 8.500379], [47.372766, 8.535022], [47.373486, 8.529276], [47.419202, 8.546898], [47.381171, 8.5422], [47.36868, 8.541862], [47.359024, 8.558237], [47.366775, 8.534157], [47.410155, 8.574576], [47.390283, 8.509699], [47.402126, 8.495456], [47.374509, 8.539957], [47.370242, 8.548833], [47.385415, 8.542434], [47.369453, 8.529684], [47.373328, 8.525036], [47.38958, 8.5224], [47.399865, 8.5448], [47.377638, 8.516331], [47.391319, 8.536384], [47.411445, 8.525469], [47.417187, 8.543172], [47.385012, 8.528956], [47.372031, 8.522361], [47.380817, 8.512011], [47.365912, 8.506204], [47.374318, 8.578248], [47.363756, 8.55169], [47.382409, 8.54167], [47.397923, 8.532479], [47.355773, 8.532276], [47.369043, 8.523505], [47.391513, 8.519618], [47.343874, 8.530259], [47.370024, 8.518666], [47.370323, 8.513561], [47.372941, 8.524141], [47.393688, 8.49558], [47.421065, 8.549614], [47.420313, 8.508288], [47.369453, 8.52587], [47.419212, 8.547733], [47.367833, 8.495875], [47.367216, 8.54448], [47.361108, 8.600379], [47.388363, 8.485646], [47.35944, 8.535462], [47.384463, 8.531845], [47.382222, 8.488373], [47.391184, 8.523095], [47.362067, 8.559836], [47.37854, 8.5752], [47.413338, 8.509632], [47.387023, 8.528467], [47.372612, 8.528543], [47.375616, 8.537133], [47.360298, 8.566908], [47.374533, 8.549743], [47.386488, 8.547754], [47.378934, 8.559688], [47.398362, 8.526951], [47.395872, 8.526701], [47.371399, 8.535947], [47.417627, 8.546097], [47.337061, 8.539118], [47.364553, 8.521746], [47.378628, 8.499691], [47.351552, 8.524883], [47.394844, 8.52313], [47.33922, 8.519101], [47.38136, 8.542178], [47.366703, 8.537929], [47.402181, 8.499286], [47.364384, 8.56661], [47.409241, 8.546373], [47.374272, 8.524115], [47.362516, 8.548659], [47.365886, 8.545313], [47.410487, 8.556165], [47.351881, 8.527286], [47.389246, 8.527387], [47.386463, 8.517171], [47.373654, 8.522871], [47.410893, 8.558823], [47.378766, 8.543501], [47.425075, 8.537636], [47.377554, 8.518567], [47.368097, 8.496542], [47.37437, 8.521376], [47.377517, 8.522499], [47.374477, 8.535825], [47.412378, 8.523871], [47.415179, 8.528275], [47.405631, 8.591784], [47.391729, 8.518616], [47.374329, 8.514238], [47.354858, 8.510946], [47.370755, 8.512656], [47.361254, 8.56297], [47.398184, 8.532458], [47.342762, 8.530792], [47.387089, 8.519489], [47.364618, 8.555508], [47.376459, 8.548671], [47.36263, 8.547099], [47.377652, 8.527283], [47.363061, 8.529235], [47.377383, 8.525304], [47.378414, 8.54364], [47.373416, 8.53481], [47.360453, 8.52247], [47.386309, 8.53538], [47.414113, 8.55045], [47.374196, 8.475622], [47.388549, 8.53638], [47.367742, 8.534614], [47.381456, 8.535902], [47.366909, 8.558561], [47.367396, 8.496489], [47.401983, 8.499282], [47.40752, 8.54382], [47.374485, 8.541612], [47.408252, 8.541609], [47.385274, 8.507638], [47.387245, 8.519094], [47.377331, 8.527872], [47.345271, 8.535608], [47.376893, 8.537119], [47.406684, 8.56153], [47.41455, 8.559258], [47.345116, 8.534916], [47.396188, 8.517011], [47.372624, 8.515726]], [[47.357032, 8.506423], [47.372131, 8.539418], [47.387024, 8.519659], [47.388342, 8.516348], [47.388437, 8.49039], [47.383796, 8.54048], [47.376704, 8.555006], [47.373077, 8.517284], [47.373893, 8.495174], [47.37948, 8.527982], [47.386885, 8.484955], [47.418954, 8.506352], [47.399667, 8.467931], [47.364094, 8.528422], [47.383959, 8.530948], [47.374709, 8.535949], [47.413083, 8.515802], [47.373511, 8.519942], [47.388172, 8.520014], [47.34245, 8.536251], [47.430165, 8.549963], [47.360748, 8.550158], [47.406511, 8.583747], [47.375137, 8.523047], [47.402981, 8.576848], [47.359159, 8.563707], [47.375804, 8.521021], [47.381158, 8.491597], [47.354802, 8.558532], [47.3729, 8.535117], [47.369994, 8.519963], [47.361345, 8.554486], [47.375401, 8.547312], [47.378266, 8.481197], [47.415416, 8.518301], [47.375204, 8.528332], [47.376948, 8.535174], [47.382468, 8.529685], [47.377654, 8.537506], [47.372437, 8.517391], [47.360131, 8.547921], [47.329792, 8.532643], [47.374395, 8.521601], [47.365898, 8.538402], [47.364915, 8.505058], [47.361027, 8.571398], [47.364015, 8.549008], [47.376592, 8.534677], [47.360517, 8.535749], [47.371539, 8.51924], [47.409319, 8.558817], [47.357952, 8.529223], [47.366183, 8.540579], [47.404592, 8.557406], [47.342744, 8.530831], [47.365098, 8.55328], [47.414015, 8.546658], [47.399028, 8.506629], [47.37025, 8.548846], [47.376767, 8.559602], [47.388581, 8.520592], [47.376964, 8.526765], [47.418131, 8.512684], [47.389662, 8.521316], [47.378181, 8.543582], [47.385145, 8.508019], [47.389218, 8.527453], [47.376048, 8.529501], [47.362195, 8.547513], [47.417904, 8.50319], [47.375074, 8.485054], [47.35606, 8.522857], [47.361381, 8.602728], [47.378293, 8.526051], [47.39793, 8.533579], [47.400055, 8.493746], [47.388308, 8.536202], [47.353497, 8.558623], [47.36927, 8.564622], [47.376623, 8.511318], [47.393489, 8.524732], [47.407816, 8.546794], [47.352285, 8.507069], [47.358619, 8.553608], [47.386516, 8.547715], [47.408742, 8.483066], [47.375493, 8.524458], [47.405431, 8.539404], [47.413746, 8.545592], [47.408099, 8.54725], [47.413257, 8.516481], [47.365307, 8.56426], [47.395614, 8.522589], [47.37759, 8.522342], [47.376028, 8.510511], [47.352738, 8.525133], [47.421119, 8.549695], [47.383304, 8.549568], [47.412722, 8.546352], [47.380394, 8.501329], [47.35505, 8.558034], [47.370085, 8.529366], [47.34485, 8.533535], [47.397914, 8.474852], [47.390441, 8.539796], [47.405825, 8.561022], [47.377665, 8.513405], [47.364907, 8.512777], [47.384454, 8.531858], [47.377542, 8.574146], [47.351369, 8.600974], [47.419882, 8.504264], [47.396024, 8.526863], [47.367381, 8.544126], [47.380448, 8.527446], [47.369919, 8.513487], [47.374732, 8.55801], [47.400565, 8.548789], [47.369588, 8.46686], [47.386121, 8.526793], [47.395057, 8.515822], [47.328048, 8.529631], [47.393609, 8.489353], [47.375093, 8.52298], [47.422053, 8.502929], [47.368006, 8.564224], [47.403119, 8.580229], [47.376504, 8.5164], [47.325296, 8.514255], [47.41484, 8.551538], [47.370138, 8.540899], [47.363443, 8.575421], [47.373023, 8.534511], [47.368661, 8.543901], [47.379399, 8.559936], [47.360629, 8.529583], [47.412254, 8.51499], [47.362473, 8.53526], [47.400771, 8.548846], [47.364537, 8.533012], [47.373345, 8.503903], [47.394148, 8.525487], [47.398492, 8.526529], [47.410304, 8.548078], [47.385541, 8.485392], [47.36158, 8.547792], [47.375496, 8.486069], [47.431038, 8.549888], [47.374546, 8.538885], [47.377652, 8.508028], [47.402974, 8.494214], [47.387646, 8.544229], [47.363455, 8.535135], [47.376156, 8.541779], [47.394709, 8.545011], [47.364007, 8.556395], [47.387553, 8.527551], [47.38318, 8.53999], [47.397929, 8.480178], [47.369643, 8.536189], [47.369282, 8.491812], [47.400791, 8.548582], [47.405233, 8.504872], [47.363762, 8.564016], [47.3702, 8.53624], [47.37559, 8.536973], [47.416481, 8.511153], [47.368312, 8.560431], [47.373248, 8.538276], [47.400956, 8.534171], [47.370224, 8.548806], [47.370197, 8.548792], [47.368524, 8.53083], [47.377722, 8.52841], [47.342966, 8.535918], [47.385391, 8.536434], [47.409112, 8.558799], [47.375881, 8.577514], [47.386565, 8.50324], [47.410829, 8.553389], [47.387639, 8.521248], [47.365106, 8.536519], [47.373174, 8.503899], [47.370358, 8.548888], [47.408897, 8.54569], [47.395767, 8.53115], [47.3615, 8.549551], [47.412175, 8.546209], [47.384499, 8.531886], [47.375387, 8.518497], [47.389607, 8.511818], [47.362381, 8.504796], [47.38432, 8.526995], [47.335857, 8.532371], [47.383062, 8.483966], [47.391616, 8.51917], [47.367359, 8.480772], [47.408319, 8.525988], [47.415276, 8.51411], [47.379143, 8.530306], [47.404546, 8.548157], [47.371211, 8.520583], [47.40485, 8.548375], [47.369724, 8.490683], [47.378638, 8.541896], [47.366522, 8.540851], [47.425327, 8.547967], [47.37733, 8.549749], [47.41594, 8.512322], [47.381504, 8.513561], [47.393489, 8.524732], [47.414536, 8.546695], [47.372725, 8.534584], [47.378574, 8.547563], [47.377541, 8.505404], [47.417533, 8.55402], [47.38975, 8.549054], [47.357465, 8.521774], [47.411145, 8.570847], [47.378731, 8.542468], [47.369406, 8.534582], [47.378886, 8.551635], [47.414082, 8.518671], [47.367978, 8.535334], [47.378463, 8.509805], [47.375548, 8.524326], [47.365071, 8.553333], [47.402062, 8.497574], [47.364234, 8.536435], [47.404741, 8.57621], [47.410307, 8.542128], [47.364471, 8.56791], [47.37262, 8.528663], [47.379464, 8.529664], [47.405038, 8.491751], [47.399573, 8.495326], [47.385842, 8.548575], [47.369089, 8.52528], [47.373352, 8.553678], [47.383406, 8.533227], [47.375195, 8.527378], [47.40769, 8.489962], [47.405187, 8.481287], [47.359319, 8.521639], [47.365117, 8.553214], [47.391261, 8.487399], [47.359839, 8.50824], [47.409855, 8.549884], [47.370334, 8.48892], [47.359578, 8.593343], [47.370179, 8.548792], [47.378503, 8.525764], [47.389187, 8.488974], [47.388478, 8.488828], [47.417296, 8.523097], [47.42079, 8.502347], [47.410817, 8.561114], [47.375431, 8.528124], [47.406593, 8.576329], [47.387131, 8.518814], [47.372073, 8.473608], [47.406907, 8.550564], [47.376239, 8.567616], [47.373573, 8.534403], [47.373319, 8.534636], [47.378671, 8.523132], [47.386749, 8.544899], [47.372053, 8.529565], [47.418009, 8.505525], [47.403878, 8.485819], [47.366682, 8.535386], [47.366918, 8.54556], [47.402096, 8.498728], [47.358083, 8.518173], [47.381484, 8.533016], [47.391105, 8.522908], [47.379077, 8.51052], [47.395387, 8.527658], [47.364388, 8.555172], [47.390141, 8.51049], [47.395842, 8.519441], [47.378501, 8.540212], [47.389593, 8.541951], [47.363239, 8.535157], [47.392238, 8.523819], [47.427529, 8.546303], [47.37091, 8.518181], [47.381119, 8.536319], [47.370508, 8.515975], [47.365185, 8.549853], [47.367353, 8.522425], [47.38341, 8.539492], [47.397383, 8.486831], [47.398774, 8.54226], [47.404206, 8.573933], [47.384871, 8.531496], [47.375666, 8.516529], [47.37348, 8.519398], [47.421821, 8.502712], [47.391944, 8.517852], [47.410835, 8.542378], [47.387174, 8.519027], [47.377113, 8.527179], [47.409807, 8.549286], [47.369605, 8.525874], [47.374395, 8.521641], [47.363947, 8.551442], [47.382852, 8.530051], [47.361522, 8.526516], [47.360568, 8.528496], [47.417928, 8.503535], [47.387616, 8.486625], [47.368636, 8.547369], [47.363975, 8.531558], [47.429458, 8.544858], [47.377362, 8.538837], [47.359834, 8.521359], [47.385088, 8.532308], [47.368549, 8.55081], [47.373698, 8.528738], [47.371469, 8.534227], [47.398103, 8.541849], [47.420585, 8.507061], [47.364101, 8.54758], [47.372665, 8.529551], [47.40689, 8.550431], [47.362126, 8.559268], [47.399062, 8.521387], [47.371389, 8.522706], [47.377637, 8.538313], [47.366903, 8.518576], [47.349189, 8.57787], [47.401729, 8.545501], [47.386343, 8.518493], [47.373113, 8.551435], [47.354623, 8.601244], [47.364596, 8.537144], [47.357159, 8.521781], [47.373779, 8.536327], [47.386593, 8.518604], [47.354514, 8.53417], [47.408741, 8.539379], [47.414461, 8.554499], [47.361363, 8.576621], [47.368872, 8.501218], [47.367865, 8.520555], [47.33252, 8.517973], [47.373798, 8.544723], [47.386782, 8.490397], [47.429977, 8.549853], [47.342008, 8.530618], [47.374821, 8.544015], [47.370743, 8.53878], [47.382227, 8.514198], [47.378101, 8.530205], [47.366105, 8.546867], [47.391646, 8.538881], [47.373339, 8.520044], [47.362465, 8.504506], [47.370063, 8.541163], [47.379792, 8.520625], [47.389878, 8.49214], [47.376881, 8.528882], [47.41709, 8.523039], [47.394276, 8.490266], [47.369071, 8.525307], [47.377769, 8.53768], [47.369852, 8.516796], [47.372566, 8.550272], [47.376166, 8.544507], [47.348403, 8.570931], [47.375307, 8.518362], [47.38151, 8.483539], [47.388926, 8.488982], [47.379464, 8.525929], [47.335332, 8.528906], [47.425815, 8.493938], [47.409598, 8.558796], [47.400983, 8.542624], [47.372847, 8.539737], [47.374015, 8.528479], [47.385143, 8.495464], [47.373971, 8.529339], [47.394389, 8.488666], [47.405831, 8.590609], [47.403199, 8.486296], [47.37442, 8.544643], [47.37029, 8.514236], [47.377078, 8.538434], [47.399303, 8.542417], [47.372149, 8.520324], [47.359919, 8.521916], [47.377317, 8.529355], [47.386444, 8.541065], [47.39873, 8.506755], [47.357215, 8.558265], [47.422272, 8.539102], [47.372422, 8.523812], [47.374779, 8.539976], [47.377337, 8.519609], [47.394287, 8.494916], [47.32803, 8.529657], [47.35931, 8.509116], [47.366909, 8.562295], [47.397332, 8.531195], [47.388752, 8.548026], [47.376946, 8.526765], [47.429949, 8.538718], [47.412096, 8.550659], [47.369161, 8.528221], [47.410908, 8.543267], [47.416947, 8.514303], [47.394223, 8.490146], [47.369878, 8.540762], [47.358711, 8.517417], [47.349164, 8.562927], [47.372908, 8.533316], [47.416647, 8.544141], [47.373016, 8.518012], [47.379954, 8.552849], [47.411828, 8.524973], [47.361853, 8.553053], [47.36966, 8.508437], [47.3736, 8.534403], [47.38794, 8.486658], [47.410928, 8.564442], [47.372034, 8.536384], [47.370288, 8.478075], [47.362274, 8.557894], [47.378144, 8.527571], [47.393169, 8.494245], [47.417877, 8.548156], [47.36833, 8.541776], [47.378265, 8.526196], [47.365933, 8.536589], [47.369547, 8.520576], [47.363514, 8.558993], [47.403859, 8.571766], [47.336141, 8.5337], [47.385164, 8.529012], [47.378778, 8.53941], [47.379035, 8.538912], [47.414233, 8.551035], [47.377403, 8.512552], [47.356867, 8.527004], [47.335088, 8.52996], [47.385656, 8.535962], [47.429232, 8.510641], [47.33598, 8.528854], [47.397923, 8.532439], [47.388059, 8.524383], [47.381523, 8.513482], [47.41874, 8.547273], [47.36508, 8.553333], [47.37746, 8.522789], [47.373406, 8.524402], [47.366648, 8.534247], [47.363473, 8.535135], [47.349982, 8.561157], [47.417567, 8.509479], [47.383711, 8.539048], [47.388992, 8.486745], [47.367354, 8.541292], [47.375541, 8.528828], [47.407854, 8.548411], [47.383052, 8.530744], [47.408986, 8.543876], [47.38266, 8.540774], [47.373029, 8.532895], [47.372748, 8.531247], [47.390352, 8.528284], [47.375701, 8.52907], [47.382318, 8.528464], [47.403198, 8.588538], [47.374236, 8.52418], [47.371471, 8.502276], [47.382556, 8.500961], [47.373925, 8.536145], [47.368868, 8.524918], [47.412218, 8.550158], [47.40064, 8.477846], [47.373278, 8.494606], [47.374062, 8.530255], [47.403625, 8.48588], [47.408015, 8.582679], [47.384241, 8.493843], [47.377721, 8.538063], [47.353616, 8.51198], [47.378265, 8.574731], [47.377013, 8.544326], [47.37069, 8.51664], [47.369334, 8.505822], [47.389478, 8.486662], [47.352416, 8.602453], [47.3893, 8.527295], [47.361263, 8.547997], [47.386417, 8.526839], [47.403961, 8.572337], [47.392226, 8.524163], [47.344281, 8.529976], [47.385839, 8.52998], [47.370005, 8.556613], [47.383336, 8.53308], [47.369769, 8.525665], [47.429368, 8.544869], [47.37041, 8.602091], [47.376685, 8.56891], [47.369241, 8.534883], [47.370161, 8.548791], [47.36442, 8.53677], [47.407153, 8.551152], [47.39213, 8.523896], [47.370952, 8.523306], [47.376567, 8.518256], [47.361094, 8.549688], [47.394147, 8.5275], [47.390184, 8.491179], [47.412375, 8.524163], [47.408625, 8.580069], [47.332121, 8.52986], [47.340739, 8.528871], [47.373238, 8.535495], [47.371599, 8.522405], [47.375621, 8.524182], [47.405291, 8.585231], [47.415647, 8.507996], [47.389667, 8.512097], [47.364361, 8.529672], [47.390318, 8.52521], [47.372247, 8.520459], [47.363802, 8.547746], [47.410441, 8.546], [47.378318, 8.509882], [47.388387, 8.536376], [47.379498, 8.527996], [47.378032, 8.526085], [47.369495, 8.536583], [47.383746, 8.512348], [47.378743, 8.527901], [47.369347, 8.534197], [47.361737, 8.547385], [47.378564, 8.542067], [47.421177, 8.546383], [47.376842, 8.528259], [47.369776, 8.515364], [47.364425, 8.546567], [47.374657, 8.494223], [47.392197, 8.517698], [47.340009, 8.529955], [47.420823, 8.501725], [47.361918, 8.576911], [47.406743, 8.481291], [47.352685, 8.524959], [47.38232, 8.549084], [47.387344, 8.52201], [47.371971, 8.493852], [47.39424, 8.490186], [47.373233, 8.535124], [47.40402, 8.571848], [47.386717, 8.541706], [47.398004, 8.532468], [47.386549, 8.520431], [47.395785, 8.526461], [47.3536, 8.554456], [47.412224, 8.55424], [47.413357, 8.53925], [47.381237, 8.582568], [47.401995, 8.497957], [47.414237, 8.518423], [47.379213, 8.543842], [47.40897, 8.546526], [47.3823, 8.509234], [47.370418, 8.509233], [47.370243, 8.526006], [47.378031, 8.528098], [47.3348, 8.529994], [47.393417, 8.524717], [47.410571, 8.550243], [47.418209, 8.542584], [47.371782, 8.488009], [47.397358, 8.531275], [47.376417, 8.525628], [47.383329, 8.484316], [47.378866, 8.546245], [47.413632, 8.562114], [47.387283, 8.545506], [47.379572, 8.507537], [47.383503, 8.530594], [47.350075, 8.560815], [47.370469, 8.545752], [47.399778, 8.544494], [47.391051, 8.484785], [47.375924, 8.487508], [47.367603, 8.55659], [47.378014, 8.483192], [47.370508, 8.524581], [47.387366, 8.518726], [47.360619, 8.535407], [47.395773, 8.534396], [47.375811, 8.518346], [47.36997, 8.543398], [47.402578, 8.582112], [47.356601, 8.523663], [47.367575, 8.523727], [47.413765, 8.540782], [47.377339, 8.539459], [47.373284, 8.552392], [47.378605, 8.505134], [47.368051, 8.564172], [47.391956, 8.545086], [47.377703, 8.528555], [47.389217, 8.515108], [47.398373, 8.541841], [47.393385, 8.537632], [47.362429, 8.547465], [47.424299, 8.511019], [47.413803, 8.514796], [47.393675, 8.528882], [47.411203, 8.546241], [47.389254, 8.5274], [47.390107, 8.539008], [47.38038, 8.534609], [47.377743, 8.511791], [47.393741, 8.510324], [47.399637, 8.520419], [47.370129, 8.56423], [47.368483, 8.546492], [47.401971, 8.486762], [47.374714, 8.545801], [47.410372, 8.541931], [47.383416, 8.529387], [47.374413, 8.521642], [47.399186, 8.521523], [47.398004, 8.532481], [47.402409, 8.535565], [47.383237, 8.506153], [47.410321, 8.544461], [47.413843, 8.547661], [47.396462, 8.543272], [47.372431, 8.523813], [47.348998, 8.575285], [47.394267, 8.49024], [47.386243, 8.518518], [47.378661, 8.569217], [47.388246, 8.519817], [47.375665, 8.496203], [47.378626, 8.509703], [47.366048, 8.520598], [47.37777, 8.507911], [47.403499, 8.485931], [47.373226, 8.529165], [47.370103, 8.561276], [47.360101, 8.594956], [47.369847, 8.508692], [47.379506, 8.526181], [47.425732, 8.542289], [47.369005, 8.538003], [47.370959, 8.537778], [47.337533, 8.530169], [47.368275, 8.540954], [47.428667, 8.488918], [47.409021, 8.547693], [47.414143, 8.551113], [47.384507, 8.531992], [47.363341, 8.554554], [47.366143, 8.521063], [47.362795, 8.514455], [47.402686, 8.535717], [47.402632, 8.535729], [47.39554, 8.484754], [47.370352, 8.51433], [47.371456, 8.547865], [47.374633, 8.545839], [47.372677, 8.574042], [47.360687, 8.524447], [47.350333, 8.567597], [47.375804, 8.55222], [47.406729, 8.569799], [47.376852, 8.513759], [47.385562, 8.528769], [47.388874, 8.479829], [47.405678, 8.591533], [47.387868, 8.514127], [47.375085, 8.547451], [47.371786, 8.556571], [47.429499, 8.510925], [47.409046, 8.578488], [47.389686, 8.511991], [47.376925, 8.541358], [47.370466, 8.517549], [47.39974, 8.543777], [47.372247, 8.511759], [47.426015, 8.536184], [47.3912, 8.489226], [47.376602, 8.54878], [47.380648, 8.515703], [47.394137, 8.524692], [47.368316, 8.546992], [47.390401, 8.523092], [47.373671, 8.52879], [47.38573, 8.525262], [47.368761, 8.528663], [47.359616, 8.549062], [47.360524, 8.563087], [47.336325, 8.514186], [47.392639, 8.488221], [47.371531, 8.542928], [47.39133, 8.536238], [47.383726, 8.573761], [47.353927, 8.561558], [47.414009, 8.525481], [47.409335, 8.544122], [47.38322, 8.506007], [47.417081, 8.523026], [47.360106, 8.595353], [47.401738, 8.500469], [47.396594, 8.486563], [47.36647, 8.545365], [47.363868, 8.566931], [47.430401, 8.511646], [47.340392, 8.52942], [47.376944, 8.497949], [47.425835, 8.49362], [47.373951, 8.502538], [47.363324, 8.533782], [47.374714, 8.514365], [47.403447, 8.58437], [47.398294, 8.536991], [47.39394, 8.526556], [47.38324, 8.531794], [47.358132, 8.532073], [47.361253, 8.562983], [47.372792, 8.520801], [47.396208, 8.527383], [47.371999, 8.522003], [47.350121, 8.577308], [47.367682, 8.539061], [47.409482, 8.538136], [47.38216, 8.540433], [47.35521, 8.55449], [47.377675, 8.521973], [47.364266, 8.531206], [47.400166, 8.546237], [47.378593, 8.521925], [47.397237, 8.491054], [47.370289, 8.514395], [47.384412, 8.496787], [47.383004, 8.513843], [47.421026, 8.5021], [47.396797, 8.529793], [47.369793, 8.524116], [47.410579, 8.569828], [47.366538, 8.54767], [47.383155, 8.530295], [47.355846, 8.532159], [47.367174, 8.546968], [47.385472, 8.536462], [47.343361, 8.523578], [47.343692, 8.535231], [47.377003, 8.53977], [47.359879, 8.580164], [47.374822, 8.531648], [47.364552, 8.521865], [47.376334, 8.521019], [47.405705, 8.591507], [47.410486, 8.542185], [47.378054, 8.543698], [47.360524, 8.5631], [47.367927, 8.519736], [47.374828, 8.562912], [47.3909, 8.521751], [47.427032, 8.546544], [47.390854, 8.538904], [47.390006, 8.522051], [47.378057, 8.510896], [47.376299, 8.53524], [47.359706, 8.55093], [47.386481, 8.503556], [47.388035, 8.493971], [47.376649, 8.497705], [47.369188, 8.54799], [47.40535, 8.572857], [47.364335, 8.567947], [47.365843, 8.50787], [47.38394, 8.527199], [47.371423, 8.517225], [47.384518, 8.502868], [47.384534, 8.509835], [47.365899, 8.54677], [47.376699, 8.543366], [47.364807, 8.524399], [47.3806, 8.514073], [47.359468, 8.535423], [47.371033, 8.523241], [47.388163, 8.52004], [47.387779, 8.517873], [47.36285, 8.516257], [47.38848, 8.531292], [47.403636, 8.548363], [47.360511, 8.597123], [47.424584, 8.53532], [47.417928, 8.503535], [47.405896, 8.573107], [47.388591, 8.534791], [47.385156, 8.500907], [47.373802, 8.489412], [47.386001, 8.498116], [47.37077, 8.536887], [47.346327, 8.564296], [47.384966, 8.508877], [47.416683, 8.514642], [47.348288, 8.562432], [47.405945, 8.561647], [47.379269, 8.527488], [47.370748, 8.508472], [47.398519, 8.591458], [47.378897, 8.526911], [47.378275, 8.526077], [47.387926, 8.485214], [47.405275, 8.570444], [47.390491, 8.527916], [47.374067, 8.544781], [47.367817, 8.5605], [47.415181, 8.514639], [47.42576, 8.547817], [47.368042, 8.55399], [47.378855, 8.542682], [47.392487, 8.491105], [47.405098, 8.564597], [47.364542, 8.555043], [47.379586, 8.525362], [47.390991, 8.523542], [47.390391, 8.533676], [47.406338, 8.573011], [47.387575, 8.537591], [47.423084, 8.498403], [47.372381, 8.535755], [47.370147, 8.5409], [47.419817, 8.504501], [47.374272, 8.524115], [47.361894, 8.569219], [47.40208, 8.579743], [47.370547, 8.517551], [47.349446, 8.527911], [47.370994, 8.548226], [47.388238, 8.55191], [47.395216, 8.53241], [47.37467, 8.549521], [47.39103, 8.505846], [47.353412, 8.528958], [47.340415, 8.537387], [47.408645, 8.537151], [47.38328, 8.539926], [47.36853, 8.533994], [47.401292, 8.545187], [47.385859, 8.532589], [47.39998, 8.545929], [47.371428, 8.546077], [47.383577, 8.5734], [47.404646, 8.55742], [47.328508, 8.529548], [47.393529, 8.512744], [47.389079, 8.538298], [47.383595, 8.529457], [47.363342, 8.567409], [47.384528, 8.542959], [47.370326, 8.509417], [47.37067, 8.536951], [47.376995, 8.544299], [47.373211, 8.52024], [47.378174, 8.509892], [47.377063, 8.541903], [47.382156, 8.529467], [47.428076, 8.545532], [47.377026, 8.548577], [47.365072, 8.502652], [47.387233, 8.48822], [47.383536, 8.587465], [47.364286, 8.546127], [47.372937, 8.536018], [47.406206, 8.570888], [47.40916, 8.572302], [47.383223, 8.54023], [47.375215, 8.51852], [47.400338, 8.533907], [47.377155, 8.523684], [47.360004, 8.535779], [47.371953, 8.601595], [47.370335, 8.509377], [47.370161, 8.548791], [47.41571, 8.51286], [47.391932, 8.518103], [47.378445, 8.541376], [47.410274, 8.548422], [47.412179, 8.554226], [47.390932, 8.522097], [47.405213, 8.557432], [47.367102, 8.544133], [47.364413, 8.600954], [47.401456, 8.581889], [47.361466, 8.503546], [47.416794, 8.556019], [47.379931, 8.558], [47.385682, 8.536095], [47.406916, 8.550538], [47.426332, 8.554694], [47.369818, 8.533875], [47.366451, 8.537924], [47.37773, 8.537997], [47.372974, 8.533066], [47.387742, 8.486707], [47.366663, 8.549592], [47.368908, 8.530242], [47.382299, 8.530437], [47.376207, 8.525916], [47.36684, 8.543307], [47.366192, 8.540566], [47.371823, 8.533969], [47.356549, 8.519598], [47.412157, 8.546235], [47.362403, 8.547372], [47.383412, 8.574615], [47.37706, 8.510731], [47.37301, 8.504134], [47.390056, 8.509985], [47.358355, 8.586022], [47.429936, 8.486862], [47.422247, 8.538969], [47.422256, 8.538956], [47.364539, 8.546887], [47.373714, 8.545012], [47.368762, 8.543638], [47.378324, 8.530382], [47.354499, 8.523434], [47.403817, 8.503267], [47.365989, 8.533532], [47.370705, 8.535204], [47.378014, 8.536507], [47.383896, 8.540403], [47.402453, 8.553505], [47.374096, 8.553005], [47.386957, 8.498744], [47.372647, 8.52093], [47.381371, 8.571738], [47.379399, 8.542203], [47.377739, 8.531429], [47.376751, 8.536878], [47.4091, 8.545124], [47.419462, 8.507913], [47.414449, 8.545474], [47.360242, 8.552225], [47.380438, 8.542728], [47.364717, 8.566657], [47.385528, 8.530476], [47.384999, 8.53224], [47.421861, 8.545456], [47.374482, 8.495702], [47.366936, 8.53616], [47.366408, 8.540558], [47.363319, 8.564205], [47.396468, 8.520765], [47.390728, 8.523695], [47.379242, 8.537923], [47.377957, 8.548146], [47.369507, 8.505614], [47.384808, 8.509377], [47.368346, 8.497858], [47.38624, 8.504306], [47.370553, 8.549184], [47.335938, 8.526683], [47.400456, 8.54884], [47.349579, 8.564709], [47.404628, 8.594889], [47.376918, 8.538285], [47.382148, 8.541638], [47.395637, 8.491949], [47.390396, 8.539808], [47.40939, 8.543037], [47.410891, 8.562785], [47.378456, 8.51444], [47.373751, 8.493], [47.37386, 8.517208], [47.370714, 8.538899], [47.372381, 8.554571], [47.378459, 8.510269], [47.402142, 8.535282], [47.39096, 8.526813], [47.358972, 8.516417], [47.373817, 8.527615], [47.399714, 8.497594], [47.397145, 8.530979], [47.408933, 8.545677], [47.36729, 8.544283], [47.409205, 8.5473], [47.378577, 8.540743], [47.363896, 8.592377], [47.369716, 8.490669], [47.378018, 8.526575], [47.365964, 8.532326], [47.419844, 8.507417], [47.37924, 8.495691], [47.387351, 8.52707], [47.364061, 8.592089], [47.387476, 8.51943], [47.387141, 8.486457], [47.424766, 8.548339], [47.360044, 8.526751], [47.429114, 8.489139], [47.377105, 8.539388], [47.380954, 8.526171], [47.398926, 8.506004], [47.341756, 8.530732], [47.368858, 8.523118], [47.370398, 8.514264], [47.378202, 8.541384], [47.357173, 8.595409], [47.392157, 8.476873], [47.379214, 8.528586], [47.378319, 8.509789], [47.38497, 8.548451], [47.377596, 8.508225], [47.411019, 8.544846], [47.378749, 8.542481], [47.39049, 8.479158], [47.384877, 8.495127], [47.370636, 8.470455], [47.37427, 8.5234], [47.358972, 8.506766], [47.367327, 8.545118], [47.343216, 8.530365], [47.373354, 8.49417], [47.398354, 8.53731], [47.375892, 8.538317], [47.367004, 8.536492], [47.403901, 8.548859], [47.367651, 8.49517], [47.397356, 8.531527], [47.393417, 8.524717], [47.403559, 8.571097], [47.344251, 8.527474], [47.369686, 8.508583], [47.374099, 8.561122], [47.405919, 8.566218], [47.364287, 8.536529], [47.367919, 8.55371], [47.395751, 8.507861], [47.377278, 8.522984], [47.394169, 8.52509], [47.37212, 8.518589], [47.386881, 8.5022], [47.37026, 8.531766], [47.377603, 8.525772], [47.387213, 8.488432], [47.377936, 8.532426], [47.393361, 8.547712], [47.412664, 8.514482], [47.378837, 8.518858], [47.373787, 8.538393], [47.375937, 8.521169], [47.386736, 8.490528], [47.373911, 8.519447], [47.344633, 8.529891], [47.37614, 8.538706], [47.389507, 8.487417], [47.363626, 8.535098], [47.364482, 8.536917], [47.357993, 8.505635], [47.338881, 8.527404], [47.372527, 8.517472], [47.388148, 8.540636], [47.370713, 8.535218], [47.370549, 8.535439], [47.369002, 8.532574], [47.421699, 8.550118], [47.347104, 8.5283], [47.382557, 8.529793], [47.408682, 8.579792], [47.374624, 8.532623], [47.373761, 8.53634], [47.353469, 8.576175], [47.374435, 8.540167], [47.391819, 8.574053], [47.386666, 8.546062], [47.378855, 8.542709], [47.384332, 8.548385], [47.362231, 8.547435], [47.36877, 8.540898], [47.41484, 8.545018], [47.389833, 8.51165], [47.381183, 8.543763], [47.376978, 8.498135], [47.406243, 8.55597], [47.378412, 8.520081], [47.372053, 8.537232], [47.369635, 8.539817], [47.388878, 8.51575], [47.392091, 8.511642], [47.392832, 8.522917], [47.369285, 8.491482], [47.37818, 8.541728], [47.412081, 8.546644], [47.417609, 8.546096], [47.40278, 8.576234], [47.409805, 8.540992], [47.405668, 8.588035], [47.378378, 8.525616], [47.382068, 8.544325], [47.369796, 8.541859], [47.344059, 8.52878], [47.364596, 8.566165], [47.344744, 8.533321], [47.408925, 8.579757], [47.370283, 8.602194], [47.365895, 8.532047], [47.393312, 8.473491], [47.393815, 8.493397], [47.364023, 8.531241], [47.364749, 8.525775], [47.392081, 8.512728], [47.422874, 8.49877], [47.378801, 8.542668], [47.381197, 8.534811], [47.373241, 8.484833], [47.406481, 8.549999], [47.3916, 8.480796], [47.404533, 8.571806], [47.403096, 8.575274], [47.366924, 8.514459], [47.379623, 8.537586], [47.398285, 8.536978], [47.372149, 8.520324], [47.367761, 8.545776], [47.401981, 8.538895], [47.3846, 8.531649], [47.3966, 8.545726], [47.410619, 8.549953], [47.381775, 8.516388], [47.366156, 8.526293], [47.366914, 8.54413], [47.376184, 8.528458], [47.36231, 8.567189], [47.390734, 8.489057], [47.365575, 8.561671], [47.403538, 8.548242], [47.382422, 8.500919], [47.407194, 8.549722], [47.377318, 8.526481], [47.37495, 8.545594], [47.36771, 8.509245], [47.369915, 8.511077], [47.350357, 8.578014], [47.413065, 8.545326], [47.35493, 8.510961], [47.387236, 8.519094], [47.410152, 8.566626], [47.373359, 8.537033], [47.426861, 8.542697], [47.382262, 8.531522], [47.360467, 8.550337], [47.342321, 8.509781], [47.383298, 8.530418], [47.396843, 8.529675], [47.345158, 8.531423], [47.36035, 8.552201], [47.384417, 8.53195], [47.421311, 8.50738], [47.329541, 8.514327], [47.374156, 8.519266], [47.391123, 8.522842], [47.379094, 8.525074], [47.371054, 8.523877], [47.37371, 8.537014], [47.430654, 8.550583], [47.365506, 8.51218], [47.427013, 8.491775], [47.384403, 8.548466], [47.431336, 8.516476], [47.36465, 8.566073], [47.414264, 8.554389], [47.377767, 8.528424], [47.335554, 8.516751], [47.329934, 8.512694], [47.362144, 8.549988], [47.334018, 8.529925], [47.384417, 8.574849], [47.393415, 8.4998], [47.382683, 8.530789], [47.352951, 8.558334], [47.387612, 8.521261], [47.366673, 8.54198], [47.375012, 8.545675], [47.391603, 8.492399], [47.405866, 8.590729], [47.390301, 8.487168], [47.385956, 8.535651], [47.38545, 8.533071], [47.388821, 8.522742], [47.427486, 8.543227], [47.37853, 8.545576], [47.370823, 8.55573], [47.370922, 8.531263], [47.40921, 8.544954], [47.369896, 8.55673], [47.370315, 8.517308], [47.410486, 8.545948], [47.37323, 8.520187], [47.408395, 8.537001], [47.42392, 8.504411], [47.369239, 8.525588], [47.374862, 8.518804], [47.357231, 8.524628], [47.369926, 8.551713], [47.384845, 8.534211], [47.356089, 8.532177], [47.401722, 8.500297], [47.387126, 8.546006], [47.356367, 8.555732], [47.385839, 8.529993], [47.421058, 8.549481], [47.393458, 8.545064], [47.419166, 8.507841], [47.372926, 8.53623], [47.366346, 8.522431], [47.36242, 8.5333], [47.373041, 8.534471], [47.36707, 8.545669], [47.380258, 8.527548], [47.387135, 8.519331], [47.397034, 8.530355], [47.367435, 8.494146], [47.377189, 8.540039], [47.383262, 8.51022], [47.384524, 8.530098], [47.36257, 8.548713], [47.383252, 8.515159], [47.383266, 8.555435], [47.345143, 8.534904], [47.360316, 8.523712], [47.377122, 8.529139], [47.373348, 8.531485], [47.384935, 8.511286], [47.358265, 8.586033], [47.382351, 8.514386], [47.39777, 8.474849], [47.376588, 8.544555], [47.328692, 8.517591], [47.376907, 8.540377], [47.40722, 8.550717], [47.364865, 8.5085], [47.351268, 8.532171], [47.385192, 8.500895], [47.360005, 8.580206], [47.410948, 8.550384], [47.377368, 8.500712], [47.427285, 8.546417], [47.365123, 8.537605], [47.370286, 8.548847], [47.371906, 8.601766], [47.405917, 8.481102], [47.388871, 8.515472], [47.422529, 8.550771], [47.407267, 8.585565], [47.365628, 8.551557], [47.353073, 8.518137], [47.337483, 8.528845], [47.412675, 8.546643], [47.373056, 8.504043], [47.387809, 8.527119], [47.40347, 8.516522], [47.372676, 8.529392], [47.3787, 8.541977], [47.378352, 8.53029], [47.364484, 8.555452], [47.379544, 8.537439], [47.393417, 8.524717], [47.398309, 8.532514], [47.402157, 8.488143], [47.418291, 8.5435], [47.364993, 8.553066], [47.407102, 8.582183], [47.379682, 8.524689], [47.420123, 8.547567], [47.372027, 8.54932], [47.365256, 8.555614], [47.414252, 8.527315], [47.386216, 8.518531], [47.418845, 8.507463], [47.369926, 8.529098], [47.400431, 8.543924], [47.356625, 8.572681], [47.384453, 8.531925], [47.365286, 8.564551], [47.37759, 8.522368], [47.388357, 8.480322], [47.398341, 8.537668], [47.388731, 8.525641], [47.374486, 8.540486], [47.379989, 8.512087], [47.374314, 8.537781], [47.364577, 8.566217], [47.402578, 8.495187], [47.358046, 8.523109], [47.403249, 8.587082], [47.363635, 8.535138], [47.373911, 8.52616], [47.410439, 8.572197], [47.374076, 8.524879], [47.409973, 8.563693], [47.376753, 8.543274], [47.410424, 8.542117], [47.377052, 8.544009], [47.365126, 8.553241], [47.370316, 8.529728], [47.408782, 8.544548], [47.376381, 8.494614], [47.384027, 8.532287], [47.364619, 8.554501], [47.386123, 8.548316], [47.410567, 8.486109], [47.413732, 8.546069], [47.357936, 8.572021], [47.363423, 8.53377], [47.416753, 8.573166], [47.403989, 8.563912], [47.41753, 8.52505], [47.381379, 8.528815], [47.390053, 8.525721], [47.373752, 8.538233], [47.369005, 8.537976], [47.381237, 8.54101], [47.396983, 8.480331], [47.413917, 8.542813], [47.358787, 8.590585], [47.389393, 8.52992], [47.367682, 8.541789], [47.353978, 8.575669], [47.404065, 8.563529], [47.391885, 8.538409], [47.37865, 8.542492], [47.412188, 8.550476], [47.409025, 8.546382], [47.426306, 8.554641], [47.390773, 8.537048], [47.388936, 8.519115], [47.3674, 8.494092], [47.369249, 8.541675], [47.381609, 8.510028], [47.377602, 8.498757], [47.37763, 8.498665], [47.359547, 8.535557], [47.422513, 8.540261], [47.360108, 8.52286], [47.387844, 8.490325], [47.373636, 8.542839], [47.371058, 8.548148], [47.364955, 8.54765], [47.414067, 8.514417], [47.414319, 8.551474], [47.369727, 8.509034], [47.421678, 8.550462], [47.381407, 8.54198], [47.385188, 8.494537], [47.411601, 8.526161], [47.351165, 8.563445], [47.397904, 8.532532], [47.369089, 8.52532], [47.393951, 8.49328], [47.417917, 8.483073], [47.383628, 8.574593], [47.421077, 8.548448], [47.404515, 8.571806], [47.378776, 8.542455], [47.382826, 8.530885], [47.358397, 8.534541], [47.398581, 8.500446], [47.373212, 8.535468], [47.395376, 8.525883], [47.393999, 8.542122], [47.369668, 8.533515], [47.405879, 8.537691], [47.383778, 8.54048], [47.391838, 8.484297], [47.392677, 8.523139], [47.36768, 8.539194], [47.380202, 8.542948], [47.369443, 8.505626], [47.370165, 8.529473], [47.384476, 8.528534], [47.388988, 8.515474], [47.366756, 8.535216], [47.371705, 8.524566], [47.367338, 8.537359], [47.382414, 8.514414], [47.424971, 8.553128], [47.36669, 8.549646], [47.37777, 8.507911], [47.35123, 8.568794], [47.403907, 8.558451], [47.405254, 8.490788], [47.410575, 8.552602], [47.396367, 8.479882], [47.358262, 8.585424], [47.364446, 8.536929], [47.405825, 8.591218], [47.36523, 8.532047], [47.384674, 8.492713], [47.402091, 8.499231], [47.414458, 8.556619], [47.388624, 8.484658], [47.398891, 8.59022], [47.371877, 8.520584], [47.337187, 8.519139], [47.427993, 8.545702], [47.374449, 8.541598], [47.374919, 8.541356], [47.388772, 8.514569], [47.361609, 8.561534], [47.405389, 8.480814], [47.394181, 8.518083], [47.379255, 8.546041], [47.378531, 8.5752], [47.390455, 8.479144], [47.401823, 8.581208], [47.377033, 8.529044], [47.396686, 8.493295], [47.394756, 8.529698], [47.372829, 8.531289], [47.376292, 8.552905], [47.372844, 8.504647], [47.38388, 8.487055], [47.372461, 8.529242], [47.382862, 8.530885], [47.375364, 8.544596], [47.413762, 8.545831], [47.361951, 8.560575], [47.383191, 8.530349], [47.370197, 8.548792], [47.420861, 8.549318], [47.411145, 8.57086], [47.376047, 8.5277], [47.41494, 8.540157], [47.37819, 8.543582], [47.389423, 8.5209], [47.409196, 8.546359], [47.378655, 8.575375], [47.376303, 8.539584], [47.357913, 8.520022], [47.415108, 8.547118], [47.378647, 8.521887], [47.355839, 8.554529], [47.371937, 8.53519], [47.372432, 8.523773], [47.372835, 8.517213], [47.375009, 8.526103], [47.374686, 8.54776], [47.392477, 8.506908], [47.377304, 8.498963], [47.378565, 8.516177], [47.394164, 8.488661], [47.372615, 8.529139], [47.40959, 8.543717], [47.391359, 8.536901], [47.381588, 8.537176], [47.372856, 8.535964], [47.41038, 8.542024], [47.40638, 8.552037], [47.393507, 8.500517], [47.407771, 8.54772], [47.421564, 8.550155], [47.376517, 8.524584], [47.408607, 8.580135], [47.359711, 8.547634], [47.36844, 8.524513], [47.386797, 8.547482], [47.390661, 8.532741], [47.378832, 8.530948], [47.374022, 8.535365], [47.3995, 8.505181], [47.392182, 8.474078], [47.367137, 8.544253], [47.38807, 8.47119], [47.381977, 8.529291], [47.372755, 8.550289], [47.381588, 8.537163], [47.366214, 8.54863], [47.368574, 8.524608], [47.36694, 8.545163], [47.378566, 8.539988], [47.390975, 8.488201], [47.355874, 8.551883], [47.376633, 8.538968], [47.372043, 8.547652], [47.380785, 8.50478], [47.379065, 8.506944], [47.397413, 8.546273], [47.420785, 8.512698], [47.405901, 8.497704], [47.391059, 8.523013], [47.379547, 8.542696], [47.360904, 8.530978], [47.394689, 8.491295], [47.388293, 8.497314], [47.366633, 8.548082], [47.387578, 8.534452], [47.390889, 8.521923], [47.378849, 8.544258], [47.40649, 8.548104], [47.364685, 8.554185], [47.387324, 8.52801], [47.377921, 8.487494], [47.413885, 8.545171], [47.372325, 8.513059], [47.368778, 8.492915], [47.406838, 8.53612], [47.375247, 8.553069], [47.380494, 8.54808], [47.381583, 8.481395], [47.399406, 8.521077], [47.42154, 8.50105], [47.365921, 8.539766], [47.374577, 8.502021], [47.398228, 8.504665], [47.374714, 8.537353], [47.353067, 8.524557], [47.367364, 8.494012], [47.402058, 8.498952], [47.360777, 8.510893], [47.352572, 8.559345], [47.402158, 8.495934], [47.355992, 8.535762], [47.405989, 8.590149], [47.354403, 8.525921], [47.369155, 8.527864], [47.414917, 8.541627], [47.386913, 8.500611], [47.421353, 8.549686], [47.377322, 8.522177], [47.364164, 8.521936], [47.358267, 8.584021], [47.381193, 8.491637], [47.362684, 8.547153], [47.380243, 8.520475], [47.398744, 8.504212], [47.369878, 8.541675], [47.403538, 8.578807], [47.351892, 8.576525], [47.385715, 8.548639], [47.376049, 8.53407], [47.37302, 8.529081], [47.409789, 8.541693], [47.344094, 8.531693], [47.389169, 8.471039], [47.358788, 8.585025], [47.405126, 8.482094], [47.391756, 8.484494], [47.409789, 8.54172], [47.388533, 8.486709], [47.404458, 8.546088], [47.355736, 8.593379], [47.366962, 8.54568], [47.37828, 8.557529], [47.372706, 8.525222], [47.363523, 8.557179], [47.370088, 8.511809], [47.367951, 8.535333], [47.411031, 8.533119], [47.402138, 8.503962], [47.369455, 8.555781], [47.369699, 8.536905], [47.360032, 8.531874], [47.369091, 8.519322], [47.377954, 8.526693], [47.373898, 8.544645], [47.363482, 8.535135], [47.414438, 8.551238], [47.4145, 8.546681], [47.374388, 8.522396], [47.360259, 8.548598], [47.379962, 8.520721], [47.383268, 8.511518], [47.378666, 8.545525], [47.39373, 8.528737], [47.364819, 8.530767], [47.383074, 8.498495], [47.408685, 8.546189], [47.412877, 8.537663], [47.38139, 8.570705], [47.377169, 8.541164], [47.371953, 8.522082], [47.35132, 8.578829], [47.386345, 8.518202], [47.371521, 8.522099], [47.386954, 8.473328], [47.364771, 8.554544], [47.38824, 8.518585], [47.378852, 8.524976], [47.409531, 8.53762], [47.40411, 8.563503], [47.3938, 8.505822], [47.383699, 8.573721], [47.364548, 8.566429], [47.369503, 8.538582], [47.411568, 8.54666], [47.373113, 8.534526], [47.410601, 8.571233], [47.383805, 8.509926], [47.366503, 8.54473], [47.378803, 8.542496], [47.379075, 8.542289], [47.371722, 8.517866], [47.368863, 8.501284], [47.36694, 8.544143], [47.409357, 8.540876], [47.374511, 8.539745], [47.375214, 8.515818], [47.37514, 8.523656], [47.369062, 8.52532], [47.373355, 8.531697], [47.377558, 8.529558], [47.411581, 8.545255], [47.379355, 8.520232], [47.405613, 8.539169], [47.377656, 8.509498], [47.346538, 8.563811], [47.369409, 8.520004], [47.396253, 8.524457], [47.391019, 8.522469], [47.426728, 8.553841], [47.351769, 8.525761], [47.381231, 8.503226], [47.411567, 8.546752], [47.401717, 8.544918], [47.362372, 8.533683], [47.427277, 8.546297], [47.403478, 8.583894], [47.369014, 8.538003], [47.399348, 8.469355], [47.409425, 8.549742], [47.358902, 8.522015], [47.373017, 8.531359], [47.390959, 8.517368], [47.369795, 8.552279], [47.367853, 8.541819], [47.409187, 8.550095], [47.377729, 8.543798], [47.391664, 8.54263], [47.382083, 8.547464], [47.373433, 8.518682], [47.364913, 8.547332], [47.370166, 8.519794], [47.388807, 8.496145], [47.388485, 8.473145], [47.376823, 8.543514], [47.42385, 8.524476], [47.379642, 8.537481], [47.385493, 8.530449], [47.339652, 8.528717], [47.373374, 8.517304], [47.371135, 8.48887], [47.4021, 8.495296], [47.421018, 8.502086], [47.334818, 8.529968], [47.412342, 8.483786], [47.374324, 8.5225], [47.380645, 8.51218], [47.415375, 8.514033], [47.402048, 8.499018], [47.35967, 8.54905], [47.401777, 8.588521], [47.370791, 8.537497], [47.328494, 8.512811], [47.425871, 8.554049], [47.382418, 8.535975], [47.374385, 8.532248], [47.360412, 8.531643], [47.373555, 8.561495], [47.375242, 8.549811], [47.384306, 8.528504], [47.357065, 8.55519], [47.367655, 8.494706], [47.367281, 8.533916], [47.376889, 8.522288], [47.401137, 8.550947], [47.429426, 8.554746], [47.364103, 8.530316], [47.366639, 8.547407], [47.377102, 8.541626], [47.393724, 8.472638], [47.38825, 8.491101], [47.376762, 8.543301], [47.379645, 8.527694], [47.354352, 8.576061], [47.375519, 8.490545], [47.427467, 8.546169], [47.40925, 8.57147], [47.368973, 8.525185], [47.382717, 8.514698], [47.400879, 8.545974], [47.360729, 8.526619], [47.370263, 8.514288], [47.365162, 8.553228], [47.420388, 8.548937], [47.378544, 8.541285], [47.388583, 8.520353], [47.387146, 8.47296], [47.375649, 8.524103], [47.378618, 8.569084], [47.369769, 8.547499], [47.414152, 8.518805], [47.377318, 8.499347], [47.369777, 8.510372], [47.372298, 8.518844], [47.409929, 8.543127], [47.386715, 8.5476], [47.391321, 8.536238], [47.37642, 8.528184], [47.363261, 8.549852], [47.430383, 8.511592], [47.353682, 8.554365], [47.414244, 8.521497], [47.347262, 8.525815], [47.415777, 8.516254], [47.376098, 8.535607], [47.390612, 8.489611], [47.3835, 8.515668], [47.360317, 8.566816], [47.363224, 8.524353], [47.381633, 8.556831], [47.394757, 8.518108], [47.364319, 8.520841], [47.363716, 8.549253], [47.383867, 8.52925], [47.410159, 8.541648], [47.369348, 8.513052], [47.337313, 8.519168], [47.369475, 8.466408], [47.372349, 8.486908], [47.360851, 8.535611], [47.377896, 8.528056], [47.373829, 8.489347], [47.406391, 8.535846], [47.369418, 8.541838], [47.376526, 8.524598], [47.387062, 8.48623], [47.395149, 8.524275], [47.389701, 8.542854], [47.378536, 8.542119], [47.373327, 8.49417], [47.376244, 8.525837], [47.397239, 8.531538], [47.371362, 8.507319], [47.379102, 8.483253], [47.430963, 8.542729], [47.368021, 8.556135], [47.362064, 8.533888], [47.377538, 8.528869], [47.382852, 8.529044], [47.4014, 8.582074], [47.371025, 8.513522], [47.374688, 8.522945], [47.410576, 8.5422], [47.39923, 8.542574], [47.410569, 8.57265], [47.391702, 8.523516], [47.366549, 8.565054], [47.365739, 8.558629], [47.373582, 8.50355], [47.383602, 8.498797], [47.367915, 8.560608], [47.395261, 8.484749], [47.404425, 8.533567], [47.381881, 8.530018], [47.429168, 8.510759], [47.370488, 8.521959], [47.375376, 8.485405], [47.380614, 8.512563], [47.391186, 8.538103], [47.372629, 8.550339], [47.377709, 8.521219], [47.35967, 8.549103], [47.376592, 8.527102], [47.382785, 8.532354], [47.377264, 8.538769], [47.370363, 8.539011], [47.365569, 8.545518], [47.364102, 8.54746], [47.381785, 8.515276], [47.39224, 8.516944], [47.387681, 8.488467], [47.369512, 8.533869], [47.399562, 8.497459], [47.369899, 8.536644], [47.371784, 8.5428], [47.360955, 8.506329], [47.385417, 8.508687], [47.359479, 8.502448], [47.428845, 8.489133], [47.389764, 8.486853], [47.383788, 8.54044], [47.420867, 8.482058], [47.375243, 8.497121], [47.405423, 8.532646], [47.393435, 8.524717], [47.431319, 8.516423], [47.341408, 8.53038], [47.373151, 8.535255], [47.368221, 8.495697], [47.370772, 8.471292], [47.344034, 8.530421], [47.409791, 8.543469], [47.37908, 8.548262], [47.332574, 8.528546], [47.393202, 8.530422], [47.369725, 8.490669], [47.407556, 8.579052], [47.379353, 8.570198], [47.398489, 8.494841], [47.370185, 8.558418], [47.36957, 8.54192], [47.389801, 8.511292], [47.369072, 8.491173], [47.404092, 8.491003], [47.364191, 8.536302], [47.35478, 8.526061], [47.399095, 8.513916], [47.383747, 8.529579], [47.400175, 8.546237], [47.354237, 8.508048], [47.377972, 8.52476], [47.380956, 8.50379], [47.369292, 8.520028], [47.393354, 8.524782], [47.385671, 8.548545], [47.377966, 8.541525], [47.402017, 8.499521], [47.368973, 8.482313], [47.352518, 8.508212], [47.393244, 8.492909], [47.376994, 8.515854], [47.381844, 8.583998], [47.369106, 8.534033], [47.37069, 8.51668], [47.420682, 8.502358], [47.384302, 8.534623], [47.42516, 8.550362], [47.376796, 8.513943], [47.391248, 8.539098], [47.37069, 8.516733], [47.396631, 8.534003], [47.386225, 8.498213], [47.407332, 8.585328], [47.403567, 8.570342], [47.372013, 8.556351], [47.370377, 8.518448], [47.377779, 8.537628], [47.377931, 8.541511], [47.413905, 8.546867], [47.350485, 8.560307], [47.384687, 8.49613], [47.379286, 8.489706], [47.372945, 8.527557], [47.370179, 8.548779], [47.368492, 8.546532], [47.370161, 8.548791], [47.384048, 8.526234], [47.37017, 8.548792], [47.365099, 8.55324], [47.368661, 8.543901], [47.346416, 8.564391], [47.372464, 8.476158], [47.409473, 8.538043], [47.370067, 8.515012], [47.351851, 8.560455], [47.37414, 8.520987], [47.393691, 8.539532], [47.390931, 8.523183], [47.375938, 8.52877], [47.381373, 8.540907], [47.396276, 8.527756], [47.40259, 8.535476], [47.335342, 8.54108], [47.414452, 8.517486], [47.417162, 8.523014], [47.366544, 8.546095], [47.379588, 8.500915], [47.399024, 8.513796], [47.38337, 8.540869], [47.426437, 8.492757], [47.391969, 8.518011], [47.352221, 8.558504], [47.385878, 8.532457], [47.374527, 8.539971], [47.376957, 8.560427], [47.383071, 8.540174], [47.425808, 8.547552], [47.378274, 8.541346], [47.363689, 8.549252], [47.376427, 8.527483], [47.367719, 8.54641], [47.409012, 8.482037], [47.387095, 8.5188], [47.366358, 8.541113], [47.380421, 8.541602], [47.378878, 8.559885], [47.417634, 8.545394], [47.354808, 8.526829], [47.350951, 8.534242], [47.367029, 8.547124], [47.358937, 8.534459], [47.377593, 8.528698], [47.39237, 8.50782], [47.414906, 8.551208], [47.367512, 8.537919], [47.399704, 8.543763], [47.36643, 8.544821], [47.404441, 8.574733], [47.345475, 8.529259], [47.38875, 8.525562], [47.358125, 8.534694], [47.392508, 8.475833], [47.389037, 8.527528], [47.351766, 8.566436], [47.394235, 8.483854], [47.353815, 8.558312], [47.380529, 8.52648], [47.379441, 8.537861], [47.371539, 8.536334], [47.384562, 8.560958], [47.366656, 8.535293], [47.378217, 8.543569], [47.391152, 8.534115], [47.378952, 8.494798], [47.399856, 8.543859], [47.361854, 8.560388], [47.373398, 8.513782], [47.358219, 8.587939], [47.404938, 8.556035], [47.396923, 8.532551], [47.406899, 8.480976], [47.378972, 8.543585], [47.417215, 8.543133], [47.357674, 8.520547], [47.397228, 8.536532], [47.356237, 8.551586], [47.343986, 8.530777], [47.369745, 8.536826], [47.362224, 8.559389], [47.373316, 8.533047], [47.356702, 8.523466], [47.36361, 8.500293], [47.382148, 8.53695], [47.329764, 8.515496], [47.367772, 8.522791], [47.36913, 8.527638], [47.370757, 8.546659], [47.345984, 8.534445], [47.37818, 8.527518], [47.373655, 8.530432], [47.427067, 8.491709], [47.380212, 8.501564], [47.369903, 8.587184], [47.417278, 8.546832], [47.348559, 8.522758], [47.39643, 8.520976], [47.399703, 8.495858], [47.374512, 8.495425], [47.377566, 8.528711], [47.407226, 8.53222], [47.372864, 8.517042], [47.369171, 8.554451], [47.374187, 8.544453], [47.377054, 8.521947], [47.377468, 8.498675], [47.397719, 8.533058], [47.395598, 8.526258], [47.360332, 8.578969], [47.370163, 8.525845], [47.368614, 8.48322], [47.423495, 8.53535], [47.392253, 8.511646], [47.374113, 8.51712], [47.390207, 8.485683], [47.369014, 8.537977], [47.39319, 8.530713], [47.373078, 8.537279], [47.362454, 8.547704], [47.381179, 8.510774], [47.366757, 8.563112], [47.362534, 8.534613], [47.357529, 8.52159], [47.370317, 8.539049], [47.379203, 8.544861], [47.364004, 8.56692], [47.370523, 8.522026], [47.37043, 8.514689], [47.375802, 8.537428], [47.346596, 8.52874], [47.3773, 8.49838], [47.377257, 8.512774], [47.383066, 8.513937], [47.402188, 8.496504], [47.388187, 8.491166], [47.354352, 8.553016], [47.370621, 8.470018], [47.411047, 8.545682], [47.391497, 8.519472], [47.373573, 8.53435], [47.422154, 8.547768], [47.383215, 8.541051], [47.367749, 8.496204], [47.376554, 8.541522], [47.373485, 8.568657], [47.398564, 8.591472], [47.364642, 8.537105], [47.375115, 8.51575], [47.377769, 8.507951], [47.394707, 8.536758], [47.354886, 8.574775], [47.377003, 8.527388], [47.418907, 8.507557], [47.357294, 8.508268], [47.382802, 8.540049], [47.375825, 8.515897], [47.357241, 8.552878], [47.374877, 8.53435], [47.378422, 8.510295], [47.406672, 8.479183], [47.366738, 8.541769], [47.366644, 8.541304], [47.37344, 8.531354], [47.355659, 8.555545], [47.418538, 8.483006], [47.369768, 8.501633], [47.362437, 8.504625], [47.397668, 8.532805], [47.386221, 8.518001], [47.387667, 8.492891], [47.365771, 8.552566], [47.385245, 8.536696], [47.333564, 8.51896], [47.386903, 8.539206], [47.396059, 8.544973], [47.37663, 8.54396], [47.383376, 8.484092], [47.368324, 8.544304], [47.369515, 8.525885], [47.383517, 8.543308], [47.348305, 8.5344], [47.376806, 8.536787], [47.369096, 8.537859], [47.368301, 8.578133], [47.391099, 8.545307], [47.373101, 8.490325], [47.367946, 8.560211], [47.387021, 8.539977], [47.341336, 8.527494], [47.404924, 8.502269], [47.374566, 8.533973], [47.406808, 8.550522], [47.390452, 8.539651], [47.377572, 8.522341], [47.398417, 8.494826], [47.382037, 8.530617], [47.372751, 8.600937], [47.369837, 8.529016], [47.421565, 8.550022], [47.378827, 8.542735], [47.409159, 8.547471], [47.341174, 8.530349], [47.389936, 8.536196], [47.41064, 8.542148], [47.379578, 8.543306], [47.375752, 8.559502], [47.377838, 8.509303], [47.380673, 8.511995], [47.357102, 8.522071], [47.379912, 8.524164], [47.364632, 8.545697], [47.398976, 8.533335], [47.409602, 8.480472], [47.418597, 8.554691], [47.357473, 8.521853], [47.384948, 8.495234], [47.390835, 8.509365], [47.362943, 8.549184], [47.41384, 8.527174], [47.410499, 8.56976], [47.420123, 8.548468], [47.428792, 8.543956], [47.393849, 8.505386], [47.383882, 8.504524], [47.381194, 8.556716], [47.355577, 8.513912], [47.367944, 8.544575], [47.374264, 8.524962], [47.384082, 8.511057], [47.400771, 8.548793], [47.404461, 8.557019], [47.387982, 8.539242], [47.387507, 8.519073], [47.37541, 8.517941], [47.393466, 8.512743], [47.378947, 8.54524], [47.35745, 8.535686], [47.385456, 8.522873], [47.362352, 8.559114], [47.399442, 8.543016], [47.372534, 8.505012], [47.368491, 8.548426], [47.407356, 8.530791], [47.412165, 8.539728], [47.370653, 8.516772], [47.380626, 8.512219], [47.335517, 8.518814], [47.362478, 8.533844], [47.380431, 8.515778], [47.407516, 8.548073], [47.352075, 8.534331], [47.381206, 8.537566], [47.397147, 8.530794], [47.374268, 8.513018], [47.369005, 8.537976], [47.390935, 8.488717], [47.36112, 8.571122], [47.390712, 8.509032], [47.378394, 8.520107], [47.364757, 8.502672], [47.419187, 8.547613], [47.366757, 8.563126], [47.358484, 8.571145], [47.365408, 8.521657], [47.404369, 8.533764], [47.369333, 8.527086], [47.358808, 8.585701], [47.413401, 8.53933], [47.375118, 8.540314], [47.36289, 8.526438], [47.394458, 8.51928], [47.371343, 8.547505], [47.372238, 8.523345], [47.381829, 8.535499], [47.369389, 8.525896], [47.382833, 8.531057], [47.375371, 8.485947], [47.371997, 8.521182], [47.368182, 8.557224], [47.385462, 8.526025], [47.409676, 8.54511], [47.416919, 8.538263], [47.371057, 8.531239], [47.366671, 8.553498], [47.360998, 8.524851], [47.396351, 8.489539], [47.375129, 8.553225], [47.392626, 8.538954], [47.35928, 8.500603], [47.394854, 8.529727], [47.376001, 8.538174], [47.360193, 8.579403], [47.39633, 8.47294], [47.376862, 8.543197], [47.412943, 8.538287], [47.365698, 8.55643], [47.368751, 8.528743], [47.360561, 8.566622], [47.407607, 8.58389], [47.361001, 8.506211], [47.363649, 8.574684], [47.362607, 8.598055], [47.419942, 8.506597], [47.37853, 8.575226], [47.377275, 8.512721], [47.398721, 8.532734], [47.368865, 8.501006], [47.429365, 8.543345], [47.372544, 8.546974], [47.374743, 8.565161], [47.363199, 8.549706], [47.383134, 8.540162], [47.406771, 8.572888], [47.428712, 8.488879], [47.394859, 8.539702], [47.375481, 8.496649], [47.378642, 8.519489], [47.388019, 8.537243], [47.375258, 8.515925], [47.369599, 8.525648], [47.400417, 8.54819], [47.373922, 8.54491], [47.398461, 8.500815], [47.369437, 8.526585], [47.367694, 8.488418], [47.375578, 8.526896], [47.371917, 8.522107], [47.340088, 8.530115], [47.367304, 8.546574], [47.35199, 8.560061], [47.378656, 8.526681], [47.414207, 8.552863], [47.378441, 8.540859], [47.389686, 8.512058], [47.427599, 8.539915], [47.380355, 8.542872], [47.380337, 8.542898], [47.375582, 8.521652], [47.378512, 8.575213], [47.372917, 8.533383], [47.3747, 8.535935], [47.367994, 8.495984], [47.376591, 8.529154], [47.386186, 8.475683], [47.376801, 8.528775], [47.392788, 8.528493], [47.371033, 8.546982], [47.391529, 8.54268], [47.332736, 8.528576], [47.377243, 8.54196], [47.376924, 8.524354], [47.38339, 8.543452], [47.361477, 8.56124], [47.384801, 8.524621], [47.391598, 8.519222], [47.375287, 8.54331], [47.361352, 8.522607], [47.401453, 8.503074], [47.402387, 8.493514], [47.398942, 8.542582], [47.375866, 8.537323], [47.393453, 8.524731], [47.371893, 8.53413], [47.387814, 8.485715], [47.369437, 8.526572], [47.375693, 8.527097], [47.377844, 8.498868], [47.378057, 8.541434], [47.428069, 8.552769], [47.378555, 8.54204], [47.410184, 8.526636], [47.426589, 8.546773], [47.429901, 8.544615], [47.351332, 8.525395], [47.373599, 8.523055], [47.414195, 8.519032], [47.406725, 8.584825], [47.356167, 8.556032], [47.414158, 8.546674], [47.378846, 8.542682], [47.360412, 8.594407], [47.377161, 8.537297], [47.390133, 8.478886], [47.37295, 8.519361], [47.388941, 8.52248], [47.371808, 8.530791], [47.394258, 8.490213], [47.369238, 8.527601], [47.381905, 8.51692], [47.361765, 8.511138], [47.414459, 8.550974], [47.365596, 8.50535], [47.369164, 8.556132], [47.406916, 8.550591], [47.381201, 8.538148], [47.378364, 8.541348], [47.390918, 8.47959], [47.352087, 8.573167], [47.374435, 8.495887], [47.371926, 8.529695], [47.398465, 8.533139], [47.397544, 8.48894], [47.427496, 8.545997], [47.370481, 8.52462], [47.427474, 8.551087], [47.389832, 8.511822], [47.414778, 8.551497], [47.376726, 8.543327], [47.410909, 8.505847], [47.402633, 8.547852], [47.406889, 8.550537], [47.371177, 8.493134], [47.364699, 8.557389], [47.373582, 8.534337], [47.373067, 8.538365], [47.388117, 8.520145], [47.365001, 8.567021], [47.366687, 8.541464], [47.387993, 8.519904], [47.371452, 8.513067], [47.369862, 8.525389], [47.37038, 8.518051], [47.378802, 8.542588], [47.40629, 8.480686], [47.373683, 8.5341], [47.3691, 8.492034], [47.383122, 8.529063], [47.363876, 8.598864], [47.362122, 8.607815], [47.379882, 8.548146], [47.37335, 8.536993], [47.367364, 8.523193], [47.347259, 8.532803], [47.372397, 8.523613], [47.3862, 8.525073], [47.375753, 8.549107], [47.36095, 8.530887], [47.360918, 8.5549], [47.376566, 8.527022], [47.423426, 8.494513], [47.380649, 8.496142], [47.378349, 8.52388], [47.350894, 8.563625], [47.405995, 8.591275], [47.373171, 8.536897], [47.383312, 8.48421], [47.373233, 8.537031], [47.393889, 8.509837], [47.366988, 8.520087], [47.384976, 8.508784], [47.377203, 8.499093], [47.370215, 8.548806], [47.419176, 8.547732], [47.365037, 8.545679], [47.362604, 8.504946], [47.380729, 8.556441], [47.371867, 8.529309], [47.373987, 8.502591], [47.366148, 8.540486], [47.383079, 8.527857], [47.411593, 8.559938], [47.395263, 8.491452], [47.38265, 8.513148], [47.410993, 8.545654], [47.360193, 8.579403], [47.36393, 8.528631], [47.370093, 8.540832], [47.383424, 8.533254], [47.413022, 8.544132], [47.417912, 8.505271], [47.366745, 8.545768], [47.422467, 8.550743], [47.41075, 8.555905], [47.324581, 8.509875], [47.373239, 8.525974], [47.375121, 8.545584], [47.413877, 8.524206], [47.393794, 8.489807], [47.37097, 8.502028], [47.384381, 8.531936], [47.377647, 8.541995], [47.40763, 8.543689], [47.3809, 8.492201], [47.387289, 8.519201], [47.378553, 8.519461], [47.426617, 8.555019], [47.397618, 8.48869], [47.374839, 8.553431], [47.404322, 8.576837], [47.370188, 8.548792], [47.369605, 8.552395], [47.378379, 8.541613], [47.378947, 8.5443], [47.368464, 8.540931], [47.358237, 8.51807], [47.352509, 8.508172], [47.398801, 8.540353], [47.370264, 8.536096], [47.384334, 8.53126], [47.371467, 8.547653], [47.378892, 8.519759], [47.362117, 8.51096], [47.351413, 8.576727], [47.392391, 8.538128], [47.376372, 8.537082], [47.402109, 8.499231], [47.404275, 8.548297], [47.363028, 8.522271], [47.363746, 8.574819], [47.369389, 8.525896], [47.414091, 8.51675], [47.365822, 8.56774], [47.336908, 8.533517], [47.394347, 8.519623], [47.408764, 8.504293], [47.39805, 8.541795], [47.366503, 8.519985], [47.372926, 8.52091], [47.370748, 8.474959], [47.391923, 8.518103], [47.391463, 8.513391], [47.36956, 8.551467], [47.363898, 8.549085], [47.368959, 8.528575], [47.393372, 8.524769], [47.399587, 8.542834], [47.382861, 8.530011], [47.368802, 8.528995], [47.378761, 8.528881], [47.373351, 8.534994], [47.415032, 8.545592], [47.415005, 8.545645], [47.402013, 8.497971], [47.400788, 8.5489], [47.362249, 8.547448], [47.377855, 8.508416], [47.391349, 8.526622], [47.380195, 8.535174], [47.404667, 8.551511], [47.361148, 8.600843], [47.369999, 8.51848], [47.359688, 8.549063], [47.408509, 8.550518], [47.363286, 8.5292], [47.401262, 8.590616], [47.363425, 8.533545], [47.382553, 8.548189], [47.350748, 8.560128], [47.369614, 8.513388], [47.373044, 8.533187], [47.366411, 8.541153], [47.360314, 8.550413], [47.361198, 8.532229], [47.323024, 8.513852], [47.390753, 8.521987], [47.367758, 8.496205], [47.355622, 8.574076], [47.371916, 8.52212], [47.369817, 8.532061], [47.377063, 8.521934], [47.406701, 8.538211], [47.386245, 8.531696], [47.380524, 8.512562], [47.377761, 8.507898], [47.37641, 8.543466], [47.340948, 8.53143], [47.367095, 8.543961], [47.377207, 8.541959], [47.391141, 8.522909], [47.364177, 8.526306], [47.377231, 8.547853], [47.405102, 8.481789], [47.36524, 8.494129], [47.338454, 8.519284], [47.37775, 8.5416], [47.420286, 8.508261], [47.362708, 8.518915], [47.383805, 8.509913], [47.377145, 8.552155], [47.371177, 8.520371], [47.370665, 8.519341], [47.366373, 8.545178], [47.373913, 8.538382], [47.383611, 8.530676], [47.408137, 8.503048], [47.370852, 8.536757], [47.362269, 8.54729], [47.388515, 8.528551], [47.370538, 8.546972], [47.37346, 8.529223], [47.372, 8.487695], [47.378208, 8.543569], [47.381028, 8.553388], [47.386788, 8.547482], [47.379836, 8.55478], [47.398382, 8.504509], [47.370285, 8.557387], [47.421154, 8.549722], [47.377259, 8.521262], [47.369284, 8.541729], [47.413854, 8.539936], [47.351331, 8.525435], [47.410778, 8.538043], [47.370783, 8.546765], [47.377032, 8.52723], [47.38508, 8.532268], [47.388471, 8.485582], [47.37925, 8.538029], [47.405183, 8.559551], [47.378544, 8.541365], [47.390891, 8.488531], [47.388428, 8.540549], [47.361173, 8.506056], [47.419882, 8.501375], [47.382009, 8.530735], [47.366513, 8.540864], [47.379039, 8.545096], [47.364031, 8.554794], [47.407814, 8.580277], [47.410056, 8.542984], [47.37004, 8.540805], [47.38033, 8.542699], [47.372796, 8.535658], [47.374665, 8.535921], [47.378857, 8.510992], [47.36923, 8.527574], [47.387823, 8.485702], [47.41966, 8.504975], [47.372289, 8.536031], [47.416745, 8.54523], [47.354822, 8.510972], [47.379143, 8.500403], [47.371093, 8.5236], [47.379045, 8.527364], [47.393693, 8.501832], [47.379371, 8.525252], [47.353824, 8.558313], [47.413531, 8.545455], [47.422811, 8.494819], [47.372121, 8.550726], [47.399834, 8.543329], [47.376926, 8.528897], [47.370054, 8.54871], [47.378599, 8.505809], [47.419213, 8.54772], [47.382137, 8.501615], [47.388171, 8.520173], [47.377275, 8.515648], [47.395611, 8.535333], [47.361028, 8.506145], [47.380828, 8.541399], [47.358709, 8.599241], [47.389037, 8.478706], [47.378198, 8.520858], [47.376912, 8.527546], [47.399712, 8.547632], [47.378528, 8.541113], [47.391351, 8.487467], [47.377255, 8.538769], [47.378288, 8.530381], [47.424163, 8.506258], [47.397364, 8.503707], [47.411651, 8.528494], [47.385618, 8.493711], [47.398731, 8.532641], [47.376993, 8.527507], [47.385041, 8.508573], [47.376443, 8.544738], [47.383274, 8.506101], [47.374798, 8.544598], [47.417027, 8.523012], [47.369222, 8.540669], [47.363247, 8.525704], [47.381389, 8.513374], [47.369005, 8.537963], [47.370061, 8.548909], [47.401572, 8.578328], [47.377515, 8.538827], [47.360661, 8.524288], [47.359919, 8.534347], [47.375831, 8.559622], [47.373239, 8.538276], [47.370657, 8.508589], [47.388606, 8.483691], [47.365289, 8.530486], [47.393258, 8.533946], [47.403579, 8.547752], [47.390603, 8.489598], [47.377847, 8.519897], [47.373093, 8.537597], [47.394668, 8.514052], [47.374635, 8.537126], [47.370173, 8.513293], [47.400497, 8.500511], [47.373657, 8.535901], [47.407279, 8.544596], [47.383869, 8.511715], [47.414916, 8.515031], [47.376214, 8.52238], [47.370767, 8.535245], [47.38154, 8.513602], [47.385069, 8.547566], [47.371928, 8.535203], [47.37179, 8.530778], [47.3456, 8.529434], [47.369752, 8.49059], [47.40688, 8.585517], [47.375881, 8.537562], [47.382163, 8.505576], [47.410552, 8.550336], [47.423646, 8.538402], [47.37325, 8.519009], [47.383758, 8.512084], [47.418641, 8.547257], [47.375264, 8.490818], [47.400319, 8.505144], [47.409508, 8.567089], [47.362087, 8.507411], [47.3627, 8.518915], [47.369231, 8.525561], [47.397889, 8.534134], [47.365618, 8.539442], [47.366262, 8.534173], [47.402391, 8.535539], [47.390583, 8.522884], [47.378918, 8.515059], [47.40188, 8.54573], [47.383858, 8.515821], [47.384375, 8.531605], [47.360271, 8.523671], [47.384815, 8.529773], [47.386851, 8.525616], [47.370777, 8.515066], [47.393182, 8.492801], [47.377953, 8.492898], [47.407966, 8.53674], [47.371912, 8.52069], [47.374379, 8.522382], [47.410071, 8.546152], [47.410854, 8.5432], [47.383231, 8.531807], [47.404377, 8.572148], [47.365169, 8.53746], [47.383054, 8.499634], [47.391676, 8.504958], [47.341881, 8.530747], [47.394197, 8.490053], [47.388821, 8.522756], [47.385342, 8.542472], [47.36905, 8.537991], [47.372685, 8.53122], [47.366551, 8.548187], [47.426262, 8.547045], [47.362037, 8.533888], [47.40798, 8.578028], [47.405135, 8.50479], [47.397935, 8.534043], [47.375819, 8.545056], [47.393328, 8.492592], [47.375503, 8.5629], [47.37946, 8.54431], [47.375569, 8.526896], [47.383289, 8.530417], [47.373501, 8.536215], [47.360457, 8.594421], [47.414339, 8.551249], [47.355971, 8.579696], [47.37013, 8.540714], [47.380169, 8.542564], [47.369673, 8.518712], [47.373352, 8.534915], [47.389763, 8.477992], [47.394829, 8.525726], [47.393751, 8.472665], [47.385192, 8.53933], [47.344424, 8.53293], [47.365865, 8.532417], [47.377623, 8.526527], [47.367626, 8.541112], [47.370179, 8.548792], [47.390802, 8.50906], [47.392116, 8.498211], [47.401462, 8.499219], [47.366509, 8.540295], [47.371141, 8.53945], [47.344383, 8.526868], [47.37068, 8.516746], [47.404752, 8.488605], [47.409672, 8.54458], [47.372364, 8.523335], [47.393204, 8.530157], [47.362737, 8.547181], [47.376446, 8.536872], [47.377531, 8.529598], [47.423048, 8.498389], [47.37846, 8.540727], [47.371654, 8.519454], [47.36435, 8.536623], [47.405708, 8.502086], [47.369083, 8.518263], [47.37157, 8.515903], [47.366738, 8.541769], [47.367343, 8.545357], [47.393742, 8.51308], [47.389969, 8.531733], [47.3664, 8.540478], [47.393729, 8.505754], [47.403708, 8.496508], [47.377911, 8.508192], [47.330737, 8.514364], [47.400676, 8.550315], [47.357629, 8.521499], [47.358249, 8.586721], [47.414198, 8.529275], [47.366576, 8.545526], [47.367086, 8.544001], [47.405719, 8.59103], [47.344904, 8.533562], [47.377551, 8.498491], [47.373761, 8.528805], [47.376862, 8.528048], [47.3778, 8.516307], [47.372458, 8.511366], [47.370197, 8.548805], [47.377689, 8.527204], [47.374873, 8.520525], [47.366867, 8.549928], [47.397658, 8.526208], [47.422458, 8.55073], [47.389381, 8.488395], [47.373797, 8.537334], [47.372543, 8.505012], [47.420678, 8.513557], [47.405592, 8.572929], [47.389301, 8.529083], [47.381479, 8.542021], [47.373642, 8.528975], [47.377374, 8.537659], [47.373056, 8.532896], [47.396657, 8.529353], [47.389703, 8.526535], [47.42705, 8.491576], [47.377966, 8.548133], [47.390131, 8.522146], [47.363085, 8.535246], [47.362144, 8.559282], [47.409544, 8.575398], [47.388771, 8.528119], [47.364015, 8.526342], [47.415035, 8.483494], [47.366487, 8.540731], [47.397623, 8.487127], [47.394696, 8.525525], [47.386033, 8.554817], [47.374648, 8.547998], [47.344029, 8.53189], [47.362337, 8.504662], [47.37964, 8.526264], [47.397667, 8.532924], [47.41413, 8.519256], [47.410323, 8.546117], [47.422466, 8.550836], [47.381579, 8.537189], [47.393975, 8.473769], [47.381424, 8.5174], [47.414073, 8.541491], [47.364131, 8.53021], [47.387528, 8.51963], [47.409946, 8.535641], [47.382047, 8.540907], [47.397304, 8.531301], [47.375872, 8.523287], [47.351881, 8.527286], [47.378521, 8.575213], [47.356808, 8.558587], [47.36416, 8.569346], [47.380144, 8.494239], [47.417167, 8.551865], [47.363108, 8.503989], [47.351215, 8.561064], [47.379016, 8.562351], [47.329882, 8.529761], [47.357524, 8.535489], [47.368583, 8.524595], [47.364656, 8.554423], [47.386653, 8.553069], [47.396736, 8.529554], [47.381764, 8.513726], [47.407735, 8.574564], [47.42705, 8.49159], [47.359547, 8.535557], [47.371818, 8.487996], [47.377162, 8.540025], [47.375187, 8.518678], [47.398158, 8.536087], [47.41405, 8.546685], [47.408651, 8.540371], [47.330232, 8.529834], [47.38583, 8.529993], [47.373756, 8.519682], [47.387042, 8.494362], [47.411889, 8.523291], [47.384993, 8.530995], [47.376381, 8.540777], [47.395201, 8.535854], [47.383814, 8.509886], [47.389156, 8.530246], [47.359681, 8.587454], [47.388839, 8.49559], [47.361285, 8.56158], [47.38164, 8.528861], [47.371765, 8.547554], [47.415962, 8.508956], [47.357057, 8.598054], [47.391081, 8.479527], [47.372883, 8.535938], [47.369079, 8.565823], [47.376883, 8.548561], [47.363635, 8.535125], [47.365539, 8.526876], [47.399304, 8.542377], [47.375446, 8.524602], [47.366807, 8.543028], [47.42576, 8.547803], [47.362752, 8.567966], [47.397898, 8.534095], [47.405456, 8.593039], [47.386884, 8.493935], [47.39126, 8.520779], [47.425934, 8.493649], [47.343999, 8.535079], [47.360067, 8.580274], [47.379877, 8.495902], [47.377887, 8.507887], [47.381473, 8.564999], [47.371115, 8.493054], [47.403737, 8.560223], [47.415307, 8.518458], [47.357911, 8.519268], [47.375152, 8.518518], [47.368806, 8.524838], [47.390219, 8.52334], [47.371218, 8.530382], [47.360027, 8.521905], [47.362459, 8.568489], [47.352881, 8.558174], [47.371486, 8.547548], [47.408217, 8.547133], [47.376411, 8.528144], [47.391668, 8.513647], [47.405684, 8.549638], [47.393831, 8.505465], [47.36646, 8.509233], [47.377398, 8.529436], [47.339793, 8.52995], [47.411553, 8.545387], [47.400122, 8.494224], [47.417416, 8.552109], [47.412288, 8.523896], [47.386959, 8.528572], [47.368457, 8.524566], [47.360689, 8.55062], [47.371293, 8.555422], [47.385502, 8.530449], [47.375659, 8.548628], [47.384149, 8.55152], [47.374038, 8.476175], [47.403435, 8.556109], [47.372513, 8.539876], [47.356696, 8.522155], [47.364378, 8.529805], [47.369553, 8.5257], [47.411281, 8.570665], [47.412894, 8.540592], [47.39778, 8.530396], [47.397772, 8.53033], [47.372938, 8.531106], [47.376982, 8.541915], [47.369686, 8.525875], [47.377759, 8.52547], [47.371377, 8.51725], [47.412332, 8.554242], [47.372882, 8.520856], [47.369958, 8.51125], [47.421773, 8.509895], [47.395767, 8.52454], [47.368221, 8.560575], [47.415318, 8.514376], [47.356705, 8.522156], [47.373085, 8.534565], [47.391944, 8.517852], [47.399806, 8.502233], [47.3984, 8.468834], [47.374586, 8.54601], [47.357729, 8.554423], [47.415653, 8.513151], [47.368274, 8.520193], [47.413972, 8.545491], [47.373754, 8.536128], [47.385307, 8.536697], [47.396868, 8.54589], [47.38614, 8.53527], [47.415095, 8.51514], [47.372597, 8.534793], [47.39062, 8.489691], [47.378474, 8.568114], [47.379206, 8.559468], [47.355704, 8.573985], [47.414424, 8.536701], [47.414328, 8.538316], [47.414424, 8.536741], [47.389422, 8.521059], [47.366591, 8.54117], [47.386978, 8.547367], [47.376807, 8.544269], [47.381578, 8.541944], [47.414119, 8.544235], [47.370108, 8.528863], [47.368073, 8.54136], [47.405453, 8.480722], [47.344631, 8.532987], [47.377644, 8.506876], [47.395811, 8.545511], [47.387938, 8.539095], [47.348478, 8.562264], [47.363169, 8.526365], [47.375031, 8.519032], [47.366943, 8.545719], [47.365171, 8.553215], [47.414121, 8.519295], [47.376278, 8.540298], [47.425555, 8.54764], [47.326028, 8.514865], [47.374769, 8.523953], [47.414615, 8.520325], [47.397902, 8.535579], [47.397673, 8.494493], [47.368203, 8.560574], [47.413008, 8.562459], [47.370767, 8.535272], [47.366525, 8.540533], [47.370785, 8.535259], [47.374678, 8.550567], [47.375239, 8.545507], [47.37964, 8.515762], [47.417181, 8.541939], [47.370052, 8.548908], [47.367258, 8.545725], [47.376702, 8.497812], [47.375034, 8.518728], [47.374265, 8.524909], [47.373963, 8.50324], [47.383143, 8.497834], [47.409476, 8.544324], [47.408555, 8.546624], [47.376882, 8.540165], [47.360919, 8.531296], [47.366985, 8.491238], [47.373406, 8.534863], [47.406843, 8.563667], [47.397603, 8.481403], [47.394533, 8.49455], [47.371058, 8.525453], [47.388442, 8.486853], [47.370557, 8.508733], [47.408703, 8.546242], [47.369204, 8.543581], [47.371407, 8.522693], [47.358851, 8.516811], [47.392885, 8.490848], [47.387049, 8.547395], [47.421405, 8.499033], [47.364228, 8.521872], [47.362727, 8.518902], [47.386363, 8.487991], [47.378531, 8.5752], [47.400701, 8.548646], [47.427549, 8.546011], [47.372909, 8.53517], [47.368095, 8.534356], [47.383929, 8.528364], [47.391423, 8.516742], [47.386758, 8.490966], [47.37442, 8.539849], [47.387809, 8.527119], [47.388961, 8.491155], [47.343015, 8.534476], [47.370351, 8.534562], [47.388653, 8.483414], [47.395224, 8.521972], [47.373365, 8.531644], [47.410038, 8.542971], [47.37615, 8.489313], [47.413097, 8.543895], [47.37553, 8.486361], [47.366007, 8.533506], [47.389305, 8.536289], [47.378014, 8.526072], [47.404205, 8.561134], [47.410978, 8.567663], [47.385123, 8.537223], [47.372959, 8.524141], [47.356706, 8.535433], [47.373261, 8.535045], [47.337716, 8.519309], [47.384975, 8.508903], [47.371757, 8.493702], [47.388906, 8.515578], [47.385258, 8.527703], [47.414746, 8.545454], [47.351279, 8.560033], [47.375886, 8.500537], [47.353362, 8.576093], [47.375431, 8.528138], [47.374022, 8.54294], [47.361316, 8.525479], [47.415982, 8.515529], [47.360934, 8.547633], [47.345759, 8.534466], [47.383229, 8.506021], [47.419595, 8.505172], [47.378769, 8.539423], [47.402441, 8.499384], [47.387183, 8.519027], [47.375688, 8.541848], [47.356013, 8.556148], [47.38533, 8.530525], [47.401532, 8.548319], [47.369649, 8.533647], [47.366989, 8.520021], [47.378948, 8.523402], [47.388233, 8.520254], [47.378111, 8.497258], [47.365541, 8.539004], [47.354791, 8.526816], [47.413996, 8.549533], [47.342491, 8.530932], [47.382711, 8.537319], [47.333029, 8.518473], [47.372575, 8.537203], [47.370127, 8.521091], [47.376924, 8.543317], [47.411543, 8.52661], [47.370534, 8.492605], [47.343555, 8.535387], [47.350158, 8.560631], [47.362779, 8.510404], [47.366474, 8.547788], [47.342348, 8.530863], [47.37102, 8.523757], [47.406907, 8.550577], [47.374681, 8.536041], [47.381277, 8.517676], [47.407593, 8.558701], [47.375229, 8.539005], [47.420234, 8.538756], [47.37554, 8.563721], [47.370904, 8.53881], [47.373949, 8.498896], [47.410651, 8.550338], [47.363903, 8.547562], [47.364469, 8.566281], [47.366282, 8.537722], [47.377505, 8.529451], [47.429313, 8.548739], [47.383719, 8.573509], [47.40848, 8.581152], [47.386768, 8.547601], [47.38619, 8.52804], [47.378682, 8.542003], [47.370188, 8.548792], [47.380323, 8.52637], [47.375532, 8.518314], [47.403018, 8.534876], [47.380829, 8.541293], [47.366481, 8.540493], [47.338434, 8.529976], [47.373692, 8.534101], [47.405785, 8.555947], [47.382116, 8.571926], [47.375975, 8.53816], [47.370683, 8.501969], [47.376477, 8.534542], [47.392729, 8.523272], [47.404434, 8.533567], [47.375876, 8.540978], [47.352923, 8.534071], [47.369754, 8.536813], [47.369749, 8.552305], [47.394, 8.54485], [47.380152, 8.513839], [47.354446, 8.559093], [47.378014, 8.512564], [47.377508, 8.574], [47.387477, 8.479218], [47.368003, 8.52408], [47.370762, 8.543296], [47.373763, 8.536128], [47.388613, 8.488843], [47.353599, 8.554549], [47.370259, 8.513758], [47.380795, 8.581791], [47.387008, 8.546123], [47.359706, 8.55089], [47.416023, 8.50628], [47.366966, 8.537696], [47.38676, 8.553177], [47.385123, 8.50839], [47.348024, 8.528041], [47.358527, 8.551898], [47.42274, 8.539086], [47.372508, 8.517511], [47.404225, 8.561002], [47.374096, 8.54457], [47.391252, 8.541575], [47.414249, 8.534312], [47.405952, 8.581111], [47.374702, 8.487325], [47.398265, 8.53711], [47.377397, 8.509281], [47.381478, 8.503721], [47.370915, 8.547046], [47.411939, 8.545515], [47.365713, 8.567764], [47.37748, 8.499337], [47.35869, 8.590332], [47.363298, 8.533649], [47.399672, 8.51769], [47.367903, 8.52997], [47.373652, 8.536457], [47.425712, 8.493379], [47.405282, 8.480692], [47.391688, 8.517317], [47.381461, 8.517216], [47.398122, 8.591582], [47.373567, 8.519718], [47.35144, 8.576701], [47.354088, 8.57542], [47.375882, 8.510733], [47.369233, 8.52817], [47.413995, 8.54304], [47.39813, 8.536219], [47.40518, 8.503797], [47.36648, 8.532999], [47.394982, 8.524762], [47.379393, 8.523888], [47.367781, 8.560459], [47.378784, 8.514937], [47.388317, 8.519977], [47.373966, 8.538436], [47.384979, 8.537167], [47.377125, 8.535389], [47.392649, 8.534596], [47.389429, 8.511655], [47.407577, 8.585068], [47.38436, 8.548332], [47.392397, 8.491117], [47.387247, 8.518936], [47.410529, 8.549911], [47.337814, 8.53474], [47.371317, 8.53041], [47.391379, 8.540518], [47.372523, 8.478649], [47.378777, 8.542389], [47.426683, 8.553787], [47.392167, 8.492702], [47.37868, 8.523145], [47.376585, 8.54392], [47.377734, 8.507924], [47.371476, 8.547667], [47.393839, 8.505558], [47.370435, 8.521839], [47.408842, 8.537248], [47.39378, 8.54527], [47.37579, 8.536713], [47.400251, 8.586408], [47.389552, 8.491379], [47.413618, 8.480988], [47.387495, 8.518384], [47.398912, 8.53348], [47.365136, 8.564217], [47.39589, 8.526768], [47.362233, 8.559363], [47.387075, 8.477873], [47.391803, 8.491198], [47.387278, 8.488274], [47.378673, 8.541976], [47.357321, 8.554746], [47.398857, 8.533571], [47.419116, 8.507336], [47.371349, 8.515449], [47.370789, 8.524375], [47.373992, 8.538596], [47.39462, 8.488048], [47.392062, 8.499204], [47.384652, 8.549795], [47.382224, 8.499961], [47.382155, 8.514184], [47.370792, 8.537351], [47.383879, 8.509729], [47.383466, 8.530765], [47.36499, 8.532651], [47.387701, 8.538481], [47.426279, 8.55464], [47.356762, 8.573372], [47.40809, 8.547303], [47.361716, 8.552349], [47.373047, 8.532949], [47.386489, 8.483], [47.410813, 8.547492], [47.403146, 8.588338], [47.402032, 8.496898], [47.373485, 8.519848], [47.383799, 8.5326], [47.403117, 8.486427], [47.377711, 8.509366], [47.39963, 8.502825], [47.37239, 8.509895], [47.388388, 8.528614], [47.381886, 8.541805], [47.380336, 8.542964], [47.373014, 8.534484], [47.411005, 8.526334], [47.369134, 8.528128], [47.364255, 8.547464], [47.427332, 8.546126], [47.383782, 8.539116], [47.378089, 8.541885], [47.339935, 8.530178], [47.413191, 8.55377], [47.414237, 8.550704], [47.36662, 8.541873], [47.367343, 8.532116], [47.367102, 8.54412], [47.381076, 8.569758], [47.372505, 8.478675], [47.375485, 8.547949], [47.372496, 8.511076], [47.407972, 8.494591], [47.368528, 8.54652], [47.341774, 8.530719], [47.403823, 8.568055], [47.368154, 8.55725], [47.361012, 8.549872], [47.370164, 8.540966], [47.383858, 8.529224], [47.365712, 8.521862], [47.383639, 8.573428], [47.411209, 8.546546], [47.335375, 8.525308], [47.391797, 8.528644], [47.384368, 8.548399], [47.378048, 8.513836], [47.380107, 8.537821], [47.383184, 8.506099], [47.376954, 8.54206], [47.367079, 8.522843], [47.410192, 8.548539], [47.372047, 8.53498], [47.35809, 8.520304], [47.380089, 8.526352], [47.358931, 8.557626], [47.38339, 8.548206], [47.368486, 8.524368], [47.414101, 8.550794], [47.364565, 8.553613], [47.37705, 8.543347], [47.394258, 8.490213], [47.373383, 8.538226], [47.390618, 8.485942], [47.388372, 8.485647], [47.391078, 8.484773], [47.374368, 8.523508], [47.362102, 8.564484], [47.370435, 8.549247], [47.393737, 8.509768], [47.371824, 8.543318], [47.361797, 8.562544], [47.373413, 8.552991], [47.427259, 8.549134], [47.359589, 8.549088], [47.385547, 8.529483], [47.394214, 8.4931], [47.408804, 8.546006], [47.364276, 8.566648], [47.368966, 8.501803], [47.374978, 8.541794], [47.36494, 8.519821], [47.407583, 8.579026], [47.361026, 8.571544], [47.391876, 8.51838], [47.357465, 8.521774], [47.373463, 8.534586], [47.36518, 8.545696], [47.368634, 8.537293], [47.426481, 8.492811], [47.375041, 8.544589], [47.392933, 8.474583], [47.35772, 8.554423], [47.409841, 8.543868], [47.346865, 8.526866], [47.38466, 8.479322], [47.371691, 8.517402], [47.3717, 8.517402], [47.373242, 8.543665], [47.404022, 8.572498], [47.356898, 8.514071], [47.356962, 8.513993], [47.419403, 8.505553], [47.409769, 8.540991], [47.424366, 8.502816], [47.420797, 8.501618], [47.366436, 8.545113], [47.419188, 8.50637], [47.386186, 8.498451], [47.429215, 8.488001], [47.389147, 8.546313], [47.417088, 8.506885], [47.328021, 8.529683], [47.367874, 8.546162], [47.370611, 8.470137], [47.377596, 8.574147], [47.405461, 8.503485], [47.3754, 8.484769], [47.386023, 8.49866], [47.403601, 8.548296], [47.404985, 8.560488], [47.419161, 8.506357], [47.3905, 8.527889], [47.393556, 8.529091], [47.36446, 8.54858], [47.39018, 8.480662], [47.388886, 8.495405], [47.397363, 8.531779], [47.394841, 8.512877], [47.388483, 8.491199], [47.390356, 8.522164], [47.421187, 8.546356], [47.360597, 8.524419], [47.400853, 8.591866], [47.408712, 8.546203], [47.384971, 8.548411], [47.387902, 8.539095], [47.411436, 8.570456], [47.40254, 8.492483], [47.402036, 8.499415], [47.382943, 8.529947], [47.389555, 8.534639], [47.36238, 8.559088], [47.385975, 8.504804], [47.368109, 8.555422], [47.361316, 8.525493], [47.361022, 8.551593], [47.383263, 8.486646], [47.42704, 8.491735], [47.377463, 8.53578], [47.390442, 8.543479], [47.379564, 8.527639], [47.358836, 8.583769], [47.378031, 8.547975], [47.377209, 8.489599], [47.360962, 8.524784], [47.41571, 8.545222], [47.390677, 8.489308], [47.376247, 8.528432], [47.383242, 8.586359], [47.373653, 8.536404], [47.356572, 8.526759], [47.369649, 8.4671], [47.367906, 8.560608], [47.341783, 8.530719], [47.373181, 8.533031], [47.374519, 8.539891], [47.370689, 8.51676], [47.364276, 8.54618], [47.404925, 8.56943], [47.36924, 8.541622], [47.364498, 8.531396], [47.361086, 8.599862], [47.38827, 8.486996], [47.377519, 8.50972], [47.36814, 8.495788], [47.367443, 8.520507], [47.409845, 8.549075], [47.366501, 8.560816], [47.415474, 8.51699], [47.373725, 8.54292], [47.381925, 8.483427], [47.376853, 8.543184], [47.34722, 8.56679], [47.372281, 8.554715], [47.376538, 8.528054], [47.38375, 8.531115], [47.364446, 8.531236], [47.365466, 8.559934], [47.372422, 8.519032], [47.380186, 8.541783], [47.372382, 8.534736], [47.368988, 8.528443], [47.39208, 8.499217], [47.389473, 8.47229], [47.390215, 8.479828], [47.394468, 8.472957], [47.373553, 8.544943], [47.37822, 8.509853], [47.368364, 8.555123], [47.426325, 8.548027], [47.426387, 8.548108]], [[47.369699, 8.536905], [47.39214, 8.473773], [47.373017, 8.531359], [47.375614, 8.526817], [47.397218, 8.530915], [47.392629, 8.50703], [47.413379, 8.513039], [47.397027, 8.505118], [47.363356, 8.535119], [47.365984, 8.50226], [47.383743, 8.533777], [47.377257, 8.53861], [47.382077, 8.529267], [47.374993, 8.534472], [47.388773, 8.520185], [47.407791, 8.582555], [47.372963, 8.531371], [47.399638, 8.520326], [47.380207, 8.520567], [47.369872, 8.518583], [47.366048, 8.535797], [47.37704, 8.539612], [47.420468, 8.549018], [47.418509, 8.547003], [47.370106, 8.54887], [47.381772, 8.536703], [47.376955, 8.540987], [47.372659, 8.513899], [47.382741, 8.546444], [47.419942, 8.507472], [47.398651, 8.539171], [47.38467, 8.509798], [47.38666, 8.547652], [47.368744, 8.556706], [47.387924, 8.520645], [47.398023, 8.532349], [47.379635, 8.559702], [47.374159, 8.502423], [47.366135, 8.520931], [47.35964, 8.54848], [47.353664, 8.601805], [47.373494, 8.529356], [47.381115, 8.542451], [47.374386, 8.518715], [47.361435, 8.547948], [47.378341, 8.55026], [47.3738, 8.503342], [47.37883, 8.510991], [47.379962, 8.520708], [47.36792, 8.54611], [47.371351, 8.522983], [47.374086, 8.544755], [47.368835, 8.534067], [47.382923, 8.540515], [47.403402, 8.588847], [47.374483, 8.53131], [47.383968, 8.506843], [47.37165, 8.524671], [47.420912, 8.543077], [47.405822, 8.532297], [47.367629, 8.498519], [47.354846, 8.534309], [47.366952, 8.5201], [47.397751, 8.533496], [47.393444, 8.524704], [47.412153, 8.550356], [47.374996, 8.537014], [47.413972, 8.543596], [47.36905, 8.538017], [47.39554, 8.539955], [47.375757, 8.558893], [47.391948, 8.518382], [47.373628, 8.543699], [47.411424, 8.572616], [47.35764, 8.518442], [47.377414, 8.51622], [47.37017, 8.548805], [47.388635, 8.518659], [47.359922, 8.557421], [47.415141, 8.546443], [47.374609, 8.532318], [47.387129, 8.540006], [47.37549, 8.513162], [47.366468, 8.557691], [47.425879, 8.493727], [47.373157, 8.517352], [47.355299, 8.583057], [47.405608, 8.552816], [47.389303, 8.479201], [47.332947, 8.534746], [47.374467, 8.541611], [47.369458, 8.538621], [47.413875, 8.548987], [47.386828, 8.486239], [47.397832, 8.47497], [47.375915, 8.523566], [47.375203, 8.501397], [47.412055, 8.546551], [47.358946, 8.534433], [47.395992, 8.534956], [47.415904, 8.514216], [47.386914, 8.525644], [47.364477, 8.555187], [47.367065, 8.544292], [47.372732, 8.534822], [47.346868, 8.528533], [47.382103, 8.515957], [47.378769, 8.542257], [47.387509, 8.499378], [47.377119, 8.547413], [47.397332, 8.531208], [47.387246, 8.519081], [47.377617, 8.522395], [47.372771, 8.535485], [47.373438, 8.52002], [47.381833, 8.545393], [47.377045, 8.521947], [47.370711, 8.470113], [47.340563, 8.528471], [47.394948, 8.52451], [47.370206, 8.550712], [47.374723, 8.549575], [47.372487, 8.505276], [47.374119, 8.476177], [47.429962, 8.549535], [47.361751, 8.5174], [47.370165, 8.517014], [47.365119, 8.553943], [47.40954, 8.53762], [47.412587, 8.516892], [47.395965, 8.545355], [47.371725, 8.536708], [47.370106, 8.548883], [47.361474, 8.506605], [47.366184, 8.53388], [47.408532, 8.542396], [47.405132, 8.481445], [47.392542, 8.502763], [47.358826, 8.548926], [47.366439, 8.544821], [47.368044, 8.546351], [47.375618, 8.548137], [47.40996, 8.479671], [47.37447, 8.527059], [47.409072, 8.531993], [47.389242, 8.539189], [47.385848, 8.49316], [47.369448, 8.526321], [47.428191, 8.547602], [47.380565, 8.524508], [47.371837, 8.542881], [47.367208, 8.539621], [47.380807, 8.512104], [47.391394, 8.519814], [47.371535, 8.546185], [47.386162, 8.530013], [47.390649, 8.487466], [47.383629, 8.541986], [47.373912, 8.476266], [47.391972, 8.510925], [47.372834, 8.515346], [47.409584, 8.537741], [47.401975, 8.588538], [47.365732, 8.536942], [47.373949, 8.47616], [47.377075, 8.549108], [47.382992, 8.575202], [47.373137, 8.495252], [47.397389, 8.531885], [47.397597, 8.532684], [47.378756, 8.512102], [47.38892, 8.520877], [47.424992, 8.552851], [47.419808, 8.504554], [47.382024, 8.505003], [47.4118, 8.509667], [47.367584, 8.546447], [47.355786, 8.592877], [47.376895, 8.516819], [47.37835, 8.525721], [47.353406, 8.527701], [47.378083, 8.530152], [47.389445, 8.527192], [47.376156, 8.534244], [47.357487, 8.526129], [47.3797, 8.527602], [47.33589, 8.528918], [47.3701, 8.513358], [47.362086, 8.559651], [47.363741, 8.517188], [47.362048, 8.559849], [47.408672, 8.579911], [47.417199, 8.5419], [47.371478, 8.570693], [47.377166, 8.528266], [47.360296, 8.5522], [47.36156, 8.571224], [47.374877, 8.527729], [47.373425, 8.529116], [47.414368, 8.537945], [47.394715, 8.525432], [47.414324, 8.483506], [47.40952, 8.537925], [47.406035, 8.481052], [47.377539, 8.541966], [47.370686, 8.535217], [47.377067, 8.541506], [47.4113, 8.532317], [47.37996, 8.54191], [47.37515, 8.538765], [47.385497, 8.54229], [47.378691, 8.541937], [47.365243, 8.54571], [47.412094, 8.554674], [47.39566, 8.522458], [47.367374, 8.53736], [47.376488, 8.525683], [47.384205, 8.476943], [47.372739, 8.529341], [47.365071, 8.547679], [47.372943, 8.536257], [47.414301, 8.553382], [47.408091, 8.550894], [47.36794, 8.56176], [47.404994, 8.493618], [47.430248, 8.536576], [47.415548, 8.545245], [47.388973, 8.515209], [47.378937, 8.519787], [47.370215, 8.548819], [47.402203, 8.495895], [47.351907, 8.527326], [47.387574, 8.4873], [47.369947, 8.491958], [47.371065, 8.523679], [47.37368, 8.545806], [47.385078, 8.508455], [47.413157, 8.565603], [47.357608, 8.553931], [47.383572, 8.531946], [47.362458, 8.554694], [47.368255, 8.5116], [47.377625, 8.532937], [47.373992, 8.576666], [47.420287, 8.503331], [47.369118, 8.504864], [47.383133, 8.530758], [47.379054, 8.522557], [47.379388, 8.544309], [47.376594, 8.543907], [47.391907, 8.550145], [47.42209, 8.537442], [47.403225, 8.559271], [47.340434, 8.519125], [47.380555, 8.52562], [47.391299, 8.520422], [47.395978, 8.526889], [47.38321, 8.562148], [47.377256, 8.538676], [47.428803, 8.488735], [47.3762, 8.552215], [47.374357, 8.577892], [47.32954, 8.514486], [47.431381, 8.516477], [47.37024, 8.53775], [47.397485, 8.489508], [47.385654, 8.548492], [47.391693, 8.52345], [47.381978, 8.544389], [47.399381, 8.54271], [47.391207, 8.47855], [47.424203, 8.552542], [47.383602, 8.48697], [47.365723, 8.535976], [47.383238, 8.506021], [47.364554, 8.554725], [47.389045, 8.527714], [47.39958, 8.51696], [47.417737, 8.506673], [47.390314, 8.490665], [47.404935, 8.571166], [47.390069, 8.537272], [47.377479, 8.541687], [47.339326, 8.526977], [47.366035, 8.562448], [47.336924, 8.535621], [47.369073, 8.541275], [47.373862, 8.524755], [47.405147, 8.481776], [47.399034, 8.513716], [47.385267, 8.530498], [47.392598, 8.539019], [47.373594, 8.530245], [47.383359, 8.528724], [47.367487, 8.545346], [47.413842, 8.546813], [47.377017, 8.546776], [47.426489, 8.492944], [47.363975, 8.531505], [47.410731, 8.534412], [47.403876, 8.571832], [47.360354, 8.52538], [47.396871, 8.54087], [47.414587, 8.558199], [47.36379, 8.574939], [47.36449, 8.554843], [47.377328, 8.526349], [47.382888, 8.482334], [47.413979, 8.546657], [47.383227, 8.530323], [47.364585, 8.566323], [47.38005, 8.514221], [47.39129, 8.520382], [47.401928, 8.499387], [47.393894, 8.529456], [47.36109, 8.522642], [47.408821, 8.579331], [47.383654, 8.508731], [47.389757, 8.521781], [47.353587, 8.576098], [47.379855, 8.5206], [47.378245, 8.520581], [47.400701, 8.584602], [47.358729, 8.526976], [47.368099, 8.52154], [47.378108, 8.532284], [47.379415, 8.537688], [47.37588, 8.549043], [47.373002, 8.561986], [47.383465, 8.58745], [47.381448, 8.503098], [47.392104, 8.500489], [47.358035, 8.523255], [47.380506, 8.544014], [47.386724, 8.547534], [47.387611, 8.500016], [47.396347, 8.52018], [47.370112, 8.529419], [47.396112, 8.527064], [47.389147, 8.527332], [47.33502, 8.531441], [47.371753, 8.491133], [47.368863, 8.501231], [47.406959, 8.586619], [47.363083, 8.563498], [47.387772, 8.527185], [47.3754, 8.524747], [47.375375, 8.48559], [47.363094, 8.549412], [47.369561, 8.525767], [47.393878, 8.506168], [47.372731, 8.534889], [47.34376, 8.529952], [47.374859, 8.525848], [47.387482, 8.525563], [47.405203, 8.577717], [47.384112, 8.543255], [47.389949, 8.545137], [47.354026, 8.556014], [47.403898, 8.56962], [47.387665, 8.527116], [47.382256, 8.512054], [47.366409, 8.545191], [47.361016, 8.520959], [47.367424, 8.555619], [47.370476, 8.515497], [47.377636, 8.505869], [47.394696, 8.525485], [47.373269, 8.535125], [47.37764, 8.498599], [47.387651, 8.5295], [47.383264, 8.506101], [47.36828, 8.524297], [47.376989, 8.543107], [47.356694, 8.534757], [47.413152, 8.540942], [47.386044, 8.548142], [47.39127, 8.515785], [47.391253, 8.526302], [47.374322, 8.537887], [47.369153, 8.528089], [47.370686, 8.557727], [47.412259, 8.556215], [47.405866, 8.566098], [47.375627, 8.493461], [47.368429, 8.534257], [47.413957, 8.525215], [47.373605, 8.536668], [47.381085, 8.528505], [47.383548, 8.545746], [47.36859, 8.534313], [47.38937, 8.486633], [47.360717, 8.553361], [47.419744, 8.504645], [47.423402, 8.539497], [47.339103, 8.519125], [47.419115, 8.506448], [47.370981, 8.526921], [47.370358, 8.548915], [47.388671, 8.51768], [47.39377, 8.49635], [47.426008, 8.493491], [47.405544, 8.585078], [47.408436, 8.550596], [47.397197, 8.531166], [47.418497, 8.508159], [47.388939, 8.520771], [47.362479, 8.533725], [47.382289, 8.514266], [47.336347, 8.529986], [47.358268, 8.55458], [47.39147, 8.505881], [47.378841, 8.528962], [47.373508, 8.534573], [47.362424, 8.510794], [47.400286, 8.494055], [47.418375, 8.546881], [47.394723, 8.525538], [47.410369, 8.536524], [47.377189, 8.539999], [47.390865, 8.523552], [47.387607, 8.529393], [47.368173, 8.559951], [47.326261, 8.514975], [47.363496, 8.499959], [47.380138, 8.54304], [47.379061, 8.524702], [47.376884, 8.540933], [47.424266, 8.501011], [47.37247, 8.526409], [47.366946, 8.560376], [47.366874, 8.545413], [47.352043, 8.573007], [47.366123, 8.533601], [47.399193, 8.520834], [47.365517, 8.521567], [47.381824, 8.5482], [47.384136, 8.527415], [47.35148, 8.560712], [47.368637, 8.559431], [47.349916, 8.534327], [47.373932, 8.502657], [47.376604, 8.568961], [47.379677, 8.511724], [47.388079, 8.529019], [47.382509, 8.548069], [47.415506, 8.550598], [47.354779, 8.523268], [47.415003, 8.54579], [47.368475, 8.523692], [47.37003, 8.54091], [47.376491, 8.528331], [47.365099, 8.521095], [47.332885, 8.529902], [47.391028, 8.488335], [47.364614, 8.504562], [47.377666, 8.551265], [47.373442, 8.534877], [47.354133, 8.563468], [47.407561, 8.584949], [47.413332, 8.531484], [47.378836, 8.542761], [47.343273, 8.535712], [47.36075, 8.551852], [47.383146, 8.513979], [47.361364, 8.602622], [47.337941, 8.536463], [47.356478, 8.535799], [47.36986, 8.519815], [47.381459, 8.513547], [47.395845, 8.53343], [47.359959, 8.589379], [47.367001, 8.563965], [47.387672, 8.53962], [47.377858, 8.509105], [47.374323, 8.543436], [47.373639, 8.536867], [47.376447, 8.528185], [47.410901, 8.557975], [47.409717, 8.576051], [47.379002, 8.547082], [47.376834, 8.544256], [47.378816, 8.539225], [47.364616, 8.516901], [47.368312, 8.534228], [47.39971, 8.491142], [47.422273, 8.537101], [47.393615, 8.524774], [47.378468, 8.51019], [47.384857, 8.531999], [47.349407, 8.527249], [47.360415, 8.552017], [47.386031, 8.515255], [47.377749, 8.537932], [47.374069, 8.475752], [47.397358, 8.531262], [47.373492, 8.485924], [47.352773, 8.509779], [47.404294, 8.569562], [47.412207, 8.555008], [47.3909, 8.478663], [47.366838, 8.534079], [47.378685, 8.575044], [47.365782, 8.520195], [47.364286, 8.546127], [47.356603, 8.510028], [47.369005, 8.53799], [47.376083, 8.559628], [47.411107, 8.526098], [47.426329, 8.492742], [47.378139, 8.499125], [47.365956, 8.49556], [47.410859, 8.57157], [47.366398, 8.520711], [47.357659, 8.535452], [47.376438, 8.534872], [47.36434, 8.534769], [47.425615, 8.494146], [47.387886, 8.482683], [47.373414, 8.503295], [47.405906, 8.58494], [47.37025, 8.548846], [47.387565, 8.488372], [47.392952, 8.485485], [47.40834, 8.544632], [47.366728, 8.545675], [47.357157, 8.522006], [47.413783, 8.54546], [47.412921, 8.537743], [47.379079, 8.500508], [47.383306, 8.51328], [47.365679, 8.505166], [47.365693, 8.526813], [47.382156, 8.529467], [47.364509, 8.530271], [47.425962, 8.49357], [47.368159, 8.560481], [47.366416, 8.540624], [47.410819, 8.529842], [47.384432, 8.528467], [47.366856, 8.544459], [47.406606, 8.575044], [47.379465, 8.523916], [47.398194, 8.536154], [47.365894, 8.530246], [47.382594, 8.55052], [47.387368, 8.519428], [47.372169, 8.522006], [47.398776, 8.494886], [47.375011, 8.528751], [47.407353, 8.547195], [47.400362, 8.477655], [47.38599, 8.498275], [47.379794, 8.506866], [47.414154, 8.527273], [47.367712, 8.519625], [47.369137, 8.527903], [47.405085, 8.478675], [47.373385, 8.519966], [47.375786, 8.53997], [47.364306, 8.548722], [47.421461, 8.497894], [47.365088, 8.530839], [47.391744, 8.484799], [47.373258, 8.531549], [47.40123, 8.545067], [47.393631, 8.511435], [47.380226, 8.536592], [47.375091, 8.540247], [47.377877, 8.5215], [47.393501, 8.541568], [47.409332, 8.550058], [47.373892, 8.503093], [47.385568, 8.532927], [47.377499, 8.535794], [47.393208, 8.539244], [47.382557, 8.529793], [47.37535, 8.561003], [47.40271, 8.535161], [47.362881, 8.530224], [47.376692, 8.548729], [47.389634, 8.521434], [47.392036, 8.51082], [47.424484, 8.536378], [47.419613, 8.548179], [47.360511, 8.524047], [47.405553, 8.585131], [47.369289, 8.547846], [47.377628, 8.538393], [47.382766, 8.539995], [47.388505, 8.488815], [47.378094, 8.510831], [47.382105, 8.488305], [47.407266, 8.585631], [47.414239, 8.509531], [47.380041, 8.547488], [47.42553, 8.55766], [47.381211, 8.518005], [47.366728, 8.541928], [47.40303, 8.555213], [47.378294, 8.520198], [47.392678, 8.532544], [47.407346, 8.550706], [47.418598, 8.554585], [47.385922, 8.542074], [47.365036, 8.566174], [47.37908, 8.559439], [47.401953, 8.499639], [47.374615, 8.549546], [47.38809, 8.520131], [47.388763, 8.515536], [47.375807, 8.551915], [47.372372, 8.531107], [47.386701, 8.488342], [47.376822, 8.52467], [47.371778, 8.536829], [47.405669, 8.591546], [47.378883, 8.519759], [47.385868, 8.532589], [47.378429, 8.526941], [47.398632, 8.53925], [47.386227, 8.52506], [47.335036, 8.527921], [47.391533, 8.545117], [47.377815, 8.507925], [47.376596, 8.539007], [47.418097, 8.538354], [47.362804, 8.548731], [47.3377, 8.525819], [47.368292, 8.52684], [47.377389, 8.54824], [47.378164, 8.509985], [47.396598, 8.542228], [47.401606, 8.551792], [47.391796, 8.518233], [47.411487, 8.546671], [47.335127, 8.519203], [47.373265, 8.552418], [47.395554, 8.5299], [47.39941, 8.548169], [47.384773, 8.509323], [47.38293, 8.515007], [47.40186, 8.485183], [47.37369, 8.537199], [47.355907, 8.555947], [47.406853, 8.550603], [47.3767, 8.544174], [47.363987, 8.535913], [47.39769, 8.533269], [47.396262, 8.545361], [47.357902, 8.554228], [47.387341, 8.516553], [47.390872, 8.478755], [47.387807, 8.488443], [47.359221, 8.527303], [47.41383, 8.52728], [47.409167, 8.547484], [47.404748, 8.494011], [47.366286, 8.552352], [47.407479, 8.585901], [47.389873, 8.512247], [47.367382, 8.494039], [47.411107, 8.571072], [47.365922, 8.545248], [47.382362, 8.563283], [47.380501, 8.525646], [47.408712, 8.546216], [47.370344, 8.514237], [47.370503, 8.515551], [47.368295, 8.539776], [47.378918, 8.519813], [47.377392, 8.529052], [47.3753, 8.543853], [47.378993, 8.511816], [47.408138, 8.536624], [47.378195, 8.510608], [47.386057, 8.529706], [47.398813, 8.529649], [47.383397, 8.548392], [47.3858, 8.545448], [47.363228, 8.549521], [47.388425, 8.539913], [47.377214, 8.540212], [47.370163, 8.539205], [47.378618, 8.528785], [47.379462, 8.527982], [47.366858, 8.549927], [47.369014, 8.537963], [47.394909, 8.522985], [47.366921, 8.544302], [47.379934, 8.528561], [47.372544, 8.534739], [47.389632, 8.527395], [47.361908, 8.514067], [47.379516, 8.528936], [47.390078, 8.547657], [47.385829, 8.474392], [47.354488, 8.52358], [47.39159, 8.514308], [47.372517, 8.534712], [47.404966, 8.555956], [47.42604, 8.54765], [47.377329, 8.512736], [47.368365, 8.496746], [47.370287, 8.556275], [47.414234, 8.483478], [47.403504, 8.497272], [47.363259, 8.554671], [47.368021, 8.556135], [47.375823, 8.538938], [47.376749, 8.538123], [47.3779, 8.51137], [47.391806, 8.477952], [47.388323, 8.547739], [47.403612, 8.497234], [47.407448, 8.548562], [47.38475, 8.531957], [47.389087, 8.486151], [47.389899, 8.476895], [47.40904, 8.547601], [47.366932, 8.545043], [47.406816, 8.550629], [47.381682, 8.516651], [47.374093, 8.544914], [47.384313, 8.516174], [47.388147, 8.497457], [47.355622, 8.508142], [47.359996, 8.511751], [47.375277, 8.485403], [47.383702, 8.498666], [47.361036, 8.521754], [47.392818, 8.524413], [47.379046, 8.529192], [47.360757, 8.524594], [47.413754, 8.546586], [47.383274, 8.506075], [47.366418, 8.545139], [47.365354, 8.538868], [47.406178, 8.484062], [47.387306, 8.488116], [47.356583, 8.600426], [47.367338, 8.537359], [47.403136, 8.486268], [47.432504, 8.528192], [47.374966, 8.544892], [47.411201, 8.54648], [47.333516, 8.534506], [47.374398, 8.521271], [47.398312, 8.536965], [47.411172, 8.570848], [47.377737, 8.509552], [47.39625, 8.527663], [47.382946, 8.550382], [47.36772, 8.488511], [47.374857, 8.528947], [47.411325, 8.572666], [47.35107, 8.579618], [47.374818, 8.530151], [47.369467, 8.526255], [47.354032, 8.508891], [47.406866, 8.586921], [47.332941, 8.518259], [47.403869, 8.485779], [47.378576, 8.575148], [47.383256, 8.532959], [47.343848, 8.530126], [47.378552, 8.528162], [47.353484, 8.576466], [47.428002, 8.545742], [47.398841, 8.510321], [47.370057, 8.540858], [47.370188, 8.548792], [47.375767, 8.491888], [47.396588, 8.493187], [47.381131, 8.517871], [47.403141, 8.502485], [47.360126, 8.551177], [47.425241, 8.494722], [47.413837, 8.545435], [47.35935, 8.592716], [47.339898, 8.530244], [47.330064, 8.515118], [47.426748, 8.49222], [47.372981, 8.531318], [47.39314, 8.5265], [47.39118, 8.489464], [47.348395, 8.562513], [47.374845, 8.518658], [47.378174, 8.507032], [47.384408, 8.528162], [47.387419, 8.5398], [47.396013, 8.545038], [47.370271, 8.514315], [47.365723, 8.562204], [47.354181, 8.555792], [47.375426, 8.539075], [47.366946, 8.539814], [47.37653, 8.536463], [47.373493, 8.529502], [47.353034, 8.500982], [47.399637, 8.495115], [47.357365, 8.521851], [47.370152, 8.548791], [47.405894, 8.59061], [47.374803, 8.49792], [47.361138, 8.600989], [47.367382, 8.494026], [47.390592, 8.489796], [47.378371, 8.54058], [47.375258, 8.550036], [47.366714, 8.537691], [47.364486, 8.552433], [47.371715, 8.519574], [47.385821, 8.530006], [47.404386, 8.572082], [47.369601, 8.555612], [47.395549, 8.542816], [47.381334, 8.542151], [47.418088, 8.538367], [47.420583, 8.513051], [47.377083, 8.539798], [47.392843, 8.537938], [47.383577, 8.488691], [47.381819, 8.490074], [47.363833, 8.534136], [47.366752, 8.542167], [47.366557, 8.544718], [47.408304, 8.577054], [47.33415, 8.515902], [47.378881, 8.542762], [47.413747, 8.553874], [47.351035, 8.580425], [47.371907, 8.536461], [47.38323, 8.505994], [47.414152, 8.518805], [47.361324, 8.535038], [47.378403, 8.520094], [47.399582, 8.539574], [47.418504, 8.54752], [47.415492, 8.546463], [47.409964, 8.535602], [47.378048, 8.508963], [47.376944, 8.528897], [47.370895, 8.508144], [47.416518, 8.554807], [47.428811, 8.48892], [47.361466, 8.565119], [47.407888, 8.478027], [47.39267, 8.52286], [47.408719, 8.550165], [47.344551, 8.519513], [47.351046, 8.581973], [47.386802, 8.489192], [47.370794, 8.535259], [47.368157, 8.53445], [47.402735, 8.499694], [47.374752, 8.527647], [47.390845, 8.478794], [47.40963, 8.576698], [47.334984, 8.528661], [47.387411, 8.493389], [47.383589, 8.543297], [47.359477, 8.535424], [47.354806, 8.574721], [47.384618, 8.494897], [47.383068, 8.529062], [47.368489, 8.530736], [47.388395, 8.491011], [47.374478, 8.539453], [47.3677, 8.495634], [47.355369, 8.554837], [47.376349, 8.488231], [47.391103, 8.487965], [47.367111, 8.5442], [47.376119, 8.510354], [47.369155, 8.556145], [47.405618, 8.549941], [47.413439, 8.536323], [47.37747, 8.548308], [47.409531, 8.53762], [47.352888, 8.488431], [47.351755, 8.527283], [47.427752, 8.537055], [47.356457, 8.523686], [47.374826, 8.516843], [47.415725, 8.529479], [47.37017, 8.548792], [47.36839, 8.493993], [47.378117, 8.539859], [47.37004, 8.564082], [47.370653, 8.516772], [47.373198, 8.547305], [47.368632, 8.553447], [47.376061, 8.535738], [47.386942, 8.498426], [47.372449, 8.523839], [47.371346, 8.546221], [47.375882, 8.510733], [47.414676, 8.520499], [47.368835, 8.500397], [47.385644, 8.521102], [47.378225, 8.515111], [47.366488, 8.540692], [47.371818, 8.488009], [47.379433, 8.54427], [47.418553, 8.54711], [47.35839, 8.505457], [47.335072, 8.518355], [47.381238, 8.494591], [47.422467, 8.550743], [47.35245, 8.572751], [47.366034, 8.562528], [47.379521, 8.516965], [47.367109, 8.539711], [47.366104, 8.540353], [47.359674, 8.535467], [47.39393, 8.483703], [47.39908, 8.498986], [47.391334, 8.51568], [47.415364, 8.551337], [47.402564, 8.492762], [47.370152, 8.548804], [47.399612, 8.468036], [47.375404, 8.528177], [47.336413, 8.521069], [47.334935, 8.53001], [47.376503, 8.511607], [47.424971, 8.529536], [47.359245, 8.592422], [47.353272, 8.576144], [47.385012, 8.508785], [47.409362, 8.549701], [47.380774, 8.536709], [47.38934, 8.521163], [47.398294, 8.536938], [47.369951, 8.551899], [47.353559, 8.576216], [47.403722, 8.486121], [47.378579, 8.519501], [47.387671, 8.48656], [47.357918, 8.520473], [47.35762, 8.521486], [47.377903, 8.509079], [47.387287, 8.484235], [47.363032, 8.563219], [47.388183, 8.497471], [47.373785, 8.536671], [47.375765, 8.516544], [47.373786, 8.537479], [47.418124, 8.538354], [47.410708, 8.550021], [47.391411, 8.53616], [47.39484, 8.538801], [47.356266, 8.526753], [47.384431, 8.498575], [47.381522, 8.515482], [47.371894, 8.56579], [47.376132, 8.516737], [47.374433, 8.51853], [47.383238, 8.49924], [47.36555, 8.598741], [47.377652, 8.527269], [47.370063, 8.503837], [47.389621, 8.512255], [47.373765, 8.534036], [47.423552, 8.502376], [47.354464, 8.553481], [47.422827, 8.535668], [47.358263, 8.585332], [47.386815, 8.535165], [47.381841, 8.529447], [47.373648, 8.519772], [47.377247, 8.538716], [47.35651, 8.488727], [47.378408, 8.540501], [47.381342, 8.508724], [47.369824, 8.510241], [47.414273, 8.534617], [47.369651, 8.577182], [47.373056, 8.552692], [47.360454, 8.516605], [47.355025, 8.554076], [47.340171, 8.529918], [47.370842, 8.548117], [47.379872, 8.554781], [47.349855, 8.561287], [47.419126, 8.506237], [47.378112, 8.526206], [47.377044, 8.548577], [47.392489, 8.502722], [47.391114, 8.522842], [47.361315, 8.525585], [47.387097, 8.489357], [47.368997, 8.50138], [47.386089, 8.54809], [47.373175, 8.527959], [47.386166, 8.528701], [47.387797, 8.529291], [47.34294, 8.535825], [47.396097, 8.539993], [47.36401, 8.551457], [47.375667, 8.527004], [47.397065, 8.480254], [47.403216, 8.559232], [47.390556, 8.536196], [47.424771, 8.502837], [47.384431, 8.531461], [47.379985, 8.52786], [47.366161, 8.521024], [47.383328, 8.543358], [47.367396, 8.545358], [47.392589, 8.523826], [47.379865, 8.524375], [47.4041, 8.564576], [47.383651, 8.548159], [47.380268, 8.541612], [47.372389, 8.5207], [47.370456, 8.532048], [47.36801, 8.520466], [47.394164, 8.51799], [47.373453, 8.598278], [47.356912, 8.55524], [47.397547, 8.48168], [47.387276, 8.488499], [47.393417, 8.500569], [47.378606, 8.542346], [47.374669, 8.545787], [47.377398, 8.529436], [47.37921, 8.522295], [47.376376, 8.528077], [47.370783, 8.546779], [47.371915, 8.564612], [47.380743, 8.578902], [47.385135, 8.536839], [47.341443, 8.529574], [47.397311, 8.531513], [47.385797, 8.548534], [47.399169, 8.542335], [47.379654, 8.527694], [47.396783, 8.540682], [47.363839, 8.5317], [47.373362, 8.529128], [47.412099, 8.546631], [47.394171, 8.524971], [47.359306, 8.592569], [47.374455, 8.539956], [47.362077, 8.547577], [47.373902, 8.536621], [47.387733, 8.529409], [47.370184, 8.535988], [47.364204, 8.526333], [47.409323, 8.543459], [47.414432, 8.475518], [47.349557, 8.532374], [47.379108, 8.522585], [47.354057, 8.525398], [47.389247, 8.494313], [47.368058, 8.560704], [47.373072, 8.533095], [47.369837, 8.52903], [47.361548, 8.561374], [47.363701, 8.532015], [47.361846, 8.52647], [47.414213, 8.518091], [47.37016, 8.51271], [47.377958, 8.548067], [47.361859, 8.569178], [47.368921, 8.525012], [47.383348, 8.49903], [47.408027, 8.547315], [47.367951, 8.534393], [47.39419, 8.518056], [47.402479, 8.49325], [47.399207, 8.505731], [47.372843, 8.554197], [47.390164, 8.509961], [47.375957, 8.541933], [47.409266, 8.544744], [47.366094, 8.540445], [47.422104, 8.506164], [47.367146, 8.54616], [47.421306, 8.500117], [47.372627, 8.550524], [47.38628, 8.531843], [47.406311, 8.562914], [47.370707, 8.566705], [47.381818, 8.533778], [47.381097, 8.511845], [47.409929, 8.541259], [47.370859, 8.548223], [47.398164, 8.518309], [47.37539, 8.489854], [47.377702, 8.509406], [47.400312, 8.582103], [47.353678, 8.512047], [47.36457, 8.537077], [47.423794, 8.516933], [47.352188, 8.558133], [47.362803, 8.548784], [47.360453, 8.561073], [47.380626, 8.525754], [47.385981, 8.518658], [47.408786, 8.540348], [47.386089, 8.543362], [47.363234, 8.517509], [47.390841, 8.522214], [47.397146, 8.518487], [47.397012, 8.530765], [47.384966, 8.50885], [47.40896, 8.482858], [47.426418, 8.54392], [47.372937, 8.520738], [47.388517, 8.531226], [47.382949, 8.551892], [47.373434, 8.529116], [47.378443, 8.540647], [47.419237, 8.507856], [47.412175, 8.546222], [47.377161, 8.540131], [47.379288, 8.544386], [47.377247, 8.538729], [47.369696, 8.541923], [47.360356, 8.51659], [47.366595, 8.533187], [47.374748, 8.550741], [47.369222, 8.525548], [47.370794, 8.535246], [47.386154, 8.482226], [47.390565, 8.491822], [47.383207, 8.530535], [47.379463, 8.525942], [47.3558, 8.557653], [47.369247, 8.519987], [47.373745, 8.546536], [47.380889, 8.481606], [47.366396, 8.519877], [47.385572, 8.520107], [47.373759, 8.500018], [47.408878, 8.495842], [47.409474, 8.535128], [47.366936, 8.53616], [47.387054, 8.534667], [47.373256, 8.535508], [47.404468, 8.571951], [47.366587, 8.533081], [47.377068, 8.539507], [47.370208, 8.524933], [47.412955, 8.543694], [47.366475, 8.544875], [47.369346, 8.536169], [47.398474, 8.591377], [47.33642, 8.520354], [47.372893, 8.520657], [47.400006, 8.545108], [47.40238, 8.583049], [47.39054, 8.545414], [47.383281, 8.4787], [47.397363, 8.533647], [47.393762, 8.493343], [47.354887, 8.574683], [47.370501, 8.548997], [47.372784, 8.535048], [47.383714, 8.540598], [47.376718, 8.5442], [47.42069, 8.502517], [47.370015, 8.509993], [47.430234, 8.542714], [47.355985, 8.57374], [47.374042, 8.544648], [47.386924, 8.535114], [47.389633, 8.511964], [47.377305, 8.521144], [47.376928, 8.543808], [47.365324, 8.532552], [47.369342, 8.557209], [47.359352, 8.551267], [47.369716, 8.525545], [47.374986, 8.537173], [47.39381, 8.501888], [47.383166, 8.574888], [47.378464, 8.567359], [47.368732, 8.528822], [47.359972, 8.594397], [47.378606, 8.510801], [47.354333, 8.557794], [47.387246, 8.500591], [47.357747, 8.554424], [47.374218, 8.537475], [47.384231, 8.493883], [47.350339, 8.577948], [47.393414, 8.499906], [47.38792, 8.52483], [47.406912, 8.586843], [47.368809, 8.501257], [47.391941, 8.51813], [47.394395, 8.474055], [47.357786, 8.522945], [47.360534, 8.561101], [47.404233, 8.561996], [47.384574, 8.54288], [47.357882, 8.526164], [47.384474, 8.481054], [47.372344, 8.535953], [47.413885, 8.527202], [47.408881, 8.546445], [47.37437, 8.541384], [47.358179, 8.574779], [47.365063, 8.531567], [47.391014, 8.523025], [47.383212, 8.505981], [47.398989, 8.499103], [47.369287, 8.547992], [47.382521, 8.588291], [47.368369, 8.547165], [47.387119, 8.48198], [47.377153, 8.526769], [47.368915, 8.535194], [47.378468, 8.540794], [47.378067, 8.547923], [47.370856, 8.549508], [47.39743, 8.532257], [47.384472, 8.516509], [47.363606, 8.575305], [47.387991, 8.526898], [47.362545, 8.535315], [47.361508, 8.576465], [47.362167, 8.547526], [47.368564, 8.547474], [47.38463, 8.531292], [47.378087, 8.483087], [47.380315, 8.48333], [47.425887, 8.493926], [47.397378, 8.532018], [47.36545, 8.539174], [47.393795, 8.52854], [47.376938, 8.541808], [47.374774, 8.551774], [47.369595, 8.533632], [47.370151, 8.548937], [47.406987, 8.550632], [47.360414, 8.526679], [47.365998, 8.533492], [47.374948, 8.544839], [47.393347, 8.529338], [47.386197, 8.498226], [47.382134, 8.5719], [47.358562, 8.508254], [47.342, 8.530604], [47.37859, 8.54216], [47.382699, 8.488316], [47.378773, 8.491748], [47.356361, 8.535783], [47.411305, 8.527944], [47.371502, 8.547773], [47.362389, 8.559062], [47.387247, 8.537094], [47.371891, 8.542829], [47.35178, 8.530328], [47.377027, 8.540075], [47.431346, 8.516463], [47.358446, 8.532133], [47.415459, 8.48333], [47.407166, 8.550729], [47.353507, 8.553911], [47.384643, 8.53471], [47.374931, 8.544746], [47.36129, 8.576712], [47.359639, 8.593543], [47.405195, 8.50503], [47.409154, 8.549856], [47.406657, 8.551288], [47.430397, 8.536076], [47.362685, 8.575749], [47.359552, 8.522637], [47.411108, 8.570913], [47.414525, 8.517461], [47.376503, 8.511607], [47.364001, 8.551457], [47.390108, 8.52563], [47.37896, 8.508597], [47.399936, 8.467022], [47.418314, 8.548523], [47.415298, 8.51749], [47.378128, 8.509984], [47.418114, 8.53838], [47.389329, 8.521375], [47.382412, 8.505832], [47.348405, 8.534296], [47.414683, 8.544458], [47.366263, 8.553821], [47.356987, 8.553031], [47.410428, 8.543615], [47.415971, 8.50893], [47.374601, 8.532239], [47.384688, 8.549717], [47.389814, 8.511755], [47.387921, 8.48577], [47.426312, 8.545548], [47.369603, 8.535685], [47.387555, 8.519697], [47.393862, 8.505028], [47.414897, 8.546596], [47.359131, 8.573012], [47.358085, 8.555808], [47.415056, 8.546878], [47.408069, 8.572584], [47.385811, 8.547065], [47.376611, 8.518349], [47.377, 8.535281], [47.369992, 8.491919], [47.359309, 8.55762], [47.382101, 8.501601], [47.374789, 8.527582], [47.378987, 8.508531], [47.378014, 8.536507], [47.401715, 8.581166], [47.38145, 8.528949], [47.39341, 8.512941], [47.379846, 8.542478], [47.416797, 8.567787], [47.405162, 8.481101], [47.34411, 8.531878], [47.417428, 8.553726], [47.361001, 8.54819], [47.352872, 8.572866], [47.377197, 8.526902], [47.3734, 8.531698], [47.406112, 8.568501], [47.377246, 8.538808], [47.370545, 8.49144], [47.383421, 8.484066], [47.378786, 8.542363], [47.380545, 8.517025], [47.377189, 8.540026], [47.375358, 8.540597], [47.366512, 8.544743], [47.383451, 8.533268], [47.407939, 8.5367], [47.376865, 8.538165], [47.357276, 8.536027], [47.398389, 8.548677], [47.38753, 8.487233], [47.381462, 8.537227], [47.377122, 8.543308], [47.373217, 8.533005], [47.368713, 8.500897], [47.397473, 8.532443], [47.367581, 8.509613], [47.377871, 8.517381], [47.429953, 8.549561], [47.371396, 8.542859], [47.38363, 8.573468], [47.368164, 8.557237], [47.375705, 8.523866], [47.417912, 8.505284], [47.382541, 8.531514], [47.366082, 8.532249], [47.367637, 8.501578], [47.403089, 8.547199], [47.366567, 8.531439], [47.370703, 8.546671], [47.410971, 8.536669], [47.389954, 8.538978], [47.409442, 8.537579], [47.383217, 8.539872], [47.386446, 8.548415], [47.358395, 8.581999], [47.407713, 8.543479], [47.380835, 8.534963], [47.389826, 8.486934], [47.380429, 8.547376], [47.412924, 8.537425], [47.366444, 8.545205], [47.350348, 8.577988], [47.393335, 8.524821], [47.391433, 8.487296], [47.374185, 8.521001], [47.392303, 8.531317], [47.420212, 8.500718], [47.363585, 8.521408], [47.399434, 8.506451], [47.373199, 8.529191], [47.369922, 8.511236], [47.35957, 8.52269], [47.363061, 8.526362], [47.406495, 8.549429], [47.374078, 8.526653], [47.358983, 8.591622], [47.40395, 8.571622], [47.422538, 8.550771], [47.384495, 8.548309], [47.364257, 8.547278], [47.3892, 8.513968], [47.357547, 8.553705], [47.405702, 8.533619], [47.390681, 8.488964], [47.359744, 8.593836], [47.371964, 8.535217], [47.373029, 8.528115], [47.379424, 8.555513], [47.404573, 8.54817], [47.375507, 8.517175], [47.368327, 8.548714], [47.376935, 8.522183], [47.380309, 8.493964], [47.42423, 8.548858], [47.354781, 8.526829], [47.373853, 8.538063], [47.413117, 8.474737], [47.386256, 8.535326], [47.370859, 8.557585], [47.377033, 8.544154], [47.368583, 8.534141], [47.398932, 8.513131], [47.368105, 8.541811], [47.370994, 8.548239], [47.403042, 8.484769], [47.351677, 8.55889], [47.408785, 8.57941], [47.381172, 8.515435], [47.421023, 8.507322], [47.418115, 8.538367], [47.37017, 8.548765], [47.36342, 8.554794], [47.403885, 8.567248], [47.384358, 8.548518], [47.379176, 8.544861], [47.410384, 8.548212], [47.374961, 8.536868], [47.376667, 8.527792], [47.359687, 8.549129], [47.379952, 8.528548], [47.374014, 8.54474], [47.381933, 8.529198], [47.370571, 8.524543], [47.384658, 8.541584], [47.393295, 8.494274], [47.32956, 8.529609], [47.357424, 8.521323], [47.363205, 8.563911], [47.337795, 8.534779], [47.365029, 8.502519], [47.396029, 8.545237], [47.402309, 8.486172], [47.350703, 8.601966], [47.36838, 8.548768], [47.396136, 8.538775], [47.37197, 8.538316], [47.429909, 8.542892], [47.37079, 8.546977], [47.330108, 8.529673], [47.379363, 8.542216], [47.417776, 8.509244], [47.361245, 8.525359], [47.40576, 8.577808], [47.370658, 8.546644], [47.393872, 8.505889], [47.388032, 8.529216], [47.378639, 8.541737], [47.396999, 8.530288], [47.407229, 8.55073], [47.413601, 8.523896], [47.362655, 8.558551], [47.403641, 8.496957], [47.415682, 8.512913], [47.362204, 8.5475], [47.391733, 8.519159], [47.405578, 8.5753], [47.405676, 8.575395], [47.367565, 8.534306], [47.354375, 8.526], [47.361999, 8.525507], [47.369653, 8.525583], [47.393202, 8.528501], [47.426128, 8.495084], [47.361937, 8.526392], [47.373103, 8.538405], [47.356564, 8.524734], [47.398414, 8.537537], [47.399733, 8.517837], [47.37518, 8.534701], [47.392341, 8.476373], [47.391414, 8.550956], [47.35506, 8.557002], [47.390258, 8.490955], [47.383258, 8.55713], [47.36306, 8.563114], [47.410107, 8.569368], [47.394016, 8.5251], [47.387322, 8.539613], [47.418883, 8.544532], [47.374174, 8.52116], [47.390895, 8.522189], [47.371588, 8.515904], [47.353474, 8.525214], [47.369561, 8.541907], [47.386615, 8.534446], [47.373912, 8.536515], [47.354388, 8.52367], [47.377005, 8.544246], [47.360751, 8.553533], [47.42932, 8.543318], [47.382501, 8.500152], [47.375729, 8.538459], [47.404575, 8.588502], [47.364401, 8.531182], [47.383656, 8.573588], [47.381817, 8.545233], [47.375372, 8.524799], [47.368753, 8.554005], [47.381066, 8.518095], [47.378224, 8.530486], [47.40686, 8.550736], [47.368815, 8.524798], [47.405733, 8.591455], [47.376533, 8.525697], [47.366898, 8.545771], [47.354868, 8.574762], [47.375953, 8.515608], [47.376182, 8.536178], [47.407518, 8.579237], [47.377339, 8.488145], [47.367351, 8.54541], [47.411829, 8.524827], [47.396582, 8.521099], [47.37246, 8.533148], [47.372986, 8.517442], [47.339927, 8.530046], [47.402307, 8.499302], [47.381469, 8.503734], [47.411091, 8.545762], [47.394165, 8.527448], [47.3462, 8.534449], [47.394026, 8.525007], [47.37009, 8.512524], [47.392837, 8.490198], [47.357102, 8.522058], [47.400909, 8.548558], [47.428302, 8.489507], [47.371783, 8.54284], [47.366461, 8.498403], [47.367687, 8.522273], [47.392044, 8.499203], [47.360307, 8.523659], [47.371964, 8.519923], [47.367051, 8.543881], [47.384704, 8.531996], [47.396002, 8.545289], [47.367165, 8.546995], [47.369029, 8.519295], [47.377354, 8.525422], [47.338906, 8.538124], [47.388076, 8.540714], [47.35968, 8.522441], [47.376494, 8.511633], [47.378495, 8.523684], [47.371102, 8.531227], [47.352268, 8.573012], [47.360414, 8.526679], [47.36396, 8.533159], [47.407563, 8.544099], [47.408961, 8.579798], [47.360863, 8.554966], [47.37478, 8.515108], [47.389543, 8.521591], [47.369331, 8.533998], [47.363751, 8.575203], [47.369483, 8.540701], [47.368443, 8.538441], [47.368474, 8.541845], [47.369586, 8.533632], [47.379462, 8.49506], [47.400031, 8.494408], [47.360857, 8.585017], [47.417126, 8.523027], [47.384872, 8.531364], [47.374142, 8.532243], [47.373056, 8.547104], [47.369134, 8.548015], [47.372559, 8.478689], [47.414072, 8.541597], [47.390897, 8.526864], [47.369032, 8.532336], [47.375551, 8.526895], [47.371429, 8.546064], [47.392638, 8.51572], [47.383482, 8.530024], [47.366977, 8.544104], [47.36702, 8.539551], [47.363408, 8.575394], [47.378369, 8.541745], [47.381018, 8.518438], [47.384539, 8.480737], [47.407465, 8.530701], [47.382137, 8.516117], [47.387683, 8.519434], [47.38278, 8.514673], [47.399885, 8.504447], [47.394188, 8.490053], [47.387457, 8.519549], [47.338778, 8.528792], [47.344755, 8.533162], [47.384349, 8.494786], [47.363687, 8.535325], [47.385875, 8.535662], [47.360544, 8.562875], [47.389848, 8.477596], [47.389839, 8.477609], [47.374551, 8.539362], [47.416521, 8.553535], [47.344141, 8.532435], [47.370224, 8.541232], [47.379026, 8.540805], [47.381158, 8.518812], [47.389754, 8.524006], [47.37735, 8.512392], [47.426919, 8.536667], [47.370692, 8.519342], [47.414071, 8.541663], [47.37653, 8.527021], [47.38157, 8.541917], [47.403117, 8.486413], [47.363386, 8.534882], [47.385537, 8.530503], [47.392054, 8.517589], [47.357843, 8.521662], [47.368961, 8.528429], [47.371975, 8.534992], [47.370637, 8.519433], [47.360533, 8.566728], [47.37808, 8.509347], [47.381593, 8.555373], [47.369014, 8.53795], [47.380091, 8.528074], [47.375942, 8.541602], [47.337195, 8.519232], [47.381309, 8.540945], [47.41053, 8.569271], [47.406321, 8.58479], [47.371756, 8.525812], [47.378362, 8.510055], [47.404242, 8.561943], [47.408741, 8.539379], [47.364556, 8.54698], [47.377907, 8.540266], [47.38376, 8.540519], [47.370174, 8.540874], [47.376865, 8.52675], [47.385364, 8.536473], [47.366943, 8.542952], [47.392802, 8.523247], [47.373871, 8.517075], [47.349076, 8.574705], [47.368028, 8.540445], [47.388799, 8.530901], [47.393361, 8.492924], [47.360502, 8.527793], [47.394229, 8.493392], [47.394912, 8.516892], [47.384577, 8.50912], [47.378886, 8.515588], [47.427319, 8.539034], [47.372341, 8.542786], [47.39323, 8.524567], [47.378608, 8.519383], [47.354972, 8.534285], [47.390405, 8.538881], [47.402558, 8.46951], [47.405138, 8.478782], [47.39617, 8.485667], [47.402971, 8.589699], [47.393442, 8.539262], [47.361721, 8.574074], [47.380232, 8.546339], [47.386296, 8.482507], [47.365074, 8.531421], [47.363867, 8.528669], [47.419874, 8.548211], [47.382736, 8.493151], [47.371415, 8.510299], [47.380365, 8.512294], [47.4091, 8.553605], [47.379402, 8.523888], [47.37296, 8.536363], [47.375966, 8.536226], [47.409075, 8.482012], [47.378337, 8.541347], [47.358319, 8.50531], [47.37824, 8.526884], [47.388322, 8.520388], [47.343726, 8.535378], [47.368287, 8.49734], [47.352283, 8.53415], [47.422615, 8.551277], [47.370895, 8.508184], [47.342645, 8.519422], [47.396338, 8.513424], [47.362162, 8.608279], [47.377513, 8.543793], [47.377002, 8.546458], [47.360955, 8.51594], [47.377914, 8.530016], [47.409455, 8.542853], [47.373096, 8.535373], [47.366756, 8.542696], [47.385922, 8.542021], [47.369521, 8.526216], [47.405158, 8.480478], [47.367235, 8.544401], [47.371056, 8.531292], [47.369333, 8.557208], [47.350122, 8.530612], [47.342939, 8.53593], [47.408899, 8.579664], [47.376502, 8.511779], [47.376581, 8.525407], [47.377689, 8.507896], [47.354815, 8.510786], [47.417288, 8.546792], [47.387013, 8.528494], [47.377253, 8.550277], [47.400923, 8.502109], [47.373888, 8.538104], [47.354472, 8.573933], [47.420782, 8.549118], [47.377213, 8.512641], [47.371209, 8.530421], [47.370857, 8.566099], [47.372957, 8.48541], [47.39724, 8.531405], [47.365013, 8.493423], [47.360879, 8.525034], [47.364123, 8.54619], [47.379364, 8.54211], [47.370473, 8.526394], [47.365115, 8.553453], [47.398014, 8.541754], [47.384864, 8.509219], [47.375448, 8.563918], [47.376454, 8.52837], [47.368624, 8.490065], [47.367773, 8.546385], [47.354397, 8.525616], [47.34051, 8.53023], [47.360316, 8.523645], [47.377812, 8.509183], [47.402048, 8.499058], [47.362558, 8.55835], [47.405809, 8.560889], [47.378935, 8.522833], [47.343629, 8.535164], [47.37663, 8.518244], [47.366694, 8.564978], [47.37403, 8.536491], [47.36867, 8.543888], [47.338483, 8.519099], [47.373808, 8.527628], [47.402341, 8.495593], [47.409463, 8.52295], [47.379084, 8.538515], [47.375599, 8.53508], [47.378022, 8.547975], [47.399558, 8.496968], [47.367056, 8.523399], [47.383915, 8.529874], [47.398489, 8.494841], [47.41077, 8.535102], [47.410734, 8.535088], [47.381268, 8.537713], [47.389684, 8.52476], [47.354818, 8.555011], [47.377165, 8.512957], [47.36117, 8.550219], [47.408381, 8.574777], [47.397974, 8.47423], [47.407006, 8.554276], [47.381951, 8.541594], [47.337303, 8.519287], [47.393006, 8.474465], [47.384323, 8.507341], [47.405972, 8.590943], [47.351652, 8.525759], [47.378525, 8.540477], [47.391443, 8.519444], [47.387622, 8.54391], [47.368881, 8.537828], [47.331617, 8.529823], [47.367151, 8.54003], [47.383617, 8.483302], [47.395318, 8.541526], [47.375114, 8.518796], [47.372983, 8.53684], [47.369533, 8.525912], [47.35801, 8.523082], [47.364033, 8.526356], [47.378441, 8.54556], [47.371077, 8.523375], [47.351926, 8.505037], [47.377059, 8.543307], [47.407156, 8.573969], [47.359104, 8.50706], [47.366842, 8.543188], [47.339787, 8.530559], [47.376024, 8.55919], [47.402904, 8.490993], [47.359723, 8.56769], [47.370175, 8.513028], [47.335108, 8.519229], [47.409608, 8.549415], [47.412583, 8.550577], [47.378769, 8.54227], [47.37069, 8.516733], [47.386133, 8.497417], [47.373297, 8.536953], [47.391542, 8.486226], [47.376598, 8.510059], [47.369997, 8.532939], [47.372259, 8.523928], [47.373352, 8.557385], [47.394232, 8.490146], [47.36932, 8.513104], [47.391845, 8.518751], [47.370078, 8.55643], [47.383609, 8.484176], [47.371401, 8.546116], [47.381438, 8.478531], [47.423367, 8.538449], [47.413299, 8.512865], [47.386449, 8.496297], [47.420688, 8.502689], [47.405021, 8.482794], [47.37466, 8.549534], [47.35479, 8.526829], [47.37449, 8.495769], [47.368264, 8.546819], [47.391718, 8.51888], [47.421038, 8.500801], [47.391496, 8.53856], [47.376299, 8.521879], [47.378301, 8.509802], [47.371322, 8.514455], [47.375142, 8.51869], [47.378189, 8.522804], [47.389651, 8.511938], [47.378542, 8.504179], [47.41303, 8.550864], [47.370219, 8.514142], [47.378441, 8.510229], [47.398569, 8.539209], [47.34845, 8.53435], [47.379346, 8.542149], [47.38798, 8.520394], [47.387573, 8.519671], [47.376194, 8.539634], [47.408909, 8.548194], [47.364482, 8.547243], [47.348298, 8.534254], [47.380249, 8.541784], [47.422529, 8.550771], [47.406686, 8.550149], [47.374904, 8.492811], [47.392257, 8.525673], [47.386061, 8.539706], [47.390591, 8.52201], [47.423844, 8.51932], [47.353628, 8.554364], [47.396963, 8.530287], [47.400112, 8.504199], [47.383249, 8.55713], [47.379307, 8.517702], [47.37198, 8.522016], [47.384695, 8.507984], [47.400111, 8.590512], [47.366236, 8.562108], [47.371912, 8.520637], [47.346195, 8.53302], [47.369479, 8.525897], [47.360666, 8.506429], [47.339928, 8.529914], [47.395835, 8.530661], [47.399821, 8.490734], [47.40238, 8.499184], [47.328789, 8.517831], [47.352791, 8.557245], [47.366556, 8.541964], [47.418015, 8.483102], [47.360981, 8.524758], [47.393336, 8.524781], [47.406957, 8.487496], [47.376274, 8.541622], [47.386613, 8.518393], [47.400214, 8.547788], [47.423664, 8.545984], [47.373888, 8.536289], [47.405361, 8.557925], [47.363214, 8.564918], [47.385589, 8.517352], [47.4021, 8.49735], [47.418225, 8.546613], [47.390362, 8.490375], [47.431355, 8.532689], [47.387051, 8.534984], [47.373666, 8.535914], [47.357112, 8.522918], [47.41442, 8.551291], [47.378439, 8.489914], [47.37364, 8.532021], [47.341817, 8.530839], [47.364349, 8.532902], [47.377349, 8.498898], [47.371792, 8.529599], [47.391542, 8.486226], [47.377274, 8.541458], [47.372609, 8.532608], [47.3341, 8.513559], [47.373326, 8.517634], [47.360953, 8.598814], [47.376238, 8.544495], [47.386531, 8.518537], [47.371801, 8.542841], [47.390953, 8.539939], [47.365167, 8.549892], [47.398521, 8.46828], [47.37651, 8.532953], [47.402636, 8.498672], [47.41316, 8.521979], [47.4063, 8.575951], [47.385017, 8.495554], [47.383172, 8.543646], [47.364457, 8.532905], [47.36933, 8.541677], [47.416075, 8.552187], [47.40751, 8.572718], [47.363913, 8.531464], [47.373886, 8.513461], [47.409323, 8.533058], [47.392738, 8.524239], [47.384095, 8.49988], [47.373119, 8.495225], [47.376248, 8.495353], [47.403861, 8.534231], [47.386583, 8.520644], [47.354646, 8.509565], [47.416974, 8.507439], [47.340395, 8.519469], [47.364389, 8.521915], [47.379756, 8.520624], [47.404689, 8.556692], [47.348118, 8.533271], [47.402442, 8.499304], [47.397313, 8.531301], [47.370476, 8.549738], [47.412287, 8.515322], [47.385001, 8.533896], [47.371725, 8.519548], [47.352544, 8.508318], [47.35979, 8.523158], [47.427537, 8.546356], [47.357866, 8.519293], [47.36413, 8.556702], [47.375956, 8.538252], [47.398985, 8.505422], [47.377837, 8.541866], [47.365467, 8.516323], [47.427321, 8.543568], [47.365405, 8.516255], [47.378441, 8.510255], [47.373478, 8.534917], [47.411912, 8.52846], [47.36696, 8.520179], [47.357954, 8.522313], [47.374132, 8.535195], [47.366638, 8.535266], [47.390324, 8.537886], [47.387428, 8.487628], [47.376186, 8.495299], [47.406358, 8.583744], [47.377069, 8.538434], [47.378829, 8.539715], [47.373204, 8.542896], [47.367552, 8.541283], [47.402031, 8.580193], [47.358209, 8.571629], [47.347085, 8.520676], [47.378948, 8.544273], [47.411316, 8.570824], [47.357389, 8.572777], [47.360946, 8.571449], [47.377557, 8.528724], [47.366129, 8.520547], [47.372945, 8.531291], [47.370503, 8.529891], [47.379654, 8.506519], [47.370857, 8.474803], [47.374369, 8.533903], [47.402541, 8.495279], [47.369, 8.502942], [47.37079, 8.531843], [47.369034, 8.503168], [47.370295, 8.548847], [47.36686, 8.545982], [47.372969, 8.53639], [47.360614, 8.516807], [47.407827, 8.54747], [47.375908, 8.541337], [47.37889, 8.527652], [47.387807, 8.529185], [47.402195, 8.537217], [47.356023, 8.557869], [47.402537, 8.553229], [47.375421, 8.558303], [47.365631, 8.566955], [47.413627, 8.480975], [47.391318, 8.536516], [47.360737, 8.578091], [47.379039, 8.545109], [47.379006, 8.508492], [47.405243, 8.481049], [47.385498, 8.475233], [47.371117, 8.539119], [47.413618, 8.480975], [47.384906, 8.558886], [47.387484, 8.519589], [47.364501, 8.536785], [47.387028, 8.485117], [47.360358, 8.547674], [47.379921, 8.543128], [47.413128, 8.538675], [47.373001, 8.500281], [47.375223, 8.518652], [47.389791, 8.512338], [47.416287, 8.545115], [47.378725, 8.528933], [47.369484, 8.526401], [47.372467, 8.51996], [47.35602, 8.553501], [47.37361, 8.534297], [47.388484, 8.491185], [47.339645, 8.528452], [47.340076, 8.53521], [47.390999, 8.478572], [47.367362, 8.544284], [47.377255, 8.538756], [47.367924, 8.560608], [47.371633, 8.519705], [47.407551, 8.556553], [47.350978, 8.53423], [47.360126, 8.534272], [47.373437, 8.481023], [47.389428, 8.513708], [47.352493, 8.531984], [47.369085, 8.503566], [47.3653, 8.526527], [47.41852, 8.542073], [47.393515, 8.472899], [47.369604, 8.507694], [47.371708, 8.547831], [47.379971, 8.520735], [47.343391, 8.535649], [47.377135, 8.541984], [47.387841, 8.485716], [47.367851, 8.564446], [47.332085, 8.516495], [47.357469, 8.550658], [47.37578, 8.524477], [47.392304, 8.503209], [47.374841, 8.545671], [47.377498, 8.503244], [47.410886, 8.563275], [47.373645, 8.534364], [47.383448, 8.531718], [47.418295, 8.538305], [47.371999, 8.566096], [47.375808, 8.536806], [47.368219, 8.546818], [47.405764, 8.591946], [47.377423, 8.500607], [47.400214, 8.494], [47.414389, 8.552602], [47.368074, 8.540393], [47.374009, 8.492383], [47.381048, 8.550369], [47.373646, 8.530432], [47.387779, 8.499344], [47.377653, 8.510809], [47.360872, 8.598852], [47.402361, 8.499303], [47.36681, 8.558638], [47.365661, 8.523542], [47.361601, 8.547461], [47.366185, 8.548801], [47.390431, 8.542723], [47.36747, 8.54614], [47.378647, 8.54183], [47.360271, 8.522784], [47.393327, 8.524795], [47.360935, 8.531495], [47.405186, 8.480452], [47.361897, 8.503581], [47.421357, 8.502385], [47.352264, 8.559604], [47.373451, 8.548079], [47.363527, 8.535096], [47.408602, 8.546452], [47.351421, 8.525503], [47.380089, 8.536801], [47.397437, 8.591673], [47.378312, 8.510584], [47.391913, 8.528806], [47.415958, 8.547506], [47.372602, 8.534356], [47.366272, 8.562096], [47.374768, 8.552344], [47.361739, 8.56114], [47.36966, 8.523889], [47.34539, 8.534485], [47.371854, 8.522027], [47.405047, 8.478912], [47.378038, 8.548134], [47.368846, 8.521449], [47.375546, 8.548149], [47.402122, 8.501775], [47.366556, 8.547604], [47.385437, 8.536368], [47.36821, 8.536424], [47.37639, 8.527495], [47.408876, 8.564624], [47.402077, 8.580101], [47.393623, 8.539094], [47.389758, 8.526417], [47.395065, 8.484586], [47.384998, 8.53232], [47.384198, 8.511192], [47.356227, 8.571971], [47.41393, 8.548909], [47.406836, 8.532583], [47.368518, 8.543752], [47.358699, 8.590372], [47.390888, 8.522069], [47.401552, 8.586767], [47.35046, 8.51864], [47.393369, 8.495031], [47.369315, 8.547873], [47.391638, 8.523581], [47.365228, 8.501424], [47.369108, 8.547949], [47.391551, 8.486226], [47.388254, 8.486704], [47.358059, 8.519761], [47.384227, 8.497326], [47.399757, 8.533444], [47.367881, 8.523654], [47.386574, 8.5032], [47.407128, 8.586821], [47.368228, 8.511612], [47.388063, 8.524952], [47.40976, 8.479932], [47.389111, 8.546259], [47.390779, 8.52306], [47.373066, 8.524223], [47.377398, 8.550121], [47.362746, 8.547207], [47.376274, 8.540761], [47.378517, 8.541351], [47.365731, 8.537048], [47.400909, 8.591682], [47.36024, 8.548691], [47.375511, 8.548082], [47.364366, 8.566597], [47.427402, 8.538877], [47.341756, 8.530732], [47.358834, 8.533914], [47.414308, 8.550719], [47.406504, 8.573518], [47.422493, 8.550784], [47.40951, 8.543636], [47.409435, 8.543038], [47.374974, 8.544959], [47.407093, 8.58678], [47.40564, 8.591718], [47.36455, 8.56623], [47.369305, 8.548059], [47.378982, 8.511034], [47.41079, 8.567606], [47.36907, 8.528259], [47.378877, 8.526169], [47.384336, 8.531909], [47.426491, 8.541933], [47.371084, 8.523613], [47.36063, 8.59788], [47.423697, 8.539662], [47.376749, 8.538043], [47.390754, 8.521934], [47.37606, 8.533898], [47.403104, 8.558699], [47.374732, 8.545788], [47.37454, 8.539534], [47.366475, 8.544875], [47.375261, 8.485204], [47.388591, 8.496168], [47.417893, 8.482768], [47.410208, 8.546817], [47.369977, 8.511118], [47.398951, 8.533096], [47.364441, 8.555279], [47.371235, 8.513235], [47.408382, 8.550582], [47.386769, 8.547588], [47.369615, 8.525847], [47.349017, 8.526658], [47.363062, 8.49917], [47.408754, 8.546455], [47.374528, 8.544618], [47.377435, 8.526457], [47.381213, 8.491452], [47.388599, 8.528235], [47.341175, 8.530336], [47.365686, 8.525661], [47.357893, 8.520154], [47.405332, 8.55815], [47.360542, 8.566781], [47.359129, 8.526534], [47.392023, 8.487772], [47.367549, 8.545414], [47.367501, 8.530597], [47.365758, 8.563237], [47.376648, 8.527805], [47.364033, 8.531148], [47.402787, 8.557076], [47.368141, 8.521819], [47.338006, 8.525812], [47.378931, 8.508782], [47.372802, 8.535062], [47.417182, 8.545624], [47.374723, 8.520178], [47.413496, 8.563119], [47.37509, 8.48524], [47.326405, 8.527467], [47.37617, 8.488108], [47.373365, 8.531644], [47.369656, 8.564723], [47.380118, 8.528048], [47.388496, 8.488815], [47.349837, 8.576031], [47.373167, 8.53642], [47.359436, 8.509026], [47.402209, 8.496266], [47.410895, 8.563223], [47.380635, 8.525728], [47.3729, 8.547418], [47.371105, 8.539436], [47.391421, 8.536041], [47.35664, 8.555446], [47.360107, 8.526765], [47.362209, 8.484233], [47.384778, 8.527031], [47.376734, 8.540546], [47.388197, 8.480146], [47.374531, 8.549876], [47.355577, 8.556523], [47.365428, 8.564739], [47.418125, 8.554165], [47.392093, 8.538294], [47.410671, 8.572374], [47.374708, 8.52566], [47.39949, 8.5208], [47.36277, 8.567993], [47.403574, 8.548256], [47.374415, 8.524211], [47.375183, 8.539137], [47.377153, 8.541971], [47.382808, 8.529944], [47.383478, 8.549294], [47.421484, 8.550087], [47.374518, 8.54001], [47.364862, 8.53094], [47.381094, 8.513169], [47.37822, 8.520461], [47.376706, 8.544465], [47.367219, 8.565611], [47.382703, 8.500673], [47.387149, 8.535066], [47.376746, 8.559907], [47.41995, 8.506637], [47.376502, 8.534767], [47.372631, 8.529312], [47.362894, 8.523142], [47.379194, 8.525857], [47.364555, 8.555546], [47.37745, 8.498688], [47.374109, 8.538545], [47.355773, 8.584312], [47.427449, 8.546155], [47.361577, 8.51774], [47.380362, 8.528], [47.361721, 8.565773], [47.380524, 8.493081], [47.374013, 8.544793], [47.372064, 8.534107], [47.356337, 8.511558], [47.382504, 8.529686], [47.418686, 8.547285], [47.354745, 8.574547], [47.370714, 8.557648], [47.373887, 8.536303], [47.420868, 8.550511], [47.391005, 8.521012], [47.365752, 8.550844], [47.357533, 8.535489], [47.385848, 8.529927], [47.409563, 8.549361], [47.41023, 8.54365], [47.403848, 8.570069], [47.381865, 8.51541], [47.388891, 8.495816], [47.377154, 8.553042], [47.409338, 8.544679], [47.369072, 8.521334], [47.341131, 8.536846], [47.37766, 8.508094], [47.383751, 8.548916], [47.404427, 8.574375], [47.370984, 8.531397], [47.40884, 8.54594], [47.366218, 8.49444], [47.351564, 8.525625], [47.41654, 8.545902], [47.392038, 8.538359], [47.364044, 8.55163], [47.420001, 8.538631], [47.386211, 8.535298], [47.373795, 8.536513], [47.370063, 8.541136], [47.373652, 8.544905], [47.363866, 8.517257], [47.397569, 8.505818], [47.374263, 8.538389], [47.386243, 8.540504], [47.360027, 8.589725], [47.403864, 8.569407], [47.407424, 8.574173], [47.413563, 8.48108], [47.372275, 8.535634], [47.377889, 8.498829], [47.378287, 8.530487], [47.370328, 8.602169], [47.383175, 8.506073], [47.367869, 8.494843], [47.371006, 8.535674], [47.410449, 8.544251], [47.382423, 8.540147], [47.397774, 8.532953], [47.416307, 8.545831], [47.360351, 8.525711], [47.333631, 8.52997], [47.38642, 8.496509], [47.410419, 8.550121], [47.411082, 8.545749], [47.354705, 8.57493], [47.34851, 8.57096], [47.405444, 8.480735], [47.376135, 8.55608], [47.388245, 8.486757], [47.373132, 8.53728], [47.409009, 8.539623], [47.396063, 8.522651], [47.371177, 8.539411], [47.399635, 8.543523], [47.37981, 8.547231], [47.408116, 8.58243], [47.406096, 8.547911], [47.381487, 8.530751], [47.378323, 8.52282], [47.404317, 8.557002], [47.405838, 8.573517], [47.33716, 8.519099], [47.373258, 8.53151], [47.395511, 8.484952], [47.361667, 8.503206], [47.369916, 8.490382], [47.375154, 8.519286], [47.396544, 8.528927], [47.403725, 8.534281], [47.368979, 8.543563], [47.378336, 8.548061], [47.415323, 8.483473], [47.368515, 8.530843], [47.374301, 8.519123], [47.405705, 8.591494], [47.347231, 8.532869], [47.379617, 8.559782], [47.342769, 8.531017], [47.397448, 8.532297], [47.38175, 8.543815], [47.381694, 8.509632], [47.365714, 8.535936], [47.38409, 8.497562], [47.380518, 8.556847], [47.399405, 8.547718], [47.354455, 8.553534], [47.371851, 8.499172], [47.377189, 8.539999], [47.387739, 8.484998], [47.378458, 8.545601], [47.378446, 8.54033], [47.35852, 8.531988], [47.354984, 8.510935], [47.366521, 8.540917], [47.418277, 8.510527], [47.393381, 8.524782], [47.369521, 8.555491], [47.390091, 8.52257], [47.379806, 8.542], [47.38618, 8.498212], [47.417865, 8.554093], [47.393862, 8.505015], [47.374537, 8.539852], [47.368333, 8.524431], [47.366456, 8.544888], [47.414329, 8.546691], [47.41425, 8.508299], [47.411471, 8.526569], [47.378929, 8.542432], [47.390339, 8.522111], [47.364069, 8.520558], [47.377075, 8.540672], [47.378903, 8.511761], [47.359085, 8.526427], [47.367919, 8.490369], [47.387936, 8.531718], [47.330783, 8.529634], [47.376543, 8.535099], [47.378402, 8.541084], [47.339924, 8.530324], [47.379774, 8.518678], [47.362206, 8.551962], [47.380306, 8.517576], [47.360299, 8.566802], [47.379937, 8.483441], [47.409449, 8.545304], [47.385151, 8.532323], [47.369417, 8.541904], [47.413722, 8.546188], [47.369644, 8.539856], [47.427032, 8.546504], [47.374286, 8.53786], [47.368533, 8.53083], [47.418322, 8.538305], [47.390942, 8.522017], [47.366655, 8.545713], [47.389883, 8.521771], [47.427078, 8.491484], [47.365759, 8.563078], [47.426424, 8.547062], [47.419507, 8.500029], [47.39776, 8.533496], [47.37332, 8.549519], [47.386014, 8.535268], [47.367452, 8.537666], [47.366817, 8.54573], [47.374314, 8.535861], [47.398222, 8.53691], [47.367735, 8.521969], [47.378535, 8.541325], [47.360455, 8.48723], [47.353995, 8.600198], [47.421218, 8.549617], [47.366525, 8.522514], [47.369405, 8.549755], [47.376995, 8.544339], [47.408712, 8.546216], [47.409291, 8.544877], [47.377028, 8.52862], [47.369213, 8.512969], [47.36519, 8.502601], [47.376239, 8.562107], [47.398122, 8.53614], [47.369216, 8.547871], [47.364773, 8.554425], [47.414858, 8.551592], [47.378934, 8.559688], [47.401575, 8.489814], [47.40382, 8.556369], [47.329926, 8.512588], [47.372201, 8.560116], [47.36686, 8.532702], [47.362167, 8.547526], [47.353064, 8.518177], [47.330929, 8.515943], [47.397596, 8.532804], [47.359061, 8.531841], [47.365826, 8.556208], [47.379485, 8.516964], [47.399428, 8.516838], [47.364434, 8.520075], [47.358642, 8.589788], [47.381436, 8.540842], [47.384399, 8.531937], [47.340956, 8.526785], [47.397768, 8.532688], [47.381211, 8.481811], [47.348279, 8.534293], [47.391293, 8.522952], [47.375766, 8.535547], [47.391383, 8.536292], [47.379118, 8.549958], [47.386589, 8.488883], [47.372656, 8.520957], [47.405697, 8.59148], [47.375121, 8.545584], [47.397776, 8.494045], [47.386934, 8.490453], [47.378639, 8.526614], [47.380895, 8.528673], [47.393651, 8.511263], [47.349977, 8.56076], [47.40391, 8.546103], [47.381499, 8.571529], [47.375936, 8.537537], [47.366594, 8.53516], [47.415009, 8.544266], [47.378036, 8.509307], [47.367503, 8.578765], [47.369174, 8.49189], [47.410508, 8.550282], [47.375767, 8.556973], [47.375032, 8.544576], [47.367749, 8.487373], [47.359253, 8.586187], [47.383661, 8.549006], [47.387266, 8.51879], [47.35962, 8.593582], [47.37954, 8.516806], [47.377466, 8.512553], [47.408456, 8.548516], [47.366591, 8.54121], [47.358149, 8.519802], [47.408804, 8.579318], [47.402166, 8.496013], [47.406612, 8.551327], [47.402671, 8.486921], [47.368938, 8.518353], [47.35178, 8.52555], [47.401245, 8.586893], [47.376512, 8.536476], [47.394249, 8.4902], [47.407899, 8.579802], [47.3791, 8.549918], [47.376504, 8.543905], [47.419829, 8.54817], [47.377317, 8.526587], [47.357564, 8.578724], [47.371288, 8.520122], [47.413975, 8.525202], [47.413489, 8.539557], [47.344118, 8.532024], [47.372736, 8.550408], [47.367308, 8.561045], [47.405846, 8.480982], [47.390269, 8.485724], [47.368835, 8.539774], [47.38878, 8.483244], [47.368759, 8.500859], [47.377321, 8.521303], [47.370268, 8.518525], [47.379885, 8.544081], [47.376721, 8.538136], [47.396298, 8.540619], [47.368439, 8.536071], [47.410564, 8.550071], [47.365099, 8.553187], [47.388992, 8.538972], [47.374294, 8.524685], [47.390566, 8.545547], [47.427387, 8.546061], [47.391057, 8.522232], [47.374141, 8.54089], [47.377632, 8.533175], [47.368467, 8.524526], [47.380191, 8.501947], [47.380599, 8.517092], [47.390856, 8.533076], [47.382468, 8.514415], [47.376775, 8.528668], [47.373831, 8.53654], [47.41133, 8.485356], [47.387642, 8.499593], [47.376374, 8.541598], [47.365703, 8.54564], [47.361616, 8.50674], [47.370858, 8.531315], [47.395097, 8.525904], [47.380256, 8.542923], [47.409791, 8.537771], [47.364777, 8.554015], [47.377539, 8.505668], [47.362534, 8.510571], [47.365763, 8.532733], [47.396927, 8.50917], [47.375906, 8.538807], [47.379909, 8.527329], [47.408712, 8.546243], [47.408136, 8.547145], [47.371986, 8.556364], [47.398723, 8.539106], [47.417081, 8.545767], [47.366565, 8.494883], [47.360087, 8.56084], [47.416434, 8.514359], [47.360423, 8.526666], [47.362344, 8.510699], [47.375039, 8.537214], [47.366848, 8.535893], [47.358812, 8.58259], [47.380991, 8.518425], [47.337468, 8.532338], [47.36685, 8.553502], [47.393587, 8.5248], [47.397036, 8.483472], [47.372719, 8.563304], [47.363404, 8.505981], [47.357888, 8.554811], [47.377845, 8.541973], [47.368775, 8.537614], [47.396874, 8.530206], [47.389166, 8.541426], [47.401329, 8.545056], [47.371819, 8.601566], [47.364482, 8.536917], [47.400789, 8.548886], [47.406893, 8.580588], [47.374533, 8.552498], [47.335092, 8.518051], [47.366662, 8.542231], [47.372667, 8.575048], [47.414508, 8.558939], [47.370041, 8.540646], [47.415221, 8.527626], [47.366846, 8.542711], [47.38866, 8.483679], [47.365118, 8.534269], [47.407899, 8.579802], [47.33521, 8.531365], [47.403826, 8.53415], [47.384232, 8.541933], [47.330771, 8.516469], [47.395526, 8.545227], [47.375399, 8.52386], [47.378336, 8.509882], [47.354631, 8.526561], [47.413098, 8.567019], [47.361989, 8.526552], [47.368188, 8.53024], [47.385259, 8.517041], [47.365018, 8.567127], [47.419179, 8.50637], [47.376591, 8.529154], [47.373501, 8.515241], [47.382054, 8.528856], [47.413702, 8.545472], [47.391313, 8.516011], [47.370161, 8.548791], [47.413319, 8.476212], [47.413357, 8.532611], [47.379588, 8.527097], [47.42888, 8.545124], [47.381579, 8.537203], [47.353456, 8.576611], [47.396357, 8.492891], [47.37006, 8.511901], [47.332672, 8.518095], [47.413966, 8.541422], [47.381518, 8.56504], [47.359779, 8.548946], [47.355984, 8.573832], [47.384673, 8.542842], [47.345446, 8.533362], [47.379958, 8.519265], [47.402588, 8.553468], [47.374931, 8.544759], [47.362122, 8.559665], [47.383271, 8.53043], [47.382178, 8.588363], [47.401363, 8.593083], [47.415423, 8.544222], [47.372511, 8.534447], [47.378661, 8.519477], [47.373159, 8.538208], [47.363389, 8.575446], [47.346101, 8.534447], [47.409062, 8.545389], [47.389246, 8.491399], [47.378915, 8.549556], [47.375525, 8.480945], [47.364577, 8.566217], [47.354858, 8.574867], [47.380851, 8.53336], [47.365091, 8.50256], [47.391209, 8.489266], [47.382031, 8.529359], [47.376074, 8.559641], [47.38645, 8.518522], [47.373506, 8.519504], [47.391899, 8.517785], [47.367547, 8.538039], [47.367808, 8.560539], [47.373453, 8.531831], [47.378607, 8.523289], [47.370403, 8.547009], [47.38809, 8.539165], [47.336974, 8.520709], [47.376498, 8.525683], [47.385887, 8.53255], [47.377746, 8.544804], [47.374691, 8.535935], [47.408409, 8.550622], [47.382427, 8.528413], [47.375713, 8.518238], [47.385276, 8.494711], [47.367596, 8.54515], [47.379734, 8.51534], [47.401753, 8.580968], [47.3939, 8.525031], [47.375302, 8.547309], [47.37157, 8.51589], [47.392294, 8.509169], [47.392207, 8.509843], [47.375094, 8.518994], [47.358513, 8.518327], [47.367696, 8.496097], [47.373786, 8.519431], [47.380194, 8.535241], [47.367017, 8.536121], [47.373613, 8.549976], [47.387483, 8.518702], [47.377311, 8.512735], [47.359103, 8.532172], [47.370704, 8.537151], [47.379145, 8.549998], [47.393677, 8.502653], [47.385826, 8.51798], [47.375433, 8.526959], [47.407923, 8.578305], [47.387974, 8.490831], [47.380987, 8.504387], [47.381102, 8.518109], [47.367991, 8.540603], [47.327797, 8.529586], [47.391379, 8.545193], [47.378989, 8.542804], [47.368926, 8.54809], [47.399498, 8.515117], [47.374438, 8.495596], [47.384396, 8.548333], [47.399058, 8.533271], [47.411379, 8.545688], [47.381454, 8.540842], [47.403008, 8.486544], [47.403136, 8.486268], [47.391078, 8.522841], [47.370197, 8.548792], [47.379973, 8.516656], [47.382531, 8.540136], [47.386772, 8.49045], [47.410236, 8.549521], [47.398732, 8.505563], [47.366847, 8.558467], [47.388407, 8.517065], [47.369755, 8.509829], [47.373471, 8.534732], [47.383335, 8.530365], [47.393384, 8.537711], [47.374594, 8.538621], [47.363609, 8.535058], [47.380995, 8.538091], [47.409557, 8.55005], [47.376943, 8.522262], [47.377073, 8.541864], [47.384643, 8.532829], [47.386561, 8.542987], [47.402871, 8.535204], [47.383559, 8.573307], [47.37128, 8.525669], [47.41053, 8.572106], [47.391035, 8.522628], [47.387473, 8.528357], [47.392623, 8.47504], [47.363437, 8.533268], [47.376642, 8.535128], [47.399475, 8.495178], [47.427963, 8.551653], [47.363357, 8.533186], [47.395571, 8.486278], [47.370686, 8.537124], [47.374513, 8.539547], [47.359681, 8.508806], [47.408005, 8.546745], [47.378893, 8.542445], [47.379189, 8.527407], [47.362276, 8.526691], [47.324365, 8.518549], [47.363381, 8.533452], [47.344508, 8.529782], [47.36727, 8.545368], [47.36344, 8.53385], [47.394916, 8.491061], [47.367251, 8.546427], [47.382804, 8.532222], [47.37942, 8.529636], [47.340867, 8.531455], [47.374984, 8.534498], [47.366629, 8.535266], [47.396049, 8.527009], [47.359191, 8.563204], [47.400461, 8.543673], [47.377791, 8.498761], [47.383355, 8.539584], [47.367933, 8.544707], [47.339869, 8.529529], [47.3975, 8.532444], [47.401781, 8.499742], [47.348036, 8.534354], [47.35976, 8.557431], [47.414281, 8.550784], [47.361847, 8.507062], [47.376601, 8.527089], [47.41209, 8.524806], [47.390323, 8.509289], [47.366457, 8.566257], [47.377742, 8.537667], [47.363164, 8.533619], [47.388783, 8.536292], [47.402563, 8.49981], [47.420803, 8.547011], [47.370304, 8.548861], [47.3577, 8.559281], [47.324853, 8.504826], [47.410139, 8.565155], [47.398312, 8.536912], [47.378301, 8.509842], [47.387954, 8.546857], [47.391489, 8.523128], [47.368228, 8.537365], [47.361105, 8.547636], [47.378325, 8.525561], [47.391096, 8.522828], [47.414306, 8.48348], [47.370952, 8.523279], [47.370057, 8.564162], [47.377666, 8.541956], [47.364772, 8.554531], [47.37677, 8.517743], [47.414107, 8.545427], [47.3629, 8.548945], [47.417537, 8.546095], [47.403508, 8.485918], [47.420942, 8.539009], [47.374066, 8.519317], [47.370558, 8.519259], [47.354361, 8.511241], [47.367993, 8.540352], [47.413222, 8.55336], [47.33159, 8.529875], [47.370755, 8.548751], [47.374485, 8.535878], [47.36402, 8.528712], [47.358414, 8.518312], [47.381777, 8.55686], [47.374007, 8.546369], [47.369336, 8.555103], [47.387167, 8.518881], [47.415347, 8.514165], [47.335704, 8.516158], [47.403548, 8.483494], [47.357298, 8.572828], [47.374319, 8.52393], [47.427431, 8.546141], [47.369212, 8.465635], [47.367843, 8.534417], [47.362181, 8.548917], [47.4139, 8.526486], [47.366156, 8.540513], [47.390601, 8.478842], [47.384739, 8.496409], [47.368494, 8.5245], [47.39054, 8.490577], [47.397031, 8.511464], [47.414083, 8.548872], [47.413209, 8.538716], [47.360678, 8.524447], [47.387381, 8.527653], [47.364878, 8.566714], [47.415109, 8.562795], [47.414544, 8.558927], [47.415358, 8.570513], [47.379758, 8.506878], [47.386823, 8.52004], [47.378201, 8.509866], [47.36655, 8.540759], [47.385895, 8.542113], [47.366991, 8.558483], [47.3499, 8.561314], [47.365164, 8.564151], [47.359139, 8.555591], [47.369116, 8.52536], [47.392063, 8.526226], [47.374998, 8.518648], [47.377256, 8.538689], [47.361802, 8.550934], [47.362436, 8.504691], [47.413793, 8.545354], [47.364316, 8.529751], [47.406602, 8.588227], [47.369304, 8.522557], [47.387582, 8.525393], [47.360271, 8.567768], [47.408821, 8.539447], [47.372011, 8.534079], [47.368688, 8.524875], [47.373032, 8.534497], [47.364764, 8.545965], [47.379681, 8.519047], [47.373612, 8.519758], [47.37074, 8.535232], [47.338073, 8.538636], [47.399386, 8.572015], [47.356163, 8.520477], [47.389266, 8.485254], [47.367806, 8.535476], [47.357537, 8.521683], [47.399162, 8.547832], [47.370998, 8.563652], [47.406212, 8.573021], [47.377177, 8.543204], [47.402566, 8.588776], [47.376037, 8.488953], [47.367308, 8.53953], [47.36765, 8.495262], [47.397404, 8.532177], [47.37552, 8.513851], [47.366313, 8.541085], [47.380073, 8.520459], [47.386393, 8.534189], [47.366754, 8.544801], [47.386085, 8.541958], [47.367821, 8.546068], [47.364611, 8.566443], [47.339541, 8.529985], [47.366582, 8.536404], [47.366242, 8.521052], [47.37954, 8.527321], [47.397583, 8.532273], [47.389062, 8.494813], [47.408712, 8.546216], [47.391064, 8.479408], [47.392304, 8.503209], [47.3793, 8.51749], [47.371431, 8.517238], [47.399144, 8.547819], [47.41015, 8.524475], [47.379201, 8.522295], [47.357873, 8.571966], [47.363473, 8.535135], [47.369441, 8.533748], [47.369771, 8.518754], [47.392659, 8.524039], [47.41488, 8.545496], [47.412959, 8.537625], [47.373837, 8.532117], [47.329882, 8.529721], [47.42212, 8.50354], [47.422246, 8.503529], [47.380291, 8.520145], [47.362039, 8.503875], [47.414102, 8.519334], [47.393351, 8.493056], [47.372467, 8.519973], [47.397643, 8.493883], [47.383851, 8.530919], [47.37017, 8.548831], [47.369184, 8.527679], [47.391318, 8.515468], [47.377803, 8.509196], [47.354153, 8.57525], [47.363789, 8.566744], [47.409116, 8.546304], [47.374325, 8.543237], [47.419116, 8.506435], [47.385337, 8.508579], [47.396019, 8.545316], [47.381514, 8.513482], [47.404346, 8.503529], [47.386213, 8.539854], [47.364057, 8.567014], [47.353559, 8.576216], [47.380608, 8.512298], [47.361407, 8.573921], [47.426306, 8.554681], [47.368107, 8.536846], [47.408971, 8.550144], [47.392438, 8.496509], [47.397477, 8.532073], [47.384367, 8.548518], [47.407608, 8.486144], [47.375203, 8.544566], [47.419986, 8.503696], [47.377494, 8.498742], [47.392088, 8.499284], [47.390725, 8.522132], [47.394936, 8.512336], [47.409967, 8.525796], [47.350464, 8.567984], [47.37749, 8.518605], [47.416947, 8.538171], [47.413228, 8.531998], [47.371041, 8.523414], [47.388091, 8.536238], [47.39184, 8.528831], [47.399315, 8.515405], [47.384753, 8.527825], [47.360588, 8.566689], [47.401256, 8.54516], [47.36983, 8.509566], [47.414131, 8.53635], [47.407881, 8.576144], [47.380324, 8.528145], [47.363933, 8.56676], [47.394106, 8.493138], [47.362242, 8.55935], [47.407795, 8.584], [47.417837, 8.554238], [47.35573, 8.574079], [47.365523, 8.53241], [47.338302, 8.53917], [47.370264, 8.495579], [47.393363, 8.524782], [47.374426, 8.542087], [47.378288, 8.530394], [47.399682, 8.477271], [47.403504, 8.487375], [47.36392, 8.547669], [47.376075, 8.522788], [47.39813, 8.536232], [47.391307, 8.515733], [47.387668, 8.529686], [47.417675, 8.546734], [47.366669, 8.541463], [47.34058, 8.524753], [47.368014, 8.544735], [47.37513, 8.528608], [47.332043, 8.535217], [47.377521, 8.54484], [47.380119, 8.544112], [47.418106, 8.538327], [47.418115, 8.538367], [47.411536, 8.523509], [47.37833, 8.526873], [47.378319, 8.509829], [47.378428, 8.483147], [47.418856, 8.507265], [47.364347, 8.550087], [47.387183, 8.519027], [47.380591, 8.536984], [47.386381, 8.498799], [47.373495, 8.52925], [47.3592, 8.511285], [47.365513, 8.539149], [47.358504, 8.518393], [47.413949, 8.54883], [47.416612, 8.513594], [47.369903, 8.564251], [47.391885, 8.485053], [47.380653, 8.547447], [47.382147, 8.543664], [47.387488, 8.53343], [47.344412, 8.530402], [47.363272, 8.557028], [47.352482, 8.508185], [47.387735, 8.519661], [47.375264, 8.490885], [47.388588, 8.539851], [47.376038, 8.527673], [47.378326, 8.527323], [47.360199, 8.523696], [47.430771, 8.540219], [47.373247, 8.535574], [47.37838, 8.530184], [47.384241, 8.531576], [47.39066, 8.508885], [47.387438, 8.544357], [47.419186, 8.546752], [47.36969, 8.539765], [47.369622, 8.51544], [47.425918, 8.552949], [47.369644, 8.525596], [47.375762, 8.549093], [47.374568, 8.538515], [47.390989, 8.51309], [47.35347, 8.576069], [47.409027, 8.539597], [47.376207, 8.527836], [47.388844, 8.52514], [47.381133, 8.531989], [47.371011, 8.538878], [47.370534, 8.549276], [47.376582, 8.534849], [47.385767, 8.499012], [47.38599, 8.498248], [47.388181, 8.485908], [47.393354, 8.524795], [47.373222, 8.531562], [47.385975, 8.535545], [47.375422, 8.528137], [47.376906, 8.54333], [47.374262, 8.538535], [47.382539, 8.51447], [47.326487, 8.515827], [47.374627, 8.537086], [47.373752, 8.53822], [47.374503, 8.533985], [47.374029, 8.519343], [47.379353, 8.495216], [47.363703, 8.553397], [47.362195, 8.5475], [47.359558, 8.548504], [47.373794, 8.537638], [47.381436, 8.553026], [47.419261, 8.54739], [47.419283, 8.547854], [47.382475, 8.514574], [47.367192, 8.546955], [47.373486, 8.503296], [47.398968, 8.538913], [47.359648, 8.522983], [47.39316, 8.546158], [47.382431, 8.514481], [47.366161, 8.497682], [47.38963, 8.512215], [47.368105, 8.495642], [47.376626, 8.533062], [47.368122, 8.523831], [47.378056, 8.513876], [47.390364, 8.525092], [47.364618, 8.547153], [47.371474, 8.55532], [47.39143, 8.536041], [47.364632, 8.537198], [47.380703, 8.525199], [47.386958, 8.483831], [47.40458, 8.556809], [47.401596, 8.499261], [47.376395, 8.518345], [47.395455, 8.531885], [47.418699, 8.507726], [47.397691, 8.533216], [47.41104, 8.545456], [47.422593, 8.55068], [47.35157, 8.602435], [47.430153, 8.549326], [47.374094, 8.535433], [47.379764, 8.527418], [47.404607, 8.550304], [47.40841, 8.551444], [47.426637, 8.492496], [47.369179, 8.54803], [47.36584, 8.531199], [47.363626, 8.535151], [47.36066, 8.531132], [47.365986, 8.53479], [47.368495, 8.524355], [47.368382, 8.602497], [47.368543, 8.530751], [47.361956, 8.531053], [47.422323, 8.512636], [47.390705, 8.508806], [47.403288, 8.497201], [47.411235, 8.570783], [47.417791, 8.483071], [47.411254, 8.544732], [47.326697, 8.517352], [47.377845, 8.498788], [47.426272, 8.554441], [47.402074, 8.498197], [47.389145, 8.494629], [47.427548, 8.54617], [47.397616, 8.532592], [47.41221, 8.546329], [47.39343, 8.512809], [47.365427, 8.502262], [47.375322, 8.485483], [47.369695, 8.508583], [47.371579, 8.51593], [47.384616, 8.516525], [47.384908, 8.531391], [47.379464, 8.529677], [47.367381, 8.494158], [47.408676, 8.564792], [47.380267, 8.546406], [47.390538, 8.489782], [47.381807, 8.540571], [47.358357, 8.520561], [47.365332, 8.564406], [47.376488, 8.483811], [47.361564, 8.535374], [47.395451, 8.527474], [47.373027, 8.531213], [47.411118, 8.5354], [47.3662, 8.534052], [47.376979, 8.542272], [47.363358, 8.533001], [47.418852, 8.553371], [47.419012, 8.50308], [47.419762, 8.508542], [47.384342, 8.531313], [47.388296, 8.490996], [47.414833, 8.519164], [47.366745, 8.545781], [47.385839, 8.530933], [47.381845, 8.516535], [47.373894, 8.546009], [47.388714, 8.520727], [47.374159, 8.528549], [47.353178, 8.575586], [47.391282, 8.520315], [47.391152, 8.522644], [47.369782, 8.554517], [47.391627, 8.517077], [47.36507, 8.530865], [47.37464, 8.53849], [47.373275, 8.520122], [47.410709, 8.543316], [47.369266, 8.525628], [47.401773, 8.580823], [47.390213, 8.522042], [47.393264, 8.501506], [47.345249, 8.535144], [47.411674, 8.562683], [47.393214, 8.530104], [47.38838, 8.482799], [47.369081, 8.528048], [47.362222, 8.547435], [47.365371, 8.538894], [47.373011, 8.532921], [47.364808, 8.566566], [47.385732, 8.508706], [47.390896, 8.48106], [47.419666, 8.543568], [47.39384, 8.507386], [47.374523, 8.557211], [47.422602, 8.550667], [47.372957, 8.48541], [47.405376, 8.504941], [47.382564, 8.537607], [47.410302, 8.543625], [47.398226, 8.509739], [47.407556, 8.579039], [47.377547, 8.528869], [47.399318, 8.542762], [47.391339, 8.532423], [47.384788, 8.531706], [47.379099, 8.527405], [47.426153, 8.547175], [47.369186, 8.513022], [47.380663, 8.537025], [47.4111, 8.545775], [47.412226, 8.553948], [47.399782, 8.504895], [47.410647, 8.551689], [47.402034, 8.497653], [47.379129, 8.52228], [47.367127, 8.544399], [47.370052, 8.548869], [47.375641, 8.526818], [47.376907, 8.541344], [47.335764, 8.518422], [47.384154, 8.531177], [47.382457, 8.537578], [47.369043, 8.528245], [47.366149, 8.548761], [47.374888, 8.527491], [47.350965, 8.559973], [47.41918, 8.506264], [47.373836, 8.527469], [47.360412, 8.552348], [47.391526, 8.523102], [47.398764, 8.512797], [47.333708, 8.528529], [47.410445, 8.546491], [47.431283, 8.538401], [47.397617, 8.540077], [47.369587, 8.525939], [47.37742, 8.543209], [47.398861, 8.590485]], [[47.376602, 8.536504], [47.367095, 8.543974], [47.369121, 8.541845], [47.390508, 8.523187], [47.3966, 8.510395], [47.368856, 8.52901], [47.385576, 8.499313], [47.374594, 8.538635], [47.370844, 8.546992], [47.393279, 8.493082], [47.384573, 8.526881], [47.374677, 8.549654], [47.381644, 8.530304], [47.384044, 8.48086], [47.418232, 8.54208], [47.409338, 8.563309], [47.403752, 8.534308], [47.378265, 8.509748], [47.378724, 8.542216], [47.378433, 8.499436], [47.390068, 8.510608], [47.387411, 8.514859], [47.414241, 8.508312], [47.362263, 8.609844], [47.387805, 8.482722], [47.40824, 8.546604], [47.376902, 8.541807], [47.330814, 8.516681], [47.367067, 8.494999], [47.404973, 8.572743], [47.405945, 8.480984], [47.420848, 8.48215], [47.384016, 8.574416], [47.408217, 8.503143], [47.383106, 8.530745], [47.389637, 8.486996], [47.361829, 8.52635], [47.383099, 8.499688], [47.387141, 8.528271], [47.368844, 8.501363], [47.351865, 8.576538], [47.367095, 8.521175], [47.392376, 8.533054], [47.3872, 8.551372], [47.405863, 8.553431], [47.376647, 8.538439], [47.359253, 8.581686], [47.414179, 8.518846], [47.414143, 8.518818], [47.376516, 8.544554], [47.373112, 8.503845], [47.425299, 8.548019], [47.369726, 8.536853], [47.378265, 8.541385], [47.352992, 8.576191], [47.364669, 8.566008], [47.37835, 8.493673], [47.391097, 8.473713], [47.385607, 8.553365], [47.390556, 8.544713], [47.339573, 8.528517], [47.373298, 8.53302], [47.41271, 8.544868], [47.404928, 8.480129], [47.33471, 8.534742], [47.375855, 8.54507], [47.387211, 8.518922], [47.378017, 8.492766], [47.375434, 8.547683], [47.387261, 8.533717], [47.3724, 8.521389], [47.406712, 8.47978], [47.39989, 8.543131], [47.378416, 8.540634], [47.392872, 8.515725], [47.370554, 8.51775], [47.378279, 8.5256], [47.384226, 8.497405], [47.397138, 8.594554], [47.386005, 8.548433], [47.373506, 8.519504], [47.386788, 8.547495], [47.375817, 8.488406], [47.408721, 8.546203], [47.371416, 8.522706], [47.402004, 8.497958], [47.347454, 8.56301], [47.373864, 8.537865], [47.381478, 8.503761], [47.373031, 8.53459], [47.373046, 8.532988], [47.374306, 8.537688], [47.364569, 8.519985], [47.367674, 8.52079], [47.418678, 8.547232], [47.362967, 8.495818], [47.369115, 8.541554], [47.376069, 8.538691], [47.374205, 8.544493], [47.41096, 8.562151], [47.383652, 8.557363], [47.35211, 8.524868], [47.364676, 8.537291], [47.370568, 8.516294], [47.399249, 8.532983], [47.365748, 8.537128], [47.381149, 8.491597], [47.413611, 8.480816], [47.408817, 8.550207], [47.410139, 8.479714], [47.388251, 8.491035], [47.414134, 8.518818], [47.382927, 8.540157], [47.369521, 8.526256], [47.408847, 8.554593], [47.405094, 8.479682], [47.387192, 8.519014], [47.366616, 8.520464], [47.408983, 8.53953], [47.378487, 8.528399], [47.386326, 8.48905], [47.374189, 8.486374], [47.364142, 8.526186], [47.390856, 8.533076], [47.378441, 8.510202], [47.372575, 8.547478], [47.370125, 8.548804], [47.367727, 8.538956], [47.420996, 8.507361], [47.344124, 8.535134], [47.357669, 8.554104], [47.384252, 8.497552], [47.381822, 8.54187], [47.414101, 8.550794], [47.402584, 8.553879], [47.37557, 8.53059], [47.372499, 8.535731], [47.369124, 8.537793], [47.373082, 8.533029], [47.363129, 8.549466], [47.429908, 8.549533], [47.388266, 8.485472], [47.353342, 8.558845], [47.377247, 8.538729], [47.384944, 8.534239], [47.380244, 8.528117], [47.379847, 8.524414], [47.382749, 8.514143], [47.37006, 8.54054], [47.368984, 8.482101], [47.376352, 8.483927], [47.370045, 8.541176], [47.375251, 8.5195], [47.349134, 8.565136], [47.376857, 8.543766], [47.368078, 8.54467], [47.370215, 8.548806], [47.344143, 8.535095], [47.389731, 8.512005], [47.366546, 8.536416], [47.380605, 8.537487], [47.389791, 8.512391], [47.380351, 8.518544], [47.376291, 8.541742], [47.418686, 8.506201], [47.377769, 8.53772], [47.350431, 8.560346], [47.407522, 8.54647], [47.373335, 8.531908], [47.33616, 8.52506], [47.376734, 8.54338], [47.376677, 8.559627], [47.367355, 8.506815], [47.390846, 8.521684], [47.399751, 8.47661], [47.360943, 8.571687], [47.378734, 8.52892], [47.411672, 8.56198], [47.362462, 8.504744], [47.396772, 8.532363], [47.373866, 8.476318], [47.411939, 8.524604], [47.351233, 8.601077], [47.414738, 8.519612], [47.39129, 8.47822], [47.422622, 8.495849], [47.36621, 8.553727], [47.362779, 8.568006], [47.388454, 8.540629], [47.35735, 8.550828], [47.3762, 8.558756], [47.350328, 8.527863], [47.374498, 8.539215], [47.413347, 8.550593], [47.370785, 8.535219], [47.336641, 8.533181], [47.419206, 8.506357], [47.378151, 8.5457], [47.373647, 8.517879], [47.39701, 8.480319], [47.361967, 8.55336], [47.358354, 8.584367], [47.38666, 8.547652], [47.35144, 8.601082], [47.406907, 8.550577], [47.390248, 8.509605], [47.372991, 8.531279], [47.402479, 8.535713], [47.363794, 8.535499], [47.37946, 8.524419], [47.387864, 8.539332], [47.373039, 8.547011], [47.378841, 8.484268], [47.410463, 8.56972], [47.36907, 8.528272], [47.374247, 8.519162], [47.40968, 8.576143], [47.375743, 8.543545], [47.37319, 8.547199], [47.403151, 8.489541], [47.370365, 8.519653], [47.383921, 8.510935], [47.392387, 8.524298], [47.372523, 8.478622], [47.386968, 8.490692], [47.36624, 8.530823], [47.413771, 8.554259], [47.37842, 8.541084], [47.417537, 8.546095], [47.414582, 8.559603], [47.414133, 8.518924], [47.390194, 8.509684], [47.372582, 8.534501], [47.379984, 8.527926], [47.421131, 8.481745], [47.337329, 8.519327], [47.393599, 8.537848], [47.39903, 8.514154], [47.371633, 8.521651], [47.406916, 8.550564], [47.353773, 8.601636], [47.384184, 8.575678], [47.390639, 8.523667], [47.388585, 8.479041], [47.389499, 8.477337], [47.377913, 8.538677], [47.417371, 8.545641], [47.39357, 8.519964], [47.373729, 8.517827], [47.40276, 8.501881], [47.371745, 8.550546], [47.365411, 8.553538], [47.362261, 8.559297], [47.362216, 8.54901], [47.37699, 8.544842], [47.357275, 8.521836], [47.380799, 8.536895], [47.362851, 8.51623], [47.394503, 8.542145], [47.377215, 8.540132], [47.38223, 8.515841], [47.358053, 8.508773], [47.377549, 8.529611], [47.408936, 8.548155], [47.369592, 8.466384], [47.353339, 8.52717], [47.381877, 8.513092], [47.399039, 8.524726], [47.369758, 8.466943], [47.360199, 8.523683], [47.39229, 8.506692], [47.383575, 8.530675], [47.373663, 8.524857], [47.392209, 8.478079], [47.394412, 8.546939], [47.371136, 8.546587], [47.392338, 8.538988], [47.370887, 8.546251], [47.382873, 8.515337], [47.374181, 8.475331], [47.38421, 8.504027], [47.375319, 8.549296], [47.423747, 8.54295], [47.423801, 8.542938], [47.402974, 8.494254], [47.371004, 8.54816], [47.377272, 8.538875], [47.36009, 8.522847], [47.36948, 8.525858], [47.380044, 8.548176], [47.376932, 8.54157], [47.379124, 8.495636], [47.385214, 8.500524], [47.375578, 8.526856], [47.357601, 8.521578], [47.385675, 8.519685], [47.372645, 8.498817], [47.374122, 8.51904], [47.381123, 8.534995], [47.340878, 8.526519], [47.426564, 8.554938], [47.417188, 8.542152], [47.38006, 8.494568], [47.418106, 8.538327], [47.371545, 8.506925], [47.360761, 8.550674], [47.378145, 8.541674], [47.39306, 8.47946], [47.377482, 8.499099], [47.377398, 8.522709], [47.400807, 8.54886], [47.366123, 8.5327], [47.364577, 8.566231], [47.3779, 8.541894], [47.37314, 8.5354], [47.38511, 8.498125], [47.399006, 8.533045], [47.393761, 8.52838], [47.372676, 8.534106], [47.391569, 8.513659], [47.41788, 8.555299], [47.375073, 8.529891], [47.396165, 8.527184], [47.365658, 8.532347], [47.386939, 8.484996], [47.409574, 8.480538], [47.372198, 8.54081], [47.385659, 8.520426], [47.399316, 8.515352], [47.364267, 8.54806], [47.380016, 8.52455], [47.384326, 8.52918], [47.387096, 8.486456], [47.409235, 8.547048], [47.399602, 8.591932], [47.373312, 8.531484], [47.373857, 8.503066], [47.36002, 8.522633], [47.371588, 8.51593], [47.373824, 8.536315], [47.364776, 8.504566], [47.368696, 8.493946], [47.369634, 8.541869], [47.405214, 8.504938], [47.406602, 8.551459], [47.367076, 8.494999], [47.374959, 8.524804], [47.387555, 8.51971], [47.366131, 8.508776], [47.414386, 8.480592], [47.398443, 8.469046], [47.362581, 8.504614], [47.328412, 8.514794], [47.401525, 8.548014], [47.377857, 8.509171], [47.380764, 8.518672], [47.369191, 8.556093], [47.374494, 8.541585], [47.36371, 8.533922], [47.370689, 8.516773], [47.410347, 8.548277], [47.373673, 8.485742], [47.373516, 8.545101], [47.409321, 8.544559], [47.383381, 8.543465], [47.369278, 8.5564], [47.410049, 8.53237], [47.38292, 8.575254], [47.395739, 8.54543], [47.3764, 8.540685], [47.377651, 8.548126], [47.383699, 8.573708], [47.354389, 8.523631], [47.399876, 8.516052], [47.403852, 8.485739], [47.392284, 8.523714], [47.369935, 8.510826], [47.355831, 8.500085], [47.398155, 8.536418], [47.387241, 8.528141], [47.369015, 8.543564], [47.360793, 8.568732], [47.386975, 8.546665], [47.386171, 8.518569], [47.386564, 8.503386], [47.370695, 8.535297], [47.375367, 8.485471], [47.408712, 8.546229], [47.37583, 8.577208], [47.37311, 8.532937], [47.367158, 8.540176], [47.374318, 8.52209], [47.387869, 8.520749], [47.374414, 8.535797], [47.387752, 8.471529], [47.379486, 8.544404], [47.388309, 8.53607], [47.376666, 8.527819], [47.358234, 8.58831], [47.431856, 8.531069], [47.360483, 8.552403], [47.391668, 8.519423], [47.421796, 8.545653], [47.419757, 8.548116], [47.39363, 8.530788], [47.391844, 8.500458], [47.376925, 8.527996], [47.382154, 8.512409], [47.393487, 8.54488], [47.402929, 8.575747], [47.368404, 8.547272], [47.360697, 8.566493], [47.357978, 8.532216], [47.405786, 8.58613], [47.375039, 8.545675], [47.406624, 8.546265], [47.397956, 8.534666], [47.390757, 8.539644], [47.424088, 8.552421], [47.385668, 8.475303], [47.373851, 8.536328], [47.363473, 8.535135], [47.362584, 8.558404], [47.392425, 8.507636], [47.38204, 8.515969], [47.410825, 8.545332], [47.373119, 8.532937], [47.380894, 8.54483], [47.408565, 8.546557], [47.414912, 8.551579], [47.368265, 8.54858], [47.366907, 8.545798], [47.376079, 8.488305], [47.388595, 8.539096], [47.387463, 8.518966], [47.410175, 8.566017], [47.406744, 8.586534], [47.382834, 8.529097], [47.419147, 8.557354], [47.378841, 8.529028], [47.386024, 8.526526], [47.393507, 8.524758], [47.375302, 8.528426], [47.386602, 8.541478], [47.388068, 8.520581], [47.37028, 8.524881], [47.391033, 8.522867], [47.360295, 8.566233], [47.377525, 8.538761], [47.389681, 8.511634], [47.371443, 8.550155], [47.419955, 8.501217], [47.396236, 8.535809], [47.386475, 8.516867], [47.407275, 8.530803], [47.36856, 8.498988], [47.361823, 8.532705], [47.39292, 8.543994], [47.386352, 8.54787], [47.356916, 8.51116], [47.374627, 8.54176], [47.378562, 8.483242], [47.413176, 8.541287], [47.388641, 8.485784], [47.37034, 8.548901], [47.413184, 8.541366], [47.368819, 8.501191], [47.385733, 8.492919], [47.417943, 8.54503], [47.378702, 8.55669], [47.381237, 8.528654], [47.382781, 8.529917], [47.366068, 8.548865], [47.382936, 8.540144], [47.3419, 8.530695], [47.377074, 8.539825], [47.368196, 8.539813], [47.372022, 8.520441], [47.375294, 8.528373], [47.373387, 8.51398], [47.405912, 8.548318], [47.414875, 8.544211], [47.378299, 8.541518], [47.360276, 8.568165], [47.391386, 8.5149], [47.367971, 8.540802], [47.387209, 8.551372], [47.398123, 8.535981], [47.398138, 8.536352], [47.359182, 8.509246], [47.380565, 8.53693], [47.384794, 8.537772], [47.371944, 8.520122], [47.359882, 8.568925], [47.407017, 8.549401], [47.39237, 8.502932], [47.360707, 8.522303], [47.390548, 8.48969], [47.403134, 8.547226], [47.38384, 8.515781], [47.379277, 8.495586], [47.409787, 8.575377], [47.409815, 8.575271], [47.375333, 8.485205], [47.381157, 8.491663], [47.399082, 8.542041], [47.400173, 8.592474], [47.400119, 8.494542], [47.369114, 8.603016], [47.376172, 8.527782], [47.368716, 8.528596], [47.399091, 8.542028], [47.401649, 8.548282], [47.374582, 8.538886], [47.362386, 8.568554], [47.413217, 8.521688], [47.371151, 8.527957], [47.356643, 8.507593], [47.386718, 8.490528], [47.391478, 8.519485], [47.376064, 8.562501], [47.385243, 8.529279], [47.37333, 8.500632], [47.381824, 8.484591], [47.379244, 8.508007], [47.380797, 8.518937], [47.366007, 8.533492], [47.351178, 8.532129], [47.410511, 8.549964], [47.36949, 8.553981], [47.414263, 8.551751], [47.356885, 8.555266], [47.400152, 8.586459], [47.378324, 8.530408], [47.388717, 8.510819], [47.376092, 8.559654], [47.334611, 8.519457], [47.37821, 8.532022], [47.378804, 8.542376], [47.364075, 8.547486], [47.363959, 8.546412], [47.378018, 8.518947], [47.366473, 8.561782], [47.374921, 8.527796], [47.371918, 8.540936], [47.367704, 8.534785], [47.397068, 8.530633], [47.395573, 8.531729], [47.389728, 8.512323], [47.36041, 8.58469], [47.410542, 8.572676], [47.368075, 8.520308], [47.33711, 8.536803], [47.359307, 8.592556], [47.403864, 8.569394], [47.377611, 8.529679], [47.407462, 8.566622], [47.354171, 8.575223], [47.416803, 8.5372], [47.377364, 8.529184], [47.37772, 8.509406], [47.385014, 8.508493], [47.371252, 8.520068], [47.389816, 8.542128], [47.38828, 8.496678], [47.38819, 8.496729], [47.369778, 8.466811], [47.42269, 8.49927], [47.377552, 8.548177], [47.380028, 8.496183], [47.370034, 8.527153], [47.370639, 8.543081], [47.400136, 8.505512], [47.377705, 8.525403], [47.368194, 8.550339], [47.38776, 8.484681], [47.372373, 8.534788], [47.377918, 8.526692], [47.360916, 8.5354], [47.400262, 8.516139], [47.37501, 8.526024], [47.366318, 8.532943], [47.384142, 8.530594], [47.326531, 8.518804], [47.374567, 8.524373], [47.384289, 8.531259], [47.377376, 8.567256], [47.390379, 8.539702], [47.378869, 8.526976], [47.334045, 8.528946], [47.371126, 8.546666], [47.389781, 8.477979], [47.410724, 8.555852], [47.344773, 8.533149], [47.385022, 8.54779], [47.366756, 8.541823], [47.378833, 8.499934], [47.334386, 8.529985], [47.405835, 8.569237], [47.376729, 8.516339], [47.38778, 8.529225], [47.37674, 8.538043], [47.417332, 8.509633], [47.385307, 8.529134], [47.406755, 8.550508], [47.39372, 8.493965], [47.388533, 8.483769], [47.370745, 8.547016], [47.369269, 8.55636], [47.391234, 8.487412], [47.386328, 8.535327], [47.367001, 8.543483], [47.388336, 8.536044], [47.375932, 8.529393], [47.358696, 8.516107], [47.364402, 8.546169], [47.378292, 8.509789], [47.372591, 8.532635], [47.385659, 8.520387], [47.365542, 8.500516], [47.370184, 8.518841], [47.360493, 8.547624], [47.356594, 8.523451], [47.369042, 8.537924], [47.400119, 8.494568], [47.37666, 8.535102], [47.375895, 8.538026], [47.382743, 8.550908], [47.364091, 8.556026], [47.374541, 8.546062], [47.366471, 8.545259], [47.374673, 8.529354], [47.371449, 8.557981], [47.418919, 8.507306], [47.372765, 8.534227], [47.389009, 8.532376], [47.413093, 8.513775], [47.412795, 8.507077], [47.338118, 8.530115], [47.397288, 8.531062], [47.403843, 8.49651], [47.418664, 8.507632], [47.381282, 8.514259], [47.350245, 8.567384], [47.403619, 8.497446], [47.381942, 8.502247], [47.37104, 8.514886], [47.381041, 8.497448], [47.365023, 8.521517], [47.382676, 8.529584], [47.362645, 8.55863], [47.392212, 8.476728], [47.390885, 8.522308], [47.387603, 8.527049], [47.386397, 8.547858], [47.41434, 8.551223], [47.370899, 8.48917], [47.364386, 8.555357], [47.38966, 8.526362], [47.400181, 8.539004], [47.396503, 8.540796], [47.378164, 8.534947], [47.38041, 8.493661], [47.346105, 8.535016], [47.374556, 8.538819], [47.393756, 8.537441], [47.334548, 8.530002], [47.409504, 8.540469], [47.38126, 8.537607], [47.393464, 8.500358], [47.366341, 8.533433], [47.365025, 8.521279], [47.37338, 8.548024], [47.408621, 8.54632], [47.365372, 8.538828], [47.367932, 8.523973], [47.366046, 8.532262], [47.371962, 8.536316], [47.370511, 8.519497], [47.367936, 8.546309], [47.417406, 8.546662], [47.37705, 8.554484], [47.368941, 8.538107], [47.378708, 8.542096], [47.347481, 8.511089], [47.372941, 8.530841], [47.36052, 8.547624], [47.357493, 8.55193], [47.37765, 8.531295], [47.364032, 8.534061], [47.38162, 8.513656], [47.391196, 8.522764], [47.368726, 8.56228], [47.407593, 8.489748], [47.410705, 8.534385], [47.382405, 8.514414], [47.378356, 8.509724], [47.370215, 8.548766], [47.417436, 8.553832], [47.354133, 8.575501], [47.369001, 8.547814], [47.376065, 8.536228], [47.41116, 8.529041], [47.372562, 8.478279], [47.404597, 8.543812], [47.373833, 8.544816], [47.383062, 8.530704], [47.377597, 8.527387], [47.385123, 8.547514], [47.371738, 8.547553], [47.370767, 8.535272], [47.376749, 8.524801], [47.420749, 8.538461], [47.353709, 8.601727], [47.369179, 8.525256], [47.372277, 8.523968], [47.37514, 8.518902], [47.366962, 8.536187], [47.387033, 8.518719], [47.398824, 8.533187], [47.378673, 8.52198], [47.369061, 8.534005], [47.402938, 8.500043], [47.427532, 8.543108], [47.375593, 8.524314], [47.377362, 8.509214], [47.389139, 8.54618], [47.381843, 8.540625], [47.373979, 8.546527], [47.364599, 8.516875], [47.375222, 8.525472], [47.407572, 8.546855], [47.380912, 8.518224], [47.413523, 8.550981], [47.36923, 8.567812], [47.387113, 8.490536], [47.375095, 8.539863], [47.360997, 8.553287], [47.366207, 8.537151], [47.398709, 8.539689], [47.414864, 8.561213], [47.382264, 8.501432], [47.404101, 8.563556], [47.402147, 8.503975], [47.363127, 8.549678], [47.350622, 8.563778], [47.423004, 8.541609], [47.376821, 8.509349], [47.406912, 8.586856], [47.414143, 8.518792], [47.397095, 8.540993], [47.401209, 8.551041], [47.362399, 8.504809], [47.373539, 8.536997], [47.378732, 8.527185], [47.391205, 8.504432], [47.405278, 8.558162], [47.417898, 8.545082], [47.3932, 8.530634], [47.38519, 8.507994], [47.387973, 8.49099], [47.414465, 8.518984], [47.409349, 8.550138], [47.418618, 8.546912], [47.38012, 8.527876], [47.40046, 8.543739], [47.419583, 8.548536], [47.400663, 8.544128], [47.335579, 8.518895], [47.390845, 8.478741], [47.400179, 8.590977], [47.37675, 8.48269], [47.372658, 8.540753], [47.413, 8.515999], [47.391218, 8.52042], [47.377621, 8.498665], [47.376722, 8.559615], [47.384883, 8.50906], [47.40866, 8.580215], [47.392211, 8.495749], [47.353911, 8.560432], [47.41014, 8.542615], [47.380617, 8.534283], [47.375371, 8.494925], [47.397675, 8.533004], [47.405169, 8.480266], [47.3741, 8.527144], [47.414923, 8.546663], [47.363029, 8.51254], [47.387004, 8.51897], [47.417065, 8.541884], [47.397006, 8.5305], [47.399419, 8.521686], [47.36996, 8.511012], [47.370447, 8.532048], [47.412213, 8.549708], [47.379254, 8.526256], [47.412993, 8.546292], [47.377239, 8.543337], [47.414519, 8.513274], [47.361594, 8.526518], [47.3873, 8.493678], [47.372107, 8.519119], [47.360913, 8.552637], [47.414152, 8.521774], [47.383837, 8.547514], [47.391217, 8.520566], [47.362931, 8.512459], [47.370941, 8.519664], [47.384996, 8.484958], [47.386579, 8.526842], [47.410731, 8.529681], [47.414139, 8.548688], [47.388594, 8.534473], [47.352841, 8.524645], [47.35906, 8.592047], [47.407562, 8.536573], [47.366447, 8.527914], [47.385505, 8.520529], [47.378914, 8.530778], [47.414306, 8.479517], [47.412888, 8.517455], [47.373603, 8.519732], [47.375547, 8.516725], [47.357891, 8.519479], [47.365158, 8.547098], [47.384693, 8.500434], [47.365651, 8.547294], [47.397196, 8.531351], [47.359162, 8.549502], [47.370301, 8.53607], [47.375766, 8.518359], [47.341874, 8.530549], [47.417064, 8.556886], [47.371741, 8.55661], [47.375073, 8.529865], [47.397565, 8.481694], [47.365803, 8.54927], [47.374853, 8.493512], [47.358111, 8.552141], [47.397907, 8.534148], [47.357646, 8.521632], [47.373819, 8.530223], [47.354218, 8.523588], [47.430144, 8.5493], [47.400186, 8.494119], [47.362394, 8.516022], [47.427573, 8.54641], [47.430001, 8.486611], [47.377978, 8.527978], [47.365209, 8.545577], [47.399662, 8.51777], [47.376289, 8.527745], [47.353612, 8.513383], [47.368489, 8.530723], [47.371149, 8.521496], [47.397691, 8.533243], [47.375065, 8.558852], [47.391276, 8.522859], [47.37059, 8.516758], [47.368572, 8.54566], [47.379887, 8.541949], [47.383173, 8.541725], [47.38343, 8.515362], [47.379854, 8.543511], [47.415395, 8.570368], [47.358021, 8.519998], [47.359715, 8.549103], [47.381399, 8.540934], [47.376293, 8.541609], [47.37519, 8.534621], [47.367328, 8.535519], [47.374307, 8.521375], [47.366048, 8.504141], [47.384547, 8.542919], [47.364519, 8.547165], [47.370696, 8.535204], [47.402001, 8.499269], [47.383805, 8.540467], [47.397916, 8.534095], [47.414608, 8.520047], [47.419215, 8.547442], [47.372909, 8.535144], [47.394392, 8.525306], [47.378872, 8.542749], [47.407608, 8.547849], [47.35705, 8.521898], [47.371009, 8.488934], [47.362041, 8.549417], [47.39353, 8.512652], [47.384737, 8.548406], [47.398149, 8.546473], [47.377327, 8.499321], [47.395746, 8.524817], [47.364711, 8.534525], [47.372766, 8.497456], [47.364312, 8.531141], [47.409206, 8.566698], [47.35002, 8.533852], [47.389019, 8.527568], [47.38209, 8.528817], [47.405121, 8.479643], [47.371108, 8.542906], [47.369146, 8.527837], [47.356546, 8.52382], [47.371097, 8.520303], [47.376332, 8.518344], [47.372138, 8.545297], [47.410367, 8.548119], [47.383323, 8.53157], [47.367442, 8.601139], [47.362593, 8.517761], [47.37714, 8.540435], [47.400068, 8.53202], [47.390264, 8.523355], [47.376952, 8.510742], [47.376628, 8.511689], [47.374441, 8.541478], [47.360967, 8.551671], [47.39127, 8.514831], [47.366557, 8.541938], [47.383593, 8.577255], [47.377032, 8.544194], [47.373935, 8.546434], [47.39225, 8.492412], [47.380208, 8.52809], [47.377117, 8.541984], [47.377, 8.541982], [47.338571, 8.526022], [47.396893, 8.513806], [47.398456, 8.50724], [47.381077, 8.513076], [47.400049, 8.586801], [47.400798, 8.548847], [47.370698, 8.522586], [47.409269, 8.550057], [47.419592, 8.554089], [47.381352, 8.542098], [47.373572, 8.536402], [47.402369, 8.499316], [47.402418, 8.535513], [47.410852, 8.545306], [47.386106, 8.514979], [47.393684, 8.501898], [47.366883, 8.54638], [47.36818, 8.560203], [47.374579, 8.545838], [47.373588, 8.553458], [47.390433, 8.509053], [47.397009, 8.514815], [47.377358, 8.512538], [47.360849, 8.553641], [47.406201, 8.548231], [47.374833, 8.527675], [47.375882, 8.54123], [47.35988, 8.557182], [47.373871, 8.544671], [47.407422, 8.58533], [47.388675, 8.489944], [47.378997, 8.559716], [47.377705, 8.525496], [47.378932, 8.508676], [47.389374, 8.529946], [47.408955, 8.539556], [47.357998, 8.519587], [47.372893, 8.535925], [47.387844, 8.540497], [47.365135, 8.554115], [47.429589, 8.539612], [47.391795, 8.53838], [47.394428, 8.525281], [47.417008, 8.539365], [47.370537, 8.558293], [47.357507, 8.57172], [47.410226, 8.546804], [47.372456, 8.524025], [47.372856, 8.535964], [47.414684, 8.527377], [47.419247, 8.546899], [47.388441, 8.486973], [47.418986, 8.55352], [47.361616, 8.547806], [47.390945, 8.488598], [47.370725, 8.51684], [47.387278, 8.488287], [47.378339, 8.528819], [47.378637, 8.499678], [47.356725, 8.522024], [47.395633, 8.545242], [47.370615, 8.516983], [47.367082, 8.539711], [47.386355, 8.489859], [47.403424, 8.547908], [47.3974, 8.503642], [47.407635, 8.538442], [47.419161, 8.506383], [47.375383, 8.549192], [47.3982, 8.536419], [47.381824, 8.542585], [47.383274, 8.549886], [47.341865, 8.530535], [47.365813, 8.553838], [47.389736, 8.516271], [47.374787, 8.551311], [47.344534, 8.529875], [47.404974, 8.57273], [47.366616, 8.553537], [47.391427, 8.488038], [47.413353, 8.550924], [47.367598, 8.534558], [47.418224, 8.547607], [47.382345, 8.495593], [47.399321, 8.548048], [47.366845, 8.544711], [47.406566, 8.549497], [47.378948, 8.529137], [47.37659, 8.543417], [47.364614, 8.566165], [47.412359, 8.524003], [47.38322, 8.531105], [47.365893, 8.537012], [47.383063, 8.514242], [47.360008, 8.522951], [47.380853, 8.511032], [47.381716, 8.516877], [47.418545, 8.546977], [47.37653, 8.527008], [47.370689, 8.516746], [47.389715, 8.478414], [47.392071, 8.499244], [47.369337, 8.525736], [47.385304, 8.488739], [47.36994, 8.51121], [47.348377, 8.5625], [47.387547, 8.488332], [47.362073, 8.548941], [47.368955, 8.540412], [47.372191, 8.521649], [47.36064, 8.525625], [47.363506, 8.527854], [47.382711, 8.547715], [47.381134, 8.504058], [47.375582, 8.548216], [47.362489, 8.553384], [47.369408, 8.53727], [47.397004, 8.530712], [47.365761, 8.545218], [47.390938, 8.532958], [47.369402, 8.532172], [47.417048, 8.539869], [47.384395, 8.547512], [47.393737, 8.502006], [47.370364, 8.602143], [47.378113, 8.481234], [47.372713, 8.534941], [47.371838, 8.535188], [47.373536, 8.528801], [47.379817, 8.554912], [47.380739, 8.578359], [47.366748, 8.542643], [47.352034, 8.532028], [47.402958, 8.536464], [47.364182, 8.556015], [47.371309, 8.563976], [47.344333, 8.530242], [47.375018, 8.519403], [47.423729, 8.514308], [47.369532, 8.491036], [47.37776, 8.522425], [47.380806, 8.518937], [47.344245, 8.529989], [47.368921, 8.547667], [47.378734, 8.528947], [47.399824, 8.518714], [47.397719, 8.474543], [47.38406, 8.488979], [47.369981, 8.502962], [47.406771, 8.586535], [47.376829, 8.535344], [47.375746, 8.529045], [47.391237, 8.520341], [47.382429, 8.537697], [47.395225, 8.521906], [47.390715, 8.50878], [47.396157, 8.517407], [47.368495, 8.533014], [47.38042, 8.525644], [47.384452, 8.503198], [47.369022, 8.538043], [47.341918, 8.525891], [47.364403, 8.566558], [47.381201, 8.538162], [47.377521, 8.541966], [47.415492, 8.546476], [47.375544, 8.520923], [47.360339, 8.579128], [47.368081, 8.561154], [47.38322, 8.5061], [47.35474, 8.574984], [47.390638, 8.489652], [47.419641, 8.555561], [47.382108, 8.473022], [47.390743, 8.489031], [47.384314, 8.548437], [47.387681, 8.529275], [47.404862, 8.574039], [47.379977, 8.541964], [47.351305, 8.525395], [47.402811, 8.535799], [47.394481, 8.50712], [47.374368, 8.541583], [47.367937, 8.51967], [47.381924, 8.52925], [47.414868, 8.546768], [47.396031, 8.527009], [47.383227, 8.54362], [47.404835, 8.571283], [47.374509, 8.532422], [47.369014, 8.53795], [47.390744, 8.508529], [47.378174, 8.509958], [47.394106, 8.525128], [47.422467, 8.550664], [47.375139, 8.541877], [47.362551, 8.506811], [47.369048, 8.541076], [47.39347, 8.526718], [47.372809, 8.535208], [47.40325, 8.498433], [47.38698, 8.539619], [47.38689, 8.539604], [47.385322, 8.489706], [47.389258, 8.510711], [47.394232, 8.490146], [47.402306, 8.546388], [47.373659, 8.519534], [47.393891, 8.544928], [47.386605, 8.486102], [47.40632, 8.495234], [47.36414, 8.546309], [47.362812, 8.548784], [47.384315, 8.531286], [47.424865, 8.541727], [47.374554, 8.530556], [47.371149, 8.558279], [47.404676, 8.557116], [47.397038, 8.4802], [47.367287, 8.544534], [47.396343, 8.512934], [47.374756, 8.52051], [47.37799, 8.526694], [47.364499, 8.53129], [47.376802, 8.524908], [47.388181, 8.520001], [47.364998, 8.546923], [47.358194, 8.498371], [47.36414, 8.546349], [47.353151, 8.527034], [47.376999, 8.524051], [47.383798, 8.530865], [47.374803, 8.55151], [47.355565, 8.572513], [47.358326, 8.518138], [47.386242, 8.493406], [47.414315, 8.515827], [47.380908, 8.511947], [47.381401, 8.483603], [47.335437, 8.540593], [47.377213, 8.512627], [47.383315, 8.474846], [47.356035, 8.508177], [47.373311, 8.520216], [47.356657, 8.532069], [47.365061, 8.567326], [47.366029, 8.532182], [47.335483, 8.530087], [47.358005, 8.519773], [47.406853, 8.550576], [47.373162, 8.53687], [47.371587, 8.515957], [47.368655, 8.53123], [47.41877, 8.540408], [47.366802, 8.507188], [47.360253, 8.580595], [47.377401, 8.51279], [47.382273, 8.505379], [47.386171, 8.498212], [47.352817, 8.559205], [47.382344, 8.505447], [47.36684, 8.537693], [47.324758, 8.507312], [47.3638, 8.528178], [47.364105, 8.526304], [47.362279, 8.559285], [47.366271, 8.514009], [47.335396, 8.541161], [47.407546, 8.530702], [47.382809, 8.514475], [47.370843, 8.570269], [47.38344, 8.515309], [47.378402, 8.567185], [47.375933, 8.549044], [47.382814, 8.529255], [47.404712, 8.481079], [47.406844, 8.550576], [47.380735, 8.512155], [47.360687, 8.516703], [47.417707, 8.546165], [47.367738, 8.535037], [47.393489, 8.536216], [47.376959, 8.53773], [47.369045, 8.503923], [47.389312, 8.521269], [47.366565, 8.541977], [47.41049, 8.550255], [47.398837, 8.540394], [47.383252, 8.531503], [47.360296, 8.50073], [47.367039, 8.523345], [47.364092, 8.547526], [47.389599, 8.537554], [47.385307, 8.53679], [47.409781, 8.54918], [47.38638, 8.503859], [47.337116, 8.519045], [47.373872, 8.55202], [47.402989, 8.587831], [47.407529, 8.530662], [47.357954, 8.52042], [47.382322, 8.499076], [47.417717, 8.548007], [47.393095, 8.526459], [47.383828, 8.548401], [47.328245, 8.51827], [47.350337, 8.560741], [47.387141, 8.518721], [47.40454, 8.581134], [47.389361, 8.484659], [47.380488, 8.519342], [47.370708, 8.516641], [47.369528, 8.543469], [47.371884, 8.506257], [47.375729, 8.527018], [47.386786, 8.551442], [47.373071, 8.547409], [47.364756, 8.537346], [47.413627, 8.481015], [47.395633, 8.532088], [47.362091, 8.597488], [47.376803, 8.524736], [47.386896, 8.547405], [47.392449, 8.52434], [47.401706, 8.581153], [47.384014, 8.49801], [47.386671, 8.547493], [47.383388, 8.488661], [47.42888, 8.545177], [47.341309, 8.530339], [47.381636, 8.490428], [47.394772, 8.513564], [47.360443, 8.578654], [47.389674, 8.479897], [47.392366, 8.487593], [47.373869, 8.481959], [47.367336, 8.534738], [47.409381, 8.543023], [47.358144, 8.55524], [47.427724, 8.538115], [47.426921, 8.510568], [47.36214, 8.607736], [47.369096, 8.529306], [47.424421, 8.508583], [47.382049, 8.51593], [47.40262, 8.499493], [47.41086, 8.563169], [47.418221, 8.503926], [47.374527, 8.539971], [47.369568, 8.522245], [47.383657, 8.510307], [47.386833, 8.547457], [47.40255, 8.500181], [47.389879, 8.492008], [47.380412, 8.525551], [47.405326, 8.480866], [47.3745, 8.532449], [47.370525, 8.549302], [47.408795, 8.579304], [47.397817, 8.541658], [47.329531, 8.514459], [47.372802, 8.535089], [47.410632, 8.569896], [47.409053, 8.550053], [47.375891, 8.51072], [47.359654, 8.508832], [47.40655, 8.538022], [47.386261, 8.54514], [47.378784, 8.514937], [47.370885, 8.570561], [47.375173, 8.579048], [47.364751, 8.555709], [47.384432, 8.531302], [47.392146, 8.501881], [47.371863, 8.525946], [47.389913, 8.510804], [47.365895, 8.545287], [47.418873, 8.507358], [47.427668, 8.542992], [47.373431, 8.553004], [47.415689, 8.548389], [47.373711, 8.535015], [47.356572, 8.523953], [47.369088, 8.541527], [47.404792, 8.494051], [47.401337, 8.49026], [47.381837, 8.533725], [47.37488, 8.517798], [47.377471, 8.499311], [47.35735, 8.550828], [47.379623, 8.515589], [47.380635, 8.525728], [47.404709, 8.49136], [47.366452, 8.541551], [47.371464, 8.490306], [47.360758, 8.548225], [47.370178, 8.539457], [47.373147, 8.503912], [47.409538, 8.542576], [47.410103, 8.542773], [47.392736, 8.523551], [47.341064, 8.526853], [47.381856, 8.481109], [47.378545, 8.509688], [47.39579, 8.528753], [47.361537, 8.565293], [47.379031, 8.522225], [47.399999, 8.49491], [47.404341, 8.561017], [47.363729, 8.528084], [47.3899, 8.512234], [47.379924, 8.528587], [47.359198, 8.523967], [47.402346, 8.49399], [47.373895, 8.54491], [47.39515, 8.519374], [47.364182, 8.527762], [47.396313, 8.543759], [47.382396, 8.540146], [47.367805, 8.534589], [47.386673, 8.488461], [47.402895, 8.485097], [47.369886, 8.510269], [47.410185, 8.537978], [47.399143, 8.542202], [47.366047, 8.536869], [47.390794, 8.539565], [47.393717, 8.506112], [47.377504, 8.543806], [47.390591, 8.522063], [47.382652, 8.540708], [47.378943, 8.527693], [47.357538, 8.521577], [47.373694, 8.523415], [47.324203, 8.518559], [47.383681, 8.515512], [47.390746, 8.511178], [47.38639, 8.518229], [47.375595, 8.516422], [47.377678, 8.525416], [47.373207, 8.533071], [47.366927, 8.536159], [47.374387, 8.54149], [47.392977, 8.524655], [47.374208, 8.53856], [47.383801, 8.508443], [47.418811, 8.506283], [47.345518, 8.53237], [47.370516, 8.551169], [47.401253, 8.517934], [47.349988, 8.534342], [47.409077, 8.57984], [47.33543, 8.529954], [47.396191, 8.527237], [47.335612, 8.540186], [47.362363, 8.504742], [47.373488, 8.598371], [47.395581, 8.527092], [47.343979, 8.530513], [47.373932, 8.513422], [47.377487, 8.527584], [47.378687, 8.564702], [47.412231, 8.542195], [47.372789, 8.521198], [47.373929, 8.503001], [47.382119, 8.528619], [47.403722, 8.49203], [47.372022, 8.564733], [47.345528, 8.530412], [47.403963, 8.48537], [47.378387, 8.528516], [47.376164, 8.533383], [47.33529, 8.519034], [47.402458, 8.495595], [47.387143, 8.494218], [47.374526, 8.541083], [47.405752, 8.584976], [47.370756, 8.554233], [47.361608, 8.565387], [47.376542, 8.52575], [47.381898, 8.52917], [47.373093, 8.551673], [47.367609, 8.534373], [47.378455, 8.526968], [47.377747, 8.493741], [47.411179, 8.526033], [47.383339, 8.49903], [47.382422, 8.537392], [47.409296, 8.550044], [47.360135, 8.533332], [47.409521, 8.542536], [47.418005, 8.55452], [47.365749, 8.531356], [47.376898, 8.541344], [47.359695, 8.50731], [47.392432, 8.523359], [47.385602, 8.51979], [47.359971, 8.522156], [47.360079, 8.595339], [47.379494, 8.515944], [47.408944, 8.55013], [47.372704, 8.533961], [47.392339, 8.523662], [47.360997, 8.573608], [47.385443, 8.494172], [47.408569, 8.502037], [47.406807, 8.550628], [47.368965, 8.528932], [47.393858, 8.505373], [47.359705, 8.566829], [47.362523, 8.533884], [47.389402, 8.521257], [47.412142, 8.550621], [47.364531, 8.502787], [47.376284, 8.523534], [47.381562, 8.490625], [47.369191, 8.527878], [47.373088, 8.531453], [47.368683, 8.521658], [47.372433, 8.520794], [47.373072, 8.527441], [47.386085, 8.532448], [47.371865, 8.543676], [47.36423, 8.536845], [47.364647, 8.566444], [47.375007, 8.536855], [47.404141, 8.548188], [47.369677, 8.540162], [47.373646, 8.534285], [47.406928, 8.586114], [47.377243, 8.520958], [47.415154, 8.514651], [47.368818, 8.539707], [47.400047, 8.553985], [47.383034, 8.527869], [47.360996, 8.576402], [47.391968, 8.482883], [47.415364, 8.527669], [47.39942, 8.495243], [47.380161, 8.513852], [47.399266, 8.505242], [47.368504, 8.499172], [47.379279, 8.525488], [47.377043, 8.544035], [47.378093, 8.528166], [47.379277, 8.528508], [47.378435, 8.530106], [47.412553, 8.525385], [47.420941, 8.549492], [47.402129, 8.497139], [47.41391, 8.5091], [47.371986, 8.556403], [47.360636, 8.557079], [47.409709, 8.576011], [47.362118, 8.510854], [47.3692, 8.532644], [47.376477, 8.534542], [47.338396, 8.532092], [47.363571, 8.503482], [47.409522, 8.540456], [47.382132, 8.548048], [47.363531, 8.547965], [47.361919, 8.526313], [47.406512, 8.552371], [47.398659, 8.532574], [47.37675, 8.514075], [47.382058, 8.529293], [47.331366, 8.537333], [47.410632, 8.5477], [47.398206, 8.536751], [47.378468, 8.541734], [47.384988, 8.495686], [47.370965, 8.554939], [47.377333, 8.540068], [47.40175, 8.499238], [47.357704, 8.535427], [47.367879, 8.56062], [47.358855, 8.557121], [47.380016, 8.520696], [47.367572, 8.534504], [47.356634, 8.554175], [47.368284, 8.529554], [47.373392, 8.531684], [47.384839, 8.495325], [47.374148, 8.521067], [47.383458, 8.549453], [47.396153, 8.485627], [47.365479, 8.538976], [47.359415, 8.557768], [47.36903, 8.540982], [47.375633, 8.487833], [47.377275, 8.512721], [47.383271, 8.515147], [47.402369, 8.499316], [47.390364, 8.512628], [47.416117, 8.565506], [47.377513, 8.52765], [47.374886, 8.534363], [47.37959, 8.516291], [47.388426, 8.514072], [47.3801, 8.520406], [47.411443, 8.526701], [47.391882, 8.483437], [47.376552, 8.486712], [47.383643, 8.483355], [47.380129, 8.513507], [47.363226, 8.514504], [47.369456, 8.5407], [47.401013, 8.537683], [47.388495, 8.536339], [47.370127, 8.521144], [47.382517, 8.543539], [47.372212, 8.520299], [47.393305, 8.529947], [47.377769, 8.522425], [47.39101, 8.522403], [47.373771, 8.537148], [47.412516, 8.523476], [47.39978, 8.544335], [47.377281, 8.538836], [47.358774, 8.557119], [47.387395, 8.519468], [47.41428, 8.518596], [47.416903, 8.555955], [47.418726, 8.507726], [47.421054, 8.502021], [47.379229, 8.538399], [47.390615, 8.524329], [47.369174, 8.532459], [47.370655, 8.56285], [47.378016, 8.492872], [47.349983, 8.533878], [47.398112, 8.536192], [47.379528, 8.537213], [47.368825, 8.51704], [47.407401, 8.530806], [47.355006, 8.534458], [47.363889, 8.548992], [47.373049, 8.52025], [47.379365, 8.521146], [47.410747, 8.556276], [47.383252, 8.533343], [47.419033, 8.507613], [47.388585, 8.489876], [47.390913, 8.523182], [47.383349, 8.484091], [47.410425, 8.545801], [47.361655, 8.560542], [47.410888, 8.545294], [47.33716, 8.539133], [47.367603, 8.55659], [47.398152, 8.536723], [47.397846, 8.533961], [47.35819, 8.556061], [47.390272, 8.481392], [47.391894, 8.512513], [47.368716, 8.524849], [47.372986, 8.546838], [47.413474, 8.532626], [47.389759, 8.533], [47.380501, 8.536095], [47.406047, 8.550215], [47.360932, 8.535612], [47.428041, 8.536915], [47.360767, 8.585942], [47.397761, 8.529614], [47.351403, 8.525489], [47.376304, 8.537557], [47.361348, 8.562469], [47.381885, 8.509331], [47.38508, 8.50819], [47.378261, 8.54173], [47.368348, 8.536096], [47.364427, 8.561302], [47.368699, 8.524716], [47.359139, 8.594922], [47.360212, 8.550676], [47.377199, 8.539907], [47.377199, 8.539893], [47.414335, 8.538514], [47.402472, 8.535501], [47.35565, 8.532049], [47.382796, 8.529281], [47.345147, 8.53452], [47.413418, 8.539436], [47.36249, 8.53444], [47.383849, 8.511993], [47.397539, 8.532127], [47.368905, 8.538054], [47.367373, 8.494026], [47.368402, 8.490709], [47.382187, 8.464176], [47.364449, 8.529899], [47.378831, 8.527214], [47.406007, 8.566366], [47.384444, 8.531911], [47.364423, 8.546792], [47.405815, 8.584951], [47.421779, 8.510253], [47.35514, 8.526042], [47.40278, 8.501577], [47.399158, 8.533074], [47.353462, 8.557617], [47.415061, 8.514954], [47.399771, 8.495303], [47.358353, 8.581759], [47.364814, 8.519858], [47.37426, 8.522579], [47.408142, 8.546535], [47.383877, 8.511861], [47.416735, 8.572225], [47.401625, 8.501077], [47.374431, 8.540591], [47.414448, 8.557719], [47.392489, 8.50263], [47.395775, 8.545444], [47.397988, 8.534136], [47.37262, 8.534304], [47.370684, 8.524969], [47.373924, 8.502564], [47.389733, 8.535715], [47.422475, 8.55077], [47.362167, 8.547526], [47.380607, 8.492871], [47.363169, 8.560243], [47.414386, 8.537946], [47.38332, 8.515585], [47.40529, 8.548437], [47.393115, 8.530089], [47.415565, 8.563043], [47.376618, 8.511808], [47.35637, 8.535757], [47.376934, 8.543185], [47.381632, 8.548593], [47.369312, 8.525497], [47.376002, 8.528679], [47.353555, 8.554482], [47.332493, 8.528544], [47.378306, 8.530408], [47.419709, 8.504552], [47.372847, 8.546345], [47.376952, 8.543239], [47.376951, 8.543265], [47.403242, 8.58687], [47.396657, 8.5293], [47.359919, 8.52193], [47.363364, 8.535252], [47.381665, 8.49219], [47.369949, 8.51121], [47.375631, 8.52887], [47.396174, 8.527158], [47.370266, 8.492401], [47.419898, 8.55497], [47.363954, 8.520344], [47.377083, 8.540765], [47.369257, 8.525628], [47.347247, 8.566791], [47.365757, 8.537115], [47.367915, 8.533426], [47.402978, 8.4849], [47.375758, 8.535441], [47.415172, 8.544164], [47.370188, 8.548805], [47.405551, 8.492728], [47.368779, 8.501627], [47.415722, 8.563603], [47.383214, 8.540177], [47.386704, 8.534593], [47.374151, 8.52839], [47.364776, 8.549434], [47.40931, 8.546719], [47.416241, 8.552734], [47.370461, 8.521892], [47.386695, 8.534593], [47.401133, 8.487964], [47.356085, 8.556136], [47.377116, 8.53923], [47.380006, 8.547447], [47.371136, 8.470862], [47.387275, 8.486552], [47.403642, 8.485973], [47.383325, 8.486686], [47.377594, 8.529639], [47.39476, 8.525433], [47.384491, 8.526998], [47.360471, 8.535854], [47.36828, 8.538584], [47.365974, 8.519815], [47.399924, 8.587633], [47.38793, 8.498592], [47.385304, 8.494593], [47.376842, 8.520632], [47.374972, 8.536722], [47.406535, 8.548132], [47.376474, 8.534873], [47.378118, 8.526471], [47.395152, 8.525838], [47.36703, 8.536598], [47.376776, 8.53807], [47.400701, 8.548646], [47.36186, 8.515337], [47.37434, 8.496481], [47.387966, 8.536142], [47.375616, 8.517071], [47.387357, 8.486514], [47.37803, 8.541447], [47.362444, 8.504771], [47.35622, 8.535423], [47.390106, 8.525789], [47.378663, 8.528773], [47.370462, 8.549261], [47.374465, 8.53891], [47.396168, 8.526853], [47.386806, 8.535152], [47.380144, 8.548059], [47.414064, 8.54149], [47.360869, 8.535611], [47.416589, 8.541781], [47.413885, 8.544203], [47.357888, 8.554797], [47.345049, 8.53342], [47.397831, 8.528874], [47.399731, 8.495673], [47.362933, 8.525658], [47.359294, 8.522341], [47.378524, 8.565744], [47.368757, 8.532847], [47.374417, 8.54112], [47.337477, 8.517014], [47.375314, 8.485364], [47.368326, 8.59998], [47.357455, 8.521827], [47.372582, 8.534501], [47.369349, 8.527325], [47.374464, 8.529588], [47.356034, 8.489724], [47.378669, 8.51949], [47.365158, 8.547098], [47.393385, 8.531989], [47.377143, 8.526915], [47.399856, 8.547661], [47.407075, 8.533899], [47.373915, 8.544765], [47.374104, 8.517146], [47.372965, 8.494335], [47.375909, 8.523182], [47.404225, 8.572886], [47.39703, 8.530778], [47.380622, 8.525132], [47.39254, 8.478311], [47.371011, 8.538004], [47.369452, 8.525897], [47.378441, 8.54172], [47.359241, 8.507751], [47.394727, 8.526029], [47.364694, 8.556992], [47.393838, 8.524964], [47.402186, 8.496769], [47.389227, 8.52744], [47.375109, 8.540261], [47.378642, 8.519542], [47.371434, 8.550169], [47.366307, 8.540781], [47.360305, 8.550426], [47.367601, 8.539973], [47.374193, 8.54297], [47.393564, 8.51293], [47.382483, 8.507939], [47.357521, 8.552698], [47.413212, 8.533615], [47.352608, 8.534131], [47.389999, 8.548384], [47.379551, 8.526209], [47.431319, 8.516436], [47.354562, 8.526242], [47.359217, 8.581646], [47.383552, 8.50518], [47.385253, 8.484354], [47.405448, 8.572952], [47.391502, 8.471667], [47.35709, 8.535758], [47.370645, 8.516732], [47.391098, 8.522617], [47.399524, 8.515197], [47.373118, 8.529269], [47.368307, 8.524338], [47.373082, 8.533055], [47.387586, 8.529764], [47.381129, 8.53816], [47.34045, 8.537547], [47.41905, 8.50764], [47.364928, 8.531537], [47.419438, 8.508483], [47.377059, 8.53948], [47.38138, 8.542046], [47.366953, 8.52292], [47.369645, 8.539751], [47.371863, 8.525933], [47.38493, 8.495194], [47.364581, 8.554699], [47.398234, 8.536619], [47.388997, 8.49501], [47.380576, 8.541473], [47.369484, 8.523501], [47.366885, 8.545201], [47.393308, 8.5249], [47.375427, 8.524708], [47.410895, 8.563236], [47.396522, 8.471566], [47.410909, 8.545069], [47.384036, 8.534167], [47.378564, 8.542093], [47.383917, 8.499717], [47.369417, 8.526757], [47.419537, 8.556076], [47.369221, 8.525588], [47.411521, 8.540258], [47.409524, 8.576471], [47.366619, 8.535345], [47.365354, 8.565929], [47.362261, 8.559311], [47.387871, 8.539518], [47.416633, 8.546553], [47.37444, 8.540657], [47.377174, 8.547216], [47.390149, 8.512544], [47.361684, 8.561218], [47.334892, 8.528897], [47.392744, 8.52359], [47.375077, 8.524635], [47.384979, 8.523856], [47.398023, 8.539913], [47.369735, 8.525532], [47.356013, 8.556095], [47.407993, 8.583077], [47.36366, 8.575399], [47.366707, 8.510668], [47.361892, 8.526405], [47.374283, 8.544852], [47.362679, 8.515313], [47.402402, 8.550417], [47.388014, 8.520567], [47.408851, 8.557879], [47.349712, 8.534058], [47.420006, 8.500582], [47.365766, 8.537102], [47.370585, 8.535533], [47.410582, 8.572253], [47.416596, 8.535381], [47.383622, 8.548317], [47.379142, 8.525671], [47.400767, 8.54833], [47.367816, 8.490883], [47.365274, 8.521575], [47.391189, 8.489451], [47.377189, 8.539999], [47.380254, 8.494055], [47.374921, 8.544878], [47.404505, 8.544009], [47.361595, 8.551857], [47.425681, 8.50943], [47.389408, 8.491429], [47.375083, 8.553264], [47.378912, 8.523322], [47.372954, 8.547406], [47.373241, 8.535243], [47.359307, 8.581687], [47.386389, 8.518296], [47.369783, 8.533782], [47.372987, 8.53635], [47.387014, 8.509156], [47.372973, 8.531252], [47.366546, 8.547736], [47.363277, 8.548105], [47.398439, 8.530185], [47.402825, 8.499709], [47.370277, 8.518539], [47.375914, 8.488593], [47.358738, 8.557092], [47.357745, 8.52444], [47.369124, 8.497331], [47.369858, 8.538113], [47.369453, 8.52587], [47.37812, 8.497231], [47.369539, 8.515703], [47.389012, 8.486494], [47.392045, 8.51082], [47.391589, 8.519262], [47.3779, 8.541894], [47.387521, 8.500014], [47.339902, 8.531726], [47.39583, 8.532105], [47.411, 8.507584], [47.375344, 8.524945], [47.387613, 8.499791], [47.389426, 8.551908], [47.375, 8.539384], [47.379151, 8.500523], [47.368913, 8.540119], [47.351077, 8.534285], [47.3854, 8.536421], [47.374499, 8.539136], [47.392869, 8.522758], [47.405098, 8.559947], [47.372964, 8.533172], [47.403531, 8.573945], [47.397696, 8.532686], [47.411084, 8.570647], [47.37103, 8.530246], [47.377405, 8.500687], [47.356481, 8.551419], [47.364224, 8.554414], [47.376736, 8.536573], [47.364197, 8.554413], [47.378597, 8.504974], [47.392541, 8.523255], [47.378647, 8.539963], [47.369732, 8.541897], [47.378403, 8.520094], [47.388234, 8.520148], [47.370106, 8.548883], [47.377345, 8.510048], [47.388021, 8.519812], [47.345714, 8.534439], [47.391604, 8.523395], [47.403806, 8.496655], [47.369854, 8.509897], [47.390549, 8.545415], [47.367917, 8.560396], [47.402082, 8.499257], [47.372062, 8.521951], [47.41406, 8.541941], [47.373753, 8.544761], [47.427725, 8.538022], [47.388005, 8.485414], [47.369305, 8.528145], [47.358977, 8.585029], [47.408537, 8.54665], [47.380902, 8.54679], [47.366892, 8.564068], [47.390195, 8.522055], [47.428311, 8.542554], [47.369726, 8.536905], [47.392772, 8.523485], [47.36054, 8.581621], [47.361421, 8.551217], [47.382915, 8.514702], [47.406009, 8.53344], [47.373238, 8.527934], [47.425185, 8.54583], [47.389374, 8.521416], [47.395349, 8.518226], [47.375047, 8.53638], [47.375266, 8.533166], [47.356226, 8.523364], [47.356572, 8.523953], [47.393384, 8.50025], [47.400176, 8.494212], [47.385068, 8.508481], [47.378957, 8.54234], [47.388178, 8.525127], [47.367868, 8.545937], [47.3729, 8.535104], [47.338044, 8.537047], [47.391855, 8.517731], [47.342639, 8.536189], [47.366519, 8.536442], [47.421429, 8.549251], [47.401858, 8.588575], [47.419161, 8.506396], [47.383061, 8.54024], [47.365098, 8.55328], [47.354853, 8.556971], [47.429455, 8.545229], [47.383726, 8.533684], [47.37859, 8.542147], [47.384564, 8.526881], [47.336382, 8.520578], [47.393776, 8.502563], [47.373221, 8.513434], [47.410062, 8.569327], [47.363746, 8.574792], [47.391264, 8.523203], [47.412896, 8.540419], [47.426176, 8.553207], [47.368778, 8.538184], [47.397926, 8.474547], [47.413244, 8.538797], [47.410825, 8.55005], [47.376904, 8.540682], [47.365376, 8.537412], [47.402186, 8.496795], [47.402644, 8.491902], [47.389329, 8.516607], [47.389671, 8.511739], [47.360966, 8.568511], [47.39072, 8.522662], [47.413084, 8.535746], [47.374958, 8.534444], [47.384965, 8.533935], [47.385084, 8.530878], [47.391402, 8.519987], [47.375685, 8.526925], [47.375841, 8.538978], [47.371725, 8.519548], [47.36948, 8.520098], [47.409446, 8.566982], [47.388016, 8.485176], [47.383271, 8.53043], [47.37252, 8.521034], [47.430549, 8.485734], [47.387831, 8.524709], [47.389845, 8.486921], [47.367109, 8.528325], [47.365456, 8.518534], [47.354187, 8.55791], [47.376909, 8.535398], [47.369418, 8.533337], [47.374286, 8.517878], [47.390595, 8.479531], [47.363342, 8.567436], [47.379721, 8.520584], [47.404891, 8.55716], [47.370895, 8.548237], [47.386483, 8.496483], [47.335, 8.51932], [47.402718, 8.535201], [47.368925, 8.489608], [47.368552, 8.55988], [47.364691, 8.532856], [47.41418, 8.529248], [47.376848, 8.512236], [47.404763, 8.498224], [47.409131, 8.545602], [47.380423, 8.515645], [47.387043, 8.486375], [47.373115, 8.53144], [47.411935, 8.52797], [47.386396, 8.518508], [47.396619, 8.540891], [47.393741, 8.502469], [47.363047, 8.517333], [47.359256, 8.520698], [47.402056, 8.495229], [47.383857, 8.57779], [47.37412, 8.541167], [47.366617, 8.54129], [47.388232, 8.531883], [47.382257, 8.533071], [47.386819, 8.534768], [47.359044, 8.551446], [47.383209, 8.530323], [47.428016, 8.536716], [47.373682, 8.537066], [47.356608, 8.523861], [47.416766, 8.545827], [47.363634, 8.533351], [47.420029, 8.503962], [47.373866, 8.540447], [47.405407, 8.548479], [47.377368, 8.541976], [47.374996, 8.538908], [47.365475, 8.546867], [47.413738, 8.564171], [47.422489, 8.499518], [47.368016, 8.540789], [47.375101, 8.536434], [47.355313, 8.559615], [47.365272, 8.538906], [47.372249, 8.505748], [47.38913, 8.54614], [47.411441, 8.527801], [47.388287, 8.491009], [47.381417, 8.517109], [47.37989, 8.494459], [47.387803, 8.515251], [47.413452, 8.530174], [47.395295, 8.484021], [47.366709, 8.560675], [47.372845, 8.547483], [47.392449, 8.523465], [47.421638, 8.538626], [47.389664, 8.511541], [47.371238, 8.547132], [47.392532, 8.523255], [47.409578, 8.496955], [47.384585, 8.54831], [47.376325, 8.48394], [47.391303, 8.538118], [47.385005, 8.484998], [47.389126, 8.527623], [47.352263, 8.506605], [47.366585, 8.540866], [47.349555, 8.565331], [47.385716, 8.528666], [47.398033, 8.535966], [47.379856, 8.524388], [47.366238, 8.545175], [47.328479, 8.529706], [47.399535, 8.497431], [47.391942, 8.518011], [47.366029, 8.520664], [47.391118, 8.487383], [47.3731, 8.536763], [47.410368, 8.572991], [47.41189, 8.525094], [47.377265, 8.535843], [47.380512, 8.548067], [47.36314, 8.535221], [47.369319, 8.525696], [47.35107, 8.576878], [47.372901, 8.536018], [47.370611, 8.548774], [47.368532, 8.499159], [47.39866, 8.539184], [47.383175, 8.506086], [47.377975, 8.536877], [47.377405, 8.543764], [47.405849, 8.590676], [47.369091, 8.525082], [47.361587, 8.55179], [47.380031, 8.486953], [47.387313, 8.488328], [47.378039, 8.54142], [47.376048, 8.559587], [47.379507, 8.525096], [47.386452, 8.527952], [47.369881, 8.52907], [47.387798, 8.529212], [47.375409, 8.517967], [47.38975, 8.526324], [47.405116, 8.56734], [47.384858, 8.537575], [47.382185, 8.488452], [47.421265, 8.549446], [47.383026, 8.527763], [47.364, 8.568178], [47.382188, 8.504795], [47.372655, 8.53445], [47.366792, 8.535137], [47.3734, 8.519304], [47.364867, 8.547423], [47.360008, 8.522938], [47.358064, 8.520158], [47.40953, 8.542536], [47.378656, 8.539923], [47.408923, 8.57447], [47.381728, 8.516546], [47.362233, 8.559376], [47.362233, 8.55939], [47.385927, 8.517743], [47.390746, 8.523748], [47.402226, 8.508044], [47.368489, 8.530736], [47.370727, 8.50197], [47.36214, 8.531493], [47.378449, 8.566087], [47.386775, 8.534701], [47.364789, 8.536791], [47.366604, 8.540773], [47.362193, 8.532593], [47.359246, 8.551953], [47.364696, 8.566008], [47.387108, 8.534654], [47.377775, 8.543693], [47.36708, 8.55025], [47.379314, 8.537884], [47.364231, 8.53106], [47.364873, 8.531669], [47.363724, 8.566941], [47.41852, 8.542073], [47.41852, 8.542073], [47.362528, 8.535208], [47.369748, 8.509644], [47.381489, 8.503536], [47.370839, 8.508421], [47.378921, 8.500121], [47.378441, 8.540859], [47.373506, 8.519504], [47.424112, 8.499166], [47.410403, 8.532961], [47.384084, 8.485324], [47.385996, 8.53242], [47.371495, 8.521013], [47.3732, 8.547014], [47.392036, 8.51082], [47.358404, 8.517477], [47.374554, 8.538991], [47.335226, 8.53822], [47.389781, 8.486972], [47.385538, 8.53045], [47.335235, 8.538167], [47.38007, 8.520697], [47.395551, 8.517806], [47.360023, 8.516584], [47.37453, 8.53964], [47.3817, 8.52914], [47.389445, 8.521444], [47.367328, 8.537412], [47.360423, 8.526653], [47.376911, 8.540854], [47.373789, 8.536208], [47.405489, 8.480736], [47.380729, 8.52524], [47.381724, 8.494575], [47.36493, 8.553925], [47.370313, 8.548861], [47.361897, 8.547626], [47.377749, 8.528384], [47.369702, 8.467246], [47.357038, 8.535545], [47.351985, 8.525726], [47.351153, 8.560057], [47.391449, 8.519776], [47.392531, 8.523281], [47.391132, 8.489781], [47.378367, 8.534395], [47.373023, 8.534484], [47.396883, 8.481509], [47.385382, 8.517375], [47.350866, 8.559971], [47.365391, 8.521617], [47.391023, 8.523026], [47.383424, 8.53046], [47.377904, 8.4963], [47.374767, 8.549655], [47.368369, 8.538625], [47.374661, 8.545707], [47.369445, 8.526691], [47.354133, 8.557022], [47.372289, 8.518831], [47.402262, 8.499287], [47.417257, 8.509976], [47.374501, 8.538897], [47.377394, 8.498938], [47.387165, 8.519027], [47.378498, 8.541417], [47.360305, 8.567067], [47.375763, 8.543373], [47.405701, 8.533725], [47.38355, 8.488744], [47.409587, 8.496995], [47.381051, 8.503262], [47.384107, 8.51613], [47.393619, 8.538564], [47.369964, 8.539294], [47.359657, 8.547659], [47.369471, 8.520032], [47.373361, 8.524388], [47.40513, 8.560398], [47.366381, 8.540597], [47.374743, 8.544663], [47.371955, 8.519936], [47.405624, 8.548391], [47.368953, 8.540663], [47.389221, 8.488246], [47.364992, 8.553079], [47.380876, 8.561675], [47.410079, 8.546191], [47.381378, 8.537477], [47.37691, 8.528711], [47.408973, 8.539636], [47.420299, 8.508778], [47.391637, 8.542682], [47.371657, 8.544797], [47.388999, 8.488931], [47.418533, 8.506225], [47.364641, 8.566126], [47.389437, 8.511708], [47.359653, 8.522427], [47.400176, 8.494225], [47.369206, 8.525283], [47.405772, 8.591177], [47.381462, 8.510329], [47.372089, 8.521925], [47.387018, 8.485143], [47.384679, 8.544167], [47.422029, 8.550403], [47.373844, 8.538063], [47.358282, 8.515105], [47.422256, 8.53897], [47.392543, 8.493875], [47.383687, 8.498322], [47.380067, 8.556003], [47.393298, 8.530649], [47.391514, 8.519539], [47.384188, 8.548421], [47.375601, 8.545303], [47.374457, 8.541651], [47.364821, 8.538075], [47.367919, 8.555603], [47.362841, 8.579023], [47.385734, 8.526838], [47.386655, 8.4905], [47.366115, 8.540168], [47.422226, 8.550566], [47.377786, 8.518691], [47.384691, 8.54283], [47.374504, 8.546194], [47.350159, 8.534332], [47.377864, 8.498643], [47.382735, 8.541451], [47.407508, 8.548854], [47.37454, 8.53956], [47.37866, 8.519556], [47.377539, 8.542006], [47.357496, 8.535634], [47.340479, 8.519193], [47.34566, 8.534451], [47.335738, 8.540136], [47.405083, 8.572626], [47.378831, 8.508952], [47.388175, 8.534981], [47.367056, 8.493291], [47.428573, 8.54529], [47.374041, 8.502619], [47.360688, 8.583941], [47.373906, 8.517169], [47.373153, 8.536883], [47.386792, 8.534727], [47.374458, 8.538777], [47.379566, 8.510106], [47.380922, 8.525826], [47.379352, 8.537687], [47.368954, 8.523358], [47.389447, 8.511629], [47.399892, 8.544827], [47.390563, 8.508684], [47.375767, 8.535441], [47.403642, 8.486993], [47.371153, 8.525839], [47.389687, 8.511965], [47.374588, 8.518308], [47.378984, 8.542367], [47.329625, 8.53129], [47.384961, 8.500665], [47.371084, 8.5303], [47.361093, 8.535695], [47.408107, 8.577872], [47.370055, 8.54483], [47.384189, 8.548368], [47.357619, 8.521592], [47.379663, 8.527721], [47.393575, 8.492134], [47.384471, 8.532892], [47.373655, 8.533292], [47.36765, 8.538637], [47.393078, 8.531187], [47.414029, 8.542351], [47.410907, 8.546142], [47.358972, 8.516417], [47.403253, 8.576655], [47.361316, 8.525466], [47.373777, 8.536578], [47.37418, 8.544346], [47.404837, 8.594668], [47.373292, 8.535496], [47.387233, 8.501015], [47.386176, 8.535231], [47.383629, 8.506519], [47.367117, 8.539751], [47.378092, 8.497363], [47.372013, 8.524254], [47.366618, 8.541184], [47.376759, 8.482691], [47.383353, 8.484674], [47.419652, 8.547848], [47.36767, 8.495064], [47.383298, 8.530418], [47.362508, 8.510517], [47.366208, 8.546445], [47.381069, 8.504176], [47.387841, 8.520828], [47.383418, 8.539545], [47.363422, 8.534869], [47.38112, 8.538173], [47.39182, 8.517637], [47.371998, 8.483961], [47.391961, 8.517932], [47.373283, 8.513581], [47.378519, 8.526943], [47.392035, 8.517708], [47.403208, 8.554501], [47.391917, 8.517825], [47.386166, 8.535311], [47.41263, 8.480849], [47.38111, 8.537299], [47.351598, 8.602356], [47.355318, 8.555472], [47.397459, 8.489428], [47.37709, 8.541957], [47.422458, 8.550756], [47.400602, 8.492882], [47.358483, 8.549991], [47.37751, 8.509746], [47.417928, 8.503522], [47.367481, 8.528915], [47.374477, 8.540473], [47.391051, 8.522841], [47.37083, 8.539987], [47.359259, 8.551622], [47.357091, 8.552517], [47.395472, 8.531925], [47.414124, 8.518937], [47.372915, 8.538269], [47.401803, 8.585924], [47.326574, 8.518964], [47.378403, 8.520094], [47.397877, 8.532584], [47.376319, 8.541623], [47.372695, 8.534914], [47.405613, 8.53534], [47.405425, 8.480815], [47.374274, 8.52487], [47.355446, 8.574602], [47.422466, 8.55081], [47.378081, 8.511201], [47.404566, 8.484309], [47.367989, 8.572407], [47.371039, 8.530259], [47.369256, 8.527614], [47.356581, 8.523953], [47.382629, 8.530735], [47.393198, 8.521242], [47.387465, 8.486516], [47.384792, 8.503337], [47.381905, 8.51304], [47.389579, 8.511936], [47.381976, 8.516061], [47.383184, 8.506046], [47.391714, 8.518351], [47.387252, 8.488154], [47.370485, 8.549752], [47.384894, 8.531934], [47.370466, 8.549857], [47.392045, 8.517615], [47.365723, 8.535936], [47.370233, 8.525132], [47.376733, 8.524602], [47.386171, 8.498212], [47.390062, 8.53898], [47.37383, 8.519524], [47.385712, 8.517606], [47.389757, 8.512085], [47.403901, 8.568308], [47.423908, 8.524013], [47.352391, 8.534219], [47.373578, 8.519532], [47.344615, 8.529851], [47.365291, 8.53884], [47.377834, 8.521274], [47.363014, 8.563272], [47.370886, 8.538849], [47.366426, 8.546238], [47.398239, 8.537056], [47.366928, 8.558548], [47.408241, 8.552195], [47.365694, 8.54846], [47.389962, 8.512355], [47.411517, 8.526411], [47.385004, 8.508692], [47.377134, 8.540157], [47.368663, 8.521869], [47.3746, 8.502484], [47.370709, 8.516588], [47.365966, 8.536855], [47.368586, 8.53095], [47.366909, 8.558561], [47.389475, 8.51151], [47.376694, 8.499745], [47.386733, 8.547587], [47.405517, 8.592391], [47.386171, 8.498212], [47.381644, 8.533204], [47.364452, 8.548514], [47.412072, 8.524832], [47.373602, 8.519824], [47.331587, 8.535909], [47.377876, 8.541576], [47.372855, 8.543604], [47.368706, 8.528768], [47.390988, 8.522919], [47.338014, 8.52691], [47.376972, 8.5421], [47.375744, 8.54912], [47.372766, 8.531261], [47.373029, 8.532908], [47.372765, 8.529434], [47.358324, 8.526014], [47.378581, 8.542134], [47.374418, 8.502719], [47.380444, 8.54396], [47.366747, 8.534223], [47.403252, 8.497227], [47.361891, 8.560269], [47.408711, 8.546256], [47.393265, 8.524621], [47.360311, 8.525194], [47.384217, 8.511113], [47.362537, 8.551201], [47.407838, 8.547298], [47.387663, 8.488401], [47.382315, 8.505724], [47.34052, 8.527252], [47.371058, 8.499262], [47.361342, 8.534098], [47.372, 8.542778], [47.329889, 8.529999], [47.357132, 8.532225], [47.381233, 8.555405], [47.383236, 8.539833], [47.383437, 8.539493], [47.373145, 8.536791], [47.36272, 8.54714], [47.41439, 8.554444], [47.36844, 8.523586], [47.385743, 8.54856], [47.367269, 8.53708], [47.373129, 8.528077], [47.373462, 8.519424], [47.391489, 8.523128], [47.373454, 8.528918], [47.357011, 8.522135], [47.392912, 8.539132], [47.415638, 8.543378], [47.373113, 8.547648], [47.393327, 8.524808], [47.361082, 8.50616], [47.369239, 8.527561], [47.351648, 8.576599], [47.409201, 8.544901], [47.370522, 8.54962], [47.380226, 8.513681], [47.404869, 8.595066], [47.373823, 8.536473], [47.363163, 8.533659], [47.377359, 8.499825], [47.392013, 8.527722], [47.376312, 8.516648], [47.365124, 8.55344], [47.381081, 8.492085], [47.37377, 8.53638], [47.378647, 8.565164], [47.374628, 8.53596], [47.355023, 8.526026], [47.375779, 8.530369], [47.350054, 8.562085], [47.375908, 8.522414], [47.368966, 8.50175], [47.366142, 8.521156], [47.417146, 8.510292], [47.359864, 8.594342], [47.378344, 8.557437], [47.407121, 8.586688], [47.386657, 8.483295], [47.365892, 8.561426], [47.387977, 8.488513], [47.371579, 8.515904], [47.369951, 8.531203], [47.377004, 8.539598], [47.363959, 8.546438], [47.376381, 8.537069], [47.395518, 8.481243], [47.353144, 8.57728], [47.380898, 8.492426], [47.375927, 8.537484], [47.355095, 8.557042], [47.378674, 8.516087], [47.383007, 8.499871], [47.369099, 8.547935], [47.385478, 8.532899], [47.355223, 8.554967], [47.362711, 8.547154], [47.392213, 8.52456], [47.369083, 8.527902], [47.385654, 8.477858], [47.366576, 8.540826], [47.415158, 8.570654], [47.370054, 8.539269], [47.379654, 8.537163], [47.376838, 8.514249], [47.371512, 8.542954], [47.378403, 8.520094], [47.378872, 8.542762], [47.37745, 8.539064], [47.412227, 8.546422], [47.36728, 8.561164], [47.386604, 8.536525], [47.421915, 8.510109], [47.346355, 8.564098], [47.378587, 8.528215], [47.392323, 8.503116], [47.394365, 8.493315], [47.380547, 8.525514], [47.382334, 8.514254], [47.390434, 8.50896], [47.344975, 8.53363], [47.371071, 8.538337], [47.419685, 8.50031], [47.372814, 8.493167], [47.362373, 8.550456], [47.361504, 8.534088], [47.412284, 8.537637], [47.370533, 8.548415], [47.374321, 8.532366], [47.374179, 8.475569], [47.363861, 8.534084], [47.370917, 8.535553], [47.352694, 8.525013], [47.366954, 8.558562], [47.404074, 8.563556], [47.368437, 8.537183], [47.397055, 8.493223], [47.375417, 8.540942], [47.386778, 8.547508], [47.339978, 8.530312], [47.403201, 8.576468], [47.414777, 8.560906], [47.35673, 8.535791], [47.414791, 8.520727], [47.386218, 8.517431], [47.398042, 8.536045], [47.367507, 8.541361], [47.385382, 8.536473], [47.423072, 8.542048], [47.385208, 8.536774], [47.374304, 8.514979], [47.373029, 8.532935], [47.375719, 8.529057], [47.4142, 8.562868], [47.361262, 8.506124], [47.378007, 8.536348], [47.417978, 8.554546], [47.428839, 8.548464], [47.374438, 8.539836], [47.419725, 8.504764], [47.391677, 8.51937], [47.371539, 8.51916], [47.392153, 8.545183], [47.368704, 8.5289], [47.35816, 8.554591], [47.365433, 8.539015], [47.419303, 8.510468], [47.403563, 8.588943], [47.383279, 8.53055], [47.367743, 8.534481], [47.344154, 8.531998], [47.389908, 8.531546], [47.37011, 8.522865], [47.369724, 8.549378], [47.372, 8.521844], [47.386123, 8.548316], [47.353178, 8.511667], [47.376867, 8.536986], [47.375095, 8.544591], [47.404024, 8.485583], [47.359678, 8.550148], [47.397922, 8.532506], [47.391392, 8.522967], [47.377663, 8.50971], [47.405794, 8.590688], [47.373186, 8.535375], [47.366212, 8.545068], [47.398121, 8.474803], [47.420808, 8.502334], [47.387632, 8.499712], [47.372089, 8.543813], [47.380148, 8.547582], [47.418056, 8.546437], [47.409887, 8.549354], [47.384478, 8.534971], [47.3635, 8.554822], [47.39822, 8.534313], [47.352615, 8.573403], [47.390947, 8.521501], [47.409928, 8.54318], [47.398212, 8.536088], [47.382503, 8.540241], [47.378903, 8.523348], [47.380279, 8.557359], [47.36925, 8.556465], [47.379489, 8.50776], [47.403471, 8.583708], [47.366745, 8.56159], [47.3764, 8.527482], [47.379296, 8.494593], [47.383133, 8.540228], [47.412322, 8.566354], [47.404762, 8.57413], [47.405149, 8.480557], [47.386989, 8.534851], [47.369271, 8.548693], [47.383903, 8.533993], [47.404511, 8.489409], [47.408527, 8.550505], [47.366857, 8.564875], [47.402349, 8.493685], [47.380281, 8.520251], [47.378155, 8.510038], [47.414603, 8.483459], [47.371781, 8.525958], [47.39961, 8.553578], [47.383904, 8.542389], [47.369173, 8.527838], [47.376594, 8.526903], [47.360992, 8.54819], [47.398982, 8.509688], [47.364339, 8.531102], [47.379827, 8.494471], [47.378309, 8.509855], [47.399115, 8.495171], [47.393354, 8.524795], [47.418433, 8.508303], [47.381712, 8.532663], [47.375254, 8.513422], [47.377541, 8.51025], [47.39114, 8.487847], [47.388126, 8.528728], [47.375991, 8.526891], [47.40914, 8.547563], [47.387396, 8.535548], [47.382468, 8.529685], [47.369828, 8.53659], [47.418921, 8.507041], [47.380204, 8.54181], [47.369232, 8.499292], [47.386898, 8.534995], [47.392137, 8.524042], [47.380652, 8.525821], [47.378984, 8.544221], [47.387538, 8.527193], [47.378035, 8.526708], [47.387824, 8.48659], [47.411141, 8.547075], [47.377112, 8.544315], [47.413738, 8.546453], [47.413071, 8.532393], [47.402561, 8.582099], [47.38782, 8.519252], [47.416533, 8.547598], [47.366243, 8.548352], [47.375276, 8.484582], [47.405233, 8.481195], [47.371334, 8.513184], [47.364303, 8.546167], [47.375172, 8.518307], [47.374396, 8.542391], [47.361458, 8.561372], [47.388792, 8.479946], [47.389043, 8.536416], [47.371863, 8.51722], [47.413482, 8.518315], [47.376947, 8.521905], [47.382307, 8.482932], [47.375618, 8.488548], [47.364786, 8.553975], [47.376015, 8.548993], [47.368268, 8.564998], [47.371829, 8.510281], [47.369956, 8.501796], [47.396884, 8.53002], [47.361088, 8.589788], [47.386211, 8.535351], [47.354636, 8.601734], [47.39113, 8.523081], [47.383327, 8.533067], [47.36329, 8.535515], [47.360761, 8.510747], [47.387771, 8.48843], [47.364826, 8.565561], [47.362242, 8.559337], [47.35889, 8.525152], [47.371823, 8.548124], [47.353857, 8.523726], [47.383727, 8.530757], [47.3642, 8.536302], [47.380357, 8.493634], [47.370188, 8.548818], [47.37381, 8.537784], [47.392669, 8.502713], [47.405705, 8.591534], [47.364384, 8.546248], [47.377608, 8.519495], [47.405821, 8.573477], [47.385431, 8.5207], [47.407645, 8.485959], [47.375767, 8.535441], [47.368428, 8.547511], [47.377232, 8.523195], [47.378089, 8.516141], [47.375824, 8.530317], [47.408712, 8.546243], [47.399574, 8.535732], [47.392466, 8.49639], [47.415738, 8.512715], [47.367828, 8.539753], [47.392497, 8.524089], [47.365945, 8.532472], [47.373541, 8.534852], [47.393713, 8.551269], [47.357844, 8.520643], [47.354068, 8.526152], [47.38686, 8.490729], [47.40323, 8.587121], [47.360737, 8.507516], [47.376858, 8.535079], [47.405014, 8.53501], [47.404584, 8.499161], [47.366584, 8.519973], [47.3911, 8.522431], [47.370791, 8.53183], [47.414885, 8.551605], [47.365619, 8.513559], [47.365472, 8.521566], [47.429669, 8.549118], [47.401861, 8.581885], [47.367023, 8.548607], [47.412159, 8.484127], [47.431248, 8.543954], [47.355128, 8.507047], [47.383446, 8.572974], [47.367576, 8.509123], [47.425625, 8.494027], [47.408854, 8.546418], [47.362807, 8.504394], [47.403497, 8.55627], [47.375788, 8.53037], [47.382558, 8.529753], [47.359016, 8.525128], [47.372964, 8.520725], [47.364393, 8.546196], [47.361932, 8.532588], [47.385181, 8.536774], [47.40288, 8.48674], [47.387351, 8.527971], [47.373154, 8.53683], [47.362204, 8.513252], [47.414769, 8.519215], [47.357529, 8.521577], [47.39461, 8.542201], [47.38452, 8.480949], [47.382477, 8.529752], [47.400454, 8.508976], [47.378526, 8.509807], [47.4042, 8.534489], [47.373098, 8.517894], [47.390575, 8.474802], [47.363158, 8.527516], [47.422318, 8.547493], [47.361013, 8.535601], [47.381768, 8.515235], [47.399502, 8.497153], [47.377378, 8.550332], [47.388503, 8.491053], [47.371625, 8.525425], [47.393827, 8.472242], [47.365978, 8.545103], [47.394318, 8.474597], [47.425991, 8.493332], [47.368348, 8.541842], [47.382791, 8.495947], [47.404282, 8.484939], [47.367121, 8.530881], [47.360431, 8.550402], [47.361254, 8.562957], [47.423022, 8.550026], [47.373501, 8.542823], [47.40198, 8.499587], [47.374238, 8.542944], [47.362057, 8.566349], [47.392119, 8.500847], [47.375502, 8.563853], [47.364481, 8.531277], [47.386559, 8.528047], [47.396306, 8.504322], [47.368905, 8.540027], [47.421018, 8.502073], [47.367708, 8.495806], [47.39821, 8.494795], [47.366753, 8.542061], [47.364315, 8.529777], [47.380537, 8.542638], [47.378186, 8.510594], [47.394101, 8.541766], [47.37673, 8.524827], [47.427724, 8.537094], [47.370146, 8.521038], [47.376924, 8.554494], [47.368953, 8.54065], [47.399767, 8.51809], [47.408677, 8.543274], [47.383749, 8.588688], [47.373769, 8.536433], [47.368053, 8.541571], [47.385537, 8.53049], [47.381656, 8.492242], [47.391078, 8.536259], [47.378372, 8.509909], [47.397381, 8.49005], [47.38991, 8.549203], [47.369781, 8.525414], [47.378324, 8.530382], [47.387819, 8.519278], [47.364038, 8.547552], [47.363774, 8.57474], [47.370161, 8.548791], [47.373518, 8.503694], [47.397683, 8.474503], [47.367618, 8.537206], [47.39566, 8.545243], [47.419228, 8.507882], [47.391096, 8.522842], [47.375537, 8.548162], [47.39139, 8.538345], [47.378442, 8.510083], [47.407659, 8.554687], [47.374403, 8.516941], [47.363642, 8.575399], [47.363033, 8.548286], [47.374352, 8.578421], [47.372973, 8.520699], [47.368885, 8.547719], [47.408827, 8.54643], [47.374227, 8.544069], [47.359637, 8.516457], [47.410235, 8.546844], [47.41375, 8.546069], [47.402773, 8.554863], [47.402672, 8.581757], [47.420635, 8.502622], [47.374993, 8.528764], [47.409794, 8.549631], [47.37388, 8.540858], [47.385651, 8.508745], [47.377237, 8.538822], [47.37017, 8.548792], [47.383876, 8.529264], [47.375958, 8.53804], [47.39786, 8.532451], [47.387072, 8.486151], [47.364896, 8.553779], [47.386299, 8.522148], [47.381064, 8.491979], [47.336863, 8.533516], [47.369014, 8.538003], [47.408904, 8.579147], [47.427319, 8.539048], [47.366565, 8.541964], [47.364758, 8.55412], [47.374171, 8.544267], [47.388451, 8.539106], [47.374754, 8.531236], [47.359322, 8.513564], [47.377254, 8.510205], [47.363564, 8.554718], [47.362637, 8.558511], [47.34305, 8.527053], [47.364122, 8.53021], [47.35486, 8.574735], [47.404832, 8.565148], [47.356876, 8.527004], [47.385044, 8.516904], [47.376522, 8.557055], [47.39105, 8.536272], [47.417839, 8.559619], [47.38229, 8.528543], [47.379068, 8.556075], [47.398274, 8.532433], [47.386545, 8.503504], [47.391499, 8.485059], [47.359622, 8.557733], [47.386205, 8.548159], [47.381721, 8.492032], [47.372472, 8.535651], [47.395241, 8.508553], [47.397898, 8.534135], [47.381115, 8.548119], [47.411361, 8.525785], [47.405085, 8.535064], [47.408503, 8.543628], [47.379411, 8.529636], [47.371119, 8.531373], [47.383261, 8.513306], [47.337772, 8.535295], [47.358204, 8.554605], [47.343052, 8.534424], [47.366235, 8.534146], [47.363692, 8.526283], [47.37592, 8.521063], [47.416562, 8.545505], [47.373924, 8.517129], [47.384984, 8.531022], [47.326288, 8.518812], [47.349852, 8.576336], [47.369017, 8.529185], [47.391146, 8.489264], [47.405667, 8.549518], [47.366798, 8.51353], [47.386474, 8.496496], [47.400328, 8.505091], [47.390963, 8.522693], [47.38846, 8.53904], [47.389392, 8.54139], [47.412861, 8.517454], [47.380818, 8.533969], [47.372249, 8.535474], [47.377237, 8.498326], [47.400036, 8.519089], [47.374505, 8.546088], [47.386919, 8.530849], [47.376785, 8.538084], [47.369364, 8.529563], [47.371633, 8.538759], [47.370816, 8.519596], [47.360447, 8.569135], [47.381024, 8.561241], [47.358926, 8.516495], [47.367083, 8.56108], [47.396762, 8.540973], [47.385154, 8.531012], [47.388454, 8.492496], [47.352302, 8.52556], [47.392746, 8.523445], [47.352094, 8.558634], [47.364242, 8.566409], [47.368031, 8.556109], [47.410785, 8.567169], [47.427564, 8.546396], [47.375886, 8.544607], [47.366635, 8.51072], [47.375074, 8.540154], [47.368693, 8.532965], [47.386787, 8.502635], [47.386824, 8.502437], [47.35907, 8.585601], [47.405936, 8.566298], [47.35479, 8.526842], [47.366191, 8.553753], [47.372893, 8.529264], [47.40944, 8.540639], [47.387395, 8.519442], [47.406925, 8.550591], [47.401868, 8.504937], [47.37398, 8.520772], [47.325988, 8.513382], [47.428685, 8.488852], [47.375387, 8.486173], [47.373897, 8.483892], [47.383798, 8.530865], [47.37032, 8.491502], [47.429892, 8.538027], [47.386177, 8.497497], [47.38245, 8.540214], [47.376757, 8.541924], [47.36611, 8.561245], [47.385078, 8.508468], [47.400914, 8.535707], [47.398748, 8.58558], [47.372614, 8.514839], [47.367002, 8.54711], [47.378779, 8.523147], [47.381362, 8.534483], [47.375516, 8.541898], [47.351836, 8.505035], [47.370627, 8.524385], [47.378147, 8.509918], [47.363995, 8.546452], [47.376672, 8.538558], [47.360405, 8.526613], [47.372955, 8.520712], [47.417837, 8.554238], [47.422706, 8.540781], [47.375257, 8.547322], [47.376857, 8.52765], [47.393799, 8.50104], [47.376593, 8.494062], [47.424888, 8.541198], [47.372371, 8.520686], [47.364042, 8.556475], [47.418787, 8.506972], [47.397023, 8.530606], [47.39637, 8.531189], [47.389646, 8.51154], [47.369041, 8.537951], [47.348186, 8.528031], [47.350283, 8.56078], [47.360407, 8.564011], [47.40825, 8.546538], [47.419766, 8.548116], [47.370349, 8.548862], [47.394077, 8.493336], [47.380034, 8.520696], [47.368865, 8.529023], [47.362488, 8.534678], [47.371224, 8.516307], [47.379142, 8.518056], [47.368315, 8.524351], [47.378499, 8.540344], [47.37944, 8.537887], [47.383088, 8.484033], [47.411742, 8.506181], [47.41725, 8.54418], [47.36088, 8.598865], [47.417794, 8.509231], [47.377448, 8.512486], [47.361727, 8.518061], [47.376038, 8.516166], [47.375891, 8.51072], [47.35237, 8.576337], [47.372909, 8.536084], [47.406848, 8.578785], [47.398159, 8.536048], [47.365207, 8.530643], [47.379316, 8.537739], [47.36396, 8.546359], [47.353429, 8.511831], [47.362392, 8.532439], [47.405787, 8.552025], [47.418092, 8.560353], [47.370155, 8.51328], [47.36783, 8.496206], [47.423088, 8.503904], [47.386751, 8.547587], [47.364456, 8.498271], [47.39797, 8.474628], [47.413347, 8.476133], [47.377257, 8.551707], [47.375829, 8.535469], [47.376491, 8.5416], [47.421194, 8.507352], [47.42627, 8.55464], [47.39613, 8.527024], [47.393159, 8.5245], [47.381889, 8.512867], [47.375184, 8.528517], [47.374868, 8.484905], [47.412314, 8.539228], [47.366867, 8.549914], [47.401965, 8.499282], [47.40748, 8.486367], [47.362798, 8.552067], [47.383539, 8.574512], [47.385969, 8.545571], [47.376268, 8.525228], [47.390739, 8.54628], [47.389696, 8.511886], [47.367799, 8.560486], [47.374446, 8.539995], [47.363331, 8.506125], [47.360945, 8.571515], [47.409557, 8.537793], [47.382504, 8.514416], [47.415527, 8.54653], [47.37441, 8.529573], [47.36334, 8.557467], [47.366974, 8.555557], [47.369702, 8.520341], [47.378297, 8.530421], [47.357642, 8.521102], [47.375268, 8.526386], [47.392263, 8.524044], [47.387071, 8.519475], [47.393435, 8.52473], [47.380976, 8.528635], [47.397771, 8.529495], [47.400213, 8.54327], [47.393949, 8.493545], [47.378371, 8.574958], [47.373183, 8.557223], [47.379484, 8.527611], [47.401951, 8.496844], [47.372739, 8.515954], [47.362244, 8.548905], [47.388137, 8.486755], [47.368392, 8.556911], [47.366443, 8.540691], [47.415709, 8.546362], [47.380386, 8.51289], [47.378298, 8.530342], [47.3937, 8.493222], [47.377686, 8.525509], [47.377172, 8.539959], [47.382468, 8.540121], [47.396581, 8.542043], [47.369022, 8.540943], [47.376128, 8.515201], [47.400871, 8.517344], [47.390604, 8.522606], [47.369657, 8.531806], [47.387633, 8.499579], [47.361767, 8.526296], [47.366245, 8.562162], [47.373005, 8.534537], [47.37147, 8.515981], [47.374916, 8.518805], [47.37774, 8.537958], [47.394697, 8.525445], [47.390683, 8.508276], [47.421264, 8.549552], [47.360154, 8.500489], [47.363438, 8.550121], [47.372808, 8.525859], [47.387398, 8.500674], [47.392249, 8.476636], [47.386132, 8.548303], [47.391624, 8.513554], [47.387829, 8.519172], [47.405687, 8.591547], [47.343309, 8.53574], [47.386529, 8.541623], [47.3779, 8.543775], [47.378128, 8.510024], [47.370527, 8.515843], [47.368765, 8.50119], [47.365567, 8.53911], [47.370295, 8.54322], [47.369435, 8.520058], [47.37859, 8.542134], [47.402006, 8.497746], [47.384699, 8.529665], [47.374643, 8.527738], [47.3872, 8.519173], [47.381541, 8.492015], [47.383628, 8.574607], [47.337221, 8.53179], [47.391149, 8.523015], [47.404982, 8.557122], [47.379703, 8.520584], [47.376995, 8.544312], [47.426692, 8.549082], [47.369916, 8.529164], [47.386199, 8.524239], [47.42384, 8.522673], [47.407715, 8.583932], [47.375347, 8.533261], [47.373102, 8.503964], [47.392755, 8.529154], [47.386978, 8.547367], [47.398779, 8.533199], [47.414366, 8.518054], [47.375806, 8.527496], [47.413948, 8.544218], [47.365011, 8.531354], [47.371306, 8.54291], [47.390841, 8.539354], [47.379596, 8.543293], [47.413934, 8.548511], [47.413949, 8.548856], [47.374629, 8.525367], [47.40411, 8.534541], [47.379837, 8.527327], [47.409356, 8.546534], [47.365442, 8.535215], [47.376216, 8.544918], [47.37017, 8.548792], [47.373998, 8.549216], [47.413636, 8.481028], [47.364763, 8.519473], [47.371573, 8.515533], [47.377702, 8.541864], [47.390408, 8.484322], [47.374742, 8.552316], [47.374221, 8.544705], [47.382172, 8.556975], [47.386202, 8.504557], [47.377577, 8.543689], [47.409841, 8.549446], [47.406254, 8.581542], [47.393374, 8.499415], [47.38242, 8.530108], [47.373267, 8.542897], [47.372722, 8.534888], [47.380345, 8.569981], [47.366435, 8.557399], [47.398575, 8.509905], [47.352711, 8.58013], [47.391193, 8.523029], [47.351344, 8.576407], [47.400274, 8.491418], [47.378804, 8.54239], [47.410201, 8.548526], [47.364095, 8.560276], [47.393843, 8.493384], [47.37376, 8.545887], [47.376025, 8.553509], [47.368982, 8.501009], [47.396157, 8.527078], [47.360395, 8.521939], [47.352298, 8.558916], [47.388973, 8.535315], [47.370385, 8.548915], [47.361789, 8.566198], [47.377186, 8.525154], [47.381888, 8.546268], [47.414008, 8.542642], [47.377858, 8.508058], [47.418118, 8.546438], [47.404817, 8.483426], [47.402842, 8.500783], [47.369455, 8.528466], [47.361356, 8.560708], [47.430913, 8.549859], [47.380178, 8.490558], [47.371649, 8.550266], [47.370298, 8.514381], [47.370134, 8.548817], [47.413436, 8.531857], [47.414606, 8.520325], [47.377215, 8.540119], [47.352928, 8.524911], [47.3691, 8.525082], [47.424347, 8.552572], [47.419486, 8.508165], [47.4049, 8.557174], [47.378413, 8.540951], [47.3699, 8.510719], [47.36702, 8.493304], [47.374655, 8.535948], [47.386772, 8.525469], [47.389999, 8.510276], [47.368162, 8.492373], [47.38208, 8.508699], [47.364303, 8.531141], [47.396773, 8.504345], [47.378363, 8.540553], [47.373901, 8.503106], [47.376539, 8.534609], [47.389669, 8.511925], [47.40901, 8.539531], [47.356328, 8.591816], [47.385205, 8.489637], [47.415464, 8.551233], [47.380433, 8.537576], [47.364818, 8.554386], [47.384936, 8.531312], [47.404435, 8.494786], [47.416317, 8.545804], [47.387471, 8.527616], [47.356975, 8.555175], [47.40959, 8.53525], [47.382455, 8.549034], [47.393876, 8.481807], [47.39293, 8.528734], [47.363147, 8.530654], [47.370088, 8.548922], [47.386769, 8.547561], [47.403677, 8.546867], [47.405019, 8.577289], [47.369793, 8.508665], [47.385847, 8.474352], [47.369671, 8.525597], [47.379952, 8.54738], [47.365312, 8.546983], [47.381824, 8.509131], [47.407557, 8.584432], [47.376956, 8.541861], [47.384738, 8.531308], [47.405817, 8.591125], [47.372839, 8.535884], [47.393444, 8.524704], [47.373599, 8.500783], [47.385079, 8.537089], [47.373363, 8.535603], [47.380875, 8.549664], [47.368924, 8.538001], [47.3936, 8.512918], [47.365502, 8.563642], [47.411053, 8.571004], [47.427386, 8.546127], [47.373158, 8.494855], [47.383379, 8.540882], [47.390726, 8.521986], [47.374771, 8.536043], [47.409037, 8.511705], [47.376882, 8.524936], [47.394865, 8.525753], [47.372929, 8.528259], [47.401215, 8.534322], [47.357341, 8.550841], [47.327863, 8.518752], [47.372255, 8.520538], [47.384467, 8.548374], [47.374974, 8.544932], [47.365148, 8.534044], [47.369535, 8.548368], [47.414133, 8.518951], [47.334366, 8.514967], [47.364213, 8.526333], [47.4033, 8.560783], [47.388625, 8.537825], [47.411142, 8.526152], [47.414224, 8.518886], [47.403897, 8.4857], [47.379956, 8.544148], [47.373028, 8.52732], [47.381861, 8.546267], [47.403704, 8.492069], [47.370006, 8.510893], [47.365705, 8.535962], [47.383769, 8.540493], [47.387258, 8.518764], [47.366189, 8.537071], [47.388117, 8.539232], [47.390914, 8.488982], [47.378302, 8.510689], [47.42136, 8.549792], [47.413928, 8.551002], [47.389625, 8.48734], [47.386012, 8.535427], [47.388411, 8.520496], [47.367425, 8.552654], [47.382522, 8.540162], [47.384393, 8.510507], [47.355995, 8.556108], [47.384816, 8.544858], [47.366782, 8.566118], [47.40939, 8.538293], [47.425615, 8.494146], [47.367737, 8.494576], [47.393617, 8.512018], [47.378254, 8.51486], [47.387262, 8.488049], [47.377692, 8.509552], [47.403798, 8.534256], [47.366144, 8.537136], [47.361434, 8.517684], [47.351624, 8.524885], [47.392256, 8.494704], [47.422558, 8.495941], [47.362251, 8.55935], [47.365245, 8.556765], [47.354475, 8.55327], [47.37672, 8.543975], [47.346316, 8.564415], [47.373613, 8.519666], [47.366259, 8.546724], [47.368363, 8.522114], [47.373463, 8.534625], [47.373764, 8.524661], [47.383338, 8.53953], [47.35742, 8.521773], [47.374426, 8.541134], [47.369201, 8.523892], [47.382325, 8.544767], [47.375397, 8.48608], [47.335671, 8.518698], [47.377328, 8.499189], [47.384178, 8.534422], [47.382569, 8.540878], [47.369047, 8.541089], [47.377564, 8.522275], [47.386361, 8.540401], [47.373847, 8.537705], [47.384004, 8.543186], [47.37876, 8.559989], [47.377354, 8.499295], [47.365045, 8.531593], [47.370324, 8.513535], [47.361853, 8.515217], [47.407926, 8.5844], [47.371088, 8.53839], [47.38942, 8.511602], [47.406992, 8.585997], [47.370503, 8.508692], [47.359308, 8.549307], [47.360059, 8.550712], [47.354142, 8.575488], [47.386639, 8.546075], [47.388625, 8.486513], [47.368786, 8.528823], [47.367635, 8.489013], [47.426985, 8.491867], [47.378749, 8.519664], [47.374286, 8.522725], [47.406122, 8.553635], [47.391213, 8.522884], [47.380948, 8.518252], [47.372291, 8.535793], [47.339596, 8.531799], [47.385211, 8.530708], [47.399641, 8.518087], [47.374736, 8.528335], [47.415673, 8.545327], [47.399665, 8.52034], [47.387878, 8.535982], [47.428668, 8.543742], [47.388616, 8.537838], [47.403016, 8.552934], [47.361603, 8.526452], [47.411272, 8.549383], [47.377381, 8.510075], [47.411178, 8.545154], [47.402279, 8.499381], [47.4119, 8.549582], [47.36869, 8.49948], [47.370647, 8.519394], [47.385722, 8.532798], [47.391175, 8.523068], [47.381524, 8.531586], [47.36099, 8.531417], [47.367694, 8.519678], [47.361865, 8.507102], [47.359977, 8.621443], [47.37081, 8.54862], [47.376325, 8.483927], [47.357917, 8.520486], [47.375815, 8.549161], [47.379217, 8.559283], [47.406367, 8.583717], [47.369978, 8.564028], [47.365576, 8.539097], [47.398069, 8.536046], [47.426885, 8.491971], [47.36817, 8.53976], [47.38418, 8.511126], [47.385628, 8.528479], [47.381665, 8.490283], [47.38615, 8.54829], [47.390773, 8.545539], [47.36309, 8.519505], [47.408556, 8.540886], [47.372963, 8.531358], [47.366246, 8.553701], [47.392428, 8.492641], [47.362063, 8.533968], [47.362952, 8.567719], [47.406953, 8.586367], [47.356551, 8.534688], [47.361673, 8.549383], [47.405233, 8.491119], [47.369906, 8.541583], [47.39119, 8.517625], [47.409906, 8.47967], [47.399463, 8.505246], [47.364667, 8.537251], [47.375082, 8.529865], [47.412243, 8.556851], [47.391686, 8.481248], [47.357687, 8.521103], [47.413361, 8.553787], [47.347338, 8.566673], [47.362129, 8.51836], [47.373352, 8.523514], [47.384484, 8.53811], [47.377478, 8.538972], [47.372188, 8.543828], [47.392127, 8.490198], [47.414049, 8.5421], [47.36972, 8.508822], [47.398474, 8.538836], [47.363897, 8.549098], [47.373312, 8.519143], [47.364863, 8.532701], [47.373967, 8.50181], [47.366819, 8.541784], [47.386447, 8.496509], [47.420924, 8.550314], [47.407571, 8.548869], [47.372289, 8.536045], [47.369872, 8.529083], [47.378573, 8.510536], [47.375587, 8.52683], [47.375846, 8.537469], [47.366373, 8.515626], [47.373645, 8.52487], [47.381036, 8.536543], [47.368478, 8.505897], [47.380748, 8.512712], [47.392916, 8.524455], [47.373232, 8.535243], [47.398497, 8.502803], [47.415788, 8.476697], [47.382952, 8.529973], [47.359179, 8.58187], [47.379836, 8.521659], [47.383508, 8.539547], [47.421617, 8.550222], [47.38033, 8.513127], [47.381548, 8.532898], [47.374031, 8.501771], [47.418359, 8.546708], [47.37736, 8.512379], [47.397599, 8.532406], [47.37926, 8.525594], [47.384756, 8.531321], [47.384181, 8.531217], [47.381, 8.495116], [47.367346, 8.537413], [47.36715, 8.544796], [47.373368, 8.536967], [47.414543, 8.558145], [47.363687, 8.535364], [47.397821, 8.528927], [47.365478, 8.535229], [47.370179, 8.548818], [47.365813, 8.550065], [47.373812, 8.485321], [47.373956, 8.566548], [47.411097, 8.526124], [47.369282, 8.543861], [47.360022, 8.51285], [47.399816, 8.518607], [47.365372, 8.564076], [47.38823, 8.4933], [47.365451, 8.535242], [47.381175, 8.49169], [47.374666, 8.549945], [47.365063, 8.521107], [47.372987, 8.546811], [47.380523, 8.526149], [47.37695, 8.541491], [47.380894, 8.532567], [47.369897, 8.563947], [47.378888, 8.549503], [47.370288, 8.49889], [47.381173, 8.528732], [47.40461, 8.557379], [47.327913, 8.529615], [47.373174, 8.503899], [47.380225, 8.520555], [47.419256, 8.505802], [47.366358, 8.544846], [47.430137, 8.536932], [47.366175, 8.540487], [47.393933, 8.513812], [47.409941, 8.479724], [47.354338, 8.526105], [47.38502, 8.530969], [47.40346, 8.57018], [47.359546, 8.535637], [47.375587, 8.527849], [47.38322, 8.548097], [47.382473, 8.548134], [47.386212, 8.535272], [47.369041, 8.537937], [47.375577, 8.527889], [47.376031, 8.511067], [47.374141, 8.54089], [47.372193, 8.520431], [47.374326, 8.53079], [47.423077, 8.502181], [47.375609, 8.548203], [47.398228, 8.53442], [47.420748, 8.482347], [47.371594, 8.526722], [47.399794, 8.543739], [47.425806, 8.509565], [47.377766, 8.516029], [47.40951, 8.543609], [47.36654, 8.540825], [47.365451, 8.535229], [47.352326, 8.573477], [47.404774, 8.49213], [47.375499, 8.496636], [47.36978, 8.52544], [47.327185, 8.519042], [47.359189, 8.597067], [47.366684, 8.544628], [47.394223, 8.49012], [47.402091, 8.552862], [47.368085, 8.534422], [47.380984, 8.503658], [47.378502, 8.540066], [47.359602, 8.548704], [47.387619, 8.519499], [47.384813, 8.531932], [47.363986, 8.531319], [47.361972, 8.526512], [47.362914, 8.535256], [47.39076, 8.508688], [47.415802, 8.545038], [47.365828, 8.536243], [47.403955, 8.548913], [47.37939, 8.542216], [47.368031, 8.534514], [47.391558, 8.486425], [47.403661, 8.485881], [47.365256, 8.521548], [47.369419, 8.541785], [47.404133, 8.569479], [47.403459, 8.556468], [47.37235, 8.534325], [47.374478, 8.53944], [47.389755, 8.486839], [47.378974, 8.54242], [47.364532, 8.566243], [47.422886, 8.55111], [47.353298, 8.576198], [47.362344, 8.504874], [47.381651, 8.484799], [47.393534, 8.524733], [47.379051, 8.516147], [47.37753, 8.551408], [47.378373, 8.509777], [47.407666, 8.548314], [47.374382, 8.542973], [47.342655, 8.530777], [47.4188, 8.557837], [47.373217, 8.533005], [47.418891, 8.507332], [47.366339, 8.544899], [47.359994, 8.594861], [47.375376, 8.536757], [47.384582, 8.527861], [47.365338, 8.548042], [47.383134, 8.530639], [47.378363, 8.540553], [47.376839, 8.527676], [47.355556, 8.572539], [47.42119, 8.549762], [47.366815, 8.553488], [47.374039, 8.533552], [47.392476, 8.540501], [47.375867, 8.495743], [47.392791, 8.523459], [47.367833, 8.534444], [47.378555, 8.540213], [47.419494, 8.553981], [47.37408, 8.531142], [47.389122, 8.533769], [47.402466, 8.485791], [47.393296, 8.528092], [47.378316, 8.532196], [47.380165, 8.520183], [47.393426, 8.52473], [47.352389, 8.524848], [47.419347, 8.547763], [47.368111, 8.532675], [47.400268, 8.494015], [47.394352, 8.479883], [47.387555, 8.51967], [47.370536, 8.524529], [47.362196, 8.526517], [47.381851, 8.548214], [47.391547, 8.54268], [47.386333, 8.518506], [47.361945, 8.560337], [47.36955, 8.551559], [47.37314, 8.534539], [47.419169, 8.5476], [47.395745, 8.516313], [47.371852, 8.536579], [47.39322, 8.52462], [47.335118, 8.51919], [47.414704, 8.532797], [47.371848, 8.556639], [47.360938, 8.531151], [47.391148, 8.523081], [47.382602, 8.529807], [47.37494, 8.534418], [47.362073, 8.554541], [47.398197, 8.536764], [47.367077, 8.543987], [47.41897, 8.50569], [47.374537, 8.539865], [47.389588, 8.521606], [47.404427, 8.574361], [47.405307, 8.555102], [47.392077, 8.500489], [47.377497, 8.538893], [47.385216, 8.530218], [47.379711, 8.558393], [47.357038, 8.522123], [47.402652, 8.576483], [47.375461, 8.5221], [47.37037, 8.553192], [47.374627, 8.515992], [47.391059, 8.523026], [47.385197, 8.488551], [47.384394, 8.531566], [47.362605, 8.568228], [47.376896, 8.543436], [47.38864, 8.488844], [47.384068, 8.535598], [47.377814, 8.507938], [47.400239, 8.494213], [47.36876, 8.552324], [47.383327, 8.54255], [47.410186, 8.546286], [47.376885, 8.512184], [47.362851, 8.51623], [47.391062, 8.478653], [47.36908, 8.525307], [47.406023, 8.584929], [47.363464, 8.554848], [47.377983, 8.514047], [47.375644, 8.544549], [47.352145, 8.576398], [47.379931, 8.527899], [47.36464, 8.537251], [47.35908, 8.570006], [47.369515, 8.520165], [47.366809, 8.54475], [47.367893, 8.549896], [47.423664, 8.495009], [47.398157, 8.533425], [47.375257, 8.547322], [47.399333, 8.515445], [47.386064, 8.504925], [47.426599, 8.551294], [47.352168, 8.525478], [47.385168, 8.53239], [47.383837, 8.532455], [47.390297, 8.505275], [47.378208, 8.527479], [47.368863, 8.501245], [47.360412, 8.550429], [47.365451, 8.535202], [47.378957, 8.544207], [47.336383, 8.526215], [47.373457, 8.519993], [47.351881, 8.527299], [47.377551, 8.558493], [47.359044, 8.526916], [47.394779, 8.523433], [47.387658, 8.534467], [47.356595, 8.522378], [47.394024, 8.493189], [47.428256, 8.489599], [47.36743, 8.556811], [47.412903, 8.537756], [47.371517, 8.546264], [47.403553, 8.5066], [47.386804, 8.526887], [47.416389, 8.538199], [47.379341, 8.483642], [47.363913, 8.528577], [47.389962, 8.491811], [47.391859, 8.490947], [47.378904, 8.539386], [47.393937, 8.533523], [47.382021, 8.550177], [47.374455, 8.539969], [47.373384, 8.520098], [47.370169, 8.537656], [47.364604, 8.566191], [47.399685, 8.467931], [47.410117, 8.567354], [47.383394, 8.484079], [47.388997, 8.49505], [47.379781, 8.524744], [47.392703, 8.475161], [47.380035, 8.57314], [47.380461, 8.572804], [47.414448, 8.51897], [47.377905, 8.525275], [47.389234, 8.486789], [47.40408, 8.533864], [47.384038, 8.52638], [47.398933, 8.538832], [47.378107, 8.516128], [47.400807, 8.54886], [47.374536, 8.539984], [47.423115, 8.538484], [47.379034, 8.516081], [47.366511, 8.544876], [47.427742, 8.491723], [47.398898, 8.532976], [47.373751, 8.486127], [47.395757, 8.54543], [47.382627, 8.51467], [47.368181, 8.496134], [47.411957, 8.539857], [47.360414, 8.552097], [47.378021, 8.508975], [47.38, 8.5377], [47.36395, 8.531305], [47.363932, 8.531305], [47.348486, 8.534324], [47.374845, 8.530152], [47.368249, 8.551228], [47.404742, 8.585272], [47.374934, 8.518765], [47.366238, 8.545109], [47.369464, 8.541773], [47.382964, 8.551296], [47.367994, 8.52408], [47.38834, 8.483235], [47.362647, 8.547271], [47.379269, 8.527501], [47.363924, 8.533172], [47.363956, 8.528737], [47.361661, 8.532688], [47.36422, 8.547357], [47.386548, 8.509014], [47.406799, 8.550535], [47.380767, 8.54688], [47.409044, 8.550039], [47.369427, 8.525724], [47.391376, 8.53608], [47.382184, 8.492491], [47.410149, 8.541701], [47.423318, 8.494485], [47.404927, 8.557174], [47.377178, 8.541217], [47.385551, 8.483247], [47.372645, 8.521222], [47.35279, 8.559151], [47.407286, 8.549499], [47.38726, 8.54328], [47.366539, 8.540957], [47.367931, 8.524105], [47.397482, 8.532457], [47.384364, 8.477237], [47.357728, 8.521488], [47.387975, 8.485798], [47.369014, 8.538003], [47.367736, 8.537103], [47.376401, 8.537811], [47.367543, 8.535629], [47.393973, 8.54481], [47.42074, 8.54697], [47.362095, 8.547591], [47.37369, 8.54284], [47.353233, 8.52509], [47.371048, 8.547247], [47.35787, 8.521676], [47.373377, 8.53702], [47.388064, 8.520065], [47.373013, 8.518422], [47.375975, 8.541854], [47.389449, 8.53914], [47.33507, 8.52996], [47.387596, 8.499737], [47.396095, 8.526984], [47.386423, 8.518521], [47.3735, 8.503707], [47.375401, 8.547404], [47.382513, 8.529726], [47.378587, 8.540637], [47.383157, 8.51386], [47.376507, 8.539826], [47.385431, 8.529362], [47.377476, 8.542005], [47.37093, 8.531356], [47.37291, 8.533105], [47.384388, 8.528321], [47.365764, 8.556074], [47.38056, 8.517423], [47.373032, 8.534484], [47.391609, 8.517024], [47.378412, 8.520107], [47.365705, 8.535962], [47.352492, 8.508079], [47.369612, 8.55348], [47.373413, 8.533181], [47.366943, 8.543839], [47.420708, 8.502465], [47.373582, 8.534403], [47.380503, 8.519646], [47.401873, 8.499531], [47.373627, 8.534377], [47.354942, 8.552485], [47.366238, 8.522389], [47.378302, 8.510689], [47.377505, 8.529465], [47.378515, 8.503212], [47.424584, 8.53532], [47.424701, 8.537191], [47.372569, 8.529258], [47.338481, 8.52598], [47.408907, 8.545531], [47.381765, 8.490073], [47.342313, 8.519296], [47.391148, 8.523055], [47.352152, 8.573844], [47.365221, 8.521534], [47.389072, 8.527701], [47.38349, 8.512794], [47.370995, 8.502187], [47.410061, 8.546231], [47.379477, 8.527399], [47.381812, 8.515289], [47.382682, 8.53753], [47.36307, 8.499368], [47.366056, 8.53687], [47.415479, 8.550584], [47.375017, 8.53675], [47.37461, 8.536013], [47.371324, 8.522916], [47.35795, 8.532255], [47.431231, 8.539089], [47.368448, 8.499422], [47.376787, 8.522617], [47.369154, 8.504878], [47.405037, 8.552354], [47.370592, 8.470296], [47.370704, 8.535297], [47.398457, 8.591297], [47.361072, 8.531246], [47.373619, 8.561456], [47.362442, 8.53379], [47.353681, 8.556337], [47.36617, 8.53719], [47.39104, 8.522178], [47.366276, 8.54777], [47.378334, 8.53025], [47.384034, 8.532512], [47.393499, 8.524639], [47.381682, 8.516677], [47.376026, 8.527024], [47.381452, 8.542047], [47.363957, 8.55135], [47.340671, 8.530299], [47.370219, 8.558578], [47.375917, 8.553599], [47.370284, 8.522551], [47.399307, 8.515325], [47.371725, 8.519561], [47.371474, 8.51851], [47.380007, 8.548228], [47.389464, 8.511735], [47.362167, 8.547539], [47.395361, 8.508264], [47.385942, 8.532352], [47.370324, 8.537394], [47.372731, 8.534902], [47.389046, 8.520893], [47.369621, 8.533712], [47.365731, 8.536095], [47.421402, 8.549223], [47.392704, 8.52404], [47.371034, 8.538402], [47.371725, 8.519548], [47.368879, 8.540873], [47.375731, 8.537334], [47.389139, 8.486417], [47.403286, 8.545428], [47.373803, 8.537572], [47.36984, 8.552227], [47.389749, 8.491541], [47.401615, 8.553647], [47.387831, 8.520007], [47.410723, 8.55226], [47.382347, 8.515843], [47.373168, 8.531521], [47.373942, 8.524836], [47.354839, 8.601222], [47.369533, 8.520139], [47.371701, 8.473032], [47.379614, 8.537626], [47.417607, 8.546269], [47.353559, 8.57623], [47.369436, 8.506446], [47.370759, 8.515026], [47.367261, 8.545395], [47.415326, 8.517398], [47.373307, 8.524387], [47.388188, 8.525034], [47.373634, 8.536483], [47.398815, 8.533213], [47.373456, 8.520007], [47.392341, 8.50317], [47.379515, 8.495206], [47.381456, 8.535916], [47.369569, 8.525886], [47.404351, 8.560951], [47.370906, 8.520498], [47.377203, 8.512773], [47.374603, 8.541455], [47.400918, 8.491775], [47.408619, 8.569681], [47.372714, 8.534875], [47.364884, 8.502635], [47.384533, 8.50316], [47.359802, 8.522841], [47.391645, 8.517051], [47.392855, 8.522295], [47.374426, 8.522145], [47.38023, 8.52666], [47.406395, 8.549573], [47.39348, 8.50053], [47.413199, 8.538769], [47.363908, 8.566574], [47.39559, 8.527066], [47.400927, 8.591682], [47.37405, 8.502579], [47.370836, 8.546859], [47.371008, 8.524075], [47.385434, 8.529044], [47.35883, 8.521947], [47.360045, 8.523812], [47.394074, 8.541832], [47.369626, 8.53697], [47.411182, 8.570663], [47.370655, 8.531946], [47.370739, 8.546685], [47.372374, 8.534643], [47.378337, 8.506836], [47.370509, 8.549037], [47.384957, 8.50885], [47.399298, 8.522028], [47.375338, 8.490568], [47.385163, 8.528178], [47.369315, 8.481287], [47.370999, 8.498891], [47.389356, 8.521362], [47.369744, 8.525479], [47.36561, 8.552483], [47.38681, 8.534741], [47.386736, 8.525442], [47.350848, 8.560011], [47.422557, 8.4961], [47.381141, 8.541644], [47.348122, 8.562812], [47.408142, 8.546535], [47.386871, 8.502266], [47.394795, 8.490568], [47.37761, 8.492004], [47.37161, 8.528907], [47.387325, 8.48499], [47.425724, 8.536536], [47.409966, 8.535403], [47.385659, 8.532784], [47.39345, 8.539302], [47.403306, 8.497281], [47.365073, 8.555875], [47.34615, 8.533045], [47.367065, 8.523372], [47.407538, 8.489813], [47.375382, 8.549337], [47.393348, 8.498289], [47.370241, 8.548846], [47.419347, 8.547763], [47.370698, 8.51676], [47.405884, 8.573425], [47.42619, 8.493177], [47.363218, 8.513484], [47.405613, 8.570783], [47.390567, 8.539812], [47.410426, 8.528655], [47.377719, 8.509512], [47.335589, 8.518802], [47.392552, 8.516275], [47.391931, 8.482948], [47.388101, 8.51992], [47.398274, 8.53242], [47.368723, 8.538288], [47.370876, 8.54829], [47.367931, 8.544005], [47.37691, 8.528711], [47.355195, 8.600714], [47.38359, 8.530026], [47.384157, 8.527058], [47.375124, 8.518703], [47.378211, 8.544205], [47.354925, 8.554153], [47.396285, 8.48196], [47.37511, 8.529773], [47.375265, 8.5409], [47.391931, 8.528819], [47.389683, 8.536297], [47.37855, 8.504232], [47.378516, 8.533895], [47.384614, 8.486473], [47.399754, 8.531921], [47.383107, 8.540082], [47.3481, 8.534276], [47.367016, 8.545667], [47.348605, 8.533135], [47.373925, 8.535204], [47.386528, 8.520775], [47.379186, 8.538107], [47.380958, 8.538143], [47.391146, 8.489211], [47.379095, 8.556023], [47.374469, 8.549755], [47.408377, 8.544593], [47.368663, 8.524689], [47.404472, 8.489686], [47.404481, 8.489686], [47.362573, 8.535209], [47.370983, 8.53141], [47.369502, 8.506156], [47.403792, 8.567577], [47.373672, 8.546613], [47.385311, 8.508526], [47.399662, 8.515888], [47.377652, 8.541492], [47.408676, 8.507962], [47.377422, 8.539236], [47.370304, 8.548874], [47.364353, 8.563393], [47.367879, 8.560634], [47.372944, 8.53623], [47.425075, 8.537636], [47.413627, 8.481015], [47.38744, 8.532794], [47.367182, 8.544294], [47.374473, 8.495689], [47.379991, 8.554572], [47.394865, 8.525753], [47.375397, 8.517424], [47.358918, 8.516376], [47.399776, 8.543738], [47.379391, 8.542164], [47.405232, 8.504925], [47.368063, 8.541505], [47.407121, 8.586688], [47.379694, 8.507036], [47.363881, 8.535752], [47.383119, 8.514998], [47.391061, 8.522722], [47.370724, 8.5369], [47.376375, 8.52813], [47.370295, 8.54886], [47.390854, 8.488689], [47.367677, 8.495223], [47.366846, 8.531418], [47.375571, 8.511257], [47.377839, 8.509223], [47.372606, 8.53482], [47.401901, 8.499347], [47.357954, 8.520447], [47.37936, 8.545354], [47.377255, 8.529287], [47.409974, 8.54126], [47.377271, 8.510271], [47.367942, 8.497691], [47.372756, 8.499482], [47.368095, 8.536276], [47.398164, 8.534551], [47.389425, 8.494449], [47.406177, 8.48128], [47.358922, 8.570533], [47.372853, 8.566234], [47.363386, 8.534855], [47.371799, 8.559855], [47.377296, 8.547669], [47.354191, 8.555726], [47.367634, 8.535591], [47.367065, 8.544305], [47.359725, 8.587627], [47.414118, 8.550861], [47.384797, 8.531733], [47.36462, 8.532789], [47.370283, 8.52745], [47.369149, 8.555775], [47.416337, 8.541763], [47.378624, 8.519502], [47.351977, 8.525673], [47.37639, 8.544578], [47.378195, 8.510608], [47.38883, 8.520901], [47.368782, 8.53494], [47.367917, 8.544587], [47.413913, 8.54696], [47.392114, 8.500463], [47.354392, 8.573799], [47.365821, 8.537063], [47.360054, 8.568796], [47.370295, 8.54886], [47.400028, 8.545598], [47.389202, 8.491266], [47.387121, 8.477741], [47.380373, 8.520041], [47.373474, 8.568882], [47.376218, 8.536245], [47.358447, 8.54999], [47.39347, 8.529579], [47.406865, 8.536094], [47.370767, 8.535245], [47.375959, 8.55944], [47.374527, 8.539971], [47.377221, 8.532862], [47.377354, 8.529329], [47.361567, 8.526504], [47.383325, 8.510221], [47.413799, 8.546653], [47.390378, 8.539808], [47.366532, 8.540772], [47.400456, 8.58571], [47.42427, 8.549389], [47.380338, 8.493686], [47.372848, 8.550979], [47.369867, 8.52192], [47.369867, 8.52192], [47.39511, 8.524526], [47.36891, 8.540371], [47.402352, 8.499289], [47.37436, 8.523415], [47.378482, 8.509647], [47.426638, 8.544442], [47.370878, 8.52349], [47.400232, 8.546941], [47.431464, 8.516307], [47.379923, 8.521038], [47.378442, 8.510096], [47.371543, 8.515916], [47.39139, 8.536531], [47.365511, 8.546881], [47.381942, 8.529277], [47.382544, 8.548175], [47.380908, 8.536765], [47.407766, 8.557592], [47.387176, 8.485583], [47.40485, 8.505367], [47.398548, 8.538612], [47.395052, 8.529758], [47.385566, 8.533153], [47.352615, 8.524773], [47.410454, 8.538037], [47.385248, 8.494883], [47.389829, 8.51112], [47.377499, 8.518619], [47.374201, 8.521147], [47.375966, 8.541934], [47.393335, 8.495772], [47.394197, 8.489974], [47.37707, 8.544022], [47.364356, 8.546261], [47.38277, 8.550882], [47.387231, 8.486525], [47.368077, 8.494821], [47.409268, 8.55007], [47.37179, 8.530791], [47.370966, 8.548345], [47.402841, 8.500836], [47.357826, 8.57223], [47.376911, 8.526658], [47.372853, 8.475993], [47.356241, 8.561315], [47.391085, 8.523067], [47.341846, 8.530694], [47.384421, 8.548466], [47.367674, 8.538876], [47.386011, 8.535533], [47.410354, 8.538154], [47.373284, 8.531603], [47.331926, 8.517127], [47.366425, 8.540611], [47.361733, 8.552442], [47.344897, 8.533311], [47.392489, 8.50263], [47.380729, 8.512751], [47.378983, 8.548048], [47.3938, 8.472162], [47.383412, 8.484053], [47.342643, 8.531028], [47.374727, 8.551985], [47.385012, 8.508705], [47.375044, 8.545212], [47.388958, 8.546269], [47.392049, 8.518145], [47.369078, 8.537885], [47.383825, 8.530839], [47.371701, 8.540124], [47.380466, 8.519791], [47.369333, 8.557235], [47.374497, 8.539348], [47.387573, 8.522492], [47.374308, 8.524169], [47.371016, 8.524141], [47.418488, 8.548261], [47.389153, 8.536246], [47.387467, 8.519496], [47.410371, 8.542024], [47.420931, 8.507558], [47.378196, 8.556997], [47.374022, 8.54478], [47.394789, 8.532839], [47.36821, 8.537391], [47.379306, 8.525449], [47.365859, 8.545286], [47.377383, 8.529104], [47.383405, 8.481894], [47.376376, 8.534752], [47.378201, 8.509933], [47.406678, 8.54632], [47.366578, 8.533041], [47.414604, 8.561075], [47.369192, 8.55604], [47.383392, 8.515613], [47.377923, 8.530016], [47.392498, 8.50263], [47.384817, 8.531495], [47.36738, 8.496184], [47.373117, 8.536883], [47.3863, 8.518188], [47.382988, 8.529881], [47.369726, 8.536853], [47.361225, 8.502363], [47.32794, 8.529642], [47.373996, 8.502618], [47.384566, 8.499545], [47.405871, 8.553524], [47.390995, 8.523091], [47.364264, 8.555844], [47.368863, 8.501298], [47.392531, 8.523268], [47.385571, 8.526928], [47.370224, 8.548819], [47.412154, 8.547414], [47.376321, 8.537717], [47.375758, 8.539188], [47.413265, 8.541328], [47.35916, 8.558147], [47.379527, 8.529665], [47.37718, 8.510376], [47.377739, 8.509288], [47.3626, 8.504469], [47.369744, 8.525506], [47.377779, 8.507858], [47.402058, 8.498939], [47.397583, 8.481694], [47.420296, 8.503318], [47.419179, 8.50637], [47.41727, 8.545798], [47.411671, 8.567612], [47.391034, 8.522748], [47.426297, 8.55468], [47.377197, 8.544846], [47.378406, 8.548182], [47.393653, 8.538829], [47.357375, 8.590462], [47.387607, 8.543658], [47.398039, 8.532534], [47.402608, 8.499798], [47.414758, 8.516565], [47.363303, 8.557598], [47.387887, 8.520737], [47.377648, 8.543756], [47.390675, 8.522701], [47.387276, 8.547188], [47.368979, 8.528363], [47.376476, 8.536488], [47.370179, 8.513598], [47.364203, 8.531205], [47.373653, 8.536364], [47.420631, 8.548982], [47.377495, 8.543793], [47.390703, 8.522542], [47.39146, 8.525273], [47.414756, 8.516737], [47.386372, 8.497806], [47.368779, 8.551212], [47.376979, 8.542299], [47.373595, 8.534906], [47.361806, 8.515375], [47.404522, 8.534721], [47.372773, 8.518073], [47.380932, 8.581608], [47.374058, 8.536319], [47.391385, 8.53608], [47.377743, 8.522411], [47.366638, 8.535266], [47.390788, 8.486052], [47.382724, 8.531214], [47.363997, 8.533054], [47.390887, 8.481047], [47.394911, 8.487616], [47.386375, 8.482694], [47.349626, 8.527888], [47.369166, 8.532432], [47.377338, 8.541366], [47.366337, 8.54049], [47.370709, 8.547002], [47.410731, 8.553281], [47.373208, 8.533005], [47.428755, 8.489078], [47.427781, 8.491326], [47.378396, 8.534237], [47.374749, 8.489126], [47.378748, 8.554784], [47.387481, 8.486649], [47.407886, 8.583008], [47.380098, 8.520671], [47.405784, 8.59082], [47.350194, 8.560619], [47.359828, 8.594407], [47.408964, 8.539556], [47.403816, 8.53423], [47.384322, 8.50746], [47.37445, 8.540472], [47.363698, 8.500453], [47.365048, 8.519783], [47.403851, 8.485765], [47.39896, 8.51296], [47.373365, 8.531644], [47.404674, 8.57487], [47.38365, 8.527392], [47.364069, 8.566683], [47.403324, 8.497242], [47.385294, 8.494672], [47.370134, 8.548817], [47.380626, 8.525754], [47.396988, 8.512284], [47.381736, 8.52918], [47.382049, 8.529306], [47.359072, 8.586289], [47.329871, 8.514678], [47.407018, 8.550275], [47.38618, 8.498212], [47.376589, 8.513992], [47.335663, 8.518592], [47.39881, 8.533796], [47.372572, 8.527934], [47.403772, 8.497423], [47.401918, 8.499532], [47.397986, 8.53248], [47.377912, 8.509013]], [[47.380736, 8.525465], [47.407693, 8.532335], [47.377631, 8.498572], [47.379607, 8.573647], [47.405838, 8.590781], [47.3566, 8.523795], [47.40798, 8.548387], [47.369929, 8.510481], [47.376974, 8.541888], [47.362839, 8.565545], [47.362624, 8.568162], [47.419905, 8.50665], [47.376328, 8.544497], [47.36448, 8.531356], [47.366577, 8.540799], [47.370179, 8.548805], [47.378248, 8.510702], [47.353596, 8.576138], [47.376746, 8.559893], [47.378885, 8.556402], [47.371382, 8.527287], [47.38308, 8.530678], [47.409288, 8.537628], [47.363925, 8.56672], [47.376706, 8.53501], [47.376754, 8.536627], [47.372053, 8.529565], [47.376065, 8.559601], [47.375293, 8.544581], [47.377508, 8.525412], [47.367529, 8.538039], [47.370144, 8.490082], [47.370063, 8.511623], [47.372375, 8.540164], [47.380582, 8.556743], [47.426777, 8.546777], [47.376571, 8.537921], [47.38036, 8.528212], [47.390538, 8.524804], [47.419297, 8.547351], [47.369105, 8.537846], [47.365279, 8.508495], [47.356982, 8.53479], [47.365451, 8.535242], [47.407903, 8.546133], [47.415719, 8.531042], [47.382241, 8.540382], [47.410587, 8.572638], [47.414038, 8.542325], [47.382028, 8.498699], [47.382447, 8.537605], [47.400736, 8.5487], [47.396742, 8.595526], [47.37512, 8.522914], [47.429403, 8.545029], [47.390723, 8.508793], [47.36271, 8.54722], [47.363151, 8.52925], [47.393705, 8.502535], [47.404578, 8.493928], [47.424004, 8.548986], [47.420092, 8.535678], [47.387098, 8.486324], [47.370774, 8.470101], [47.398941, 8.513132], [47.366549, 8.540905], [47.422742, 8.540822], [47.361484, 8.561479], [47.361727, 8.576205], [47.375162, 8.485241], [47.387529, 8.488332], [47.379244, 8.526295], [47.392668, 8.524066], [47.378125, 8.541833], [47.375391, 8.528587], [47.399032, 8.513902], [47.416791, 8.54698], [47.377113, 8.543308], [47.388935, 8.489048], [47.371711, 8.547566], [47.374769, 8.523887], [47.383214, 8.540177], [47.395561, 8.532099], [47.410648, 8.548787], [47.374637, 8.53604], [47.398122, 8.591582], [47.377211, 8.529167], [47.340164, 8.531652], [47.364775, 8.502686], [47.371879, 8.522279], [47.366271, 8.54074], [47.369059, 8.550159], [47.374705, 8.527818], [47.370613, 8.470005], [47.364594, 8.537356], [47.409627, 8.549309], [47.387108, 8.534654], [47.39323, 8.524594], [47.377243, 8.526744], [47.375706, 8.537042], [47.392076, 8.500688], [47.392698, 8.537988], [47.338793, 8.527283], [47.368029, 8.601827], [47.372199, 8.536069], [47.373453, 8.534718], [47.409682, 8.550132], [47.392181, 8.499948], [47.374648, 8.549878], [47.382607, 8.546362], [47.38618, 8.521483], [47.3632, 8.575429], [47.367218, 8.533875], [47.391685, 8.516615], [47.373361, 8.474507], [47.394874, 8.525767], [47.374466, 8.521656], [47.37217, 8.547522], [47.413644, 8.528919], [47.370452, 8.514226], [47.363497, 8.534566], [47.37138, 8.510219], [47.374666, 8.537696], [47.40931, 8.544837], [47.398344, 8.537363], [47.408655, 8.537138], [47.373772, 8.524701], [47.383282, 8.529252], [47.383399, 8.499349], [47.354553, 8.601944], [47.369744, 8.525492], [47.381325, 8.510578], [47.366152, 8.532502], [47.357345, 8.598907], [47.406943, 8.550578], [47.410988, 8.545243], [47.376389, 8.52192], [47.353577, 8.576177], [47.372982, 8.531266], [47.38368, 8.528028], [47.377567, 8.543768], [47.373875, 8.546048], [47.40633, 8.584803], [47.355202, 8.52607], [47.380135, 8.548059], [47.374426, 8.541121], [47.365322, 8.537424], [47.378299, 8.527375], [47.386991, 8.546003], [47.399323, 8.501918], [47.375743, 8.544538], [47.377903, 8.508126], [47.391454, 8.523048], [47.365955, 8.53234], [47.414849, 8.551591], [47.38106, 8.503302], [47.381576, 8.513563], [47.353611, 8.524118], [47.355267, 8.526892], [47.371175, 8.555539], [47.374454, 8.539201], [47.38561, 8.487711], [47.414178, 8.551233], [47.390919, 8.488452], [47.374799, 8.522656], [47.374041, 8.544675], [47.37738, 8.573255], [47.327555, 8.518931], [47.407991, 8.54261], [47.369606, 8.528654], [47.376703, 8.526773], [47.362759, 8.559864], [47.373368, 8.534173], [47.387126, 8.494112], [47.366898, 8.520099], [47.401436, 8.501007], [47.399786, 8.542785], [47.385889, 8.528484], [47.367538, 8.541799], [47.375983, 8.538186], [47.369109, 8.492034], [47.390953, 8.522786], [47.398256, 8.537123], [47.350342, 8.563957], [47.351554, 8.602289], [47.366857, 8.544367], [47.377796, 8.507978], [47.382172, 8.556975], [47.357121, 8.521979], [47.40242, 8.495714], [47.387137, 8.519119], [47.424249, 8.543146], [47.396677, 8.529115], [47.391872, 8.517771], [47.370975, 8.537977], [47.406485, 8.575425], [47.378777, 8.542349], [47.393927, 8.525032], [47.362602, 8.558444], [47.371571, 8.522484], [47.375721, 8.559872], [47.404436, 8.574375], [47.353518, 8.602001], [47.379114, 8.520016], [47.348144, 8.534317], [47.414261, 8.483505], [47.421343, 8.549779], [47.381746, 8.513725], [47.405441, 8.50477], [47.374805, 8.54571], [47.338989, 8.529378], [47.372735, 8.538345], [47.365111, 8.520724], [47.373835, 8.499516], [47.383065, 8.514997], [47.376078, 8.535792], [47.381167, 8.517872], [47.377278, 8.522097], [47.375063, 8.539439], [47.389051, 8.525091], [47.381941, 8.531237], [47.410023, 8.479619], [47.37855, 8.575055], [47.377441, 8.499641], [47.397045, 8.493408], [47.384094, 8.503892], [47.363667, 8.528956], [47.394233, 8.492994], [47.354846, 8.554972], [47.378911, 8.545292], [47.399739, 8.492891], [47.379507, 8.528049], [47.327691, 8.518841], [47.365814, 8.550012], [47.378097, 8.544759], [47.392235, 8.493101], [47.381781, 8.545219], [47.37759, 8.510821], [47.379188, 8.52746], [47.39328, 8.523986], [47.37913, 8.538331], [47.370235, 8.513374], [47.328652, 8.513198], [47.400381, 8.538809], [47.398802, 8.592815], [47.375997, 8.538637], [47.390802, 8.522571], [47.365612, 8.526772], [47.364293, 8.547266], [47.382529, 8.55628], [47.370159, 8.543323], [47.348215, 8.531552], [47.370285, 8.518645], [47.378446, 8.514506], [47.399243, 8.505719], [47.414777, 8.560919], [47.372936, 8.547432], [47.374503, 8.539679], [47.38797, 8.485347], [47.371185, 8.52343], [47.354793, 8.556731], [47.370179, 8.548818], [47.378229, 8.509787], [47.370118, 8.535444], [47.376898, 8.513654], [47.386769, 8.547508], [47.397809, 8.533113], [47.410741, 8.57166], [47.385347, 8.517202], [47.356363, 8.531785], [47.377322, 8.527898], [47.424816, 8.537458], [47.360145, 8.568692], [47.368333, 8.524391], [47.411299, 8.570692], [47.391247, 8.532607], [47.375201, 8.522929], [47.382844, 8.528024], [47.366656, 8.534353], [47.361573, 8.549513], [47.408638, 8.546413], [47.373223, 8.535243], [47.358702, 8.517391], [47.370607, 8.469594], [47.333569, 8.528923], [47.382967, 8.513935], [47.377359, 8.512392], [47.379994, 8.527847], [47.377583, 8.550522], [47.390414, 8.532193], [47.358353, 8.558726], [47.374206, 8.475556], [47.371393, 8.54793], [47.410366, 8.548132], [47.408519, 8.580769], [47.366233, 8.537191], [47.392749, 8.534559], [47.426119, 8.543225], [47.376923, 8.537782], [47.348295, 8.527861], [47.386368, 8.534904], [47.39666, 8.529022], [47.378248, 8.52891], [47.418063, 8.546556], [47.370321, 8.535819], [47.383997, 8.508632], [47.395638, 8.542858], [47.380062, 8.536787], [47.402991, 8.575801], [47.405801, 8.593642], [47.389687, 8.511912], [47.414249, 8.518118], [47.370296, 8.548834], [47.406916, 8.550578], [47.365714, 8.535949], [47.391105, 8.522829], [47.37883, 8.531068], [47.407354, 8.586733], [47.42789, 8.536753], [47.409194, 8.578094], [47.375561, 8.578063], [47.426278, 8.543559], [47.368323, 8.560233], [47.387634, 8.516003], [47.40874, 8.580323], [47.334826, 8.538608], [47.389827, 8.536247], [47.378333, 8.530382], [47.358326, 8.558804], [47.392459, 8.532857], [47.369266, 8.525655], [47.37011, 8.521011], [47.380667, 8.537581], [47.374891, 8.520512], [47.362339, 8.547411], [47.389928, 8.53609], [47.372041, 8.515529], [47.397195, 8.531418], [47.372722, 8.534968], [47.376704, 8.538983], [47.414496, 8.480343], [47.378591, 8.542094], [47.409252, 8.547075], [47.41799, 8.554188], [47.371857, 8.534142], [47.340681, 8.532152], [47.374211, 8.524948], [47.369039, 8.541036], [47.40862, 8.546373], [47.384755, 8.531361], [47.383772, 8.526904], [47.41721, 8.514097], [47.36154, 8.561281], [47.368677, 8.5289], [47.369852, 8.51003], [47.381747, 8.490072], [47.37181, 8.601566], [47.405423, 8.592773], [47.359441, 8.585357], [47.390097, 8.525788], [47.378301, 8.52613], [47.364978, 8.537655], [47.374787, 8.54759], [47.344771, 8.533321], [47.408166, 8.558965], [47.378956, 8.542406], [47.415845, 8.548087], [47.390152, 8.475814], [47.360748, 8.550184], [47.361902, 8.56015], [47.365277, 8.55339], [47.368778, 8.528756], [47.383899, 8.528748], [47.366301, 8.540436], [47.369973, 8.510628], [47.384137, 8.497271], [47.341281, 8.527599], [47.370082, 8.536357], [47.421968, 8.498474], [47.388971, 8.527911], [47.365802, 8.536202], [47.361789, 8.515282], [47.426167, 8.553206], [47.376778, 8.535078], [47.378943, 8.559688], [47.381478, 8.503761], [47.415186, 8.547437], [47.364312, 8.531088], [47.35977, 8.565679], [47.362656, 8.547205], [47.366479, 8.545365], [47.383161, 8.530666], [47.425387, 8.494473], [47.370146, 8.539099], [47.382734, 8.550894], [47.373499, 8.53456], [47.415317, 8.517411], [47.399149, 8.521641], [47.368823, 8.524878], [47.365712, 8.51421], [47.344904, 8.533562], [47.369581, 8.541749], [47.418938, 8.507174], [47.387824, 8.529292], [47.390483, 8.522034], [47.399116, 8.547845], [47.376136, 8.484003], [47.357383, 8.521865], [47.379594, 8.525442], [47.382548, 8.514523], [47.390204, 8.512452], [47.378529, 8.540119], [47.370794, 8.535246], [47.366175, 8.5405], [47.375766, 8.533561], [47.379277, 8.528521], [47.38895, 8.52244], [47.404167, 8.562299], [47.379697, 8.516399], [47.384773, 8.509336], [47.380783, 8.518566], [47.393354, 8.524795], [47.33185, 8.516583], [47.410868, 8.562295], [47.397643, 8.533467], [47.365469, 8.535216], [47.377858, 8.52832], [47.388756, 8.480012], [47.354351, 8.561461], [47.39165, 8.523277], [47.353894, 8.601241], [47.374448, 8.541651], [47.391732, 8.48513], [47.388287, 8.491009], [47.407723, 8.53863], [47.373463, 8.544994], [47.383381, 8.506169], [47.374606, 8.549546], [47.369872, 8.510798], [47.382233, 8.540289], [47.385646, 8.5044], [47.37461, 8.525499], [47.35497, 8.506673], [47.385161, 8.537012], [47.375438, 8.545419], [47.377004, 8.544312], [47.375241, 8.559239], [47.368164, 8.524229], [47.367096, 8.543869], [47.363886, 8.551189], [47.368235, 8.536663], [47.385895, 8.525027], [47.379066, 8.52514], [47.364102, 8.521843], [47.406199, 8.547449], [47.407111, 8.586768], [47.375536, 8.486639], [47.363887, 8.534137], [47.372964, 8.547261], [47.396552, 8.52229], [47.38946, 8.487655], [47.3537, 8.575558], [47.379579, 8.555344], [47.37056, 8.524781], [47.372081, 8.516986], [47.38355, 8.488744], [47.373249, 8.532516], [47.370709, 8.547002], [47.386806, 8.547483], [47.388085, 8.491522], [47.379315, 8.525462], [47.379291, 8.51067], [47.422265, 8.551137], [47.419571, 8.553426], [47.368245, 8.511639], [47.373777, 8.531825], [47.406155, 8.552072], [47.360326, 8.566776], [47.387685, 8.52117], [47.368279, 8.504172], [47.363967, 8.528565], [47.351421, 8.568533], [47.369716, 8.536985], [47.396668, 8.529181], [47.369349, 8.523498], [47.378961, 8.526793], [47.375946, 8.490064], [47.37297, 8.536257], [47.389625, 8.521461], [47.424946, 8.548303], [47.380469, 8.536624], [47.395674, 8.519994], [47.392601, 8.46843], [47.364523, 8.555161], [47.365414, 8.516269], [47.412227, 8.546422], [47.42717, 8.536752], [47.372718, 8.563384], [47.392681, 8.524583], [47.379314, 8.528469], [47.369292, 8.541822], [47.374047, 8.51937], [47.383156, 8.514853], [47.405405, 8.504703], [47.372975, 8.485397], [47.394232, 8.490133], [47.369034, 8.529238], [47.392091, 8.511722], [47.369374, 8.541731], [47.371393, 8.535695], [47.405688, 8.498375], [47.414954, 8.545365], [47.430778, 8.542274], [47.419061, 8.506514], [47.370367, 8.548915], [47.356617, 8.551342], [47.357927, 8.526125], [47.394087, 8.493164], [47.391512, 8.540693], [47.403801, 8.565736], [47.394033, 8.493163], [47.383356, 8.515599], [47.42989, 8.549573], [47.371092, 8.55853], [47.37778, 8.507766], [47.361284, 8.550539], [47.372747, 8.517993], [47.37865, 8.54244], [47.371442, 8.522852], [47.376807, 8.54893], [47.378634, 8.559138], [47.406799, 8.550575], [47.368839, 8.528983], [47.392316, 8.502918], [47.369689, 8.525558], [47.393445, 8.529446], [47.360862, 8.53156], [47.361155, 8.506002], [47.376256, 8.544509], [47.375265, 8.544634], [47.379209, 8.522361], [47.37668, 8.560223], [47.409285, 8.566925], [47.37033, 8.535806], [47.38709, 8.545926], [47.414578, 8.520418], [47.4249, 8.550237], [47.374319, 8.542972], [47.376989, 8.532645], [47.368421, 8.523691], [47.39789, 8.534028], [47.368476, 8.54722], [47.419687, 8.548008], [47.369735, 8.536919], [47.369183, 8.527785], [47.380979, 8.491487], [47.378027, 8.526562], [47.378414, 8.525643], [47.361977, 8.559795], [47.388127, 8.520026], [47.371294, 8.52134], [47.420818, 8.508126], [47.411721, 8.509374], [47.365071, 8.498826], [47.372408, 8.510862], [47.362734, 8.511356], [47.411606, 8.545534], [47.329291, 8.514163], [47.367998, 8.501452], [47.343965, 8.530102], [47.3648, 8.532792], [47.355132, 8.526902], [47.364558, 8.502827], [47.389126, 8.494695], [47.340005, 8.530325], [47.429763, 8.543075], [47.370681, 8.516706], [47.38978, 8.511622], [47.366092, 8.536897], [47.387826, 8.514696], [47.369489, 8.520072], [47.421097, 8.502274], [47.408691, 8.546481], [47.365451, 8.535229], [47.352005, 8.558499], [47.370868, 8.548237], [47.430046, 8.544539], [47.37892, 8.50902], [47.354159, 8.553396], [47.378011, 8.509094], [47.375906, 8.527366], [47.400245, 8.547418], [47.404383, 8.493619], [47.397369, 8.516769], [47.375222, 8.531206], [47.373268, 8.518983], [47.391342, 8.535841], [47.377331, 8.512524], [47.379016, 8.516147], [47.402789, 8.5763], [47.3767, 8.538453], [47.384405, 8.531288], [47.390646, 8.508395], [47.348506, 8.534073], [47.411082, 8.562498], [47.397346, 8.53256], [47.37051, 8.55918], [47.387013, 8.52848], [47.372955, 8.520725], [47.378422, 8.545626], [47.375944, 8.540424], [47.390809, 8.522783], [47.370206, 8.548792], [47.382725, 8.47947], [47.366583, 8.542031], [47.38153, 8.503974], [47.377116, 8.541997], [47.379399, 8.520299], [47.393131, 8.524579], [47.375841, 8.552128], [47.389555, 8.521208], [47.365754, 8.520314], [47.375578, 8.526883], [47.381514, 8.513509], [47.370288, 8.548648], [47.37589, 8.537562], [47.371725, 8.519548], [47.366513, 8.540824], [47.380098, 8.537821], [47.413236, 8.532118], [47.35846, 8.556967], [47.419497, 8.548057], [47.384409, 8.531884], [47.382403, 8.549801], [47.386898, 8.490465], [47.373058, 8.536458], [47.400148, 8.537758], [47.393037, 8.489037], [47.353309, 8.575999], [47.389657, 8.471844], [47.382396, 8.540146], [47.372782, 8.547548], [47.386399, 8.496826], [47.392212, 8.476754], [47.404359, 8.561044], [47.400432, 8.593513], [47.349673, 8.562421], [47.423841, 8.51382], [47.387871, 8.529107], [47.362574, 8.534097], [47.364595, 8.566191], [47.378788, 8.528921], [47.382478, 8.492815], [47.358094, 8.549215], [47.393414, 8.499906], [47.368067, 8.541095], [47.391468, 8.540625], [47.379295, 8.529514], [47.414143, 8.551113], [47.374303, 8.518991], [47.364243, 8.547794], [47.383976, 8.531027], [47.361251, 8.52659], [47.359615, 8.551047], [47.399282, 8.539886], [47.394723, 8.525485], [47.427555, 8.546383], [47.359741, 8.549197], [47.399979, 8.545081], [47.378795, 8.542376], [47.368297, 8.546237], [47.362321, 8.516127], [47.357759, 8.552306], [47.369633, 8.548463], [47.364492, 8.547151], [47.392745, 8.529286], [47.36491, 8.556004], [47.410062, 8.569327], [47.407189, 8.586133], [47.371072, 8.512358], [47.377495, 8.529557], [47.406838, 8.58072], [47.356751, 8.511474], [47.413485, 8.546514], [47.419168, 8.546699], [47.40363, 8.496281], [47.394209, 8.526588], [47.38194, 8.543673], [47.40953, 8.537753], [47.3743, 8.490958], [47.41073, 8.553387], [47.385253, 8.536722], [47.407594, 8.585254], [47.357747, 8.554424], [47.369079, 8.533979], [47.373836, 8.536024], [47.40439, 8.546616], [47.393892, 8.524886], [47.366791, 8.544736], [47.410811, 8.553336], [47.412292, 8.557369], [47.369494, 8.526255], [47.362589, 8.548607], [47.39955, 8.547629], [47.379462, 8.526128], [47.413258, 8.550551], [47.326011, 8.518608], [47.373049, 8.53655], [47.391392, 8.53816], [47.368534, 8.518292], [47.396555, 8.528702], [47.409697, 8.54201], [47.406057, 8.552892], [47.32292, 8.514379], [47.397473, 8.532457], [47.419728, 8.50442], [47.365352, 8.502578], [47.333048, 8.529839], [47.351238, 8.576246], [47.358586, 8.585392], [47.36923, 8.541728], [47.366665, 8.53524], [47.3862, 8.527947], [47.376077, 8.526376], [47.382554, 8.528244], [47.391121, 8.523067], [47.357312, 8.508269], [47.368854, 8.501231], [47.383166, 8.557419], [47.368725, 8.52477], [47.403638, 8.497367], [47.362527, 8.520023], [47.404145, 8.563637], [47.369524, 8.536398], [47.354867, 8.601104], [47.391607, 8.519262], [47.380151, 8.537849], [47.380121, 8.526777], [47.416333, 8.506777], [47.357382, 8.572525], [47.350743, 8.577149], [47.386342, 8.517553], [47.404119, 8.56353], [47.373827, 8.524662], [47.41488, 8.545509], [47.380133, 8.490504], [47.379402, 8.523888], [47.363737, 8.551703], [47.358695, 8.585328], [47.362733, 8.517234], [47.382148, 8.529348], [47.375537, 8.548162], [47.409219, 8.544902], [47.335097, 8.541393], [47.370134, 8.548791], [47.413875, 8.544296], [47.412787, 8.544247], [47.328509, 8.517931], [47.370106, 8.512736], [47.374788, 8.525767], [47.408615, 8.483182], [47.399742, 8.519812], [47.358659, 8.58534], [47.3605, 8.53559], [47.370949, 8.548252], [47.369038, 8.541089], [47.369383, 8.541744], [47.361288, 8.534071], [47.378466, 8.563412], [47.430778, 8.542274], [47.407351, 8.48965], [47.406141, 8.534728], [47.37716, 8.526955], [47.386355, 8.497673], [47.376198, 8.544931], [47.380086, 8.512235], [47.41176, 8.525488], [47.404285, 8.564978], [47.356634, 8.507633], [47.376223, 8.559154], [47.374791, 8.515836], [47.378124, 8.526842], [47.397768, 8.533562], [47.364351, 8.566358], [47.345831, 8.534441], [47.37536, 8.485179], [47.363049, 8.507444], [47.364076, 8.530328], [47.380879, 8.57235], [47.380026, 8.524497], [47.37301, 8.547129], [47.373492, 8.536308], [47.384932, 8.49889], [47.376464, 8.534899], [47.347319, 8.533109], [47.360543, 8.561101], [47.36593, 8.530313], [47.395704, 8.52638], [47.382206, 8.504808], [47.396981, 8.530234], [47.391542, 8.486252], [47.387099, 8.534668], [47.369842, 8.512108], [47.367728, 8.496495], [47.338658, 8.532058], [47.38831, 8.519686], [47.401268, 8.534456], [47.38114, 8.517858], [47.413919, 8.478556], [47.356746, 8.53219], [47.370564, 8.531004], [47.420593, 8.482529], [47.388359, 8.491024], [47.392089, 8.511841], [47.369041, 8.537937], [47.3583, 8.587993], [47.383325, 8.539927], [47.394466, 8.54127], [47.388083, 8.48478], [47.395315, 8.491678], [47.38338, 8.539756], [47.387561, 8.515167], [47.377985, 8.530084], [47.384045, 8.534207], [47.405215, 8.500009], [47.374686, 8.549667], [47.376769, 8.535064], [47.376265, 8.541702], [47.389809, 8.540022], [47.367842, 8.533543], [47.419542, 8.542452], [47.367638, 8.50927], [47.377595, 8.498585], [47.366139, 8.520507], [47.382909, 8.540157], [47.428219, 8.489664], [47.362078, 8.551178], [47.368061, 8.554825], [47.377458, 8.51144], [47.363298, 8.549681], [47.382715, 8.543504], [47.388146, 8.51702], [47.373612, 8.519758], [47.386506, 8.547728], [47.360349, 8.506648], [47.378021, 8.548068], [47.37661, 8.536584], [47.416973, 8.523024], [47.416938, 8.522983], [47.373745, 8.519973], [47.402351, 8.499356], [47.390996, 8.526774], [47.388265, 8.540625], [47.393885, 8.505386], [47.409518, 8.549386], [47.372304, 8.543884], [47.38284, 8.551082], [47.379369, 8.515889], [47.379378, 8.515902], [47.388783, 8.518185], [47.366409, 8.545165], [47.378709, 8.529675], [47.397609, 8.546489], [47.40213, 8.570126], [47.389383, 8.513667], [47.368532, 8.550797], [47.335518, 8.518761], [47.403614, 8.571032], [47.37054, 8.540246], [47.393669, 8.472809], [47.375222, 8.531219], [47.363274, 8.535237], [47.369098, 8.547975], [47.412537, 8.523199], [47.377963, 8.492752], [47.403046, 8.589343], [47.387931, 8.486645], [47.37724, 8.499068], [47.369318, 8.525802], [47.379169, 8.49561], [47.3644, 8.548301], [47.366911, 8.544408], [47.421019, 8.50198], [47.418068, 8.508813], [47.418473, 8.547002], [47.363987, 8.505265], [47.369401, 8.534224], [47.39053, 8.527572], [47.388738, 8.479932], [47.395748, 8.545456], [47.398134, 8.535809], [47.365608, 8.518616], [47.409536, 8.543729], [47.357945, 8.520394], [47.372875, 8.535871], [47.347717, 8.524263], [47.391055, 8.522483], [47.354718, 8.574547], [47.369401, 8.533271], [47.365322, 8.516452], [47.359535, 8.50417], [47.379333, 8.537779], [47.37775, 8.540673], [47.388515, 8.518988], [47.407634, 8.581121], [47.375521, 8.528113], [47.373189, 8.525483], [47.375511, 8.484454], [47.394332, 8.516337], [47.372321, 8.556093], [47.377678, 8.525495], [47.364075, 8.55024], [47.391897, 8.523785], [47.366859, 8.543241], [47.35799, 8.571956], [47.380497, 8.512548], [47.361548, 8.561387], [47.343406, 8.524506], [47.369915, 8.549157], [47.415356, 8.54654], [47.386529, 8.52549], [47.37344, 8.537035], [47.393687, 8.47277], [47.394528, 8.53943], [47.415569, 8.509637], [47.390507, 8.479331], [47.369205, 8.527375], [47.374544, 8.532489], [47.386652, 8.535307], [47.386179, 8.492372], [47.365877, 8.53488], [47.420056, 8.508866], [47.38817, 8.520279], [47.379788, 8.526796], [47.370871, 8.525158], [47.392927, 8.491154], [47.393131, 8.524565], [47.357212, 8.554889], [47.365391, 8.521591], [47.356109, 8.553622], [47.372827, 8.525767], [47.353312, 8.575695], [47.399545, 8.521583], [47.39704, 8.511464], [47.359818, 8.547663], [47.377636, 8.538432], [47.383911, 8.54823], [47.376563, 8.540635], [47.362505, 8.533818], [47.367661, 8.544939], [47.391765, 8.518683], [47.387126, 8.545953], [47.382314, 8.531775], [47.421163, 8.549735], [47.36821, 8.510553], [47.338244, 8.530104], [47.34399, 8.530327], [47.413348, 8.532584], [47.431008, 8.550193], [47.369256, 8.541848], [47.362638, 8.520674], [47.376923, 8.54345], [47.406577, 8.587975], [47.387164, 8.545755], [47.371022, 8.537766], [47.378021, 8.513783], [47.411386, 8.526024], [47.404279, 8.54513], [47.387149, 8.535079], [47.387594, 8.487128], [47.412238, 8.55648], [47.412168, 8.553444], [47.398956, 8.540144], [47.355259, 8.557813], [47.363362, 8.499798], [47.374686, 8.549667], [47.368489, 8.496934], [47.394226, 8.489842], [47.370845, 8.527991], [47.376662, 8.551867], [47.371724, 8.515721], [47.408564, 8.558801], [47.347471, 8.533165], [47.384427, 8.545062], [47.377364, 8.529237], [47.371279, 8.520029], [47.385497, 8.542343], [47.373519, 8.553125], [47.366434, 8.545351], [47.402523, 8.58227], [47.384455, 8.507727], [47.417868, 8.548156], [47.366789, 8.545822], [47.376957, 8.539849], [47.356497, 8.534714], [47.374334, 8.524235], [47.34648, 8.498615], [47.357109, 8.507775], [47.404003, 8.534406], [47.390344, 8.541463], [47.359092, 8.521833], [47.405213, 8.559221], [47.409362, 8.549741], [47.366248, 8.545082], [47.382695, 8.541874], [47.364186, 8.533031], [47.351695, 8.559896], [47.370028, 8.51149], [47.425527, 8.547679], [47.378587, 8.542518], [47.395837, 8.511281], [47.369349, 8.528278], [47.377036, 8.540049], [47.37741, 8.5395], [47.392442, 8.502867], [47.378504, 8.541708], [47.340229, 8.535173], [47.362708, 8.548411], [47.381802, 8.516415], [47.37538, 8.496806], [47.362545, 8.535262], [47.370216, 8.557028], [47.366169, 8.538289], [47.413209, 8.538756], [47.358507, 8.521901], [47.371344, 8.530345], [47.36914, 8.505394], [47.384028, 8.515943], [47.370617, 8.516811], [47.373862, 8.529483], [47.373698, 8.528764], [47.39815, 8.535968], [47.400202, 8.546264], [47.41047, 8.532591], [47.370707, 8.520653], [47.399687, 8.516022], [47.39613, 8.527051], [47.413974, 8.540574], [47.386526, 8.475942], [47.350118, 8.56202], [47.40141, 8.490182], [47.357332, 8.550841], [47.369961, 8.510919], [47.381576, 8.513576], [47.410616, 8.55679], [47.411804, 8.537972], [47.409615, 8.543969], [47.39842, 8.591416], [47.392494, 8.523387], [47.373148, 8.527972], [47.414721, 8.530081], [47.389055, 8.52088], [47.393361, 8.496845], [47.394728, 8.521207], [47.366741, 8.533004], [47.426155, 8.554399], [47.370657, 8.535481], [47.381038, 8.528742], [47.414687, 8.566457], [47.39779, 8.529376], [47.368353, 8.497037], [47.398042, 8.534124], [47.391917, 8.517812], [47.406004, 8.581391], [47.375383, 8.484716], [47.373933, 8.517183], [47.335914, 8.533933], [47.403705, 8.485974], [47.368312, 8.551189], [47.38459, 8.527], [47.365469, 8.535216], [47.393435, 8.529526], [47.426598, 8.492893], [47.369398, 8.525909], [47.389974, 8.540634], [47.378886, 8.494174], [47.358419, 8.505259], [47.370169, 8.548898], [47.405944, 8.481116], [47.371874, 8.542802], [47.38844, 8.491026], [47.381419, 8.551079], [47.399996, 8.54524], [47.390368, 8.525635], [47.362512, 8.534943], [47.372271, 8.525557], [47.377037, 8.537122], [47.361531, 8.526516], [47.384313, 8.516187], [47.371253, 8.523775], [47.378849, 8.544205], [47.368833, 8.528638], [47.368001, 8.514653], [47.362205, 8.559429], [47.405574, 8.486236], [47.378941, 8.530752], [47.392145, 8.50098], [47.371796, 8.529215], [47.372153, 8.536174], [47.377987, 8.554344], [47.371202, 8.524463], [47.374723, 8.551442], [47.397386, 8.532124], [47.37777, 8.507871], [47.392513, 8.523308], [47.365549, 8.561511], [47.364941, 8.53784], [47.364182, 8.551288], [47.372591, 8.534555], [47.394856, 8.525753], [47.375929, 8.536318], [47.403853, 8.496457], [47.410962, 8.545163], [47.382301, 8.533112], [47.387135, 8.494086], [47.387401, 8.529349], [47.36378, 8.574991], [47.381381, 8.546575], [47.358429, 8.518669], [47.375953, 8.53857], [47.391076, 8.523066], [47.388441, 8.486973], [47.369523, 8.553412], [47.393721, 8.505648], [47.383825, 8.547844], [47.408946, 8.54801], [47.426587, 8.548815], [47.384783, 8.477696], [47.36794, 8.544071], [47.384462, 8.531991], [47.368645, 8.499493], [47.403418, 8.536288], [47.390047, 8.536834], [47.39728, 8.531035], [47.416108, 8.545031], [47.376656, 8.52321], [47.425115, 8.499663], [47.370196, 8.539524], [47.392349, 8.53308], [47.364657, 8.566365], [47.373742, 8.502798], [47.378238, 8.541372], [47.409073, 8.532854], [47.3348, 8.529967], [47.374128, 8.524205], [47.369805, 8.541833], [47.391592, 8.487617], [47.416139, 8.510285], [47.379935, 8.5159], [47.371665, 8.555139], [47.367989, 8.540776], [47.391023, 8.53345], [47.378682, 8.529674], [47.413994, 8.479153], [47.370771, 8.524375], [47.378491, 8.540264], [47.382071, 8.528869], [47.378779, 8.539343], [47.393592, 8.512732], [47.405378, 8.537336], [47.359633, 8.557561], [47.367694, 8.496375], [47.377951, 8.499029], [47.388129, 8.519841], [47.367135, 8.539765], [47.414231, 8.518091], [47.36143, 8.551244], [47.386049, 8.545758], [47.372553, 8.517565], [47.360345, 8.55371], [47.371281, 8.547411], [47.414016, 8.478717], [47.382465, 8.537605], [47.413838, 8.547211], [47.382377, 8.514453], [47.386777, 8.523032], [47.395517, 8.531979], [47.353459, 8.526855], [47.391558, 8.523487], [47.37282, 8.535036], [47.395276, 8.519363], [47.387445, 8.486662], [47.401788, 8.499901], [47.372411, 8.538285], [47.403435, 8.486049], [47.415537, 8.51401], [47.413851, 8.545886], [47.38498, 8.541855], [47.364343, 8.548564], [47.387522, 8.529882], [47.345148, 8.532508], [47.366815, 8.543134], [47.402199, 8.549022], [47.369248, 8.525641], [47.389664, 8.511501], [47.394901, 8.52578], [47.382102, 8.51413], [47.38681, 8.534741], [47.395558, 8.531464], [47.390474, 8.53634], [47.370272, 8.524868], [47.361409, 8.548768], [47.347998, 8.562624], [47.373235, 8.533045], [47.371342, 8.522969], [47.410657, 8.534688], [47.369245, 8.491984], [47.407055, 8.582394], [47.402357, 8.493818], [47.371601, 8.547775], [47.378647, 8.565111], [47.383671, 8.504891], [47.375258, 8.550063], [47.362628, 8.51886], [47.391996, 8.51025], [47.409407, 8.479157], [47.373054, 8.531201], [47.375823, 8.527563], [47.380822, 8.53728], [47.427993, 8.545702], [47.361801, 8.512012], [47.427464, 8.551113], [47.358129, 8.552142], [47.368595, 8.52907], [47.419587, 8.548046], [47.385478, 8.542369], [47.407933, 8.582744], [47.379013, 8.526039], [47.392698, 8.522742], [47.389632, 8.491499], [47.422503, 8.496086], [47.375892, 8.541124], [47.408574, 8.546505], [47.375783, 8.536567], [47.40882, 8.549001], [47.370986, 8.530232], [47.364208, 8.536355], [47.34365, 8.530175], [47.351973, 8.505858], [47.383588, 8.532092], [47.381411, 8.510024], [47.370003, 8.564174], [47.385531, 8.520623], [47.386158, 8.535271], [47.365714, 8.535949], [47.405618, 8.569352], [47.411252, 8.546812], [47.352321, 8.581299], [47.366522, 8.540904], [47.378746, 8.510261], [47.350853, 8.561321], [47.386679, 8.547573], [47.384253, 8.530278], [47.374335, 8.556267], [47.363242, 8.519627], [47.362489, 8.534559], [47.405929, 8.548477], [47.413799, 8.546653], [47.388524, 8.483782], [47.382522, 8.529726], [47.375895, 8.559544], [47.380195, 8.527533], [47.371721, 8.556742], [47.395831, 8.545246], [47.374355, 8.540139], [47.385542, 8.536675], [47.36182, 8.560202], [47.380837, 8.541359], [47.350687, 8.561754], [47.386979, 8.53497], [47.366635, 8.551551], [47.397528, 8.519952], [47.361114, 8.531578], [47.365444, 8.519778], [47.41023, 8.541756], [47.373879, 8.544751], [47.364409, 8.531341], [47.375757, 8.524119], [47.377014, 8.527217], [47.388634, 8.520619], [47.359963, 8.550366], [47.375653, 8.544549], [47.363784, 8.535525], [47.353605, 8.560466], [47.375279, 8.511728], [47.380982, 8.518491], [47.381879, 8.546307], [47.360784, 8.585108], [47.387919, 8.542022], [47.371021, 8.530259], [47.411655, 8.562788], [47.420193, 8.548642], [47.389727, 8.511476], [47.351923, 8.558604], [47.383556, 8.539283], [47.369764, 8.533808], [47.37621, 8.553049], [47.404529, 8.574973], [47.40362, 8.496307], [47.388055, 8.524899], [47.383385, 8.498872], [47.414651, 8.571001], [47.367391, 8.494066], [47.388101, 8.51992], [47.330189, 8.51524], [47.38445, 8.548294], [47.38808, 8.485058], [47.374336, 8.52401], [47.379251, 8.559456], [47.413799, 8.546653], [47.405274, 8.564098], [47.383986, 8.550761], [47.409044, 8.571346], [47.363883, 8.531728], [47.392167, 8.492689], [47.417239, 8.509909], [47.357, 8.53573], [47.346324, 8.564561], [47.352934, 8.57754], [47.38657, 8.483028], [47.369717, 8.525532], [47.403885, 8.555244], [47.377492, 8.528961], [47.40047, 8.543686], [47.392532, 8.523242], [47.366569, 8.535874], [47.415568, 8.544172], [47.412505, 8.483723], [47.41884, 8.503169], [47.399275, 8.542536], [47.370235, 8.53252], [47.383481, 8.512793], [47.405176, 8.557484], [47.366875, 8.54344], [47.378244, 8.530301], [47.422517, 8.512083], [47.374205, 8.491552], [47.38252, 8.487227], [47.426455, 8.492771], [47.374159, 8.544598], [47.356663, 8.523809], [47.373968, 8.542952], [47.386522, 8.496166], [47.357177, 8.552916], [47.39122, 8.523109], [47.382823, 8.548234], [47.379874, 8.498167], [47.386429, 8.496522], [47.377206, 8.540132], [47.406601, 8.551472], [47.380563, 8.56788], [47.362751, 8.548571], [47.361307, 8.534005], [47.369225, 8.528037], [47.346798, 8.530213], [47.39113, 8.523094], [47.353936, 8.578078], [47.356974, 8.526106], [47.391045, 8.522509], [47.375747, 8.527045], [47.410894, 8.57169], [47.392997, 8.534974], [47.371861, 8.531785], [47.405151, 8.480253], [47.348887, 8.570134], [47.357844, 8.572217], [47.380424, 8.512639], [47.372109, 8.547322], [47.381616, 8.490639], [47.388648, 8.522991], [47.391483, 8.514213], [47.36607, 8.53352], [47.410564, 8.550031], [47.369338, 8.513104], [47.390027, 8.491573], [47.366871, 8.520164], [47.397989, 8.474535], [47.37694, 8.541596], [47.393643, 8.519794], [47.40513, 8.481604], [47.394629, 8.488061], [47.421008, 8.502099], [47.355173, 8.527234], [47.390173, 8.509908], [47.375047, 8.540167], [47.380599, 8.512232], [47.37996, 8.541924], [47.411604, 8.512287], [47.406922, 8.58679], [47.378403, 8.520094], [47.375103, 8.491676], [47.363969, 8.53594], [47.375392, 8.540809], [47.370286, 8.513746], [47.368321, 8.551136], [47.403456, 8.487692], [47.400996, 8.501952], [47.381075, 8.518109], [47.377863, 8.529697], [47.403469, 8.556349], [47.377646, 8.50959], [47.380809, 8.512832], [47.42566, 8.494081], [47.374527, 8.539971], [47.366801, 8.544577], [47.369014, 8.537977], [47.38449, 8.531886], [47.369698, 8.525558], [47.378528, 8.503675], [47.399654, 8.517703], [47.390195, 8.512478], [47.380427, 8.524876], [47.373397, 8.524402], [47.374688, 8.527791], [47.365229, 8.521587], [47.381664, 8.51375], [47.373364, 8.568231], [47.358362, 8.558726], [47.381176, 8.491584], [47.366538, 8.541964], [47.37587, 8.527365], [47.368957, 8.50175], [47.380366, 8.541786], [47.368968, 8.550289], [47.393238, 8.530383], [47.36034, 8.56622], [47.374451, 8.5461], [47.33134, 8.53728], [47.355506, 8.529213], [47.364565, 8.566522], [47.369735, 8.536853], [47.363156, 8.533527], [47.388148, 8.497377], [47.377221, 8.521407], [47.366867, 8.537681], [47.387904, 8.520763], [47.367006, 8.531567], [47.377367, 8.498898], [47.407239, 8.538394], [47.378194, 8.510674], [47.368485, 8.519681], [47.387368, 8.543269], [47.396207, 8.527489], [47.368246, 8.536491], [47.4122, 8.546434], [47.362493, 8.534135], [47.356503, 8.532146], [47.386056, 8.545944], [47.387066, 8.539091], [47.360101, 8.595896], [47.374397, 8.543212], [47.397734, 8.533376], [47.403701, 8.570411], [47.36554, 8.53531], [47.343394, 8.523936], [47.385455, 8.530621], [47.373746, 8.52466], [47.376936, 8.541146], [47.369557, 8.531937], [47.365589, 8.521595], [47.375338, 8.560393], [47.373238, 8.535548], [47.386364, 8.535354], [47.375161, 8.525259], [47.392138, 8.503643], [47.38522, 8.530709], [47.378073, 8.510102], [47.370152, 8.548804], [47.36821, 8.494942], [47.385243, 8.530179], [47.378301, 8.541373], [47.381307, 8.528801], [47.361131, 8.60083], [47.378128, 8.526378], [47.362959, 8.559603], [47.364042, 8.566696], [47.359517, 8.522544], [47.364647, 8.566444], [47.398698, 8.547399], [47.37292, 8.531185], [47.371526, 8.515757], [47.411126, 8.570966], [47.370034, 8.543281], [47.409607, 8.549441], [47.376878, 8.540536], [47.36389, 8.574848], [47.371805, 8.522489], [47.384654, 8.502738], [47.387869, 8.520749], [47.371335, 8.530411], [47.365108, 8.553267], [47.372988, 8.536297], [47.378605, 8.553695], [47.410849, 8.571649], [47.400529, 8.544059], [47.410373, 8.538088], [47.370641, 8.557752], [47.380301, 8.512372], [47.405627, 8.549915], [47.383726, 8.547816], [47.402763, 8.491746], [47.414483, 8.557799], [47.365225, 8.564338], [47.368294, 8.551202], [47.413365, 8.553389], [47.384726, 8.529692], [47.396718, 8.554061], [47.405013, 8.548286], [47.379981, 8.548135], [47.414095, 8.550423], [47.391609, 8.514136], [47.343165, 8.53575], [47.390448, 8.509358], [47.366212, 8.522243], [47.364786, 8.547395], [47.351291, 8.576287], [47.371604, 8.51605], [47.397733, 8.533456], [47.353099, 8.512486], [47.402657, 8.498328], [47.392003, 8.48295], [47.419605, 8.548073], [47.403919, 8.541373], [47.393811, 8.533521], [47.375908, 8.541363], [47.386879, 8.490611], [47.368283, 8.495871], [47.366834, 8.543082], [47.375725, 8.539797], [47.390823, 8.522227], [47.364797, 8.537757], [47.373196, 8.531482], [47.409105, 8.541772], [47.379805, 8.553336], [47.379553, 8.542127], [47.369023, 8.53795], [47.398404, 8.547115], [47.385014, 8.500732], [47.376705, 8.483656], [47.430147, 8.540525], [47.382745, 8.529916], [47.410467, 8.532869], [47.373009, 8.547275], [47.38105, 8.503315], [47.386849, 8.544874], [47.391083, 8.522312], [47.410066, 8.542865], [47.358518, 8.517824], [47.374479, 8.579192], [47.36613, 8.540419], [47.384094, 8.526169], [47.381735, 8.529286], [47.398042, 8.535992], [47.416917, 8.551674], [47.383425, 8.529361], [47.367382, 8.494039], [47.371597, 8.515891], [47.409111, 8.48404], [47.377158, 8.533841], [47.409221, 8.571615], [47.384974, 8.531035], [47.418921, 8.507041], [47.379162, 8.523592], [47.403682, 8.497487], [47.363946, 8.500869], [47.380752, 8.519042], [47.380771, 8.50821], [47.416917, 8.551674], [47.360022, 8.532959], [47.37821, 8.526248], [47.366788, 8.542234], [47.37191, 8.54275], [47.370336, 8.507378], [47.370311, 8.513945], [47.354939, 8.52343], [47.3787, 8.541964], [47.378247, 8.526156], [47.398792, 8.542287], [47.396788, 8.529793], [47.365451, 8.535242], [47.376909, 8.535451], [47.398767, 8.506597], [47.361163, 8.525423], [47.385641, 8.517579], [47.373536, 8.546743], [47.366557, 8.540931], [47.381959, 8.516882], [47.373216, 8.533084], [47.367083, 8.544318], [47.374327, 8.543039], [47.407654, 8.547758], [47.387584, 8.487194], [47.361936, 8.534031], [47.381182, 8.537261], [47.366805, 8.5432], [47.391436, 8.51347], [47.37858, 8.519475], [47.37826, 8.519985], [47.378672, 8.513478], [47.386715, 8.522938], [47.336911, 8.518895], [47.403354, 8.486047], [47.372645, 8.538343], [47.379402, 8.523902], [47.415049, 8.513351], [47.402733, 8.577359], [47.377683, 8.538248], [47.374798, 8.518882], [47.378473, 8.526981], [47.357583, 8.554725], [47.390191, 8.473404], [47.354806, 8.556242], [47.376084, 8.515068], [47.364322, 8.555448], [47.381102, 8.528691], [47.381273, 8.510405], [47.409069, 8.570578], [47.332815, 8.51438], [47.365896, 8.557295], [47.382563, 8.54807], [47.405246, 8.480785], [47.376424, 8.54385], [47.410397, 8.542077], [47.364223, 8.566514], [47.392173, 8.49102], [47.385624, 8.542226], [47.37807, 8.492807], [47.394564, 8.528092], [47.36667, 8.542284], [47.382216, 8.544897], [47.383336, 8.506155], [47.394823, 8.525395], [47.358421, 8.521409], [47.367781, 8.560473], [47.387379, 8.527905], [47.412003, 8.524473], [47.387099, 8.517409], [47.372373, 8.503062], [47.391991, 8.510846], [47.391719, 8.518801], [47.360525, 8.516766], [47.39689, 8.519846], [47.39119, 8.520526], [47.373017, 8.520872], [47.365169, 8.500933], [47.387237, 8.488763], [47.384346, 8.489236], [47.377052, 8.544075], [47.424949, 8.551763], [47.382275, 8.530224], [47.370918, 8.549562], [47.363868, 8.559596], [47.369108, 8.547962], [47.409104, 8.578065], [47.364589, 8.556672], [47.377246, 8.570458], [47.386467, 8.529171], [47.370822, 8.510221], [47.377651, 8.535917], [47.3679, 8.498432], [47.373553, 8.575491], [47.388291, 8.537023], [47.38425, 8.540079], [47.390136, 8.491496], [47.360427, 8.516671], [47.362764, 8.547194], [47.373932, 8.524876], [47.410907, 8.543373], [47.374767, 8.49404], [47.376934, 8.540351], [47.397733, 8.480995], [47.378869, 8.526976], [47.389863, 8.539095], [47.402818, 8.553937], [47.381877, 8.502444], [47.376483, 8.525299], [47.339906, 8.53035], [47.425532, 8.553737], [47.369733, 8.549325], [47.412569, 8.546416], [47.371196, 8.523192], [47.383699, 8.573708], [47.385824, 8.548508], [47.36693, 8.544289], [47.377247, 8.538636], [47.364249, 8.546246], [47.354638, 8.525846], [47.369183, 8.527798], [47.378943, 8.515271], [47.404795, 8.57262], [47.388207, 8.52873], [47.38789, 8.544194], [47.371479, 8.519874], [47.402379, 8.499237], [47.364683, 8.546016], [47.366618, 8.540191], [47.405631, 8.57081], [47.371336, 8.546287], [47.384836, 8.495603], [47.375667, 8.533664], [47.399499, 8.497457], [47.426555, 8.492601], [47.3773, 8.529288], [47.379909, 8.527315], [47.400714, 8.593227], [47.379115, 8.511249], [47.379371, 8.525278], [47.338249, 8.530528], [47.394265, 8.489511], [47.412993, 8.546292], [47.353595, 8.576151], [47.38003, 8.570875], [47.36698, 8.520987], [47.365695, 8.553875], [47.378688, 8.489231], [47.378046, 8.496462], [47.373851, 8.481998], [47.390549, 8.545415], [47.367709, 8.545576], [47.399667, 8.547618], [47.37108, 8.538324], [47.378711, 8.53039], [47.377953, 8.532493], [47.370865, 8.542954], [47.377148, 8.512931], [47.369162, 8.525203], [47.366365, 8.546965], [47.412331, 8.539281], [47.399461, 8.54756], [47.367932, 8.544826], [47.385646, 8.548346], [47.356313, 8.555757], [47.41969, 8.508461], [47.400656, 8.548606], [47.335043, 8.529959], [47.370684, 8.558932], [47.37811, 8.532099], [47.361091, 8.522549], [47.417776, 8.513194], [47.378428, 8.526954], [47.368911, 8.540344], [47.375799, 8.527311], [47.413292, 8.544178], [47.378307, 8.499393], [47.391037, 8.522483], [47.403841, 8.548553], [47.406924, 8.585637], [47.366057, 8.536843], [47.351415, 8.525185], [47.402512, 8.499478], [47.349204, 8.564383], [47.366946, 8.560376], [47.404814, 8.483731], [47.366934, 8.545706], [47.365397, 8.554068], [47.35703, 8.552357], [47.357521, 8.554591], [47.370588, 8.549277], [47.403557, 8.578622], [47.391221, 8.479888], [47.376755, 8.559894], [47.391763, 8.472679], [47.391244, 8.515652], [47.374459, 8.540552], [47.414044, 8.516961], [47.365057, 8.565009], [47.379309, 8.542202], [47.421619, 8.550076], [47.389033, 8.495051], [47.385922, 8.524935], [47.373098, 8.547383], [47.409144, 8.545244], [47.388589, 8.535904], [47.374308, 8.522196], [47.382822, 8.530355], [47.383772, 8.57363], [47.367088, 8.54559], [47.363776, 8.535485], [47.382787, 8.479537], [47.378557, 8.575214], [47.378403, 8.54107], [47.371353, 8.536052], [47.36997, 8.543412], [47.370107, 8.512603], [47.387595, 8.529737], [47.398712, 8.532721], [47.370179, 8.548805], [47.366682, 8.545753], [47.3811, 8.537378], [47.38367, 8.515764], [47.381183, 8.538161], [47.390894, 8.523341], [47.364439, 8.555398], [47.347879, 8.528131], [47.419887, 8.547734], [47.398411, 8.591429], [47.379172, 8.538623], [47.374741, 8.488967], [47.382846, 8.500755], [47.368582, 8.546508], [47.382352, 8.541059], [47.398997, 8.533044], [47.407699, 8.547679], [47.414734, 8.51626], [47.383472, 8.536712], [47.3758, 8.516572], [47.377713, 8.528449], [47.37032, 8.491515], [47.365541, 8.552164], [47.370232, 8.537604], [47.391807, 8.523744], [47.372575, 8.533336], [47.378534, 8.541417], [47.369089, 8.547975], [47.391668, 8.519423], [47.349497, 8.56484], [47.379372, 8.542243], [47.383071, 8.530691], [47.349547, 8.532427], [47.403824, 8.485818], [47.356709, 8.558572], [47.429944, 8.549587], [47.40021, 8.546331], [47.384349, 8.548504], [47.405221, 8.480519], [47.409124, 8.543575], [47.370476, 8.519403], [47.374922, 8.544746], [47.369391, 8.54189], [47.360601, 8.507567], [47.408773, 8.546443], [47.390594, 8.539799], [47.376994, 8.539757], [47.371027, 8.536297], [47.393384, 8.537724], [47.370369, 8.514449], [47.365615, 8.54544], [47.367169, 8.550305], [47.399188, 8.542282], [47.376416, 8.523788], [47.401337, 8.534748], [47.398668, 8.539198], [47.366148, 8.540499], [47.376722, 8.522841], [47.384734, 8.497972], [47.373178, 8.542829], [47.382776, 8.552114], [47.389812, 8.509159], [47.39148, 8.477111], [47.384406, 8.481582], [47.369216, 8.528011], [47.395552, 8.532099], [47.391346, 8.487056], [47.382511, 8.53758], [47.41415, 8.551325], [47.405766, 8.590793], [47.374971, 8.539596], [47.327212, 8.52964], [47.374787, 8.54571], [47.413782, 8.546494], [47.366401, 8.541246], [47.373143, 8.537016], [47.387827, 8.527146], [47.374206, 8.528311], [47.376129, 8.536084], [47.381834, 8.531116], [47.334757, 8.529847], [47.418599, 8.507816], [47.378443, 8.510057], [47.422849, 8.494608], [47.383014, 8.529034], [47.367326, 8.54427], [47.36004, 8.516624], [47.359556, 8.535571], [47.376861, 8.528154], [47.397644, 8.546582], [47.373874, 8.526305], [47.374232, 8.544533], [47.372827, 8.525767], [47.414244, 8.541507], [47.372415, 8.536008], [47.401974, 8.499282], [47.366128, 8.51398], [47.415264, 8.508558], [47.374106, 8.502408], [47.369401, 8.526598], [47.371716, 8.519561], [47.367074, 8.523426], [47.375141, 8.552907], [47.391587, 8.519421], [47.387731, 8.490853], [47.365565, 8.509652], [47.395219, 8.5453], [47.392323, 8.492347], [47.389478, 8.487655], [47.37436, 8.552719], [47.370362, 8.514237], [47.384797, 8.531746], [47.413936, 8.545463], [47.378128, 8.526378], [47.37379, 8.481745], [47.375511, 8.563853], [47.380313, 8.527416], [47.356731, 8.535658], [47.392517, 8.539097], [47.391049, 8.523053], [47.371634, 8.515786], [47.392782, 8.524399], [47.359375, 8.522408], [47.364906, 8.531034], [47.378872, 8.542762], [47.380215, 8.483487], [47.359536, 8.592998], [47.366522, 8.540904], [47.412418, 8.529199], [47.406077, 8.553608], [47.390324, 8.490639], [47.399636, 8.543351], [47.384117, 8.532275], [47.374469, 8.539453], [47.383143, 8.540175], [47.335109, 8.519203], [47.36795, 8.494924], [47.37983, 8.525261], [47.393808, 8.493251], [47.376513, 8.499834], [47.38435, 8.548398], [47.367784, 8.496285], [47.386474, 8.497516], [47.37017, 8.548805], [47.391622, 8.538602], [47.419569, 8.548032], [47.380719, 8.541476], [47.36436, 8.555211], [47.360044, 8.526764], [47.378481, 8.54041], [47.41364, 8.514926], [47.369311, 8.520823], [47.36979, 8.536801], [47.378408, 8.540514], [47.362628, 8.531318], [47.391024, 8.526681], [47.373047, 8.532949], [47.386326, 8.522135], [47.366091, 8.532289], [47.38248, 8.552015], [47.365334, 8.530539], [47.39766, 8.533666], [47.408748, 8.579502], [47.391532, 8.545144], [47.373859, 8.50284], [47.414786, 8.560919], [47.397846, 8.533975], [47.344816, 8.533375], [47.369181, 8.527997], [47.366634, 8.54137], [47.412369, 8.546584], [47.368082, 8.522413], [47.391202, 8.539216], [47.371916, 8.550536], [47.388448, 8.491158], [47.383506, 8.549202], [47.379059, 8.511473], [47.365382, 8.521591], [47.371256, 8.550019], [47.39128, 8.546158], [47.424815, 8.537472], [47.36872, 8.558334], [47.421232, 8.500235], [47.371003, 8.516859], [47.364167, 8.546336], [47.379504, 8.537782], [47.366463, 8.53284], [47.374378, 8.55268], [47.378761, 8.527888], [47.399709, 8.495209], [47.387502, 8.496199], [47.372742, 8.53477], [47.383069, 8.505885], [47.375491, 8.486665], [47.394865, 8.525766], [47.40386, 8.568824], [47.377821, 8.50921], [47.399688, 8.517929], [47.387813, 8.520881], [47.391026, 8.545411], [47.360547, 8.527781], [47.370277, 8.518539], [47.382826, 8.515522], [47.372575, 8.473869], [47.38852, 8.523253], [47.383132, 8.513647], [47.363681, 8.498374], [47.35497, 8.526859], [47.406483, 8.567409], [47.41556, 8.513533], [47.385911, 8.53561], [47.363147, 8.55226], [47.399403, 8.49523], [47.360387, 8.523793], [47.389007, 8.489037], [47.363731, 8.535471], [47.379244, 8.525355], [47.382909, 8.506624], [47.369269, 8.537651], [47.390749, 8.524371], [47.382535, 8.554744], [47.360055, 8.579651], [47.392701, 8.515682], [47.351492, 8.534161], [47.420095, 8.547593], [47.368193, 8.546685], [47.354813, 8.532085], [47.417905, 8.505086], [47.401852, 8.492933], [47.379712, 8.542435], [47.414556, 8.484664], [47.364406, 8.546725], [47.383056, 8.514997], [47.384513, 8.53133], [47.386125, 8.546276], [47.383905, 8.530946], [47.364547, 8.532893], [47.380977, 8.549282], [47.383884, 8.529304], [47.376039, 8.541829], [47.386889, 8.534981], [47.387641, 8.499712], [47.370993, 8.508252], [47.383557, 8.554156], [47.381101, 8.491953], [47.358802, 8.534443], [47.375555, 8.535], [47.361896, 8.56906], [47.385987, 8.561426], [47.430702, 8.541795], [47.399103, 8.547394], [47.376803, 8.527649], [47.353839, 8.512236], [47.378945, 8.522753], [47.366833, 8.543135], [47.366392, 8.545085], [47.387129, 8.528589], [47.399894, 8.484707], [47.37747, 8.51499], [47.378454, 8.540436], [47.361399, 8.576635], [47.413919, 8.550989], [47.41313, 8.546003], [47.381011, 8.528715], [47.353548, 8.554296], [47.348847, 8.533246], [47.352177, 8.525452], [47.356897, 8.519022], [47.37639, 8.543624], [47.396829, 8.53398], [47.383227, 8.539859], [47.374292, 8.526856], [47.401636, 8.499845], [47.377335, 8.539804], [47.382495, 8.514416], [47.406589, 8.480374], [47.340957, 8.53716], [47.365698, 8.565698], [47.391812, 8.545096], [47.387748, 8.524985], [47.395561, 8.520561], [47.369045, 8.547908], [47.363627, 8.535006], [47.364005, 8.534034], [47.382422, 8.514507], [47.38153, 8.50396], [47.38618, 8.498212], [47.404932, 8.552948], [47.356274, 8.560694], [47.424121, 8.499179], [47.418431, 8.541925], [47.369437, 8.541746], [47.360578, 8.567629], [47.39889, 8.504069], [47.39108, 8.522643], [47.422743, 8.550961], [47.368382, 8.537275], [47.385572, 8.520067], [47.369905, 8.509223], [47.389247, 8.516698], [47.364656, 8.546029], [47.35137, 8.560855], [47.38151, 8.503232], [47.392065, 8.53832], [47.359694, 8.586157], [47.383923, 8.530934], [47.370717, 8.516734], [47.366398, 8.53787], [47.365828, 8.536243], [47.408345, 8.544141], [47.413083, 8.533082], [47.363459, 8.547924], [47.382318, 8.558527], [47.368743, 8.52477], [47.367094, 8.516462], [47.360064, 8.5227], [47.394788, 8.539542], [47.356265, 8.551441], [47.361401, 8.565409], [47.356866, 8.557185], [47.369303, 8.540737], [47.370153, 8.525024], [47.390968, 8.521197], [47.35518, 8.561267], [47.38396, 8.548761], [47.360654, 8.565406], [47.380506, 8.493028], [47.364935, 8.557116], [47.381716, 8.516877], [47.37118, 8.545701], [47.41478, 8.552186], [47.387952, 8.515639], [47.367363, 8.541385], [47.387965, 8.48593], [47.364983, 8.531472], [47.413903, 8.527149], [47.35656, 8.534688], [47.364248, 8.566714], [47.372194, 8.535566], [47.398268, 8.546251], [47.378434, 8.509964], [47.36821, 8.537377], [47.379787, 8.543085], [47.382282, 8.515974], [47.430301, 8.54982], [47.3919, 8.505135], [47.374326, 8.530803], [47.390107, 8.525656], [47.384483, 8.480974], [47.380363, 8.524981], [47.379364, 8.542123], [47.427079, 8.491431], [47.407418, 8.546984], [47.383106, 8.515382], [47.36925, 8.557445], [47.386908, 8.502108], [47.369732, 8.53341], [47.409956, 8.541193], [47.385115, 8.532282], [47.374497, 8.517419], [47.340515, 8.519127], [47.367896, 8.491957], [47.384437, 8.527011], [47.423084, 8.498483], [47.391341, 8.514912], [47.365406, 8.554054], [47.374236, 8.536495], [47.397526, 8.493841], [47.389625, 8.521461], [47.387815, 8.529305], [47.405807, 8.573052], [47.394528, 8.545179], [47.363731, 8.535458], [47.377182, 8.55299], [47.398256, 8.537149], [47.405709, 8.591123], [47.372611, 8.534277], [47.371503, 8.547654], [47.385406, 8.536725], [47.363771, 8.575057], [47.397039, 8.511623], [47.374114, 8.502422], [47.409048, 8.53924], [47.379523, 8.537717], [47.379452, 8.528114], [47.362581, 8.534322], [47.375915, 8.48854], [47.378282, 8.520515], [47.372698, 8.572864], [47.377104, 8.529125], [47.378625, 8.519449], [47.367481, 8.552496], [47.388867, 8.522637], [47.349984, 8.566557], [47.37589, 8.537575], [47.349807, 8.564409], [47.398281, 8.537335], [47.404417, 8.556965], [47.357153, 8.558237], [47.349874, 8.573173], [47.351039, 8.572708], [47.341818, 8.530826], [47.370299, 8.522856], [47.357009, 8.534777], [47.382065, 8.528565], [47.386302, 8.497619], [47.360447, 8.526931], [47.393858, 8.505426], [47.378537, 8.542027], [47.413589, 8.572052], [47.402137, 8.497178], [47.414526, 8.556104], [47.398842, 8.538923], [47.389621, 8.543753], [47.375616, 8.53712], [47.376784, 8.526748], [47.388818, 8.541193], [47.405671, 8.549995], [47.415411, 8.51406], [47.39146, 8.486383], [47.390889, 8.521897], [47.410221, 8.541689], [47.369622, 8.5203], [47.352911, 8.524805], [47.41062, 8.546985], [47.373014, 8.536364], [47.373532, 8.519584], [47.389516, 8.521538], [47.384781, 8.509376], [47.366538, 8.541964], [47.38245, 8.529711], [47.390433, 8.488455], [47.369826, 8.510916], [47.380135, 8.548059], [47.358301, 8.58156], [47.390975, 8.53945], [47.383905, 8.530893], [47.377127, 8.541825], [47.360382, 8.564739], [47.392144, 8.502027], [47.360593, 8.56338], [47.396187, 8.51713], [47.391556, 8.516996], [47.363827, 8.548924], [47.360747, 8.52564], [47.383393, 8.498938], [47.382835, 8.530845], [47.39314, 8.524592], [47.369146, 8.504746], [47.371599, 8.521399], [47.369716, 8.525585], [47.37715, 8.540396], [47.402351, 8.499395], [47.393866, 8.505505], [47.375112, 8.545584], [47.339609, 8.517984], [47.406735, 8.584719], [47.386931, 8.546585], [47.389212, 8.488272], [47.373925, 8.544632], [47.35737, 8.527014], [47.357981, 8.520368], [47.362313, 8.525632], [47.363913, 8.531477], [47.360933, 8.571806], [47.366266, 8.545016], [47.375899, 8.538529], [47.364145, 8.549527], [47.364519, 8.547165], [47.362417, 8.504783], [47.334736, 8.538686], [47.386861, 8.528424], [47.392277, 8.503235], [47.368418, 8.515363], [47.400826, 8.492025], [47.328359, 8.512821], [47.387101, 8.481979], [47.373768, 8.545066], [47.410492, 8.572331], [47.377648, 8.551238], [47.375903, 8.536251], [47.378344, 8.527283], [47.376538, 8.527088], [47.377803, 8.521724], [47.367373, 8.494026], [47.388017, 8.485163], [47.399774, 8.504723], [47.391055, 8.479381], [47.367767, 8.496231], [47.393573, 8.529237], [47.372613, 8.529325], [47.373178, 8.531468], [47.358375, 8.520588], [47.387852, 8.486471], [47.407732, 8.584038], [47.407722, 8.584051], [47.366056, 8.53687], [47.377762, 8.52898], [47.342182, 8.530317], [47.353012, 8.509175], [47.393805, 8.532262], [47.401803, 8.500232], [47.412028, 8.531391], [47.401785, 8.500258], [47.373856, 8.528172], [47.397778, 8.533549], [47.378436, 8.541389], [47.37966, 8.537534], [47.392501, 8.492483], [47.368946, 8.540385], [47.402894, 8.546943], [47.376144, 8.527834], [47.379307, 8.537752], [47.369479, 8.525884], [47.406388, 8.591601], [47.381827, 8.529977], [47.377077, 8.527231], [47.39069, 8.491918], [47.369604, 8.533593], [47.354605, 8.558448], [47.409438, 8.544548], [47.409374, 8.54468], [47.410874, 8.544896], [47.400576, 8.586243], [47.360275, 8.535665], [47.357945, 8.520447], [47.396671, 8.505707], [47.371981, 8.542818], [47.378714, 8.51475], [47.377061, 8.544035], [47.383948, 8.533993], [47.335143, 8.541288], [47.362539, 8.534096], [47.394165, 8.517884], [47.3909, 8.479577], [47.38239, 8.528479], [47.399637, 8.520459], [47.419826, 8.504461], [47.421646, 8.550077], [47.397381, 8.531753], [47.383696, 8.515804], [47.376929, 8.540868], [47.366292, 8.54511], [47.369122, 8.555748], [47.364023, 8.528381], [47.382228, 8.505352], [47.387646, 8.544229], [47.380314, 8.528304], [47.379213, 8.544769], [47.366205, 8.537336], [47.389726, 8.511568], [47.388147, 8.541762], [47.364149, 8.546349], [47.383116, 8.541035], [47.406521, 8.576354], [47.385003, 8.508718], [47.391342, 8.535867], [47.335353, 8.519062], [47.399699, 8.543379], [47.379378, 8.495362], [47.378974, 8.54242], [47.383741, 8.515792], [47.410076, 8.542826], [47.374439, 8.539744], [47.413219, 8.532966], [47.370562, 8.524556], [47.37821, 8.509959], [47.401322, 8.543916], [47.370197, 8.548805], [47.402818, 8.486646], [47.373192, 8.543161], [47.382998, 8.485117], [47.368053, 8.540618], [47.368778, 8.52877], [47.373596, 8.547062], [47.391722, 8.485183], [47.383081, 8.528625], [47.382839, 8.495643], [47.38482, 8.527363], [47.414775, 8.561078], [47.378307, 8.541704], [47.371057, 8.530286], [47.377392, 8.529091], [47.379049, 8.518359], [47.378084, 8.548056], [47.357053, 8.535784], [47.399943, 8.587567], [47.358238, 8.51893], [47.376575, 8.527035], [47.370038, 8.503545], [47.391293, 8.538237], [47.390722, 8.527285], [47.39378, 8.498231], [47.402519, 8.490787], [47.413984, 8.525242], [47.392941, 8.524628], [47.396188, 8.516997], [47.35435, 8.575307], [47.377184, 8.509051], [47.378966, 8.529084], [47.388781, 8.537497], [47.36647, 8.551919], [47.338595, 8.53109], [47.419179, 8.506397], [47.373471, 8.528958], [47.386815, 8.535139], [47.384038, 8.480476], [47.425852, 8.493766], [47.398196, 8.585926], [47.334819, 8.519395], [47.385519, 8.530489], [47.386873, 8.486253], [47.413531, 8.530322], [47.362483, 8.534254], [47.391291, 8.523203], [47.391099, 8.546287], [47.375762, 8.549093], [47.391837, 8.517651], [47.354713, 8.556571], [47.372241, 8.493897], [47.390291, 8.525249], [47.409337, 8.546666], [47.341865, 8.530562], [47.386915, 8.518863], [47.375598, 8.493698], [47.386886, 8.522915], [47.380738, 8.553634], [47.374369, 8.541437], [47.378868, 8.540405], [47.361981, 8.526512], [47.347601, 8.531804], [47.368047, 8.54128], [47.376912, 8.535147], [47.341498, 8.530356], [47.383279, 8.540032], [47.369797, 8.51024], [47.365076, 8.55937], [47.33428, 8.516474], [47.352526, 8.508239], [47.38415, 8.530647], [47.378473, 8.526995], [47.351394, 8.524536], [47.370485, 8.549738], [47.379279, 8.559311], [47.367042, 8.538214], [47.389529, 8.540135], [47.395398, 8.551967], [47.422938, 8.498705], [47.370292, 8.550131], [47.407111, 8.487353], [47.37577, 8.559476], [47.388564, 8.523293], [47.377234, 8.540093], [47.385971, 8.531201], [47.357936, 8.52046], [47.362452, 8.510702], [47.391529, 8.542693], [47.380756, 8.512791], [47.37897, 8.559715], [47.366824, 8.543161], [47.415501, 8.54645], [47.371468, 8.5429], [47.411191, 8.546533], [47.397338, 8.587127], [47.383459, 8.587092], [47.358246, 8.518017], [47.376753, 8.54334], [47.36393, 8.547563], [47.408189, 8.559376], [47.368733, 8.54761], [47.362473, 8.504599], [47.375369, 8.490225], [47.393835, 8.506922], [47.391781, 8.487608], [47.391637, 8.487631], [47.386784, 8.534688], [47.380174, 8.52789], [47.381359, 8.548892], [47.384408, 8.53195], [47.375879, 8.527392], [47.414904, 8.552348], [47.373029, 8.539516], [47.338383, 8.516252], [47.404846, 8.588388], [47.369566, 8.517597], [47.354658, 8.534173], [47.374616, 8.486886], [47.402396, 8.49937], [47.374178, 8.502383], [47.395105, 8.531732], [47.380996, 8.504387], [47.361412, 8.513223], [47.391019, 8.522469], [47.392002, 8.538358], [47.378057, 8.541461], [47.391013, 8.521184], [47.381295, 8.517676], [47.377753, 8.507818], [47.379577, 8.526302], [47.425083, 8.537663], [47.391427, 8.513417], [47.376288, 8.484032], [47.410537, 8.572279], [47.373017, 8.531332], [47.371731, 8.517893], [47.360625, 8.535712], [47.367102, 8.544173], [47.387126, 8.545966], [47.41086, 8.563156], [47.391078, 8.522894], [47.388706, 8.542489], [47.370071, 8.511729], [47.427413, 8.546168], [47.425084, 8.53765], [47.360446, 8.552587], [47.413822, 8.545169], [47.356466, 8.556727], [47.377652, 8.518622], [47.376698, 8.544359], [47.357917, 8.520486], [47.368946, 8.540372], [47.366807, 8.518296], [47.375112, 8.545637], [47.407647, 8.530519], [47.374608, 8.538118], [47.378226, 8.527427], [47.33651, 8.517485], [47.371883, 8.542803], [47.386372, 8.497806], [47.340103, 8.525709], [47.370032, 8.512006], [47.384072, 8.532288], [47.376955, 8.527771], [47.403479, 8.556296], [47.396665, 8.529446], [47.365477, 8.539122], [47.381166, 8.49165], [47.389669, 8.48142], [47.369892, 8.539266], [47.420977, 8.5494], [47.380441, 8.519552], [47.392568, 8.527998], [47.420327, 8.535616], [47.405493, 8.565613], [47.388183, 8.519882], [47.391114, 8.522855], [47.354412, 8.526874], [47.387687, 8.529527], [47.363713, 8.560718], [47.40922, 8.571721], [47.406752, 8.557305], [47.365101, 8.534189], [47.384931, 8.508783], [47.390371, 8.525383], [47.360516, 8.531142], [47.361326, 8.522422], [47.364431, 8.554418], [47.406163, 8.550297], [47.370868, 8.548277], [47.39839, 8.494786], [47.395374, 8.533712], [47.372613, 8.535005], [47.413487, 8.530254], [47.38656, 8.517372], [47.405169, 8.541426], [47.373672, 8.534352], [47.374833, 8.514195], [47.383308, 8.543569], [47.40772, 8.548302], [47.372291, 8.573014], [47.420012, 8.506771], [47.395357, 8.521259], [47.367247, 8.546837], [47.386778, 8.547495], [47.377341, 8.512431], [47.392071, 8.499204], [47.425861, 8.493766], [47.333607, 8.514277], [47.369275, 8.532328], [47.429899, 8.549533], [47.371364, 8.524387], [47.328075, 8.529618], [47.363422, 8.534869], [47.3471, 8.526778], [47.350278, 8.529318], [47.392302, 8.502454], [47.398294, 8.536978], [47.387472, 8.509258], [47.365469, 8.535229], [47.413807, 8.522032], [47.403787, 8.548591], [47.39131, 8.537324], [47.376594, 8.52689], [47.40161, 8.544836], [47.382395, 8.514467], [47.414905, 8.541018], [47.37302, 8.532908], [47.386508, 8.518126], [47.374637, 8.5293], [47.369009, 8.525186], [47.387909, 8.536486], [47.364891, 8.532649], [47.374711, 8.537657], [47.362594, 8.547178], [47.361522, 8.534102], [47.380171, 8.478348], [47.390603, 8.489585], [47.352814, 8.528417], [47.379645, 8.527707], [47.358279, 8.573736], [47.354868, 8.574762], [47.38728, 8.500857], [47.405391, 8.554786], [47.367468, 8.545412], [47.365492, 8.563708], [47.354238, 8.553636], [47.362502, 8.534149], [47.422323, 8.497103], [47.376011, 8.541921], [47.392533, 8.50279], [47.379296, 8.553868], [47.373618, 8.522936], [47.372455, 8.538379], [47.387679, 8.498534], [47.366546, 8.540269], [47.380133, 8.565924], [47.384938, 8.532067], [47.395688, 8.545217], [47.405481, 8.578769], [47.379387, 8.548149], [47.361467, 8.561412], [47.380247, 8.507563], [47.400415, 8.543738], [47.419569, 8.548072], [47.379299, 8.495215], [47.371254, 8.539903], [47.369155, 8.527811], [47.373195, 8.535335], [47.408982, 8.539543], [47.363619, 8.50024], [47.379402, 8.523902], [47.404836, 8.573959], [47.384269, 8.507445], [47.37503, 8.540113], [47.351042, 8.525641], [47.391116, 8.545373], [47.419569, 8.548059], [47.380043, 8.520763], [47.373467, 8.519874], [47.371334, 8.517117], [47.430662, 8.549775], [47.357556, 8.521617], [47.388581, 8.520605], [47.389341, 8.516236], [47.370831, 8.555757], [47.421103, 8.50059], [47.427564, 8.549127], [47.414587, 8.520391], [47.414821, 8.544223], [47.373929, 8.503001], [47.398827, 8.508903], [47.388789, 8.478317], [47.40428, 8.485111], [47.365556, 8.539335], [47.393507, 8.500504], [47.367686, 8.530098], [47.398391, 8.541868], [47.398295, 8.591373], [47.369283, 8.525682], [47.419113, 8.546817], [47.421961, 8.548148], [47.374648, 8.549891], [47.393988, 8.493188], [47.423582, 8.551668], [47.380414, 8.483371], [47.390901, 8.479564], [47.403828, 8.558264], [47.364626, 8.516875], [47.373156, 8.561831], [47.375736, 8.516676], [47.376868, 8.528352], [47.369774, 8.523216], [47.369772, 8.543447], [47.382516, 8.544546], [47.398201, 8.536366], [47.359874, 8.522882], [47.377882, 8.541867], [47.39111, 8.522352], [47.405887, 8.587669], [47.36097, 8.55138], [47.394865, 8.525753], [47.37989, 8.494538], [47.399701, 8.510656], [47.380995, 8.538091], [47.370971, 8.516461], [47.389773, 8.512324], [47.381809, 8.516587], [47.381827, 8.516561], [47.363459, 8.547937], [47.382099, 8.528804], [47.367936, 8.536908], [47.377543, 8.538815], [47.393874, 8.505625], [47.348735, 8.52607], [47.368643, 8.543848], [47.402043, 8.551271], [47.405275, 8.570471], [47.326519, 8.5133], [47.377397, 8.572435], [47.365086, 8.54899], [47.391823, 8.511518], [47.37074, 8.535298], [47.421121, 8.507416], [47.371744, 8.48814], [47.387563, 8.527392], [47.373786, 8.536592], [47.38342, 8.539399], [47.370887, 8.547178], [47.414212, 8.557886], [47.410366, 8.548145], [47.412292, 8.557382], [47.402698, 8.486975], [47.364621, 8.537396], [47.403801, 8.548022], [47.37351, 8.561547], [47.425841, 8.496921], [47.406799, 8.550575], [47.371767, 8.542681], [47.418842, 8.505886], [47.361108, 8.526468], [47.381104, 8.528492], [47.362541, 8.533818], [47.384864, 8.534092], [47.372823, 8.532798], [47.377561, 8.538802], [47.370007, 8.509874], [47.363191, 8.533633], [47.383249, 8.545025], [47.368434, 8.538468], [47.395412, 8.54019], [47.349996, 8.52775], [47.40078, 8.548873], [47.370488, 8.524859], [47.372948, 8.531026], [47.399559, 8.496823], [47.365571, 8.538673], [47.369269, 8.504046], [47.361708, 8.54851], [47.355839, 8.551789], [47.337082, 8.519759], [47.376947, 8.521905], [47.415361, 8.5628], [47.385159, 8.532389], [47.363372, 8.564338], [47.396754, 8.529527], [47.383515, 8.548262], [47.411308, 8.570665], [47.362434, 8.568264], [47.373904, 8.538303], [47.382852, 8.513748], [47.377111, 8.54164], [47.372875, 8.536864], [47.365162, 8.553228], [47.362055, 8.55454], [47.338236, 8.539473], [47.353599, 8.60195], [47.36741, 8.544855], [47.388977, 8.495248], [47.422411, 8.549032], [47.327419, 8.529618], [47.36106, 8.531577], [47.37376, 8.536446], [47.369107, 8.525307], [47.390841, 8.522201], [47.393368, 8.499004], [47.367563, 8.529698], [47.391781, 8.487621], [47.42069, 8.502477], [47.415038, 8.515471], [47.393721, 8.505622], [47.411498, 8.526556], [47.335229, 8.533139], [47.38179, 8.529195], [47.384979, 8.501632], [47.392341, 8.503117], [47.369595, 8.520273], [47.395744, 8.522221], [47.370024, 8.548987], [47.357944, 8.520473], [47.36607, 8.533547], [47.36771, 8.54641], [47.353663, 8.55635], [47.363767, 8.520207], [47.393991, 8.525921], [47.377469, 8.527636], [47.378464, 8.526995], [47.351856, 8.525168], [47.38277, 8.541505], [47.389648, 8.514136], [47.363967, 8.533318], [47.396825, 8.529675], [47.383784, 8.532295], [47.403836, 8.567698], [47.381942, 8.550957], [47.387345, 8.527692], [47.39634, 8.545614], [47.40483, 8.548613], [47.402689, 8.487001], [47.378095, 8.483194], [47.373247, 8.526027], [47.37894, 8.508756], [47.362431, 8.533115], [47.356339, 8.555917], [47.398533, 8.538254], [47.370079, 8.548896], [47.372062, 8.521898], [47.409919, 8.543193], [47.406853, 8.550576], [47.399062, 8.542293], [47.371734, 8.519548], [47.370732, 8.526585], [47.374187, 8.549233], [47.367111, 8.536627], [47.381142, 8.534929], [47.359985, 8.594887], [47.40712, 8.586702], [47.344843, 8.533402], [47.364344, 8.56612], [47.369709, 8.517706], [47.368208, 8.496134], [47.365747, 8.549494], [47.369898, 8.510918], [47.424676, 8.552923], [47.364733, 8.537875], [47.384483, 8.532627], [47.363775, 8.547771], [47.426315, 8.547112], [47.39737, 8.476312], [47.369766, 8.520276], [47.377278, 8.557031], [47.402645, 8.486908], [47.37765, 8.574201], [47.37009, 8.548737], [47.399348, 8.548075], [47.348773, 8.563435], [47.371876, 8.547291], [47.366648, 8.535147], [47.383414, 8.548458], [47.398827, 8.533875], [47.392096, 8.503364], [47.391067, 8.523093], [47.399837, 8.544018], [47.424084, 8.549094], [47.375992, 8.488899], [47.395452, 8.551968], [47.381881, 8.516549], [47.364193, 8.547356], [47.380425, 8.53457], [47.392275, 8.548338], [47.375687, 8.5372], [47.372615, 8.53486], [47.371785, 8.534167], [47.425742, 8.494003], [47.420845, 8.508113], [47.397789, 8.546466], [47.381792, 8.529883], [47.377332, 8.541975], [47.390978, 8.473922], [47.400147, 8.494489], [47.377505, 8.498543], [47.403071, 8.498363], [47.395195, 8.473103], [47.381809, 8.516587], [47.413391, 8.544167], [47.408711, 8.546256], [47.418597, 8.508028], [47.377117, 8.541017], [47.411073, 8.545762], [47.369158, 8.52752], [47.423728, 8.550531], [47.377349, 8.498911], [47.414185, 8.546688], [47.369379, 8.537401], [47.364275, 8.565867], [47.355905, 8.535522], [47.40346, 8.582992], [47.414777, 8.560919], [47.377224, 8.540198], [47.417718, 8.483149], [47.378804, 8.54239], [47.379343, 8.537726], [47.365741, 8.535963], [47.385444, 8.508714], [47.391811, 8.517637], [47.398759, 8.467874], [47.377256, 8.538676], [47.359923, 8.535724], [47.372472, 8.535731], [47.39626, 8.509236], [47.377605, 8.52654], [47.369436, 8.518959], [47.375934, 8.553626], [47.419715, 8.547823], [47.404447, 8.580536], [47.379205, 8.529486], [47.412244, 8.546502], [47.371335, 8.536104], [47.353577, 8.576164], [47.409487, 8.540442], [47.421471, 8.538264], [47.367193, 8.523176], [47.38687, 8.490571], [47.339496, 8.531823], [47.377161, 8.523975], [47.375622, 8.559896], [47.391466, 8.486635], [47.379554, 8.51625], [47.382142, 8.54038], [47.378615, 8.528176], [47.39378, 8.49337], [47.369501, 8.526414], [47.371317, 8.546406], [47.42744, 8.546128], [47.361351, 8.526526], [47.373102, 8.561882], [47.390757, 8.51298], [47.351516, 8.5607], [47.363749, 8.535419], [47.360448, 8.531684], [47.342154, 8.530449], [47.404909, 8.557174], [47.401495, 8.548345], [47.382865, 8.540024], [47.355752, 8.535479], [47.396351, 8.472556], [47.3763, 8.527546], [47.399712, 8.518208], [47.379428, 8.511427], [47.341917, 8.530775], [47.370164, 8.514233], [47.397571, 8.488941], [47.391802, 8.518511], [47.364754, 8.554451], [47.375204, 8.533165], [47.364773, 8.56642], [47.378827, 8.542774], [47.375974, 8.541007], [47.41063, 8.553491], [47.369126, 8.547949], [47.381799, 8.51668], [47.398034, 8.535886], [47.360978, 8.599052], [47.370263, 8.491792], [47.415141, 8.570614], [47.375278, 8.543297], [47.377791, 8.51632], [47.395624, 8.545229], [47.354411, 8.526014], [47.371111, 8.523561], [47.368608, 8.543728], [47.406592, 8.503826], [47.356484, 8.510185], [47.371618, 8.517493], [47.372629, 8.534291], [47.374454, 8.539175], [47.370771, 8.530055], [47.364005, 8.53312], [47.398836, 8.502081], [47.398644, 8.59154], [47.386629, 8.541532], [47.373007, 8.531438], [47.394865, 8.525766], [47.403055, 8.555452], [47.3426, 8.530881], [47.397252, 8.541527], [47.376592, 8.534716], [47.361709, 8.549344], [47.374413, 8.54157], [47.376717, 8.548968], [47.373061, 8.542748], [47.392434, 8.491025], [47.360783, 8.52568], [47.390906, 8.522957], [47.378582, 8.542067], [47.342671, 8.530896], [47.389691, 8.511462], [47.375425, 8.547643], [47.38996, 8.510633], [47.365916, 8.533649], [47.375882, 8.54217], [47.399376, 8.514637], [47.370304, 8.548861], [47.369447, 8.54348], [47.359844, 8.549675], [47.369707, 8.536985], [47.415901, 8.512573], [47.405826, 8.591099], [47.378381, 8.541414], [47.396094, 8.545066], [47.379467, 8.527518], [47.375056, 8.523072], [47.393511, 8.532905], [47.423547, 8.555352], [47.370989, 8.516421], [47.37965, 8.515656], [47.374644, 8.539947], [47.37094, 8.555706], [47.358994, 8.550134], [47.370257, 8.491487], [47.422042, 8.498277], [47.374195, 8.544572], [47.391372, 8.536477], [47.374807, 8.544611], [47.378369, 8.541732], [47.412543, 8.546335], [47.389594, 8.473776], [47.360808, 8.56627], [47.385137, 8.476272], [47.375159, 8.52551], [47.378165, 8.509879], [47.373545, 8.536375], [47.370274, 8.477665], [47.370026, 8.525194], [47.385338, 8.508473], [47.355659, 8.555518], [47.374421, 8.521721], [47.378327, 8.527257], [47.40859, 8.580943], [47.374607, 8.527776], [47.38495, 8.508664], [47.344233, 8.53507], [47.381772, 8.516706], [47.351087, 8.526581], [47.376945, 8.516356], [47.360532, 8.525636], [47.399377, 8.572929], [47.388634, 8.537812], [47.366148, 8.540512], [47.396279, 8.545428], [47.420808, 8.502347], [47.370961, 8.561003], [47.417379, 8.545654], [47.389745, 8.511489], [47.377264, 8.498327], [47.385493, 8.530462], [47.357442, 8.521337], [47.408001, 8.489385], [47.383333, 8.52765], [47.375134, 8.518597], [47.398898, 8.506056], [47.391114, 8.522842], [47.3666, 8.566273], [47.369122, 8.540799], [47.396311, 8.486001], [47.403656, 8.57037], [47.377299, 8.548304], [47.353551, 8.576071], [47.425175, 8.494986], [47.363093, 8.549492], [47.335716, 8.540612], [47.37432, 8.523838], [47.430737, 8.550386], [47.376556, 8.525194], [47.36468, 8.547247], [47.387233, 8.497094], [47.390576, 8.545428], [47.398192, 8.494808], [47.347962, 8.525009], [47.356676, 8.534836], [47.372037, 8.547295], [47.428538, 8.489207], [47.375619, 8.565776], [47.374499, 8.495782], [47.37555, 8.489103], [47.407741, 8.543347], [47.368393, 8.53517], [47.362978, 8.548337], [47.422811, 8.550472], [47.374457, 8.541651], [47.376716, 8.540546], [47.387049, 8.501501], [47.423039, 8.494519], [47.372561, 8.517632], [47.391022, 8.523079], [47.379721, 8.551772], [47.379072, 8.538806], [47.362261, 8.559311], [47.387323, 8.488196], [47.42998, 8.549508], [47.381102, 8.580817], [47.378023, 8.527939], [47.378979, 8.515192], [47.398282, 8.537229], [47.351468, 8.529064], [47.411999, 8.528806], [47.406907, 8.550577], [47.385502, 8.520807], [47.395327, 8.518702], [47.359692, 8.561653], [47.388541, 8.55132], [47.395296, 8.514264], [47.392689, 8.52755], [47.414867, 8.551565], [47.412363, 8.515827], [47.362967, 8.559736], [47.414938, 8.551713], [47.358615, 8.589774], [47.411245, 8.570704], [47.408958, 8.539318], [47.36787, 8.533412], [47.423853, 8.53838], [47.367936, 8.546296], [47.405211, 8.571476], [47.391244, 8.515665], [47.354778, 8.574839], [47.364801, 8.519302], [47.368552, 8.518358], [47.425629, 8.4975], [47.420325, 8.535749], [47.376738, 8.527807], [47.382192, 8.516025], [47.391876, 8.518341], [47.362498, 8.568172], [47.375837, 8.536568], [47.377008, 8.523045], [47.372208, 8.547338], [47.408736, 8.57978], [47.399809, 8.516435], [47.345674, 8.53015], [47.415949, 8.51427], [47.351262, 8.560853], [47.378282, 8.509855], [47.365618, 8.539469], [47.36199, 8.549124], [47.369463, 8.564189], [47.369209, 8.554227], [47.388238, 8.497366], [47.395098, 8.536276], [47.388856, 8.520942], [47.372066, 8.522521], [47.364116, 8.523206], [47.357968, 8.532255], [47.389709, 8.511449], [47.373316, 8.533047], [47.357906, 8.532241], [47.37654, 8.543919], [47.369696, 8.512383], [47.408554, 8.539203], [47.372332, 8.542812], [47.371725, 8.519561], [47.356314, 8.556591], [47.387071, 8.519488], [47.383916, 8.497903], [47.408756, 8.579555], [47.402421, 8.495687], [47.367599, 8.495884], [47.404741, 8.483848], [47.367606, 8.523291], [47.364366, 8.536822], [47.406907, 8.537407], [47.363517, 8.535215], [47.376007, 8.559123], [47.378288, 8.530408], [47.363368, 8.529189], [47.399722, 8.543777], [47.363898, 8.526353], [47.379546, 8.51033], [47.332444, 8.529932], [47.359865, 8.565151], [47.406911, 8.536003], [47.377036, 8.559714], [47.378607, 8.542253], [47.377744, 8.527059], [47.367995, 8.534513], [47.379285, 8.555947], [47.382158, 8.542486], [47.388579, 8.536976], [47.379241, 8.538082], [47.335946, 8.540974], [47.385048, 8.523182], [47.364595, 8.566191], [47.390666, 8.510104], [47.375484, 8.563839], [47.378475, 8.525816], [47.356668, 8.526166], [47.407482, 8.544084], [47.374196, 8.544545], [47.374658, 8.549799], [47.368786, 8.528783], [47.373067, 8.536551], [47.360151, 8.568149], [47.380358, 8.541641], [47.406844, 8.550589], [47.369575, 8.520537], [47.339407, 8.531808], [47.376098, 8.516445], [47.376832, 8.544507], [47.373931, 8.519248], [47.378097, 8.516274], [47.381188, 8.504046], [47.375098, 8.543319], [47.345155, 8.534626], [47.392231, 8.476702], [47.381001, 8.507698], [47.40377, 8.482836], [47.35904, 8.500307], [47.41965, 8.548087], [47.367589, 8.560853], [47.377833, 8.507926], [47.404084, 8.572658], [47.336803, 8.536995], [47.375985, 8.527566], [47.380905, 8.538089], [47.378325, 8.540711], [47.385683, 8.501355], [47.388346, 8.497368], [47.418386, 8.545755], [47.39096, 8.522998], [47.378434, 8.501197], [47.379952, 8.506366], [47.384271, 8.56029], [47.392397, 8.468188], [47.387704, 8.572654], [47.373758, 8.519523], [47.411869, 8.537774], [47.377522, 8.529584], [47.377521, 8.541992], [47.368498, 8.496921], [47.37769, 8.510743], [47.405811, 8.590781], [47.394215, 8.489987], [47.340528, 8.530243], [47.374286, 8.546428], [47.392614, 8.480127], [47.424657, 8.548417], [47.378671, 8.530813], [47.362866, 8.512616], [47.377768, 8.537813], [47.389583, 8.511512], [47.362555, 8.535209], [47.35821, 8.518069], [47.357483, 8.521748], [47.362618, 8.519985], [47.366765, 8.544577], [47.370277, 8.548847], [47.408309, 8.526081], [47.379635, 8.527787], [47.3795, 8.510449], [47.360615, 8.524446], [47.334665, 8.534768], [47.358244, 8.588111], [47.339622, 8.52996], [47.335048, 8.526585], [47.382785, 8.575277], [47.378216, 8.541715], [47.386016, 8.53785], [47.378183, 8.509959], [47.365267, 8.547035], [47.392207, 8.524295], [47.369453, 8.525831], [47.413975, 8.479299], [47.386472, 8.496722], [47.363102, 8.517281], [47.406374, 8.547029], [47.357308, 8.598112], [47.378966, 8.542353], [47.376707, 8.544412], [47.343885, 8.530074], [47.404956, 8.500772], [47.392728, 8.523458], [47.375341, 8.517595], [47.32689, 8.513096], [47.368531, 8.490394], [47.367693, 8.494482], [47.34845, 8.53427], [47.367113, 8.527901], [47.37589, 8.538502], [47.358262, 8.523074], [47.407018, 8.481733], [47.378699, 8.542017], [47.370765, 8.549598], [47.408456, 8.546674], [47.395903, 8.521469], [47.379575, 8.542631], [47.337847, 8.532213], [47.364294, 8.533934], [47.338163, 8.530129], [47.414233, 8.551035], [47.368583, 8.524635], [47.381738, 8.516493], [47.343154, 8.525506], [47.389898, 8.484008], [47.40296, 8.490849], [47.407811, 8.580502], [47.378614, 8.542426], [47.383285, 8.553488], [47.377903, 8.510019], [47.367784, 8.496298], [47.387659, 8.486917], [47.338092, 8.53857], [47.392878, 8.522745], [47.390968, 8.478068], [47.356434, 8.531866], [47.364872, 8.565495], [47.394113, 8.493284], [47.359547, 8.53561], [47.408835, 8.55022], [47.397587, 8.505845], [47.373094, 8.500945], [47.370571, 8.489574], [47.379165, 8.522294], [47.369115, 8.54158], [47.339874, 8.519392], [47.376069, 8.538665], [47.370662, 8.516812], [47.39629, 8.520536], [47.381144, 8.497993], [47.391052, 8.522801], [47.371323, 8.556059], [47.358548, 8.521372], [47.413793, 8.550112], [47.364384, 8.546222], [47.35738, 8.523136], [47.382905, 8.531072], [47.375969, 8.54155], [47.386212, 8.475763], [47.336047, 8.526579], [47.388305, 8.49101], [47.37722, 8.515779], [47.382573, 8.528178], [47.414088, 8.550237], [47.364721, 8.532592], [47.391846, 8.517717], [47.425424, 8.536861], [47.376599, 8.543403], [47.377656, 8.541969], [47.383632, 8.573296], [47.399695, 8.518049], [47.420471, 8.547826], [47.384015, 8.535505], [47.36903, 8.540996], [47.376016, 8.535684], [47.400262, 8.547498], [47.41457, 8.558993], [47.369428, 8.541745], [47.37598, 8.535684], [47.329855, 8.529734], [47.378782, 8.522843], [47.383208, 8.515092], [47.393883, 8.505664], [47.369039, 8.541049], [47.378872, 8.542749], [47.390054, 8.534172], [47.377363, 8.539751], [47.35019, 8.532903], [47.414911, 8.551672], [47.391133, 8.538923], [47.389883, 8.536076], [47.391616, 8.527846], [47.37754, 8.529584], [47.367611, 8.523714], [47.367775, 8.546253], [47.363281, 8.52213], [47.377483, 8.503946], [47.375713, 8.559779], [47.39147, 8.505841], [47.421564, 8.550168], [47.37572, 8.516543], [47.373095, 8.534525], [47.369039, 8.541022], [47.373163, 8.495332], [47.397482, 8.532457], [47.377434, 8.511149], [47.373785, 8.51947], [47.390414, 8.509158], [47.386607, 8.496698], [47.394555, 8.526157], [47.373861, 8.502615], [47.391361, 8.537616], [47.424052, 8.5134], [47.362502, 8.551055], [47.379452, 8.544257], [47.39084, 8.527181], [47.380517, 8.51721], [47.370956, 8.523809], [47.381579, 8.571623], [47.376184, 8.54452], [47.359427, 8.509039], [47.343623, 8.530121], [47.354998, 8.554101], [47.360565, 8.547691], [47.344062, 8.53504], [47.363959, 8.531306], [47.378442, 8.510083], [47.359793, 8.526733], [47.375548, 8.52434], [47.374713, 8.549641], [47.400307, 8.503514], [47.361766, 8.561127], [47.372506, 8.543478], [47.373181, 8.55186], [47.369398, 8.525909], [47.368404, 8.550992], [47.419831, 8.547932], [47.388837, 8.536293], [47.395646, 8.5354], [47.383033, 8.505845], [47.402504, 8.499398], [47.33118, 8.537025], [47.355434, 8.534917], [47.422058, 8.546494], [47.35945, 8.547628], [47.409701, 8.544408], [47.373163, 8.551807], [47.360878, 8.535611], [47.37018, 8.539338], [47.365732, 8.535923], [47.385352, 8.494329], [47.41404, 8.542126], [47.401315, 8.517962], [47.366873, 8.542752], [47.359897, 8.535684], [47.38308, 8.530691], [47.369098, 8.541474], [47.366807, 8.543081], [47.369124, 8.5254], [47.407635, 8.54781], [47.343645, 8.535455], [47.427288, 8.546099], [47.362423, 8.533035], [47.394751, 8.525446], [47.403478, 8.556309], [47.371124, 8.534644], [47.378299, 8.527349], [47.40236, 8.499316], [47.364615, 8.554938], [47.422782, 8.542228], [47.361059, 8.561748], [47.38696, 8.542665], [47.388608, 8.49132], [47.376484, 8.548844], [47.353196, 8.575653], [47.382109, 8.492794], [47.37885, 8.530909], [47.37438, 8.52707], [47.375027, 8.51555], [47.365714, 8.535936], [47.378706, 8.519385], [47.400186, 8.494132], [47.368923, 8.541867], [47.370109, 8.556947], [47.423872, 8.52502], [47.371988, 8.491071], [47.374244, 8.5243], [47.361635, 8.525963], [47.420806, 8.498703], [47.400683, 8.548633], [47.387927, 8.492009], [47.406629, 8.573653], [47.404099, 8.564656], [47.365135, 8.553215], [47.413959, 8.553349], [47.38566, 8.532691], [47.386735, 8.547335], [47.374572, 8.539932], [47.396177, 8.52684], [47.414905, 8.561638], [47.369662, 8.52565], [47.370499, 8.489612], [47.342636, 8.530895], [47.375809, 8.510772], [47.378582, 8.499809], [47.406063, 8.48088], [47.410897, 8.545294], [47.397, 8.594949], [47.369298, 8.540273], [47.374499, 8.556946], [47.390099, 8.510211], [47.40065, 8.534138], [47.364471, 8.572504], [47.40954, 8.549864], [47.37185, 8.55652], [47.380091, 8.528034], [47.383771, 8.547843], [47.389715, 8.511833], [47.406917, 8.550445], [47.403851, 8.480837], [47.368244, 8.54613], [47.380017, 8.524497], [47.382885, 8.575121], [47.377998, 8.532547], [47.353511, 8.554335], [47.393999, 8.518291], [47.412203, 8.514632], [47.366319, 8.561951], [47.393693, 8.512575], [47.378473, 8.526995], [47.400665, 8.548645], [47.385378, 8.5245], [47.369322, 8.528264], [47.370217, 8.521146], [47.384129, 8.504079], [47.361556, 8.569715], [47.347845, 8.531743], [47.383176, 8.505953], [47.391015, 8.522893], [47.379516, 8.525109], [47.426183, 8.547812], [47.430952, 8.540064], [47.366745, 8.536367], [47.409516, 8.580062], [47.368671, 8.530489], [47.375409, 8.529514], [47.386793, 8.534674], [47.36135, 8.512175], [47.40329, 8.53463], [47.381736, 8.529167], [47.369001, 8.556248], [47.37302, 8.528168], [47.373295, 8.531444], [47.388142, 8.528941], [47.369428, 8.541759], [47.386321, 8.53983], [47.368905, 8.559636], [47.364177, 8.526292], [47.378912, 8.526209], [47.367916, 8.538947], [47.379614, 8.510742], [47.380119, 8.527916], [47.392638, 8.524343], [47.376245, 8.55497], [47.38661, 8.541571], [47.348747, 8.53425], [47.39951, 8.495325], [47.420462, 8.54878], [47.411187, 8.526139], [47.354372, 8.523524], [47.403861, 8.568811], [47.402786, 8.577533], [47.380451, 8.528081], [47.365912, 8.5397], [47.368267, 8.541841], [47.371481, 8.530109], [47.391419, 8.516225], [47.358337, 8.586061], [47.372723, 8.534849], [47.377926, 8.536293], [47.352857, 8.524897], [47.377695, 8.525535], [47.414024, 8.52197], [47.366573, 8.541157], [47.361621, 8.526479], [47.406746, 8.580863], [47.366151, 8.521143], [47.377255, 8.538769], [47.338835, 8.538942], [47.398748, 8.532682], [47.37383, 8.536646], [47.383272, 8.530364], [47.370707, 8.516747], [47.374595, 8.5166], [47.406228, 8.543528], [47.374457, 8.541664], [47.39165, 8.504944], [47.413936, 8.542641], [47.362612, 8.533886], [47.370073, 8.52113], [47.366383, 8.541285], [47.378624, 8.548054], [47.371102, 8.538827], [47.378, 8.519847], [47.392831, 8.474952], [47.360687, 8.524421], [47.36507, 8.521293], [47.41524, 8.478687], [47.402146, 8.546186], [47.354009, 8.555921], [47.372044, 8.529565], [47.344942, 8.533351], [47.358037, 8.525942], [47.405599, 8.565801], [47.378195, 8.510608], [47.399569, 8.548437], [47.390498, 8.509822], [47.378351, 8.541745], [47.377233, 8.540106], [47.384959, 8.485076], [47.357947, 8.554216], [47.391497, 8.478264], [47.380347, 8.493687], [47.38542, 8.522925], [47.352177, 8.525426], [47.388538, 8.491094], [47.389653, 8.521395], [47.406655, 8.56732], [47.376683, 8.50679], [47.3747, 8.541669], [47.381736, 8.52918], [47.419641, 8.555575], [47.396297, 8.545428], [47.377788, 8.498085], [47.36708, 8.541763], [47.383519, 8.587372], [47.424213, 8.543092], [47.338146, 8.538597], [47.354851, 8.556269], [47.380703, 8.52516], [47.392186, 8.516982], [47.421298, 8.549751], [47.391149, 8.522988], [47.36876, 8.528743], [47.409269, 8.550017], [47.358331, 8.518561], [47.394111, 8.493522], [47.389368, 8.521045], [47.400204, 8.494146], [47.388327, 8.537011], [47.387518, 8.527458], [47.367978, 8.544774], [47.405092, 8.585359], [47.400182, 8.592448], [47.369014, 8.538003], [47.394537, 8.514672], [47.427395, 8.546141], [47.391201, 8.489146], [47.393426, 8.524744], [47.393543, 8.524772], [47.380411, 8.525644], [47.329846, 8.52972], [47.429493, 8.514477], [47.378334, 8.541705], [47.361243, 8.502417], [47.398167, 8.501471], [47.380766, 8.537544], [47.362224, 8.526398], [47.362428, 8.612151], [47.369324, 8.557182], [47.375028, 8.519297], [47.388532, 8.496723], [47.371952, 8.522214], [47.361786, 8.552615], [47.358759, 8.533277], [47.355102, 8.52718], [47.373143, 8.537016], [47.369213, 8.501318], [47.428746, 8.489092], [47.358738, 8.509634], [47.368695, 8.493138], [47.377443, 8.541713], [47.36616, 8.530662], [47.41323, 8.545899], [47.379428, 8.529729], [47.414777, 8.560919], [47.391071, 8.478587], [47.378881, 8.542762], [47.384171, 8.511139], [47.368148, 8.523937], [47.398041, 8.534177], [47.356511, 8.523647], [47.396977, 8.512456], [47.377349, 8.527872], [47.349981, 8.576908], [47.40627, 8.597111], [47.378037, 8.499375], [47.423443, 8.49454], [47.379072, 8.527391], [47.365346, 8.521643], [47.381661, 8.543681], [47.382411, 8.499157], [47.368531, 8.55081], [47.42048, 8.547839], [47.371404, 8.562588], [47.381175, 8.491703], [47.372306, 8.526657], [47.38857, 8.525572], [47.378879, 8.52495], [47.360378, 8.523779], [47.356659, 8.53469], [47.391028, 8.522443], [47.371784, 8.493729], [47.354875, 8.511026], [47.393286, 8.493214], [47.369434, 8.52591], [47.393221, 8.524594], [47.404083, 8.564496], [47.366558, 8.540905], [47.384787, 8.531825], [47.392989, 8.524377], [47.380653, 8.525702], [47.364032, 8.531201], [47.37011, 8.531498], [47.402165, 8.495112], [47.374992, 8.527983], [47.382399, 8.541762], [47.377504, 8.54378], [47.384197, 8.516119], [47.374436, 8.540075], [47.388976, 8.515845], [47.394167, 8.493311], [47.377355, 8.499282], [47.427404, 8.546154], [47.35741, 8.521852], [47.373975, 8.47624], [47.41589, 8.546246], [47.355631, 8.532167], [47.413083, 8.546307], [47.429892, 8.53808], [47.389583, 8.511526], [47.357881, 8.572112], [47.407517, 8.547039], [47.379771, 8.527683], [47.372629, 8.534317], [47.364745, 8.53761], [47.368902, 8.540358], [47.385413, 8.528368], [47.344025, 8.527589], [47.349929, 8.533943], [47.407846, 8.547444], [47.368959, 8.524788], [47.349722, 8.561125], [47.389829, 8.491636], [47.422595, 8.495849], [47.405875, 8.548423], [47.367673, 8.538982], [47.361083, 8.571187], [47.381459, 8.506753], [47.391421, 8.52563], [47.366447, 8.566283], [47.424968, 8.505837], [47.378725, 8.542163], [47.377389, 8.548293], [47.36162, 8.518946], [47.419569, 8.55556], [47.423892, 8.504437], [47.412827, 8.517175], [47.38674, 8.488038], [47.366941, 8.543111], [47.391648, 8.538735], [47.366893, 8.544367], [47.410042, 8.532105], [47.397747, 8.51377], [47.373942, 8.544699], [47.366536, 8.540322], [47.346258, 8.531142], [47.379613, 8.537652], [47.414947, 8.546094], [47.369409, 8.541824], [47.376466, 8.548857], [47.354053, 8.527754], [47.420725, 8.502597], [47.366297, 8.54082], [47.369577, 8.467072], [47.402792, 8.501285], [47.393872, 8.504896], [47.381194, 8.537897], [47.386913, 8.519048], [47.417779, 8.548074], [47.380265, 8.512384], [47.418854, 8.50749], [47.393721, 8.482029], [47.38423, 8.53931], [47.366562, 8.540455], [47.390763, 8.522875], [47.41405, 8.546685], [47.371572, 8.538532], [47.367922, 8.540298], [47.352119, 8.524868], [47.36764, 8.52345], [47.376903, 8.543622], [47.418519, 8.547812], [47.378794, 8.542429], [47.368366, 8.54645], [47.368152, 8.533047], [47.416726, 8.572225], [47.374921, 8.534457], [47.370798, 8.524335], [47.35534, 8.553129], [47.390698, 8.489004], [47.404753, 8.574156], [47.392512, 8.523414], [47.369111, 8.550411], [47.379195, 8.525778], [47.381278, 8.531952], [47.335317, 8.519022], [47.372737, 8.537153], [47.37398, 8.516005], [47.379344, 8.544202], [47.372062, 8.529578], [47.374686, 8.512563], [47.347889, 8.532723], [47.405001, 8.482953], [47.38149, 8.503417], [47.38221, 8.501405], [47.369129, 8.511405], [47.374597, 8.517276], [47.369689, 8.536971], [47.368337, 8.541048], [47.361412, 8.535252], [47.3657, 8.552498], [47.389512, 8.521035], [47.366729, 8.534196], [47.374668, 8.52411], [47.377888, 8.521302], [47.368446, 8.546624], [47.370466, 8.515656], [47.412215, 8.523987], [47.395104, 8.522274], [47.374044, 8.49241], [47.376045, 8.553337], [47.377779, 8.55818], [47.360368, 8.523858], [47.379819, 8.521619], [47.401803, 8.585924], [47.384544, 8.53186], [47.377766, 8.566933], [47.368458, 8.524513], [47.3582, 8.571642], [47.375047, 8.49194], [47.388606, 8.525559], [47.385536, 8.548542], [47.366938, 8.544342], [47.379451, 8.54431], [47.36515, 8.521427], [47.338101, 8.538557], [47.37136, 8.517223], [47.419179, 8.547481], [47.372376, 8.490881], [47.411062, 8.532736], [47.361865, 8.534016], [47.366833, 8.543095], [47.360423, 8.526653], [47.351535, 8.525823], [47.340338, 8.535109], [47.414062, 8.516882], [47.368207, 8.538688], [47.381907, 8.529091], [47.386189, 8.548039], [47.39133, 8.536145], [47.369912, 8.552242], [47.334557, 8.530002], [47.369836, 8.556358], [47.366161, 8.516152], [47.404883, 8.591927], [47.356542, 8.534688], [47.355309, 8.554505], [47.367767, 8.496191], [47.367915, 8.539119], [47.375069, 8.518742], [47.377304, 8.521171], [47.36549, 8.521606], [47.374514, 8.546088], [47.366638, 8.535266], [47.335573, 8.53296], [47.422228, 8.544695], [47.382425, 8.540915], [47.380725, 8.508315], [47.372734, 8.504857], [47.386223, 8.498346], [47.388335, 8.490679], [47.370344, 8.51813], [47.427431, 8.546181], [47.393861, 8.526302], [47.348883, 8.533234], [47.341127, 8.530573], [47.420706, 8.508588], [47.383059, 8.554477], [47.366262, 8.540766], [47.37976, 8.489967], [47.367209, 8.544268], [47.369275, 8.525668], [47.365153, 8.553228], [47.414065, 8.548911], [47.364324, 8.529777], [47.375379, 8.525038], [47.384196, 8.516238], [47.355578, 8.508009], [47.377359, 8.527819], [47.392487, 8.532752], [47.378102, 8.510844], [47.363387, 8.534749], [47.37574, 8.535414], [47.361296, 8.512201], [47.420766, 8.547023], [47.363626, 8.535098], [47.37722, 8.538636], [47.400313, 8.494069], [47.357682, 8.559294], [47.362646, 8.52078], [47.36039, 8.516723], [47.378439, 8.529643], [47.365807, 8.564575], [47.340931, 8.524707], [47.400365, 8.585761], [47.398898, 8.533003], [47.377522, 8.529571], [47.376499, 8.521657], [47.384782, 8.531401], [47.379644, 8.494851], [47.396204, 8.532576], [47.373702, 8.489556], [47.394644, 8.532981], [47.367162, 8.545472], [47.363616, 8.534291], [47.400996, 8.491088], [47.39866, 8.539184], [47.419623, 8.505107], [47.390653, 8.50866], [47.32606, 8.51341], [47.381399, 8.517162], [47.375191, 8.490989], [47.391085, 8.523093], [47.37288, 8.518181], [47.372054, 8.54082], [47.371067, 8.523454], [47.412506, 8.546388], [47.385736, 8.539831], [47.369133, 8.525387], [47.393404, 8.499985], [47.345022, 8.533472], [47.37599, 8.533658], [47.358383, 8.587797], [47.378009, 8.51896], [47.376584, 8.548766], [47.363753, 8.535948], [47.359065, 8.595119], [47.377692, 8.542009], [47.366121, 8.533813], [47.369031, 8.538043], [47.372387, 8.523719], [47.366675, 8.544654], [47.365046, 8.5315], [47.396795, 8.541371], [47.410305, 8.542367], [47.377655, 8.5383], [47.404573, 8.486548], [47.375943, 8.549018], [47.355691, 8.554103], [47.41657, 8.553085], [47.36239, 8.504796], [47.406416, 8.55388], [47.355158, 8.554317], [47.378045, 8.526589], [47.366319, 8.540423], [47.364273, 8.555818], [47.409948, 8.549568], [47.39777, 8.540027], [47.384787, 8.531799], [47.40586, 8.590477], [47.409699, 8.544593], [47.387378, 8.527044], [47.398259, 8.546237], [47.412869, 8.550702], [47.351697, 8.5258], [47.386486, 8.496219], [47.363965, 8.551456], [47.401869, 8.499902], [47.419547, 8.50651], [47.372873, 8.531316], [47.38366, 8.483528], [47.390876, 8.523354], [47.389726, 8.511555], [47.373529, 8.493671], [47.404174, 8.548507], [47.360386, 8.522906], [47.368848, 8.547864], [47.389706, 8.511846], [47.391004, 8.488069], [47.353636, 8.55447], [47.412703, 8.522765], [47.368852, 8.540807], [47.378948, 8.54234], [47.410667, 8.571897], [47.373816, 8.537188], [47.374169, 8.497418], [47.38454, 8.54831], [47.382842, 8.529216], [47.368806, 8.524798], [47.371725, 8.519548], [47.357454, 8.521893], [47.370536, 8.549077], [47.368652, 8.524888], [47.344054, 8.531176], [47.391054, 8.52251], [47.394134, 8.525049], [47.389946, 8.476671], [47.376897, 8.555513], [47.343736, 8.535312], [47.373356, 8.531591], [47.38094, 8.538156], [47.364025, 8.526276], [47.364696, 8.54742], [47.371731, 8.542627], [47.408712, 8.546243], [47.367985, 8.540246], [47.365705, 8.535949], [47.36689, 8.499643], [47.429345, 8.546314], [47.385973, 8.498208], [47.398017, 8.535833], [47.406909, 8.586299], [47.381175, 8.491663], [47.39194, 8.483041], [47.377069, 8.544115], [47.381885, 8.547526], [47.390745, 8.478845], [47.429269, 8.548698], [47.384756, 8.531321], [47.329819, 8.529746], [47.381286, 8.515769], [47.373366, 8.480916], [47.400815, 8.548887], [47.36968, 8.525624], [47.364791, 8.554399], [47.377741, 8.482577], [47.361285, 8.517218], [47.372746, 8.522892], [47.364276, 8.533947], [47.384386, 8.531446], [47.370416, 8.524765], [47.362748, 8.51178], [47.392229, 8.476887], [47.394901, 8.525767], [47.37822, 8.509787], [47.376504, 8.53927], [47.397891, 8.546137], [47.343911, 8.530101], [47.368913, 8.547653], [47.410535, 8.572504], [47.363399, 8.575407], [47.408616, 8.539271], [47.395821, 8.47456], [47.401376, 8.550502], [47.40516, 8.481313], [47.412227, 8.548264], [47.363482, 8.531389], [47.373858, 8.536514], [47.391114, 8.522842], [47.386931, 8.519022], [47.369481, 8.554007], [47.359803, 8.507273], [47.368903, 8.533565], [47.372815, 8.511652], [47.356935, 8.53504], [47.368532, 8.551697], [47.376843, 8.543276], [47.353517, 8.602054], [47.380356, 8.517114], [47.380155, 8.52793], [47.325916, 8.51342], [47.376556, 8.560035], [47.381628, 8.554566], [47.377047, 8.520755], [47.375872, 8.516547], [47.370918, 8.549575], [47.3962, 8.527238], [47.411984, 8.547318], [47.37144, 8.524984], [47.401724, 8.489221], [47.377018, 8.523853], [47.385505, 8.52049], [47.378916, 8.542842], [47.386751, 8.547508], [47.36959, 8.541722], [47.390267, 8.509566], [47.372818, 8.542795], [47.41462, 8.552885], [47.354271, 8.576073], [47.42778, 8.490491], [47.369043, 8.528338], [47.354295, 8.560771], [47.419043, 8.5065], [47.385215, 8.495531], [47.384417, 8.53195], [47.38604, 8.535374], [47.388101, 8.519959], [47.362134, 8.608398], [47.414306, 8.483466], [47.391087, 8.536193], [47.381052, 8.49431], [47.401737, 8.586188], [47.373576, 8.533145], [47.338046, 8.538635], [47.396197, 8.526641], [47.371123, 8.514597], [47.382269, 8.540316], [47.369036, 8.525213], [47.379981, 8.548135], [47.408846, 8.556594], [47.361743, 8.547716], [47.363774, 8.556324], [47.380265, 8.542923], [47.370625, 8.51599], [47.365705, 8.535989], [47.405785, 8.580803], [47.3929, 8.545079], [47.40489, 8.501009], [47.370948, 8.548291], [47.378726, 8.543037], [47.370052, 8.548855], [47.392652, 8.495652], [47.372762, 8.529765], [47.368367, 8.550118], [47.409252, 8.543392], [47.414811, 8.561052], [47.379213, 8.538134], [47.399269, 8.495081], [47.354799, 8.526869], [47.370319, 8.535978], [47.38147, 8.528764], [47.40935, 8.529216], [47.402058, 8.580167], [47.374735, 8.544623], [47.352119, 8.533472], [47.360642, 8.56297], [47.381609, 8.483567], [47.414337, 8.528854], [47.400295, 8.518326], [47.379204, 8.51137], [47.39988, 8.544217], [47.367287, 8.541767], [47.417464, 8.553727], [47.391236, 8.52046], [47.337259, 8.532479], [47.393104, 8.526486], [47.389996, 8.525985], [47.404203, 8.484659], [47.338064, 8.538662], [47.379868, 8.523116], [47.378983, 8.542433], [47.346898, 8.532875], [47.379327, 8.542215], [47.362569, 8.534693], [47.40941, 8.538121], [47.382852, 8.530038], [47.353044, 8.558905], [47.353555, 8.572047], [47.378495, 8.566022], [47.379662, 8.545784], [47.41975, 8.547943], [47.361433, 8.534034], [47.392427, 8.539029], [47.38114, 8.49161], [47.376436, 8.539732], [47.379235, 8.495254], [47.425614, 8.536733], [47.37802, 8.548174], [47.381274, 8.53713], [47.34122, 8.530324], [47.415003, 8.545883], [47.373013, 8.536457], [47.370148, 8.529433], [47.375002, 8.534485], [47.418046, 8.482705], [47.380881, 8.556484], [47.379464, 8.523943], [47.372748, 8.534995], [47.391551, 8.486173], [47.379667, 8.548102], [47.361365, 8.568096], [47.364455, 8.536863], [47.352857, 8.576228], [47.354763, 8.526828], [47.366945, 8.536133], [47.35844, 8.528955], [47.360485, 8.550364], [47.391103, 8.52308], [47.368981, 8.529144], [47.376898, 8.513667], [47.379963, 8.548148], [47.385539, 8.524609], [47.3807, 8.582292], [47.369868, 8.547474], [47.377394, 8.572766], [47.398147, 8.536365], [47.352129, 8.558714], [47.352146, 8.558741], [47.397467, 8.546353], [47.40078, 8.548886], [47.422489, 8.499531], [47.388257, 8.526347], [47.381477, 8.528963], [47.360279, 8.534235], [47.391132, 8.48782], [47.428581, 8.542547], [47.367808, 8.560526], [47.407725, 8.583786], [47.390547, 8.489782], [47.363258, 8.564018], [47.409818, 8.537798], [47.359811, 8.52386], [47.36965, 8.533501], [47.376549, 8.526902], [47.354052, 8.52696], [47.371604, 8.51605], [47.345004, 8.533419], [47.397258, 8.508342], [47.411579, 8.563224], [47.412612, 8.480783], [47.377759, 8.525431], [47.331734, 8.516475], [47.384048, 8.531042], [47.387306, 8.533692], [47.379804, 8.5068], [47.417428, 8.553699], [47.383934, 8.509571], [47.396425, 8.543298], [47.38954, 8.483762], [47.378371, 8.530211], [47.3987, 8.539662], [47.361476, 8.561399], [47.383024, 8.485171], [47.350792, 8.601994], [47.369945, 8.548813], [47.407732, 8.53863], [47.389022, 8.546204], [47.389163, 8.49455], [47.403807, 8.534256], [47.377695, 8.525575], [47.375534, 8.541885], [47.362576, 8.514821], [47.379706, 8.542064], [47.378323, 8.514239], [47.419152, 8.506409], [47.353512, 8.524089], [47.374805, 8.545737], [47.375384, 8.484584], [47.373269, 8.536965], [47.404646, 8.572153], [47.387309, 8.525784], [47.409655, 8.550105], [47.384235, 8.531231], [47.380346, 8.524861], [47.369649, 8.508715], [47.37619, 8.558769], [47.377699, 8.50685], [47.360721, 8.586894], [47.38066, 8.542004], [47.360259, 8.547645], [47.414206, 8.518846], [47.373329, 8.53159], [47.374243, 8.517705], [47.365374, 8.564791], [47.367138, 8.536654], [47.366203, 8.540341], [47.359927, 8.521996], [47.369503, 8.526216], [47.376121, 8.536044], [47.348343, 8.534162], [47.417198, 8.542973], [47.410868, 8.550263], [47.378189, 8.527519], [47.386815, 8.54747], [47.370545, 8.524529], [47.375065, 8.568108], [47.384436, 8.531831], [47.399753, 8.544268], [47.359865, 8.522868], [47.396539, 8.508248], [47.39772, 8.532939], [47.370298, 8.558818], [47.383431, 8.48396], [47.385065, 8.53093], [47.374555, 8.545559], [47.376934, 8.540391], [47.376138, 8.522776], [47.379999, 8.548136], [47.358434, 8.497793], [47.37123, 8.549846], [47.393836, 8.472229], [47.383326, 8.499427], [47.38007, 8.520737], [47.36093, 8.549976], [47.40971, 8.544395], [47.366824, 8.543161], [47.413793, 8.545407], [47.384546, 8.538244], [47.384311, 8.543126], [47.363088, 8.556588], [47.384259, 8.507458], [47.410341, 8.539532], [47.372959, 8.536469], [47.357676, 8.578343], [47.414858, 8.551552], [47.389174, 8.47047], [47.411994, 8.524473], [47.400655, 8.502793], [47.416377, 8.546071], [47.374509, 8.539997], [47.375836, 8.559119], [47.39933, 8.515763], [47.370544, 8.549236], [47.363939, 8.550423], [47.364623, 8.537184], [47.389789, 8.516457], [47.364696, 8.565982], [47.389946, 8.54919], [47.414082, 8.541544], [47.412136, 8.550236], [47.359824, 8.535828], [47.369582, 8.520709], [47.377024, 8.537572], [47.385572, 8.52008], [47.376185, 8.567681], [47.378957, 8.489342], [47.375121, 8.545584], [47.409117, 8.545191], [47.36921, 8.527732], [47.37446, 8.48826], [47.370458, 8.515563], [47.387253, 8.519227], [47.377114, 8.53376], [47.38326, 8.482023], [47.42084, 8.550617], [47.376674, 8.538399], [47.419562, 8.54786], [47.419168, 8.547653], [47.377214, 8.526969], [47.366629, 8.54468], [47.403974, 8.550636], [47.399702, 8.51732], [47.37665, 8.538055], [47.41498, 8.545445], [47.417768, 8.545424], [47.381588, 8.53719], [47.364217, 8.507613], [47.378557, 8.509357], [47.381471, 8.517097], [47.394783, 8.525791], [47.405227, 8.480811], [47.390919, 8.488478], [47.367108, 8.539751], [47.392222, 8.51693], [47.380255, 8.525905], [47.377524, 8.53888], [47.378476, 8.496629], [47.334748, 8.529781], [47.365471, 8.530238], [47.364376, 8.546129], [47.401208, 8.490615], [47.369182, 8.527904], [47.381593, 8.513656], [47.41191, 8.524855], [47.402035, 8.499455], [47.418616, 8.547058], [47.384544, 8.531847], [47.389326, 8.52168], [47.399488, 8.533386], [47.388144, 8.520172], [47.398806, 8.533226], [47.391952, 8.517905], [47.370709, 8.547002], [47.362153, 8.554648], [47.374487, 8.546101], [47.402296, 8.487669], [47.369081, 8.547961], [47.367101, 8.523439], [47.414405, 8.552788], [47.363422, 8.534869], [47.378453, 8.540489], [47.370713, 8.535231], [47.373487, 8.534851], [47.374601, 8.518772], [47.378361, 8.499355], [47.386786, 8.502675], [47.403107, 8.502272], [47.366932, 8.54311], [47.363728, 8.574858], [47.413836, 8.547462], [47.402472, 8.535567], [47.373465, 8.520007], [47.36019, 8.531308], [47.378597, 8.519515], [47.397708, 8.533283], [47.430946, 8.550125], [47.379262, 8.530136], [47.380945, 8.51853], [47.385706, 8.532626], [47.397869, 8.532491], [47.373226, 8.533045], [47.369605, 8.525887], [47.390824, 8.508676], [47.396416, 8.528236], [47.398551, 8.539209], [47.390182, 8.516756], [47.375062, 8.539518], [47.379709, 8.527536], [47.360321, 8.567253], [47.355888, 8.592561], [47.363324, 8.533742], [47.367416, 8.537666], [47.371308, 8.536038], [47.398768, 8.524866], [47.37084, 8.548289], [47.37211, 8.535948], [47.387807, 8.488443], [47.355173, 8.554635], [47.404521, 8.572084], [47.383437, 8.539506], [47.333625, 8.514277], [47.368578, 8.538431], [47.364854, 8.536567], [47.386399, 8.496826], [47.382678, 8.507228], [47.383735, 8.573735], [47.408788, 8.550444], [47.41391, 8.519755], [47.39831, 8.532447], [47.387765, 8.544099], [47.369869, 8.509169], [47.3853, 8.507784], [47.388509, 8.515716], [47.378843, 8.525003], [47.41065, 8.531588], [47.371223, 8.523192], [47.357067, 8.597961], [47.363391, 8.534352], [47.392048, 8.523947], [47.367074, 8.544305], [47.374506, 8.549743], [47.370243, 8.511534], [47.364623, 8.538085], [47.40281, 8.535057], [47.381412, 8.503124], [47.365153, 8.553189], [47.406164, 8.54827], [47.404163, 8.500942], [47.390369, 8.50917], [47.378894, 8.523348], [47.374456, 8.539863], [47.382916, 8.544091], [47.403478, 8.556322], [47.374397, 8.541385], [47.35659, 8.523901], [47.386397, 8.502005], [47.373545, 8.59444], [47.370106, 8.518575], [47.364888, 8.565681], [47.369115, 8.525387], [47.368105, 8.541797], [47.376527, 8.541548], [47.373364, 8.53171], [47.396842, 8.529715], [47.414345, 8.551621], [47.366806, 8.555289], [47.365221, 8.547073], [47.362702, 8.558287], [47.405738, 8.480993], [47.402031, 8.577437], [47.362587, 8.527068], [47.377601, 8.52115], [47.386335, 8.531764], [47.36524, 8.564629], [47.386216, 8.51763], [47.406719, 8.550494], [47.371641, 8.514051], [47.393984, 8.472709], [47.420105, 8.548467], [47.339756, 8.530042], [47.4268, 8.542497], [47.337925, 8.537164], [47.377909, 8.541855], [47.390303, 8.523037], [47.380494, 8.527341], [47.386508, 8.497716], [47.389927, 8.539017], [47.374859, 8.525835], [47.374273, 8.524009], [47.378046, 8.526522], [47.377552, 8.522579], [47.379806, 8.524863], [47.364714, 8.532327], [47.419776, 8.550873], [47.341847, 8.530548], [47.380443, 8.557084], [47.34037, 8.519296], [47.351135, 8.560096], [47.396563, 8.528782], [47.397402, 8.531409], [47.412539, 8.550404], [47.363894, 8.567037], [47.383677, 8.540676], [47.370508, 8.549222], [47.368513, 8.524368], [47.34094, 8.52656], [47.410227, 8.549587], [47.363707, 8.532293], [47.366341, 8.552207], [47.355775, 8.55932], [47.369507, 8.513306], [47.384225, 8.516027], [47.38677, 8.518025], [47.365373, 8.52159], [47.386825, 8.502331], [47.369982, 8.552455], [47.393585, 8.533688], [47.393856, 8.544861], [47.367827, 8.539885], [47.393496, 8.492953], [47.375081, 8.523284], [47.413432, 8.545466], [47.407533, 8.548113], [47.40163, 8.505382], [47.367896, 8.544838], [47.406816, 8.550642], [47.387697, 8.471726], [47.377164, 8.513077], [47.378652, 8.527144], [47.378669, 8.519569], [47.366973, 8.558536], [47.411544, 8.570485], [47.362761, 8.567966], [47.37244, 8.534287], [47.396623, 8.529101], [47.37138, 8.536039], [47.3298, 8.53267], [47.365997, 8.546798], [47.402644, 8.499785], [47.364774, 8.566341], [47.396309, 8.504958], [47.37722, 8.538715], [47.356614, 8.534676], [47.374554, 8.545639], [47.407468, 8.54839], [47.415502, 8.563108], [47.374485, 8.541598], [47.3745, 8.532462], [47.412289, 8.558654], [47.361278, 8.548368], [47.356637, 8.532254], [47.398659, 8.539198], [47.384314, 8.548398], [47.360342, 8.552161], [47.356156, 8.520265], [47.370188, 8.548805], [47.376744, 8.543287], [47.376288, 8.544867], [47.390142, 8.47886], [47.364612, 8.55425], [47.388526, 8.484537], [47.42189, 8.509844], [47.385225, 8.536828], [47.408938, 8.539516], [47.407103, 8.545136], [47.393457, 8.53762], [47.365705, 8.535975], [47.414633, 8.520273], [47.398054, 8.474245], [47.366031, 8.536737], [47.40512, 8.571607], [47.398026, 8.535859], [47.431372, 8.516543], [47.386, 8.496222], [47.420414, 8.503148], [47.377404, 8.500713], [47.348753, 8.56542], [47.408747, 8.54627], [47.353404, 8.550534], [47.3817, 8.530107], [47.378492, 8.540172], [47.417018, 8.523012], [47.414636, 8.546604], [47.371227, 8.539823], [47.3808, 8.528274], [47.354877, 8.574762], [47.35349, 8.554679], [47.364527, 8.533065], [47.419282, 8.548013], [47.401966, 8.499215], [47.405097, 8.549811], [47.36736, 8.541689], [47.415091, 8.546998], [47.381807, 8.513859], [47.408856, 8.574906], [47.378872, 8.542749], [47.366763, 8.545795], [47.422459, 8.55065], [47.375355, 8.516086], [47.374137, 8.522245], [47.356767, 8.522276], [47.387307, 8.547678], [47.41788, 8.555366], [47.397191, 8.530927], [47.381442, 8.534578], [47.376833, 8.540588], [47.344042, 8.531453], [47.35659, 8.554108], [47.367908, 8.532247], [47.368839, 8.531763], [47.369801, 8.508797], [47.389418, 8.521523], [47.404606, 8.550397], [47.369534, 8.52006], [47.395722, 8.532116], [47.392746, 8.523445], [47.387705, 8.490746], [47.38048, 8.490908], [47.386723, 8.547653], [47.36732, 8.545859], [47.418625, 8.530081], [47.407254, 8.550028], [47.420031, 8.547684], [47.362647, 8.547258], [47.384857, 8.508954], [47.372476, 8.543768], [47.378725, 8.542189], [47.357767, 8.580052], [47.366815, 8.555302], [47.407181, 8.585987], [47.362418, 8.567204], [47.40363, 8.496281], [47.384009, 8.532313], [47.376946, 8.540034], [47.398494, 8.542427], [47.373902, 8.476305], [47.360564, 8.563577], [47.410679, 8.544601], [47.396426, 8.472253], [47.36466, 8.556793], [47.404676, 8.551472], [47.360515, 8.596726], [47.400126, 8.545786], [47.393114, 8.521624], [47.378617, 8.492023], [47.392624, 8.490856], [47.385702, 8.530189], [47.370887, 8.547165], [47.365156, 8.521718], [47.355808, 8.522839], [47.36655, 8.545472], [47.34443, 8.526618], [47.386561, 8.517306], [47.340722, 8.537235], [47.393752, 8.512934], [47.339946, 8.529967], [47.400159, 8.494185], [47.372212, 8.502927], [47.370295, 8.54886], [47.384332, 8.548424], [47.42872, 8.544909], [47.370315, 8.518275], [47.362073, 8.557334], [47.385453, 8.517389], [47.368376, 8.498468], [47.399968, 8.545319], [47.379138, 8.48324], [47.391862, 8.538912], [47.387978, 8.4854], [47.367688, 8.560789], [47.332523, 8.517682], [47.372329, 8.523241], [47.392436, 8.516127], [47.377601, 8.527944], [47.360358, 8.566247], [47.377822, 8.508097], [47.34145, 8.529799], [47.373658, 8.503101], [47.402911, 8.54701], [47.407357, 8.536409], [47.425708, 8.509417], [47.375471, 8.547565], [47.372672, 8.521196], [47.372885, 8.531012], [47.360675, 8.521826], [47.37756, 8.541728], [47.427509, 8.546461], [47.424542, 8.537877], [47.390212, 8.491074], [47.411824, 8.525423], [47.377014, 8.543319], [47.40151, 8.581917], [47.361797, 8.547744], [47.368635, 8.509409], [47.41609, 8.50876], [47.393783, 8.537388], [47.341064, 8.526853], [47.388945, 8.527805], [47.387158, 8.535079], [47.393583, 8.540457], [47.376621, 8.526944], [47.404564, 8.548197], [47.375148, 8.525695], [47.406574, 8.567292], [47.387531, 8.493074], [47.424632, 8.543485], [47.369587, 8.553308], [47.391259, 8.516023], [47.378344, 8.527283], [47.373906, 8.483853], [47.373979, 8.535219], [47.414324, 8.483493], [47.373584, 8.519837], [47.407592, 8.530624], [47.369358, 8.528305], [47.397304, 8.53134], [47.362522, 8.547136], [47.367898, 8.539926], [47.357075, 8.522031], [47.402024, 8.497746], [47.430898, 8.540129], [47.356903, 8.522186], [47.382013, 8.531212], [47.364286, 8.555448], [47.375545, 8.52083], [47.381942, 8.529224], [47.32908, 8.514529], [47.398615, 8.494817], [47.370326, 8.49182], [47.414774, 8.561224], [47.401817, 8.499769], [47.376071, 8.55347], [47.381305, 8.537568], [47.389543, 8.539658], [47.377382, 8.541526], [47.38193, 8.583523], [47.375338, 8.545496], [47.366951, 8.543985], [47.346192, 8.534356], [47.408639, 8.546307], [47.38695, 8.481738], [47.351309, 8.576314], [47.349298, 8.562149], [47.374864, 8.520499], [47.413511, 8.536298], [47.392007, 8.526423], [47.38855, 8.483849], [47.388003, 8.485653], [47.378412, 8.52012], [47.361467, 8.561372], [47.378464, 8.526995], [47.383432, 8.549452], [47.37518, 8.540342], [47.409513, 8.549916], [47.376726, 8.544214], [47.364595, 8.566205], [47.379144, 8.508137], [47.36854, 8.524422], [47.3868, 8.528264], [47.37358, 8.546863], [47.39256, 8.52405], [47.370563, 8.524503], [47.376367, 8.561911], [47.378147, 8.517612], [47.380513, 8.54804], [47.413748, 8.528325], [47.390903, 8.50787], [47.396929, 8.530021], [47.370298, 8.513349], [47.387315, 8.533665], [47.403709, 8.496415], [47.373124, 8.495662], [47.412504, 8.544744], [47.335516, 8.51896], [47.375825, 8.51971], [47.362016, 8.549231], [47.36623, 8.540382], [47.377322, 8.527885], [47.377555, 8.492175], [47.377211, 8.538689], [47.359606, 8.551034], [47.378451, 8.575106], [47.374652, 8.537232], [47.391738, 8.517728], [47.370173, 8.513254], [47.380046, 8.567419], [47.396937, 8.512919], [47.409578, 8.537409], [47.377592, 8.49885], [47.378758, 8.510937], [47.384585, 8.533172], [47.365375, 8.546971], [47.391968, 8.51813], [47.405221, 8.480559], [47.368112, 8.54667], [47.406707, 8.553555], [47.375634, 8.517032], [47.386208, 8.528], [47.409433, 8.540427], [47.406557, 8.550438], [47.420574, 8.502382], [47.408737, 8.549224], [47.378571, 8.519435], [47.354332, 8.557873], [47.394541, 8.540927], [47.378107, 8.509388], [47.371093, 8.523613], [47.379134, 8.511143], [47.375749, 8.535427], [47.408283, 8.526027], [47.388603, 8.489969], [47.377786, 8.518704], [47.368927, 8.53195], [47.40358, 8.485972], [47.408982, 8.539543], [47.393416, 8.499734], [47.408547, 8.546544], [47.356576, 8.523503], [47.36029, 8.523605], [47.390319, 8.525197], [47.389118, 8.527543], [47.374806, 8.525741], [47.357205, 8.550944], [47.410347, 8.550119], [47.391401, 8.536279], [47.393343, 8.539207], [47.399514, 8.542991], [47.380304, 8.548221], [47.382592, 8.51459], [47.382512, 8.514496], [47.396084, 8.518466], [47.353198, 8.558869], [47.414384, 8.518055], [47.379191, 8.522401], [47.36536, 8.557853], [47.387615, 8.490784], [47.380753, 8.561289], [47.393283, 8.492644], [47.369585, 8.531884], [47.374924, 8.544613], [47.368382, 8.541022], [47.367445, 8.495973], [47.408928, 8.539595], [47.356144, 8.59033], [47.369398, 8.525909], [47.39137, 8.53106], [47.365964, 8.532326], [47.377553, 8.511906], [47.360484, 8.56343], [47.378409, 8.492231], [47.37151, 8.557214], [47.366365, 8.541285], [47.421307, 8.547843], [47.401248, 8.536601], [47.386064, 8.481297], [47.360204, 8.550583], [47.360423, 8.552137], [47.365723, 8.535989], [47.370197, 8.548805], [47.360359, 8.550388], [47.37722, 8.519606], [47.412329, 8.516622], [47.362019, 8.548979], [47.388671, 8.483374], [47.373616, 8.53643], [47.344067, 8.531666], [47.368449, 8.550967], [47.396762, 8.5297], [47.386811, 8.486199], [47.367196, 8.537105], [47.386714, 8.547613], [47.401188, 8.507414], [47.387116, 8.486324], [47.379209, 8.546993], [47.414389, 8.554457], [47.375412, 8.528256], [47.371402, 8.501957], [47.37052, 8.519497], [47.365532, 8.53621], [47.393852, 8.472442], [47.390842, 8.523088], [47.370604, 8.522067], [47.377056, 8.47973], [47.410349, 8.539611], [47.419825, 8.507483], [47.363607, 8.533377], [47.400847, 8.491695], [47.369644, 8.537036], [47.352932, 8.524581], [47.389534, 8.53685], [47.395579, 8.532087], [47.366702, 8.533229], [47.357052, 8.532183], [47.393113, 8.524578], [47.370689, 8.524479], [47.392475, 8.523506], [47.380435, 8.512507], [47.407719, 8.530454], [47.375809, 8.545175], [47.38089, 8.512874], [47.412045, 8.54659], [47.391467, 8.519723], [47.365011, 8.531367], [47.370717, 8.516734], [47.352283, 8.57791], [47.409639, 8.546169], [47.414106, 8.51895], [47.365054, 8.531553], [47.414768, 8.560919], [47.379912, 8.544108], [47.369652, 8.525663], [47.376114, 8.488346], [47.378238, 8.541332], [47.378164, 8.509972], [47.413465, 8.530665], [47.375967, 8.500525], [47.377567, 8.543781], [47.377621, 8.543769], [47.378095, 8.483194], [47.395191, 8.534039], [47.380801, 8.51564], [47.400991, 8.544664], [47.377513, 8.52769], [47.370888, 8.554527], [47.379561, 8.500955], [47.400815, 8.542382], [47.3868, 8.541456], [47.370077, 8.512047], [47.374405, 8.541438], [47.391246, 8.523149], [47.380663, 8.512141], [47.409453, 8.54586], [47.340218, 8.531627], [47.397443, 8.541292], [47.405917, 8.553419], [47.399871, 8.54892], [47.342498, 8.53117], [47.343637, 8.524828], [47.406778, 8.550919], [47.374316, 8.521441], [47.34139, 8.530393], [47.423138, 8.494521], [47.40716, 8.586292], [47.387673, 8.486361], [47.379764, 8.494549], [47.391462, 8.523154], [47.42176, 8.550318], [47.36655, 8.540786], [47.367158, 8.540176], [47.374068, 8.515212], [47.393405, 8.499893], [47.374718, 8.536015], [47.409524, 8.49702], [47.378511, 8.480977], [47.377899, 8.529711], [47.376956, 8.539955], [47.391986, 8.523919], [47.364283, 8.536979], [47.377872, 8.529671], [47.391648, 8.542457], [47.376715, 8.533183], [47.359901, 8.522896], [47.389033, 8.517449], [47.423756, 8.514255], [47.39942, 8.49527], [47.363439, 8.561149], [47.37582, 8.54209], [47.412115, 8.565488], [47.370708, 8.516667], [47.380064, 8.522392], [47.372235, 8.521677], [47.373918, 8.527339], [47.375643, 8.549329], [47.366173, 8.540685], [47.39033, 8.490957], [47.358321, 8.586789], [47.370912, 8.548291], [47.378751, 8.525213], [47.408761, 8.477951], [47.371558, 8.547602], [47.377929, 8.508179], [47.367108, 8.539751], [47.364623, 8.537198], [47.378156, 8.509892], [47.389191, 8.494471], [47.370179, 8.548818], [47.37859, 8.510655], [47.379178, 8.525725], [47.38386, 8.573857], [47.369981, 8.527046], [47.392662, 8.502487], [47.377389, 8.548293], [47.370925, 8.523252], [47.370305, 8.514554], [47.384074, 8.480476], [47.380421, 8.541668], [47.387207, 8.494087], [47.355112, 8.559094], [47.393593, 8.528999], [47.352706, 8.524655], [47.402186, 8.495802], [47.365656, 8.563539], [47.368371, 8.52132], [47.415887, 8.507378], [47.368341, 8.538744], [47.390995, 8.523091], [47.349286, 8.524903], [47.380981, 8.518504], [47.393719, 8.535665], [47.381297, 8.542229], [47.377122, 8.540501], [47.365705, 8.536002], [47.370026, 8.519394], [47.372757, 8.547283], [47.385196, 8.537026], [47.368905, 8.533367], [47.410861, 8.545293], [47.383126, 8.543751], [47.381221, 8.51786], [47.427447, 8.546367], [47.375312, 8.540649], [47.361802, 8.507114], [47.37031, 8.545405], [47.429965, 8.538864], [47.384538, 8.542866], [47.399061, 8.542346], [47.394216, 8.489908], [47.370621, 8.55709], [47.38555, 8.545218], [47.381086, 8.491582], [47.382646, 8.514644], [47.40553, 8.537432], [47.377536, 8.519454], [47.387527, 8.514915], [47.396889, 8.540963], [47.369213, 8.527401], [47.417334, 8.545653], [47.371492, 8.555307], [47.38882, 8.479894], [47.419873, 8.501388], [47.393354, 8.524808], [47.421295, 8.546292], [47.39008, 8.515125], [47.373761, 8.536353], [47.403138, 8.576467], [47.382682, 8.531862], [47.375842, 8.530278], [47.427246, 8.543831], [47.380479, 8.519355], [47.386788, 8.535191], [47.370731, 8.537204], [47.371168, 8.539451], [47.389607, 8.52146], [47.422375, 8.549032], [47.390285, 8.50954], [47.367108, 8.539778], [47.409347, 8.575314], [47.379491, 8.52679], [47.37436, 8.496216], [47.406625, 8.495293], [47.376292, 8.540762], [47.370581, 8.52449], [47.379065, 8.542369], [47.420673, 8.502437], [47.364406, 8.555106], [47.363648, 8.553501], [47.366409, 8.521413], [47.407486, 8.560448], [47.375934, 8.553626], [47.350031, 8.527857], [47.383877, 8.542362], [47.370091, 8.544844], [47.375708, 8.549079], [47.415953, 8.508969], [47.378894, 8.530976], [47.388564, 8.549837], [47.375836, 8.538528], [47.363749, 8.535419], [47.410815, 8.553866], [47.373274, 8.535535], [47.385626, 8.529697], [47.379444, 8.537543], [47.376888, 8.536735], [47.358776, 8.533437], [47.368625, 8.554175], [47.388888, 8.491207], [47.364611, 8.532789], [47.35498, 8.534325], [47.350039, 8.560814], [47.390986, 8.522124], [47.370322, 8.548887], [47.384257, 8.477169], [47.357811, 8.520312], [47.399535, 8.505274], [47.369418, 8.525711], [47.384984, 8.531022], [47.36747, 8.494239], [47.414336, 8.551647], [47.395701, 8.540077], [47.366893, 8.54348], [47.397254, 8.546018], [47.338687, 8.530841], [47.42126, 8.536762], [47.394754, 8.545038], [47.36369, 8.531274], [47.370794, 8.535259], [47.38232, 8.549932], [47.378514, 8.553852], [47.414768, 8.560919], [47.378641, 8.553736], [47.375807, 8.549068], [47.389087, 8.51745], [47.37358, 8.575558], [47.35533, 8.559721], [47.360481, 8.552694], [47.364349, 8.536676], [47.370736, 8.470285], [47.374686, 8.54968], [47.372763, 8.511439], [47.380635, 8.519027], [47.392763, 8.523525], [47.395825, 8.545895], [47.362398, 8.527103], [47.4041, 8.491057], [47.378564, 8.542054], [47.371235, 8.536235], [47.39595, 8.489107], [47.373786, 8.536592], [47.377906, 8.48319], [47.377309, 8.529302], [47.378938, 8.510914], [47.407204, 8.50666], [47.39401, 8.525789], [47.374642, 8.552407], [47.371227, 8.539823], [47.364633, 8.554899], [47.410882, 8.505753], [47.394769, 8.525447], [47.392312, 8.476637], [47.372783, 8.569635], [47.403827, 8.567631], [47.375082, 8.492033], [47.36766, 8.495117], [47.413888, 8.543899], [47.358571, 8.517957], [47.364604, 8.566205], [47.385352, 8.531016], [47.410162, 8.566427], [47.37734, 8.498924], [47.368285, 8.535208], [47.340816, 8.530157], [47.378795, 8.510832], [47.376319, 8.538803], [47.373308, 8.524347], [47.367969, 8.540007], [47.39202, 8.510647], [47.374484, 8.541651], [47.360039, 8.508072], [47.37968, 8.527734], [47.373133, 8.542749], [47.413908, 8.532383], [47.394639, 8.472894], [47.377259, 8.535525], [47.386456, 8.49647], [47.393713, 8.507476], [47.386701, 8.488342], [47.357669, 8.521024], [47.373459, 8.598569], [47.38525, 8.494578], [47.403606, 8.570926], [47.388388, 8.536283], [47.391103, 8.52308], [47.375695, 8.512411], [47.358278, 8.587437], [47.398255, 8.532486], [47.357454, 8.521906], [47.407515, 8.548152], [47.388296, 8.491036], [47.386073, 8.504912], [47.391783, 8.485475], [47.413267, 8.54586], [47.413111, 8.538635], [47.363731, 8.535498], [47.397978, 8.534189], [47.381141, 8.503211], [47.378965, 8.54242], [47.398262, 8.473163], [47.404953, 8.557294], [47.373232, 8.53519], [47.367006, 8.523027], [47.399515, 8.533386], [47.388959, 8.495314], [47.377528, 8.498967], [47.389736, 8.486958], [47.37058, 8.49254], [47.388118, 8.520026], [47.40791, 8.556588], [47.383431, 8.506594], [47.408356, 8.558916], [47.359, 8.516325], [47.391279, 8.515825], [47.376011, 8.552184], [47.340561, 8.530535], [47.370582, 8.516704], [47.367055, 8.544384], [47.419155, 8.506012], [47.37034, 8.548875], [47.374831, 8.497894], [47.370836, 8.546859], [47.373466, 8.552184], [47.4052, 8.480823], [47.365972, 8.533386], [47.373043, 8.533293], [47.362521, 8.554749], [47.361784, 8.507048], [47.367225, 8.545447], [47.40499, 8.557215], [47.376767, 8.538083], [47.366048, 8.504167], [47.378266, 8.496982], [47.370024, 8.549014], [47.425422, 8.494566], [47.381111, 8.518162], [47.368203, 8.529579], [47.412221, 8.555485], [47.374054, 8.513861], [47.382736, 8.529942], [47.373621, 8.553776], [47.357147, 8.522019], [47.419616, 8.547887], [47.390603, 8.539786], [47.375731, 8.535453], [47.381836, 8.533765], [47.389562, 8.473365], [47.377766, 8.543692], [47.362132, 8.526635], [47.373436, 8.535565], [47.38439, 8.53191], [47.382368, 8.488124], [47.370984, 8.531317], [47.366642, 8.532976], [47.388098, 8.539364], [47.399638, 8.520326], [47.38278, 8.510859], [47.326159, 8.513372], [47.372629, 8.534291], [47.366206, 8.520998], [47.372125, 8.536213], [47.379178, 8.51803], [47.42339, 8.508178], [47.379519, 8.529598], [47.372797, 8.511651], [47.369892, 8.513526], [47.378945, 8.516039], [47.374478, 8.539427], [47.389755, 8.512337], [47.38199, 8.52896], [47.410663, 8.572255], [47.366727, 8.545794], [47.377553, 8.518673], [47.371599, 8.54616], [47.398911, 8.533533], [47.37452, 8.518863], [47.391674, 8.51876], [47.40591, 8.590849], [47.391507, 8.487112], [47.364764, 8.545978], [47.370754, 8.547029], [47.38559, 8.506518], [47.366833, 8.543148], [47.406723, 8.566765], [47.368594, 8.499253], [47.356926, 8.535027], [47.409394, 8.544468], [47.352443, 8.5579], [47.329549, 8.529767], [47.359466, 8.511687], [47.416287, 8.545115], [47.371477, 8.524813], [47.393618, 8.509938], [47.33548, 8.518919], [47.362405, 8.577676], [47.408155, 8.556367], [47.399653, 8.515875], [47.374699, 8.529407], [47.365111, 8.564944], [47.425887, 8.555162], [47.382511, 8.529898], [47.353137, 8.511295], [47.36907, 8.528286], [47.353656, 8.524092], [47.36825, 8.501431], [47.390275, 8.522149], [47.414114, 8.550397], [47.406794, 8.578745], [47.378376, 8.510466], [47.396574, 8.545619], [47.419067, 8.506871], [47.370669, 8.535204], [47.358261, 8.520321], [47.351027, 8.582966], [47.370206, 8.548832], [47.396582, 8.528756], [47.389173, 8.494537], [47.387281, 8.522075], [47.362523, 8.533845], [47.376408, 8.527495], [47.37642, 8.528211], [47.368631, 8.547912], [47.388206, 8.520227], [47.383401, 8.515626], [47.38254, 8.540136], [47.376767, 8.538083], [47.380324, 8.556406], [47.360121, 8.516638], [47.382197, 8.498968], [47.428055, 8.489966], [47.36313, 8.535313], [47.384432, 8.531315], [47.378622, 8.496407], [47.361557, 8.52563], [47.364365, 8.548207], [47.393767, 8.529665], [47.366761, 8.53564], [47.398544, 8.500631], [47.369181, 8.52797], [47.412739, 8.541821], [47.370648, 8.535494], [47.378379, 8.541692], [47.377984, 8.541538], [47.373789, 8.517166], [47.374519, 8.52947], [47.371907, 8.522173], [47.393787, 8.521704], [47.395297, 8.532399], [47.374889, 8.518831], [47.388203, 8.526293], [47.383827, 8.539183], [47.374333, 8.552732], [47.368428, 8.505499], [47.366228, 8.533934], [47.392853, 8.50224], [47.413883, 8.551001], [47.377664, 8.538354], [47.358616, 8.58056], [47.339832, 8.518094], [47.379912, 8.551564], [47.36976, 8.533371], [47.389308, 8.472645], [47.414149, 8.519163], [47.377891, 8.51231], [47.375607, 8.537093], [47.363609, 8.535045], [47.41078, 8.54345], [47.369408, 8.526823], [47.375821, 8.535363], [47.381852, 8.540625], [47.376599, 8.560195], [47.370215, 8.548819], [47.385518, 8.548555], [47.378039, 8.548002], [47.40953, 8.537766], [47.358202, 8.571523], [47.406923, 8.586605], [47.373878, 8.502722], [47.380875, 8.537453], [47.377647, 8.529719], [47.368689, 8.541836], [47.337528, 8.534469], [47.414225, 8.479476], [47.3724, 8.534776], [47.353027, 8.487957], [47.383347, 8.515598], [47.371663, 8.517441], [47.330062, 8.502814], [47.398318, 8.532474], [47.377354, 8.499308], [47.388425, 8.488707], [47.384735, 8.542075], [47.380886, 8.535334], [47.360604, 8.552961], [47.424818, 8.540971], [47.396386, 8.512179], [47.412056, 8.513992], [47.363497, 8.532633], [47.360752, 8.566428], [47.376303, 8.559222], [47.397559, 8.531942], [47.374228, 8.536482], [47.362148, 8.557005], [47.402267, 8.487907], [47.324984, 8.511999], [47.389746, 8.511436], [47.371433, 8.524785], [47.414006, 8.546644], [47.360363, 8.553737], [47.423858, 8.513939], [47.399987, 8.508913], [47.392239, 8.494677], [47.370197, 8.548805], [47.365424, 8.545634], [47.420789, 8.50244], [47.3785, 8.519381], [47.349717, 8.561562], [47.351442, 8.53183], [47.413894, 8.545131], [47.32794, 8.529642], [47.409549, 8.537647], [47.377086, 8.529125], [47.382997, 8.529948], [47.390913, 8.489114], [47.365592, 8.561724], [47.382722, 8.540882], [47.361048, 8.525222], [47.410546, 8.550004], [47.409654, 8.525631], [47.394889, 8.51256], [47.375323, 8.484318], [47.37356, 8.526206], [47.397005, 8.530566], [47.367065, 8.544305], [47.391182, 8.486271], [47.366838, 8.544499], [47.384435, 8.531964], [47.427179, 8.491274], [47.357791, 8.572097], [47.375758, 8.539215], [47.374339, 8.537954], [47.370499, 8.515921], [47.375015, 8.539769], [47.402508, 8.543106], [47.370277, 8.54886], [47.420762, 8.502439], [47.405302, 8.566748], [47.383356, 8.515612], [47.380044, 8.528285], [47.361186, 8.547651], [47.365435, 8.564912], [47.393319, 8.492579], [47.41434, 8.551223], [47.357401, 8.521878], [47.361909, 8.548222], [47.371716, 8.519548], [47.393599, 8.511964], [47.351733, 8.560572], [47.356605, 8.535642], [47.380935, 8.537693], [47.355504, 8.529385], [47.386784, 8.534714], [47.344252, 8.534991], [47.425706, 8.493989], [47.374449, 8.541598], [47.361772, 8.516156], [47.398659, 8.539198], [47.368021, 8.556135], [47.370635, 8.516772], [47.38582, 8.530032], [47.38028, 8.494122], [47.370188, 8.548818], [47.364132, 8.55179], [47.399062, 8.522249], [47.371533, 8.515982], [47.373593, 8.54546], [47.384373, 8.531843], [47.397932, 8.531459], [47.3976, 8.532353], [47.369153, 8.525255], [47.365311, 8.56471], [47.36438, 8.546659], [47.370133, 8.512736], [47.34358, 8.53282], [47.370242, 8.558101], [47.368829, 8.547916], [47.370891, 8.559783], [47.377012, 8.499407], [47.381141, 8.534982], [47.371673, 8.530749], [47.3635, 8.535149], [47.389823, 8.511795], [47.429728, 8.51248], [47.3474, 8.563035], [47.369178, 8.525454], [47.365902, 8.532312], [47.385211, 8.508656], [47.394945, 8.486915], [47.359232, 8.499954], [47.36867, 8.543914], [47.405829, 8.590821], [47.36412, 8.547514], [47.374087, 8.540902], [47.361276, 8.517284], [47.339087, 8.527594], [47.364728, 8.554398], [47.359767, 8.579685], [47.397839, 8.481223], [47.377541, 8.49861], [47.371167, 8.518543], [47.378384, 8.547705], [47.375362, 8.524905], [47.360576, 8.550247], [47.364517, 8.521798], [47.383344, 8.548271], [47.394139, 8.493456], [47.342412, 8.530732], [47.369653, 8.52557], [47.373616, 8.536443], [47.399712, 8.495792], [47.386069, 8.539852], [47.398273, 8.532473], [47.401353, 8.501296], [47.372411, 8.566317], [47.398452, 8.538359], [47.368631, 8.530978], [47.376676, 8.556899], [47.36363, 8.550668], [47.368243, 8.538662], [47.377188, 8.526889], [47.376741, 8.514061], [47.367777, 8.545975], [47.367349, 8.519962], [47.385177, 8.508457], [47.388403, 8.48423], [47.401154, 8.499491], [47.373673, 8.536126], [47.380561, 8.51243], [47.381893, 8.516218], [47.382677, 8.529464], [47.371115, 8.55526], [47.377955, 8.529474], [47.383673, 8.574528], [47.360729, 8.56235], [47.413742, 8.546042], [47.372373, 8.534735], [47.414299, 8.561055], [47.385204, 8.508431], [47.408648, 8.546307], [47.395387, 8.519034], [47.372789, 8.535512], [47.389634, 8.521487], [47.379333, 8.537792], [47.389193, 8.488312], [47.372808, 8.525873], [47.3951, 8.536091], [47.370595, 8.469925], [47.36997, 8.525365], [47.407074, 8.56403], [47.354573, 8.555231], [47.358425, 8.55874], [47.37092, 8.523822], [47.378042, 8.527913], [47.371896, 8.513699], [47.377354, 8.499295], [47.406921, 8.586816], [47.358675, 8.526935], [47.374527, 8.539984], [47.385627, 8.529604], [47.371181, 8.512281], [47.370672, 8.51668], [47.410454, 8.538037], [47.366738, 8.534183], [47.378872, 8.542762], [47.405508, 8.591463], [47.355195, 8.530676], [47.39394, 8.493558], [47.37457, 8.517275], [47.372585, 8.529443], [47.342448, 8.530719], [47.373797, 8.545822], [47.415486, 8.562869], [47.39108, 8.522629], [47.403944, 8.569462], [47.380534, 8.517343], [47.382972, 8.499817], [47.357483, 8.521748], [47.392408, 8.489859], [47.374453, 8.539294], [47.369283, 8.532434], [47.372889, 8.503629], [47.37383, 8.531892], [47.349631, 8.561163], [47.377052, 8.544075], [47.375, 8.545052], [47.4019, 8.499519], [47.378616, 8.527104], [47.380485, 8.53771], [47.384625, 8.507784], [47.366025, 8.533506], [47.386399, 8.496826], [47.370457, 8.549817], [47.37581, 8.496987], [47.410787, 8.547386], [47.384476, 8.53811]], [[47.358969, 8.532011], [47.347168, 8.564724], [47.37057, 8.524715], [47.403805, 8.485884], [47.411219, 8.561388], [47.344353, 8.532876], [47.420514, 8.540498], [47.377333, 8.543856], [47.374913, 8.531596], [47.382436, 8.551921], [47.38065, 8.525066], [47.372677, 8.534914], [47.413574, 8.480868], [47.417878, 8.54145], [47.366378, 8.519956], [47.410587, 8.526882], [47.361557, 8.52559], [47.363446, 8.598656], [47.402565, 8.485727], [47.370197, 8.548805], [47.391252, 8.487425], [47.358064, 8.520145], [47.388783, 8.515324], [47.380884, 8.582839], [47.411081, 8.54771], [47.35151, 8.601242], [47.372496, 8.478661], [47.378573, 8.569056], [47.429085, 8.543485], [47.375322, 8.517727], [47.384263, 8.49734], [47.350951, 8.583388], [47.408826, 8.579822], [47.374272, 8.536522], [47.357446, 8.521787], [47.361657, 8.526479], [47.374957, 8.534497], [47.411192, 8.546466], [47.351144, 8.56007], [47.392807, 8.522678], [47.398264, 8.494823], [47.415573, 8.548307], [47.375997, 8.545271], [47.413382, 8.531816], [47.366694, 8.507278], [47.397181, 8.587613], [47.405034, 8.560038], [47.417184, 8.515845], [47.365327, 8.519829], [47.381241, 8.491347], [47.398026, 8.474377], [47.358073, 8.520198], [47.425678, 8.494094], [47.359561, 8.549219], [47.383152, 8.497781], [47.381692, 8.530914], [47.385939, 8.49891], [47.371002, 8.486669], [47.409717, 8.532231], [47.371067, 8.538734], [47.36808, 8.522585], [47.373626, 8.536377], [47.375094, 8.545597], [47.391178, 8.538911], [47.353565, 8.576468], [47.376839, 8.541846], [47.360729, 8.562363], [47.375103, 8.545597], [47.334177, 8.515929], [47.366501, 8.540255], [47.380667, 8.525199], [47.391513, 8.516704], [47.412851, 8.537543], [47.377677, 8.531282], [47.352109, 8.572757], [47.365673, 8.539298], [47.373354, 8.503916], [47.379615, 8.537454], [47.345443, 8.534632], [47.365786, 8.532217], [47.414445, 8.5543], [47.348417, 8.52257], [47.403894, 8.567248], [47.410935, 8.505887], [47.419596, 8.548059], [47.364562, 8.536932], [47.371807, 8.473232], [47.367782, 8.560446], [47.371191, 8.547409], [47.360768, 8.524422], [47.422734, 8.550974], [47.392974, 8.531702], [47.360559, 8.522737], [47.369886, 8.547488], [47.377644, 8.507922], [47.402057, 8.499018], [47.3583, 8.571565], [47.372868, 8.500014], [47.417036, 8.523038], [47.414315, 8.541562], [47.387692, 8.538481], [47.328318, 8.518152], [47.365647, 8.565353], [47.358416, 8.556887], [47.401609, 8.581893], [47.37011, 8.479846], [47.374312, 8.488668], [47.390771, 8.488912], [47.407039, 8.55645], [47.381267, 8.491453], [47.376834, 8.541435], [47.384476, 8.548401], [47.386673, 8.541559], [47.40513, 8.571448], [47.378636, 8.523038], [47.382971, 8.499831], [47.35266, 8.524813], [47.400205, 8.49408], [47.388683, 8.520223], [47.377349, 8.498911], [47.366824, 8.555315], [47.359156, 8.526481], [47.37981, 8.520679], [47.403847, 8.486255], [47.374129, 8.519292], [47.404715, 8.576156], [47.385118, 8.531077], [47.367727, 8.494642], [47.377233, 8.540106], [47.385536, 8.538251], [47.378708, 8.528827], [47.383559, 8.549256], [47.418349, 8.546761], [47.424623, 8.51202], [47.427224, 8.491262], [47.398669, 8.539185], [47.402779, 8.501775], [47.398687, 8.512398], [47.387455, 8.539787], [47.361608, 8.565413], [47.395164, 8.484588], [47.353601, 8.554377], [47.384984, 8.508864], [47.384551, 8.50316], [47.368464, 8.537171], [47.399939, 8.544603], [47.40424, 8.564924], [47.370173, 8.479847], [47.373968, 8.498817], [47.407844, 8.54478], [47.379094, 8.508706], [47.407884, 8.538673], [47.376912, 8.541768], [47.390508, 8.525174], [47.378468, 8.510242], [47.35623, 8.556033], [47.412959, 8.540394], [47.376749, 8.538057], [47.384517, 8.507781], [47.377201, 8.512932], [47.399888, 8.548974], [47.406328, 8.591335], [47.357994, 8.519984], [47.376837, 8.528802], [47.380596, 8.525091], [47.380614, 8.525105], [47.369848, 8.509526], [47.375632, 8.526857], [47.383389, 8.552895], [47.408644, 8.550455], [47.378965, 8.54242], [47.376695, 8.538982], [47.419699, 8.504618], [47.38671, 8.528196], [47.396703, 8.541502], [47.375499, 8.484718], [47.367667, 8.523451], [47.369411, 8.520746], [47.398596, 8.532586], [47.373392, 8.480996], [47.385769, 8.520164], [47.377014, 8.544286], [47.419577, 8.508127], [47.366035, 8.562462], [47.363154, 8.533659], [47.364321, 8.533921], [47.411009, 8.529766], [47.374726, 8.5228], [47.382352, 8.53155], [47.360166, 8.516639], [47.362194, 8.547527], [47.388742, 8.539721], [47.35399, 8.55596], [47.369153, 8.528036], [47.391099, 8.489396], [47.377229, 8.538636], [47.375311, 8.560406], [47.397869, 8.474904], [47.367887, 8.564407], [47.379599, 8.524939], [47.365166, 8.521613], [47.397148, 8.532543], [47.374084, 8.519304], [47.372145, 8.521741], [47.354579, 8.602037], [47.380024, 8.54268], [47.382004, 8.529345], [47.400558, 8.500711], [47.403914, 8.574403], [47.367496, 8.5378], [47.365687, 8.545375], [47.363166, 8.535261], [47.362076, 8.559783], [47.408644, 8.575392], [47.37034, 8.548888], [47.370152, 8.548804], [47.379094, 8.518333], [47.37777, 8.537627], [47.371226, 8.531428], [47.373527, 8.503668], [47.376998, 8.513497], [47.368419, 8.534376], [47.373942, 8.531497], [47.376269, 8.486164], [47.393963, 8.48108], [47.357549, 8.555426], [47.348799, 8.525899], [47.365768, 8.547283], [47.376459, 8.543957], [47.370188, 8.548805], [47.378043, 8.540136], [47.419695, 8.548022], [47.396456, 8.508471], [47.420659, 8.547949], [47.376025, 8.535711], [47.405262, 8.555154], [47.383394, 8.484105], [47.371133, 8.516398], [47.366231, 8.532663], [47.386223, 8.498346], [47.4188, 8.507502], [47.375875, 8.541084], [47.402696, 8.567422], [47.376791, 8.536548], [47.372372, 8.535848], [47.388489, 8.470669], [47.425128, 8.537757], [47.409531, 8.537633], [47.369695, 8.530735], [47.371961, 8.536488], [47.367514, 8.537773], [47.361502, 8.549405], [47.383099, 8.515249], [47.377206, 8.540145], [47.418936, 8.506365], [47.376271, 8.543913], [47.408932, 8.545757], [47.381909, 8.536561], [47.383585, 8.506491], [47.392703, 8.524106], [47.387567, 8.519339], [47.368149, 8.496715], [47.377263, 8.538862], [47.397917, 8.474561], [47.367854, 8.539833], [47.387582, 8.522518], [47.381306, 8.491176], [47.410148, 8.574324], [47.416765, 8.505792], [47.381221, 8.491558], [47.405449, 8.572899], [47.36923, 8.540775], [47.381834, 8.544426], [47.353335, 8.576132], [47.372506, 8.478503], [47.41085, 8.526583], [47.367101, 8.544319], [47.394783, 8.525804], [47.368277, 8.513996], [47.409017, 8.545374], [47.390105, 8.525947], [47.430725, 8.540285], [47.366598, 8.553603], [47.36467, 8.554754], [47.368189, 8.56019], [47.391743, 8.484892], [47.373379, 8.524481], [47.361672, 8.548522], [47.389083, 8.483581], [47.403384, 8.556824], [47.393837, 8.50667], [47.382913, 8.513921], [47.384454, 8.531885], [47.41457, 8.559007], [47.407037, 8.550143], [47.360678, 8.524421], [47.369865, 8.548732], [47.37621, 8.540866], [47.376228, 8.540853], [47.385208, 8.536774], [47.376428, 8.528237], [47.397896, 8.554033], [47.391099, 8.487502], [47.426986, 8.546623], [47.388578, 8.525625], [47.414095, 8.550436], [47.37542, 8.545405], [47.358324, 8.51545], [47.390217, 8.525446], [47.386834, 8.502398], [47.383096, 8.515514], [47.378522, 8.5752], [47.372304, 8.479955], [47.385048, 8.481237], [47.390619, 8.478882], [47.360766, 8.550118], [47.376685, 8.526773], [47.348649, 8.533216], [47.374619, 8.5322], [47.385446, 8.526846], [47.391237, 8.523136], [47.3932, 8.492842], [47.386795, 8.518158], [47.40606, 8.547022], [47.366652, 8.553604], [47.359825, 8.535695], [47.369152, 8.548069], [47.37466, 8.523063], [47.392144, 8.493231], [47.392148, 8.476886], [47.369216, 8.528037], [47.393618, 8.512826], [47.361738, 8.517902], [47.341963, 8.53063], [47.335087, 8.541419], [47.370423, 8.529757], [47.376945, 8.541067], [47.374898, 8.518791], [47.377191, 8.538874], [47.388825, 8.538531], [47.410687, 8.558766], [47.370179, 8.548805], [47.397247, 8.510474], [47.368039, 8.556122], [47.37017, 8.548818], [47.370668, 8.554098], [47.394766, 8.513273], [47.393653, 8.538816], [47.358927, 8.516363], [47.371616, 8.525332], [47.377025, 8.544048], [47.365355, 8.521603], [47.389785, 8.492443], [47.386687, 8.547626], [47.425599, 8.547681], [47.389945, 8.47679], [47.399399, 8.516069], [47.407821, 8.545297], [47.425814, 8.547791], [47.36655, 8.545446], [47.369576, 8.506833], [47.373022, 8.536497], [47.359856, 8.522855], [47.385678, 8.494057], [47.402055, 8.49927], [47.366618, 8.540178], [47.383192, 8.499319], [47.370553, 8.492539], [47.367056, 8.523425], [47.376154, 8.48595], [47.350936, 8.560158], [47.414776, 8.560932], [47.376575, 8.527009], [47.390894, 8.522294], [47.406687, 8.546333], [47.37745, 8.498688], [47.372774, 8.534227], [47.384286, 8.548529], [47.389396, 8.520953], [47.365548, 8.559803], [47.364202, 8.555803], [47.409581, 8.543783], [47.427659, 8.546729], [47.365895, 8.509963], [47.387962, 8.485215], [47.372678, 8.499202], [47.35617, 8.522648], [47.38364, 8.499539], [47.385683, 8.474641], [47.370397, 8.524897], [47.386806, 8.547483], [47.369153, 8.525255], [47.393824, 8.493437], [47.400815, 8.548914], [47.412805, 8.48137], [47.377359, 8.512405], [47.356576, 8.52349], [47.417313, 8.506836], [47.382454, 8.54824], [47.394939, 8.516892], [47.367854, 8.536973], [47.371509, 8.546132], [47.378401, 8.579236], [47.378344, 8.578639], [47.383715, 8.545193], [47.369848, 8.548586], [47.381362, 8.51724], [47.383055, 8.572422], [47.388126, 8.485019], [47.398656, 8.58942], [47.413867, 8.527161], [47.357917, 8.520512], [47.409557, 8.53778], [47.382403, 8.551629], [47.36182, 8.560241], [47.386233, 8.496359], [47.364843, 8.56666], [47.410168, 8.524489], [47.3654, 8.548123], [47.416692, 8.51072], [47.382149, 8.548088], [47.402227, 8.535774], [47.374918, 8.537608], [47.379386, 8.508208], [47.370648, 8.519248], [47.38811, 8.519933], [47.413102, 8.5508], [47.361766, 8.56024], [47.376354, 8.527508], [47.388673, 8.487202], [47.361691, 8.560556], [47.376529, 8.527154], [47.391574, 8.542681], [47.386132, 8.497536], [47.400752, 8.531928], [47.380531, 8.537605], [47.381692, 8.513698], [47.371834, 8.473259], [47.361536, 8.565346], [47.365611, 8.53923], [47.376785, 8.539024], [47.415845, 8.481403], [47.367011, 8.547111], [47.395794, 8.524461], [47.422439, 8.550769], [47.391519, 8.487801], [47.386751, 8.547601], [47.379324, 8.537832], [47.397413, 8.532151], [47.384782, 8.509336], [47.37981, 8.524519], [47.409628, 8.550104], [47.419134, 8.506422], [47.421265, 8.549433], [47.403274, 8.575383], [47.378554, 8.541232], [47.405763, 8.548871], [47.364877, 8.548258], [47.408024, 8.546692], [47.380739, 8.534682], [47.388285, 8.476387], [47.349897, 8.527735], [47.361518, 8.511504], [47.373371, 8.534822], [47.41891, 8.507266], [47.394713, 8.525604], [47.392427, 8.537201], [47.383814, 8.52721], [47.350179, 8.530348], [47.370544, 8.535016], [47.405986, 8.504184], [47.360294, 8.579153], [47.370798, 8.519569], [47.364029, 8.547578], [47.379192, 8.542239], [47.38973, 8.486706], [47.388071, 8.528846], [47.378018, 8.543698], [47.41442, 8.54664], [47.369642, 8.540055], [47.34101, 8.526852], [47.344933, 8.533351], [47.376608, 8.543417], [47.372713, 8.533961], [47.366063, 8.532342], [47.360493, 8.535391], [47.368645, 8.512216], [47.354396, 8.561462], [47.370795, 8.517914], [47.407, 8.481746], [47.371186, 8.547873], [47.396356, 8.51345], [47.391038, 8.522311], [47.375357, 8.528361], [47.414419, 8.55414], [47.375505, 8.547751], [47.40896, 8.578937], [47.361852, 8.547626], [47.336222, 8.533728], [47.384215, 8.516146], [47.409603, 8.537661], [47.369081, 8.547948], [47.398251, 8.536712], [47.374407, 8.541279], [47.384943, 8.523829], [47.377872, 8.497835], [47.378533, 8.523487], [47.381598, 8.530462], [47.352659, 8.558738], [47.370734, 8.5139], [47.379826, 8.494616], [47.386705, 8.547626], [47.365133, 8.53088], [47.414112, 8.519295], [47.373972, 8.492435], [47.36821, 8.536411], [47.364981, 8.54683], [47.373122, 8.534513], [47.409795, 8.541071], [47.380053, 8.526352], [47.351544, 8.525797], [47.393354, 8.524808], [47.411153, 8.5709], [47.387006, 8.53403], [47.397518, 8.532458], [47.412202, 8.51479], [47.392521, 8.529149], [47.329023, 8.51392], [47.399426, 8.505378], [47.370797, 8.519688], [47.402559, 8.546247], [47.333416, 8.528881], [47.402596, 8.546102], [47.404761, 8.574223], [47.370061, 8.511834], [47.373864, 8.538805], [47.383629, 8.574448], [47.379411, 8.489814], [47.36613, 8.545159], [47.378446, 8.51934], [47.383054, 8.528638], [47.408871, 8.548366], [47.384747, 8.527494], [47.38785, 8.520802], [47.390024, 8.525906], [47.37884, 8.530962], [47.39297, 8.529185], [47.364859, 8.554837], [47.358211, 8.571444], [47.386088, 8.537839], [47.404179, 8.579417], [47.387274, 8.537068], [47.362761, 8.548505], [47.369398, 8.525909], [47.360541, 8.525609], [47.359574, 8.535598], [47.377245, 8.54833], [47.370215, 8.548819], [47.399815, 8.467457], [47.377845, 8.529723], [47.43092, 8.550005], [47.388027, 8.486951], [47.397783, 8.533019], [47.407191, 8.53785], [47.418188, 8.547579], [47.405257, 8.480559], [47.378297, 8.530421], [47.36489, 8.554375], [47.377354, 8.499295], [47.372311, 8.523175], [47.388941, 8.520559], [47.41756, 8.55402], [47.36655, 8.545472], [47.366717, 8.54774], [47.340826, 8.529151], [47.38033, 8.527536], [47.387152, 8.54602], [47.416372, 8.525702], [47.37302, 8.528181], [47.391523, 8.546137], [47.412628, 8.483049], [47.3613, 8.53284], [47.380977, 8.535191], [47.3648, 8.545992], [47.340059, 8.530353], [47.378426, 8.509924], [47.36695, 8.544051], [47.372469, 8.543543], [47.411058, 8.545457], [47.418456, 8.546843], [47.362305, 8.561231], [47.420208, 8.540531], [47.361739, 8.526375], [47.369726, 8.525519], [47.369491, 8.553875], [47.392764, 8.524399], [47.409722, 8.575614], [47.366873, 8.545492], [47.370561, 8.549263], [47.376902, 8.546588], [47.375493, 8.548029], [47.359538, 8.535584], [47.387432, 8.482198], [47.411725, 8.512912], [47.371322, 8.547796], [47.396189, 8.52741], [47.383043, 8.52983], [47.359218, 8.596909], [47.376074, 8.559614], [47.405259, 8.533849], [47.398239, 8.537069], [47.384345, 8.531922], [47.430591, 8.538294], [47.401981, 8.504436], [47.36606, 8.538392], [47.371337, 8.538713], [47.376739, 8.535315], [47.374735, 8.544623], [47.408932, 8.545717], [47.366398, 8.54065], [47.37603, 8.54457], [47.337211, 8.53003], [47.399256, 8.542668], [47.385276, 8.495665], [47.382795, 8.514011], [47.38308, 8.530678], [47.382782, 8.530831], [47.409946, 8.575619], [47.36011, 8.595909], [47.377342, 8.543843], [47.37026, 8.5136], [47.407498, 8.546151], [47.430946, 8.550125], [47.374154, 8.47533], [47.380264, 8.493884], [47.393599, 8.52933], [47.370358, 8.513654], [47.431031, 8.515489], [47.397077, 8.530554], [47.377349, 8.498924], [47.358133, 8.521496], [47.360533, 8.563113], [47.343143, 8.530456], [47.366436, 8.545099], [47.403071, 8.585952], [47.428042, 8.511943], [47.405608, 8.565827], [47.390504, 8.54544], [47.418445, 8.547081], [47.378203, 8.510634], [47.386692, 8.488382], [47.374722, 8.543153], [47.409028, 8.578408], [47.356791, 8.532178], [47.368582, 8.524688], [47.400798, 8.548873], [47.373598, 8.544957], [47.424738, 8.548392], [47.41087, 8.550064], [47.410843, 8.550077], [47.377256, 8.538716], [47.376385, 8.488205], [47.357587, 8.550542], [47.414501, 8.546628], [47.420506, 8.502991], [47.375502, 8.563853], [47.353499, 8.602066], [47.387843, 8.486471], [47.370859, 8.516869], [47.365693, 8.548487], [47.378056, 8.513849], [47.398692, 8.539516], [47.365089, 8.55328], [47.395399, 8.546244], [47.396733, 8.53937], [47.335034, 8.529959], [47.3781, 8.497456], [47.365096, 8.546952], [47.364384, 8.546248], [47.382212, 8.488452], [47.418205, 8.512487], [47.374297, 8.552731], [47.394062, 8.518358], [47.33633, 8.529959], [47.390324, 8.490639], [47.397095, 8.482877], [47.392831, 8.543872], [47.374192, 8.52504], [47.37465, 8.545932], [47.385938, 8.508803], [47.370364, 8.508266], [47.381598, 8.530449], [47.344042, 8.529574], [47.369606, 8.528654], [47.378587, 8.542531], [47.412288, 8.51523], [47.372114, 8.535485], [47.393233, 8.531906], [47.399692, 8.543207], [47.357947, 8.596233], [47.381555, 8.548141], [47.409224, 8.550043], [47.413208, 8.571434], [47.400798, 8.54886], [47.360852, 8.566311], [47.375736, 8.487424], [47.385409, 8.536434], [47.388974, 8.538031], [47.406608, 8.480321], [47.369978, 8.512005], [47.373879, 8.546644], [47.382909, 8.500756], [47.384151, 8.541984], [47.356666, 8.523479], [47.404171, 8.563717], [47.360769, 8.561014], [47.340069, 8.530274], [47.426977, 8.546569], [47.335591, 8.530036], [47.360296, 8.521964], [47.408543, 8.545073], [47.414003, 8.544153], [47.383235, 8.539872], [47.380397, 8.526147], [47.408087, 8.576255], [47.411387, 8.526859], [47.354106, 8.526947], [47.380847, 8.502967], [47.3637, 8.563908], [47.377459, 8.543792], [47.406658, 8.531426], [47.388245, 8.538095], [47.398967, 8.533335], [47.382582, 8.537607], [47.364918, 8.554322], [47.377619, 8.509603], [47.377491, 8.509852], [47.37329, 8.524333], [47.382361, 8.560647], [47.334975, 8.516196], [47.414918, 8.54066], [47.373145, 8.53303], [47.358009, 8.553383], [47.379816, 8.526757], [47.395454, 8.517565], [47.399032, 8.513981], [47.370206, 8.548806], [47.416021, 8.521971], [47.336337, 8.530105], [47.359817, 8.535563], [47.411875, 8.524775], [47.403419, 8.487797], [47.372527, 8.521233], [47.377805, 8.507951], [47.369348, 8.533098], [47.41158, 8.528334], [47.381192, 8.538162], [47.364684, 8.537344], [47.347983, 8.533294], [47.383827, 8.526773], [47.356058, 8.556056], [47.370646, 8.52996], [47.388494, 8.491066], [47.412898, 8.537385], [47.365704, 8.553889], [47.369005, 8.538003], [47.378574, 8.540054], [47.390287, 8.492691], [47.391092, 8.522325], [47.358022, 8.55762], [47.36277, 8.519022], [47.357612, 8.590189], [47.364621, 8.55053], [47.38213, 8.544498], [47.373223, 8.535243], [47.375599, 8.544575], [47.364257, 8.531219], [47.391054, 8.522549], [47.374701, 8.532069], [47.421091, 8.501969], [47.373646, 8.514158], [47.398852, 8.540699], [47.382587, 8.511319], [47.376074, 8.559628], [47.367903, 8.546043], [47.376048, 8.541816], [47.38022, 8.527719], [47.367355, 8.537492], [47.392452, 8.524048], [47.369288, 8.557181], [47.393526, 8.524626], [47.359244, 8.553092], [47.358953, 8.55715], [47.3646, 8.53296], [47.391353, 8.477281], [47.411091, 8.545775], [47.368417, 8.547722], [47.339085, 8.519151], [47.376521, 8.558088], [47.343833, 8.528882], [47.370998, 8.536561], [47.383298, 8.530418], [47.377815, 8.5271], [47.410535, 8.550229], [47.382945, 8.484017], [47.362184, 8.532567], [47.371716, 8.519548], [47.39837, 8.537509], [47.376599, 8.540623], [47.367767, 8.496191], [47.414995, 8.551369], [47.366488, 8.533092], [47.373117, 8.525482], [47.368757, 8.534714], [47.366975, 8.543376], [47.380817, 8.569501], [47.403615, 8.534491], [47.380617, 8.519026], [47.410397, 8.571838], [47.370048, 8.534264], [47.359339, 8.592927], [47.372387, 8.534259], [47.369058, 8.550357], [47.386788, 8.547495], [47.361312, 8.535408], [47.378751, 8.527994], [47.382441, 8.529711], [47.377036, 8.540049], [47.382332, 8.488071], [47.35761, 8.509056], [47.375222, 8.525485], [47.385245, 8.536696], [47.376929, 8.546536], [47.419186, 8.546725], [47.369457, 8.506076], [47.378521, 8.521871], [47.38728, 8.498897], [47.398299, 8.591797], [47.377014, 8.544273], [47.362141, 8.559599], [47.372674, 8.537125], [47.388573, 8.54797], [47.384458, 8.548387], [47.37821, 8.509906], [47.358027, 8.523149], [47.378092, 8.51001], [47.383879, 8.504802], [47.378783, 8.543568], [47.358295, 8.572055], [47.369164, 8.52789], [47.422332, 8.550754], [47.40339, 8.534526], [47.374949, 8.534431], [47.366538, 8.541977], [47.376581, 8.540635], [47.372513, 8.543623], [47.364198, 8.54782], [47.387112, 8.489728], [47.392432, 8.527134], [47.402289, 8.49432], [47.360439, 8.523952], [47.42704, 8.546584], [47.382323, 8.488057], [47.374966, 8.534458], [47.382817, 8.496093], [47.378473, 8.526995], [47.357661, 8.554051], [47.380928, 8.515563], [47.391133, 8.538923], [47.407399, 8.548984], [47.384476, 8.496669], [47.3891, 8.541795], [47.391055, 8.544233], [47.378359, 8.532382], [47.372761, 8.499945], [47.373067, 8.538351], [47.366875, 8.543414], [47.364883, 8.531576], [47.38688, 8.528372], [47.377482, 8.535741], [47.384243, 8.51604], [47.364551, 8.555056], [47.372663, 8.529816], [47.359818, 8.50857], [47.367924, 8.560608], [47.37765, 8.541743], [47.379581, 8.527785], [47.391215, 8.522659], [47.423349, 8.549754], [47.370987, 8.473415], [47.367594, 8.519808], [47.364648, 8.531677], [47.363674, 8.531975], [47.411402, 8.544218], [47.386752, 8.518926], [47.377521, 8.504675], [47.394337, 8.519649], [47.377317, 8.510206], [47.364417, 8.546461], [47.399125, 8.547845], [47.37318, 8.543465], [47.369052, 8.528325], [47.370727, 8.524308], [47.370542, 8.469897], [47.373055, 8.520594], [47.366538, 8.54105], [47.376034, 8.535685], [47.366558, 8.545565], [47.402667, 8.55188], [47.375946, 8.565372], [47.370894, 8.548356], [47.376355, 8.527415], [47.37384, 8.536527], [47.421274, 8.549406], [47.385175, 8.530761], [47.37331, 8.513568], [47.385294, 8.494712], [47.414111, 8.519374], [47.362805, 8.519129], [47.408008, 8.484615], [47.399512, 8.540368], [47.408474, 8.546675], [47.383969, 8.540311], [47.386923, 8.490678], [47.419107, 8.506395], [47.361183, 8.506916], [47.395703, 8.545429], [47.387637, 8.47542], [47.39245, 8.524313], [47.378145, 8.520698], [47.363011, 8.557963], [47.376955, 8.540034], [47.372945, 8.531304], [47.362798, 8.516044], [47.370197, 8.548805], [47.385897, 8.498578], [47.409202, 8.564366], [47.393872, 8.472164], [47.394146, 8.488714], [47.360639, 8.548421], [47.353925, 8.55347], [47.365267, 8.538469], [47.348748, 8.562243], [47.370977, 8.514845], [47.423455, 8.54529], [47.379242, 8.537896], [47.340569, 8.519181], [47.388469, 8.520007], [47.38874, 8.53898], [47.405189, 8.593669], [47.42184, 8.545707], [47.399416, 8.50551], [47.398789, 8.494409], [47.41856, 8.506172], [47.337762, 8.528824], [47.378751, 8.54223], [47.335638, 8.540292], [47.380035, 8.526351], [47.357296, 8.550867], [47.374681, 8.541761], [47.379225, 8.495439], [47.365521, 8.568104], [47.384379, 8.529274], [47.392204, 8.511128], [47.366479, 8.533078], [47.365397, 8.508378], [47.381532, 8.492028], [47.377741, 8.548155], [47.401464, 8.508758], [47.406826, 8.550589], [47.383443, 8.529387], [47.378095, 8.483194], [47.368459, 8.5292], [47.341125, 8.530798], [47.367651, 8.555359], [47.382242, 8.540276], [47.406466, 8.583799], [47.372629, 8.534317], [47.355668, 8.555532], [47.373353, 8.531935], [47.427087, 8.546373], [47.406844, 8.550576], [47.358386, 8.526121], [47.399566, 8.517476], [47.362366, 8.504478], [47.367971, 8.532262], [47.370619, 8.530039], [47.378525, 8.541457], [47.40992, 8.541259], [47.41032, 8.549191], [47.388491, 8.538617], [47.408448, 8.580767], [47.40579, 8.591125], [47.378623, 8.496367], [47.382306, 8.488031], [47.369644, 8.525623], [47.368082, 8.496158], [47.357963, 8.520434], [47.390609, 8.478988], [47.414576, 8.483472], [47.38295, 8.49338], [47.385205, 8.53986], [47.36685, 8.543254], [47.413172, 8.546402], [47.388533, 8.483742], [47.338911, 8.530012], [47.414501, 8.555043], [47.375618, 8.543476], [47.396798, 8.505604], [47.3771, 8.55218], [47.370188, 8.548805], [47.373436, 8.503799], [47.366185, 8.540381], [47.351932, 8.53417], [47.378521, 8.575213], [47.370169, 8.53947], [47.358028, 8.520237], [47.394143, 8.525076], [47.392988, 8.541505], [47.37462, 8.520586], [47.397005, 8.530579], [47.377824, 8.507872], [47.371008, 8.518236], [47.404814, 8.483757], [47.365176, 8.547112], [47.364328, 8.547306], [47.41989, 8.504343], [47.369915, 8.549157], [47.388789, 8.542358], [47.38334, 8.484091], [47.374374, 8.529599], [47.397747, 8.532979], [47.377826, 8.517341], [47.391875, 8.545085], [47.417194, 8.543371], [47.36027, 8.534235], [47.382567, 8.588159], [47.378455, 8.526981], [47.382193, 8.492518], [47.372059, 8.518389], [47.414775, 8.561105], [47.38326, 8.541091], [47.38571, 8.535937], [47.375482, 8.544585], [47.38829, 8.518043], [47.374312, 8.521825], [47.39788, 8.474613], [47.374726, 8.525673], [47.376503, 8.526981], [47.375981, 8.542225], [47.391719, 8.511052], [47.374481, 8.540115], [47.392416, 8.502774], [47.354704, 8.558411], [47.376443, 8.544698], [47.373841, 8.536487], [47.362675, 8.555533], [47.374573, 8.538952], [47.403463, 8.55603], [47.405416, 8.480828], [47.386675, 8.528129], [47.386952, 8.534996], [47.375247, 8.51799], [47.422167, 8.513004], [47.384427, 8.531831], [47.380402, 8.525604], [47.374078, 8.540809], [47.373475, 8.519981], [47.393445, 8.52942], [47.393269, 8.523244], [47.413453, 8.53195], [47.403492, 8.571559], [47.374996, 8.544588], [47.413288, 8.531311], [47.406948, 8.585903], [47.379159, 8.538133], [47.421787, 8.550358], [47.397717, 8.533336], [47.413866, 8.5415], [47.408711, 8.546256], [47.382182, 8.544724], [47.382164, 8.544658], [47.372198, 8.522788], [47.420662, 8.50257], [47.37926, 8.525567], [47.374919, 8.538469], [47.35122, 8.576246], [47.375225, 8.484263], [47.418232, 8.508644], [47.358991, 8.549499], [47.403471, 8.486036], [47.394964, 8.546513], [47.386075, 8.51821], [47.370281, 8.524855], [47.364618, 8.502113], [47.37505, 8.544603], [47.342061, 8.530817], [47.393797, 8.487462], [47.372287, 8.535237], [47.393233, 8.474297], [47.410629, 8.544242], [47.37293, 8.53288], [47.385959, 8.487851], [47.392556, 8.515877], [47.340275, 8.535121], [47.377495, 8.543806], [47.364637, 8.550795], [47.39197, 8.517905], [47.371513, 8.542835], [47.352416, 8.524861], [47.369342, 8.547927], [47.363155, 8.563566], [47.365532, 8.526678], [47.408217, 8.547147], [47.384038, 8.531095], [47.353836, 8.511508], [47.402105, 8.496807], [47.366997, 8.545707], [47.370243, 8.557042], [47.376947, 8.497632], [47.351932, 8.558617], [47.393408, 8.500608], [47.372461, 8.525415], [47.39665, 8.529181], [47.402144, 8.508175], [47.371666, 8.547565], [47.365144, 8.553175], [47.399073, 8.522077], [47.377769, 8.537733], [47.370161, 8.548805], [47.372704, 8.534901], [47.413858, 8.544176], [47.420935, 8.502217], [47.354543, 8.512886], [47.394791, 8.490926], [47.400226, 8.546556], [47.379204, 8.51137], [47.360634, 8.535725], [47.392379, 8.49117], [47.417708, 8.54802], [47.384962, 8.517075], [47.38922, 8.546142], [47.379135, 8.559374], [47.36343, 8.52633], [47.390898, 8.511353], [47.373813, 8.49512], [47.391698, 8.528722], [47.371792, 8.543847], [47.397426, 8.531767], [47.385778, 8.520217], [47.371493, 8.517372], [47.377585, 8.511364], [47.406753, 8.569243], [47.336156, 8.526489], [47.378003, 8.548001], [47.371623, 8.515944], [47.390775, 8.52257], [47.373241, 8.519049], [47.392389, 8.502787], [47.414514, 8.544283], [47.429931, 8.539605], [47.33252, 8.528558], [47.413033, 8.543974], [47.369458, 8.526294], [47.384773, 8.509323], [47.352335, 8.524873], [47.392793, 8.524174], [47.38484, 8.502053], [47.351039, 8.581841], [47.380788, 8.572454], [47.390942, 8.468862], [47.366907, 8.520139], [47.368906, 8.48966], [47.411452, 8.525668], [47.356042, 8.520011], [47.4001, 8.51905], [47.423479, 8.494554], [47.410011, 8.54297], [47.428011, 8.545703], [47.391375, 8.516158], [47.358601, 8.553634], [47.377789, 8.52416], [47.377013, 8.507088], [47.375829, 8.535469], [47.383256, 8.49924], [47.395018, 8.516099], [47.381416, 8.517188], [47.386591, 8.479625], [47.364401, 8.531196], [47.378601, 8.528732], [47.359005, 8.510963], [47.406934, 8.550552], [47.35786, 8.525621], [47.382356, 8.537748], [47.378472, 8.540383], [47.366979, 8.520127], [47.391156, 8.505769], [47.378836, 8.542774], [47.413119, 8.517685], [47.40847, 8.581192], [47.429636, 8.541376], [47.379773, 8.525565], [47.377674, 8.509458], [47.377036, 8.540049], [47.36327, 8.567395], [47.398474, 8.533126], [47.407473, 8.544097], [47.376645, 8.543365], [47.398475, 8.591324], [47.391122, 8.522961], [47.373535, 8.525014], [47.377505, 8.495603], [47.358222, 8.554645], [47.3299, 8.529748], [47.346403, 8.532944], [47.333865, 8.528043], [47.412612, 8.550379], [47.412285, 8.542196], [47.352156, 8.558741], [47.392421, 8.492482], [47.352369, 8.559023], [47.376866, 8.526724], [47.370188, 8.548805], [47.374347, 8.532393], [47.358733, 8.585143], [47.413335, 8.531099], [47.399303, 8.542404], [47.408888, 8.548512], [47.335145, 8.51919], [47.369794, 8.508625], [47.371818, 8.517285], [47.427041, 8.49159], [47.382169, 8.563702], [47.382403, 8.479239], [47.374457, 8.541664], [47.339177, 8.52565], [47.401501, 8.543999], [47.390805, 8.522213], [47.39886, 8.540831], [47.377113, 8.498191], [47.416044, 8.54613], [47.376751, 8.529317], [47.375479, 8.517254], [47.428819, 8.48896], [47.364618, 8.555547], [47.393003, 8.534339], [47.359578, 8.593329], [47.390287, 8.490651], [47.368478, 8.550729], [47.370585, 8.54308], [47.37909, 8.538767], [47.346602, 8.565599], [47.398034, 8.535926], [47.358544, 8.5869], [47.364013, 8.533266], [47.418224, 8.508471], [47.406321, 8.584776], [47.40317, 8.537833], [47.380365, 8.505487], [47.374523, 8.546075], [47.372154, 8.521702], [47.369698, 8.525571], [47.369016, 8.528324], [47.388138, 8.52653], [47.376744, 8.543287], [47.410082, 8.545012], [47.373387, 8.547217], [47.419125, 8.506409], [47.370491, 8.532088], [47.405109, 8.585399], [47.379326, 8.51757], [47.376174, 8.540852], [47.403253, 8.574866], [47.390387, 8.490547], [47.375116, 8.518518], [47.40748, 8.546151], [47.369039, 8.540983], [47.396217, 8.545373], [47.381973, 8.530682], [47.381071, 8.492231], [47.384151, 8.516197], [47.410877, 8.563222], [47.41331, 8.544138], [47.369648, 8.466252], [47.389651, 8.511964], [47.37573, 8.526992], [47.378052, 8.526774], [47.388424, 8.483873], [47.387696, 8.499567], [47.393532, 8.473058], [47.394856, 8.525753], [47.412287, 8.476907], [47.413841, 8.544176], [47.338471, 8.529963], [47.37017, 8.548792], [47.381218, 8.537301], [47.346388, 8.564403], [47.373559, 8.503152], [47.335144, 8.519243], [47.369219, 8.508494], [47.375196, 8.518691], [47.37446, 8.48826], [47.386828, 8.534728], [47.406943, 8.550591], [47.393441, 8.539315], [47.369079, 8.528246], [47.415163, 8.508821], [47.380003, 8.527913], [47.360079, 8.561634], [47.402844, 8.553964], [47.398167, 8.53614], [47.390962, 8.51313], [47.391153, 8.48945], [47.414578, 8.558212], [47.39303, 8.531478], [47.378647, 8.575282], [47.404015, 8.578738], [47.408998, 8.574154], [47.361519, 8.561599], [47.353342, 8.530704], [47.371196, 8.524132], [47.388463, 8.540643], [47.377615, 8.512026], [47.391134, 8.526485], [47.357966, 8.519176], [47.37458, 8.487878], [47.364449, 8.555358], [47.37853, 8.541868], [47.36653, 8.540918], [47.365488, 8.538976], [47.366806, 8.555302], [47.374656, 8.525447], [47.378104, 8.483194], [47.378863, 8.516117], [47.383164, 8.530335], [47.412068, 8.524276], [47.376655, 8.538452], [47.420947, 8.538452], [47.398659, 8.5326], [47.327994, 8.52963], [47.393125, 8.521413], [47.386923, 8.54269], [47.37104, 8.548161], [47.346209, 8.534449], [47.372702, 8.534186], [47.392932, 8.492664], [47.359043, 8.550704], [47.400719, 8.548673], [47.372622, 8.567685], [47.374497, 8.488089], [47.369124, 8.52352], [47.376963, 8.548642], [47.371289, 8.547504], [47.369728, 8.53002], [47.361892, 8.560243], [47.384523, 8.530217], [47.361493, 8.561426], [47.368997, 8.52839], [47.407314, 8.586242], [47.410167, 8.541675], [47.416696, 8.547509], [47.426049, 8.554198], [47.39624, 8.54385], [47.38962, 8.471922], [47.389453, 8.524464], [47.408265, 8.506721], [47.381434, 8.528737], [47.3709, 8.523119], [47.362707, 8.548464], [47.377467, 8.541978], [47.375923, 8.559492], [47.37666, 8.559547], [47.358149, 8.55385], [47.373832, 8.53646], [47.37443, 8.539796], [47.418512, 8.515223], [47.332789, 8.51815], [47.378581, 8.54212], [47.406702, 8.569865], [47.369653, 8.525649], [47.375141, 8.552907], [47.378859, 8.530883], [47.383514, 8.527561], [47.379285, 8.491798], [47.361508, 8.54787], [47.370179, 8.548805], [47.364398, 8.548446], [47.375435, 8.51622], [47.39186, 8.538143], [47.365251, 8.520251], [47.344898, 8.528533], [47.369464, 8.518919], [47.383362, 8.513082], [47.399142, 8.538625], [47.374015, 8.544648], [47.363419, 8.535134], [47.38012, 8.527889], [47.420506, 8.502977], [47.403814, 8.485857], [47.382883, 8.515271], [47.389638, 8.541978], [47.371451, 8.510327], [47.370397, 8.52487], [47.394553, 8.533033], [47.344522, 8.533051], [47.407096, 8.580089], [47.383248, 8.549845], [47.402277, 8.587127], [47.386806, 8.548423], [47.359835, 8.587325], [47.378637, 8.540029], [47.378557, 8.575267], [47.371678, 8.515866], [47.42111, 8.501797], [47.426298, 8.547072], [47.405442, 8.504664], [47.414103, 8.519242], [47.352168, 8.558384], [47.385616, 8.520161], [47.409881, 8.563917], [47.393505, 8.539197], [47.372374, 8.494072], [47.33006, 8.534686], [47.423463, 8.551016], [47.388566, 8.478127], [47.410784, 8.544033], [47.385974, 8.534671], [47.419088, 8.506461], [47.3731, 8.527282], [47.381102, 8.537206], [47.390117, 8.491588], [47.351663, 8.530326], [47.354774, 8.534281], [47.358046, 8.553265], [47.365406, 8.545634], [47.36529, 8.545539], [47.363733, 8.575282], [47.358114, 8.525361], [47.422876, 8.551163], [47.368618, 8.547422], [47.379998, 8.524536], [47.376729, 8.521119], [47.37848, 8.541416], [47.380515, 8.512535], [47.393733, 8.529399], [47.359323, 8.569959], [47.41986, 8.506622], [47.35151, 8.525624], [47.375328, 8.523739], [47.382537, 8.546096], [47.394173, 8.525673], [47.421027, 8.502073], [47.374503, 8.566705], [47.35009, 8.561146], [47.367156, 8.530908], [47.404206, 8.573946], [47.352457, 8.507946], [47.376438, 8.528185], [47.373888, 8.544738], [47.396022, 8.526996], [47.385882, 8.517729], [47.369732, 8.533397], [47.360489, 8.578588], [47.402788, 8.577254], [47.396712, 8.534905], [47.376572, 8.532994], [47.390957, 8.521435], [47.413257, 8.545966], [47.419272, 8.506027], [47.391063, 8.479474], [47.390221, 8.509605], [47.362326, 8.504874], [47.402287, 8.487656], [47.406958, 8.547107], [47.366536, 8.540335], [47.430594, 8.485668], [47.366843, 8.520256], [47.377349, 8.498871], [47.427984, 8.545716], [47.391284, 8.538145], [47.386308, 8.531737], [47.393603, 8.538404], [47.366205, 8.55701], [47.36159, 8.549566], [47.392188, 8.492358], [47.385963, 8.475533], [47.403766, 8.556368], [47.419143, 8.506409], [47.376754, 8.543261], [47.377157, 8.498258], [47.39649, 8.486177], [47.35968, 8.594748], [47.370191, 8.51426], [47.403806, 8.485844], [47.376919, 8.540099], [47.369555, 8.543549], [47.394339, 8.54699], [47.378696, 8.510883], [47.389095, 8.533795], [47.381154, 8.491981], [47.332493, 8.528531], [47.372629, 8.534291], [47.377863, 8.529671], [47.366205, 8.516258], [47.383097, 8.484046], [47.385943, 8.548352], [47.340006, 8.530286], [47.357185, 8.554928], [47.392882, 8.514639], [47.357647, 8.572068], [47.397399, 8.531779], [47.376073, 8.533434], [47.399135, 8.591895], [47.412975, 8.537811], [47.403061, 8.535049], [47.371763, 8.517324], [47.371494, 8.547654], [47.35042, 8.577989], [47.37291, 8.536018], [47.351795, 8.50465], [47.364038, 8.547565], [47.367272, 8.53479], [47.410942, 8.546289], [47.364679, 8.553841], [47.414179, 8.518885], [47.419152, 8.506396], [47.378342, 8.530369], [47.388958, 8.520599], [47.380341, 8.526371], [47.367516, 8.539415], [47.430955, 8.550139], [47.373505, 8.512884], [47.36585, 8.539672], [47.335042, 8.541484], [47.37017, 8.548831], [47.425624, 8.494133], [47.378582, 8.542067], [47.403304, 8.585997], [47.370984, 8.548305], [47.363849, 8.559649], [47.406861, 8.481161], [47.381488, 8.503655], [47.369868, 8.547488], [47.389037, 8.486706], [47.354986, 8.558099], [47.396849, 8.529914], [47.370179, 8.548832], [47.36061, 8.563459], [47.366465, 8.544901], [47.340412, 8.519575], [47.395062, 8.525797], [47.377551, 8.538828], [47.359076, 8.596734], [47.337098, 8.532462], [47.401822, 8.50014], [47.353162, 8.512487], [47.376696, 8.544624], [47.371587, 8.53697], [47.324122, 8.51861], [47.389757, 8.471634], [47.409702, 8.549894], [47.359112, 8.550997], [47.391513, 8.523473], [47.391789, 8.542818], [47.372513, 8.543623], [47.390673, 8.517177], [47.360955, 8.525604], [47.369214, 8.499239], [47.379622, 8.548035], [47.369295, 8.523524], [47.416224, 8.562898], [47.361458, 8.561399], [47.352316, 8.576349], [47.399692, 8.543193], [47.387164, 8.528709], [47.348677, 8.53319], [47.35646, 8.535772], [47.406132, 8.547872], [47.388404, 8.487117], [47.367083, 8.523399], [47.366824, 8.555302], [47.370166, 8.515941], [47.366967, 8.544131], [47.386246, 8.480982], [47.376301, 8.52842], [47.36659, 8.544997], [47.369498, 8.520125], [47.404505, 8.544009], [47.406522, 8.546595], [47.362825, 8.516097], [47.405774, 8.480994], [47.391114, 8.522842], [47.362992, 8.522257], [47.403083, 8.589225], [47.366618, 8.561719], [47.381611, 8.564697], [47.367015, 8.553241], [47.377469, 8.529504], [47.379912, 8.544028], [47.377264, 8.529287], [47.408877, 8.581916], [47.362889, 8.56777], [47.36631, 8.540423], [47.390887, 8.522175], [47.368971, 8.511018], [47.389511, 8.540148], [47.354485, 8.52681], [47.352394, 8.524318], [47.376145, 8.527808], [47.359449, 8.535463], [47.373083, 8.527189], [47.378176, 8.517414], [47.388514, 8.492736], [47.388455, 8.480416], [47.398316, 8.473151], [47.385014, 8.508507], [47.376705, 8.544611], [47.361333, 8.525493], [47.367809, 8.535065], [47.387859, 8.52467], [47.388535, 8.520631], [47.379834, 8.526691], [47.372776, 8.534956], [47.36226, 8.5197], [47.419802, 8.548156], [47.361829, 8.534002], [47.412959, 8.540381], [47.406823, 8.584973], [47.358851, 8.516825], [47.402424, 8.499277], [47.411704, 8.545576], [47.390728, 8.489627], [47.369588, 8.541894], [47.3927, 8.524477], [47.377206, 8.540185], [47.372591, 8.535521], [47.363981, 8.520423], [47.359446, 8.522489], [47.391952, 8.523641], [47.420047, 8.508853], [47.371164, 8.518901], [47.38186, 8.546373], [47.383951, 8.530855], [47.372485, 8.500641], [47.377092, 8.539798], [47.398703, 8.53276], [47.381152, 8.542372], [47.380483, 8.548344], [47.406653, 8.532831], [47.382338, 8.537748], [47.361489, 8.556316], [47.355407, 8.514809], [47.384449, 8.480815], [47.397194, 8.491834], [47.378417, 8.509884], [47.387538, 8.547061], [47.427472, 8.511308], [47.405153, 8.572813], [47.383088, 8.484046], [47.361749, 8.5118], [47.392244, 8.491114], [47.367666, 8.535023], [47.391101, 8.486296], [47.379173, 8.53861], [47.378006, 8.545843], [47.37077, 8.524481], [47.412123, 8.5507], [47.40766, 8.58397], [47.423435, 8.494527], [47.370179, 8.548792], [47.399003, 8.541828], [47.3672, 8.544241], [47.387098, 8.486324], [47.388009, 8.490977], [47.426245, 8.493085], [47.423724, 8.516773], [47.386629, 8.541532], [47.358559, 8.586371], [47.386922, 8.547538], [47.405275, 8.480547], [47.378559, 8.519766], [47.400233, 8.546795], [47.379783, 8.507157], [47.368914, 8.502596], [47.354799, 8.526829], [47.399375, 8.542405], [47.420775, 8.482321], [47.364014, 8.531267], [47.414408, 8.513576], [47.397744, 8.533284], [47.364402, 8.53011], [47.38116, 8.504072], [47.362149, 8.526741], [47.383249, 8.484208], [47.409513, 8.544258], [47.422859, 8.550208], [47.385334, 8.531015], [47.397889, 8.534121], [47.430037, 8.544578], [47.415413, 8.513808], [47.389849, 8.529174], [47.415305, 8.509937], [47.381721, 8.51538], [47.376838, 8.528696], [47.377658, 8.52858], [47.369398, 8.525909], [47.377862, 8.526942], [47.405799, 8.591098], [47.368847, 8.481357], [47.368789, 8.540885], [47.42759, 8.546463], [47.392903, 8.543874], [47.409986, 8.532329], [47.36449, 8.536983], [47.370183, 8.513214], [47.419493, 8.506522], [47.392279, 8.508811], [47.403649, 8.546959], [47.385205, 8.495597], [47.37028, 8.513428], [47.380814, 8.549477], [47.403835, 8.546393], [47.396999, 8.523611], [47.356734, 8.507529], [47.40508, 8.593786], [47.37741, 8.5395], [47.379833, 8.527764], [47.353346, 8.555629], [47.387139, 8.50145], [47.360343, 8.523712], [47.377964, 8.529487], [47.387182, 8.519159], [47.332479, 8.517601], [47.4116, 8.509822], [47.366016, 8.533506], [47.372125, 8.536227], [47.389093, 8.479462], [47.399481, 8.505286], [47.377836, 8.541959], [47.387461, 8.519086], [47.377052, 8.544048], [47.360011, 8.59498], [47.375414, 8.564646], [47.342625, 8.531041], [47.376722, 8.54183], [47.365418, 8.521552], [47.42249, 8.503322], [47.389493, 8.512464], [47.422314, 8.55074], [47.370174, 8.513161], [47.375266, 8.496512], [47.378227, 8.507152], [47.38649, 8.481835], [47.358804, 8.517009], [47.364693, 8.568126], [47.421396, 8.549833], [47.411454, 8.52641], [47.390977, 8.523091], [47.37958, 8.524978], [47.369337, 8.525749], [47.351519, 8.530362], [47.383699, 8.547802], [47.374452, 8.549662], [47.360304, 8.567199], [47.370784, 8.508473], [47.414256, 8.521193], [47.397634, 8.532553], [47.391105, 8.522908], [47.355573, 8.523046], [47.36825, 8.529421], [47.343332, 8.519991], [47.404932, 8.552948], [47.361401, 8.565409], [47.376047, 8.559627], [47.364623, 8.537198], [47.37135, 8.536423], [47.414815, 8.532534], [47.366938, 8.544382], [47.367092, 8.523452], [47.387857, 8.518166], [47.403386, 8.548132], [47.354877, 8.523376], [47.403883, 8.569236], [47.418856, 8.507318], [47.378865, 8.545397], [47.349698, 8.573619], [47.379005, 8.525959], [47.347674, 8.532679], [47.351394, 8.525502], [47.380252, 8.525309], [47.36533, 8.546956], [47.379268, 8.538016], [47.381222, 8.548201], [47.377778, 8.522425], [47.413711, 8.5464], [47.368186, 8.521873], [47.360467, 8.550377], [47.414, 8.541555], [47.405642, 8.548312], [47.383103, 8.529129], [47.374457, 8.539771], [47.39012, 8.537644], [47.381051, 8.491476], [47.382108, 8.528791], [47.421869, 8.55024], [47.413978, 8.546697], [47.409358, 8.572293], [47.344081, 8.534988], [47.37423, 8.544731], [47.376813, 8.520803], [47.390865, 8.523512], [47.386337, 8.497726], [47.392736, 8.524504], [47.340588, 8.519115], [47.408456, 8.546648], [47.407879, 8.58371], [47.366991, 8.544502], [47.368784, 8.537614], [47.374586, 8.538528], [47.378491, 8.527008], [47.399445, 8.497496], [47.419234, 8.547402], [47.348809, 8.563396], [47.35672, 8.523466], [47.369705, 8.51237], [47.413261, 8.532264], [47.364002, 8.528698], [47.375697, 8.537042], [47.381166, 8.491703], [47.370902, 8.548396], [47.331959, 8.52983], [47.385581, 8.520081], [47.366358, 8.541033], [47.387659, 8.486944], [47.399898, 8.467193], [47.371673, 8.488099], [47.357986, 8.572379], [47.385448, 8.530448], [47.38922, 8.494299], [47.378895, 8.530923], [47.342516, 8.522595], [47.403137, 8.555321], [47.362975, 8.517332], [47.39224, 8.502333], [47.379912, 8.544028], [47.365651, 8.566796], [47.375595, 8.545899], [47.35788, 8.532121], [47.368349, 8.551058], [47.412942, 8.540341], [47.423294, 8.504014], [47.379288, 8.537844], [47.37392, 8.519486], [47.405979, 8.546981], [47.3795, 8.525877], [47.335342, 8.541107], [47.370853, 8.52427], [47.371464, 8.545217], [47.399188, 8.522291], [47.354378, 8.557795], [47.36894, 8.507575], [47.422368, 8.550675], [47.334868, 8.531358], [47.384254, 8.4973], [47.374255, 8.524975], [47.359061, 8.550678], [47.408631, 8.549951], [47.342009, 8.519131], [47.364615, 8.554925], [47.388111, 8.526543], [47.358246, 8.521935], [47.355235, 8.608326], [47.374736, 8.520681], [47.398195, 8.535055], [47.370498, 8.549288], [47.386788, 8.54184], [47.357232, 8.550918], [47.38974, 8.512045], [47.420813, 8.548774], [47.360262, 8.566841], [47.361782, 8.549279], [47.378446, 8.510666], [47.378071, 8.567006], [47.406916, 8.550564], [47.419704, 8.505029], [47.37707, 8.543996], [47.390614, 8.533932], [47.418777, 8.507064], [47.332967, 8.518313], [47.379751, 8.516373], [47.388656, 8.520275], [47.41489, 8.541653], [47.35437, 8.552963], [47.389218, 8.482564], [47.362167, 8.547553], [47.409693, 8.544209], [47.343624, 8.519494], [47.379981, 8.536865], [47.366414, 8.540836], [47.410586, 8.486017], [47.364529, 8.546106], [47.408126, 8.547317], [47.387158, 8.535066], [47.42935, 8.544869], [47.414, 8.519703], [47.366583, 8.542018], [47.335919, 8.524896], [47.353055, 8.552274], [47.391889, 8.511148], [47.377433, 8.538998], [47.353005, 8.559222], [47.373698, 8.528778], [47.39473, 8.531433], [47.38558, 8.508597], [47.373001, 8.52066], [47.361347, 8.568095], [47.374695, 8.549694], [47.362435, 8.50477], [47.376921, 8.540801], [47.366883, 8.543507], [47.370062, 8.519421], [47.379543, 8.511668], [47.394151, 8.525116], [47.411144, 8.570913], [47.349845, 8.561392], [47.341149, 8.536846], [47.373447, 8.52002], [47.381841, 8.548386], [47.399015, 8.533058], [47.360216, 8.526701], [47.367984, 8.540325], [47.375991, 8.52121], [47.413931, 8.541262], [47.388737, 8.544039], [47.410694, 8.532622], [47.397523, 8.505976], [47.377927, 8.541842], [47.387036, 8.519421], [47.365148, 8.560219], [47.364541, 8.562576], [47.360924, 8.571833], [47.368503, 8.564923], [47.406303, 8.481176], [47.393582, 8.529224], [47.384033, 8.499839], [47.378681, 8.575415], [47.378129, 8.529159], [47.376766, 8.528734], [47.408048, 8.54224], [47.413666, 8.537944], [47.373628, 8.561456], [47.388284, 8.497314], [47.404128, 8.572765], [47.426492, 8.492679], [47.387347, 8.536951], [47.413885, 8.546999], [47.365228, 8.526499], [47.356788, 8.5844], [47.374518, 8.539984], [47.377206, 8.526823], [47.367116, 8.539844], [47.351291, 8.5763], [47.365449, 8.54676], [47.377165, 8.547256], [47.344434, 8.529979], [47.41982, 8.548157], [47.419927, 8.548252], [47.369165, 8.532485], [47.393883, 8.505664], [47.375607, 8.520911], [47.381665, 8.490269], [47.383535, 8.573082], [47.361729, 8.526481], [47.388673, 8.491083], [47.408028, 8.536781], [47.383601, 8.512544], [47.362098, 8.549087], [47.40548, 8.480763], [47.429966, 8.538837], [47.401426, 8.501165], [47.377515, 8.538907], [47.387134, 8.494139], [47.373863, 8.537971], [47.403485, 8.476484], [47.415442, 8.544183], [47.380065, 8.527967], [47.361953, 8.560377], [47.392476, 8.523426], [47.393404, 8.499058], [47.369329, 8.554878], [47.390565, 8.527679], [47.364636, 8.554608], [47.397383, 8.493785], [47.378022, 8.528085], [47.363958, 8.528539], [47.377412, 8.539249], [47.377467, 8.541978], [47.368358, 8.546397], [47.350245, 8.56193], [47.390847, 8.536851], [47.390615, 8.539482], [47.372731, 8.534902], [47.368113, 8.495748], [47.422258, 8.503132], [47.39111, 8.522312], [47.399455, 8.497364], [47.373421, 8.55311], [47.428014, 8.536888], [47.368042, 8.494688], [47.364595, 8.566205], [47.378946, 8.559397], [47.360596, 8.596727], [47.37017, 8.548831], [47.338891, 8.535887], [47.34909, 8.526567], [47.366093, 8.536817], [47.359761, 8.552652], [47.377565, 8.521189], [47.370465, 8.534895], [47.373382, 8.531724], [47.371465, 8.547839], [47.381872, 8.516562], [47.343604, 8.530214], [47.388677, 8.516117], [47.362167, 8.547526], [47.335063, 8.519281], [47.374273, 8.524088], [47.369936, 8.551634], [47.366584, 8.545619], [47.381215, 8.517595], [47.410132, 8.542522], [47.366377, 8.563396], [47.360322, 8.579075], [47.398481, 8.591603], [47.357924, 8.521664], [47.363345, 8.546717], [47.377132, 8.540316], [47.393591, 8.529158], [47.399189, 8.591909], [47.375541, 8.525054], [47.379967, 8.487018], [47.345192, 8.534508], [47.40168, 8.487127], [47.359215, 8.570009], [47.362075, 8.567329], [47.401775, 8.531313], [47.393399, 8.524717], [47.36201, 8.557346], [47.370417, 8.509273], [47.353578, 8.576111], [47.40172, 8.552072], [47.380926, 8.537706], [47.415586, 8.559068], [47.391122, 8.522922], [47.382879, 8.530952], [47.368815, 8.506513], [47.391463, 8.514438], [47.415143, 8.51485], [47.335094, 8.526546], [47.385598, 8.528849], [47.370181, 8.524972], [47.367924, 8.560621], [47.385156, 8.485133], [47.349108, 8.564064], [47.379803, 8.506866], [47.413003, 8.536764], [47.409918, 8.563798], [47.370717, 8.51672], [47.35948, 8.552911], [47.410748, 8.568175], [47.375133, 8.528224], [47.375889, 8.525313], [47.375532, 8.555207], [47.373088, 8.495648], [47.392128, 8.524055], [47.380924, 8.51792], [47.394778, 8.525433], [47.41913, 8.510756], [47.373261, 8.536939], [47.387642, 8.490798], [47.389971, 8.522024], [47.359383, 8.522448], [47.389172, 8.49459], [47.376734, 8.561111], [47.417728, 8.559007], [47.377476, 8.491882], [47.366806, 8.555315], [47.374379, 8.517562], [47.406265, 8.553757], [47.355361, 8.532162], [47.409899, 8.543405], [47.364234, 8.536422], [47.399935, 8.543198], [47.370794, 8.535246], [47.369096, 8.529292], [47.392908, 8.522415], [47.364632, 8.537198], [47.360287, 8.512353], [47.390816, 8.523896], [47.358604, 8.52692], [47.406754, 8.550535], [47.3765, 8.549082], [47.393447, 8.512902], [47.36719, 8.544334], [47.402597, 8.49214], [47.386802, 8.534701], [47.370734, 8.47051], [47.373027, 8.533094], [47.380165, 8.552417], [47.381978, 8.541568], [47.416348, 8.532129], [47.416348, 8.532115], [47.40027, 8.503593], [47.370831, 8.548289], [47.369636, 8.518804], [47.371388, 8.537125], [47.411493, 8.486181], [47.4293, 8.489553], [47.366979, 8.545693], [47.378845, 8.542801], [47.341149, 8.536846], [47.370143, 8.548791], [47.35894, 8.549246], [47.373513, 8.513903], [47.37639, 8.527548], [47.39909, 8.547752], [47.376995, 8.527349], [47.382364, 8.541642], [47.364557, 8.566482], [47.364669, 8.566034], [47.372575, 8.563354], [47.413039, 8.5462], [47.4028, 8.55387], [47.403148, 8.517271], [47.380623, 8.519305], [47.37436, 8.541463], [47.4178, 8.543953], [47.361477, 8.526502], [47.369454, 8.541852], [47.352165, 8.558675], [47.365016, 8.53841], [47.354743, 8.574746], [47.358388, 8.577259], [47.373986, 8.544819], [47.390418, 8.491157], [47.377575, 8.528711], [47.391133, 8.478734], [47.356457, 8.532264], [47.42042, 8.508317], [47.389877, 8.535745], [47.377465, 8.503879], [47.365635, 8.539496], [47.423776, 8.514123], [47.383518, 8.573002], [47.371371, 8.492608], [47.403991, 8.503005], [47.377898, 8.497942], [47.384806, 8.531746], [47.373729, 8.534062], [47.40592, 8.548437], [47.392283, 8.506493], [47.356594, 8.53588], [47.405209, 8.558704], [47.399704, 8.494772], [47.365547, 8.539322], [47.39688, 8.493709], [47.416628, 8.507949], [47.383497, 8.511085], [47.369545, 8.55573], [47.357092, 8.52219], [47.391535, 8.487934], [47.413062, 8.558723], [47.366522, 8.540904], [47.368123, 8.533298], [47.379747, 8.507103], [47.379721, 8.520597], [47.369248, 8.525615], [47.358405, 8.598109], [47.373385, 8.54282], [47.380892, 8.549704], [47.404641, 8.556969], [47.388318, 8.485593], [47.378619, 8.528732], [47.369293, 8.525655], [47.399657, 8.468037], [47.353965, 8.575166], [47.407299, 8.548174], [47.40346, 8.556362], [47.381585, 8.513563], [47.376635, 8.533075], [47.377683, 8.538208], [47.399722, 8.520023], [47.366392, 8.541246], [47.368228, 8.536491], [47.367418, 8.492067], [47.386158, 8.535271], [47.36655, 8.540786], [47.372928, 8.520737], [47.415675, 8.545168], [47.426996, 8.54649], [47.354226, 8.5521], [47.348451, 8.534257], [47.369248, 8.525601], [47.416558, 8.555258], [47.367098, 8.53983], [47.373558, 8.519717], [47.382624, 8.543595], [47.418015, 8.508772], [47.362726, 8.548425], [47.370502, 8.53573], [47.403605, 8.572873], [47.420708, 8.502544], [47.413864, 8.527453], [47.36401, 8.55147], [47.381084, 8.538173], [47.34235, 8.536329], [47.389846, 8.539983], [47.402021, 8.49813], [47.391779, 8.540989], [47.384425, 8.50321], [47.386753, 8.50233], [47.374966, 8.534484], [47.373922, 8.538329], [47.369565, 8.540623], [47.35403, 8.601165], [47.378752, 8.52798], [47.374571, 8.532556], [47.394665, 8.527869], [47.397898, 8.534135], [47.389905, 8.492127], [47.409952, 8.550032], [47.413623, 8.550956], [47.379569, 8.537559], [47.382816, 8.529997], [47.367886, 8.52985], [47.399744, 8.54342], [47.364824, 8.537784], [47.371819, 8.542841], [47.378209, 8.557487], [47.399661, 8.543564], [47.384141, 8.497814], [47.391437, 8.516265], [47.384119, 8.531097], [47.351828, 8.57655], [47.379126, 8.50815], [47.408639, 8.546321], [47.411151, 8.525237], [47.376098, 8.516498], [47.359654, 8.548824], [47.378139, 8.510766], [47.401128, 8.546323], [47.364468, 8.54866], [47.377495, 8.496676], [47.415923, 8.521863], [47.37683, 8.533357], [47.378537, 8.541113], [47.342971, 8.511395], [47.368774, 8.547995], [47.431337, 8.516463], [47.362015, 8.551177], [47.366815, 8.555289], [47.388279, 8.520188], [47.369765, 8.529015], [47.356505, 8.523422], [47.377819, 8.516202], [47.41239, 8.537772], [47.394238, 8.493392], [47.366438, 8.54498], [47.37732, 8.539552], [47.374783, 8.537685], [47.3667, 8.559748], [47.408014, 8.569058], [47.379833, 8.527738], [47.376767, 8.524815], [47.414725, 8.546672], [47.355648, 8.508195], [47.392488, 8.502749], [47.364593, 8.537475], [47.414759, 8.516419], [47.365538, 8.539322], [47.374195, 8.555774], [47.352968, 8.578653], [47.372732, 8.534875], [47.378844, 8.522036], [47.366527, 8.540308], [47.373586, 8.535846], [47.371317, 8.536025], [47.380017, 8.524484], [47.427069, 8.546399], [47.368654, 8.543715], [47.390891, 8.488557], [47.418856, 8.507318], [47.37902, 8.542354], [47.367083, 8.544318], [47.389665, 8.492864], [47.426077, 8.555087], [47.356516, 8.510662], [47.369022, 8.540943], [47.379039, 8.525126], [47.391706, 8.518205], [47.413299, 8.545304], [47.397518, 8.532471], [47.337169, 8.519112], [47.373287, 8.535099], [47.384954, 8.5322], [47.387479, 8.516212], [47.369928, 8.513487], [47.359789, 8.531909], [47.382476, 8.529871], [47.367051, 8.558802], [47.391799, 8.487608], [47.410501, 8.569548], [47.35966, 8.549129], [47.379304, 8.529515], [47.372544, 8.518518], [47.431318, 8.516516], [47.362176, 8.54754], [47.375454, 8.547458], [47.402403, 8.495673], [47.388176, 8.491365], [47.382718, 8.528075], [47.381466, 8.537704], [47.374336, 8.52409], [47.382535, 8.548202], [47.403871, 8.558477], [47.366773, 8.558717], [47.372741, 8.534862], [47.386834, 8.502318], [47.386223, 8.498346], [47.388633, 8.484658], [47.362369, 8.507046], [47.358419, 8.505259], [47.389781, 8.477979], [47.372991, 8.531279], [47.373164, 8.530078], [47.352961, 8.559181], [47.36396, 8.530299], [47.356568, 8.522378], [47.354536, 8.556302], [47.359661, 8.550982], [47.364633, 8.554859], [47.388214, 8.525154], [47.377824, 8.507899], [47.39569, 8.487102], [47.390933, 8.523011], [47.393881, 8.472164], [47.375741, 8.538102], [47.37612, 8.543685], [47.41471, 8.551019], [47.403968, 8.485781], [47.3809, 8.491274], [47.370965, 8.531462], [47.378963, 8.518834], [47.383725, 8.547909], [47.379839, 8.490273], [47.343968, 8.528858], [47.351837, 8.504969], [47.363752, 8.533274], [47.363914, 8.566905], [47.377993, 8.509068], [47.405194, 8.557511], [47.368647, 8.520637], [47.413924, 8.54859], [47.355769, 8.561769], [47.419062, 8.538108], [47.393474, 8.473454], [47.358449, 8.571092], [47.410779, 8.534081], [47.369239, 8.541728], [47.373832, 8.536447], [47.363245, 8.533634], [47.37017, 8.548792], [47.405997, 8.557263], [47.371642, 8.515878], [47.407871, 8.565266], [47.357675, 8.552569], [47.381638, 8.5309], [47.366007, 8.533492], [47.383274, 8.499161], [47.374277, 8.495473], [47.382404, 8.514467], [47.415169, 8.510067], [47.41443, 8.55308], [47.37673, 8.524827], [47.412312, 8.515495], [47.351821, 8.559806], [47.36798, 8.540828], [47.41676, 8.482666], [47.378997, 8.531534], [47.374985, 8.536299], [47.357993, 8.525809], [47.396855, 8.534126], [47.372057, 8.522441], [47.378788, 8.523174], [47.420418, 8.503678], [47.404549, 8.572006], [47.419246, 8.507922], [47.375375, 8.484544], [47.368778, 8.528743], [47.374167, 8.540917], [47.391088, 8.522802], [47.402037, 8.498342], [47.389825, 8.509663], [47.370785, 8.535246], [47.385811, 8.530058], [47.410149, 8.568693], [47.377672, 8.506783], [47.405068, 8.482517], [47.375573, 8.536894], [47.364041, 8.536007], [47.397811, 8.533828], [47.37535, 8.517622], [47.393141, 8.474507], [47.335422, 8.519355], [47.362443, 8.612522], [47.370143, 8.548818], [47.372595, 8.574146], [47.37946, 8.544271], [47.369763, 8.5368], [47.378848, 8.542417], [47.376831, 8.541793], [47.360872, 8.588923], [47.398238, 8.534354], [47.362168, 8.547513], [47.386444, 8.52684], [47.364903, 8.519899], [47.348302, 8.563729], [47.415746, 8.512835], [47.410468, 8.532763], [47.343528, 8.53544], [47.367368, 8.541703], [47.380499, 8.493848], [47.376319, 8.499447], [47.376851, 8.520658], [47.374536, 8.539971], [47.400124, 8.586551], [47.369932, 8.547383], [47.399149, 8.521681], [47.366102, 8.506115], [47.373025, 8.533359], [47.391643, 8.513461], [47.370152, 8.548791], [47.382997, 8.514625], [47.395259, 8.519164], [47.371908, 8.539175], [47.377787, 8.507991], [47.378499, 8.519407], [47.369123, 8.529346], [47.375651, 8.512291], [47.386289, 8.551604], [47.361141, 8.600671], [47.367969, 8.53438], [47.370016, 8.5329], [47.386971, 8.534903], [47.367529, 8.546526], [47.37329, 8.52906], [47.369041, 8.537977], [47.393198, 8.493014], [47.411858, 8.563216], [47.365343, 8.545646], [47.382296, 8.488123], [47.370561, 8.528515], [47.361855, 8.526497], [47.361504, 8.561294], [47.388663, 8.496169], [47.354108, 8.561509], [47.384297, 8.528465], [47.372619, 8.534383], [47.397833, 8.541857], [47.373823, 8.536487], [47.388494, 8.487053], [47.387036, 8.485117], [47.378788, 8.528921], [47.35278, 8.572163], [47.390506, 8.487384], [47.373332, 8.531339], [47.366901, 8.536053], [47.366372, 8.540504], [47.37874, 8.494396], [47.388674, 8.510554], [47.383151, 8.541169], [47.353621, 8.576284], [47.387345, 8.495693], [47.366702, 8.563244], [47.3261, 8.514879], [47.376268, 8.522368], [47.374227, 8.52418], [47.392239, 8.494677], [47.383161, 8.53068], [47.3743, 8.543965], [47.377711, 8.538169], [47.386565, 8.490432], [47.390685, 8.508144], [47.409004, 8.579044], [47.368835, 8.52836], [47.371316, 8.531417], [47.414967, 8.527807], [47.366419, 8.545073], [47.375917, 8.541376], [47.376289, 8.536312], [47.377135, 8.541958], [47.359809, 8.558915], [47.413669, 8.529105], [47.358246, 8.587966], [47.362552, 8.548673], [47.377258, 8.528043], [47.4143, 8.518398], [47.360585, 8.550247], [47.387744, 8.52733], [47.377188, 8.540105], [47.378997, 8.494746], [47.403265, 8.547653], [47.376944, 8.554296], [47.364586, 8.566218], [47.3771, 8.540885], [47.404986, 8.576957], [47.374775, 8.489233], [47.358262, 8.587304], [47.408138, 8.580178], [47.428047, 8.545664], [47.396454, 8.472134], [47.380102, 8.486981], [47.377071, 8.535388], [47.392504, 8.532832], [47.374663, 8.525593], [47.374805, 8.551338], [47.403748, 8.565563], [47.373553, 8.536428], [47.391142, 8.538936], [47.365424, 8.545608], [47.417663, 8.546124], [47.374473, 8.495729], [47.409817, 8.543536], [47.376803, 8.522842], [47.375148, 8.525722], [47.376741, 8.521782], [47.369689, 8.525584], [47.388572, 8.520512], [47.37482, 8.543208], [47.393039, 8.50737], [47.382396, 8.537352], [47.395673, 8.506561], [47.417321, 8.522355], [47.37458, 8.487878], [47.372945, 8.531357], [47.389391, 8.521509], [47.366639, 8.505437], [47.392532, 8.491067], [47.370353, 8.539037], [47.362144, 8.559242], [47.391114, 8.522842], [47.383416, 8.499402], [47.384702, 8.531281], [47.369023, 8.53795], [47.376857, 8.541873], [47.356462, 8.53552], [47.423043, 8.543214], [47.340211, 8.535186], [47.395651, 8.545256], [47.41736, 8.538285], [47.391488, 8.519472], [47.399723, 8.491672], [47.368662, 8.543782], [47.399876, 8.504446], [47.416424, 8.514425], [47.412133, 8.523137], [47.417442, 8.545695], [47.368306, 8.547111], [47.388898, 8.540347], [47.381043, 8.532027], [47.40957, 8.544896], [47.342173, 8.530356], [47.391004, 8.523105], [47.41969, 8.508461], [47.3743, 8.524963], [47.361467, 8.561399], [47.387162, 8.533675], [47.371169, 8.527945], [47.406141, 8.535616], [47.361363, 8.576621], [47.368698, 8.540936], [47.367785, 8.539527], [47.376694, 8.526747], [47.40007, 8.490089], [47.377846, 8.541893], [47.363256, 8.535289], [47.411189, 8.546745], [47.373871, 8.576147], [47.405349, 8.578488], [47.388188, 8.480133], [47.390635, 8.491996], [47.379269, 8.537963], [47.370188, 8.548805], [47.369166, 8.532445], [47.409853, 8.549102], [47.373107, 8.523707], [47.365872, 8.548636], [47.431361, 8.516702], [47.374912, 8.53161], [47.398359, 8.539549], [47.362469, 8.53383], [47.373785, 8.51947], [47.411859, 8.512027], [47.364988, 8.553556], [47.356631, 8.522379], [47.378634, 8.51945], [47.375045, 8.52809], [47.393701, 8.474187], [47.338434, 8.539503], [47.370717, 8.516707], [47.378669, 8.519517], [47.400033, 8.546049], [47.361694, 8.560212], [47.371973, 8.601424], [47.409008, 8.550078], [47.35767, 8.554065], [47.393339, 8.495335], [47.384779, 8.529852], [47.374593, 8.538688], [47.383237, 8.53974], [47.363758, 8.535432], [47.377247, 8.512853], [47.385338, 8.508473], [47.404823, 8.565148], [47.354315, 8.557754], [47.395821, 8.506207], [47.338372, 8.53937], [47.381164, 8.53726], [47.377435, 8.526444], [47.40101, 8.546467], [47.340057, 8.530551], [47.388503, 8.491014], [47.37447, 8.543081], [47.374425, 8.521271], [47.377549, 8.543781], [47.376809, 8.544017], [47.416265, 8.544571], [47.410877, 8.563262], [47.391066, 8.522258], [47.372194, 8.535553], [47.378217, 8.527466], [47.390575, 8.545548], [47.367198, 8.545446], [47.377, 8.541889], [47.401336, 8.490379], [47.368046, 8.507928], [47.377231, 8.525168], [47.354916, 8.526845], [47.374786, 8.55241], [47.384152, 8.494662], [47.410379, 8.54588], [47.372888, 8.524047], [47.370281, 8.509442], [47.368194, 8.559713], [47.334945, 8.519372], [47.384954, 8.531326], [47.380128, 8.520327], [47.409485, 8.537752], [47.364973, 8.538264], [47.376112, 8.524603], [47.381726, 8.499356], [47.385831, 8.5299], [47.395723, 8.508046], [47.390405, 8.539809], [47.379731, 8.524279], [47.36073, 8.522687], [47.397393, 8.532336], [47.412862, 8.53639], [47.366797, 8.542207], [47.360864, 8.534221], [47.37019, 8.521092], [47.364765, 8.537399], [47.367269, 8.541754], [47.392414, 8.545149], [47.397898, 8.534135], [47.370058, 8.564122], [47.351916, 8.505222], [47.365808, 8.550568], [47.387051, 8.489422], [47.412166, 8.538668], [47.369801, 8.508784], [47.398702, 8.586626], [47.379312, 8.511319], [47.36575, 8.500401], [47.360033, 8.523176], [47.394724, 8.525432], [47.355891, 8.557509], [47.376356, 8.528315], [47.37111, 8.531333], [47.363478, 8.499946], [47.394212, 8.480383], [47.372486, 8.545556], [47.426831, 8.534558], [47.37539, 8.547589], [47.373526, 8.527874], [47.392129, 8.524028], [47.368933, 8.528468], [47.387511, 8.500106], [47.393022, 8.514059], [47.400337, 8.543472], [47.378659, 8.496368], [47.404423, 8.580244], [47.373439, 8.542808], [47.364249, 8.531113], [47.373842, 8.537308], [47.403551, 8.57107], [47.41956, 8.505105], [47.363453, 8.506525], [47.384181, 8.507205], [47.360418, 8.569307], [47.372311, 8.544136], [47.353746, 8.575492], [47.370886, 8.531249], [47.406952, 8.550552], [47.387456, 8.528278], [47.417697, 8.541632], [47.353308, 8.576145], [47.363642, 8.535364], [47.410786, 8.558702], [47.408942, 8.545611], [47.378208, 8.528353], [47.408972, 8.548169], [47.359613, 8.548453], [47.365402, 8.546945], [47.366935, 8.543812], [47.405255, 8.557685], [47.367164, 8.534867], [47.372311, 8.544096], [47.363771, 8.551002], [47.378294, 8.528805], [47.361427, 8.57653], [47.362602, 8.519734], [47.361303, 8.562494], [47.374471, 8.540234], [47.37892, 8.546219], [47.386226, 8.528027], [47.403483, 8.497523], [47.373949, 8.526015], [47.369364, 8.520016], [47.403345, 8.567303], [47.387678, 8.499593], [47.391808, 8.484615], [47.344263, 8.527104], [47.366656, 8.534366], [47.373334, 8.53306], [47.371306, 8.537282], [47.419924, 8.547655], [47.422708, 8.550934], [47.383246, 8.529291], [47.367251, 8.537053], [47.394197, 8.49004], [47.3779, 8.541868], [47.36908, 8.541487], [47.401749, 8.505133], [47.384901, 8.509034], [47.389254, 8.5274], [47.373033, 8.483968], [47.374682, 8.537882], [47.380224, 8.506146], [47.368119, 8.578367], [47.373147, 8.503939], [47.366821, 8.506103], [47.409394, 8.522697], [47.368565, 8.524608], [47.355219, 8.55449], [47.391802, 8.517611], [47.368409, 8.511444], [47.390746, 8.539908], [47.392266, 8.533343], [47.36051, 8.50771], [47.386231, 8.497525], [47.386233, 8.498319], [47.425806, 8.547712], [47.375032, 8.539888], [47.377837, 8.528664], [47.372033, 8.522149], [47.393676, 8.501753], [47.400444, 8.493515], [47.389024, 8.522283], [47.392133, 8.510107], [47.405572, 8.549967], [47.348315, 8.562406], [47.35477, 8.523294], [47.375875, 8.541084], [47.386344, 8.531751], [47.378326, 8.527349], [47.416789, 8.572266], [47.367908, 8.497558], [47.388265, 8.540639], [47.369022, 8.540956], [47.365502, 8.549687], [47.38457, 8.509809], [47.377256, 8.538716], [47.373807, 8.544736], [47.404814, 8.483731], [47.383973, 8.515982], [47.418589, 8.507975], [47.369582, 8.518776], [47.375568, 8.517322], [47.387264, 8.535227], [47.427274, 8.543766], [47.376776, 8.538084], [47.369744, 8.543486], [47.381133, 8.504085], [47.390921, 8.523315], [47.400018, 8.541981], [47.331349, 8.537266], [47.366556, 8.54485], [47.391371, 8.537524], [47.405239, 8.557525], [47.385173, 8.507914], [47.390923, 8.522123], [47.413598, 8.536538], [47.36315, 8.532176], [47.365413, 8.552386], [47.394819, 8.525818], [47.428817, 8.545097], [47.423012, 8.541663], [47.377149, 8.529126], [47.362344, 8.504848], [47.378235, 8.530314], [47.397938, 8.535619], [47.36095, 8.599118], [47.365933, 8.562777], [47.372965, 8.547128], [47.378004, 8.547988], [47.384368, 8.548438], [47.405139, 8.481591], [47.383717, 8.533684], [47.335297, 8.541145], [47.367134, 8.541724], [47.414036, 8.541556], [47.403178, 8.548314], [47.378137, 8.510024], [47.408804, 8.579291], [47.370206, 8.548819], [47.363987, 8.5312], [47.386027, 8.505017], [47.377118, 8.521855], [47.343274, 8.519434], [47.371768, 8.534048], [47.389041, 8.471328], [47.353933, 8.577469], [47.385947, 8.493188], [47.380034, 8.536972], [47.368557, 8.539741], [47.374031, 8.542926], [47.377896, 8.521368], [47.363986, 8.533173], [47.355244, 8.527368], [47.367539, 8.53036], [47.357821, 8.526931], [47.371596, 8.515944], [47.421717, 8.550131], [47.40375, 8.570889], [47.365179, 8.567197], [47.370289, 8.539142], [47.400211, 8.477546], [47.415205, 8.549174], [47.405275, 8.480533], [47.384596, 8.496314], [47.38831, 8.485553], [47.380737, 8.536815], [47.378839, 8.542457], [47.368167, 8.529604], [47.381597, 8.517113], [47.373832, 8.536487], [47.357567, 8.508843], [47.356577, 8.522418], [47.370288, 8.541207], [47.409206, 8.546293], [47.402512, 8.492549], [47.363355, 8.534299], [47.415922, 8.53815], [47.363601, 8.516788], [47.407622, 8.566824], [47.372666, 8.503373], [47.409703, 8.482223], [47.363859, 8.556776], [47.381083, 8.537325], [47.383316, 8.530418], [47.409338, 8.575288], [47.379046, 8.542474], [47.365046, 8.545666], [47.350889, 8.561282], [47.373506, 8.484295], [47.36651, 8.535462], [47.361626, 8.565414], [47.412261, 8.523816], [47.390286, 8.53623], [47.399004, 8.50529], [47.391131, 8.487886], [47.417094, 8.510118], [47.373532, 8.519664], [47.37762, 8.542008], [47.422345, 8.538971], [47.366903, 8.544328], [47.374108, 8.527237], [47.398404, 8.537669], [47.363354, 8.533425], [47.368456, 8.496563], [47.370444, 8.524673], [47.374158, 8.530508], [47.416821, 8.537227], [47.400701, 8.548673], [47.377713, 8.525562], [47.377233, 8.52685], [47.378884, 8.527268], [47.370637, 8.49119], [47.378281, 8.540631], [47.38799, 8.491017], [47.350253, 8.56287], [47.369597, 8.528654], [47.38802, 8.482766], [47.377467, 8.531609], [47.402351, 8.499329], [47.386426, 8.503674], [47.369532, 8.491023], [47.379394, 8.500554], [47.382521, 8.514483], [47.341408, 8.53038], [47.385032, 8.500746], [47.375959, 8.541642], [47.331003, 8.53677], [47.385559, 8.535801], [47.347743, 8.525415], [47.344103, 8.528821], [47.370703, 8.55876], [47.374467, 8.52155], [47.380924, 8.578747], [47.3764, 8.559462], [47.379356, 8.521133], [47.42099, 8.502139], [47.396402, 8.482943], [47.362513, 8.547149], [47.380203, 8.526672], [47.373524, 8.553536], [47.369324, 8.527099], [47.377162, 8.540052], [47.38125, 8.49136], [47.395541, 8.517872], [47.412533, 8.516864], [47.377173, 8.51305], [47.36244, 8.554734], [47.413747, 8.546467], [47.392112, 8.492727], [47.421887, 8.545496], [47.372005, 8.559966], [47.40872, 8.544388], [47.403164, 8.555388], [47.375623, 8.527824], [47.358028, 8.532627], [47.383714, 8.540571], [47.363842, 8.566877], [47.374906, 8.524631], [47.369178, 8.525454], [47.420862, 8.549199], [47.405747, 8.481006], [47.365098, 8.567221], [47.378057, 8.541487], [47.368341, 8.560312], [47.382103, 8.541663], [47.38583, 8.530019], [47.404173, 8.561703], [47.364686, 8.548452], [47.386899, 8.501207], [47.414733, 8.519188], [47.373867, 8.538408], [47.396878, 8.529795], [47.352677, 8.576211], [47.373311, 8.55516], [47.376243, 8.544932], [47.335771, 8.54052], [47.388153, 8.520186], [47.389841, 8.511796], [47.365724, 8.523464], [47.371592, 8.555217], [47.391373, 8.516291], [47.359184, 8.521623], [47.363607, 8.533364], [47.390153, 8.545526], [47.355153, 8.587806], [47.384624, 8.509889], [47.382388, 8.541007], [47.383208, 8.499531], [47.391454, 8.513484], [47.367234, 8.54072], [47.353717, 8.57201], [47.409597, 8.53733], [47.366661, 8.520425], [47.385383, 8.508554], [47.336352, 8.51416], [47.360402, 8.579222], [47.36473, 8.554199], [47.402929, 8.575747], [47.378543, 8.50402], [47.387373, 8.529441], [47.371864, 8.535308], [47.38677, 8.541787], [47.391618, 8.517077], [47.382637, 8.537542], [47.380486, 8.493213], [47.398714, 8.533396], [47.427178, 8.491393], [47.381096, 8.579572], [47.419607, 8.498997], [47.403277, 8.489557], [47.374931, 8.492877], [47.378748, 8.531238], [47.341066, 8.519879], [47.379549, 8.516806], [47.396296, 8.503461], [47.372347, 8.494124], [47.35429, 8.575967], [47.382168, 8.532023], [47.41221, 8.550052], [47.367291, 8.541383], [47.405106, 8.482279], [47.360633, 8.476497], [47.39141, 8.540081], [47.390838, 8.550957], [47.393275, 8.493439], [47.381918, 8.536534], [47.378005, 8.527952], [47.397726, 8.53331], [47.390829, 8.48547], [47.338471, 8.531842], [47.367074, 8.523373], [47.407162, 8.538022], [47.393901, 8.533496], [47.370143, 8.548804], [47.391221, 8.522937], [47.405111, 8.481749], [47.415132, 8.513087], [47.411079, 8.535651], [47.366349, 8.541033], [47.373493, 8.553072], [47.375563, 8.484693], [47.378357, 8.541109], [47.398606, 8.494803], [47.353245, 8.555825], [47.392206, 8.489378], [47.421107, 8.549946], [47.390058, 8.476196], [47.393683, 8.545056], [47.383859, 8.527211], [47.387068, 8.547356], [47.346245, 8.564361], [47.394183, 8.517924], [47.395597, 8.546169], [47.430955, 8.550125], [47.387773, 8.527118], [47.367377, 8.521777], [47.378536, 8.517448], [47.378692, 8.516127], [47.397936, 8.53391], [47.393487, 8.539184], [47.376938, 8.532353], [47.42836, 8.51737], [47.38351, 8.574697], [47.348451, 8.534217], [47.387103, 8.518946], [47.390958, 8.523223], [47.403297, 8.555537], [47.387429, 8.49731], [47.393468, 8.52701], [47.36402, 8.536272], [47.373094, 8.532671], [47.37445, 8.530077], [47.349005, 8.517353], [47.369242, 8.559193], [47.387014, 8.518798], [47.371424, 8.516099], [47.37405, 8.515186], [47.414251, 8.539785], [47.384903, 8.495141], [47.369106, 8.541567], [47.380926, 8.497274], [47.377732, 8.52543], [47.42383, 8.518949], [47.367644, 8.536346], [47.38516, 8.537078], [47.41124, 8.572174], [47.3448, 8.533163], [47.374282, 8.524989], [47.403046, 8.534823], [47.374281, 8.524128], [47.402068, 8.498793], [47.373137, 8.532964], [47.366788, 8.553461], [47.370234, 8.525079], [47.372515, 8.478516], [47.369726, 8.536945], [47.413557, 8.546529], [47.366478, 8.540758], [47.403692, 8.503211], [47.366745, 8.545755], [47.364542, 8.537209], [47.372349, 8.517217], [47.380432, 8.483411], [47.373968, 8.519223], [47.376496, 8.539111], [47.391565, 8.542654], [47.385336, 8.508712], [47.372891, 8.51985], [47.369707, 8.541764], [47.384984, 8.530982], [47.349874, 8.533995], [47.383073, 8.572423], [47.357594, 8.508896], [47.371019, 8.52381], [47.393629, 8.511673], [47.429007, 8.545034], [47.366764, 8.541902], [47.414235, 8.550916], [47.403871, 8.569619], [47.414559, 8.520576], [47.408596, 8.58032], [47.348118, 8.563249], [47.377873, 8.492737], [47.411448, 8.527085], [47.363075, 8.517254], [47.387545, 8.529326], [47.413695, 8.541536], [47.408422, 8.547403], [47.393401, 8.524571], [47.390213, 8.540189], [47.414042, 8.546671], [47.399563, 8.505222], [47.368154, 8.524255], [47.406631, 8.531452], [47.37262, 8.542818], [47.370896, 8.530163], [47.408178, 8.531457], [47.403398, 8.585628], [47.341318, 8.527533], [47.374975, 8.534498], [47.376648, 8.527898], [47.385221, 8.517199], [47.358641, 8.585366], [47.373533, 8.547087], [47.364137, 8.536287], [47.375056, 8.54014], [47.357597, 8.51341], [47.382198, 8.544937], [47.41508, 8.483495], [47.405252, 8.558016], [47.413949, 8.548777], [47.39206, 8.523709], [47.397794, 8.511678], [47.3832, 8.530362], [47.38623, 8.518067], [47.369652, 8.536176], [47.406922, 8.58679], [47.37465, 8.54964], [47.413884, 8.548126], [47.375923, 8.527446], [47.394269, 8.528841], [47.367954, 8.546283], [47.384903, 8.495154], [47.373807, 8.537228], [47.397042, 8.532382], [47.384178, 8.516198], [47.380617, 8.518987], [47.374479, 8.525112], [47.384057, 8.526248], [47.353369, 8.564339], [47.367653, 8.53922], [47.377773, 8.541958], [47.390471, 8.512709], [47.368546, 8.546533], [47.356379, 8.535757], [47.413589, 8.572039], [47.375974, 8.559705], [47.383594, 8.53143], [47.339496, 8.528026], [47.38426, 8.548396], [47.370066, 8.512245], [47.406687, 8.585089], [47.376882, 8.523983], [47.376109, 8.527741], [47.375658, 8.535505], [47.36989, 8.510864], [47.370723, 8.470695], [47.371567, 8.542889], [47.389435, 8.538769], [47.371271, 8.547504], [47.379999, 8.548149], [47.40524, 8.533901], [47.417727, 8.546006], [47.369366, 8.528424], [47.364101, 8.531547], [47.390118, 8.52355], [47.405637, 8.577514], [47.369763, 8.509922], [47.384823, 8.5318], [47.338915, 8.539037], [47.374937, 8.543237], [47.369783, 8.509737], [47.348785, 8.534052], [47.41587, 8.546378], [47.333913, 8.515262], [47.406327, 8.563139], [47.344869, 8.533442], [47.3462, 8.534449], [47.381709, 8.545205], [47.359635, 8.522427], [47.405232, 8.504911], [47.366492, 8.544889], [47.421638, 8.538626], [47.39364, 8.511488], [47.373424, 8.53489], [47.390698, 8.488977], [47.384655, 8.509387], [47.366857, 8.557474], [47.405682, 8.533751], [47.405366, 8.533957], [47.382799, 8.52993], [47.399657, 8.46805], [47.353502, 8.576533], [47.362974, 8.546921], [47.371751, 8.513855], [47.401573, 8.494942], [47.369601, 8.554645], [47.398696, 8.590786], [47.376057, 8.54183], [47.356572, 8.523927], [47.373617, 8.536377], [47.370581, 8.52453], [47.368538, 8.524581], [47.402938, 8.575747], [47.382799, 8.48616], [47.41015, 8.486538], [47.381183, 8.538161], [47.378556, 8.542001], [47.388976, 8.515831], [47.384399, 8.531923], [47.36273, 8.561915], [47.399195, 8.521523], [47.384846, 8.495484], [47.417027, 8.523012], [47.370161, 8.548831], [47.406764, 8.550429], [47.378789, 8.527822], [47.404371, 8.574519], [47.351598, 8.560582], [47.409273, 8.544929], [47.381484, 8.532976], [47.396764, 8.529422], [47.361159, 8.547664], [47.372743, 8.538358], [47.390984, 8.509766], [47.360224, 8.547618], [47.404819, 8.556324], [47.379121, 8.538344], [47.36719, 8.523521], [47.370161, 8.548844], [47.418734, 8.507766], [47.383412, 8.499906], [47.370689, 8.51676], [47.410472, 8.572516], [47.390801, 8.521763], [47.417799, 8.504845], [47.376864, 8.528789], [47.375866, 8.491876], [47.367395, 8.541756], [47.4193, 8.507936], [47.400171, 8.516217], [47.370075, 8.504394], [47.37829, 8.540618], [47.383298, 8.530431], [47.390594, 8.539786], [47.377638, 8.541995], [47.409947, 8.541233], [47.386858, 8.526782], [47.357494, 8.552671], [47.355868, 8.535574], [47.365066, 8.525596], [47.359801, 8.512422], [47.394525, 8.525561], [47.346838, 8.526931], [47.378904, 8.529016], [47.381776, 8.489914], [47.368759, 8.528796], [47.368779, 8.540898], [47.382305, 8.48807], [47.393354, 8.524782], [47.38077, 8.518976], [47.379702, 8.558393], [47.395494, 8.540046], [47.369571, 8.541801], [47.372072, 8.549361], [47.362685, 8.555401], [47.371402, 8.54789], [47.414095, 8.550436], [47.340105, 8.529308], [47.408395, 8.536987], [47.403465, 8.571572], [47.373388, 8.553652], [47.397069, 8.530448], [47.393046, 8.492931], [47.418034, 8.515372], [47.359572, 8.569395], [47.377491, 8.482281], [47.392671, 8.523721], [47.378289, 8.530275], [47.386232, 8.498333], [47.349979, 8.564215], [47.372362, 8.51772], [47.381526, 8.540804], [47.38077, 8.51899], [47.376052, 8.559137], [47.37076, 8.548248], [47.357333, 8.550801], [47.374449, 8.551887], [47.377725, 8.527099], [47.36993, 8.552203], [47.415368, 8.54809], [47.392297, 8.54516], [47.391695, 8.519397], [47.346297, 8.564507], [47.391952, 8.517905], [47.399591, 8.516695], [47.375266, 8.544581], [47.414385, 8.518956], [47.366806, 8.555315], [47.354071, 8.57534], [47.375872, 8.54515], [47.399144, 8.547832], [47.410783, 8.545941], [47.374163, 8.541353], [47.41441, 8.551344], [47.413634, 8.528999], [47.365421, 8.546866], [47.377226, 8.539907], [47.410706, 8.550259], [47.391931, 8.518209], [47.405803, 8.590701], [47.381808, 8.516667], [47.369284, 8.525668], [47.368884, 8.528984], [47.42724, 8.546376], [47.39241, 8.523729], [47.374974, 8.544946], [47.419161, 8.54748], [47.402014, 8.497812], [47.34292, 8.535943], [47.363209, 8.533567], [47.373391, 8.519277], [47.409816, 8.543629], [47.370581, 8.524477], [47.366927, 8.517968], [47.374665, 8.535921], [47.394549, 8.514368], [47.418197, 8.542027], [47.414402, 8.518996], [47.373059, 8.534498], [47.353985, 8.574981], [47.373617, 8.536377], [47.372312, 8.525995], [47.381373, 8.536126], [47.364993, 8.553066], [47.370542, 8.524767], [47.382902, 8.555825], [47.378491, 8.526995], [47.395456, 8.535555], [47.397493, 8.536021], [47.362541, 8.533885], [47.388031, 8.514925], [47.375555, 8.548228], [47.37749, 8.544322], [47.406365, 8.573011], [47.338222, 8.539036], [47.377717, 8.507817], [47.409484, 8.572323], [47.380092, 8.522273], [47.362509, 8.567034], [47.379961, 8.53709], [47.366846, 8.499576], [47.408986, 8.54385], [47.430946, 8.550152], [47.409268, 8.55007], [47.362356, 8.567084], [47.368497, 8.538429], [47.367963, 8.546296], [47.358237, 8.57159], [47.354332, 8.557847], [47.369984, 8.510416], [47.390683, 8.508276], [47.410082, 8.545012], [47.399999, 8.545836], [47.38368, 8.515645], [47.410958, 8.535211], [47.371993, 8.534966], [47.37732, 8.512735], [47.378979, 8.559636], [47.360357, 8.525089], [47.41274, 8.545438], [47.422079, 8.509914], [47.366461, 8.520686], [47.37102, 8.537952], [47.41912, 8.507933], [47.365627, 8.539469], [47.3676, 8.496744], [47.3695, 8.521793], [47.420096, 8.548454], [47.373271, 8.529179], [47.407157, 8.550728], [47.340006, 8.530286], [47.391758, 8.481183], [47.382727, 8.486158], [47.375398, 8.524972], [47.380386, 8.501223], [47.371177, 8.537584], [47.37505, 8.544603], [47.398978, 8.541642], [47.394207, 8.489921], [47.368067, 8.541095], [47.366779, 8.53564], [47.400394, 8.51642], [47.37297, 8.534417], [47.413731, 8.524442], [47.390362, 8.544351], [47.37994, 8.55608], [47.404659, 8.498766], [47.422832, 8.550194], [47.377278, 8.551429], [47.377224, 8.551402], [47.370168, 8.563846], [47.405505, 8.550455], [47.381548, 8.532885], [47.38504, 8.494958], [47.37302, 8.532948], [47.378534, 8.541404], [47.368386, 8.551005], [47.37304, 8.52695], [47.349305, 8.529497], [47.37876, 8.542309], [47.402056, 8.499138], [47.396769, 8.529859], [47.382948, 8.515061], [47.378428, 8.54029], [47.391767, 8.51753], [47.372608, 8.545916], [47.400728, 8.54866], [47.389109, 8.530444], [47.343214, 8.530576], [47.403766, 8.567471], [47.415004, 8.546691], [47.362303, 8.54835], [47.350186, 8.560592], [47.397042, 8.530447], [47.365479, 8.538883], [47.384922, 8.524146], [47.390592, 8.524845], [47.375202, 8.553068], [47.392701, 8.524384], [47.375009, 8.532764], [47.411139, 8.563148], [47.37659, 8.538729], [47.367871, 8.544639], [47.371001, 8.538137], [47.366334, 8.520829], [47.38728, 8.487996], [47.40225, 8.493749], [47.367978, 8.544774], [47.361548, 8.561387], [47.36711, 8.54424], [47.366473, 8.5366], [47.382423, 8.529698], [47.376074, 8.559641], [47.357907, 8.514807], [47.410365, 8.5436], [47.359703, 8.586184], [47.402883, 8.55464], [47.365006, 8.553503], [47.402083, 8.499191], [47.36634, 8.547653], [47.362181, 8.50499], [47.366798, 8.543081], [47.388966, 8.520745], [47.359698, 8.535799], [47.387866, 8.498696], [47.371203, 8.575785], [47.386761, 8.469761], [47.381554, 8.533123], [47.376528, 8.532888], [47.421952, 8.548161], [47.410971, 8.536616], [47.378768, 8.539502], [47.374476, 8.521643], [47.374631, 8.523301], [47.368191, 8.497021], [47.400253, 8.547484], [47.42069, 8.502517], [47.363377, 8.50794], [47.393181, 8.513479], [47.377672, 8.521258], [47.386243, 8.533868], [47.401103, 8.588466], [47.413044, 8.556828], [47.407206, 8.526747], [47.409301, 8.528738], [47.379908, 8.494512], [47.399716, 8.519732], [47.362186, 8.547513], [47.362593, 8.519707], [47.410883, 8.54491], [47.410892, 8.54491], [47.377657, 8.543743], [47.377143, 8.540131], [47.365391, 8.564805], [47.370167, 8.524495], [47.373067, 8.536511], [47.359481, 8.522596], [47.389944, 8.480949], [47.381346, 8.534284], [47.379315, 8.537831], [47.399765, 8.516341], [47.418874, 8.503329], [47.377467, 8.541978], [47.410877, 8.535157], [47.393761, 8.509106], [47.414621, 8.514892], [47.382731, 8.539928], [47.37256, 8.529218], [47.374856, 8.540428], [47.366864, 8.520853], [47.366869, 8.532729], [47.363044, 8.550867], [47.374564, 8.541733], [47.370125, 8.548804], [47.40524, 8.505031], [47.370785, 8.535285], [47.36659, 8.546003], [47.405255, 8.480732], [47.392303, 8.533225], [47.385104, 8.526839], [47.379475, 8.527611], [47.396529, 8.528596], [47.374789, 8.529475], [47.370992, 8.53141], [47.368216, 8.497233], [47.375102, 8.556866], [47.374353, 8.524183], [47.415095, 8.513179], [47.370561, 8.524715], [47.373972, 8.538794], [47.377898, 8.507662], [47.38675, 8.526872], [47.400709, 8.548699], [47.378417, 8.509884], [47.36712, 8.544187], [47.368547, 8.524581], [47.372992, 8.562092], [47.392672, 8.475664], [47.381992, 8.528722], [47.400719, 8.548673], [47.340939, 8.53143], [47.424861, 8.537393], [47.359868, 8.521637], [47.373457, 8.519993], [47.392988, 8.524417], [47.360203, 8.523312], [47.382857, 8.575239], [47.378095, 8.483194], [47.36573, 8.521836], [47.365976, 8.545275], [47.357954, 8.52046], [47.371197, 8.511553], [47.413634, 8.528999], [47.393003, 8.530471], [47.370802, 8.54952], [47.356551, 8.534688], [47.398953, 8.541456], [47.405043, 8.557269], [47.399172, 8.591803], [47.354106, 8.575487], [47.376733, 8.53505], [47.40766, 8.584023], [47.376092, 8.540956], [47.349846, 8.561273], [47.379153, 8.508084], [47.390652, 8.479228], [47.385358, 8.507308], [47.391196, 8.538911], [47.364984, 8.553053], [47.386197, 8.526318], [47.406925, 8.550565], [47.393001, 8.492917], [47.378749, 8.545328], [47.406842, 8.550735], [47.407428, 8.493984], [47.366799, 8.542896], [47.375879, 8.527405], [47.384737, 8.500488], [47.369027, 8.492165], [47.376948, 8.543609], [47.367626, 8.523066], [47.377252, 8.541907], [47.340284, 8.530371], [47.404318, 8.493804], [47.37017, 8.548805], [47.330046, 8.534302], [47.373399, 8.502897], [47.375106, 8.518689], [47.367149, 8.540189], [47.377569, 8.526486], [47.423731, 8.549338], [47.3801, 8.528048], [47.359713, 8.522733], [47.41762, 8.483068], [47.344245, 8.530055], [47.394712, 8.525724], [47.361006, 8.531629], [47.386173, 8.498928], [47.354936, 8.554894], [47.40446, 8.53362], [47.429644, 8.487227], [47.375054, 8.537532], [47.404605, 8.505628], [47.392733, 8.539088], [47.361059, 8.531657], [47.365478, 8.535229], [47.392056, 8.497919], [47.354077, 8.553526], [47.374463, 8.540075], [47.353954, 8.523926], [47.386768, 8.547614], [47.36474, 8.55412], [47.383028, 8.57519], [47.370886, 8.548211], [47.383948, 8.527279], [47.387064, 8.501766], [47.405938, 8.590677], [47.393274, 8.524608], [47.367082, 8.56394], [47.367147, 8.533754], [47.365472, 8.521579], [47.328799, 8.517712], [47.341405, 8.518232], [47.370152, 8.548804], [47.374536, 8.539971], [47.354877, 8.558189], [47.368776, 8.500991], [47.407175, 8.582118], [47.414374, 8.546678], [47.358636, 8.553648], [47.362755, 8.554687], [47.410946, 8.546806], [47.351245, 8.579119], [47.358347, 8.571368], [47.353483, 8.576572], [47.379426, 8.542177], [47.36357, 8.535375], [47.401169, 8.544827], [47.386273, 8.531657], [47.374914, 8.534324], [47.413419, 8.509634], [47.373726, 8.542867], [47.369094, 8.538111], [47.369276, 8.541689], [47.344269, 8.535045], [47.379541, 8.537704], [47.401726, 8.581008], [47.410708, 8.543462], [47.384978, 8.503685], [47.36129, 8.522514], [47.36276, 8.568032], [47.375597, 8.52679], [47.374713, 8.549654], [47.3755, 8.540812], [47.390104, 8.522172], [47.414986, 8.551329], [47.373109, 8.536803], [47.384337, 8.531869], [47.371097, 8.520303], [47.356776, 8.509807], [47.367845, 8.537039], [47.386496, 8.529026], [47.361356, 8.549614], [47.345555, 8.529446], [47.365223, 8.532695], [47.375701, 8.516649], [47.374458, 8.52159], [47.369467, 8.526202], [47.36842, 8.50538], [47.370224, 8.548819], [47.403229, 8.572666], [47.390293, 8.491009], [47.379531, 8.515826], [47.385537, 8.529536], [47.378715, 8.528072], [47.358882, 8.516415], [47.363967, 8.528565], [47.373535, 8.52504], [47.362188, 8.559389], [47.390715, 8.50878], [47.38046, 8.519434], [47.38901, 8.516971], [47.382196, 8.540354], [47.414307, 8.550891], [47.423084, 8.49847], [47.377318, 8.529342], [47.373993, 8.538463], [47.381066, 8.537219], [47.360368, 8.552241], [47.351291, 8.5763], [47.398361, 8.537443], [47.387184, 8.518987], [47.38899, 8.48893], [47.33515, 8.514718], [47.374177, 8.502436], [47.375922, 8.54086], [47.403995, 8.574405], [47.40953, 8.537726], [47.370952, 8.52324], [47.423738, 8.542963], [47.400092, 8.590591], [47.357797, 8.524666], [47.413873, 8.545436], [47.405298, 8.558785], [47.400109, 8.50159], [47.380221, 8.557781], [47.376065, 8.559614], [47.362713, 8.535583], [47.375644, 8.544549], [47.375931, 8.54086], [47.360413, 8.550376], [47.385795, 8.529833], [47.378643, 8.559125], [47.389756, 8.511277], [47.375581, 8.548295], [47.372726, 8.535484], [47.417093, 8.548352], [47.421297, 8.481297], [47.371686, 8.521758], [47.397936, 8.477462], [47.409269, 8.550057], [47.386744, 8.547362], [47.380883, 8.511668], [47.335448, 8.519408], [47.369408, 8.525817], [47.35823, 8.571405], [47.374015, 8.544595], [47.3741, 8.538518], [47.3764, 8.538831], [47.408583, 8.546478], [47.38188, 8.529091], [47.365796, 8.545258], [47.393166, 8.494603], [47.371423, 8.536239], [47.352341, 8.52523], [47.366484, 8.544796], [47.376111, 8.543658], [47.410926, 8.492146], [47.376388, 8.543836], [47.364257, 8.546285], [47.396573, 8.528702], [47.389336, 8.534952], [47.371611, 8.531595], [47.389717, 8.511568], [47.380104, 8.541834], [47.391282, 8.52323], [47.378983, 8.54242], [47.389578, 8.512016], [47.359944, 8.569005], [47.370179, 8.513585], [47.3808, 8.512832], [47.407099, 8.532363], [47.38835, 8.49105], [47.370263, 8.514262], [47.36808, 8.521645], [47.372545, 8.517446], [47.377661, 8.492336], [47.398953, 8.541429], [47.373681, 8.545647], [47.374252, 8.525346], [47.398523, 8.538426], [47.365071, 8.554246], [47.402377, 8.546402], [47.370372, 8.538005], [47.410704, 8.571752], [47.369471, 8.520071], [47.359321, 8.522381], [47.369645, 8.543471], [47.357694, 8.521236], [47.410574, 8.542412], [47.368473, 8.534338], [47.369254, 8.491984], [47.383118, 8.5502], [47.331003, 8.536757], [47.414141, 8.54662], [47.353481, 8.559338], [47.381462, 8.543743], [47.402721, 8.49829], [47.335894, 8.540827], [47.414896, 8.541057], [47.370143, 8.548804], [47.382514, 8.531487], [47.411325, 8.525851], [47.385124, 8.532336], [47.413955, 8.526448], [47.391805, 8.477992], [47.388434, 8.486707], [47.424453, 8.499266], [47.391678, 8.517436], [47.376063, 8.48898], [47.398595, 8.468122], [47.381897, 8.4894], [47.375083, 8.553264], [47.366191, 8.548192], [47.38704, 8.47876], [47.376904, 8.514886], [47.398364, 8.509384], [47.389495, 8.481814], [47.378317, 8.507088], [47.418987, 8.507639], [47.385484, 8.530449], [47.378021, 8.541473], [47.386174, 8.488994], [47.423403, 8.549676], [47.403453, 8.556136], [47.428844, 8.54515], [47.389256, 8.527255], [47.380039, 8.527848], [47.375602, 8.515627], [47.387074, 8.501727], [47.374699, 8.541722], [47.386199, 8.525126], [47.420543, 8.502872], [47.357292, 8.521969], [47.406754, 8.545937], [47.364022, 8.530393], [47.390696, 8.489282], [47.3776, 8.492096], [47.341066, 8.53044], [47.396165, 8.514626], [47.407321, 8.549606], [47.377769, 8.537733], [47.358425, 8.556913], [47.379108, 8.529325], [47.376618, 8.534849], [47.406691, 8.481131], [47.367854, 8.498471], [47.340762, 8.530195], [47.356065, 8.513684], [47.37859, 8.542187], [47.359625, 8.549102], [47.388366, 8.486282], [47.394874, 8.525727], [47.37036, 8.537356], [47.363453, 8.575329], [47.40731, 8.550745], [47.375399, 8.524813], [47.334783, 8.534704], [47.363621, 8.529048], [47.41417, 8.518872], [47.375656, 8.48831], [47.375393, 8.560342], [47.384875, 8.531986], [47.373183, 8.528078], [47.421004, 8.50744], [47.409316, 8.549766], [47.362747, 8.527256], [47.370345, 8.513204], [47.361995, 8.548661], [47.364582, 8.536733], [47.390117, 8.525617], [47.389978, 8.53274], [47.387312, 8.486434], [47.40886, 8.545755], [47.368723, 8.560718], [47.425645, 8.547655], [47.361403, 8.525706], [47.374387, 8.552667], [47.355674, 8.532288], [47.339572, 8.519002], [47.369048, 8.541062], [47.414657, 8.48342], [47.36906, 8.537911], [47.368208, 8.495181], [47.373704, 8.531969], [47.356511, 8.591502], [47.35258, 8.524653], [47.389244, 8.52185], [47.374184, 8.524947], [47.389389, 8.524582], [47.372177, 8.548635], [47.378064, 8.526496], [47.367914, 8.540178], [47.404667, 8.484072], [47.371177, 8.537531], [47.375111, 8.525787], [47.362791, 8.521631], [47.419806, 8.547706], [47.384628, 8.478911], [47.360194, 8.523246], [47.325665, 8.515254], [47.431499, 8.51636], [47.392597, 8.502725], [47.37109, 8.523891], [47.41632, 8.510076], [47.39805, 8.534217], [47.422327, 8.547454], [47.377549, 8.543781], [47.393112, 8.494628], [47.368609, 8.546521], [47.38326, 8.58628], [47.357718, 8.521594], [47.326069, 8.513397], [47.351407, 8.560816], [47.418855, 8.507331], [47.367949, 8.540205], [47.374602, 8.535894], [47.406204, 8.534729], [47.370733, 8.515953], [47.41388, 8.546642], [47.33825, 8.528516], [47.378342, 8.539838], [47.409685, 8.57931], [47.379246, 8.54228], [47.382798, 8.529997], [47.377817, 8.511567], [47.371749, 8.520753], [47.37436, 8.541424], [47.377273, 8.509093], [47.376501, 8.534873], [47.378561, 8.541431], [47.37274, 8.534955], [47.373107, 8.500442], [47.368122, 8.495762], [47.362539, 8.554736], [47.367336, 8.532805], [47.383187, 8.484035], [47.360484, 8.55235], [47.366117, 8.556823], [47.376399, 8.544578], [47.359722, 8.527539], [47.361816, 8.517255], [47.386963, 8.490281], [47.38974, 8.512032], [47.354532, 8.558553], [47.36901, 8.50285], [47.357968, 8.572379], [47.3355, 8.518761], [47.377788, 8.507885], [47.375899, 8.523301], [47.404883, 8.556206], [47.37847, 8.540608], [47.411, 8.544952], [47.374494, 8.539626], [47.381306, 8.49115], [47.396771, 8.523884], [47.410755, 8.543304], [47.387792, 8.544073], [47.369409, 8.526677], [47.364896, 8.531126], [47.375863, 8.488221], [47.377494, 8.541979], [47.377699, 8.510743], [47.389546, 8.488133], [47.364235, 8.536395], [47.390851, 8.522135], [47.369043, 8.528338], [47.386234, 8.503074], [47.371623, 8.514011], [47.368471, 8.521203], [47.383991, 8.515996], [47.391488, 8.546043], [47.407496, 8.548231], [47.364207, 8.548707], [47.371389, 8.510219], [47.385155, 8.541343], [47.366772, 8.494821], [47.367931, 8.496009], [47.402407, 8.556393], [47.368827, 8.496358], [47.415258, 8.53799], [47.404161, 8.563809], [47.369429, 8.540726], [47.389324, 8.511295], [47.356105, 8.509383], [47.336027, 8.524872], [47.378243, 8.514105], [47.370161, 8.548818], [47.395766, 8.54543], [47.369212, 8.519907], [47.394259, 8.480225], [47.397946, 8.481291], [47.350117, 8.56206], [47.397717, 8.533296], [47.366616, 8.555404], [47.385834, 8.548442], [47.376724, 8.534984], [47.365251, 8.500775], [47.370206, 8.548819], [47.39117, 8.522684], [47.397718, 8.532289], [47.373464, 8.539181], [47.390718, 8.478831], [47.378103, 8.540455], [47.369686, 8.556117], [47.369668, 8.556077], [47.364473, 8.536903], [47.391037, 8.479341], [47.406555, 8.570153], [47.390746, 8.515059], [47.391283, 8.515375], [47.368714, 8.528808], [47.369612, 8.529925], [47.403288, 8.497254], [47.373554, 8.524961], [47.370789, 8.519555], [47.408364, 8.50773], [47.409866, 8.544994], [47.390047, 8.480487], [47.396451, 8.528329], [47.429711, 8.549423], [47.409605, 8.544088], [47.413436, 8.539397], [47.411957, 8.517939], [47.366498, 8.54808], [47.412817, 8.540246], [47.341167, 8.536834], [47.356402, 8.555838], [47.369688, 8.508345], [47.400216, 8.516271], [47.390727, 8.478818], [47.381177, 8.515886], [47.353947, 8.523767], [47.36894, 8.52488], [47.359599, 8.521513], [47.417395, 8.509634], [47.367306, 8.545369], [47.352001, 8.559783], [47.383043, 8.499925], [47.347682, 8.562697], [47.415759, 8.569978], [47.399365, 8.505191], [47.370432, 8.515443], [47.374013, 8.501678], [47.381222, 8.537818], [47.373382, 8.531737], [47.381106, 8.504124], [47.368543, 8.528831], [47.414127, 8.541465], [47.374553, 8.495836], [47.41386, 8.545912], [47.407643, 8.531831], [47.39376, 8.493568], [47.404704, 8.549525], [47.395175, 8.510883], [47.375791, 8.516558], [47.371588, 8.515864], [47.373591, 8.524829], [47.385034, 8.541817], [47.375327, 8.485933], [47.369394, 8.554601], [47.382695, 8.539994], [47.352077, 8.523637], [47.3893, 8.491387], [47.388038, 8.489773], [47.428639, 8.489036], [47.424278, 8.508487], [47.410518, 8.54363], [47.400807, 8.54886], [47.377022, 8.544339], [47.378697, 8.528019], [47.370152, 8.548804], [47.39212, 8.513405], [47.370834, 8.530109], [47.379011, 8.542341], [47.372701, 8.535232], [47.420972, 8.501144], [47.41398, 8.543742], [47.398258, 8.537003], [47.373947, 8.51946], [47.337011, 8.520618], [47.375374, 8.545457], [47.36401, 8.55143], [47.369343, 8.557129], [47.374543, 8.539243], [47.343923, 8.528844], [47.376109, 8.533448], [47.362308, 8.526135], [47.374217, 8.524233], [47.366598, 8.52049], [47.374563, 8.562443], [47.393425, 8.500688], [47.373017, 8.531385], [47.388108, 8.474065], [47.388162, 8.536372], [47.379197, 8.553893], [47.369727, 8.551867], [47.395224, 8.521959], [47.377388, 8.529449], [47.370847, 8.492836], [47.359691, 8.593676], [47.40164, 8.548268], [47.39408, 8.489044], [47.38723, 8.485571], [47.376851, 8.528286], [47.383245, 8.53982], [47.381065, 8.537325], [47.37505, 8.54459], [47.37123, 8.54986], [47.397078, 8.530488], [47.359501, 8.508829], [47.390993, 8.539423], [47.382573, 8.515689], [47.410178, 8.574073], [47.376986, 8.543359], [47.392532, 8.532726], [47.36293, 8.517357], [47.411635, 8.567598], [47.377552, 8.548191], [47.377016, 8.542114], [47.423796, 8.544383], [47.360419, 8.584716], [47.399379, 8.542922], [47.373052, 8.550308], [47.359416, 8.551162], [47.389866, 8.491531], [47.412814, 8.481396], [47.372008, 8.529643], [47.397042, 8.521903], [47.367226, 8.522581], [47.369497, 8.547732], [47.384449, 8.548453], [47.413366, 8.512416], [47.393616, 8.524655], [47.404323, 8.50015], [47.375382, 8.540915], [47.388555, 8.523293], [47.371105, 8.523335], [47.388843, 8.491219], [47.402012, 8.49809], [47.405618, 8.549915], [47.360237, 8.576703], [47.410333, 8.539426], [47.359109, 8.526732], [47.380099, 8.515745], [47.355176, 8.557957], [47.37027, 8.531753], [47.380772, 8.533094], [47.351777, 8.526794], [47.333146, 8.518462], [47.39339, 8.524769], [47.377063, 8.523933], [47.366401, 8.545046], [47.367038, 8.523412], [47.400961, 8.535549], [47.391961, 8.517879], [47.410316, 8.563634], [47.36956, 8.466992], [47.38704, 8.546454], [47.3989, 8.511647], [47.377273, 8.539696], [47.354321, 8.575505], [47.376342, 8.516344], [47.372418, 8.510823], [47.423044, 8.50381], [47.4062, 8.533272], [47.38311, 8.515037], [47.427413, 8.546181], [47.380382, 8.517194], [47.357226, 8.591015], [47.367216, 8.545447], [47.389941, 8.535653], [47.385315, 8.500235], [47.381931, 8.532336], [47.37771, 8.541957], [47.366548, 8.541871], [47.409046, 8.547919], [47.376912, 8.535147], [47.367174, 8.552556], [47.387557, 8.500094], [47.366333, 8.533287], [47.370116, 8.525195], [47.367246, 8.552597], [47.364559, 8.56623], [47.392938, 8.543967], [47.387623, 8.499672], [47.375305, 8.543257], [47.335088, 8.54134], [47.386807, 8.502371], [47.374507, 8.540209], [47.377648, 8.541876], [47.382631, 8.540072], [47.376685, 8.526773], [47.338272, 8.529985], [47.392809, 8.522426], [47.417163, 8.54288], [47.397076, 8.53066], [47.363129, 8.517269], [47.405224, 8.481142], [47.410589, 8.53804], [47.391292, 8.532595], [47.402042, 8.579915], [47.358959, 8.557467], [47.37707, 8.535507], [47.379967, 8.544016], [47.376598, 8.538808], [47.3913, 8.52319], [47.37754, 8.543781], [47.407785, 8.584053], [47.367906, 8.494751], [47.376855, 8.528763], [47.406934, 8.550578], [47.357906, 8.532227], [47.373971, 8.528452], [47.374574, 8.53882], [47.391803, 8.545096], [47.370227, 8.513255], [47.392048, 8.539233], [47.397949, 8.531552], [47.385582, 8.530491], [47.419678, 8.547981], [47.378786, 8.542323], [47.367789, 8.521057], [47.41443, 8.551225], [47.373194, 8.527814], [47.391123, 8.522829], [47.363925, 8.571301], [47.383717, 8.532744], [47.359153, 8.527752], [47.374845, 8.551882], [47.405829, 8.590808], [47.397322, 8.59424], [47.414855, 8.561133], [47.368223, 8.506316], [47.401039, 8.588624], [47.358141, 8.587646], [47.426906, 8.546555], [47.343615, 8.530055], [47.393956, 8.535325], [47.388229, 8.540651], [47.399964, 8.519127], [47.365261, 8.520145], [47.380622, 8.534693], [47.362701, 8.527348], [47.355574, 8.60145], [47.378095, 8.483194], [47.376644, 8.540584], [47.400807, 8.548874], [47.373149, 8.52878], [47.40164, 8.581496], [47.379333, 8.537858], [47.412336, 8.54437], [47.381406, 8.528869], [47.357565, 8.52163], [47.373481, 8.534626], [47.393805, 8.500444], [47.420666, 8.547154], [47.333931, 8.515262], [47.371307, 8.530437], [47.374498, 8.521193], [47.370304, 8.548861], [47.417518, 8.511837], [47.405723, 8.563193], [47.37316, 8.531468], [47.40447, 8.572706], [47.39391, 8.537324], [47.383442, 8.533308], [47.364321, 8.555528], [47.391282, 8.523216], [47.38237, 8.529604], [47.373848, 8.503026], [47.369672, 8.603029], [47.371075, 8.53026], [47.383323, 8.495851], [47.376546, 8.509846], [47.36859, 8.560569], [47.38142, 8.510063], [47.338021, 8.516576], [47.364539, 8.55066], [47.363581, 8.535177], [47.342769, 8.530091], [47.381493, 8.535784], [47.340016, 8.530193], [47.374932, 8.539979], [47.383904, 8.511875], [47.375912, 8.541946], [47.389133, 8.517371], [47.360359, 8.523858], [47.380995, 8.538091], [47.362795, 8.522213], [47.369041, 8.537951], [47.384742, 8.531877], [47.362027, 8.548993], [47.37549, 8.541818], [47.366263, 8.54066], [47.384459, 8.510164], [47.372553, 8.534726], [47.412216, 8.546633], [47.369216, 8.528037], [47.391046, 8.522496], [47.362099, 8.548994], [47.398659, 8.539211], [47.394559, 8.521905], [47.37017, 8.548818], [47.411385, 8.544191], [47.366559, 8.559441], [47.382076, 8.529346], [47.418322, 8.483015], [47.369614, 8.528773], [47.422604, 8.550534], [47.374547, 8.518784], [47.370385, 8.548928], [47.356681, 8.570644], [47.377582, 8.543146], [47.385588, 8.546888], [47.373748, 8.503169], [47.375082, 8.539307], [47.414458, 8.552975], [47.370829, 8.542966], [47.370365, 8.491463], [47.373615, 8.527081], [47.374157, 8.521041], [47.411492, 8.526291], [47.385842, 8.532523], [47.369474, 8.523541], [47.356929, 8.555346], [47.376083, 8.540996], [47.402356, 8.49289], [47.34405, 8.53066], [47.392041, 8.500501], [47.374464, 8.544697], [47.369623, 8.53922], [47.383256, 8.528218], [47.40409, 8.50098], [47.368279, 8.504172], [47.353325, 8.558739], [47.376098, 8.521292], [47.366429, 8.510623], [47.402126, 8.499351], [47.412804, 8.543479], [47.374686, 8.51255], [47.383394, 8.484105], [47.37871, 8.516101], [47.368937, 8.529038], [47.379415, 8.50801], [47.409309, 8.546745], [47.392649, 8.475173], [47.391031, 8.523079], [47.387149, 8.509199], [47.411336, 8.570586], [47.412486, 8.550402], [47.370584, 8.538433], [47.376881, 8.544032], [47.397043, 8.530408], [47.427957, 8.545702], [47.374466, 8.539824], [47.336401, 8.518501], [47.407536, 8.546907], [47.383289, 8.53994], [47.376767, 8.538083], [47.387807, 8.471516], [47.379719, 8.525524], [47.340542, 8.519128], [47.391627, 8.511315], [47.367959, 8.544813], [47.418745, 8.553303], [47.356974, 8.53565], [47.401892, 8.536045], [47.338763, 8.538901], [47.39598, 8.473834], [47.424175, 8.54337], [47.376762, 8.543274], [47.377778, 8.537734], [47.388521, 8.520206], [47.379315, 8.537818], [47.403999, 8.561991], [47.37017, 8.548792], [47.377257, 8.528148], [47.355387, 8.554785], [47.390294, 8.50954], [47.350313, 8.567795], [47.414449, 8.483602], [47.390712, 8.539722], [47.37144, 8.522098], [47.391368, 8.514939], [47.369214, 8.527349], [47.377769, 8.53772], [47.369623, 8.508621], [47.381791, 8.516626], [47.398614, 8.590903], [47.342957, 8.535878], [47.374414, 8.496297], [47.36525, 8.494116], [47.366893, 8.521581], [47.391381, 8.523205], [47.346552, 8.534337], [47.354328, 8.552684], [47.398295, 8.536806], [47.409258, 8.571576], [47.363106, 8.517745], [47.371806, 8.559194], [47.399955, 8.51914], [47.383256, 8.499227], [47.399843, 8.480361], [47.407656, 8.578922], [47.372983, 8.528246], [47.366061, 8.533533], [47.382545, 8.548069], [47.351094, 8.526727], [47.391284, 8.536277], [47.375222, 8.531219], [47.377925, 8.535459], [47.384176, 8.543137], [47.368739, 8.496145], [47.380557, 8.548121], [47.397524, 8.505857], [47.359472, 8.585914], [47.371949, 8.556456], [47.361501, 8.52588], [47.387383, 8.521746], [47.389154, 8.494576], [47.407914, 8.580173], [47.370799, 8.546977], [47.360326, 8.566776], [47.409382, 8.558792], [47.39266, 8.53351], [47.368565, 8.524621], [47.395714, 8.536832], [47.385737, 8.539818], [47.373029, 8.532895], [47.335552, 8.518881], [47.363921, 8.547616], [47.410467, 8.532843], [47.354474, 8.553389], [47.342441, 8.520013], [47.372898, 8.550358], [47.368726, 8.52853], [47.377949, 8.525302], [47.418526, 8.547109], [47.389088, 8.536391], [47.389501, 8.511603], [47.391579, 8.517341], [47.386745, 8.547283], [47.370384, 8.52058], [47.403672, 8.534253], [47.355133, 8.561557], [47.397712, 8.488281], [47.328783, 8.514576], [47.376702, 8.523012], [47.360234, 8.522797], [47.342571, 8.531053], [47.372324, 8.513191], [47.410517, 8.550282], [47.384208, 8.497365], [47.380816, 8.518924], [47.376332, 8.526077], [47.410821, 8.558795], [47.37926, 8.537897], [47.375423, 8.549735], [47.411417, 8.52564], [47.378643, 8.52039], [47.407933, 8.578212], [47.376678, 8.54171], [47.403389, 8.48614], [47.400962, 8.538278], [47.382794, 8.532341], [47.373816, 8.542882], [47.370188, 8.548818], [47.41489, 8.54164], [47.355675, 8.57417], [47.371847, 8.557685], [47.364597, 8.554898], [47.409852, 8.575166], [47.357413, 8.521508], [47.422136, 8.504667], [47.414345, 8.551621], [47.365618, 8.539469], [47.376805, 8.535039], [47.372735, 8.534558], [47.369253, 8.511606], [47.402215, 8.535138], [47.385351, 8.529215], [47.42492, 8.50121], [47.364047, 8.547552], [47.373763, 8.534208], [47.384243, 8.5558], [47.335299, 8.519021], [47.360302, 8.576559], [47.370564, 8.532037], [47.398641, 8.539211], [47.390647, 8.489678], [47.382075, 8.529412], [47.401934, 8.499758], [47.390824, 8.489006], [47.384193, 8.575692], [47.403827, 8.567697], [47.372964, 8.520765], [47.366222, 8.544989], [47.359574, 8.535598], [47.378573, 8.542094], [47.37552, 8.548122], [47.413743, 8.571896], [47.394176, 8.493285], [47.36933, 8.533137], [47.363598, 8.534304], [47.386927, 8.47334], [47.376926, 8.540311], [47.353317, 8.576132], [47.372856, 8.535977], [47.402413, 8.499423], [47.420961, 8.549281], [47.42487, 8.537407], [47.377237, 8.499359], [47.339825, 8.530414], [47.383099, 8.528612], [47.3937, 8.508906], [47.393978, 8.481399], [47.378111, 8.541422], [47.341525, 8.529457], [47.391963, 8.512832], [47.354887, 8.574656], [47.392488, 8.502749], [47.369311, 8.527509], [47.361529, 8.563346], [47.395992, 8.52261], [47.345048, 8.533525], [47.37221, 8.511838], [47.366832, 8.542301], [47.366948, 8.544276], [47.379324, 8.528376], [47.358221, 8.571405], [47.390616, 8.510685], [47.369036, 8.547921], [47.353221, 8.572132], [47.392248, 8.494664], [47.363406, 8.533651], [47.398705, 8.471873], [47.386961, 8.534996], [47.368522, 8.499186], [47.421655, 8.499236], [47.427981, 8.54883], [47.374852, 8.541765], [47.425622, 8.556588], [47.413924, 8.546722], [47.368806, 8.49273], [47.41322, 8.546045], [47.347921, 8.524558], [47.371103, 8.538735], [47.364082, 8.517314], [47.378827, 8.542761], [47.357079, 8.535957], [47.378591, 8.530745], [47.398659, 8.539198], [47.409791, 8.537771], [47.379381, 8.542216], [47.409788, 8.540951], [47.390612, 8.5398], [47.406558, 8.550358], [47.389266, 8.531917], [47.406206, 8.483983], [47.398345, 8.537283], [47.342439, 8.530706], [47.393518, 8.483549], [47.411399, 8.525627], [47.390384, 8.522032], [47.411162, 8.570887], [47.366638, 8.54566], [47.377588, 8.525507], [47.383636, 8.483209], [47.406072, 8.563399], [47.370265, 8.552964], [47.384261, 8.52755], [47.42314, 8.502129], [47.388717, 8.520436], [47.378456, 8.51444], [47.397122, 8.530595], [47.414204, 8.519058], [47.372243, 8.513189], [47.354877, 8.574802], [47.369305, 8.528185], [47.386202, 8.518159], [47.394654, 8.518543], [47.362397, 8.552681], [47.391791, 8.484561], [47.413837, 8.545435], [47.396312, 8.527743], [47.360254, 8.534102], [47.373421, 8.561412], [47.386686, 8.523136], [47.375884, 8.541098], [47.359652, 8.59852], [47.373134, 8.523655], [47.355306, 8.55477], [47.367188, 8.539898], [47.358261, 8.581029], [47.376897, 8.554547], [47.381459, 8.497999], [47.355734, 8.560762], [47.408159, 8.55968], [47.372712, 8.547309], [47.37383, 8.537573], [47.376227, 8.527704], [47.379139, 8.530769], [47.400468, 8.592586], [47.403752, 8.565245], [47.402815, 8.577255], [47.384873, 8.495538], [47.419896, 8.506636], [47.377795, 8.537827], [47.380684, 8.525278], [47.417234, 8.545784], [47.399362, 8.542882], [47.376174, 8.536164], [47.354228, 8.598469], [47.356751, 8.553304], [47.364904, 8.537958], [47.374078, 8.540862], [47.374299, 8.524129], [47.411832, 8.537853], [47.417699, 8.546111], [47.429353, 8.54642], [47.36609, 8.556783], [47.410641, 8.553279], [47.376603, 8.548621], [47.377716, 8.51077], [47.352149, 8.525504], [47.374687, 8.532638], [47.361615, 8.50302], [47.38672, 8.528117], [47.38573, 8.525262], [47.37318, 8.55194], [47.394077, 8.493349], [47.373433, 8.552792], [47.388314, 8.490997], [47.393431, 8.545077], [47.363253, 8.522262], [47.362145, 8.548955], [47.354569, 8.60213], [47.384477, 8.528495], [47.426154, 8.554505], [47.354499, 8.511786], [47.353308, 8.576132], [47.377884, 8.529406], [47.390221, 8.512492], [47.349806, 8.529824], [47.373361, 8.532041], [47.413221, 8.545912], [47.425596, 8.536679], [47.378777, 8.542349], [47.384966, 8.50885], [47.363297, 8.567408], [47.371936, 8.517142], [47.388395, 8.536509], [47.359468, 8.553215], [47.413838, 8.553823], [47.374542, 8.51264], [47.401232, 8.534508], [47.355653, 8.535517], [47.358696, 8.516054], [47.393677, 8.472862], [47.362471, 8.568185], [47.342586, 8.531357], [47.412286, 8.55713], [47.390636, 8.49193], [47.369913, 8.547502], [47.403599, 8.588984], [47.378554, 8.54212], [47.373924, 8.502564], [47.374612, 8.524387], [47.384386, 8.548399], [47.35774, 8.599829], [47.407111, 8.586715], [47.396241, 8.527702], [47.374236, 8.526988], [47.391588, 8.52317], [47.377179, 8.540118], [47.375347, 8.56038], [47.381476, 8.542352], [47.364411, 8.532957], [47.37831, 8.541347], [47.383716, 8.547908], [47.369917, 8.542378], [47.377566, 8.54198], [47.375464, 8.486678], [47.413741, 8.546109], [47.41907, 8.506474], [47.358457, 8.571185], [47.354813, 8.560213], [47.385374, 8.517255], [47.371449, 8.525898], [47.377035, 8.523999], [47.384058, 8.576616], [47.38237, 8.505593], [47.351612, 8.576625], [47.365306, 8.545685], [47.357687, 8.557851], [47.365421, 8.546826], [47.356094, 8.556097], [47.361546, 8.531534], [47.374211, 8.524921], [47.381388, 8.517386], [47.412453, 8.529226], [47.386348, 8.534189], [47.41258, 8.544296], [47.368142, 8.539812], [47.393426, 8.524744], [47.378335, 8.52731], [47.360336, 8.527353], [47.36981, 8.516503], [47.417708, 8.546059], [47.394856, 8.525753], [47.396564, 8.528742], [47.388503, 8.532643], [47.399708, 8.543419], [47.370161, 8.548818], [47.385454, 8.576381], [47.370509, 8.54909], [47.397968, 8.532467], [47.392717, 8.523603], [47.388373, 8.540654], [47.425699, 8.509404], [47.346191, 8.534396], [47.39615, 8.516308], [47.352213, 8.525479], [47.370087, 8.524361], [47.383855, 8.528588], [47.356302, 8.553176], [47.379304, 8.529528], [47.381785, 8.489874], [47.375691, 8.529189], [47.351276, 8.53229], [47.369077, 8.540851], [47.37069, 8.531987], [47.407517, 8.538533], [47.374664, 8.536014], [47.364951, 8.525355], [47.382076, 8.515957], [47.367912, 8.521364], [47.388415, 8.516217], [47.378682, 8.541937], [47.387722, 8.518203], [47.381831, 8.541883], [47.367639, 8.565885], [47.39739, 8.540271], [47.37279, 8.547562], [47.357487, 8.550659], [47.360866, 8.550001], [47.376355, 8.527402], [47.387663, 8.488441], [47.417675, 8.554155], [47.358895, 8.58238], [47.402067, 8.497959], [47.39865, 8.539211], [47.391654, 8.519012], [47.369124, 8.541593], [47.339956, 8.531701], [47.422513, 8.550585], [47.406656, 8.584598], [47.412224, 8.483969], [47.371447, 8.546038], [47.376775, 8.548505], [47.364266, 8.531153], [47.342581, 8.530947], [47.368148, 8.523937], [47.389501, 8.511564], [47.414931, 8.530748], [47.411543, 8.563236], [47.410741, 8.571687], [47.376229, 8.525492], [47.377016, 8.543982], [47.38686, 8.547431], [47.393772, 8.502059], [47.413943, 8.571702], [47.388674, 8.520223], [47.373044, 8.531386], [47.417847, 8.554106], [47.405296, 8.551617], [47.366078, 8.533679], [47.369087, 8.537885], [47.419915, 8.482887], [47.400744, 8.544196], [47.416342, 8.546004], [47.381276, 8.517742], [47.413788, 8.536489], [47.378553, 8.541338], [47.382788, 8.486451], [47.397193, 8.49194], [47.368007, 8.540776], [47.397346, 8.53256], [47.386788, 8.547495], [47.404502, 8.59486], [47.422862, 8.494144], [47.357972, 8.520421], [47.403311, 8.488842], [47.376625, 8.514032], [47.360109, 8.595922], [47.387515, 8.516212], [47.429138, 8.543605], [47.373256, 8.535522], [47.429953, 8.549601], [47.385848, 8.52994], [47.373602, 8.519824], [47.388994, 8.496321], [47.351449, 8.601082], [47.325871, 8.51342], [47.369134, 8.503104], [47.40454, 8.556292], [47.377193, 8.538635], [47.407006, 8.55054], [47.38639, 8.496852], [47.378872, 8.542762], [47.374397, 8.541385], [47.41017, 8.564744], [47.389319, 8.527203], [47.398069, 8.536059], [47.380857, 8.537413], [47.37025, 8.513692], [47.367889, 8.539992], [47.366523, 8.545432], [47.376429, 8.534832], [47.387526, 8.529445], [47.374328, 8.542972], [47.367101, 8.544292], [47.407508, 8.547039], [47.401256, 8.545147], [47.377186, 8.54033], [47.369115, 8.525466], [47.389974, 8.485532], [47.354998, 8.511359], [47.415474, 8.516897], [47.380151, 8.537835], [47.376909, 8.535438], [47.369284, 8.527482], [47.391082, 8.489329], [47.406934, 8.550552], [47.42446, 8.537981], [47.36069, 8.565407], [47.395246, 8.537723], [47.38161, 8.509908], [47.366934, 8.543865], [47.360766, 8.548238], [47.407331, 8.585381], [47.385337, 8.508579], [47.366421, 8.544834], [47.382829, 8.532461], [47.374704, 8.549681], [47.381149, 8.491623], [47.379214, 8.525672], [47.354333, 8.557794], [47.374948, 8.534471], [47.362463, 8.535419], [47.376346, 8.538816], [47.368339, 8.535209], [47.387108, 8.534654], [47.38506, 8.508441], [47.370163, 8.532519], [47.369274, 8.541848], [47.422983, 8.551271], [47.410102, 8.52772], [47.41368, 8.554297], [47.385914, 8.524869], [47.407442, 8.574174], [47.398256, 8.537123], [47.385822, 8.493013], [47.388188, 8.524147], [47.38288, 8.528992], [47.377126, 8.526755], [47.373118, 8.53299], [47.388695, 8.546528], [47.371321, 8.544168], [47.387158, 8.535066], [47.417537, 8.553609], [47.3522, 8.526763], [47.366096, 8.50769], [47.37995, 8.543883], [47.373844, 8.576106], [47.393216, 8.474151], [47.370174, 8.529447], [47.382723, 8.540762], [47.368253, 8.52431], [47.392202, 8.495736], [47.374501, 8.541771], [47.383617, 8.532861], [47.367442, 8.55554], [47.366938, 8.544355], [47.381867, 8.54191], [47.381781, 8.516653], [47.377506, 8.527531], [47.368443, 8.533728], [47.386512, 8.545225], [47.377256, 8.538716], [47.375988, 8.515768], [47.406126, 8.58986], [47.35594, 8.535589], [47.356389, 8.534738], [47.38503, 8.547883], [47.367976, 8.524053], [47.398947, 8.541138], [47.376676, 8.557826], [47.384459, 8.548295], [47.369463, 8.541852], [47.371257, 8.527245], [47.401795, 8.500153], [47.381378, 8.537463], [47.374297, 8.52442], [47.378335, 8.540619], [47.382916, 8.54127], [47.385898, 8.498511], [47.378221, 8.528949], [47.399398, 8.533357], [47.422247, 8.506259], [47.371086, 8.523441], [47.409558, 8.537634], [47.369268, 8.554678], [47.407174, 8.498246], [47.375942, 8.527393], [47.408914, 8.558835], [47.420367, 8.50821], [47.418228, 8.506099], [47.408651, 8.580242], [47.369863, 8.525243], [47.379068, 8.525934], [47.390577, 8.491439], [47.388689, 8.496262], [47.341828, 8.530693], [47.368161, 8.531193], [47.361649, 8.503192], [47.376637, 8.511702], [47.364303, 8.533921], [47.369874, 8.523151], [47.325991, 8.518793], [47.396973, 8.513874], [47.367376, 8.530515], [47.370152, 8.548818], [47.343362, 8.530143], [47.402927, 8.57686], [47.381985, 8.516061], [47.361608, 8.5654], [47.376015, 8.515689], [47.370034, 8.543294], [47.349906, 8.569918], [47.422386, 8.550742], [47.372496, 8.505263], [47.387663, 8.488401], [47.377015, 8.498017], [47.403345, 8.585547], [47.37474, 8.55805], [47.417546, 8.553622], [47.350148, 8.527873], [47.413604, 8.539745], [47.407314, 8.587183], [47.368877, 8.547639], [47.377987, 8.526098], [47.386806, 8.535165], [47.375145, 8.537388], [47.37026, 8.548833], [47.369685, 8.522208], [47.362603, 8.514796], [47.410878, 8.562189], [47.399913, 8.592309], [47.354478, 8.597799], [47.419965, 8.504093], [47.358416, 8.556913], [47.378686, 8.51961], [47.399768, 8.543712], [47.398007, 8.534057], [47.366593, 8.521986], [47.393179, 8.5194], [47.369313, 8.550945], [47.367728, 8.546384], [47.37179, 8.530764], [47.378495, 8.575186], [47.399768, 8.543712], [47.386184, 8.518093], [47.375335, 8.524931], [47.412378, 8.543775], [47.378081, 8.509281], [47.356672, 8.524776], [47.376698, 8.540572], [47.368383, 8.556897], [47.382004, 8.548204], [47.3844, 8.531897], [47.384912, 8.531974], [47.370161, 8.548805], [47.381597, 8.53719], [47.372843, 8.600781], [47.373311, 8.519209], [47.370418, 8.602184], [47.364611, 8.545935], [47.394137, 8.530481], [47.356731, 8.522328], [47.413012, 8.536711], [47.374895, 8.544812], [47.40197, 8.585385], [47.414095, 8.550423], [47.374537, 8.539891], [47.385331, 8.495613], [47.414114, 8.550317], [47.400248, 8.494213], [47.364033, 8.549021], [47.410045, 8.563708], [47.365823, 8.549985], [47.369023, 8.53795], [47.360104, 8.548807], [47.362319, 8.550508], [47.375058, 8.531454], [47.392544, 8.538131], [47.373153, 8.536963], [47.381252, 8.555366], [47.378962, 8.559596], [47.417203, 8.544338], [47.42873, 8.488853], [47.370639, 8.535508], [47.36456, 8.531517], [47.359701, 8.524957], [47.399693, 8.495885], [47.384322, 8.50746], [47.36877, 8.524797], [47.376663, 8.548993], [47.383528, 8.536488], [47.365783, 8.550368], [47.3949, 8.522999], [47.37258, 8.534766], [47.37265, 8.529233], [47.405714, 8.587917], [47.367692, 8.545509], [47.373906, 8.544778], [47.385728, 8.533156], [47.383183, 8.510086], [47.363483, 8.535096], [47.372694, 8.534067], [47.387901, 8.491929], [47.370146, 8.532452], [47.377291, 8.519727], [47.403381, 8.534565], [47.39179, 8.481661], [47.374901, 8.543196], [47.386514, 8.529], [47.413976, 8.548857], [47.375356, 8.547311], [47.373853, 8.499503], [47.41092, 8.554213], [47.417059, 8.551889], [47.418544, 8.547123], [47.406939, 8.585929], [47.370374, 8.49145], [47.383218, 8.539859], [47.37264, 8.529299], [47.371117, 8.523905], [47.354108, 8.575288], [47.368494, 8.534047], [47.381594, 8.51355], [47.362752, 8.511383], [47.376182, 8.536165], [47.369459, 8.552537], [47.365159, 8.501012], [47.37552, 8.548095], [47.376611, 8.534598], [47.371457, 8.562682], [47.373076, 8.532711], [47.378574, 8.526798], [47.39809, 8.504901], [47.366069, 8.533586], [47.373861, 8.538116], [47.370048, 8.512218], [47.370199, 8.568071], [47.379906, 8.521925], [47.387925, 8.520525], [47.3532, 8.558657], [47.422115, 8.500173], [47.422127, 8.544878], [47.379956, 8.514616], [47.414367, 8.552111], [47.3772, 8.513038], [47.414646, 8.551137], [47.428668, 8.543834], [47.406835, 8.587384], [47.368104, 8.523844], [47.405183, 8.559538], [47.405025, 8.482251], [47.364752, 8.537796], [47.369179, 8.525296], [47.3651, 8.501646], [47.369069, 8.519812], [47.368083, 8.520335], [47.368035, 8.540644], [47.391223, 8.54266], [47.356722, 8.554455], [47.373858, 8.536527], [47.370326, 8.476924], [47.404514, 8.533595], [47.399151, 8.591193], [47.379934, 8.528561], [47.403218, 8.534681], [47.37038, 8.524764], [47.422882, 8.49889], [47.404268, 8.481441], [47.403486, 8.576766], [47.352908, 8.579247], [47.362838, 8.55637], [47.392127, 8.501907], [47.374387, 8.53863], [47.376146, 8.553127], [47.368201, 8.546804], [47.408618, 8.539072], [47.419725, 8.547797], [47.409355, 8.540108], [47.379104, 8.525855], [47.411357, 8.54427], [47.369204, 8.525534], [47.398155, 8.536458], [47.375375, 8.540703], [47.386026, 8.492342], [47.40388, 8.503294], [47.358471, 8.588897], [47.375843, 8.487466], [47.383647, 8.539139], [47.39416, 8.493072], [47.409328, 8.546706], [47.419169, 8.547626], [47.386467, 8.529158], [47.367268, 8.53712], [47.365297, 8.554105], [47.385964, 8.496169], [47.372736, 8.550461], [47.372793, 8.522615], [47.368169, 8.538873], [47.423713, 8.504327], [47.413339, 8.531643], [47.373943, 8.54646], [47.376803, 8.538124], [47.3864, 8.497661], [47.391175, 8.539255], [47.373907, 8.544645], [47.369627, 8.555665], [47.364048, 8.555866], [47.373884, 8.536634], [47.329007, 8.513761], [47.391869, 8.538117], [47.380241, 8.53789], [47.37222, 8.535699], [47.377486, 8.543793], [47.40952, 8.542629], [47.383753, 8.573788], [47.374341, 8.542536], [47.360572, 8.526113], [47.372345, 8.55461], [47.381764, 8.545166], [47.363506, 8.521116], [47.379683, 8.560339], [47.380573, 8.536997], [47.387801, 8.544033], [47.370976, 8.548199], [47.384064, 8.53879], [47.389733, 8.511847], [47.381127, 8.536425], [47.403932, 8.567898], [47.369914, 8.51019], [47.407897, 8.544848], [47.412384, 8.509706], [47.362196, 8.559468], [47.386283, 8.521009], [47.38696, 8.542651], [47.399015, 8.533058], [47.366671, 8.542218], [47.38024, 8.541797], [47.409556, 8.550116], [47.381336, 8.540999], [47.373952, 8.54462], [47.376222, 8.488308], [47.418424, 8.547412], [47.363598, 8.533377], [47.399768, 8.543659], [47.377139, 8.540528], [47.415003, 8.545857], [47.397625, 8.507581], [47.376526, 8.521711], [47.38952, 8.511498], [47.382512, 8.529845], [47.418856, 8.507318], [47.371873, 8.601514], [47.366923, 8.543137], [47.41032, 8.573308], [47.376258, 8.500121], [47.374541, 8.541361], [47.38199, 8.489137], [47.365967, 8.534855], [47.398494, 8.517587], [47.358719, 8.586507], [47.366845, 8.544737], [47.397886, 8.532558], [47.373744, 8.544774], [47.36881, 8.534887], [47.377914, 8.529976], [47.368673, 8.531257], [47.401994, 8.552634], [47.391523, 8.516625], [47.374675, 8.48739], [47.368509, 8.546625], [47.357111, 8.522058], [47.372758, 8.534942], [47.369069, 8.548186], [47.358552, 8.518063], [47.413754, 8.546599], [47.374652, 8.495838], [47.369672, 8.525544], [47.391899, 8.517771], [47.396358, 8.533361], [47.37777, 8.522412], [47.3606, 8.565418], [47.376997, 8.496149], [47.364003, 8.533332], [47.386871, 8.528358], [47.408195, 8.581769], [47.393628, 8.512813], [47.367752, 8.544862], [47.364803, 8.534381], [47.329873, 8.529734], [47.360094, 8.506934], [47.35485, 8.574788], [47.38029, 8.520291], [47.373744, 8.5372], [47.361104, 8.551502], [47.36497, 8.553582], [47.366232, 8.548577], [47.352015, 8.558407], [47.374386, 8.521601], [47.369295, 8.52731], [47.400411, 8.533776], [47.343839, 8.530126], [47.387852, 8.529239], [47.377119, 8.540792], [47.365873, 8.548556], [47.370475, 8.549765], [47.407378, 8.549262], [47.363976, 8.528565], [47.418966, 8.510925], [47.361695, 8.560159], [47.336921, 8.520629], [47.377957, 8.493454], [47.338415, 8.539635], [47.390947, 8.479445], [47.415286, 8.570498], [47.392835, 8.52444], [47.386019, 8.535612], [47.377505, 8.538933], [47.411879, 8.525252], [47.357392, 8.521852], [47.394134, 8.525023], [47.405718, 8.569327], [47.417202, 8.545412], [47.372551, 8.478517], [47.37002, 8.491801], [47.378668, 8.56482], [47.390956, 8.522415], [47.366486, 8.540903], [47.389384, 8.485097], [47.365388, 8.545594], [47.365955, 8.560487], [47.35134, 8.568611], [47.386592, 8.497426], [47.427215, 8.491301], [47.406599, 8.567504], [47.372256, 8.535739], [47.412279, 8.515203], [47.431391, 8.516398], [47.336378, 8.525805], [47.381633, 8.541932], [47.359984, 8.594993], [47.410667, 8.547728], [47.392094, 8.531538], [47.355828, 8.591435], [47.391089, 8.522669], [47.413146, 8.546229], [47.364717, 8.554623], [47.377515, 8.53888], [47.383371, 8.548219], [47.380265, 8.54291], [47.387192, 8.519093], [47.412914, 8.530892], [47.366842, 8.523222], [47.37112, 8.523654], [47.421191, 8.501785], [47.361548, 8.561387], [47.404268, 8.481428], [47.373025, 8.533292], [47.367153, 8.517813], [47.359838, 8.522828], [47.381728, 8.513712], [47.387544, 8.498465], [47.358417, 8.577935], [47.387219, 8.519014], [47.383578, 8.57687], [47.381451, 8.503747], [47.415627, 8.513044], [47.376962, 8.562639], [47.371919, 8.53989], [47.352511, 8.531984], [47.371695, 8.556675], [47.365111, 8.534123], [47.395566, 8.513315], [47.408993, 8.539332], [47.41718, 8.54398], [47.368016, 8.494581], [47.379927, 8.490407], [47.413224, 8.532396], [47.3866, 8.503347], [47.37711, 8.539799], [47.337448, 8.519184], [47.382994, 8.513949], [47.366568, 8.540733], [47.369074, 8.491928], [47.365967, 8.536841], [47.352778, 8.562275], [47.385944, 8.543491], [47.377626, 8.510755], [47.364234, 8.548721], [47.372134, 8.5362], [47.375107, 8.518584], [47.378441, 8.510242], [47.389016, 8.48901], [47.37388, 8.544658], [47.369753, 8.525479], [47.409017, 8.550078], [47.423812, 8.516934], [47.377108, 8.540964], [47.391632, 8.523316], [47.401187, 8.534427], [47.363224, 8.506084], [47.37404, 8.536385], [47.365534, 8.532172], [47.379214, 8.525659], [47.417065, 8.541884], [47.375137, 8.540142], [47.427336, 8.539101], [47.398041, 8.534217], [47.413308, 8.545358], [47.372589, 8.534687], [47.375946, 8.525076], [47.367545, 8.564466], [47.391115, 8.52271], [47.378721, 8.526483], [47.409919, 8.541312], [47.354886, 8.574762], [47.40741, 8.566475], [47.388862, 8.54036], [47.401846, 8.537011], [47.376916, 8.540364], [47.39071, 8.490686], [47.419271, 8.506107], [47.356762, 8.55116], [47.334791, 8.530007], [47.371801, 8.601566], [47.410006, 8.544481], [47.351448, 8.601175], [47.391759, 8.512589], [47.358819, 8.59097], [47.379586, 8.525362], [47.375846, 8.577434], [47.377555, 8.499008], [47.385009, 8.532135], [47.393464, 8.541647], [47.399794, 8.543752], [47.407492, 8.530741], [47.384176, 8.507708], [47.361936, 8.526459], [47.39784, 8.532689], [47.388323, 8.520295], [47.35151, 8.601295], [47.404779, 8.595051], [47.405032, 8.505199], [47.424974, 8.548171], [47.389127, 8.530365], [47.353017, 8.558997], [47.407005, 8.550633], [47.345093, 8.529768], [47.375909, 8.540357], [47.405488, 8.480856], [47.37181, 8.542854], [47.364864, 8.545914], [47.374051, 8.544582], [47.384377, 8.531459], [47.361825, 8.51523], [47.375187, 8.525405], [47.426199, 8.554572], [47.386406, 8.516521], [47.373617, 8.536377], [47.410927, 8.54499], [47.335047, 8.527723], [47.38338, 8.51303], [47.41056, 8.572637], [47.367198, 8.545446], [47.407891, 8.547378], [47.366673, 8.542033], [47.41417, 8.551127], [47.382984, 8.543562], [47.382478, 8.540095], [47.378463, 8.540436], [47.356737, 8.53219], [47.39453, 8.487079], [47.386777, 8.502688], [47.429099, 8.54664], [47.385898, 8.498511], [47.367469, 8.546233], [47.364928, 8.545757], [47.375918, 8.510734], [47.41318, 8.545501], [47.356754, 8.551147], [47.372956, 8.48545], [47.3589, 8.553376], [47.414287, 8.551103], [47.367678, 8.495104], [47.377228, 8.515912], [47.324888, 8.518467], [47.381827, 8.533764], [47.35796, 8.572273], [47.403964, 8.548873], [47.409597, 8.565408], [47.337912, 8.530058], [47.382485, 8.531699], [47.368264, 8.520206], [47.363358, 8.513858], [47.405726, 8.581239], [47.369722, 8.556992], [47.371367, 8.536449], [47.408261, 8.541649], [47.369323, 8.528211], [47.37552, 8.548109], [47.371146, 8.517034], [47.378631, 8.542611], [47.404344, 8.533591], [47.373407, 8.545125], [47.353022, 8.512074], [47.39915, 8.521495], [47.360875, 8.550001], [47.360525, 8.561114], [47.372388, 8.523613], [47.365812, 8.539804], [47.370659, 8.546591], [47.387464, 8.483549], [47.366556, 8.541103], [47.419106, 8.546618], [47.357423, 8.553504], [47.399929, 8.504527], [47.37381, 8.537771], [47.367235, 8.544322], [47.409337, 8.540134], [47.383437, 8.539466], [47.369472, 8.541865], [47.37082, 8.542966], [47.375174, 8.522928], [47.375546, 8.496452], [47.382212, 8.488452], [47.378496, 8.523645], [47.360495, 8.552085], [47.339112, 8.519125], [47.380627, 8.582396], [47.352022, 8.525621], [47.378647, 8.546558], [47.365606, 8.555727], [47.369943, 8.529177], [47.378864, 8.518898], [47.389715, 8.478388], [47.412021, 8.524487], [47.385831, 8.496007], [47.37336, 8.533074], [47.335982, 8.518135], [47.375542, 8.526882], [47.409627, 8.549296], [47.368845, 8.519701], [47.368261, 8.538663], [47.398111, 8.532536], [47.385035, 8.516957], [47.373017, 8.531359], [47.377324, 8.562461], [47.369162, 8.528023], [47.396299, 8.508958], [47.373814, 8.502773], [47.364111, 8.5475], [47.417136, 8.541912], [47.37718, 8.540052], [47.405161, 8.593748], [47.39122, 8.523109], [47.413876, 8.544243], [47.367342, 8.544443], [47.419203, 8.546832], [47.335374, 8.527306], [47.391045, 8.522509], [47.374758, 8.540333], [47.366699, 8.54962], [47.370382, 8.515032], [47.389633, 8.511937], [47.411471, 8.526569], [47.404292, 8.5605], [47.382304, 8.54037], [47.403598, 8.534451], [47.39173, 8.51084], [47.375004, 8.547515], [47.370986, 8.530192], [47.374901, 8.493142], [47.378219, 8.50992], [47.379361, 8.537726], [47.401794, 8.548205], [47.373377, 8.52746], [47.389349, 8.48507], [47.362233, 8.55939], [47.413999, 8.478624], [47.343688, 8.52999], [47.374692, 8.538729], [47.371178, 8.514545], [47.378495, 8.575186], [47.386778, 8.547561], [47.372483, 8.513446], [47.39865, 8.539224], [47.374623, 8.512588], [47.374755, 8.520642], [47.365442, 8.598739], [47.411401, 8.56208], [47.377178, 8.526982], [47.42255, 8.536404], [47.391681, 8.518972], [47.401256, 8.54516], [47.373617, 8.536377], [47.411927, 8.543911], [47.40414, 8.58881], [47.376731, 8.538096], [47.399707, 8.543445], [47.396589, 8.528875], [47.331902, 8.516809], [47.401993, 8.495202], [47.368583, 8.51207], [47.367621, 8.545402], [47.409584, 8.549971], [47.370179, 8.548818], [47.357544, 8.521881], [47.376002, 8.53816], [47.42255, 8.536418], [47.411179, 8.526086], [47.41335, 8.532398], [47.357849, 8.523013], [47.357637, 8.521605], [47.38154, 8.513628], [47.390759, 8.523338], [47.414944, 8.541654], [47.377129, 8.541627], [47.372972, 8.531371], [47.401111, 8.51772], [47.393405, 8.499906], [47.354526, 8.526254], [47.381207, 8.537553]], [[47.389562, 8.521459], [47.379468, 8.537821], [47.39055, 8.509068], [47.37746, 8.522829], [47.38656, 8.518339], [47.376285, 8.516701], [47.376455, 8.549015], [47.393752, 8.512934], [47.414913, 8.561651], [47.402449, 8.536043], [47.406063, 8.580849], [47.378556, 8.540107], [47.35167, 8.525786], [47.376182, 8.536244], [47.414249, 8.546623], [47.35483, 8.601182], [47.388354, 8.514004], [47.410552, 8.572624], [47.384773, 8.509336], [47.37773, 8.538064], [47.388334, 8.536269], [47.376102, 8.543684], [47.3795, 8.525877], [47.360316, 8.523712], [47.414225, 8.551009], [47.403962, 8.48545], [47.377125, 8.535376], [47.356989, 8.600263], [47.364868, 8.56678], [47.366307, 8.519862], [47.374155, 8.538387], [47.386193, 8.518093], [47.366934, 8.545719], [47.367749, 8.496218], [47.401348, 8.543956], [47.375909, 8.541257], [47.388632, 8.483731], [47.370045, 8.525035], [47.370759, 8.54834], [47.364356, 8.531234], [47.411312, 8.562039], [47.374014, 8.544767], [47.366885, 8.518589], [47.383008, 8.499739], [47.410798, 8.537779], [47.426987, 8.546477], [47.38769, 8.486401], [47.417347, 8.513834], [47.413262, 8.532198], [47.374474, 8.541784], [47.364347, 8.548141], [47.36533, 8.531837], [47.397708, 8.53327], [47.403335, 8.486166], [47.357638, 8.554594], [47.372292, 8.535674], [47.359136, 8.521993], [47.374486, 8.539533], [47.359348, 8.523361], [47.363725, 8.533273], [47.414313, 8.551143], [47.36905, 8.550212], [47.414077, 8.546752], [47.384392, 8.488125], [47.363672, 8.498387], [47.403205, 8.498472], [47.373607, 8.553392], [47.373471, 8.553535], [47.412359, 8.547617], [47.339539, 8.528265], [47.362048, 8.503876], [47.393864, 8.489993], [47.383104, 8.473319], [47.409116, 8.544356], [47.376029, 8.527647], [47.385254, 8.48434], [47.372055, 8.48763], [47.351467, 8.576754], [47.361848, 8.550816], [47.379043, 8.494694], [47.372708, 8.521117], [47.410136, 8.544987], [47.387092, 8.519171], [47.374108, 8.53391], [47.373774, 8.519669], [47.39776, 8.533496], [47.387183, 8.497716], [47.367227, 8.559164], [47.407818, 8.547456], [47.386015, 8.526579], [47.363125, 8.567577], [47.372394, 8.515284], [47.364964, 8.545771], [47.391576, 8.538707], [47.361038, 8.548045], [47.360697, 8.566506], [47.370992, 8.561507], [47.369031, 8.540969], [47.373016, 8.554068], [47.363073, 8.533671], [47.366883, 8.535073], [47.415495, 8.48133], [47.410789, 8.545318], [47.424538, 8.548639], [47.374985, 8.492826], [47.37453, 8.527298], [47.367626, 8.506609], [47.39865, 8.539197], [47.368633, 8.559829], [47.3642, 8.555975], [47.406866, 8.586935], [47.369342, 8.557235], [47.385188, 8.536933], [47.361388, 8.522568], [47.366936, 8.558615], [47.373273, 8.525154], [47.373841, 8.536487], [47.337635, 8.528887], [47.385, 8.532161], [47.383481, 8.573081], [47.353699, 8.556338], [47.368925, 8.492534], [47.364574, 8.558207], [47.341972, 8.530617], [47.377205, 8.540278], [47.370406, 8.537251], [47.370244, 8.513374], [47.374583, 8.518838], [47.386132, 8.548316], [47.375757, 8.535454], [47.384922, 8.529908], [47.376296, 8.526116], [47.378297, 8.530368], [47.389255, 8.496353], [47.371781, 8.488075], [47.394792, 8.525818], [47.395757, 8.54543], [47.386408, 8.51823], [47.378519, 8.540133], [47.357475, 8.585844], [47.386748, 8.489178], [47.38868, 8.51858], [47.394002, 8.523722], [47.357899, 8.520552], [47.398009, 8.531885], [47.364737, 8.554398], [47.400194, 8.546211], [47.377897, 8.545973], [47.377805, 8.507978], [47.36606, 8.540272], [47.418624, 8.547191], [47.411082, 8.545775], [47.39593, 8.492366], [47.381951, 8.509094], [47.373192, 8.503926], [47.362478, 8.53383], [47.372367, 8.517257], [47.359578, 8.57698], [47.406602, 8.551459], [47.36391, 8.531755], [47.373524, 8.534839], [47.360111, 8.550899], [47.419542, 8.548045], [47.376158, 8.540653], [47.410167, 8.542708], [47.41678, 8.536829], [47.414777, 8.560919], [47.391306, 8.537721], [47.391651, 8.513541], [47.409063, 8.545269], [47.366375, 8.499871], [47.399647, 8.468103], [47.367961, 8.532315], [47.380676, 8.525172], [47.344492, 8.53051], [47.398999, 8.505886], [47.396703, 8.523525], [47.375634, 8.487767], [47.377497, 8.538906], [47.383432, 8.549452], [47.389252, 8.516128], [47.343038, 8.53588], [47.39236, 8.516549], [47.41219, 8.54654], [47.412443, 8.546439], [47.375031, 8.539941], [47.408588, 8.580174], [47.41769, 8.546098], [47.378442, 8.510123], [47.412501, 8.523224], [47.399656, 8.543193], [47.374536, 8.539958], [47.33991, 8.529953], [47.376551, 8.541893], [47.363429, 8.554768], [47.405645, 8.549955], [47.367009, 8.544476], [47.370288, 8.513441], [47.386951, 8.51881], [47.356664, 8.52369], [47.370088, 8.511742], [47.37396, 8.540992], [47.377549, 8.543767], [47.338914, 8.538203], [47.379379, 8.544269], [47.376969, 8.543318], [47.396144, 8.527462], [47.359673, 8.516471], [47.388751, 8.472475], [47.369553, 8.52856], [47.393326, 8.524874], [47.377539, 8.54198], [47.369714, 8.509418], [47.391173, 8.489238], [47.393755, 8.545044], [47.373305, 8.535086], [47.417143, 8.557179], [47.394135, 8.54488], [47.381295, 8.517702], [47.374533, 8.549743], [47.370396, 8.515429], [47.374846, 8.515665], [47.368752, 8.524757], [47.34139, 8.53038], [47.368355, 8.541048], [47.396898, 8.509368], [47.369921, 8.552269], [47.386355, 8.535354], [47.373563, 8.525001], [47.397962, 8.507137], [47.378768, 8.542349], [47.385682, 8.548347], [47.357419, 8.521826], [47.380292, 8.512425], [47.409332, 8.545368], [47.376852, 8.543329], [47.365216, 8.545736], [47.411142, 8.526138], [47.383439, 8.549558], [47.366523, 8.545419], [47.362751, 8.548571], [47.381427, 8.503482], [47.370161, 8.548791], [47.391233, 8.487518], [47.368312, 8.523742], [47.375623, 8.526831], [47.368603, 8.49924], [47.367101, 8.544306], [47.390451, 8.491449], [47.388642, 8.52556], [47.407756, 8.565091], [47.359143, 8.586436], [47.377705, 8.525403], [47.38337, 8.530459], [47.376858, 8.491591], [47.326001, 8.513925], [47.414481, 8.51538], [47.374424, 8.527137], [47.358312, 8.583996], [47.3677, 8.523769], [47.384494, 8.547501], [47.408389, 8.541413], [47.406547, 8.584622], [47.355447, 8.532521], [47.389673, 8.524005], [47.377197, 8.540145], [47.397001, 8.480305], [47.37165, 8.512105], [47.360486, 8.596976], [47.371817, 8.525972], [47.393278, 8.526118], [47.377683, 8.538261], [47.357024, 8.553853], [47.348303, 8.56267], [47.399899, 8.545013], [47.386749, 8.523111], [47.417998, 8.559847], [47.361841, 8.560864], [47.350119, 8.560922], [47.359745, 8.599039], [47.387133, 8.485384], [47.376834, 8.548917], [47.397988, 8.534136], [47.393785, 8.529639], [47.391371, 8.53755], [47.367081, 8.536004], [47.32955, 8.529714], [47.39392, 8.499704], [47.38687, 8.490544], [47.355322, 8.507474], [47.412623, 8.529362], [47.377626, 8.519522], [47.399399, 8.542803], [47.371993, 8.489483], [47.370167, 8.551003], [47.382091, 8.551358], [47.364436, 8.536942], [47.369925, 8.529151], [47.378078, 8.483114], [47.41379, 8.509376], [47.407087, 8.580076], [47.36723, 8.501821], [47.369069, 8.537911], [47.38689, 8.5022], [47.322572, 8.501487], [47.412167, 8.546102], [47.397532, 8.531888], [47.395056, 8.484586], [47.344122, 8.528795], [47.385897, 8.538033], [47.37299, 8.531332], [47.36836, 8.524418], [47.339094, 8.519125], [47.377139, 8.547123], [47.409399, 8.538267], [47.386504, 8.529092], [47.370877, 8.534996], [47.366816, 8.545822], [47.399409, 8.50139], [47.368289, 8.524337], [47.37795, 8.530003], [47.378734, 8.54219], [47.36396, 8.530299], [47.364774, 8.566327], [47.370805, 8.544435], [47.378095, 8.483194], [47.406383, 8.573012], [47.363685, 8.547849], [47.369511, 8.526362], [47.375631, 8.559896], [47.333803, 8.528915], [47.400126, 8.494794], [47.360271, 8.534209], [47.409425, 8.549703], [47.41445, 8.517778], [47.351599, 8.525652], [47.414693, 8.561209], [47.412178, 8.550555], [47.378152, 8.527677], [47.379095, 8.518267], [47.397024, 8.530434], [47.373019, 8.54713], [47.375397, 8.527011], [47.418891, 8.507411], [47.327374, 8.529538], [47.383079, 8.529844], [47.405681, 8.585862], [47.426017, 8.547292], [47.357994, 8.519945], [47.367499, 8.552483], [47.398503, 8.534809], [47.423805, 8.496297], [47.409399, 8.53828], [47.376845, 8.513587], [47.358221, 8.571405], [47.397026, 8.530275], [47.337092, 8.519693], [47.397215, 8.491517], [47.393283, 8.492644], [47.371724, 8.515721], [47.409327, 8.546759], [47.407499, 8.547039], [47.376956, 8.512265], [47.376967, 8.543544], [47.366891, 8.536106], [47.414592, 8.559537], [47.371621, 8.547564], [47.326952, 8.529503], [47.414575, 8.551095], [47.373029, 8.547077], [47.378433, 8.510149], [47.383376, 8.484078], [47.356478, 8.535772], [47.373088, 8.550282], [47.375002, 8.534472], [47.398062, 8.474418], [47.375283, 8.544634], [47.415098, 8.562052], [47.40382, 8.486268], [47.371243, 8.523007], [47.376095, 8.488438], [47.373463, 8.546795], [47.430908, 8.550297], [47.378128, 8.528272], [47.415461, 8.562736], [47.36537, 8.530461], [47.376805, 8.535039], [47.385899, 8.517849], [47.411484, 8.506839], [47.370466, 8.549778], [47.364042, 8.515738], [47.381454, 8.503403], [47.367829, 8.53966], [47.386619, 8.529267], [47.415176, 8.547477], [47.368663, 8.546509], [47.407705, 8.584886], [47.423348, 8.549794], [47.364114, 8.566618], [47.422748, 8.550471], [47.413415, 8.48056], [47.35558, 8.535635], [47.389408, 8.527271], [47.41932, 8.50575], [47.404222, 8.562207], [47.427224, 8.491249], [47.375212, 8.547414], [47.374377, 8.54153], [47.407887, 8.582915], [47.390836, 8.545513], [47.37885, 8.528962], [47.401521, 8.587111], [47.403235, 8.516557], [47.411646, 8.509784], [47.414139, 8.536443], [47.406577, 8.482785], [47.353587, 8.576138], [47.378031, 8.528085], [47.408177, 8.555016], [47.364568, 8.521084], [47.407888, 8.478067], [47.394828, 8.523951], [47.393486, 8.473163], [47.358268, 8.584842], [47.379205, 8.525672], [47.379212, 8.544795], [47.363612, 8.552614], [47.412277, 8.542116], [47.372745, 8.534465], [47.385003, 8.508718], [47.38494, 8.50881], [47.326315, 8.514923], [47.375423, 8.564633], [47.377035, 8.520185], [47.382655, 8.514631], [47.326361, 8.518695], [47.378305, 8.540923], [47.361031, 8.577382], [47.383936, 8.538986], [47.371057, 8.530286], [47.389536, 8.489233], [47.388638, 8.543997], [47.36512, 8.53411], [47.387008, 8.539474], [47.414522, 8.550988], [47.375428, 8.485684], [47.37785, 8.507979], [47.401912, 8.500142], [47.405369, 8.504742], [47.377169, 8.526995], [47.414411, 8.518996], [47.382504, 8.529713], [47.382487, 8.551366], [47.377531, 8.543767], [47.369041, 8.537937], [47.363721, 8.54781], [47.373849, 8.536567], [47.398516, 8.494815], [47.384793, 8.524554], [47.374886, 8.544732], [47.385815, 8.520099], [47.425323, 8.494578], [47.366711, 8.544642], [47.344252, 8.534991], [47.414118, 8.550847], [47.414118, 8.550847], [47.424081, 8.538106], [47.362104, 8.559718], [47.370717, 8.51672], [47.378566, 8.575214], [47.395192, 8.510036], [47.3558, 8.572399], [47.375296, 8.48437], [47.428228, 8.545562], [47.338453, 8.529963], [47.398588, 8.532559], [47.399065, 8.521957], [47.365203, 8.547086], [47.373494, 8.529382], [47.370188, 8.548805], [47.378174, 8.509932], [47.384444, 8.531911], [47.394437, 8.525294], [47.389482, 8.546969], [47.389745, 8.478031], [47.36436, 8.555224], [47.410317, 8.542009], [47.405873, 8.481075], [47.386795, 8.522993], [47.387389, 8.487945], [47.39441, 8.519531], [47.372409, 8.521442], [47.371869, 8.526224], [47.386793, 8.534714], [47.371521, 8.528786], [47.391627, 8.517117], [47.370983, 8.53141], [47.339519, 8.518922], [47.338342, 8.532117], [47.388574, 8.491081], [47.386954, 8.473288], [47.382108, 8.528791], [47.365487, 8.552163], [47.376282, 8.555765], [47.378281, 8.512874], [47.400161, 8.590976], [47.364356, 8.531155], [47.380545, 8.517052], [47.389439, 8.511523], [47.369786, 8.508426], [47.409302, 8.57526], [47.398849, 8.533465], [47.41934, 8.50644], [47.374439, 8.525588], [47.388642, 8.525547], [47.369997, 8.510973], [47.39319, 8.479052], [47.365475, 8.564555], [47.430065, 8.545414], [47.373286, 8.531457], [47.370937, 8.531608], [47.370713, 8.535284], [47.383235, 8.515133], [47.385092, 8.501052], [47.381762, 8.540623], [47.370397, 8.507578], [47.401224, 8.534322], [47.381487, 8.503748], [47.3795, 8.559726], [47.378872, 8.542749], [47.414373, 8.546811], [47.387979, 8.485361], [47.421215, 8.500195], [47.409391, 8.53824], [47.383079, 8.484046], [47.408793, 8.555546], [47.39336, 8.493057], [47.39378, 8.498284], [47.370969, 8.564711], [47.392082, 8.51751], [47.357267, 8.521743], [47.390518, 8.479119], [47.367083, 8.523386], [47.406235, 8.480817], [47.365055, 8.562428], [47.414826, 8.551154], [47.397829, 8.47636], [47.364543, 8.53145], [47.366756, 8.547423], [47.429845, 8.542997], [47.381164, 8.53726], [47.382066, 8.550231], [47.387796, 8.471649], [47.384358, 8.548518], [47.359508, 8.522557], [47.368011, 8.535665], [47.361694, 8.574007], [47.379636, 8.546618], [47.36603, 8.504141], [47.393164, 8.488893], [47.365119, 8.534176], [47.377354, 8.529329], [47.373706, 8.518383], [47.354152, 8.576295], [47.408813, 8.545993], [47.373027, 8.562159], [47.363784, 8.535552], [47.371915, 8.473234], [47.354894, 8.574881], [47.370574, 8.529972], [47.358473, 8.551884], [47.390304, 8.54941], [47.371678, 8.515866], [47.368216, 8.495274], [47.375209, 8.515328], [47.389801, 8.521875], [47.418699, 8.507752], [47.355595, 8.560243], [47.388318, 8.523673], [47.378947, 8.544353], [47.362638, 8.548224], [47.388086, 8.485456], [47.394231, 8.47527], [47.385007, 8.541843], [47.349987, 8.56984], [47.359389, 8.577016], [47.393112, 8.524618], [47.431328, 8.516463], [47.37541, 8.530349], [47.364851, 8.5667], [47.405147, 8.564201], [47.399275, 8.53309], [47.338416, 8.530055], [47.408556, 8.546531], [47.368661, 8.543901], [47.36198, 8.568757], [47.386241, 8.498359], [47.377857, 8.559413], [47.369025, 8.532111], [47.402832, 8.580978], [47.409674, 8.563952], [47.391107, 8.511079], [47.374274, 8.542958], [47.377196, 8.540304], [47.386447, 8.496483], [47.330144, 8.529687], [47.40863, 8.543472], [47.378767, 8.515837], [47.414209, 8.518528], [47.414035, 8.545426], [47.37431, 8.490892], [47.414605, 8.571133], [47.357129, 8.522045], [47.419152, 8.506409], [47.365162, 8.553189], [47.378722, 8.510923], [47.378369, 8.528463], [47.387789, 8.488443], [47.377481, 8.535794], [47.392459, 8.532857], [47.375499, 8.541831], [47.376804, 8.537012], [47.380044, 8.536827], [47.380167, 8.535227], [47.379219, 8.54698], [47.358972, 8.51643], [47.373577, 8.534919], [47.35945, 8.535423], [47.374537, 8.539865], [47.357571, 8.554023], [47.349442, 8.527382], [47.369209, 8.527905], [47.396485, 8.504339], [47.397695, 8.51263], [47.374457, 8.538791], [47.374554, 8.541825], [47.377676, 8.525614], [47.375676, 8.516437], [47.378298, 8.543584], [47.368781, 8.524625], [47.352161, 8.558172], [47.373546, 8.534415], [47.35871, 8.527041], [47.368233, 8.56125], [47.389254, 8.527387], [47.337314, 8.524765], [47.356394, 8.523658], [47.367381, 8.534726], [47.360447, 8.531763], [47.373691, 8.537106], [47.383587, 8.50914], [47.373861, 8.524808], [47.368459, 8.524367], [47.405242, 8.555299], [47.359315, 8.569919], [47.369222, 8.565879], [47.391037, 8.52247], [47.383771, 8.547843], [47.378439, 8.563372], [47.379108, 8.548143], [47.381799, 8.51664], [47.371681, 8.535608], [47.379468, 8.537835], [47.419202, 8.546898], [47.382823, 8.575053], [47.410731, 8.55234], [47.402163, 8.584051], [47.375645, 8.525454], [47.381093, 8.535259], [47.366448, 8.544848], [47.428292, 8.545497], [47.399362, 8.542882], [47.381543, 8.506517], [47.394717, 8.478287], [47.409151, 8.508223], [47.380473, 8.538028], [47.381924, 8.529197], [47.366938, 8.544421], [47.411008, 8.545045], [47.379369, 8.528298], [47.384445, 8.531858], [47.370525, 8.511182], [47.381193, 8.491637], [47.427456, 8.546314], [47.370224, 8.557134], [47.429517, 8.54531], [47.378616, 8.527117], [47.375159, 8.52363], [47.37379, 8.536129], [47.377465, 8.51936], [47.359089, 8.516432], [47.388478, 8.486814], [47.373568, 8.525372], [47.34321, 8.535764], [47.373682, 8.533266], [47.380052, 8.512115], [47.364302, 8.5463], [47.360965, 8.534925], [47.405461, 8.503512], [47.409557, 8.537753], [47.41978, 8.504659], [47.385866, 8.508802], [47.395786, 8.545232], [47.376051, 8.49135], [47.38543, 8.530448], [47.398889, 8.509991], [47.372558, 8.478702], [47.393937, 8.5249], [47.348976, 8.563796], [47.395095, 8.5223], [47.370899, 8.559969], [47.405632, 8.588008], [47.363923, 8.534138], [47.370872, 8.559915], [47.430255, 8.54058], [47.410558, 8.527054], [47.395697, 8.522352], [47.421565, 8.549996], [47.376436, 8.538858], [47.35692, 8.522239], [47.40204, 8.498011], [47.353571, 8.511966], [47.356978, 8.552157], [47.380598, 8.500724], [47.410602, 8.550814], [47.355183, 8.530954], [47.358523, 8.521107], [47.390162, 8.510213], [47.353647, 8.554311], [47.369616, 8.528601], [47.378396, 8.539825], [47.410928, 8.564509], [47.368924, 8.528521], [47.376891, 8.544879], [47.359369, 8.507582], [47.379038, 8.542355], [47.368877, 8.513386], [47.379098, 8.500416], [47.369945, 8.48028], [47.368919, 8.523291], [47.428994, 8.543549], [47.377349, 8.498911], [47.34105, 8.530161], [47.414863, 8.51499], [47.380927, 8.518556], [47.375581, 8.520831], [47.398801, 8.542301], [47.416537, 8.522551], [47.415899, 8.546246], [47.399222, 8.511879], [47.413788, 8.536449], [47.35342, 8.51183], [47.365533, 8.598701], [47.396042, 8.544853], [47.352909, 8.573661], [47.358333, 8.588219], [47.389624, 8.550972], [47.371825, 8.473272], [47.420742, 8.508522], [47.39141, 8.523007], [47.390053, 8.491693], [47.3728, 8.550276], [47.397861, 8.533286], [47.391367, 8.536106], [47.414008, 8.525534], [47.403513, 8.57674], [47.374912, 8.553353], [47.377715, 8.498203], [47.398741, 8.50653], [47.389108, 8.527649], [47.401995, 8.499892], [47.360321, 8.548692], [47.386393, 8.497528], [47.336772, 8.525959], [47.387922, 8.486644], [47.383061, 8.530797], [47.379159, 8.518149], [47.422717, 8.495255], [47.360505, 8.525635], [47.383458, 8.531586], [47.367939, 8.549765], [47.360635, 8.570106], [47.376034, 8.535685], [47.364655, 8.568324], [47.340991, 8.52406], [47.379233, 8.527474], [47.430745, 8.550413], [47.370953, 8.560844], [47.400798, 8.548794], [47.354607, 8.531008], [47.375543, 8.526736], [47.364001, 8.551404], [47.383993, 8.57774], [47.352356, 8.509109], [47.367494, 8.541732], [47.406453, 8.49537], [47.382204, 8.553585], [47.383021, 8.575057], [47.378953, 8.515126], [47.390824, 8.474118], [47.43019, 8.549261], [47.407115, 8.536325], [47.40548, 8.480736], [47.385869, 8.492776], [47.398573, 8.493491], [47.390483, 8.524909], [47.3306, 8.515592], [47.370321, 8.547073], [47.377751, 8.541467], [47.41193, 8.563205], [47.375455, 8.545432], [47.377226, 8.539907], [47.368882, 8.554591], [47.408727, 8.549357], [47.415282, 8.547718], [47.390509, 8.50863], [47.369385, 8.548126], [47.367382, 8.494052], [47.362312, 8.526665], [47.373754, 8.536154], [47.381881, 8.516549], [47.393523, 8.51244], [47.376938, 8.535253], [47.371648, 8.520963], [47.405962, 8.481103], [47.349982, 8.56117], [47.400774, 8.499682], [47.425634, 8.49404], [47.386057, 8.533547], [47.390942, 8.522044], [47.384727, 8.531533], [47.40678, 8.557187], [47.414744, 8.561475], [47.384558, 8.54831], [47.364112, 8.530329], [47.384454, 8.531872], [47.38609, 8.528197], [47.353619, 8.55439], [47.351873, 8.572924], [47.360234, 8.56602], [47.36996, 8.51975], [47.379272, 8.515635], [47.360092, 8.595882], [47.369538, 8.555544], [47.359504, 8.557863], [47.382714, 8.531346], [47.430736, 8.550412], [47.386176, 8.518], [47.427492, 8.546395], [47.369619, 8.553666], [47.376293, 8.538776], [47.377959, 8.530043], [47.354012, 8.601191], [47.423971, 8.502742], [47.405237, 8.593392], [47.349442, 8.534039], [47.423794, 8.516947], [47.374478, 8.546101], [47.395511, 8.535423], [47.370446, 8.512954], [47.352127, 8.530759], [47.369002, 8.502783], [47.388475, 8.473225], [47.410468, 8.542198], [47.384222, 8.525973], [47.371752, 8.522369], [47.398237, 8.494822], [47.376958, 8.569499], [47.375547, 8.529213], [47.371994, 8.53204], [47.406236, 8.547344], [47.379252, 8.537857], [47.370197, 8.548805], [47.3438, 8.535207], [47.369717, 8.518779], [47.401266, 8.54785], [47.390508, 8.484232], [47.393221, 8.52458], [47.410522, 8.572875], [47.389886, 8.538593], [47.366333, 8.5409], [47.373613, 8.553723], [47.366811, 8.544525], [47.385916, 8.498538], [47.405613, 8.570796], [47.361294, 8.554207], [47.377081, 8.54197], [47.403184, 8.497795], [47.368632, 8.547806], [47.380108, 8.490278], [47.366261, 8.520907], [47.407509, 8.492038], [47.427421, 8.546287], [47.37834, 8.528714], [47.3937, 8.510774], [47.375063, 8.528064], [47.370143, 8.548818], [47.324598, 8.515828], [47.373075, 8.524236], [47.393426, 8.524744], [47.383852, 8.573724], [47.387247, 8.518922], [47.399204, 8.538705], [47.360588, 8.501172], [47.3951, 8.546503], [47.385115, 8.495556], [47.356236, 8.572871], [47.404278, 8.484383], [47.351679, 8.488857], [47.369963, 8.536593], [47.377829, 8.511236], [47.393952, 8.521443], [47.358212, 8.526502], [47.377609, 8.538458], [47.392706, 8.539075], [47.340198, 8.529932], [47.395777, 8.511836], [47.376967, 8.542564], [47.422705, 8.540927], [47.371471, 8.556552], [47.349165, 8.562874], [47.391086, 8.536286], [47.405832, 8.551059], [47.375607, 8.514118], [47.38859, 8.531109], [47.384364, 8.489144], [47.363431, 8.533837], [47.370125, 8.548817], [47.382171, 8.536394], [47.394688, 8.525458], [47.368313, 8.560418], [47.367759, 8.53942], [47.377669, 8.518715], [47.420941, 8.507492], [47.369455, 8.520799], [47.365424, 8.545661], [47.364533, 8.521044], [47.372589, 8.517553], [47.364568, 8.56623], [47.409709, 8.537836], [47.369589, 8.525675], [47.375802, 8.488022], [47.383237, 8.506127], [47.37017, 8.548805], [47.396907, 8.51321], [47.409575, 8.545293], [47.359408, 8.585078], [47.366797, 8.553488], [47.377972, 8.529554], [47.353843, 8.526227], [47.368163, 8.496173], [47.378138, 8.529107], [47.377701, 8.538182], [47.39956, 8.547576], [47.378761, 8.575536], [47.331397, 8.513068], [47.368805, 8.528704], [47.387686, 8.490812], [47.36006, 8.550646], [47.419197, 8.50637], [47.381022, 8.535258], [47.368513, 8.499185], [47.42515, 8.545802], [47.382697, 8.543543], [47.398641, 8.539211], [47.358433, 8.5551], [47.381772, 8.545246], [47.410664, 8.54521], [47.3694, 8.541811], [47.369483, 8.466567], [47.372683, 8.535258], [47.399484, 8.5405], [47.402875, 8.502108], [47.409623, 8.544062], [47.365459, 8.552308], [47.368646, 8.54643], [47.365111, 8.53411], [47.37126, 8.515367], [47.367903, 8.556265], [47.375181, 8.518373], [47.382976, 8.513882], [47.391003, 8.521316], [47.378687, 8.574859], [47.373353, 8.531962], [47.364466, 8.546144], [47.371093, 8.547275], [47.367566, 8.496532], [47.363897, 8.531251], [47.354037, 8.599616], [47.369726, 8.525532], [47.360024, 8.595457], [47.339689, 8.519044], [47.370461, 8.539993], [47.398148, 8.465755], [47.391637, 8.518905], [47.39603, 8.515656], [47.395994, 8.515655], [47.377301, 8.512828], [47.388167, 8.491378], [47.394447, 8.525268], [47.37806, 8.52786], [47.410575, 8.55728], [47.366473, 8.545034], [47.398647, 8.539595], [47.3854, 8.53646], [47.401324, 8.54181], [47.381785, 8.536359], [47.41115, 8.526231], [47.413843, 8.554247], [47.359142, 8.522218], [47.381291, 8.514259], [47.38673, 8.483244], [47.39119, 8.489292], [47.40972, 8.479375], [47.377441, 8.543805], [47.350119, 8.560961], [47.425792, 8.542608], [47.373232, 8.53519], [47.369475, 8.506142], [47.392183, 8.538256], [47.361807, 8.515282], [47.366231, 8.55709], [47.363086, 8.552099], [47.410378, 8.536617], [47.372893, 8.54714], [47.334471, 8.539038], [47.362792, 8.547168], [47.387858, 8.52471], [47.394017, 8.525021], [47.370398, 8.514278], [47.347005, 8.526379], [47.374014, 8.544753], [47.41323, 8.545899], [47.388266, 8.526347], [47.371879, 8.522279], [47.414015, 8.546671], [47.378503, 8.525764], [47.409118, 8.545111], [47.370236, 8.602419], [47.409008, 8.550038], [47.400619, 8.544074], [47.390959, 8.507686], [47.369688, 8.54187], [47.354781, 8.526842], [47.371863, 8.522119], [47.377072, 8.513326], [47.352988, 8.559208], [47.378512, 8.575213], [47.353373, 8.602117], [47.392, 8.51274], [47.409915, 8.479657], [47.375, 8.545039], [47.403495, 8.583152], [47.38726, 8.533757], [47.374154, 8.544187], [47.376689, 8.511981], [47.375402, 8.528322], [47.36253, 8.56583], [47.373832, 8.53646], [47.375441, 8.518484], [47.390594, 8.539813], [47.336531, 8.537228], [47.366424, 8.552024], [47.374992, 8.545012], [47.370367, 8.548902], [47.401778, 8.500086], [47.419411, 8.506547], [47.403516, 8.534581], [47.338122, 8.530671], [47.40456, 8.484004], [47.363213, 8.51686], [47.355104, 8.558935], [47.382774, 8.53736], [47.405246, 8.570589], [47.404184, 8.560524], [47.398163, 8.53459], [47.368549, 8.523482], [47.415619, 8.569564], [47.378055, 8.529383], [47.370293, 8.535937], [47.39903, 8.533283], [47.369504, 8.510751], [47.393629, 8.511713], [47.389908, 8.51234], [47.389021, 8.496309], [47.411669, 8.48462], [47.386187, 8.498372], [47.374502, 8.538884], [47.391926, 8.511069], [47.372247, 8.535673], [47.367384, 8.491815], [47.370396, 8.537409], [47.378652, 8.527144], [47.384434, 8.503211], [47.400296, 8.518286], [47.405668, 8.591639], [47.387863, 8.49806], [47.373422, 8.550157], [47.383385, 8.531677], [47.398692, 8.539503], [47.369446, 8.541759], [47.419178, 8.547613], [47.374862, 8.51879], [47.391564, 8.54276], [47.383281, 8.530377], [47.38219, 8.547559], [47.379375, 8.521954], [47.405964, 8.558746], [47.363241, 8.554684], [47.352878, 8.531237], [47.345467, 8.529193], [47.402154, 8.508082], [47.375943, 8.577595], [47.355358, 8.559602], [47.382492, 8.537632], [47.354432, 8.556763], [47.400862, 8.499922], [47.366812, 8.55836], [47.38949, 8.490278], [47.360466, 8.594421], [47.389651, 8.511964], [47.411214, 8.526206], [47.385161, 8.537012], [47.40852, 8.54657], [47.398229, 8.527624], [47.384248, 8.496002], [47.364586, 8.53161], [47.400133, 8.543163], [47.369606, 8.528654], [47.404697, 8.483795], [47.359251, 8.569957], [47.357745, 8.514883], [47.385292, 8.543941], [47.388228, 8.519869], [47.39117, 8.522618], [47.406885, 8.586829], [47.382664, 8.514605], [47.367866, 8.55359], [47.380548, 8.489373], [47.363092, 8.517294], [47.37496, 8.551129], [47.361746, 8.560385], [47.38676, 8.547521], [47.390827, 8.52179], [47.391234, 8.487412], [47.380765, 8.512805], [47.405165, 8.564188], [47.369424, 8.537455], [47.406647, 8.503654], [47.383495, 8.498702], [47.38418, 8.511126], [47.411904, 8.506198], [47.405637, 8.585689], [47.376582, 8.536676], [47.410733, 8.555838], [47.381584, 8.529058], [47.367401, 8.490001], [47.373016, 8.554055], [47.373316, 8.55373], [47.37302, 8.532908], [47.403583, 8.494504], [47.409565, 8.546393], [47.399749, 8.467853], [47.349602, 8.561387], [47.383102, 8.530228], [47.422864, 8.550632], [47.375835, 8.53768], [47.358085, 8.557621], [47.378288, 8.541743], [47.409683, 8.575904], [47.371907, 8.536474], [47.367367, 8.528555], [47.398659, 8.532627], [47.377985, 8.530084], [47.366557, 8.540931], [47.354788, 8.574707], [47.386996, 8.481606], [47.402699, 8.537228], [47.357259, 8.552878], [47.380681, 8.534178], [47.398551, 8.472043], [47.37813, 8.526193], [47.37056, 8.549356], [47.398618, 8.52934], [47.375639, 8.521296], [47.402034, 8.497667], [47.373558, 8.513971], [47.390738, 8.488581], [47.38073, 8.534695], [47.369079, 8.528259], [47.37429, 8.524195], [47.346995, 8.52839], [47.372846, 8.573357], [47.39822, 8.532472], [47.378135, 8.540826], [47.413141, 8.513445], [47.360504, 8.527594], [47.374291, 8.525003], [47.387805, 8.49847], [47.414636, 8.517092], [47.391146, 8.489172], [47.372471, 8.563829], [47.421871, 8.537795], [47.422724, 8.540822], [47.342464, 8.530984], [47.412312, 8.509678], [47.377324, 8.500632], [47.414176, 8.478932], [47.369726, 8.525505], [47.376048, 8.540889], [47.337268, 8.52581], [47.379524, 8.537597], [47.380429, 8.519897], [47.377932, 8.530016], [47.372889, 8.521054], [47.382929, 8.575254], [47.382269, 8.540329], [47.381195, 8.491452], [47.399535, 8.496531], [47.399647, 8.515517], [47.407069, 8.580115], [47.424, 8.539947], [47.373969, 8.544726], [47.397849, 8.532676], [47.339732, 8.535441], [47.407351, 8.549328], [47.414278, 8.551102], [47.362282, 8.559007], [47.364059, 8.546361], [47.372593, 8.542778], [47.397251, 8.53118], [47.38195, 8.545382], [47.381249, 8.48352], [47.411007, 8.529939], [47.364503, 8.555293], [47.379097, 8.542793], [47.393666, 8.539306], [47.395298, 8.52555], [47.391357, 8.513217], [47.349035, 8.526672], [47.408721, 8.546243], [47.380286, 8.541679], [47.378952, 8.559701], [47.381442, 8.497893], [47.405052, 8.557309], [47.375411, 8.512008], [47.369155, 8.532591], [47.406943, 8.550565], [47.391115, 8.520855], [47.37017, 8.548792], [47.396694, 8.529275], [47.374562, 8.495836], [47.369302, 8.561365], [47.41761, 8.559945], [47.364236, 8.53155], [47.369621, 8.533712], [47.36846, 8.498099], [47.362489, 8.568186], [47.416476, 8.545105], [47.383643, 8.483368], [47.418761, 8.550732], [47.358222, 8.554632], [47.366745, 8.545781], [47.430476, 8.540929], [47.372974, 8.529253], [47.422864, 8.510579], [47.396776, 8.5339], [47.381853, 8.529103], [47.397782, 8.474478], [47.378357, 8.541096], [47.391651, 8.526019], [47.378157, 8.52618], [47.376926, 8.541265], [47.375912, 8.538145], [47.360673, 8.578116], [47.386754, 8.518767], [47.363812, 8.52884], [47.373045, 8.531187], [47.414944, 8.550997], [47.36697, 8.536293], [47.410512, 8.527106], [47.388145, 8.536292], [47.363802, 8.550552], [47.381785, 8.489888], [47.358312, 8.571261], [47.376851, 8.520605], [47.411678, 8.562285], [47.360967, 8.535666], [47.338002, 8.538581], [47.414659, 8.520432], [47.393361, 8.529749], [47.385678, 8.498944], [47.389408, 8.487468], [47.374301, 8.544812], [47.377295, 8.535565], [47.373025, 8.531452], [47.405376, 8.549817], [47.392053, 8.51184], [47.393348, 8.537737], [47.367073, 8.544345], [47.334303, 8.535025], [47.388521, 8.491067], [47.427215, 8.543353], [47.369043, 8.528325], [47.367954, 8.555617], [47.370725, 8.532106], [47.40542, 8.550904], [47.360604, 8.525611], [47.407399, 8.562937], [47.363216, 8.516595], [47.367636, 8.529607], [47.409444, 8.557017], [47.365788, 8.56566], [47.409101, 8.573732], [47.422047, 8.55043], [47.387098, 8.485304], [47.370604, 8.517208], [47.373789, 8.542842], [47.360322, 8.567213], [47.366112, 8.566541], [47.36493, 8.534265], [47.377488, 8.494491], [47.378878, 8.526976], [47.380956, 8.499936], [47.386742, 8.547574], [47.373274, 8.520255], [47.371157, 8.530142], [47.371997, 8.522175], [47.390589, 8.470219], [47.408313, 8.58527], [47.418918, 8.507319], [47.374359, 8.488483], [47.370236, 8.514288], [47.375706, 8.526581], [47.392085, 8.500608], [47.34363, 8.535124], [47.378914, 8.530791], [47.372675, 8.529432], [47.351795, 8.50465], [47.378489, 8.544264], [47.409281, 8.481102], [47.397077, 8.530567], [47.367469, 8.537733], [47.365108, 8.553254], [47.372521, 8.523788], [47.410636, 8.556565], [47.335123, 8.514823], [47.356653, 8.558703], [47.349433, 8.533999], [47.382299, 8.501579], [47.42751, 8.538853], [47.37734, 8.498911], [47.420981, 8.502152], [47.3677, 8.523782], [47.391903, 8.518354], [47.385418, 8.536408], [47.430012, 8.537698], [47.385107, 8.526481], [47.390693, 8.508237], [47.377205, 8.540238], [47.390966, 8.521408], [47.373924, 8.524836], [47.407513, 8.584351], [47.353559, 8.576203], [47.398996, 8.533111], [47.364295, 8.533868], [47.370939, 8.548291], [47.399745, 8.544162], [47.396581, 8.528769], [47.35884, 8.51611], [47.386797, 8.547469], [47.396998, 8.505316], [47.396229, 8.485192], [47.366936, 8.558641], [47.369925, 8.525403], [47.382551, 8.540905], [47.38971, 8.51231], [47.382063, 8.584572], [47.398285, 8.536951], [47.378232, 8.520064], [47.370289, 8.514302], [47.386482, 8.500563], [47.380368, 8.48349], [47.37054, 8.535466], [47.3716, 8.522339], [47.374722, 8.549694], [47.378222, 8.547701], [47.36601, 8.496501], [47.387594, 8.521313], [47.389671, 8.521329], [47.371324, 8.542937], [47.333739, 8.531838], [47.414112, 8.519229], [47.392142, 8.500358], [47.427414, 8.551668], [47.364591, 8.532947], [47.376762, 8.506937], [47.398811, 8.468034], [47.398153, 8.535703], [47.388252, 8.490982], [47.383773, 8.512402], [47.382342, 8.514399], [47.417663, 8.546137], [47.39338, 8.523855], [47.378838, 8.520699], [47.381519, 8.533056], [47.366902, 8.549968], [47.42081, 8.548999], [47.403727, 8.503265], [47.376695, 8.538982], [47.370325, 8.524948], [47.366466, 8.499793], [47.37718, 8.540052], [47.38322, 8.506021], [47.372533, 8.529257], [47.379804, 8.543152], [47.407145, 8.550172], [47.363943, 8.53488], [47.377973, 8.529461], [47.381192, 8.538162], [47.414197, 8.545455], [47.408014, 8.546745], [47.371611, 8.54763], [47.408737, 8.562289], [47.339492, 8.524704], [47.386087, 8.52462], [47.367528, 8.495842], [47.374593, 8.535867], [47.388035, 8.520303], [47.381773, 8.516613], [47.340809, 8.52616], [47.371597, 8.522564], [47.375752, 8.559488], [47.404321, 8.557559], [47.377189, 8.539999], [47.390494, 8.538989], [47.405055, 8.478952], [47.377068, 8.544208], [47.430702, 8.541822], [47.369531, 8.538504], [47.38585, 8.525026], [47.364804, 8.567811], [47.365102, 8.534149], [47.365093, 8.534149], [47.383019, 8.575176], [47.413472, 8.536562], [47.373141, 8.537267], [47.381315, 8.542217], [47.360155, 8.568613], [47.394555, 8.514646], [47.354376, 8.5552], [47.393715, 8.510125], [47.387399, 8.500647], [47.360051, 8.550633], [47.38528, 8.536776], [47.391347, 8.522992], [47.400902, 8.548319], [47.4049, 8.497074], [47.383691, 8.588183], [47.386522, 8.529106], [47.391062, 8.521689], [47.350711, 8.602019], [47.383151, 8.540189], [47.384485, 8.548454], [47.364818, 8.554413], [47.386507, 8.475968], [47.418512, 8.541993], [47.358813, 8.515129], [47.368826, 8.501337], [47.373571, 8.553391], [47.380173, 8.527917], [47.360091, 8.533252], [47.362267, 8.53139], [47.344252, 8.533125], [47.428675, 8.489037], [47.370253, 8.52488], [47.369524, 8.529778], [47.364624, 8.554885], [47.409031, 8.547627], [47.37642, 8.528211], [47.381242, 8.534799], [47.38179, 8.516693], [47.376822, 8.54452], [47.354592, 8.526891], [47.365614, 8.553926], [47.426572, 8.492707], [47.352875, 8.576241], [47.388761, 8.520529], [47.388654, 8.520448], [47.374753, 8.518934], [47.395104, 8.522261], [47.396997, 8.530486], [47.397838, 8.542307], [47.412614, 8.54643], [47.395207, 8.532437], [47.368667, 8.519446], [47.380874, 8.511655], [47.406692, 8.550427], [47.407917, 8.547498], [47.389691, 8.511488], [47.41107, 8.571137], [47.409206, 8.547233], [47.37921, 8.523262], [47.40851, 8.580809], [47.340406, 8.519257], [47.396129, 8.527104], [47.380616, 8.534336], [47.40688, 8.550524], [47.378022, 8.528085], [47.407592, 8.530611], [47.391311, 8.537297], [47.325794, 8.518697], [47.394778, 8.525447], [47.362897, 8.567837], [47.394368, 8.544938], [47.375847, 8.535469], [47.375652, 8.537107], [47.397451, 8.531966], [47.393414, 8.499933], [47.402854, 8.553951], [47.377918, 8.497717], [47.326352, 8.518748], [47.369883, 8.523138], [47.396697, 8.495997], [47.378597, 8.542385], [47.421725, 8.538018], [47.400262, 8.518047], [47.384125, 8.497668], [47.36903, 8.541075], [47.372337, 8.544216], [47.369984, 8.492819], [47.380466, 8.519765], [47.360272, 8.567728], [47.386159, 8.49751], [47.375652, 8.537107], [47.386248, 8.518081], [47.365128, 8.52091], [47.3758, 8.48732], [47.362314, 8.513982], [47.365794, 8.539856], [47.404175, 8.560524], [47.349821, 8.533954], [47.381808, 8.516693], [47.415291, 8.508518], [47.383463, 8.549029], [47.38454, 8.54831], [47.390695, 8.489308], [47.384107, 8.534341], [47.351289, 8.53368], [47.377179, 8.540118], [47.367611, 8.541774], [47.388545, 8.512882], [47.410504, 8.527093], [47.415926, 8.530092], [47.403645, 8.571549], [47.369819, 8.536629], [47.366897, 8.494903], [47.352263, 8.506619], [47.364665, 8.554343], [47.397683, 8.487459], [47.377733, 8.525324], [47.343904, 8.514643], [47.406544, 8.547204], [47.410613, 8.521238], [47.414951, 8.474759], [47.371406, 8.49768], [47.372364, 8.537556], [47.40017, 8.515409], [47.368663, 8.524676], [47.374831, 8.539275], [47.37084, 8.548302], [47.369712, 8.528908], [47.418592, 8.542114], [47.375596, 8.486958], [47.429974, 8.539885], [47.375502, 8.563932], [47.391366, 8.516105], [47.375693, 8.518437], [47.360358, 8.55048], [47.402405, 8.499343], [47.407368, 8.577101], [47.374612, 8.533894], [47.372629, 8.477843], [47.378564, 8.542067], [47.39017, 8.525724], [47.408982, 8.53957], [47.378042, 8.510591], [47.360293, 8.535679], [47.387258, 8.518764], [47.369771, 8.536853], [47.36518, 8.545775], [47.420296, 8.503331], [47.364543, 8.558657], [47.429929, 8.537922], [47.386188, 8.524397], [47.370868, 8.514949], [47.363145, 8.533672], [47.357782, 8.55175], [47.428731, 8.4888], [47.370924, 8.514765], [47.397203, 8.58723], [47.376034, 8.535711], [47.375625, 8.553037], [47.365874, 8.532378], [47.376175, 8.544507], [47.376513, 8.53923], [47.408961, 8.545532], [47.38853, 8.491014], [47.380797, 8.518937], [47.407418, 8.492209], [47.367198, 8.545459], [47.404462, 8.557827], [47.396494, 8.528489], [47.381418, 8.57154], [47.400228, 8.547325], [47.413112, 8.544174], [47.362561, 8.50476], [47.378632, 8.553735], [47.374906, 8.550188], [47.38397, 8.509532], [47.393147, 8.530447], [47.405046, 8.479005], [47.378066, 8.51381], [47.383931, 8.530987], [47.380405, 8.5282], [47.392009, 8.510806], [47.382689, 8.541543], [47.358514, 8.52108], [47.400368, 8.489976], [47.421823, 8.550346], [47.397859, 8.591775], [47.388765, 8.479946], [47.393785, 8.539137], [47.351809, 8.527258], [47.405557, 8.48613], [47.39915, 8.54248], [47.399674, 8.493062], [47.398062, 8.53484], [47.399537, 8.469399], [47.349765, 8.561338], [47.374243, 8.486428], [47.394521, 8.544875], [47.409305, 8.545367], [47.374292, 8.543859], [47.381438, 8.535942], [47.367878, 8.564394], [47.358379, 8.555152], [47.408124, 8.554922], [47.378293, 8.510649], [47.368469, 8.550729], [47.368122, 8.560612], [47.381726, 8.516824], [47.374301, 8.524857], [47.38052, 8.528348], [47.370953, 8.549735], [47.325564, 8.513453], [47.369146, 8.524024], [47.418912, 8.507067], [47.373354, 8.534742], [47.370509, 8.549064], [47.378351, 8.541771], [47.366512, 8.557785], [47.329901, 8.512416], [47.376172, 8.527769], [47.369262, 8.51166], [47.399006, 8.532091], [47.353443, 8.560449], [47.373952, 8.544607], [47.373964, 8.53012], [47.378902, 8.527282], [47.383708, 8.573708], [47.380784, 8.53561], [47.364436, 8.534175], [47.39132, 8.537298], [47.425715, 8.494055], [47.380994, 8.538104], [47.375733, 8.544604], [47.403834, 8.567857], [47.376061, 8.535725], [47.365176, 8.547112], [47.369164, 8.556119], [47.391316, 8.473373], [47.409389, 8.543103], [47.380215, 8.48346], [47.359022, 8.550069], [47.372542, 8.529257], [47.368561, 8.528805], [47.360785, 8.598532], [47.372744, 8.477077], [47.38837, 8.490865], [47.391114, 8.522855], [47.380839, 8.535519], [47.430955, 8.550139], [47.418803, 8.506177], [47.393687, 8.510323], [47.379361, 8.525384], [47.351087, 8.515979], [47.378416, 8.50999], [47.425615, 8.494159], [47.38963, 8.539024], [47.391387, 8.514807], [47.379342, 8.495428], [47.371616, 8.534879], [47.370125, 8.548844], [47.370286, 8.54886], [47.337583, 8.525816], [47.351574, 8.524553], [47.414317, 8.529039], [47.395331, 8.519179], [47.383113, 8.540439], [47.379993, 8.527052], [47.377469, 8.529517], [47.363032, 8.548391], [47.387408, 8.527628], [47.379988, 8.546493], [47.347331, 8.532805], [47.410712, 8.57003], [47.369217, 8.527997], [47.431521, 8.543668], [47.366847, 8.542659], [47.388081, 8.539191], [47.415958, 8.51427], [47.362139, 8.531613], [47.392674, 8.515734], [47.374636, 8.528466], [47.387448, 8.525284], [47.396357, 8.485949], [47.374259, 8.537926], [47.389758, 8.471514], [47.365576, 8.532517], [47.360058, 8.53574], [47.36728, 8.523496], [47.377995, 8.528124], [47.375814, 8.559516], [47.38288, 8.541335], [47.364472, 8.536956], [47.386539, 8.490418], [47.413012, 8.546146], [47.41937, 8.50807], [47.371457, 8.525037], [47.343857, 8.530153], [47.39689, 8.530405], [47.378722, 8.542507], [47.377548, 8.54198], [47.374474, 8.516968], [47.376192, 8.540839], [47.37225, 8.538242], [47.358873, 8.516401], [47.370771, 8.531948], [47.39606, 8.526864], [47.36494, 8.548286], [47.403562, 8.485932], [47.364402, 8.536796], [47.410433, 8.571866], [47.364001, 8.551417], [47.373916, 8.544646], [47.370151, 8.539496], [47.378468, 8.523671], [47.394052, 8.539394], [47.390249, 8.509565], [47.411995, 8.52446], [47.369409, 8.541811], [47.369461, 8.525924], [47.372564, 8.534501], [47.369461, 8.529697], [47.379958, 8.486991], [47.375305, 8.521408], [47.40267, 8.499839], [47.408427, 8.550609], [47.375865, 8.51256], [47.385152, 8.529409], [47.369966, 8.491773], [47.371234, 8.520107], [47.399134, 8.547872], [47.366856, 8.543599], [47.39066, 8.512766], [47.38928, 8.521838], [47.409608, 8.549322], [47.378777, 8.542323], [47.367839, 8.546082], [47.374821, 8.520286], [47.381254, 8.5288], [47.421041, 8.512226], [47.377382, 8.539579], [47.4145, 8.546694], [47.386162, 8.518582], [47.364455, 8.531197], [47.34446, 8.532971], [47.373881, 8.554801], [47.378723, 8.510883], [47.392677, 8.548717], [47.360513, 8.550272], [47.368822, 8.528863], [47.363973, 8.551535], [47.383285, 8.484222], [47.361379, 8.563992], [47.410851, 8.566866], [47.389789, 8.511623], [47.378225, 8.538974], [47.373506, 8.598345], [47.396108, 8.54455], [47.377549, 8.543767], [47.379648, 8.526423], [47.335627, 8.532922], [47.391784, 8.51859], [47.369997, 8.543386], [47.409831, 8.544835], [47.369322, 8.527271], [47.327274, 8.529668], [47.410222, 8.548222], [47.391711, 8.485408], [47.375081, 8.528091], [47.396165, 8.545094], [47.366539, 8.540957], [47.371277, 8.523114], [47.39082, 8.48849], [47.370068, 8.504195], [47.397188, 8.531245], [47.364641, 8.566126], [47.377719, 8.54197], [47.368752, 8.518998], [47.42038, 8.50104], [47.356941, 8.567022], [47.372324, 8.532311], [47.3542, 8.523653], [47.430737, 8.550386], [47.354171, 8.598785], [47.360172, 8.503388], [47.36902, 8.525041], [47.372881, 8.517055], [47.37165, 8.553907], [47.370134, 8.548804], [47.401946, 8.501401], [47.369014, 8.537977], [47.392793, 8.534626], [47.351823, 8.525736], [47.360875, 8.52923], [47.34475, 8.532699], [47.365564, 8.533801], [47.403102, 8.555188], [47.369014, 8.537977], [47.377265, 8.529221], [47.324767, 8.511162], [47.411261, 8.525902], [47.386233, 8.482413], [47.37896, 8.524978], [47.370179, 8.548805], [47.368396, 8.563902], [47.387117, 8.545939], [47.393907, 8.505943], [47.368934, 8.501418], [47.381423, 8.503932], [47.370336, 8.491661], [47.367656, 8.545482], [47.37945, 8.527372], [47.361066, 8.535694], [47.379693, 8.523497], [47.381525, 8.571662], [47.387999, 8.491004], [47.374467, 8.538725], [47.381171, 8.542214], [47.366052, 8.533533], [47.409405, 8.569379], [47.370666, 8.525048], [47.361942, 8.515246], [47.390744, 8.522013], [47.370596, 8.517142], [47.354027, 8.555895], [47.366656, 8.535293], [47.361807, 8.515296], [47.373463, 8.528892], [47.381192, 8.538162], [47.373436, 8.528905], [47.369238, 8.519934], [47.369411, 8.540739], [47.359503, 8.535437], [47.359722, 8.522733], [47.355665, 8.572436], [47.403641, 8.572861], [47.391283, 8.506672], [47.407622, 8.585122], [47.381549, 8.503908], [47.372035, 8.529564], [47.380784, 8.497072], [47.372518, 8.513605], [47.400447, 8.585723], [47.407674, 8.497633], [47.359847, 8.522881], [47.386193, 8.518146], [47.422712, 8.510497], [47.375245, 8.545772], [47.416966, 8.510248], [47.428237, 8.489691], [47.339008, 8.535916], [47.378473, 8.526995], [47.396428, 8.472015], [47.387967, 8.488592], [47.384427, 8.531871], [47.366207, 8.544644], [47.393964, 8.537273], [47.37291, 8.527384], [47.412872, 8.516222], [47.379672, 8.494706], [47.39835, 8.537681], [47.420068, 8.548546], [47.413751, 8.545976], [47.406907, 8.550524], [47.413238, 8.541341], [47.375165, 8.522941], [47.356503, 8.523608], [47.38757, 8.527644], [47.391619, 8.487618], [47.375425, 8.516259], [47.351912, 8.576247], [47.376101, 8.540917], [47.39296, 8.489525], [47.401749, 8.505146], [47.36377, 8.566928], [47.360967, 8.558198], [47.408114, 8.576229], [47.39017, 8.510226], [47.378015, 8.545803], [47.33295, 8.528725], [47.3348, 8.53002], [47.372045, 8.512245], [47.375464, 8.544572], [47.370143, 8.548818], [47.403301, 8.547693], [47.429459, 8.544792], [47.359233, 8.516382], [47.377433, 8.538984], [47.370086, 8.512047], [47.405206, 8.487183], [47.371282, 8.535997], [47.374123, 8.513214], [47.429846, 8.549466], [47.364595, 8.566191], [47.379447, 8.523889], [47.378456, 8.567213], [47.407599, 8.545941], [47.381174, 8.543803], [47.371205, 8.554295], [47.393314, 8.545088], [47.375009, 8.545039], [47.395482, 8.522295], [47.424832, 8.537605], [47.393709, 8.531995], [47.394667, 8.521921], [47.3972, 8.530888], [47.379246, 8.546941], [47.381915, 8.540574], [47.373858, 8.536567], [47.378581, 8.542147], [47.38494, 8.524213], [47.376852, 8.513772], [47.387267, 8.518764], [47.376902, 8.512211], [47.376919, 8.527744], [47.386979, 8.534996], [47.366156, 8.536792], [47.417118, 8.545728], [47.392786, 8.548548], [47.390106, 8.525762], [47.369005, 8.53799], [47.361482, 8.554264], [47.396199, 8.48943], [47.365282, 8.5388], [47.388806, 8.53865], [47.363526, 8.530542], [47.356256, 8.531651], [47.419228, 8.507895], [47.405702, 8.480992], [47.402506, 8.495265], [47.360751, 8.561953], [47.389873, 8.539029], [47.365539, 8.552349], [47.403875, 8.496988], [47.428701, 8.489077], [47.351205, 8.576815], [47.404831, 8.572555], [47.369502, 8.520575], [47.343664, 8.53535], [47.385174, 8.47622], [47.3698, 8.536655], [47.364214, 8.497207], [47.34438, 8.532876], [47.407436, 8.579381], [47.33967, 8.528651], [47.363691, 8.535841], [47.387529, 8.488385], [47.384821, 8.531998], [47.368143, 8.506169], [47.369651, 8.548516], [47.411966, 8.563179], [47.397251, 8.531167], [47.37354, 8.514937], [47.36486, 8.5667], [47.368003, 8.524093], [47.408914, 8.485931], [47.397087, 8.530488], [47.386538, 8.52357], [47.423717, 8.513632], [47.378037, 8.526549], [47.410468, 8.532776], [47.366179, 8.555911], [47.364467, 8.546912], [47.409433, 8.549756], [47.379014, 8.518252], [47.404161, 8.563822], [47.378966, 8.508902], [47.395748, 8.531255], [47.374825, 8.519915], [47.422926, 8.510726], [47.393188, 8.513625], [47.412578, 8.516945], [47.391659, 8.523237], [47.366882, 8.544579], [47.412028, 8.546563], [47.39776, 8.533536], [47.405111, 8.571527], [47.358803, 8.552195], [47.413283, 8.544138], [47.358604, 8.57083], [47.373373, 8.531724], [47.370045, 8.513463], [47.382431, 8.540293], [47.358328, 8.57146], [47.366327, 8.50122], [47.376719, 8.559959], [47.408279, 8.541649], [47.419771, 8.554239], [47.395723, 8.531136], [47.395829, 8.483594], [47.397972, 8.533871], [47.380985, 8.528622], [47.360898, 8.530607], [47.403657, 8.496241], [47.393874, 8.533469], [47.377593, 8.541981], [47.361853, 8.54744], [47.380525, 8.534466], [47.35697, 8.551072], [47.397787, 8.533483], [47.356848, 8.557198], [47.383332, 8.53157], [47.384106, 8.511376], [47.36439, 8.546487], [47.367401, 8.517276], [47.374352, 8.521442], [47.37648, 8.506376], [47.370823, 8.514948], [47.377134, 8.53919], [47.372263, 8.554741], [47.371255, 8.507237], [47.405792, 8.48102], [47.411361, 8.525851], [47.344034, 8.53144], [47.395687, 8.532089], [47.38558, 8.508597], [47.349477, 8.561279], [47.375781, 8.577631], [47.366639, 8.531414], [47.336745, 8.535499], [47.360361, 8.523739], [47.398301, 8.532407], [47.406728, 8.550455], [47.366976, 8.544144], [47.371618, 8.517493], [47.388697, 8.519667], [47.382013, 8.54823], [47.378337, 8.541374], [47.358334, 8.588193], [47.380149, 8.512263], [47.394928, 8.519012], [47.387013, 8.528494], [47.411105, 8.526257], [47.402562, 8.535529], [47.369014, 8.537977], [47.366595, 8.533187], [47.399175, 8.521761], [47.409944, 8.546242], [47.417182, 8.541886], [47.376906, 8.524301], [47.380635, 8.525741], [47.403062, 8.49831], [47.358111, 8.596078], [47.358937, 8.526861], [47.382884, 8.532329], [47.379169, 8.555892], [47.378482, 8.51938], [47.378687, 8.490316], [47.368097, 8.541758], [47.418401, 8.547027], [47.388192, 8.497484], [47.385208, 8.536774], [47.392676, 8.475161], [47.426666, 8.544323], [47.364459, 8.566308], [47.372745, 8.521052], [47.39812, 8.494847], [47.37743, 8.512566], [47.396013, 8.526995], [47.409568, 8.576618], [47.3918, 8.518816], [47.40557, 8.495551], [47.390784, 8.52261], [47.40327, 8.516677], [47.353843, 8.553521], [47.373032, 8.52691], [47.374959, 8.524751], [47.397473, 8.53243], [47.386641, 8.520274], [47.379323, 8.527476], [47.36721, 8.541316], [47.375776, 8.541069], [47.395313, 8.488923], [47.366248, 8.540316], [47.36709, 8.53979], [47.373778, 8.495013], [47.372702, 8.527565], [47.364122, 8.546349], [47.370565, 8.530991], [47.402436, 8.535553], [47.399989, 8.507787], [47.429953, 8.549587], [47.399587, 8.54755], [47.376392, 8.543465], [47.391601, 8.506308], [47.372881, 8.547458], [47.408614, 8.507907], [47.368532, 8.563732], [47.390814, 8.508716], [47.385065, 8.530983], [47.389153, 8.524749], [47.362216, 8.55461], [47.37595, 8.5594], [47.361572, 8.535453], [47.417784, 8.554144], [47.397932, 8.528598], [47.370912, 8.510183], [47.409312, 8.546467], [47.36672, 8.541782], [47.381671, 8.546409], [47.326265, 8.515478], [47.349959, 8.527842], [47.392823, 8.526678], [47.366924, 8.544011], [47.358591, 8.551873], [47.422583, 8.507883], [47.37851, 8.510508], [47.376546, 8.50986], [47.407329, 8.568262], [47.369492, 8.506183], [47.355112, 8.559081], [47.335032, 8.541537], [47.366847, 8.534119], [47.371214, 8.523126], [47.356011, 8.553553], [47.387811, 8.490934], [47.364274, 8.551979], [47.379733, 8.543084], [47.372382, 8.534722], [47.360445, 8.56376], [47.409712, 8.549814], [47.376922, 8.544456], [47.364854, 8.554361], [47.379959, 8.522046], [47.413491, 8.553405], [47.381328, 8.538072], [47.351395, 8.532014], [47.402413, 8.499436], [47.402444, 8.535619], [47.410325, 8.537398], [47.386189, 8.540516], [47.414066, 8.521268], [47.409115, 8.545429], [47.367798, 8.54007], [47.355912, 8.535668], [47.358782, 8.525176], [47.380958, 8.538157], [47.33465, 8.52966], [47.382051, 8.544298], [47.382733, 8.57231], [47.381495, 8.513574], [47.384227, 8.497339], [47.352993, 8.524754], [47.410705, 8.550326], [47.374249, 8.544652], [47.364606, 8.554951], [47.364633, 8.554859], [47.36852, 8.499437], [47.335534, 8.518894], [47.355281, 8.530162], [47.370134, 8.548791], [47.364872, 8.532701], [47.407835, 8.572645], [47.383247, 8.506074], [47.393508, 8.500491], [47.372504, 8.545543], [47.383568, 8.549296], [47.409039, 8.547694], [47.389322, 8.487983], [47.407351, 8.544584], [47.406549, 8.575347], [47.382607, 8.545382], [47.357956, 8.505687], [47.406603, 8.549405], [47.392828, 8.52334], [47.360221, 8.579258], [47.346409, 8.564179], [47.364029, 8.528725], [47.372247, 8.535752], [47.357325, 8.558108], [47.373097, 8.550296], [47.344386, 8.526498], [47.361346, 8.512586], [47.380574, 8.526495], [47.378976, 8.528965], [47.377846, 8.54188], [47.377925, 8.497903], [47.389954, 8.476803], [47.374535, 8.54005], [47.407819, 8.547416], [47.385845, 8.517821], [47.369794, 8.538218], [47.343115, 8.530574], [47.377531, 8.543767], [47.402799, 8.49168], [47.362897, 8.56781], [47.383847, 8.48275], [47.384736, 8.531467], [47.384928, 8.538768], [47.397326, 8.531857], [47.361297, 8.525519], [47.364863, 8.545927], [47.426514, 8.553572], [47.356497, 8.534674], [47.379001, 8.542407], [47.398483, 8.538863], [47.420702, 8.507063], [47.396016, 8.526691], [47.368082, 8.541413], [47.362532, 8.533832], [47.377904, 8.496273], [47.417351, 8.538298], [47.373848, 8.536673], [47.371245, 8.530369], [47.370833, 8.534942], [47.370389, 8.539064], [47.356708, 8.523771], [47.366185, 8.49706], [47.378854, 8.542788], [47.395227, 8.521694], [47.392781, 8.523472], [47.378851, 8.489101], [47.400719, 8.54866], [47.390719, 8.517973], [47.391178, 8.538911], [47.400465, 8.548814], [47.374552, 8.560734], [47.365073, 8.492788], [47.343054, 8.531354], [47.408639, 8.542531], [47.352903, 8.512297], [47.361117, 8.525515], [47.413509, 8.553432], [47.383985, 8.531028], [47.400054, 8.501734], [47.382207, 8.505643], [47.376469, 8.525815], [47.372142, 8.505666], [47.37558, 8.54182], [47.373159, 8.531507], [47.350366, 8.578001], [47.392819, 8.475243], [47.373443, 8.53481], [47.366839, 8.5537], [47.368981, 8.529092], [47.399833, 8.544455], [47.409126, 8.531967], [47.397956, 8.533738], [47.37396, 8.516177], [47.36607, 8.53356], [47.38146, 8.503734], [47.366128, 8.494464], [47.3862, 8.527947], [47.413389, 8.553774], [47.363995, 8.546452], [47.358299, 8.571631], [47.417698, 8.546217], [47.377054, 8.521973], [47.392107, 8.511841], [47.354434, 8.574991], [47.373056, 8.539556], [47.399528, 8.542488], [47.338152, 8.538862], [47.406355, 8.584936], [47.367898, 8.539926], [47.416838, 8.538275], [47.381863, 8.516588], [47.388103, 8.488569], [47.379086, 8.556036], [47.381755, 8.516573], [47.41096, 8.526347], [47.370648, 8.519248], [47.390704, 8.491309], [47.366215, 8.520998], [47.376911, 8.51229], [47.388503, 8.491066], [47.381156, 8.537247], [47.387509, 8.528358], [47.377769, 8.537747], [47.407065, 8.484477], [47.366931, 8.544143], [47.381993, 8.5094], [47.376508, 8.5407], [47.363006, 8.550138], [47.404731, 8.540198], [47.388802, 8.484794], [47.38866, 8.535057], [47.3761, 8.533475], [47.343701, 8.535231], [47.399635, 8.536873], [47.348683, 8.525791], [47.368201, 8.496001], [47.393783, 8.501821], [47.384268, 8.525855], [47.408393, 8.546594], [47.393016, 8.485393], [47.397136, 8.594753], [47.388976, 8.515831], [47.403515, 8.497007], [47.397001, 8.480305], [47.407737, 8.580765], [47.382098, 8.505786], [47.375525, 8.486891], [47.377157, 8.55924], [47.366865, 8.542659], [47.430764, 8.550386], [47.411618, 8.512751], [47.419608, 8.507664], [47.410247, 8.541835], [47.385257, 8.47593], [47.404983, 8.491922], [47.343329, 8.519369], [47.370244, 8.532533], [47.39885, 8.510295], [47.377485, 8.542058], [47.354704, 8.529355], [47.335426, 8.518878], [47.370805, 8.548262], [47.370299, 8.532429], [47.369849, 8.515273], [47.381083, 8.518201], [47.362759, 8.548677], [47.382689, 8.572176], [47.373614, 8.494255], [47.430271, 8.536935], [47.392811, 8.524188], [47.373257, 8.552405], [47.389801, 8.539995], [47.389744, 8.537398], [47.391302, 8.538198], [47.370808, 8.524296], [47.360543, 8.561128], [47.37321, 8.5039], [47.370972, 8.535475], [47.387067, 8.547462], [47.390058, 8.5098], [47.397478, 8.509803], [47.369494, 8.526202], [47.367174, 8.493161], [47.381588, 8.537203], [47.368735, 8.524744], [47.358278, 8.597379], [47.405439, 8.570249], [47.408088, 8.54464], [47.358643, 8.596844], [47.414887, 8.561584], [47.369877, 8.508388], [47.365116, 8.567195], [47.392344, 8.5077], [47.365686, 8.521809], [47.411142, 8.526178], [47.40896, 8.545625], [47.40896, 8.545625], [47.381847, 8.536453], [47.37141, 8.547944], [47.372354, 8.531094], [47.398506, 8.47905], [47.407248, 8.538395], [47.403991, 8.496076], [47.374513, 8.53956], [47.371765, 8.547527], [47.399609, 8.535773], [47.374443, 8.521285], [47.373693, 8.535915], [47.389173, 8.494524], [47.399934, 8.543251], [47.36336, 8.562802], [47.364612, 8.531677], [47.368639, 8.529137], [47.378659, 8.542519], [47.383271, 8.510233], [47.368157, 8.496822], [47.385898, 8.54553], [47.391107, 8.469527], [47.393335, 8.497692], [47.393185, 8.528342], [47.365276, 8.547035], [47.413339, 8.545822], [47.391406, 8.545181], [47.370535, 8.524635], [47.346448, 8.529173], [47.393274, 8.508288], [47.3972, 8.594675], [47.406701, 8.550441], [47.377077, 8.544221], [47.36941, 8.543572], [47.389136, 8.52753], [47.387139, 8.490655], [47.372911, 8.535885], [47.37538, 8.560699], [47.361818, 8.549253], [47.386188, 8.540529], [47.365391, 8.521591], [47.385891, 8.532047], [47.39853, 8.59118], [47.350026, 8.562151], [47.398848, 8.506638], [47.391908, 8.517811], [47.368759, 8.528809], [47.36489, 8.530888], [47.390929, 8.55088], [47.409927, 8.574823], [47.369574, 8.513877], [47.365955, 8.532353], [47.397791, 8.530251], [47.410446, 8.550161], [47.373326, 8.529088], [47.384425, 8.503197], [47.362444, 8.567271], [47.388642, 8.483678], [47.410868, 8.53517], [47.386453, 8.518244], [47.37728, 8.54837], [47.378468, 8.528465], [47.377227, 8.546409], [47.407706, 8.535688], [47.365433, 8.545582], [47.411688, 8.511971], [47.371561, 8.515916], [47.363646, 8.551899], [47.374403, 8.5787], [47.428163, 8.547721], [47.363262, 8.533661], [47.386861, 8.528411], [47.378733, 8.567364], [47.426533, 8.546945], [47.355269, 8.600477], [47.389728, 8.512323], [47.381638, 8.509829], [47.402502, 8.581687], [47.363758, 8.535419], [47.391516, 8.505723], [47.391389, 8.538491], [47.363105, 8.548208], [47.363675, 8.574751], [47.385031, 8.508639], [47.367729, 8.560352], [47.368612, 8.53103], [47.395775, 8.532197], [47.39194, 8.518183], [47.369159, 8.565824], [47.358609, 8.532004], [47.379213, 8.51137], [47.369478, 8.506778], [47.367609, 8.563382], [47.370024, 8.524373], [47.367469, 8.494345], [47.412118, 8.52474], [47.404341, 8.561004], [47.385379, 8.536778], [47.376459, 8.539203], [47.396826, 8.540948], [47.398031, 8.532389], [47.409651, 8.543903], [47.357633, 8.554117], [47.391921, 8.518315], [47.370287, 8.511654], [47.38532, 8.508526], [47.373549, 8.519757], [47.398645, 8.585062], [47.365445, 8.521632], [47.394151, 8.520347], [47.374139, 8.542929], [47.385248, 8.517213], [47.383021, 8.514877], [47.414609, 8.546604], [47.431206, 8.539831], [47.387985, 8.536063], [47.36901, 8.54122], [47.372727, 8.521064], [47.398077, 8.536099], [47.383414, 8.530499], [47.370859, 8.535022], [47.375558, 8.516474], [47.374362, 8.524183], [47.363779, 8.575163], [47.390703, 8.489454], [47.392022, 8.52392], [47.376756, 8.560741], [47.379295, 8.495639], [47.420857, 8.507795], [47.388127, 8.484887], [47.37868, 8.530839], [47.369318, 8.525802], [47.373158, 8.53454], [47.386976, 8.498665], [47.388095, 8.485429], [47.395388, 8.532295], [47.371485, 8.547667], [47.369933, 8.510071], [47.413754, 8.545672], [47.408834, 8.542813], [47.361502, 8.561453], [47.39706, 8.530501], [47.364324, 8.529791], [47.406432, 8.552277], [47.388956, 8.538984], [47.373444, 8.545033], [47.383576, 8.496691], [47.371284, 8.547041], [47.374735, 8.553972], [47.388596, 8.538937], [47.40526, 8.555286], [47.365744, 8.552605], [47.369907, 8.556453], [47.374584, 8.525459], [47.371252, 8.542935], [47.366584, 8.540998], [47.371626, 8.518526], [47.375352, 8.549668], [47.410721, 8.554341], [47.377196, 8.540238], [47.386797, 8.535151], [47.417038, 8.541844], [47.397797, 8.53241], [47.365343, 8.545646], [47.355988, 8.524736], [47.378164, 8.557486], [47.351675, 8.525283], [47.355921, 8.535681], [47.351474, 8.525597], [47.370379, 8.524896], [47.405816, 8.591218], [47.333066, 8.514411], [47.379045, 8.527377], [47.356397, 8.535757], [47.402966, 8.576543], [47.377524, 8.558559], [47.376987, 8.543332], [47.405964, 8.533479], [47.363661, 8.562359], [47.385051, 8.536241], [47.40712, 8.586715], [47.368568, 8.529004], [47.375402, 8.484518], [47.401561, 8.487323], [47.377512, 8.541979], [47.368842, 8.528652], [47.406218, 8.581581], [47.413366, 8.553363], [47.383701, 8.539101], [47.388296, 8.490996], [47.391409, 8.536385], [47.362988, 8.563126], [47.398605, 8.465936], [47.394719, 8.527896], [47.344571, 8.529784], [47.373582, 8.53439], [47.387477, 8.519391], [47.386407, 8.496932], [47.360454, 8.522444], [47.325616, 8.518574], [47.379354, 8.542176], [47.400447, 8.469178], [47.359694, 8.550294], [47.389615, 8.491433], [47.375635, 8.516979], [47.414344, 8.538501], [47.376438, 8.528185], [47.382197, 8.540301], [47.343296, 8.519977], [47.363514, 8.535586], [47.355711, 8.531269], [47.378924, 8.55978], [47.382705, 8.529412], [47.378761, 8.575536], [47.409234, 8.547101], [47.370188, 8.548818], [47.370161, 8.548805], [47.418268, 8.542068], [47.390647, 8.489665], [47.379989, 8.494461], [47.37771, 8.541957], [47.400224, 8.547696], [47.390763, 8.521974], [47.367621, 8.538755], [47.380118, 8.522367], [47.399263, 8.506541], [47.377549, 8.543781], [47.380451, 8.51946], [47.388486, 8.519159], [47.411692, 8.57009], [47.407094, 8.573941], [47.373575, 8.519784], [47.407028, 8.550156], [47.375312, 8.560327], [47.409845, 8.537799], [47.375695, 8.5354], [47.365099, 8.553214], [47.381378, 8.537477], [47.378786, 8.527213], [47.383467, 8.515349], [47.329891, 8.529735], [47.389731, 8.481554], [47.386971, 8.534903], [47.406912, 8.586883], [47.409719, 8.544355], [47.395597, 8.545228], [47.403861, 8.49655], [47.401096, 8.488043], [47.370125, 8.548791], [47.391034, 8.52084], [47.393803, 8.505477], [47.375881, 8.523327], [47.375688, 8.514133], [47.38048, 8.481042], [47.374429, 8.539836], [47.388356, 8.484428], [47.382964, 8.562435], [47.378253, 8.52168], [47.391538, 8.542693], [47.365964, 8.532326], [47.387699, 8.517713], [47.395543, 8.475442], [47.399188, 8.547926], [47.371324, 8.555953], [47.399407, 8.497707], [47.405824, 8.550038], [47.388801, 8.515298], [47.366328, 8.561951], [47.399689, 8.517797], [47.381242, 8.555406], [47.375535, 8.564211], [47.406205, 8.562673], [47.380663, 8.512088], [47.360504, 8.550285], [47.362463, 8.510543], [47.371656, 8.531649], [47.392931, 8.489803], [47.369135, 8.502984], [47.402978, 8.490809], [47.369374, 8.541758], [47.39997, 8.587581], [47.400439, 8.500881], [47.385271, 8.529186], [47.394921, 8.524602], [47.358428, 8.588671], [47.417364, 8.511966], [47.368905, 8.496704], [47.383384, 8.484198], [47.370097, 8.548936], [47.409712, 8.545137], [47.392378, 8.491183], [47.375887, 8.55389], [47.418061, 8.505645], [47.398962, 8.505978], [47.399812, 8.510341], [47.414884, 8.550704], [47.387421, 8.497244], [47.377078, 8.525139], [47.372472, 8.517511], [47.362751, 8.568032], [47.408363, 8.541266], [47.366741, 8.541491], [47.364187, 8.566553], [47.431248, 8.516368], [47.357206, 8.550891], [47.386466, 8.497423], [47.379919, 8.514708], [47.378201, 8.541411], [47.410052, 8.574905], [47.329909, 8.529748], [47.387805, 8.548272], [47.383993, 8.480475], [47.377069, 8.538461], [47.410675, 8.552564], [47.37748, 8.499337], [47.371388, 8.537165], [47.372606, 8.517646], [47.38148, 8.556828], [47.369032, 8.53795], [47.357528, 8.521669], [47.369402, 8.554747], [47.389612, 8.483803], [47.366364, 8.54049], [47.364647, 8.566431], [47.374969, 8.541741], [47.365808, 8.520262], [47.377314, 8.498765], [47.403739, 8.556301], [47.378454, 8.540356], [47.371668, 8.534138], [47.395262, 8.508236], [47.369889, 8.525336], [47.369104, 8.540825], [47.354862, 8.526857], [47.353219, 8.512144], [47.374546, 8.495584], [47.406907, 8.550538], [47.362176, 8.547526], [47.376002, 8.541921], [47.382712, 8.5007], [47.377371, 8.522748], [47.383415, 8.533228], [47.376621, 8.49397], [47.381856, 8.51631], [47.427361, 8.491039], [47.349171, 8.570551], [47.386814, 8.547496], [47.38869, 8.492196], [47.37443, 8.539783], [47.362685, 8.497163], [47.383154, 8.515052], [47.383984, 8.482461], [47.379652, 8.490018], [47.368603, 8.499253], [47.386175, 8.518119], [47.409123, 8.545549], [47.35361, 8.554337], [47.369313, 8.527298], [47.374352, 8.536604], [47.412888, 8.540287], [47.378803, 8.519612], [47.376802, 8.524868], [47.362054, 8.549046], [47.413834, 8.544865], [47.367922, 8.540284], [47.370749, 8.535285], [47.376229, 8.544508], [47.381237, 8.546599], [47.390467, 8.545612], [47.40548, 8.575192], [47.412891, 8.543732], [47.405126, 8.577384], [47.404501, 8.576867], [47.384173, 8.508993], [47.376381, 8.527548], [47.373663, 8.534365], [47.363642, 8.567071], [47.361246, 8.532865], [47.370448, 8.535676], [47.383943, 8.509518], [47.403047, 8.589303], [47.338285, 8.539116], [47.387521, 8.519497], [47.365425, 8.545568], [47.373411, 8.520019], [47.408447, 8.546674], [47.370268, 8.506887], [47.385835, 8.51798], [47.376938, 8.540881], [47.380061, 8.520723], [47.353599, 8.56482], [47.391943, 8.517892], [47.371716, 8.542322], [47.402433, 8.499278], [47.373456, 8.494782], [47.371222, 8.524185], [47.364926, 8.508766], [47.371086, 8.54987], [47.38573, 8.51766], [47.39245, 8.548858], [47.3772, 8.53988], [47.355675, 8.532235], [47.369858, 8.56425], [47.367038, 8.523372], [47.377255, 8.539696], [47.369163, 8.523137], [47.368368, 8.513892], [47.368964, 8.556367], [47.380957, 8.537322], [47.375754, 8.543386], [47.408983, 8.553509], [47.343331, 8.520044], [47.393102, 8.48876], [47.397059, 8.530594], [47.428008, 8.490111], [47.394726, 8.486195], [47.341108, 8.530705], [47.405031, 8.48763], [47.382646, 8.537503], [47.419208, 8.548223], [47.376083, 8.529555], [47.399587, 8.547563], [47.423125, 8.551473], [47.366859, 8.543268], [47.385612, 8.536889], [47.405694, 8.480966], [47.418434, 8.508197], [47.378699, 8.519239], [47.367812, 8.506996], [47.399247, 8.521789], [47.417521, 8.518277], [47.392646, 8.486446], [47.365745, 8.532693], [47.364258, 8.533006], [47.398915, 8.499406], [47.367807, 8.540017], [47.377856, 8.519884], [47.428773, 8.489105], [47.381218, 8.541036], [47.374728, 8.534016], [47.377202, 8.541509], [47.381442, 8.51352], [47.349604, 8.534003], [47.383522, 8.530568], [47.390962, 8.522759], [47.408923, 8.54577], [47.378758, 8.494383], [47.381474, 8.535889], [47.393104, 8.524525], [47.370024, 8.51186], [47.42052, 8.498458], [47.371822, 8.533996], [47.376995, 8.483503], [47.380288, 8.505962], [47.37687, 8.54329], [47.356695, 8.506853], [47.368097, 8.49551], [47.374754, 8.536016], [47.382424, 8.529684], [47.416897, 8.545286], [47.354777, 8.555579], [47.40886, 8.545755], [47.377312, 8.541339], [47.370042, 8.519633], [47.366976, 8.516618], [47.373888, 8.544738], [47.388795, 8.522689], [47.414092, 8.548886], [47.375735, 8.549093], [47.369141, 8.512981], [47.421724, 8.550304], [47.381076, 8.535232], [47.372279, 8.532297], [47.419304, 8.506452], [47.362359, 8.561206], [47.392168, 8.498411], [47.339983, 8.529875], [47.369257, 8.525628], [47.378116, 8.527663], [47.388144, 8.536371], [47.38012, 8.527889], [47.396996, 8.51239], [47.377752, 8.53764], [47.380357, 8.493634], [47.369869, 8.559444], [47.361657, 8.52644], [47.367163, 8.534893], [47.376404, 8.561806], [47.368515, 8.54787], [47.395423, 8.508305], [47.378636, 8.523038], [47.390644, 8.492009], [47.334891, 8.528924], [47.391032, 8.523026], [47.392961, 8.474544], [47.425504, 8.553816], [47.397002, 8.480292], [47.384016, 8.532459], [47.377162, 8.540078], [47.371, 8.531582], [47.380179, 8.483446], [47.354251, 8.557819], [47.378014, 8.527939], [47.370047, 8.544724], [47.389176, 8.517584], [47.391121, 8.523094], [47.356654, 8.523783], [47.383453, 8.548154], [47.423524, 8.546471], [47.365778, 8.535911], [47.404068, 8.588769], [47.336484, 8.518304], [47.386224, 8.532107], [47.377634, 8.508054], [47.402452, 8.553598], [47.401244, 8.550194], [47.39241, 8.523716], [47.375535, 8.53047], [47.397447, 8.502504], [47.39999, 8.494963], [47.387426, 8.527654], [47.420604, 8.548942], [47.377553, 8.538709], [47.382038, 8.515148], [47.418278, 8.520055], [47.351084, 8.534457], [47.367695, 8.561994], [47.364276, 8.531127], [47.386104, 8.517985], [47.399031, 8.475682], [47.37659, 8.554699], [47.373932, 8.531576], [47.378434, 8.541548], [47.378147, 8.509905], [47.410728, 8.545171], [47.406342, 8.552222], [47.405288, 8.551524], [47.41427, 8.561227], [47.379649, 8.52053], [47.36612, 8.536752], [47.396338, 8.527823], [47.374992, 8.515509], [47.361792, 8.560307], [47.396206, 8.527569], [47.376487, 8.525802], [47.356856, 8.535767], [47.39499, 8.51235], [47.373326, 8.504008], [47.366824, 8.543161], [47.419732, 8.547943], [47.381881, 8.530031], [47.367698, 8.494946], [47.390687, 8.53947], [47.387403, 8.497257], [47.394853, 8.52317], [47.413958, 8.563738], [47.394619, 8.488074], [47.394741, 8.525512], [47.381313, 8.491362], [47.366376, 8.547653], [47.415329, 8.528596], [47.385747, 8.482536], [47.413973, 8.549108], [47.359626, 8.522414], [47.368533, 8.520317], [47.375473, 8.544559], [47.363579, 8.535349], [47.377264, 8.538769], [47.399124, 8.507916], [47.363731, 8.535458], [47.385838, 8.519529], [47.365365, 8.560104], [47.363631, 8.557089], [47.390848, 8.478357], [47.381317, 8.541025], [47.409518, 8.549373], [47.383116, 8.572622], [47.39285, 8.474806], [47.402159, 8.496715], [47.368821, 8.532756], [47.357799, 8.525448], [47.419197, 8.506397], [47.405252, 8.555273], [47.37397, 8.536185], [47.380333, 8.500189], [47.360792, 8.522808], [47.366434, 8.540611], [47.37732, 8.543312], [47.370916, 8.563717], [47.375787, 8.544592], [47.39108, 8.545412], [47.36816, 8.541759], [47.376988, 8.49803], [47.370828, 8.543006], [47.397926, 8.534069], [47.38994, 8.476406], [47.366953, 8.52292], [47.374282, 8.524976], [47.376733, 8.535037], [47.377531, 8.511296], [47.398285, 8.536898], [47.406581, 8.527132], [47.354534, 8.552795], [47.391596, 8.538522], [47.357423, 8.521376], [47.373988, 8.546514], [47.36838, 8.498044], [47.378741, 8.530973], [47.339134, 8.525477], [47.414707, 8.546725], [47.376017, 8.535645], [47.366163, 8.548245], [47.376115, 8.535647], [47.374618, 8.541734], [47.373359, 8.518839], [47.372994, 8.528088], [47.420699, 8.502504], [47.395358, 8.525922], [47.332319, 8.529811], [47.370804, 8.546474], [47.40876, 8.483106], [47.393503, 8.512638], [47.403989, 8.569516], [47.402723, 8.545058], [47.373069, 8.538179], [47.37865, 8.542479], [47.428221, 8.49042], [47.374787, 8.52394], [47.416864, 8.514474], [47.366019, 8.519803], [47.382082, 8.505614], [47.370188, 8.511652], [47.412196, 8.542181], [47.423831, 8.516841], [47.369647, 8.467364], [47.370122, 8.564018], [47.392942, 8.548246], [47.373139, 8.544034], [47.400397, 8.506404], [47.401313, 8.534457], [47.397654, 8.533321], [47.363195, 8.527504], [47.384018, 8.548338], [47.372138, 8.512856], [47.324769, 8.519602], [47.377728, 8.50946], [47.376914, 8.541556], [47.381151, 8.504072], [47.366951, 8.543932], [47.39615, 8.531621], [47.38599, 8.518685], [47.360114, 8.530856], [47.374796, 8.527794], [47.431365, 8.516265], [47.371214, 8.523218], [47.383486, 8.496689], [47.42811, 8.545678], [47.361089, 8.589748], [47.408544, 8.550598], [47.367947, 8.540483], [47.392727, 8.523537], [47.370134, 8.548817], [47.382988, 8.529948], [47.361568, 8.517714], [47.370407, 8.511352], [47.386058, 8.535322], [47.393931, 8.505255], [47.376186, 8.488413], [47.353797, 8.553626], [47.380042, 8.547408], [47.365056, 8.553928], [47.375493, 8.543407], [47.419089, 8.546511], [47.373147, 8.524224], [47.416084, 8.5522], [47.421613, 8.507731], [47.359137, 8.596907], [47.383863, 8.529687], [47.37718, 8.52673], [47.375471, 8.528628], [47.392378, 8.491183], [47.370735, 8.524334], [47.404719, 8.534831], [47.387187, 8.539583], [47.387826, 8.517636], [47.393335, 8.492857], [47.352223, 8.52536], [47.368735, 8.545518], [47.380027, 8.520537], [47.363758, 8.535432], [47.365834, 8.533701], [47.370224, 8.548819], [47.367099, 8.539777], [47.370392, 8.522526], [47.370059, 8.562136], [47.376767, 8.535223], [47.372796, 8.517491], [47.406907, 8.550538], [47.395188, 8.525866], [47.390007, 8.525839], [47.398924, 8.538819], [47.364417, 8.557741], [47.369154, 8.527983], [47.373913, 8.538303], [47.407468, 8.548376], [47.36949, 8.548367], [47.373856, 8.514824], [47.386609, 8.497466], [47.383348, 8.527955], [47.400245, 8.543616], [47.379866, 8.524308], [47.359259, 8.56915], [47.374334, 8.524262], [47.366479, 8.545325], [47.369671, 8.525557], [47.374315, 8.521467], [47.353096, 8.556418], [47.353096, 8.556405], [47.40384, 8.568201], [47.36283, 8.558105], [47.351478, 8.531857], [47.40639, 8.481522], [47.39217, 8.541541], [47.376851, 8.544309], [47.423713, 8.544633], [47.389633, 8.511924], [47.393743, 8.50231], [47.391045, 8.522549], [47.377339, 8.53938], [47.37297, 8.536271], [47.382307, 8.514346], [47.368934, 8.501405], [47.386474, 8.496483], [47.377265, 8.538703], [47.370769, 8.535086], [47.356821, 8.557211], [47.361363, 8.576608], [47.410867, 8.550355], [47.392052, 8.517775], [47.363723, 8.56706], [47.378656, 8.539963], [47.351314, 8.576738], [47.382556, 8.514602], [47.335643, 8.540703], [47.352406, 8.562558], [47.403836, 8.576866], [47.384412, 8.539115], [47.363609, 8.535045], [47.386357, 8.482627], [47.368874, 8.529023], [47.380052, 8.536893], [47.372676, 8.534106], [47.365627, 8.539482], [47.367468, 8.550059], [47.399636, 8.585851], [47.374849, 8.541116], [47.428273, 8.489665], [47.395072, 8.525757], [47.410653, 8.485594], [47.389544, 8.477365], [47.386242, 8.498306], [47.354278, 8.553239], [47.353989, 8.553326], [47.379226, 8.539578], [47.375591, 8.54815], [47.38939, 8.521628], [47.356663, 8.523743], [47.404303, 8.576863], [47.374291, 8.544018], [47.370085, 8.564123], [47.410537, 8.543458], [47.35761, 8.521631], [47.378775, 8.526471], [47.377996, 8.526071], [47.370228, 8.536135], [47.388418, 8.52639], [47.389201, 8.546221], [47.359721, 8.558675], [47.3906, 8.491863], [47.359067, 8.596734], [47.373281, 8.52432], [47.374496, 8.527125], [47.34417, 8.535095], [47.40258, 8.553428], [47.428811, 8.488894], [47.357499, 8.571628], [47.377423, 8.539103], [47.375014, 8.538882], [47.411442, 8.544736], [47.379672, 8.527668], [47.371296, 8.523074], [47.394829, 8.525726], [47.36063, 8.521851], [47.35484, 8.601156], [47.381373, 8.54084], [47.353338, 8.576715], [47.370632, 8.524835], [47.390145, 8.547287], [47.383235, 8.515133], [47.374031, 8.544794], [47.379689, 8.494839], [47.384568, 8.533119], [47.40367, 8.486928], [47.39875, 8.506504], [47.403839, 8.486176], [47.373798, 8.533361], [47.370887, 8.514883], [47.385195, 8.548495], [47.35481, 8.534295], [47.397317, 8.531804], [47.379566, 8.521746], [47.387994, 8.488593], [47.357, 8.535704], [47.347369, 8.52591], [47.379002, 8.542341], [47.375828, 8.492127], [47.392699, 8.523616], [47.382886, 8.500332], [47.389755, 8.486866], [47.369871, 8.530169], [47.357918, 8.519493], [47.369871, 8.543436], [47.348468, 8.534324], [47.381827, 8.516601], [47.391196, 8.522764], [47.374366, 8.521786], [47.373781, 8.536115], [47.42022, 8.547754], [47.378217, 8.530327], [47.37471, 8.550012], [47.359459, 8.523932], [47.365454, 8.521605], [47.374396, 8.541504], [47.365267, 8.564617], [47.396201, 8.482303], [47.418037, 8.482705], [47.3898, 8.486827], [47.369533, 8.520139], [47.417197, 8.554331], [47.382477, 8.514415], [47.407024, 8.550593], [47.41665, 8.535355], [47.406961, 8.550565], [47.36435, 8.55533], [47.367218, 8.534841], [47.379535, 8.524037], [47.388588, 8.525612], [47.367099, 8.539791], [47.37683, 8.526643], [47.366953, 8.52292], [47.352352, 8.570883], [47.344233, 8.535084], [47.400236, 8.543642], [47.430904, 8.544133], [47.402728, 8.535135], [47.390922, 8.527037], [47.359758, 8.549276], [47.383425, 8.54822], [47.391639, 8.513898], [47.421179, 8.548066], [47.421265, 8.549419], [47.390654, 8.544781], [47.363581, 8.53515], [47.361984, 8.5507], [47.374851, 8.504515], [47.345306, 8.535701], [47.414044, 8.545426], [47.384313, 8.50746], [47.380082, 8.520446], [47.416789, 8.536776], [47.373584, 8.519811], [47.368082, 8.541387], [47.366531, 8.540904], [47.395956, 8.532147], [47.388232, 8.514598], [47.373487, 8.598424], [47.388731, 8.516992], [47.372438, 8.515431], [47.37876, 8.539383], [47.360576, 8.525716], [47.40522, 8.559433], [47.355147, 8.527207], [47.378889, 8.527732], [47.379614, 8.537626], [47.388766, 8.539046], [47.399721, 8.547645], [47.377686, 8.531309], [47.381662, 8.534066], [47.364296, 8.566463], [47.408145, 8.555599], [47.417375, 8.523297], [47.381627, 8.534038], [47.383332, 8.533464], [47.355721, 8.559359], [47.389847, 8.51214], [47.393793, 8.533547], [47.377042, 8.529045], [47.391097, 8.522749], [47.367074, 8.541405], [47.40007, 8.536511], [47.359313, 8.516463], [47.408767, 8.57941], [47.378797, 8.523161], [47.390966, 8.488214], [47.401813, 8.500153], [47.37592, 8.542012], [47.36766, 8.495157], [47.408759, 8.580231], [47.399025, 8.542385], [47.382229, 8.501339], [47.389898, 8.491981], [47.396871, 8.493683], [47.375329, 8.552991], [47.379272, 8.542293], [47.377235, 8.510244], [47.3525, 8.508185], [47.399277, 8.521471], [47.378554, 8.514522], [47.38534, 8.539876], [47.418967, 8.53095], [47.366086, 8.540405], [47.409366, 8.478732], [47.407387, 8.549263], [47.381549, 8.492081], [47.427032, 8.491616], [47.371586, 8.526669], [47.399661, 8.516909], [47.354307, 8.523682], [47.33959, 8.524759], [47.35135, 8.525395], [47.348936, 8.534307], [47.368388, 8.538546], [47.381717, 8.531114], [47.343093, 8.535748], [47.378482, 8.540264], [47.370425, 8.514199], [47.387323, 8.488196], [47.353358, 8.554372], [47.375456, 8.554768], [47.38446, 8.503224], [47.366891, 8.544606], [47.397125, 8.505266], [47.36526, 8.501808], [47.366279, 8.533313], [47.356479, 8.53568], [47.39354, 8.492968], [47.380198, 8.520528], [47.39018, 8.51016], [47.382447, 8.51468], [47.372609, 8.538263], [47.379048, 8.54511], [47.414031, 8.546817], [47.373599, 8.544891], [47.389896, 8.49214], [47.373848, 8.519538], [47.383985, 8.531028], [47.3674, 8.5356], [47.387097, 8.52631], [47.37748, 8.512924], [47.385481, 8.4751], [47.374709, 8.541683], [47.393027, 8.531796], [47.401087, 8.488056], [47.368051, 8.538976], [47.379812, 8.523327], [47.391699, 8.518973], [47.38698, 8.534877], [47.412582, 8.544998], [47.399402, 8.497296], [47.383929, 8.508154], [47.387966, 8.536156], [47.358972, 8.516417], [47.357292, 8.555923], [47.369163, 8.527943], [47.37113, 8.523508], [47.417725, 8.546152], [47.358472, 8.521768], [47.363648, 8.574724], [47.36896, 8.538015], [47.411339, 8.544243], [47.385678, 8.49309], [47.343379, 8.530249], [47.369871, 8.51387], [47.397275, 8.493757], [47.405552, 8.495524], [47.379418, 8.55991], [47.393493, 8.532865], [47.404351, 8.560978], [47.366131, 8.533773], [47.411472, 8.525509], [47.377594, 8.559673], [47.371478, 8.524747], [47.380861, 8.552087], [47.407552, 8.584869], [47.416558, 8.555258], [47.35116, 8.57684], [47.380767, 8.500833], [47.348876, 8.562007], [47.421229, 8.507471], [47.3656, 8.539429], [47.384796, 8.531786], [47.384986, 8.537405], [47.363694, 8.528904], [47.369106, 8.541553], [47.377323, 8.521131], [47.380258, 8.541784], [47.398603, 8.472189], [47.384944, 8.548424], [47.360644, 8.576526], [47.367954, 8.546296], [47.373326, 8.525301], [47.37774, 8.52551], [47.337411, 8.519197], [47.377202, 8.552739], [47.36929, 8.517261], [47.377787, 8.537747], [47.356048, 8.535565], [47.376983, 8.54655], [47.378527, 8.575518], [47.388526, 8.531147], [47.410347, 8.548264], [47.356362, 8.535637], [47.366549, 8.540891], [47.385095, 8.508508], [47.369855, 8.510678], [47.410339, 8.548211], [47.364676, 8.554185], [47.386245, 8.531736], [47.386209, 8.531696], [47.377505, 8.543727], [47.373651, 8.536549], [47.363126, 8.54695], [47.366941, 8.543111], [47.394751, 8.525433], [47.376138, 8.53615], [47.394663, 8.473226], [47.386408, 8.518256], [47.395052, 8.51149], [47.374432, 8.521443], [47.39866, 8.539184], [47.36574, 8.521796], [47.36468, 8.554675], [47.351737, 8.559222], [47.377794, 8.537946], [47.375031, 8.547489], [47.367828, 8.551973], [47.407714, 8.550806], [47.373938, 8.503001], [47.360544, 8.524272], [47.376872, 8.548706], [47.387771, 8.529224], [47.404577, 8.59457], [47.397527, 8.532458], [47.377001, 8.546563], [47.380637, 8.542613], [47.367363, 8.506842], [47.404556, 8.569422], [47.354099, 8.575301], [47.426315, 8.547112], [47.404708, 8.556626], [47.386378, 8.480296], [47.356389, 8.535638], [47.378221, 8.510635], [47.413943, 8.557867], [47.376106, 8.53566], [47.393356, 8.524543], [47.418579, 8.547163], [47.380384, 8.542701], [47.394585, 8.534424], [47.424797, 8.537485], [47.37797, 8.527925], [47.363326, 8.53357], [47.374493, 8.538844], [47.378235, 8.541689], [47.377478, 8.529517], [47.360432, 8.526653], [47.388192, 8.532266], [47.382506, 8.48275], [47.405449, 8.539417], [47.371342, 8.555979], [47.357023, 8.572491], [47.41004, 8.53241], [47.365098, 8.55332], [47.414134, 8.518805], [47.405387, 8.504716], [47.380478, 8.537577], [47.394672, 8.473239], [47.39225, 8.524521], [47.368942, 8.528482], [47.377356, 8.51855], [47.364012, 8.536192], [47.421458, 8.505064], [47.377958, 8.525316], [47.367038, 8.523359], [47.387827, 8.49802], [47.390231, 8.512453], [47.375482, 8.564104], [47.382994, 8.530186], [47.36293, 8.517331], [47.37589, 8.538529], [47.372537, 8.538327], [47.364663, 8.547168], [47.374574, 8.536952], [47.392686, 8.475068], [47.414271, 8.518649], [47.369516, 8.513306], [47.390014, 8.484076], [47.384391, 8.531897], [47.414821, 8.519402], [47.377749, 8.548301], [47.420606, 8.50282], [47.37937, 8.53774], [47.371543, 8.515837], [47.38715, 8.534986], [47.375139, 8.545571], [47.375338, 8.49654], [47.32906, 8.513867], [47.376083, 8.527714], [47.386158, 8.535271], [47.403763, 8.534149], [47.368188, 8.531154], [47.366654, 8.553392], [47.41169, 8.525262], [47.37405, 8.517145], [47.37042, 8.508028], [47.373137, 8.53295], [47.364622, 8.566218], [47.409575, 8.537767], [47.368536, 8.546546], [47.382494, 8.529832], [47.368477, 8.5292], [47.357129, 8.555152], [47.399431, 8.495124], [47.378622, 8.542532], [47.396676, 8.529261], [47.369421, 8.53392], [47.408676, 8.540518], [47.362333, 8.547146], [47.386288, 8.517552], [47.417426, 8.553911], [47.404932, 8.552948], [47.430745, 8.550399], [47.402387, 8.49933], [47.369681, 8.525518], [47.407634, 8.538495], [47.37636, 8.525958], [47.367254, 8.541409], [47.403192, 8.497955], [47.398203, 8.535174], [47.376902, 8.541807], [47.407917, 8.547498], [47.374429, 8.540803], [47.400118, 8.545693], [47.374262, 8.533847], [47.363462, 8.569835], [47.37163, 8.547604], [47.37438, 8.527004], [47.374473, 8.495649], [47.430319, 8.549887], [47.383544, 8.543362], [47.370862, 8.537538], [47.387601, 8.540519], [47.409915, 8.47971], [47.373762, 8.537187], [47.369031, 8.540943], [47.364987, 8.563856], [47.373813, 8.536553], [47.422332, 8.550674], [47.390499, 8.512657], [47.403837, 8.536761], [47.379056, 8.542302], [47.387117, 8.545939], [47.375133, 8.51579], [47.374126, 8.503137], [47.352466, 8.507986], [47.38131, 8.51026], [47.417305, 8.509659], [47.399815, 8.544428], [47.380788, 8.538074], [47.413822, 8.531971], [47.367929, 8.546084], [47.361277, 8.535249], [47.408354, 8.550647], [47.377583, 8.550522], [47.378376, 8.545705], [47.365359, 8.530672], [47.383858, 8.529237], [47.42554, 8.55102], [47.361161, 8.550246], [47.420462, 8.547799], [47.365361, 8.5305], [47.411496, 8.526782], [47.364176, 8.546337], [47.368135, 8.544367], [47.388379, 8.536283], [47.369534, 8.466899], [47.362641, 8.527029], [47.399856, 8.504671], [47.359361, 8.569748], [47.373978, 8.517104], [47.373334, 8.534914], [47.358402, 8.583984], [47.389435, 8.521536], [47.394794, 8.490661], [47.377872, 8.529644], [47.37002, 8.520056], [47.358159, 8.553665], [47.391388, 8.54518], [47.367549, 8.496465], [47.403235, 8.582153], [47.421375, 8.502372], [47.36827, 8.560218], [47.362522, 8.547189], [47.367695, 8.496243], [47.365526, 8.556546], [47.351474, 8.534174], [47.377996, 8.517477], [47.377491, 8.483327], [47.375815, 8.538819], [47.377224, 8.540198], [47.327078, 8.519014], [47.392827, 8.488397], [47.39672, 8.517829], [47.401765, 8.500443], [47.425716, 8.509589], [47.3875, 8.486583], [47.408928, 8.539569], [47.379244, 8.526269], [47.381764, 8.545166], [47.378849, 8.553568], [47.410845, 8.545094], [47.378307, 8.530342], [47.369248, 8.525588], [47.371433, 8.510313], [47.369306, 8.538486], [47.400143, 8.489932], [47.364121, 8.547355], [47.346299, 8.534385], [47.39318, 8.479118], [47.376672, 8.525289], [47.388426, 8.528443], [47.377124, 8.540223], [47.391085, 8.523067], [47.373567, 8.519757], [47.406903, 8.580496], [47.377663, 8.522317], [47.37861, 8.480939], [47.377193, 8.543363], [47.367611, 8.523675], [47.372436, 8.521376], [47.3892, 8.516935], [47.36659, 8.510705], [47.394811, 8.54088], [47.374597, 8.517289], [47.374942, 8.536986], [47.400785, 8.48858], [47.370211, 8.522668], [47.349266, 8.564477], [47.353075, 8.556642], [47.397992, 8.474151], [47.371067, 8.53876], [47.35219, 8.557987], [47.365636, 8.539469], [47.375932, 8.544528], [47.36607, 8.533507], [47.380002, 8.522219], [47.414339, 8.551236], [47.373862, 8.538037], [47.38385, 8.511834], [47.355356, 8.529806], [47.384868, 8.53184], [47.393776, 8.539057], [47.375032, 8.541769], [47.366844, 8.545783], [47.405717, 8.577595], [47.340171, 8.529918], [47.374433, 8.51853], [47.379248, 8.520137], [47.359702, 8.586236], [47.374956, 8.545938], [47.383769, 8.556399], [47.36925, 8.558385], [47.362996, 8.52178], [47.384994, 8.508718], [47.397905, 8.532466], [47.413792, 8.524589], [47.415305, 8.51382], [47.391376, 8.536107], [47.383646, 8.539258], [47.35961, 8.593674], [47.36364, 8.52321], [47.364226, 8.536382], [47.42767, 8.54661], [47.366366, 8.52504], [47.338309, 8.527049], [47.374409, 8.54108], [47.377395, 8.523], [47.382206, 8.540315], [47.38245, 8.540121], [47.369488, 8.525911], [47.359368, 8.579994], [47.360969, 8.535481], [47.377061, 8.537388], [47.362678, 8.506668], [47.419771, 8.482924], [47.418532, 8.547454], [47.406427, 8.567607], [47.355717, 8.535412], [47.356963, 8.529137], [47.412382, 8.514807], [47.379029, 8.523351], [47.369467, 8.526228], [47.384975, 8.530968], [47.374843, 8.517929], [47.389472, 8.50604], [47.366487, 8.540731], [47.373493, 8.537063], [47.378647, 8.539937], [47.421294, 8.549274], [47.369043, 8.534018], [47.386824, 8.535152], [47.431451, 8.516717], [47.392474, 8.492496], [47.418035, 8.505565], [47.371385, 8.548737], [47.370187, 8.548871], [47.404512, 8.546129], [47.38532, 8.508526], [47.37218, 8.569662], [47.41013, 8.542734], [47.340068, 8.5303], [47.368113, 8.529656], [47.352656, 8.52713], [47.4027, 8.5352], [47.409698, 8.543772], [47.369312, 8.533084], [47.373055, 8.54713], [47.369691, 8.553681], [47.424748, 8.552965], [47.36509, 8.55324], [47.392042, 8.492607], [47.391922, 8.518183], [47.391819, 8.517651], [47.369105, 8.541646], [47.380445, 8.537246], [47.39782, 8.502087], [47.369288, 8.505874], [47.423786, 8.552004], [47.412677, 8.561352], [47.379967, 8.527912], [47.367825, 8.534417], [47.373305, 8.535099], [47.351323, 8.560153], [47.361196, 8.535313], [47.396989, 8.522723], [47.398209, 8.536406], [47.414785, 8.560933], [47.370115, 8.525248], [47.379134, 8.489663], [47.369057, 8.532562], [47.339878, 8.524712], [47.382265, 8.568618], [47.360336, 8.553723], [47.386365, 8.496653], [47.362334, 8.518616], [47.379442, 8.54431], [47.370296, 8.534693], [47.383166, 8.574915], [47.370538, 8.559074], [47.420394, 8.508237], [47.367536, 8.534477], [47.403467, 8.497324], [47.370653, 8.470522], [47.420421, 8.508211], [47.383297, 8.540999], [47.380845, 8.510992], [47.407764, 8.547548], [47.402137, 8.546172], [47.359383, 8.522448], [47.367645, 8.5344], [47.404396, 8.572042], [47.368086, 8.534369], [47.380073, 8.520446], [47.378951, 8.508623], [47.358249, 8.554686], [47.369337, 8.529536], [47.39194, 8.518196], [47.39484, 8.471533], [47.383711, 8.539088], [47.370707, 8.52444], [47.394193, 8.490411], [47.370982, 8.538202], [47.379203, 8.5763], [47.364595, 8.566205], [47.364171, 8.571822], [47.430772, 8.5504], [47.39073, 8.522516], [47.360348, 8.566379], [47.368225, 8.495261], [47.378262, 8.52748], [47.385886, 8.53259], [47.370272, 8.524841], [47.366747, 8.544589], [47.427404, 8.546194], [47.332353, 8.517572], [47.36953, 8.488335], [47.377243, 8.526731], [47.395686, 8.526432], [47.409149, 8.547484], [47.391805, 8.528764], [47.363683, 8.563802], [47.384621, 8.483653], [47.410556, 8.556431], [47.427623, 8.545867], [47.408834, 8.555905], [47.349146, 8.568499], [47.379521, 8.521706], [47.378731, 8.545328], [47.384826, 8.531495], [47.398498, 8.494801], [47.389241, 8.521122], [47.3937, 8.508919], [47.422467, 8.542248], [47.377692, 8.538209], [47.387874, 8.488988], [47.415415, 8.536589], [47.390899, 8.522732], [47.365841, 8.494339], [47.376955, 8.54006], [47.36787, 8.534405], [47.397866, 8.538426], [47.399132, 8.54244], [47.333607, 8.51429], [47.391274, 8.537336], [47.373401, 8.527871], [47.414974, 8.550693], [47.367973, 8.540616], [47.368814, 8.528691], [47.382683, 8.537451], [47.378526, 8.51268], [47.371344, 8.536038], [47.370295, 8.548847], [47.374439, 8.541637], [47.392378, 8.524272], [47.372952, 8.562528], [47.362452, 8.50485], [47.398846, 8.540394], [47.382329, 8.545337], [47.374447, 8.539889], [47.394849, 8.583231], [47.381921, 8.516166], [47.386177, 8.54833], [47.375099, 8.519444], [47.36859, 8.560569], [47.369357, 8.5566], [47.413207, 8.571487], [47.381095, 8.513116], [47.391454, 8.485032], [47.399277, 8.535686], [47.36125, 8.535301], [47.357528, 8.521669], [47.361981, 8.597671], [47.360923, 8.589215], [47.383781, 8.540228], [47.429085, 8.543472], [47.36716, 8.519945], [47.36063, 8.548434], [47.387827, 8.536603], [47.378419, 8.519326], [47.382493, 8.537579], [47.37609, 8.521225], [47.381638, 8.509843], [47.373626, 8.53639], [47.375499, 8.541831], [47.351589, 8.521985], [47.385033, 8.487793], [47.41572, 8.512768], [47.380283, 8.552273], [47.380544, 8.51239], [47.395623, 8.545401], [47.396468, 8.545471], [47.384484, 8.53815], [47.370792, 8.470088], [47.391172, 8.489318], [47.35374, 8.576035], [47.397193, 8.491927], [47.360926, 8.598839], [47.336648, 8.537137], [47.368249, 8.550301], [47.407686, 8.565818], [47.3525, 8.573189], [47.363895, 8.566958], [47.373122, 8.534539], [47.385331, 8.548379], [47.38577, 8.492867], [47.358103, 8.520847], [47.372935, 8.475849], [47.360545, 8.514622], [47.365223, 8.516424], [47.393572, 8.544444], [47.344832, 8.532661], [47.413664, 8.54567], [47.4237, 8.514532], [47.376254, 8.554944], [47.36086, 8.535624], [47.392378, 8.491183], [47.376946, 8.540021], [47.366307, 8.540767], [47.37405, 8.517159], [47.413731, 8.546188], [47.382148, 8.551994], [47.373001, 8.533001], [47.376766, 8.526748], [47.408982, 8.539636], [47.35425, 8.573637], [47.393128, 8.492827], [47.375089, 8.517603], [47.345004, 8.52966], [47.370143, 8.548844], [47.399806, 8.467457], [47.374432, 8.546126], [47.368355, 8.541048], [47.370911, 8.539949], [47.422486, 8.550638], [47.373241, 8.542751], [47.351147, 8.534458], [47.372338, 8.494111], [47.376684, 8.523038], [47.392301, 8.506481], [47.377759, 8.53776], [47.368109, 8.54144], [47.348441, 8.534363], [47.382329, 8.514849], [47.377364, 8.546213], [47.351396, 8.511777], [47.387008, 8.552666], [47.35361, 8.554337], [47.388568, 8.539069], [47.40449, 8.574349], [47.360616, 8.535712], [47.384617, 8.53463], [47.365104, 8.548064], [47.413229, 8.54419], [47.361281, 8.576672], [47.392217, 8.584725], [47.398286, 8.536858], [47.384808, 8.531455], [47.389859, 8.535744], [47.4189, 8.507372], [47.359644, 8.522414], [47.371371, 8.536065], [47.417574, 8.483159], [47.389284, 8.524209], [47.382146, 8.540896], [47.414366, 8.546638], [47.362281, 8.504886], [47.385224, 8.495531], [47.383089, 8.540161], [47.378582, 8.542067], [47.377034, 8.537427], [47.374565, 8.541653], [47.373312, 8.520083], [47.369831, 8.552267], [47.372773, 8.542794], [47.395071, 8.53254], [47.417916, 8.483113], [47.387155, 8.519159], [47.383886, 8.527224], [47.379224, 8.537975], [47.369047, 8.541102], [47.379153, 8.526466], [47.358147, 8.58795], [47.377222, 8.499054], [47.383238, 8.529145], [47.370673, 8.51946], [47.386341, 8.53489], [47.374458, 8.538711], [47.377661, 8.583975], [47.400194, 8.494305], [47.363114, 8.597748], [47.376313, 8.516542], [47.393404, 8.498992], [47.365669, 8.536001], [47.406845, 8.58541], [47.40007, 8.536524], [47.421293, 8.502423], [47.366654, 8.549645], [47.406853, 8.55059], [47.384573, 8.54296], [47.355156, 8.520443], [47.379455, 8.52969], [47.380377, 8.501222], [47.353572, 8.556441], [47.383473, 8.515667], [47.377205, 8.540291], [47.355051, 8.526861], [47.363472, 8.535294], [47.379072, 8.527391], [47.389656, 8.539118], [47.360898, 8.530674], [47.362131, 8.547552], [47.398985, 8.541867], [47.384993, 8.530995], [47.389989, 8.536277], [47.376256, 8.495446], [47.371329, 8.524386], [47.396718, 8.529527], [47.368963, 8.564761], [47.404336, 8.493804], [47.393901, 8.524978], [47.384405, 8.531288], [47.39798, 8.53407], [47.381379, 8.5174], [47.422677, 8.543842], [47.387579, 8.490757], [47.407539, 8.491734], [47.409338, 8.546613], [47.385061, 8.5484], [47.393041, 8.524537], [47.406717, 8.552521], [47.409814, 8.543814], [47.419583, 8.555945], [47.419016, 8.538187], [47.363386, 8.534868], [47.388448, 8.519423], [47.365798, 8.556274], [47.365558, 8.524864], [47.35047, 8.578401], [47.383367, 8.484052], [47.419101, 8.507972], [47.39544, 8.521049], [47.36118, 8.521704], [47.374957, 8.544879], [47.399206, 8.542216], [47.403408, 8.486075], [47.426288, 8.554641], [47.417774, 8.507561], [47.386486, 8.518536], [47.39499, 8.522033], [47.387199, 8.519292], [47.415458, 8.570356], [47.36268, 8.518146], [47.361909, 8.560309], [47.356497, 8.535693], [47.370907, 8.50204], [47.369969, 8.549092], [47.39854, 8.591087], [47.371701, 8.535384], [47.373959, 8.51337], [47.371393, 8.535695], [47.374894, 8.545778], [47.380168, 8.535134], [47.374638, 8.520574], [47.366139, 8.540473], [47.409257, 8.578068], [47.407592, 8.530571], [47.378407, 8.555624], [47.394254, 8.533238], [47.392063, 8.517576], [47.397844, 8.525589], [47.397989, 8.474509], [47.408853, 8.548405], [47.365549, 8.561525], [47.364239, 8.565853], [47.360426, 8.564845], [47.390787, 8.474157], [47.365062, 8.547719], [47.413392, 8.53933], [47.413364, 8.531869], [47.385238, 8.485108], [47.407001, 8.551971], [47.370262, 8.530667], [47.377567, 8.506464], [47.361359, 8.526566], [47.365864, 8.549443], [47.360659, 8.60209], [47.388874, 8.471895], [47.368113, 8.52391], [47.389945, 8.54372], [47.359154, 8.586198], [47.402706, 8.492062], [47.366958, 8.523357], [47.369057, 8.488882], [47.411895, 8.537868], [47.377202, 8.529194], [47.409697, 8.543891], [47.403313, 8.579637], [47.416314, 8.545102], [47.369417, 8.525843], [47.408465, 8.546675], [47.425029, 8.537728], [47.368919, 8.529077], [47.36954, 8.52619], [47.384862, 8.500689], [47.372743, 8.55062], [47.383005, 8.530928], [47.368321, 8.55115], [47.384939, 8.495181], [47.37946, 8.555527], [47.369082, 8.541275], [47.387769, 8.494549], [47.398525, 8.539142], [47.411173, 8.570662], [47.394229, 8.493405], [47.381725, 8.540715], [47.342902, 8.524575], [47.390742, 8.489111], [47.412452, 8.523608], [47.370152, 8.548831], [47.375346, 8.52664], [47.385456, 8.522886], [47.33536, 8.517329], [47.385348, 8.530526], [47.362145, 8.551709], [47.38535, 8.492541], [47.335535, 8.516856], [47.369588, 8.525847], [47.343696, 8.519509], [47.379163, 8.508071], [47.354895, 8.574789], [47.359404, 8.52315], [47.371944, 8.539242], [47.371908, 8.539175], [47.410499, 8.550268], [47.408173, 8.556421], [47.359482, 8.521484], [47.382003, 8.516035], [47.349532, 8.561187], [47.368668, 8.544034], [47.362199, 8.54893], [47.352041, 8.558527], [47.369316, 8.555275], [47.35533, 8.574494], [47.362872, 8.521632], [47.364368, 8.562784], [47.362807, 8.516031], [47.375863, 8.545163], [47.374201, 8.5212], [47.379811, 8.507038], [47.405312, 8.558348], [47.34292, 8.535983], [47.368538, 8.524581], [47.392267, 8.52174], [47.335333, 8.541093], [47.363927, 8.546927], [47.377137, 8.555796], [47.377395, 8.527807], [47.381888, 8.531104], [47.365547, 8.539308], [47.389272, 8.487545], [47.36847, 8.538455], [47.365274, 8.521575], [47.366772, 8.544802], [47.404805, 8.483744], [47.413886, 8.54696], [47.378464, 8.526995], [47.377596, 8.526527], [47.377724, 8.518676], [47.373158, 8.53732], [47.370178, 8.539457], [47.37762, 8.529679], [47.359189, 8.525913], [47.377089, 8.54201], [47.409924, 8.479683], [47.372095, 8.524163], [47.367379, 8.545318], [47.374633, 8.518283], [47.371998, 8.536383], [47.386469, 8.489119], [47.367798, 8.494802], [47.395617, 8.520364], [47.377031, 8.516782], [47.369652, 8.493713], [47.380365, 8.51326], [47.352067, 8.558593], [47.386824, 8.497616], [47.371393, 8.524242], [47.40188, 8.497717], [47.38985, 8.510856], [47.366909, 8.558561], [47.392085, 8.500648], [47.370143, 8.548831], [47.377091, 8.543718], [47.364321, 8.555515], [47.380592, 8.548201], [47.383678, 8.54065], [47.381693, 8.490084], [47.399209, 8.521934], [47.382224, 8.504835], [47.419155, 8.506052], [47.366473, 8.547894], [47.382166, 8.551955], [47.392643, 8.527655], [47.377006, 8.542273], [47.393363, 8.524795], [47.411082, 8.545788], [47.397509, 8.532431], [47.394883, 8.525754], [47.37108, 8.51633], [47.382085, 8.515931], [47.367678, 8.549799], [47.386185, 8.51808], [47.413918, 8.518814], [47.360229, 8.507917], [47.364001, 8.55143], [47.376068, 8.534057], [47.357019, 8.557188], [47.411631, 8.561595], [47.369195, 8.525508], [47.369467, 8.526202], [47.419215, 8.506384], [47.403784, 8.556302], [47.411656, 8.560893], [47.408129, 8.550749], [47.364531, 8.566283], [47.377723, 8.52543], [47.383737, 8.57351], [47.404175, 8.560577], [47.351073, 8.581961], [47.376131, 8.543486], [47.394805, 8.525408], [47.351581, 8.525665], [47.401816, 8.499822], [47.403826, 8.534124], [47.399938, 8.544709], [47.405242, 8.555286], [47.39205, 8.510224], [47.407082, 8.550144], [47.378092, 8.525411], [47.396564, 8.528702], [47.40884, 8.54594], [47.373055, 8.532975], [47.390177, 8.541102], [47.398311, 8.537018], [47.380869, 8.538075], [47.367583, 8.496678], [47.373382, 8.519277], [47.403162, 8.486348], [47.368395, 8.503287], [47.375974, 8.523037], [47.378804, 8.54239], [47.380561, 8.517317], [47.413636, 8.481041], [47.371842, 8.523377], [47.412025, 8.550592], [47.374469, 8.549768], [47.374808, 8.518856], [47.392745, 8.522544], [47.358235, 8.58545], [47.374886, 8.532483], [47.419044, 8.547478], [47.358424, 8.583667], [47.375791, 8.529112], [47.409383, 8.544666], [47.37793, 8.541524], [47.406299, 8.480712], [47.42803, 8.54565], [47.388916, 8.489114], [47.372247, 8.535752], [47.342762, 8.530845], [47.369502, 8.526348], [47.378272, 8.49926], [47.367057, 8.536639], [47.408033, 8.572596], [47.383796, 8.574001], [47.353579, 8.553847], [47.357251, 8.554559], [47.371643, 8.515772], [47.413703, 8.514887], [47.381939, 8.516166], [47.357876, 8.519135], [47.372423, 8.571548], [47.385403, 8.55491], [47.377104, 8.529112], [47.372756, 8.530387], [47.353581, 8.554601], [47.363785, 8.535446], [47.390318, 8.52521], [47.403954, 8.503044], [47.391944, 8.517852], [47.393758, 8.539123], [47.421466, 8.549079], [47.332674, 8.51787], [47.369494, 8.535788], [47.374695, 8.545933], [47.396794, 8.520494], [47.370606, 8.558572], [47.40345, 8.556467], [47.414103, 8.548713], [47.397907, 8.534148], [47.391609, 8.514136], [47.403324, 8.497268], [47.420359, 8.503279], [47.400185, 8.546184], [47.389054, 8.539052], [47.357685, 8.534659], [47.378991, 8.543519], [47.405998, 8.566352], [47.36773, 8.487492], [47.400411, 8.585709], [47.405711, 8.535501], [47.381562, 8.53609], [47.368437, 8.541857], [47.409992, 8.54501], [47.404364, 8.572518], [47.403968, 8.558731], [47.403244, 8.48627], [47.370896, 8.548105], [47.382983, 8.575189], [47.354434, 8.513055], [47.384158, 8.54315], [47.370924, 8.523451], [47.374061, 8.517927], [47.397368, 8.592241], [47.377358, 8.498885], [47.427582, 8.54637], [47.378535, 8.541325], [47.360743, 8.535635], [47.383979, 8.556125], [47.421211, 8.507458], [47.406595, 8.546543], [47.410379, 8.539281], [47.349658, 8.534044], [47.378726, 8.543037], [47.370244, 8.53256], [47.358729, 8.524129], [47.387836, 8.527054], [47.361574, 8.548441], [47.403243, 8.548076], [47.376217, 8.542032], [47.402532, 8.500234], [47.371328, 8.546273], [47.377785, 8.543547], [47.374807, 8.512129], [47.353233, 8.513534], [47.420759, 8.548693], [47.359552, 8.549193], [47.361525, 8.547883], [47.428002, 8.545663], [47.365594, 8.598822], [47.369187, 8.527335], [47.428677, 8.543821], [47.393727, 8.502045], [47.382512, 8.531752], [47.362894, 8.516417], [47.371159, 8.518477], [47.422512, 8.540393], [47.413365, 8.553389], [47.374776, 8.496026], [47.364331, 8.507919], [47.36843, 8.541738], [47.373956, 8.503041], [47.392534, 8.55041], [47.384326, 8.529167], [47.35369, 8.601885], [47.369134, 8.525361], [47.383013, 8.514824], [47.409653, 8.537106], [47.369288, 8.505861], [47.373962, 8.529339], [47.369071, 8.525346], [47.386253, 8.490214], [47.404665, 8.557288], [47.368975, 8.500863], [47.367772, 8.523837], [47.420949, 8.549519], [47.39189, 8.517771], [47.36922, 8.53998], [47.391398, 8.538465], [47.419177, 8.555154], [47.359644, 8.569396], [47.374466, 8.539757], [47.391952, 8.517892], [47.400254, 8.517914], [47.351892, 8.523209], [47.384906, 8.529696], [47.386631, 8.52038], [47.394165, 8.493483], [47.391952, 8.517879], [47.374092, 8.538465], [47.410577, 8.557134], [47.376583, 8.528029], [47.390289, 8.508109], [47.374673, 8.535961], [47.411725, 8.512899], [47.374144, 8.527198], [47.376965, 8.541875], [47.388918, 8.487896], [47.374443, 8.528925], [47.344474, 8.530536], [47.384315, 8.528438], [47.371974, 8.54732], [47.369596, 8.553295], [47.385208, 8.536774], [47.381224, 8.534732], [47.385886, 8.519266], [47.418526, 8.547056], [47.389809, 8.534339], [47.427177, 8.545487], [47.408924, 8.554065], [47.368934, 8.519783], [47.383115, 8.533619], [47.382194, 8.55189], [47.362399, 8.504743], [47.387257, 8.518843], [47.370865, 8.55875], [47.36787, 8.560633], [47.378405, 8.541799], [47.393115, 8.521426], [47.372521, 8.533322], [47.369733, 8.541791], [47.370644, 8.501214], [47.368654, 8.500512], [47.356761, 8.573492], [47.41965, 8.555509], [47.422145, 8.550498], [47.361885, 8.554444], [47.389944, 8.512354], [47.39023, 8.512492], [47.370566, 8.535572], [47.360328, 8.567491], [47.386208, 8.474187], [47.35884, 8.51611], [47.406172, 8.555001], [47.365487, 8.532436], [47.374167, 8.540917], [47.389183, 8.541611], [47.400419, 8.493249], [47.38021, 8.501736], [47.377602, 8.498757], [47.415024, 8.552973], [47.4275, 8.546435], [47.422572, 8.550984], [47.356137, 8.52041], [47.414194, 8.51825], [47.408772, 8.546469], [47.367842, 8.510506], [47.370944, 8.524113], [47.375644, 8.5778], [47.378778, 8.532788], [47.409374, 8.545673], [47.372055, 8.547361], [47.36729, 8.534856], [47.37869, 8.542017], [47.369132, 8.540746], [47.369199, 8.523217], [47.415404, 8.513875], [47.398858, 8.506519], [47.335932, 8.541489], [47.417416, 8.523775], [47.364375, 8.546222], [47.390551, 8.539639], [47.406008, 8.481051], [47.364642, 8.554899], [47.383545, 8.572989], [47.394769, 8.525447], [47.386203, 8.47575], [47.32958, 8.508215], [47.411342, 8.56257], [47.408334, 8.547109], [47.396728, 8.517922], [47.39862, 8.534799], [47.36968, 8.525584], [47.366339, 8.544899], [47.423075, 8.49843], [47.382601, 8.51459], [47.400427, 8.494376], [47.387955, 8.49095], [47.388927, 8.536295], [47.41116, 8.526205], [47.365728, 8.561608], [47.389671, 8.545992], [47.391371, 8.537511], [47.374384, 8.518966], [47.424619, 8.513438], [47.375229, 8.52857], [47.382745, 8.529929], [47.362813, 8.569093], [47.37821, 8.526261], [47.408791, 8.546443], [47.383061, 8.540226], [47.372711, 8.517926], [47.377864, 8.514243], [47.384217, 8.54825], [47.365075, 8.564957], [47.37752, 8.525942], [47.379892, 8.527289], [47.373133, 8.531441], [47.377513, 8.543793], [47.357371, 8.535446], [47.370236, 8.513308], [47.367495, 8.545413], [47.386637, 8.533996], [47.340488, 8.519193], [47.378531, 8.528439], [47.340748, 8.528872], [47.366718, 8.545741], [47.358186, 8.519657], [47.369142, 8.52544], [47.387638, 8.49803], [47.410966, 8.550331], [47.429205, 8.548763], [47.397126, 8.574086], [47.358946, 8.534486], [47.407723, 8.584038], [47.380515, 8.512548], [47.36946, 8.539376], [47.37174, 8.556676], [47.378633, 8.542373], [47.404129, 8.572606], [47.381473, 8.510157], [47.37399, 8.538781], [47.365592, 8.539389], [47.373031, 8.53651], [47.374325, 8.524301], [47.368557, 8.523535], [47.389632, 8.51203], [47.410746, 8.572111], [47.393837, 8.50569], [47.430763, 8.5504], [47.39501, 8.512138], [47.385813, 8.529847], [47.393635, 8.519688], [47.403953, 8.533968], [47.350208, 8.561069], [47.39694, 8.54874], [47.383062, 8.527817], [47.396564, 8.528689], [47.366602, 8.540946], [47.369959, 8.51023], [47.3883, 8.537023], [47.414673, 8.551137], [47.404909, 8.557174], [47.377026, 8.541995], [47.375905, 8.553837], [47.373177, 8.544723], [47.379593, 8.523667], [47.403941, 8.569753], [47.377882, 8.541841], [47.39221, 8.538243], [47.364621, 8.537409], [47.378326, 8.527336], [47.384843, 8.531575], [47.409315, 8.537629], [47.41547, 8.528877], [47.403853, 8.576893], [47.390704, 8.522489], [47.414236, 8.518542], [47.385053, 8.532202], [47.352619, 8.532013], [47.352142, 8.531964], [47.391068, 8.536272], [47.368959, 8.524761], [47.375812, 8.540143], [47.396126, 8.544563], [47.362965, 8.558081], [47.368171, 8.533021], [47.419579, 8.548006], [47.402286, 8.503528], [47.398164, 8.536432], [47.370821, 8.54], [47.419365, 8.547763], [47.377946, 8.549311], [47.369508, 8.545587], [47.364912, 8.533298], [47.35982, 8.522828], [47.389897, 8.542196], [47.382175, 8.551942], [47.420296, 8.503331], [47.375416, 8.484942], [47.410792, 8.570164], [47.358657, 8.534546], [47.355103, 8.562747], [47.37786, 8.5079], [47.392745, 8.522544], [47.358343, 8.571804], [47.370305, 8.548834], [47.371709, 8.557987], [47.386131, 8.518039], [47.371721, 8.54272], [47.362122, 8.547538], [47.368196, 8.539787], [47.402448, 8.548391], [47.374904, 8.527783], [47.366262, 8.555754], [47.370573, 8.55832], [47.375498, 8.528655], [47.353493, 8.576546], [47.398735, 8.539795], [47.390828, 8.521763], [47.373461, 8.598331], [47.378462, 8.540489], [47.361096, 8.535404], [47.375113, 8.547398], [47.384811, 8.524528], [47.352642, 8.524734], [47.381016, 8.542449], [47.37927, 8.537857], [47.377991, 8.54183], [47.379204, 8.538147], [47.427087, 8.546386], [47.406912, 8.496333], [47.411097, 8.526164], [47.365153, 8.553228], [47.398121, 8.535305], [47.410564, 8.556564], [47.370197, 8.548819], [47.387198, 8.519319], [47.428555, 8.543408], [47.411995, 8.524446], [47.363685, 8.535537], [47.378556, 8.542001], [47.365594, 8.532451], [47.355428, 8.574575], [47.373895, 8.538302], [47.357954, 8.520434], [47.383127, 8.572477], [47.392398, 8.543983], [47.408285, 8.546605], [47.413138, 8.546136], [47.358419, 8.520708], [47.403778, 8.57085], [47.364835, 8.530993], [47.369234, 8.527058], [47.370759, 8.515026], [47.422829, 8.541102], [47.382603, 8.529781], [47.407649, 8.491471], [47.366307, 8.540781], [47.361154, 8.590372], [47.378731, 8.539594], [47.379133, 8.516056], [47.426138, 8.547758], [47.375065, 8.55329], [47.387845, 8.492113], [47.388488, 8.492656], [47.377602, 8.542034], [47.399524, 8.585306], [47.411321, 8.562026], [47.376078, 8.559217], [47.383143, 8.530653], [47.361455, 8.576372], [47.398345, 8.532475], [47.369806, 8.51024], [47.374762, 8.518908], [47.3751, 8.550563], [47.376934, 8.540338], [47.362141, 8.559586], [47.376697, 8.533156], [47.372035, 8.529551], [47.367789, 8.523877], [47.349781, 8.561457], [47.366248, 8.545069], [47.377635, 8.522343], [47.374417, 8.54116], [47.374451, 8.521338], [47.428627, 8.536742], [47.393069, 8.521584], [47.341845, 8.530813], [47.40564, 8.591784], [47.378957, 8.542393], [47.382437, 8.528294], [47.37175, 8.553816], [47.360011, 8.569563], [47.378652, 8.540387], [47.378576, 8.545471], [47.370957, 8.548292], [47.362323, 8.577727], [47.354587, 8.602156], [47.373905, 8.544804], [47.401589, 8.499102], [47.408831, 8.579278], [47.375374, 8.560421], [47.404074, 8.563489], [47.378486, 8.5418], [47.397164, 8.594661], [47.365007, 8.535603], [47.375625, 8.512211], [47.398197, 8.536711], [47.391608, 8.505539], [47.369441, 8.512709], [47.365638, 8.539257], [47.361202, 8.576499], [47.409536, 8.549374], [47.383745, 8.542068], [47.373961, 8.538979], [47.391292, 8.54588], [47.375294, 8.528386], [47.368964, 8.540438], [47.404632, 8.54955], [47.348123, 8.532741], [47.411399, 8.52564], [47.404186, 8.588758], [47.371643, 8.515772], [47.418783, 8.506362], [47.369928, 8.5135], [47.393227, 8.478947], [47.37845, 8.541747], [47.376423, 8.515353], [47.369965, 8.510482], [47.370188, 8.548818], [47.379367, 8.527556], [47.389813, 8.478456], [47.369279, 8.527085], [47.389451, 8.538954], [47.356628, 8.523716], [47.389145, 8.494629], [47.367174, 8.544214], [47.367369, 8.541637], [47.404954, 8.557161], [47.370197, 8.548805], [47.388203, 8.497299], [47.38242, 8.537617], [47.369382, 8.541811], [47.374273, 8.543964], [47.3793, 8.542281], [47.405239, 8.593193], [47.371289, 8.531416], [47.413976, 8.548857], [47.373029, 8.532895], [47.4056, 8.549901], [47.375863, 8.515672], [47.369881, 8.561947], [47.377094, 8.552736], [47.38106, 8.569506], [47.380283, 8.512398], [47.379224, 8.52554], [47.398167, 8.536154], [47.378086, 8.483193], [47.39424, 8.480278], [47.393802, 8.500762], [47.406927, 8.587148], [47.369806, 8.51024], [47.368005, 8.567945], [47.41017, 8.57027], [47.360636, 8.565419], [47.405252, 8.555273], [47.386514, 8.528007], [47.376235, 8.536311], [47.38997, 8.484036], [47.364763, 8.554465], [47.390978, 8.526813], [47.382146, 8.51417], [47.393817, 8.472322], [47.408373, 8.550595], [47.377791, 8.498801], [47.389428, 8.511681], [47.375732, 8.523853], [47.376935, 8.540245], [47.411975, 8.512069], [47.373553, 8.530761], [47.379967, 8.527899], [47.378349, 8.545691], [47.374446, 8.540009], [47.369025, 8.571343], [47.385031, 8.494958], [47.411282, 8.570638], [47.420959, 8.502562], [47.36038, 8.533112], [47.374979, 8.539702], [47.403086, 8.575313], [47.397251, 8.53118], [47.386245, 8.531723], [47.379295, 8.527581], [47.400228, 8.547312], [47.416418, 8.533217], [47.393243, 8.513494], [47.368709, 8.521698], [47.385132, 8.532442], [47.377006, 8.528964], [47.369034, 8.528338], [47.364129, 8.547474], [47.36402, 8.549458], [47.39055, 8.513929], [47.358658, 8.53448], [47.398953, 8.541443], [47.394337, 8.47457], [47.369127, 8.524116], [47.403083, 8.497992], [47.357892, 8.534636], [47.379256, 8.544955], [47.392738, 8.545116], [47.373873, 8.530224], [47.36377, 8.533221], [47.357619, 8.521578], [47.353036, 8.557965], [47.383076, 8.54808], [47.361167, 8.560757], [47.377054, 8.513339], [47.359582, 8.522386], [47.390705, 8.508806], [47.362791, 8.554688], [47.370617, 8.524477], [47.36987, 8.510056], [47.396164, 8.540577], [47.413456, 8.521163], [47.366569, 8.533067], [47.418394, 8.546775], [47.358194, 8.553811], [47.379251, 8.527474], [47.36956, 8.467005], [47.374934, 8.518805], [47.380301, 8.512411], [47.391467, 8.51971], [47.409846, 8.545166], [47.364763, 8.554531], [47.386096, 8.518912], [47.417159, 8.506926], [47.379164, 8.544198], [47.380944, 8.548049], [47.41877, 8.540395], [47.378714, 8.544229], [47.389381, 8.521575], [47.397076, 8.532554], [47.376427, 8.538858], [47.378442, 8.540753], [47.408777, 8.555294], [47.368579, 8.538352], [47.368699, 8.524716], [47.377152, 8.540144], [47.391183, 8.489106], [47.372524, 8.529243], [47.376048, 8.559587], [47.367879, 8.49769], [47.422726, 8.550934], [47.419691, 8.500589], [47.378142, 8.54574], [47.385185, 8.532509], [47.415628, 8.529278], [47.414358, 8.517975], [47.353857, 8.553945], [47.330813, 8.515901], [47.409219, 8.544888], [47.373423, 8.527355], [47.389297, 8.539044], [47.369229, 8.491798], [47.375657, 8.533717], [47.355597, 8.601887], [47.377486, 8.543793], [47.34992, 8.53389], [47.381435, 8.517083], [47.376001, 8.524918], [47.358289, 8.555123], [47.41575, 8.552326], [47.378795, 8.542376], [47.389714, 8.511926], [47.420573, 8.509354], [47.379569, 8.543213], [47.415777, 8.569952], [47.364351, 8.555237], [47.391433, 8.534796], [47.364721, 8.55694], [47.379811, 8.490339], [47.360687, 8.524421], [47.368789, 8.506314], [47.366166, 8.540473], [47.386829, 8.4951], [47.33732, 8.519353], [47.398969, 8.538846], [47.408972, 8.539662], [47.400562, 8.534931], [47.40628, 8.492716], [47.362159, 8.547473], [47.414209, 8.518542], [47.365094, 8.559357], [47.380008, 8.526417], [47.380405, 8.548038], [47.35571, 8.572423], [47.395988, 8.521126], [47.377176, 8.539496], [47.398318, 8.532474], [47.420879, 8.549398], [47.38393, 8.515796], [47.385798, 8.548455], [47.394238, 8.52737], [47.357954, 8.520447], [47.370563, 8.524503], [47.382229, 8.492492], [47.386843, 8.519762], [47.370295, 8.548874], [47.370852, 8.554579], [47.378518, 8.527009], [47.428101, 8.545665], [47.391641, 8.525131], [47.382447, 8.537605], [47.385184, 8.530761], [47.402947, 8.575761], [47.390739, 8.52253], [47.405833, 8.553695], [47.381514, 8.491948], [47.399879, 8.495226], [47.403462, 8.486049], [47.376903, 8.512184], [47.385886, 8.532576], [47.368232, 8.506329], [47.361524, 8.517699], [47.371254, 8.530356], [47.41395, 8.548697], [47.403463, 8.55603], [47.378795, 8.542376], [47.392089, 8.517736], [47.401756, 8.545515], [47.359633, 8.557561], [47.369055, 8.553442], [47.36605, 8.521326], [47.355886, 8.595473], [47.400556, 8.544099], [47.357601, 8.554685], [47.354221, 8.502012], [47.390971, 8.488731], [47.361309, 8.505926], [47.417997, 8.554348], [47.408746, 8.546376], [47.388982, 8.539038], [47.404197, 8.561041], [47.393469, 8.511538], [47.384082, 8.532235], [47.383391, 8.574867], [47.403651, 8.572781], [47.379932, 8.541936], [47.369142, 8.525414], [47.371472, 8.556538], [47.386243, 8.533842], [47.366728, 8.49964], [47.419844, 8.504528], [47.384903, 8.537655], [47.387919, 8.490975], [47.37994, 8.495956], [47.374853, 8.518804], [47.406667, 8.551182], [47.393428, 8.47352], [47.403126, 8.547147], [47.396748, 8.532097], [47.385246, 8.530828], [47.377056, 8.520821], [47.39127, 8.514845], [47.36827, 8.554618], [47.385541, 8.54241], [47.368891, 8.539523], [47.379455, 8.529663], [47.34946, 8.534092], [47.382432, 8.487993], [47.371643, 8.515759], [47.375338, 8.516033], [47.378086, 8.510645], [47.369717, 8.525518], [47.357438, 8.52176], [47.388951, 8.515672], [47.388316, 8.520096], [47.377869, 8.521407], [47.383227, 8.484685], [47.403333, 8.497268], [47.431964, 8.543399], [47.385357, 8.530513], [47.369554, 8.541722], [47.385573, 8.530491], [47.375713, 8.476963], [47.425963, 8.493397], [47.379442, 8.544323], [47.37566, 8.537173], [47.393523, 8.54488], [47.36962, 8.551733], [47.363949, 8.549298], [47.391301, 8.523071], [47.366003, 8.545276], [47.405252, 8.555273], [47.378415, 8.540753], [47.383412, 8.498912], [47.389048, 8.486534], [47.39197, 8.517932], [47.429953, 8.549587], [47.402182, 8.496186], [47.391001, 8.487354], [47.392706, 8.539088], [47.3772, 8.513064], [47.387669, 8.529527], [47.36028, 8.534196], [47.381228, 8.551326], [47.363783, 8.551637], [47.381801, 8.535539], [47.3712, 8.512135], [47.382671, 8.532007], [47.421012, 8.549533], [47.374974, 8.544946], [47.398016, 8.532137], [47.373268, 8.599651], [47.38727, 8.488089], [47.35678, 8.55116], [47.383772, 8.573603], [47.366428, 8.545046], [47.402788, 8.500716], [47.372851, 8.532772], [47.373795, 8.536513], [47.370197, 8.548792], [47.377396, 8.543778], [47.348385, 8.532667], [47.343839, 8.530152], [47.420816, 8.549331], [47.354904, 8.574842], [47.379029, 8.542341], [47.39163, 8.523435], [47.391022, 8.523039], [47.371268, 8.528887], [47.365251, 8.520237], [47.40372, 8.578533], [47.370699, 8.516654], [47.394432, 8.526831], [47.385437, 8.526806], [47.364499, 8.536943], [47.391544, 8.505697], [47.387782, 8.519397], [47.370463, 8.510174], [47.402434, 8.503093], [47.3985, 8.538929], [47.430681, 8.550504], [47.381807, 8.548133], [47.375623, 8.541993], [47.401859, 8.493172], [47.376558, 8.548594], [47.378861, 8.524976], [47.395437, 8.526122], [47.368881, 8.548142], [47.358153, 8.519365], [47.379005, 8.508545], [47.387615, 8.486837], [47.423199, 8.535304], [47.379847, 8.524414], [47.37031, 8.602182], [47.365668, 8.510184], [47.371579, 8.472552], [47.382796, 8.529255], [47.372116, 8.519119], [47.376929, 8.539967], [47.413975, 8.544179], [47.384901, 8.509127], [47.415052, 8.551013], [47.348009, 8.534288], [47.365841, 8.545312], [47.3854, 8.542129], [47.368636, 8.524649], [47.389692, 8.511422], [47.405388, 8.592666], [47.363779, 8.553928], [47.38904, 8.510932], [47.346375, 8.527319], [47.404869, 8.574225], [47.370563, 8.526436], [47.358116, 8.519471], [47.364383, 8.546275], [47.372579, 8.517619], [47.405133, 8.480345], [47.403298, 8.497175], [47.412202, 8.546156], [47.414097, 8.550277], [47.37035, 8.513548], [47.370454, 8.514001], [47.396986, 8.539256], [47.353208, 8.511376], [47.374515, 8.54973], [47.411842, 8.525344], [47.396646, 8.541872], [47.374948, 8.534471], [47.393787, 8.472626], [47.380981, 8.492216], [47.369831, 8.547527], [47.381747, 8.541206], [47.372926, 8.535224], [47.371195, 8.535691], [47.405672, 8.549876], [47.378452, 8.540648], [47.406541, 8.553975], [47.349836, 8.561353], [47.384298, 8.485553], [47.368283, 8.541046], [47.359402, 8.522396], [47.388564, 8.535718], [47.381264, 8.540984], [47.386695, 8.534593], [47.383243, 8.540058], [47.404099, 8.483187], [47.359428, 8.584841], [47.378549, 8.496511], [47.387201, 8.51908], [47.409933, 8.576029], [47.394963, 8.522046], [47.385395, 8.539798], [47.378414, 8.540766], [47.37999, 8.536852], [47.373439, 8.5199], [47.37712, 8.49937], [47.391175, 8.523042], [47.379757, 8.524372], [47.36876, 8.524877], [47.354958, 8.557251], [47.361472, 8.54779], [47.397139, 8.530661], [47.366693, 8.544615], [47.372565, 8.534408], [47.392239, 8.516984], [47.403253, 8.48627], [47.371983, 8.535138], [47.358974, 8.591595], [47.379477, 8.527386], [47.364559, 8.56627], [47.389634, 8.521461], [47.336938, 8.518816], [47.358655, 8.582971], [47.367373, 8.494026], [47.36135, 8.525639], [47.369148, 8.564209], [47.383706, 8.529141], [47.37709, 8.540951], [47.409036, 8.548012], [47.398176, 8.536167], [47.369989, 8.510827], [47.366739, 8.565032], [47.427387, 8.546101], [47.382128, 8.51417], [47.409216, 8.54987], [47.398687, 8.590799], [47.414245, 8.534789], [47.38721, 8.519094], [47.413638, 8.545643], [47.392185, 8.503498], [47.405713, 8.494653], [47.410374, 8.543627], [47.3551, 8.532143], [47.374739, 8.537578], [47.392362, 8.502839], [47.398015, 8.503336], [47.369787, 8.537132], [47.376344, 8.527613], [47.411911, 8.51224], [47.378896, 8.526937], [47.382411, 8.505011], [47.377854, 8.529697], [47.377407, 8.501375], [47.368271, 8.536624], [47.427614, 8.54584], [47.398229, 8.532379], [47.396494, 8.528462], [47.36586, 8.547007], [47.393097, 8.521438], [47.39424, 8.480304], [47.413788, 8.536489], [47.382848, 8.557744], [47.370006, 8.548974], [47.410783, 8.545], [47.406514, 8.576195], [47.392143, 8.493311], [47.40585, 8.538843], [47.372388, 8.5236], [47.364846, 8.532674], [47.353454, 8.602105], [47.363219, 8.530629], [47.373952, 8.540846], [47.407713, 8.543452], [47.35933, 8.522368], [47.409678, 8.542089], [47.410347, 8.548277], [47.377692, 8.52584], [47.381022, 8.518015], [47.36996, 8.53123], [47.371824, 8.536684], [47.366446, 8.54506], [47.427789, 8.490478], [47.391979, 8.517853], [47.37787, 8.529909], [47.370994, 8.514912], [47.374035, 8.546303], [47.386145, 8.551641], [47.38187, 8.531156], [47.379902, 8.537632], [47.380144, 8.536723], [47.361386, 8.525693], [47.389249, 8.510698], [47.372771, 8.535472], [47.387678, 8.529527], [47.383004, 8.514837], [47.367898, 8.539953], [47.397452, 8.53182], [47.409073, 8.529011], [47.407705, 8.552714], [47.374508, 8.532475], [47.404028, 8.495984], [47.40022, 8.547245], [47.408574, 8.546558], [47.402203, 8.503711], [47.38423, 8.543098], [47.389989, 8.475903], [47.413532, 8.545402], [47.391979, 8.517945], [47.397976, 8.53252], [47.383127, 8.550201], [47.386012, 8.481985], [47.365046, 8.531527], [47.380309, 8.554247], [47.361209, 8.525385], [47.405334, 8.499786], [47.368796, 8.528717], [47.402148, 8.503843], [47.414395, 8.552934], [47.383327, 8.543437], [47.360612, 8.562294], [47.377721, 8.536104], [47.380041, 8.514181], [47.374547, 8.518784], [47.389426, 8.521563], [47.371039, 8.530272], [47.361489, 8.556329], [47.365249, 8.530922], [47.361963, 8.560364], [47.389741, 8.477435], [47.384979, 8.541895], [47.364637, 8.546055], [47.343963, 8.5303], [47.385007, 8.508334], [47.41982, 8.550065], [47.410681, 8.543435], [47.414607, 8.520206], [47.374641, 8.560829], [47.364213, 8.5667], [47.36655, 8.540772], [47.37061, 8.517539], [47.362766, 8.547049], [47.404176, 8.588771], [47.360616, 8.597429], [47.368306, 8.524377], [47.399065, 8.521944], [47.409385, 8.544454], [47.380747, 8.512765], [47.368076, 8.560678], [47.380763, 8.53312], [47.373984, 8.476241], [47.403606, 8.496929], [47.391521, 8.535924], [47.372732, 8.534875], [47.398378, 8.502986], [47.370606, 8.517036], [47.408833, 8.545821], [47.401335, 8.499282], [47.405812, 8.590741], [47.363053, 8.567496], [47.369514, 8.536477], [47.398249, 8.537003], [47.382148, 8.551981], [47.398172, 8.534617], [47.369041, 8.537951], [47.403944, 8.485502], [47.379289, 8.54432], [47.392122, 8.492688], [47.356924, 8.573363], [47.379706, 8.516372], [47.409418, 8.558832], [47.413857, 8.544322], [47.369809, 8.493213], [47.361022, 8.580149], [47.342701, 8.520084], [47.355878, 8.599855], [47.414544, 8.556183], [47.399031, 8.50537], [47.364086, 8.546348], [47.396993, 8.480265], [47.414515, 8.56098], [47.380122, 8.541821], [47.380652, 8.526748], [47.375905, 8.527432], [47.378795, 8.542403], [47.392239, 8.492611], [47.377216, 8.541946], [47.381809, 8.516614], [47.379022, 8.54495], [47.373118, 8.53683], [47.379591, 8.52768], [47.369504, 8.53849], [47.375537, 8.548188], [47.378733, 8.528046], [47.35546, 8.5566], [47.365921, 8.530287], [47.392763, 8.522518], [47.370957, 8.538003], [47.354782, 8.601486], [47.38593, 8.548749], [47.373324, 8.534967], [47.389718, 8.518284], [47.406649, 8.55032], [47.365539, 8.539282], [47.361822, 8.526205], [47.408641, 8.580268], [47.374133, 8.540691], [47.354914, 8.523258], [47.378435, 8.540462], [47.382805, 8.529268], [47.373422, 8.537048], [47.37626, 8.527943], [47.411153, 8.546784], [47.370206, 8.548806], [47.374434, 8.549675], [47.370709, 8.529948], [47.363699, 8.531247], [47.397979, 8.534176], [47.393209, 8.530634], [47.378326, 8.527349], [47.339902, 8.52986], [47.362825, 8.518931], [47.363379, 8.56275], [47.370146, 8.532465], [47.410582, 8.550084], [47.374185, 8.526695], [47.372998, 8.550254], [47.374682, 8.535975], [47.388453, 8.531344], [47.384903, 8.495154], [47.343307, 8.532166], [47.389719, 8.512323], [47.388289, 8.518135], [47.360358, 8.565374], [47.376842, 8.528259], [47.376796, 8.524603], [47.369107, 8.503063], [47.388934, 8.489168], [47.366586, 8.535067], [47.383956, 8.482606], [47.40261, 8.499559], [47.409109, 8.545125], [47.410541, 8.486069], [47.370052, 8.543294], [47.369844, 8.518636], [47.369446, 8.526572], [47.375791, 8.529112], [47.374258, 8.523691], [47.391973, 8.510779], [47.374958, 8.534418], [47.407792, 8.548357], [47.389649, 8.512123], [47.41033, 8.569492], [47.390832, 8.52224], [47.364267, 8.526294], [47.360432, 8.52472], [47.40011, 8.54931], [47.368033, 8.485816], [47.362657, 8.496262], [47.343322, 8.520097], [47.383245, 8.53982], [47.37907, 8.511208], [47.369142, 8.537794], [47.371399, 8.550035], [47.371046, 8.536178], [47.376534, 8.524638], [47.380155, 8.527916], [47.374482, 8.48683], [47.337582, 8.526901], [47.37382, 8.548073], [47.402383, 8.535499], [47.384224, 8.516093], [47.367671, 8.5221], [47.363699, 8.531261], [47.388844, 8.491153], [47.375321, 8.484516], [47.401126, 8.49953], [47.401878, 8.504791], [47.366762, 8.545834], [47.410779, 8.555773], [47.405572, 8.549967], [47.36475, 8.532341], [47.391538, 8.542693], [47.365011, 8.53138], [47.386586, 8.541293], [47.401278, 8.534403], [47.37085, 8.548276], [47.384967, 8.488189], [47.376002, 8.541921], [47.397797, 8.541935], [47.351871, 8.528305], [47.409027, 8.548025], [47.385007, 8.508321], [47.385333, 8.539704], [47.374335, 8.53753], [47.408556, 8.546531], [47.370161, 8.548818], [47.410102, 8.52772], [47.406898, 8.550524], [47.369041, 8.537937], [47.411124, 8.526204], [47.367462, 8.552548], [47.388358, 8.520375], [47.384814, 8.492146], [47.386792, 8.549853], [47.373365, 8.531684], [47.37028, 8.524974], [47.417617, 8.52533], [47.368283, 8.534413], [47.372891, 8.535143], [47.370611, 8.53556], [47.399579, 8.547497], [47.373291, 8.546923], [47.408965, 8.570244], [47.364332, 8.555329], [47.394232, 8.490133], [47.414048, 8.543133], [47.366625, 8.520477], [47.429953, 8.549574], [47.377621, 8.498691], [47.379353, 8.49519], [47.376406, 8.490854], [47.367411, 8.536328], [47.398001, 8.474218], [47.377557, 8.54198], [47.373543, 8.531873], [47.378413, 8.510334], [47.388084, 8.540741], [47.367951, 8.533413], [47.426906, 8.546515], [47.426511, 8.510189], [47.378575, 8.575214], [47.40929, 8.572875], [47.391131, 8.487873], [47.381122, 8.491623], [47.370161, 8.548805], [47.415107, 8.477439], [47.364965, 8.502623], [47.413619, 8.546663], [47.389662, 8.487248], [47.369207, 8.528024], [47.351427, 8.524854], [47.425425, 8.553681], [47.356499, 8.551446], [47.386374, 8.49664], [47.375425, 8.486928], [47.372025, 8.547692], [47.373961, 8.536132], [47.403413, 8.497323], [47.37176, 8.522541], [47.380934, 8.535044], [47.403672, 8.571497], [47.385645, 8.482865], [47.377971, 8.492911], [47.37856, 8.523527], [47.370088, 8.548909], [47.392294, 8.482651], [47.39345, 8.512584], [47.416315, 8.553424], [47.386184, 8.535311], [47.382386, 8.540305], [47.368031, 8.560716], [47.36424, 8.533019], [47.392298, 8.502931], [47.376443, 8.489769], [47.385025, 8.508268], [47.389867, 8.510896], [47.381785, 8.489888], [47.386988, 8.500295], [47.419395, 8.510284], [47.357138, 8.522058], [47.411161, 8.526059], [47.364586, 8.566204], [47.368503, 8.52454], [47.417531, 8.5616], [47.369041, 8.537937], [47.405173, 8.481817], [47.369607, 8.525688], [47.390315, 8.490639], [47.408978, 8.578924], [47.390317, 8.50803], [47.381478, 8.503761], [47.40386, 8.485739], [47.372927, 8.546479], [47.414133, 8.518977], [47.38568, 8.521063], [47.365859, 8.53202], [47.365263, 8.502457], [47.414809, 8.520687], [47.377229, 8.538636], [47.406925, 8.550538], [47.373867, 8.538408], [47.362231, 8.526637], [47.373814, 8.53642], [47.367486, 8.519806], [47.367825, 8.539157], [47.370197, 8.548805], [47.379006, 8.559702], [47.365015, 8.553517], [47.404569, 8.483964], [47.375015, 8.536895], [47.378449, 8.540886], [47.414697, 8.560732], [47.385061, 8.532308], [47.378147, 8.509945], [47.377612, 8.543756], [47.386699, 8.497428], [47.404767, 8.549552], [47.376371, 8.523827], [47.387156, 8.519093], [47.376089, 8.53942], [47.375242, 8.540449], [47.368454, 8.547604], [47.387026, 8.490216], [47.377799, 8.526968], [47.412344, 8.551102], [47.368078, 8.538937], [47.37706, 8.539454], [47.358713, 8.500698], [47.37388, 8.544671], [47.376211, 8.544521], [47.366661, 8.546084], [47.369919, 8.5135], [47.397714, 8.532674], [47.373814, 8.536487], [47.385043, 8.532374], [47.378072, 8.541805], [47.366577, 8.540799], [47.388235, 8.536254], [47.371684, 8.564342], [47.372705, 8.566588], [47.324727, 8.518397], [47.370586, 8.517247], [47.407112, 8.487234], [47.374859, 8.484904], [47.387946, 8.49095], [47.39803, 8.533448], [47.378531, 8.528439], [47.365433, 8.554029], [47.367058, 8.536533], [47.376136, 8.527794], [47.362777, 8.559904], [47.343374, 8.535542], [47.383292, 8.484434], [47.384816, 8.531588], [47.362458, 8.612734], [47.381653, 8.542621], [47.405838, 8.590781], [47.417816, 8.545199], [47.383098, 8.527818], [47.363197, 8.51956], [47.388638, 8.479056], [47.403445, 8.548531], [47.421618, 8.550116], [47.374612, 8.538648], [47.383768, 8.531103], [47.371643, 8.515772], [47.412712, 8.522818], [47.370158, 8.55847], [47.413907, 8.547609], [47.385688, 8.520202], [47.405116, 8.482186], [47.396581, 8.528769], [47.407988, 8.572582], [47.374548, 8.539693], [47.362196, 8.559442], [47.381424, 8.537411], [47.363182, 8.522115], [47.389033, 8.495051], [47.373306, 8.532146], [47.370307, 8.517295], [47.382075, 8.531359], [47.37341, 8.531658], [47.41349, 8.529989], [47.358991, 8.534447], [47.374111, 8.519292], [47.391312, 8.53898], [47.379854, 8.554767], [47.366168, 8.540261], [47.403823, 8.489846], [47.411018, 8.544965], [47.393806, 8.50618], [47.392834, 8.537938], [47.381041, 8.503328], [47.419113, 8.548752], [47.413897, 8.543912], [47.400211, 8.494318], [47.371634, 8.515772], [47.406482, 8.581269], [47.366377, 8.553148], [47.359874, 8.59605], [47.361825, 8.515256], [47.375286, 8.549918], [47.38419, 8.511033], [47.405695, 8.5916], [47.370134, 8.548817], [47.356907, 8.551084], [47.366565, 8.501689], [47.400728, 8.548607], [47.361575, 8.551102], [47.369703, 8.540308], [47.410295, 8.573996], [47.357727, 8.521581], [47.404874, 8.572768], [47.409215, 8.543417], [47.377216, 8.54196], [47.41709, 8.523053], [47.411244, 8.508477], [47.39119, 8.489292], [47.363665, 8.531975], [47.330162, 8.529634], [47.414318, 8.55439], [47.37047, 8.5142], [47.391829, 8.518512], [47.358731, 8.555], [47.405308, 8.577136], [47.373503, 8.519835], [47.388473, 8.490324], [47.393007, 8.524351], [47.35822, 8.587873], [47.374581, 8.53053], [47.362498, 8.568186], [47.406276, 8.58296], [47.371681, 8.529954], [47.425853, 8.493713], [47.387304, 8.517678], [47.366921, 8.544275], [47.375347, 8.533261], [47.391052, 8.479712], [47.370186, 8.549017], [47.408255, 8.550685], [47.409942, 8.47971], [47.409438, 8.564159], [47.360388, 8.566817], [47.38834, 8.520348], [47.419287, 8.537146], [47.373857, 8.527152], [47.366406, 8.54829], [47.387175, 8.535172], [47.40938, 8.54309], [47.370088, 8.511742], [47.369382, 8.54185], [47.399028, 8.54771], [47.37662, 8.545046], [47.364967, 8.547293], [47.356548, 8.523595], [47.375785, 8.535375], [47.376911, 8.526711], [47.372686, 8.534941], [47.391913, 8.518235], [47.402831, 8.501962], [47.359105, 8.526202], [47.381826, 8.516667], [47.384328, 8.531842], [47.345697, 8.520079], [47.391409, 8.523113], [47.369733, 8.525704], [47.367456, 8.501706], [47.374583, 8.534066], [47.385163, 8.53676], [47.349895, 8.576482], [47.373841, 8.536487], [47.359446, 8.509013], [47.355409, 8.554362], [47.393329, 8.52453], [47.40043, 8.59285], [47.367185, 8.540243], [47.360834, 8.535557], [47.397995, 8.532467], [47.413832, 8.54505], [47.420005, 8.509475], [47.414026, 8.545439], [47.33751, 8.519185], [47.373915, 8.544685], [47.375373, 8.496673], [47.384942, 8.537338], [47.355456, 8.572656], [47.398842, 8.53895], [47.409314, 8.545354], [47.38447, 8.534931], [47.398215, 8.516694], [47.375511, 8.548069], [47.427423, 8.551695], [47.386513, 8.529079], [47.358458, 8.518445], [47.377168, 8.540409], [47.358785, 8.521946], [47.366841, 8.543201], [47.395716, 8.522273], [47.411607, 8.528321], [47.366444, 8.545245], [47.354441, 8.527669], [47.425511, 8.557792], [47.377209, 8.539867], [47.378546, 8.540146], [47.370188, 8.548818], [47.377457, 8.5038], [47.386269, 8.498307], [47.377426, 8.550029], [47.403071, 8.589582], [47.379967, 8.527899], [47.36798, 8.540775], [47.37861, 8.526799], [47.37614, 8.500238], [47.370116, 8.54879], [47.35034, 8.577921], [47.386813, 8.516278], [47.363713, 8.520167], [47.421896, 8.550228]], [[47.369034, 8.528325], [47.373656, 8.534153], [47.365203, 8.547113], [47.373933, 8.546592], [47.347334, 8.534393], [47.378795, 8.5272], [47.3856, 8.530544], [47.378962, 8.559596], [47.377284, 8.541352], [47.356204, 8.555874], [47.409717, 8.544554], [47.410909, 8.563647], [47.360514, 8.561339], [47.371529, 8.511586], [47.328634, 8.51804], [47.364149, 8.546349], [47.416633, 8.555021], [47.371249, 8.535692], [47.402386, 8.495514], [47.418279, 8.546627], [47.363489, 8.575382], [47.36666, 8.541476], [47.395204, 8.519322], [47.363927, 8.546941], [47.378768, 8.542349], [47.375765, 8.529005], [47.403696, 8.48306], [47.403662, 8.571655], [47.382368, 8.488124], [47.401459, 8.548371], [47.38315, 8.515581], [47.36149, 8.502858], [47.366256, 8.545162], [47.430827, 8.550388], [47.361993, 8.5572], [47.378035, 8.526721], [47.328552, 8.518091], [47.358289, 8.55887], [47.384453, 8.542321], [47.374497, 8.517446], [47.392147, 8.5477], [47.399712, 8.495792], [47.410513, 8.54791], [47.375378, 8.536598], [47.374762, 8.536043], [47.373812, 8.537665], [47.402396, 8.49937], [47.428031, 8.542708], [47.387511, 8.528186], [47.388433, 8.520046], [47.368552, 8.528831], [47.370994, 8.537911], [47.391001, 8.522416], [47.368665, 8.564914], [47.335007, 8.529958], [47.41076, 8.544602], [47.393466, 8.500119], [47.426243, 8.554613], [47.418678, 8.547232], [47.391607, 8.519183], [47.392755, 8.523458], [47.386014, 8.495706], [47.38813, 8.535947], [47.396555, 8.528676], [47.394017, 8.52506], [47.373165, 8.503926], [47.344708, 8.528608], [47.364638, 8.566444], [47.347538, 8.532743], [47.377432, 8.539037], [47.40862, 8.546373], [47.381061, 8.54241], [47.365292, 8.521602], [47.372297, 8.526644], [47.364825, 8.566646], [47.375888, 8.527405], [47.411062, 8.532736], [47.403082, 8.570212], [47.373617, 8.536377], [47.385362, 8.500077], [47.387005, 8.528427], [47.37741, 8.539514], [47.348407, 8.533118], [47.376016, 8.535751], [47.385478, 8.536767], [47.395728, 8.518074], [47.395096, 8.520327], [47.377198, 8.540013], [47.374146, 8.533699], [47.374548, 8.533999], [47.367734, 8.487956], [47.373629, 8.597752], [47.376121, 8.540758], [47.35706, 8.59767], [47.373425, 8.519503], [47.389696, 8.511872], [47.428329, 8.545405], [47.405509, 8.579605], [47.37834, 8.493779], [47.37533, 8.561214], [47.414158, 8.482947], [47.373954, 8.538807], [47.36027, 8.568853], [47.372489, 8.563882], [47.417703, 8.554143], [47.374199, 8.568394], [47.348632, 8.533123], [47.373958, 8.526015], [47.403637, 8.570489], [47.373415, 8.534863], [47.364072, 8.556171], [47.380854, 8.511893], [47.407705, 8.535728], [47.377042, 8.544154], [47.377136, 8.552115], [47.426897, 8.546541], [47.377701, 8.538195], [47.36832, 8.504517], [47.39073, 8.545352], [47.366079, 8.533547], [47.400788, 8.5489], [47.372086, 8.523236], [47.402361, 8.499289], [47.381391, 8.533252], [47.367983, 8.540458], [47.389176, 8.509849], [47.376365, 8.510041], [47.393893, 8.521004], [47.418818, 8.530576], [47.376566, 8.548766], [47.370928, 8.535394], [47.395091, 8.524698], [47.365326, 8.598723], [47.378547, 8.528718], [47.388421, 8.486177], [47.369672, 8.525544], [47.391832, 8.484946], [47.424285, 8.54312], [47.364588, 8.554924], [47.34376, 8.525175], [47.375305, 8.485377], [47.385565, 8.530437], [47.368848, 8.54785], [47.388603, 8.477956], [47.359386, 8.596264], [47.387102, 8.489781], [47.373422, 8.552951], [47.402579, 8.582073], [47.364774, 8.532633], [47.382119, 8.540882], [47.421143, 8.548131], [47.414728, 8.551059], [47.360872, 8.524861], [47.371625, 8.515772], [47.364566, 8.532814], [47.36832, 8.484882], [47.391347, 8.522953], [47.38451, 8.542958], [47.393841, 8.50826], [47.3355, 8.518748], [47.370361, 8.518183], [47.357039, 8.52207], [47.411746, 8.525051], [47.377308, 8.509226], [47.371967, 8.556416], [47.37868, 8.567297], [47.367932, 8.48604], [47.350007, 8.570608], [47.377713, 8.525575], [47.389156, 8.532114], [47.380724, 8.582663], [47.396721, 8.529262], [47.401541, 8.548306], [47.381925, 8.512828], [47.382829, 8.555942], [47.336519, 8.518411], [47.362906, 8.567824], [47.387355, 8.487693], [47.349174, 8.562861], [47.4109, 8.562746], [47.385089, 8.532282], [47.37604, 8.48461], [47.380872, 8.53491], [47.403163, 8.500074], [47.371084, 8.514953], [47.385778, 8.53264], [47.411073, 8.545748], [47.378064, 8.495495], [47.359685, 8.515226], [47.364261, 8.536449], [47.41364, 8.545364], [47.364103, 8.546375], [47.396808, 8.540961], [47.361124, 8.517188], [47.414694, 8.56109], [47.374504, 8.521498], [47.393495, 8.492079], [47.380098, 8.508991], [47.403657, 8.496202], [47.393345, 8.524795], [47.358412, 8.521436], [47.359881, 8.594435], [47.366711, 8.544642], [47.382738, 8.575435], [47.405252, 8.55526], [47.384191, 8.497312], [47.355524, 8.600138], [47.370827, 8.470194], [47.368116, 8.536846], [47.362912, 8.556147], [47.359812, 8.527567], [47.369853, 8.518649], [47.416321, 8.545354], [47.383245, 8.548256], [47.386724, 8.547574], [47.386801, 8.534741], [47.38012, 8.535504], [47.375732, 8.526687], [47.409277, 8.545406], [47.411177, 8.526219], [47.370116, 8.548817], [47.414778, 8.519229], [47.367543, 8.540329], [47.377441, 8.499628], [47.340403, 8.519601], [47.386599, 8.481797], [47.392874, 8.496041], [47.370302, 8.545312], [47.367001, 8.523543], [47.366493, 8.566245], [47.395934, 8.493863], [47.376872, 8.510581], [47.37656, 8.538993], [47.370402, 8.5225], [47.370325, 8.514303], [47.361534, 8.560937], [47.40712, 8.586702], [47.398377, 8.54714], [47.399767, 8.543765], [47.38099, 8.492229], [47.370188, 8.548792], [47.354799, 8.526856], [47.378056, 8.513849], [47.375817, 8.529139], [47.372116, 8.515266], [47.404584, 8.491278], [47.391506, 8.528003], [47.360508, 8.535723], [47.376417, 8.564137], [47.369455, 8.528426], [47.409433, 8.546085], [47.363105, 8.556694], [47.359671, 8.522454], [47.41272, 8.482826], [47.388797, 8.520517], [47.384025, 8.480939], [47.357617, 8.553918], [47.404283, 8.54472], [47.410368, 8.539519], [47.389719, 8.512323], [47.373362, 8.547031], [47.372882, 8.535156], [47.37328, 8.533033], [47.404418, 8.557707], [47.396674, 8.510198], [47.417216, 8.522989], [47.369107, 8.525347], [47.375872, 8.559133], [47.385581, 8.542927], [47.356856, 8.52241], [47.358311, 8.556567], [47.378802, 8.526445], [47.376446, 8.549108], [47.362293, 8.532476], [47.372784, 8.535048], [47.36801, 8.540432], [47.38652, 8.540656], [47.375411, 8.484531], [47.353343, 8.576185], [47.387086, 8.547316], [47.369507, 8.525779], [47.410047, 8.535391], [47.388549, 8.479001], [47.410547, 8.556524], [47.367335, 8.544297], [47.378406, 8.516849], [47.340656, 8.52711], [47.371088, 8.516437], [47.381327, 8.541012], [47.37104, 8.537767], [47.389883, 8.539851], [47.398345, 8.53731], [47.378557, 8.504523], [47.363386, 8.534855], [47.329118, 8.529679], [47.376805, 8.535039], [47.412809, 8.514299], [47.394601, 8.494009], [47.407201, 8.585816], [47.374481, 8.540129], [47.355029, 8.562031], [47.414738, 8.519612], [47.383394, 8.548643], [47.371225, 8.523007], [47.419374, 8.508654], [47.378495, 8.575186], [47.364466, 8.566493], [47.381665, 8.513657], [47.416591, 8.513885], [47.375261, 8.525194], [47.369296, 8.528158], [47.376922, 8.540735], [47.416685, 8.568195], [47.36028, 8.523684], [47.356895, 8.522067], [47.393447, 8.537739], [47.376896, 8.554626], [47.373244, 8.533019], [47.402833, 8.577255], [47.37009, 8.518323], [47.358001, 8.554244], [47.326399, 8.516539], [47.394838, 8.525739], [47.411579, 8.54556], [47.396002, 8.545303], [47.386616, 8.468871], [47.3925, 8.516088], [47.372981, 8.547367], [47.374731, 8.495985], [47.366573, 8.54023], [47.337514, 8.530261], [47.389264, 8.54152], [47.386921, 8.544809], [47.393505, 8.539184], [47.409168, 8.571534], [47.379962, 8.547274], [47.367968, 8.544827], [47.37017, 8.548778], [47.397766, 8.530038], [47.382957, 8.557614], [47.370359, 8.513615], [47.414995, 8.551369], [47.376758, 8.538057], [47.366985, 8.523358], [47.370653, 8.516772], [47.37646, 8.543838], [47.416296, 8.545115], [47.390015, 8.536383], [47.356752, 8.523917], [47.4037, 8.571444], [47.373938, 8.503014], [47.377717, 8.507778], [47.378406, 8.555677], [47.403694, 8.5784], [47.355276, 8.574506], [47.36974, 8.54011], [47.374368, 8.521627], [47.380163, 8.528089], [47.370179, 8.548805], [47.368135, 8.54152], [47.361132, 8.531645], [47.35588, 8.531431], [47.360504, 8.550298], [47.427353, 8.545848], [47.414203, 8.519124], [47.387937, 8.490949], [47.357231, 8.506321], [47.388935, 8.489048], [47.357103, 8.556886], [47.362704, 8.496104], [47.413307, 8.531271], [47.37852, 8.506496], [47.371235, 8.531389], [47.394089, 8.475056], [47.405261, 8.555247], [47.380305, 8.483488], [47.407223, 8.585379], [47.375927, 8.523235], [47.399828, 8.544018], [47.377616, 8.507007], [47.366808, 8.499747], [47.361801, 8.560307], [47.378172, 8.5341], [47.376545, 8.529233], [47.373915, 8.524823], [47.393453, 8.539064], [47.384145, 8.497364], [47.365335, 8.545527], [47.365117, 8.553241], [47.379755, 8.526544], [47.364351, 8.555237], [47.386091, 8.521362], [47.378769, 8.510778], [47.419516, 8.547991], [47.373832, 8.536487], [47.366564, 8.540256], [47.385363, 8.532738], [47.352294, 8.507082], [47.368402, 8.546477], [47.380891, 8.492307], [47.416279, 8.544134], [47.390932, 8.523143], [47.369274, 8.541822], [47.368696, 8.493006], [47.362131, 8.547552], [47.391264, 8.485134], [47.366067, 8.548944], [47.37385, 8.536501], [47.389733, 8.51182], [47.370648, 8.535468], [47.376372, 8.539903], [47.374219, 8.521214], [47.414076, 8.514431], [47.410678, 8.550312], [47.389737, 8.486839], [47.405559, 8.550483], [47.37603, 8.541816], [47.431268, 8.543769], [47.393163, 8.528805], [47.408492, 8.546635], [47.401215, 8.588111], [47.375886, 8.540859], [47.384298, 8.554728], [47.347253, 8.532512], [47.402427, 8.535579], [47.391243, 8.538727], [47.386753, 8.502409], [47.331935, 8.535241], [47.412301, 8.52436], [47.415679, 8.563443], [47.376392, 8.536857], [47.360933, 8.525048], [47.369155, 8.491995], [47.404621, 8.484151], [47.361773, 8.505419], [47.392556, 8.475516], [47.371527, 8.558221], [47.413799, 8.546666], [47.391423, 8.535869], [47.402076, 8.545985], [47.386688, 8.539043], [47.3849, 8.550185], [47.370215, 8.548806], [47.372747, 8.550236], [47.388539, 8.487027], [47.385427, 8.517336], [47.368946, 8.540358], [47.32477, 8.510871], [47.365649, 8.520894], [47.383844, 8.52974], [47.344532, 8.532959], [47.41498, 8.551011], [47.362541, 8.533885], [47.351314, 8.576738], [47.382992, 8.575176], [47.364586, 8.566191], [47.361371, 8.512838], [47.357465, 8.524554], [47.370644, 8.517725], [47.404169, 8.563955], [47.41167, 8.537876], [47.379074, 8.522345], [47.407371, 8.579592], [47.378535, 8.555375], [47.401364, 8.508875], [47.357675, 8.521434], [47.377228, 8.551918], [47.37223, 8.540307], [47.379268, 8.495665], [47.406307, 8.492677], [47.358281, 8.584432], [47.370949, 8.548278], [47.386793, 8.534674], [47.386623, 8.547797], [47.422111, 8.549411], [47.334864, 8.529955], [47.415678, 8.546732], [47.368932, 8.559597], [47.361562, 8.554358], [47.374673, 8.535948], [47.375883, 8.541177], [47.365767, 8.496549], [47.361245, 8.506004], [47.415275, 8.514203], [47.360188, 8.522968], [47.390507, 8.522326], [47.415179, 8.5177], [47.376802, 8.528656], [47.432354, 8.528812], [47.367888, 8.494804], [47.41429, 8.550745], [47.372982, 8.533119], [47.386565, 8.490432], [47.340024, 8.530286], [47.375467, 8.560092], [47.362926, 8.549131], [47.37654, 8.515395], [47.410418, 8.543668], [47.365116, 8.553307], [47.383088, 8.540187], [47.356096, 8.562371], [47.369151, 8.503236], [47.369213, 8.540708], [47.414682, 8.545532], [47.376822, 8.541779], [47.373548, 8.519783], [47.416003, 8.552212], [47.400402, 8.501039], [47.394838, 8.525726], [47.430019, 8.544552], [47.376592, 8.514654], [47.361744, 8.516287], [47.400254, 8.547431], [47.371379, 8.530478], [47.356982, 8.535716], [47.424213, 8.496955], [47.39116, 8.52275], [47.37578, 8.549067], [47.393081, 8.544951], [47.376296, 8.55991], [47.424828, 8.499485], [47.376484, 8.552618], [47.397721, 8.532925], [47.37582, 8.537389], [47.364287, 8.555355], [47.41349, 8.52995], [47.366287, 8.548459], [47.41648, 8.55311], [47.377015, 8.548828], [47.397643, 8.588193], [47.375908, 8.541323], [47.386761, 8.535217], [47.361643, 8.526095], [47.360147, 8.523536], [47.351536, 8.530416], [47.351861, 8.53033], [47.354263, 8.57594], [47.365712, 8.532348], [47.382491, 8.572199], [47.341836, 8.530826], [47.375546, 8.548228], [47.413829, 8.545395], [47.39868, 8.471727], [47.363984, 8.54759], [47.367635, 8.540159], [47.399042, 8.533059], [47.362356, 8.516207], [47.369216, 8.550731], [47.385508, 8.508583], [47.372704, 8.517793], [47.370072, 8.525009], [47.422845, 8.542229], [47.370871, 8.524218], [47.396301, 8.526034], [47.369615, 8.528641], [47.378598, 8.523329], [47.362284, 8.532489], [47.366495, 8.494657], [47.372602, 8.534356], [47.409358, 8.545381], [47.370894, 8.548343], [47.35325, 8.527023], [47.393873, 8.472058], [47.363074, 8.51732], [47.363635, 8.535165], [47.375021, 8.549475], [47.423616, 8.510992], [47.377913, 8.50998], [47.391, 8.507143], [47.381852, 8.489465], [47.347025, 8.529053], [47.407138, 8.586742], [47.374509, 8.539944], [47.366095, 8.533733], [47.401965, 8.499308], [47.371398, 8.530346], [47.361507, 8.597396], [47.391628, 8.538933], [47.370204, 8.556459], [47.39698, 8.530433], [47.368577, 8.52903], [47.366788, 8.542234], [47.40949, 8.522978], [47.383151, 8.540255], [47.399545, 8.496398], [47.396172, 8.527303], [47.347331, 8.532778], [47.380369, 8.528172], [47.383435, 8.512912], [47.372768, 8.477369], [47.363377, 8.529162], [47.353253, 8.512317], [47.413056, 8.524495], [47.375176, 8.501437], [47.406835, 8.550576], [47.390925, 8.521937], [47.387308, 8.547599], [47.397194, 8.491781], [47.391371, 8.537537], [47.375646, 8.510967], [47.378123, 8.510606], [47.377673, 8.508598], [47.375714, 8.578066], [47.352375, 8.507071], [47.375567, 8.560001], [47.38252, 8.475215], [47.356003, 8.535604], [47.358856, 8.533518], [47.383179, 8.540123], [47.390682, 8.478897], [47.369212, 8.567838], [47.36923, 8.567825], [47.399357, 8.585885], [47.41161, 8.50973], [47.424944, 8.553128], [47.344404, 8.530283], [47.393445, 8.52942], [47.393904, 8.486656], [47.366921, 8.544275], [47.356991, 8.53569], [47.396526, 8.530808], [47.382846, 8.540116], [47.416956, 8.545751], [47.39342, 8.500277], [47.374901, 8.51944], [47.364908, 8.530822], [47.412253, 8.556771], [47.390748, 8.522583], [47.360298, 8.523698], [47.383557, 8.530608], [47.3612, 8.525345], [47.37298, 8.533397], [47.37385, 8.536487], [47.37302, 8.532908], [47.376842, 8.543448], [47.382421, 8.551656], [47.367292, 8.523165], [47.421358, 8.550005], [47.369398, 8.525883], [47.371879, 8.522279], [47.37307, 8.550309], [47.387894, 8.485823], [47.344057, 8.530911], [47.38184, 8.54191], [47.389933, 8.492009], [47.362095, 8.535332], [47.39008, 8.511231], [47.375945, 8.535603], [47.410774, 8.554355], [47.374149, 8.520934], [47.367128, 8.544266], [47.369112, 8.517151], [47.424557, 8.553239], [47.364332, 8.555316], [47.368513, 8.499172], [47.391122, 8.522988], [47.349522, 8.532214], [47.381176, 8.491544], [47.367942, 8.560608], [47.424669, 8.550007], [47.404819, 8.576543], [47.416268, 8.51474], [47.327451, 8.51279], [47.408585, 8.580505], [47.404764, 8.594799], [47.374227, 8.516487], [47.368527, 8.546546], [47.374292, 8.543819], [47.376794, 8.527649], [47.398026, 8.535833], [47.387482, 8.484609], [47.391097, 8.541797], [47.391062, 8.538882], [47.392553, 8.538131], [47.369209, 8.543899], [47.355944, 8.553936], [47.387616, 8.527579], [47.401043, 8.535392], [47.396998, 8.530327], [47.388458, 8.491079], [47.370277, 8.548873], [47.387089, 8.522389], [47.360373, 8.53572], [47.380869, 8.526673], [47.364869, 8.566727], [47.406297, 8.551294], [47.409568, 8.537568], [47.398829, 8.540301], [47.369694, 8.540268], [47.414575, 8.551029], [47.412169, 8.550542], [47.410711, 8.554433], [47.385199, 8.530112], [47.373065, 8.528116], [47.376648, 8.527845], [47.362677, 8.497097], [47.387281, 8.487956], [47.36815, 8.541772], [47.378518, 8.540291], [47.392829, 8.523168], [47.365877, 8.494353], [47.36414, 8.546309], [47.367544, 8.539363], [47.387286, 8.500142], [47.382342, 8.514399], [47.426297, 8.554667], [47.37558, 8.537079], [47.368636, 8.546509], [47.361363, 8.526182], [47.358027, 8.520276], [47.380091, 8.525174], [47.390664, 8.478857], [47.371922, 8.556455], [47.398336, 8.537297], [47.355953, 8.554902], [47.371041, 8.549856], [47.387898, 8.540472], [47.345165, 8.529743], [47.375066, 8.545663], [47.373217, 8.533005], [47.364729, 8.556172], [47.394939, 8.516826], [47.409685, 8.523273], [47.406862, 8.55059], [47.419774, 8.500352], [47.379435, 8.545939], [47.369844, 8.518636], [47.364985, 8.521728], [47.372265, 8.540454], [47.359766, 8.50845], [47.354168, 8.553436], [47.407187, 8.566258], [47.369899, 8.529071], [47.37729, 8.538849], [47.373465, 8.561506], [47.36048, 8.535855], [47.366629, 8.544706], [47.363195, 8.548249], [47.363717, 8.531261], [47.374574, 8.541706], [47.404418, 8.574308], [47.356593, 8.523583], [47.397341, 8.587789], [47.3925, 8.492603], [47.391382, 8.487017], [47.407386, 8.541922], [47.369678, 8.538215], [47.380025, 8.548216], [47.382475, 8.514614], [47.370858, 8.54829], [47.427921, 8.545701], [47.375599, 8.577865], [47.359189, 8.527806], [47.391296, 8.535059], [47.361189, 8.525517], [47.383293, 8.499095], [47.385963, 8.475507], [47.413218, 8.538717], [47.406414, 8.588992], [47.378896, 8.526924], [47.376676, 8.497732], [47.407006, 8.550553], [47.385541, 8.542397], [47.381192, 8.538162], [47.392546, 8.475635], [47.377546, 8.509694], [47.383736, 8.512467], [47.369164, 8.538284], [47.389306, 8.51609], [47.407574, 8.530637], [47.366976, 8.523318], [47.404148, 8.559662], [47.357524, 8.535489], [47.364664, 8.532896], [47.357434, 8.521217], [47.372139, 8.556393], [47.375759, 8.498694], [47.366894, 8.544301], [47.390411, 8.509489], [47.343016, 8.520051], [47.372716, 8.525103], [47.404946, 8.557095], [47.366809, 8.518124], [47.425995, 8.547742], [47.409044, 8.550052], [47.364472, 8.536943], [47.4057, 8.595601], [47.365109, 8.534321], [47.378398, 8.49235], [47.404696, 8.549471], [47.405053, 8.482185], [47.372044, 8.529565], [47.377974, 8.548199], [47.385546, 8.530477], [47.37865, 8.544373], [47.3771, 8.541812], [47.383147, 8.550055], [47.360454, 8.522364], [47.384986, 8.48509], [47.391118, 8.489277], [47.374881, 8.517718], [47.37413, 8.497748], [47.373554, 8.534429], [47.386006, 8.548287], [47.387339, 8.493375], [47.390998, 8.513157], [47.366493, 8.542002], [47.385007, 8.508334], [47.386462, 8.477], [47.378414, 8.543653], [47.368017, 8.540657], [47.406652, 8.578609], [47.371636, 8.53566], [47.343059, 8.519351], [47.328797, 8.517884], [47.361155, 8.600234], [47.373796, 8.486142], [47.413918, 8.551082], [47.373852, 8.517181], [47.353105, 8.572103], [47.36063, 8.529477], [47.412064, 8.545636], [47.385193, 8.530734], [47.37453, 8.54532], [47.372703, 8.534054], [47.386513, 8.529093], [47.407523, 8.548245], [47.428302, 8.542567], [47.383208, 8.515145], [47.374378, 8.55268], [47.408956, 8.53953], [47.369482, 8.553875], [47.377261, 8.510351], [47.378914, 8.518383], [47.373988, 8.54086], [47.366215, 8.520959], [47.371487, 8.524786], [47.397717, 8.533257], [47.399049, 8.514061], [47.393412, 8.537698], [47.415225, 8.544244], [47.374459, 8.539532], [47.410485, 8.573006], [47.3513, 8.576301], [47.36778, 8.522963], [47.360571, 8.535711], [47.353013, 8.572287], [47.360009, 8.568861], [47.421403, 8.550045], [47.375523, 8.526908], [47.363326, 8.533557], [47.390882, 8.466596], [47.366753, 8.5421], [47.353166, 8.575917], [47.360122, 8.571061], [47.366314, 8.534306], [47.377847, 8.50925], [47.416879, 8.547155], [47.390531, 8.490616], [47.374762, 8.518868], [47.361834, 8.51527], [47.363562, 8.519991], [47.381785, 8.536359], [47.387495, 8.476159], [47.398488, 8.500776], [47.360304, 8.550466], [47.391823, 8.513438], [47.369437, 8.525632], [47.358211, 8.550211], [47.376821, 8.526723], [47.366052, 8.521167], [47.369105, 8.54162], [47.420531, 8.501228], [47.369266, 8.525628], [47.356647, 8.52361], [47.370846, 8.491036], [47.368463, 8.498787], [47.363424, 8.499984], [47.40699, 8.550327], [47.348525, 8.534034], [47.372528, 8.534567], [47.367865, 8.532021], [47.402992, 8.494241], [47.411162, 8.54681], [47.383707, 8.481277], [47.370859, 8.535022], [47.339987, 8.530378], [47.349941, 8.569958], [47.365626, 8.556402], [47.388126, 8.521086], [47.402575, 8.492577], [47.374376, 8.502401], [47.429626, 8.541428], [47.389639, 8.540005], [47.414245, 8.518502], [47.421014, 8.507401], [47.388097, 8.485191], [47.412003, 8.547305], [47.371104, 8.538589], [47.378711, 8.526549], [47.393731, 8.513291], [47.379125, 8.51113], [47.385643, 8.480004], [47.383458, 8.531599], [47.387649, 8.48701], [47.410649, 8.57191], [47.37447, 8.549702], [47.371458, 8.521145], [47.37126, 8.528847], [47.38828, 8.528692], [47.373038, 8.532909], [47.377399, 8.526417], [47.368847, 8.529049], [47.412669, 8.526421], [47.370936, 8.531674], [47.367931, 8.556212], [47.391493, 8.534215], [47.368172, 8.496147], [47.354333, 8.511333], [47.399266, 8.542562], [47.408196, 8.557693], [47.368481, 8.556939], [47.377517, 8.499206], [47.376143, 8.553458], [47.360912, 8.549962], [47.410726, 8.572256], [47.372071, 8.529565], [47.375248, 8.547322], [47.391644, 8.519144], [47.367796, 8.544942], [47.366624, 8.532936], [47.371481, 8.556525], [47.399822, 8.542732], [47.362649, 8.530961], [47.370713, 8.535218], [47.360914, 8.571899], [47.376152, 8.521253], [47.427712, 8.545935], [47.350023, 8.527817], [47.370233, 8.518472], [47.401968, 8.552554], [47.367898, 8.49765], [47.383022, 8.530134], [47.380844, 8.511005], [47.36908, 8.523427], [47.372055, 8.534186], [47.390912, 8.523302], [47.364633, 8.554899], [47.384072, 8.492595], [47.405626, 8.565828], [47.342323, 8.536341], [47.376796, 8.511017], [47.407668, 8.58405], [47.411479, 8.526622], [47.375944, 8.530015], [47.386426, 8.518257], [47.364499, 8.53697], [47.37386, 8.536395], [47.388961, 8.525169], [47.395494, 8.540046], [47.388179, 8.525047], [47.378831, 8.530962], [47.359002, 8.553086], [47.394797, 8.523407], [47.3731, 8.53777], [47.393491, 8.483615], [47.367923, 8.523986], [47.365269, 8.500868], [47.370034, 8.543307], [47.383346, 8.574879], [47.383877, 8.542349], [47.370188, 8.548792], [47.377012, 8.539757], [47.389957, 8.491426], [47.373998, 8.546342], [47.370204, 8.53767], [47.41078, 8.567686], [47.393672, 8.509025], [47.405764, 8.591045], [47.400193, 8.546224], [47.378112, 8.493232], [47.381195, 8.537804], [47.391676, 8.492255], [47.413752, 8.546811], [47.368827, 8.548088], [47.382339, 8.530093], [47.361667, 8.529207], [47.365979, 8.562646], [47.394783, 8.525804], [47.399177, 8.521549], [47.374201, 8.521227], [47.418885, 8.507053], [47.370161, 8.548818], [47.368382, 8.517269], [47.408802, 8.549053], [47.351067, 8.513358], [47.362554, 8.519997], [47.361412, 8.525746], [47.374444, 8.540181], [47.380332, 8.483462], [47.375865, 8.54115], [47.404525, 8.550382], [47.367929, 8.540483], [47.377748, 8.537971], [47.413768, 8.520428], [47.430009, 8.486677], [47.411641, 8.507425], [47.404679, 8.581641], [47.370098, 8.539363], [47.401235, 8.550168], [47.402298, 8.499301], [47.368115, 8.541665], [47.369379, 8.526994], [47.355534, 8.53476], [47.367604, 8.538702], [47.402545, 8.553295], [47.383867, 8.534005], [47.38825, 8.518426], [47.376785, 8.528602], [47.364918, 8.554322], [47.398828, 8.540367], [47.410204, 8.541662], [47.374383, 8.519059], [47.40689, 8.550511], [47.375963, 8.53367], [47.373094, 8.532671], [47.426719, 8.549083], [47.387363, 8.487746], [47.411836, 8.525092], [47.404754, 8.594878], [47.389207, 8.539042], [47.40536, 8.592745], [47.414041, 8.519201], [47.361128, 8.601094], [47.361219, 8.502045], [47.378879, 8.539213], [47.361103, 8.549715], [47.373614, 8.529054], [47.40113, 8.549887], [47.39311, 8.484945], [47.361365, 8.565342], [47.334922, 8.518035], [47.377036, 8.512293], [47.409321, 8.535151], [47.361678, 8.523289], [47.363148, 8.525795], [47.391917, 8.517798], [47.393179, 8.474243], [47.403588, 8.559875], [47.370553, 8.487614], [47.358295, 8.587543], [47.384983, 8.531035], [47.39321, 8.524752], [47.373926, 8.54642], [47.370242, 8.548806], [47.407158, 8.586504], [47.385169, 8.532363], [47.412405, 8.550361], [47.381498, 8.503549], [47.370125, 8.548844], [47.370269, 8.513586], [47.380386, 8.515777], [47.387297, 8.488089], [47.373854, 8.537944], [47.414458, 8.552908], [47.359644, 8.569396], [47.38705, 8.528428], [47.38329, 8.486593], [47.391936, 8.533919], [47.42802, 8.54569], [47.37333, 8.52007], [47.387239, 8.486565], [47.383961, 8.53165], [47.352175, 8.525651], [47.363967, 8.528565], [47.373319, 8.535523], [47.409291, 8.528764], [47.354967, 8.574817], [47.391128, 8.489198], [47.36345, 8.533824], [47.375418, 8.535235], [47.419174, 8.505986], [47.41942, 8.556021], [47.359, 8.52207], [47.339541, 8.529919], [47.410981, 8.529859], [47.37386, 8.536368], [47.389263, 8.527387], [47.360538, 8.597176], [47.411673, 8.561861], [47.368737, 8.519659], [47.361096, 8.531565], [47.41551, 8.563148], [47.393067, 8.531306], [47.414335, 8.551673], [47.365176, 8.547112], [47.376749, 8.535196], [47.376509, 8.521631], [47.388355, 8.526389], [47.41406, 8.541901], [47.385164, 8.495159], [47.373223, 8.550246], [47.397565, 8.481694], [47.410742, 8.571581], [47.375972, 8.537537], [47.420697, 8.502663], [47.392388, 8.524193], [47.378819, 8.50923], [47.372838, 8.528376], [47.381306, 8.542216], [47.380331, 8.54164], [47.379973, 8.497242], [47.393109, 8.474003], [47.398678, 8.471873], [47.366686, 8.542496], [47.371187, 8.524118], [47.380774, 8.512792], [47.359348, 8.597428], [47.406759, 8.587767], [47.407227, 8.547219], [47.360336, 8.553723], [47.383647, 8.512439], [47.363868, 8.566931], [47.349006, 8.565332], [47.387262, 8.485095], [47.364398, 8.548499], [47.393757, 8.53352], [47.382583, 8.528085], [47.371499, 8.535817], [47.357121, 8.556846], [47.3952, 8.535947], [47.396661, 8.518371], [47.398851, 8.536062], [47.370984, 8.531317], [47.360556, 8.556998], [47.405951, 8.557315], [47.399264, 8.515112], [47.386731, 8.544898], [47.430736, 8.550399], [47.373574, 8.51609], [47.374377, 8.54063], [47.355069, 8.557942], [47.366528, 8.540255], [47.352604, 8.525024], [47.38516, 8.532376], [47.368717, 8.509265], [47.398863, 8.533863], [47.376787, 8.535012], [47.405116, 8.480173], [47.360414, 8.526692], [47.36877, 8.547558], [47.352873, 8.557141], [47.409427, 8.538228], [47.362061, 8.551085], [47.376334, 8.487966], [47.375121, 8.545584], [47.368672, 8.51893], [47.359522, 8.557863], [47.374803, 8.55151], [47.382271, 8.501631], [47.385956, 8.498023], [47.341047, 8.524736], [47.37523, 8.533192], [47.407412, 8.585396], [47.370306, 8.513481], [47.413615, 8.553606], [47.40071, 8.548673], [47.379969, 8.514232], [47.372184, 8.530984], [47.369098, 8.525334], [47.399092, 8.541975], [47.385414, 8.475536], [47.368946, 8.540398], [47.390685, 8.539722], [47.353483, 8.576572], [47.364188, 8.556227], [47.367161, 8.539924], [47.375112, 8.545597], [47.372314, 8.563336], [47.391715, 8.51341], [47.39671, 8.517948], [47.381924, 8.529277], [47.385369, 8.529294], [47.386511, 8.52545], [47.376656, 8.544001], [47.424979, 8.541054], [47.409506, 8.57651], [47.369056, 8.523108], [47.373017, 8.531332], [47.400815, 8.548887], [47.375232, 8.552803], [47.407187, 8.585457], [47.379171, 8.526426], [47.381303, 8.511981], [47.408262, 8.547147], [47.39121, 8.523175], [47.414566, 8.564095], [47.365236, 8.502443], [47.414313, 8.551156], [47.353171, 8.577267], [47.395131, 8.5194], [47.37257, 8.514758], [47.340875, 8.5316], [47.419726, 8.533444], [47.407916, 8.544821], [47.386187, 8.548238], [47.377522, 8.529597], [47.391485, 8.486542], [47.406509, 8.583972], [47.404152, 8.563888], [47.38395, 8.545105], [47.351051, 8.576931], [47.3709, 8.526906], [47.367074, 8.523426], [47.357634, 8.554024], [47.351306, 8.560986], [47.367784, 8.539593], [47.393369, 8.49307], [47.372467, 8.542801], [47.349241, 8.532473], [47.367945, 8.546296], [47.361607, 8.603581], [47.376119, 8.528602], [47.361486, 8.56124], [47.403884, 8.569196], [47.365108, 8.553241], [47.365681, 8.552538], [47.415529, 8.563135], [47.36043, 8.547636], [47.363832, 8.533329], [47.355668, 8.555545], [47.381248, 8.53701], [47.360685, 8.529359], [47.406984, 8.534043], [47.381815, 8.529328], [47.373591, 8.524843], [47.360373, 8.53572], [47.382383, 8.548106], [47.377067, 8.544314], [47.335251, 8.541224], [47.391054, 8.522563], [47.374977, 8.540933], [47.361247, 8.549665], [47.384657, 8.531306], [47.373106, 8.550283], [47.418671, 8.507818], [47.357059, 8.535215], [47.370306, 8.548649], [47.400676, 8.492672], [47.404936, 8.492133], [47.370261, 8.548727], [47.379002, 8.542367], [47.371681, 8.536602], [47.367462, 8.522348], [47.349633, 8.577562], [47.373224, 8.536964], [47.412962, 8.538248], [47.357739, 8.534633], [47.363766, 8.547784], [47.370343, 8.524935], [47.334757, 8.529794], [47.354764, 8.526736], [47.40324, 8.547414], [47.379126, 8.559361], [47.40308, 8.486466], [47.381913, 8.491599], [47.37747, 8.49845], [47.381948, 8.516153], [47.381948, 8.516153], [47.376173, 8.534337], [47.405387, 8.504702], [47.400178, 8.493986], [47.368186, 8.529552], [47.379675, 8.530171], [47.405272, 8.558732], [47.385213, 8.47585], [47.40965, 8.542168], [47.377327, 8.499308], [47.398028, 8.474218], [47.37017, 8.539444], [47.376983, 8.490746], [47.389278, 8.478949], [47.36844, 8.498363], [47.359644, 8.548996], [47.372238, 8.535726], [47.349765, 8.561338], [47.372638, 8.534304], [47.37237, 8.534126], [47.37511, 8.52976], [47.373898, 8.540898], [47.357525, 8.507558], [47.4071, 8.553854], [47.384421, 8.486893], [47.417688, 8.545356], [47.351624, 8.560675], [47.384985, 8.508797], [47.372363, 8.503075], [47.37549, 8.524709], [47.413248, 8.5459], [47.362969, 8.563218], [47.38198, 8.536615], [47.379918, 8.490394], [47.369173, 8.538284], [47.369019, 8.502916], [47.382404, 8.540253], [47.367613, 8.538729], [47.362399, 8.567244], [47.384367, 8.507527], [47.415888, 8.515978], [47.367926, 8.532234], [47.38143, 8.537743], [47.378292, 8.541306], [47.342194, 8.529073], [47.37509, 8.526171], [47.375482, 8.514976], [47.413844, 8.545647], [47.409166, 8.483882], [47.375366, 8.501282], [47.405261, 8.55526], [47.39021, 8.533857], [47.37062, 8.53564], [47.361788, 8.560731], [47.414917, 8.54168], [47.383494, 8.531547], [47.33991, 8.5299], [47.372684, 8.550248], [47.372917, 8.53521], [47.370859, 8.535022], [47.381518, 8.503324], [47.36904, 8.541896], [47.378621, 8.501492], [47.382032, 8.53018], [47.375874, 8.537443], [47.352138, 8.558727], [47.373833, 8.536381], [47.387687, 8.529501], [47.413307, 8.545371], [47.378867, 8.510886], [47.347091, 8.563386], [47.408367, 8.544619], [47.366444, 8.600191], [47.378156, 8.509958], [47.394742, 8.525433], [47.384332, 8.507433], [47.381827, 8.530944], [47.369657, 8.467219], [47.378372, 8.54148], [47.371177, 8.51853], [47.374653, 8.538106], [47.377799, 8.507647], [47.390472, 8.47925], [47.353608, 8.526289], [47.398176, 8.53426], [47.380959, 8.53809], [47.40219, 8.508083], [47.376956, 8.535214], [47.377645, 8.511669], [47.42657, 8.548669], [47.373201, 8.503913], [47.346352, 8.564416], [47.372468, 8.526594], [47.374959, 8.547474], [47.379853, 8.55486], [47.381625, 8.517007], [47.425615, 8.494159], [47.392155, 8.477137], [47.372927, 8.531344], [47.402322, 8.535193], [47.391056, 8.479315], [47.364992, 8.555886], [47.370169, 8.54045], [47.364306, 8.520218], [47.376718, 8.543221], [47.39208, 8.499191], [47.363011, 8.557963], [47.384818, 8.531442], [47.413265, 8.541328], [47.429259, 8.488081], [47.369938, 8.552322], [47.357493, 8.553743], [47.369081, 8.547961], [47.367674, 8.545469], [47.358666, 8.526921], [47.431041, 8.550538], [47.373858, 8.519392], [47.37485, 8.545698], [47.368608, 8.560596], [47.382068, 8.54153], [47.37776, 8.537707], [47.422112, 8.538927], [47.381147, 8.538174], [47.378725, 8.54215], [47.370284, 8.545312], [47.375312, 8.522587], [47.398768, 8.506584], [47.373065, 8.50403], [47.375607, 8.548415], [47.378063, 8.543699], [47.403711, 8.560209], [47.368104, 8.560625], [47.381362, 8.517227], [47.370776, 8.508433], [47.364879, 8.558333], [47.36825, 8.533194], [47.381864, 8.536493], [47.407168, 8.586438], [47.39763, 8.532937], [47.373447, 8.561492], [47.356733, 8.557037], [47.361327, 8.517523], [47.357121, 8.521992], [47.375273, 8.490871], [47.417335, 8.522859], [47.382718, 8.486251], [47.37069, 8.524386], [47.373888, 8.544751], [47.374058, 8.516245], [47.388646, 8.520355], [47.389568, 8.48171], [47.374318, 8.544958], [47.348177, 8.562707], [47.376961, 8.541266], [47.393696, 8.502548], [47.388668, 8.485758], [47.374465, 8.539916], [47.376967, 8.543557], [47.370004, 8.556693], [47.369512, 8.526216], [47.391375, 8.537127], [47.405161, 8.480187], [47.379215, 8.537896], [47.369464, 8.526572], [47.393712, 8.533519], [47.358413, 8.583813], [47.377863, 8.529671], [47.367475, 8.556825], [47.375482, 8.530403], [47.371341, 8.534529], [47.372731, 8.530161], [47.356439, 8.55576], [47.373147, 8.552548], [47.378315, 8.541731], [47.368046, 8.530039], [47.378408, 8.509897], [47.36553, 8.539282], [47.383374, 8.515586], [47.399051, 8.533059], [47.410488, 8.529703], [47.373192, 8.503926], [47.35824, 8.554633], [47.391249, 8.522871], [47.36445, 8.566321], [47.373156, 8.503912], [47.374967, 8.531531], [47.372926, 8.53525], [47.427251, 8.491302], [47.370279, 8.52504], [47.370941, 8.508039], [47.349428, 8.562694], [47.375443, 8.549577], [47.325952, 8.513408], [47.38945, 8.511271], [47.363443, 8.575421], [47.39242, 8.489621], [47.376747, 8.527794], [47.374335, 8.524129], [47.413253, 8.538837], [47.402325, 8.5528], [47.408502, 8.546569], [47.368247, 8.51144], [47.356071, 8.532163], [47.391488, 8.505908], [47.403698, 8.557784], [47.370983, 8.520009], [47.352184, 8.523692], [47.398743, 8.538908], [47.341863, 8.5308], [47.351617, 8.563256], [47.41305, 8.535573], [47.369144, 8.525242], [47.369166, 8.518106], [47.358861, 8.516745], [47.400316, 8.48975], [47.418854, 8.507437], [47.361858, 8.560931], [47.383202, 8.506007], [47.409575, 8.542524], [47.387632, 8.552308], [47.410521, 8.569323], [47.381799, 8.51668], [47.359721, 8.558675], [47.381507, 8.571661], [47.42039, 8.551575], [47.343364, 8.519463], [47.369913, 8.552176], [47.376587, 8.544661], [47.360144, 8.596056], [47.39306, 8.489434], [47.404927, 8.593796], [47.394751, 8.525446], [47.406074, 8.552071], [47.403651, 8.487007], [47.370574, 8.555434], [47.39786, 8.554058], [47.384618, 8.524922], [47.36446, 8.5467], [47.375806, 8.52743], [47.377075, 8.527403], [47.409986, 8.543751], [47.367467, 8.496596], [47.380013, 8.557883], [47.370122, 8.563951], [47.412993, 8.546226], [47.403424, 8.570246], [47.3835, 8.574763], [47.396674, 8.545555], [47.373607, 8.553392], [47.372034, 8.547639], [47.384473, 8.549699], [47.363857, 8.55332], [47.381588, 8.537176], [47.37375, 8.535651], [47.364948, 8.521807], [47.368916, 8.501391], [47.38536, 8.528274], [47.366046, 8.560383], [47.35932, 8.522513], [47.366392, 8.541272], [47.392283, 8.506467], [47.38879, 8.530821], [47.368235, 8.546103], [47.400735, 8.592936], [47.409599, 8.54377], [47.411991, 8.546642], [47.414035, 8.545426], [47.386595, 8.541293], [47.415344, 8.4791], [47.382076, 8.529333], [47.391634, 8.513474], [47.399078, 8.535828], [47.409269, 8.543445], [47.395811, 8.506312], [47.366903, 8.544288], [47.396069, 8.526798], [47.419189, 8.505323], [47.372638, 8.534278], [47.399733, 8.586039], [47.412095, 8.517545], [47.38595, 8.480884], [47.376092, 8.540956], [47.391316, 8.536741], [47.382879, 8.529111], [47.368879, 8.53988], [47.406451, 8.587959], [47.352447, 8.55925], [47.379645, 8.519007], [47.403834, 8.576985], [47.385512, 8.520794], [47.414185, 8.546674], [47.40858, 8.531744], [47.382473, 8.487398], [47.380007, 8.520709], [47.399088, 8.480386], [47.379511, 8.516991], [47.419731, 8.548062], [47.408295, 8.577054], [47.365083, 8.534268], [47.384124, 8.541997], [47.383261, 8.540045], [47.373979, 8.544594], [47.379059, 8.528768], [47.398282, 8.537256], [47.359117, 8.524018], [47.381222, 8.503266], [47.364097, 8.54607], [47.360609, 8.557092], [47.36499, 8.508621], [47.349246, 8.562849], [47.378804, 8.531014], [47.371141, 8.51845], [47.376704, 8.524787], [47.371206, 8.542987], [47.371187, 8.524105], [47.384166, 8.527045], [47.382897, 8.529072], [47.357917, 8.520486], [47.406874, 8.574307], [47.374584, 8.525459], [47.388404, 8.486031], [47.370971, 8.546862], [47.427354, 8.552343], [47.369454, 8.526665], [47.389463, 8.521524], [47.374759, 8.539234], [47.370088, 8.525274], [47.376081, 8.535514], [47.363819, 8.535632], [47.37163, 8.547604], [47.410638, 8.544242], [47.370957, 8.531343], [47.429827, 8.486965], [47.392514, 8.491159], [47.36887, 8.53988], [47.385845, 8.498418], [47.386796, 8.547496], [47.36787, 8.56062], [47.390657, 8.489573], [47.363443, 8.546785], [47.377474, 8.485221], [47.427652, 8.54653], [47.405233, 8.481129], [47.364597, 8.554925], [47.376638, 8.52701], [47.391148, 8.523094], [47.397005, 8.530606], [47.370301, 8.491528], [47.399084, 8.533298], [47.375994, 8.541802], [47.371383, 8.515661], [47.375712, 8.53736], [47.372728, 8.518032], [47.429937, 8.539022], [47.37153, 8.536373], [47.389565, 8.540149], [47.345085, 8.529635], [47.38307, 8.530717], [47.406834, 8.481147], [47.408918, 8.548128], [47.378137, 8.526352], [47.377069, 8.544168], [47.368751, 8.552324], [47.424354, 8.553672], [47.430034, 8.549589], [47.377367, 8.539327], [47.382221, 8.515801], [47.373058, 8.536511], [47.401363, 8.504066], [47.414332, 8.541695], [47.414886, 8.541176], [47.365491, 8.531946], [47.378984, 8.54238], [47.364728, 8.530832], [47.408954, 8.550077], [47.409567, 8.537634], [47.40932, 8.572531], [47.37873, 8.542534], [47.419887, 8.547761], [47.355504, 8.556601], [47.380457, 8.525525], [47.375528, 8.548162], [47.377475, 8.526021], [47.382085, 8.529346], [47.402477, 8.546391], [47.37385, 8.536501], [47.387935, 8.539413], [47.361187, 8.563379], [47.379687, 8.529854], [47.369144, 8.525229], [47.370252, 8.525026], [47.361892, 8.560243], [47.37152, 8.526985], [47.335467, 8.519382], [47.381534, 8.54189], [47.371716, 8.536695], [47.37119, 8.523854], [47.369705, 8.508464], [47.370931, 8.548278], [47.37079, 8.546977], [47.362831, 8.548731], [47.401196, 8.534428], [47.399502, 8.495179], [47.36907, 8.528286], [47.375122, 8.518902], [47.369709, 8.467379], [47.425516, 8.515643], [47.373231, 8.531549], [47.378509, 8.540331], [47.348435, 8.534005], [47.371227, 8.528436], [47.361502, 8.561479], [47.392487, 8.491119], [47.403035, 8.580532], [47.384586, 8.509147], [47.376224, 8.537529], [47.402761, 8.577267], [47.394063, 8.544839], [47.402905, 8.550467], [47.361032, 8.553301], [47.409346, 8.544758], [47.372634, 8.494209], [47.367125, 8.539884], [47.360167, 8.579323], [47.357044, 8.590362], [47.370152, 8.548804], [47.405703, 8.535395], [47.417153, 8.523081], [47.363413, 8.534882], [47.392745, 8.522557], [47.366918, 8.492613], [47.380747, 8.525253], [47.370733, 8.515966], [47.402342, 8.499316], [47.375294, 8.540649], [47.356677, 8.535617], [47.36828, 8.524324], [47.388498, 8.470656], [47.371143, 8.529798], [47.377548, 8.528764], [47.37405, 8.544767], [47.405975, 8.548292], [47.370672, 8.530132], [47.374453, 8.541148], [47.367983, 8.540444], [47.420041, 8.509449], [47.380347, 8.487807], [47.391429, 8.52571], [47.371818, 8.541993], [47.370822, 8.515041], [47.405716, 8.585015], [47.377924, 8.528016], [47.40277, 8.501735], [47.404412, 8.572215], [47.427404, 8.546207], [47.385209, 8.507915], [47.404307, 8.580096], [47.377726, 8.527059], [47.387595, 8.49783], [47.373518, 8.534521], [47.3792, 8.53861], [47.368496, 8.499132], [47.370952, 8.536639], [47.376689, 8.540571], [47.338049, 8.528883], [47.359069, 8.526175], [47.399535, 8.497471], [47.371945, 8.547504], [47.414044, 8.556637], [47.403103, 8.555148], [47.409347, 8.5466], [47.335126, 8.519269], [47.36535, 8.531639], [47.368863, 8.514816], [47.375227, 8.515315], [47.395213, 8.484125], [47.378154, 8.532166], [47.371615, 8.515918], [47.369266, 8.525642], [47.377068, 8.583896], [47.357321, 8.58874], [47.393275, 8.530278], [47.404608, 8.557591], [47.3613, 8.532827], [47.357462, 8.521099], [47.409615, 8.576433], [47.419643, 8.504842], [47.331698, 8.516421], [47.378921, 8.542379], [47.37214, 8.556221], [47.367495, 8.537853], [47.388805, 8.49543], [47.366859, 8.543268], [47.402364, 8.579193], [47.367336, 8.535625], [47.40387, 8.568745], [47.364559, 8.566217], [47.404832, 8.483691], [47.370981, 8.535422], [47.369339, 8.525497], [47.393364, 8.494514], [47.413705, 8.552667], [47.402281, 8.552746], [47.359472, 8.522556], [47.372582, 8.534515], [47.411442, 8.54667], [47.391829, 8.518512], [47.393399, 8.500515], [47.392068, 8.500515], [47.386082, 8.504899], [47.340922, 8.52464], [47.416102, 8.552227], [47.418552, 8.547203], [47.376209, 8.536231], [47.369562, 8.548435], [47.364586, 8.566231], [47.373162, 8.551952], [47.359089, 8.525077], [47.36729, 8.544309], [47.353456, 8.576638], [47.368948, 8.532613], [47.418112, 8.554549], [47.365949, 8.532048], [47.374489, 8.540248], [47.381843, 8.531143], [47.414422, 8.483561], [47.369444, 8.52681], [47.409847, 8.545087], [47.377211, 8.523446], [47.356876, 8.522212], [47.374465, 8.495623], [47.400316, 8.543723], [47.377707, 8.51179], [47.381616, 8.530423], [47.386846, 8.51853], [47.373581, 8.54489], [47.373642, 8.575639], [47.387827, 8.527106], [47.37017, 8.518404], [47.378091, 8.497469], [47.390172, 8.511021], [47.399512, 8.517435], [47.414102, 8.550661], [47.362195, 8.5475], [47.387636, 8.488387], [47.396094, 8.52705], [47.374386, 8.521654], [47.366527, 8.545022], [47.398279, 8.537534], [47.409556, 8.572298], [47.372376, 8.540138], [47.426148, 8.554266], [47.385616, 8.482997], [47.3751, 8.540221], [47.358544, 8.517944], [47.378272, 8.527348], [47.392378, 8.516615], [47.423541, 8.554093], [47.366474, 8.547775], [47.397937, 8.506938], [47.390046, 8.491534], [47.378216, 8.541768], [47.378164, 8.493392], [47.366954, 8.544581], [47.374078, 8.540835], [47.379434, 8.525266], [47.387981, 8.491003], [47.370438, 8.526341], [47.39104, 8.47803], [47.36452, 8.532879], [47.387265, 8.518949], [47.377294, 8.535592], [47.370336, 8.507365], [47.387234, 8.500909], [47.358818, 8.533729], [47.379012, 8.483251], [47.372716, 8.538424], [47.360882, 8.517011], [47.388579, 8.525612], [47.365229, 8.533993], [47.374695, 8.549667], [47.362438, 8.547505], [47.404373, 8.573433], [47.370796, 8.546395], [47.418654, 8.507738], [47.367534, 8.541322], [47.416991, 8.538238], [47.382914, 8.500227], [47.381976, 8.505373], [47.363344, 8.548676], [47.404541, 8.484136], [47.427422, 8.546155], [47.362659, 8.549681], [47.393511, 8.512757], [47.357747, 8.554503], [47.359455, 8.592996], [47.381948, 8.516179], [47.353402, 8.572017], [47.383131, 8.531964], [47.376979, 8.542259], [47.37052, 8.558147], [47.386592, 8.525452], [47.382377, 8.514466], [47.40537, 8.578158], [47.378777, 8.542363], [47.370225, 8.532652], [47.384894, 8.495141], [47.37751, 8.50976], [47.402446, 8.535434], [47.356427, 8.573643], [47.366451, 8.551984], [47.370134, 8.548831], [47.384293, 8.526994], [47.376946, 8.527732], [47.37788, 8.531671], [47.408371, 8.54703], [47.352383, 8.510155], [47.333271, 8.529949], [47.419904, 8.554387], [47.380395, 8.548157], [47.36652, 8.544836], [47.393469, 8.526824], [47.389915, 8.487041], [47.360912, 8.513874], [47.374454, 8.540075], [47.388189, 8.480994], [47.386221, 8.518054], [47.367657, 8.578689], [47.425834, 8.493779], [47.377698, 8.544221], [47.369973, 8.552429], [47.39348, 8.529566], [47.377011, 8.527468], [47.366113, 8.533773], [47.384163, 8.497444], [47.413855, 8.545488], [47.392183, 8.495881], [47.412204, 8.524159], [47.375737, 8.488325], [47.407072, 8.55396], [47.369473, 8.528426], [47.354855, 8.556825], [47.376357, 8.521496], [47.366533, 8.556594], [47.400505, 8.543753], [47.370534, 8.514161], [47.425257, 8.510601], [47.359148, 8.521636], [47.379793, 8.506958], [47.400008, 8.494884], [47.37384, 8.50288], [47.377769, 8.537747], [47.37937, 8.537713], [47.38304, 8.548053], [47.402017, 8.499548], [47.375838, 8.518307], [47.38671, 8.528196], [47.399815, 8.587776], [47.399828, 8.504763], [47.370958, 8.53129], [47.373878, 8.54103], [47.410087, 8.544429], [47.380209, 8.513562], [47.354153, 8.511342], [47.385428, 8.508555], [47.377013, 8.539625], [47.416467, 8.546059], [47.371765, 8.54754], [47.373113, 8.535439], [47.387191, 8.51912], [47.386862, 8.535007], [47.370114, 8.518641], [47.353459, 8.576333], [47.391765, 8.485448], [47.419852, 8.482873], [47.380487, 8.493146], [47.370717, 8.516707], [47.391898, 8.515029], [47.38977, 8.511675], [47.370015, 8.543333], [47.370281, 8.532494], [47.357135, 8.507894], [47.339628, 8.53786], [47.373378, 8.530254], [47.366315, 8.533327], [47.400169, 8.50383], [47.377134, 8.54013], [47.353317, 8.576132], [47.386202, 8.518146], [47.364577, 8.566231], [47.375201, 8.522942], [47.369363, 8.525816], [47.369292, 8.525682], [47.363613, 8.547808], [47.369819, 8.556292], [47.356263, 8.523272], [47.371438, 8.547918], [47.388167, 8.491364], [47.347367, 8.532766], [47.41236, 8.523858], [47.361344, 8.550819], [47.392442, 8.502854], [47.378793, 8.531226], [47.378784, 8.531239], [47.375052, 8.518635], [47.403933, 8.534153], [47.376744, 8.543327], [47.38362, 8.539112], [47.377765, 8.531496], [47.385877, 8.542112], [47.373035, 8.475759], [47.378601, 8.509437], [47.428781, 8.545175], [47.376402, 8.52821], [47.375663, 8.543503], [47.3524, 8.534166], [47.364081, 8.528912], [47.411318, 8.570586], [47.360927, 8.520918], [47.364843, 8.56666], [47.403468, 8.584013], [47.417239, 8.544392], [47.385203, 8.54386], [47.380128, 8.527969], [47.412244, 8.554929], [47.386943, 8.490479], [47.398645, 8.533156], [47.367208, 8.559282], [47.359362, 8.586136], [47.354391, 8.531017], [47.336456, 8.51751], [47.377354, 8.539685], [47.3818, 8.516627], [47.349672, 8.561561], [47.379056, 8.542368], [47.382431, 8.537419], [47.370488, 8.518093], [47.363547, 8.546297], [47.361829, 8.560202], [47.363388, 8.520319], [47.37982, 8.536796], [47.391012, 8.521237], [47.418261, 8.5466], [47.369895, 8.556757], [47.352952, 8.572113], [47.366577, 8.540799], [47.412124, 8.55062], [47.378482, 8.527048], [47.381236, 8.537315], [47.371536, 8.518591], [47.38568, 8.521076], [47.390428, 8.525014], [47.357766, 8.534647], [47.419819, 8.500366], [47.414632, 8.520379], [47.405211, 8.593245], [47.398525, 8.494828], [47.359797, 8.532028], [47.363903, 8.547576], [47.378776, 8.496317], [47.36745, 8.489565], [47.384511, 8.538137], [47.386036, 8.493256], [47.349818, 8.561339], [47.386985, 8.516215], [47.359788, 8.594764], [47.353865, 8.512329], [47.359242, 8.535511], [47.39442, 8.519518], [47.390497, 8.491344], [47.357526, 8.571655], [47.370703, 8.517263], [47.37503, 8.545688], [47.335067, 8.526493], [47.405626, 8.549994], [47.359095, 8.50702], [47.370161, 8.548818], [47.370975, 8.53133], [47.419579, 8.502044], [47.381867, 8.547525], [47.374668, 8.52411], [47.366321, 8.544925], [47.365565, 8.539349], [47.377771, 8.521313], [47.364685, 8.537305], [47.370143, 8.548804], [47.385093, 8.530865], [47.377883, 8.511264], [47.370169, 8.532889], [47.375805, 8.539931], [47.353382, 8.576835], [47.400286, 8.591032], [47.362189, 8.597543], [47.366917, 8.492746], [47.371057, 8.521666], [47.374677, 8.549667], [47.370652, 8.524611], [47.40414, 8.562245], [47.349905, 8.566357], [47.398849, 8.47185], [47.378578, 8.541498], [47.379434, 8.483352], [47.421281, 8.511594], [47.372564, 8.534501], [47.378797, 8.528908], [47.394309, 8.536008], [47.377843, 8.513541], [47.377641, 8.498427], [47.376758, 8.559642], [47.390337, 8.525197], [47.392458, 8.523386], [47.382332, 8.488084], [47.378114, 8.510593], [47.387253, 8.50079], [47.364335, 8.533418], [47.366155, 8.540632], [47.367578, 8.535749], [47.367076, 8.53656], [47.379797, 8.526797], [47.370391, 8.518806], [47.374468, 8.546114], [47.39089, 8.521831], [47.373416, 8.534823], [47.413624, 8.477304], [47.406844, 8.550576], [47.357602, 8.521538], [47.352695, 8.572545], [47.377544, 8.504093], [47.380387, 8.547998], [47.401585, 8.553977], [47.397011, 8.480292], [47.362752, 8.519114], [47.372728, 8.542794], [47.377895, 8.50794], [47.383327, 8.543437], [47.410395, 8.542316], [47.375959, 8.536001], [47.366375, 8.544926], [47.409517, 8.549532], [47.394339, 8.493182], [47.393338, 8.4945], [47.403527, 8.588916], [47.382887, 8.530091], [47.379131, 8.544833], [47.363901, 8.531702], [47.376551, 8.525684], [47.371934, 8.522147], [47.379331, 8.527542], [47.416803, 8.568078], [47.381603, 8.515471], [47.404499, 8.580776], [47.378607, 8.505888], [47.380292, 8.512411], [47.363255, 8.533489], [47.377602, 8.542021], [47.382265, 8.512067], [47.414772, 8.552995], [47.426141, 8.544683], [47.364588, 8.508295], [47.383763, 8.532652], [47.353573, 8.554469], [47.384077, 8.489072], [47.353619, 8.554364], [47.373023, 8.534471], [47.425615, 8.494172], [47.383347, 8.515598], [47.382887, 8.531124], [47.39197, 8.517905], [47.376467, 8.514572], [47.420987, 8.50251], [47.390994, 8.488135], [47.378706, 8.528059], [47.37845, 8.510189], [47.395848, 8.532132], [47.366481, 8.553587], [47.395632, 8.536843], [47.388976, 8.515831], [47.393562, 8.472688], [47.372302, 8.494123], [47.402974, 8.576675], [47.37422, 8.524961], [47.380671, 8.502526], [47.380653, 8.502513], [47.366429, 8.547721], [47.379782, 8.527419], [47.390189, 8.543619], [47.39365, 8.472928], [47.380474, 8.519831], [47.380808, 8.528301], [47.414204, 8.546635], [47.36718, 8.539753], [47.429948, 8.538757], [47.419097, 8.506448], [47.372535, 8.535639], [47.372763, 8.534412], [47.392028, 8.541273], [47.410595, 8.550601], [47.398837, 8.54038], [47.378504, 8.528505], [47.373073, 8.574925], [47.360122, 8.547894], [47.361973, 8.560231], [47.389485, 8.540108], [47.371501, 8.521291], [47.400461, 8.503345], [47.375595, 8.528909], [47.377739, 8.537984], [47.381763, 8.516732], [47.374538, 8.540686], [47.373789, 8.544736], [47.373373, 8.519356], [47.425682, 8.497567], [47.421327, 8.54958], [47.359341, 8.592755], [47.379375, 8.511373], [47.385974, 8.535677], [47.366914, 8.54311], [47.374452, 8.540327], [47.394516, 8.589596], [47.426067, 8.554225], [47.430933, 8.539228], [47.359742, 8.522509], [47.365964, 8.53234], [47.375713, 8.481002], [47.368263, 8.495129], [47.416507, 8.514188], [47.345111, 8.534519], [47.357411, 8.527452], [47.378797, 8.544071], [47.365629, 8.549544], [47.401265, 8.545174], [47.403191, 8.486203], [47.367261, 8.545395], [47.368061, 8.546378], [47.38057, 8.500763], [47.364323, 8.536596], [47.34331, 8.519475], [47.376603, 8.54486], [47.366322, 8.565354], [47.371208, 8.531401], [47.368912, 8.533526], [47.396729, 8.529289], [47.357634, 8.554011], [47.369099, 8.547935], [47.387931, 8.486645], [47.3666, 8.541157], [47.36174, 8.52247], [47.369764, 8.533808], [47.414769, 8.519229], [47.368011, 8.533772], [47.361383, 8.602517], [47.365054, 8.538252], [47.411689, 8.545311], [47.393776, 8.487833], [47.364559, 8.566217], [47.399229, 8.542667], [47.377666, 8.509432], [47.406826, 8.550563], [47.411507, 8.525616], [47.372903, 8.555522], [47.378975, 8.542327], [47.396732, 8.486222], [47.402999, 8.486477], [47.373886, 8.513514], [47.377972, 8.526746], [47.365732, 8.557517], [47.391625, 8.514375], [47.364544, 8.508242], [47.365254, 8.545485], [47.363067, 8.535299], [47.377131, 8.533814], [47.403846, 8.56844], [47.387233, 8.488273], [47.386271, 8.521353], [47.359437, 8.521509], [47.390509, 8.527916], [47.387298, 8.485056], [47.365227, 8.545538], [47.385994, 8.542009], [47.363313, 8.55744], [47.361658, 8.573993], [47.405802, 8.590794], [47.374389, 8.526991], [47.36996, 8.549079], [47.351196, 8.576815], [47.369732, 8.540097], [47.369123, 8.541607], [47.376529, 8.527101], [47.375799, 8.545201], [47.393405, 8.500926], [47.400304, 8.590105], [47.409158, 8.547511], [47.367233, 8.541766], [47.347753, 8.52433], [47.384895, 8.531841], [47.399321, 8.542404], [47.383912, 8.529265], [47.377142, 8.540237], [47.374968, 8.547461], [47.375812, 8.495861], [47.375821, 8.495848], [47.392216, 8.524295], [47.362683, 8.548172], [47.362174, 8.550558], [47.372228, 8.537712], [47.374034, 8.544555], [47.37869, 8.54203], [47.380644, 8.525728], [47.364388, 8.555132], [47.38812, 8.519827], [47.391437, 8.513351], [47.369748, 8.520289], [47.380756, 8.512752], [47.394899, 8.490915], [47.355404, 8.503438], [47.356748, 8.506986], [47.419152, 8.506409], [47.374992, 8.52605], [47.36482, 8.525829], [47.372662, 8.532729], [47.35555, 8.512006], [47.386979, 8.534956], [47.365227, 8.545538], [47.36855, 8.563706], [47.412786, 8.543425], [47.390832, 8.5222], [47.373465, 8.542835], [47.333931, 8.515262], [47.39391, 8.505665], [47.374542, 8.549743], [47.378537, 8.541126], [47.370714, 8.535205], [47.365618, 8.539482], [47.384414, 8.531367], [47.404144, 8.564697], [47.384446, 8.547831], [47.426159, 8.50146], [47.386309, 8.531671], [47.376822, 8.535105], [47.371993, 8.489469], [47.391652, 8.477989], [47.39804, 8.532455], [47.366945, 8.536146], [47.370347, 8.513959], [47.391036, 8.489448], [47.388817, 8.527961], [47.413158, 8.509668], [47.376711, 8.534494], [47.353646, 8.554325], [47.378384, 8.496839], [47.35147, 8.560831], [47.388334, 8.53815], [47.367147, 8.506904], [47.370555, 8.508931], [47.383472, 8.573094], [47.413293, 8.509658], [47.362079, 8.516943], [47.389702, 8.471739], [47.385023, 8.485011], [47.395847, 8.506287], [47.386513, 8.529093], [47.373523, 8.512911], [47.369148, 8.532365], [47.389554, 8.546069], [47.35745, 8.521403], [47.357276, 8.521757], [47.379065, 8.508838], [47.409483, 8.53803], [47.397856, 8.481249], [47.387117, 8.545939], [47.372276, 8.540255], [47.374997, 8.523574], [47.365906, 8.556263], [47.383258, 8.484222], [47.40828, 8.506112], [47.360322, 8.573594], [47.359449, 8.507623], [47.375323, 8.485377], [47.369293, 8.540776], [47.369899, 8.529097], [47.362037, 8.597474], [47.400221, 8.494226], [47.372132, 8.513492], [47.419578, 8.548046], [47.402405, 8.487512], [47.378993, 8.542367], [47.372935, 8.475849], [47.37098, 8.546849], [47.381175, 8.491677], [47.40512, 8.559537], [47.422794, 8.49963], [47.392221, 8.517023], [47.373665, 8.553896], [47.369062, 8.525267], [47.404964, 8.549662], [47.372714, 8.519608], [47.366565, 8.541077], [47.369074, 8.527822], [47.417977, 8.559211], [47.364906, 8.531021], [47.37639, 8.537069], [47.36562, 8.549584], [47.398624, 8.494804], [47.372805, 8.532785], [47.381174, 8.538174], [47.380934, 8.512967], [47.388656, 8.482116], [47.386201, 8.518212], [47.369469, 8.529856], [47.369969, 8.531243], [47.334553, 8.539026], [47.402676, 8.49238], [47.404965, 8.594499], [47.382564, 8.514656], [47.358481, 8.517982], [47.369116, 8.528207], [47.422613, 8.510508], [47.371361, 8.527631], [47.354747, 8.514174], [47.375657, 8.516555], [47.378836, 8.532339], [47.364825, 8.566633], [47.396967, 8.545972], [47.389152, 8.543836], [47.385566, 8.548278], [47.369182, 8.527877], [47.367808, 8.541818], [47.372921, 8.551762], [47.390732, 8.508794], [47.395552, 8.532099], [47.355084, 8.5619], [47.330175, 8.512898], [47.385979, 8.51789], [47.364786, 8.547395], [47.368716, 8.540936], [47.337983, 8.538634], [47.385712, 8.47439], [47.357419, 8.559553], [47.37693, 8.537001], [47.370463, 8.52462], [47.408895, 8.545862], [47.382278, 8.54025], [47.364975, 8.531379], [47.381808, 8.513793], [47.399335, 8.521923], [47.407535, 8.546072], [47.367817, 8.560487], [47.371575, 8.526867], [47.417924, 8.541398], [47.391583, 8.487604], [47.373895, 8.538302], [47.334499, 8.538999], [47.343822, 8.51087], [47.371346, 8.546261], [47.355204, 8.530623], [47.389926, 8.512288], [47.412804, 8.522515], [47.417171, 8.544908], [47.387616, 8.500479], [47.391123, 8.522855], [47.375266, 8.560365], [47.394758, 8.525619], [47.351875, 8.55982], [47.36672, 8.541782], [47.360227, 8.534049], [47.376787, 8.540653], [47.373894, 8.536607], [47.376796, 8.540653], [47.413983, 8.561088], [47.367967, 8.535558], [47.404611, 8.560149], [47.383877, 8.542349], [47.357582, 8.52167], [47.366309, 8.540595], [47.391014, 8.515303], [47.381055, 8.492019], [47.354841, 8.523415], [47.372008, 8.529577], [47.372737, 8.537113], [47.368669, 8.528873], [47.357528, 8.521669], [47.424284, 8.543187], [47.381899, 8.528998], [47.414593, 8.551056], [47.394596, 8.486709], [47.369023, 8.537977], [47.335584, 8.519384], [47.387135, 8.494112], [47.398267, 8.473587], [47.363765, 8.551677], [47.344456, 8.530496], [47.379913, 8.556133], [47.404066, 8.534407], [47.376949, 8.543517], [47.391517, 8.513419], [47.353697, 8.558442], [47.349479, 8.536819], [47.405256, 8.557632], [47.387206, 8.554498], [47.364894, 8.519899], [47.408312, 8.584461], [47.363449, 8.55735], [47.379703, 8.515763], [47.385968, 8.518141], [47.377904, 8.548092], [47.378047, 8.548121], [47.373821, 8.531892], [47.411318, 8.570612], [47.405221, 8.559353], [47.377583, 8.543106], [47.383308, 8.543596], [47.369675, 8.529953], [47.402137, 8.495218], [47.341291, 8.524714], [47.359591, 8.522386], [47.414333, 8.551872], [47.354498, 8.523474], [47.370704, 8.549359], [47.387474, 8.48751], [47.389081, 8.494734], [47.363638, 8.566595], [47.37874, 8.519637], [47.3896, 8.521222], [47.372964, 8.520712], [47.359122, 8.507087], [47.37918, 8.529313], [47.349637, 8.561534], [47.376693, 8.526866], [47.420287, 8.509122], [47.370676, 8.537256], [47.387523, 8.518305], [47.364612, 8.537369], [47.37395, 8.544818], [47.39391, 8.505625], [47.403686, 8.539421], [47.388225, 8.520161], [47.412018, 8.546643], [47.377095, 8.529072], [47.392449, 8.52434], [47.393378, 8.499932], [47.393404, 8.500065], [47.353647, 8.524119], [47.35881, 8.557133], [47.387357, 8.514858], [47.376758, 8.528615], [47.410686, 8.571778], [47.346632, 8.528714], [47.334904, 8.518047], [47.394847, 8.525753], [47.390414, 8.510152], [47.372533, 8.478582], [47.419762, 8.504619], [47.343818, 8.535194], [47.375497, 8.526828], [47.394664, 8.518371], [47.421521, 8.499207], [47.378516, 8.541404], [47.362098, 8.547233], [47.369072, 8.541381], [47.390959, 8.522084], [47.402246, 8.486277], [47.365101, 8.534229], [47.359398, 8.553068], [47.375329, 8.516019], [47.3788, 8.509375], [47.337921, 8.530071], [47.362488, 8.522273], [47.342552, 8.531158], [47.374911, 8.532656], [47.362551, 8.548752], [47.417188, 8.544007], [47.398291, 8.532473], [47.361281, 8.55087], [47.383208, 8.543673], [47.37026, 8.548833], [47.368886, 8.535379], [47.366976, 8.518512], [47.370187, 8.548911], [47.35949, 8.568559], [47.379291, 8.515596], [47.387145, 8.473027], [47.352022, 8.525634], [47.362602, 8.520713], [47.353564, 8.554482], [47.35316, 8.525168], [47.399062, 8.542293], [47.407189, 8.586146], [47.383877, 8.527238], [47.382163, 8.508516], [47.39208, 8.499217], [47.350557, 8.578733], [47.384544, 8.493147], [47.414064, 8.529166], [47.361464, 8.549577], [47.386256, 8.480916], [47.401576, 8.531415], [47.368973, 8.540438], [47.368825, 8.535113], [47.409234, 8.547101], [47.402342, 8.499316], [47.413807, 8.571831], [47.364402, 8.546209], [47.396325, 8.543455], [47.393096, 8.513848], [47.387672, 8.517699], [47.389104, 8.517543], [47.397491, 8.532431], [47.415041, 8.52093], [47.358186, 8.554618], [47.383051, 8.500018], [47.372224, 8.515188], [47.402307, 8.499315], [47.333519, 8.518906], [47.413627, 8.481028], [47.385021, 8.495024], [47.429927, 8.538187], [47.383167, 8.532838], [47.404871, 8.576782], [47.375149, 8.491571], [47.363431, 8.548042], [47.364882, 8.530782], [47.362159, 8.547513], [47.366416, 8.54821], [47.40871, 8.546402], [47.381224, 8.537646], [47.371734, 8.519508], [47.410572, 8.550177], [47.4226, 8.511939], [47.397778, 8.533483], [47.37674, 8.559655], [47.349612, 8.561335], [47.337064, 8.519811], [47.402809, 8.498477], [47.36415, 8.563004], [47.420147, 8.554406], [47.410909, 8.561792], [47.367976, 8.524106], [47.380417, 8.517327], [47.382203, 8.545347], [47.404093, 8.564338], [47.390836, 8.478741], [47.369868, 8.556783], [47.363244, 8.55344], [47.385378, 8.529281], [47.360422, 8.550416], [47.370561, 8.54929], [47.360032, 8.550672], [47.405162, 8.559908], [47.352368, 8.573848], [47.362173, 8.550677], [47.388271, 8.520082], [47.380444, 8.534451], [47.348359, 8.562526], [47.377674, 8.542022], [47.36457, 8.554924], [47.384543, 8.534761], [47.39526, 8.5085], [47.402352, 8.499303], [47.398743, 8.495521], [47.360099, 8.554036], [47.375785, 8.516293], [47.377909, 8.541855], [47.405609, 8.549914], [47.397683, 8.541589], [47.379596, 8.554524], [47.399909, 8.543079], [47.373328, 8.528902], [47.382236, 8.537163], [47.393327, 8.525669], [47.355341, 8.600505], [47.375934, 8.553626], [47.390868, 8.522281], [47.377397, 8.501494], [47.349521, 8.532307], [47.386072, 8.49625], [47.374034, 8.544555], [47.363781, 8.574912], [47.371259, 8.52314], [47.381861, 8.531116], [47.381717, 8.531114], [47.3607, 8.529703], [47.402656, 8.55396], [47.374236, 8.524127], [47.384574, 8.545701], [47.387116, 8.485331], [47.368331, 8.529396], [47.381151, 8.537737], [47.372638, 8.534291], [47.372947, 8.528246], [47.373942, 8.540912], [47.403336, 8.536499], [47.355472, 8.553463], [47.372673, 8.52101], [47.345031, 8.529661], [47.383746, 8.573576], [47.380352, 8.528066], [47.372714, 8.534809], [47.37768, 8.537586], [47.388642, 8.525613], [47.367653, 8.534519], [47.41, 8.543155], [47.398034, 8.535926], [47.417574, 8.513547], [47.405673, 8.585756], [47.401406, 8.485651], [47.402039, 8.499018], [47.3831, 8.57245], [47.387799, 8.53296], [47.389125, 8.494801], [47.424032, 8.550763], [47.361502, 8.525775], [47.36114, 8.535497], [47.402307, 8.55276], [47.342679, 8.531055], [47.375472, 8.541844], [47.373757, 8.515775], [47.33799, 8.537919], [47.405683, 8.492082], [47.377143, 8.535456], [47.36997, 8.520545], [47.340144, 8.529944], [47.412004, 8.52442], [47.385816, 8.5248], [47.378867, 8.531042], [47.380266, 8.527654], [47.366456, 8.547774], [47.387006, 8.53403], [47.374895, 8.501656], [47.366492, 8.517363], [47.372655, 8.534463], [47.370601, 8.529999], [47.375779, 8.530356], [47.388063, 8.490912], [47.352202, 8.558543], [47.347448, 8.532754], [47.366268, 8.548565], [47.4059, 8.533544], [47.388064, 8.537204], [47.396127, 8.544431], [47.33544, 8.519342], [47.39739, 8.520227], [47.38969, 8.537476], [47.363397, 8.535544], [47.374367, 8.521694], [47.353481, 8.53215], [47.422574, 8.507856], [47.398201, 8.516203], [47.419392, 8.547763], [47.377946, 8.541829], [47.369893, 8.552348], [47.360813, 8.509954], [47.377349, 8.498884], [47.386725, 8.547415], [47.391677, 8.519409], [47.418862, 8.530643], [47.405564, 8.549966], [47.410694, 8.571871], [47.377109, 8.54838], [47.382121, 8.475591], [47.365028, 8.548407], [47.386289, 8.518413], [47.393301, 8.478683], [47.345223, 8.528341], [47.40806, 8.572597], [47.386487, 8.518404], [47.366877, 8.541401], [47.365141, 8.530906], [47.365692, 8.549519], [47.374455, 8.539996], [47.410408, 8.53622], [47.374167, 8.540917], [47.380881, 8.512873], [47.364687, 8.547433], [47.367227, 8.539595], [47.370952, 8.52324], [47.385863, 8.485597], [47.376776, 8.559603], [47.360169, 8.54771], [47.358193, 8.55209], [47.411957, 8.517939], [47.378335, 8.557464], [47.425473, 8.542098], [47.40459, 8.486615], [47.353356, 8.511882], [47.405155, 8.478809], [47.401175, 8.593025], [47.377856, 8.526664], [47.370188, 8.548805], [47.367863, 8.539859], [47.348513, 8.534298], [47.371443, 8.550182], [47.408963, 8.550064], [47.366246, 8.527275], [47.370533, 8.524833], [47.370981, 8.493898], [47.383211, 8.506034], [47.389213, 8.544089], [47.376939, 8.535147], [47.412095, 8.517531], [47.373339, 8.531538], [47.378279, 8.577896], [47.387709, 8.532971], [47.380726, 8.533186], [47.394715, 8.525459], [47.41627, 8.544134], [47.397907, 8.534148], [47.373617, 8.536377], [47.368735, 8.52473], [47.364552, 8.558631], [47.37916, 8.542808], [47.402115, 8.535241], [47.357915, 8.52169], [47.41217, 8.550422], [47.393264, 8.49373], [47.396575, 8.538002], [47.36187, 8.547599], [47.37537, 8.557984], [47.425266, 8.55336], [47.380699, 8.518856], [47.357091, 8.552544], [47.370209, 8.495724], [47.386185, 8.51808], [47.372562, 8.517565], [47.37276, 8.53383], [47.39222, 8.517169], [47.411163, 8.570834], [47.377769, 8.53772], [47.392405, 8.491263], [47.402744, 8.554161], [47.350029, 8.52427], [47.378853, 8.568943], [47.343391, 8.535675], [47.380608, 8.512232], [47.378624, 8.559152], [47.402343, 8.552801], [47.368478, 8.544228], [47.36453, 8.55442], [47.381443, 8.534445], [47.419943, 8.503549], [47.379577, 8.527282], [47.378803, 8.519612], [47.359861, 8.549768], [47.404884, 8.572688], [47.339488, 8.527999], [47.406934, 8.550552], [47.380343, 8.528053], [47.380159, 8.541782], [47.405149, 8.481564], [47.382235, 8.509471], [47.368936, 8.529091], [47.37708, 8.543943], [47.374457, 8.541664], [47.358158, 8.548184], [47.425091, 8.5482], [47.407946, 8.583288], [47.393266, 8.530317], [47.362261, 8.559311], [47.358035, 8.519482], [47.410913, 8.563223], [47.362234, 8.54713], [47.37125, 8.507714], [47.388292, 8.497394], [47.379402, 8.523902], [47.400448, 8.595527], [47.377524, 8.538854], [47.356494, 8.510092], [47.363048, 8.546671], [47.382572, 8.546189], [47.368498, 8.53075], [47.334839, 8.530617], [47.370535, 8.513089], [47.37656, 8.541827], [47.377958, 8.548067], [47.354809, 8.556877], [47.409034, 8.545454], [47.359165, 8.532187], [47.366753, 8.549581], [47.360729, 8.54747], [47.383099, 8.543777], [47.384408, 8.53191], [47.372638, 8.534317], [47.366045, 8.532341], [47.370134, 8.548804], [47.379923, 8.541936], [47.374338, 8.525719], [47.383895, 8.542376], [47.364659, 8.537185], [47.369031, 8.540943], [47.373129, 8.528064], [47.391003, 8.521316], [47.378376, 8.541057], [47.379901, 8.511874], [47.388476, 8.491053], [47.366278, 8.544739], [47.360423, 8.526692], [47.375982, 8.524971], [47.359733, 8.535866], [47.393815, 8.547231], [47.36692, 8.544368], [47.409858, 8.549553], [47.375659, 8.537319], [47.36386, 8.53419], [47.348158, 8.562773], [47.404169, 8.574025], [47.364406, 8.552286], [47.357786, 8.550414], [47.382612, 8.48703], [47.393465, 8.483442], [47.374313, 8.542641], [47.378408, 8.50995], [47.386265, 8.518094], [47.394393, 8.541414], [47.389598, 8.521487], [47.394616, 8.521615], [47.362521, 8.518739], [47.392292, 8.511289], [47.373515, 8.598319], [47.411841, 8.53788], [47.391317, 8.537576], [47.41394, 8.519371], [47.403475, 8.497417], [47.387121, 8.542734], [47.377127, 8.541825], [47.366648, 8.547434], [47.387801, 8.544086], [47.366362, 8.55565], [47.378493, 8.514335], [47.375322, 8.48539], [47.376968, 8.543438], [47.425715, 8.494029], [47.369434, 8.52591], [47.368159, 8.541825], [47.398054, 8.534747], [47.403164, 8.540324], [47.381402, 8.535888], [47.390705, 8.522383], [47.368573, 8.541794], [47.37754, 8.511363], [47.37647, 8.483797], [47.384418, 8.500045], [47.37305, 8.495886], [47.416318, 8.50838], [47.367688, 8.495012], [47.404466, 8.559324], [47.389719, 8.511436], [47.363675, 8.563696], [47.369181, 8.527944], [47.40663, 8.545709], [47.364042, 8.531109], [47.387573, 8.497353], [47.351896, 8.50542], [47.39208, 8.499204], [47.41785, 8.556611], [47.370116, 8.54883], [47.395203, 8.540385], [47.361261, 8.521705], [47.360502, 8.524033], [47.393279, 8.521204], [47.364217, 8.556042], [47.400404, 8.500748], [47.358006, 8.525372], [47.40537, 8.503616], [47.394068, 8.493362], [47.36735, 8.519883], [47.388428, 8.526284], [47.408528, 8.546596], [47.367086, 8.540148], [47.402921, 8.491086], [47.378665, 8.539963], [47.371651, 8.534972], [47.353552, 8.55382], [47.367227, 8.559164], [47.395058, 8.522472], [47.366471, 8.541525], [47.388298, 8.536255], [47.373808, 8.536116], [47.367354, 8.507821], [47.377787, 8.522438], [47.398169, 8.585952], [47.397323, 8.531155], [47.419941, 8.506664], [47.372332, 8.542812], [47.399304, 8.495201], [47.389324, 8.520991], [47.338638, 8.538872], [47.365466, 8.546893], [47.418871, 8.530643], [47.359525, 8.548199], [47.378557, 8.575214], [47.392249, 8.516957], [47.365626, 8.539495], [47.369195, 8.525561], [47.370188, 8.548805], [47.388198, 8.536333], [47.38143, 8.537743], [47.369248, 8.525615], [47.362278, 8.547303], [47.357428, 8.521866], [47.367499, 8.552496], [47.388226, 8.473856], [47.3752, 8.518294], [47.353944, 8.526918], [47.353339, 8.55539], [47.394946, 8.486809], [47.326952, 8.518998], [47.372573, 8.534528], [47.391362, 8.537524], [47.393343, 8.539194], [47.366831, 8.54336], [47.370645, 8.532039], [47.406952, 8.550592], [47.352175, 8.525651], [47.357567, 8.555373], [47.374967, 8.560584], [47.361421, 8.52572], [47.364194, 8.554718], [47.373668, 8.553618], [47.368878, 8.539986], [47.383166, 8.506059], [47.364473, 8.53689], [47.410611, 8.544215], [47.375951, 8.541629], [47.387701, 8.53664], [47.377628, 8.522157], [47.343673, 8.535271], [47.373362, 8.534782], [47.362278, 8.547303], [47.393907, 8.50593], [47.335101, 8.518078], [47.382874, 8.540037], [47.360784, 8.548239], [47.376515, 8.543706], [47.370463, 8.510135], [47.387692, 8.53664], [47.360297, 8.566934], [47.385445, 8.536382], [47.37654, 8.548633], [47.389009, 8.488798], [47.385684, 8.519685], [47.380702, 8.525279], [47.404902, 8.585408], [47.420677, 8.503935], [47.392692, 8.486394], [47.348213, 8.562682], [47.410606, 8.568941], [47.386872, 8.502147], [47.380368, 8.549958], [47.385317, 8.536618], [47.36922, 8.518094], [47.371688, 8.5196], [47.384119, 8.531176], [47.369061, 8.528325], [47.366033, 8.521193], [47.376125, 8.535581], [47.366544, 8.545141], [47.427326, 8.552396], [47.387418, 8.484688], [47.383507, 8.495405], [47.393449, 8.512637], [47.373825, 8.544697], [47.416543, 8.553098], [47.391388, 8.538584], [47.396832, 8.529807], [47.377639, 8.543769], [47.376147, 8.541779], [47.396581, 8.528848], [47.39218, 8.517539], [47.378526, 8.50982], [47.385424, 8.500197], [47.384859, 8.531827], [47.408071, 8.494527], [47.338351, 8.532131], [47.376918, 8.524023], [47.384484, 8.538137], [47.4043, 8.54476], [47.341495, 8.518313], [47.388236, 8.551208], [47.379108, 8.538741], [47.355124, 8.561557], [47.343651, 8.519521], [47.370516, 8.493664], [47.373852, 8.517128], [47.376104, 8.512923], [47.378208, 8.525533], [47.37603, 8.559587], [47.369314, 8.528171], [47.379962, 8.547353], [47.360568, 8.567801], [47.397113, 8.530568], [47.377377, 8.498819], [47.376193, 8.544507], [47.405672, 8.489312], [47.38334, 8.515413], [47.34919, 8.56212], [47.368682, 8.501347], [47.370322, 8.548874], [47.391038, 8.522297], [47.359647, 8.547712], [47.380292, 8.512411], [47.369624, 8.532468], [47.385656, 8.501315], [47.377402, 8.479234], [47.370736, 8.524308], [47.37893, 8.523349], [47.374602, 8.514813], [47.422306, 8.550647], [47.393348, 8.525391], [47.372882, 8.53607], [47.361307, 8.533978], [47.378208, 8.530326], [47.361501, 8.560685], [47.378795, 8.542376], [47.364838, 8.532542], [47.352965, 8.57807], [47.404941, 8.552948], [47.378924, 8.526885], [47.392792, 8.52334], [47.361406, 8.533994], [47.406467, 8.583666], [47.379768, 8.528981], [47.376601, 8.521395], [47.373289, 8.533059], [47.368912, 8.500862], [47.427923, 8.490573], [47.378867, 8.544205], [47.368067, 8.560704], [47.370079, 8.548882], [47.381158, 8.536982], [47.370202, 8.558498], [47.380548, 8.519674], [47.381821, 8.533499], [47.389171, 8.515226], [47.364209, 8.555936], [47.410476, 8.53283], [47.367904, 8.495956], [47.368336, 8.522127], [47.373163, 8.532977], [47.371428, 8.546077], [47.394722, 8.540878], [47.348286, 8.562643], [47.35402, 8.559362], [47.357721, 8.534633], [47.359252, 8.535379], [47.412781, 8.51728], [47.371632, 8.472726], [47.326919, 8.517727], [47.358633, 8.555846], [47.341684, 8.530638], [47.390923, 8.523116], [47.377449, 8.500701], [47.367678, 8.495078], [47.392034, 8.517827], [47.388621, 8.481943], [47.415097, 8.510118], [47.386803, 8.489086], [47.380336, 8.536383], [47.391384, 8.537087], [47.426172, 8.554598], [47.377422, 8.541977], [47.397603, 8.586722], [47.398271, 8.537428], [47.370057, 8.564162], [47.369662, 8.525636], [47.375105, 8.516822], [47.367829, 8.546227], [47.394769, 8.52546], [47.372713, 8.517714], [47.379082, 8.522478], [47.381252, 8.51745], [47.357927, 8.519506], [47.371674, 8.535423], [47.376436, 8.529376], [47.37619, 8.529729], [47.360518, 8.549795], [47.350895, 8.53444], [47.404378, 8.550723], [47.414152, 8.518792], [47.373897, 8.544698], [47.370382, 8.518819], [47.41434, 8.572452], [47.41258, 8.525306], [47.369771, 8.543487], [47.422788, 8.535959], [47.365045, 8.531579], [47.359995, 8.522408], [47.382391, 8.548225], [47.364852, 8.56666], [47.377626, 8.522356], [47.37767, 8.519549], [47.378725, 8.527967], [47.38906, 8.517383], [47.373275, 8.535482], [47.385484, 8.530423], [47.378124, 8.527729], [47.381968, 8.529304], [47.362326, 8.553474], [47.358358, 8.583891], [47.36591, 8.532365], [47.421136, 8.50189], [47.397277, 8.50821], [47.371309, 8.546286], [47.392487, 8.491092], [47.368557, 8.524488], [47.37473, 8.543219], [47.390842, 8.522108], [47.383384, 8.548815], [47.378816, 8.559831], [47.394722, 8.540852], [47.382665, 8.575513], [47.378283, 8.541359], [47.37181, 8.540047], [47.375083, 8.553277], [47.374167, 8.54473], [47.40376, 8.548551], [47.377999, 8.529541], [47.378904, 8.530844], [47.379721, 8.51183], [47.370696, 8.537045], [47.371034, 8.518395], [47.369455, 8.526586], [47.374948, 8.541131], [47.386674, 8.473415], [47.37235, 8.545659], [47.356598, 8.552388], [47.368663, 8.552057], [47.371521, 8.519199], [47.373082, 8.532989], [47.367901, 8.49634], [47.388493, 8.486219], [47.373906, 8.544778], [47.408808, 8.546483], [47.378077, 8.483193], [47.377851, 8.507886], [47.376456, 8.509884], [47.384552, 8.503014], [47.370131, 8.539721], [47.372603, 8.53327], [47.346434, 8.564325], [47.386743, 8.519958], [47.40921, 8.544901], [47.366576, 8.545552], [47.378389, 8.54062], [47.405972, 8.590069], [47.376536, 8.534901], [47.378702, 8.543619], [47.350109, 8.56108], [47.39898, 8.54147], [47.384215, 8.528529], [47.357224, 8.508055], [47.382779, 8.531122], [47.382063, 8.536418], [47.347438, 8.532873], [47.355047, 8.523512], [47.376042, 8.565718], [47.341, 8.533601], [47.369108, 8.547949], [47.369809, 8.4932], [47.361802, 8.560228], [47.412722, 8.545425], [47.371444, 8.527368], [47.411682, 8.509784], [47.370714, 8.535205], [47.405851, 8.591312], [47.392781, 8.523485], [47.424729, 8.553031], [47.379128, 8.522413], [47.394171, 8.48996], [47.36951, 8.543535], [47.378, 8.511226], [47.335607, 8.540649], [47.387461, 8.545735], [47.37209, 8.549361], [47.39865, 8.539197], [47.383569, 8.54074], [47.387292, 8.545519], [47.402091, 8.552769], [47.371104, 8.537689], [47.359437, 8.521509], [47.402545, 8.535462], [47.378101, 8.526418], [47.404451, 8.594633], [47.375427, 8.526628], [47.366099, 8.562331], [47.399594, 8.543032], [47.400769, 8.542447], [47.383992, 8.548179], [47.409278, 8.550057], [47.375792, 8.527059], [47.404796, 8.483717], [47.350275, 8.560647], [47.420824, 8.501566], [47.370188, 8.539444], [47.361291, 8.547918], [47.378274, 8.509749], [47.38309, 8.528625], [47.373876, 8.536554], [47.367119, 8.52344], [47.390887, 8.486093], [47.358256, 8.550159], [47.387271, 8.500804], [47.395888, 8.494021], [47.362988, 8.549158], [47.381184, 8.491664], [47.377014, 8.539532], [47.367517, 8.494042], [47.406566, 8.576341], [47.358918, 8.516429], [47.361084, 8.549847], [47.366079, 8.496899], [47.354892, 8.558573], [47.373727, 8.53328], [47.370179, 8.548792], [47.405687, 8.591494], [47.375141, 8.518809], [47.38246, 8.492815], [47.378156, 8.509892], [47.387596, 8.486929], [47.364524, 8.531516], [47.418625, 8.547125], [47.371283, 8.529178], [47.412306, 8.568924], [47.374726, 8.527541], [47.369454, 8.531405], [47.378504, 8.566022], [47.35477, 8.57476], [47.367742, 8.545934], [47.415067, 8.551371], [47.373235, 8.529165], [47.431152, 8.515995], [47.376792, 8.543023], [47.380155, 8.527916], [47.361982, 8.505132], [47.349907, 8.570699], [47.347365, 8.566674], [47.407103, 8.545136], [47.381076, 8.518056], [47.383468, 8.483855], [47.376024, 8.577663], [47.36652, 8.561625], [47.366391, 8.540398], [47.402884, 8.554534], [47.419156, 8.505999], [47.389492, 8.521299], [47.393436, 8.524651], [47.351771, 8.559408], [47.399573, 8.50509], [47.358239, 8.571405], [47.372099, 8.521886], [47.403926, 8.572257], [47.376202, 8.544508], [47.368938, 8.540279], [47.35855, 8.534491], [47.356829, 8.509861], [47.422318, 8.510263], [47.370621, 8.535481], [47.371499, 8.518656], [47.374297, 8.537688], [47.415698, 8.513138], [47.36036, 8.566936], [47.412131, 8.569305], [47.380151, 8.537849], [47.377206, 8.540105], [47.358917, 8.516469], [47.378782, 8.516076], [47.335582, 8.540516], [47.378689, 8.523159], [47.399852, 8.516714], [47.377034, 8.524105], [47.35383, 8.534169], [47.365055, 8.545653], [47.374397, 8.518556], [47.360354, 8.564804], [47.38143, 8.537743], [47.336422, 8.537265], [47.372792, 8.534228], [47.411115, 8.526138], [47.372027, 8.554882], [47.417282, 8.544579], [47.365728, 8.561608], [47.39713, 8.530648], [47.36556, 8.553899], [47.392004, 8.500686], [47.413977, 8.541144], [47.369257, 8.525668], [47.392253, 8.524163], [47.381441, 8.517467], [47.371277, 8.525113], [47.372696, 8.534888], [47.362477, 8.533963], [47.406351, 8.520025], [47.38419, 8.53123], [47.3416, 8.528121], [47.373894, 8.538421], [47.410408, 8.572567], [47.388579, 8.484644], [47.378555, 8.526877], [47.383202, 8.506033], [47.370602, 8.522279], [47.403339, 8.498593], [47.357441, 8.534746], [47.351609, 8.56319], [47.364276, 8.566648], [47.361322, 8.551308], [47.388809, 8.515391], [47.414225, 8.53402], [47.389758, 8.471514], [47.368258, 8.551214], [47.373046, 8.532988], [47.366427, 8.541432], [47.383015, 8.530836], [47.389285, 8.488128], [47.378473, 8.540238], [47.364559, 8.566217], [47.39805, 8.535184], [47.374215, 8.524458], [47.380596, 8.53456], [47.368429, 8.498522], [47.38344, 8.482967], [47.374319, 8.52491], [47.384928, 8.489513], [47.415242, 8.506132], [47.366112, 8.548892], [47.362807, 8.567901], [47.342356, 8.530929], [47.37657, 8.541787], [47.365515, 8.536064], [47.365608, 8.518616], [47.37569, 8.539677], [47.357601, 8.521644], [47.377265, 8.538703], [47.341549, 8.519254], [47.369404, 8.533827], [47.361168, 8.557858], [47.363559, 8.567268], [47.375655, 8.53961], [47.368273, 8.546793], [47.403301, 8.50266], [47.377013, 8.539611], [47.415538, 8.563082], [47.369187, 8.527361], [47.383046, 8.549285], [47.413548, 8.546568], [47.329661, 8.516936], [47.344807, 8.533388], [47.365648, 8.598863], [47.378633, 8.559152], [47.385289, 8.481401], [47.376983, 8.526713], [47.376381, 8.527574], [47.364335, 8.529605], [47.409826, 8.538819], [47.365054, 8.508569], [47.390975, 8.522389], [47.366806, 8.543187], [47.371007, 8.516475], [47.39804, 8.535277], [47.369115, 8.54158], [47.36434, 8.532889], [47.412957, 8.537797], [47.401279, 8.551202], [47.3701, 8.504699], [47.388264, 8.497472], [47.381812, 8.489862], [47.377522, 8.550388], [47.372619, 8.53441], [47.366226, 8.532213], [47.414787, 8.519256], [47.358012, 8.532388], [47.387934, 8.520499], [47.392688, 8.539101], [47.378863, 8.542788], [47.38712, 8.519026], [47.362639, 8.548026], [47.361572, 8.576401], [47.376626, 8.543391], [47.361351, 8.534112], [47.3757, 8.545212], [47.366565, 8.544824], [47.39771, 8.533044], [47.402146, 8.552757], [47.385075, 8.478192], [47.372099, 8.521833], [47.388775, 8.485827], [47.410208, 8.565408], [47.389753, 8.512615], [47.376436, 8.529323], [47.377679, 8.522476], [47.371343, 8.492714], [47.333379, 8.535681], [47.375766, 8.518279], [47.388431, 8.487078], [47.397087, 8.530501], [47.37104, 8.543394], [47.373988, 8.544581], [47.378301, 8.509802], [47.360947, 8.548136], [47.387149, 8.535066], [47.339185, 8.525783], [47.385692, 8.519738], [47.424515, 8.522568], [47.364351, 8.496918], [47.365583, 8.513532], [47.33819, 8.530116], [47.402092, 8.552743], [47.375512, 8.5638], [47.382232, 8.541348], [47.399887, 8.506103], [47.368781, 8.521752], [47.403867, 8.585479], [47.360443, 8.566792], [47.370734, 8.51684], [47.380456, 8.54833], [47.389542, 8.512041], [47.370336, 8.513164], [47.389018, 8.488825], [47.378403, 8.520094], [47.407196, 8.585458], [47.374822, 8.54583], [47.374798, 8.518869], [47.390923, 8.522123], [47.403853, 8.57688], [47.350721, 8.60194], [47.419693, 8.54826], [47.366805, 8.532807], [47.398056, 8.535463], [47.367284, 8.534485], [47.410219, 8.538138], [47.381935, 8.529039], [47.401703, 8.54823], [47.370335, 8.53905], [47.391764, 8.486495], [47.415019, 8.560951], [47.419578, 8.548085], [47.371287, 8.524041], [47.389016, 8.48901], [47.387312, 8.547188], [47.395971, 8.52673], [47.371774, 8.54284], [47.373197, 8.539877], [47.395104, 8.522261], [47.371495, 8.53632], [47.378031, 8.528098], [47.367543, 8.560905], [47.379704, 8.567438], [47.41556, 8.558948], [47.377684, 8.528607], [47.395725, 8.516511], [47.360281, 8.523552], [47.371797, 8.523363], [47.396079, 8.520929], [47.397735, 8.541788], [47.378119, 8.510037], [47.369144, 8.525242], [47.364724, 8.522729], [47.376721, 8.522946], [47.389494, 8.519074], [47.374095, 8.520947], [47.370179, 8.548805], [47.400035, 8.54585], [47.376968, 8.542471], [47.350114, 8.534344], [47.370708, 8.470364], [47.335722, 8.540003], [47.37505, 8.544603], [47.398479, 8.500789], [47.373429, 8.517212], [47.401703, 8.552032], [47.375563, 8.516951], [47.375555, 8.524499], [47.418038, 8.527406], [47.376294, 8.499155], [47.3818, 8.529963], [47.37651, 8.52526], [47.377652, 8.522449], [47.397293, 8.493797], [47.422373, 8.553048], [47.412699, 8.540296], [47.369072, 8.529054], [47.413874, 8.527347], [47.359642, 8.58691], [47.383325, 8.53994], [47.365185, 8.538586], [47.348486, 8.562409], [47.378957, 8.54234], [47.376944, 8.554349], [47.423142, 8.546026], [47.414946, 8.544292], [47.404357, 8.572306], [47.386141, 8.548316], [47.417981, 8.554175], [47.367876, 8.545963], [47.410909, 8.567397], [47.376392, 8.510068], [47.384892, 8.50906], [47.380414, 8.528134], [47.409063, 8.544249], [47.369125, 8.548002], [47.366375, 8.541179], [47.381679, 8.537099], [47.38149, 8.503456], [47.354107, 8.561548], [47.414444, 8.553425], [47.364079, 8.546096], [47.413901, 8.551028], [47.399816, 8.495291], [47.407702, 8.57887], [47.370182, 8.51328], [47.36358, 8.533323], [47.387271, 8.488009], [47.37017, 8.548805], [47.386545, 8.498524], [47.377796, 8.537747], [47.39056, 8.522433], [47.410393, 8.548225], [47.398491, 8.538889], [47.418316, 8.510209], [47.362312, 8.547423], [47.366492, 8.547709], [47.36765, 8.495262], [47.390433, 8.53969], [47.388535, 8.52067], [47.388161, 8.520252], [47.400925, 8.517411], [47.419484, 8.500651], [47.371732, 8.536854], [47.364528, 8.547165], [47.406002, 8.590586], [47.410596, 8.531613], [47.384126, 8.516025], [47.374386, 8.538683], [47.380901, 8.55818], [47.376747, 8.534508], [47.373297, 8.553822], [47.364978, 8.563843], [47.379463, 8.559858], [47.383471, 8.548128], [47.39922, 8.54264], [47.367119, 8.54424], [47.388343, 8.470825], [47.382582, 8.537621], [47.366945, 8.560415], [47.379484, 8.527611], [47.375456, 8.554768], [47.36496, 8.531061], [47.382205, 8.540341], [47.413901, 8.518761], [47.383049, 8.486376], [47.385084, 8.530891], [47.387814, 8.485715], [47.363609, 8.554798], [47.410458, 8.532896], [47.365108, 8.553254], [47.376969, 8.514702], [47.370973, 8.531582], [47.362645, 8.504417], [47.375309, 8.515211], [47.405241, 8.504898], [47.384691, 8.50262], [47.419842, 8.556162], [47.33536, 8.54112], [47.370161, 8.548791], [47.378791, 8.491762], [47.387679, 8.500481], [47.377875, 8.519845], [47.375205, 8.491426], [47.402551, 8.547969], [47.359241, 8.522273], [47.383868, 8.475426], [47.389473, 8.511696], [47.352335, 8.524886], [47.42705, 8.491656], [47.413751, 8.546016], [47.375831, 8.489797], [47.375857, 8.541071], [47.419614, 8.548099], [47.404276, 8.484502], [47.381405, 8.503918], [47.384501, 8.53823], [47.374068, 8.544741], [47.359232, 8.52226], [47.385879, 8.519001], [47.373143, 8.537002], [47.362529, 8.518858], [47.386434, 8.534601], [47.391233, 8.51593], [47.384367, 8.550346], [47.387348, 8.486421], [47.382873, 8.540103], [47.416544, 8.54178], [47.409588, 8.576432], [47.381522, 8.492068], [47.386493, 8.517808], [47.390758, 8.55085], [47.392115, 8.511974], [47.392116, 8.511921], [47.408526, 8.550585], [47.37814, 8.509693], [47.412104, 8.566601], [47.378786, 8.542376], [47.423852, 8.544172], [47.335088, 8.52996], [47.393653, 8.541598], [47.401969, 8.545824], [47.398738, 8.532867], [47.370316, 8.524948], [47.397043, 8.530341], [47.383884, 8.529304], [47.392228, 8.493909], [47.400254, 8.547392], [47.369098, 8.547975], [47.39111, 8.489197], [47.367427, 8.558016], [47.376009, 8.488992], [47.368483, 8.496656], [47.40413, 8.559662], [47.427123, 8.546347], [47.352459, 8.524187], [47.372429, 8.546839], [47.372638, 8.534264], [47.360299, 8.567689], [47.343301, 8.519488], [47.414, 8.519717], [47.417568, 8.509386], [47.400967, 8.550944], [47.355431, 8.552151], [47.380462, 8.512481], [47.372683, 8.535232], [47.372576, 8.553066], [47.389512, 8.512359], [47.42657, 8.548669], [47.361444, 8.602769], [47.419753, 8.501677], [47.388645, 8.520421], [47.367876, 8.496061], [47.391089, 8.479594], [47.386033, 8.517931], [47.39675, 8.509762], [47.359161, 8.535496], [47.364231, 8.533946], [47.367981, 8.546363], [47.414725, 8.519148], [47.37253, 8.553078], [47.402508, 8.535501], [47.383664, 8.536438], [47.386585, 8.496181], [47.374256, 8.523929], [47.401844, 8.55234], [47.36607, 8.496873], [47.382418, 8.548199], [47.36525, 8.538455], [47.386665, 8.541533], [47.368987, 8.538016], [47.386515, 8.547728], [47.378697, 8.510724], [47.406853, 8.550603], [47.354977, 8.552526], [47.411697, 8.53785], [47.393259, 8.530105], [47.398466, 8.53873], [47.399067, 8.589655], [47.371389, 8.550154], [47.386906, 8.490518], [47.422873, 8.541236], [47.385933, 8.519055], [47.386098, 8.518674], [47.400798, 8.54886], [47.42244, 8.550743], [47.364487, 8.566282], [47.380036, 8.535741], [47.393274, 8.473715], [47.415866, 8.507616], [47.393796, 8.545442], [47.373349, 8.542806], [47.357312, 8.51306], [47.402032, 8.5801], [47.405588, 8.550245], [47.402827, 8.553897], [47.350978, 8.577075], [47.38922, 8.470312], [47.363443, 8.533612], [47.38244, 8.514534], [47.393487, 8.544893], [47.365133, 8.567354], [47.405971, 8.481156], [47.369042, 8.528351], [47.40782, 8.580542], [47.369256, 8.519948], [47.365232, 8.538441], [47.423483, 8.551719], [47.422304, 8.497182], [47.391591, 8.514136], [47.406853, 8.550576], [47.364887, 8.548152], [47.407706, 8.538457], [47.335952, 8.529991], [47.394542, 8.540874], [47.366932, 8.54311], [47.410731, 8.571779], [47.378227, 8.510052], [47.411124, 8.546094], [47.36916, 8.525454], [47.339547, 8.520735], [47.369968, 8.547357], [47.378098, 8.520975], [47.394438, 8.538488], [47.416565, 8.547996], [47.365429, 8.547025], [47.370598, 8.524609], [47.382447, 8.499184], [47.34315, 8.530681], [47.365721, 8.548434], [47.368857, 8.547864], [47.374452, 8.549702], [47.393871, 8.504962], [47.425228, 8.50005], [47.369662, 8.52565], [47.388513, 8.478007], [47.412112, 8.563884], [47.382483, 8.530003], [47.381836, 8.533751], [47.386501, 8.523636], [47.379919, 8.527276], [47.389678, 8.511872], [47.390294, 8.509474], [47.366409, 8.541405], [47.420782, 8.549184], [47.370122, 8.564018], [47.379062, 8.489582], [47.36653, 8.540918], [47.395062, 8.503582], [47.387071, 8.519528], [47.396366, 8.525824], [47.357916, 8.521558], [47.386832, 8.490835], [47.372217, 8.532216], [47.367962, 8.540828], [47.381644, 8.540767], [47.341183, 8.530349], [47.396014, 8.483068], [47.359902, 8.521744], [47.365949, 8.545314], [47.404424, 8.533606], [47.364235, 8.536408], [47.421887, 8.510175], [47.416081, 8.56919], [47.405915, 8.537691], [47.402194, 8.496915], [47.414133, 8.518924], [47.36443, 8.530005], [47.41037, 8.542143], [47.340526, 8.531381], [47.36359, 8.519926], [47.36554, 8.532516], [47.378274, 8.526196], [47.382425, 8.481755], [47.420035, 8.546412], [47.408144, 8.546337], [47.40501, 8.585464], [47.386629, 8.534843], [47.385375, 8.530526], [47.373422, 8.561359], [47.408874, 8.539647], [47.359829, 8.522881], [47.370423, 8.497939], [47.414285, 8.53911], [47.388799, 8.491086], [47.425738, 8.553873], [47.411962, 8.527957], [47.361726, 8.55415], [47.386182, 8.518344], [47.424511, 8.553331], [47.403926, 8.572257], [47.395348, 8.525975], [47.374607, 8.532491], [47.36993, 8.521934], [47.365277, 8.538389], [47.385824, 8.532469], [47.422487, 8.510479], [47.388588, 8.483691], [47.397463, 8.533556], [47.37841, 8.500905], [47.37953, 8.529413], [47.369445, 8.525751], [47.353465, 8.576611], [47.381033, 8.532119], [47.409539, 8.540628], [47.364901, 8.547583], [47.352202, 8.558543], [47.355415, 8.531184], [47.390001, 8.49144], [47.364202, 8.547357], [47.416719, 8.514656], [47.373129, 8.534672], [47.394229, 8.488424], [47.419835, 8.504488], [47.361802, 8.560228], [47.360748, 8.550144], [47.369092, 8.52303], [47.414345, 8.551621], [47.346459, 8.528896], [47.376341, 8.526011], [47.39824, 8.53699], [47.376944, 8.541199], [47.357102, 8.522111], [47.385982, 8.498156], [47.409114, 8.545496], [47.377842, 8.507899], [47.410149, 8.541674], [47.388593, 8.535506], [47.366396, 8.552089], [47.399753, 8.588543], [47.41231, 8.558297], [47.375148, 8.513235], [47.366912, 8.544302], [47.397243, 8.531154], [47.417081, 8.523026], [47.368496, 8.499159], [47.343559, 8.530239], [47.382414, 8.514361], [47.424717, 8.495971], [47.409603, 8.576711], [47.380607, 8.525807], [47.386996, 8.547367], [47.373361, 8.524467], [47.370179, 8.548792], [47.41969, 8.508474], [47.378863, 8.542735], [47.375177, 8.518744], [47.369275, 8.541769], [47.384206, 8.516106], [47.417824, 8.505004], [47.38247, 8.540943], [47.360139, 8.547987], [47.399813, 8.591539], [47.378809, 8.52287], [47.376228, 8.54088], [47.42699, 8.55549], [47.394464, 8.525295], [47.368941, 8.541881], [47.418516, 8.510041], [47.354321, 8.575584], [47.368198, 8.556456], [47.370452, 8.527665], [47.370152, 8.548791], [47.376222, 8.56755], [47.38234, 8.540344], [47.401295, 8.534443], [47.342032, 8.529083], [47.393203, 8.52458], [47.369265, 8.541848], [47.35911, 8.526613], [47.352747, 8.558065], [47.329331, 8.515633], [47.386825, 8.49061], [47.3901, 8.510053], [47.381561, 8.582575], [47.402133, 8.584368], [47.387383, 8.487587], [47.373235, 8.533005], [47.36903, 8.541049], [47.385529, 8.529457], [47.369329, 8.541796], [47.360933, 8.530754], [47.351041, 8.576997], [47.397194, 8.587216], [47.35553, 8.558587], [47.387316, 8.500778], [47.410321, 8.548197], [47.406853, 8.55059], [47.361185, 8.532692], [47.356936, 8.535848], [47.36641, 8.545072], [47.369538, 8.526322], [47.362627, 8.534244], [47.380027, 8.48343], [47.356202, 8.523059], [47.362185, 8.54754], [47.372749, 8.534982], [47.378615, 8.541472], [47.391744, 8.542817], [47.390566, 8.489716], [47.37519, 8.518334], [47.388385, 8.536522], [47.407139, 8.592055], [47.377153, 8.540091], [47.381532, 8.513522], [47.378212, 8.547833], [47.419587, 8.548033], [47.396906, 8.520032], [47.3849, 8.531271], [47.406503, 8.552384], [47.373296, 8.484675], [47.385266, 8.508538], [47.372719, 8.542807], [47.39311, 8.495728], [47.378516, 8.54143], [47.346495, 8.564498], [47.405923, 8.557447], [47.430381, 8.540582], [47.39178, 8.518935], [47.414299, 8.518517], [47.386857, 8.488094], [47.387047, 8.485912], [47.369783, 8.509803], [47.391359, 8.514939], [47.391379, 8.538637], [47.368741, 8.560731], [47.357849, 8.52296], [47.377317, 8.53983], [47.360478, 8.552045], [47.371004, 8.547207], [47.365492, 8.499125], [47.38105, 8.503315], [47.376266, 8.558347], [47.371105, 8.547911], [47.354313, 8.575491], [47.37762, 8.541994], [47.370922, 8.548264], [47.352195, 8.525386], [47.425733, 8.53651], [47.357365, 8.554906], [47.382997, 8.485144], [47.361915, 8.547627], [47.358177, 8.554631], [47.370457, 8.549804], [47.405028, 8.572691], [47.374096, 8.502474], [47.38435, 8.548398], [47.378262, 8.527388], [47.380984, 8.537336], [47.373183, 8.503886], [47.372089, 8.521925], [47.363763, 8.526363], [47.376038, 8.540995], [47.353124, 8.52706], [47.370725, 8.471477], [47.391181, 8.550859], [47.39252, 8.511055], [47.344124, 8.531415], [47.412126, 8.564295], [47.405877, 8.590504], [47.399971, 8.545041], [47.369384, 8.533138], [47.426024, 8.508376], [47.375874, 8.54119], [47.391221, 8.53919], [47.365211, 8.509102], [47.392332, 8.50313], [47.367424, 8.541558], [47.377927, 8.541921], [47.369141, 8.529333], [47.388334, 8.539104], [47.36413, 8.546375], [47.358442, 8.583615], [47.386504, 8.529119], [47.379242, 8.537976], [47.403, 8.591316], [47.36173, 8.561166], [47.374377, 8.551872], [47.373319, 8.531762], [47.36131, 8.563593], [47.401914, 8.552514], [47.365062, 8.547706], [47.373711, 8.535981], [47.367099, 8.539791], [47.38213, 8.515892], [47.364902, 8.53151], [47.367119, 8.544266], [47.368839, 8.496027], [47.372953, 8.475863], [47.374478, 8.528992], [47.407821, 8.545297], [47.392416, 8.506695], [47.408704, 8.580296], [47.380395, 8.548078], [47.365012, 8.531221], [47.386997, 8.490454], [47.409577, 8.549759], [47.378038, 8.527317], [47.398504, 8.546958], [47.40205, 8.584592], [47.426539, 8.546282], [47.391295, 8.520846], [47.376919, 8.539093], [47.430854, 8.550375], [47.402759, 8.491136], [47.378289, 8.551], [47.412073, 8.541794], [47.3759, 8.541297], [47.36988, 8.509024], [47.376983, 8.49076], [47.36366, 8.546657], [47.414437, 8.546666], [47.375442, 8.558065], [47.41718, 8.542973], [47.396232, 8.544711], [47.351869, 8.52571], [47.39, 8.539867], [47.384987, 8.484984], [47.379022, 8.518358], [47.391395, 8.514953], [47.389917, 8.512327], [47.377787, 8.531073], [47.357608, 8.553984], [47.371565, 8.562631], [47.419228, 8.507842], [47.411797, 8.537786], [47.358666, 8.585552], [47.378315, 8.543677], [47.422825, 8.535853], [47.367189, 8.545459], [47.364713, 8.554027], [47.411725, 8.537798], [47.398959, 8.505369], [47.378055, 8.509148], [47.40788, 8.565266], [47.370859, 8.535049], [47.363434, 8.515395], [47.394437, 8.525294], [47.400019, 8.545651], [47.413062, 8.558723], [47.399683, 8.543206], [47.387731, 8.521065], [47.415792, 8.553572], [47.381795, 8.489835], [47.374189, 8.54428], [47.362779, 8.548519], [47.377503, 8.541992], [47.402854, 8.549287], [47.396914, 8.541109], [47.408547, 8.529504], [47.381138, 8.518136], [47.363256, 8.499637], [47.364869, 8.566713], [47.356934, 8.535054], [47.377716, 8.537626], [47.410391, 8.543667], [47.411085, 8.545457], [47.398873, 8.533744], [47.372792, 8.534161], [47.40218, 8.55289], [47.369247, 8.541874], [47.397964, 8.533858], [47.369514, 8.536451], [47.369446, 8.526612], [47.379552, 8.537492], [47.390816, 8.469906], [47.392647, 8.48638], [47.409521, 8.537766], [47.398064, 8.535595], [47.383394, 8.484039], [47.41434, 8.517974], [47.356152, 8.532178], [47.376903, 8.537027], [47.357013, 8.52195], [47.387985, 8.545534], [47.399599, 8.50517], [47.368035, 8.540618], [47.351158, 8.582479], [47.375502, 8.545235], [47.399098, 8.547844], [47.408953, 8.54642], [47.383999, 8.5094], [47.372265, 8.535753], [47.383079, 8.540187], [47.371916, 8.519247], [47.374215, 8.532151], [47.393229, 8.524647], [47.372423, 8.53328], [47.339541, 8.529959], [47.412995, 8.544198], [47.386102, 8.518277], [47.402984, 8.576556], [47.399017, 8.522287], [47.416479, 8.511392], [47.388965, 8.537991], [47.383748, 8.534228], [47.40649, 8.562971], [47.38597, 8.517943], [47.388315, 8.520162], [47.348485, 8.534377], [47.41077, 8.55572], [47.389591, 8.521235], [47.381599, 8.536064], [47.377714, 8.541599], [47.369104, 8.555827], [47.408461, 8.503002], [47.365133, 8.567315], [47.387681, 8.486494], [47.384193, 8.489154], [47.370268, 8.548847], [47.388062, 8.520277], [47.387937, 8.491002], [47.364709, 8.554516], [47.36006, 8.59007], [47.407429, 8.494859], [47.404523, 8.571859], [47.37596, 8.535935], [47.382861, 8.529058], [47.39925, 8.542336], [47.365005, 8.56473], [47.379034, 8.524768], [47.370708, 8.516733], [47.397694, 8.596527], [47.360065, 8.568637], [47.379305, 8.49556], [47.370534, 8.524714], [47.372593, 8.534316], [47.403695, 8.570106], [47.370196, 8.550739], [47.393547, 8.529131], [47.375749, 8.496866], [47.364595, 8.566205], [47.373212, 8.535481], [47.363967, 8.549311], [47.402513, 8.499412], [47.367154, 8.523467], [47.394319, 8.493394], [47.363768, 8.53346], [47.400118, 8.549416], [47.365761, 8.565647], [47.387486, 8.499974], [47.416827, 8.506853], [47.421717, 8.550118], [47.388884, 8.479802], [47.39812, 8.536285], [47.3776, 8.538471], [47.363953, 8.566575], [47.428645, 8.552728], [47.367605, 8.544237], [47.374779, 8.527648], [47.386168, 8.545496], [47.340008, 8.530008], [47.363726, 8.563975], [47.415239, 8.550301], [47.414281, 8.518556], [47.36196, 8.547601], [47.417633, 8.538901], [47.406472, 8.549932], [47.40214, 8.487971], [47.410792, 8.544073], [47.380196, 8.506265], [47.359224, 8.535471], [47.425577, 8.494291], [47.400354, 8.477576], [47.393688, 8.472611], [47.376682, 8.555363], [47.373267, 8.519076], [47.389911, 8.517797], [47.420646, 8.504345], [47.430955, 8.550112], [47.338436, 8.531736], [47.420845, 8.549185], [47.391712, 8.485288], [47.36685, 8.543228], [47.377514, 8.548402], [47.363482, 8.535135], [47.397101, 8.594752], [47.403535, 8.485905], [47.413152, 8.483775], [47.405604, 8.490835], [47.372721, 8.535034], [47.397283, 8.594504], [47.392542, 8.502816], [47.375405, 8.549722], [47.363678, 8.520086], [47.358283, 8.553919], [47.33005, 8.534766], [47.374929, 8.54125], [47.406662, 8.495215], [47.388565, 8.48716], [47.398986, 8.505343], [47.349045, 8.562223], [47.363102, 8.517228], [47.343509, 8.535585], [47.330171, 8.529687], [47.379977, 8.541937], [47.383727, 8.50864], [47.412604, 8.517051], [47.358856, 8.534471], [47.394684, 8.52971], [47.384616, 8.502883], [47.394145, 8.529554], [47.372415, 8.5265], [47.369521, 8.526243], [47.373435, 8.531791], [47.418315, 8.508394], [47.427616, 8.54653], [47.376409, 8.527482], [47.341115, 8.53093], [47.372891, 8.535104], [47.417538, 8.513547], [47.390559, 8.484511], [47.371178, 8.516478], [47.374528, 8.537031], [47.379873, 8.542505], [47.368626, 8.543808], [47.430576, 8.550237], [47.361982, 8.526354], [47.373654, 8.534378], [47.382565, 8.514629], [47.389025, 8.477063], [47.387271, 8.488062], [47.369735, 8.543513], [47.378582, 8.542081], [47.411343, 8.525851], [47.384198, 8.516039], [47.381498, 8.534301], [47.372766, 8.535008], [47.39235, 8.503104], [47.382621, 8.529715], [47.357139, 8.514262], [47.408143, 8.552101], [47.366659, 8.55653], [47.377864, 8.516203], [47.404348, 8.572293], [47.420313, 8.503371], [47.328689, 8.513119], [47.419181, 8.506211], [47.387696, 8.486812], [47.369667, 8.533687], [47.391149, 8.487847], [47.364028, 8.551457], [47.340193, 8.535212], [47.429971, 8.549575], [47.376056, 8.559614], [47.37152, 8.517399], [47.394701, 8.525935], [47.396825, 8.541028], [47.360296, 8.532488], [47.373156, 8.503912], [47.363342, 8.557202], [47.381014, 8.535125], [47.409196, 8.538885], [47.416472, 8.534252], [47.379382, 8.524087], [47.405626, 8.565828], [47.376737, 8.548743], [47.397511, 8.532206], [47.388807, 8.530954], [47.393714, 8.50839], [47.390805, 8.522213], [47.3664, 8.540451], [47.394802, 8.525739], [47.371398, 8.522785], [47.381812, 8.541936], [47.354533, 8.556567], [47.360172, 8.523669], [47.369626, 8.525596], [47.398021, 8.534468], [47.406912, 8.586896], [47.406835, 8.550589], [47.406816, 8.550668], [47.409044, 8.550079], [47.419227, 8.506053], [47.365232, 8.547828], [47.363651, 8.598833], [47.377648, 8.543756], [47.383895, 8.546177], [47.398905, 8.586048], [47.41818, 8.546638], [47.340704, 8.537247], [47.390714, 8.508807], [47.385082, 8.498283], [47.399727, 8.504973], [47.406039, 8.550082], [47.386094, 8.518144], [47.38683, 8.512543], [47.372602, 8.53429], [47.364771, 8.554571], [47.402382, 8.535565], [47.427983, 8.545769], [47.376911, 8.499551], [47.390685, 8.489494], [47.366246, 8.553688], [47.368961, 8.528416], [47.363215, 8.567526], [47.420175, 8.548628], [47.379698, 8.516319], [47.422346, 8.538918], [47.378742, 8.510778], [47.380126, 8.528141], [47.375037, 8.519337], [47.360632, 8.524486], [47.416297, 8.545075], [47.354998, 8.52768], [47.388716, 8.537707], [47.333951, 8.528455], [47.397043, 8.530381], [47.369296, 8.528198], [47.376593, 8.52697], [47.363413, 8.547976], [47.367533, 8.545241], [47.385437, 8.521097], [47.364117, 8.536432], [47.391677, 8.519436], [47.41531, 8.562494], [47.410642, 8.551318], [47.391354, 8.537457], [47.424589, 8.536712], [47.371643, 8.521559], [47.373037, 8.547196], [47.370859, 8.535035], [47.402954, 8.486476], [47.383719, 8.539128], [47.381822, 8.541883], [47.385223, 8.517067], [47.347141, 8.563784], [47.361548, 8.561401], [47.377086, 8.543347], [47.370583, 8.531931], [47.369544, 8.541854], [47.382094, 8.537889], [47.383271, 8.493678], [47.401515, 8.487481], [47.355259, 8.534304], [47.383047, 8.51399], [47.376024, 8.53579], [47.403664, 8.57139], [47.335956, 8.515171], [47.367758, 8.496258], [47.387931, 8.486645], [47.419641, 8.548073], [47.340162, 8.529918], [47.378433, 8.534132], [47.37912, 8.522293], [47.402324, 8.499381], [47.37674, 8.53901], [47.37271, 8.534319], [47.375074, 8.553303], [47.356225, 8.558323], [47.409847, 8.567441], [47.367598, 8.539338], [47.373716, 8.536365], [47.376437, 8.528251], [47.404812, 8.576397], [47.382855, 8.5316], [47.427204, 8.546349], [47.358294, 8.586762], [47.39517, 8.52005], [47.391961, 8.517879], [47.394873, 8.517249], [47.405254, 8.480824], [47.400286, 8.588316], [47.375829, 8.563555], [47.370845, 8.519305], [47.378794, 8.542416], [47.378828, 8.542708], [47.373682, 8.553989], [47.373828, 8.537771], [47.377725, 8.511817], [47.414518, 8.556064], [47.406769, 8.584932], [47.369293, 8.527522], [47.417637, 8.50777], [47.372775, 8.519794], [47.334353, 8.539207], [47.369043, 8.528259], [47.369464, 8.525579], [47.403062, 8.49831], [47.368208, 8.496147], [47.372688, 8.538529], [47.409296, 8.553794], [47.356848, 8.527043], [47.378699, 8.542096], [47.3672, 8.528181], [47.400357, 8.585734], [47.416518, 8.511101], [47.367898, 8.539953], [47.377485, 8.541992], [47.405294, 8.528232], [47.368897, 8.489686], [47.378289, 8.528381], [47.368063, 8.541452], [47.377233, 8.526824], [47.36654, 8.544625], [47.382832, 8.533997], [47.384858, 8.531973], [47.410525, 8.550388], [47.420104, 8.548587], [47.366726, 8.53642], [47.380524, 8.512562], [47.383504, 8.498702], [47.376657, 8.515371], [47.388436, 8.53594], [47.405272, 8.558705], [47.418453, 8.508078], [47.373044, 8.53324], [47.386263, 8.53175], [47.409323, 8.545367], [47.363609, 8.535045], [47.412804, 8.543492], [47.414332, 8.547287], [47.368687, 8.528874], [47.390656, 8.509295], [47.360722, 8.52928], [47.409497, 8.49698], [47.367779, 8.535435], [47.399425, 8.517169], [47.386511, 8.497411], [47.410941, 8.571452], [47.367081, 8.53979], [47.401392, 8.490076], [47.375516, 8.48689], [47.376863, 8.540297], [47.413945, 8.544536], [47.415435, 8.52881], [47.425823, 8.547818], [47.339931, 8.535326], [47.384442, 8.503224], [47.371579, 8.515864], [47.386724, 8.516157], [47.360285, 8.600798], [47.405065, 8.565193], [47.371588, 8.515864], [47.351594, 8.525255], [47.361981, 8.549164], [47.370179, 8.548818], [47.382531, 8.529779], [47.363719, 8.551742], [47.358279, 8.555295], [47.371627, 8.517507], [47.354168, 8.553436], [47.369685, 8.520301], [47.368349, 8.551071], [47.379195, 8.544768], [47.375426, 8.528614], [47.371309, 8.518824], [47.416329, 8.54542], [47.372322, 8.523029], [47.374459, 8.530091], [47.370735, 8.524321], [47.391358, 8.515045], [47.368078, 8.54087], [47.40948, 8.549545], [47.39897, 8.533057], [47.378573, 8.542107], [47.373008, 8.531345], [47.381351, 8.534629], [47.370843, 8.570296], [47.363853, 8.549018], [47.365506, 8.545557], [47.425971, 8.493557], [47.37821, 8.532035], [47.403161, 8.537847], [47.383642, 8.548105], [47.354259, 8.575411], [47.414695, 8.519466], [47.377327, 8.538784], [47.382126, 8.512462], [47.402687, 8.547879], [47.402118, 8.548106], [47.385986, 8.518129], [47.419734, 8.53355], [47.374416, 8.541226], [47.403632, 8.550628], [47.376731, 8.524801], [47.356125, 8.557527], [47.39345, 8.491058], [47.427951, 8.536927], [47.397744, 8.533297], [47.36844, 8.565836], [47.418611, 8.503589], [47.368196, 8.538847], [47.377171, 8.540091], [47.359999, 8.595245], [47.356394, 8.510222], [47.397964, 8.533858], [47.425853, 8.493713], [47.414831, 8.551538], [47.36819, 8.524309], [47.40386, 8.569752], [47.386308, 8.531751], [47.370918, 8.543008], [47.385193, 8.530774], [47.378435, 8.540462], [47.387628, 8.47542], [47.416122, 8.531302], [47.365443, 8.545529], [47.427635, 8.546504], [47.36697, 8.520074], [47.376559, 8.541919], [47.361196, 8.600593], [47.36183, 8.561023], [47.397872, 8.534028], [47.425614, 8.494212], [47.385569, 8.517577], [47.376312, 8.48639], [47.377247, 8.538729], [47.369336, 8.536315], [47.425041, 8.539252], [47.369877, 8.508388], [47.398794, 8.499801], [47.377731, 8.537918], [47.333835, 8.514996], [47.369038, 8.541181], [47.383592, 8.548621], [47.414081, 8.51679], [47.375322, 8.48539], [47.421142, 8.548145], [47.374623, 8.514522], [47.380414, 8.483332], [47.379736, 8.527603], [47.379017, 8.54356], [47.414333, 8.483493], [47.408264, 8.550685], [47.381445, 8.571501], [47.365144, 8.553228], [47.390943, 8.473882], [47.377052, 8.533693], [47.406294, 8.582961], [47.371097, 8.520303], [47.386004, 8.535347], [47.373951, 8.502564], [47.362619, 8.55765], [47.355681, 8.560628], [47.387596, 8.486929], [47.369254, 8.491984], [47.374256, 8.544798], [47.408463, 8.546834], [47.368339, 8.551163], [47.356654, 8.523743], [47.405991, 8.580808], [47.386686, 8.534553], [47.354135, 8.527689], [47.388009, 8.490991], [47.368959, 8.524788], [47.35581, 8.531298], [47.366991, 8.535009], [47.386126, 8.514675], [47.354841, 8.574814], [47.370197, 8.548819], [47.363515, 8.569995], [47.379928, 8.537672], [47.410918, 8.545003], [47.362579, 8.568148], [47.357802, 8.547806], [47.366007, 8.562527], [47.370188, 8.511665], [47.363304, 8.548093], [47.37499, 8.545158], [47.379426, 8.542244], [47.378411, 8.54111], [47.404242, 8.561943], [47.339478, 8.535674], [47.370574, 8.548866], [47.411078, 8.52627], [47.387587, 8.486929], [47.405116, 8.4822], [47.424719, 8.495745], [47.414197, 8.545482], [47.388801, 8.48788], [47.379388, 8.555579], [47.372437, 8.524157], [47.387778, 8.52941], [47.383563, 8.475275], [47.39599, 8.545514], [47.364428, 8.531209], [47.384296, 8.528531], [47.378282, 8.509881], [47.374368, 8.521641], [47.414041, 8.525866], [47.367929, 8.546097], [47.419179, 8.506423], [47.369867, 8.54194], [47.358786, 8.516055], [47.414095, 8.550436], [47.371579, 8.51589], [47.400647, 8.502753], [47.409255, 8.544955], [47.406041, 8.553594], [47.391028, 8.52243], [47.376365, 8.528289], [47.376168, 8.551777], [47.381504, 8.513601], [47.403445, 8.579084], [47.361276, 8.517284], [47.368651, 8.483048], [47.376593, 8.534637], [47.377517, 8.511918], [47.37665, 8.541815], [47.397367, 8.531289], [47.376056, 8.515147], [47.387868, 8.479703], [47.365176, 8.547112], [47.402455, 8.582719], [47.366937, 8.492574], [47.384375, 8.531658], [47.380764, 8.518672], [47.382952, 8.530847], [47.382184, 8.492504], [47.389307, 8.494579], [47.382976, 8.543536], [47.329832, 8.530316], [47.350431, 8.532246], [47.364776, 8.531495], [47.375872, 8.516626], [47.404529, 8.574973], [47.372482, 8.538379], [47.368027, 8.530105], [47.371716, 8.519548], [47.387377, 8.52523], [47.403798, 8.497529], [47.371165, 8.530328], [47.391036, 8.522549], [47.379235, 8.525368], [47.36435, 8.53469], [47.397682, 8.533163], [47.409028, 8.539531], [47.376921, 8.527493], [47.379721, 8.50705], [47.373468, 8.531249], [47.419151, 8.506542], [47.403884, 8.569183], [47.357579, 8.571695], [47.361922, 8.51551], [47.384692, 8.509268], [47.409035, 8.550065], [47.386149, 8.518039], [47.364252, 8.536475], [47.366943, 8.522946], [47.407206, 8.558719], [47.397917, 8.534069], [47.359728, 8.562567], [47.368918, 8.54053], [47.367925, 8.538947], [47.393393, 8.537738], [47.384179, 8.516158], [47.39235, 8.503104], [47.375997, 8.538637], [47.375996, 8.559308], [47.396974, 8.496228], [47.420463, 8.51342], [47.357738, 8.554463], [47.388585, 8.536354], [47.365897, 8.521376], [47.375721, 8.53548], [47.337298, 8.53506], [47.38496, 8.495791], [47.392245, 8.537423], [47.354141, 8.557102], [47.350336, 8.56082], [47.409216, 8.547114], [47.374445, 8.578979], [47.400159, 8.548834], [47.329894, 8.512178], [47.391054, 8.489395], [47.378558, 8.575201], [47.387031, 8.547395], [47.384791, 8.531375], [47.3932, 8.530647], [47.407122, 8.554385], [47.379967, 8.527912], [47.382813, 8.532262], [47.361768, 8.552575], [47.374021, 8.475063], [47.361819, 8.525543], [47.401807, 8.552366], [47.375802, 8.537441], [47.414345, 8.551607], [47.404028, 8.558984], [47.397061, 8.530382], [47.405855, 8.590927], [47.370172, 8.540132], [47.374614, 8.549732], [47.4097, 8.544421], [47.369767, 8.508571], [47.359635, 8.522427], [47.383491, 8.515641], [47.392461, 8.528857], [47.373511, 8.561428], [47.347862, 8.532789], [47.375489, 8.547605], [47.379728, 8.542621], [47.372791, 8.497642], [47.40438, 8.533579], [47.381822, 8.541896], [47.382262, 8.5476], [47.400652, 8.533979], [47.419079, 8.506487], [47.377528, 8.50972], [47.410648, 8.571923], [47.383088, 8.540267], [47.413516, 8.539544], [47.371121, 8.530128], [47.411187, 8.570172], [47.363053, 8.550881], [47.373244, 8.533019], [47.388979, 8.494997], [47.402045, 8.544527], [47.365403, 8.546879], [47.378992, 8.538712], [47.389702, 8.492759], [47.368128, 8.511729], [47.409881, 8.54624], [47.384314, 8.548411], [47.375932, 8.494526], [47.381446, 8.536008], [47.38167, 8.533245], [47.387903, 8.519942], [47.354922, 8.574763], [47.385979, 8.517956], [47.363776, 8.535485], [47.37438, 8.525071], [47.394718, 8.473174], [47.3705, 8.54909], [47.374488, 8.539374], [47.350383, 8.527811], [47.363437, 8.535121], [47.358933, 8.570281], [47.376639, 8.548622], [47.374716, 8.527607], [47.413985, 8.541264], [47.383378, 8.533373], [47.356905, 8.555042], [47.387209, 8.51912], [47.408763, 8.546482], [47.394864, 8.525793], [47.403559, 8.54701], [47.374272, 8.524155], [47.367821, 8.510836], [47.358158, 8.51787], [47.391189, 8.51581], [47.386228, 8.518213], [47.398012, 8.534481], [47.374457, 8.484605], [47.385287, 8.494486], [47.339955, 8.529927], [47.364223, 8.531033], [47.403564, 8.588864], [47.37305, 8.534498], [47.425962, 8.49357], [47.414932, 8.570782], [47.340116, 8.519556], [47.378236, 8.544338], [47.416747, 8.549683], [47.351038, 8.58192], [47.408856, 8.554554], [47.369892, 8.513526], [47.348291, 8.529211], [47.41456, 8.571185], [47.416097, 8.546197], [47.384163, 8.531203], [47.338969, 8.538125], [47.409124, 8.541719], [47.333843, 8.515036], [47.400242, 8.542065], [47.371502, 8.525065], [47.351472, 8.525795], [47.377593, 8.541994], [47.366295, 8.552325], [47.382442, 8.514309], [47.374124, 8.502343], [47.406755, 8.550468], [47.354534, 8.523475], [47.379402, 8.528669], [47.361102, 8.555381], [47.37377, 8.546748], [47.367985, 8.540233], [47.362037, 8.59746], [47.357871, 8.572205], [47.378727, 8.542891], [47.35819, 8.51922], [47.385132, 8.548494], [47.357734, 8.520906], [47.371836, 8.48801], [47.367937, 8.54619], [47.396462, 8.543285], [47.36447, 8.546661], [47.377531, 8.543794], [47.399472, 8.5332], [47.414141, 8.551259], [47.405379, 8.592653], [47.389627, 8.487089], [47.391546, 8.539925], [47.360938, 8.553736], [47.377001, 8.569738], [47.372256, 8.535739], [47.377449, 8.541978], [47.386236, 8.527961], [47.361811, 8.560228], [47.371082, 8.523798], [47.372982, 8.547327], [47.380812, 8.504833], [47.380025, 8.520709], [47.356156, 8.559924], [47.387577, 8.486969], [47.36199, 8.526499], [47.393132, 8.530195], [47.397778, 8.533549], [47.38771, 8.486269], [47.3689, 8.525277], [47.416537, 8.522564], [47.396019, 8.518756], [47.361095, 8.525038], [47.360053, 8.564308], [47.374316, 8.529955], [47.404564, 8.548197], [47.354904, 8.574789], [47.376852, 8.543342], [47.375812, 8.54013], [47.394454, 8.474506], [47.373253, 8.514852], [47.389975, 8.485479], [47.393765, 8.488018], [47.373506, 8.534825], [47.369059, 8.53803], [47.368285, 8.529488], [47.359443, 8.549283], [47.373619, 8.537052], [47.37446, 8.539426], [47.370947, 8.523835], [47.417796, 8.546286], [47.378842, 8.559924], [47.374714, 8.551442], [47.368201, 8.536411], [47.369084, 8.52777], [47.37878, 8.523055], [47.384726, 8.529718], [47.353815, 8.52624], [47.370263, 8.513308], [47.403862, 8.57688], [47.369233, 8.528117], [47.390722, 8.522437], [47.335034, 8.529972], [47.375886, 8.540886], [47.403427, 8.530605], [47.377506, 8.498464], [47.377543, 8.538815], [47.38021, 8.501749], [47.383926, 8.532483], [47.383915, 8.532735], [47.377367, 8.498951], [47.399673, 8.543299], [47.386252, 8.518558], [47.420858, 8.507663], [47.407866, 8.531107], [47.353596, 8.576138], [47.383392, 8.515613], [47.413262, 8.545436], [47.37045, 8.566275], [47.366841, 8.543214], [47.373824, 8.538288], [47.402172, 8.499286], [47.397012, 8.52222], [47.360515, 8.567707], [47.378274, 8.541346], [47.374289, 8.524221], [47.39075, 8.508821], [47.386477, 8.529118], [47.409394, 8.572307], [47.391204, 8.52287], [47.362624, 8.519284], [47.362734, 8.567979], [47.385212, 8.517199], [47.416702, 8.545905], [47.37845, 8.510176], [47.328508, 8.529521], [47.394311, 8.525371], [47.398327, 8.537217], [47.361962, 8.560469], [47.383345, 8.499361], [47.383116, 8.515289], [47.427546, 8.546343], [47.402038, 8.499177], [47.37902, 8.542394], [47.377723, 8.507129], [47.420801, 8.51283], [47.373444, 8.531844], [47.375839, 8.541057], [47.411115, 8.526191], [47.372073, 8.554816], [47.376718, 8.544121], [47.370257, 8.519756], [47.377223, 8.540225], [47.371909, 8.517181], [47.383375, 8.498978], [47.404047, 8.568139], [47.369234, 8.539411], [47.367405, 8.523631], [47.372267, 8.540255], [47.357862, 8.572204], [47.402351, 8.499329], [47.410909, 8.545003], [47.398073, 8.535635], [47.39249, 8.475899], [47.409162, 8.549936], [47.40649, 8.581282], [47.37516, 8.518704], [47.369757, 8.556158], [47.362506, 8.568279], [47.414124, 8.542698], [47.365968, 8.504007], [47.360438, 8.552455], [47.391372, 8.537444], [47.346636, 8.533015], [47.370178, 8.539457], [47.36963, 8.553521], [47.421387, 8.549806], [47.356408, 8.535506], [47.354772, 8.574535], [47.39384, 8.505452], [47.370846, 8.519292], [47.405126, 8.565472], [47.419943, 8.535264], [47.376943, 8.513628], [47.398846, 8.540381], [47.395428, 8.526136], [47.414708, 8.56056], [47.362912, 8.55616], [47.379244, 8.50802], [47.364595, 8.566205], [47.40413, 8.559622], [47.372472, 8.545158], [47.412745, 8.544948], [47.379809, 8.527459], [47.369714, 8.533476], [47.343639, 8.535085], [47.420551, 8.502952], [47.402059, 8.584592], [47.38493, 8.508889], [47.367245, 8.559204], [47.397964, 8.533858], [47.38284, 8.513999], [47.377052, 8.544048], [47.358582, 8.553673], [47.419384, 8.547631], [47.370215, 8.548832], [47.343391, 8.535675], [47.366443, 8.533078], [47.359391, 8.594874], [47.390128, 8.532094], [47.371805, 8.522502], [47.413622, 8.553779], [47.369183, 8.518172], [47.419911, 8.506941], [47.356915, 8.532366], [47.387624, 8.490745], [47.370916, 8.549761], [47.356601, 8.523742], [47.374035, 8.546316], [47.361458, 8.561399], [47.366151, 8.521156], [47.381808, 8.51668], [47.368907, 8.501378], [47.383261, 8.499611], [47.385084, 8.530851], [47.366045, 8.532355], [47.356777, 8.527929], [47.363096, 8.508212], [47.388335, 8.519911], [47.379778, 8.527829], [47.354459, 8.557783], [47.412136, 8.550249], [47.369578, 8.525886], [47.419914, 8.547695], [47.401081, 8.544653], [47.376024, 8.538651], [47.328496, 8.514504], [47.385074, 8.501104], [47.41169, 8.562908], [47.414065, 8.550806], [47.410253, 8.549614], [47.418035, 8.505618], [47.389539, 8.536281], [47.383394, 8.548683], [47.41049, 8.550268], [47.412352, 8.523751], [47.377809, 8.531563], [47.407162, 8.586159], [47.397304, 8.531354], [47.380842, 8.538062], [47.391394, 8.537034], [47.395549, 8.517978], [47.356634, 8.553315], [47.381315, 8.542243], [47.396029, 8.485413], [47.391936, 8.533919], [47.376276, 8.557328], [47.369063, 8.525253], [47.377455, 8.543236], [47.385093, 8.530878], [47.374078, 8.546463], [47.371722, 8.517893], [47.387481, 8.486675], [47.371201, 8.547251], [47.381541, 8.51543], [47.404008, 8.496182], [47.391124, 8.538963], [47.407001, 8.481574], [47.358583, 8.519546], [47.374487, 8.53944], [47.392589, 8.539099], [47.390561, 8.50887], [47.36861, 8.546416], [47.356625, 8.553328], [47.364472, 8.536983], [47.364744, 8.557337], [47.369491, 8.553902], [47.420187, 8.503422], [47.369446, 8.540753], [47.384498, 8.531899], [47.36948, 8.533445], [47.399375, 8.495242], [47.339419, 8.519012], [47.400654, 8.502965], [47.397449, 8.546353], [47.378265, 8.509762], [47.372866, 8.535911], [47.362498, 8.568172], [47.365889, 8.501834], [47.367842, 8.564446], [47.378653, 8.544095], [47.405209, 8.593484], [47.378172, 8.530299], [47.377247, 8.538703], [47.414407, 8.554484], [47.373795, 8.535625], [47.35348, 8.556691], [47.391375, 8.528556], [47.370922, 8.508158], [47.340497, 8.51918], [47.368789, 8.540832], [47.365239, 8.501172], [47.408989, 8.572365], [47.362787, 8.548598], [47.399339, 8.542431], [47.376467, 8.491067], [47.373761, 8.536393], [47.363877, 8.497677], [47.374059, 8.544754], [47.370206, 8.548819], [47.37581, 8.535587], [47.388265, 8.493446], [47.364676, 8.537318], [47.38021, 8.501749], [47.37503, 8.549502], [47.41328, 8.545383], [47.379848, 8.543193], [47.363525, 8.535321], [47.368585, 8.499174], [47.374519, 8.545479], [47.358139, 8.572369], [47.374783, 8.503097], [47.410768, 8.567951], [47.389296, 8.543879], [47.398294, 8.536978], [47.393302, 8.524556], [47.385125, 8.516959], [47.389714, 8.511873], [47.386202, 8.529603], [47.382402, 8.530015], [47.375748, 8.53548], [47.373175, 8.527946], [47.378894, 8.527242], [47.376354, 8.537095], [47.397017, 8.530248], [47.41129, 8.545647], [47.387577, 8.486969], [47.387214, 8.476432], [47.38138, 8.534497], [47.365335, 8.564181], [47.401436, 8.50106], [47.391054, 8.489395], [47.371034, 8.535555], [47.371159, 8.53475], [47.379123, 8.533365], [47.364105, 8.546229], [47.378682, 8.54191], [47.41917, 8.506436], [47.373839, 8.537599], [47.376178, 8.539488], [47.374869, 8.527649], [47.378136, 8.519797], [47.362327, 8.504755], [47.368141, 8.541785], [47.370161, 8.548805], [47.379091, 8.538674], [47.386495, 8.529106], [47.374034, 8.531327], [47.430955, 8.550139], [47.374068, 8.544728], [47.425578, 8.494225], [47.43117, 8.516009], [47.368943, 8.496519], [47.392395, 8.503171], [47.362668, 8.551601], [47.387652, 8.533222], [47.382372, 8.487661], [47.392091, 8.498052], [47.373408, 8.525183], [47.365895, 8.545313], [47.360422, 8.597028], [47.392593, 8.524329], [47.382021, 8.551184], [47.408745, 8.550232], [47.335407, 8.51901], [47.370297, 8.518354], [47.368759, 8.492941], [47.355107, 8.534275], [47.402124, 8.496688], [47.367889, 8.52188], [47.376056, 8.559601], [47.377013, 8.543359], [47.378425, 8.50999], [47.3735, 8.534494], [47.364579, 8.537117], [47.375131, 8.525576], [47.375833, 8.544553], [47.379533, 8.554456], [47.399948, 8.504421], [47.374273, 8.524989], [47.407075, 8.586727], [47.383015, 8.529008], [47.378628, 8.499757], [47.388263, 8.519936], [47.410522, 8.572861], [47.403387, 8.497203], [47.394035, 8.525021], [47.394835, 8.473123], [47.376097, 8.488306], [47.347341, 8.563537], [47.356635, 8.551276], [47.374544, 8.54103], [47.409268, 8.545393], [47.419742, 8.547864], [47.377476, 8.541991], [47.358772, 8.551705], [47.367537, 8.540038], [47.40342, 8.574327], [47.380357, 8.542713], [47.423572, 8.551774], [47.380985, 8.511379], [47.387827, 8.527093], [47.425697, 8.556272], [47.377104, 8.540461], [47.3672, 8.533861], [47.351432, 8.52913], [47.379785, 8.537576], [47.388339, 8.526229], [47.35236, 8.558097], [47.393894, 8.54465], [47.376078, 8.537738], [47.383226, 8.539938], [47.353107, 8.512565], [47.406805, 8.567602], [47.355626, 8.526939], [47.386347, 8.551248], [47.369542, 8.466952], [47.386245, 8.53171], [47.385434, 8.542315], [47.404561, 8.572602], [47.389437, 8.52706], [47.41405, 8.546685], [47.41722, 8.510042], [47.391043, 8.522735], [47.374318, 8.516409], [47.363728, 8.551716], [47.369229, 8.491798], [47.373293, 8.503677], [47.37351, 8.542889], [47.37264, 8.529365], [47.393769, 8.472612], [47.376742, 8.540652], [47.374247, 8.544798], [47.370615, 8.511184], [47.402073, 8.49927], [47.335564, 8.516711], [47.385331, 8.494593], [47.37047, 8.537186], [47.4201, 8.50892], [47.419632, 8.505067], [47.368468, 8.529187], [47.371648, 8.547604], [47.378444, 8.540528], [47.370459, 8.537344], [47.409539, 8.54997], [47.366417, 8.540531], [47.362666, 8.555533], [47.378644, 8.528879], [47.399362, 8.542908], [47.362581, 8.534322], [47.38639, 8.518243], [47.376256, 8.544522], [47.371569, 8.515983], [47.37897, 8.524886], [47.360659, 8.529332], [47.35933, 8.522381], [47.37996, 8.55224], [47.393939, 8.541802], [47.378795, 8.542376], [47.377043, 8.533666], [47.354071, 8.575354], [47.419792, 8.500366], [47.420143, 8.53886], [47.422548, 8.4961], [47.373915, 8.535284], [47.401075, 8.491394], [47.375348, 8.561175], [47.36948, 8.520098], [47.369355, 8.525696], [47.367173, 8.533874], [47.395253, 8.485716], [47.403019, 8.572052], [47.379306, 8.553816], [47.40766, 8.584871], [47.339253, 8.529979], [47.376838, 8.544799], [47.364734, 8.56675], [47.398814, 8.540883], [47.372872, 8.567042], [47.364247, 8.531351], [47.424783, 8.548446], [47.379969, 8.541924], [47.408336, 8.565514], [47.374584, 8.550036], [47.400148, 8.590446], [47.369927, 8.510759], [47.360223, 8.551378], [47.414468, 8.475452], [47.349663, 8.56164], [47.358543, 8.518063], [47.375735, 8.549133], [47.375722, 8.559792], [47.370441, 8.529744], [47.364964, 8.508581], [47.403834, 8.546433], [47.376715, 8.541645], [47.399656, 8.468116], [47.374439, 8.541717], [47.395307, 8.491638], [47.388074, 8.519972], [47.381621, 8.513577], [47.386797, 8.547416], [47.369052, 8.528325], [47.426971, 8.491429], [47.360413, 8.552203], [47.369037, 8.527994], [47.358599, 8.517865], [47.394927, 8.525807], [47.386183, 8.518199], [47.37212, 8.487353], [47.374994, 8.545701], [47.416368, 8.544175], [47.357822, 8.519094], [47.373524, 8.556422], [47.370589, 8.526542], [47.342017, 8.530644], [47.408962, 8.550143], [47.358953, 8.516509], [47.372544, 8.517512], [47.399197, 8.541315], [47.381467, 8.55541], [47.414626, 8.54667], [47.37248, 8.478449], [47.386855, 8.489219], [47.420717, 8.502465], [47.372582, 8.521141], [47.36231, 8.557922], [47.373067, 8.500944], [47.383504, 8.530567], [47.365859, 8.550013], [47.368857, 8.560866], [47.376121, 8.525583], [47.403359, 8.497309], [47.359673, 8.516457], [47.391208, 8.545243], [47.386273, 8.518201], [47.413968, 8.542138], [47.356645, 8.523769], [47.378252, 8.541716], [47.382761, 8.540591], [47.361801, 8.560281], [47.357149, 8.52186], [47.409558, 8.544246], [47.372455, 8.515471], [47.372848, 8.533977], [47.363137, 8.549612], [47.368874, 8.519424], [47.383267, 8.484195], [47.409535, 8.575385], [47.37013, 8.551028], [47.368606, 8.547753], [47.386238, 8.518187], [47.380748, 8.515572], [47.411262, 8.57077], [47.350246, 8.560858], [47.387982, 8.524937], [47.37611, 8.540996], [47.385795, 8.496019], [47.371515, 8.550183], [47.381987, 8.54435], [47.362751, 8.548571], [47.394205, 8.490119], [47.392526, 8.538104], [47.386077, 8.481827], [47.405005, 8.505132], [47.355915, 8.592628], [47.376398, 8.489808], [47.363295, 8.513922], [47.394229, 8.493392], [47.408721, 8.546229], [47.383512, 8.530607], [47.36607, 8.533573], [47.393055, 8.539267], [47.404915, 8.534968], [47.368487, 8.524328], [47.381801, 8.516468], [47.379086, 8.483968], [47.360358, 8.548627], [47.369451, 8.555291], [47.381942, 8.52929], [47.399033, 8.542425], [47.419195, 8.54764], [47.364486, 8.552446], [47.404371, 8.533592], [47.3638, 8.535751], [47.375925, 8.553639], [47.372073, 8.53412], [47.384749, 8.502131], [47.370574, 8.546973], [47.373535, 8.544929], [47.372038, 8.53408], [47.413023, 8.550665], [47.356947, 8.555307], [47.369707, 8.525545], [47.338971, 8.527486], [47.393273, 8.493691], [47.3672, 8.533874], [47.369866, 8.520106], [47.38069, 8.516909], [47.364408, 8.546553], [47.347172, 8.534376], [47.374737, 8.537816], [47.36977, 8.552067], [47.408556, 8.546531], [47.410372, 8.538154], [47.414427, 8.519209], [47.364146, 8.551301], [47.354141, 8.575514], [47.369551, 8.525912], [47.36859, 8.560582], [47.37017, 8.548818], [47.399142, 8.514646], [47.360376, 8.550468], [47.384268, 8.507459], [47.379156, 8.522241], [47.42159, 8.550221], [47.362813, 8.559865], [47.413066, 8.546161], [47.374123, 8.515134], [47.340884, 8.519174], [47.370724, 8.535059], [47.389763, 8.537371], [47.375652, 8.553104], [47.392564, 8.536966], [47.370462, 8.539926], [47.368759, 8.528809], [47.38971, 8.512323], [47.370469, 8.551367], [47.366682, 8.559748], [47.347004, 8.528325], [47.382304, 8.499102], [47.365217, 8.533344], [47.364333, 8.529804], [47.393032, 8.524563], [47.407668, 8.58405], [47.397026, 8.530288], [47.367091, 8.544345], [47.36925, 8.525429], [47.377493, 8.504727], [47.369596, 8.52018], [47.422229, 8.497472], [47.344896, 8.533416], [47.362777, 8.559904], [47.378881, 8.542802], [47.389886, 8.531043], [47.376869, 8.520645], [47.379603, 8.525468], [47.363349, 8.55004], [47.384678, 8.531956], [47.410211, 8.534269], [47.376829, 8.543858], [47.377152, 8.541985], [47.368606, 8.547713], [47.376417, 8.527509], [47.366548, 8.540918], [47.367962, 8.544548], [47.369617, 8.525609], [47.397707, 8.584419], [47.356499, 8.551419], [47.372573, 8.535521], [47.39028, 8.514904], [47.361887, 8.547732], [47.389082, 8.488694], [47.382783, 8.57541], [47.37861, 8.565269], [47.375776, 8.500694], [47.372999, 8.531306], [47.37604, 8.54167], [47.380054, 8.522418], [47.377261, 8.510364], [47.344439, 8.530456], [47.383794, 8.529368], [47.351753, 8.559394], [47.367058, 8.536506], [47.3754, 8.518007], [47.368788, 8.541918], [47.424861, 8.53742], [47.390814, 8.522227], [47.423783, 8.535383], [47.368996, 8.537976], [47.42874, 8.48876], [47.360687, 8.524447], [47.396968, 8.539269], [47.372933, 8.534469], [47.371326, 8.536065], [47.378805, 8.483221], [47.377767, 8.537932], [47.353184, 8.526426], [47.416103, 8.547417], [47.395739, 8.545443], [47.362366, 8.504478], [47.367107, 8.545563], [47.370038, 8.511371], [47.407722, 8.584051], [47.414297, 8.55097], [47.407529, 8.489826], [47.36787, 8.560633], [47.375099, 8.485254], [47.385895, 8.532563], [47.371606, 8.515904], [47.401306, 8.551229], [47.372914, 8.524127], [47.403844, 8.576893], [47.384749, 8.502144], [47.412378, 8.546624], [47.329023, 8.513906], [47.369027, 8.525239], [47.385297, 8.500288], [47.37731, 8.539578], [47.36583, 8.539857], [47.374304, 8.543528], [47.375554, 8.535053], [47.380702, 8.525332], [47.385075, 8.530904], [47.341092, 8.527635], [47.364339, 8.531115], [47.373938, 8.503014], [47.389174, 8.512935], [47.38107, 8.49239], [47.380447, 8.506376], [47.357628, 8.520626], [47.361861, 8.51527], [47.360937, 8.506329], [47.37416, 8.544545], [47.375087, 8.518742], [47.369172, 8.52793], [47.370268, 8.537592], [47.364022, 8.497481]], [[47.391814, 8.541109], [47.37959, 8.537254], [47.372631, 8.535085], [47.382684, 8.487018], [47.377854, 8.529684], [47.370599, 8.524504], [47.370427, 8.51788], [47.376579, 8.568723], [47.370206, 8.548819], [47.334244, 8.516473], [47.399149, 8.521681], [47.349538, 8.561558], [47.406761, 8.49515], [47.418246, 8.506139], [47.376327, 8.513179], [47.368768, 8.528796], [47.366456, 8.561756], [47.369885, 8.547541], [47.399649, 8.538198], [47.402852, 8.577137], [47.387476, 8.487285], [47.40391, 8.548872], [47.393873, 8.505704], [47.414612, 8.563063], [47.37436, 8.541437], [47.368247, 8.541099], [47.361964, 8.560218], [47.360696, 8.524368], [47.361, 8.55383], [47.38443, 8.538215], [47.368299, 8.511693], [47.37556, 8.533556], [47.386085, 8.540064], [47.368714, 8.500844], [47.370886, 8.548211], [47.360243, 8.522863], [47.380138, 8.543027], [47.411291, 8.545554], [47.375435, 8.547524], [47.373841, 8.536447], [47.382275, 8.533072], [47.382229, 8.533111], [47.379042, 8.559703], [47.387158, 8.535093], [47.358312, 8.583096], [47.407442, 8.574187], [47.37413, 8.524893], [47.358321, 8.583149], [47.367856, 8.56111], [47.368324, 8.560219], [47.399326, 8.521976], [47.364822, 8.555856], [47.358937, 8.516323], [47.375695, 8.496812], [47.38878, 8.510807], [47.387965, 8.539149], [47.375438, 8.547273], [47.401747, 8.586162], [47.361516, 8.547923], [47.361643, 8.547846], [47.360928, 8.507282], [47.374894, 8.545791], [47.359383, 8.522462], [47.359162, 8.551369], [47.385661, 8.548624], [47.405636, 8.549941], [47.36475, 8.553975], [47.405243, 8.555246], [47.385069, 8.508375], [47.370188, 8.548805], [47.424351, 8.504472], [47.362611, 8.558444], [47.378008, 8.526667], [47.372515, 8.52923], [47.376528, 8.532914], [47.402786, 8.496118], [47.390549, 8.489623], [47.426898, 8.554799], [47.407857, 8.58041], [47.414252, 8.541574], [47.395703, 8.545455], [47.42096, 8.549387], [47.379325, 8.495308], [47.41525, 8.545424], [47.375653, 8.544576], [47.393973, 8.481981], [47.390104, 8.512583], [47.384796, 8.531786], [47.370939, 8.548318], [47.374755, 8.528322], [47.373888, 8.544751], [47.377528, 8.502953], [47.383193, 8.506073], [47.37782, 8.509236], [47.348558, 8.534352], [47.356969, 8.507401], [47.382054, 8.516314], [47.369452, 8.525884], [47.377112, 8.529152], [47.369025, 8.525385], [47.409511, 8.542576], [47.376783, 8.49784], [47.367408, 8.54128], [47.412959, 8.540394], [47.384409, 8.488218], [47.371424, 8.536186], [47.370125, 8.54883], [47.380652, 8.525808], [47.377223, 8.540225], [47.377935, 8.532519], [47.365696, 8.566771], [47.389028, 8.49562], [47.367271, 8.523535], [47.405972, 8.558879], [47.379062, 8.538846], [47.386797, 8.535231], [47.380824, 8.572468], [47.362162, 8.549062], [47.369097, 8.5254], [47.362699, 8.518928], [47.379516, 8.537465], [47.364919, 8.54761], [47.368252, 8.536782], [47.37827, 8.519906], [47.371633, 8.525452], [47.365728, 8.560694], [47.36274, 8.56087], [47.369372, 8.525869], [47.403665, 8.571298], [47.423032, 8.548051], [47.385508, 8.517311], [47.415351, 8.544274], [47.369986, 8.556653], [47.330786, 8.515847], [47.375485, 8.560118], [47.362768, 8.563571], [47.363277, 8.549972], [47.387949, 8.486658], [47.40596, 8.553579], [47.370134, 8.548791], [47.402228, 8.507872], [47.409399, 8.53828], [47.409007, 8.550091], [47.377858, 8.52828], [47.379259, 8.528573], [47.402241, 8.545605], [47.376713, 8.539023], [47.356626, 8.551289], [47.378274, 8.526156], [47.368125, 8.536846], [47.364647, 8.566431], [47.353807, 8.558206], [47.392402, 8.523636], [47.386477, 8.518536], [47.394856, 8.52574], [47.366149, 8.545054], [47.358352, 8.587227], [47.357144, 8.55825], [47.399501, 8.542487], [47.393282, 8.53902], [47.366889, 8.520165], [47.411248, 8.567629], [47.37273, 8.52934], [47.351996, 8.534118], [47.391946, 8.510778], [47.35427, 8.557793], [47.410618, 8.572294], [47.359924, 8.56183], [47.401277, 8.57909], [47.389209, 8.527492], [47.38138, 8.491932], [47.371924, 8.49111], [47.369097, 8.52348], [47.388189, 8.490968], [47.369319, 8.541889], [47.377556, 8.528843], [47.378429, 8.531695], [47.380431, 8.548118], [47.402419, 8.535433], [47.400949, 8.50411], [47.373889, 8.544671], [47.376895, 8.483607], [47.374892, 8.519466], [47.426986, 8.546609], [47.360295, 8.566233], [47.360298, 8.566868], [47.404249, 8.564964], [47.405195, 8.50507], [47.374169, 8.514049], [47.374853, 8.518843], [47.36648, 8.545272], [47.358639, 8.557143], [47.366889, 8.520165], [47.366989, 8.536214], [47.370653, 8.517765], [47.389543, 8.521618], [47.370188, 8.548818], [47.409486, 8.540468], [47.382743, 8.540604], [47.389989, 8.491785], [47.412246, 8.524505], [47.373828, 8.503211], [47.37277, 8.499945], [47.380418, 8.54286], [47.385339, 8.530539], [47.376383, 8.510068], [47.371939, 8.489455], [47.38322, 8.506047], [47.409084, 8.547774], [47.425744, 8.49383], [47.408053, 8.577857], [47.395357, 8.521259], [47.357963, 8.520447], [47.399465, 8.521568], [47.368709, 8.501334], [47.358455, 8.517783], [47.397672, 8.533348], [47.422703, 8.49878], [47.387402, 8.487482], [47.394249, 8.480278], [47.367967, 8.540298], [47.404632, 8.556969], [47.36268, 8.510362], [47.420753, 8.549342], [47.370188, 8.548805], [47.391632, 8.523237], [47.401474, 8.581916], [47.395595, 8.48563], [47.410781, 8.545212], [47.368095, 8.523844], [47.383316, 8.539914], [47.378062, 8.510327], [47.363114, 8.517864], [47.371795, 8.534048], [47.364595, 8.566218], [47.39072, 8.539749], [47.377581, 8.511814], [47.399614, 8.54759], [47.379354, 8.542269], [47.364077, 8.547222], [47.389623, 8.51199], [47.374477, 8.546127], [47.369639, 8.467179], [47.370434, 8.514199], [47.381021, 8.528689], [47.385111, 8.503847], [47.3734, 8.503864], [47.379124, 8.495675], [47.353032, 8.572115], [47.398386, 8.537642], [47.35612, 8.520317], [47.372011, 8.534966], [47.381472, 8.571528], [47.373707, 8.559803], [47.405802, 8.53541], [47.375212, 8.544593], [47.391493, 8.538877], [47.380313, 8.548222], [47.355913, 8.535536], [47.382274, 8.495499], [47.369775, 8.508677], [47.365559, 8.53907], [47.349119, 8.562065], [47.373808, 8.535162], [47.385926, 8.532153], [47.365741, 8.536016], [47.369893, 8.552334], [47.372855, 8.535116], [47.413697, 8.520373], [47.397863, 8.534001], [47.369503, 8.526203], [47.410724, 8.544588], [47.414533, 8.52047], [47.351956, 8.504746], [47.416677, 8.546713], [47.369292, 8.555923], [47.408546, 8.546597], [47.43116, 8.516102], [47.36171, 8.511203], [47.366756, 8.541836], [47.414234, 8.53402], [47.376779, 8.536839], [47.367117, 8.561266], [47.369945, 8.5488], [47.378602, 8.509398], [47.372256, 8.535739], [47.393209, 8.530647], [47.428157, 8.542631], [47.397533, 8.533716], [47.336063, 8.524872], [47.338359, 8.532224], [47.411275, 8.562104], [47.384229, 8.489181], [47.388646, 8.491136], [47.363174, 8.530641], [47.405794, 8.590714], [47.405867, 8.590676], [47.371223, 8.520253], [47.368855, 8.548036], [47.425719, 8.553913], [47.388026, 8.528912], [47.374546, 8.539905], [47.375838, 8.536409], [47.407148, 8.586609], [47.399047, 8.51422], [47.393212, 8.524593], [47.373672, 8.534391], [47.382843, 8.530011], [47.375643, 8.559552], [47.375502, 8.56384], [47.377276, 8.523262], [47.37036, 8.530788], [47.399362, 8.542908], [47.384702, 8.531334], [47.37996, 8.555948], [47.391933, 8.517984], [47.375763, 8.536752], [47.374044, 8.534055], [47.383971, 8.504579], [47.362196, 8.559455], [47.346023, 8.531269], [47.352133, 8.558237], [47.414037, 8.561076], [47.39447, 8.53417], [47.38061, 8.536931], [47.37606, 8.535765], [47.422674, 8.546944], [47.361327, 8.505926], [47.365337, 8.52159], [47.366233, 8.537217], [47.369767, 8.535437], [47.371419, 8.530095], [47.400866, 8.537018], [47.344792, 8.531125], [47.362778, 8.519128], [47.421333, 8.549871], [47.380434, 8.543999], [47.397215, 8.531193], [47.400176, 8.547059], [47.416865, 8.54017], [47.383399, 8.543412], [47.410804, 8.558729], [47.380375, 8.493634], [47.360998, 8.51712], [47.370809, 8.524111], [47.418132, 8.508721], [47.360433, 8.601291], [47.367195, 8.544784], [47.389228, 8.491372], [47.379235, 8.508046], [47.387009, 8.519381], [47.391363, 8.537497], [47.419512, 8.505383], [47.415796, 8.558741], [47.369112, 8.554079], [47.377071, 8.535402], [47.339411, 8.519885], [47.375957, 8.541854], [47.376316, 8.547569], [47.341794, 8.52], [47.339141, 8.519867], [47.381275, 8.533237], [47.381491, 8.503337], [47.361386, 8.551177], [47.390468, 8.539797], [47.390944, 8.489724], [47.368311, 8.50453], [47.377149, 8.540422], [47.374458, 8.521576], [47.413776, 8.546189], [47.375098, 8.518623], [47.375009, 8.52801], [47.347331, 8.532791], [47.414568, 8.561047], [47.389344, 8.537906], [47.37407, 8.528414], [47.380233, 8.483461], [47.331077, 8.53562], [47.348165, 8.529222], [47.363535, 8.532436], [47.369831, 8.55228], [47.413843, 8.545819], [47.40224, 8.556005], [47.40816, 8.57248], [47.396104, 8.526904], [47.350366, 8.560583], [47.413088, 8.558816], [47.417948, 8.546382], [47.381795, 8.489835], [47.37676, 8.535077], [47.411336, 8.544574], [47.38336, 8.474913], [47.369124, 8.525427], [47.378875, 8.526314], [47.399843, 8.543342], [47.367396, 8.545371], [47.409965, 8.541247], [47.404885, 8.572582], [47.366217, 8.548272], [47.395506, 8.545372], [47.374518, 8.530542], [47.389129, 8.551862], [47.401858, 8.531089], [47.369231, 8.541688], [47.350054, 8.562125], [47.374765, 8.529077], [47.419522, 8.508206], [47.372611, 8.534317], [47.379238, 8.538386], [47.379993, 8.527966], [47.387936, 8.536526], [47.361135, 8.522709], [47.414124, 8.518951], [47.393199, 8.53066], [47.368645, 8.524649], [47.383236, 8.574228], [47.354158, 8.531886], [47.418761, 8.540408], [47.386185, 8.51808], [47.393482, 8.512942], [47.429839, 8.544574], [47.371787, 8.529228], [47.399896, 8.495345], [47.386241, 8.517776], [47.424591, 8.495889], [47.367751, 8.534627], [47.393419, 8.529366], [47.409316, 8.549793], [47.414291, 8.539362], [47.344526, 8.529809], [47.373538, 8.537077], [47.355703, 8.556552], [47.377571, 8.546205], [47.397444, 8.553414], [47.390902, 8.523368], [47.353637, 8.554351], [47.415983, 8.527867], [47.378625, 8.519463], [47.37067, 8.56493], [47.378449, 8.523789], [47.383424, 8.511243], [47.359948, 8.559381], [47.383192, 8.506126], [47.380534, 8.53448], [47.377093, 8.540699], [47.370154, 8.521065], [47.376429, 8.534859], [47.406643, 8.548068], [47.382743, 8.540604], [47.364983, 8.531486], [47.396249, 8.487961], [47.364678, 8.548386], [47.372431, 8.532433], [47.409021, 8.543957], [47.367615, 8.555411], [47.40692, 8.487588], [47.375078, 8.518755], [47.373017, 8.547368], [47.365183, 8.519773], [47.37551, 8.536866], [47.35289, 8.557181], [47.414438, 8.51901], [47.363757, 8.547798], [47.384714, 8.548909], [47.370197, 8.548819], [47.376798, 8.543341], [47.36508, 8.553293], [47.371325, 8.52089], [47.373831, 8.545955], [47.356237, 8.535582], [47.39736, 8.527275], [47.410385, 8.548106], [47.415019, 8.515616], [47.374725, 8.518099], [47.385869, 8.492776], [47.369073, 8.530828], [47.380962, 8.492348], [47.373535, 8.545008], [47.387188, 8.488272], [47.383768, 8.540599], [47.35767, 8.572505], [47.370179, 8.548792], [47.344951, 8.533338], [47.378842, 8.525122], [47.386447, 8.534164], [47.398362, 8.537403], [47.40485, 8.548388], [47.381888, 8.531117], [47.391031, 8.521132], [47.384581, 8.52508], [47.362095, 8.551324], [47.407572, 8.546855], [47.37387, 8.544684], [47.388533, 8.483809], [47.397643, 8.588206], [47.348602, 8.563457], [47.378303, 8.528819], [47.397821, 8.538399], [47.386933, 8.490625], [47.421385, 8.550032], [47.369207, 8.528024], [47.356592, 8.523715], [47.38068, 8.538098], [47.359099, 8.550454], [47.414569, 8.56008], [47.360275, 8.566471], [47.404427, 8.572467], [47.340687, 8.529558], [47.395149, 8.524222], [47.381646, 8.51673], [47.357345, 8.550431], [47.418317, 8.552936], [47.349947, 8.533944], [47.4108, 8.545173], [47.376451, 8.489928], [47.422281, 8.547585], [47.355333, 8.600386], [47.359214, 8.522286], [47.402342, 8.499316], [47.365388, 8.54562], [47.361619, 8.514259], [47.393383, 8.500329], [47.357384, 8.588662], [47.380936, 8.492255], [47.381795, 8.489835], [47.404208, 8.573707], [47.367807, 8.560579], [47.373876, 8.546022], [47.409978, 8.552046], [47.399692, 8.504827], [47.393821, 8.524818], [47.399635, 8.50517], [47.368325, 8.536691], [47.328651, 8.52967], [47.369755, 8.540481], [47.378564, 8.542067], [47.404352, 8.533618], [47.361455, 8.56541], [47.365116, 8.55328], [47.375718, 8.564771], [47.391107, 8.46954], [47.412972, 8.538128], [47.416296, 8.545128], [47.358294, 8.586762], [47.366639, 8.547447], [47.402705, 8.535691], [47.365338, 8.494237], [47.380205, 8.558456], [47.369032, 8.528457], [47.377599, 8.492255], [47.377892, 8.537047], [47.37087, 8.520524], [47.362613, 8.497215], [47.369318, 8.525815], [47.395363, 8.546243], [47.426278, 8.554733], [47.37582, 8.512546], [47.415106, 8.510118], [47.374476, 8.541585], [47.397989, 8.474535], [47.405909, 8.480983], [47.377085, 8.527244], [47.409523, 8.549837], [47.373924, 8.53155], [47.407936, 8.583327], [47.393947, 8.494711], [47.379877, 8.527884], [47.377523, 8.498623], [47.35709, 8.535758], [47.365117, 8.553214], [47.402887, 8.580966], [47.405835, 8.591086], [47.373961, 8.517051], [47.37786, 8.544224], [47.381426, 8.517162], [47.414464, 8.553213], [47.334022, 8.531447], [47.410341, 8.544196], [47.378042, 8.510605], [47.412123, 8.5507], [47.3718, 8.516279], [47.374618, 8.487707], [47.406481, 8.550012], [47.399531, 8.496901], [47.40591, 8.491795], [47.405017, 8.571022], [47.423891, 8.502647], [47.386147, 8.524993], [47.377696, 8.525403], [47.413748, 8.545433], [47.373544, 8.527887], [47.393067, 8.524683], [47.370285, 8.515758], [47.372213, 8.553389], [47.379269, 8.537897], [47.368899, 8.54809], [47.374093, 8.489021], [47.393478, 8.512452], [47.356418, 8.51152], [47.425926, 8.493542], [47.375005, 8.513126], [47.390064, 8.485494], [47.373389, 8.531976], [47.42477, 8.537564], [47.367863, 8.539833], [47.402824, 8.499736], [47.421215, 8.511858], [47.383088, 8.530784], [47.404919, 8.557094], [47.386461, 8.51835], [47.428058, 8.547387], [47.383424, 8.533241], [47.376381, 8.527574], [47.392369, 8.491209], [47.378486, 8.528452], [47.392068, 8.500502], [47.374512, 8.541586], [47.363366, 8.557507], [47.375544, 8.541819], [47.395748, 8.545483], [47.431151, 8.516101], [47.366711, 8.542748], [47.410611, 8.557254], [47.369485, 8.526255], [47.366202, 8.545187], [47.387692, 8.538494], [47.359324, 8.569906], [47.376491, 8.528252], [47.408782, 8.549252], [47.36186, 8.547692], [47.365391, 8.53111], [47.41002, 8.527851], [47.366833, 8.543108], [47.40992, 8.541259], [47.360343, 8.523725], [47.397174, 8.594555], [47.375923, 8.559492], [47.352706, 8.524642], [47.360369, 8.523845], [47.410877, 8.563209], [47.389191, 8.48859], [47.335269, 8.541198], [47.337064, 8.519825], [47.386823, 8.547536], [47.403395, 8.548133], [47.416888, 8.545326], [47.402408, 8.582943], [47.364574, 8.546133], [47.380925, 8.572284], [47.383517, 8.533005], [47.419907, 8.535303], [47.36022, 8.562882], [47.386277, 8.493473], [47.373923, 8.502749], [47.387548, 8.537617], [47.405799, 8.591112], [47.379989, 8.520735], [47.400683, 8.532589], [47.396357, 8.485883], [47.406543, 8.584185], [47.379909, 8.527329], [47.377665, 8.538274], [47.36067, 8.566519], [47.384701, 8.527638], [47.378157, 8.52618], [47.376038, 8.488768], [47.403835, 8.546393], [47.378917, 8.527613], [47.374072, 8.527289], [47.390949, 8.507752], [47.33707, 8.520089], [47.394268, 8.484133], [47.3897, 8.511541], [47.410645, 8.550987], [47.367587, 8.545176], [47.354579, 8.53204], [47.414215, 8.51886], [47.365854, 8.546703], [47.374895, 8.536244], [47.379794, 8.53759], [47.404088, 8.548081], [47.375377, 8.485378], [47.35863, 8.517336], [47.359332, 8.507674], [47.378403, 8.52012], [47.382096, 8.505071], [47.37395, 8.544832], [47.367339, 8.530607], [47.37272, 8.56778], [47.376159, 8.526338], [47.367897, 8.494804], [47.413557, 8.554069], [47.377728, 8.517286], [47.3705, 8.492485], [47.368223, 8.544527], [47.364184, 8.54737], [47.367155, 8.54428], [47.414423, 8.537787], [47.385298, 8.536776], [47.39915, 8.521535], [47.373555, 8.534416], [47.357722, 8.599882], [47.409567, 8.5377], [47.378005, 8.521264], [47.368741, 8.543995], [47.375666, 8.537518], [47.365388, 8.535241], [47.372349, 8.505657], [47.416646, 8.555459], [47.411526, 8.54544], [47.368345, 8.527887], [47.381467, 8.529042], [47.39108, 8.522629], [47.373174, 8.503926], [47.379808, 8.546489], [47.411926, 8.538345], [47.391199, 8.488298], [47.42744, 8.539567], [47.369256, 8.527614], [47.366902, 8.544394], [47.395234, 8.508394], [47.357323, 8.550827], [47.342024, 8.530856], [47.420697, 8.551475], [47.414778, 8.519229], [47.359479, 8.551164], [47.349817, 8.575316], [47.385573, 8.536159], [47.373617, 8.536377], [47.354681, 8.575565], [47.373599, 8.527809], [47.373861, 8.544684], [47.356589, 8.527792], [47.418488, 8.549163], [47.378344, 8.52731], [47.356557, 8.532186], [47.391629, 8.512997], [47.386383, 8.48182], [47.429908, 8.54956], [47.359271, 8.534347], [47.414544, 8.558039], [47.4059, 8.580912], [47.352453, 8.557781], [47.371564, 8.535646], [47.402157, 8.585561], [47.388578, 8.483717], [47.336678, 8.533089], [47.388164, 8.484782], [47.397432, 8.509935], [47.353287, 8.525091], [47.41162, 8.544951], [47.391164, 8.489225], [47.36845, 8.54714], [47.361578, 8.561031], [47.378393, 8.519286], [47.381827, 8.533751], [47.377548, 8.54198], [47.38273, 8.532472], [47.377695, 8.541731], [47.374115, 8.502342], [47.406353, 8.537979], [47.378015, 8.508658], [47.421259, 8.542554], [47.370304, 8.548874], [47.402931, 8.581895], [47.356635, 8.551263], [47.390823, 8.52224], [47.40863, 8.503257], [47.386541, 8.52806], [47.387412, 8.497257], [47.358924, 8.557374], [47.401674, 8.50064], [47.383192, 8.547248], [47.403225, 8.497253], [47.359936, 8.522023], [47.377856, 8.508297], [47.369031, 8.540956], [47.404501, 8.558464], [47.364834, 8.566646], [47.392136, 8.509709], [47.376096, 8.535818], [47.380233, 8.515827], [47.373948, 8.476266], [47.374468, 8.502164], [47.410295, 8.54242], [47.358666, 8.585552], [47.377668, 8.512041], [47.374273, 8.526909], [47.391904, 8.518195], [47.374251, 8.517732], [47.370016, 8.511834], [47.374686, 8.52411], [47.383471, 8.528342], [47.414594, 8.483472], [47.398563, 8.538931], [47.37109, 8.520091], [47.369373, 8.525683], [47.366166, 8.540486], [47.381291, 8.528602], [47.373575, 8.51985], [47.348085, 8.571163], [47.33618, 8.524848], [47.378943, 8.478959], [47.402649, 8.49234], [47.385789, 8.528601], [47.359856, 8.531473], [47.37568, 8.544563], [47.417565, 8.483186], [47.407537, 8.579118], [47.36182, 8.560202], [47.431774, 8.543514], [47.36781, 8.539713], [47.406522, 8.550357], [47.375541, 8.526948], [47.359252, 8.592594], [47.376409, 8.527429], [47.409243, 8.547062], [47.405201, 8.585282], [47.378669, 8.519503], [47.365795, 8.532151], [47.40018, 8.546728], [47.386369, 8.51852], [47.36994, 8.564146], [47.398328, 8.54184], [47.393971, 8.525112], [47.364836, 8.554387], [47.408884, 8.557244], [47.361588, 8.503006], [47.359945, 8.522989], [47.376122, 8.534018], [47.400083, 8.590644], [47.405254, 8.502606], [47.380638, 8.548083], [47.354372, 8.555544], [47.382876, 8.474639], [47.403135, 8.486374], [47.397165, 8.530768], [47.38335, 8.515254], [47.402707, 8.552371], [47.364654, 8.536775], [47.363716, 8.562307], [47.393281, 8.501652], [47.39339, 8.500581], [47.376252, 8.484018], [47.383094, 8.532056], [47.420801, 8.549078], [47.3756, 8.548176], [47.341185, 8.536834], [47.419087, 8.546697], [47.419192, 8.507934], [47.388374, 8.545237], [47.369163, 8.527943], [47.38693, 8.544823], [47.35809, 8.553385], [47.369106, 8.549074], [47.365031, 8.531195], [47.389377, 8.521072], [47.362461, 8.54883], [47.373697, 8.544998], [47.385253, 8.536722], [47.364466, 8.555478], [47.383316, 8.539927], [47.417899, 8.554292], [47.398988, 8.541563], [47.373866, 8.49516], [47.396456, 8.528713], [47.394142, 8.493085], [47.360702, 8.55021], [47.418048, 8.502252], [47.376545, 8.540635], [47.389663, 8.511554], [47.373814, 8.502853], [47.410883, 8.54491], [47.404201, 8.561531], [47.368955, 8.540412], [47.366522, 8.536164], [47.415268, 8.510095], [47.407144, 8.586185], [47.38592, 8.521399], [47.390696, 8.508833], [47.409256, 8.54481], [47.378411, 8.541084], [47.377018, 8.537188], [47.365081, 8.531567], [47.378186, 8.517361], [47.378682, 8.54199], [47.408817, 8.55022], [47.37429, 8.522222], [47.379474, 8.527638], [47.381824, 8.483624], [47.372954, 8.522751], [47.379867, 8.525103], [47.363333, 8.52045], [47.373168, 8.494842], [47.364842, 8.566673], [47.375545, 8.548268], [47.378791, 8.522883], [47.374845, 8.518711], [47.370188, 8.548818], [47.38491, 8.495379], [47.392684, 8.524265], [47.425564, 8.497684], [47.36641, 8.541312], [47.386861, 8.528424], [47.374499, 8.540063], [47.365851, 8.55266], [47.410233, 8.546075], [47.384408, 8.542373], [47.357643, 8.572518], [47.39133, 8.536198], [47.367083, 8.523439], [47.373588, 8.553524], [47.364624, 8.554899], [47.407858, 8.536751], [47.367128, 8.544319], [47.394329, 8.48938], [47.401176, 8.58293], [47.365034, 8.536518], [47.395761, 8.482189], [47.369245, 8.49201], [47.362233, 8.526398], [47.371263, 8.530356], [47.364816, 8.570327], [47.367739, 8.530178], [47.404083, 8.563556], [47.362052, 8.52654], [47.370227, 8.539101], [47.364632, 8.537171], [47.392412, 8.538737], [47.379583, 8.510252], [47.384118, 8.548248], [47.369921, 8.508442], [47.377389, 8.529436], [47.390763, 8.521961], [47.368574, 8.499385], [47.383913, 8.542416], [47.361625, 8.526055], [47.357081, 8.535771], [47.401857, 8.548193], [47.391369, 8.550916], [47.431772, 8.531358], [47.402105, 8.579956], [47.335342, 8.541146], [47.383326, 8.486594], [47.373852, 8.535282], [47.342197, 8.526797], [47.361162, 8.526562], [47.366938, 8.544342], [47.364533, 8.531503], [47.420911, 8.548842], [47.381546, 8.548194], [47.378927, 8.519826], [47.396554, 8.528834], [47.391068, 8.52296], [47.391018, 8.522509], [47.361046, 8.571279], [47.361046, 8.571293], [47.36187, 8.515271], [47.39432, 8.489353], [47.399771, 8.544334], [47.339954, 8.529993], [47.366185, 8.545028], [47.411954, 8.528765], [47.375148, 8.525748], [47.364918, 8.565377], [47.430433, 8.542625], [47.356046, 8.553607], [47.360589, 8.535751], [47.381803, 8.533473], [47.355631, 8.55655], [47.35205, 8.50533], [47.37384, 8.53658], [47.38797, 8.485374], [47.424784, 8.495495], [47.357635, 8.553971], [47.390994, 8.486122], [47.418066, 8.51972], [47.380365, 8.513234], [47.386565, 8.540643], [47.378396, 8.54556], [47.378284, 8.510636], [47.381087, 8.555667], [47.362767, 8.522226], [47.405148, 8.500352], [47.385778, 8.520204], [47.364842, 8.566686], [47.40712, 8.586741], [47.410155, 8.566308], [47.369783, 8.556225], [47.370119, 8.532412], [47.366176, 8.540328], [47.3691, 8.525109], [47.426942, 8.546542], [47.369839, 8.510479], [47.348343, 8.534255], [47.379411, 8.489801], [47.338223, 8.527603], [47.370695, 8.549359], [47.358119, 8.518173], [47.405928, 8.540103], [47.381034, 8.569373], [47.415759, 8.481944], [47.387408, 8.500647], [47.399852, 8.495292], [47.382129, 8.488716], [47.373713, 8.503049], [47.378801, 8.478705], [47.378943, 8.478946], [47.394137, 8.508279], [47.397235, 8.540506], [47.369461, 8.525897], [47.419677, 8.548021], [47.326001, 8.518727], [47.39788, 8.534121], [47.370426, 8.524685], [47.386494, 8.529145], [47.371324, 8.520096], [47.40237, 8.545356], [47.369398, 8.525922], [47.369666, 8.533793], [47.38427, 8.52849], [47.407404, 8.549342], [47.33742, 8.519236], [47.376033, 8.488384], [47.431363, 8.51649], [47.415755, 8.531043], [47.381519, 8.548127], [47.38322, 8.506021], [47.404888, 8.576822], [47.361715, 8.547808], [47.361811, 8.560215], [47.393607, 8.512137], [47.371536, 8.511772], [47.407878, 8.565425], [47.409377, 8.550046], [47.390867, 8.522307], [47.380799, 8.512024], [47.406816, 8.550655], [47.404424, 8.533593], [47.409536, 8.535248], [47.375112, 8.545571], [47.378966, 8.542393], [47.376103, 8.536004], [47.382768, 8.514064], [47.416809, 8.547021], [47.366148, 8.540499], [47.394096, 8.493177], [47.375496, 8.518353], [47.37025, 8.556327], [47.366787, 8.54978], [47.40182, 8.548232], [47.375896, 8.494486], [47.384761, 8.497906], [47.361955, 8.560191], [47.365619, 8.552444], [47.366777, 8.520599], [47.377539, 8.54198], [47.387229, 8.518962], [47.380097, 8.522605], [47.409319, 8.546706], [47.408956, 8.566521], [47.414331, 8.518014], [47.373041, 8.534551], [47.401393, 8.588261], [47.429343, 8.542854], [47.372868, 8.562818], [47.393658, 8.512416], [47.409037, 8.539492], [47.375221, 8.550208], [47.424382, 8.544262], [47.385346, 8.493944], [47.404145, 8.532739], [47.373616, 8.538389], [47.380283, 8.512398], [47.370179, 8.548818], [47.376805, 8.535052], [47.381035, 8.503964], [47.379431, 8.527518], [47.379261, 8.517847], [47.358281, 8.585319], [47.413827, 8.509297], [47.387878, 8.520763], [47.36018, 8.534273], [47.328702, 8.517525], [47.372542, 8.529257], [47.35294, 8.524673], [47.389891, 8.538036], [47.386155, 8.525112], [47.375989, 8.559162], [47.375093, 8.528647], [47.373456, 8.52002], [47.381692, 8.547985], [47.382353, 8.547522], [47.363778, 8.567021], [47.393736, 8.502111], [47.365551, 8.566926], [47.351035, 8.582211], [47.389786, 8.471449], [47.360504, 8.526601], [47.387896, 8.524525], [47.368972, 8.540518], [47.377321, 8.563719], [47.387182, 8.478935], [47.379709, 8.566908], [47.379719, 8.566882], [47.398864, 8.533744], [47.387922, 8.498538], [47.393222, 8.524461], [47.400958, 8.491392], [47.392973, 8.522218], [47.391188, 8.515863], [47.385978, 8.548459], [47.372935, 8.536164], [47.384168, 8.575506], [47.397958, 8.532559], [47.353488, 8.55861], [47.378633, 8.559165], [47.402854, 8.536065], [47.373275, 8.520135], [47.377606, 8.558441], [47.34006, 8.530273], [47.359542, 8.549245], [47.362233, 8.55939], [47.379423, 8.51879], [47.375808, 8.487373], [47.39375, 8.502443], [47.383083, 8.514997], [47.423697, 8.54442], [47.378051, 8.510565], [47.383594, 8.545668], [47.367741, 8.509802], [47.366951, 8.543945], [47.377759, 8.498336], [47.388756, 8.536291], [47.378413, 8.496641], [47.369358, 8.528265], [47.366061, 8.533533], [47.374644, 8.538106], [47.424157, 8.549003], [47.368738, 8.501216], [47.370302, 8.522617], [47.379015, 8.495766], [47.363765, 8.551677], [47.377368, 8.512432], [47.372404, 8.505552], [47.38472, 8.527493], [47.39177, 8.513318], [47.406481, 8.550012], [47.36494, 8.537879], [47.379537, 8.558773], [47.386225, 8.51857], [47.389731, 8.512005], [47.392499, 8.50255], [47.393842, 8.481555], [47.378592, 8.542928], [47.387297, 8.533718], [47.369726, 8.536866], [47.414133, 8.518964], [47.371073, 8.523811], [47.396461, 8.543312], [47.373939, 8.476266], [47.39285, 8.474886], [47.415598, 8.563362], [47.377183, 8.521632], [47.383782, 8.549486], [47.360962, 8.588872], [47.411697, 8.537864], [47.3682, 8.546036], [47.413716, 8.536527], [47.375661, 8.537134], [47.336682, 8.517316], [47.372921, 8.528192], [47.426466, 8.55487], [47.400117, 8.547654], [47.385952, 8.517982], [47.35963, 8.593516], [47.363742, 8.575269], [47.354736, 8.555102], [47.401498, 8.578538], [47.392472, 8.487794], [47.391627, 8.480823], [47.379065, 8.542329], [47.374183, 8.543009], [47.403608, 8.534278], [47.410366, 8.548159], [47.426567, 8.544281], [47.341112, 8.536938], [47.368052, 8.546378], [47.380825, 8.503417], [47.400881, 8.517278], [47.366948, 8.541443], [47.337916, 8.5017], [47.358537, 8.551832], [47.382414, 8.529697], [47.416004, 8.530439], [47.387251, 8.501081], [47.397949, 8.532559], [47.412962, 8.538221], [47.371272, 8.536077], [47.361217, 8.502217], [47.364577, 8.566244], [47.382886, 8.513934], [47.346101, 8.534421], [47.386529, 8.523596], [47.396321, 8.543852], [47.39783, 8.529006], [47.37659, 8.525394], [47.35285, 8.510244], [47.360421, 8.549568], [47.369275, 8.527482], [47.379366, 8.511386], [47.424816, 8.537458], [47.344374, 8.526815], [47.377034, 8.53744], [47.383078, 8.530903], [47.409159, 8.547444], [47.413757, 8.524549], [47.37617, 8.546943], [47.36226, 8.559324], [47.375482, 8.520829], [47.384482, 8.492974], [47.39488, 8.544988], [47.369933, 8.549131], [47.355942, 8.555961], [47.370152, 8.548804], [47.41722, 8.543504], [47.429345, 8.546407], [47.358973, 8.549565], [47.403114, 8.588881], [47.411649, 8.562457], [47.3835, 8.515655], [47.367107, 8.545563], [47.374435, 8.541107], [47.385189, 8.536814], [47.422502, 8.551725], [47.381487, 8.530751], [47.34845, 8.534363], [47.411169, 8.526152], [47.42323, 8.498181], [47.40679, 8.550522], [47.347728, 8.563571], [47.370061, 8.548909], [47.358319, 8.571486], [47.361267, 8.487934], [47.337661, 8.521372], [47.356217, 8.55831], [47.352114, 8.523545], [47.369657, 8.467206], [47.333386, 8.518692], [47.36377, 8.57515], [47.376174, 8.528497], [47.360473, 8.535643], [47.40562, 8.537473], [47.388152, 8.520239], [47.395257, 8.540346], [47.344442, 8.53297], [47.379099, 8.538754], [47.389979, 8.522064], [47.373216, 8.550113], [47.355512, 8.56134], [47.343106, 8.534359], [47.363103, 8.518089], [47.386964, 8.488122], [47.386632, 8.518301], [47.361879, 8.547639], [47.37629, 8.547555], [47.390721, 8.522543], [47.377265, 8.53967], [47.374646, 8.487588], [47.376662, 8.549006], [47.396134, 8.527528], [47.357223, 8.552851], [47.413443, 8.530187], [47.394201, 8.488543], [47.392356, 8.539001], [47.376019, 8.528706], [47.377487, 8.538946], [47.38808, 8.485085], [47.38339, 8.543465], [47.376917, 8.544059], [47.365108, 8.553214], [47.406835, 8.550589], [47.404641, 8.556983], [47.374032, 8.544767], [47.366813, 8.535786], [47.419625, 8.50781], [47.402027, 8.499336], [47.358103, 8.498488], [47.39822, 8.532472], [47.379853, 8.554847], [47.393003, 8.525689], [47.419272, 8.507976], [47.3695, 8.52844], [47.387945, 8.526937], [47.344994, 8.533564], [47.408417, 8.57658], [47.363635, 8.531378], [47.381041, 8.532265], [47.396846, 8.534113], [47.363497, 8.546733], [47.397364, 8.502661], [47.35556, 8.507969], [47.430557, 8.547492], [47.407103, 8.585747], [47.35206, 8.558342], [47.367996, 8.544708], [47.36403, 8.511289], [47.342377, 8.530691], [47.335384, 8.525282], [47.369565, 8.520629], [47.381129, 8.538173], [47.381427, 8.53806], [47.335016, 8.528133], [47.42002, 8.508826], [47.371069, 8.518436], [47.406871, 8.55059], [47.387704, 8.478932], [47.413721, 8.54628], [47.373425, 8.513756], [47.422904, 8.511097], [47.369671, 8.525584], [47.367639, 8.565898], [47.395766, 8.54543], [47.370722, 8.535284], [47.417683, 8.51343], [47.3932, 8.530647], [47.401553, 8.495113], [47.401392, 8.53467], [47.41818, 8.546638], [47.372907, 8.567056], [47.34934, 8.534381], [47.373899, 8.52943], [47.379121, 8.552461], [47.36904, 8.538043], [47.381344, 8.542045], [47.405432, 8.592707], [47.372605, 8.509105], [47.359561, 8.55102], [47.397946, 8.510753], [47.363869, 8.535103], [47.416922, 8.51311], [47.378903, 8.523335], [47.375546, 8.529279], [47.379455, 8.529716], [47.397759, 8.533562], [47.379505, 8.547132], [47.3998, 8.53938], [47.365739, 8.516103], [47.41726, 8.523136], [47.381148, 8.491663], [47.36044, 8.561523], [47.397551, 8.501976], [47.394137, 8.530481], [47.354788, 8.556281], [47.360734, 8.585583], [47.397683, 8.509105], [47.405914, 8.581349], [47.38196, 8.548084], [47.393425, 8.503615], [47.42308, 8.542115], [47.383465, 8.484226], [47.402098, 8.497562], [47.422375, 8.53872], [47.402556, 8.492709], [47.374833, 8.527662], [47.369014, 8.53795], [47.386742, 8.547521], [47.421048, 8.549561], [47.40198, 8.499653], [47.360944, 8.505575], [47.38494, 8.508744], [47.370994, 8.548186], [47.347398, 8.516117], [47.376421, 8.560006], [47.353996, 8.53089], [47.37165, 8.502386], [47.365126, 8.553215], [47.393021, 8.526669], [47.352403, 8.573875], [47.396391, 8.528023], [47.374619, 8.541681], [47.391864, 8.53205], [47.367738, 8.533118], [47.375168, 8.492511], [47.363158, 8.594175], [47.369607, 8.528614], [47.357065, 8.55523], [47.37865, 8.519622], [47.370182, 8.51324], [47.370499, 8.510162], [47.417044, 8.548722], [47.382696, 8.529385], [47.371197, 8.490963], [47.368896, 8.538133], [47.40661, 8.551472], [47.329729, 8.530697], [47.373573, 8.503603], [47.40356, 8.572832], [47.36904, 8.538043], [47.364384, 8.536756], [47.383428, 8.515627], [47.375526, 8.520896], [47.373293, 8.552405], [47.365112, 8.526364], [47.367382, 8.535586], [47.361842, 8.547665], [47.369889, 8.510917], [47.382144, 8.512515], [47.372091, 8.547375], [47.381008, 8.50301], [47.400217, 8.592501], [47.401008, 8.534331], [47.371499, 8.546171], [47.427094, 8.491697], [47.381066, 8.507527], [47.3624, 8.612309], [47.373201, 8.520346], [47.36709, 8.53979], [47.414645, 8.519968], [47.404831, 8.548533], [47.404726, 8.546332], [47.378741, 8.531], [47.38456, 8.487413], [47.404327, 8.546615], [47.414257, 8.536366], [47.377945, 8.526706], [47.421741, 8.500736], [47.378786, 8.510845], [47.403418, 8.534473], [47.378528, 8.542066], [47.383163, 8.531355], [47.370689, 8.516746], [47.37326, 8.535072], [47.393575, 8.511686], [47.409777, 8.543933], [47.393507, 8.526706], [47.359529, 8.535583], [47.365392, 8.564791], [47.379346, 8.542163], [47.370022, 8.558573], [47.404705, 8.549472], [47.390223, 8.52485], [47.384629, 8.484752], [47.402623, 8.541452], [47.363658, 8.507787], [47.39047, 8.539611], [47.403844, 8.576893], [47.365614, 8.548286], [47.37929, 8.515609], [47.38064, 8.517543], [47.364126, 8.520307], [47.377547, 8.542072], [47.359733, 8.549077], [47.377696, 8.531216], [47.408096, 8.572571], [47.379757, 8.537668], [47.360682, 8.531636], [47.382731, 8.539902], [47.361625, 8.506833], [47.371881, 8.525894], [47.428006, 8.490349], [47.369088, 8.537819], [47.372574, 8.547623], [47.356766, 8.532853], [47.36214, 8.535333], [47.394405, 8.50851], [47.377135, 8.526716], [47.369551, 8.553294], [47.35001, 8.533879], [47.406512, 8.556094], [47.370157, 8.539801], [47.380819, 8.497139], [47.367147, 8.536627], [47.362506, 8.533699], [47.377056, 8.528436], [47.388894, 8.515949], [47.372467, 8.566119], [47.384373, 8.53183], [47.362761, 8.567966], [47.385434, 8.536686], [47.362594, 8.533965], [47.40411, 8.56353], [47.379824, 8.519129], [47.367974, 8.540431], [47.403794, 8.558104], [47.387982, 8.490977], [47.383342, 8.510314], [47.362251, 8.559324], [47.339526, 8.527762], [47.418224, 8.546679], [47.378055, 8.526496], [47.389877, 8.535731], [47.340496, 8.537389], [47.365639, 8.532518], [47.425853, 8.4937], [47.341327, 8.530379], [47.408652, 8.504781], [47.370134, 8.548804], [47.388969, 8.477248], [47.40569, 8.56934], [47.393409, 8.524611], [47.374645, 8.550156], [47.401997, 8.491797], [47.398696, 8.548578], [47.353586, 8.576164], [47.388572, 8.470366], [47.385409, 8.536461], [47.382955, 8.515273], [47.390549, 8.545441], [47.412019, 8.5503], [47.409149, 8.54751], [47.363044, 8.556401], [47.370106, 8.548883], [47.374916, 8.518818], [47.417486, 8.545789], [47.374977, 8.537093], [47.358374, 8.571381], [47.376037, 8.533526], [47.372548, 8.555912], [47.360447, 8.531776], [47.383088, 8.48406], [47.391996, 8.523761], [47.389702, 8.539039], [47.388421, 8.487197], [47.377658, 8.55496], [47.397491, 8.532484], [47.373245, 8.529073], [47.37328, 8.514852], [47.382625, 8.54823], [47.356446, 8.570745], [47.371751, 8.523494], [47.397037, 8.480399], [47.419549, 8.508246], [47.354855, 8.554959], [47.365673, 8.521212], [47.353492, 8.576559], [47.379353, 8.542295], [47.401468, 8.587017], [47.348385, 8.562553], [47.425889, 8.493634], [47.390509, 8.508643], [47.368919, 8.540437], [47.40247, 8.556447], [47.364861, 8.537679], [47.367315, 8.545382], [47.410102, 8.542866], [47.372524, 8.543398], [47.3867, 8.525428], [47.387125, 8.546019], [47.398976, 8.541841], [47.40944, 8.549968], [47.36005, 8.550673], [47.407785, 8.585033], [47.37082, 8.535326], [47.369911, 8.552295], [47.419632, 8.54806], [47.37493, 8.534457], [47.391298, 8.486313], [47.369768, 8.561574], [47.418792, 8.530429], [47.369127, 8.504878], [47.386828, 8.534715], [47.376812, 8.499602], [47.378525, 8.54147], [47.399248, 8.542522], [47.373438, 8.520033], [47.417245, 8.522804], [47.42611, 8.543171], [47.381169, 8.504099], [47.390719, 8.515125], [47.361811, 8.560241], [47.394907, 8.536484], [47.339048, 8.519256], [47.414728, 8.559434], [47.368815, 8.524838], [47.414422, 8.545487], [47.381015, 8.491435], [47.408556, 8.546518], [47.373223, 8.535177], [47.387314, 8.552592], [47.386082, 8.504912], [47.379596, 8.567462], [47.395819, 8.528581], [47.371537, 8.547893], [47.369379, 8.499878], [47.352791, 8.525187], [47.371876, 8.529336], [47.383701, 8.588131], [47.370147, 8.504474], [47.37287, 8.546742], [47.373201, 8.503913], [47.407381, 8.547076], [47.374468, 8.552655], [47.400632, 8.534151], [47.418539, 8.547653], [47.385769, 8.492906], [47.377152, 8.535416], [47.371745, 8.473152], [47.419447, 8.506574], [47.396463, 8.504802], [47.36971, 8.507908], [47.409026, 8.550065], [47.362485, 8.526417], [47.408611, 8.546413], [47.370197, 8.548819], [47.365321, 8.546983], [47.380328, 8.503672], [47.388513, 8.489901], [47.369375, 8.532224], [47.374643, 8.495838], [47.404234, 8.561002], [47.377739, 8.537984], [47.373002, 8.485318], [47.373067, 8.536537], [47.356649, 8.534849], [47.398979, 8.533044], [47.380823, 8.549477], [47.371357, 8.515542], [47.372167, 8.539379], [47.398688, 8.539079], [47.410375, 8.539718], [47.369628, 8.540571], [47.394726, 8.478274], [47.37741, 8.500117], [47.356364, 8.591777], [47.427825, 8.490465], [47.387036, 8.519355], [47.370925, 8.502054], [47.381119, 8.528784], [47.409056, 8.539359], [47.361545, 8.506659], [47.393309, 8.542783], [47.404399, 8.50361], [47.36814, 8.523911], [47.404659, 8.574578], [47.375844, 8.529205], [47.410859, 8.563222], [47.398778, 8.539015], [47.34761, 8.532731], [47.397717, 8.533309], [47.369922, 8.511236], [47.371186, 8.523244], [47.367393, 8.546668], [47.408958, 8.543969], [47.386872, 8.497233], [47.366466, 8.544862], [47.356942, 8.507361], [47.377674, 8.538195], [47.417172, 8.541939], [47.378929, 8.542459], [47.375382, 8.526667], [47.411703, 8.549512], [47.365251, 8.520158], [47.385232, 8.547397], [47.370461, 8.475881], [47.405581, 8.54998], [47.394529, 8.546888], [47.379492, 8.516156], [47.370568, 8.535413], [47.364478, 8.531608], [47.408874, 8.558357], [47.426497, 8.536579], [47.402478, 8.553678], [47.369407, 8.525896], [47.366657, 8.507304], [47.364167, 8.526425], [47.37461, 8.536], [47.366769, 8.532833], [47.381688, 8.541827], [47.379142, 8.495649], [47.370519, 8.51767], [47.37459, 8.566999], [47.388171, 8.486014], [47.40054, 8.588971], [47.373545, 8.534508], [47.390728, 8.536133], [47.386547, 8.539742], [47.396372, 8.543244], [47.369333, 8.547874], [47.40257, 8.469246], [47.381131, 8.517898], [47.396898, 8.509288], [47.340414, 8.537453], [47.392626, 8.494565], [47.378301, 8.509802], [47.399286, 8.495201], [47.337614, 8.530131], [47.3764, 8.54912], [47.382719, 8.515493], [47.419596, 8.548073], [47.369871, 8.533982], [47.362597, 8.568135], [47.370674, 8.516441], [47.374878, 8.527623], [47.391903, 8.518301], [47.391908, 8.517838], [47.357655, 8.509017], [47.392087, 8.517894], [47.371846, 8.60154], [47.367531, 8.537893], [47.377025, 8.544048], [47.375294, 8.550064], [47.367108, 8.539778], [47.331043, 8.536374], [47.370224, 8.518405], [47.358972, 8.516417], [47.422224, 8.512687], [47.410607, 8.538066], [47.381599, 8.548275], [47.348099, 8.534342], [47.419641, 8.555575], [47.370416, 8.514265], [47.384921, 8.537563], [47.381463, 8.490716], [47.37995, 8.521039], [47.387341, 8.543202], [47.378132, 8.509627], [47.370278, 8.51164], [47.358167, 8.526501], [47.36196, 8.559728], [47.364559, 8.566257], [47.375233, 8.518586], [47.360021, 8.500274], [47.401207, 8.492656], [47.397024, 8.540939], [47.386035, 8.492382], [47.37981, 8.520612], [47.403579, 8.53449], [47.379102, 8.561876], [47.366665, 8.535267], [47.368273, 8.5116], [47.385629, 8.533194], [47.385106, 8.532296], [47.375446, 8.544585], [47.394164, 8.525673], [47.399739, 8.541075], [47.387634, 8.533208], [47.419681, 8.535431], [47.394278, 8.539319], [47.374443, 8.549675], [47.392683, 8.515694], [47.419753, 8.482924], [47.40216, 8.535295], [47.351735, 8.563127], [47.359071, 8.550586], [47.397326, 8.531871], [47.370372, 8.518037], [47.396225, 8.522708], [47.375717, 8.536883], [47.39659, 8.528769], [47.368578, 8.528991], [47.37719, 8.539893], [47.37683, 8.52761], [47.337152, 8.520978], [47.389673, 8.511514], [47.372812, 8.529196], [47.411805, 8.512994], [47.358854, 8.553467], [47.413784, 8.545341], [47.366102, 8.548085], [47.376664, 8.534731], [47.35205, 8.505277], [47.374049, 8.54482], [47.387747, 8.498946], [47.368705, 8.500844], [47.376932, 8.507073], [47.398523, 8.494974], [47.41425, 8.566938], [47.379971, 8.515888], [47.360976, 8.535732], [47.390804, 8.47429], [47.402701, 8.517924], [47.373822, 8.519445], [47.361539, 8.531402], [47.380996, 8.532264], [47.366929, 8.547254], [47.351143, 8.560162], [47.366942, 8.492998], [47.374111, 8.516378], [47.381682, 8.51375], [47.330533, 8.514056], [47.351805, 8.534366], [47.360623, 8.561183], [47.367086, 8.544001], [47.382485, 8.529858], [47.408717, 8.549396], [47.406862, 8.550603], [47.365183, 8.526472], [47.347872, 8.562648], [47.377458, 8.541991], [47.375869, 8.544527], [47.339801, 8.529117], [47.422047, 8.550416], [47.397262, 8.536678], [47.376482, 8.549056], [47.373717, 8.513298], [47.386043, 8.539758], [47.382558, 8.529753], [47.390076, 8.544093], [47.375587, 8.528803], [47.373391, 8.538332], [47.40581, 8.481034], [47.354145, 8.523771], [47.370374, 8.522539], [47.366184, 8.497127], [47.413272, 8.545357], [47.393952, 8.513707], [47.359083, 8.578836], [47.409803, 8.549724], [47.385828, 8.519622], [47.36153, 8.561387], [47.359242, 8.569944], [47.399962, 8.495029], [47.369133, 8.557456], [47.358314, 8.520428], [47.376681, 8.548967], [47.383925, 8.529781], [47.373631, 8.518633], [47.37436, 8.541463], [47.391959, 8.518144], [47.393873, 8.497968], [47.368598, 8.520133], [47.379058, 8.522213], [47.381514, 8.528792], [47.378462, 8.515659], [47.37778, 8.507779], [47.371014, 8.548002], [47.379278, 8.537884], [47.38828, 8.48681], [47.399434, 8.520998], [47.392405, 8.524299], [47.352361, 8.56261], [47.39598, 8.527657], [47.373586, 8.534919], [47.393776, 8.510338], [47.387347, 8.529401], [47.373388, 8.534915], [47.389199, 8.527505], [47.373025, 8.531425], [47.363131, 8.548341], [47.36539, 8.535082], [47.38752, 8.488345], [47.425735, 8.547644], [47.376789, 8.517571], [47.416983, 8.545725], [47.360989, 8.567015], [47.403844, 8.576893], [47.37283, 8.529197], [47.409352, 8.544136], [47.361123, 8.567111], [47.367319, 8.490092], [47.384124, 8.497695], [47.37843, 8.51044], [47.375346, 8.523766], [47.410709, 8.524407], [47.352192, 8.529529], [47.371838, 8.510321], [47.375358, 8.543364], [47.385815, 8.533462], [47.380088, 8.553819], [47.406235, 8.551186], [47.393273, 8.492684], [47.383261, 8.531476], [47.401162, 8.49957], [47.371505, 8.534294], [47.377914, 8.530003], [47.377269, 8.557017], [47.399913, 8.591435], [47.408184, 8.577396], [47.370769, 8.515013], [47.369952, 8.543425], [47.372176, 8.530891], [47.378022, 8.536626], [47.381199, 8.528878], [47.376312, 8.489356], [47.40048, 8.550139], [47.372654, 8.550499], [47.390764, 8.522742], [47.421924, 8.510136], [47.421085, 8.548461], [47.371406, 8.5465], [47.423991, 8.511225], [47.423016, 8.543147], [47.362172, 8.533877], [47.3412, 8.52761], [47.414346, 8.539323], [47.349807, 8.575395], [47.39963, 8.520246], [47.34381, 8.535088], [47.357973, 8.555262], [47.394138, 8.527527], [47.381933, 8.529211], [47.396089, 8.483718], [47.396011, 8.54529], [47.406916, 8.481109], [47.415649, 8.570108], [47.37789, 8.533485], [47.374629, 8.553718], [47.369201, 8.532499], [47.38594, 8.542034], [47.361337, 8.512572], [47.407882, 8.547431], [47.366865, 8.562214], [47.38781, 8.49892], [47.391492, 8.538997], [47.392635, 8.524741], [47.359915, 8.548869], [47.383417, 8.499336], [47.394845, 8.529753], [47.387961, 8.474341], [47.394957, 8.540671], [47.383886, 8.531012], [47.393351, 8.495984], [47.369998, 8.54328], [47.370789, 8.524362], [47.377611, 8.528752], [47.363546, 8.571399], [47.372009, 8.554881], [47.391406, 8.541419], [47.364068, 8.533108], [47.401363, 8.593083], [47.361694, 8.574033], [47.391333, 8.478486], [47.36027, 8.56148], [47.374705, 8.568127], [47.411806, 8.537786], [47.375848, 8.521115], [47.367735, 8.498746], [47.365669, 8.545428], [47.372337, 8.523268], [47.406817, 8.550576], [47.375494, 8.563826], [47.377598, 8.518594], [47.374002, 8.526069], [47.407042, 8.585574], [47.382639, 8.529689], [47.397665, 8.509105], [47.386086, 8.539958], [47.377486, 8.543806], [47.357355, 8.553184], [47.373853, 8.57616], [47.375379, 8.516378], [47.371967, 8.556416], [47.390117, 8.510132], [47.363951, 8.531266], [47.375481, 8.524722], [47.390739, 8.522516], [47.368845, 8.501257], [47.373832, 8.536474], [47.41628, 8.545817], [47.421483, 8.55014], [47.407933, 8.50853], [47.349236, 8.522546], [47.370106, 8.548883], [47.370647, 8.522227], [47.372685, 8.53412], [47.392834, 8.532202], [47.394028, 8.493706], [47.388706, 8.520634], [47.367869, 8.523985], [47.374534, 8.490009], [47.379839, 8.506893], [47.377485, 8.541978], [47.39302, 8.492798], [47.402099, 8.499417], [47.363248, 8.53521], [47.375596, 8.539225], [47.400348, 8.537616], [47.35708, 8.535785], [47.336929, 8.518869], [47.377413, 8.499786], [47.427023, 8.491576], [47.394731, 8.524704], [47.371301, 8.549941], [47.373832, 8.536474], [47.378708, 8.575442], [47.372296, 8.518143], [47.399398, 8.540034], [47.375983, 8.528745], [47.422318, 8.53905], [47.364541, 8.537275], [47.367461, 8.494226], [47.408177, 8.558766], [47.38732, 8.499361], [47.37268, 8.53841], [47.368333, 8.524404], [47.363111, 8.517268], [47.388174, 8.540756], [47.379263, 8.524336], [47.351038, 8.563588], [47.398782, 8.532894], [47.361418, 8.532776], [47.421701, 8.550873], [47.385962, 8.528393], [47.403957, 8.590038], [47.370798, 8.519582], [47.379453, 8.529915], [47.37843, 8.532476], [47.377117, 8.559689], [47.373904, 8.538329], [47.367795, 8.534708], [47.410819, 8.545014], [47.373005, 8.512437], [47.363904, 8.547509], [47.400662, 8.492314], [47.374385, 8.552931], [47.382395, 8.534571], [47.419193, 8.546977], [47.390051, 8.546769], [47.369124, 8.53782], [47.383399, 8.586853], [47.381397, 8.542139], [47.330993, 8.515878], [47.369402, 8.540659], [47.391916, 8.48467], [47.360391, 8.535773], [47.398352, 8.585598], [47.399593, 8.468181], [47.413121, 8.541391], [47.370582, 8.515778], [47.410286, 8.53113], [47.374073, 8.5498], [47.414638, 8.542629], [47.355439, 8.513301], [47.363673, 8.532081], [47.387147, 8.519053], [47.369164, 8.556119], [47.367366, 8.487962], [47.370143, 8.548791], [47.398175, 8.53622], [47.406733, 8.547169], [47.411145, 8.550441], [47.370161, 8.548805], [47.383828, 8.497676], [47.374133, 8.502369], [47.379533, 8.544153], [47.385533, 8.517484], [47.378527, 8.568247], [47.389718, 8.511502], [47.364604, 8.566205], [47.357538, 8.553744], [47.388438, 8.473356], [47.407609, 8.546803], [47.399864, 8.504685], [47.414601, 8.551136], [47.390463, 8.479211], [47.407065, 8.576869], [47.375913, 8.53608], [47.394642, 8.513946], [47.363098, 8.506002], [47.358309, 8.580673], [47.376855, 8.54864], [47.360711, 8.525692], [47.404092, 8.534461], [47.391391, 8.512516], [47.360153, 8.534246], [47.359587, 8.524716], [47.362566, 8.54719], [47.338851, 8.538241], [47.350773, 8.579559], [47.367083, 8.523373], [47.400655, 8.501839], [47.416368, 8.546057], [47.38716, 8.494258], [47.365975, 8.545341], [47.369644, 8.539883], [47.363909, 8.520382], [47.385235, 8.536709], [47.379187, 8.538054], [47.42034, 8.503358], [47.421503, 8.501129], [47.361769, 8.578258], [47.373413, 8.531301], [47.391931, 8.518275], [47.363715, 8.575268], [47.409286, 8.553807], [47.397972, 8.533871], [47.376359, 8.527018], [47.380961, 8.528383], [47.362222, 8.547488], [47.418485, 8.503639], [47.385988, 8.51797], [47.410203, 8.543637], [47.395425, 8.540668], [47.412519, 8.568239], [47.393619, 8.535769], [47.365055, 8.54568], [47.367426, 8.53944], [47.352645, 8.508996], [47.37017, 8.548805], [47.390481, 8.512656], [47.367382, 8.494065], [47.373008, 8.562251], [47.360621, 8.550221], [47.363011, 8.512487], [47.414114, 8.546646], [47.38966, 8.512944], [47.379296, 8.508233], [47.369169, 8.527348], [47.351944, 8.525315], [47.349101, 8.533039], [47.383402, 8.484198], [47.368333, 8.524378], [47.38311, 8.50623], [47.409888, 8.549235], [47.402567, 8.556581], [47.38621, 8.518279], [47.365936, 8.58085], [47.371522, 8.542927], [47.369446, 8.526532], [47.36921, 8.543886], [47.366328, 8.536677], [47.403234, 8.534854], [47.394302, 8.541466], [47.375741, 8.540962], [47.360674, 8.553161], [47.391575, 8.53219], [47.410785, 8.556038], [47.368903, 8.500861], [47.363478, 8.564513], [47.392159, 8.492569], [47.387547, 8.572121], [47.346573, 8.533041], [47.378118, 8.520777], [47.375096, 8.582291], [47.427612, 8.491137], [47.396046, 8.545343], [47.374592, 8.520784], [47.37977, 8.526796], [47.37762, 8.516264], [47.375362, 8.557918], [47.368117, 8.515807], [47.360602, 8.56984], [47.378412, 8.540991], [47.365286, 8.553403], [47.388958, 8.515831], [47.377927, 8.537154], [47.385398, 8.545096], [47.36475, 8.56781], [47.417124, 8.544151], [47.391563, 8.534375], [47.375031, 8.545596], [47.411839, 8.51314], [47.393801, 8.502815], [47.357574, 8.521591], [47.401506, 8.487495], [47.353646, 8.554351], [47.41334, 8.53151], [47.395766, 8.532223], [47.371031, 8.547168], [47.364531, 8.534521], [47.398837, 8.54038], [47.366528, 8.542083], [47.372191, 8.547258], [47.404954, 8.557175], [47.377413, 8.515333], [47.387006, 8.534056], [47.340978, 8.518726], [47.405074, 8.481854], [47.382688, 8.543477], [47.366529, 8.544876], [47.366315, 8.540834], [47.379115, 8.508296], [47.362047, 8.518491], [47.405202, 8.557564], [47.385396, 8.528315], [47.381294, 8.510101], [47.384404, 8.548399], [47.407615, 8.584036], [47.367095, 8.543974], [47.366728, 8.541862], [47.368756, 8.501216], [47.370943, 8.523239], [47.379912, 8.544028], [47.408127, 8.553664], [47.369689, 8.52561], [47.3932, 8.530634], [47.340977, 8.536935], [47.371267, 8.529946], [47.40614, 8.553662], [47.413017, 8.536208], [47.381203, 8.491571], [47.376477, 8.518293], [47.404064, 8.563608], [47.425654, 8.509442], [47.374939, 8.527863], [47.413596, 8.477397], [47.368968, 8.538095], [47.38253, 8.514509], [47.422262, 8.539208], [47.375886, 8.540886], [47.376728, 8.548703], [47.408372, 8.550648], [47.427922, 8.490692], [47.411384, 8.485277], [47.413885, 8.547079], [47.355021, 8.562852], [47.379095, 8.525895], [47.407745, 8.583628], [47.369259, 8.534923], [47.3736, 8.53631], [47.357016, 8.55838], [47.371432, 8.534412], [47.35285, 8.526551], [47.385381, 8.5365], [47.385814, 8.532575], [47.359097, 8.531855], [47.387421, 8.539575], [47.399587, 8.547537], [47.36481, 8.502766], [47.374297, 8.538615], [47.389917, 8.512301], [47.384521, 8.539952], [47.35873, 8.517299], [47.341829, 8.530561], [47.36653, 8.540918], [47.407524, 8.584961], [47.404786, 8.57262], [47.383394, 8.484026], [47.344338, 8.526867], [47.357585, 8.552646], [47.373694, 8.481452], [47.354392, 8.509772], [47.378199, 8.534153], [47.376563, 8.543429], [47.40249, 8.493065], [47.37395, 8.517196], [47.370967, 8.548212], [47.372744, 8.547759], [47.375302, 8.484622], [47.367757, 8.533939], [47.376052, 8.497137], [47.361793, 8.507101], [47.431053, 8.550233], [47.370188, 8.548805], [47.383624, 8.532093], [47.349664, 8.561508], [47.377086, 8.529125], [47.392272, 8.526972], [47.392044, 8.499217], [47.375039, 8.558758], [47.406726, 8.574742], [47.371691, 8.517429], [47.381411, 8.550986], [47.370939, 8.53795], [47.383564, 8.515497], [47.406223, 8.582893], [47.377066, 8.515909], [47.365032, 8.567564], [47.397508, 8.493894], [47.375257, 8.522692], [47.376318, 8.525587], [47.383957, 8.508088], [47.414099, 8.54161], [47.40259, 8.581808], [47.375269, 8.511794], [47.359063, 8.549487], [47.401989, 8.537147], [47.41406, 8.541888], [47.393801, 8.496933], [47.414152, 8.551087], [47.344084, 8.529906], [47.354987, 8.556113], [47.344117, 8.531151], [47.365486, 8.539109], [47.356137, 8.53562], [47.358547, 8.531989], [47.381804, 8.543723], [47.360912, 8.53581], [47.387975, 8.485785], [47.38952, 8.540148], [47.380462, 8.512494], [47.376181, 8.53443], [47.383025, 8.515433], [47.391547, 8.542654], [47.414524, 8.53384], [47.387746, 8.48623], [47.37999, 8.536852], [47.390061, 8.537166], [47.374505, 8.546061], [47.377741, 8.537839], [47.389698, 8.524204], [47.364086, 8.56679], [47.385525, 8.527033], [47.383526, 8.573028], [47.35955, 8.593369], [47.355238, 8.523185], [47.377378, 8.512366], [47.420576, 8.550041], [47.369199, 8.527931], [47.391439, 8.538956], [47.381176, 8.513078], [47.390032, 8.511548], [47.343945, 8.5303], [47.423629, 8.543014], [47.362276, 8.564183], [47.370215, 8.548793], [47.364761, 8.566711], [47.397185, 8.493768], [47.349683, 8.527612], [47.339364, 8.527732], [47.389397, 8.493574], [47.377366, 8.51945], [47.373907, 8.544659], [47.373518, 8.531647], [47.362495, 8.547162], [47.37333, 8.531498], [47.39185, 8.542951], [47.364059, 8.531202], [47.39339, 8.542811], [47.3665, 8.540361], [47.376114, 8.488412], [47.369542, 8.466952], [47.385339, 8.507401], [47.398019, 8.474152], [47.42042, 8.50837], [47.339994, 8.530524], [47.384124, 8.497695], [47.37586, 8.577844], [47.358107, 8.551625], [47.351073, 8.580161], [47.364022, 8.497494], [47.409959, 8.532342], [47.369997, 8.525325], [47.36831, 8.546727], [47.397447, 8.489667], [47.371531, 8.534347], [47.365444, 8.545449], [47.360373, 8.564672], [47.374986, 8.547462], [47.382829, 8.497762], [47.360077, 8.535687], [47.368634, 8.483021], [47.360697, 8.5357], [47.369014, 8.53795], [47.414988, 8.527502], [47.363434, 8.533625], [47.368219, 8.546818], [47.389356, 8.469255], [47.378284, 8.510623], [47.393344, 8.497772], [47.370363, 8.550252], [47.405662, 8.585054], [47.377879, 8.546012], [47.382531, 8.551393], [47.414452, 8.553558], [47.410649, 8.571884], [47.403107, 8.547199], [47.403055, 8.534784], [47.387895, 8.520763], [47.380162, 8.528155], [47.399002, 8.541974], [47.343963, 8.5303], [47.388787, 8.489456], [47.421203, 8.550253], [47.388085, 8.488568], [47.418926, 8.507452], [47.3701, 8.544818], [47.374538, 8.539772], [47.393776, 8.510365], [47.373502, 8.542796], [47.3712, 8.510176], [47.381222, 8.503279], [47.408583, 8.546478], [47.364323, 8.555329], [47.383193, 8.506033], [47.402115, 8.535255], [47.382463, 8.528334], [47.343391, 8.519463], [47.360316, 8.553869], [47.426921, 8.510568], [47.397693, 8.508933], [47.397358, 8.531275], [47.366781, 8.540062], [47.365621, 8.532465], [47.392944, 8.530072], [47.377098, 8.541057], [47.410942, 8.567702], [47.359475, 8.522265], [47.377812, 8.482658], [47.379002, 8.544221], [47.366958, 8.544197], [47.37797, 8.536413], [47.367851, 8.601651], [47.406652, 8.553739], [47.392127, 8.51261], [47.368813, 8.557979], [47.404294, 8.500375], [47.39405, 8.493348], [47.409235, 8.537601], [47.360349, 8.500784], [47.384141, 8.574538], [47.349875, 8.533902], [47.412628, 8.512493], [47.340763, 8.530142], [47.379263, 8.515648], [47.358035, 8.555356], [47.358705, 8.516054], [47.388769, 8.489522], [47.340523, 8.537336], [47.360728, 8.597975], [47.366753, 8.545821], [47.37396, 8.542885], [47.402555, 8.469908], [47.354312, 8.575518], [47.358054, 8.526035], [47.399511, 8.540434], [47.389889, 8.54205], [47.371384, 8.555384], [47.40448, 8.55694], [47.378055, 8.526523], [47.366555, 8.559864], [47.361364, 8.549667], [47.363587, 8.575411], [47.374512, 8.521564], [47.373259, 8.542818], [47.370847, 8.508487], [47.398096, 8.532231], [47.390037, 8.480514], [47.373032, 8.534511], [47.382922, 8.513895], [47.402155, 8.497205], [47.331384, 8.512552], [47.379808, 8.494643], [47.392564, 8.515944], [47.352606, 8.503488], [47.374594, 8.538661], [47.410519, 8.550004], [47.377719, 8.541983], [47.425717, 8.526807], [47.420396, 8.53587], [47.3901, 8.474554], [47.35712, 8.522085], [47.409258, 8.571536], [47.379205, 8.538054], [47.365008, 8.545877], [47.395047, 8.486599], [47.417679, 8.546283], [47.397002, 8.480292], [47.396439, 8.506471], [47.391325, 8.544252], [47.379289, 8.544346], [47.366031, 8.545184], [47.412871, 8.543944], [47.392221, 8.523752], [47.382904, 8.543441], [47.374751, 8.512406], [47.38867, 8.537812], [47.352817, 8.527173], [47.391395, 8.47858], [47.370932, 8.548079], [47.409279, 8.5731], [47.408799, 8.546456], [47.38316, 8.540228], [47.364914, 8.537826], [47.384986, 8.508678], [47.358645, 8.515801], [47.368015, 8.540856], [47.392368, 8.503131], [47.339307, 8.531899], [47.335736, 8.518488], [47.37983, 8.525261], [47.369689, 8.525584], [47.3729, 8.535183], [47.390718, 8.536252], [47.368916, 8.534055], [47.362627, 8.519986], [47.387818, 8.52708], [47.373545, 8.538229], [47.369879, 8.466575], [47.404525, 8.549441], [47.389073, 8.529463], [47.349983, 8.533865], [47.359906, 8.535671], [47.409196, 8.550095], [47.336598, 8.539598], [47.400202, 8.537759], [47.367486, 8.545386], [47.35986, 8.535749], [47.370474, 8.534842], [47.359388, 8.549361], [47.395415, 8.514028], [47.378581, 8.510642], [47.389244, 8.515069], [47.404768, 8.483875], [47.379939, 8.544042], [47.390636, 8.522038], [47.379655, 8.529522], [47.424046, 8.500424], [47.408027, 8.542558], [47.37138, 8.510232], [47.375615, 8.530591], [47.370921, 8.531329], [47.363161, 8.520513], [47.369264, 8.556029], [47.430485, 8.540956], [47.373353, 8.531988], [47.430955, 8.550112], [47.355096, 8.556976], [47.378354, 8.5414], [47.421246, 8.549552], [47.367918, 8.512016], [47.400345, 8.489525], [47.34389, 8.535182], [47.352162, 8.558026], [47.386659, 8.495917], [47.37876, 8.575602], [47.34937, 8.53593], [47.357029, 8.552397], [47.392681, 8.52551], [47.366699, 8.494965], [47.364141, 8.529151], [47.369319, 8.541809], [47.385397, 8.542434], [47.427422, 8.546155], [47.42706, 8.546399], [47.381809, 8.529976], [47.419707, 8.546776], [47.375785, 8.487915], [47.379397, 8.555579], [47.384762, 8.527852], [47.389664, 8.511514], [47.369529, 8.520602], [47.376182, 8.536178], [47.40898, 8.55013], [47.36134, 8.554062], [47.374442, 8.517524], [47.384445, 8.531885], [47.412114, 8.546035], [47.345174, 8.534534], [47.40523, 8.577757], [47.36445, 8.5552], [47.403664, 8.571443], [47.351821, 8.526901], [47.39478, 8.536654], [47.384405, 8.531288], [47.375535, 8.520883], [47.363914, 8.553931], [47.392083, 8.497932], [47.377639, 8.543743], [47.373785, 8.519484], [47.361995, 8.548674], [47.373814, 8.536473], [47.414394, 8.537999], [47.38204, 8.492462], [47.341668, 8.519997], [47.37696, 8.543252], [47.402873, 8.557555], [47.386832, 8.481868], [47.344046, 8.528264], [47.374141, 8.502422], [47.381846, 8.528878], [47.378378, 8.521762], [47.410804, 8.558742], [47.354233, 8.563404], [47.378429, 8.541084], [47.370152, 8.548804], [47.390756, 8.53314], [47.373264, 8.547876], [47.370103, 8.56411], [47.410858, 8.546618], [47.369792, 8.513656], [47.399731, 8.518102], [47.390741, 8.528067], [47.386166, 8.518119], [47.368227, 8.496055], [47.404859, 8.548375], [47.360524, 8.523557], [47.377758, 8.543586], [47.377247, 8.538636], [47.357279, 8.572933], [47.394714, 8.525538], [47.36209, 8.549034], [47.358648, 8.547797], [47.378934, 8.510371], [47.399513, 8.54307], [47.396777, 8.541371], [47.420587, 8.538511], [47.37378, 8.544735], [47.379002, 8.544221], [47.424392, 8.512611], [47.359866, 8.507274], [47.389626, 8.521394], [47.408498, 8.574779], [47.370454, 8.510161], [47.413763, 8.546652], [47.373973, 8.495255], [47.397951, 8.474694], [47.418532, 8.552994], [47.37069, 8.51668], [47.408108, 8.547237], [47.38509, 8.536878], [47.36712, 8.5366], [47.412455, 8.523369], [47.41447, 8.51754], [47.386524, 8.48908], [47.3746, 8.484741], [47.366239, 8.540369], [47.373727, 8.533333], [47.388348, 8.480322], [47.402396, 8.499383], [47.386954, 8.473288], [47.400288, 8.516259], [47.405854, 8.581109], [47.400747, 8.588114], [47.38829, 8.519977], [47.390778, 8.524213], [47.361328, 8.547813], [47.379823, 8.527843], [47.358656, 8.535618], [47.346913, 8.56321], [47.37534, 8.516787], [47.385814, 8.532601], [47.369193, 8.571572], [47.406642, 8.546266], [47.354609, 8.555232], [47.348522, 8.534351], [47.374263, 8.525081], [47.390941, 8.523064], [47.379099, 8.553838], [47.391529, 8.538944], [47.375748, 8.558985], [47.374531, 8.551743], [47.365261, 8.53067], [47.370003, 8.52085], [47.364749, 8.554107], [47.417078, 8.512782], [47.362708, 8.562312], [47.335828, 8.540204], [47.392078, 8.492541], [47.384805, 8.531786], [47.378489, 8.541443], [47.396738, 8.529328], [47.373836, 8.502363], [47.402339, 8.493764], [47.393417, 8.500608], [47.386356, 8.496627], [47.386495, 8.496232], [47.369679, 8.525663], [47.371512, 8.519186], [47.358486, 8.527024], [47.371352, 8.547426], [47.384929, 8.531047], [47.36879, 8.524639], [47.362604, 8.614339], [47.426995, 8.54661], [47.374084, 8.527872], [47.42487, 8.537407], [47.392507, 8.549522], [47.379277, 8.550266], [47.353437, 8.57673], [47.391094, 8.523067], [47.369691, 8.553681], [47.40638, 8.480674], [47.387617, 8.500334], [47.41228, 8.546489], [47.389925, 8.491916], [47.371438, 8.547904], [47.399144, 8.542175], [47.364856, 8.563496], [47.391674, 8.513912], [47.371935, 8.518202], [47.377777, 8.537826], [47.343483, 8.535412], [47.426324, 8.554668], [47.385211, 8.485094], [47.349988, 8.527658], [47.346233, 8.564638], [47.397969, 8.515126], [47.394142, 8.475189], [47.350988, 8.52654], [47.383483, 8.534606], [47.38376, 8.498244], [47.392112, 8.511365], [47.411232, 8.52614], [47.369115, 8.541501], [47.357435, 8.572606], [47.368221, 8.496743], [47.372581, 8.534621], [47.38314, 8.513661], [47.376864, 8.525916], [47.377723, 8.507089], [47.380332, 8.519656], [47.42384, 8.516855], [47.426576, 8.492336], [47.405753, 8.577636], [47.386208, 8.525153], [47.387396, 8.519402], [47.366913, 8.52329], [47.373617, 8.536377], [47.368461, 8.517469], [47.368435, 8.517389], [47.401679, 8.5059], [47.389768, 8.522523], [47.374025, 8.544542], [47.392684, 8.545141], [47.37292, 8.526365], [47.392337, 8.523834], [47.401598, 8.586622], [47.366027, 8.532341], [47.376021, 8.541829], [47.380621, 8.512802], [47.366682, 8.535426], [47.369716, 8.525558], [47.373218, 8.519552], [47.3742, 8.52226], [47.372158, 8.520325], [47.351814, 8.525749], [47.376658, 8.559719], [47.377507, 8.504224], [47.373278, 8.532265], [47.392722, 8.524093], [47.420757, 8.547063], [47.383065, 8.575111], [47.379054, 8.522583], [47.414717, 8.546579], [47.402754, 8.530432], [47.388134, 8.520225], [47.383877, 8.577566], [47.366573, 8.540217], [47.401702, 8.553966], [47.412109, 8.566058], [47.379996, 8.528589], [47.371513, 8.542848], [47.387337, 8.518898], [47.378821, 8.519626], [47.373844, 8.535176], [47.368743, 8.528636], [47.364799, 8.566553], [47.365106, 8.500958], [47.329809, 8.529826], [47.365388, 8.539067], [47.36838, 8.547841], [47.361774, 8.525555], [47.385511, 8.520887], [47.40057, 8.477606], [47.390517, 8.491106], [47.415221, 8.546563], [47.38328, 8.530391], [47.34512, 8.53358], [47.364201, 8.547489], [47.366936, 8.536133], [47.374895, 8.534417], [47.372234, 8.532362], [47.420967, 8.549506], [47.381862, 8.515741], [47.392356, 8.539014], [47.358355, 8.55208], [47.372033, 8.538396], [47.388026, 8.539309], [47.389669, 8.511951], [47.370554, 8.512957], [47.391829, 8.517611], [47.377418, 8.535806], [47.377787, 8.537694], [47.369084, 8.527796], [47.356909, 8.535834], [47.36877, 8.524824], [47.410774, 8.545013], [47.371487, 8.5228], [47.375368, 8.485312], [47.350213, 8.53428], [47.37017, 8.548792], [47.352851, 8.573236], [47.412158, 8.546076], [47.379397, 8.544309], [47.339996, 8.530312], [47.406675, 8.582664], [47.381183, 8.538188], [47.369464, 8.526572], [47.380667, 8.568332], [47.3635, 8.550202], [47.340686, 8.537247], [47.37191, 8.542803], [47.361751, 8.515506], [47.3744, 8.516239], [47.397692, 8.522618], [47.410322, 8.53769], [47.390676, 8.48948], [47.390369, 8.539808], [47.369434, 8.52591], [47.357856, 8.588302], [47.367429, 8.489843], [47.370058, 8.564096], [47.37871, 8.529529], [47.369495, 8.536583], [47.370716, 8.516747], [47.40848, 8.574766], [47.353924, 8.526202], [47.357605, 8.550542], [47.376587, 8.544701], [47.370361, 8.522963], [47.369409, 8.513172], [47.362777, 8.548664], [47.392768, 8.523035], [47.378217, 8.527493], [47.371637, 8.547736], [47.367364, 8.494012], [47.354906, 8.556125], [47.377284, 8.543325], [47.380585, 8.558252], [47.377769, 8.540488], [47.392069, 8.524663], [47.414069, 8.482799], [47.353661, 8.553743], [47.36113, 8.53563], [47.377665, 8.529719], [47.365055, 8.54564], [47.37838, 8.530198], [47.380345, 8.494878], [47.34891, 8.533181], [47.399491, 8.495351], [47.363831, 8.531581], [47.358342, 8.515477], [47.401883, 8.500353], [47.416915, 8.5453], [47.387419, 8.486608], [47.377846, 8.509343], [47.367923, 8.564382], [47.360526, 8.535776], [47.370088, 8.511756], [47.361755, 8.51123], [47.392747, 8.545089], [47.379015, 8.559689], [47.377559, 8.555805], [47.422662, 8.540661], [47.377068, 8.55267], [47.37128, 8.522889], [47.372062, 8.521965], [47.384589, 8.493174], [47.342448, 8.530719], [47.36796, 8.501597], [47.357319, 8.521943], [47.36848, 8.528883], [47.429952, 8.549614], [47.394936, 8.517237], [47.349298, 8.570381], [47.389592, 8.511526], [47.365551, 8.566926], [47.411563, 8.525418], [47.356336, 8.527019], [47.369041, 8.537937], [47.366836, 8.544697], [47.383253, 8.530443], [47.3763, 8.544563], [47.348982, 8.574239], [47.403034, 8.536042], [47.356058, 8.535512], [47.397967, 8.532546], [47.367496, 8.555555], [47.396022, 8.545038], [47.384805, 8.531773], [47.377569, 8.574199], [47.363394, 8.534908], [47.401808, 8.499729], [47.374472, 8.562507], [47.357866, 8.520167], [47.395176, 8.524236], [47.410427, 8.543708], [47.380409, 8.542873], [47.368925, 8.501405], [47.358358, 8.583891], [47.383656, 8.588063], [47.37302, 8.532921], [47.411858, 8.515035], [47.370189, 8.525078], [47.375024, 8.518767], [47.3546, 8.555218], [47.394169, 8.493073], [47.341791, 8.530732], [47.369636, 8.526404], [47.378588, 8.523369], [47.376183, 8.540852], [47.377218, 8.553017], [47.383043, 8.530743], [47.377358, 8.527872], [47.377643, 8.574002], [47.368462, 8.521229], [47.372843, 8.533514], [47.368058, 8.560704], [47.370017, 8.543214], [47.374422, 8.541518], [47.392308, 8.544047], [47.373109, 8.532976], [47.367234, 8.545394], [47.383337, 8.543358], [47.36043, 8.547702], [47.407943, 8.582678], [47.367435, 8.541333], [47.366284, 8.557224], [47.37746, 8.522856], [47.385676, 8.530135], [47.354977, 8.557172], [47.372316, 8.502373], [47.366487, 8.556672], [47.38779, 8.532947], [47.401489, 8.499166], [47.366906, 8.545811], [47.369479, 8.520191], [47.359822, 8.57684], [47.380846, 8.549822], [47.425834, 8.493739], [47.396564, 8.541989], [47.398911, 8.533559], [47.363739, 8.535511], [47.368806, 8.500581], [47.374474, 8.529469], [47.420563, 8.502607], [47.420785, 8.53654], [47.42157, 8.538213], [47.341002, 8.519957], [47.380025, 8.547275], [47.370434, 8.514199], [47.364437, 8.536836], [47.408228, 8.569261], [47.367525, 8.600943], [47.426315, 8.554694], [47.359449, 8.535449], [47.419614, 8.507969], [47.372753, 8.535498], [47.383395, 8.515308], [47.383052, 8.53073], [47.405862, 8.581123], [47.368996, 8.537989], [47.397395, 8.532164], [47.373776, 8.519497], [47.38853, 8.536419], [47.360343, 8.523725], [47.344913, 8.52979], [47.410837, 8.545015], [47.375068, 8.524661], [47.400986, 8.491234], [47.364177, 8.556491], [47.404025, 8.556559], [47.347328, 8.533096], [47.385381, 8.5365], [47.37743, 8.512526], [47.365556, 8.546816], [47.363872, 8.535739], [47.369226, 8.527971], [47.375709, 8.54896], [47.360163, 8.533227], [47.358158, 8.550037], [47.430325, 8.542662], [47.353808, 8.571946], [47.41739, 8.553937], [47.363895, 8.546503], [47.37119, 8.488818], [47.404472, 8.55686], [47.377395, 8.500753], [47.371865, 8.542802], [47.379971, 8.528416], [47.389896, 8.50981], [47.354397, 8.523697], [47.37305, 8.534511], [47.37831, 8.556324], [47.368272, 8.536531], [47.336785, 8.537008], [47.349966, 8.560971], [47.350401, 8.534363], [47.381014, 8.535138], [47.359035, 8.551499], [47.326177, 8.513386], [47.427984, 8.545716], [47.389126, 8.542802], [47.428923, 8.488446], [47.370277, 8.548873], [47.399768, 8.542784], [47.415689, 8.548389], [47.383795, 8.550956], [47.365504, 8.539175], [47.362037, 8.506047], [47.363695, 8.520153], [47.381433, 8.506687], [47.37296, 8.546811], [47.399852, 8.477446], [47.407372, 8.562897], [47.388064, 8.488872], [47.378794, 8.519612], [47.352311, 8.507189], [47.363635, 8.549238], [47.387844, 8.490351], [47.338104, 8.538226], [47.375712, 8.539293], [47.341094, 8.536885], [47.386252, 8.518558], [47.364779, 8.53777], [47.395723, 8.508046], [47.376979, 8.52899], [47.376704, 8.544637], [47.360469, 8.552032], [47.353689, 8.553624], [47.376408, 8.527535], [47.37401, 8.554446], [47.423053, 8.551551], [47.371623, 8.515944], [47.37378, 8.537174], [47.374005, 8.501599], [47.414316, 8.53862], [47.374523, 8.546088], [47.379116, 8.516029], [47.384991, 8.495408], [47.426665, 8.492404], [47.393264, 8.478855], [47.409534, 8.479053], [47.405259, 8.578433], [47.36066, 8.524407], [47.391417, 8.477176], [47.393192, 8.52862], [47.404217, 8.573761], [47.376137, 8.553153], [47.413558, 8.546489], [47.360905, 8.502886], [47.42685, 8.491864], [47.384418, 8.547896], [47.377679, 8.511922], [47.334083, 8.518269], [47.357629, 8.588455], [47.387378, 8.488144], [47.376741, 8.483657], [47.377905, 8.530016], [47.423059, 8.542419], [47.363951, 8.533159], [47.344064, 8.53111], [47.362477, 8.518712], [47.383267, 8.484235], [47.384819, 8.534104], [47.366354, 8.540503], [47.378731, 8.514856], [47.36623, 8.540382], [47.391329, 8.522966], [47.364047, 8.56708], [47.377464, 8.518592], [47.383806, 8.533832], [47.339635, 8.528624], [47.364701, 8.545924], [47.376667, 8.497706], [47.405676, 8.549452], [47.377113, 8.540461], [47.431282, 8.54418], [47.392393, 8.492521], [47.353178, 8.527034], [47.377427, 8.535793], [47.382676, 8.483945], [47.404506, 8.55698], [47.403832, 8.565299], [47.368392, 8.546649], [47.360432, 8.526679], [47.354799, 8.526869], [47.375027, 8.539425], [47.377408, 8.526377], [47.374853, 8.538786], [47.39026, 8.510268], [47.373002, 8.485332], [47.430955, 8.550139], [47.402932, 8.580967], [47.357121, 8.555033], [47.409743, 8.544714], [47.370152, 8.548791], [47.38199, 8.571883], [47.402686, 8.492287], [47.375698, 8.526567], [47.358954, 8.527894], [47.384539, 8.480817], [47.406874, 8.556831], [47.387593, 8.535698], [47.385025, 8.495647], [47.380332, 8.540567], [47.42195, 8.538963], [47.353893, 8.559479], [47.4146, 8.559617], [47.387737, 8.544177], [47.402528, 8.490787], [47.368227, 8.536517], [47.353925, 8.600911], [47.371053, 8.528776], [47.371084, 8.547275], [47.37955, 8.532009], [47.354955, 8.554855], [47.375332, 8.549853], [47.356452, 8.535626], [47.341318, 8.530432], [47.364923, 8.51005], [47.375854, 8.488248], [47.36633, 8.544899], [47.367269, 8.54174], [47.34868, 8.573823], [47.40527, 8.555234], [47.369191, 8.527878], [47.408171, 8.556606], [47.366907, 8.543904], [47.366411, 8.547734], [47.377994, 8.530097], [47.355158, 8.557983], [47.375546, 8.513892], [47.34243, 8.530732], [47.367324, 8.541675], [47.380488, 8.519355], [47.365366, 8.54701], [47.378538, 8.52301], [47.388431, 8.487078], [47.364356, 8.547214], [47.382908, 8.481142], [47.364738, 8.554279], [47.367038, 8.544317], [47.413634, 8.528999], [47.4115, 8.567622], [47.370909, 8.543021], [47.406459, 8.576233], [47.408644, 8.550481], [47.378849, 8.527175], [47.378741, 8.527199], [47.378633, 8.559152], [47.370079, 8.548922], [47.370612, 8.543028], [47.375068, 8.547424], [47.377584, 8.509483], [47.424148, 8.49914], [47.376549, 8.543932], [47.423347, 8.551822], [47.41498, 8.545445], [47.373971, 8.540767], [47.399276, 8.542443], [47.406965, 8.495512], [47.414303, 8.546637], [47.376934, 8.540351], [47.373383, 8.536332], [47.384132, 8.528753], [47.373674, 8.534193], [47.373837, 8.524503], [47.383238, 8.499266], [47.384047, 8.52638], [47.37137, 8.562402], [47.377005, 8.543279], [47.373843, 8.540989], [47.391002, 8.52231], [47.357383, 8.572486], [47.391072, 8.522589], [47.367892, 8.519655], [47.387359, 8.516567], [47.373424, 8.524402], [47.397231, 8.532425], [47.425527, 8.547679], [47.378851, 8.527029], [47.375268, 8.516786], [47.377336, 8.499361], [47.396899, 8.519873], [47.374655, 8.550143], [47.371666, 8.525757], [47.416296, 8.545181], [47.370542, 8.469818], [47.402558, 8.492417], [47.387004, 8.494573], [47.368335, 8.524206], [47.367095, 8.521215], [47.371366, 8.515595], [47.350452, 8.57836], [47.334675, 8.528959], [47.374522, 8.539573], [47.368899, 8.501245], [47.378729, 8.556664], [47.397889, 8.534148], [47.368729, 8.548073], [47.387229, 8.518935], [47.378766, 8.542548], [47.374432, 8.539545], [47.369022, 8.538043], [47.390684, 8.538808], [47.39315, 8.474494], [47.405914, 8.581349], [47.410894, 8.563382], [47.387201, 8.519094], [47.403573, 8.547447], [47.393265, 8.530357], [47.393392, 8.50033], [47.355332, 8.527581], [47.3736, 8.534324], [47.394979, 8.512562], [47.373884, 8.546115], [47.380609, 8.514086], [47.335297, 8.541132], [47.369081, 8.541367], [47.406954, 8.587188], [47.400903, 8.502294], [47.425555, 8.547666], [47.383683, 8.573601], [47.404242, 8.561042], [47.368216, 8.538675], [47.378972, 8.543572], [47.369243, 8.528064], [47.40448, 8.556926], [47.402932, 8.580954], [47.378927, 8.527507], [47.383401, 8.586601], [47.359686, 8.557641], [47.391858, 8.538368], [47.367961, 8.539014], [47.38665, 8.520274], [47.390913, 8.522215], [47.392859, 8.489788], [47.378425, 8.548103], [47.396256, 8.540367], [47.404601, 8.557459], [47.394595, 8.524807], [47.353923, 8.511894], [47.392337, 8.523847], [47.371217, 8.536234], [47.415045, 8.544267], [47.333614, 8.528924], [47.398238, 8.541905], [47.381672, 8.529206], [47.371241, 8.523166], [47.371251, 8.523074], [47.339954, 8.537576], [47.369636, 8.543471], [47.390263, 8.523408], [47.347918, 8.56617], [47.377178, 8.526982], [47.396998, 8.512178], [47.398429, 8.591403], [47.370287, 8.556249], [47.357894, 8.550442], [47.37098, 8.546849], [47.420201, 8.549702], [47.371451, 8.550262], [47.367871, 8.494711], [47.402157, 8.552452], [47.386055, 8.521348], [47.366061, 8.533533], [47.392396, 8.524299], [47.387294, 8.499281], [47.351593, 8.525321], [47.37553, 8.560053], [47.381492, 8.483551], [47.361092, 8.506067], [47.407629, 8.489735], [47.377091, 8.541825], [47.37717, 8.522108], [47.343405, 8.530408], [47.372188, 8.522907], [47.340956, 8.524932], [47.367091, 8.544332], [47.388431, 8.487078], [47.387446, 8.52935], [47.384279, 8.528504], [47.377492, 8.509786], [47.382101, 8.530486], [47.382353, 8.530438], [47.357857, 8.596244], [47.421833, 8.503415], [47.377157, 8.510984], [47.366229, 8.545188], [47.374485, 8.521643], [47.375901, 8.535483], [47.380613, 8.525224], [47.360237, 8.523459], [47.363286, 8.548158], [47.363723, 8.535378], [47.37316, 8.512215], [47.35981, 8.525833], [47.386695, 8.547745], [47.404928, 8.557095], [47.378281, 8.540631], [47.349761, 8.564461], [47.346833, 8.564889], [47.367775, 8.49831], [47.363605, 8.567203], [47.369265, 8.525708], [47.375092, 8.553277], [47.369936, 8.524252], [47.367191, 8.533861], [47.363028, 8.533723], [47.364586, 8.566231], [47.352947, 8.524885], [47.340057, 8.530525], [47.405229, 8.593286], [47.409566, 8.537793], [47.376677, 8.5286], [47.391198, 8.469423], [47.379155, 8.546118], [47.378495, 8.521791], [47.358549, 8.526998], [47.379525, 8.488135], [47.380851, 8.538088], [47.364739, 8.554186], [47.363868, 8.531449], [47.360248, 8.566444], [47.370916, 8.525252], [47.400609, 8.54414], [47.334032, 8.534146], [47.391704, 8.518403], [47.373594, 8.534959], [47.367363, 8.55812], [47.372798, 8.554249], [47.390586, 8.479478], [47.365662, 8.539509], [47.411414, 8.546736], [47.385238, 8.530735], [47.354842, 8.574735], [47.403674, 8.571311], [47.363432, 8.54795], [47.400807, 8.50004], [47.369017, 8.529185], [47.406021, 8.484576], [47.384286, 8.507459], [47.367716, 8.534494], [47.358549, 8.526945], [47.360702, 8.570584], [47.409818, 8.537785], [47.351953, 8.558326], [47.371765, 8.488882], [47.413703, 8.553794], [47.363459, 8.532818], [47.334775, 8.529808], [47.378076, 8.526192], [47.378102, 8.541435], [47.363105, 8.5483], [47.351854, 8.505128], [47.368839, 8.552551], [47.378984, 8.54238], [47.376029, 8.522879], [47.367661, 8.509707], [47.366824, 8.543108], [47.373663, 8.542853], [47.423125, 8.538378], [47.426583, 8.51015], [47.371526, 8.515757], [47.385204, 8.537158], [47.385775, 8.548918], [47.394008, 8.50474], [47.410317, 8.52689], [47.38328, 8.530444], [47.369096, 8.537859], [47.360304, 8.567173], [47.373224, 8.494578], [47.356607, 8.551382], [47.372639, 8.534251], [47.37474, 8.549668], [47.395248, 8.540425], [47.366801, 8.522758], [47.363977, 8.546465], [47.403263, 8.534709], [47.343247, 8.535619], [47.363124, 8.559316], [47.376517, 8.524611], [47.367999, 8.540657], [47.362414, 8.554654], [47.425083, 8.537742], [47.352095, 8.573207], [47.374533, 8.5242], [47.395814, 8.530025], [47.359342, 8.56988], [47.361781, 8.518089], [47.370677, 8.514204], [47.366012, 8.536842], [47.359003, 8.554755], [47.409149, 8.547524], [47.378808, 8.509455], [47.376747, 8.52782], [47.401705, 8.581272], [47.429215, 8.487961], [47.392621, 8.488207], [47.367495, 8.529286], [47.374796, 8.525821], [47.39846, 8.538385], [47.399927, 8.494896], [47.409143, 8.571335], [47.376047, 8.510392], [47.360387, 8.523832], [47.379899, 8.494472], [47.379538, 8.527533], [47.366437, 8.54506], [47.379153, 8.526452], [47.386814, 8.514291], [47.369993, 8.518109], [47.37999, 8.536865], [47.377099, 8.541917], [47.391054, 8.522576], [47.397898, 8.534161], [47.404945, 8.557188], [47.399039, 8.541842], [47.378022, 8.51079], [47.373408, 8.52611], [47.375768, 8.52102], [47.372653, 8.525115], [47.375647, 8.477332], [47.377729, 8.507447], [47.364168, 8.531085], [47.408481, 8.578277], [47.358797, 8.558444], [47.404928, 8.557121], [47.424414, 8.538033], [47.366213, 8.548736], [47.413885, 8.54802], [47.362433, 8.533869], [47.387049, 8.489687], [47.357745, 8.521555], [47.390608, 8.524991], [47.370099, 8.552445], [47.348524, 8.522704], [47.41835, 8.546708], [47.393827, 8.524222], [47.368571, 8.495837], [47.377324, 8.543855], [47.405176, 8.478557], [47.399625, 8.540807], [47.402938, 8.575734], [47.378306, 8.530355], [47.363087, 8.513084], [47.374802, 8.496093], [47.402194, 8.488038], [47.389497, 8.48751], [47.377358, 8.498911], [47.370197, 8.548819], [47.38619, 8.525139], [47.391596, 8.525196], [47.365714, 8.535976], [47.367014, 8.556101], [47.414363, 8.536501], [47.362186, 8.547513], [47.402002, 8.531079], [47.399229, 8.542614], [47.407006, 8.550553], [47.36405, 8.498395], [47.392625, 8.50254], [47.385751, 8.492906], [47.363784, 8.535539], [47.402086, 8.49886], [47.402858, 8.500929], [47.383089, 8.530652], [47.369452, 8.52591], [47.419751, 8.50772], [47.371854, 8.506614], [47.379002, 8.570204], [47.393494, 8.526162], [47.399255, 8.542734], [47.403646, 8.531258], [47.414385, 8.506301], [47.342971, 8.520077], [47.360939, 8.515781], [47.37848, 8.576682], [47.40308, 8.554684], [47.372334, 8.536019], [47.404836, 8.55076], [47.365851, 8.552674], [47.384782, 8.531388], [47.38942, 8.529854], [47.362497, 8.533698], [47.375859, 8.538025], [47.37945, 8.537861], [47.370657, 8.519288], [47.393245, 8.587144], [47.369569, 8.54768], [47.390403, 8.536232], [47.371404, 8.521091], [47.359134, 8.585536], [47.368417, 8.497886], [47.36977, 8.490617], [47.376812, 8.538031], [47.416549, 8.545942], [47.377717, 8.532806], [47.403784, 8.565616], [47.41257, 8.537789], [47.351695, 8.55889], [47.370958, 8.548252], [47.402978, 8.56242], [47.392754, 8.524425], [47.381782, 8.529976], [47.381556, 8.514728], [47.397093, 8.480108], [47.372624, 8.518639], [47.350529, 8.51888], [47.409449, 8.561218], [47.368969, 8.538029], [47.36973, 8.530828], [47.419111, 8.546141], [47.380897, 8.517906], [47.412636, 8.514534], [47.381398, 8.510513], [47.379593, 8.526514], [47.357839, 8.520166], [47.374192, 8.542996], [47.375099, 8.519444], [47.369876, 8.552281], [47.419195, 8.546712], [47.353535, 8.556599], [47.364321, 8.533921], [47.375517, 8.535237], [47.356271, 8.556445], [47.37017, 8.548805], [47.412944, 8.538234], [47.369881, 8.529097], [47.377349, 8.498911], [47.360388, 8.596895], [47.385969, 8.519055], [47.368751, 8.54953], [47.374307, 8.522394], [47.384037, 8.511056], [47.373521, 8.537023], [47.361993, 8.5507], [47.371275, 8.486344], [47.411162, 8.562605], [47.381185, 8.516005], [47.371743, 8.515708], [47.356865, 8.53574], [47.383391, 8.574867], [47.39849, 8.474863], [47.402405, 8.499383], [47.378289, 8.527415], [47.378308, 8.527362], [47.372727, 8.529632], [47.393216, 8.493041], [47.370188, 8.548805], [47.398858, 8.59169], [47.387167, 8.489557], [47.393001, 8.485022], [47.389673, 8.511474], [47.413648, 8.524586], [47.366806, 8.543148], [47.417085, 8.545409], [47.412026, 8.528807], [47.399769, 8.586], [47.367819, 8.534073], [47.363742, 8.575255], [47.413139, 8.515578], [47.398978, 8.513993], [47.375779, 8.559489], [47.361408, 8.576596], [47.380164, 8.501947], [47.379101, 8.508891], [47.399888, 8.541449], [47.3623, 8.532675], [47.367839, 8.546095], [47.404543, 8.556941], [47.404605, 8.557022], [47.369236, 8.527839], [47.377552, 8.533107], [47.361661, 8.526069], [47.376346, 8.527468], [47.367411, 8.546642], [47.38861, 8.491122], [47.368241, 8.533181], [47.370188, 8.548805], [47.382877, 8.507139], [47.369804, 8.541886], [47.376356, 8.527375], [47.415181, 8.512624], [47.377264, 8.526387], [47.349658, 8.56119], [47.41701, 8.522985], [47.381269, 8.491268], [47.367179, 8.539898], [47.413883, 8.545396], [47.379428, 8.569895], [47.346075, 8.534341], [47.370188, 8.548805], [47.40527, 8.490974], [47.420771, 8.50839], [47.414086, 8.550436], [47.383155, 8.58604], [47.36143, 8.551284], [47.391112, 8.523054], [47.385979, 8.51793], [47.365585, 8.537204], [47.373434, 8.53481], [47.36561, 8.552496], [47.42296, 8.551787], [47.389438, 8.511642], [47.39467, 8.486419], [47.393328, 8.478644], [47.41433, 8.518107], [47.396604, 8.593999], [47.372569, 8.529284], [47.363797, 8.575111], [47.364699, 8.598458], [47.378108, 8.541819], [47.337024, 8.520194], [47.370209, 8.535327], [47.366907, 8.520152], [47.373725, 8.554162], [47.364918, 8.545902], [47.406278, 8.541131], [47.380561, 8.548664], [47.40925, 8.55007], [47.379572, 8.527746], [47.371196, 8.524132], [47.372762, 8.534492], [47.369957, 8.466814], [47.370161, 8.548805], [47.407504, 8.548311], [47.405448, 8.579405], [47.336628, 8.517394], [47.375639, 8.554361], [47.399846, 8.543064], [47.370464, 8.532141], [47.366407, 8.557505], [47.387851, 8.519756], [47.372753, 8.534478], [47.37818, 8.515097], [47.374728, 8.524495], [47.379949, 8.523078], [47.379437, 8.569869], [47.37384, 8.53658], [47.373365, 8.531671], [47.382066, 8.514103], [47.368672, 8.543623], [47.408355, 8.550634], [47.38576, 8.532614], [47.413092, 8.515802], [47.377985, 8.53011], [47.374734, 8.544636], [47.377116, 8.569926], [47.373452, 8.534771], [47.373969, 8.531445], [47.366953, 8.522933], [47.38233, 8.499129], [47.366739, 8.563165], [47.349957, 8.561011], [47.346629, 8.528992], [47.359994, 8.594874], [47.345345, 8.534498], [47.392564, 8.492538], [47.37347, 8.530984], [47.382175, 8.541665], [47.377946, 8.537101], [47.366755, 8.49968], [47.343563, 8.53552], [47.402979, 8.580703], [47.37235, 8.542825], [47.354435, 8.573972], [47.354958, 8.523378], [47.371695, 8.556662], [47.421374, 8.549302], [47.414474, 8.556818], [47.370152, 8.548791], [47.376075, 8.543657], [47.370345, 8.550212], [47.372928, 8.504318], [47.389581, 8.487194], [47.387853, 8.539531], [47.390002, 8.480433], [47.372272, 8.503206], [47.383664, 8.496891], [47.42195, 8.510203], [47.386246, 8.480996], [47.365642, 8.532161], [47.348778, 8.578484], [47.37974, 8.524253], [47.364351, 8.555237], [47.379801, 8.520652], [47.384454, 8.531858], [47.355002, 8.534934], [47.354731, 8.575024], [47.379263, 8.552636], [47.388664, 8.479162], [47.332158, 8.517344], [47.381086, 8.513076], [47.405337, 8.592374], [47.388521, 8.491014], [47.374576, 8.538661], [47.381324, 8.542217], [47.412886, 8.537703], [47.409845, 8.549976], [47.37938, 8.544229], [47.364323, 8.554442], [47.393587, 8.539133], [47.375749, 8.535427], [47.411279, 8.57093], [47.392142, 8.493403], [47.37056, 8.524794], [47.400364, 8.585894], [47.381836, 8.516574], [47.366928, 8.553822], [47.387963, 8.527016], [47.365184, 8.521626], [47.365995, 8.55265], [47.414307, 8.550918], [47.390684, 8.484593], [47.371697, 8.52536], [47.378189, 8.53418], [47.410678, 8.558752], [47.382014, 8.548151], [47.354448, 8.560682], [47.382144, 8.512515], [47.360056, 8.581399], [47.384076, 8.508832], [47.376541, 8.543892], [47.379347, 8.522086], [47.393395, 8.49311], [47.375211, 8.545573], [47.407694, 8.568627], [47.375669, 8.537187], [47.378281, 8.512887], [47.379148, 8.544953], [47.361222, 8.535354], [47.379588, 8.53748], [47.371061, 8.520316], [47.368723, 8.483129], [47.369868, 8.547488], [47.403909, 8.556464], [47.410666, 8.571937], [47.361511, 8.525735], [47.375406, 8.5645], [47.367859, 8.495995], [47.377635, 8.520449], [47.378614, 8.542478], [47.377643, 8.518635], [47.36123, 8.51731], [47.386797, 8.547482], [47.380764, 8.52536], [47.41489, 8.541653], [47.379474, 8.527651], [47.370188, 8.511652], [47.364256, 8.531259], [47.374927, 8.496214], [47.407316, 8.57967], [47.362532, 8.533884], [47.420342, 8.539632], [47.376074, 8.559667], [47.414423, 8.552868], [47.361901, 8.560243], [47.366521, 8.540931], [47.369257, 8.527561], [47.381442, 8.531691], [47.416232, 8.511837], [47.383279, 8.540946], [47.387049, 8.518945], [47.372412, 8.553208], [47.420834, 8.501526], [47.39073, 8.522569], [47.412658, 8.480731], [47.373095, 8.514385], [47.397555, 8.49461], [47.360611, 8.528695], [47.346945, 8.530759], [47.374536, 8.539958], [47.377543, 8.522606], [47.386296, 8.504188], [47.365176, 8.547112], [47.368862, 8.539787], [47.365176, 8.547112], [47.381195, 8.503252], [47.365186, 8.547933], [47.353166, 8.526425], [47.40725, 8.549525], [47.366627, 8.545911], [47.375314, 8.485337], [47.36861, 8.531308], [47.397017, 8.530261], [47.385342, 8.542512], [47.389119, 8.488575], [47.398193, 8.532471], [47.368469, 8.528101], [47.357317, 8.57909], [47.386585, 8.518591], [47.372792, 8.520867], [47.39476, 8.525433], [47.42559, 8.557104], [47.38508, 8.498482], [47.386631, 8.489149], [47.384446, 8.547831], [47.403616, 8.556087], [47.376628, 8.527089], [47.37482, 8.543208], [47.415049, 8.515232], [47.405957, 8.577905], [47.402785, 8.535759], [47.359074, 8.550215], [47.370933, 8.556461], [47.408843, 8.542813], [47.37166, 8.525518], [47.364366, 8.546248], [47.329313, 8.51464], [47.372688, 8.534755], [47.37436, 8.541437], [47.363116, 8.506028], [47.39126, 8.514911], [47.416964, 8.538251], [47.384452, 8.528203], [47.367182, 8.533861], [47.393658, 8.501713], [47.365237, 8.499372], [47.377647, 8.541982], [47.373054, 8.566754], [47.394197, 8.49], [47.371773, 8.524991], [47.35549, 8.574709], [47.410365, 8.542646], [47.387253, 8.500803], [47.393827, 8.500934], [47.377246, 8.498326], [47.388207, 8.52016], [47.390847, 8.512968], [47.401382, 8.545202], [47.368365, 8.496706], [47.371344, 8.523698], [47.398014, 8.534256], [47.400918, 8.477878], [47.395315, 8.532333], [47.366806, 8.543134], [47.373756, 8.535942], [47.335335, 8.519075], [47.366696, 8.542391], [47.372536, 8.534593], [47.36436, 8.555211], [47.403978, 8.572457], [47.401999, 8.499507], [47.408069, 8.572584], [47.387493, 8.496212], [47.375295, 8.485496], [47.369885, 8.547554], [47.428355, 8.490502], [47.387013, 8.48966], [47.40314, 8.575301], [47.362429, 8.547426], [47.38701, 8.498931], [47.368946, 8.540398], [47.387362, 8.50066], [47.404736, 8.556534], [47.363447, 8.550108], [47.408241, 8.572548], [47.373407, 8.53481], [47.379879, 8.528652], [47.362541, 8.533885], [47.399247, 8.521709], [47.378512, 8.541854], [47.373041, 8.534498], [47.389697, 8.511859], [47.370204, 8.547164], [47.373967, 8.544885], [47.359635, 8.522414], [47.387574, 8.540518], [47.371923, 8.531919], [47.386299, 8.531698], [47.378297, 8.54173], [47.396181, 8.545373], [47.378768, 8.542336], [47.388834, 8.483258], [47.376754, 8.560993], [47.408172, 8.547119], [47.350924, 8.527624], [47.39503, 8.522538], [47.392303, 8.476703], [47.373298, 8.528226], [47.397122, 8.530621], [47.378311, 8.51061], [47.367451, 8.537812], [47.394854, 8.524084], [47.419679, 8.50479], [47.386741, 8.547614], [47.387356, 8.493454], [47.384226, 8.530304], [47.359768, 8.594115], [47.388923, 8.483366], [47.35979, 8.521318], [47.387316, 8.537334], [47.370217, 8.532573], [47.37327, 8.48061], [47.419139, 8.507827], [47.403325, 8.555484], [47.394339, 8.489261], [47.377203, 8.52146], [47.377656, 8.538247], [47.388322, 8.487169], [47.431466, 8.543773], [47.382412, 8.500998], [47.412134, 8.549534], [47.375465, 8.486492], [47.38844, 8.509622], [47.355971, 8.522776], [47.400018, 8.494844], [47.363596, 8.550561], [47.373136, 8.532977], [47.377334, 8.548411], [47.380052, 8.528365], [47.361389, 8.554619], [47.371097, 8.555246], [47.428154, 8.489941], [47.426501, 8.492626], [47.338684, 8.532071], [47.370161, 8.548831], [47.36905, 8.537951], [47.428282, 8.489719], [47.371934, 8.522161], [47.411499, 8.526477], [47.377043, 8.53744], [47.373526, 8.527913], [47.376238, 8.544508], [47.411845, 8.550548], [47.367916, 8.5446], [47.374444, 8.540181], [47.421518, 8.537112], [47.415522, 8.544198], [47.39062, 8.54274], [47.406921, 8.586843], [47.359054, 8.5495], [47.390002, 8.489427], [47.398476, 8.591205], [47.411076, 8.545457], [47.369979, 8.543359], [47.357773, 8.55923], [47.360103, 8.535754], [47.396824, 8.529807], [47.366035, 8.53062], [47.418469, 8.508238], [47.37831, 8.541347], [47.388431, 8.491025], [47.370179, 8.548805], [47.414787, 8.519256], [47.356253, 8.507956], [47.388557, 8.491028], [47.404549, 8.534709], [47.410429, 8.56956], [47.381906, 8.52925], [47.424456, 8.549698], [47.420299, 8.508805], [47.375776, 8.554152], [47.388431, 8.487078], [47.37641, 8.534924], [47.391756, 8.518709], [47.396074, 8.540522], [47.380987, 8.513087], [47.340296, 8.530014], [47.379976, 8.527913], [47.360297, 8.567861], [47.390689, 8.483096], [47.364672, 8.537702], [47.364321, 8.531075], [47.370708, 8.516667], [47.373842, 8.492896], [47.367432, 8.523618], [47.381258, 8.494459], [47.378272, 8.540631], [47.369814, 8.510241], [47.390787, 8.522213], [47.414088, 8.551191], [47.374788, 8.544677], [47.363021, 8.561643], [47.382466, 8.501013], [47.364595, 8.566257], [47.379662, 8.553201], [47.382117, 8.528778], [47.38529, 8.507823], [47.365355, 8.533016], [47.415104, 8.513219], [47.380116, 8.52826], [47.372782, 8.534254], [47.405077, 8.557482], [47.398033, 8.532243], [47.415764, 8.531043], [47.405428, 8.491414], [47.356757, 8.535699], [47.369321, 8.525563], [47.407468, 8.54835], [47.353442, 8.558741], [47.344018, 8.530275], [47.406826, 8.550589], [47.37754, 8.543767], [47.359794, 8.507272], [47.367888, 8.560647], [47.410968, 8.550079], [47.409292, 8.558843], [47.425871, 8.537175], [47.379754, 8.515102], [47.388345, 8.540746], [47.374347, 8.519058], [47.371768, 8.536842], [47.377052, 8.544075], [47.361364, 8.549654], [47.404673, 8.572154], [47.375664, 8.545304], [47.361139, 8.549755], [47.3945, 8.525322], [47.414718, 8.551112], [47.422644, 8.499296], [47.333992, 8.515462], [47.393877, 8.475608], [47.390751, 8.492091], [47.407124, 8.492892], [47.365206, 8.534495], [47.38306, 8.530836], [47.413332, 8.538997], [47.408116, 8.554856], [47.406168, 8.534729], [47.381149, 8.491623], [47.381046, 8.491979], [47.370887, 8.548105], [47.397622, 8.53291], [47.400906, 8.537575], [47.37214, 8.520298], [47.375875, 8.541098], [47.41916, 8.506449], [47.356572, 8.523927], [47.399312, 8.542457], [47.374778, 8.549523], [47.366914, 8.544037], [47.378117, 8.522763], [47.408037, 8.489399], [47.417725, 8.546178], [47.376444, 8.525642], [47.40148, 8.545231], [47.361084, 8.525289], [47.339014, 8.538099], [47.408813, 8.548842], [47.37449, 8.495795], [47.38881, 8.479933], [47.376124, 8.516605], [47.368619, 8.524622], [47.397665, 8.53311], [47.375203, 8.523657], [47.414328, 8.538369], [47.390643, 8.52323], [47.364585, 8.537369], [47.419776, 8.548103], [47.382012, 8.550204], [47.355813, 8.560909], [47.410285, 8.572326], [47.382689, 8.514804], [47.375232, 8.524399], [47.358181, 8.50957], [47.40457, 8.556955], [47.427134, 8.491313], [47.377703, 8.525615], [47.393729, 8.500853], [47.398373, 8.534277], [47.406005, 8.591222], [47.379604, 8.54434], [47.347989, 8.532686], [47.370872, 8.512553], [47.41457, 8.55902], [47.380634, 8.488898], [47.386001, 8.535638], [47.404946, 8.557135], [47.414206, 8.571456], [47.372381, 8.534842], [47.359685, 8.507469], [47.366166, 8.533853], [47.364295, 8.533854], [47.407507, 8.568438], [47.374287, 8.552797], [47.364393, 8.546196], [47.405532, 8.588138], [47.373785, 8.519457], [47.39788, 8.474613], [47.383145, 8.572477], [47.415168, 8.562319], [47.377398, 8.529436], [47.374633, 8.524056], [47.393216, 8.493027], [47.365074, 8.553968], [47.42465, 8.552857], [47.365368, 8.531666], [47.367066, 8.547019], [47.374486, 8.540486], [47.3766, 8.532929], [47.377626, 8.522329], [47.349034, 8.532522], [47.381993, 8.584386], [47.39738, 8.533726], [47.420625, 8.502728], [47.37706, 8.544168], [47.396854, 8.540856], [47.382178, 8.54038], [47.417278, 8.546845], [47.377715, 8.519603], [47.428254, 8.489758], [47.36037, 8.523686], [47.346488, 8.564379], [47.376229, 8.528406], [47.367851, 8.523984], [47.340929, 8.537239], [47.357503, 8.52155], [47.387926, 8.485214], [47.407002, 8.481561], [47.362006, 8.559597], [47.364756, 8.557059], [47.407536, 8.544085], [47.402083, 8.495256], [47.407189, 8.586146], [47.367733, 8.513496], [47.404156, 8.561557], [47.380283, 8.512398], [47.404191, 8.561677], [47.376942, 8.544271], [47.413401, 8.53937], [47.422323, 8.55074], [47.387855, 8.540286], [47.409522, 8.54989], [47.409033, 8.545573], [47.374076, 8.535366], [47.405264, 8.557711], [47.397998, 8.474522], [47.343827, 8.535247], [47.402037, 8.495348], [47.37626, 8.55991], [47.407858, 8.578542], [47.352673, 8.580314], [47.399265, 8.542681], [47.383466, 8.534513], [47.381819, 8.556186], [47.382205, 8.572047], [47.397708, 8.533243], [47.361703, 8.503233], [47.365937, 8.539978], [47.377669, 8.498321], [47.329669, 8.531318], [47.374447, 8.544643], [47.369181, 8.527997], [47.373585, 8.519744], [47.407584, 8.489774], [47.40953, 8.537766], [47.411633, 8.542725], [47.361536, 8.560765], [47.348546, 8.570961], [47.372299, 8.510013], [47.369202, 8.554081], [47.354287, 8.557806], [47.35618, 8.553769], [47.362666, 8.55552], [47.364235, 8.536408], [47.377407, 8.548293], [47.415299, 8.562719], [47.386073, 8.521322], [47.386376, 8.496375], [47.376047, 8.566102], [47.410191, 8.548566], [47.392329, 8.538987], [47.364064, 8.551379], [47.399722, 8.516155], [47.389034, 8.537383], [47.32932, 8.512933], [47.355231, 8.557866], [47.395759, 8.531136], [47.404153, 8.562762], [47.376003, 8.5295], [47.360453, 8.522483], [47.411188, 8.526033], [47.347311, 8.566686], [47.386555, 8.497531], [47.409035, 8.550052], [47.378475, 8.522956], [47.373975, 8.476201], [47.378708, 8.542043], [47.343836, 8.535234], [47.378364, 8.541334], [47.365761, 8.494298], [47.421077, 8.546526], [47.376189, 8.529755], [47.364834, 8.566646], [47.374106, 8.517888], [47.400074, 8.590643], [47.390782, 8.539896], [47.361545, 8.525961], [47.37017, 8.548805], [47.41438, 8.513629], [47.366964, 8.535061], [47.417183, 8.542642], [47.371391, 8.530121], [47.396032, 8.481041], [47.40727, 8.58526], [47.387613, 8.529738], [47.407754, 8.583562], [47.369121, 8.527691], [47.418808, 8.507582], [47.372761, 8.538372], [47.343845, 8.535221], [47.352294, 8.507122], [47.389231, 8.479134], [47.362068, 8.535344], [47.367191, 8.533848], [47.375535, 8.541845], [47.3556, 8.556947], [47.374703, 8.523329], [47.425886, 8.555321], [47.350643, 8.579066], [47.386934, 8.490426], [47.371741, 8.53406], [47.364717, 8.554556], [47.369717, 8.543539], [47.361069, 8.53543], [47.385782, 8.545408], [47.37017, 8.548805], [47.377337, 8.535844], [47.389401, 8.539444], [47.377461, 8.514963], [47.422237, 8.552183], [47.383477, 8.486809], [47.360894, 8.513795], [47.366945, 8.558602], [47.380237, 8.525918], [47.37087, 8.554592], [47.375295, 8.485482], [47.360305, 8.5522], [47.370674, 8.519315], [47.390002, 8.476407], [47.377326, 8.570526], [47.391714, 8.519318], [47.404047, 8.495892], [47.358678, 8.500605], [47.380825, 8.518858], [47.374299, 8.524208], [47.335359, 8.528907], [47.394215, 8.490067], [47.422815, 8.494422], [47.411495, 8.546738], [47.38295, 8.540542], [47.391772, 8.538923], [47.409774, 8.545205], [47.368857, 8.531737], [47.365851, 8.509883], [47.370702, 8.558866], [47.392003, 8.523986], [47.365433, 8.539028], [47.37018, 8.490056], [47.344342, 8.530229], [47.387312, 8.518738], [47.402728, 8.535135], [47.400683, 8.548633], [47.405639, 8.59181], [47.356085, 8.55615], [47.378164, 8.526406], [47.364921, 8.550231], [47.367645, 8.495805], [47.350099, 8.570345], [47.38443, 8.496787], [47.398482, 8.538929], [47.391307, 8.487294], [47.385012, 8.481197], [47.341676, 8.53433], [47.388014, 8.52919], [47.384437, 8.499873], [47.385056, 8.530917], [47.385002, 8.530982], [47.383689, 8.547908], [47.378083, 8.530218], [47.427502, 8.547203], [47.39798, 8.474535], [47.376968, 8.544338], [47.392137, 8.525949], [47.39245, 8.516551], [47.376382, 8.527468], [47.347975, 8.564027], [47.37729, 8.52656], [47.345822, 8.527758], [47.370161, 8.548818], [47.409205, 8.566844], [47.424356, 8.540365], [47.379563, 8.527772], [47.378876, 8.530989], [47.376082, 8.533501], [47.347379, 8.534394], [47.419192, 8.507881], [47.37964, 8.523443], [47.387484, 8.488318], [47.383307, 8.530431], [47.369909, 8.536552], [47.369073, 8.525134], [47.426052, 8.547385], [47.416597, 8.534294], [47.383565, 8.539283], [47.395697, 8.522352], [47.387011, 8.575434], [47.398093, 8.532509], [47.402701, 8.517924], [47.376954, 8.523958], [47.367349, 8.57892], [47.407442, 8.574174], [47.387968, 8.517824], [47.394601, 8.527934], [47.374467, 8.52159], [47.380104, 8.518023], [47.374073, 8.555375], [47.378849, 8.520513], [47.40963, 8.537675], [47.385885, 8.493015], [47.412957, 8.537797], [47.381204, 8.483519], [47.428164, 8.547562], [47.384268, 8.548503], [47.403893, 8.569209], [47.368878, 8.539947], [47.368778, 8.524917], [47.397705, 8.52601], [47.387905, 8.524525], [47.386517, 8.503597], [47.367434, 8.541453], [47.355908, 8.562248], [47.424186, 8.496928], [47.374456, 8.517021], [47.413946, 8.518788], [47.420844, 8.502401], [47.412151, 8.528875], [47.379342, 8.555604], [47.359143, 8.559894], [47.403285, 8.586142], [47.376861, 8.543356], [47.344958, 8.532584], [47.367611, 8.541761], [47.354014, 8.558145], [47.429277, 8.548712], [47.389436, 8.52151], [47.410009, 8.541327], [47.371765, 8.521945], [47.351797, 8.560441], [47.407224, 8.564258], [47.382038, 8.515201], [47.396354, 8.504946], [47.373753, 8.544748], [47.37827, 8.53042], [47.380354, 8.512492], [47.40502, 8.572625], [47.373535, 8.525027], [47.347197, 8.531743], [47.411079, 8.543204], [47.37145, 8.531525], [47.363009, 8.559168], [47.381334, 8.542164], [47.415274, 8.546644], [47.415347, 8.546526], [47.409438, 8.538029], [47.392699, 8.52359], [47.385679, 8.508652], [47.37136, 8.514297], [47.365877, 8.54992], [47.370421, 8.535662], [47.409215, 8.547194], [47.40696, 8.550632], [47.406145, 8.551224], [47.37866, 8.559139], [47.408535, 8.53173], [47.38277, 8.541479], [47.402736, 8.554068], [47.41935, 8.502517], [47.366796, 8.54234], [47.366946, 8.543561], [47.36291, 8.558173], [47.404553, 8.557762], [47.356629, 8.52357], [47.392341, 8.503117], [47.366522, 8.540904], [47.366857, 8.543413], [47.350478, 8.578454], [47.369032, 8.537964], [47.368521, 8.539714], [47.400762, 8.548859], [47.377842, 8.532822], [47.401044, 8.535365], [47.377591, 8.543159], [47.393518, 8.483575], [47.365008, 8.557065], [47.388015, 8.485282], [47.38755, 8.518266], [47.366516, 8.553614], [47.405648, 8.527908], [47.37494, 8.534431], [47.351753, 8.4896], [47.413861, 8.545806], [47.388819, 8.479933], [47.394088, 8.525154], [47.417821, 8.511233], [47.368941, 8.524748], [47.335108, 8.519216], [47.369994, 8.466709], [47.383826, 8.540202], [47.403176, 8.588935], [47.329928, 8.51239], [47.369495, 8.526189], [47.386416, 8.527885], [47.391502, 8.514055], [47.363923, 8.566852], [47.36655, 8.54824], [47.341326, 8.530524], [47.399321, 8.585858], [47.380856, 8.518462], [47.364913, 8.547318], [47.359369, 8.507555], [47.3766, 8.532929], [47.421771, 8.550159], [47.353769, 8.558364], [47.375339, 8.56034], [47.387501, 8.487418], [47.391147, 8.489145], [47.393236, 8.47892], [47.416974, 8.538132], [47.369617, 8.525583], [47.399169, 8.542321], [47.391079, 8.522815], [47.33125, 8.536365], [47.37449, 8.495782], [47.374471, 8.495888], [47.427572, 8.546436], [47.366504, 8.533304], [47.418864, 8.507411], [47.378172, 8.514011], [47.36849, 8.546678], [47.376858, 8.535132], [47.344266, 8.531643], [47.385497, 8.536661], [47.374756, 8.553628], [47.369115, 8.54158], [47.391719, 8.48554], [47.377007, 8.524065], [47.374864, 8.541487], [47.38402, 8.501269], [47.406612, 8.584465], [47.393343, 8.547645], [47.391681, 8.518972], [47.402086, 8.49886], [47.410337, 8.547469], [47.371912, 8.506218], [47.370618, 8.470455], [47.343785, 8.534902], [47.36886, 8.528612], [47.415037, 8.551701], [47.398815, 8.533279], [47.358312, 8.550001], [47.385609, 8.543776], [47.385724, 8.489952], [47.362048, 8.557082], [47.408589, 8.531757], [47.35304, 8.526489], [47.352181, 8.524976], [47.37097, 8.554502], [47.396235, 8.545374], [47.362994, 8.518166], [47.37279, 8.521026], [47.419826, 8.482846], [47.361463, 8.565476], [47.425808, 8.547473], [47.373922, 8.513448], [47.414376, 8.537985], [47.384422, 8.5484], [47.380556, 8.528362], [47.406494, 8.55045], [47.383052, 8.484046], [47.405641, 8.542827], [47.386477, 8.525277], [47.370842, 8.516749], [47.382486, 8.529752], [47.37983, 8.525261], [47.365218, 8.50145], [47.356714, 8.553343], [47.380219, 8.501749], [47.370097, 8.548936], [47.407767, 8.578673], [47.374246, 8.525002], [47.401223, 8.534508], [47.381132, 8.534955], [47.372954, 8.531344], [47.391244, 8.515652], [47.365547, 8.539348], [47.386916, 8.490466], [47.418529, 8.547719], [47.370222, 8.521477], [47.381146, 8.528744], [47.39382, 8.524977], [47.374743, 8.544636], [47.376635, 8.534903], [47.373664, 8.537093], [47.369427, 8.541838], [47.427807, 8.490491], [47.373933, 8.536237], [47.370398, 8.514264], [47.367798, 8.53909], [47.362131, 8.547552], [47.391037, 8.522496], [47.410348, 8.550106], [47.364446, 8.53685], [47.402838, 8.491389], [47.410877, 8.563302], [47.398212, 8.536155], [47.394774, 8.546668], [47.359254, 8.518938], [47.419454, 8.556233], [47.417762, 8.54981], [47.37986, 8.515343], [47.369587, 8.547694], [47.404052, 8.55656], [47.378974, 8.54242], [47.369023, 8.53795], [47.418259, 8.508552], [47.379326, 8.56004], [47.368743, 8.540937], [47.373602, 8.519864], [47.38621, 8.518213], [47.359868, 8.549054], [47.400654, 8.502938], [47.361282, 8.576606], [47.349996, 8.52775], [47.3413, 8.524714], [47.357601, 8.554685], [47.414453, 8.553438], [47.371069, 8.547923], [47.350549, 8.560203], [47.41491, 8.549949], [47.37017, 8.548805], [47.419962, 8.500501], [47.373444, 8.526177], [47.363719, 8.551755], [47.375544, 8.520897], [47.358192, 8.555929], [47.359881, 8.594475], [47.380645, 8.528496], [47.361174, 8.521412], [47.37378, 8.537188], [47.376556, 8.548819], [47.40956, 8.545889], [47.392999, 8.545068], [47.377829, 8.574324], [47.420296, 8.503331], [47.347217, 8.53443], [47.400187, 8.494013], [47.341294, 8.536744], [47.401983, 8.499308], [47.37038, 8.489822], [47.361892, 8.560243], [47.359624, 8.549168], [47.387367, 8.497269], [47.37774, 8.551068], [47.327382, 8.529683], [47.343866, 8.530153], [47.380369, 8.483371], [47.360446, 8.552574], [47.390762, 8.522027], [47.379996, 8.555962], [47.381143, 8.542359], [47.412878, 8.522318], [47.387006, 8.490481], [47.377906, 8.529923], [47.387543, 8.527683], [47.367817, 8.5605], [47.366742, 8.56192], [47.385609, 8.548411], [47.382078, 8.533889], [47.414954, 8.55003], [47.391478, 8.481403], [47.368556, 8.534088], [47.349564, 8.565251], [47.417645, 8.546137], [47.375751, 8.537983], [47.361864, 8.52553], [47.37383, 8.537612], [47.396324, 8.545468], [47.364941, 8.570382], [47.380972, 8.491222], [47.378546, 8.540199], [47.393299, 8.52482], [47.408556, 8.540899], [47.359089, 8.525063], [47.383727, 8.58825], [47.382134, 8.512554], [47.379027, 8.543546], [47.370031, 8.55664], [47.422385, 8.548992], [47.424214, 8.543026], [47.385619, 8.519883], [47.410475, 8.533002], [47.40872, 8.546256], [47.376476, 8.511593], [47.386852, 8.535113], [47.362944, 8.563045], [47.407314, 8.544703], [47.397672, 8.533322], [47.363859, 8.531462], [47.403675, 8.570265], [47.369585, 8.558114], [47.385829, 8.517675], [47.403388, 8.493136], [47.382048, 8.532286], [47.366085, 8.545132], [47.375642, 8.496771], [47.379901, 8.483361], [47.353909, 8.575324], [47.358972, 8.516377], [47.369445, 8.526704], [47.369076, 8.541831], [47.376995, 8.544325], [47.391444, 8.523114], [47.361015, 8.531576], [47.387476, 8.487271], [47.390657, 8.483678], [47.364295, 8.533881], [47.372853, 8.518167], [47.411682, 8.561914], [47.389596, 8.512003], [47.381888, 8.531183], [47.364529, 8.532866], [47.404833, 8.574237], [47.398366, 8.53784], [47.373422, 8.552951], [47.356789, 8.514122], [47.364604, 8.566218], [47.328589, 8.517986], [47.361755, 8.525647], [47.366576, 8.559574], [47.37768, 8.51175], [47.41057, 8.572584], [47.391664, 8.514111], [47.376236, 8.533345], [47.37302, 8.532882], [47.384408, 8.53195], [47.380358, 8.527378], [47.375808, 8.529138], [47.368601, 8.558557], [47.341367, 8.529983], [47.377769, 8.537747], [47.376445, 8.536951], [47.38394, 8.527252], [47.371786, 8.556598], [47.347092, 8.534322], [47.404012, 8.534433], [47.406778, 8.541499], [47.336437, 8.52619], [47.345031, 8.529661], [47.374615, 8.576401], [47.391879, 8.538965], [47.370143, 8.548804], [47.418394, 8.546815], [47.36922, 8.532446], [47.37345, 8.533102], [47.410108, 8.509766], [47.384748, 8.516872], [47.386474, 8.541714], [47.409791, 8.537785], [47.375945, 8.53371], [47.378451, 8.510149], [47.364733, 8.547368], [47.408085, 8.580137], [47.36176, 8.604431], [47.410447, 8.569507], [47.376179, 8.567324], [47.387004, 8.536136], [47.370695, 8.546605], [47.384453, 8.542401], [47.373506, 8.519504], [47.373885, 8.536567], [47.413186, 8.513432], [47.368916, 8.501391], [47.367306, 8.522609], [47.369288, 8.505887], [47.375623, 8.548587], [47.367932, 8.544839], [47.404007, 8.556572], [47.380922, 8.541957], [47.329, 8.517372], [47.369515, 8.520165], [47.366764, 8.541876], [47.408991, 8.539583], [47.394229, 8.493405], [47.390924, 8.522043], [47.361663, 8.57627], [47.411244, 8.570849], [47.351542, 8.60164], [47.419306, 8.509235], [47.399288, 8.505707], [47.393703, 8.544884], [47.416402, 8.525411], [47.365559, 8.598768], [47.376328, 8.523627], [47.367135, 8.539752], [47.399241, 8.542323], [47.386245, 8.501856], [47.411339, 8.544257], [47.370233, 8.548806], [47.377314, 8.521158], [47.369305, 8.527178], [47.405155, 8.478862], [47.3833, 8.506102], [47.404515, 8.503691], [47.396304, 8.51329], [47.377487, 8.539012], [47.36877, 8.524784], [47.412657, 8.54003], [47.372391, 8.521362], [47.38443, 8.538175], [47.364754, 8.554478], [47.354761, 8.574667], [47.372814, 8.535645], [47.375743, 8.544551], [47.363842, 8.528497], [47.358661, 8.532256], [47.342648, 8.527706], [47.377908, 8.508536], [47.431357, 8.54385], [47.414025, 8.54842], [47.370286, 8.548847], [47.377166, 8.509051], [47.374606, 8.540158], [47.393656, 8.537571], [47.403029, 8.572013], [47.419185, 8.547772], [47.405023, 8.497355], [47.413433, 8.483555], [47.386786, 8.547628], [47.371837, 8.60154], [47.427793, 8.546905], [47.376428, 8.528251], [47.372966, 8.485397], [47.391065, 8.522298], [47.366497, 8.505156], [47.431151, 8.516101], [47.425017, 8.539941], [47.381212, 8.507212], [47.370233, 8.537538], [47.341496, 8.520986], [47.37869, 8.52304], [47.418226, 8.508299], [47.418341, 8.546708], [47.405269, 8.555287], [47.388296, 8.490996], [47.365429, 8.546932], [47.376643, 8.539749], [47.369726, 8.536853], [47.379888, 8.528586], [47.360946, 8.564989], [47.378056, 8.513849], [47.36227, 8.559311], [47.370523, 8.51624], [47.373828, 8.53025], [47.365898, 8.55621], [47.374736, 8.528335], [47.369901, 8.513526], [47.37897, 8.509484], [47.389222, 8.477173], [47.386389, 8.518388], [47.374451, 8.549768], [47.381137, 8.528731], [47.372713, 8.534968], [47.381682, 8.533947], [47.372498, 8.518663], [47.379785, 8.537576], [47.379825, 8.525724], [47.411076, 8.545457], [47.369717, 8.525532], [47.366435, 8.553626], [47.381333, 8.54219], [47.387642, 8.486798], [47.375266, 8.522732], [47.411328, 8.544495], [47.367181, 8.559268], [47.35834, 8.585717], [47.372892, 8.520684], [47.365144, 8.545708], [47.377107, 8.539163], [47.384408, 8.531937], [47.37539, 8.547603], [47.354271, 8.555794], [47.369087, 8.55012], [47.393246, 8.530542], [47.375819, 8.522293], [47.381863, 8.516601], [47.367504, 8.545386], [47.37437, 8.525203], [47.355563, 8.554259], [47.408241, 8.552142], [47.358407, 8.59705], [47.357838, 8.583787], [47.368349, 8.550144], [47.414591, 8.519066], [47.374231, 8.540865], [47.377755, 8.568112], [47.382496, 8.531527], [47.361137, 8.555514], [47.359888, 8.535697], [47.374459, 8.539545], [47.393042, 8.52157], [47.386113, 8.527575], [47.37017, 8.548805], [47.393369, 8.498978], [47.410545, 8.543538], [47.387818, 8.527146], [47.37384, 8.536514], [47.36714, 8.540202], [47.344886, 8.532635], [47.3757, 8.516689], [47.384765, 8.516885], [47.373732, 8.596404], [47.413422, 8.530505], [47.364896, 8.553792], [47.402005, 8.497812], [47.369014, 8.538016], [47.418114, 8.527977], [47.424641, 8.552856], [47.390924, 8.522057], [47.36264, 8.563807], [47.37556, 8.528776], [47.364107, 8.563705], [47.414073, 8.541491], [47.390335, 8.47546], [47.383322, 8.557065], [47.403623, 8.547793], [47.382028, 8.516221], [47.424797, 8.537524], [47.352754, 8.557337], [47.377246, 8.538795], [47.353194, 8.572145], [47.387645, 8.514891], [47.386017, 8.50511], [47.382156, 8.52948], [47.367429, 8.546629], [47.377831, 8.519698], [47.377329, 8.512762], [47.355785, 8.593036], [47.366935, 8.543786], [47.368923, 8.541854], [47.386495, 8.529106], [47.370161, 8.548805], [47.391872, 8.50524], [47.370687, 8.538991], [47.415591, 8.565972], [47.337465, 8.532563], [47.369527, 8.528507], [47.413002, 8.544424], [47.376776, 8.538084], [47.369595, 8.553401], [47.390422, 8.542723], [47.373896, 8.541057], [47.403607, 8.504601], [47.372133, 8.48399], [47.38329, 8.48854], [47.34964, 8.561163], [47.349827, 8.566011], [47.388161, 8.491086], [47.4124, 8.570384], [47.372675, 8.535179], [47.37563, 8.554374], [47.361117, 8.521742], [47.412215, 8.555167], [47.393921, 8.535152], [47.358684, 8.527875], [47.370143, 8.548791], [47.380348, 8.542713], [47.368772, 8.548286], [47.373278, 8.535165], [47.391381, 8.536517], [47.409403, 8.540678], [47.376784, 8.53815], [47.384791, 8.534209], [47.380475, 8.548212], [47.35814, 8.55569], [47.373822, 8.53654], [47.42487, 8.537407], [47.370556, 8.515671], [47.373956, 8.519461], [47.364574, 8.554461], [47.369912, 8.547515], [47.388331, 8.520414], [47.408885, 8.548817], [47.339991, 8.529968], [47.388582, 8.535691], [47.366787, 8.5432], [47.372435, 8.541463], [47.404659, 8.483966], [47.37004, 8.556654], [47.395154, 8.542636], [47.414521, 8.541725], [47.373031, 8.534564], [47.350988, 8.576916], [47.338689, 8.539151], [47.365723, 8.536002], [47.389677, 8.521713], [47.409567, 8.537687], [47.369957, 8.518069], [47.370967, 8.548212], [47.370298, 8.558804], [47.378953, 8.559595], [47.409817, 8.523527], [47.356407, 8.523235], [47.360866, 8.550014], [47.385208, 8.508007], [47.388167, 8.526358], [47.414673, 8.551124], [47.384445, 8.531858], [47.403341, 8.502277], [47.372672, 8.521196], [47.363634, 8.533298], [47.375357, 8.530255], [47.367972, 8.519763], [47.368835, 8.539813], [47.374067, 8.53632], [47.354065, 8.534147], [47.365949, 8.567597], [47.363136, 8.546911], [47.419531, 8.50533], [47.370206, 8.548806], [47.3728, 8.530494], [47.385227, 8.484274], [47.347806, 8.525337], [47.382573, 8.515702], [47.404016, 8.556559], [47.378091, 8.52651], [47.415913, 8.538136], [47.35303, 8.556694], [47.37572, 8.516517], [47.370106, 8.548883], [47.37553, 8.560066], [47.368603, 8.499267], [47.359815, 8.535801], [47.379618, 8.527707], [47.370905, 8.534957], [47.380537, 8.500458], [47.412476, 8.544797], [47.365559, 8.547478], [47.374364, 8.529639], [47.368995, 8.543723], [47.378509, 8.526982], [47.407913, 8.578384], [47.363452, 8.575421], [47.382895, 8.513947], [47.377785, 8.528411], [47.35356, 8.558572], [47.358631, 8.585379], [47.406908, 8.587214], [47.40438, 8.55703], [47.369188, 8.548003], [47.360349, 8.550454], [47.368664, 8.54643], [47.375049, 8.531401], [47.411577, 8.558771], [47.419066, 8.506911], [47.374078, 8.540849], [47.405444, 8.592456], [47.378415, 8.540753], [47.416538, 8.548062], [47.386504, 8.529106], [47.398767, 8.506597], [47.372341, 8.538138], [47.390957, 8.482306], [47.380848, 8.535506], [47.36647, 8.541631], [47.387384, 8.487495], [47.421111, 8.549509], [47.413296, 8.53139], [47.39482, 8.520917], [47.389697, 8.511846], [47.369105, 8.541659], [47.414056, 8.541437], [47.387174, 8.528656], [47.373969, 8.540939], [47.33579, 8.529988], [47.383763, 8.504694], [47.378725, 8.542189], [47.408635, 8.579963], [47.386171, 8.515642], [47.398534, 8.502684], [47.375962, 8.562817], [47.386208, 8.540424], [47.362951, 8.548324], [47.375471, 8.485843], [47.409692, 8.544408], [47.381092, 8.481954], [47.389309, 8.527282], [47.369417, 8.52007], [47.386632, 8.551519], [47.362131, 8.559639], [47.411703, 8.525805], [47.329615, 8.53133], [47.393238, 8.524607], [47.382365, 8.549019], [47.405154, 8.480968], [47.390055, 8.485521], [47.387589, 8.529406], [47.409835, 8.549115], [47.378941, 8.508703], [47.388934, 8.537513], [47.414095, 8.550423], [47.399295, 8.495241], [47.375987, 8.535869], [47.388554, 8.482392], [47.406678, 8.576914], [47.373452, 8.529104], [47.369063, 8.492192], [47.40284, 8.491085], [47.418855, 8.506364], [47.4143, 8.539335], [47.401833, 8.585607], [47.383707, 8.540385], [47.394146, 8.488741], [47.384399, 8.531937], [47.362727, 8.558486], [47.396857, 8.533861], [47.359636, 8.508858], [47.409812, 8.536486], [47.369212, 8.541754], [47.370286, 8.506913], [47.401241, 8.588138], [47.427294, 8.552952], [47.401492, 8.588303], [47.371104, 8.564767], [47.40678, 8.562765], [47.392678, 8.527735], [47.408359, 8.509214], [47.393929, 8.510421], [47.386187, 8.537814], [47.354679, 8.558238], [47.379359, 8.495547], [47.380246, 8.552352], [47.369901, 8.513539], [47.372899, 8.547445], [47.41048, 8.53817], [47.357122, 8.53515], [47.369715, 8.541778], [47.356706, 8.551384], [47.3744, 8.543861], [47.353235, 8.555944], [47.37385, 8.536487], [47.377134, 8.541998], [47.419454, 8.499935], [47.404173, 8.557052], [47.364007, 8.555442], [47.369238, 8.519961], [47.364185, 8.546363], [47.406073, 8.588945], [47.426586, 8.544255], [47.386991, 8.494123], [47.428072, 8.490059], [47.419447, 8.506561], [47.382411, 8.514666], [47.373905, 8.53825], [47.374229, 8.526776], [47.379196, 8.517991], [47.419933, 8.549551], [47.373449, 8.531355], [47.404329, 8.556751], [47.376831, 8.52659], [47.376803, 8.539051], [47.403323, 8.497295], [47.35546, 8.512944], [47.358248, 8.572239], [47.391365, 8.522966], [47.391625, 8.51917], [47.376394, 8.583868], [47.375426, 8.516206], [47.36985, 8.508321], [47.411124, 8.526204], [47.366888, 8.545824], [47.377394, 8.499892], [47.390561, 8.470272], [47.370737, 8.470219]], [[47.417156, 8.505296], [47.337015, 8.520274], [47.405579, 8.481705], [47.375414, 8.527078], [47.419348, 8.505565], [47.372766, 8.54731], [47.386263, 8.526054], [47.407997, 8.572622], [47.361892, 8.531131], [47.399611, 8.51553], [47.347594, 8.531645], [47.348517, 8.573951], [47.376946, 8.543848], [47.377303, 8.541299], [47.373624, 8.518474], [47.354972, 8.534232], [47.375563, 8.486666], [47.377784, 8.509249], [47.371643, 8.515772], [47.390352, 8.539728], [47.362636, 8.558657], [47.399304, 8.495201], [47.376958, 8.569578], [47.382601, 8.514564], [47.371969, 8.564639], [47.351377, 8.60108], [47.37416, 8.475701], [47.422825, 8.535827], [47.364481, 8.536943], [47.373619, 8.536204], [47.364803, 8.531508], [47.387155, 8.519119], [47.402153, 8.497417], [47.381507, 8.582627], [47.401562, 8.517583], [47.379451, 8.544323], [47.371203, 8.518557], [47.352206, 8.488272], [47.383088, 8.530797], [47.343005, 8.534635], [47.364257, 8.531193], [47.391239, 8.53919], [47.367638, 8.509217], [47.356836, 8.58407], [47.377752, 8.509818], [47.376238, 8.544508], [47.428558, 8.551507], [47.384761, 8.531732], [47.382879, 8.529124], [47.362122, 8.559639], [47.38359, 8.539429], [47.380375, 8.493634], [47.425179, 8.537082], [47.39559, 8.527093], [47.380421, 8.559414], [47.354172, 8.523679], [47.38803, 8.486647], [47.368627, 8.524728], [47.376418, 8.52739], [47.381719, 8.529988], [47.379324, 8.537858], [47.373278, 8.484662], [47.366973, 8.560376], [47.409521, 8.537766], [47.3644, 8.534108], [47.3932, 8.530647], [47.371756, 8.54754], [47.4313, 8.516555], [47.367771, 8.521056], [47.395645, 8.520272], [47.389245, 8.527427], [47.368351, 8.524392], [47.402527, 8.535462], [47.368895, 8.500729], [47.408922, 8.574563], [47.369339, 8.525511], [47.404652, 8.550279], [47.377726, 8.519418], [47.371673, 8.473097], [47.391381, 8.536557], [47.377337, 8.48343], [47.410597, 8.572624], [47.39896, 8.541655], [47.355785, 8.549948], [47.371372, 8.547281], [47.405986, 8.548094], [47.375517, 8.496597], [47.389358, 8.52119], [47.38567, 8.480071], [47.385432, 8.549043], [47.35733, 8.521705], [47.392736, 8.523524], [47.376304, 8.563791], [47.36811, 8.532821], [47.386948, 8.500691], [47.366469, 8.533224], [47.409513, 8.540482], [47.42589, 8.493595], [47.355051, 8.557915], [47.363598, 8.533324], [47.372878, 8.600821], [47.392071, 8.49923], [47.397051, 8.52185], [47.384134, 8.532408], [47.387402, 8.487482], [47.372652, 8.601015], [47.382556, 8.514576], [47.382967, 8.551892], [47.409282, 8.528764], [47.405149, 8.481538], [47.384871, 8.484902], [47.364851, 8.567693], [47.383755, 8.542956], [47.36698, 8.491741], [47.39376, 8.494522], [47.39952, 8.516628], [47.371482, 8.546157], [47.418937, 8.507266], [47.38998, 8.512302], [47.368309, 8.52218], [47.370189, 8.488057], [47.364272, 8.526718], [47.369401, 8.525644], [47.369392, 8.525591], [47.39166, 8.513528], [47.403711, 8.503106], [47.418141, 8.512605], [47.401959, 8.492021], [47.360506, 8.52259], [47.388023, 8.526369], [47.399057, 8.514141], [47.374335, 8.529876], [47.352493, 8.532024], [47.401539, 8.53148], [47.379705, 8.521286], [47.369455, 8.519846], [47.389174, 8.470536], [47.426693, 8.492298], [47.383588, 8.532158], [47.420673, 8.501404], [47.352948, 8.5247], [47.340026, 8.530061], [47.389656, 8.47187], [47.373785, 8.503064], [47.359681, 8.508806], [47.387192, 8.51904], [47.37775, 8.537852], [47.364165, 8.553062], [47.35876, 8.585117], [47.41964, 8.548219], [47.40806, 8.544758], [47.379327, 8.495136], [47.393247, 8.52466], [47.382634, 8.546323], [47.43127, 8.538811], [47.336315, 8.524811], [47.377265, 8.51292], [47.364477, 8.566308], [47.373527, 8.553311], [47.369591, 8.466529], [47.390714, 8.534729], [47.373744, 8.542881], [47.365514, 8.552124], [47.356399, 8.527961], [47.39894, 8.533308], [47.414181, 8.533926], [47.378203, 8.510648], [47.377692, 8.517259], [47.384122, 8.528858], [47.381984, 8.498659], [47.407839, 8.54527], [47.391983, 8.473174], [47.351877, 8.530529], [47.403767, 8.536547], [47.340617, 8.525547], [47.392269, 8.492333], [47.384085, 8.508832], [47.359665, 8.569979], [47.367595, 8.509004], [47.375914, 8.526545], [47.385924, 8.480791], [47.399215, 8.531883], [47.371083, 8.531346], [47.393001, 8.53924], [47.363041, 8.548365], [47.408928, 8.539556], [47.406938, 8.487588], [47.3586, 8.532003], [47.353471, 8.556624], [47.417757, 8.513273], [47.389172, 8.470708], [47.376521, 8.499927], [47.369733, 8.508372], [47.379606, 8.490109], [47.372204, 8.52406], [47.378444, 8.54805], [47.366055, 8.532289], [47.411792, 8.569973], [47.355394, 8.535287], [47.419012, 8.50308], [47.373084, 8.532777], [47.356814, 8.579026], [47.417419, 8.553713], [47.357817, 8.521635], [47.365876, 8.49442], [47.383162, 8.500576], [47.419929, 8.546145], [47.373688, 8.52887], [47.35279, 8.557272], [47.357587, 8.550581], [47.413012, 8.537719], [47.388021, 8.519825], [47.348479, 8.534138], [47.378679, 8.563669], [47.404373, 8.556778], [47.392968, 8.529397], [47.359811, 8.522867], [47.340781, 8.530129], [47.392212, 8.538985], [47.392286, 8.476491], [47.364577, 8.566231], [47.386459, 8.518535], [47.356606, 8.527025], [47.386935, 8.519578], [47.369091, 8.514516], [47.337818, 8.531419], [47.378223, 8.482984], [47.377265, 8.538703], [47.376987, 8.544285], [47.368034, 8.540737], [47.366544, 8.553562], [47.400195, 8.586605], [47.374726, 8.518907], [47.375936, 8.525129], [47.409557, 8.537793], [47.411149, 8.543471], [47.419228, 8.507922], [47.376501, 8.523392], [47.369964, 8.510654], [47.425611, 8.497513], [47.426007, 8.493557], [47.356423, 8.550888], [47.415361, 8.518406], [47.417274, 8.544499], [47.365, 8.562466], [47.358221, 8.571418], [47.419212, 8.547746], [47.387334, 8.533547], [47.377255, 8.538795], [47.402349, 8.535286], [47.369007, 8.528311], [47.404725, 8.576011], [47.371441, 8.520045], [47.392165, 8.533513], [47.383736, 8.550571], [47.404303, 8.564952], [47.382334, 8.487925], [47.358426, 8.585216], [47.374506, 8.557132], [47.36915, 8.550108], [47.35258, 8.524666], [47.367553, 8.565473], [47.409127, 8.545125], [47.428192, 8.489704], [47.399787, 8.547369], [47.374362, 8.556228], [47.398025, 8.532084], [47.398373, 8.538079], [47.364984, 8.560493], [47.368284, 8.551255], [47.371658, 8.550292], [47.380706, 8.582623], [47.401306, 8.541836], [47.398849, 8.533465], [47.377477, 8.543819], [47.35602, 8.535697], [47.37016, 8.548871], [47.378672, 8.543036], [47.413392, 8.539383], [47.37729, 8.526494], [47.386297, 8.518532], [47.371915, 8.522306], [47.347627, 8.562828], [47.370803, 8.518033], [47.398304, 8.547218], [47.376114, 8.583981], [47.417697, 8.509097], [47.371242, 8.568133], [47.368795, 8.499853], [47.356424, 8.526253], [47.382717, 8.514672], [47.387584, 8.546956], [47.383267, 8.557223], [47.35424, 8.508697], [47.374335, 8.524182], [47.361686, 8.560159], [47.358561, 8.580665], [47.385815, 8.546694], [47.390327, 8.525223], [47.399985, 8.494526], [47.367838, 8.522527], [47.366462, 8.545246], [47.406622, 8.591593], [47.384653, 8.542153], [47.390007, 8.512369], [47.368359, 8.559386], [47.385765, 8.517753], [47.399674, 8.496003], [47.373126, 8.536896], [47.428071, 8.490112], [47.363748, 8.547784], [47.413644, 8.528866], [47.422265, 8.538943], [47.387409, 8.544608], [47.408478, 8.552717], [47.358273, 8.587026], [47.379226, 8.525328], [47.40306, 8.589728], [47.392734, 8.492673], [47.356675, 8.534863], [47.376331, 8.52613], [47.383282, 8.506101], [47.378978, 8.559821], [47.418993, 8.507029], [47.378331, 8.52874], [47.377864, 8.511369], [47.412511, 8.508661], [47.381267, 8.49144], [47.365186, 8.547893], [47.361636, 8.552241], [47.374237, 8.536482], [47.382267, 8.572101], [47.388035, 8.493958], [47.34083, 8.5192], [47.357294, 8.552031], [47.391948, 8.5116], [47.376133, 8.559112], [47.414122, 8.550437], [47.360153, 8.523801], [47.381689, 8.531298], [47.391327, 8.538384], [47.37821, 8.526248], [47.403767, 8.536534], [47.344118, 8.530079], [47.384012, 8.527201], [47.36624, 8.548723], [47.395518, 8.522322], [47.346413, 8.529067], [47.370567, 8.54116], [47.369974, 8.522995], [47.378836, 8.542774], [47.411434, 8.52572], [47.393346, 8.474684], [47.370015, 8.548974], [47.368661, 8.543914], [47.42277, 8.535998], [47.408832, 8.545834], [47.423688, 8.551909], [47.403671, 8.571682], [47.39619, 8.545346], [47.369509, 8.528506], [47.392056, 8.497919], [47.401883, 8.535025], [47.388327, 8.540746], [47.375169, 8.524398], [47.408657, 8.546294], [47.370254, 8.524854], [47.382925, 8.486242], [47.370215, 8.548806], [47.387472, 8.49849], [47.379246, 8.538439], [47.383262, 8.530404], [47.373157, 8.537466], [47.403265, 8.497784], [47.353352, 8.576199], [47.355621, 8.559476], [47.357442, 8.521337], [47.368431, 8.534019], [47.373402, 8.524892], [47.386347, 8.548387], [47.365086, 8.567526], [47.390825, 8.523922], [47.37204, 8.522361], [47.397736, 8.533151], [47.36646, 8.513986], [47.41915, 8.547732], [47.356002, 8.526179], [47.377301, 8.512868], [47.381364, 8.494634], [47.426957, 8.506659], [47.361899, 8.52565], [47.406977, 8.573886], [47.374467, 8.52159], [47.366486, 8.53333], [47.387518, 8.527471], [47.372634, 8.52616], [47.366377, 8.533354], [47.391045, 8.522589], [47.419923, 8.554308], [47.365344, 8.556728], [47.390054, 8.48062], [47.367954, 8.540695], [47.369005, 8.53799], [47.429295, 8.540282], [47.37525, 8.518653], [47.403663, 8.534266], [47.392234, 8.503048], [47.378696, 8.564715], [47.36073, 8.551971], [47.377678, 8.507154], [47.376831, 8.535132], [47.376459, 8.51154], [47.384659, 8.487375], [47.376674, 8.559958], [47.380667, 8.525159], [47.365586, 8.598795], [47.35883, 8.552183], [47.366812, 8.558387], [47.40323, 8.502553], [47.368986, 8.524828], [47.363065, 8.517307], [47.367806, 8.54011], [47.368725, 8.528583], [47.396834, 8.529648], [47.410527, 8.543551], [47.418207, 8.546546], [47.394883, 8.525767], [47.369316, 8.504762], [47.375089, 8.496257], [47.391416, 8.551698], [47.385982, 8.52144], [47.37316, 8.552111], [47.409358, 8.546362], [47.34478, 8.533361], [47.368182, 8.49612], [47.374697, 8.497799], [47.364601, 8.554514], [47.389, 8.488811], [47.429507, 8.487529], [47.393616, 8.519886], [47.427231, 8.546402], [47.425998, 8.493531], [47.375573, 8.557459], [47.409111, 8.547775], [47.405161, 8.48016], [47.378402, 8.526927], [47.354297, 8.557753], [47.423558, 8.54956], [47.371627, 8.517507], [47.387218, 8.51912], [47.384745, 8.509402], [47.380045, 8.483404], [47.383536, 8.539495], [47.388535, 8.53875], [47.362651, 8.506694], [47.408726, 8.566145], [47.387904, 8.48271], [47.377548, 8.528777], [47.370052, 8.511821], [47.379324, 8.537858], [47.400195, 8.548887], [47.404364, 8.556818], [47.369467, 8.526228], [47.372444, 8.503143], [47.357469, 8.550672], [47.36949, 8.525726], [47.37027, 8.525013], [47.361955, 8.560218], [47.373915, 8.544751], [47.348267, 8.571008], [47.371173, 8.530355], [47.402653, 8.499799], [47.398032, 8.53423], [47.362622, 8.533873], [47.386851, 8.490637], [47.383721, 8.510189], [47.42735, 8.546193], [47.401722, 8.505212], [47.406984, 8.487483], [47.360525, 8.561128], [47.377079, 8.523113], [47.373149, 8.534526], [47.380581, 8.500578], [47.379261, 8.53787], [47.402709, 8.554067], [47.421306, 8.549884], [47.372986, 8.567282], [47.370161, 8.548818], [47.355103, 8.559041], [47.381391, 8.56509], [47.37161, 8.506741], [47.377152, 8.535403], [47.368882, 8.501113], [47.37068, 8.470456], [47.413541, 8.545415], [47.380497, 8.544054], [47.385261, 8.530193], [47.366266, 8.540303], [47.374482, 8.5568], [47.39114, 8.532539], [47.374496, 8.546101], [47.396041, 8.526983], [47.387488, 8.516265], [47.369878, 8.517961], [47.360326, 8.553803], [47.409823, 8.541005], [47.410724, 8.544615], [47.404016, 8.556532], [47.390215, 8.545553], [47.367632, 8.515678], [47.405871, 8.553524], [47.391504, 8.519644], [47.387607, 8.527579], [47.38755, 8.486981], [47.374554, 8.545625], [47.391195, 8.488828], [47.388335, 8.490759], [47.369045, 8.541393], [47.38793, 8.498592], [47.374598, 8.489918], [47.354429, 8.574646], [47.361433, 8.531201], [47.377766, 8.543706], [47.391006, 8.522827], [47.392191, 8.501869], [47.387412, 8.540542], [47.392172, 8.500928], [47.384316, 8.528359], [47.415419, 8.551246], [47.37972, 8.490496], [47.371094, 8.523481], [47.38855, 8.483822], [47.421495, 8.548894], [47.37514, 8.501449], [47.415329, 8.534228], [47.389125, 8.522007], [47.391109, 8.522484], [47.378645, 8.523025], [47.411334, 8.525824], [47.394148, 8.509087], [47.370206, 8.548832], [47.396006, 8.52681], [47.387117, 8.545939], [47.367067, 8.530866], [47.369098, 8.52532], [47.396629, 8.478708], [47.384115, 8.497695], [47.395036, 8.516126], [47.381886, 8.548334], [47.369023, 8.537963], [47.374728, 8.532043], [47.366738, 8.544589], [47.367111, 8.534773], [47.353619, 8.554337], [47.403121, 8.57542], [47.411096, 8.526217], [47.329903, 8.512217], [47.371574, 8.547815], [47.33896, 8.538111], [47.354469, 8.601307], [47.378306, 8.530434], [47.386941, 8.528572], [47.376995, 8.539611], [47.368577, 8.529057], [47.371369, 8.517223], [47.414255, 8.51841], [47.358946, 8.534446], [47.354289, 8.57512], [47.416202, 8.541826], [47.412647, 8.480903], [47.417865, 8.502593], [47.364965, 8.559646], [47.366374, 8.545032], [47.381354, 8.565182], [47.413043, 8.543894], [47.413795, 8.547024], [47.383414, 8.530499], [47.414749, 8.560932], [47.369238, 8.541861], [47.359633, 8.566775], [47.368548, 8.501318], [47.409148, 8.547616], [47.366332, 8.534373], [47.388035, 8.493958], [47.362597, 8.506693], [47.376924, 8.541384], [47.368796, 8.528691], [47.394828, 8.525792], [47.334857, 8.530643], [47.367543, 8.499034], [47.405723, 8.591521], [47.386177, 8.47571], [47.397063, 8.540635], [47.374943, 8.516859], [47.364801, 8.525934], [47.373646, 8.552095], [47.384208, 8.51008], [47.369355, 8.520003], [47.379156, 8.522294], [47.425706, 8.494055], [47.361667, 8.550905], [47.389726, 8.511582], [47.428954, 8.542077], [47.42487, 8.537354], [47.378879, 8.526924], [47.422143, 8.50297], [47.373506, 8.519504], [47.36954, 8.526177], [47.40338, 8.570086], [47.369728, 8.508915], [47.373744, 8.517126], [47.379979, 8.507373], [47.379993, 8.522205], [47.369569, 8.549587], [47.387818, 8.527133], [47.405302, 8.558467], [47.364075, 8.550293], [47.366756, 8.600449], [47.356462, 8.572797], [47.370591, 8.564822], [47.367101, 8.544306], [47.389341, 8.539164], [47.36949, 8.466779], [47.36661, 8.541025], [47.382506, 8.534321], [47.372827, 8.514154], [47.382593, 8.529807], [47.388748, 8.487826], [47.403625, 8.55606], [47.395234, 8.540001], [47.373155, 8.547053], [47.41343, 8.538138], [47.407727, 8.580845], [47.408056, 8.55076], [47.39197, 8.517866], [47.403726, 8.571511], [47.380017, 8.490409], [47.392964, 8.514574], [47.338173, 8.53001], [47.380365, 8.484814], [47.398983, 8.542013], [47.384376, 8.498706], [47.331867, 8.516689], [47.372725, 8.529883], [47.363715, 8.566967], [47.388248, 8.52632], [47.394593, 8.479013], [47.377534, 8.522592], [47.365251, 8.500828], [47.37814, 8.517427], [47.375848, 8.536383], [47.349805, 8.532736], [47.370847, 8.51912], [47.370234, 8.548727], [47.379435, 8.542191], [47.364651, 8.554873], [47.370107, 8.548777], [47.405154, 8.570813], [47.364845, 8.545967], [47.361163, 8.590385], [47.377217, 8.538967], [47.360392, 8.526123], [47.367858, 8.545963], [47.378951, 8.559807], [47.351666, 8.576613], [47.391458, 8.519763], [47.391551, 8.519473], [47.409919, 8.54322], [47.376438, 8.521444], [47.369223, 8.550016], [47.377292, 8.512841], [47.368076, 8.541095], [47.370796, 8.514974], [47.358312, 8.584049], [47.381604, 8.515444], [47.389263, 8.527387], [47.389723, 8.511913], [47.356023, 8.562529], [47.420789, 8.502519], [47.429277, 8.548751], [47.368329, 8.534348], [47.366623, 8.516823], [47.39182, 8.518604], [47.394205, 8.525091], [47.404113, 8.564139], [47.392348, 8.525516], [47.374158, 8.521014], [47.380239, 8.501524], [47.398227, 8.54205], [47.391848, 8.531825], [47.410803, 8.558782], [47.381253, 8.542109], [47.356344, 8.507878], [47.380147, 8.520235], [47.336249, 8.533702], [47.352311, 8.534098], [47.418772, 8.507621], [47.333923, 8.535229], [47.398496, 8.494059], [47.366104, 8.533786], [47.360768, 8.598426], [47.376849, 8.499457], [47.407562, 8.58483], [47.413693, 8.532313], [47.357387, 8.52618], [47.403971, 8.532047], [47.373502, 8.489751], [47.367217, 8.533954], [47.391122, 8.504603], [47.369442, 8.547797], [47.389391, 8.512793], [47.415631, 8.5702], [47.404646, 8.557393], [47.398373, 8.541855], [47.378804, 8.54239], [47.380451, 8.519447], [47.37017, 8.548792], [47.366464, 8.54788], [47.398437, 8.591482], [47.370266, 8.518697], [47.373636, 8.542865], [47.36499, 8.545877], [47.386, 8.521414], [47.374253, 8.535648], [47.364393, 8.546209], [47.375121, 8.54189], [47.402998, 8.536942], [47.417409, 8.524491], [47.351746, 8.527257], [47.386322, 8.49644], [47.393457, 8.473374], [47.400835, 8.548702], [47.372424, 8.512054], [47.3708, 8.491101], [47.41228, 8.51511], [47.381398, 8.517188], [47.335422, 8.519394], [47.377957, 8.519701], [47.363774, 8.55165], [47.35734, 8.552813], [47.366252, 8.518934], [47.391561, 8.514506], [47.367196, 8.515166], [47.366803, 8.562081], [47.364493, 8.532879], [47.365046, 8.531513], [47.397622, 8.47535], [47.371115, 8.52409], [47.423034, 8.543227], [47.336714, 8.53309], [47.425941, 8.493927], [47.385348, 8.530539], [47.382172, 8.555068], [47.368414, 8.547166], [47.371422, 8.562588], [47.357, 8.53569], [47.381087, 8.557482], [47.379437, 8.50756], [47.370713, 8.515158], [47.368549, 8.529122], [47.377168, 8.540396], [47.377596, 8.527467], [47.367562, 8.523157], [47.333463, 8.534373], [47.414315, 8.533028], [47.402528, 8.490787], [47.334175, 8.515109], [47.37449, 8.540076], [47.36702, 8.531077], [47.412058, 8.537752], [47.378976, 8.567423], [47.37841, 8.514479], [47.360203, 8.548875], [47.363607, 8.533311], [47.3772, 8.513051], [47.36745, 8.545425], [47.39721, 8.529855], [47.364508, 8.563118], [47.414686, 8.516563], [47.369465, 8.553782], [47.387394, 8.540554], [47.363423, 8.547963], [47.406915, 8.481135], [47.365257, 8.53864], [47.404404, 8.580336], [47.396688, 8.486181], [47.373253, 8.525405], [47.383563, 8.590273], [47.406815, 8.569324], [47.365448, 8.546879], [47.3469, 8.533683], [47.371158, 8.555499], [47.376967, 8.481582], [47.413768, 8.546109], [47.368209, 8.496108], [47.403436, 8.536342], [47.352543, 8.576129], [47.362196, 8.559468], [47.389562, 8.537619], [47.362433, 8.612548], [47.361586, 8.534037], [47.378601, 8.499757], [47.407149, 8.586556], [47.361278, 8.516966], [47.419528, 8.506563], [47.416231, 8.514845], [47.392612, 8.545126], [47.3571, 8.55257], [47.375134, 8.539493], [47.357684, 8.521434], [47.403836, 8.55837], [47.397037, 8.508854], [47.368461, 8.519362], [47.385856, 8.519556], [47.366611, 8.559654], [47.393383, 8.499362], [47.367308, 8.510892], [47.404717, 8.59501], [47.413294, 8.526858], [47.397008, 8.540661], [47.359865, 8.596036], [47.370187, 8.548845], [47.347358, 8.532805], [47.375967, 8.559546], [47.37715, 8.527074], [47.33908, 8.535891], [47.366283, 8.545176], [47.383688, 8.531988], [47.372013, 8.556378], [47.37875, 8.53288], [47.366331, 8.534505], [47.387117, 8.545939], [47.372886, 8.511772], [47.38194, 8.584265], [47.385593, 8.475645], [47.360652, 8.524288], [47.383048, 8.488456], [47.363017, 8.556454], [47.361511, 8.561466], [47.375099, 8.519457], [47.381966, 8.535237], [47.375631, 8.527903], [47.360524, 8.563074], [47.410492, 8.543484], [47.371682, 8.488099], [47.414622, 8.544245], [47.420213, 8.503555], [47.397098, 8.530237], [47.355464, 8.526896], [47.385436, 8.536395], [47.366732, 8.540538], [47.361372, 8.602741], [47.396345, 8.513715], [47.363387, 8.559109], [47.377372, 8.526443], [47.389721, 8.491594], [47.381519, 8.514846], [47.362744, 8.574307], [47.377776, 8.482631], [47.380898, 8.528369], [47.398409, 8.541882], [47.379525, 8.537465], [47.376581, 8.54343], [47.382102, 8.544564], [47.360917, 8.505521], [47.408548, 8.569626], [47.431309, 8.516555], [47.392706, 8.539101], [47.419931, 8.508731], [47.378632, 8.519635], [47.407946, 8.542583], [47.413147, 8.52439], [47.376021, 8.538055], [47.377925, 8.531724], [47.380756, 8.517586], [47.374041, 8.517158], [47.348344, 8.534136], [47.361206, 8.502429], [47.369002, 8.525001], [47.375579, 8.541899], [47.378202, 8.529029], [47.405025, 8.557282], [47.398581, 8.504394], [47.405141, 8.480451], [47.361972, 8.560284], [47.405053, 8.482212], [47.370617, 8.546232], [47.404042, 8.556599], [47.366202, 8.545187], [47.353968, 8.600131], [47.37721, 8.54727], [47.420654, 8.502477], [47.372657, 8.534198], [47.37504, 8.545569], [47.377138, 8.49933], [47.400213, 8.54327], [47.399323, 8.495122], [47.38566, 8.542227], [47.388082, 8.540079], [47.369826, 8.525388], [47.366789, 8.543028], [47.354132, 8.599049], [47.369806, 8.490565], [47.361594, 8.561269], [47.372307, 8.526525], [47.368373, 8.546662], [47.372034, 8.502711], [47.399362, 8.542895], [47.368522, 8.499186], [47.392136, 8.49902], [47.386919, 8.518399], [47.369863, 8.510851], [47.392721, 8.524186], [47.419973, 8.549141], [47.374994, 8.560585], [47.372766, 8.525514], [47.353644, 8.553703], [47.377561, 8.506159], [47.36651, 8.540268], [47.400821, 8.534181], [47.380437, 8.519923], [47.376967, 8.539783], [47.363933, 8.521667], [47.376895, 8.540682], [47.371253, 8.525669], [47.377768, 8.53776], [47.414197, 8.518833], [47.371214, 8.514493], [47.40449, 8.556847], [47.370717, 8.516681], [47.362137, 8.504963], [47.389467, 8.48792], [47.376785, 8.538084], [47.356957, 8.522161], [47.392646, 8.524463], [47.377134, 8.540157], [47.375677, 8.535399], [47.397844, 8.474639], [47.390973, 8.514892], [47.36448, 8.554896], [47.374482, 8.495729], [47.369671, 8.525557], [47.358111, 8.519987], [47.367061, 8.522829], [47.375154, 8.540288], [47.415529, 8.563095], [47.350666, 8.529246], [47.400804, 8.488554], [47.38983, 8.476562], [47.351977, 8.525699], [47.399349, 8.542391], [47.424373, 8.541412], [47.388598, 8.520658], [47.384847, 8.509126], [47.377939, 8.541564], [47.355578, 8.508022], [47.363801, 8.551611], [47.39085, 8.50869], [47.410395, 8.544184], [47.380599, 8.525714], [47.398276, 8.473574], [47.402382, 8.535552], [47.372556, 8.521074], [47.355268, 8.55502], [47.378108, 8.520803], [47.37711, 8.541706], [47.390266, 8.522162], [47.34848, 8.534006], [47.391375, 8.536226], [47.385243, 8.536815], [47.391877, 8.518248], [47.379545, 8.524951], [47.378733, 8.523226], [47.387006, 8.534043], [47.375403, 8.52819], [47.38335, 8.515267], [47.36226, 8.559337], [47.372731, 8.538755], [47.361977, 8.503782], [47.426805, 8.546765], [47.354018, 8.523888], [47.41083, 8.550421], [47.409234, 8.547128], [47.371299, 8.488608], [47.374221, 8.519082], [47.368352, 8.547006], [47.355285, 8.574479], [47.399001, 8.594462], [47.349913, 8.566397], [47.376843, 8.507018], [47.377095, 8.527205], [47.397288, 8.49438], [47.364392, 8.530216], [47.378521, 8.502523], [47.413788, 8.536423], [47.389118, 8.469648], [47.391024, 8.522906], [47.385477, 8.485457], [47.366765, 8.542736], [47.387482, 8.48653], [47.371519, 8.557254], [47.374925, 8.518778], [47.3642, 8.598805], [47.352342, 8.525111], [47.371586, 8.550238], [47.409148, 8.483961], [47.375666, 8.533744], [47.369385, 8.554681], [47.360123, 8.581043], [47.371879, 8.522292], [47.376919, 8.528671], [47.374524, 8.549743], [47.345536, 8.529512], [47.420795, 8.502864], [47.391002, 8.52235], [47.370341, 8.513614], [47.370484, 8.546997], [47.419561, 8.50003], [47.363696, 8.564292], [47.389678, 8.511938], [47.381035, 8.512784], [47.403962, 8.556505], [47.36693, 8.544315], [47.389926, 8.512288], [47.366691, 8.545793], [47.416749, 8.536285], [47.363472, 8.534354], [47.39049, 8.490112], [47.382348, 8.514744], [47.389263, 8.527387], [47.380412, 8.559375], [47.42255, 8.551448], [47.362974, 8.518444], [47.399511, 8.502094], [47.389927, 8.548448], [47.388487, 8.489834], [47.386535, 8.543848], [47.373635, 8.536403], [47.386002, 8.535559], [47.35026, 8.568654], [47.339978, 8.529372], [47.360712, 8.584206], [47.395281, 8.499334], [47.351452, 8.560778], [47.384913, 8.508809], [47.409529, 8.537912], [47.378569, 8.528281], [47.377719, 8.54197], [47.35413, 8.559166], [47.362311, 8.567109], [47.3667, 8.53164], [47.380982, 8.515564], [47.415264, 8.508558], [47.362712, 8.547034], [47.390627, 8.524925], [47.382644, 8.514776], [47.359748, 8.50841], [47.362698, 8.567965], [47.388634, 8.528341], [47.381351, 8.498977], [47.37855, 8.504258], [47.363971, 8.547074], [47.386751, 8.547534], [47.388871, 8.541247], [47.380386, 8.519604], [47.355002, 8.510989], [47.366769, 8.510749], [47.362134, 8.549088], [47.364349, 8.566544], [47.410488, 8.572662], [47.361797, 8.566278], [47.378272, 8.534036], [47.369044, 8.492298], [47.373878, 8.535402], [47.364214, 8.548866], [47.37432, 8.544654], [47.374338, 8.54472], [47.391154, 8.538672], [47.35959, 8.521486], [47.398603, 8.472229], [47.386843, 8.535126], [47.377737, 8.51338], [47.377358, 8.527899], [47.390343, 8.489513], [47.414313, 8.537984], [47.399916, 8.5875], [47.366168, 8.540275], [47.373457, 8.537115], [47.385377, 8.494528], [47.422632, 8.55129], [47.365449, 8.552414], [47.386756, 8.52331], [47.397913, 8.52877], [47.364285, 8.531127], [47.370854, 8.535525], [47.405824, 8.494403], [47.386362, 8.531752], [47.360403, 8.548601], [47.366529, 8.544876], [47.365819, 8.562444], [47.351245, 8.533679], [47.403874, 8.556357], [47.334522, 8.51849], [47.358182, 8.519154], [47.341618, 8.527182], [47.374292, 8.526843], [47.42869, 8.536783], [47.384894, 8.495154], [47.371352, 8.547479], [47.387018, 8.488163], [47.392348, 8.541664], [47.385797, 8.548561], [47.383392, 8.515599], [47.384367, 8.507527], [47.385863, 8.539755], [47.403909, 8.556451], [47.398073, 8.474153], [47.389945, 8.512261], [47.386324, 8.518519], [47.40319, 8.486322], [47.377028, 8.526661], [47.411189, 8.562606], [47.401124, 8.544906], [47.374431, 8.551913], [47.422971, 8.536572], [47.40924, 8.571536], [47.374466, 8.556654], [47.38287, 8.541375], [47.372871, 8.475981], [47.383181, 8.531395], [47.39131, 8.537403], [47.370352, 8.514316], [47.379677, 8.554499], [47.37592, 8.541959], [47.40529, 8.534287], [47.403188, 8.54728], [47.368879, 8.540834], [47.360946, 8.588712], [47.382703, 8.540007], [47.381363, 8.557819], [47.351205, 8.532196], [47.382066, 8.514089], [47.357383, 8.572472], [47.383818, 8.526786], [47.4044, 8.556792], [47.37811, 8.530192], [47.363616, 8.575239], [47.383045, 8.540067], [47.382068, 8.53018], [47.366103, 8.545212], [47.390667, 8.522528], [47.38728, 8.488023], [47.386891, 8.546994], [47.369408, 8.525817], [47.369332, 8.554507], [47.37597, 8.545244], [47.349903, 8.576615], [47.377609, 8.54316], [47.353729, 8.575413], [47.364041, 8.5473], [47.364411, 8.546196], [47.368238, 8.568096], [47.377549, 8.515203], [47.39805, 8.535145], [47.381045, 8.518399], [47.366665, 8.544694], [47.360423, 8.578865], [47.409558, 8.537634], [47.398109, 8.504875], [47.368428, 8.498707], [47.373005, 8.536377], [47.364327, 8.537086], [47.369401, 8.541745], [47.375016, 8.536803], [47.374744, 8.541776], [47.37516, 8.518691], [47.363453, 8.546719], [47.405059, 8.585955], [47.376466, 8.560033], [47.324777, 8.52066], [47.398721, 8.480087], [47.380705, 8.504659], [47.361933, 8.547627], [47.359499, 8.548093], [47.363498, 8.546693], [47.362923, 8.508408], [47.379553, 8.524024], [47.381548, 8.513642], [47.409206, 8.546279], [47.35919, 8.534359], [47.412272, 8.563199], [47.42511, 8.53769], [47.398328, 8.54184], [47.405694, 8.534441], [47.395759, 8.545231], [47.420277, 8.503437], [47.386466, 8.49639], [47.378555, 8.542054], [47.378971, 8.559609], [47.383745, 8.542068], [47.392542, 8.52405], [47.378482, 8.51938], [47.372261, 8.560448], [47.368398, 8.521294], [47.406263, 8.483706], [47.403864, 8.556397], [47.379155, 8.518507], [47.367841, 8.545896], [47.393078, 8.513901], [47.395902, 8.481503], [47.404214, 8.561121], [47.399509, 8.539666], [47.374214, 8.544533], [47.35947, 8.597841], [47.37408, 8.525488], [47.376949, 8.557487], [47.380766, 8.497019], [47.374687, 8.545787], [47.397444, 8.488117], [47.37674, 8.53901], [47.377652, 8.527309], [47.375508, 8.56331], [47.406763, 8.58468], [47.384762, 8.509548], [47.366647, 8.520027], [47.360014, 8.548871], [47.386794, 8.544966], [47.386848, 8.544887], [47.376191, 8.533371], [47.402433, 8.493342], [47.392761, 8.489694], [47.376976, 8.544404], [47.375165, 8.515248], [47.370117, 8.554246], [47.352407, 8.558759], [47.372408, 8.554611], [47.381643, 8.517021], [47.404583, 8.557445], [47.363226, 8.549719], [47.36768, 8.564376], [47.369486, 8.539482], [47.351693, 8.575647], [47.399336, 8.477781], [47.367081, 8.539751], [47.371018, 8.555086], [47.372141, 8.535472], [47.386177, 8.539854], [47.367808, 8.560553], [47.378463, 8.54037], [47.361757, 8.526323], [47.417747, 8.502697], [47.374645, 8.541747], [47.418678, 8.506135], [47.35187, 8.525538], [47.405792, 8.593642], [47.374563, 8.538991], [47.39737, 8.476299], [47.414627, 8.519067], [47.402369, 8.499329], [47.395362, 8.545369], [47.381131, 8.511183], [47.407072, 8.584329], [47.397343, 8.476298], [47.409527, 8.535222], [47.415011, 8.530816], [47.389709, 8.511541], [47.373208, 8.504112], [47.364491, 8.53693], [47.375436, 8.524761], [47.386417, 8.525859], [47.406121, 8.58774], [47.407624, 8.584023], [47.36464, 8.537251], [47.377703, 8.528515], [47.358027, 8.523202], [47.422039, 8.508323], [47.398299, 8.473097], [47.347921, 8.534154], [47.378718, 8.540084], [47.398771, 8.478618], [47.390464, 8.533571], [47.378081, 8.534257], [47.368297, 8.546171], [47.347692, 8.562657], [47.412133, 8.550594], [47.354375, 8.575572], [47.409654, 8.549297], [47.412415, 8.5237], [47.377004, 8.544326], [47.376938, 8.53716], [47.401569, 8.586873], [47.373041, 8.534471], [47.334342, 8.518473], [47.369608, 8.541749], [47.378553, 8.509834], [47.344161, 8.533229], [47.398051, 8.532217], [47.38762, 8.525248], [47.371241, 8.507767], [47.364991, 8.532518], [47.337575, 8.501587], [47.386764, 8.51772], [47.419381, 8.547975], [47.374842, 8.527675], [47.358369, 8.583732], [47.415618, 8.568676], [47.405547, 8.572994], [47.37859, 8.54212], [47.355924, 8.592549], [47.384314, 8.548398], [47.370188, 8.548805], [47.380801, 8.55639], [47.386742, 8.547574], [47.420537, 8.501573], [47.373372, 8.525129], [47.364159, 8.531124], [47.421391, 8.511278], [47.374823, 8.547631], [47.383416, 8.548286], [47.414921, 8.551606], [47.366638, 8.53528], [47.405836, 8.497981], [47.379255, 8.54228], [47.407056, 8.576869], [47.385321, 8.530538], [47.416439, 8.511855], [47.379409, 8.521174], [47.364403, 8.566558], [47.387298, 8.52887], [47.378306, 8.530355], [47.356663, 8.551158], [47.383319, 8.574918], [47.383238, 8.532933], [47.361109, 8.506121], [47.377291, 8.498367], [47.402838, 8.498292], [47.360432, 8.526679], [47.419789, 8.504646], [47.364213, 8.531126], [47.40449, 8.55686], [47.375535, 8.541845], [47.380999, 8.542303], [47.404144, 8.573878], [47.406922, 8.482368], [47.378189, 8.541794], [47.379931, 8.49593], [47.35862, 8.52136], [47.38114, 8.517898], [47.352493, 8.531984], [47.410445, 8.573377], [47.365759, 8.567738], [47.397149, 8.53245], [47.3593, 8.55758], [47.383572, 8.539429], [47.350802, 8.601928], [47.366745, 8.545794], [47.369848, 8.552373], [47.388604, 8.533414], [47.380558, 8.515675], [47.414049, 8.542153], [47.36162, 8.561389], [47.366992, 8.491489], [47.403614, 8.559942], [47.364753, 8.537677], [47.364455, 8.53685], [47.361411, 8.561543], [47.343578, 8.527288], [47.380357, 8.513088], [47.373664, 8.537053], [47.363961, 8.535873], [47.380044, 8.53778], [47.363271, 8.533635], [47.393603, 8.539292], [47.409019, 8.539504], [47.406945, 8.586221], [47.386066, 8.535414], [47.370646, 8.547014], [47.355573, 8.556907], [47.376218, 8.541846], [47.358258, 8.572213], [47.369517, 8.532333], [47.379317, 8.544188], [47.374158, 8.520935], [47.392139, 8.531499], [47.414086, 8.550449], [47.373599, 8.529689], [47.36615, 8.540261], [47.385773, 8.535965], [47.353221, 8.530172], [47.39347, 8.529593], [47.351834, 8.559409], [47.379137, 8.546131], [47.404814, 8.483744], [47.372736, 8.535312], [47.35651, 8.506439], [47.335151, 8.525211], [47.359004, 8.50028], [47.366338, 8.545018], [47.430917, 8.550323], [47.397932, 8.528598], [47.427643, 8.49074], [47.409311, 8.575287], [47.414135, 8.518712], [47.373562, 8.528828], [47.41483, 8.519389], [47.359621, 8.525829], [47.374388, 8.541371], [47.367949, 8.540258], [47.382318, 8.528517], [47.399508, 8.505327], [47.377936, 8.527672], [47.353161, 8.512553], [47.382942, 8.485315], [47.389572, 8.538533], [47.404766, 8.572752], [47.384696, 8.516593], [47.370659, 8.486835], [47.427798, 8.537865], [47.37337, 8.534955], [47.36112, 8.531962], [47.38141, 8.533133], [47.369385, 8.528305], [47.4044, 8.556792], [47.378183, 8.509906], [47.383152, 8.57265], [47.352497, 8.524863], [47.366627, 8.51064], [47.377221, 8.499107], [47.37125, 8.547821], [47.377288, 8.541948], [47.369119, 8.514464], [47.408726, 8.575367], [47.393765, 8.512577], [47.369214, 8.527375], [47.373721, 8.548111], [47.390577, 8.509029], [47.369546, 8.55381], [47.381147, 8.538187], [47.397495, 8.531993], [47.367481, 8.534648], [47.355649, 8.556524], [47.350993, 8.563614], [47.376964, 8.521932], [47.363699, 8.575029], [47.371827, 8.517259], [47.357446, 8.521813], [47.392632, 8.515362], [47.412766, 8.531406], [47.408887, 8.55421], [47.381679, 8.537072], [47.370188, 8.548805], [47.370887, 8.526403], [47.38501, 8.495275], [47.388458, 8.491052], [47.405153, 8.480067], [47.380293, 8.53711], [47.374771, 8.515028], [47.402315, 8.499408], [47.383911, 8.482592], [47.381305, 8.537581], [47.38263, 8.529702], [47.37367, 8.544958], [47.371016, 8.549657], [47.352368, 8.559129], [47.36136, 8.553798], [47.391644, 8.51713], [47.391268, 8.522792], [47.407085, 8.54703], [47.374482, 8.544684], [47.403283, 8.502647], [47.37387, 8.533349], [47.373849, 8.536514], [47.387982, 8.49099], [47.37573, 8.525019], [47.371178, 8.524092], [47.368209, 8.496121], [47.393751, 8.502363], [47.374537, 8.539878], [47.393081, 8.474122], [47.40518, 8.481101], [47.39095, 8.522097], [47.380054, 8.535741], [47.399479, 8.585345], [47.404751, 8.57613], [47.377532, 8.49857], [47.381215, 8.517595], [47.395558, 8.54279], [47.422903, 8.550289], [47.387304, 8.499162], [47.402171, 8.535017], [47.361883, 8.560243], [47.370509, 8.54905], [47.37673, 8.497773], [47.363678, 8.533498], [47.373638, 8.519785], [47.359773, 8.525991], [47.377068, 8.539533], [47.39187, 8.523732], [47.400253, 8.547564], [47.353193, 8.511972], [47.391909, 8.517745], [47.362779, 8.567927], [47.378044, 8.526721], [47.366884, 8.535907], [47.37054, 8.535453], [47.387385, 8.518607], [47.348195, 8.525119], [47.343664, 8.535297], [47.370433, 8.548559], [47.366221, 8.56273], [47.374526, 8.540103], [47.371784, 8.601472], [47.418845, 8.543882], [47.327589, 8.529648], [47.365145, 8.545682], [47.388257, 8.526373], [47.382157, 8.515866], [47.341389, 8.53046], [47.403368, 8.497322], [47.374178, 8.544505], [47.335634, 8.540716], [47.369245, 8.562582], [47.347322, 8.532804], [47.389679, 8.477407], [47.375637, 8.493342], [47.375257, 8.516018], [47.391154, 8.489317], [47.410876, 8.562454], [47.390355, 8.525198], [47.392815, 8.528533], [47.407403, 8.546692], [47.396536, 8.528794], [47.414825, 8.516142], [47.361803, 8.526244], [47.387165, 8.528629], [47.36968, 8.525571], [47.377275, 8.512761], [47.372583, 8.521062], [47.371801, 8.541927], [47.382667, 8.529663], [47.375599, 8.512158], [47.359423, 8.535422], [47.362835, 8.552968], [47.365567, 8.539084], [47.387107, 8.498151], [47.376636, 8.56295], [47.408641, 8.580308], [47.419186, 8.547719], [47.333116, 8.5359], [47.368851, 8.540025], [47.387277, 8.497188], [47.390795, 8.507828], [47.373879, 8.533363], [47.382333, 8.531603], [47.374494, 8.52159], [47.384951, 8.495791], [47.378962, 8.559596], [47.372395, 8.515245], [47.364069, 8.548982], [47.369519, 8.523621], [47.381231, 8.503266], [47.342599, 8.530961], [47.379718, 8.527603], [47.369392, 8.505373], [47.392745, 8.523538], [47.381397, 8.489999], [47.367438, 8.546616], [47.388677, 8.483706], [47.354342, 8.553055], [47.38312, 8.514892], [47.369893, 8.541067], [47.377794, 8.528385], [47.378042, 8.510552], [47.361588, 8.560978], [47.372943, 8.546638], [47.38726, 8.488221], [47.355638, 8.557715], [47.421034, 8.53689], [47.388589, 8.520671], [47.361552, 8.547871], [47.389473, 8.511722], [47.375528, 8.548162], [47.34349, 8.519478], [47.414128, 8.483277], [47.363226, 8.549719], [47.377029, 8.528488], [47.391147, 8.489132], [47.399673, 8.515637], [47.364393, 8.546209], [47.36841, 8.496668], [47.38297, 8.50583], [47.389008, 8.538243], [47.378437, 8.509725], [47.3593, 8.592331], [47.37307, 8.5314], [47.40675, 8.547196], [47.361545, 8.560752], [47.392408, 8.519159], [47.352998, 8.501021], [47.403585, 8.557384], [47.372287, 8.515163], [47.370998, 8.518328], [47.363821, 8.547653], [47.377819, 8.541946], [47.409562, 8.576273], [47.354286, 8.557925], [47.415991, 8.515543], [47.338923, 8.528715], [47.419969, 8.548557], [47.406819, 8.580759], [47.427232, 8.491434], [47.417649, 8.554088], [47.363454, 8.535254], [47.427624, 8.490766], [47.368618, 8.534195], [47.40913, 8.54759], [47.421467, 8.501154], [47.371012, 8.530259], [47.366469, 8.540744], [47.395515, 8.545372], [47.381212, 8.491598], [47.407729, 8.578804], [47.385435, 8.528938], [47.382446, 8.548067], [47.379012, 8.518451], [47.383246, 8.506127], [47.396183, 8.520468], [47.409309, 8.546758], [47.3685, 8.546638], [47.362483, 8.570595], [47.387337, 8.487679], [47.389706, 8.478388], [47.368763, 8.524599], [47.369202, 8.554015], [47.370434, 8.514186], [47.375755, 8.533785], [47.368166, 8.551424], [47.401807, 8.499888], [47.419548, 8.555904], [47.366746, 8.540035], [47.386309, 8.488997], [47.399727, 8.543313], [47.365901, 8.508401], [47.357341, 8.550854], [47.38288, 8.513589], [47.361337, 8.549693], [47.339486, 8.528118], [47.359701, 8.52497], [47.378575, 8.575241], [47.365982, 8.532353], [47.363761, 8.531288], [47.381183, 8.538161], [47.378333, 8.540817], [47.379288, 8.537804], [47.370408, 8.518025], [47.395955, 8.538824], [47.422572, 8.499294], [47.370372, 8.518024], [47.363376, 8.534908], [47.385544, 8.50857], [47.408803, 8.546059], [47.36554, 8.53911], [47.390805, 8.474224], [47.366616, 8.541356], [47.378469, 8.575053], [47.347181, 8.534416], [47.384057, 8.545174], [47.370794, 8.508446], [47.371363, 8.512006], [47.380337, 8.524927], [47.343202, 8.535645], [47.375189, 8.519446], [47.374509, 8.53997], [47.397491, 8.53247], [47.405972, 8.558879], [47.398353, 8.536462], [47.37006, 8.543374], [47.40244, 8.493541], [47.370659, 8.51423], [47.374049, 8.524931], [47.385777, 8.496006], [47.408843, 8.540018], [47.372966, 8.500201], [47.367101, 8.544239], [47.379914, 8.522985], [47.381629, 8.513696], [47.407206, 8.578926], [47.387651, 8.498613], [47.418758, 8.506242], [47.377084, 8.499356], [47.386941, 8.528519], [47.361829, 8.560228], [47.407211, 8.550743], [47.378793, 8.526458], [47.37803, 8.528164], [47.385929, 8.521386], [47.406501, 8.578407], [47.384497, 8.534866], [47.410662, 8.556645], [47.417545, 8.553689], [47.359845, 8.535418], [47.418193, 8.506032], [47.358436, 8.576903], [47.370347, 8.55008], [47.403436, 8.572671], [47.36527, 8.530578], [47.40432, 8.540852], [47.401378, 8.548395], [47.376758, 8.53807], [47.378345, 8.548022], [47.407383, 8.489134], [47.36493, 8.566913], [47.38636, 8.518507], [47.387988, 8.520487], [47.420968, 8.51233], [47.374151, 8.528469], [47.39575, 8.545218], [47.397675, 8.47445], [47.353127, 8.576247], [47.379423, 8.508143], [47.410671, 8.5426], [47.372298, 8.518871], [47.380591, 8.55673], [47.398245, 8.536447], [47.402481, 8.535554], [47.412851, 8.550715], [47.404725, 8.576024], [47.403053, 8.486505], [47.38858, 8.520658], [47.381555, 8.548194], [47.379959, 8.521026], [47.355386, 8.52565], [47.352013, 8.573298], [47.40757, 8.538574], [47.374626, 8.538053], [47.371627, 8.517493], [47.374032, 8.541006], [47.408988, 8.579798], [47.381707, 8.540768], [47.411479, 8.526689], [47.389598, 8.543368], [47.392632, 8.515415], [47.377092, 8.541705], [47.376785, 8.509361], [47.370188, 8.548792], [47.384875, 8.532039], [47.358741, 8.53333], [47.371431, 8.562602], [47.375767, 8.541069], [47.368314, 8.544397], [47.362185, 8.532527], [47.414188, 8.518886], [47.365585, 8.546684], [47.403898, 8.576867], [47.377761, 8.507858], [47.413961, 8.557867], [47.376522, 8.548672], [47.41146, 8.544763], [47.409133, 8.545443], [47.409223, 8.546333], [47.387234, 8.519386], [47.371021, 8.514912], [47.392432, 8.524286], [47.370722, 8.535244], [47.335744, 8.540453], [47.383229, 8.5061], [47.366187, 8.521104], [47.381317, 8.517292], [47.381249, 8.503266], [47.386522, 8.52908], [47.387323, 8.488262], [47.355262, 8.530227], [47.384791, 8.531375], [47.369982, 8.510615], [47.356864, 8.53582], [47.419729, 8.548248], [47.377, 8.541942], [47.368949, 8.524854], [47.385891, 8.518643], [47.355904, 8.535602], [47.356596, 8.535695], [47.387512, 8.581127], [47.36743, 8.521897], [47.366874, 8.543546], [47.365017, 8.483096], [47.391049, 8.523092], [47.39104, 8.521132], [47.407006, 8.537436], [47.377302, 8.539511], [47.384791, 8.531402], [47.415422, 8.483409], [47.415455, 8.508323], [47.372768, 8.494238], [47.374318, 8.543038], [47.402687, 8.535664], [47.360457, 8.569029], [47.385508, 8.528847], [47.371472, 8.54523], [47.379062, 8.511181], [47.36455, 8.566243], [47.389723, 8.511939], [47.377536, 8.544217], [47.409557, 8.537766], [47.361911, 8.560098], [47.374935, 8.512926], [47.363366, 8.533134], [47.3842, 8.510993], [47.366749, 8.537824], [47.370325, 8.514303], [47.372982, 8.516885], [47.394972, 8.525822], [47.380451, 8.519447], [47.388681, 8.531005], [47.358497, 8.52104], [47.390804, 8.474277], [47.400184, 8.494411], [47.374537, 8.541798], [47.39167, 8.511448], [47.373605, 8.553604], [47.36499, 8.54589], [47.363082, 8.533684], [47.412681, 8.540296], [47.36374, 8.535485], [47.410838, 8.571848], [47.388731, 8.538993], [47.353171, 8.512408], [47.367536, 8.53833], [47.370924, 8.537698], [47.409606, 8.576433], [47.370244, 8.513361], [47.370206, 8.548806], [47.408152, 8.531351], [47.405363, 8.534235], [47.402733, 8.577359], [47.356448, 8.55674], [47.370183, 8.529474], [47.381092, 8.518188], [47.40886, 8.545782], [47.373895, 8.538302], [47.380586, 8.512695], [47.361344, 8.563793], [47.377378, 8.543751], [47.414562, 8.570006], [47.367879, 8.560581], [47.369784, 8.508664], [47.386096, 8.56503], [47.372861, 8.538334], [47.393741, 8.524763], [47.395591, 8.489087], [47.365503, 8.546775], [47.374786, 8.53256], [47.375545, 8.513123], [47.387005, 8.528374], [47.411354, 8.544601], [47.37773, 8.526609], [47.373094, 8.532685], [47.372169, 8.522986], [47.366373, 8.561886], [47.395213, 8.489106], [47.411396, 8.572748], [47.398024, 8.508238], [47.37533, 8.477578], [47.383499, 8.530051], [47.404819, 8.576543], [47.368919, 8.540424], [47.384455, 8.488126], [47.415253, 8.563765], [47.391636, 8.517104], [47.37573, 8.558945], [47.413622, 8.514938], [47.358479, 8.556901], [47.373748, 8.515722], [47.385852, 8.518007], [47.377918, 8.518084], [47.360535, 8.535723], [47.370959, 8.537765], [47.344785, 8.533798], [47.358321, 8.550001], [47.370206, 8.548806], [47.372673, 8.523937], [47.385518, 8.548542], [47.391862, 8.469674], [47.405116, 8.482226], [47.378792, 8.539847], [47.376179, 8.56731], [47.405863, 8.553457], [47.377329, 8.500076], [47.40336, 8.579506], [47.386118, 8.521323], [47.403839, 8.5673], [47.402147, 8.502041], [47.410195, 8.542523], [47.361951, 8.515285], [47.403696, 8.556168], [47.377549, 8.543781], [47.353049, 8.556576], [47.376728, 8.516484], [47.368909, 8.548037], [47.343051, 8.529739], [47.371626, 8.517626], [47.369915, 8.530249], [47.371083, 8.51024], [47.370188, 8.548805], [47.391077, 8.523027], [47.357325, 8.52704], [47.373141, 8.542855], [47.374842, 8.527675], [47.390845, 8.5455], [47.390284, 8.509593], [47.367217, 8.523548], [47.383726, 8.573788], [47.414466, 8.556778], [47.370217, 8.532533], [47.384816, 8.531654], [47.365516, 8.565827], [47.404541, 8.557087], [47.375517, 8.535211], [47.382339, 8.530106], [47.384849, 8.531959], [47.414366, 8.52101], [47.413954, 8.551109], [47.374031, 8.524918], [47.354394, 8.55798], [47.382585, 8.52978], [47.358805, 8.516996], [47.405702, 8.556144], [47.393199, 8.53066], [47.374823, 8.552239], [47.379451, 8.54427], [47.360105, 8.561794], [47.382924, 8.496148], [47.392171, 8.495232], [47.363298, 8.533702], [47.383863, 8.528707], [47.364278, 8.554375], [47.407036, 8.550275], [47.412341, 8.560682], [47.376342, 8.567234], [47.368656, 8.518718], [47.389441, 8.539021], [47.389634, 8.521408], [47.363265, 8.553096], [47.424971, 8.553142], [47.37763, 8.529639], [47.398373, 8.541868], [47.383872, 8.532509], [47.426025, 8.493558], [47.388466, 8.520391], [47.386372, 8.496812], [47.403516, 8.506692], [47.376966, 8.539822], [47.373852, 8.542843], [47.365483, 8.546973], [47.42236, 8.550648], [47.365346, 8.534922], [47.354886, 8.574775], [47.389879, 8.477133], [47.358442, 8.518233], [47.417588, 8.54546], [47.377104, 8.529086], [47.428611, 8.543184], [47.382026, 8.473205], [47.355837, 8.532238], [47.368217, 8.546063], [47.360418, 8.535734], [47.410845, 8.564653], [47.368212, 8.541005], [47.374434, 8.54026], [47.386297, 8.500135], [47.370824, 8.536822], [47.416809, 8.547021], [47.368428, 8.498707], [47.386871, 8.528279], [47.427085, 8.546625], [47.399731, 8.518142], [47.376087, 8.533951], [47.38148, 8.503549], [47.378174, 8.526287], [47.329896, 8.514877], [47.383385, 8.484118], [47.39762, 8.502268], [47.399033, 8.586805], [47.386427, 8.541024], [47.372062, 8.521912], [47.399775, 8.547686], [47.376153, 8.5183], [47.366595, 8.521721], [47.357592, 8.521591], [47.366912, 8.555503], [47.366941, 8.544051], [47.348045, 8.534315], [47.378279, 8.530407], [47.383335, 8.539795], [47.367666, 8.494468], [47.406586, 8.513206], [47.404504, 8.594674], [47.336186, 8.529903], [47.361649, 8.52922], [47.379228, 8.545974], [47.365614, 8.503431], [47.422726, 8.550934], [47.361502, 8.561466], [47.372377, 8.565138], [47.399537, 8.502108], [47.354259, 8.524012], [47.371856, 8.557751], [47.396655, 8.522889], [47.409008, 8.574141], [47.381175, 8.50741], [47.377165, 8.552817], [47.416145, 8.553315], [47.367513, 8.537893], [47.41638, 8.551425], [47.400603, 8.585369], [47.413093, 8.541404], [47.371022, 8.530219], [47.390746, 8.521868], [47.371813, 8.518715], [47.358372, 8.519039], [47.378138, 8.499178], [47.403629, 8.548151], [47.409503, 8.537779], [47.41442, 8.519049], [47.383544, 8.515669], [47.341319, 8.530246], [47.3798, 8.521672], [47.383257, 8.560997], [47.380239, 8.501564], [47.362894, 8.516403], [47.377427, 8.509917], [47.363212, 8.568757], [47.373919, 8.520585], [47.390089, 8.492701], [47.373955, 8.591204], [47.383717, 8.573735], [47.385451, 8.536726], [47.396779, 8.507643], [47.371871, 8.512559], [47.384528, 8.483969], [47.365749, 8.519837], [47.381159, 8.549087], [47.389436, 8.472316], [47.41201, 8.54655], [47.388774, 8.479999], [47.37674, 8.524774], [47.399187, 8.542375], [47.359934, 8.594542], [47.365073, 8.553147], [47.401963, 8.501481], [47.410742, 8.557707], [47.3863, 8.526823], [47.409965, 8.574665], [47.376029, 8.559613], [47.412019, 8.563339], [47.373092, 8.504004], [47.370832, 8.531235], [47.391743, 8.518179], [47.356508, 8.551459], [47.40526, 8.555273], [47.384727, 8.534341], [47.392897, 8.474648], [47.393687, 8.502548], [47.373968, 8.541071], [47.386349, 8.496375], [47.355234, 8.575974], [47.370471, 8.524739], [47.385025, 8.548333], [47.390517, 8.4901], [47.377414, 8.53913], [47.382233, 8.540276], [47.386518, 8.517093], [47.37497, 8.523586], [47.369815, 8.510227], [47.408625, 8.539284], [47.398657, 8.532799], [47.373744, 8.544774], [47.384593, 8.53806], [47.368454, 8.555098], [47.408995, 8.54393], [47.392746, 8.521445], [47.376808, 8.513679], [47.361816, 8.515322], [47.347341, 8.532725], [47.359251, 8.535485], [47.40649, 8.589457], [47.351785, 8.509653], [47.37624, 8.500134], [47.39205, 8.532372], [47.424156, 8.549082], [47.365214, 8.538375], [47.382028, 8.498686], [47.373045, 8.547249], [47.385119, 8.495211], [47.363779, 8.575177], [47.401182, 8.517774], [47.370099, 8.518376], [47.356892, 8.535781], [47.385229, 8.54394], [47.415948, 8.566285], [47.375535, 8.530497], [47.383093, 8.497409], [47.383984, 8.538762], [47.407805, 8.543203], [47.415249, 8.570537], [47.356517, 8.55142], [47.36895, 8.524748], [47.342576, 8.536201], [47.367865, 8.520582], [47.382026, 8.489164], [47.365028, 8.534346], [47.378997, 8.559676], [47.379785, 8.53755], [47.412794, 8.533195], [47.381692, 8.549826], [47.37647, 8.544725], [47.373058, 8.532724], [47.366033, 8.562634], [47.407637, 8.538217], [47.372577, 8.529311], [47.356036, 8.509103], [47.377818, 8.541972], [47.376478, 8.534462], [47.391552, 8.534613], [47.357245, 8.526932], [47.386003, 8.535413], [47.354599, 8.55813], [47.339526, 8.527775], [47.390385, 8.491819], [47.412349, 8.54115], [47.340662, 8.519858], [47.367651, 8.554432], [47.36123, 8.547679], [47.398211, 8.541917], [47.41727, 8.544883], [47.36847, 8.505844], [47.380256, 8.54291], [47.383704, 8.548199], [47.404187, 8.540637], [47.358492, 8.578572], [47.367116, 8.539884], [47.382805, 8.529255], [47.386175, 8.518132], [47.368382, 8.546662], [47.381261, 8.534693], [47.397709, 8.533203], [47.335354, 8.541716], [47.388181, 8.536319], [47.387259, 8.542379], [47.427657, 8.545112], [47.366373, 8.541417], [47.372457, 8.532526], [47.385877, 8.542059], [47.373461, 8.519517], [47.392112, 8.476938], [47.382292, 8.530291], [47.332825, 8.536225], [47.362804, 8.535545], [47.360934, 8.530701], [47.358767, 8.533384], [47.394088, 8.493151], [47.40593, 8.555764], [47.404934, 8.552775], [47.356987, 8.512273], [47.375323, 8.485377], [47.3854, 8.517362], [47.370603, 8.524994], [47.368904, 8.502622], [47.363607, 8.535244], [47.411189, 8.562606], [47.41866, 8.530188], [47.390685, 8.491454], [47.384132, 8.530673], [47.397309, 8.533632], [47.354236, 8.575979], [47.370208, 8.535353], [47.370839, 8.518073], [47.372527, 8.534593], [47.426527, 8.548535], [47.386381, 8.518229], [47.38002, 8.544123], [47.390077, 8.522159], [47.391653, 8.519065], [47.376172, 8.527756], [47.390661, 8.523217], [47.359542, 8.549245], [47.381167, 8.491531], [47.36968, 8.525584], [47.354237, 8.598442], [47.375401, 8.526561], [47.394325, 8.510376], [47.373381, 8.534743], [47.359693, 8.535401], [47.37712, 8.541613], [47.383855, 8.526734], [47.379526, 8.555237], [47.364688, 8.521749], [47.369275, 8.527495], [47.36209, 8.529255], [47.366512, 8.541884], [47.353777, 8.534075], [47.363851, 8.533223], [47.369296, 8.527191], [47.356531, 8.510013], [47.413726, 8.546691], [47.379554, 8.524924], [47.369662, 8.525597], [47.3865, 8.554046], [47.37741, 8.535753], [47.370143, 8.548818], [47.357463, 8.521893], [47.36028, 8.534182], [47.410837, 8.544988], [47.363749, 8.535432], [47.3812, 8.528772], [47.393392, 8.525498], [47.380789, 8.503429], [47.42791, 8.491063], [47.403832, 8.571699], [47.340181, 8.529866], [47.392261, 8.503049], [47.417706, 8.545409], [47.410865, 8.554264], [47.361783, 8.505287], [47.375375, 8.560328], [47.379315, 8.537871], [47.359342, 8.569906], [47.386906, 8.534173], [47.397961, 8.474654], [47.376843, 8.522446], [47.378344, 8.52731], [47.360097, 8.563515], [47.385886, 8.544907], [47.410228, 8.565196], [47.373452, 8.52909], [47.415213, 8.570563], [47.403297, 8.497188], [47.387935, 8.520433], [47.374404, 8.496403], [47.355383, 8.600757], [47.36774, 8.496191], [47.414205, 8.518899], [47.422612, 8.553371], [47.407247, 8.550704], [47.37828, 8.528381], [47.388197, 8.520279], [47.358951, 8.558341], [47.412975, 8.537811], [47.362222, 8.52571], [47.386449, 8.491317], [47.365267, 8.564604], [47.414006, 8.549387], [47.40542, 8.59219], [47.373064, 8.511974], [47.397998, 8.474522], [47.394068, 8.489322], [47.367538, 8.496703], [47.3695, 8.506355], [47.36262, 8.558431], [47.35157, 8.525903], [47.378457, 8.530557], [47.370671, 8.516812], [47.39415, 8.490198], [47.349378, 8.534117], [47.401005, 8.535656], [47.379431, 8.537927], [47.375374, 8.547351], [47.388657, 8.516236], [47.390647, 8.508275], [47.379827, 8.527433], [47.383265, 8.543369], [47.381411, 8.551012], [47.363056, 8.51732], [47.364874, 8.533522], [47.336985, 8.520524], [47.372479, 8.547158], [47.394769, 8.52546], [47.354041, 8.557219], [47.369528, 8.543482], [47.383162, 8.572517], [47.371396, 8.521037], [47.398109, 8.541266], [47.376189, 8.525955], [47.427523, 8.551565], [47.386474, 8.534204], [47.414513, 8.558462], [47.356472, 8.558818], [47.339436, 8.527694], [47.361386, 8.522727], [47.399161, 8.542295], [47.378178, 8.515309], [47.368359, 8.547178], [47.387267, 8.499347], [47.37358, 8.544903], [47.3775, 8.537662], [47.369145, 8.556185], [47.389869, 8.488246], [47.405824, 8.550051], [47.375248, 8.544594], [47.388008, 8.491017], [47.369356, 8.554879], [47.375278, 8.485284], [47.356644, 8.573502], [47.379544, 8.527851], [47.387061, 8.51864], [47.348452, 8.534125], [47.426433, 8.547022], [47.384428, 8.507753], [47.359574, 8.535598], [47.424192, 8.543423], [47.355437, 8.574615], [47.37927, 8.53787], [47.37541, 8.514988], [47.41443, 8.51897], [47.365712, 8.520896], [47.376879, 8.520526], [47.381874, 8.51635], [47.344488, 8.532879], [47.37798, 8.508471], [47.378416, 8.510003], [47.374878, 8.540004], [47.372431, 8.542827], [47.415273, 8.547717], [47.366184, 8.545147], [47.390729, 8.539776], [47.37385, 8.536487], [47.369184, 8.51996], [47.398113, 8.479691], [47.363235, 8.549706], [47.399082, 8.542081], [47.423004, 8.546328], [47.381276, 8.503214], [47.378385, 8.567158], [47.407853, 8.582623], [47.362026, 8.550979], [47.374211, 8.54105], [47.366392, 8.541325], [47.364597, 8.537078], [47.376173, 8.518089], [47.402314, 8.487643], [47.374704, 8.560804], [47.37258, 8.534713], [47.427331, 8.552873], [47.375842, 8.577884], [47.402992, 8.559214], [47.34539, 8.535425], [47.343562, 8.51948], [47.354107, 8.55317], [47.402043, 8.498594], [47.412897, 8.537464], [47.379762, 8.527696], [47.354107, 8.575315], [47.374815, 8.519995], [47.398672, 8.492539], [47.362323, 8.554731], [47.392326, 8.502825], [47.364009, 8.551483], [47.406941, 8.493206], [47.364665, 8.554383], [47.386504, 8.529106], [47.35274, 8.602447], [47.384763, 8.509415], [47.377671, 8.537612], [47.373142, 8.531454], [47.412099, 8.546644], [47.369648, 8.533726], [47.353121, 8.524492], [47.373562, 8.526921], [47.3849, 8.542675], [47.414509, 8.55605], [47.359471, 8.504287], [47.419326, 8.50795], [47.367896, 8.524012], [47.402965, 8.572051], [47.374214, 8.544533], [47.373962, 8.546394], [47.394837, 8.48886], [47.398113, 8.546526], [47.399187, 8.547952], [47.351714, 8.558864], [47.387167, 8.53508], [47.364595, 8.566205], [47.408126, 8.54631], [47.390292, 8.510732], [47.372955, 8.533185], [47.369464, 8.541746], [47.365632, 8.553927], [47.375666, 8.500956], [47.363629, 8.532001], [47.36306, 8.567734], [47.378411, 8.567185], [47.371337, 8.530199], [47.366303, 8.544924], [47.374358, 8.552878], [47.408927, 8.548208], [47.365238, 8.538733], [47.374414, 8.52241], [47.366623, 8.516823], [47.375418, 8.524721], [47.355583, 8.556894], [47.36129, 8.548037], [47.364476, 8.555332], [47.409561, 8.546803], [47.389645, 8.487102], [47.378718, 8.521981], [47.376785, 8.541845], [47.368502, 8.519813], [47.397803, 8.529907], [47.355206, 8.51413], [47.413691, 8.546677], [47.397898, 8.534148], [47.364232, 8.547953], [47.3741, 8.52717], [47.370853, 8.524284], [47.389918, 8.512248], [47.374454, 8.539108], [47.409791, 8.538725], [47.427235, 8.553401], [47.37388, 8.521869], [47.393123, 8.537745], [47.368797, 8.540925], [47.397888, 8.534187], [47.410517, 8.550282], [47.355397, 8.53121], [47.41796, 8.508824], [47.367107, 8.554924], [47.40676, 8.541485], [47.383054, 8.479861], [47.410244, 8.56362], [47.418314, 8.510474], [47.376702, 8.534493], [47.392135, 8.477283], [47.404569, 8.557988], [47.362892, 8.548918], [47.369266, 8.494646], [47.383591, 8.577427], [47.361038, 8.560172], [47.390966, 8.479287], [47.398336, 8.591719], [47.372781, 8.534413], [47.414513, 8.520668], [47.38765, 8.476944], [47.358666, 8.585565], [47.376347, 8.559289], [47.370696, 8.510192], [47.383326, 8.529319], [47.409417, 8.538267], [47.370188, 8.548805], [47.368836, 8.563011], [47.395013, 8.52055], [47.326339, 8.51335], [47.377986, 8.528137], [47.37867, 8.530879], [47.385937, 8.516684], [47.383297, 8.5152], [47.374531, 8.524359], [47.379077, 8.51824], [47.36661, 8.544798], [47.37771, 8.538182], [47.387555, 8.519657], [47.403239, 8.502579], [47.393902, 8.505519], [47.401225, 8.490669], [47.383745, 8.573669], [47.379431, 8.528471], [47.37028, 8.513428], [47.364717, 8.554609], [47.374167, 8.54093], [47.368902, 8.540344], [47.412418, 8.514795], [47.364339, 8.548114], [47.414608, 8.519106], [47.371128, 8.547342], [47.359882, 8.594395], [47.362778, 8.548585], [47.413189, 8.534171], [47.383398, 8.52838], [47.404391, 8.556818], [47.375276, 8.522586], [47.36615, 8.540234], [47.363801, 8.551611], [47.369333, 8.505901], [47.427091, 8.544133], [47.38185, 8.509251], [47.380128, 8.49698], [47.383393, 8.498978], [47.358319, 8.55204], [47.379914, 8.521025], [47.38483, 8.52723], [47.37596, 8.540662], [47.39609, 8.522665], [47.368818, 8.539707], [47.370891, 8.52304], [47.364002, 8.531518], [47.395342, 8.518967], [47.387209, 8.551398], [47.368926, 8.537803], [47.411075, 8.570581], [47.357929, 8.554203], [47.408235, 8.547147], [47.391894, 8.518314], [47.330364, 8.512901], [47.367217, 8.523508], [47.393524, 8.500624], [47.370821, 8.559597], [47.364047, 8.528726], [47.386554, 8.496631], [47.374523, 8.546088], [47.394899, 8.490928], [47.399319, 8.505323], [47.398119, 8.53553], [47.358841, 8.51889], [47.37074, 8.549413], [47.36907, 8.528286], [47.368574, 8.524595], [47.36353, 8.50793], [47.365937, 8.532419], [47.377112, 8.543374], [47.324438, 8.518484], [47.406273, 8.581489], [47.375319, 8.529499], [47.423794, 8.549313], [47.375113, 8.491597], [47.352839, 8.602449], [47.38477, 8.526938], [47.414439, 8.554922], [47.357006, 8.573219], [47.391347, 8.542954], [47.369113, 8.554821], [47.395988, 8.536334], [47.403908, 8.57227], [47.375516, 8.486864], [47.429386, 8.544883], [47.357324, 8.53575], [47.412928, 8.524717], [47.38274, 8.539928], [47.410115, 8.553692], [47.367988, 8.540881], [47.374167, 8.540917], [47.365524, 8.545504], [47.348495, 8.534298], [47.403962, 8.556491], [47.369815, 8.466666], [47.364716, 8.554702], [47.376083, 8.559641], [47.364559, 8.566257], [47.350348, 8.577974], [47.380806, 8.518937], [47.378348, 8.528806], [47.42511, 8.537703], [47.374767, 8.549682], [47.375266, 8.517911], [47.380315, 8.528132], [47.373013, 8.50383], [47.376136, 8.515334], [47.361992, 8.56472], [47.418725, 8.557212], [47.339946, 8.529954], [47.367873, 8.536907], [47.364213, 8.526373], [47.34496, 8.533391], [47.373306, 8.550115], [47.372325, 8.518858], [47.395728, 8.474823], [47.364283, 8.529353], [47.380381, 8.534503], [47.419438, 8.505567], [47.366932, 8.54311], [47.410579, 8.550336], [47.371476, 8.519172], [47.35977, 8.550852], [47.364461, 8.534321], [47.380016, 8.520722], [47.368127, 8.562876], [47.390452, 8.491343], [47.379156, 8.4892], [47.349974, 8.56657], [47.377202, 8.526307], [47.353897, 8.526228], [47.374272, 8.523228], [47.36982, 8.552492], [47.361925, 8.515179], [47.371957, 8.556535], [47.388084, 8.545456], [47.373336, 8.534663], [47.384459, 8.498509], [47.381925, 8.516695], [47.365734, 8.532017], [47.373099, 8.518781], [47.373675, 8.528314], [47.348495, 8.534298], [47.375373, 8.540902], [47.366755, 8.564224], [47.397017, 8.530261], [47.354815, 8.574708], [47.410459, 8.539415], [47.40411, 8.563556], [47.354941, 8.557198], [47.410523, 8.569072], [47.414493, 8.512213], [47.413939, 8.539474], [47.387126, 8.54594], [47.40992, 8.541232], [47.374744, 8.541789], [47.371451, 8.550275], [47.410676, 8.571818], [47.414439, 8.51897], [47.374637, 8.487588], [47.368437, 8.547498], [47.412701, 8.482971], [47.420789, 8.508324], [47.369488, 8.525884], [47.398997, 8.533058], [47.389579, 8.511936], [47.360621, 8.552088], [47.368324, 8.524378], [47.376092, 8.559641], [47.372151, 8.51528], [47.377598, 8.522474], [47.40783, 8.545283], [47.389218, 8.482564], [47.357155, 8.554292], [47.364805, 8.548309], [47.409558, 8.537647], [47.356175, 8.598974], [47.374766, 8.52043], [47.399677, 8.543816], [47.372936, 8.531318], [47.420468, 8.498285], [47.371903, 8.536884], [47.394642, 8.52555], [47.365163, 8.531423], [47.379173, 8.561057], [47.424309, 8.535897], [47.36984, 8.552227], [47.376311, 8.522528], [47.337152, 8.539027], [47.38636, 8.518533], [47.365964, 8.53234], [47.364528, 8.561146], [47.396225, 8.522721], [47.385509, 8.521059], [47.364921, 8.552985], [47.364202, 8.529444], [47.374236, 8.537435], [47.376257, 8.538748], [47.358875, 8.521988], [47.400942, 8.507767], [47.396382, 8.543191], [47.345183, 8.534508], [47.391361, 8.54518], [47.378241, 8.541067], [47.405108, 8.487088], [47.379187, 8.542782], [47.388494, 8.491053], [47.385075, 8.528944], [47.384874, 8.508133], [47.376876, 8.535106], [47.353178, 8.511706], [47.366506, 8.545405], [47.361288, 8.525505], [47.372365, 8.494045], [47.398024, 8.535038], [47.370097, 8.509823], [47.371633, 8.513998], [47.375097, 8.518703], [47.371326, 8.536078], [47.350037, 8.533879], [47.392478, 8.502947], [47.375668, 8.523984], [47.382834, 8.530011], [47.378796, 8.530881], [47.383403, 8.484092], [47.373805, 8.545861], [47.386025, 8.518831], [47.384913, 8.508796], [47.378236, 8.5216], [47.375914, 8.527446], [47.410905, 8.544473], [47.374121, 8.52492], [47.390105, 8.512437], [47.382428, 8.53771], [47.369216, 8.523257], [47.403444, 8.486075], [47.368938, 8.540319], [47.387493, 8.496199], [47.403998, 8.556572], [47.390977, 8.522137], [47.373391, 8.531711], [47.349613, 8.561242], [47.359179, 8.558028], [47.385331, 8.494646], [47.343772, 8.535286], [47.345241, 8.535038], [47.378619, 8.540055], [47.395658, 8.545441], [47.409877, 8.48489], [47.407573, 8.582829], [47.407672, 8.582831], [47.377362, 8.522708], [47.389447, 8.511616], [47.363825, 8.515945], [47.357332, 8.550854], [47.3712, 8.531361], [47.36068, 8.587449], [47.391761, 8.538194], [47.364465, 8.546171], [47.411639, 8.572686], [47.361874, 8.507116], [47.417524, 8.546479], [47.346697, 8.563219], [47.36707, 8.545589], [47.385979, 8.517943], [47.378104, 8.483207], [47.393399, 8.500581], [47.382102, 8.531373], [47.380438, 8.519897], [47.378527, 8.540265], [47.331711, 8.538028], [47.39177, 8.54287], [47.361094, 8.549701], [47.372697, 8.534729], [47.376491, 8.540634], [47.379324, 8.537871], [47.384745, 8.529652], [47.372864, 8.53513], [47.352067, 8.505397], [47.356154, 8.535726], [47.398282, 8.532487], [47.36293, 8.517318], [47.353048, 8.53414], [47.362357, 8.566065], [47.366779, 8.540353], [47.3939, 8.525972], [47.412388, 8.516027], [47.370015, 8.543333], [47.383748, 8.512216], [47.335181, 8.524947], [47.408619, 8.546532], [47.37768, 8.538539], [47.396207, 8.545413], [47.342721, 8.536138], [47.401912, 8.581263], [47.393387, 8.498978], [47.381434, 8.517242], [47.404099, 8.48524], [47.374557, 8.521631], [47.359846, 8.568924], [47.374393, 8.518966], [47.406608, 8.506913], [47.351448, 8.566707], [47.385339, 8.530526], [47.3604, 8.516631], [47.385193, 8.530734], [47.385544, 8.528808], [47.381673, 8.516664], [47.368225, 8.531036], [47.380903, 8.518237], [47.363164, 8.517296], [47.374931, 8.544746], [47.371865, 8.547423], [47.374387, 8.535757], [47.396851, 8.529702], [47.368509, 8.558687], [47.387719, 8.538482], [47.383166, 8.473466], [47.38221, 8.530342], [47.361565, 8.535281], [47.370497, 8.539993], [47.389998, 8.512355], [47.388393, 8.515661], [47.389717, 8.511634], [47.399384, 8.495256], [47.396597, 8.533803], [47.393125, 8.479276], [47.390877, 8.522215], [47.404993, 8.555957], [47.3626, 8.535223], [47.380493, 8.519765], [47.381729, 8.529935], [47.42108, 8.502127], [47.374519, 8.544632], [47.391961, 8.517879], [47.380098, 8.528233], [47.409992, 8.504808], [47.37028, 8.513362], [47.410893, 8.547653], [47.377779, 8.507871], [47.411972, 8.525917], [47.39789, 8.54154], [47.375125, 8.511844], [47.371393, 8.528055], [47.408956, 8.53945], [47.372879, 8.538308], [47.382971, 8.527868], [47.371325, 8.530464], [47.401197, 8.543834], [47.411133, 8.526204], [47.380155, 8.501854], [47.362341, 8.547278], [47.355886, 8.535588], [47.363147, 8.517203], [47.369138, 8.504626], [47.359678, 8.512076], [47.386784, 8.530833], [47.348019, 8.534235], [47.385933, 8.518061], [47.396001, 8.545369], [47.368172, 8.496173], [47.395084, 8.524446], [47.421036, 8.50206], [47.369288, 8.505887], [47.369591, 8.543536], [47.376086, 8.535898], [47.374682, 8.514986], [47.374276, 8.5437], [47.376369, 8.534566], [47.368866, 8.547877], [47.363678, 8.546684], [47.368699, 8.540843], [47.37346, 8.534851], [47.381202, 8.497584], [47.333913, 8.53245], [47.385449, 8.529323], [47.371021, 8.510146], [47.371353, 8.520785], [47.383004, 8.530173], [47.389926, 8.512288], [47.365532, 8.553978], [47.377155, 8.536992], [47.418665, 8.50257], [47.394792, 8.525791], [47.386741, 8.490926], [47.370647, 8.546895], [47.366851, 8.543175], [47.369881, 8.52907], [47.378046, 8.526549], [47.345031, 8.529647], [47.377524, 8.536073], [47.396835, 8.540909], [47.374577, 8.538542], [47.378282, 8.563846], [47.361484, 8.561465], [47.377189, 8.540026], [47.36851, 8.517947], [47.410533, 8.5325], [47.369848, 8.515339], [47.405754, 8.503968], [47.359526, 8.521564], [47.379257, 8.559734], [47.360981, 8.565122], [47.364351, 8.555237], [47.369322, 8.528225], [47.340217, 8.529853], [47.364595, 8.566218], [47.390521, 8.489742], [47.379294, 8.543777], [47.404655, 8.55742], [47.383265, 8.506074], [47.375162, 8.517539], [47.399746, 8.519414], [47.329954, 8.529802], [47.398012, 8.532521], [47.393845, 8.501928], [47.367608, 8.506635], [47.369873, 8.52903], [47.379559, 8.526289], [47.400553, 8.589501], [47.406918, 8.587174], [47.388882, 8.488941], [47.370022, 8.564135], [47.373122, 8.547688], [47.388511, 8.49108], [47.370377, 8.514516], [47.382348, 8.572129], [47.374299, 8.497063], [47.388441, 8.492946], [47.355087, 8.557015], [47.370009, 8.536514], [47.389834, 8.544936], [47.35669, 8.558691], [47.386494, 8.490391], [47.363402, 8.520782], [47.382793, 8.483855], [47.369153, 8.528089], [47.398659, 8.505694], [47.377726, 8.507751], [47.368763, 8.534105], [47.398898, 8.533003], [47.37434, 8.542615], [47.375661, 8.537081], [47.345681, 8.529369], [47.425878, 8.493926], [47.37017, 8.548805], [47.370608, 8.524504], [47.375045, 8.526117], [47.410375, 8.548159], [47.386861, 8.535047], [47.371663, 8.535635], [47.396303, 8.513317], [47.335566, 8.519344], [47.389678, 8.511951], [47.407856, 8.531199], [47.357779, 8.548375], [47.378003, 8.548028], [47.388737, 8.491045], [47.367906, 8.534419], [47.373136, 8.536843], [47.40688, 8.550603], [47.399335, 8.542842], [47.379894, 8.528931], [47.361847, 8.560215], [47.381407, 8.541993], [47.394139, 8.531156], [47.402926, 8.557596], [47.404455, 8.557681], [47.393624, 8.501513], [47.370421, 8.519442], [47.422834, 8.493349], [47.390613, 8.489439], [47.378603, 8.542664], [47.37636, 8.518291], [47.395884, 8.515852], [47.353944, 8.512463], [47.381306, 8.54219], [47.371619, 8.506728], [47.389564, 8.543156], [47.388036, 8.485044], [47.380738, 8.52528], [47.397702, 8.532965], [47.370235, 8.53918], [47.364972, 8.545837], [47.378121, 8.512672], [47.375877, 8.538025], [47.39331, 8.524648], [47.409814, 8.541018], [47.378759, 8.542349], [47.377189, 8.52677], [47.399168, 8.521522], [47.367108, 8.539778], [47.40287, 8.554123], [47.413948, 8.544271], [47.376043, 8.529011], [47.375759, 8.523854], [47.424703, 8.55299], [47.377578, 8.514952], [47.368987, 8.538016], [47.3572, 8.526997], [47.371809, 8.506626], [47.380417, 8.505673], [47.390525, 8.52238], [47.386431, 8.496297], [47.373898, 8.53331], [47.340577, 8.537364], [47.351241, 8.565856], [47.390904, 8.522255], [47.424168, 8.502786], [47.369379, 8.547822], [47.371622, 8.547498], [47.376847, 8.559697], [47.378549, 8.5752], [47.381351, 8.517492], [47.41069, 8.543488], [47.375908, 8.54519], [47.380008, 8.526377], [47.368955, 8.540412], [47.397103, 8.492892], [47.374824, 8.540003], [47.364621, 8.566351], [47.38894, 8.515804], [47.408223, 8.546564], [47.376638, 8.536545], [47.386921, 8.46995], [47.367377, 8.541743], [47.375633, 8.520965], [47.382658, 8.529649], [47.414019, 8.549003], [47.393211, 8.524646], [47.363625, 8.533351], [47.403908, 8.536815], [47.380454, 8.534385], [47.41299, 8.538116], [47.406543, 8.584185], [47.374579, 8.494923], [47.377092, 8.540752], [47.41105, 8.545297], [47.361802, 8.560241], [47.408352, 8.548117], [47.395739, 8.545456], [47.38656, 8.541226], [47.376315, 8.522078], [47.386477, 8.529132], [47.368917, 8.501219], [47.376924, 8.541424], [47.350072, 8.562125], [47.374457, 8.541664], [47.426851, 8.491758], [47.380145, 8.528075], [47.375828, 8.536581], [47.371135, 8.542906], [47.427825, 8.490478], [47.367543, 8.535642], [47.389544, 8.521459], [47.372406, 8.547289], [47.367624, 8.513613], [47.393794, 8.524817], [47.408883, 8.539621], [47.39049, 8.479158], [47.366951, 8.543958], [47.354209, 8.523654], [47.399601, 8.543271], [47.35796, 8.552919], [47.421775, 8.546952], [47.393774, 8.506735], [47.385233, 8.526497], [47.416112, 8.547404], [47.372242, 8.542836], [47.343117, 8.530415], [47.35495, 8.557238], [47.363404, 8.534803], [47.413892, 8.545396], [47.372609, 8.532608], [47.360261, 8.534288], [47.366169, 8.526836], [47.376887, 8.528247], [47.382808, 8.515548], [47.424226, 8.506339], [47.359956, 8.5521], [47.349675, 8.561336], [47.419218, 8.547137], [47.407856, 8.532127], [47.395407, 8.514001], [47.402058, 8.498965], [47.354793, 8.553012], [47.351563, 8.525691], [47.365, 8.589859], [47.374353, 8.52703], [47.381061, 8.507063], [47.370081, 8.525049], [47.362516, 8.534586], [47.372203, 8.520339], [47.393617, 8.512004], [47.368779, 8.540938], [47.377766, 8.543692], [47.37305, 8.534498], [47.350843, 8.534306], [47.401149, 8.493118], [47.376204, 8.524406], [47.358482, 8.51777], [47.368167, 8.523871], [47.364627, 8.555547], [47.4079, 8.547392], [47.366523, 8.537925], [47.366994, 8.523344], [47.378404, 8.510374], [47.389411, 8.485124], [47.370197, 8.548819], [47.380193, 8.527798], [47.382677, 8.507413], [47.366661, 8.54137], [47.366346, 8.540477], [47.392878, 8.522759], [47.387243, 8.554366], [47.377256, 8.512906], [47.369551, 8.466979], [47.393375, 8.499203], [47.378535, 8.541378], [47.371837, 8.542815], [47.367126, 8.539778], [47.368252, 8.538649], [47.408317, 8.541424], [47.374543, 8.54111], [47.374131, 8.515161], [47.380413, 8.502203], [47.38295, 8.474429], [47.376192, 8.525597], [47.358204, 8.548159], [47.369959, 8.510217], [47.384187, 8.475976], [47.3587, 8.590252], [47.426256, 8.536362], [47.35525, 8.557826], [47.370253, 8.539167], [47.364955, 8.529724], [47.342676, 8.530433], [47.378149, 8.509706], [47.377577, 8.543689], [47.37475, 8.55237], [47.393298, 8.511521], [47.376547, 8.511713], [47.384295, 8.525816], [47.379802, 8.525327], [47.363435, 8.526847], [47.369521, 8.555438], [47.39839, 8.49778], [47.377061, 8.544022], [47.388748, 8.535271], [47.364993, 8.519914], [47.370545, 8.524516], [47.379352, 8.537766], [47.375361, 8.549681], [47.369589, 8.541815], [47.383419, 8.539466], [47.417186, 8.509869], [47.370152, 8.548804], [47.404798, 8.5769], [47.413832, 8.572018], [47.41543, 8.513902], [47.359645, 8.558183], [47.369799, 8.525388], [47.371289, 8.530503], [47.403871, 8.496444], [47.368815, 8.538145], [47.425705, 8.553528], [47.367875, 8.496247], [47.357179, 8.552691], [47.361758, 8.561021], [47.392867, 8.534455], [47.363309, 8.533437], [47.37024, 8.547138], [47.363626, 8.532279], [47.412262, 8.504363], [47.390592, 8.489796], [47.359048, 8.500427], [47.407854, 8.579814], [47.391996, 8.500553], [47.378963, 8.543572], [47.361544, 8.565438], [47.418395, 8.538161], [47.377735, 8.532806], [47.410526, 8.538065], [47.391098, 8.522696], [47.379156, 8.522307], [47.41461, 8.560478], [47.322863, 8.513796], [47.382622, 8.540005], [47.380718, 8.528312], [47.365696, 8.547295], [47.428581, 8.54256], [47.364258, 8.548046], [47.367561, 8.53371], [47.373085, 8.530831], [47.409799, 8.537811], [47.373084, 8.530897], [47.368025, 8.495561], [47.366455, 8.540347], [47.379215, 8.537975], [47.410776, 8.572642], [47.389938, 8.478618], [47.366897, 8.545811], [47.377587, 8.498505], [47.376093, 8.543658], [47.371573, 8.521306], [47.398909, 8.533705], [47.425899, 8.493542], [47.387049, 8.546468], [47.370926, 8.49403], [47.386358, 8.499315], [47.368735, 8.521818], [47.368237, 8.511612], [47.357183, 8.522046], [47.38212, 8.55018], [47.368211, 8.541058], [47.414702, 8.561209], [47.378195, 8.517335], [47.409168, 8.571521], [47.408252, 8.58507], [47.359861, 8.549795], [47.389121, 8.533875], [47.382911, 8.575267], [47.365026, 8.553371], [47.371334, 8.530477], [47.391069, 8.526696], [47.396952, 8.540911], [47.378912, 8.526183], [47.402065, 8.495269], [47.376004, 8.536002], [47.399109, 8.540108], [47.361495, 8.557534], [47.397896, 8.532492], [47.393189, 8.49304], [47.375041, 8.5247], [47.361227, 8.506017], [47.397927, 8.474442], [47.370572, 8.509024], [47.366142, 8.544868], [47.360719, 8.584418], [47.367396, 8.541611], [47.427014, 8.491589], [47.378357, 8.510545], [47.368284, 8.534373], [47.407111, 8.586768], [47.376048, 8.559574], [47.405414, 8.567267], [47.379001, 8.527337], [47.378174, 8.532034], [47.357945, 8.52042], [47.367057, 8.536612], [47.420893, 8.507809], [47.377115, 8.493066], [47.379185, 8.525857], [47.376141, 8.567548], [47.405295, 8.504913], [47.403801, 8.486374], [47.367887, 8.523985], [47.378988, 8.559676], [47.37034, 8.548901], [47.366123, 8.533601], [47.374352, 8.524236], [47.369454, 8.541892], [47.373444, 8.545046], [47.424293, 8.548793], [47.371925, 8.522147], [47.370313, 8.514673], [47.370336, 8.509324], [47.399109, 8.470026], [47.386372, 8.497806], [47.373933, 8.50161], [47.404234, 8.560975], [47.384655, 8.531531], [47.395777, 8.531124], [47.363242, 8.563793], [47.36993, 8.552203], [47.352694, 8.531657], [47.384178, 8.512357], [47.358082, 8.520224], [47.369325, 8.538433], [47.390736, 8.521947], [47.374976, 8.536259], [47.383377, 8.515321], [47.40291, 8.547102], [47.379083, 8.544183], [47.374284, 8.519017], [47.374083, 8.538452], [47.389035, 8.521104], [47.382951, 8.51375], [47.376326, 8.525719], [47.377599, 8.522368], [47.394653, 8.532968], [47.386704, 8.491004], [47.427696, 8.54286], [47.375323, 8.485377], [47.415724, 8.554141], [47.373595, 8.511892], [47.376077, 8.537751], [47.364981, 8.538291], [47.388286, 8.491168], [47.420165, 8.508709], [47.37741, 8.500091], [47.405269, 8.549775], [47.366555, 8.523137], [47.412219, 8.546342], [47.384705, 8.516659], [47.369699, 8.518765], [47.40514, 8.49537], [47.39341, 8.524571], [47.397142, 8.480639], [47.366506, 8.520673], [47.376528, 8.532888], [47.391539, 8.535925], [47.39807, 8.53594], [47.392695, 8.475095], [47.375352, 8.536478], [47.392282, 8.473961], [47.348263, 8.532241], [47.421305, 8.549911], [47.374988, 8.517813], [47.345305, 8.535886], [47.358991, 8.522083], [47.371928, 8.493626], [47.349542, 8.533988], [47.387649, 8.48701], [47.380088, 8.520684], [47.370909, 8.53166], [47.403743, 8.57073], [47.378974, 8.54528], [47.367487, 8.511902], [47.390986, 8.478029], [47.372936, 8.531318], [47.38057, 8.534467], [47.364809, 8.545966], [47.369575, 8.510845], [47.398878, 8.538924], [47.386268, 8.535021], [47.37832, 8.56084], [47.36804, 8.494833], [47.400913, 8.494306], [47.362199, 8.54893], [47.400894, 8.544503], [47.386428, 8.497635], [47.401951, 8.499785], [47.356712, 8.523413], [47.395185, 8.489211], [47.405145, 8.480968], [47.39418, 8.520162], [47.410274, 8.543651], [47.376864, 8.528789], [47.374747, 8.54988], [47.357856, 8.5544], [47.365091, 8.554008], [47.369973, 8.566305], [47.367416, 8.55264], [47.373256, 8.5617], [47.380084, 8.526908], [47.418095, 8.510762], [47.360489, 8.552734], [47.392864, 8.524308], [47.376739, 8.527727], [47.386152, 8.496331], [47.403767, 8.486161], [47.371866, 8.556639], [47.412396, 8.546624], [47.360533, 8.5631], [47.368902, 8.540318], [47.374992, 8.545012], [47.365997, 8.521246], [47.356572, 8.52394], [47.369039, 8.541009], [47.406773, 8.553251], [47.423826, 8.52034], [47.405694, 8.549479], [47.388735, 8.542278], [47.369852, 8.543462], [47.366519, 8.540255], [47.351215, 8.56113], [47.383908, 8.53247], [47.406547, 8.584622], [47.380331, 8.541653], [47.370152, 8.548818], [47.357252, 8.572973], [47.363661, 8.546604], [47.361514, 8.534009], [47.357658, 8.521275], [47.371009, 8.56156], [47.398221, 8.537069], [47.392565, 8.471476], [47.414092, 8.542339], [47.372088, 8.49392], [47.366448, 8.544848], [47.409037, 8.566523], [47.360809, 8.547564], [47.382671, 8.514777], [47.375918, 8.523261], [47.364232, 8.54794], [47.373905, 8.538263], [47.394874, 8.52578], [47.376794, 8.539024], [47.36405, 8.530248], [47.370945, 8.524007], [47.388003, 8.536103], [47.353767, 8.512168], [47.409309, 8.546772], [47.414751, 8.519215], [47.415365, 8.538072], [47.369545, 8.555756], [47.409596, 8.496995], [47.372158, 8.520311], [47.411685, 8.562497], [47.414075, 8.550701], [47.327347, 8.52963], [47.383783, 8.499595], [47.384381, 8.531936], [47.374177, 8.532349], [47.376336, 8.527534], [47.364926, 8.532769], [47.352194, 8.534056], [47.403488, 8.497033], [47.388511, 8.49108], [47.370134, 8.548817], [47.366085, 8.545185], [47.366079, 8.53352], [47.359277, 8.5223], [47.373487, 8.519584], [47.361102, 8.54986], [47.424064, 8.539868], [47.37291, 8.522697], [47.366557, 8.541938], [47.36788, 8.535199], [47.369861, 8.532102], [47.379066, 8.538502], [47.386861, 8.483617], [47.332103, 8.517395], [47.384471, 8.574823], [47.426813, 8.49193], [47.371615, 8.515891], [47.360543, 8.535843], [47.399968, 8.532071], [47.359335, 8.552061], [47.375158, 8.544605], [47.405195, 8.541466], [47.354177, 8.526102], [47.354986, 8.557146], [47.360457, 8.52206], [47.408973, 8.539636], [47.377636, 8.537519], [47.382537, 8.53762], [47.378491, 8.50966], [47.340559, 8.537377], [47.361689, 8.517319], [47.379213, 8.511357], [47.402436, 8.535513], [47.376408, 8.541797], [47.364992, 8.502624], [47.408595, 8.575815], [47.379016, 8.520874], [47.379829, 8.506986], [47.369223, 8.525402], [47.398664, 8.534031], [47.369361, 8.517355], [47.376056, 8.559601], [47.426196, 8.55489], [47.374398, 8.524184], [47.391342, 8.535854], [47.389342, 8.519071], [47.390486, 8.489569], [47.376683, 8.51553], [47.364102, 8.536128], [47.408664, 8.569721], [47.372701, 8.537112], [47.384953, 8.529511], [47.410724, 8.544602], [47.391043, 8.522761], [47.376187, 8.545103], [47.351456, 8.525543], [47.385848, 8.493133], [47.378761, 8.489139], [47.38677, 8.497615], [47.364022, 8.5464], [47.420497, 8.54886], [47.378645, 8.540122], [47.381156, 8.569853], [47.368855, 8.548036], [47.400316, 8.543723], [47.395177, 8.489119], [47.381255, 8.538176], [47.363109, 8.533698], [47.366611, 8.544719], [47.383316, 8.530405], [47.365778, 8.545271], [47.395854, 8.526714], [47.379592, 8.5218], [47.378718, 8.529662], [47.376797, 8.51389], [47.378478, 8.510084], [47.377228, 8.538742], [47.416509, 8.511087], [47.392887, 8.522772], [47.381128, 8.487994], [47.360651, 8.566624], [47.356753, 8.55116], [47.364559, 8.566217], [47.36249, 8.504639], [47.390715, 8.50878], [47.419059, 8.545875], [47.373425, 8.534823], [47.363403, 8.534922], [47.385184, 8.500881], [47.38971, 8.511422], [47.407623, 8.584977], [47.370221, 8.518736], [47.376144, 8.518287], [47.379398, 8.528086], [47.369096, 8.541699], [47.391048, 8.536524], [47.38724, 8.486525], [47.414392, 8.554219], [47.383243, 8.499637], [47.389373, 8.481388], [47.352304, 8.573053], [47.361441, 8.505254], [47.368208, 8.496134], [47.406611, 8.588175], [47.380082, 8.520419], [47.411168, 8.526258], [47.370069, 8.468432], [47.380623, 8.517424], [47.382512, 8.514456], [47.391394, 8.537034], [47.374544, 8.541004], [47.381896, 8.509146], [47.370576, 8.517287], [47.364061, 8.556409], [47.377692, 8.516305], [47.376536, 8.540608], [47.396668, 8.523445], [47.39553, 8.482899], [47.368865, 8.501099], [47.378473, 8.526995], [47.344775, 8.519557], [47.377264, 8.519687], [47.383747, 8.539075], [47.380966, 8.511498], [47.377442, 8.538932], [47.391952, 8.517931], [47.340839, 8.5192], [47.374573, 8.538925], [47.368288, 8.524351], [47.381932, 8.514034], [47.376499, 8.492472], [47.398601, 8.538693], [47.383777, 8.531116], [47.377061, 8.544009], [47.374236, 8.516474], [47.387336, 8.525745], [47.38651, 8.52553], [47.364293, 8.531246], [47.378597, 8.533897], [47.387367, 8.518633], [47.367999, 8.536936], [47.379955, 8.537672], [47.41737, 8.54568], [47.370161, 8.548791], [47.415754, 8.546362], [47.364772, 8.537651], [47.378518, 8.527009], [47.396684, 8.529314], [47.421597, 8.53824], [47.405047, 8.478886], [47.414098, 8.55298], [47.393338, 8.495467], [47.399457, 8.544248], [47.358221, 8.571418], [47.366226, 8.548312], [47.37758, 8.511853], [47.382958, 8.532185], [47.363805, 8.531448], [47.362501, 8.535221], [47.371334, 8.530451], [47.365247, 8.50905], [47.371855, 8.55501], [47.402445, 8.535593], [47.382345, 8.543668], [47.369823, 8.510254], [47.347002, 8.564165], [47.381285, 8.571392], [47.365277, 8.564564], [47.365199, 8.545617], [47.414562, 8.570006], [47.38722, 8.518895], [47.359861, 8.549821], [47.372227, 8.547232], [47.386545, 8.503491], [47.420685, 8.502027], [47.37233, 8.538283], [47.375978, 8.527394], [47.393073, 8.492972], [47.37433, 8.541794], [47.382863, 8.499921], [47.385799, 8.517953], [47.416612, 8.53558], [47.416639, 8.535607], [47.3542, 8.523653], [47.373501, 8.536308], [47.36625, 8.537311], [47.384909, 8.531338], [47.354207, 8.509371], [47.370864, 8.523066], [47.353618, 8.525203], [47.333607, 8.534455], [47.395357, 8.476127], [47.412788, 8.481303], [47.366375, 8.53452], [47.404722, 8.549512], [47.356244, 8.556444], [47.373253, 8.514799], [47.381416, 8.542033], [47.372937, 8.531225], [47.399426, 8.517076], [47.377043, 8.544022], [47.377265, 8.538716], [47.369898, 8.543384], [47.367997, 8.540842], [47.343683, 8.535218], [47.362343, 8.559114], [47.367458, 8.541744], [47.370456, 8.522422], [47.374583, 8.538833], [47.416172, 8.517349], [47.387859, 8.485623], [47.362501, 8.534307], [47.404118, 8.562709], [47.394251, 8.524999], [47.338286, 8.539011], [47.383524, 8.549163], [47.419944, 8.500475], [47.409257, 8.544743], [47.373332, 8.536993], [47.379257, 8.527779], [47.373509, 8.546769], [47.412696, 8.537765], [47.378531, 8.519818], [47.372881, 8.533369], [47.387887, 8.550128], [47.368447, 8.541844], [47.377562, 8.518647], [47.400174, 8.494437], [47.36127, 8.563103], [47.361434, 8.517631], [47.373878, 8.538262], [47.337079, 8.520103], [47.365542, 8.553978], [47.386827, 8.528265], [47.383732, 8.540611], [47.360688, 8.524302], [47.41732, 8.507009], [47.330483, 8.515576], [47.397086, 8.530607], [47.362496, 8.568398], [47.370154, 8.513346], [47.374527, 8.539971], [47.424574, 8.553253], [47.37414, 8.540969], [47.387806, 8.550139], [47.379703, 8.521484], [47.387809, 8.536589], [47.377465, 8.54321], [47.371532, 8.522881], [47.383473, 8.515641], [47.370879, 8.554606], [47.412269, 8.523948], [47.392431, 8.532923], [47.382035, 8.528935], [47.384377, 8.548399], [47.369821, 8.531638], [47.377056, 8.520821], [47.409778, 8.541017], [47.363742, 8.575269], [47.39888, 8.590432], [47.374319, 8.522063], [47.334557, 8.529989], [47.391088, 8.522775], [47.422592, 8.550812], [47.372968, 8.530855], [47.39137, 8.54522], [47.38728, 8.533585], [47.370876, 8.548343], [47.423075, 8.494507], [47.392858, 8.530613], [47.395509, 8.529979], [47.352832, 8.524698], [47.360813, 8.552701], [47.362975, 8.565442], [47.369723, 8.54003], [47.39974, 8.516129], [47.414345, 8.551594], [47.370188, 8.548805], [47.41014, 8.537977], [47.372499, 8.545093], [47.38673, 8.523177], [47.36442, 8.547123], [47.37223, 8.540373], [47.381046, 8.541218], [47.368529, 8.501344], [47.376911, 8.535186], [47.34925, 8.534353], [47.378306, 8.530395], [47.368365, 8.490828], [47.387836, 8.527093], [47.377327, 8.529342], [47.38284, 8.551082], [47.375074, 8.528806], [47.387438, 8.529218], [47.367989, 8.540762], [47.366543, 8.540521], [47.388676, 8.546568], [47.426706, 8.555087], [47.405275, 8.495373], [47.3672, 8.533835], [47.417071, 8.554328], [47.397682, 8.533163], [47.367582, 8.496744], [47.3962, 8.520548], [47.3689, 8.529103], [47.366889, 8.541971], [47.40601, 8.557793], [47.369134, 8.503077], [47.369458, 8.526268], [47.37917, 8.495583], [47.377143, 8.541998], [47.369568, 8.467058], [47.404884, 8.585487], [47.430571, 8.549839], [47.392294, 8.516932], [47.387408, 8.48784], [47.383154, 8.514151], [47.37786, 8.5079], [47.382555, 8.514669], [47.377182, 8.551997], [47.398865, 8.533678], [47.379136, 8.538662], [47.374616, 8.545693], [47.384323, 8.525697], [47.413244, 8.538823], [47.354804, 8.52352], [47.385382, 8.53642], [47.404267, 8.564924], [47.35367, 8.558376], [47.398969, 8.53307], [47.361824, 8.547678], [47.388335, 8.490759], [47.394211, 8.493405], [47.380825, 8.518898], [47.364633, 8.554886], [47.419384, 8.547644], [47.364031, 8.546413], [47.368315, 8.524391], [47.375652, 8.516992], [47.379078, 8.495714], [47.376975, 8.539849], [47.3824, 8.548225], [47.35343, 8.52704], [47.377511, 8.521162], [47.379728, 8.52751], [47.36981, 8.52323], [47.411445, 8.525482], [47.376793, 8.538137], [47.38571, 8.517871], [47.386073, 8.521336], [47.38531, 8.51728], [47.38214, 8.541545], [47.386948, 8.546757], [47.377638, 8.505617], [47.366104, 8.540379], [47.408535, 8.542131], [47.373824, 8.536368], [47.393072, 8.519332], [47.399274, 8.505335], [47.377826, 8.518294], [47.394808, 8.527977], [47.367642, 8.49517], [47.419808, 8.482872], [47.385184, 8.530787], [47.383396, 8.483801], [47.412924, 8.552492], [47.371067, 8.548109], [47.367486, 8.496411], [47.382121, 8.545385], [47.398704, 8.506635], [47.362293, 8.532503], [47.415376, 8.553802], [47.396182, 8.527237], [47.368568, 8.529004], [47.364887, 8.56674], [47.378394, 8.555995], [47.380418, 8.534345], [47.40416, 8.574051], [47.386343, 8.521288], [47.418742, 8.506984], [47.366877, 8.555383], [47.371594, 8.54759], [47.391008, 8.538881], [47.397963, 8.474402], [47.416754, 8.506944], [47.402444, 8.499066], [47.419475, 8.506482], [47.343678, 8.530003], [47.420707, 8.50261], [47.416216, 8.547883], [47.391943, 8.517892], [47.385202, 8.500855], [47.365027, 8.502677], [47.371925, 8.522121], [47.422668, 8.551357], [47.364186, 8.562979], [47.368324, 8.524391], [47.410375, 8.536869], [47.412141, 8.542219], [47.369068, 8.513139], [47.398749, 8.505669], [47.418451, 8.508224], [47.377769, 8.537747], [47.374261, 8.486442], [47.378427, 8.500084], [47.366636, 8.510574], [47.343371, 8.532035], [47.361674, 8.517914], [47.36524, 8.494129], [47.375744, 8.519762], [47.377176, 8.559187], [47.366816, 8.543002], [47.426592, 8.554819], [47.371691, 8.558052], [47.372682, 8.529617], [47.354456, 8.574581], [47.384093, 8.485324], [47.39482, 8.525739], [47.37443, 8.541664], [47.3687, 8.501427], [47.363751, 8.520008], [47.392496, 8.502921], [47.371824, 8.51947], [47.336383, 8.530026], [47.429046, 8.546639], [47.400719, 8.548647], [47.363386, 8.557375], [47.416269, 8.545127], [47.355887, 8.599855], [47.407731, 8.584065], [47.395003, 8.540632], [47.373533, 8.525252], [47.362122, 8.547552], [47.391056, 8.522311], [47.366891, 8.558587], [47.367535, 8.508672], [47.368114, 8.541771], [47.373831, 8.531786], [47.369531, 8.557213], [47.394685, 8.525776], [47.40631, 8.583146], [47.380666, 8.517571], [47.359235, 8.572578], [47.386933, 8.528413], [47.376319, 8.543557], [47.366921, 8.541468], [47.415483, 8.54645], [47.378581, 8.52701], [47.377787, 8.522491], [47.400857, 8.537031], [47.405251, 8.555286], [47.403415, 8.570232], [47.362505, 8.533884], [47.373379, 8.552725], [47.379587, 8.521416], [47.371214, 8.523152], [47.368861, 8.53988], [47.386426, 8.518257], [47.36009, 8.5229], [47.374609, 8.515978], [47.379616, 8.537401], [47.355609, 8.556934], [47.399141, 8.542467], [47.391396, 8.514874], [47.379575, 8.515999], [47.36509, 8.553267], [47.369851, 8.509195], [47.41024, 8.572325], [47.392528, 8.512075], [47.348585, 8.534313], [47.367602, 8.546434], [47.409197, 8.547246], [47.392388, 8.491156], [47.375113, 8.518928], [47.384594, 8.548284], [47.378987, 8.495831], [47.360889, 8.531587], [47.395697, 8.522432], [47.373529, 8.542784], [47.402941, 8.490915], [47.402396, 8.49937], [47.378226, 8.534088], [47.383787, 8.540493], [47.376865, 8.559671], [47.376216, 8.543952], [47.361795, 8.526111], [47.375903, 8.541005], [47.414026, 8.525535], [47.377725, 8.51179], [47.376729, 8.497866], [47.358288, 8.534618], [47.395161, 8.476905], [47.42589, 8.493608], [47.343772, 8.535259], [47.367288, 8.49936], [47.374777, 8.549536], [47.366557, 8.544718], [47.369041, 8.53803], [47.384866, 8.531986], [47.412245, 8.553008], [47.374953, 8.519613], [47.37773, 8.537997], [47.356235, 8.556404], [47.386202, 8.518173], [47.405541, 8.553265], [47.404552, 8.533476], [47.374288, 8.517706], [47.372293, 8.534681], [47.392319, 8.502534], [47.369129, 8.527731], [47.385181, 8.50798], [47.361738, 8.503287], [47.385047, 8.530917], [47.387976, 8.486659], [47.373233, 8.536965], [47.388857, 8.515127], [47.391952, 8.517865], [47.363775, 8.535565], [47.351366, 8.53032], [47.390803, 8.539618], [47.370644, 8.516785], [47.359963, 8.534414], [47.381157, 8.518057], [47.376985, 8.542604], [47.414215, 8.518873], [47.377247, 8.538663], [47.383066, 8.513977], [47.41058, 8.550283], [47.41058, 8.550296], [47.364519, 8.547178], [47.367158, 8.540163], [47.372175, 8.530944], [47.372927, 8.531291], [47.386157, 8.518158], [47.37295, 8.519387], [47.419079, 8.548539], [47.359764, 8.598947], [47.38338, 8.539783], [47.392432, 8.528128], [47.388997, 8.481129], [47.385788, 8.532521], [47.391427, 8.5231], [47.380679, 8.503626], [47.416129, 8.510298], [47.419604, 8.548179], [47.385538, 8.557641], [47.408882, 8.572283], [47.393345, 8.473809], [47.376051, 8.538651], [47.367419, 8.544921], [47.421065, 8.501836], [47.3956, 8.491988], [47.353625, 8.511993], [47.367165, 8.544214], [47.380109, 8.522327], [47.35982, 8.534305], [47.365323, 8.560765], [47.379627, 8.527707], [47.375088, 8.496337], [47.373663, 8.534378], [47.38665, 8.520274], [47.386307, 8.543207], [47.381892, 8.516324], [47.389047, 8.515899], [47.386915, 8.535074], [47.408692, 8.550177], [47.42132, 8.502411], [47.359613, 8.534314], [47.412823, 8.522462], [47.379144, 8.559401], [47.373036, 8.547302], [47.36947, 8.525911], [47.369142, 8.52544], [47.386055, 8.533745], [47.423338, 8.551809], [47.381816, 8.529222], [47.378601, 8.540081], [47.37304, 8.53655], [47.391042, 8.522894], [47.365486, 8.552269], [47.353075, 8.512128], [47.392074, 8.497906], [47.374083, 8.498025], [47.363439, 8.533969], [47.386453, 8.541078], [47.391394, 8.537047], [47.385263, 8.536696], [47.388686, 8.546542], [47.387394, 8.497243], [47.38597, 8.517943], [47.3911, 8.522405], [47.409855, 8.549857], [47.35427, 8.55308], [47.386237, 8.535392], [47.36733, 8.530594], [47.368266, 8.523873], [47.374814, 8.525834], [47.336239, 8.53005], [47.369401, 8.513158], [47.382474, 8.530003], [47.369938, 8.516307], [47.367564, 8.518126], [47.394073, 8.529632], [47.368141, 8.541811], [47.382639, 8.475058], [47.377994, 8.53011], [47.370097, 8.511756], [47.405981, 8.481011], [47.40309, 8.486426], [47.36672, 8.533308], [47.390044, 8.541815], [47.356391, 8.535479], [47.389114, 8.477158], [47.400042, 8.548897], [47.429926, 8.542959], [47.412569, 8.546363], [47.36382, 8.554299], [47.402386, 8.546429], [47.371251, 8.5231], [47.354461, 8.523619], [47.380585, 8.519489], [47.387778, 8.529397], [47.39262, 8.475411], [47.380475, 8.519805], [47.3795, 8.558826], [47.366069, 8.533679], [47.363627, 8.535085], [47.369448, 8.532054], [47.353322, 8.525131], [47.35873, 8.517299], [47.411201, 8.546506], [47.370769, 8.566825], [47.404329, 8.556685], [47.376458, 8.55712], [47.369406, 8.505757], [47.425212, 8.538381], [47.383343, 8.530379], [47.355725, 8.560722], [47.378734, 8.542163], [47.376169, 8.521359], [47.399996, 8.54524], [47.397946, 8.480244], [47.402925, 8.536119], [47.382897, 8.530952], [47.371977, 8.556403], [47.387468, 8.518437], [47.374805, 8.543843], [47.391476, 8.519737], [47.414098, 8.522647], [47.36187, 8.515257], [47.360866, 8.549114], [47.376399, 8.525628], [47.390034, 8.512382], [47.367708, 8.501645], [47.366566, 8.545685], [47.375263, 8.490911], [47.361011, 8.548098], [47.359166, 8.521636], [47.3764, 8.540764], [47.3642, 8.556942], [47.408008, 8.505298], [47.394268, 8.495009], [47.377054, 8.541903], [47.377229, 8.526373], [47.372225, 8.518989], [47.362176, 8.547553], [47.404294, 8.576849], [47.362636, 8.531424], [47.374339, 8.517972], [47.386618, 8.473705], [47.376965, 8.526686], [47.422569, 8.510414], [47.382731, 8.529466], [47.41443, 8.51897], [47.398783, 8.540366], [47.342953, 8.519163], [47.380929, 8.511577], [47.380068, 8.514261], [47.36716, 8.515166], [47.369902, 8.501729], [47.375409, 8.533315], [47.373718, 8.53426], [47.373736, 8.537121], [47.394298, 8.520059], [47.367921, 8.540364], [47.39913, 8.584211], [47.371801, 8.601539], [47.391703, 8.513767], [47.378889, 8.527718], [47.414687, 8.571055], [47.392549, 8.524315], [47.41182, 8.525834], [47.41468, 8.519108], [47.42598, 8.493557], [47.359705, 8.549196], [47.367201, 8.495148], [47.379509, 8.525864], [47.387945, 8.485148], [47.419718, 8.48287], [47.39801, 8.474231], [47.3932, 8.530647], [47.356321, 8.598766], [47.34486, 8.533442], [47.368959, 8.541828], [47.378941, 8.525044], [47.366952, 8.534386], [47.362886, 8.563454], [47.406354, 8.537859], [47.372719, 8.522905], [47.376767, 8.559602], [47.35761, 8.509016], [47.3793, 8.542254], [47.382504, 8.529726], [47.372732, 8.534875], [47.370689, 8.516746], [47.406847, 8.536121], [47.364028, 8.551417], [47.38633, 8.496507], [47.374175, 8.542982], [47.385162, 8.508059], [47.386779, 8.497562], [47.412108, 8.546658], [47.330349, 8.515481], [47.38254, 8.540163], [47.410523, 8.545883], [47.361387, 8.603086], [47.377485, 8.542018], [47.375976, 8.540822], [47.363172, 8.549652], [47.391083, 8.522378], [47.419589, 8.547913], [47.378786, 8.542389], [47.415637, 8.529305], [47.351256, 8.57618], [47.388598, 8.520672], [47.405179, 8.481128], [47.391389, 8.478235], [47.345003, 8.533564], [47.36379, 8.551796], [47.392207, 8.50983], [47.42553, 8.55766], [47.403589, 8.53445], [47.405921, 8.568762], [47.373868, 8.536501], [47.408998, 8.550104], [47.369437, 8.541732], [47.360323, 8.550427], [47.361909, 8.56027], [47.387023, 8.547355], [47.388336, 8.485606], [47.398742, 8.590668], [47.379819, 8.521645], [47.394799, 8.536535], [47.392831, 8.479972], [47.372543, 8.517631], [47.407829, 8.554797], [47.378683, 8.526668], [47.377063, 8.526741], [47.398892, 8.533652], [47.393399, 8.524783], [47.401052, 8.588227], [47.406737, 8.538212], [47.403968, 8.506383], [47.38712, 8.490748], [47.369333, 8.537533], [47.370179, 8.548805], [47.368855, 8.514803], [47.373826, 8.518054], [47.375568, 8.527902], [47.38772, 8.498892], [47.364955, 8.547611], [47.410348, 8.542593], [47.361084, 8.535695], [47.370391, 8.556635], [47.372229, 8.535752], [47.358559, 8.555142], [47.383128, 8.474617], [47.378493, 8.531564], [47.364423, 8.546805], [47.373059, 8.495899], [47.377873, 8.541854], [47.393361, 8.547725], [47.407875, 8.550889], [47.396392, 8.486082], [47.40713, 8.586675], [47.364851, 8.566673], [47.404663, 8.569504], [47.381028, 8.491978], [47.393796, 8.529348], [47.383433, 8.538923], [47.389592, 8.512519], [47.374903, 8.561695], [47.369453, 8.525791], [47.358907, 8.548888], [47.404062, 8.533877], [47.374376, 8.502334], [47.425825, 8.547619], [47.393109, 8.474056], [47.428346, 8.545431], [47.392516, 8.489848], [47.381087, 8.503289], [47.391547, 8.542654], [47.356906, 8.532366], [47.358582, 8.55186], [47.403137, 8.49798], [47.37761, 8.506729], [47.424466, 8.504687], [47.37025, 8.563795], [47.376968, 8.543358], [47.377978, 8.508776], [47.383389, 8.548246], [47.381031, 8.532331], [47.367669, 8.549812], [47.404128, 8.490938], [47.335115, 8.541327], [47.372954, 8.531344], [47.414188, 8.518872], [47.389664, 8.511501], [47.369236, 8.504761], [47.369726, 8.525492], [47.377476, 8.544878], [47.389254, 8.5274], [47.391629, 8.538814], [47.401996, 8.497918], [47.387284, 8.51883], [47.375101, 8.553251], [47.358994, 8.53221], [47.378581, 8.542173], [47.41977, 8.556108], [47.369708, 8.555627], [47.364453, 8.550248], [47.407987, 8.565387], [47.378538, 8.541907], [47.37302, 8.528155], [47.395569, 8.5454], [47.369619, 8.539618], [47.357597, 8.525827], [47.408719, 8.549171], [47.389249, 8.54409], [47.378022, 8.528085], [47.419518, 8.556155], [47.365139, 8.563065], [47.410549, 8.547844], [47.41193, 8.545541], [47.365414, 8.539187], [47.360072, 8.568862], [47.351946, 8.576513], [47.372368, 8.519044], [47.374031, 8.541112], [47.356982, 8.53479], [47.395323, 8.483862], [47.382739, 8.580759], [47.384907, 8.498677], [47.387023, 8.489554], [47.394816, 8.536654], [47.405811, 8.590807], [47.363251, 8.567526], [47.364615, 8.508349], [47.413184, 8.544136], [47.410329, 8.569598], [47.378822, 8.542364], [47.367511, 8.537138], [47.372954, 8.531344], [47.376871, 8.543184], [47.406754, 8.586508], [47.405552, 8.480764], [47.351957, 8.559756], [47.37557, 8.526737], [47.371725, 8.536708], [47.369859, 8.54186], [47.396937, 8.512945], [47.387346, 8.518885], [47.403689, 8.485855], [47.379031, 8.530741], [47.37902, 8.545188], [47.391294, 8.536237], [47.366461, 8.545391], [47.407154, 8.586], [47.378842, 8.499934], [47.370206, 8.548806], [47.39699, 8.530234], [47.386447, 8.49745], [47.383064, 8.500561], [47.417164, 8.541846], [47.39983, 8.544707], [47.372669, 8.534861], [47.379242, 8.537883], [47.377128, 8.520796], [47.371192, 8.535956], [47.38586, 8.498723], [47.390441, 8.522722], [47.339869, 8.530442], [47.409734, 8.544713], [47.369562, 8.541801], [47.36799, 8.540643], [47.38279, 8.529944], [47.363513, 8.50785], [47.373026, 8.533266], [47.380511, 8.519766], [47.361076, 8.551541], [47.393877, 8.538847], [47.34322, 8.519433], [47.378865, 8.524566], [47.349388, 8.533998], [47.376597, 8.541801], [47.378836, 8.542761], [47.367973, 8.540563], [47.370783, 8.543045], [47.369284, 8.541782], [47.381451, 8.531664], [47.370152, 8.548804], [47.421635, 8.546472], [47.409558, 8.537634], [47.376792, 8.559788], [47.41222, 8.53965], [47.416267, 8.547261], [47.35412, 8.574944], [47.369122, 8.540825], [47.356494, 8.532225], [47.357247, 8.521902], [47.361507, 8.556303], [47.410613, 8.486004], [47.404191, 8.56165], [47.402307, 8.5528], [47.341353, 8.530525], [47.369044, 8.541473], [47.408897, 8.54569], [47.380161, 8.520593], [47.381379, 8.561726], [47.372728, 8.550301], [47.37581, 8.535561], [47.407802, 8.54727], [47.35451, 8.558009], [47.414793, 8.51956], [47.421056, 8.501862], [47.414692, 8.51981], [47.37326, 8.535072], [47.388162, 8.524994], [47.384585, 8.531265], [47.377148, 8.544315], [47.343252, 8.534137], [47.383437, 8.539493], [47.353584, 8.531662], [47.413269, 8.531416], [47.334748, 8.529808], [47.40544, 8.539417], [47.365361, 8.530474], [47.361336, 8.547972], [47.334193, 8.531397], [47.36205, 8.54759], [47.374414, 8.541504], [47.385859, 8.532602], [47.405001, 8.491922], [47.377341, 8.546743], [47.402764, 8.535149], [47.366834, 8.545823], [47.378181, 8.510118], [47.360743, 8.576489], [47.394707, 8.532903], [47.379938, 8.514682], [47.366288, 8.54082], [47.36158, 8.547832], [47.396607, 8.528889], [47.395877, 8.510765], [47.377073, 8.528516], [47.367961, 8.538948], [47.362826, 8.552981], [47.366181, 8.529418], [47.366506, 8.551853], [47.410369, 8.537531], [47.365803, 8.537023], [47.37476, 8.527766], [47.366267, 8.532703], [47.371116, 8.545792], [47.376959, 8.543371], [47.385383, 8.530659], [47.366473, 8.531781], [47.384268, 8.507538], [47.398967, 8.505395], [47.386437, 8.534243], [47.383047, 8.51399], [47.376266, 8.489514], [47.37918, 8.527406], [47.3682, 8.546023], [47.367415, 8.544312], [47.409773, 8.575893], [47.37388, 8.544632], [47.36861, 8.524635], [47.373335, 8.534769], [47.378416, 8.509963], [47.36931, 8.525762], [47.36034, 8.547634], [47.386998, 8.474401], [47.366705, 8.542404], [47.387733, 8.471727], [47.370119, 8.519065], [47.376451, 8.544778], [47.386287, 8.522532], [47.359434, 8.551123], [47.389809, 8.539108], [47.381312, 8.480515], [47.367017, 8.516036], [47.403063, 8.486359], [47.383933, 8.529901], [47.373137, 8.532964], [47.36993, 8.541901], [47.377431, 8.499826], [47.367936, 8.536935], [47.379997, 8.530403], [47.389006, 8.495037], [47.407558, 8.563245], [47.36855, 8.499054], [47.377052, 8.544048], [47.367527, 8.559819], [47.367645, 8.495832], [47.397395, 8.532124], [47.398285, 8.536898], [47.392379, 8.49117], [47.36875, 8.493007], [47.368579, 8.544018], [47.414375, 8.55129], [47.384844, 8.500649], [47.383216, 8.559632], [47.375098, 8.522424], [47.407164, 8.585894], [47.373525, 8.531859], [47.358909, 8.516362], [47.390969, 8.522985], [47.390034, 8.512343], [47.398187, 8.473546], [47.378152, 8.527677], [47.36193, 8.554445], [47.375713, 8.496799], [47.381875, 8.516297], [47.371148, 8.575837], [47.382939, 8.575109], [47.353634, 8.553768], [47.387209, 8.51912], [47.374787, 8.547577], [47.384445, 8.531871], [47.35974, 8.579698], [47.374404, 8.512928], [47.392412, 8.476573], [47.370494, 8.519364], [47.361096, 8.547636], [47.378858, 8.526234], [47.368533, 8.53659], [47.379164, 8.5224], [47.369862, 8.502178], [47.37754, 8.543767], [47.359635, 8.522414], [47.413507, 8.539504], [47.408923, 8.495763], [47.371901, 8.557739], [47.375734, 8.544538], [47.363472, 8.530501], [47.380127, 8.505932], [47.37696, 8.543331], [47.368409, 8.493847], [47.354758, 8.556638], [47.353564, 8.571994], [47.351767, 8.566304], [47.412042, 8.523202], [47.37217, 8.536188], [47.378885, 8.532883], [47.396254, 8.53577], [47.428059, 8.536929], [47.402085, 8.498926], [47.369108, 8.564671], [47.37083, 8.55957], [47.409818, 8.537798], [47.36952, 8.553743], [47.372813, 8.519517], [47.405294, 8.569371], [47.374366, 8.522726], [47.406336, 8.553865], [47.379987, 8.515199], [47.409364, 8.54289], [47.393654, 8.472385], [47.366001, 8.549208], [47.392022, 8.469836], [47.361035, 8.55395], [47.368948, 8.502809], [47.371133, 8.554333], [47.368619, 8.564939], [47.392576, 8.524249], [47.386291, 8.528797], [47.41966, 8.504948], [47.361498, 8.532804], [47.362059, 8.54755], [47.384842, 8.531747], [47.387951, 8.52446], [47.36923, 8.505356], [47.357435, 8.51436], [47.369284, 8.525668], [47.377865, 8.519858], [47.38648, 8.485967], [47.367111, 8.544213], [47.366658, 8.544495], [47.378464, 8.526995], [47.356102, 8.555303], [47.421274, 8.549393], [47.426347, 8.543852], [47.366687, 8.542404], [47.354442, 8.511216], [47.376522, 8.543918], [47.366917, 8.492759], [47.382227, 8.531415], [47.381412, 8.482424], [47.377236, 8.538874], [47.384492, 8.543024], [47.391931, 8.518209], [47.361047, 8.5712], [47.367327, 8.541344], [47.397403, 8.532243], [47.373532, 8.518684], [47.405676, 8.591692], [47.377691, 8.511538], [47.358396, 8.583773], [47.372581, 8.494102], [47.378827, 8.510276], [47.426362, 8.54604], [47.383687, 8.540584], [47.352616, 8.526599], [47.397986, 8.586226], [47.362306, 8.547145], [47.37606, 8.535818], [47.373047, 8.532922], [47.375409, 8.528534], [47.362716, 8.548464], [47.426733, 8.506601], [47.391055, 8.522496], [47.371335, 8.536065], [47.385676, 8.493249], [47.327221, 8.52964], [47.420757, 8.547089], [47.429144, 8.541975], [47.391538, 8.542667], [47.4034, 8.483902], [47.377199, 8.526691], [47.38094, 8.535335], [47.37301, 8.529214], [47.368457, 8.556687], [47.366555, 8.542083], [47.391071, 8.522695], [47.367599, 8.565394], [47.358664, 8.517602], [47.390826, 8.521935], [47.388056, 8.519932], [47.404735, 8.569519], [47.361238, 8.549704], [47.415056, 8.515458], [47.420326, 8.549771], [47.37277, 8.535525], [47.377, 8.541889], [47.36942, 8.540739], [47.398105, 8.594178], [47.361243, 8.554762], [47.38073, 8.491112], [47.387588, 8.475856], [47.409238, 8.544822], [47.403899, 8.56122], [47.374633, 8.549533], [47.344042, 8.531467], [47.377594, 8.543768], [47.378039, 8.52149], [47.378306, 8.530355], [47.344287, 8.535032], [47.371394, 8.547745], [47.349326, 8.570342], [47.382433, 8.552292], [47.355885, 8.53572], [47.397329, 8.594346], [47.376567, 8.518229], [47.398033, 8.50331], [47.387003, 8.525725], [47.397699, 8.533256], [47.427965, 8.545768], [47.390714, 8.508807], [47.369697, 8.508411], [47.335063, 8.519321], [47.375836, 8.545175], [47.396182, 8.544313], [47.384575, 8.480804], [47.368446, 8.537131], [47.370368, 8.514529], [47.37181, 8.601566], [47.377866, 8.509144], [47.42067, 8.502716], [47.369648, 8.529953], [47.409273, 8.52879], [47.383415, 8.513123], [47.371375, 8.54879], [47.415655, 8.512939], [47.404154, 8.563637], [47.365099, 8.554207], [47.413658, 8.528376], [47.40255, 8.54153], [47.373183, 8.503926], [47.360841, 8.553562], [47.368402, 8.546477], [47.371588, 8.535977], [47.378665, 8.53999], [47.368828, 8.539615], [47.365741, 8.520698], [47.362751, 8.548597], [47.372058, 8.538529], [47.364426, 8.557688], [47.368434, 8.512623], [47.404596, 8.571755], [47.397035, 8.514895], [47.397769, 8.533509], [47.380121, 8.501734], [47.373673, 8.530459], [47.354299, 8.575981], [47.370774, 8.525037], [47.38383, 8.526442], [47.387023, 8.518852], [47.38558, 8.520239], [47.382549, 8.52978], [47.378067, 8.511731], [47.36903, 8.541062], [47.382684, 8.530723], [47.381629, 8.513657], [47.375587, 8.526883], [47.416314, 8.545115], [47.371733, 8.515721], [47.430693, 8.541769], [47.421275, 8.502476], [47.409194, 8.539945], [47.392421, 8.492455], [47.37302, 8.532921], [47.369233, 8.505078], [47.369177, 8.525521], [47.420086, 8.503605], [47.391371, 8.537511], [47.366865, 8.53122], [47.425953, 8.493609], [47.373451, 8.53489], [47.378795, 8.530961], [47.380046, 8.536655], [47.353188, 8.525036], [47.36561, 8.535589], [47.390845, 8.523777], [47.374524, 8.539322], [47.385042, 8.541883], [47.376338, 8.559329], [47.381187, 8.53199], [47.408841, 8.570056], [47.399973, 8.544789], [47.3743, 8.524989], [47.392572, 8.538926], [47.408827, 8.546444], [47.375247, 8.51799], [47.371312, 8.52522], [47.376301, 8.54353], [47.419158, 8.547732], [47.387927, 8.492009], [47.417787, 8.509085], [47.402929, 8.57576], [47.39262, 8.475398], [47.401152, 8.544774], [47.364632, 8.504589], [47.366444, 8.532998], [47.36468, 8.547181], [47.36847, 8.538455], [47.393873, 8.504737], [47.384221, 8.543111], [47.372601, 8.547584], [47.394372, 8.522683], [47.415496, 8.544184], [47.364519, 8.532985], [47.36455, 8.566257], [47.404796, 8.594283], [47.369637, 8.523451], [47.388253, 8.49775], [47.406878, 8.552631], [47.380296, 8.496387], [47.412132, 8.550687], [47.411424, 8.546657], [47.409305, 8.572292], [47.373784, 8.531997], [47.385771, 8.526733], [47.408341, 8.544552], [47.415899, 8.54622], [47.371844, 8.530739], [47.40688, 8.481081], [47.366676, 8.541636], [47.377368, 8.527846], [47.361717, 8.54851], [47.424259, 8.540138], [47.378391, 8.557253], [47.356966, 8.535517], [47.372015, 8.516349], [47.371444, 8.547229], [47.380447, 8.54833], [47.40875, 8.503829], [47.396804, 8.541332], [47.400081, 8.501642], [47.391334, 8.535814], [47.370996, 8.564698], [47.371332, 8.536435], [47.422497, 8.539067], [47.414573, 8.559643], [47.375732, 8.527667], [47.424462, 8.552747], [47.409359, 8.572254], [47.351633, 8.560689], [47.381416, 8.534445], [47.383628, 8.539218], [47.371581, 8.518578], [47.424756, 8.553044], [47.371046, 8.536178], [47.327197, 8.517825], [47.391418, 8.513417], [47.410979, 8.545243], [47.382721, 8.500673], [47.366362, 8.537842], [47.344465, 8.530549], [47.424673, 8.495811], [47.3744, 8.542974], [47.371339, 8.486199], [47.3737, 8.534273], [47.377469, 8.538932], [47.370453, 8.524739], [47.418503, 8.54198], [47.388605, 8.480817], [47.37714, 8.498112], [47.395534, 8.532033], [47.387272, 8.500737], [47.386769, 8.518065], [47.375305, 8.485297], [47.370543, 8.469765], [47.369892, 8.523125], [47.412287, 8.483997], [47.372464, 8.559949], [47.370543, 8.469765], [47.387229, 8.518922], [47.412532, 8.51697], [47.375982, 8.52501], [47.370717, 8.522427], [47.384974, 8.531035], [47.372427, 8.521363], [47.390644, 8.491943], [47.393508, 8.500491], [47.391374, 8.537193], [47.38321, 8.545395], [47.420305, 8.503318], [47.425587, 8.553698], [47.396413, 8.540834], [47.401909, 8.585225], [47.371825, 8.473259], [47.373754, 8.536168], [47.364913, 8.554759], [47.36536, 8.531599], [47.385293, 8.517187], [47.375347, 8.484623], [47.367648, 8.538756], [47.3482, 8.533193], [47.39052, 8.489755], [47.370516, 8.508282], [47.378745, 8.53149], [47.359543, 8.549206], [47.377242, 8.540119], [47.368921, 8.524999], [47.379847, 8.511859], [47.394225, 8.489881], [47.387852, 8.529252], [47.424861, 8.537406], [47.409292, 8.544797], [47.356478, 8.521489], [47.373789, 8.542895], [47.348404, 8.532509], [47.346338, 8.533142], [47.382481, 8.548187], [47.377019, 8.539956], [47.393379, 8.499773], [47.35614, 8.509489], [47.354651, 8.556477], [47.366174, 8.533946], [47.41922, 8.547839], [47.402182, 8.496199], [47.393479, 8.474951], [47.341715, 8.536858], [47.418535, 8.54707], [47.397416, 8.531873], [47.413227, 8.53873], [47.38744, 8.535668], [47.358733, 8.521747], [47.380274, 8.512398], [47.352124, 8.570282], [47.375123, 8.524569], [47.410003, 8.543778], [47.365964, 8.53234], [47.37616, 8.583916], [47.384536, 8.531701], [47.369573, 8.543536], [47.372823, 8.600939], [47.353626, 8.554615], [47.37846, 8.51015], [47.387479, 8.518172], [47.358335, 8.597909], [47.380854, 8.542419], [47.393618, 8.512826], [47.382504, 8.529713], [47.402986, 8.555093], [47.352983, 8.576204], [47.401072, 8.543725], [47.369248, 8.527508], [47.365011, 8.531354], [47.412955, 8.538035], [47.369601, 8.513838], [47.373542, 8.484336], [47.37997, 8.54832], [47.387145, 8.519251], [47.367931, 8.540205], [47.400692, 8.548633], [47.370766, 8.5485], [47.368067, 8.541108], [47.370668, 8.53531], [47.371648, 8.472858], [47.374524, 8.557119], [47.392307, 8.492056], [47.374576, 8.557332], [47.400222, 8.548822], [47.381938, 8.516219], [47.385331, 8.548379], [47.377772, 8.529801], [47.371154, 8.531413], [47.420601, 8.508241], [47.367731, 8.487373], [47.375712, 8.535506], [47.420478, 8.503056], [47.375726, 8.519682], [47.371967, 8.524386], [47.38041, 8.519962], [47.393725, 8.50231], [47.376055, 8.515279], [47.409418, 8.575342], [47.372354, 8.535834], [47.379712, 8.50701], [47.378431, 8.540952], [47.363618, 8.554772], [47.386793, 8.534714], [47.371573, 8.536533], [47.41088, 8.565727], [47.409584, 8.549984], [47.388575, 8.520287], [47.408042, 8.58264], [47.372975, 8.528207], [47.395775, 8.530329], [47.41394, 8.541316], [47.35155, 8.528987], [47.387506, 8.534398], [47.37302, 8.532882], [47.36754, 8.537893], [47.363932, 8.549271], [47.378967, 8.570137], [47.352201, 8.577948], [47.378574, 8.509503], [47.37754, 8.543767], [47.376927, 8.54488], [47.366203, 8.540315], [47.366345, 8.540503], [47.373284, 8.535482], [47.38042, 8.51987], [47.35212, 8.558687], [47.372671, 8.53837], [47.355392, 8.554295], [47.385718, 8.543659], [47.380394, 8.513989], [47.40604, 8.591276], [47.367497, 8.554535], [47.403251, 8.550051], [47.374163, 8.525185], [47.416323, 8.545129], [47.381456, 8.535929], [47.379153, 8.486538], [47.397703, 8.553552], [47.397656, 8.541601], [47.344442, 8.532957], [47.340596, 8.537325], [47.394807, 8.523315], [47.367117, 8.539791], [47.408732, 8.494037], [47.370325, 8.514316], [47.415501, 8.516951], [47.370918, 8.535421], [47.376949, 8.52074], [47.396622, 8.5302], [47.344994, 8.533551], [47.388996, 8.495156], [47.405013, 8.576931], [47.391494, 8.519724], [47.372771, 8.533552], [47.386616, 8.530538], [47.387552, 8.527683], [47.362997, 8.548298], [47.364033, 8.566696], [47.369304, 8.552785], [47.375872, 8.533775], [47.379434, 8.530021], [47.413251, 8.532423], [47.360294, 8.579153], [47.372736, 8.534425], [47.36529, 8.598723], [47.382715, 8.575024], [47.372733, 8.601016], [47.426869, 8.491772], [47.414074, 8.51948], [47.371196, 8.529892], [47.370251, 8.478207], [47.378298, 8.525574], [47.37017, 8.548805], [47.37782, 8.509276], [47.371521, 8.53636], [47.374418, 8.49586], [47.413816, 8.559773], [47.401296, 8.53435], [47.387748, 8.490906], [47.38004, 8.541939], [47.41387, 8.545846], [47.406943, 8.550578], [47.402375, 8.544786], [47.365733, 8.53591], [47.358203, 8.553824], [47.379228, 8.491201], [47.372361, 8.513099], [47.405204, 8.570284], [47.378672, 8.523079], [47.398394, 8.547154], [47.372261, 8.52659], [47.400662, 8.591239], [47.373904, 8.541123], [47.427658, 8.545908], [47.412952, 8.537373], [47.360633, 8.529146], [47.414485, 8.520787], [47.410438, 8.569547], [47.416342, 8.506724], [47.379088, 8.508361], [47.376568, 8.548554], [47.365967, 8.547115], [47.369211, 8.527653], [47.383157, 8.506046], [47.363463, 8.55032], [47.368761, 8.540924], [47.377073, 8.541851], [47.412427, 8.514808], [47.378462, 8.541456], [47.413736, 8.546665], [47.370708, 8.516694], [47.40421, 8.561545], [47.360109, 8.595922], [47.374167, 8.521014], [47.403713, 8.550643], [47.38537, 8.529109], [47.37001, 8.552363], [47.383442, 8.54932], [47.415984, 8.512402], [47.388234, 8.520134], [47.389213, 8.533665], [47.396927, 8.512998], [47.365425, 8.545568], [47.386622, 8.541293], [47.370179, 8.548805], [47.358677, 8.517152], [47.400977, 8.502084], [47.359867, 8.576867], [47.409883, 8.545074], [47.359187, 8.585577], [47.371686, 8.556688], [47.392315, 8.516601], [47.420702, 8.549023], [47.375371, 8.524905], [47.381842, 8.583323], [47.416648, 8.513529], [47.386055, 8.545997], [47.409166, 8.570832], [47.381184, 8.49169], [47.377285, 8.523223], [47.375187, 8.518691], [47.371204, 8.520385], [47.3684, 8.541036], [47.395502, 8.484952], [47.382905, 8.513841], [47.363259, 8.529226], [47.375022, 8.541835], [47.325446, 8.518465], [47.367029, 8.544331], [47.384432, 8.529394], [47.368148, 8.560666], [47.391208, 8.520513], [47.3589, 8.516402], [47.367009, 8.555677], [47.373907, 8.544619], [47.391128, 8.489237], [47.383915, 8.529874], [47.388455, 8.525318], [47.382284, 8.533059], [47.372209, 8.547245], [47.374407, 8.540299], [47.376087, 8.537725], [47.362571, 8.534455], [47.370881, 8.537512], [47.41735, 8.509673], [47.367588, 8.555398], [47.369665, 8.564736], [47.369073, 8.541195], [47.329873, 8.529761], [47.366991, 8.49946], [47.39776, 8.533496], [47.364887, 8.537772], [47.360325, 8.566882], [47.366501, 8.540228], [47.363679, 8.562333], [47.374085, 8.53636], [47.372816, 8.525952], [47.402736, 8.535188], [47.360096, 8.563607], [47.337866, 8.53011], [47.35752, 8.521616], [47.378439, 8.510441], [47.35289, 8.579273], [47.359861, 8.549768], [47.421941, 8.500461], [47.36595, 8.55731], [47.338523, 8.53011], [47.404611, 8.542368], [47.39442, 8.519518], [47.397691, 8.533229], [47.413025, 8.55044], [47.373541, 8.534918], [47.360425, 8.564925], [47.391928, 8.504009], [47.380868, 8.538155], [47.373553, 8.536521], [47.372283, 8.535753], [47.378433, 8.54074], [47.339919, 8.529953], [47.387956, 8.485837], [47.367108, 8.539778], [47.359094, 8.592181], [47.394718, 8.521286], [47.36295, 8.559603], [47.386723, 8.490965], [47.369727, 8.54338], [47.36801, 8.546099], [47.412748, 8.522739], [47.399649, 8.542941], [47.391591, 8.538985], [47.370342, 8.537368], [47.378404, 8.500574], [47.403615, 8.534504], [47.40479, 8.588546], [47.378922, 8.556337], [47.382139, 8.550061], [47.379469, 8.544324], [47.365486, 8.552269], [47.353578, 8.576071], [47.422042, 8.506136], [47.3879, 8.492048], [47.417314, 8.546819], [47.364904, 8.56678], [47.372521, 8.534288], [47.406516, 8.480531], [47.410851, 8.526517], [47.364199, 8.507559], [47.364732, 8.531427], [47.388026, 8.520316], [47.370065, 8.491841], [47.385318, 8.517466], [47.371766, 8.521879], [47.393728, 8.545057], [47.372216, 8.532375], [47.36756, 8.545242], [47.348662, 8.56191], [47.382438, 8.528201], [47.332976, 8.518339], [47.394836, 8.523991], [47.359233, 8.597188], [47.338258, 8.539129], [47.383829, 8.529462], [47.371121, 8.538735], [47.41421, 8.518422], [47.405549, 8.550509], [47.337183, 8.530082], [47.390977, 8.478068], [47.408648, 8.546294], [47.402881, 8.486594], [47.370906, 8.520498], [47.36214, 8.547539], [47.40395, 8.574325], [47.368573, 8.541834], [47.405165, 8.478716], [47.411066, 8.544609], [47.344589, 8.530763], [47.375987, 8.535882], [47.372131, 8.530891], [47.359148, 8.563918], [47.380304, 8.535044], [47.351003, 8.579961], [47.393756, 8.505741], [47.390545, 8.479106], [47.370361, 8.514303], [47.404577, 8.572775], [47.360125, 8.524833], [47.382701, 8.537425], [47.370463, 8.518834], [47.386066, 8.535481], [47.40945, 8.549928], [47.407503, 8.585305], [47.391011, 8.488215], [47.407738, 8.548342], [47.376543, 8.543601], [47.391055, 8.532934], [47.381933, 8.529211], [47.373329, 8.531643], [47.368044, 8.540658], [47.372753, 8.525964], [47.358028, 8.52025], [47.386639, 8.546075], [47.38681, 8.534741], [47.414097, 8.553961], [47.399998, 8.536496], [47.379614, 8.501035], [47.382003, 8.541807], [47.383208, 8.539925], [47.374512, 8.530158], [47.365455, 8.553579], [47.367427, 8.541241], [47.375192, 8.518175], [47.391731, 8.513622], [47.344614, 8.532881], [47.381983, 8.555077], [47.378831, 8.527214], [47.378379, 8.540752], [47.378502, 8.540079], [47.366257, 8.545096], [47.418424, 8.508263], [47.372602, 8.523869], [47.377866, 8.519845], [47.405396, 8.592706], [47.368331, 8.560405], [47.36043, 8.550429], [47.411161, 8.570132], [47.378512, 8.545588], [47.401931, 8.581224], [47.370912, 8.531382], [47.413487, 8.530215], [47.387276, 8.499307], [47.40924, 8.577975], [47.367289, 8.545355], [47.390817, 8.552189], [47.388228, 8.519883], [47.356581, 8.52672], [47.405627, 8.581237], [47.363063, 8.549769], [47.367362, 8.522425], [47.356293, 8.555955], [47.403839, 8.486176], [47.413991, 8.541608], [47.409539, 8.537766], [47.379237, 8.491162], [47.361758, 8.561074], [47.341327, 8.530366], [47.376079, 8.488305], [47.38187, 8.542546], [47.357946, 8.52316], [47.376006, 8.488343], [47.384099, 8.50919], [47.38676, 8.547561], [47.369708, 8.543525], [47.380295, 8.535071], [47.366532, 8.545472], [47.394823, 8.525395], [47.370125, 8.539416], [47.411116, 8.532737], [47.37007, 8.548895], [47.419111, 8.507919], [47.382708, 8.514658], [47.363105, 8.548221], [47.377695, 8.528475], [47.41399, 8.525547]], [[47.369153, 8.547963], [47.385638, 8.554743], [47.37637, 8.544829], [47.364462, 8.537062], [47.385805, 8.519198], [47.366212, 8.540381], [47.385025, 8.532347], [47.379997, 8.573377], [47.360529, 8.547664], [47.366521, 8.541884], [47.373397, 8.534889], [47.366232, 8.54675], [47.374678, 8.51251], [47.376749, 8.53807], [47.371013, 8.530192], [47.38033, 8.542699], [47.406915, 8.550644], [47.360296, 8.568894], [47.419578, 8.548032], [47.42092, 8.538505], [47.369392, 8.541745], [47.379717, 8.54658], [47.376057, 8.559587], [47.384743, 8.497946], [47.380839, 8.546855], [47.326256, 8.515504], [47.340051, 8.530247], [47.390567, 8.539786], [47.371364, 8.546182], [47.364279, 8.520231], [47.394164, 8.518016], [47.372296, 8.532456], [47.382421, 8.529962], [47.345536, 8.531378], [47.360943, 8.531575], [47.402769, 8.495932], [47.371563, 8.518512], [47.426103, 8.547718], [47.377051, 8.53752], [47.409504, 8.540469], [47.373502, 8.519941], [47.37181, 8.547528], [47.3684, 8.483957], [47.417315, 8.546766], [47.364366, 8.546195], [47.402927, 8.545341], [47.421339, 8.549222], [47.381212, 8.517899], [47.429423, 8.544751], [47.40305, 8.502642], [47.414093, 8.519374], [47.378156, 8.509918], [47.403861, 8.496497], [47.377778, 8.537747], [47.351597, 8.560635], [47.383005, 8.530941], [47.419651, 8.547994], [47.382851, 8.529177], [47.382777, 8.543558], [47.379496, 8.576677], [47.350223, 8.576066], [47.396081, 8.545463], [47.422985, 8.498454], [47.375323, 8.485377], [47.398316, 8.537508], [47.361338, 8.547694], [47.356457, 8.506305], [47.374416, 8.541266], [47.385302, 8.517241], [47.360407, 8.566804], [47.3797, 8.524729], [47.378425, 8.51003], [47.420379, 8.503094], [47.373345, 8.528942], [47.418966, 8.507002], [47.367916, 8.53998], [47.358357, 8.571288], [47.348461, 8.534072], [47.395871, 8.542982], [47.370326, 8.514289], [47.408102, 8.550735], [47.41365, 8.481439], [47.381478, 8.503761], [47.382486, 8.529739], [47.41309, 8.532287], [47.376749, 8.559602], [47.377038, 8.528462], [47.344061, 8.531427], [47.382569, 8.53427], [47.366989, 8.545654], [47.370677, 8.51521], [47.375496, 8.563548], [47.396135, 8.522692], [47.384241, 8.528649], [47.380006, 8.520881], [47.364577, 8.566231], [47.363823, 8.566969], [47.347349, 8.524215], [47.387239, 8.490591], [47.394055, 8.529605], [47.377493, 8.492028], [47.378804, 8.54239], [47.386281, 8.531737], [47.385688, 8.528824], [47.364852, 8.56666], [47.386767, 8.523071], [47.382742, 8.529307], [47.368097, 8.564094], [47.382656, 8.529848], [47.398399, 8.47294], [47.381663, 8.534052], [47.35426, 8.509504], [47.369164, 8.53263], [47.364646, 8.532908], [47.410576, 8.548786], [47.36336, 8.567423], [47.387679, 8.492653], [47.363404, 8.534816], [47.377715, 8.507036], [47.403563, 8.570739], [47.391301, 8.538277], [47.364899, 8.504833], [47.393155, 8.473951], [47.404419, 8.559522], [47.391675, 8.513886], [47.382352, 8.537272], [47.3897, 8.512508], [47.414191, 8.518528], [47.369497, 8.525911], [47.36098, 8.517146], [47.374265, 8.524856], [47.370994, 8.514912], [47.414376, 8.517922], [47.38014, 8.494662], [47.40555, 8.574452], [47.348245, 8.565885], [47.354806, 8.601791], [47.398079, 8.535887], [47.356911, 8.522292], [47.373017, 8.531346], [47.398474, 8.533113], [47.411985, 8.524565], [47.373431, 8.537035], [47.380933, 8.537984], [47.356295, 8.598686], [47.365693, 8.536266], [47.401932, 8.496949], [47.394788, 8.532971], [47.371877, 8.556507], [47.352173, 8.533447], [47.417269, 8.523096], [47.391899, 8.517798], [47.366523, 8.545432], [47.346439, 8.527267], [47.36277, 8.56798], [47.367682, 8.55773], [47.380443, 8.519327], [47.368018, 8.557406], [47.389464, 8.511762], [47.407337, 8.575748], [47.394422, 8.474029], [47.39553, 8.482913], [47.370992, 8.486828], [47.387789, 8.529225], [47.39697, 8.530472], [47.338226, 8.527272], [47.387277, 8.486393], [47.370263, 8.524854], [47.363779, 8.534215], [47.372005, 8.510748], [47.370107, 8.540303], [47.378883, 8.491525], [47.415499, 8.544714], [47.37301, 8.520646], [47.368233, 8.544461], [47.370688, 8.538832], [47.362069, 8.531386], [47.37649, 8.528345], [47.393621, 8.511541], [47.37798, 8.492898], [47.364541, 8.566256], [47.396961, 8.540911], [47.400235, 8.54751], [47.37562, 8.518528], [47.352523, 8.531707], [47.403531, 8.496265], [47.364913, 8.566794], [47.374377, 8.521628], [47.397551, 8.532776], [47.426648, 8.492258], [47.398391, 8.541868], [47.366394, 8.496839], [47.383263, 8.530377], [47.394309, 8.503355], [47.374741, 8.55233], [47.377603, 8.493804], [47.387304, 8.488341], [47.358527, 8.553791], [47.366934, 8.545719], [47.376529, 8.511726], [47.368131, 8.523831], [47.394865, 8.525753], [47.364029, 8.528633], [47.382799, 8.52997], [47.425, 8.548251], [47.403658, 8.578479], [47.425389, 8.553628], [47.367244, 8.533942], [47.343559, 8.530239], [47.387116, 8.534708], [47.370051, 8.511927], [47.378352, 8.517815], [47.380486, 8.529142], [47.36788, 8.560541], [47.400195, 8.494199], [47.36934, 8.540645], [47.348434, 8.534058], [47.406516, 8.480531], [47.392765, 8.523299], [47.397378, 8.532097], [47.413927, 8.540772], [47.426507, 8.544028], [47.377082, 8.541851], [47.366321, 8.544951], [47.376618, 8.521422], [47.391878, 8.504578], [47.376674, 8.538426], [47.375926, 8.516587], [47.418544, 8.547043], [47.408969, 8.550316], [47.404951, 8.505171], [47.390583, 8.483849], [47.379365, 8.490939], [47.407037, 8.547347], [47.389917, 8.476922], [47.369408, 8.525817], [47.370232, 8.537618], [47.34646, 8.52879], [47.368028, 8.540445], [47.374569, 8.552512], [47.369704, 8.552317], [47.373486, 8.50331], [47.373582, 8.534403], [47.362442, 8.518565], [47.403845, 8.576866], [47.392844, 8.529196], [47.365687, 8.502346], [47.3964, 8.472186], [47.405968, 8.59044], [47.37019, 8.524945], [47.382446, 8.507117], [47.368313, 8.529435], [47.386795, 8.547641], [47.365108, 8.501673], [47.396099, 8.482606], [47.368333, 8.524351], [47.374323, 8.546243], [47.37738, 8.529436], [47.384423, 8.54832], [47.376283, 8.552918], [47.387232, 8.4883], [47.388197, 8.525034], [47.37234, 8.543858], [47.391571, 8.472993], [47.419839, 8.505005], [47.367905, 8.523999], [47.381151, 8.534876], [47.389897, 8.477107], [47.360423, 8.526666], [47.37112, 8.523654], [47.367788, 8.539183], [47.390577, 8.491425], [47.361637, 8.531417], [47.369492, 8.553835], [47.398807, 8.533093], [47.370456, 8.521508], [47.376264, 8.525599], [47.378576, 8.543603], [47.370565, 8.517525], [47.400899, 8.548571], [47.415434, 8.559012], [47.336631, 8.533326], [47.370321, 8.492323], [47.426297, 8.554667], [47.414656, 8.55111], [47.425834, 8.493792], [47.369548, 8.526283], [47.380724, 8.582637], [47.374327, 8.543025], [47.41684, 8.522849], [47.378226, 8.492479], [47.364757, 8.554147], [47.389438, 8.494039], [47.399777, 8.542771], [47.41374, 8.536819], [47.379814, 8.50182], [47.414466, 8.556752], [47.422231, 8.508989], [47.365319, 8.521616], [47.370476, 8.549725], [47.367958, 8.540259], [47.350027, 8.533998], [47.409285, 8.577976], [47.38322, 8.506021], [47.384961, 8.495778], [47.367047, 8.547072], [47.365128, 8.520884], [47.383408, 8.530181], [47.360825, 8.56537], [47.384407, 8.528281], [47.383044, 8.540107], [47.390959, 8.523091], [47.366426, 8.545205], [47.364613, 8.566192], [47.369239, 8.525601], [47.328332, 8.512821], [47.380273, 8.505723], [47.369785, 8.548559], [47.378966, 8.54234], [47.430112, 8.549882], [47.390977, 8.523091], [47.376698, 8.541578], [47.390209, 8.532043], [47.376742, 8.53505], [47.423149, 8.502129], [47.371248, 8.575786], [47.410724, 8.544602], [47.354277, 8.558905], [47.378016, 8.526787], [47.360331, 8.567213], [47.379486, 8.527399], [47.356973, 8.53479], [47.403717, 8.586164], [47.415519, 8.546464], [47.364178, 8.566553], [47.363464, 8.516984], [47.376668, 8.524746], [47.367977, 8.497798], [47.377478, 8.543739], [47.374042, 8.517953], [47.384581, 8.531689], [47.385804, 8.496006], [47.35815, 8.557477], [47.420878, 8.549478], [47.380856, 8.511668], [47.401929, 8.581343], [47.397887, 8.474878], [47.407578, 8.554646], [47.367684, 8.53877], [47.370761, 8.536847], [47.381647, 8.513644], [47.381334, 8.542164], [47.368238, 8.510487], [47.371796, 8.522515], [47.365611, 8.539191], [47.370125, 8.548777], [47.40509, 8.565472], [47.420047, 8.503936], [47.347649, 8.564245], [47.36647, 8.540678], [47.412992, 8.536035], [47.373526, 8.534561], [47.374716, 8.544675], [47.349588, 8.577574], [47.365234, 8.53635], [47.393001, 8.539226], [47.397972, 8.533871], [47.394438, 8.505], [47.388568, 8.483836], [47.376377, 8.516451], [47.370392, 8.51392], [47.39361, 8.489326], [47.36666, 8.54149], [47.391652, 8.53541], [47.369251, 8.528117], [47.374572, 8.534264], [47.370335, 8.514276], [47.370269, 8.548833], [47.365541, 8.554018], [47.371644, 8.546108], [47.367772, 8.501594], [47.407866, 8.531146], [47.397139, 8.508618], [47.40501, 8.585411], [47.383386, 8.515268], [47.356973, 8.534776], [47.402075, 8.498052], [47.362621, 8.565766], [47.41889, 8.505516], [47.415943, 8.515847], [47.368714, 8.500805], [47.373234, 8.536912], [47.354027, 8.555948], [47.383226, 8.530469], [47.370179, 8.548805], [47.413934, 8.541925], [47.388122, 8.498304], [47.377585, 8.529572], [47.37212, 8.54621], [47.407613, 8.548273], [47.380854, 8.512899], [47.384315, 8.528438], [47.340033, 8.530286], [47.38343, 8.515375], [47.407165, 8.586702], [47.379034, 8.524755], [47.372201, 8.556474], [47.36295, 8.559603], [47.381224, 8.503027], [47.326529, 8.513208], [47.399033, 8.513875], [47.40973, 8.549815], [47.378932, 8.530752], [47.403762, 8.534215], [47.364809, 8.55718], [47.380979, 8.572233], [47.374543, 8.541163], [47.37958, 8.542075], [47.359053, 8.549606], [47.398767, 8.506597], [47.370984, 8.548292], [47.367272, 8.544296], [47.426634, 8.546735], [47.361434, 8.566654], [47.414305, 8.483599], [47.381563, 8.535997], [47.367844, 8.521919], [47.401424, 8.4916], [47.374895, 8.560622], [47.36474, 8.55412], [47.367969, 8.544708], [47.384506, 8.534932], [47.353244, 8.558724], [47.381645, 8.533986], [47.359894, 8.507235], [47.409588, 8.537383], [47.403565, 8.487628], [47.393172, 8.530673], [47.371116, 8.545792], [47.427957, 8.545675], [47.366757, 8.542657], [47.37791, 8.497624], [47.392579, 8.528713], [47.383949, 8.55084], [47.381166, 8.491676], [47.366558, 8.545565], [47.364105, 8.554636], [47.380484, 8.548212], [47.387939, 8.536182], [47.38154, 8.513628], [47.380782, 8.533995], [47.371983, 8.547333], [47.369928, 8.513553], [47.383267, 8.484209], [47.426684, 8.549029], [47.3883, 8.523712], [47.374928, 8.520407], [47.385508, 8.517364], [47.40534, 8.59301], [47.38597, 8.517943], [47.363149, 8.557688], [47.370747, 8.549572], [47.367933, 8.494765], [47.38294, 8.513935], [47.38898, 8.494983], [47.376021, 8.541829], [47.400186, 8.494199], [47.371461, 8.519874], [47.397793, 8.538531], [47.379545, 8.507576], [47.421757, 8.498019], [47.340875, 8.519187], [47.340857, 8.519187], [47.382115, 8.541359], [47.396063, 8.482658], [47.373865, 8.526265], [47.370669, 8.548392], [47.362637, 8.558485], [47.407544, 8.546059], [47.3835, 8.572975], [47.376754, 8.536574], [47.355392, 8.600758], [47.414339, 8.518067], [47.370527, 8.526369], [47.402028, 8.495335], [47.370681, 8.470443], [47.38005, 8.486847], [47.381112, 8.528505], [47.378747, 8.515969], [47.371317, 8.524651], [47.387424, 8.479072], [47.343371, 8.530143], [47.369437, 8.525632], [47.358586, 8.585405], [47.378006, 8.527872], [47.39216, 8.498345], [47.372855, 8.514129], [47.393436, 8.499496], [47.3897, 8.534483], [47.386009, 8.50503], [47.377864, 8.54192], [47.377116, 8.541057], [47.387043, 8.526282], [47.419909, 8.54079], [47.400237, 8.543589], [47.378284, 8.526104], [47.374317, 8.524169], [47.389945, 8.512261], [47.378454, 8.540343], [47.40735, 8.489783], [47.367949, 8.540245], [47.377504, 8.496689], [47.367103, 8.544041], [47.388605, 8.475717], [47.354126, 8.575289], [47.376959, 8.543358], [47.375917, 8.523274], [47.412002, 8.515012], [47.39995, 8.545292], [47.387334, 8.533547], [47.371185, 8.521483], [47.375223, 8.518665], [47.36575, 8.545416], [47.378492, 8.540211], [47.41714, 8.506992], [47.360403, 8.531656], [47.329972, 8.533573], [47.423084, 8.49843], [47.375385, 8.540571], [47.364322, 8.507919], [47.3904, 8.533702], [47.371172, 8.530513], [47.397011, 8.480292], [47.416455, 8.508184], [47.375358, 8.528269], [47.369467, 8.526202], [47.354594, 8.510332], [47.429483, 8.537581], [47.365334, 8.532459], [47.37181, 8.601552], [47.410844, 8.543319], [47.36575, 8.535989], [47.381735, 8.531114], [47.384447, 8.539169], [47.36319, 8.549692], [47.386823, 8.541947], [47.41474, 8.560932], [47.389402, 8.511641], [47.413128, 8.538702], [47.371473, 8.530069], [47.372849, 8.535805], [47.373225, 8.536951], [47.373832, 8.536447], [47.387087, 8.498323], [47.388539, 8.478087], [47.374393, 8.495581], [47.365135, 8.554128], [47.419774, 8.550104], [47.355006, 8.556087], [47.414545, 8.551426], [47.409521, 8.542509], [47.368006, 8.540908], [47.364605, 8.554978], [47.337925, 8.519128], [47.38598, 8.492447], [47.365584, 8.549583], [47.370088, 8.511742], [47.397692, 8.533137], [47.390284, 8.512533], [47.370088, 8.511756], [47.366585, 8.540852], [47.376209, 8.541925], [47.367316, 8.533983], [47.413554, 8.481133], [47.359114, 8.570232], [47.373858, 8.536514], [47.388021, 8.486646], [47.402959, 8.536372], [47.421047, 8.50772], [47.399568, 8.515317], [47.393241, 8.537695], [47.375112, 8.545597], [47.405116, 8.504843], [47.397023, 8.530553], [47.387832, 8.517914], [47.361393, 8.502711], [47.396916, 8.51321], [47.382505, 8.53056], [47.372416, 8.550043], [47.373085, 8.569099], [47.426565, 8.51015], [47.393131, 8.542567], [47.375471, 8.54191], [47.393759, 8.524764], [47.408871, 8.548353], [47.36984, 8.552241], [47.389049, 8.545251], [47.397046, 8.493209], [47.375304, 8.522547], [47.425962, 8.49357], [47.380542, 8.533606], [47.409328, 8.546679], [47.375771, 8.564892], [47.38628, 8.490122], [47.373008, 8.531306], [47.383694, 8.589667], [47.39903, 8.541855], [47.3759, 8.54131], [47.36227, 8.559311], [47.378866, 8.489406], [47.365118, 8.529582], [47.369257, 8.525668], [47.397069, 8.530435], [47.362844, 8.531336], [47.37101, 8.545671], [47.373003, 8.485305], [47.360273, 8.523472], [47.363733, 8.531433], [47.398776, 8.494939], [47.393998, 8.476193], [47.367647, 8.545522], [47.368959, 8.524761], [47.372663, 8.532636], [47.359606, 8.585996], [47.377799, 8.511567], [47.408721, 8.546216], [47.377108, 8.526768], [47.40594, 8.581469], [47.40418, 8.563783], [47.390106, 8.475905], [47.366885, 8.543387], [47.397581, 8.509408], [47.386369, 8.51852], [47.385134, 8.494563], [47.392099, 8.541393], [47.354795, 8.523427], [47.367543, 8.515544], [47.382221, 8.488466], [47.413236, 8.545356], [47.365487, 8.515119], [47.32986, 8.530197], [47.3871, 8.538297], [47.379641, 8.52139], [47.410708, 8.572229], [47.367733, 8.534627], [47.382184, 8.541665], [47.354865, 8.511132], [47.364178, 8.548892], [47.404713, 8.572685], [47.407174, 8.586689], [47.399793, 8.543845], [47.366728, 8.535308], [47.394783, 8.525804], [47.375849, 8.495756], [47.33997, 8.530272], [47.382864, 8.54013], [47.383056, 8.575124], [47.427562, 8.546595], [47.369933, 8.549131], [47.376457, 8.528106], [47.389768, 8.5119], [47.396217, 8.54442], [47.375229, 8.522784], [47.405907, 8.553511], [47.391767, 8.517504], [47.358501, 8.586753], [47.391809, 8.527439], [47.41972, 8.5483], [47.405189, 8.593682], [47.364394, 8.532903], [47.385305, 8.530326], [47.376219, 8.525611], [47.371738, 8.535332], [47.412996, 8.550678], [47.375659, 8.578118], [47.376988, 8.52225], [47.403056, 8.57563], [47.36803, 8.556122], [47.389724, 8.51182], [47.378813, 8.542403], [47.400114, 8.517527], [47.410827, 8.5591], [47.420584, 8.550068], [47.404505, 8.544009], [47.376479, 8.541852], [47.359979, 8.51649], [47.36953, 8.555478], [47.367434, 8.546113], [47.392225, 8.477311], [47.390939, 8.523302], [47.361884, 8.526285], [47.335611, 8.519332], [47.399708, 8.543339], [47.411878, 8.537788], [47.360177, 8.518414], [47.392781, 8.523499], [47.412344, 8.557648], [47.358354, 8.584328], [47.348899, 8.562445], [47.38639, 8.518216], [47.394886, 8.529251], [47.424861, 8.537406], [47.388923, 8.52248], [47.373198, 8.55198], [47.39118, 8.51581], [47.403079, 8.547305], [47.369133, 8.525387], [47.410138, 8.542854], [47.374923, 8.5475], [47.40219, 8.546239], [47.372946, 8.520778], [47.410503, 8.547923], [47.360294, 8.57922], [47.339248, 8.526644], [47.409518, 8.549386], [47.369254, 8.491984], [47.375094, 8.545557], [47.370161, 8.548805], [47.357437, 8.521787], [47.410939, 8.522822], [47.352433, 8.562532], [47.35477, 8.552601], [47.365452, 8.50826], [47.356008, 8.532188], [47.37024, 8.552779], [47.425861, 8.493727], [47.384209, 8.51098], [47.339526, 8.527762], [47.377153, 8.539998], [47.354215, 8.561551], [47.355041, 8.55806], [47.381352, 8.517306], [47.409197, 8.547246], [47.36947, 8.520151], [47.362639, 8.527241], [47.334159, 8.515889], [47.372926, 8.547445], [47.342797, 8.530978], [47.399681, 8.517677], [47.383122, 8.51366], [47.387992, 8.536262], [47.378909, 8.524673], [47.375675, 8.516543], [47.369408, 8.525817], [47.413074, 8.546254], [47.37328, 8.514865], [47.376047, 8.559667], [47.376356, 8.559276], [47.369828, 8.53561], [47.37453, 8.566693], [47.404432, 8.574719], [47.408133, 8.553041], [47.378324, 8.530382], [47.383003, 8.545364], [47.38563, 8.520585], [47.388622, 8.541944], [47.407221, 8.538407], [47.374281, 8.524168], [47.356094, 8.55615], [47.37017, 8.548792], [47.375847, 8.540223], [47.377032, 8.516689], [47.391794, 8.527121], [47.428685, 8.488865], [47.417654, 8.546124], [47.344775, 8.519571], [47.376317, 8.567949], [47.405458, 8.509712], [47.372934, 8.530563], [47.417038, 8.541844], [47.390101, 8.480435], [47.382952, 8.530847], [47.389905, 8.526089], [47.396504, 8.534119], [47.385267, 8.517094], [47.374344, 8.524116], [47.376444, 8.540778], [47.38648, 8.48598], [47.391016, 8.478692], [47.407382, 8.550707], [47.378389, 8.530185], [47.379287, 8.537977], [47.386665, 8.517679], [47.40744, 8.548508], [47.381611, 8.535654], [47.359523, 8.548438], [47.377014, 8.583934], [47.352059, 8.505331], [47.382539, 8.514483], [47.362224, 8.526411], [47.399526, 8.496464], [47.402726, 8.556903], [47.376683, 8.515437], [47.373192, 8.503926], [47.370051, 8.511914], [47.367484, 8.546578], [47.430155, 8.544475], [47.374681, 8.52562], [47.372908, 8.550332], [47.385108, 8.536905], [47.385739, 8.535779], [47.374807, 8.544611], [47.410074, 8.545807], [47.403673, 8.571404], [47.360028, 8.523706], [47.385879, 8.532444], [47.371855, 8.60154], [47.376438, 8.528185], [47.373458, 8.537049], [47.374342, 8.518647], [47.370016, 8.54332], [47.400185, 8.546198], [47.380985, 8.545719], [47.366675, 8.544628], [47.367874, 8.496326], [47.417641, 8.539908], [47.397277, 8.494538], [47.378825, 8.539265], [47.391104, 8.522921], [47.406896, 8.537645], [47.373506, 8.519518], [47.366999, 8.544634], [47.364459, 8.566321], [47.393234, 8.489067], [47.396997, 8.530486], [47.420305, 8.503305], [47.365171, 8.554169], [47.3932, 8.530647], [47.383509, 8.515641], [47.328634, 8.513237], [47.427815, 8.547422], [47.392153, 8.495165], [47.368538, 8.569638], [47.36927, 8.510706], [47.386994, 8.525738], [47.374147, 8.519253], [47.364595, 8.566205], [47.419041, 8.507653], [47.394778, 8.471493], [47.368806, 8.512299], [47.358769, 8.498436], [47.362284, 8.532516], [47.362163, 8.533864], [47.370521, 8.519391], [47.391684, 8.538722], [47.377469, 8.52279], [47.364676, 8.56618], [47.377595, 8.498558], [47.390935, 8.538998], [47.380135, 8.528128], [47.372937, 8.535992], [47.368278, 8.556617], [47.361776, 8.522484], [47.386594, 8.528074], [47.370952, 8.536639], [47.357069, 8.532197], [47.370861, 8.554592], [47.400491, 8.543316], [47.375586, 8.558068], [47.387623, 8.551301], [47.392052, 8.517775], [47.382545, 8.5722], [47.382432, 8.529698], [47.379391, 8.510605], [47.422485, 8.540406], [47.391305, 8.53784], [47.364189, 8.536474], [47.389135, 8.495675], [47.365217, 8.501582], [47.368809, 8.539654], [47.388159, 8.517577], [47.420551, 8.502925], [47.366929, 8.544355], [47.37933, 8.511385], [47.362196, 8.532236], [47.359904, 8.535869], [47.368308, 8.546926], [47.357477, 8.534747], [47.415153, 8.550803], [47.370233, 8.518432], [47.378202, 8.541397], [47.367426, 8.494185], [47.366308, 8.540635], [47.356942, 8.566956], [47.340754, 8.530116], [47.388592, 8.491121], [47.366878, 8.518364], [47.381827, 8.516561], [47.369398, 8.525909], [47.371314, 8.523048], [47.399358, 8.495229], [47.364436, 8.561289], [47.354251, 8.557845], [47.411499, 8.526437], [47.401731, 8.500231], [47.397387, 8.532071], [47.422357, 8.549058], [47.398823, 8.506399], [47.414095, 8.550423], [47.370103, 8.520786], [47.377028, 8.528554], [47.369124, 8.525414], [47.388423, 8.541132], [47.422284, 8.549215], [47.402913, 8.580993], [47.39111, 8.522378], [47.361891, 8.548209], [47.358012, 8.587987], [47.380847, 8.511694], [47.374886, 8.527756], [47.369215, 8.52339], [47.357638, 8.521552], [47.364848, 8.502634], [47.372768, 8.494278], [47.369926, 8.536658], [47.374749, 8.549668], [47.365093, 8.521704], [47.369169, 8.525454], [47.400388, 8.5371], [47.423724, 8.544368], [47.376355, 8.527428], [47.415589, 8.518106], [47.371566, 8.536361], [47.418314, 8.546668], [47.37754, 8.543767], [47.392797, 8.525592], [47.370726, 8.522467], [47.371948, 8.535018], [47.377593, 8.521124], [47.370307, 8.524974], [47.409901, 8.54322], [47.403143, 8.552897], [47.357585, 8.526171], [47.389088, 8.538311], [47.421608, 8.550195], [47.370164, 8.51332], [47.343409, 8.535649], [47.34411, 8.531892], [47.364788, 8.566778], [47.379973, 8.48335], [47.394634, 8.536823], [47.397839, 8.530821], [47.353249, 8.572053], [47.414444, 8.553425], [47.38428, 8.531259], [47.410093, 8.527734], [47.372533, 8.529244], [47.35508, 8.534261], [47.386736, 8.490528], [47.326611, 8.518872], [47.369047, 8.525002], [47.391963, 8.532065], [47.364363, 8.548393], [47.368924, 8.528508], [47.369446, 8.525645], [47.371166, 8.538696], [47.3639, 8.551653], [47.369679, 8.531396], [47.385499, 8.528847], [47.365856, 8.549298], [47.381539, 8.532884], [47.374387, 8.541464], [47.363887, 8.566904], [47.374416, 8.541253], [47.396847, 8.587712], [47.410445, 8.573443], [47.342897, 8.519361], [47.374263, 8.524128], [47.364595, 8.566205], [47.379447, 8.523902], [47.402529, 8.535276], [47.371748, 8.558663], [47.4215, 8.49755], [47.404761, 8.574209], [47.364605, 8.537224], [47.378912, 8.523322], [47.417686, 8.545528], [47.3529, 8.529822], [47.340197, 8.519504], [47.370086, 8.537813], [47.398503, 8.494232], [47.349972, 8.53221], [47.38914, 8.494218], [47.371862, 8.601686], [47.383206, 8.479969], [47.376992, 8.541889], [47.364614, 8.566165], [47.418737, 8.511331], [47.430434, 8.542519], [47.396601, 8.510382], [47.366766, 8.54455], [47.378022, 8.528124], [47.350949, 8.559827], [47.366772, 8.542021], [47.360298, 8.567835], [47.366811, 8.544498], [47.383255, 8.499333], [47.365372, 8.538855], [47.359455, 8.52245], [47.378349, 8.514306], [47.369999, 8.52518], [47.370638, 8.5222], [47.414482, 8.557918], [47.365948, 8.536934], [47.367025, 8.513217], [47.409372, 8.538266], [47.382291, 8.480667], [47.401096, 8.48803], [47.398726, 8.471529], [47.428002, 8.545729], [47.372601, 8.550392], [47.351621, 8.576625], [47.378003, 8.530097], [47.374227, 8.524114], [47.352875, 8.602371], [47.374316, 8.524248], [47.367666, 8.556551], [47.367566, 8.496558], [47.386784, 8.486225], [47.40722, 8.585763], [47.384688, 8.509772], [47.37999, 8.536852], [47.386894, 8.535379], [47.36848, 8.53075], [47.33942, 8.527481], [47.372781, 8.533512], [47.350072, 8.561172], [47.372013, 8.556378], [47.390566, 8.545547], [47.389046, 8.527582], [47.360434, 8.566752], [47.362676, 8.533834], [47.365269, 8.520172], [47.386711, 8.479283], [47.369288, 8.505887], [47.360687, 8.516769], [47.354967, 8.523378], [47.374717, 8.544622], [47.378841, 8.529042], [47.377241, 8.535484], [47.380437, 8.519923], [47.396778, 8.541199], [47.411042, 8.571203], [47.397433, 8.474366], [47.402827, 8.588795], [47.374677, 8.54972], [47.356564, 8.554055], [47.409498, 8.479079], [47.383741, 8.540611], [47.383941, 8.530934], [47.377087, 8.557199], [47.36877, 8.524771], [47.386688, 8.542897], [47.373814, 8.561738], [47.398345, 8.537283], [47.371921, 8.562083], [47.371265, 8.549966], [47.394847, 8.525753], [47.421401, 8.549369], [47.36718, 8.539766], [47.396948, 8.529995], [47.429108, 8.541988], [47.358812, 8.521947], [47.366942, 8.544011], [47.398684, 8.53949], [47.386313, 8.48252], [47.374237, 8.525028], [47.352744, 8.531129], [47.379614, 8.521456], [47.361544, 8.554305], [47.35296, 8.558361], [47.36215, 8.559586], [47.415825, 8.538903], [47.377808, 8.498841], [47.371371, 8.516045], [47.404911, 8.486939], [47.366051, 8.540272], [47.403863, 8.546274], [47.365978, 8.503967], [47.393519, 8.51289], [47.346141, 8.533071], [47.356094, 8.55615], [47.356556, 8.532266], [47.388909, 8.527764], [47.364072, 8.556145], [47.365755, 8.546727], [47.369042, 8.537911], [47.389669, 8.521515], [47.376646, 8.53477], [47.373784, 8.521496], [47.384385, 8.531566], [47.379063, 8.527378], [47.337865, 8.532187], [47.408946, 8.539609], [47.405686, 8.587996], [47.411416, 8.525667], [47.350558, 8.580401], [47.370408, 8.514159], [47.369123, 8.541607], [47.404191, 8.56165], [47.399229, 8.54268], [47.368995, 8.541842], [47.369186, 8.525481], [47.355941, 8.535496], [47.363336, 8.533517], [47.382941, 8.540555], [47.371905, 8.538526], [47.381444, 8.528684], [47.420159, 8.509345], [47.387375, 8.497283], [47.368016, 8.540763], [47.391046, 8.52247], [47.398438, 8.591469], [47.398998, 8.512815], [47.373779, 8.537333], [47.392665, 8.515774], [47.364833, 8.548151], [47.370717, 8.538674], [47.369452, 8.52591], [47.359344, 8.551201], [47.377629, 8.542021], [47.383332, 8.53157], [47.365055, 8.531513], [47.394317, 8.526643], [47.403381, 8.486087], [47.34872, 8.534302], [47.358403, 8.521449], [47.366469, 8.540718], [47.372506, 8.478516], [47.387313, 8.545268], [47.395592, 8.531583], [47.385441, 8.494357], [47.37385, 8.531734], [47.369807, 8.466507], [47.368304, 8.564999], [47.377567, 8.528684], [47.36721, 8.546929], [47.379713, 8.537628], [47.335512, 8.519343], [47.401358, 8.538207], [47.354915, 8.526964], [47.368921, 8.54772], [47.375134, 8.526251], [47.408575, 8.572383], [47.397957, 8.535487], [47.372194, 8.535579], [47.369292, 8.527602], [47.403158, 8.554977], [47.401662, 8.499964], [47.377483, 8.502926], [47.389921, 8.489386], [47.370672, 8.532026], [47.33753, 8.524757], [47.366988, 8.536267], [47.417652, 8.546269], [47.366734, 8.52032], [47.364759, 8.547474], [47.372789, 8.523992], [47.369063, 8.547908], [47.370104, 8.529313], [47.368922, 8.540133], [47.425862, 8.4937], [47.370927, 8.5317], [47.40718, 8.546489], [47.367935, 8.497545], [47.408781, 8.542746], [47.369981, 8.525179], [47.370097, 8.548909], [47.379228, 8.491175], [47.360727, 8.573576], [47.411207, 8.570915], [47.410913, 8.535184], [47.363739, 8.500891], [47.383894, 8.533979], [47.367985, 8.524053], [47.37175, 8.517827], [47.360367, 8.550454], [47.36054, 8.550272], [47.388597, 8.525533], [47.351865, 8.531799], [47.371672, 8.519401], [47.414059, 8.541066], [47.408556, 8.540913], [47.375102, 8.481956], [47.37875, 8.542336], [47.382586, 8.529648], [47.360167, 8.560034], [47.383365, 8.515599], [47.387983, 8.524831], [47.397537, 8.532325], [47.383211, 8.506007], [47.408355, 8.574657], [47.381487, 8.513495], [47.405154, 8.480968], [47.384409, 8.574716], [47.362189, 8.549023], [47.393747, 8.507728], [47.368075, 8.524121], [47.381623, 8.490891], [47.373895, 8.502815], [47.367137, 8.544227], [47.379245, 8.491228], [47.392425, 8.506695], [47.386362, 8.493965], [47.375418, 8.524734], [47.397017, 8.530275], [47.394197, 8.525064], [47.358845, 8.510709], [47.37965, 8.52143], [47.39313, 8.53042], [47.376272, 8.541914], [47.417755, 8.555257], [47.419752, 8.504765], [47.398986, 8.539893], [47.401594, 8.490663], [47.367411, 8.546642], [47.367411, 8.546669], [47.373048, 8.53659], [47.409575, 8.542458], [47.373639, 8.535013], [47.385716, 8.548546], [47.379419, 8.559764], [47.387926, 8.529042], [47.369637, 8.536811], [47.344739, 8.519557], [47.377864, 8.511369], [47.36585, 8.49434], [47.358837, 8.586403], [47.354481, 8.555428], [47.419091, 8.508065], [47.377086, 8.533892], [47.383498, 8.533017], [47.403674, 8.571364], [47.334837, 8.534665], [47.397095, 8.492839], [47.382789, 8.529997], [47.370887, 8.53497], [47.384733, 8.531824], [47.368955, 8.529064], [47.42231, 8.506353], [47.405733, 8.585996], [47.41492, 8.561903], [47.412315, 8.483851], [47.408754, 8.549304], [47.360089, 8.53537], [47.390513, 8.539784], [47.371748, 8.558649], [47.38473, 8.537864], [47.368895, 8.538173], [47.370508, 8.549156], [47.389732, 8.5119], [47.405126, 8.570918], [47.373299, 8.494249], [47.357799, 8.521582], [47.375918, 8.533723], [47.364586, 8.566244], [47.362511, 8.534136], [47.343248, 8.519381], [47.369465, 8.519767], [47.361873, 8.510068], [47.362569, 8.527014], [47.429144, 8.541988], [47.373122, 8.534526], [47.383252, 8.515199], [47.428002, 8.545729], [47.361043, 8.531497], [47.37454, 8.53956], [47.382514, 8.540083], [47.37959, 8.507616], [47.357428, 8.521826], [47.396988, 8.530473], [47.380073, 8.520393], [47.369288, 8.505847], [47.361034, 8.516194], [47.396989, 8.523664], [47.382086, 8.541517], [47.409114, 8.544648], [47.370139, 8.53604], [47.367856, 8.561123], [47.3827, 8.557198], [47.380344, 8.534608], [47.358318, 8.574266], [47.356336, 8.531798], [47.376459, 8.511553], [47.367734, 8.560737], [47.375854, 8.488221], [47.361821, 8.560122], [47.379162, 8.526439], [47.358944, 8.552569], [47.361364, 8.602622], [47.373588, 8.553511], [47.361362, 8.554592], [47.389237, 8.546248], [47.365346, 8.56765], [47.378552, 8.523434], [47.375722, 8.535414], [47.364497, 8.550355], [47.368888, 8.539867], [47.37845, 8.523763], [47.360152, 8.522993], [47.389853, 8.524922], [47.357102, 8.522045], [47.404089, 8.585828], [47.377028, 8.559595], [47.378207, 8.541768], [47.418274, 8.543327], [47.39098, 8.484718], [47.426424, 8.547048], [47.364559, 8.566257], [47.386569, 8.528855], [47.389241, 8.536434], [47.335889, 8.540337], [47.402444, 8.576585], [47.35396, 8.55535], [47.391574, 8.542668], [47.36678, 8.498886], [47.36782, 8.487441], [47.354018, 8.555921], [47.380165, 8.547728], [47.387684, 8.52513], [47.404161, 8.561954], [47.402792, 8.535971], [47.395316, 8.499441], [47.37596, 8.540636], [47.364842, 8.521672], [47.388575, 8.479055], [47.378574, 8.528679], [47.362311, 8.551355], [47.396162, 8.527475], [47.373166, 8.534553], [47.371477, 8.557796], [47.377255, 8.529287], [47.391792, 8.51867], [47.347252, 8.533571], [47.371408, 8.5197], [47.400335, 8.537073], [47.374774, 8.52047], [47.371826, 8.512532], [47.402938, 8.575747], [47.375777, 8.523828], [47.420376, 8.508236], [47.390912, 8.4882], [47.3823, 8.543641], [47.371679, 8.5225], [47.362379, 8.548868], [47.384403, 8.548505], [47.369038, 8.553296], [47.358237, 8.57159], [47.427474, 8.546341], [47.377286, 8.535565], [47.398569, 8.539209], [47.37175, 8.556624], [47.345717, 8.52941], [47.376103, 8.524629], [47.365168, 8.494207], [47.396851, 8.52015], [47.379379, 8.525358], [47.374375, 8.540802], [47.405133, 8.59388], [47.368483, 8.541819], [47.365401, 8.494265], [47.377854, 8.531551], [47.410639, 8.548787], [47.342025, 8.519343], [47.378959, 8.525031], [47.371377, 8.490953], [47.368391, 8.537288], [47.377343, 8.548398], [47.385275, 8.517227], [47.380674, 8.54807], [47.377014, 8.544207], [47.379722, 8.497104], [47.366314, 8.553133], [47.418698, 8.507765], [47.355503, 8.558613], [47.378502, 8.501622], [47.420275, 8.547649], [47.392576, 8.515639], [47.400124, 8.586564], [47.384845, 8.509298], [47.385954, 8.54814], [47.361517, 8.576466], [47.417335, 8.512217], [47.386387, 8.518521], [47.374377, 8.521614], [47.386504, 8.529119], [47.383656, 8.574475], [47.367084, 8.529053], [47.400862, 8.589177], [47.381479, 8.528765], [47.386121, 8.518131], [47.396514, 8.497305], [47.380098, 8.520645], [47.376865, 8.541926], [47.388964, 8.532414], [47.36076, 8.530035], [47.369488, 8.525884], [47.352594, 8.52509], [47.371404, 8.562588], [47.370188, 8.548805], [47.396762, 8.529673], [47.348195, 8.562681], [47.370545, 8.524529], [47.378087, 8.510553], [47.382345, 8.528464], [47.368946, 8.540385], [47.36512, 8.534123], [47.375784, 8.537375], [47.37325, 8.514137], [47.373082, 8.533015], [47.370232, 8.556393], [47.336207, 8.518166], [47.413861, 8.545833], [47.399762, 8.544268], [47.406961, 8.550592], [47.39173, 8.517569], [47.42699, 8.553688], [47.367947, 8.546124], [47.379142, 8.533339], [47.366649, 8.537941], [47.371477, 8.519146], [47.393634, 8.533173], [47.367108, 8.539764], [47.365254, 8.538945], [47.368726, 8.515118], [47.375094, 8.547424], [47.388838, 8.526756], [47.397213, 8.531431], [47.380414, 8.515711], [47.40001, 8.545651], [47.387432, 8.479165], [47.376919, 8.541013], [47.414749, 8.560932], [47.417773, 8.50279], [47.35971, 8.531655], [47.383136, 8.528507], [47.381232, 8.49132], [47.36236, 8.533934], [47.365037, 8.531513], [47.378564, 8.542054], [47.365139, 8.50223], [47.375959, 8.536014], [47.363503, 8.547991], [47.339946, 8.529967], [47.35779, 8.509033], [47.366943, 8.543892], [47.428155, 8.489769], [47.329124, 8.51756], [47.399865, 8.494868], [47.430228, 8.540592], [47.388108, 8.520185], [47.378786, 8.527226], [47.385045, 8.532149], [47.378102, 8.528166], [47.391182, 8.489186], [47.368254, 8.511626], [47.386382, 8.525779], [47.399605, 8.542821], [47.378699, 8.529714], [47.376841, 8.536959], [47.372373, 8.537609], [47.421272, 8.549605], [47.378838, 8.545397], [47.416481, 8.511233], [47.425366, 8.494817], [47.36224, 8.547475], [47.368512, 8.52454], [47.373664, 8.533279], [47.373067, 8.536498], [47.383817, 8.532587], [47.382639, 8.529702], [47.371133, 8.527917], [47.387796, 8.49847], [47.38346, 8.533255], [47.374503, 8.52163], [47.335901, 8.524895], [47.380466, 8.548225], [47.380097, 8.528432], [47.36947, 8.525911], [47.375376, 8.529156], [47.367047, 8.531064], [47.39897, 8.513848], [47.391556, 8.480702], [47.410162, 8.534718], [47.360962, 8.571635], [47.388003, 8.486659], [47.389726, 8.512562], [47.40045, 8.508472], [47.369385, 8.472457], [47.427608, 8.54649], [47.377722, 8.52841], [47.413989, 8.525693], [47.361969, 8.547562], [47.385195, 8.500603], [47.400686, 8.534152], [47.366426, 8.532971], [47.409476, 8.546272], [47.371699, 8.517455], [47.380257, 8.542804], [47.379233, 8.537975], [47.399077, 8.533072], [47.365108, 8.553241], [47.374741, 8.549562], [47.372685, 8.552883], [47.379124, 8.518029], [47.394847, 8.525753], [47.396462, 8.543285], [47.371798, 8.538458], [47.351945, 8.53188], [47.368955, 8.540398], [47.414197, 8.571455], [47.395642, 8.545242], [47.390567, 8.539812], [47.406416, 8.55388], [47.42069, 8.502544], [47.405042, 8.557428], [47.374094, 8.544795], [47.346017, 8.533797], [47.370178, 8.53947], [47.376075, 8.514141], [47.399958, 8.59235], [47.357886, 8.557802], [47.381626, 8.542634], [47.391833, 8.480867], [47.339249, 8.524725], [47.357862, 8.572204], [47.362196, 8.559455], [47.387807, 8.53402], [47.350177, 8.534306], [47.40991, 8.541272], [47.413791, 8.54554], [47.354526, 8.530967], [47.366512, 8.54187], [47.370087, 8.511862], [47.369679, 8.511284], [47.373525, 8.598266], [47.374536, 8.539984], [47.397717, 8.533309], [47.373671, 8.538218], [47.39174, 8.513662], [47.412217, 8.546554], [47.409717, 8.576117], [47.374173, 8.515572], [47.369558, 8.506833], [47.382278, 8.54025], [47.409627, 8.549309], [47.377937, 8.541829], [47.365829, 8.559637], [47.422894, 8.550222], [47.38254, 8.529753], [47.378912, 8.526222], [47.423861, 8.522276], [47.40915, 8.575178], [47.383933, 8.509717], [47.371459, 8.536239], [47.397439, 8.532284], [47.375137, 8.553238], [47.368552, 8.528831], [47.378545, 8.541219], [47.419382, 8.539414], [47.362224, 8.559403], [47.34083, 8.519186], [47.344645, 8.528647], [47.414012, 8.519412], [47.374727, 8.53975], [47.361333, 8.525506], [47.388521, 8.491067], [47.416206, 8.549804], [47.362375, 8.564159], [47.347827, 8.534535], [47.370179, 8.548805], [47.366932, 8.544117], [47.369538, 8.540609], [47.364719, 8.554424], [47.388099, 8.528728], [47.376492, 8.527272], [47.38711, 8.519198], [47.381132, 8.534995], [47.410986, 8.570526], [47.379342, 8.555657], [47.375163, 8.536501], [47.378561, 8.541484], [47.380547, 8.528361], [47.393931, 8.4994], [47.410584, 8.551701], [47.373053, 8.533266], [47.363724, 8.519955], [47.381966, 8.541859], [47.414048, 8.54039], [47.42599, 8.49642], [47.36984, 8.552241], [47.369445, 8.526625], [47.363281, 8.549641], [47.367032, 8.532587], [47.397599, 8.532446], [47.376798, 8.517638], [47.413052, 8.536262], [47.375976, 8.541749], [47.385378, 8.520646], [47.369598, 8.512236], [47.409782, 8.549975], [47.37135, 8.54295], [47.367445, 8.558029], [47.405678, 8.59152], [47.367058, 8.494999], [47.33819, 8.530116], [47.426032, 8.554184], [47.378699, 8.542056], [47.369448, 8.532054], [47.341427, 8.536945], [47.356179, 8.550076], [47.380521, 8.541498], [47.411553, 8.541598], [47.414091, 8.549005], [47.362921, 8.517344], [47.381487, 8.542061], [47.429988, 8.549654], [47.39509, 8.4937], [47.374301, 8.52491], [47.421958, 8.550295], [47.40765, 8.58768], [47.419099, 8.546459], [47.377925, 8.536465], [47.399159, 8.542493], [47.38732, 8.49058], [47.390759, 8.508874], [47.404213, 8.481573], [47.42029, 8.500945], [47.377783, 8.511315], [47.3812, 8.528772], [47.373626, 8.53639], [47.363018, 8.570209], [47.378682, 8.52292], [47.3611, 8.53596], [47.394184, 8.525421], [47.369446, 8.532239], [47.373248, 8.520122], [47.402315, 8.54546], [47.378332, 8.530461], [47.369412, 8.543466], [47.376936, 8.525904], [47.357605, 8.550555], [47.366394, 8.522048], [47.410067, 8.542826], [47.395539, 8.48286], [47.356666, 8.523439], [47.389928, 8.484631], [47.329782, 8.529918], [47.377256, 8.538689], [47.337747, 8.535122], [47.372611, 8.534317], [47.355858, 8.549764], [47.377164, 8.520823], [47.373826, 8.518054], [47.418945, 8.50732], [47.376889, 8.498015], [47.370188, 8.548818], [47.377021, 8.539744], [47.387165, 8.519093], [47.378419, 8.500945], [47.365042, 8.538477], [47.385015, 8.55869], [47.386852, 8.535047], [47.39128, 8.520474], [47.408148, 8.552498], [47.411011, 8.570725], [47.369576, 8.5516], [47.357871, 8.572191], [47.367675, 8.538823], [47.364577, 8.566231], [47.391465, 8.514173], [47.380847, 8.491193], [47.391045, 8.522549], [47.381542, 8.542049], [47.38663, 8.491241], [47.386901, 8.490081], [47.337101, 8.519693], [47.385146, 8.495172], [47.408591, 8.580824], [47.398767, 8.506597], [47.390748, 8.527365], [47.388422, 8.491065], [47.384793, 8.54164], [47.383765, 8.512256], [47.384209, 8.510967], [47.383612, 8.482798], [47.360345, 8.55371], [47.370344, 8.509351], [47.394883, 8.52578], [47.396475, 8.528608], [47.387449, 8.525244], [47.365196, 8.558075], [47.364997, 8.521358], [47.389739, 8.471633], [47.37754, 8.496716], [47.37469, 8.520866], [47.386655, 8.539705], [47.409909, 8.546161], [47.391301, 8.538344], [47.382752, 8.548113], [47.38146, 8.503747], [47.373268, 8.518983], [47.391476, 8.512054], [47.370041, 8.537865], [47.363291, 8.499757], [47.41017, 8.54239], [47.393113, 8.531268], [47.365379, 8.535227], [47.397927, 8.474428], [47.375819, 8.542222], [47.419193, 8.546991], [47.416189, 8.569232], [47.410381, 8.538141], [47.390016, 8.512303], [47.392485, 8.53862], [47.383253, 8.53986], [47.375248, 8.547322], [47.36639, 8.532971], [47.366232, 8.53825], [47.355784, 8.528305], [47.360679, 8.524302], [47.397385, 8.531355], [47.36695, 8.544117], [47.35435, 8.52682], [47.401892, 8.499346], [47.366432, 8.518937], [47.373032, 8.534497], [47.360039, 8.568531], [47.374272, 8.524115], [47.386927, 8.502068], [47.386384, 8.541726], [47.375229, 8.51807], [47.367587, 8.545163], [47.370188, 8.548818], [47.352425, 8.576298], [47.356928, 8.534789], [47.371825, 8.524237], [47.38852, 8.491093], [47.380909, 8.537613], [47.383079, 8.540214], [47.378921, 8.523322], [47.374923, 8.523757], [47.364296, 8.536529], [47.362623, 8.497109], [47.375839, 8.538197], [47.379899, 8.494499], [47.381918, 8.51647], [47.388162, 8.474], [47.365874, 8.53999], [47.418918, 8.508326], [47.400683, 8.548606], [47.374619, 8.550142], [47.373119, 8.529136], [47.375651, 8.535253], [47.375232, 8.534953], [47.365867, 8.532152], [47.367736, 8.552157], [47.405204, 8.551787], [47.375613, 8.516422], [47.345345, 8.534484], [47.369906, 8.52543], [47.373871, 8.544671], [47.399223, 8.542402], [47.378851, 8.49996], [47.354078, 8.557166], [47.355712, 8.556539], [47.378476, 8.510296], [47.361548, 8.561387], [47.393411, 8.500237], [47.422376, 8.548992], [47.368499, 8.555059], [47.426036, 8.493346], [47.3638, 8.551757], [47.36374, 8.547704], [47.399243, 8.522146], [47.366614, 8.533108], [47.386546, 8.541676], [47.37912, 8.522267], [47.41403, 8.526131], [47.406418, 8.481404], [47.355398, 8.520527], [47.366983, 8.491423], [47.391224, 8.538806], [47.358493, 8.571132], [47.335072, 8.518355], [47.357863, 8.514726], [47.372053, 8.529565], [47.388495, 8.475993], [47.36085, 8.513675], [47.42764, 8.549672], [47.406824, 8.552603], [47.407508, 8.547039], [47.395561, 8.526284], [47.388051, 8.49617], [47.370416, 8.514238], [47.372992, 8.547155], [47.366392, 8.559067], [47.431363, 8.51649], [47.374335, 8.524116], [47.375332, 8.516681], [47.352493, 8.531971], [47.371013, 8.555602], [47.39475, 8.525565], [47.374132, 8.502422], [47.36712, 8.52908], [47.363978, 8.546319], [47.410499, 8.550281], [47.370717, 8.51672], [47.382256, 8.533151], [47.374113, 8.540982], [47.3801, 8.52038], [47.355903, 8.535668], [47.407484, 8.489918], [47.375221, 8.547348], [47.368729, 8.501202], [47.358696, 8.516067], [47.359341, 8.580007], [47.414019, 8.519638], [47.384286, 8.525829], [47.414152, 8.518805], [47.360003, 8.594901], [47.400201, 8.54637], [47.417569, 8.554047], [47.361288, 8.522725], [47.393029, 8.474903], [47.371106, 8.524103], [47.369863, 8.529096], [47.387393, 8.486475], [47.3904, 8.475236], [47.409111, 8.48404], [47.377623, 8.52654], [47.386968, 8.51897], [47.362559, 8.563765], [47.391973, 8.492234], [47.367872, 8.501476], [47.399637, 8.495155], [47.391798, 8.518935], [47.355221, 8.574584], [47.366802, 8.544498], [47.340121, 8.525722], [47.40209, 8.498396], [47.40007, 8.536511], [47.408036, 8.577804], [47.413998, 8.549321], [47.382762, 8.514713], [47.371508, 8.546237], [47.423899, 8.54302], [47.377698, 8.537586], [47.407383, 8.585647], [47.366357, 8.544939], [47.356674, 8.532162], [47.375857, 8.495809], [47.386948, 8.48497], [47.364482, 8.553823], [47.402444, 8.576585], [47.379698, 8.527801], [47.403038, 8.547873], [47.403869, 8.568864], [47.389249, 8.510698], [47.382941, 8.514743], [47.378504, 8.539894], [47.328284, 8.52945], [47.391983, 8.529893], [47.402608, 8.498831], [47.370197, 8.548805], [47.359587, 8.576967], [47.374005, 8.544687], [47.366186, 8.540288], [47.414319, 8.53923], [47.364859, 8.602142], [47.356523, 8.52337], [47.405644, 8.556566], [47.362097, 8.531373], [47.377692, 8.538222], [47.367616, 8.534638], [47.336467, 8.520196], [47.409232, 8.573245], [47.403762, 8.534229], [47.382081, 8.498806], [47.352491, 8.508185], [47.367758, 8.496205], [47.419054, 8.537008], [47.389587, 8.511989], [47.344623, 8.533821], [47.388876, 8.495498], [47.329782, 8.529918], [47.37309, 8.533082], [47.363223, 8.560205], [47.37142, 8.556339], [47.407562, 8.550763], [47.376775, 8.535303], [47.398123, 8.535994], [47.377939, 8.541524], [47.376024, 8.510922], [47.401339, 8.58826], [47.391362, 8.53751], [47.40679, 8.536477], [47.391101, 8.522285], [47.422423, 8.55057], [47.369993, 8.522955], [47.402651, 8.535637], [47.36258, 8.534428], [47.373332, 8.515012], [47.403175, 8.580005], [47.388866, 8.539923], [47.418916, 8.544864], [47.397227, 8.491173], [47.364604, 8.566191], [47.39974, 8.518089], [47.374468, 8.535811], [47.367548, 8.546394], [47.378107, 8.509348], [47.414266, 8.546676], [47.40931, 8.577261], [47.368161, 8.544394], [47.372665, 8.498685], [47.338773, 8.538796], [47.382809, 8.527957], [47.378308, 8.517761], [47.40514, 8.481551], [47.40513, 8.481577], [47.367825, 8.523904], [47.372047, 8.568534], [47.37301, 8.562053], [47.385895, 8.492896], [47.409261, 8.543339], [47.340968, 8.536935], [47.384767, 8.537679], [47.386006, 8.51895], [47.386513, 8.529079], [47.395776, 8.526434], [47.372584, 8.534329], [47.38958, 8.521446], [47.381513, 8.502954], [47.414413, 8.483588], [47.369256, 8.529494], [47.400876, 8.594079], [47.386897, 8.534081], [47.385616, 8.508598], [47.369898, 8.510891], [47.37136, 8.542911], [47.364437, 8.536889], [47.366452, 8.540638], [47.374189, 8.544307], [47.359939, 8.559355], [47.391391, 8.52306], [47.409638, 8.505066], [47.362771, 8.53524], [47.393363, 8.497614], [47.36227, 8.559311], [47.374092, 8.553468], [47.397404, 8.532177], [47.412509, 8.538556], [47.398137, 8.465941], [47.353227, 8.534289], [47.383627, 8.536543], [47.363679, 8.532386], [47.37388, 8.524743], [47.386723, 8.523984], [47.348465, 8.523206], [47.398382, 8.541868], [47.389091, 8.53043], [47.384727, 8.534327], [47.383061, 8.530717], [47.373639, 8.535], [47.340314, 8.519467], [47.368574, 8.524595], [47.367373, 8.493999], [47.379803, 8.506853], [47.386796, 8.547496], [47.384781, 8.509363], [47.385408, 8.5087], [47.375418, 8.540876], [47.370406, 8.524897], [47.348031, 8.562876], [47.375655, 8.493316], [47.371173, 8.531374], [47.357817, 8.521622], [47.332427, 8.529839], [47.378865, 8.511072], [47.36225, 8.575991], [47.410432, 8.548756], [47.399518, 8.549165], [47.367081, 8.548264], [47.37048, 8.524739], [47.391321, 8.536225], [47.391087, 8.520921], [47.379024, 8.533469], [47.414457, 8.480673], [47.391855, 8.517704], [47.428677, 8.543808], [47.413137, 8.546242], [47.400803, 8.48862], [47.368162, 8.536807], [47.370188, 8.518431], [47.411701, 8.525978], [47.385769, 8.542123], [47.387136, 8.526946], [47.407604, 8.582379], [47.39087, 8.523022], [47.385193, 8.508682], [47.385084, 8.50872], [47.371444, 8.535961], [47.343998, 8.535185], [47.418869, 8.544161], [47.405168, 8.480399], [47.367639, 8.545402], [47.413624, 8.477291], [47.427195, 8.546362], [47.407229, 8.550743], [47.3706, 8.517671], [47.399707, 8.543432], [47.391299, 8.535628], [47.383718, 8.508653], [47.339785, 8.529818], [47.40034, 8.533681], [47.348267, 8.562656], [47.375349, 8.485417], [47.367715, 8.495052], [47.339182, 8.526008], [47.388134, 8.474066], [47.375918, 8.510721], [47.352971, 8.527096], [47.377202, 8.529207], [47.423707, 8.516627], [47.388305, 8.49101], [47.385515, 8.542317], [47.373354, 8.525195], [47.387824, 8.529292], [47.372577, 8.500392], [47.384019, 8.480608], [47.42324, 8.549818], [47.355403, 8.559656], [47.375341, 8.519515], [47.375713, 8.526832], [47.360449, 8.54945], [47.36431, 8.548259], [47.414054, 8.518737], [47.431327, 8.516476], [47.406766, 8.567852], [47.392425, 8.491012], [47.384686, 8.503189], [47.39064, 8.479532], [47.41075, 8.550326], [47.385014, 8.50852], [47.406446, 8.549866], [47.383406, 8.530473], [47.389743, 8.511688], [47.39885, 8.533293], [47.373988, 8.544594], [47.363099, 8.550763], [47.366355, 8.545111], [47.40779, 8.490838], [47.368025, 8.522664], [47.402309, 8.493154], [47.408854, 8.539846], [47.36035, 8.523884], [47.377477, 8.503628], [47.326706, 8.517379], [47.379016, 8.516107], [47.389356, 8.529018], [47.360862, 8.588141], [47.405325, 8.577269], [47.372571, 8.517552], [47.355816, 8.554105], [47.378036, 8.532349], [47.37719, 8.554897], [47.389558, 8.539023], [47.420945, 8.502125], [47.369508, 8.466779], [47.382404, 8.540279], [47.386652, 8.481878], [47.374306, 8.51764], [47.389165, 8.483503], [47.39476, 8.525433], [47.364981, 8.545877], [47.374823, 8.525848], [47.370359, 8.543181], [47.373067, 8.536524], [47.36651, 8.553336], [47.364374, 8.531248], [47.364102, 8.547487], [47.387344, 8.498699], [47.398387, 8.53943], [47.349923, 8.57459], [47.362141, 8.559613], [47.39303, 8.47477], [47.36844, 8.524486], [47.387102, 8.489781], [47.380071, 8.54815], [47.380189, 8.520527], [47.376602, 8.52697], [47.373748, 8.503116], [47.369031, 8.540943], [47.380477, 8.528108], [47.404674, 8.588477], [47.398701, 8.541477], [47.387187, 8.553676], [47.366924, 8.543057], [47.377514, 8.527611], [47.378885, 8.531042], [47.4026, 8.535304], [47.374937, 8.579295], [47.376327, 8.537055], [47.374067, 8.542901], [47.384773, 8.531362], [47.397111, 8.530793], [47.373162, 8.53687], [47.37902, 8.544235], [47.371635, 8.538626], [47.390709, 8.478805], [47.382772, 8.52993], [47.368859, 8.538212], [47.369301, 8.541849], [47.409386, 8.549967], [47.396715, 8.550656], [47.391075, 8.486163], [47.391082, 8.522404], [47.387819, 8.544047], [47.370411, 8.522487], [47.365816, 8.533727], [47.363206, 8.506017], [47.379234, 8.495426], [47.397131, 8.493741], [47.356569, 8.534662], [47.410759, 8.53432], [47.418711, 8.557768], [47.364651, 8.598722], [47.368105, 8.541797], [47.36747, 8.544287], [47.415909, 8.5452], [47.376329, 8.543464], [47.365274, 8.492395], [47.399533, 8.51521], [47.340029, 8.519157], [47.420945, 8.502111], [47.390124, 8.510397], [47.387061, 8.518667], [47.428554, 8.545356], [47.41877, 8.540395], [47.357104, 8.535242], [47.382696, 8.500408], [47.362249, 8.547422], [47.384155, 8.509046], [47.408832, 8.54867], [47.431756, 8.54354], [47.376061, 8.529024], [47.373733, 8.545847], [47.370793, 8.535365], [47.378228, 8.526248], [47.362503, 8.518805], [47.391084, 8.522272], [47.386575, 8.490406], [47.413927, 8.518827], [47.367772, 8.560473], [47.387861, 8.51769], [47.40174, 8.550046], [47.378766, 8.526484], [47.362131, 8.547552], [47.388254, 8.551208], [47.383067, 8.513845], [47.375148, 8.528569], [47.34093, 8.537186], [47.411614, 8.546594], [47.397673, 8.533203], [47.386214, 8.498346], [47.370672, 8.516733], [47.371551, 8.556739], [47.385, 8.487461], [47.374052, 8.532254], [47.354072, 8.523823], [47.386521, 8.490405], [47.380823, 8.54949], [47.357881, 8.508995], [47.368258, 8.529461], [47.375395, 8.519516], [47.361616, 8.554372], [47.380346, 8.542872], [47.359252, 8.569864], [47.390864, 8.533116], [47.38817, 8.520279], [47.376967, 8.569499], [47.362337, 8.52689], [47.378291, 8.53393], [47.368704, 8.499997], [47.380258, 8.541784], [47.409521, 8.537779], [47.391799, 8.518922], [47.391397, 8.538597], [47.362196, 8.559455], [47.390406, 8.539703], [47.366425, 8.540664], [47.34283, 8.536047], [47.39351, 8.529249], [47.395582, 8.535557], [47.36738, 8.496276], [47.375857, 8.53637], [47.379273, 8.491136], [47.364741, 8.568803], [47.389228, 8.541546], [47.367857, 8.546148], [47.358286, 8.581202], [47.378217, 8.527426], [47.397905, 8.532479], [47.373479, 8.534745], [47.381451, 8.542153], [47.356665, 8.523624], [47.374267, 8.518898], [47.382202, 8.550089], [47.394068, 8.493349], [47.378468, 8.528451], [47.383029, 8.57515], [47.381424, 8.54206], [47.422824, 8.494396], [47.364246, 8.521885], [47.358272, 8.515304], [47.399273, 8.533328], [47.364715, 8.532208], [47.383265, 8.529159], [47.337902, 8.538685], [47.379912, 8.528905], [47.383208, 8.539872], [47.383596, 8.52845], [47.362753, 8.518995], [47.369383, 8.541758], [47.376034, 8.538585], [47.358263, 8.585358], [47.336476, 8.521123], [47.387242, 8.48826], [47.419994, 8.506744], [47.390285, 8.509513], [47.402929, 8.57576], [47.369613, 8.533633], [47.398669, 8.539171], [47.397693, 8.4884], [47.421172, 8.549722], [47.369809, 8.536682], [47.414627, 8.551255], [47.377284, 8.525249], [47.367084, 8.541366], [47.406812, 8.58064], [47.36999, 8.510668], [47.398724, 8.590707], [47.37776, 8.53772], [47.378617, 8.492037], [47.405972, 8.558866], [47.396089, 8.485772], [47.368564, 8.496591], [47.411524, 8.544711], [47.381405, 8.53753], [47.376299, 8.511351], [47.356381, 8.551496], [47.378432, 8.543614], [47.425337, 8.54688], [47.419265, 8.547933], [47.362251, 8.547276], [47.391044, 8.522642], [47.373103, 8.527971], [47.363609, 8.554785], [47.373561, 8.529], [47.34876, 8.578523], [47.379372, 8.542229], [47.376964, 8.521932], [47.36795, 8.541132], [47.381167, 8.517898], [47.366562, 8.553602], [47.383211, 8.506034], [47.349143, 8.56421], [47.390269, 8.510268], [47.397017, 8.530261], [47.355278, 8.512172], [47.399809, 8.541262], [47.370188, 8.509732], [47.376955, 8.542841], [47.409012, 8.547733], [47.363443, 8.546745], [47.374534, 8.539269], [47.404176, 8.560471], [47.35236, 8.524092], [47.388048, 8.519852], [47.402854, 8.553938], [47.406736, 8.503723], [47.345385, 8.518829], [47.370088, 8.511742], [47.425604, 8.498241], [47.397891, 8.507043], [47.368619, 8.499465], [47.377523, 8.548402], [47.36342, 8.51983], [47.367719, 8.535077], [47.354713, 8.558411], [47.419809, 8.504355], [47.366809, 8.544723], [47.358284, 8.587742], [47.358586, 8.534452], [47.372402, 8.538285], [47.37211, 8.544409], [47.426831, 8.49197], [47.374299, 8.524115], [47.362222, 8.547474], [47.354806, 8.523229], [47.376342, 8.518238], [47.422545, 8.499334], [47.383399, 8.499349], [47.417191, 8.541887], [47.388516, 8.470629], [47.414244, 8.483399], [47.364455, 8.530257], [47.367117, 8.539751], [47.352404, 8.576576], [47.370695, 8.549385], [47.369844, 8.543436], [47.367831, 8.496087], [47.375248, 8.517924], [47.378929, 8.509033], [47.374751, 8.552264], [47.422845, 8.542202], [47.389128, 8.482628], [47.390939, 8.47824], [47.378385, 8.540977], [47.404344, 8.485033], [47.363094, 8.549386], [47.335067, 8.527459], [47.374453, 8.539294], [47.408712, 8.546229], [47.392916, 8.542523], [47.359562, 8.511954], [47.389301, 8.510818], [47.372959, 8.524168], [47.405139, 8.479577], [47.33419, 8.519317], [47.37018, 8.539311], [47.377909, 8.511291], [47.367612, 8.538821], [47.387927, 8.536473], [47.377489, 8.526405], [47.388783, 8.517258], [47.419255, 8.53574], [47.36127, 8.534084], [47.377171, 8.540025], [47.371718, 8.547804], [47.373626, 8.536377], [47.405073, 8.572706], [47.360381, 8.553698], [47.364511, 8.546119], [47.369683, 8.466293], [47.375722, 8.537347], [47.377322, 8.522204], [47.359128, 8.551156], [47.366419, 8.545046], [47.407723, 8.584038], [47.377335, 8.546372], [47.348548, 8.534378], [47.335059, 8.52734], [47.344045, 8.52833], [47.373486, 8.513916], [47.371612, 8.54759], [47.414235, 8.5405], [47.37474, 8.581052], [47.41406, 8.541928], [47.372173, 8.547271], [47.356715, 8.523043], [47.37435, 8.538735], [47.377197, 8.540171], [47.385863, 8.532179], [47.369671, 8.525637], [47.381129, 8.518163], [47.378547, 8.522997], [47.365814, 8.547165], [47.379504, 8.5274], [47.409982, 8.543195], [47.39984, 8.490708], [47.399877, 8.490576], [47.378768, 8.542323], [47.388334, 8.490772], [47.372406, 8.515947], [47.410225, 8.546963], [47.394454, 8.493436], [47.392745, 8.522557], [47.362482, 8.547559], [47.364814, 8.566792], [47.373118, 8.536816], [47.357092, 8.512593], [47.363607, 8.533377], [47.37236, 8.565098], [47.358287, 8.520387], [47.428766, 8.48888], [47.368738, 8.501216], [47.35843, 8.525288], [47.36531, 8.521563], [47.393326, 8.520993], [47.394604, 8.521906], [47.37289, 8.547445], [47.374779, 8.527648], [47.362779, 8.567914], [47.398243, 8.536659], [47.376948, 8.512159], [47.388688, 8.472474], [47.429754, 8.544029], [47.421013, 8.50748], [47.36908, 8.52528], [47.376726, 8.548981], [47.396042, 8.52685], [47.360753, 8.585491], [47.387592, 8.547035], [47.351869, 8.522746], [47.396805, 8.529833], [47.387121, 8.477794], [47.360957, 8.531046], [47.364689, 8.554715], [47.362159, 8.531441], [47.381087, 8.503289], [47.373943, 8.536118], [47.415484, 8.54637], [47.342466, 8.530693], [47.371718, 8.547791], [47.376, 8.537419], [47.383245, 8.484619], [47.407427, 8.587516], [47.374489, 8.540221], [47.402008, 8.535173], [47.413282, 8.56754], [47.389196, 8.543002], [47.388307, 8.536269], [47.371517, 8.53015], [47.423838, 8.552177], [47.370088, 8.511742], [47.393004, 8.514045], [47.357497, 8.526937], [47.376119, 8.503495], [47.369794, 8.53545], [47.374974, 8.517349], [47.344868, 8.533601], [47.385458, 8.524541], [47.348306, 8.562432], [47.368735, 8.534237], [47.422654, 8.499243], [47.364909, 8.545889], [47.38044, 8.548079], [47.390178, 8.536254], [47.369428, 8.541732], [47.38662, 8.518618], [47.400633, 8.534085], [47.39951, 8.503141], [47.364679, 8.554781], [47.364466, 8.532918], [47.403816, 8.496523], [47.370606, 8.558559], [47.369988, 8.549053], [47.370649, 8.54851], [47.396999, 8.530248], [47.417353, 8.554029], [47.374414, 8.530103], [47.409702, 8.549907], [47.408806, 8.54011], [47.403716, 8.557838], [47.364601, 8.532855], [47.40477, 8.488566], [47.36025, 8.566271], [47.375718, 8.510876], [47.377018, 8.5597], [47.399839, 8.54468], [47.409512, 8.537766], [47.383333, 8.515227], [47.420184, 8.535494], [47.407112, 8.573942], [47.385025, 8.532334], [47.398644, 8.512145], [47.36673, 8.54263], [47.378653, 8.529806], [47.360223, 8.594442], [47.370922, 8.53125], [47.369038, 8.541142], [47.377292, 8.512828], [47.404928, 8.557148], [47.379543, 8.542167], [47.423533, 8.548406], [47.389673, 8.512494], [47.367036, 8.541669], [47.386354, 8.518242], [47.403875, 8.569129], [47.369146, 8.52311], [47.418411, 8.546882], [47.364427, 8.534188], [47.361734, 8.517333], [47.390065, 8.523496], [47.358328, 8.505324], [47.377908, 8.54298], [47.335516, 8.51888], [47.407047, 8.576842], [47.39234, 8.476585], [47.391348, 8.516131], [47.366078, 8.533679], [47.373841, 8.536461], [47.360447, 8.53175], [47.374274, 8.543845], [47.396738, 8.529315], [47.370118, 8.524944], [47.391676, 8.518601], [47.425908, 8.493608], [47.369509, 8.525647], [47.385728, 8.482562], [47.368324, 8.538638], [47.379061, 8.53335], [47.422222, 8.549015], [47.362333, 8.547132], [47.37106, 8.547949], [47.363337, 8.514228], [47.371601, 8.535488], [47.367505, 8.494319], [47.3931, 8.47403], [47.387184, 8.539875], [47.384787, 8.55254], [47.365748, 8.521929], [47.356359, 8.522652], [47.390072, 8.511098], [47.384209, 8.510967], [47.38008, 8.520644], [47.390904, 8.492041], [47.393283, 8.586072], [47.37983, 8.544146], [47.337083, 8.519653], [47.357454, 8.521893], [47.377875, 8.57418], [47.35804, 8.519826], [47.427448, 8.536877], [47.390478, 8.488456], [47.414754, 8.553034], [47.377796, 8.537707], [47.378426, 8.540475], [47.379426, 8.52516], [47.378795, 8.54239], [47.377799, 8.511593], [47.393502, 8.48833], [47.369165, 8.503607], [47.390179, 8.52281], [47.404713, 8.572685], [47.36714, 8.531715], [47.387891, 8.498896], [47.375185, 8.553001], [47.394102, 8.527499], [47.378307, 8.530342], [47.374877, 8.549459], [47.374239, 8.519056], [47.401661, 8.547938], [47.368346, 8.493833], [47.393227, 8.512328], [47.390797, 8.523087], [47.377762, 8.521326], [47.404653, 8.550199], [47.411373, 8.544469], [47.381736, 8.529114], [47.378064, 8.526483], [47.387846, 8.536537], [47.364284, 8.53118], [47.349389, 8.527275], [47.370593, 8.543094], [47.340946, 8.526904], [47.396468, 8.528396], [47.377441, 8.499641], [47.337065, 8.519692], [47.379813, 8.506826], [47.396355, 8.513623], [47.38451, 8.543024], [47.377378, 8.512353], [47.375419, 8.529409], [47.380159, 8.527572], [47.39602, 8.4854], [47.398104, 8.536139], [47.382251, 8.504796], [47.357157, 8.522006], [47.37017, 8.548792], [47.383254, 8.539793], [47.376867, 8.527558], [47.380562, 8.534427], [47.408023, 8.546732], [47.405472, 8.503353], [47.372777, 8.558247], [47.412474, 8.509681], [47.37189, 8.522014], [47.387052, 8.533885], [47.386511, 8.497398], [47.389926, 8.512301], [47.404708, 8.552903], [47.356389, 8.523235], [47.369055, 8.553429], [47.384883, 8.532092], [47.361196, 8.53244], [47.373608, 8.536403], [47.368938, 8.540319], [47.376344, 8.558667], [47.3752, 8.515328], [47.376758, 8.538057], [47.414286, 8.51898], [47.377417, 8.52643], [47.38335, 8.515281], [47.392622, 8.523151], [47.368061, 8.538923], [47.363714, 8.533498], [47.397368, 8.541569], [47.376829, 8.538138], [47.369582, 8.54347], [47.376693, 8.538307], [47.386936, 8.53473], [47.372935, 8.547472], [47.349776, 8.533927], [47.378996, 8.530713], [47.368727, 8.548205], [47.361737, 8.549304], [47.37799, 8.526746], [47.372364, 8.534749], [47.413707, 8.556153], [47.421439, 8.550072], [47.384092, 8.531096], [47.377634, 8.527309], [47.39063, 8.508249], [47.397987, 8.539859], [47.367094, 8.5375], [47.388927, 8.550494], [47.391992, 8.51164], [47.343082, 8.519801], [47.351738, 8.575635], [47.372574, 8.534462], [47.350703, 8.601939], [47.374473, 8.495729], [47.376082, 8.577227], [47.399223, 8.542402], [47.403938, 8.568269], [47.398752, 8.590562], [47.385983, 8.490182], [47.380562, 8.534427], [47.393402, 8.537725], [47.368003, 8.540246], [47.413007, 8.536287], [47.395408, 8.518717], [47.373807, 8.542869], [47.344842, 8.533415], [47.389946, 8.536037], [47.374932, 8.536192], [47.392016, 8.526437], [47.343062, 8.530494], [47.372757, 8.538808], [47.378716, 8.527953], [47.358505, 8.555128], [47.376583, 8.528029], [47.386839, 8.551483], [47.364098, 8.546031], [47.41915, 8.547719], [47.367576, 8.529367], [47.423376, 8.549702], [47.379409, 8.521253], [47.398932, 8.520855], [47.413586, 8.553858], [47.392268, 8.516825], [47.376004, 8.527461], [47.370792, 8.543018], [47.392614, 8.523137], [47.335153, 8.519243], [47.421179, 8.548092], [47.363024, 8.548272], [47.412717, 8.552488], [47.375412, 8.545299], [47.374438, 8.544643], [47.395795, 8.545272], [47.421775, 8.546952], [47.409008, 8.53969], [47.421935, 8.537651], [47.408562, 8.550559], [47.415527, 8.54649], [47.370882, 8.549574], [47.369821, 8.552306], [47.386816, 8.518821], [47.385728, 8.493488], [47.371063, 8.542918], [47.378404, 8.525696], [47.38173, 8.536424], [47.404397, 8.574692], [47.382491, 8.515767], [47.383306, 8.530484], [47.397978, 8.524744], [47.379374, 8.490913], [47.370814, 8.548222], [47.374245, 8.527001], [47.383253, 8.539873], [47.374573, 8.517023], [47.371634, 8.502147], [47.356463, 8.535481], [47.355859, 8.535561], [47.387045, 8.485117], [47.375416, 8.484982], [47.402397, 8.503185], [47.375936, 8.525155], [47.384655, 8.542855], [47.389285, 8.521242], [47.38948, 8.521537], [47.382384, 8.530094], [47.420113, 8.500677], [47.426822, 8.491956], [47.361799, 8.549332], [47.374922, 8.525876], [47.365385, 8.546891], [47.37258, 8.534779], [47.373494, 8.519849], [47.386788, 8.547495], [47.367109, 8.558353], [47.415051, 8.527477], [47.393683, 8.537492], [47.368261, 8.524403], [47.358166, 8.518929], [47.409099, 8.545191], [47.361528, 8.565239], [47.373636, 8.542852], [47.40427, 8.485177], [47.380168, 8.550232], [47.407908, 8.574396], [47.414476, 8.553863], [47.339768, 8.535415], [47.390538, 8.53903], [47.369721, 8.531742], [47.373468, 8.513969], [47.362496, 8.534744], [47.37849, 8.523234], [47.37333, 8.531511], [47.337484, 8.524862], [47.388998, 8.515434], [47.378903, 8.523388], [47.383289, 8.530431], [47.389678, 8.511898], [47.367706, 8.495025], [47.399464, 8.477571], [47.377757, 8.507315], [47.405017, 8.557176], [47.380519, 8.552967], [47.427734, 8.490609], [47.387948, 8.519956], [47.392042, 8.512092], [47.40613, 8.504108], [47.365217, 8.545683], [47.373389, 8.531909], [47.388937, 8.530493], [47.377063, 8.54197], [47.363463, 8.551247], [47.386245, 8.531789], [47.368321, 8.551203], [47.367128, 8.564749], [47.373942, 8.474942], [47.364927, 8.53167], [47.37271, 8.542793], [47.399002, 8.541894], [47.386806, 8.547483], [47.389347, 8.521402], [47.379816, 8.526744], [47.381373, 8.538059], [47.388186, 8.514716], [47.395875, 8.532132], [47.371117, 8.542919], [47.360291, 8.567543], [47.409036, 8.548012], [47.370598, 8.52077], [47.388008, 8.528925], [47.427738, 8.548812], [47.340696, 8.519091], [47.377824, 8.532888], [47.382335, 8.48378], [47.365031, 8.548129], [47.379925, 8.546479], [47.398294, 8.536991], [47.413212, 8.545939], [47.36491, 8.529683], [47.370255, 8.539022], [47.388424, 8.488787], [47.397023, 8.53054], [47.36524, 8.564656], [47.376757, 8.538176], [47.373487, 8.534851], [47.34436, 8.530269], [47.353697, 8.558429], [47.372686, 8.534941], [47.356416, 8.523248], [47.380161, 8.520619], [47.366642, 8.524423], [47.397518, 8.532471], [47.364223, 8.526267], [47.410938, 8.550423], [47.357256, 8.521968], [47.407075, 8.552767], [47.414308, 8.550798], [47.403949, 8.561605], [47.370294, 8.492389], [47.39682, 8.534006], [47.356472, 8.551432], [47.365984, 8.531175], [47.362099, 8.554607], [47.406816, 8.569258], [47.370284, 8.535884], [47.370039, 8.534277], [47.357439, 8.58865], [47.366925, 8.545732], [47.362496, 8.533804], [47.356861, 8.507412], [47.365425, 8.538882], [47.378191, 8.52642], [47.421434, 8.548694], [47.421434, 8.548694], [47.364577, 8.566231], [47.383482, 8.531878], [47.374997, 8.539755], [47.36538, 8.530448], [47.386941, 8.528558], [47.363679, 8.549345], [47.375513, 8.486202], [47.370358, 8.548875], [47.42685, 8.491877], [47.351959, 8.558591], [47.40718, 8.546476], [47.37345, 8.531222], [47.325805, 8.518538], [47.369805, 8.526646], [47.386621, 8.54136], [47.383238, 8.506074], [47.37429, 8.47916], [47.393784, 8.502748], [47.408877, 8.545888], [47.360296, 8.56528], [47.419698, 8.546789], [47.385944, 8.498446], [47.374113, 8.540942], [47.352368, 8.559129], [47.375447, 8.549166], [47.395269, 8.508448], [47.365775, 8.547509], [47.374728, 8.520615], [47.374145, 8.529104], [47.355784, 8.559307], [47.39054, 8.491544], [47.40908, 8.55004], [47.390695, 8.550862], [47.391692, 8.513992], [47.41877, 8.540395], [47.397946, 8.48035], [47.368568, 8.529043], [47.36969, 8.543525], [47.365186, 8.547893], [47.382049, 8.529385], [47.38344, 8.530593], [47.369115, 8.541567], [47.368731, 8.537468], [47.383062, 8.530704], [47.36129, 8.529199], [47.426183, 8.502852], [47.41151, 8.526239], [47.378664, 8.54191], [47.360457, 8.547676], [47.418238, 8.482377], [47.369365, 8.541744], [47.36186, 8.553252], [47.335326, 8.519088], [47.418261, 8.5466], [47.385243, 8.54247], [47.385678, 8.542174], [47.38509, 8.499264], [47.35849, 8.517876], [47.343696, 8.530057], [47.378616, 8.505928], [47.38696, 8.5284], [47.399257, 8.542535], [47.405127, 8.5854], [47.377038, 8.528449], [47.356488, 8.53564], [47.366876, 8.549928], [47.357792, 8.554464], [47.425924, 8.493754], [47.373214, 8.542804], [47.36709, 8.53979], [47.421439, 8.536898], [47.360608, 8.504946], [47.399532, 8.494848], [47.389195, 8.521253], [47.369204, 8.527454], [47.376238, 8.544508], [47.402413, 8.553001], [47.383403, 8.484079], [47.369586, 8.539365], [47.353831, 8.601253], [47.363099, 8.522312], [47.351981, 8.560087], [47.365387, 8.5316], [47.350242, 8.530323], [47.348317, 8.533209], [47.349524, 8.533961], [47.403672, 8.571497], [47.398651, 8.532547], [47.343332, 8.518986], [47.381368, 8.512777], [47.417989, 8.544978], [47.371989, 8.51239], [47.37222, 8.520405], [47.410684, 8.571924], [47.369344, 8.526914], [47.388632, 8.485731], [47.413212, 8.475136], [47.335092, 8.518091], [47.365876, 8.531186], [47.360121, 8.535741], [47.385775, 8.548931], [47.358593, 8.52132], [47.392714, 8.523007], [47.406925, 8.550538], [47.384412, 8.532427], [47.373326, 8.531948], [47.376527, 8.521552], [47.380945, 8.518583], [47.375346, 8.540888], [47.378573, 8.542094], [47.343344, 8.525391], [47.389803, 8.529266], [47.372005, 8.522241], [47.380494, 8.528268], [47.363151, 8.52925], [47.370852, 8.554605], [47.378929, 8.545293], [47.38879, 8.530848], [47.376916, 8.541371], [47.375331, 8.530188], [47.395494, 8.531502], [47.366774, 8.535163], [47.389162, 8.520935], [47.399614, 8.542808], [47.385517, 8.508583], [47.370179, 8.548805], [47.373501, 8.542823], [47.373924, 8.533403], [47.365108, 8.553214], [47.335942, 8.537613], [47.408688, 8.580123], [47.378542, 8.565811], [47.396777, 8.541358], [47.389118, 8.524695], [47.328707, 8.517909], [47.354344, 8.523643], [47.388257, 8.497287], [47.391724, 8.518285], [47.36789, 8.522701], [47.394629, 8.487969], [47.368139, 8.508605], [47.381047, 8.528756], [47.37058, 8.524543], [47.350045, 8.566731], [47.383457, 8.515402], [47.370175, 8.540808], [47.392984, 8.528735], [47.388493, 8.491093], [47.372211, 8.520471], [47.379604, 8.54426], [47.377137, 8.554803], [47.360371, 8.523633], [47.357008, 8.571246], [47.368632, 8.544086], [47.367928, 8.557431], [47.368966, 8.519293], [47.385635, 8.482931], [47.422108, 8.504759], [47.396357, 8.482942], [47.368739, 8.523274], [47.397816, 8.541856], [47.372289, 8.521678], [47.409735, 8.543667], [47.365557, 8.539203], [47.402418, 8.535552], [47.412262, 8.546475], [47.40081, 8.491866], [47.370399, 8.514158], [47.378055, 8.526509], [47.406826, 8.48703], [47.373287, 8.535099], [47.39013, 8.525153], [47.360143, 8.54763], [47.374815, 8.515122], [47.371236, 8.525629], [47.387709, 8.540508], [47.376468, 8.51154], [47.414103, 8.519228], [47.363878, 8.566851], [47.391422, 8.478554], [47.376473, 8.528278], [47.383362, 8.548298], [47.36927, 8.510786], [47.376747, 8.49784], [47.411053, 8.546941], [47.387252, 8.488168], [47.356936, 8.535808], [47.364918, 8.554322], [47.413075, 8.517631], [47.359327, 8.569628], [47.409439, 8.54639], [47.369371, 8.537348], [47.366577, 8.540799], [47.36909, 8.539448], [47.381506, 8.530672], [47.402088, 8.497615], [47.364831, 8.53797], [47.404497, 8.533502], [47.38374, 8.51211], [47.364656, 8.566418], [47.429736, 8.543048], [47.395534, 8.532099], [47.408866, 8.574787], [47.412591, 8.525161], [47.366148, 8.545186], [47.374552, 8.489957], [47.41212, 8.564057], [47.410877, 8.563262], [47.388967, 8.515831], [47.36412, 8.537147], [47.380371, 8.507778], [47.335911, 8.540867], [47.383116, 8.540175], [47.366121, 8.533813], [47.374469, 8.53944], [47.419139, 8.507787], [47.387563, 8.529353], [47.360804, 8.551827], [47.386661, 8.497692], [47.377468, 8.54844], [47.374344, 8.524116], [47.392142, 8.524505], [47.427886, 8.490639], [47.419782, 8.548394], [47.403065, 8.588403], [47.368423, 8.54714], [47.391288, 8.473438], [47.409093, 8.562588], [47.374166, 8.542982], [47.373093, 8.52421], [47.38655, 8.528047], [47.375728, 8.527203], [47.384427, 8.531858], [47.398567, 8.591141], [47.370088, 8.512775], [47.363913, 8.566971], [47.410721, 8.556183], [47.351763, 8.525483], [47.368911, 8.540331], [47.356011, 8.551687], [47.393363, 8.524795], [47.351661, 8.524872], [47.36598, 8.540178], [47.375419, 8.513134], [47.409853, 8.537826], [47.373933, 8.53151], [47.382846, 8.5316], [47.374016, 8.546382], [47.407488, 8.562064], [47.373871, 8.544658], [47.390253, 8.491485], [47.388048, 8.519813], [47.357325, 8.570049], [47.409252, 8.543365], [47.377362, 8.548253], [47.405963, 8.558852], [47.37581, 8.484221], [47.375257, 8.517911], [47.370464, 8.532075], [47.368274, 8.534413], [47.368765, 8.50119], [47.386175, 8.535324], [47.409432, 8.54048], [47.378804, 8.54239], [47.370161, 8.548805], [47.371433, 8.524719], [47.376804, 8.535091], [47.398864, 8.542275], [47.373182, 8.529111], [47.373288, 8.533099], [47.37959, 8.524965], [47.338025, 8.52474], [47.366922, 8.523317], [47.391031, 8.521171], [47.379995, 8.521013], [47.366612, 8.535147], [47.380133, 8.540735], [47.403427, 8.570842], [47.375304, 8.485456], [47.374823, 8.525834], [47.413754, 8.520043], [47.373174, 8.503926], [47.355434, 8.603763], [47.372384, 8.53455], [47.330269, 8.516287], [47.37818, 8.527545], [47.397037, 8.503992], [47.365107, 8.553307], [47.410571, 8.538039], [47.412288, 8.51523], [47.368052, 8.53981], [47.356694, 8.523413], [47.365667, 8.5465], [47.415508, 8.546622], [47.340184, 8.519981], [47.357944, 8.520473], [47.397136, 8.530979], [47.409834, 8.51787], [47.398628, 8.53301], [47.373617, 8.536377], [47.334776, 8.533487], [47.393337, 8.527497], [47.385279, 8.494367], [47.378174, 8.526247], [47.375634, 8.553103], [47.353268, 8.561862], [47.37445, 8.54614], [47.378138, 8.493285], [47.379196, 8.538054], [47.377715, 8.51183], [47.421727, 8.550012], [47.378849, 8.530962], [47.401784, 8.517866], [47.412441, 8.517114], [47.399434, 8.517182], [47.409708, 8.54458], [47.392483, 8.515902], [47.376182, 8.536191], [47.411996, 8.56102], [47.36329, 8.575458], [47.39569, 8.516444], [47.362428, 8.551291], [47.367707, 8.539181], [47.37607, 8.488305], [47.383139, 8.529169], [47.368163, 8.545122], [47.385906, 8.498578], [47.37602, 8.541842], [47.405312, 8.547126], [47.397849, 8.535525], [47.394126, 8.488939], [47.374889, 8.516858], [47.389612, 8.512268], [47.33125, 8.513435], [47.374048, 8.475156], [47.340983, 8.526852], [47.432598, 8.527743], [47.37518, 8.518453], [47.356539, 8.523608], [47.393535, 8.483655], [47.369573, 8.543483], [47.393434, 8.500622], [47.39792, 8.501904], [47.403452, 8.488129], [47.367506, 8.535761], [47.370572, 8.512957], [47.377537, 8.492174], [47.379875, 8.558145], [47.374064, 8.486293], [47.377207, 8.540013], [47.402929, 8.57576], [47.422586, 8.550507], [47.373271, 8.533019], [47.367397, 8.544351], [47.419502, 8.506522], [47.382639, 8.529702], [47.380982, 8.518491], [47.370188, 8.539444], [47.374397, 8.542325], [47.384979, 8.495738], [47.370251, 8.54882], [47.393726, 8.512854], [47.406773, 8.532595], [47.356572, 8.551315], [47.368172, 8.496147], [47.410402, 8.548159], [47.397854, 8.533975], [47.395142, 8.525931], [47.41411, 8.548899], [47.400026, 8.545824], [47.357621, 8.557267], [47.383131, 8.531964], [47.372509, 8.517405], [47.362723, 8.53549], [47.40676, 8.541485], [47.374451, 8.546047], [47.36795, 8.541119], [47.371501, 8.547879], [47.383334, 8.539861], [47.368167, 8.523885], [47.360832, 8.561041], [47.363993, 8.547591], [47.402171, 8.499418], [47.391185, 8.539189], [47.402955, 8.498268], [47.403472, 8.487917], [47.365346, 8.538761], [47.373968, 8.542978], [47.372374, 8.532776], [47.428226, 8.48985], [47.39317, 8.524222], [47.404929, 8.486966], [47.369494, 8.526282], [47.355386, 8.55677], [47.358839, 8.582564], [47.382127, 8.528725], [47.377477, 8.543806], [47.386144, 8.528131], [47.389012, 8.484454], [47.384385, 8.531526], [47.360588, 8.597574], [47.366037, 8.51983], [47.372829, 8.520709], [47.364061, 8.556396], [47.36522, 8.492474], [47.358252, 8.508658], [47.351901, 8.504877], [47.401224, 8.543821], [47.394759, 8.523605], [47.368769, 8.52489], [47.372953, 8.546585], [47.34801, 8.534248], [47.41717, 8.512585], [47.36261, 8.535064], [47.393004, 8.534246], [47.389701, 8.486918], [47.387277, 8.499214], [47.400963, 8.518074], [47.372882, 8.519836], [47.366607, 8.541409], [47.380985, 8.538197], [47.40309, 8.547159], [47.369548, 8.538557], [47.373181, 8.528224], [47.353702, 8.556947], [47.406211, 8.53306], [47.417239, 8.553682], [47.377666, 8.543757], [47.36453, 8.497054], [47.387935, 8.499042], [47.397527, 8.588032], [47.362346, 8.526824], [47.366204, 8.530729], [47.379748, 8.529126], [47.381623, 8.520159], [47.360932, 8.571978], [47.413919, 8.551042], [47.374523, 8.546075], [47.374385, 8.521747], [47.398861, 8.506201], [47.408399, 8.546938], [47.377353, 8.498434], [47.362876, 8.533653], [47.37198, 8.53633], [47.372339, 8.538297], [47.362159, 8.547513], [47.379576, 8.516767], [47.381925, 8.536693], [47.386257, 8.548412], [47.378006, 8.512551], [47.364965, 8.534279], [47.389682, 8.511541], [47.38814, 8.49143], [47.370178, 8.53759], [47.388102, 8.519854], [47.391705, 8.518377], [47.419809, 8.500459], [47.364604, 8.595358], [47.370182, 8.52958], [47.360202, 8.535743], [47.386529, 8.539729], [47.361591, 8.535401], [47.370331, 8.548888], [47.374214, 8.544519], [47.35664, 8.523385], [47.34405, 8.530699], [47.370516, 8.516107], [47.360596, 8.524512], [47.36798, 8.540828], [47.390768, 8.508874], [47.383886, 8.542376], [47.364371, 8.552272], [47.36468, 8.547181], [47.361616, 8.526028], [47.403837, 8.570281], [47.357702, 8.588391], [47.363826, 8.562097], [47.357392, 8.521865], [47.403173, 8.497968], [47.382011, 8.516167], [47.363344, 8.533597], [47.390909, 8.521712], [47.385126, 8.508059], [47.431376, 8.543784], [47.425259, 8.543737], [47.339277, 8.529358], [47.367672, 8.539088], [47.367009, 8.541656], [47.339805, 8.530546], [47.37803, 8.528178], [47.386344, 8.518308], [47.396254, 8.51472], [47.385993, 8.529824], [47.357479, 8.572726], [47.41739, 8.512059], [47.380617, 8.537156], [47.383723, 8.540611], [47.405177, 8.487342], [47.37302, 8.532908], [47.419728, 8.50442], [47.369081, 8.541341], [47.368446, 8.54665], [47.392359, 8.503077], [47.357903, 8.520115], [47.398115, 8.585951], [47.380636, 8.512153], [47.371169, 8.514545], [47.421009, 8.501993], [47.365254, 8.509235], [47.398564, 8.591472], [47.403663, 8.534266], [47.370408, 8.528565], [47.373006, 8.546653], [47.393419, 8.50033], [47.377441, 8.499628], [47.37669, 8.501123], [47.365753, 8.565594], [47.355398, 8.534837], [47.354022, 8.553605], [47.420533, 8.502965], [47.399786, 8.542785], [47.335754, 8.529974], [47.396336, 8.513649], [47.368936, 8.529104], [47.379925, 8.545538], [47.379884, 8.524309], [47.370732, 8.565024], [47.383865, 8.492617], [47.329934, 8.514652], [47.399538, 8.495166], [47.364259, 8.546153], [47.371463, 8.515742], [47.409092, 8.573785], [47.411874, 8.528671], [47.391426, 8.492051], [47.360423, 8.526653], [47.418515, 8.508172], [47.416462, 8.511272], [47.386195, 8.504305], [47.376861, 8.543329], [47.397109, 8.492296], [47.375841, 8.540885], [47.393347, 8.527457], [47.351228, 8.559727], [47.409485, 8.544337], [47.422668, 8.551357], [47.360711, 8.585226], [47.376459, 8.52694], [47.370253, 8.489951], [47.326405, 8.515957], [47.348365, 8.562817], [47.387491, 8.48653], [47.404714, 8.549472], [47.378647, 8.541804], [47.426301, 8.505572], [47.35613, 8.556111], [47.374886, 8.544758], [47.35439, 8.523498], [47.420743, 8.502585], [47.372549, 8.547385], [47.387642, 8.486838], [47.368834, 8.539866], [47.362489, 8.51057], [47.34482, 8.519585], [47.392448, 8.492456], [47.403077, 8.575339], [47.383272, 8.539833], [47.374789, 8.536056], [47.403489, 8.48601], [47.387231, 8.486512], [47.381038, 8.537271], [47.382709, 8.493151], [47.378583, 8.541021], [47.43078, 8.54022], [47.367284, 8.544892], [47.374403, 8.541663], [47.376934, 8.541292], [47.374978, 8.551077], [47.359783, 8.534397], [47.381534, 8.571635], [47.36753, 8.523713], [47.359279, 8.569918], [47.390705, 8.50882], [47.411206, 8.544108], [47.373816, 8.533441], [47.403676, 8.571179], [47.38619, 8.49612], [47.383075, 8.574992], [47.383896, 8.577539], [47.374555, 8.538952], [47.329383, 8.516824], [47.372245, 8.535964], [47.360164, 8.568653], [47.370953, 8.524153], [47.41964, 8.548219], [47.403091, 8.589357], [47.402351, 8.499316], [47.384483, 8.542971], [47.369513, 8.526176], [47.428327, 8.489666], [47.361344, 8.550845], [47.362499, 8.53448], [47.409133, 8.545443], [47.373772, 8.524674], [47.370325, 8.524948], [47.426589, 8.54676], [47.367364, 8.494025], [47.370822, 8.548302], [47.428572, 8.54256], [47.354973, 8.554829], [47.383229, 8.506034], [47.378026, 8.516166], [47.401169, 8.501677], [47.368724, 8.51243], [47.373742, 8.538339], [47.397568, 8.532922], [47.392163, 8.495086], [47.374813, 8.551431], [47.385101, 8.530918], [47.361944, 8.548342], [47.385068, 8.48492], [47.388417, 8.536032], [47.36719, 8.535926], [47.387133, 8.524364], [47.377371, 8.496528], [47.372154, 8.56316], [47.396274, 8.527981], [47.370571, 8.526516], [47.412583, 8.523133], [47.378189, 8.522725], [47.37741, 8.500064], [47.362856, 8.512722], [47.397026, 8.530288], [47.367651, 8.495104], [47.375616, 8.544601], [47.373479, 8.534745], [47.410479, 8.532538], [47.35254, 8.525089], [47.366157, 8.540499], [47.386446, 8.493688], [47.38649, 8.493729], [47.376861, 8.54329], [47.378392, 8.519299], [47.367025, 8.522882], [47.378858, 8.542338], [47.37867, 8.527105], [47.386967, 8.489791], [47.363737, 8.526283], [47.37806, 8.510565], [47.367924, 8.494765], [47.3616, 8.549474], [47.386941, 8.528545], [47.380492, 8.54265], [47.367495, 8.519727], [47.383124, 8.530719], [47.361417, 8.548914], [47.409503, 8.542522], [47.35076, 8.534529], [47.386843, 8.490623], [47.392082, 8.517523], [47.409548, 8.537753], [47.407857, 8.583127], [47.373645, 8.546639], [47.369488, 8.525911], [47.420817, 8.502347], [47.36366, 8.533418], [47.389705, 8.511952], [47.378256, 8.541385], [47.389473, 8.511709], [47.373241, 8.519036], [47.381984, 8.51614], [47.353232, 8.527035], [47.427871, 8.511939], [47.390598, 8.467186], [47.356381, 8.522189], [47.359359, 8.596343], [47.388275, 8.526307], [47.375881, 8.510786], [47.404654, 8.554757], [47.398032, 8.532309], [47.408472, 8.578264], [47.373747, 8.535982], [47.367888, 8.564328], [47.425982, 8.493384], [47.406984, 8.541635], [47.38803, 8.519812], [47.383011, 8.57507], [47.375569, 8.496797], [47.391659, 8.513634], [47.398445, 8.494734], [47.357015, 8.52559], [47.382472, 8.528388], [47.420506, 8.548887], [47.360295, 8.591743], [47.414833, 8.546675], [47.387871, 8.519557], [47.362256, 8.532595], [47.368489, 8.562606], [47.374794, 8.549643], [47.368863, 8.502291], [47.369433, 8.537442], [47.369454, 8.541892], [47.336337, 8.530091], [47.374889, 8.518778], [47.394338, 8.48938], [47.396745, 8.532402], [47.378637, 8.499705], [47.344306, 8.535006], [47.372062, 8.521898], [47.405822, 8.590622], [47.378867, 8.526195], [47.370688, 8.564943], [47.385616, 8.508598], [47.373168, 8.531521], [47.375551, 8.544799], [47.368745, 8.540765], [47.396404, 8.540873], [47.392258, 8.533197], [47.375161, 8.515671], [47.36969, 8.525531], [47.366252, 8.540846], [47.361616, 8.506753], [47.409964, 8.535668], [47.398515, 8.494934], [47.366647, 8.494792], [47.370768, 8.526559], [47.365835, 8.556195], [47.400557, 8.548683], [47.374685, 8.537604], [47.393859, 8.504353], [47.384747, 8.531335], [47.383021, 8.545377], [47.363133, 8.560282], [47.366521, 8.540944], [47.403635, 8.485774], [47.398479, 8.500789], [47.381382, 8.540894], [47.385855, 8.517715], [47.358741, 8.516121], [47.367328, 8.545965], [47.377399, 8.510049], [47.342535, 8.531039], [47.391032, 8.536298], [47.425349, 8.543726], [47.364705, 8.548413], [47.389751, 8.485356], [47.369333, 8.526159], [47.392551, 8.502803], [47.364527, 8.530271], [47.388136, 8.520093], [47.382714, 8.529399], [47.353636, 8.601897], [47.353445, 8.602118], [47.382515, 8.483823], [47.362824, 8.508472], [47.399638, 8.468182], [47.378789, 8.523042], [47.343074, 8.535827], [47.361952, 8.548409], [47.382725, 8.48641], [47.378966, 8.542327], [47.417232, 8.544101], [47.370115, 8.548896], [47.392695, 8.475068], [47.378561, 8.523434], [47.386748, 8.486158], [47.381478, 8.503761], [47.380876, 8.543889], [47.376133, 8.488267], [47.365559, 8.554018], [47.39352, 8.532958], [47.370251, 8.557214], [47.37504, 8.539941], [47.336134, 8.541057], [47.38279, 8.548856], [47.377808, 8.529802], [47.36904, 8.540956], [47.399295, 8.54239], [47.380249, 8.541784], [47.377031, 8.540592], [47.393674, 8.490109], [47.37326, 8.51889], [47.393649, 8.505673], [47.404811, 8.576503], [47.413039, 8.55643], [47.413011, 8.556496], [47.35293, 8.510312], [47.368628, 8.524543], [47.368768, 8.528796], [47.384237, 8.538582], [47.378406, 8.523656], [47.37017, 8.548805], [47.391504, 8.519644], [47.420368, 8.503226], [47.367984, 8.540352], [47.396273, 8.514654], [47.360975, 8.531033], [47.408844, 8.55674], [47.389295, 8.479002], [47.401346, 8.545175], [47.371971, 8.493852], [47.377303, 8.541339], [47.394925, 8.48612], [47.392148, 8.495761], [47.388561, 8.483664], [47.388025, 8.485189], [47.406183, 8.537896], [47.372063, 8.547388], [47.391113, 8.478919], [47.372601, 8.547598], [47.35059, 8.576299], [47.366639, 8.547434], [47.385894, 8.54496], [47.38921, 8.541546], [47.365862, 8.533648], [47.429917, 8.53926], [47.387571, 8.529459], [47.377478, 8.543726], [47.364973, 8.502703], [47.362586, 8.561952], [47.392679, 8.539101], [47.405108, 8.572733], [47.388503, 8.491066], [47.342536, 8.530999], [47.377458, 8.510527], [47.370932, 8.548106], [47.355006, 8.556074], [47.405306, 8.486973], [47.393794, 8.501623], [47.392365, 8.539015], [47.366504, 8.541817], [47.416394, 8.546151], [47.366242, 8.537218], [47.374914, 8.5475], [47.392714, 8.532491], [47.378082, 8.52651], [47.364203, 8.531165], [47.373931, 8.538383], [47.38963, 8.492744], [47.421439, 8.549131], [47.374816, 8.517955], [47.373852, 8.538103], [47.365565, 8.546869], [47.364051, 8.526369], [47.36593, 8.51007], [47.381452, 8.534432], [47.376299, 8.554945], [47.389547, 8.513485], [47.363974, 8.551456], [47.407151, 8.586305], [47.41734, 8.523257], [47.372808, 8.525873], [47.369793, 8.53553], [47.374326, 8.525136], [47.388003, 8.519812], [47.409133, 8.545443], [47.369164, 8.53263], [47.393865, 8.506618], [47.420487, 8.50303], [47.337492, 8.519185], [47.404391, 8.556792], [47.378036, 8.543698], [47.370108, 8.51925], [47.399597, 8.542741], [47.379052, 8.554022], [47.359121, 8.592221], [47.36262, 8.562165], [47.385401, 8.522951], [47.32468, 8.516637], [47.345129, 8.53358], [47.408964, 8.539623], [47.401501, 8.543006], [47.39278, 8.502318], [47.376003, 8.543629], [47.371797, 8.536644], [47.402989, 8.503383], [47.375917, 8.538516], [47.408747, 8.54627], [47.383657, 8.506427], [47.369444, 8.533404], [47.369943, 8.556467], [47.399847, 8.544786], [47.409937, 8.545062], [47.396126, 8.520798], [47.365007, 8.538437], [47.399946, 8.544788], [47.404509, 8.569673], [47.415686, 8.570056], [47.369369, 8.533813], [47.398925, 8.541561], [47.367092, 8.544292], [47.361712, 8.574034], [47.384064, 8.532195], [47.32859, 8.51313], [47.372695, 8.53404], [47.374922, 8.544746], [47.392041, 8.500528], [47.393429, 8.473493], [47.429371, 8.487672], [47.394824, 8.486343], [47.373137, 8.547039], [47.415542, 8.529873], [47.352031, 8.519863], [47.375746, 8.516623], [47.408156, 8.52613], [47.388434, 8.517013], [47.420444, 8.547772], [47.369544, 8.541801], [47.388446, 8.520536], [47.385369, 8.538764], [47.359045, 8.549473], [47.398712, 8.532681], [47.39458, 8.487411], [47.374316, 8.524248], [47.371176, 8.535717], [47.408801, 8.544389], [47.398997, 8.533058], [47.378534, 8.541417], [47.392102, 8.523975], [47.394907, 8.486093], [47.370313, 8.548861], [47.411055, 8.545748], [47.394856, 8.525726], [47.371078, 8.518462], [47.413851, 8.547807], [47.332485, 8.517906], [47.37831, 8.541333], [47.385109, 8.550851], [47.354042, 8.558092], [47.364284, 8.546339], [47.384209, 8.51098], [47.383408, 8.499349], [47.430544, 8.549799], [47.377815, 8.507912], [47.358964, 8.534433], [47.362209, 8.504951], [47.359715, 8.594008], [47.378962, 8.559596], [47.367816, 8.506533], [47.415227, 8.553388], [47.369521, 8.526282], [47.369296, 8.528171], [47.356663, 8.551211], [47.33688, 8.53922], [47.371748, 8.521826], [47.405029, 8.577143], [47.386776, 8.502781], [47.39016, 8.510358], [47.408548, 8.565929], [47.359218, 8.547385], [47.372736, 8.511451], [47.382874, 8.499723], [47.365407, 8.545541], [47.372979, 8.546705], [47.392118, 8.545063], [47.404688, 8.554042], [47.376731, 8.524801], [47.365498, 8.521672], [47.366727, 8.561563], [47.375228, 8.515209], [47.375013, 8.545569], [47.360261, 8.52285], [47.389254, 8.546381], [47.393168, 8.531083], [47.413203, 8.545938], [47.378884, 8.542431], [47.359861, 8.549768], [47.382914, 8.548117], [47.375695, 8.524025], [47.364411, 8.546156], [47.385151, 8.508298], [47.362556, 8.534136], [47.367992, 8.551712], [47.390282, 8.525262], [47.383061, 8.530717], [47.392103, 8.535274], [47.362619, 8.558497], [47.430003, 8.537751], [47.357862, 8.572204], [47.356566, 8.532147], [47.369414, 8.539402], [47.374885, 8.501749], [47.365433, 8.545582], [47.398776, 8.494899], [47.369796, 8.533358], [47.409608, 8.549335], [47.386788, 8.519867], [47.377599, 8.538551], [47.376169, 8.553525], [47.377004, 8.544339], [47.395401, 8.526122], [47.37724, 8.48221], [47.377346, 8.526323], [47.383871, 8.529807], [47.34972, 8.532258], [47.393385, 8.483295], [47.383301, 8.506022], [47.360518, 8.528031], [47.376823, 8.535065], [47.376907, 8.541304], [47.372838, 8.536917], [47.377516, 8.548203], [47.369293, 8.525669], [47.360981, 8.565109], [47.394564, 8.514673], [47.398466, 8.537776], [47.375085, 8.54565], [47.396508, 8.5289], [47.35328, 8.512331], [47.380945, 8.492228], [47.369187, 8.527282], [47.373855, 8.530237], [47.365178, 8.518409], [47.365967, 8.531108], [47.363851, 8.566904], [47.396235, 8.514839], [47.39258, 8.533336], [47.37246, 8.550084], [47.371662, 8.547949], [47.367266, 8.523125], [47.427174, 8.554195], [47.396982, 8.486385], [47.340138, 8.530527], [47.397189, 8.531113], [47.39331, 8.524635], [47.398149, 8.465689], [47.383289, 8.488672], [47.400134, 8.489985], [47.369089, 8.56201], [47.396931, 8.513581], [47.34181, 8.525955], [47.36882, 8.518509], [47.382859, 8.543454], [47.37758, 8.511853], [47.376026, 8.515556], [47.394693, 8.490897], [47.404123, 8.56402], [47.377043, 8.533666], [47.394808, 8.524176], [47.381836, 8.536599], [47.378727, 8.522974], [47.374027, 8.513821], [47.408983, 8.539464], [47.374263, 8.540296], [47.363471, 8.534433], [47.40628, 8.558726], [47.392135, 8.499099], [47.378432, 8.510202], [47.366288, 8.519901], [47.387681, 8.488388], [47.422976, 8.494558], [47.383832, 8.531051], [47.373895, 8.513448], [47.378233, 8.499604], [47.405142, 8.480332], [47.372517, 8.517525], [47.391389, 8.478248], [47.376985, 8.539743], [47.369345, 8.525802], [47.374362, 8.521309], [47.364902, 8.547504], [47.365379, 8.567889], [47.362363, 8.504822], [47.3699, 8.510772], [47.372078, 8.510551], [47.357369, 8.521415], [47.379418, 8.55983], [47.367336, 8.523325], [47.422468, 8.540233], [47.403399, 8.550531], [47.420167, 8.50366], [47.390579, 8.539534], [47.387633, 8.518069], [47.395085, 8.522393], [47.389761, 8.511675], [47.367363, 8.541305], [47.396084, 8.545132], [47.367092, 8.523386], [47.420122, 8.509411], [47.335127, 8.51919], [47.419203, 8.546858], [47.377239, 8.528082], [47.417428, 8.511875], [47.4076, 8.486051], [47.371115, 8.520277], [47.405148, 8.557629], [47.392887, 8.525633], [47.368957, 8.502809], [47.396937, 8.512945], [47.368873, 8.552737], [47.389895, 8.475305], [47.427022, 8.54657], [47.414038, 8.548884], [47.376858, 8.541767], [47.3777, 8.543095], [47.38841, 8.520522], [47.371151, 8.516398], [47.372987, 8.514409], [47.369701, 8.516647], [47.368879, 8.539894], [47.375887, 8.553863], [47.377139, 8.529166], [47.368592, 8.528435], [47.33131, 8.514707], [47.37758, 8.53867], [47.414321, 8.518093], [47.392673, 8.51584], [47.362104, 8.547565], [47.374049, 8.541073], [47.37658, 8.538874], [47.386754, 8.531137], [47.385312, 8.539995], [47.365647, 8.532558], [47.412055, 8.546564], [47.340171, 8.519372], [47.387608, 8.529367], [47.390369, 8.479619], [47.376731, 8.524787], [47.378669, 8.510842], [47.374487, 8.539453], [47.359253, 8.581633], [47.394061, 8.525167], [47.392882, 8.514652], [47.374534, 8.580014], [47.35361, 8.554337], [47.407027, 8.547413], [47.378097, 8.557856], [47.367682, 8.520949], [47.372861, 8.47602], [47.419632, 8.555575], [47.363242, 8.5675], [47.378532, 8.502364], [47.381383, 8.503348], [47.324745, 8.518384], [47.396176, 8.544949], [47.362825, 8.567901], [47.358407, 8.556887], [47.394838, 8.525753], [47.380304, 8.519801], [47.410359, 8.524307], [47.396884, 8.530034], [47.375911, 8.537285], [47.378209, 8.530247], [47.371166, 8.538749], [47.362186, 8.526662], [47.369314, 8.528185], [47.386047, 8.482091], [47.394588, 8.521694], [47.364056, 8.550385], [47.388273, 8.516996], [47.42121, 8.537252], [47.386587, 8.520286], [47.378064, 8.526523], [47.377996, 8.526045], [47.408981, 8.571358], [47.387544, 8.496518], [47.390495, 8.522723], [47.376935, 8.541199], [47.392427, 8.492707], [47.380154, 8.528062], [47.39655, 8.504181], [47.414778, 8.481037], [47.397585, 8.586735], [47.386302, 8.497579], [47.374428, 8.539995], [47.378053, 8.51038], [47.367638, 8.541761], [47.378369, 8.528529], [47.365742, 8.550884], [47.411768, 8.513046], [47.410444, 8.569812], [47.399266, 8.53305], [47.378312, 8.496851], [47.373732, 8.476262], [47.349885, 8.576548], [47.391191, 8.489252], [47.358291, 8.553998], [47.383591, 8.574646], [47.363331, 8.548133], [47.403661, 8.571735], [47.369228, 8.527746], [47.386791, 8.523443], [47.427306, 8.552581], [47.375736, 8.584926], [47.407752, 8.47817], [47.383878, 8.542336], [47.405075, 8.560543], [47.371635, 8.522393], [47.353892, 8.561438], [47.368033, 8.538989], [47.395127, 8.493555], [47.364972, 8.55431], [47.353943, 8.578342], [47.374413, 8.49631], [47.367965, 8.540444], [47.408617, 8.550481], [47.420982, 8.502086], [47.374627, 8.541747], [47.410559, 8.572743], [47.391327, 8.538424], [47.37429, 8.522222], [47.381836, 8.533751], [47.353595, 8.576151], [47.368396, 8.524432], [47.399437, 8.548143], [47.407341, 8.58713], [47.369468, 8.555318], [47.383121, 8.486457], [47.422868, 8.499406], [47.374826, 8.518816], [47.388429, 8.520443], [47.37914, 8.53065], [47.351554, 8.525678], [47.363038, 8.518273], [47.406357, 8.5039], [47.361983, 8.533913], [47.37868, 8.523145], [47.366549, 8.540891], [47.390845, 8.5455], [47.374971, 8.536828], [47.368294, 8.551228], [47.390091, 8.491456], [47.362454, 8.504731], [47.354043, 8.526893], [47.422622, 8.510442], [47.363802, 8.535552], [47.424401, 8.543163], [47.37262, 8.534317], [47.393636, 8.491327], [47.367109, 8.539711], [47.372979, 8.546705], [47.360246, 8.504171], [47.414822, 8.519376], [47.398796, 8.506386], [47.371515, 8.515982], [47.371756, 8.54284], [47.370734, 8.516827], [47.367315, 8.541622], [47.413945, 8.540799], [47.383222, 8.529913], [47.368467, 8.54722], [47.368574, 8.524595], [47.370681, 8.532], [47.363992, 8.55143], [47.366406, 8.548263], [47.379838, 8.564739], [47.385222, 8.527715], [47.38618, 8.548039], [47.360225, 8.566019], [47.374455, 8.539956], [47.374922, 8.545699], [47.381388, 8.513466], [47.37396, 8.524863], [47.37477, 8.527621], [47.373266, 8.535469], [47.346995, 8.528404], [47.37387, 8.542883], [47.36056, 8.552881], [47.370805, 8.491564], [47.357461, 8.523151], [47.380004, 8.528681], [47.37909, 8.538807], [47.391187, 8.538898], [47.390897, 8.522069], [47.392412, 8.492442], [47.376674, 8.559958], [47.386433, 8.518495], [47.372732, 8.534875], [47.367498, 8.545095], [47.410593, 8.527187], [47.36909, 8.541368], [47.357181, 8.523211], [47.366666, 8.535174], [47.378341, 8.510293], [47.354273, 8.575861], [47.394973, 8.525689], [47.379129, 8.54229], [47.414589, 8.517277], [47.375886, 8.536092], [47.361111, 8.555368], [47.375541, 8.517414], [47.402159, 8.502611], [47.400093, 8.590564], [47.403452, 8.488103], [47.372978, 8.536443], [47.341692, 8.526032], [47.3932, 8.530647], [47.369239, 8.525628], [47.357317, 8.598986], [47.364528, 8.547165], [47.404257, 8.579724], [47.328076, 8.529539], [47.352852, 8.511012], [47.396316, 8.540646], [47.372858, 8.535725], [47.375183, 8.550339], [47.370143, 8.548804], [47.391016, 8.542709], [47.373761, 8.544841], [47.412693, 8.517119], [47.371361, 8.547506], [47.373122, 8.534499], [47.37393, 8.476253], [47.412991, 8.536062], [47.407529, 8.543833], [47.399673, 8.495142], [47.360273, 8.565703], [47.37434, 8.514953], [47.39672, 8.529288], [47.355259, 8.555007], [47.390192, 8.491259], [47.422613, 8.550521], [47.371185, 8.555513], [47.374811, 8.529012], [47.371541, 8.487726], [47.400698, 8.538564], [47.419862, 8.507404], [47.381469, 8.513495], [47.38837, 8.539118], [47.364057, 8.536193], [47.371352, 8.547426], [47.375064, 8.529865], [47.400807, 8.5385], [47.375155, 8.550524], [47.376428, 8.528237], [47.382808, 8.515535], [47.383076, 8.514785], [47.367411, 8.546655], [47.415958, 8.507419], [47.384835, 8.531548], [47.372989, 8.475811], [47.392873, 8.514652], [47.379448, 8.527544], [47.366934, 8.544765], [47.414278, 8.551102], [47.384333, 8.531273], [47.375662, 8.487635], [47.380088, 8.520697], [47.409928, 8.543167], [47.380923, 8.53809], [47.370088, 8.525208], [47.375936, 8.535617], [47.369922, 8.547502], [47.390257, 8.509579], [47.362735, 8.518995], [47.409367, 8.544534], [47.412798, 8.540338], [47.401694, 8.548243], [47.426711, 8.492299], [47.426841, 8.49189], [47.379352, 8.495282], [47.409466, 8.537897], [47.360138, 8.595777], [47.38696, 8.5284], [47.392264, 8.517236], [47.361162, 8.521677], [47.355622, 8.560296], [47.354356, 8.574777], [47.41424, 8.518092], [47.386194, 8.497564], [47.397534, 8.540287], [47.369338, 8.525603], [47.38286, 8.529164], [47.364834, 8.566646], [47.388767, 8.488688], [47.417185, 8.507019], [47.376596, 8.544701], [47.37028, 8.514315], [47.382639, 8.529689], [47.369616, 8.488747], [47.396827, 8.540829], [47.373133, 8.53148], [47.367099, 8.541684], [47.421149, 8.509246], [47.408511, 8.546556], [47.377247, 8.538716], [47.375196, 8.518705], [47.369359, 8.527219], [47.366425, 8.540624], [47.39358, 8.524614], [47.409548, 8.537753], [47.397431, 8.532191], [47.332096, 8.532439], [47.379188, 8.537908], [47.368069, 8.540883], [47.366435, 8.545219], [47.390054, 8.538927], [47.393976, 8.530385], [47.397482, 8.532457], [47.412721, 8.529457], [47.369829, 8.535504], [47.380894, 8.518251], [47.40156, 8.545339], [47.403384, 8.556784], [47.389709, 8.511502], [47.391486, 8.519644], [47.367021, 8.544145], [47.349521, 8.565065], [47.386951, 8.528386], [47.392479, 8.502775], [47.394916, 8.486093], [47.389918, 8.512248], [47.373699, 8.54476], [47.389064, 8.535198], [47.399425, 8.497641], [47.374776, 8.501839], [47.380036, 8.520484], [47.413829, 8.52455], [47.400828, 8.517144], [47.378478, 8.510097], [47.413267, 8.532582], [47.386121, 8.526793], [47.388466, 8.519424], [47.342491, 8.530906], [47.362269, 8.559337], [47.423634, 8.539727], [47.383272, 8.530298], [47.386209, 8.525047], [47.364742, 8.521697], [47.381288, 8.535634], [47.384417, 8.531911], [47.385019, 8.531022], [47.369108, 8.547949], [47.36823, 8.55124], [47.407718, 8.583561], [47.408186, 8.558753], [47.391061, 8.489647], [47.392165, 8.495801], [47.363333, 8.553561], [47.347424, 8.533376], [47.412104, 8.543305], [47.379083, 8.542369], [47.390729, 8.489614], [47.382443, 8.540929], [47.367036, 8.541669], [47.411115, 8.526178], [47.33509, 8.519295], [47.366504, 8.519919], [47.427204, 8.546336], [47.357564, 8.520796], [47.357515, 8.523125], [47.375024, 8.539769], [47.36583, 8.532231], [47.37733, 8.535619], [47.358162, 8.527017], [47.36456, 8.595211], [47.375155, 8.550537], [47.385236, 8.507875], [47.369437, 8.528479], [47.36794, 8.544071], [47.33262, 8.517882], [47.377016, 8.538393], [47.378581, 8.540253], [47.385069, 8.508468], [47.388632, 8.533295], [47.378381, 8.540461], [47.387661, 8.49954], [47.375346, 8.561426], [47.386898, 8.535008], [47.378265, 8.541332], [47.355211, 8.530848], [47.37058, 8.492553], [47.407489, 8.546151], [47.35135, 8.576725], [47.422018, 8.502902], [47.409568, 8.544193], [47.37655, 8.543866], [47.396777, 8.541345], [47.370783, 8.558947], [47.360248, 8.566483], [47.365184, 8.56484], [47.403128, 8.537488], [47.377053, 8.542062], [47.398666, 8.539476], [47.373884, 8.53662], [47.357881, 8.549912], [47.430915, 8.543947], [47.406549, 8.550385], [47.391379, 8.514714], [47.379467, 8.527439], [47.38578, 8.548402], [47.35784, 8.519174], [47.351202, 8.559647], [47.390886, 8.522215], [47.432448, 8.528456], [47.412393, 8.516517], [47.38775, 8.518098], [47.369408, 8.52583], [47.4004, 8.548136], [47.411611, 8.509611], [47.383447, 8.539374], [47.388514, 8.488815], [47.393627, 8.512918], [47.383295, 8.484103], [47.412227, 8.554876], [47.347921, 8.524558], [47.377309, 8.53873], [47.380342, 8.528145], [47.338297, 8.531164], [47.376047, 8.540969], [47.369735, 8.525492], [47.375887, 8.515964], [47.386705, 8.547639], [47.360288, 8.534262], [47.370919, 8.535407], [47.372007, 8.520123], [47.355058, 8.562786], [47.417898, 8.504873], [47.406899, 8.481002], [47.389218, 8.48459], [47.374386, 8.541596], [47.425935, 8.493609], [47.425935, 8.493596], [47.383045, 8.528598], [47.379959, 8.52876], [47.385163, 8.50798], [47.405261, 8.555247], [47.359646, 8.593675], [47.374041, 8.49764], [47.40514, 8.481471], [47.35969, 8.586567], [47.370399, 8.538045], [47.390777, 8.470276], [47.37689, 8.542191], [47.387293, 8.539771], [47.39721, 8.587336], [47.419669, 8.546987], [47.394511, 8.487132], [47.371692, 8.473071], [47.372452, 8.518715], [47.378965, 8.542433], [47.386118, 8.52131], [47.35478, 8.574614], [47.368539, 8.562064], [47.378984, 8.542367], [47.377293, 8.539551], [47.409594, 8.537675], [47.383632, 8.573243], [47.361811, 8.560228], [47.410365, 8.479613], [47.392877, 8.489802], [47.36897, 8.528442], [47.408283, 8.574629], [47.372074, 8.487472], [47.38168, 8.516849], [47.42856, 8.542891], [47.371003, 8.530245], [47.352812, 8.57624], [47.369306, 8.538472], [47.36941, 8.505347], [47.360064, 8.595921], [47.398524, 8.494921], [47.365116, 8.55328], [47.371065, 8.515033], [47.391885, 8.511585], [47.341406, 8.521024], [47.357727, 8.554635], [47.37361, 8.536204], [47.36051, 8.512582], [47.369858, 8.552201], [47.399831, 8.542759], [47.383748, 8.549273], [47.403964, 8.569237], [47.418029, 8.506241], [47.409596, 8.479174], [47.377716, 8.51175], [47.379882, 8.494379], [47.36799, 8.536936], [47.380024, 8.485695], [47.413873, 8.544521], [47.339911, 8.52986], [47.365622, 8.532372], [47.370382, 8.524605], [47.377178, 8.535523], [47.414293, 8.518238], [47.411398, 8.544669], [47.407382, 8.554496], [47.377975, 8.548146], [47.397401, 8.540086], [47.391389, 8.538478], [47.373915, 8.540978], [47.339815, 8.53048], [47.406919, 8.481758], [47.367889, 8.539992], [47.394907, 8.48608], [47.360938, 8.553802], [47.398684, 8.53941], [47.374457, 8.539757], [47.371747, 8.547527], [47.355982, 8.572191], [47.362273, 8.513584], [47.3977, 8.533177], [47.412931, 8.522398], [47.394856, 8.525753], [47.39476, 8.52542], [47.392796, 8.474858], [47.376319, 8.544497], [47.365923, 8.545142], [47.38121, 8.54383], [47.375517, 8.563297], [47.375506, 8.563482], [47.40891, 8.539582], [47.391662, 8.519105], [47.390791, 8.538982], [47.38691, 8.526995], [47.391372, 8.537471], [47.380869, 8.538075], [47.363336, 8.499771], [47.421035, 8.502113], [47.381174, 8.517144], [47.364677, 8.548452], [47.374255, 8.536429], [47.366014, 8.545091], [47.390241, 8.467802], [47.362446, 8.533393], [47.380276, 8.51992], [47.374558, 8.53866], [47.36402, 8.528725], [47.361493, 8.561479], [47.355996, 8.552296], [47.402822, 8.491151], [47.410353, 8.540155], [47.428339, 8.490329], [47.380109, 8.52038], [47.386915, 8.53416], [47.367887, 8.540204], [47.385989, 8.516817], [47.382001, 8.584478], [47.373092, 8.504057], [47.388352, 8.536256], [47.416776, 8.513279], [47.377149, 8.498152], [47.421888, 8.508161], [47.418261, 8.546627], [47.38615, 8.517973], [47.42308, 8.542075], [47.377093, 8.540699], [47.391625, 8.519157], [47.364182, 8.551302], [47.391467, 8.486595], [47.393727, 8.493196], [47.375614, 8.541052], [47.353377, 8.575471], [47.42377, 8.545244], [47.378775, 8.545409], [47.37772, 8.53809], [47.404171, 8.56373], [47.388847, 8.479868], [47.423866, 8.539838], [47.34974, 8.533913], [47.383876, 8.529251], [47.400555, 8.493106], [47.368185, 8.529618], [47.393718, 8.47228], [47.377227, 8.539815], [47.392055, 8.497985], [47.370692, 8.519368], [47.391354, 8.49201], [47.36596, 8.503941], [47.392895, 8.473854], [47.391363, 8.537404], [47.379014, 8.542977], [47.39073, 8.508065], [47.369527, 8.511201], [47.388582, 8.49124], [47.380308, 8.505803], [47.353799, 8.556181], [47.377229, 8.498299], [47.378928, 8.559383], [47.372797, 8.535552], [47.377845, 8.52971], [47.397235, 8.530968], [47.353026, 8.577317], [47.378996, 8.559742], [47.379014, 8.559809], [47.386223, 8.498346], [47.373858, 8.536554], [47.373145, 8.53683], [47.363508, 8.535228], [47.370188, 8.548792], [47.376175, 8.515003], [47.364817, 8.532872], [47.364638, 8.566457], [47.36248, 8.568212], [47.403769, 8.545729], [47.388613, 8.472896], [47.366315, 8.53804], [47.370595, 8.494791], [47.348972, 8.562406], [47.387247, 8.518962], [47.413318, 8.572113], [47.356493, 8.510172], [47.411037, 8.545787], [47.35823, 8.571405], [47.349885, 8.576548], [47.361223, 8.5503], [47.382765, 8.535452], [47.378883, 8.545384], [47.358002, 8.525836], [47.42627, 8.55468], [47.402048, 8.546077], [47.367872, 8.532299], [47.38654, 8.520444], [47.358328, 8.57146], [47.344039, 8.529905], [47.370541, 8.527746], [47.365818, 8.546728], [47.376278, 8.522196], [47.377716, 8.510784], [47.391782, 8.518776], [47.364936, 8.531683], [47.398067, 8.534376], [47.374487, 8.539493], [47.371234, 8.515301], [47.394738, 8.529645], [47.381369, 8.542178], [47.374955, 8.496135], [47.341514, 8.519147], [47.38933, 8.488076], [47.32976, 8.516938], [47.369022, 8.540956], [47.377614, 8.498466], [47.366824, 8.555315], [47.366565, 8.541977], [47.379049, 8.518372], [47.369089, 8.541487], [47.373885, 8.536567], [47.385518, 8.521033], [47.36807, 8.554799], [47.430472, 8.540452], [47.38078, 8.528432], [47.374015, 8.544581], [47.375445, 8.535156], [47.383402, 8.574708], [47.386266, 8.475804], [47.415867, 8.512453], [47.400328, 8.543458], [47.362765, 8.527283], [47.368332, 8.546317], [47.350017, 8.576856], [47.356001, 8.528151], [47.37017, 8.548792], [47.39157, 8.478093], [47.393314, 8.496102], [47.366609, 8.540217], [47.399947, 8.587156], [47.404965, 8.491842], [47.397579, 8.532631], [47.414318, 8.518424], [47.373928, 8.536754], [47.369357, 8.532184], [47.378634, 8.505849], [47.399376, 8.54793], [47.387882, 8.539319], [47.395552, 8.532099], [47.370316, 8.524948], [47.422445, 8.499464], [47.413254, 8.545356], [47.367689, 8.53922], [47.386768, 8.523018], [47.390441, 8.539796], [47.366978, 8.543919], [47.370039, 8.534264], [47.365267, 8.564617], [47.384756, 8.531348], [47.366883, 8.534119], [47.39651, 8.542001], [47.376477, 8.534555], [47.392565, 8.471463], [47.384341, 8.548385], [47.400217, 8.546556], [47.407388, 8.544453], [47.4089, 8.549056], [47.378543, 8.541444], [47.402333, 8.499315], [47.365621, 8.532452], [47.372398, 8.521561], [47.361786, 8.526164], [47.347114, 8.528155], [47.403327, 8.547734], [47.378184, 8.483248], [47.383371, 8.499375], [47.408319, 8.55062], [47.356339, 8.555864], [47.386946, 8.501936], [47.363598, 8.533311], [47.388588, 8.538884], [47.393776, 8.528645], [47.36804, 8.534514], [47.337106, 8.519124], [47.371852, 8.538499], [47.392839, 8.490026], [47.391595, 8.478319], [47.39236, 8.503064], [47.420478, 8.50307], [47.36277, 8.567953], [47.362816, 8.572469], [47.373271, 8.533019], [47.362243, 8.55931], [47.364425, 8.548513], [47.36844, 8.524486], [47.393385, 8.499111], [47.366629, 8.547553], [47.378682, 8.54199], [47.392396, 8.528087], [47.371334, 8.530464], [47.377467, 8.544838], [47.40071, 8.548673], [47.370804, 8.510194], [47.39164, 8.525277], [47.414134, 8.52172], [47.376474, 8.534873], [47.415383, 8.546527], [47.398387, 8.53947], [47.392071, 8.499217], [47.3835, 8.531865], [47.380531, 8.5128], [47.400193, 8.546291], [47.35818, 8.59543], [47.389698, 8.535688], [47.351661, 8.525812], [47.362556, 8.53411], [47.375323, 8.525222], [47.34228, 8.524761], [47.377486, 8.543806], [47.371981, 8.520056], [47.378267, 8.526911], [47.418912, 8.507067], [47.370802, 8.526798], [47.344984, 8.53363], [47.409703, 8.549828], [47.391366, 8.515125], [47.378785, 8.542495], [47.380321, 8.542712], [47.400461, 8.543686], [47.378654, 8.569045], [47.367338, 8.537333], [47.408047, 8.542346], [47.360423, 8.526679], [47.372191, 8.473504], [47.386235, 8.518451], [47.392468, 8.476336], [47.359249, 8.569229], [47.399132, 8.542466], [47.375936, 8.577396], [47.364358, 8.526256], [47.387142, 8.485424], [47.36605, 8.548838], [47.378054, 8.510287], [47.381298, 8.510644], [47.373426, 8.535684], [47.395813, 8.524382], [47.33896, 8.538111], [47.426867, 8.491931], [47.364338, 8.531155], [47.382735, 8.486278], [47.389915, 8.492088], [47.380343, 8.528066], [47.366305, 8.534319], [47.427582, 8.546396], [47.370106, 8.548883], [47.37893, 8.531017], [47.39553, 8.482873], [47.420702, 8.547155], [47.379445, 8.529809], [47.370718, 8.547016], [47.366707, 8.523219], [47.388001, 8.484937], [47.364869, 8.566713], [47.377707, 8.510797], [47.368148, 8.534476], [47.412719, 8.540137], [47.377628, 8.538366], [47.377017, 8.548616], [47.395201, 8.537709], [47.359597, 8.54918], [47.384855, 8.509205], [47.398178, 8.473519], [47.382901, 8.515232], [47.381182, 8.551378], [47.369491, 8.528466], [47.406961, 8.550592], [47.388893, 8.516042], [47.371533, 8.504356], [47.375176, 8.560377], [47.372987, 8.500837], [47.397399, 8.533674], [47.383327, 8.539676], [47.42534, 8.494657], [47.374853, 8.493512], [47.387326, 8.498712], [47.386259, 8.482519], [47.382193, 8.492491], [47.393654, 8.529146], [47.376059, 8.53595], [47.363503, 8.526318], [47.390305, 8.510308], [47.34531, 8.529613], [47.419004, 8.538492], [47.417163, 8.541038], [47.391529, 8.525606], [47.363355, 8.533359], [47.417056, 8.510277], [47.368708, 8.528556], [47.359353, 8.557661], [47.406186, 8.493178], [47.375967, 8.541841], [47.37959, 8.553292], [47.377386, 8.512393], [47.392692, 8.524331], [47.408737, 8.549251], [47.384975, 8.485289], [47.374984, 8.553262], [47.425989, 8.49357], [47.36424, 8.53486], [47.364808, 8.532859], [47.371951, 8.51652], [47.399408, 8.516095], [47.419513, 8.555784], [47.368963, 8.540478], [47.403191, 8.491092], [47.390172, 8.525512], [47.386181, 8.482292], [47.401926, 8.581701], [47.390585, 8.539799], [47.372346, 8.538495], [47.358201, 8.554036], [47.375887, 8.543587], [47.395741, 8.539667], [47.366834, 8.543082], [47.357454, 8.521893], [47.364013, 8.546386], [47.357272, 8.52316], [47.359675, 8.587176], [47.374742, 8.518205], [47.391282, 8.505771], [47.394907, 8.486119], [47.393621, 8.510627], [47.384004, 8.543252], [47.376563, 8.540556], [47.409886, 8.543816], [47.397491, 8.532457], [47.429962, 8.549574], [47.404302, 8.55577], [47.420414, 8.503174], [47.419988, 8.482796], [47.372052, 8.536371], [47.38681, 8.486238], [47.366682, 8.560688], [47.370676, 8.537269], [47.381694, 8.513486], [47.368706, 8.528728], [47.363605, 8.574551], [47.373041, 8.534484], [47.405863, 8.58111], [47.387954, 8.536447], [47.406698, 8.584837], [47.391828, 8.517651], [47.378549, 8.575187], [47.380988, 8.503208], [47.401653, 8.499951], [47.364559, 8.566243], [47.393313, 8.495175], [47.405015, 8.496229], [47.362278, 8.547303], [47.367637, 8.53432], [47.357312, 8.554746], [47.369858, 8.491864], [47.421005, 8.549387], [47.370939, 8.548291], [47.369782, 8.50983], [47.362805, 8.56806], [47.396979, 8.530499], [47.395174, 8.545299], [47.426533, 8.544108], [47.395188, 8.48484], [47.369332, 8.554507], [47.374921, 8.534457], [47.370161, 8.548805], [47.342745, 8.533571], [47.413624, 8.477304], [47.372454, 8.55452], [47.373859, 8.538328], [47.373894, 8.536568], [47.399379, 8.522043], [47.406585, 8.551313], [47.425294, 8.5523], [47.404659, 8.549537], [47.385608, 8.548517], [47.386356, 8.493633], [47.36861, 8.524635], [47.374523, 8.546075], [47.363002, 8.533603], [47.375722, 8.557859], [47.35529, 8.530096], [47.412859, 8.537662], [47.343837, 8.521709], [47.372254, 8.537792], [47.368516, 8.496921], [47.420114, 8.548454], [47.353341, 8.525039], [47.367764, 8.563226], [47.383553, 8.543349], [47.410166, 8.538018], [47.389723, 8.511913], [47.375283, 8.541853], [47.378572, 8.542133], [47.378582, 8.542067], [47.39335, 8.493109], [47.352532, 8.602548], [47.373438, 8.52002], [47.369377, 8.526266], [47.370332, 8.513548], [47.38342, 8.572841], [47.369426, 8.52677], [47.368979, 8.528416], [47.350199, 8.561095], [47.373885, 8.536567], [47.361748, 8.526362], [47.366765, 8.535203], [47.394715, 8.525472], [47.368732, 8.528808], [47.369421, 8.511928], [47.392232, 8.524547], [47.412206, 8.549588], [47.365119, 8.554922], [47.401188, 8.543834], [47.38532, 8.508513], [47.387492, 8.487457], [47.369445, 8.525751], [47.354839, 8.528352], [47.384065, 8.50123], [47.376064, 8.52774], [47.370307, 8.532574], [47.383247, 8.532933], [47.374209, 8.536508], [47.364501, 8.550898], [47.392407, 8.5028], [47.358382, 8.574188], [47.374438, 8.540856], [47.397204, 8.491742], [47.34942, 8.561595], [47.368867, 8.547732], [47.370994, 8.530245], [47.386941, 8.528558], [47.375409, 8.52476], [47.374112, 8.515293], [47.377256, 8.538716], [47.387679, 8.519858], [47.379143, 8.511196], [47.375522, 8.562728], [47.402341, 8.499448], [47.381668, 8.5153], [47.387308, 8.537294], [47.41185, 8.554736], [47.371063, 8.523917], [47.39489, 8.485987], [47.374509, 8.53907], [47.424861, 8.537406], [47.376293, 8.522541], [47.39212, 8.524015], [47.370215, 8.548819], [47.378341, 8.540884], [47.374214, 8.524564], [47.371792, 8.601539], [47.388936, 8.530586], [47.394132, 8.493218], [47.414148, 8.551484], [47.333451, 8.535709], [47.365101, 8.534255], [47.397172, 8.540518], [47.3864, 8.525753], [47.362457, 8.556693], [47.371178, 8.524078], [47.389723, 8.511913], [47.380244, 8.52037], [47.409512, 8.537766], [47.392266, 8.523726], [47.345031, 8.529647], [47.371279, 8.528715], [47.419696, 8.504962], [47.366619, 8.548559], [47.360741, 8.598385], [47.392395, 8.532975], [47.404965, 8.491842], [47.367181, 8.490487], [47.373063, 8.500335], [47.405636, 8.58129], [47.409521, 8.537766], [47.379295, 8.527541], [47.373314, 8.536979], [47.360925, 8.547646], [47.372346, 8.523281], [47.370161, 8.548818], [47.412389, 8.523659], [47.382298, 8.514319], [47.375698, 8.544563], [47.427593, 8.546118], [47.356577, 8.535787], [47.371095, 8.523362], [47.364137, 8.570696], [47.394306, 8.526841], [47.392061, 8.517748], [47.378912, 8.526196], [47.361539, 8.561374], [47.37326, 8.535111], [47.396935, 8.530366], [47.408382, 8.581071], [47.372088, 8.515331], [47.380414, 8.519552], [47.396813, 8.541372], [47.358456, 8.532106], [47.370555, 8.531957], [47.400872, 8.588143], [47.374629, 8.538701], [47.372001, 8.529365], [47.367577, 8.549929], [47.387684, 8.525103], [47.388749, 8.538966], [47.371906, 8.536527], [47.350808, 8.579678], [47.413973, 8.548181], [47.35349, 8.559351], [47.372812, 8.502237], [47.361194, 8.517362], [47.369564, 8.538769], [47.354421, 8.553322], [47.376026, 8.535592], [47.402736, 8.535201], [47.378113, 8.510686], [47.373487, 8.518643], [47.373885, 8.536528], [47.369823, 8.549301], [47.375824, 8.543546], [47.388436, 8.541556], [47.374151, 8.502409], [47.414494, 8.554764], [47.404243, 8.561877], [47.366634, 8.520504], [47.389775, 8.521808], [47.413822, 8.545209], [47.36114, 8.560823], [47.387669, 8.529514], [47.403327, 8.4861], [47.382569, 8.534296], [47.364905, 8.531193], [47.376025, 8.52431], [47.366727, 8.544827], [47.367957, 8.540338], [47.417144, 8.523027], [47.374859, 8.547592], [47.347394, 8.531866], [47.375544, 8.538058], [47.374573, 8.520864], [47.413308, 8.545358], [47.384111, 8.547069], [47.389205, 8.489027], [47.385302, 8.517241], [47.354589, 8.523423], [47.353716, 8.553691], [47.377369, 8.512366], [47.40529, 8.490802], [47.385365, 8.517268], [47.3895, 8.521326], [47.400034, 8.536484], [47.409015, 8.545507], [47.364661, 8.598656], [47.372098, 8.521912], [47.361684, 8.52648], [47.364338, 8.533061], [47.409243, 8.547088], [47.410724, 8.555865], [47.37513, 8.547452], [47.388748, 8.485813], [47.387515, 8.534385], [47.363515, 8.521155], [47.35588, 8.5257], [47.404186, 8.54913], [47.357537, 8.521683], [47.40002, 8.584336], [47.425913, 8.544082], [47.379815, 8.52775], [47.366055, 8.549249], [47.364713, 8.556913], [47.378368, 8.579792], [47.390677, 8.522515], [47.386071, 8.528209], [47.408118, 8.553703], [47.431393, 8.517193], [47.412543, 8.546309], [47.379256, 8.55992], [47.395054, 8.493673], [47.363211, 8.535262], [47.370152, 8.548804], [47.396221, 8.493948], [47.371514, 8.541855], [47.366866, 8.543493], [47.388405, 8.547648], [47.378131, 8.510633], [47.379863, 8.520719], [47.397703, 8.532912], [47.416686, 8.55322], [47.386198, 8.518557], [47.347384, 8.532845], [47.366753, 8.542114], [47.415296, 8.553681], [47.373019, 8.520647], [47.363789, 8.498443], [47.370197, 8.548819], [47.370331, 8.548888], [47.412847, 8.482682], [47.367632, 8.534797], [47.417976, 8.546289], [47.37937, 8.495323], [47.381969, 8.483455], [47.414261, 8.483518], [47.344406, 8.532917], [47.370306, 8.530734], [47.397169, 8.531298], [47.387238, 8.518949], [47.367197, 8.541765], [47.414203, 8.546715], [47.365215, 8.530762], [47.403106, 8.516939], [47.353915, 8.554436], [47.376834, 8.540482], [47.391506, 8.514611], [47.351001, 8.582873], [47.387948, 8.536195], [47.367905, 8.540191], [47.4051, 8.589109], [47.379768, 8.528981], [47.367833, 8.541143], [47.387886, 8.48663], [47.362976, 8.550416], [47.371254, 8.555805], [47.385627, 8.520929], [47.382376, 8.534663], [47.387601, 8.539512], [47.375722, 8.535414], [47.419572, 8.55613], [47.419572, 8.556196], [47.358407, 8.5569], [47.40542, 8.550878], [47.414763, 8.551179], [47.367951, 8.494739], [47.340839, 8.519187], [47.378416, 8.540554], [47.382292, 8.533099], [47.3975, 8.53247], [47.38902, 8.491487], [47.369111, 8.527704], [47.394973, 8.48673], [47.357792, 8.572044], [47.387868, 8.538882], [47.39073, 8.489455], [47.396786, 8.534734], [47.367355, 8.545926], [47.424828, 8.54838], [47.424742, 8.537603], [47.384277, 8.525829], [47.382679, 8.545384], [47.370304, 8.548887], [47.398024, 8.503336], [47.369163, 8.52793], [47.368863, 8.548155], [47.385918, 8.517743], [47.384199, 8.531178], [47.371428, 8.546103], [47.416017, 8.515596], [47.386372, 8.518256], [47.398103, 8.501603], [47.40435, 8.572134], [47.387294, 8.529254], [47.374824, 8.537116], [47.380613, 8.51941], [47.401347, 8.543188], [47.378256, 8.526143], [47.370167, 8.547282], [47.390603, 8.539786], [47.365185, 8.547126], [47.391864, 8.532037], [47.371881, 8.525907], [47.386725, 8.547415], [47.390007, 8.536317], [47.374173, 8.515572], [47.380322, 8.541653], [47.38082, 8.497113], [47.399237, 8.54745], [47.397052, 8.530328], [47.374718, 8.530281], [47.365529, 8.546908], [47.414222, 8.519006], [47.358156, 8.519948], [47.378432, 8.510189], [47.366748, 8.53315], [47.393696, 8.502548], [47.362619, 8.518873], [47.370147, 8.536106], [47.35343, 8.525094], [47.36734, 8.556862], [47.407221, 8.549696], [47.368039, 8.524094], [47.387624, 8.499619], [47.358552, 8.585192], [47.414452, 8.507839], [47.369689, 8.525571], [47.370152, 8.548778], [47.406638, 8.5672], [47.398424, 8.500933], [47.377616, 8.518661], [47.378498, 8.54143], [47.374482, 8.556827], [47.357351, 8.523334], [47.368918, 8.529103], [47.42588, 8.493714], [47.372766, 8.535048], [47.37811, 8.509984], [47.360472, 8.549808], [47.374378, 8.538643], [47.369662, 8.525636], [47.376677, 8.524786], [47.364638, 8.566444], [47.368887, 8.539973], [47.371896, 8.522411], [47.390918, 8.521672], [47.367093, 8.529053], [47.35761, 8.521658], [47.398129, 8.59088], [47.377702, 8.538076], [47.36748, 8.541308], [47.383943, 8.531702], [47.388708, 8.496157], [47.358279, 8.555295], [47.372219, 8.518671], [47.402651, 8.546011], [47.367997, 8.539902], [47.38264, 8.529676], [47.421878, 8.55028], [47.425934, 8.493622], [47.38095, 8.538011], [47.378344, 8.527283], [47.37436, 8.541424], [47.379713, 8.497104], [47.374091, 8.527183], [47.418731, 8.530282], [47.393331, 8.530027], [47.404158, 8.549235], [47.40513, 8.478583], [47.397986, 8.532467], [47.372978, 8.514436], [47.369633, 8.525834], [47.405216, 8.481049], [47.335163, 8.519164], [47.430851, 8.544105], [47.408535, 8.53173], [47.408217, 8.547173], [47.375078, 8.518742], [47.38709, 8.534667], [47.397535, 8.532564], [47.431264, 8.516541], [47.371618, 8.517493], [47.386243, 8.540517], [47.361431, 8.512177], [47.370511, 8.52327], [47.370226, 8.524893], [47.378581, 8.54212], [47.387716, 8.479568], [47.403772, 8.485605], [47.401541, 8.58788], [47.371006, 8.545989], [47.395054, 8.516074], [47.367726, 8.540042], [47.37325, 8.494632], [47.374228, 8.524088], [47.379218, 8.549801], [47.357954, 8.520447], [47.365766, 8.548395], [47.370052, 8.518561], [47.353313, 8.525144], [47.375768, 8.535269], [47.368429, 8.541817], [47.352495, 8.572765], [47.374553, 8.547598], [47.393387, 8.529829], [47.370146, 8.536265], [47.372855, 8.535116], [47.359069, 8.570218], [47.378949, 8.508742], [47.388588, 8.483691], [47.385307, 8.520539], [47.374448, 8.541664], [47.364316, 8.548604], [47.404376, 8.59487], [47.391081, 8.52255], [47.37642, 8.528171], [47.382129, 8.531321], [47.381709, 8.531007], [47.368228, 8.524111], [47.37141, 8.54613], [47.430065, 8.486506], [47.382802, 8.485842], [47.367905, 8.523972], [47.401376, 8.550489], [47.414035, 8.518843], [47.351995, 8.525634], [47.365208, 8.545603], [47.430846, 8.543654], [47.375845, 8.545176], [47.416641, 8.569003], [47.376385, 8.528117], [47.379621, 8.507114], [47.377557, 8.528724], [47.391032, 8.533477], [47.40513, 8.481617], [47.351571, 8.525797], [47.387401, 8.493455], [47.397949, 8.534414], [47.417003, 8.549304], [47.37935, 8.542692], [47.381388, 8.537371], [47.407759, 8.531065], [47.38143, 8.535809], [47.372769, 8.600991], [47.376146, 8.577096], [47.370512, 8.535571], [47.394119, 8.475798], [47.397934, 8.477634], [47.351395, 8.601068], [47.374157, 8.535434], [47.398995, 8.533256], [47.364541, 8.566243], [47.386613, 8.518446], [47.406534, 8.584118], [47.405635, 8.549968], [47.369079, 8.529279], [47.410367, 8.548119], [47.421332, 8.549977], [47.362668, 8.52703], [47.375589, 8.548335], [47.403255, 8.497876], [47.350976, 8.576307], [47.383463, 8.499178], [47.355269, 8.515071], [47.353865, 8.523858], [47.363749, 8.535419], [47.368833, 8.528638], [47.37493, 8.534457], [47.370197, 8.548805], [47.388803, 8.520821], [47.37392, 8.476279], [47.377496, 8.527597], [47.374967, 8.534431], [47.377472, 8.494331], [47.39194, 8.518249], [47.379011, 8.529058], [47.391104, 8.522988], [47.365, 8.502677], [47.399842, 8.49345], [47.373035, 8.533253], [47.371759, 8.542575], [47.370188, 8.548805], [47.382028, 8.516208], [47.424901, 8.548329], [47.38018, 8.528155], [47.397492, 8.587991], [47.378642, 8.494288], [47.390841, 8.508703], [47.376422, 8.516505], [47.41957, 8.548019], [47.378512, 8.541854], [47.387269, 8.488234], [47.372735, 8.535511], [47.363159, 8.548209], [47.416217, 8.522187], [47.374363, 8.523097], [47.408834, 8.579848], [47.371434, 8.550182], [47.357037, 8.570135], [47.378479, 8.509978], [47.399812, 8.529564], [47.364228, 8.536183], [47.364183, 8.536116], [47.376386, 8.534606], [47.37554, 8.558107], [47.364638, 8.566457], [47.378602, 8.575294], [47.388746, 8.491058], [47.425763, 8.547499], [47.388314, 8.51452], [47.369794, 8.557907], [47.381407, 8.517215], [47.392886, 8.485802], [47.367082, 8.544332], [47.367688, 8.495038], [47.377738, 8.53809], [47.370161, 8.548831], [47.359596, 8.576967], [47.386751, 8.547574], [47.3977, 8.533163], [47.343921, 8.530022], [47.370197, 8.548792], [47.412244, 8.558679], [47.365539, 8.568118], [47.37276, 8.600938], [47.377957, 8.541564], [47.422279, 8.499885], [47.378088, 8.50944], [47.381651, 8.582537], [47.406952, 8.550578], [47.371098, 8.524064], [47.37135, 8.542977], [47.369671, 8.525597], [47.367169, 8.553151], [47.366455, 8.547893], [47.376556, 8.528055], [47.409949, 8.543843], [47.41566, 8.563522], [47.374245, 8.540322], [47.364715, 8.547301], [47.408011, 8.536754], [47.371038, 8.536125], [47.36319, 8.549732], [47.387939, 8.536195], [47.403671, 8.588972], [47.351808, 8.575861], [47.361812, 8.526218], [47.411918, 8.524935], [47.370497, 8.52858], [47.378858, 8.542338], [47.369855, 8.53659], [47.385032, 8.484932], [47.38046, 8.519434], [47.396647, 8.540799], [47.3765, 8.521578], [47.373896, 8.54103], [47.359325, 8.5698], [47.376626, 8.543404], [47.390859, 8.52228], [47.368386, 8.539725], [47.370307, 8.548622], [47.371477, 8.519053], [47.363382, 8.534339], [47.391312, 8.515163], [47.371906, 8.49111], [47.400591, 8.544179], [47.370761, 8.53118], [47.425084, 8.537636], [47.378479, 8.509978], [47.39392, 8.534384], [47.425037, 8.548199], [47.390986, 8.522084], [47.365142, 8.532747], [47.377004, 8.584013], [47.351944, 8.505117], [47.411341, 8.544098], [47.397336, 8.541197], [47.376491, 8.525418], [47.428336, 8.48968], [47.378733, 8.542216], [47.382201, 8.534222], [47.362261, 8.559311], [47.35505, 8.557041], [47.372964, 8.547301], [47.405849, 8.590636], [47.386914, 8.547458], [47.379286, 8.495652], [47.368904, 8.540119], [47.330896, 8.536635], [47.375722, 8.496813], [47.36029, 8.567715], [47.403673, 8.571457], [47.391419, 8.513324], [47.404427, 8.556806], [47.406605, 8.584266], [47.366248, 8.548763], [47.402453, 8.535633], [47.366345, 8.522497], [47.39509, 8.53621], [47.354728, 8.526748], [47.382396, 8.537352], [47.369398, 8.525896], [47.406623, 8.58783], [47.344202, 8.532674], [47.386842, 8.535179], [47.3774, 8.509956], [47.411197, 8.54595], [47.373452, 8.529104], [47.360838, 8.505361], [47.387579, 8.515167], [47.394847, 8.52574], [47.366764, 8.541849], [47.37552, 8.548122], [47.377294, 8.541312], [47.422332, 8.550674], [47.376629, 8.52795], [47.382848, 8.532355], [47.367288, 8.519802], [47.386525, 8.498762], [47.356542, 8.523238], [47.416856, 8.535412], [47.377446, 8.509864], [47.378427, 8.540382], [47.365868, 8.509936], [47.403759, 8.493925], [47.370188, 8.548792], [47.345157, 8.533448], [47.40816, 8.546536], [47.348149, 8.52807], [47.386734, 8.547402], [47.374581, 8.5456], [47.374328, 8.542919], [47.37004, 8.564082], [47.399755, 8.492084], [47.373545, 8.534521], [47.386338, 8.52093], [47.37693, 8.537014], [47.338426, 8.531828], [47.399385, 8.547943], [47.413909, 8.518814], [47.376304, 8.563777], [47.408806, 8.550445], [47.373186, 8.475894], [47.376043, 8.535738], [47.418052, 8.515373], [47.419185, 8.546831], [47.366847, 8.534132], [47.378464, 8.54029], [47.408084, 8.577513], [47.370998, 8.518341], [47.363159, 8.557595], [47.402882, 8.498359], [47.374025, 8.543602], [47.41999, 8.554813], [47.383986, 8.543225], [47.378293, 8.560879], [47.379916, 8.506325], [47.364427, 8.534148], [47.388, 8.490964], [47.37397, 8.544647], [47.420515, 8.502925], [47.380418, 8.542847], [47.37302, 8.532908], [47.407964, 8.583248], [47.368735, 8.524744], [47.402142, 8.584382], [47.362089, 8.5491], [47.364854, 8.532701], [47.393821, 8.506471], [47.366215, 8.537204], [47.369203, 8.527507], [47.377651, 8.498347], [47.378783, 8.564068], [47.389583, 8.472041], [47.363387, 8.557256]]],\n", + " {heatmapOptions: {\n", + " radius: 15,\n", + " blur: 0.8,\n", + " minOpacity: 0,\n", + " maxOpacity: 0.8,\n", + " scaleRadius: false,\n", + " useLocalExtrema: false,\n", + " defaultWeight: 1,\n", + " \n", + " }\n", + " });\n", + "\n", + " \n", + " \n", + " heat_map_9f26dae603b077b11216d5a0957079cb.addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", + " \n", + " \n", + "\n", + " function geo_json_d3b5e793a24586dd4abb3bd4b047998c_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_99f5f7ef3a3f4481a0187939f00f241a = L.geoJson(null, {\n", - " onEachFeature: geo_json_99f5f7ef3a3f4481a0187939f00f241a_onEachFeature,\n", + " var geo_json_d3b5e793a24586dd4abb3bd4b047998c = L.geoJson(null, {\n", + " onEachFeature: geo_json_d3b5e793a24586dd4abb3bd4b047998c_onEachFeature,\n", " \n", " color: "red",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_99f5f7ef3a3f4481a0187939f00f241a_add (data) {\n", - " geo_json_99f5f7ef3a3f4481a0187939f00f241a\n", + " function geo_json_d3b5e793a24586dd4abb3bd4b047998c_add (data) {\n", + " geo_json_d3b5e793a24586dd4abb3bd4b047998c\n", " .addData(data);\n", " }\n", - " geo_json_99f5f7ef3a3f4481a0187939f00f241a_add({"bbox": [8.448293, 47.321997, 8.624578, 47.434636], "features": [{"bbox": [8.532577, 47.412827, 8.533152, 47.412876], "geometry": {"coordinates": [[[8.532577, 47.412829], [8.533142, 47.412876], [8.533152, 47.412827]]], "type": "MultiLineString"}, "id": "1", "properties": {}, "type": "Feature"}, {"bbox": [8.543837, 47.374485, 8.544665, 47.374604], "geometry": {"coordinates": [[[8.543837, 47.374485], [8.544665, 47.374604]]], "type": "MultiLineString"}, "id": "5", "properties": {}, "type": "Feature"}, {"bbox": [8.541209, 47.370563, 8.541881, 47.370639], "geometry": {"coordinates": [[[8.541881, 47.370639], [8.541296, 47.370568], [8.541209, 47.370563]]], "type": "MultiLineString"}, "id": "9", "properties": {}, "type": "Feature"}, {"bbox": [8.501706, 47.397164, 8.501995, 47.39748], "geometry": {"coordinates": [[[8.501706, 47.397164], [8.501995, 47.39748]]], "type": "MultiLineString"}, "id": "16", "properties": {}, "type": "Feature"}, {"bbox": [8.527873, 47.393296, 8.528327, 47.39385], "geometry": {"coordinates": [[[8.527873, 47.393296], [8.527925, 47.39336], [8.528327, 47.39385]]], "type": "MultiLineString"}, "id": "19", "properties": {}, "type": "Feature"}, {"bbox": [8.511984, 47.378623, 8.513415, 47.379239], "geometry": {"coordinates": [[[8.513415, 47.378623], [8.511984, 47.379239]]], "type": "MultiLineString"}, "id": "21", "properties": {}, "type": "Feature"}, {"bbox": [8.536573, 47.394811, 8.537319, 47.395433], "geometry": {"coordinates": [[[8.536573, 47.394811], [8.537319, 47.395433]]], "type": "MultiLineString"}, "id": "24", "properties": {}, "type": "Feature"}, {"bbox": [8.542352, 47.389479, 8.543263, 47.390012], "geometry": {"coordinates": [[[8.543263, 47.389479], [8.542352, 47.390012]]], "type": "MultiLineString"}, "id": "25", "properties": {}, "type": "Feature"}, {"bbox": [8.482142, 47.381751, 8.483071, 47.382723], "geometry": {"coordinates": [[[8.483071, 47.381751], [8.482219, 47.382656], [8.482142, 47.382723]]], "type": "MultiLineString"}, "id": "26", "properties": {}, "type": "Feature"}, {"bbox": [8.550837, 47.420621, 8.550895, 47.420814], "geometry": {"coordinates": [[[8.550837, 47.420621], [8.550888, 47.42075], [8.550895, 47.420814]]], "type": "MultiLineString"}, "id": "27", "properties": {}, "type": "Feature"}, {"bbox": [8.533441, 47.41146, 8.533492, 47.411726], "geometry": {"coordinates": [[[8.533492, 47.41146], [8.533441, 47.411726]]], "type": "MultiLineString"}, "id": "28", "properties": {}, "type": "Feature"}, {"bbox": [8.522748, 47.39664, 8.522895, 47.396988], "geometry": {"coordinates": [[[8.522895, 47.39664], [8.522808, 47.396832], [8.522748, 47.396988]]], "type": "MultiLineString"}, "id": "30", "properties": {}, "type": "Feature"}, {"bbox": [8.537918, 47.374671, 8.538566, 47.375913], "geometry": {"coordinates": [[[8.537918, 47.374671], [8.538296, 47.375415], [8.538522, 47.375829], [8.538566, 47.375913]]], "type": "MultiLineString"}, "id": "31", "properties": {}, "type": "Feature"}, {"bbox": [8.59043, 47.400018, 8.591483, 47.401341], "geometry": {"coordinates": [[[8.590931, 47.400018], [8.591065, 47.400282], [8.591367, 47.400796], [8.591483, 47.400991], [8.59043, 47.401341]]], "type": "MultiLineString"}, "id": "34", "properties": {}, "type": "Feature"}, {"bbox": [8.517249, 47.357448, 8.517781, 47.357527], "geometry": {"coordinates": [[[8.517781, 47.357527], [8.517697, 47.357509], [8.517249, 47.357448]]], "type": "MultiLineString"}, "id": "35", "properties": {}, "type": "Feature"}, {"bbox": [8.540659, 47.414308, 8.540744, 47.414948], "geometry": {"coordinates": [[[8.540659, 47.414308], [8.540744, 47.414948]]], "type": "MultiLineString"}, "id": "36", "properties": {}, "type": "Feature"}, {"bbox": [8.54312, 47.374727, 8.543836, 47.374743], "geometry": {"coordinates": [[[8.54312, 47.374743], [8.543836, 47.374727]]], "type": "MultiLineString"}, "id": "39", "properties": {}, "type": "Feature"}, {"bbox": [8.552453, 47.390338, 8.557834, 47.39182], "geometry": {"coordinates": [[[8.552453, 47.390344], [8.552491, 47.390338], [8.552515, 47.390354], [8.55256, 47.390403], [8.552599, 47.390455], [8.55263, 47.390509], [8.55263, 47.390509], [8.55263, 47.390509], [8.55264, 47.390537], [8.552646, 47.390565], [8.552649, 47.390593], [8.552649, 47.390594], [8.552657, 47.390883], [8.552657, 47.390883], [8.552655, 47.390919], [8.552648, 47.390954], [8.552638, 47.390989], [8.552623, 47.391023], [8.552604, 47.391056], [8.552558, 47.391128], [8.552534, 47.391172], [8.552515, 47.391216], [8.552502, 47.391262], [8.552495, 47.391308], [8.552485, 47.391397], [8.552485, 47.391409], [8.552486, 47.39142], [8.552488, 47.391431], [8.552492, 47.391442], [8.552497, 47.391452], [8.552504, 47.391463], [8.552513, 47.391475], [8.552524, 47.391486], [8.552537, 47.391497], [8.552548, 47.391505], [8.55256, 47.391512], [8.552573, 47.391518], [8.552587, 47.391524], [8.552627, 47.39154], [8.552669, 47.391554], [8.552713, 47.391565], [8.552758, 47.391573], [8.553774, 47.391727], [8.553871, 47.391738], [8.553968, 47.391745], [8.554066, 47.391746], [8.554164, 47.391741], [8.554261, 47.391731], [8.554553, 47.391692], [8.554591, 47.391688], [8.554629, 47.391684], [8.554667, 47.391682], [8.554709, 47.391679], [8.55475, 47.391673], [8.554791, 47.391666], [8.554842, 47.391656], [8.554894, 47.391649], [8.554947, 47.391646], [8.555, 47.391645], [8.555053, 47.391648], [8.555337, 47.39167], [8.555368, 47.391674], [8.555399, 47.391679], [8.555429, 47.391686], [8.555457, 47.391696], [8.555485, 47.391706], [8.55551, 47.391719], [8.555519, 47.391724], [8.555527, 47.391729], [8.555534, 47.391735], [8.55554, 47.391741], [8.555546, 47.391748], [8.55555, 47.391755], [8.555554, 47.391762], [8.555557, 47.391769], [8.555559, 47.391776], [8.55556, 47.391781], [8.555561, 47.391785], [8.555563, 47.391789], [8.555566, 47.391793], [8.555569, 47.391796], [8.555573, 47.3918], [8.555577, 47.391803], [8.555581, 47.391806], [8.555586, 47.391809], [8.555591, 47.391811], [8.555596, 47.391814], [8.555602, 47.391815], [8.555607, 47.391817], [8.555613, 47.391818], [8.555619, 47.391819], [8.555626, 47.39182], [8.555632, 47.39182], [8.555674, 47.391819], [8.555715, 47.391817], [8.555756, 47.391812], [8.555797, 47.391804], [8.55595, 47.391766], [8.556098, 47.391719], [8.556239, 47.391664], [8.556372, 47.3916], [8.556496, 47.391528], [8.556611, 47.39145], [8.556723, 47.391366], [8.556738, 47.391356], [8.556753, 47.391347], [8.55677, 47.391339], [8.556787, 47.391333], [8.556826, 47.39132], [8.556828, 47.391319], [8.55683, 47.391318], [8.556832, 47.391318], [8.556834, 47.391318], [8.556836, 47.391318], [8.556838, 47.391318], [8.556841, 47.391318], [8.556843, 47.391318], [8.556845, 47.391319], [8.556847, 47.391319], [8.556849, 47.39132], [8.556851, 47.39132], [8.556852, 47.391321], [8.556854, 47.391322], [8.556856, 47.391323], [8.556857, 47.391325], [8.556858, 47.391326], [8.556859, 47.391327], [8.55686, 47.391328], [8.556861, 47.39133], [8.556862, 47.391331], [8.556862, 47.391333], [8.556862, 47.391334], [8.556862, 47.391336], [8.556862, 47.391337], [8.556862, 47.391339], [8.556861, 47.39134], [8.55686, 47.391341], [8.556859, 47.391343], [8.556858, 47.391344], [8.556848, 47.391356], [8.55684, 47.391368], [8.556833, 47.391381], [8.556827, 47.391394], [8.556824, 47.391407], [8.556821, 47.391421], [8.556821, 47.391434], [8.556822, 47.391448], [8.556822, 47.391448], [8.556823, 47.391449], [8.556823, 47.39145], [8.556824, 47.391451], [8.556824, 47.391452], [8.556825, 47.391453], [8.556826, 47.391453], [8.556827, 47.391454], [8.556828, 47.391455], [8.556829, 47.391455], [8.55683, 47.391456], [8.556831, 47.391456], [8.556832, 47.391456], [8.556833, 47.391457], [8.556835, 47.391457], [8.556836, 47.391457], [8.556837, 47.391457], [8.556839, 47.391457], [8.55684, 47.391457], [8.556841, 47.391457], [8.556843, 47.391457], [8.556844, 47.391456], [8.556845, 47.391456], [8.556846, 47.391455], [8.556847, 47.391455], [8.556992, 47.391376], [8.556993, 47.391376], [8.556994, 47.391375], [8.556995, 47.391375], [8.556996, 47.391374], [8.556998, 47.391374], [8.556999, 47.391374], [8.557, 47.391374], [8.557002, 47.391374], [8.557003, 47.391374], [8.557004, 47.391374], [8.557006, 47.391374], [8.557007, 47.391375], [8.557008, 47.391375], [8.557009, 47.391375], [8.55701, 47.391376], [8.557011, 47.391376], [8.557012, 47.391377], [8.557013, 47.391378], [8.557014, 47.391378], [8.557015, 47.391379], [8.557015, 47.39138], [8.557016, 47.391381], [8.557016, 47.391382], [8.557017, 47.391382], [8.557017, 47.391383], [8.557017, 47.391384], [8.557017, 47.391385], [8.557017, 47.391386], [8.557002, 47.391445], [8.557, 47.391456], [8.556999, 47.391467], [8.557, 47.391478], [8.557003, 47.391489], [8.557003, 47.391491], [8.557004, 47.391492], [8.557005, 47.391494], [8.557006, 47.391495], [8.557007, 47.391496], [8.557009, 47.391497], [8.55701, 47.391498], [8.557012, 47.3915], [8.557014, 47.3915], [8.557016, 47.391501], [8.557018, 47.391502], [8.55702, 47.391503], [8.557022, 47.391503], [8.557024, 47.391503], [8.557026, 47.391503], [8.557029, 47.391503], [8.557031, 47.391503], [8.557033, 47.391503], [8.557035, 47.391503], [8.557038, 47.391502], [8.55704, 47.391502], [8.557042, 47.391501], [8.557044, 47.3915], [8.557045, 47.391499], [8.55721, 47.391402], [8.557212, 47.391401], [8.557214, 47.3914], [8.557216, 47.3914], [8.557219, 47.391399], [8.557221, 47.391398], [8.557224, 47.391398], [8.557226, 47.391398], [8.557229, 47.391398], [8.557231, 47.391398], [8.557234, 47.391398], [8.557236, 47.391398], [8.557239, 47.391399], [8.557241, 47.391399], [8.557244, 47.3914], [8.557246, 47.391401], [8.557248, 47.391402], [8.55725, 47.391403], [8.557251, 47.391404], [8.557253, 47.391406], [8.557254, 47.391407], [8.557256, 47.391409], [8.557257, 47.39141], [8.557257, 47.391412], [8.557258, 47.391414], [8.557258, 47.391416], [8.557258, 47.391417], [8.557258, 47.391419], [8.557248, 47.39151], [8.557247, 47.391514], [8.557248, 47.391518], [8.557248, 47.391522], [8.55725, 47.391526], [8.557252, 47.39153], [8.557254, 47.391533], [8.557257, 47.391537], [8.55726, 47.39154], [8.557264, 47.391543], [8.557268, 47.391546], [8.557273, 47.391549], [8.557277, 47.391551], [8.557283, 47.391553], [8.557288, 47.391555], [8.557294, 47.391557], [8.557299, 47.391558], [8.557305, 47.391558], [8.557311, 47.391559], [8.557519, 47.391565], [8.557578, 47.391565], [8.557637, 47.391561], [8.557695, 47.391553], [8.557752, 47.391542], [8.557834, 47.391521]]], "type": "MultiLineString"}, "id": "40", "properties": {}, "type": "Feature"}, {"bbox": [8.586201, 47.40025, 8.587026, 47.401521], "geometry": {"coordinates": [[[8.586201, 47.40025], [8.586309, 47.400395], [8.587026, 47.401521]]], "type": "MultiLineString"}, "id": "43", "properties": {}, "type": "Feature"}, {"bbox": [8.519899, 47.341126, 8.520288, 47.341127], "geometry": {"coordinates": [[[8.519899, 47.341127], [8.520288, 47.341126]]], "type": "MultiLineString"}, "id": "44", "properties": {}, "type": "Feature"}, {"bbox": [8.53412, 47.380155, 8.534219, 47.380278], "geometry": {"coordinates": [[[8.53412, 47.380155], [8.534219, 47.380278]]], "type": "MultiLineString"}, "id": "45", "properties": {}, "type": "Feature"}, {"bbox": [8.545595, 47.378443, 8.546397, 47.378681], "geometry": {"coordinates": [[[8.545595, 47.378443], [8.545774, 47.378448], [8.546054, 47.378536], [8.546039, 47.378568], [8.546397, 47.378681]]], "type": "MultiLineString"}, "id": "46", "properties": {}, "type": "Feature"}, {"bbox": [8.536802, 47.373089, 8.538278, 47.373127], "geometry": {"coordinates": [[[8.538278, 47.373107], [8.537032, 47.373089], [8.536802, 47.373127]]], "type": "MultiLineString"}, "id": "47", "properties": {}, "type": "Feature"}, {"bbox": [8.537235, 47.396944, 8.537829, 47.397405], "geometry": {"coordinates": [[[8.537235, 47.396944], [8.53752, 47.397198], [8.537616, 47.397272], [8.537719, 47.397341], [8.537829, 47.397405]]], "type": "MultiLineString"}, "id": "48", "properties": {}, "type": "Feature"}, {"bbox": [8.534002, 47.373711, 8.534169, 47.373789], "geometry": {"coordinates": [[[8.534169, 47.373711], [8.534002, 47.373789]]], "type": "MultiLineString"}, "id": "50", "properties": {}, "type": "Feature"}, {"bbox": [8.544858, 47.368386, 8.545602, 47.368628], "geometry": {"coordinates": [[[8.544858, 47.368386], [8.545602, 47.368628]]], "type": "MultiLineString"}, "id": "60", "properties": {}, "type": "Feature"}, {"bbox": [8.556317, 47.37307, 8.556924, 47.373591], "geometry": {"coordinates": [[[8.556924, 47.37307], [8.556317, 47.373591]]], "type": "MultiLineString"}, "id": "63", "properties": {}, "type": "Feature"}, {"bbox": [8.544578, 47.410737, 8.544599, 47.41077], "geometry": {"coordinates": [[[8.544599, 47.410737], [8.544578, 47.41077]]], "type": "MultiLineString"}, "id": "71", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.368729, 8.540288, 47.368912], "geometry": {"coordinates": [[[8.540226, 47.368912], [8.540288, 47.368729]]], "type": "MultiLineString"}, "id": "72", "properties": {}, "type": "Feature"}, {"bbox": [8.54542, 47.409288, 8.546368, 47.40946], "geometry": {"coordinates": [[[8.546368, 47.40946], [8.545871, 47.409394], [8.54542, 47.409288]]], "type": "MultiLineString"}, "id": "78", "properties": {}, "type": "Feature"}, {"bbox": [8.514896, 47.374159, 8.51506, 47.374307], "geometry": {"coordinates": [[[8.514951, 47.374307], [8.514896, 47.374271], [8.51506, 47.374162], [8.515054, 47.374159]]], "type": "MultiLineString"}, "id": "84", "properties": {}, "type": "Feature"}, {"bbox": [8.544333, 47.382079, 8.544897, 47.382191], "geometry": {"coordinates": [[[8.544333, 47.382079], [8.544897, 47.382191]]], "type": "MultiLineString"}, "id": "88", "properties": {}, "type": "Feature"}, {"bbox": [8.554275, 47.363348, 8.554721, 47.363352], "geometry": {"coordinates": [[[8.554275, 47.363352], [8.554721, 47.363348]]], "type": "MultiLineString"}, "id": "90", "properties": {}, "type": "Feature"}, {"bbox": [8.488913, 47.397581, 8.489216, 47.398163], "geometry": {"coordinates": [[[8.488913, 47.397581], [8.489216, 47.398163]]], "type": "MultiLineString"}, "id": "92", "properties": {}, "type": "Feature"}, {"bbox": [8.57442, 47.35866, 8.593096, 47.364553], "geometry": {"coordinates": [[[8.574514, 47.35866], [8.574515, 47.358662], [8.574517, 47.358664], [8.574518, 47.358666], [8.574529, 47.358698], [8.574536, 47.358731], [8.57454, 47.358764], [8.574539, 47.358797], [8.574534, 47.35883], [8.574525, 47.358871], [8.574516, 47.358911], [8.574507, 47.358952], [8.574489, 47.359031], [8.574466, 47.359109], [8.57444, 47.359187], [8.57444, 47.359187], [8.57444, 47.359187], [8.574434, 47.359204], [8.574429, 47.359221], [8.574425, 47.359238], [8.574423, 47.359247], [8.574421, 47.359256], [8.57442, 47.359265], [8.57442, 47.359271], [8.57442, 47.359278], [8.574421, 47.359284], [8.574423, 47.35929], [8.574426, 47.359295], [8.57443, 47.359301], [8.574434, 47.359306], [8.574443, 47.359315], [8.574452, 47.359322], [8.574462, 47.359329], [8.574473, 47.359336], [8.574485, 47.359342], [8.574495, 47.359346], [8.574504, 47.359351], [8.574512, 47.359357], [8.57452, 47.359363], [8.574576, 47.35941], [8.574633, 47.359457], [8.57469, 47.359503], [8.57469, 47.359503], [8.57469, 47.359503], [8.574758, 47.359561], [8.574826, 47.359619], [8.574893, 47.359677], [8.574905, 47.359688], [8.574915, 47.359699], [8.574923, 47.35971], [8.574931, 47.359723], [8.574967, 47.359795], [8.575, 47.359868], [8.57503, 47.359942], [8.57504, 47.359976], [8.575046, 47.360011], [8.575048, 47.360046], [8.575046, 47.360082], [8.575037, 47.36015], [8.57503, 47.360219], [8.575023, 47.360287], [8.575019, 47.360342], [8.575017, 47.360396], [8.575016, 47.360451], [8.575017, 47.36048], [8.575021, 47.360508], [8.575027, 47.360537], [8.575027, 47.360537], [8.575027, 47.360537], [8.575033, 47.36056], [8.57504, 47.360582], [8.575047, 47.360604], [8.575055, 47.360627], [8.575064, 47.360651], [8.575071, 47.360675], [8.575076, 47.360687], [8.575083, 47.360698], [8.575091, 47.360709], [8.575101, 47.36072], [8.575112, 47.360729], [8.575124, 47.360738], [8.575138, 47.360747], [8.575138, 47.360747], [8.575402, 47.360896], [8.575413, 47.360901], [8.575424, 47.360906], [8.575435, 47.36091], [8.575447, 47.360913], [8.575469, 47.360916], [8.575491, 47.360918], [8.575514, 47.36092], [8.575533, 47.360921], [8.575552, 47.360924], [8.57557, 47.360928], [8.575588, 47.360933], [8.575605, 47.360939], [8.575621, 47.360947], [8.575635, 47.360957], [8.575649, 47.360967], [8.575661, 47.360978], [8.575672, 47.360989], [8.575681, 47.361001], [8.575689, 47.361014], [8.575695, 47.361027], [8.575699, 47.36104], [8.575717, 47.361089], [8.575731, 47.361139], [8.575741, 47.361189], [8.575748, 47.361268], [8.575744, 47.361347], [8.575729, 47.361426], [8.575713, 47.361488], [8.575695, 47.361551], [8.575678, 47.361613], [8.57563, 47.361765], [8.575573, 47.361915], [8.575506, 47.362063], [8.575496, 47.362084], [8.575486, 47.362105], [8.575475, 47.362125], [8.575443, 47.362196], [8.575409, 47.362267], [8.575375, 47.362338], [8.575346, 47.362405], [8.575322, 47.362474], [8.575306, 47.362543], [8.575285, 47.36265], [8.575282, 47.362661], [8.575278, 47.362671], [8.575272, 47.362681], [8.575266, 47.362691], [8.575258, 47.3627], [8.57525, 47.362709], [8.57523, 47.362726], [8.575211, 47.362743], [8.575193, 47.362761], [8.57511, 47.362864], [8.575096, 47.362881], [8.575085, 47.362899], [8.575075, 47.362918], [8.57506, 47.362942], [8.575056, 47.362946], [8.575051, 47.36295], [8.575046, 47.362955], [8.575041, 47.362958], [8.575034, 47.362962], [8.575028, 47.362965], [8.575028, 47.362965], [8.575013, 47.362972], [8.574886, 47.363032], [8.57482, 47.363063], [8.57482, 47.363063], [8.574817, 47.363064], [8.574813, 47.363066], [8.57481, 47.363068], [8.574808, 47.363071], [8.574805, 47.363073], [8.574803, 47.363076], [8.574802, 47.363078], [8.5748, 47.363081], [8.574799, 47.363084], [8.574799, 47.363087], [8.574798, 47.36309], [8.574798, 47.363092], [8.574799, 47.363095], [8.5748, 47.363098], [8.574835, 47.363202], [8.574835, 47.363202], [8.574857, 47.363271], [8.574877, 47.363341], [8.574894, 47.363411], [8.574894, 47.363412], [8.574894, 47.363412], [8.5749, 47.363436], [8.574904, 47.36346], [8.574908, 47.363485], [8.574907, 47.363499], [8.574905, 47.363514], [8.574901, 47.363529], [8.574896, 47.363543], [8.574888, 47.363557], [8.574886, 47.363561], [8.574883, 47.363565], [8.57488, 47.363569], [8.574877, 47.363573], [8.574874, 47.363577], [8.574872, 47.363582], [8.574871, 47.363586], [8.57487, 47.363591], [8.57487, 47.363595], [8.57487, 47.3636], [8.574872, 47.363605], [8.574873, 47.363609], [8.574875, 47.363613], [8.574878, 47.363618], [8.57489, 47.36363], [8.57508, 47.363884], [8.575105, 47.363928], [8.575112, 47.363955], [8.575123, 47.363981], [8.575136, 47.364007], [8.575153, 47.364032], [8.575173, 47.364055], [8.575184, 47.364072], [8.575198, 47.364088], [8.575214, 47.364104], [8.575231, 47.364118], [8.575251, 47.364131], [8.575271, 47.364143], [8.575294, 47.364154], [8.575317, 47.364164], [8.575411, 47.364203], [8.575509, 47.364238], [8.575611, 47.364268], [8.575621, 47.364271], [8.575632, 47.364273], [8.575644, 47.364275], [8.575655, 47.364276], [8.575667, 47.364277], [8.575678, 47.364277], [8.57569, 47.364276], [8.575701, 47.364274], [8.575712, 47.364272], [8.575723, 47.364269], [8.575943, 47.364206], [8.575972, 47.364232], [8.576004, 47.364258], [8.576038, 47.364281], [8.576056, 47.364295], [8.576073, 47.364309], [8.576088, 47.364324], [8.5761, 47.36434], [8.576111, 47.364357], [8.576136, 47.364396], [8.576167, 47.364435], [8.576201, 47.364471], [8.576215, 47.364482], [8.576231, 47.364492], [8.576249, 47.364501], [8.576267, 47.364509], [8.576286, 47.364516], [8.576306, 47.364521], [8.576327, 47.364526], [8.576349, 47.364529], [8.57637, 47.364531], [8.576421, 47.364539], [8.576472, 47.364545], [8.576523, 47.364548], [8.576612, 47.364548], [8.5767, 47.364545], [8.576788, 47.364539], [8.576929, 47.364529], [8.576953, 47.364527], [8.576977, 47.364527], [8.577002, 47.364527], [8.57703, 47.364529], [8.577058, 47.364532], [8.577086, 47.364537], [8.577184, 47.36455], [8.577189, 47.364551], [8.577194, 47.364552], [8.5772, 47.364553], [8.577205, 47.364553], [8.57721, 47.364553], [8.577216, 47.364552], [8.577221, 47.364552], [8.577226, 47.364551], [8.577231, 47.364549], [8.577236, 47.364548], [8.577241, 47.364546], [8.577245, 47.364543], [8.577249, 47.364541], [8.577252, 47.364538], [8.577256, 47.364535], [8.577267, 47.364526], [8.577279, 47.364518], [8.577293, 47.364511], [8.577309, 47.364503], [8.577325, 47.364496], [8.577343, 47.36449], [8.577404, 47.364484], [8.577464, 47.364479], [8.577525, 47.364475], [8.577547, 47.364476], [8.57757, 47.364476], [8.577592, 47.364475], [8.577614, 47.364473], [8.577636, 47.364469], [8.577657, 47.364464], [8.577677, 47.364458], [8.577697, 47.364451], [8.577763, 47.364428], [8.577828, 47.364403], [8.577891, 47.364376], [8.577929, 47.364358], [8.577969, 47.364342], [8.578011, 47.364329], [8.578055, 47.364318], [8.578099, 47.364311], [8.578145, 47.364305], [8.578191, 47.364303], [8.578222, 47.364301], [8.578252, 47.364296], [8.578281, 47.364291], [8.57831, 47.364283], [8.578447, 47.364249], [8.57847, 47.364242], [8.578492, 47.364234], [8.578513, 47.364225], [8.578532, 47.364216], [8.578551, 47.364207], [8.578569, 47.364198], [8.578583, 47.364191], [8.578598, 47.364185], [8.578613, 47.36418], [8.578628, 47.364176], [8.578644, 47.364172], [8.57866, 47.36417], [8.578677, 47.364168], [8.578694, 47.364167], [8.57871, 47.364167], [8.578727, 47.364169], [8.578743, 47.364171], [8.578769, 47.364175], [8.578794, 47.364181], [8.578818, 47.364187], [8.578833, 47.364191], [8.578849, 47.364194], [8.578864, 47.364196], [8.578871, 47.364196], [8.578878, 47.364196], [8.578885, 47.364196], [8.578892, 47.364196], [8.578899, 47.364194], [8.578906, 47.364193], [8.578912, 47.364191], [8.578919, 47.364189], [8.578925, 47.364186], [8.57893, 47.364183], [8.57898, 47.364155], [8.57901, 47.364138], [8.579016, 47.364134], [8.579022, 47.364129], [8.579027, 47.364124], [8.579031, 47.36412], [8.579033, 47.364116], [8.579036, 47.364112], [8.579045, 47.364093], [8.579047, 47.364088], [8.579048, 47.364083], [8.579049, 47.364078], [8.579049, 47.364073], [8.579049, 47.364068], [8.579048, 47.364063], [8.579046, 47.364057], [8.579043, 47.364052], [8.57904, 47.364047], [8.57903, 47.364031], [8.579023, 47.364014], [8.579017, 47.363996], [8.579014, 47.363979], [8.57901, 47.363959], [8.579006, 47.36394], [8.579, 47.36392], [8.578999, 47.363917], [8.578998, 47.363915], [8.578996, 47.363912], [8.578994, 47.36391], [8.578992, 47.363907], [8.578989, 47.363905], [8.578986, 47.363903], [8.578983, 47.363901], [8.57893, 47.36387], [8.578916, 47.363861], [8.578902, 47.363853], [8.578888, 47.363844], [8.578879, 47.363837], [8.578872, 47.36383], [8.578865, 47.363823], [8.578859, 47.363815], [8.578855, 47.363806], [8.578782, 47.363651], [8.57878, 47.363648], [8.578779, 47.363644], [8.578779, 47.363641], [8.578779, 47.363638], [8.578781, 47.363444], [8.578781, 47.363426], [8.578781, 47.363421], [8.578781, 47.363416], [8.578782, 47.363411], [8.578784, 47.363406], [8.578786, 47.363401], [8.578789, 47.363397], [8.578792, 47.363392], [8.578796, 47.363388], [8.578801, 47.363384], [8.578832, 47.363355], [8.578874, 47.363317], [8.578919, 47.363282], [8.578967, 47.363249], [8.578986, 47.363234], [8.579004, 47.363218], [8.579019, 47.363201], [8.579031, 47.363183], [8.579033, 47.36318], [8.579035, 47.363177], [8.579036, 47.363175], [8.579036, 47.363172], [8.579036, 47.363169], [8.579036, 47.363166], [8.579036, 47.363163], [8.579035, 47.36316], [8.579034, 47.363157], [8.579032, 47.363154], [8.57903, 47.363151], [8.579027, 47.363149], [8.579025, 47.363146], [8.579019, 47.363141], [8.579014, 47.363135], [8.57901, 47.363128], [8.579007, 47.363122], [8.579004, 47.363115], [8.579003, 47.363108], [8.579002, 47.363101], [8.579001, 47.363074], [8.579, 47.363047], [8.578999, 47.36302], [8.578997, 47.36298], [8.579, 47.36294], [8.579007, 47.3629], [8.579016, 47.36287], [8.579028, 47.36284], [8.579044, 47.362812], [8.579063, 47.362784], [8.579093, 47.362746], [8.579125, 47.36271], [8.57916, 47.362675], [8.57918, 47.362657], [8.579202, 47.362641], [8.579226, 47.362626], [8.579252, 47.362612], [8.579279, 47.3626], [8.579308, 47.36259], [8.579335, 47.36258], [8.57936, 47.362568], [8.579383, 47.362555], [8.579404, 47.362541], [8.579557, 47.362436], [8.579591, 47.362418], [8.579617, 47.362405], [8.579664, 47.362377], [8.579679, 47.362369], [8.579694, 47.362362], [8.579711, 47.362356], [8.579728, 47.362351], [8.57974, 47.362348], [8.579752, 47.362344], [8.579764, 47.362339], [8.57993, 47.362262], [8.579942, 47.362257], [8.579955, 47.362253], [8.579968, 47.362249], [8.579981, 47.362247], [8.579995, 47.362245], [8.580008, 47.362244], [8.580022, 47.362244], [8.580096, 47.362246], [8.58017, 47.36225], [8.580244, 47.362256], [8.580362, 47.362268], [8.58038, 47.36227], [8.580397, 47.362271], [8.580415, 47.362272], [8.580501, 47.362274], [8.580587, 47.362275], [8.580673, 47.362276], [8.58088, 47.362276], [8.580901, 47.362276], [8.580922, 47.362274], [8.580943, 47.362271], [8.580963, 47.362267], [8.580982, 47.362261], [8.581001, 47.362254], [8.581034, 47.362242], [8.581067, 47.362229], [8.5811, 47.362217], [8.581107, 47.362215], [8.581115, 47.362213], [8.581124, 47.362211], [8.581132, 47.36221], [8.581141, 47.36221], [8.581149, 47.36221], [8.581158, 47.36221], [8.581166, 47.362211], [8.581174, 47.362213], [8.581182, 47.362214], [8.58119, 47.362217], [8.581198, 47.36222], [8.581205, 47.362223], [8.581211, 47.362227], [8.58123, 47.362239], [8.581247, 47.362252], [8.581262, 47.362266], [8.581276, 47.362281], [8.581287, 47.362297], [8.581309, 47.362332], [8.581317, 47.362342], [8.581326, 47.362351], [8.581336, 47.36236], [8.581348, 47.362368], [8.58136, 47.362375], [8.581375, 47.362383], [8.581391, 47.36239], [8.581408, 47.362396], [8.581425, 47.362401], [8.581444, 47.362404], [8.581462, 47.362407], [8.581481, 47.362408], [8.5815, 47.362408], [8.581519, 47.362407], [8.581526, 47.362407], [8.581533, 47.362407], [8.58154, 47.362408], [8.581546, 47.362409], [8.581553, 47.362411], [8.581559, 47.362412], [8.581566, 47.362415], [8.581572, 47.362417], [8.581577, 47.36242], [8.581607, 47.362436], [8.581621, 47.362444], [8.581637, 47.362451], [8.581653, 47.362456], [8.58167, 47.362461], [8.581688, 47.362465], [8.581706, 47.362468], [8.581737, 47.362471], [8.581768, 47.362473], [8.581799, 47.362472], [8.58183, 47.36247], [8.581839, 47.362469], [8.581848, 47.362469], [8.581857, 47.36247], [8.581867, 47.362471], [8.581875, 47.362472], [8.581884, 47.362474], [8.581893, 47.362476], [8.581901, 47.362479], [8.581932, 47.362492], [8.58194, 47.362495], [8.581947, 47.362497], [8.581956, 47.362499], [8.581964, 47.362501], [8.581973, 47.362502], [8.581991, 47.362503], [8.582009, 47.362505], [8.582027, 47.362508], [8.58206, 47.362512], [8.582093, 47.362515], [8.582127, 47.362516], [8.58216, 47.362514], [8.582194, 47.362511], [8.582226, 47.362506], [8.582258, 47.362498], [8.582289, 47.362489], [8.582318, 47.362478], [8.582346, 47.362465], [8.58235, 47.362463], [8.582354, 47.362461], [8.582358, 47.362458], [8.582362, 47.362455], [8.582366, 47.362453], [8.582371, 47.362451], [8.582375, 47.362449], [8.582381, 47.362447], [8.582386, 47.362446], [8.582391, 47.362445], [8.582397, 47.362444], [8.582402, 47.362444], [8.582411, 47.362443], [8.58242, 47.362442], [8.582428, 47.36244], [8.582437, 47.362437], [8.582445, 47.362435], [8.582452, 47.362431], [8.58246, 47.362428], [8.582467, 47.362424], [8.582474, 47.36242], [8.58248, 47.362416], [8.582489, 47.362412], [8.582498, 47.362408], [8.582507, 47.362405], [8.582517, 47.362402], [8.582527, 47.3624], [8.582537, 47.362398], [8.582547, 47.362397], [8.582554, 47.362397], [8.582561, 47.362397], [8.582568, 47.362398], [8.582575, 47.362399], [8.582582, 47.3624], [8.582588, 47.362402], [8.582594, 47.362404], [8.5826, 47.362407], [8.582606, 47.36241], [8.582611, 47.362413], [8.582718, 47.362483], [8.582721, 47.362485], [8.582723, 47.362486], [8.582726, 47.362487], [8.582729, 47.362488], [8.582732, 47.362489], [8.582735, 47.36249], [8.582738, 47.36249], [8.582741, 47.362491], [8.582745, 47.362491], [8.582824, 47.36249], [8.582899, 47.362487], [8.583375, 47.36247], [8.583501, 47.362456], [8.58355, 47.362479], [8.583588, 47.362504], [8.583614, 47.362521], [8.583642, 47.362537], [8.583672, 47.362551], [8.583683, 47.362555], [8.583694, 47.362558], [8.583706, 47.362561], [8.583718, 47.362563], [8.58373, 47.362564], [8.583743, 47.362565], [8.583755, 47.362565], [8.583767, 47.362564], [8.583779, 47.362562], [8.583791, 47.36256], [8.583803, 47.362556], [8.583814, 47.362553], [8.583878, 47.362528], [8.583899, 47.362521], [8.583921, 47.362515], [8.583944, 47.36251], [8.583966, 47.362506], [8.58399, 47.362504], [8.584013, 47.362503], [8.584037, 47.362504], [8.58406, 47.362506], [8.584083, 47.362509], [8.584106, 47.362513], [8.58422, 47.362539], [8.584278, 47.36255], [8.584336, 47.362557], [8.584396, 47.362561], [8.584455, 47.36256], [8.584515, 47.362556], [8.584531, 47.362554], [8.584548, 47.362553], [8.584564, 47.362552], [8.584581, 47.362553], [8.584597, 47.362555], [8.584614, 47.362557], [8.58463, 47.362561], [8.584645, 47.362565], [8.58466, 47.36257], [8.584674, 47.362576], [8.584687, 47.362583], [8.5847, 47.36259], [8.584708, 47.362597], [8.584716, 47.362604], [8.584723, 47.362611], [8.584728, 47.362619], [8.584733, 47.362627], [8.584737, 47.362635], [8.58474, 47.362644], [8.584742, 47.362652], [8.584742, 47.362661], [8.584742, 47.36267], [8.58474, 47.362678], [8.584984, 47.362663], [8.58515, 47.36265], [8.585201, 47.362645], [8.58525, 47.362636], [8.585299, 47.362624], [8.585337, 47.362612], [8.585364, 47.362599], [8.58541, 47.362582], [8.585458, 47.362567], [8.585506, 47.362554], [8.585512, 47.362552], [8.585517, 47.36255], [8.585522, 47.362548], [8.585558, 47.362537], [8.585594, 47.362528], [8.585631, 47.36252], [8.58566, 47.362515], [8.585689, 47.36251], [8.585718, 47.362507], [8.585744, 47.362505], [8.585771, 47.362502], [8.585797, 47.362499], [8.585834, 47.362494], [8.58587, 47.362488], [8.585907, 47.362481], [8.585937, 47.362476], [8.585967, 47.362474], [8.585998, 47.362473], [8.586028, 47.362473], [8.586059, 47.362476], [8.586089, 47.36248], [8.586099, 47.362482], [8.586109, 47.362484], [8.586119, 47.362485], [8.58613, 47.362485], [8.58614, 47.362485], [8.586151, 47.362484], [8.586161, 47.362482], [8.586299, 47.362451], [8.586324, 47.362445], [8.586351, 47.362442], [8.586377, 47.36244], [8.586404, 47.362439], [8.586455, 47.362442], [8.586507, 47.362444], [8.586558, 47.362447], [8.586589, 47.362449], [8.586619, 47.362451], [8.586649, 47.362452], [8.586666, 47.362453], [8.586683, 47.362452], [8.586699, 47.362451], [8.586715, 47.362448], [8.586731, 47.362445], [8.586746, 47.36244], [8.586754, 47.362437], [8.586762, 47.362436], [8.586771, 47.362434], [8.586779, 47.362433], [8.586788, 47.362433], [8.586797, 47.362433], [8.586805, 47.362433], [8.586814, 47.362434], [8.586822, 47.362436], [8.586831, 47.362438], [8.586864, 47.362447], [8.586898, 47.362456], [8.586931, 47.362466], [8.586966, 47.362476], [8.587, 47.362487], [8.587034, 47.362498], [8.587048, 47.362502], [8.587063, 47.362506], [8.587078, 47.362508], [8.587093, 47.36251], [8.587108, 47.36251], [8.587146, 47.36251], [8.587184, 47.362511], [8.587221, 47.362512], [8.587234, 47.362513], [8.587246, 47.362514], [8.587258, 47.362516], [8.58727, 47.362519], [8.587281, 47.362522], [8.587309, 47.362531], [8.587337, 47.362537], [8.587367, 47.362542], [8.587396, 47.362545], [8.587427, 47.362547], [8.587427, 47.362547], [8.587427, 47.362547], [8.587439, 47.362548], [8.587452, 47.362549], [8.587464, 47.362551], [8.587476, 47.362554], [8.587487, 47.362558], [8.587514, 47.362566], [8.587541, 47.362573], [8.58757, 47.362578], [8.587601, 47.362584], [8.587632, 47.36259], [8.587663, 47.362597], [8.587717, 47.362612], [8.587822, 47.362659], [8.587854, 47.362672], [8.587888, 47.362682], [8.587924, 47.362691], [8.58799, 47.362703], [8.588057, 47.362715], [8.588124, 47.362727], [8.58817, 47.362738], [8.588215, 47.362752], [8.588258, 47.362768], [8.588268, 47.362773], [8.58828, 47.362778], [8.588291, 47.362781], [8.588304, 47.362784], [8.588316, 47.362786], [8.588329, 47.362788], [8.588342, 47.362789], [8.588355, 47.362789], [8.588391, 47.362788], [8.588426, 47.362787], [8.588462, 47.362786], [8.588692, 47.362781], [8.588751, 47.362781], [8.588778, 47.362782], [8.588806, 47.362784], [8.588833, 47.362786], [8.588846, 47.362787], [8.588859, 47.362787], [8.588871, 47.362786], [8.588884, 47.362785], [8.588981, 47.362749], [8.589069, 47.362704], [8.589119, 47.36269], [8.58917, 47.36268], [8.589222, 47.362672], [8.589239, 47.36267], [8.589255, 47.36267], [8.589272, 47.36267], [8.589288, 47.362672], [8.589304, 47.362674], [8.58932, 47.362678], [8.589363, 47.362689], [8.589408, 47.362699], [8.589452, 47.362708], [8.589486, 47.362713], [8.589521, 47.362718], [8.589556, 47.362721], [8.58957, 47.362722], [8.589585, 47.362722], [8.5896, 47.362721], [8.589614, 47.362719], [8.589628, 47.362716], [8.589641, 47.362712], [8.589654, 47.362708], [8.589667, 47.362702], [8.589804, 47.362654], [8.589846, 47.362643], [8.589887, 47.362632], [8.589928, 47.362621], [8.589938, 47.362618], [8.589948, 47.362616], [8.589958, 47.362615], [8.589969, 47.362615], [8.589979, 47.362615], [8.589989, 47.362615], [8.59, 47.362617], [8.59001, 47.362619], [8.590019, 47.362621], [8.590029, 47.362624], [8.59008, 47.362645], [8.590129, 47.362667], [8.590176, 47.362691], [8.590207, 47.362706], [8.59024, 47.362719], [8.590274, 47.36273], [8.590291, 47.362735], [8.590307, 47.362738], [8.590324, 47.36274], [8.590354, 47.362743], [8.590384, 47.362748], [8.590412, 47.362756], [8.590441, 47.362764], [8.590469, 47.362773], [8.590497, 47.362781], [8.590511, 47.362785], [8.590526, 47.362788], [8.590541, 47.362791], [8.590556, 47.362792], [8.590571, 47.362793], [8.590587, 47.362792], [8.590602, 47.362791], [8.590617, 47.362789], [8.590647, 47.362785], [8.590678, 47.362781], [8.590709, 47.362779], [8.59071, 47.362779], [8.59071, 47.362779], [8.59072, 47.362778], [8.59073, 47.362777], [8.59074, 47.362774], [8.59075, 47.362772], [8.590759, 47.362769], [8.590831, 47.362742], [8.590903, 47.362716], [8.590976, 47.362691], [8.590992, 47.362686], [8.591009, 47.362682], [8.591026, 47.362679], [8.591044, 47.362677], [8.591061, 47.362677], [8.591061, 47.362677], [8.5911, 47.362677], [8.591139, 47.362678], [8.591177, 47.362679], [8.591177, 47.362679], [8.591177, 47.362679], [8.591181, 47.362679], [8.591186, 47.362679], [8.59119, 47.362679], [8.591367, 47.362659], [8.591387, 47.362656], [8.591407, 47.362653], [8.591428, 47.362649], [8.591453, 47.362645], [8.591478, 47.362641], [8.591502, 47.362636], [8.591547, 47.362625], [8.591591, 47.362614], [8.591634, 47.3626], [8.591662, 47.36259], [8.59169, 47.362578], [8.591715, 47.362565], [8.591719, 47.362564], [8.591722, 47.362562], [8.591725, 47.362561], [8.591729, 47.36256], [8.591732, 47.362559], [8.591736, 47.362559], [8.59174, 47.362559], [8.591744, 47.362559], [8.591748, 47.362559], [8.591751, 47.362559], [8.591755, 47.36256], [8.591759, 47.362561], [8.591762, 47.362562], [8.591766, 47.362563], [8.591769, 47.362564], [8.591772, 47.362566], [8.591775, 47.362568], [8.591777, 47.362569], [8.59178, 47.362572], [8.591782, 47.362574], [8.591783, 47.362576], [8.591785, 47.362578], [8.591789, 47.362586], [8.591794, 47.362593], [8.591801, 47.362599], [8.591807, 47.362606], [8.591815, 47.362611], [8.591824, 47.362617], [8.591829, 47.36262], [8.591835, 47.362622], [8.591841, 47.362625], [8.591847, 47.362627], [8.591854, 47.362628], [8.591861, 47.362629], [8.591915, 47.362637], [8.591968, 47.362645], [8.592022, 47.362652], [8.592006, 47.362664], [8.591985, 47.362678], [8.591962, 47.362691], [8.591938, 47.362702], [8.591912, 47.362712], [8.591884, 47.36272], [8.591887, 47.362729], [8.591891, 47.362738], [8.591896, 47.362747], [8.591902, 47.362755], [8.591909, 47.362763], [8.591917, 47.362771], [8.591926, 47.362778], [8.591936, 47.362784], [8.591946, 47.36279], [8.591958, 47.362795], [8.59197, 47.3628], [8.591982, 47.362804], [8.592007, 47.3628], [8.592032, 47.362795], [8.592056, 47.362788], [8.592078, 47.36278], [8.5921, 47.36277], [8.59212, 47.362759], [8.592138, 47.362747], [8.592155, 47.362734], [8.59217, 47.362719], [8.592182, 47.362707], [8.592195, 47.362696], [8.592209, 47.362686], [8.592225, 47.362676], [8.592241, 47.362668], [8.59225, 47.362664], [8.592259, 47.362662], [8.592269, 47.362659], [8.592278, 47.362658], [8.592285, 47.362657], [8.592292, 47.362657], [8.592299, 47.362657], [8.592306, 47.362657], [8.592313, 47.362658], [8.59232, 47.362659], [8.592327, 47.362661], [8.592404, 47.362685], [8.592477, 47.362714], [8.592547, 47.362746], [8.592636, 47.362767], [8.592748, 47.362765], [8.592866, 47.362738], [8.592983, 47.362681], [8.593096, 47.362684]]], "type": "MultiLineString"}, "id": "94", "properties": {}, "type": "Feature"}, {"bbox": [8.49798, 47.401361, 8.49855, 47.40153], "geometry": {"coordinates": [[[8.49798, 47.40153], [8.49855, 47.401361]]], "type": "MultiLineString"}, "id": "95", "properties": {}, "type": "Feature"}, {"bbox": [8.553232, 47.402067, 8.553558, 47.402414], "geometry": {"coordinates": [[[8.553232, 47.402414], [8.553558, 47.402067]]], "type": "MultiLineString"}, "id": "98", "properties": {}, "type": "Feature"}, {"bbox": [8.517861, 47.34072, 8.518881, 47.34086], "geometry": {"coordinates": [[[8.518881, 47.34072], [8.518273, 47.340729], [8.517861, 47.34086]]], "type": "MultiLineString"}, "id": "99", "properties": {}, "type": "Feature"}, {"bbox": [8.53652, 47.414939, 8.537221, 47.415332], "geometry": {"coordinates": [[[8.53652, 47.414944], [8.536612, 47.414939], [8.536666, 47.415332], [8.537221, 47.415295]]], "type": "MultiLineString"}, "id": "104", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.371435, 8.544714, 47.371755], "geometry": {"coordinates": [[[8.544033, 47.371435], [8.544098, 47.371473], [8.544442, 47.371612], [8.544714, 47.371755]]], "type": "MultiLineString"}, "id": "107", "properties": {}, "type": "Feature"}, {"bbox": [8.5611, 47.413085, 8.561159, 47.413876], "geometry": {"coordinates": [[[8.561159, 47.413085], [8.561134, 47.413826], [8.5611, 47.413876]]], "type": "MultiLineString"}, "id": "109", "properties": {}, "type": "Feature"}, {"bbox": [8.533152, 47.411421, 8.53343, 47.412827], "geometry": {"coordinates": [[[8.533152, 47.412827], [8.533264, 47.412261], [8.533352, 47.41181], [8.53343, 47.411446], [8.533255, 47.411421]]], "type": "MultiLineString"}, "id": "110", "properties": {}, "type": "Feature"}, {"bbox": [8.477724, 47.3919, 8.478753, 47.393265], "geometry": {"coordinates": [[[8.477724, 47.3919], [8.47807, 47.392175], [8.478753, 47.393265]]], "type": "MultiLineString"}, "id": "111", "properties": {}, "type": "Feature"}, {"bbox": [8.596215, 47.353516, 8.596593, 47.353804], "geometry": {"coordinates": [[[8.596593, 47.353804], [8.596215, 47.353516]]], "type": "MultiLineString"}, "id": "117", "properties": {}, "type": "Feature"}, {"bbox": [8.509883, 47.377844, 8.510184, 47.378077], "geometry": {"coordinates": [[[8.510184, 47.378077], [8.510059, 47.377976], [8.509997, 47.37793], [8.509883, 47.377844]]], "type": "MultiLineString"}, "id": "118", "properties": {}, "type": "Feature"}, {"bbox": [8.502047, 47.41778, 8.502745, 47.418174], "geometry": {"coordinates": [[[8.502745, 47.41778], [8.502607, 47.417868], [8.502047, 47.418174]]], "type": "MultiLineString"}, "id": "120", "properties": {}, "type": "Feature"}, {"bbox": [8.543951, 47.373435, 8.544951, 47.373728], "geometry": {"coordinates": [[[8.543951, 47.373435], [8.544802, 47.373683], [8.544951, 47.373728]]], "type": "MultiLineString"}, "id": "123", "properties": {}, "type": "Feature"}, {"bbox": [8.550205, 47.386041, 8.550241, 47.386308], "geometry": {"coordinates": [[[8.550241, 47.386041], [8.550205, 47.386166], [8.550208, 47.386308]]], "type": "MultiLineString"}, "id": "124", "properties": {}, "type": "Feature"}, {"bbox": [8.546953, 47.407362, 8.546961, 47.407664], "geometry": {"coordinates": [[[8.546953, 47.407664], [8.546961, 47.407362]]], "type": "MultiLineString"}, "id": "125", "properties": {}, "type": "Feature"}, {"bbox": [8.542804, 47.373429, 8.543718, 47.373431], "geometry": {"coordinates": [[[8.542804, 47.373431], [8.543718, 47.373429]]], "type": "MultiLineString"}, "id": "126", "properties": {}, "type": "Feature"}, {"bbox": [8.508202, 47.380761, 8.508269, 47.380795], "geometry": {"coordinates": [[[8.508202, 47.380795], [8.508269, 47.380761]]], "type": "MultiLineString"}, "id": "127", "properties": {}, "type": "Feature"}, {"bbox": [8.466945, 47.40119, 8.468036, 47.401467], "geometry": {"coordinates": [[[8.466945, 47.401467], [8.468036, 47.40119]]], "type": "MultiLineString"}, "id": "128", "properties": {}, "type": "Feature"}, {"bbox": [8.503814, 47.407126, 8.506552, 47.408052], "geometry": {"coordinates": [[[8.506552, 47.407126], [8.506136, 47.407281], [8.505559, 47.407472], [8.505245, 47.407577], [8.503814, 47.408052]]], "type": "MultiLineString"}, "id": "129", "properties": {}, "type": "Feature"}, {"bbox": [8.499915, 47.423488, 8.50015, 47.423556], "geometry": {"coordinates": [[[8.50015, 47.423488], [8.499915, 47.423556]]], "type": "MultiLineString"}, "id": "131", "properties": {}, "type": "Feature"}, {"bbox": [8.54137, 47.370877, 8.541557, 47.371291], "geometry": {"coordinates": [[[8.54137, 47.370877], [8.541539, 47.37118], [8.541557, 47.371291]]], "type": "MultiLineString"}, "id": "133", "properties": {}, "type": "Feature"}, {"bbox": [8.545091, 47.407152, 8.545845, 47.408244], "geometry": {"coordinates": [[[8.545091, 47.407152], [8.545139, 47.407228], [8.545503, 47.407746], [8.545845, 47.408244]]], "type": "MultiLineString"}, "id": "135", "properties": {}, "type": "Feature"}, {"bbox": [8.549202, 47.359518, 8.549788, 47.359618], "geometry": {"coordinates": [[[8.549202, 47.359518], [8.549622, 47.359618], [8.54967, 47.359596], [8.549788, 47.359601]]], "type": "MultiLineString"}, "id": "137", "properties": {}, "type": "Feature"}, {"bbox": [8.530771, 47.414788, 8.531899, 47.414936], "geometry": {"coordinates": [[[8.530771, 47.414936], [8.531899, 47.414788]]], "type": "MultiLineString"}, "id": "138", "properties": {}, "type": "Feature"}, {"bbox": [8.517174, 47.341875, 8.517671, 47.342956], "geometry": {"coordinates": [[[8.517671, 47.341875], [8.517174, 47.342956]]], "type": "MultiLineString"}, "id": "140", "properties": {}, "type": "Feature"}, {"bbox": [8.564725, 47.360386, 8.564758, 47.360957], "geometry": {"coordinates": [[[8.564725, 47.360386], [8.564758, 47.360957]]], "type": "MultiLineString"}, "id": "141", "properties": {}, "type": "Feature"}, {"bbox": [8.516994, 47.38907, 8.518036, 47.390012], "geometry": {"coordinates": [[[8.517514, 47.390012], [8.517497, 47.389984], [8.518036, 47.389804], [8.517493, 47.38907], [8.516994, 47.389235]]], "type": "MultiLineString"}, "id": "142", "properties": {}, "type": "Feature"}, {"bbox": [8.546452, 47.363848, 8.546711, 47.363915], "geometry": {"coordinates": [[[8.546452, 47.363848], [8.546711, 47.363915]]], "type": "MultiLineString"}, "id": "146", "properties": {}, "type": "Feature"}, {"bbox": [8.502517, 47.400235, 8.50285, 47.400638], "geometry": {"coordinates": [[[8.502517, 47.400235], [8.502682, 47.400455], [8.50285, 47.400638]]], "type": "MultiLineString"}, "id": "147", "properties": {}, "type": "Feature"}, {"bbox": [8.524473, 47.395122, 8.52485, 47.395737], "geometry": {"coordinates": [[[8.524473, 47.395122], [8.524517, 47.39518], [8.52482, 47.395686], [8.52485, 47.395737]]], "type": "MultiLineString"}, "id": "150", "properties": {}, "type": "Feature"}, {"bbox": [8.524077, 47.377857, 8.525193, 47.378304], "geometry": {"coordinates": [[[8.525193, 47.377857], [8.524077, 47.378304]]], "type": "MultiLineString"}, "id": "151", "properties": {}, "type": "Feature"}, {"bbox": [8.555994, 47.370514, 8.556882, 47.371332], "geometry": {"coordinates": [[[8.555994, 47.371332], [8.556106, 47.371201], [8.556882, 47.370514]]], "type": "MultiLineString"}, "id": "156", "properties": {}, "type": "Feature"}, {"bbox": [8.486847, 47.352864, 8.490289, 47.358444], "geometry": {"coordinates": [[[8.486847, 47.358444], [8.486877, 47.35842], [8.487366, 47.358112], [8.487398, 47.358092], [8.487428, 47.358069], [8.487456, 47.358046], [8.4875, 47.358006], [8.48752, 47.357989], [8.487543, 47.357973], [8.487567, 47.357959], [8.487609, 47.357935], [8.487643, 47.357907], [8.487709, 47.357827], [8.487716, 47.35782], [8.487725, 47.357812], [8.487734, 47.357806], [8.487743, 47.3578], [8.487754, 47.357794], [8.487765, 47.357789], [8.487777, 47.357785], [8.48779, 47.357782], [8.487802, 47.357779], [8.487815, 47.357777], [8.488079, 47.357745], [8.488118, 47.357742], [8.488125, 47.357741], [8.488131, 47.357741], [8.488137, 47.35774], [8.488142, 47.357738], [8.488148, 47.357737], [8.488153, 47.357734], [8.488183, 47.357723], [8.488212, 47.357712], [8.488241, 47.3577], [8.48827, 47.357688], [8.488297, 47.357674], [8.488323, 47.357659], [8.488343, 47.357648], [8.488363, 47.357639], [8.488385, 47.35763], [8.488408, 47.357623], [8.488432, 47.357618], [8.488456, 47.357613], [8.488481, 47.357611], [8.488506, 47.357609], [8.488531, 47.35761], [8.488556, 47.357611], [8.488581, 47.357614], [8.488604, 47.357617], [8.488628, 47.357619], [8.488651, 47.357619], [8.488675, 47.357618], [8.488699, 47.357615], [8.488722, 47.357611], [8.488744, 47.357606], [8.488766, 47.357599], [8.48886, 47.357567], [8.488866, 47.357575], [8.488868, 47.357576], [8.488869, 47.357578], [8.488871, 47.357579], [8.488872, 47.35758], [8.488874, 47.357581], [8.488876, 47.357582], [8.488879, 47.357583], [8.488881, 47.357584], [8.488883, 47.357585], [8.488886, 47.357585], [8.488888, 47.357585], [8.488891, 47.357586], [8.488893, 47.357586], [8.488896, 47.357585], [8.488898, 47.357585], [8.488901, 47.357585], [8.488903, 47.357584], [8.488905, 47.357583], [8.488907, 47.357583], [8.48891, 47.357582], [8.488911, 47.35758], [8.488913, 47.357579], [8.488915, 47.357578], [8.488916, 47.357577], [8.488918, 47.357575], [8.488919, 47.357574], [8.48892, 47.357572], [8.48892, 47.35757], [8.488921, 47.357569], [8.488921, 47.357565], [8.488923, 47.357562], [8.488924, 47.357559], [8.488926, 47.357556], [8.488929, 47.357553], [8.488931, 47.357551], [8.488935, 47.357548], [8.488938, 47.357546], [8.488942, 47.357544], [8.488945, 47.357542], [8.489035, 47.357504], [8.489046, 47.357499], [8.489057, 47.357496], [8.489069, 47.357493], [8.489082, 47.357491], [8.489094, 47.357489], [8.489107, 47.357488], [8.48912, 47.357488], [8.489133, 47.357489], [8.489145, 47.357491], [8.489157, 47.357493], [8.489169, 47.357496], [8.489181, 47.3575], [8.489318, 47.357548], [8.489333, 47.357553], [8.489348, 47.357557], [8.489363, 47.357559], [8.489379, 47.357561], [8.489395, 47.357562], [8.489411, 47.357562], [8.489427, 47.357561], [8.489443, 47.357558], [8.489709, 47.357513], [8.489714, 47.357512], [8.489719, 47.357511], [8.489725, 47.357509], [8.489729, 47.357507], [8.489734, 47.357504], [8.489738, 47.357502], [8.489742, 47.357499], [8.489746, 47.357496], [8.489749, 47.357492], [8.489751, 47.357489], [8.489753, 47.357485], [8.489755, 47.357482], [8.489756, 47.357478], [8.489757, 47.357474], [8.489768, 47.35735], [8.489769, 47.357345], [8.48977, 47.35734], [8.489772, 47.357335], [8.489775, 47.35733], [8.489778, 47.357325], [8.489782, 47.357321], [8.489786, 47.357316], [8.489791, 47.357312], [8.489968, 47.357178], [8.490062, 47.357097], [8.490175, 47.356975], [8.490284, 47.356857], [8.490285, 47.356855], [8.490287, 47.356853], [8.490288, 47.356851], [8.490289, 47.356848], [8.490289, 47.356846], [8.490289, 47.356844], [8.490289, 47.356841], [8.490289, 47.356839], [8.490288, 47.356837], [8.490287, 47.356835], [8.490286, 47.356832], [8.490284, 47.35683], [8.490232, 47.356768], [8.490228, 47.356764], [8.490223, 47.35676], [8.490218, 47.356756], [8.490213, 47.356752], [8.490207, 47.356749], [8.490201, 47.356746], [8.490195, 47.356744], [8.490043, 47.35666], [8.489951, 47.356544], [8.489927, 47.35649], [8.489918, 47.356474], [8.489908, 47.356459], [8.489897, 47.356444], [8.489883, 47.35643], [8.489868, 47.356416], [8.489846, 47.356397], [8.489827, 47.356376], [8.48981, 47.356353], [8.489796, 47.35633], [8.489786, 47.356307], [8.489778, 47.356282], [8.489751, 47.356173], [8.489748, 47.356065], [8.489747, 47.356053], [8.489744, 47.356041], [8.48974, 47.35603], [8.489735, 47.356019], [8.489688, 47.355935], [8.489684, 47.355926], [8.48968, 47.355916], [8.489678, 47.355906], [8.489678, 47.355896], [8.489679, 47.355886], [8.489681, 47.355876], [8.489703, 47.3558], [8.489775, 47.355584], [8.48978, 47.355572], [8.489787, 47.35556], [8.489795, 47.355548], [8.489799, 47.355543], [8.489802, 47.355537], [8.489805, 47.355532], [8.489807, 47.355526], [8.489808, 47.35552], [8.489808, 47.355514], [8.489808, 47.355508], [8.489807, 47.355502], [8.489766, 47.355324], [8.489762, 47.355313], [8.489758, 47.355302], [8.489751, 47.355291], [8.489744, 47.35528], [8.489711, 47.355241], [8.489703, 47.35523], [8.489696, 47.355219], [8.489691, 47.355207], [8.489687, 47.355194], [8.48968, 47.355163], [8.489678, 47.355153], [8.489678, 47.355143], [8.489679, 47.355133], [8.489681, 47.355124], [8.489684, 47.355114], [8.489689, 47.355105], [8.489736, 47.355025], [8.489751, 47.354995], [8.489763, 47.354963], [8.48977, 47.354932], [8.489772, 47.3549], [8.489774, 47.35476], [8.489776, 47.35473], [8.489781, 47.354701], [8.48979, 47.354672], [8.48981, 47.354615], [8.489819, 47.354585], [8.489825, 47.354555], [8.489827, 47.354525], [8.489833, 47.354322], [8.489831, 47.354295], [8.489827, 47.354268], [8.489819, 47.354241], [8.489807, 47.354215], [8.489784, 47.354172], [8.489778, 47.354159], [8.489774, 47.354146], [8.489771, 47.354133], [8.489766, 47.354108], [8.489759, 47.354083], [8.489751, 47.354059], [8.489733, 47.354012], [8.489724, 47.353991], [8.489712, 47.353971], [8.489698, 47.353951], [8.489682, 47.353932], [8.489642, 47.353889], [8.489618, 47.353846], [8.48956, 47.353569], [8.489526, 47.353435], [8.489518, 47.353417], [8.489508, 47.353399], [8.489495, 47.353382], [8.489481, 47.353366], [8.489465, 47.353351], [8.489446, 47.353336], [8.489426, 47.353323], [8.489405, 47.353311], [8.489394, 47.353303], [8.489127, 47.353166], [8.488552, 47.352864]]], "type": "MultiLineString"}, "id": "157", "properties": {}, "type": "Feature"}, {"bbox": [8.542079, 47.405652, 8.542832, 47.405894], "geometry": {"coordinates": [[[8.542832, 47.405652], [8.542079, 47.405894]]], "type": "MultiLineString"}, "id": "159", "properties": {}, "type": "Feature"}, {"bbox": [8.526379, 47.384933, 8.526738, 47.385143], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526379, 47.384933]]], "type": "MultiLineString"}, "id": "161", "properties": {}, "type": "Feature"}, {"bbox": [8.570588, 47.405267, 8.570717, 47.405449], "geometry": {"coordinates": [[[8.570588, 47.405267], [8.570717, 47.405449]]], "type": "MultiLineString"}, "id": "162", "properties": {}, "type": "Feature"}, {"bbox": [8.500538, 47.337617, 8.511381, 47.343329], "geometry": {"coordinates": [[[8.511381, 47.342977], [8.510859, 47.342798], [8.510797, 47.342775], [8.510737, 47.34275], [8.510679, 47.342722], [8.510112, 47.342434], [8.50994, 47.34236], [8.509922, 47.342352], [8.509902, 47.342346], [8.509882, 47.342341], [8.509861, 47.342337], [8.50984, 47.342335], [8.509819, 47.342333], [8.509798, 47.342333], [8.509776, 47.342335], [8.509755, 47.342337], [8.509734, 47.342341], [8.509714, 47.342346], [8.509695, 47.342352], [8.509676, 47.342359], [8.509334, 47.342503], [8.509314, 47.342513], [8.509296, 47.342523], [8.509278, 47.342535], [8.509263, 47.342547], [8.509249, 47.342561], [8.509236, 47.342575], [8.509226, 47.34259], [8.509218, 47.342605], [8.509211, 47.342621], [8.509207, 47.342637], [8.509205, 47.342654], [8.509205, 47.34267], [8.509207, 47.342686], [8.509215, 47.342742], [8.509217, 47.342798], [8.509212, 47.342853], [8.509184, 47.343042], [8.509181, 47.343054], [8.509177, 47.343066], [8.509172, 47.343078], [8.509164, 47.343089], [8.509156, 47.3431], [8.509146, 47.343111], [8.509135, 47.343121], [8.508901, 47.34331], [8.508896, 47.343314], [8.508891, 47.343317], [8.508886, 47.343319], [8.50888, 47.343322], [8.508875, 47.343324], [8.508869, 47.343326], [8.508862, 47.343327], [8.508856, 47.343328], [8.508849, 47.343329], [8.508843, 47.343329], [8.508836, 47.343329], [8.508829, 47.343328], [8.508823, 47.343327], [8.508817, 47.343326], [8.508811, 47.343324], [8.508805, 47.343322], [8.508799, 47.343319], [8.508794, 47.343317], [8.508789, 47.343314], [8.508785, 47.34331], [8.508781, 47.343307], [8.508777, 47.343303], [8.508774, 47.343299], [8.508772, 47.343295], [8.50877, 47.343291], [8.508768, 47.343286], [8.508767, 47.343282], [8.508767, 47.343277], [8.508767, 47.343273], [8.508768, 47.343268], [8.50877, 47.343264], [8.508772, 47.34326], [8.508774, 47.343256], [8.508777, 47.343252], [8.508781, 47.343248], [8.508785, 47.343244], [8.508862, 47.343181], [8.508874, 47.34317], [8.508885, 47.343159], [8.508894, 47.343147], [8.508902, 47.343134], [8.508908, 47.343121], [8.508913, 47.343108], [8.508916, 47.343095], [8.508917, 47.343081], [8.508917, 47.343067], [8.508915, 47.343054], [8.508911, 47.343041], [8.508823, 47.342783], [8.508673, 47.342517], [8.508661, 47.342498], [8.508646, 47.34248], [8.508629, 47.342462], [8.50861, 47.342446], [8.508589, 47.342431], [8.508566, 47.342417], [8.508542, 47.342405], [8.508495, 47.342381], [8.508451, 47.342353], [8.508412, 47.342323], [8.508283, 47.342213], [8.508264, 47.342195], [8.508247, 47.342176], [8.508232, 47.342157], [8.50822, 47.342136], [8.508211, 47.342115], [8.508204, 47.342093], [8.508199, 47.342071], [8.508198, 47.342049], [8.508199, 47.342026], [8.508203, 47.342004], [8.508266, 47.341739], [8.50827, 47.34172], [8.508271, 47.341701], [8.508269, 47.341682], [8.508269, 47.341678], [8.508267, 47.341674], [8.508265, 47.34167], [8.508263, 47.341666], [8.50826, 47.341662], [8.508257, 47.341659], [8.508253, 47.341656], [8.508249, 47.341653], [8.508245, 47.34165], [8.50824, 47.341647], [8.508235, 47.341645], [8.508229, 47.341643], [8.508223, 47.341642], [8.508218, 47.341641], [8.508212, 47.34164], [8.508206, 47.341639], [8.5082, 47.341639], [8.508194, 47.34164], [8.508188, 47.34164], [8.508182, 47.341641], [8.508176, 47.341643], [8.508171, 47.341644], [8.508165, 47.341646], [8.50816, 47.341649], [8.508142, 47.341659], [8.508125, 47.341671], [8.50811, 47.341684], [8.508096, 47.341697], [8.50807, 47.341728], [8.508045, 47.341759], [8.508021, 47.34179], [8.507965, 47.341861], [8.507901, 47.341929], [8.507831, 47.341994], [8.507711, 47.342099], [8.507702, 47.342108], [8.507693, 47.342118], [8.507687, 47.342128], [8.507681, 47.342138], [8.507677, 47.342149], [8.507674, 47.34216], [8.507673, 47.342171], [8.507673, 47.342182], [8.507675, 47.342193], [8.507678, 47.342204], [8.507682, 47.342214], [8.507688, 47.342225], [8.507695, 47.342234], [8.507704, 47.342244], [8.507714, 47.342253], [8.507724, 47.342261], [8.508109, 47.342528], [8.508116, 47.342534], [8.508123, 47.34254], [8.508129, 47.342547], [8.508134, 47.342554], [8.508138, 47.342561], [8.508141, 47.342568], [8.508144, 47.342576], [8.508145, 47.342584], [8.508145, 47.342591], [8.508144, 47.342599], [8.508143, 47.342607], [8.50814, 47.342614], [8.508136, 47.342621], [8.508131, 47.342628], [8.508126, 47.342635], [8.508119, 47.342642], [8.507877, 47.34286], [8.50786, 47.342877], [8.507845, 47.342896], [8.507833, 47.342915], [8.507823, 47.342935], [8.507804, 47.342985], [8.507802, 47.34299], [8.507799, 47.342994], [8.507795, 47.342999], [8.507791, 47.343003], [8.507787, 47.343007], [8.507782, 47.343011], [8.507776, 47.343014], [8.507771, 47.343017], [8.507764, 47.34302], [8.507758, 47.343022], [8.507751, 47.343024], [8.507744, 47.343026], [8.507737, 47.343027], [8.507729, 47.343028], [8.507722, 47.343028], [8.507715, 47.343028], [8.507707, 47.343027], [8.5077, 47.343026], [8.507693, 47.343025], [8.507686, 47.343023], [8.507679, 47.343021], [8.507673, 47.343018], [8.507667, 47.343015], [8.507661, 47.343012], [8.507656, 47.343008], [8.507652, 47.343004], [8.507648, 47.343], [8.507644, 47.342995], [8.507641, 47.342991], [8.507639, 47.342986], [8.507637, 47.342981], [8.507636, 47.342976], [8.507635, 47.342971], [8.507635, 47.342966], [8.507636, 47.342961], [8.507638, 47.342956], [8.50764, 47.342951], [8.507642, 47.342947], [8.507646, 47.342942], [8.507815, 47.34273], [8.507857, 47.342653], [8.507861, 47.342645], [8.507864, 47.342636], [8.507865, 47.342628], [8.507866, 47.342619], [8.507866, 47.34261], [8.507864, 47.342601], [8.507862, 47.342593], [8.507858, 47.342584], [8.507853, 47.342576], [8.507848, 47.342568], [8.507841, 47.342561], [8.507833, 47.342554], [8.507825, 47.342547], [8.507815, 47.342541], [8.507805, 47.342536], [8.507795, 47.342531], [8.507603, 47.342451], [8.507564, 47.342434], [8.507527, 47.342414], [8.507494, 47.342392], [8.507463, 47.342368], [8.507435, 47.342342], [8.50741, 47.342315], [8.507334, 47.342224], [8.507312, 47.3422], [8.507288, 47.342177], [8.50726, 47.342157], [8.50723, 47.342138], [8.507198, 47.34212], [8.507083, 47.342064], [8.507045, 47.342043], [8.50701, 47.342021], [8.506978, 47.341996], [8.50695, 47.34197], [8.506925, 47.341942], [8.506904, 47.341912], [8.506886, 47.341881], [8.506873, 47.34185], [8.506864, 47.341818], [8.506859, 47.341785], [8.506829, 47.341401], [8.506829, 47.341388], [8.50683, 47.341376], [8.506833, 47.341363], [8.506838, 47.341351], [8.506844, 47.341339], [8.50686, 47.341311], [8.506872, 47.341282], [8.506879, 47.341252], [8.506884, 47.341222], [8.506884, 47.341218], [8.506883, 47.341214], [8.506882, 47.341211], [8.506881, 47.341207], [8.506879, 47.341203], [8.506877, 47.3412], [8.506874, 47.341197], [8.506871, 47.341194], [8.506867, 47.341191], [8.506864, 47.341188], [8.506859, 47.341186], [8.506855, 47.341183], [8.50685, 47.341181], [8.506845, 47.34118], [8.50684, 47.341178], [8.506835, 47.341177], [8.50683, 47.341177], [8.506824, 47.341176], [8.506819, 47.341176], [8.506813, 47.341176], [8.506808, 47.341177], [8.506802, 47.341178], [8.506797, 47.341179], [8.506792, 47.341181], [8.506787, 47.341182], [8.506783, 47.341184], [8.506778, 47.341187], [8.506774, 47.341189], [8.506771, 47.341192], [8.506767, 47.341195], [8.506733, 47.341232], [8.506704, 47.341271], [8.50668, 47.341311], [8.506615, 47.341436], [8.506514, 47.341582], [8.506427, 47.341684], [8.506421, 47.341692], [8.506416, 47.341701], [8.506413, 47.341709], [8.50641, 47.341718], [8.506409, 47.341727], [8.506409, 47.341736], [8.50641, 47.341745], [8.506412, 47.341754], [8.506415, 47.341762], [8.506443, 47.341823], [8.506447, 47.341833], [8.50645, 47.341843], [8.506452, 47.341853], [8.506452, 47.341863], [8.506451, 47.341873], [8.506449, 47.341883], [8.506445, 47.341893], [8.506441, 47.341903], [8.506439, 47.341906], [8.506437, 47.341909], [8.506434, 47.341912], [8.506431, 47.341914], [8.506428, 47.341917], [8.506424, 47.341919], [8.506421, 47.341921], [8.506416, 47.341922], [8.506412, 47.341924], [8.506408, 47.341925], [8.506403, 47.341926], [8.506399, 47.341927], [8.506394, 47.341927], [8.506389, 47.341927], [8.506384, 47.341927], [8.50638, 47.341926], [8.506375, 47.341925], [8.506371, 47.341924], [8.506366, 47.341923], [8.506362, 47.341921], [8.506358, 47.34192], [8.506355, 47.341918], [8.506351, 47.341915], [8.506348, 47.341913], [8.506317, 47.341882], [8.506289, 47.34185], [8.506266, 47.341817], [8.506247, 47.341782], [8.506233, 47.341746], [8.506224, 47.34171], [8.506219, 47.341673], [8.506215, 47.34164], [8.506206, 47.341608], [8.506193, 47.341577], [8.506176, 47.341547], [8.50616, 47.341518], [8.506148, 47.341488], [8.50614, 47.341457], [8.506136, 47.341426], [8.506136, 47.341395], [8.50614, 47.341364], [8.506216, 47.340992], [8.506219, 47.34098], [8.506224, 47.340968], [8.50623, 47.340957], [8.506237, 47.340946], [8.506247, 47.340936], [8.506257, 47.340926], [8.506269, 47.340917], [8.506282, 47.340909], [8.506296, 47.340902], [8.50631, 47.340895], [8.506326, 47.34089], [8.506793, 47.340741], [8.5068, 47.340738], [8.506807, 47.340735], [8.506813, 47.340732], [8.506819, 47.340728], [8.506825, 47.340724], [8.50683, 47.34072], [8.506834, 47.340715], [8.506838, 47.34071], [8.506841, 47.340705], [8.506844, 47.3407], [8.506846, 47.340695], [8.506847, 47.340689], [8.506847, 47.340684], [8.506847, 47.340678], [8.506846, 47.340673], [8.506844, 47.340667], [8.506842, 47.340662], [8.506839, 47.340657], [8.506836, 47.340652], [8.506832, 47.340647], [8.506827, 47.340643], [8.506822, 47.340639], [8.506816, 47.340635], [8.506809, 47.340631], [8.506471, 47.340456], [8.506447, 47.340443], [8.506426, 47.340428], [8.506406, 47.340412], [8.506389, 47.340396], [8.506373, 47.340378], [8.50636, 47.34036], [8.506349, 47.34034], [8.506341, 47.340321], [8.506335, 47.3403], [8.506331, 47.34028], [8.506331, 47.340259], [8.506332, 47.340239], [8.506337, 47.340219], [8.506344, 47.340199], [8.506353, 47.340179], [8.506407, 47.340081], [8.506417, 47.34006], [8.506424, 47.340038], [8.506428, 47.340016], [8.50643, 47.339994], [8.506428, 47.339972], [8.506423, 47.33995], [8.506368, 47.339752], [8.506362, 47.339723], [8.506358, 47.339695], [8.506356, 47.339667], [8.506355, 47.339583], [8.506353, 47.339565], [8.506349, 47.339548], [8.506343, 47.339531], [8.506335, 47.339514], [8.506324, 47.339498], [8.506311, 47.339483], [8.50623, 47.339398], [8.506202, 47.339366], [8.506179, 47.339333], [8.506159, 47.339299], [8.506144, 47.339264], [8.506134, 47.339228], [8.506127, 47.339192], [8.506125, 47.339155], [8.506128, 47.339119], [8.506136, 47.339052], [8.506143, 47.339016], [8.506155, 47.338979], [8.506172, 47.338944], [8.506193, 47.33891], [8.506219, 47.338877], [8.506248, 47.338846], [8.50643, 47.338673], [8.506434, 47.338669], [8.506437, 47.338665], [8.50644, 47.338661], [8.506442, 47.338656], [8.506444, 47.338652], [8.506444, 47.338647], [8.506445, 47.338642], [8.506444, 47.338637], [8.506443, 47.338633], [8.506442, 47.338628], [8.50644, 47.338624], [8.506437, 47.338619], [8.506434, 47.338615], [8.50643, 47.338611], [8.506426, 47.338607], [8.506421, 47.338604], [8.506415, 47.338601], [8.50641, 47.338598], [8.506404, 47.338596], [8.506398, 47.338594], [8.506391, 47.338592], [8.506384, 47.338591], [8.506378, 47.33859], [8.506371, 47.338589], [8.506364, 47.338589], [8.506358, 47.338589], [8.506351, 47.33859], [8.506345, 47.338591], [8.506338, 47.338593], [8.506332, 47.338595], [8.506326, 47.338597], [8.506321, 47.338599], [8.506315, 47.338602], [8.506201, 47.338669], [8.506133, 47.338716], [8.506095, 47.338741], [8.506054, 47.338764], [8.506012, 47.338785], [8.5058, 47.338884], [8.505784, 47.338892], [8.505769, 47.338901], [8.505755, 47.338911], [8.505743, 47.338921], [8.505733, 47.338933], [8.505723, 47.338945], [8.505716, 47.338957], [8.50571, 47.33897], [8.505706, 47.338983], [8.505703, 47.338996], [8.505683, 47.339162], [8.50568, 47.339176], [8.505676, 47.339189], [8.50567, 47.339201], [8.505662, 47.339214], [8.505653, 47.339225], [8.505599, 47.339286], [8.50559, 47.339297], [8.505583, 47.339307], [8.505578, 47.339318], [8.505574, 47.33933], [8.505571, 47.339341], [8.505569, 47.339353], [8.505569, 47.339364], [8.505571, 47.339376], [8.505574, 47.339387], [8.505578, 47.339399], [8.505584, 47.33941], [8.505643, 47.339509], [8.505648, 47.339519], [8.505651, 47.339529], [8.505654, 47.339538], [8.505654, 47.339548], [8.505654, 47.339558], [8.505652, 47.339568], [8.505649, 47.339578], [8.505581, 47.339747], [8.505577, 47.339756], [8.505571, 47.339765], [8.505565, 47.339774], [8.505557, 47.339782], [8.505549, 47.339789], [8.505539, 47.339797], [8.505529, 47.339803], [8.505517, 47.339809], [8.505505, 47.339815], [8.505493, 47.339819], [8.50548, 47.339823], [8.505452, 47.339831], [8.505426, 47.339841], [8.505401, 47.339852], [8.505378, 47.339864], [8.505356, 47.339878], [8.505336, 47.339893], [8.505318, 47.339909], [8.505302, 47.339926], [8.505288, 47.339944], [8.505277, 47.339963], [8.505268, 47.339982], [8.505262, 47.340002], [8.505258, 47.340022], [8.505256, 47.340042], [8.505257, 47.340063], [8.505275, 47.340212], [8.505277, 47.340254], [8.505275, 47.340296], [8.505267, 47.340337], [8.505254, 47.340378], [8.505236, 47.340418], [8.505213, 47.340457], [8.505185, 47.340494], [8.505153, 47.34053], [8.505145, 47.340538], [8.505135, 47.340546], [8.505124, 47.340553], [8.505112, 47.340559], [8.5051, 47.340565], [8.505086, 47.34057], [8.505073, 47.340574], [8.505059, 47.340577], [8.505044, 47.340579], [8.505029, 47.340581], [8.505014, 47.340581], [8.504999, 47.340581], [8.504985, 47.34058], [8.50497, 47.340577], [8.504956, 47.340574], [8.504942, 47.340571], [8.504929, 47.340566], [8.504916, 47.34056], [8.504904, 47.340554], [8.504893, 47.340547], [8.504883, 47.34054], [8.504874, 47.340532], [8.504866, 47.340523], [8.504859, 47.340514], [8.504853, 47.340505], [8.504849, 47.340495], [8.504846, 47.340485], [8.504844, 47.340475], [8.504844, 47.340465], [8.504844, 47.340455], [8.504847, 47.340445], [8.50485, 47.340435], [8.504855, 47.340425], [8.504861, 47.340416], [8.504868, 47.340407], [8.504971, 47.340291], [8.504977, 47.340282], [8.504983, 47.340274], [8.504988, 47.340264], [8.504991, 47.340255], [8.504993, 47.340245], [8.504994, 47.340236], [8.504994, 47.340226], [8.504992, 47.340216], [8.50499, 47.340207], [8.504986, 47.340197], [8.504981, 47.340188], [8.504974, 47.340179], [8.504967, 47.340171], [8.504959, 47.340163], [8.504949, 47.340156], [8.504939, 47.340149], [8.504804, 47.340067], [8.504787, 47.340056], [8.504771, 47.340043], [8.504757, 47.34003], [8.504745, 47.340016], [8.504734, 47.340001], [8.504726, 47.339985], [8.50472, 47.339969], [8.504653, 47.339765], [8.504642, 47.339736], [8.504627, 47.339709], [8.504609, 47.339682], [8.504587, 47.339657], [8.504577, 47.339647], [8.504475, 47.339545], [8.504455, 47.339523], [8.504438, 47.3395], [8.504424, 47.339477], [8.504414, 47.339452], [8.504406, 47.339427], [8.504402, 47.339402], [8.504402, 47.339376], [8.504404, 47.339351], [8.50441, 47.339326], [8.50442, 47.339301], [8.504432, 47.339277], [8.504448, 47.339254], [8.504523, 47.339155], [8.504527, 47.339148], [8.504531, 47.339141], [8.504534, 47.339134], [8.504536, 47.339127], [8.504537, 47.339119], [8.504537, 47.339112], [8.504535, 47.339104], [8.504533, 47.339097], [8.504531, 47.33909], [8.504527, 47.339083], [8.504522, 47.339076], [8.504516, 47.33907], [8.50451, 47.339064], [8.504503, 47.339058], [8.504495, 47.339053], [8.504486, 47.339049], [8.504477, 47.339044], [8.504468, 47.339041], [8.504458, 47.339038], [8.504448, 47.339035], [8.504437, 47.339034], [8.504426, 47.339032], [8.504415, 47.339032], [8.504404, 47.339032], [8.504393, 47.339033], [8.504383, 47.339034], [8.504372, 47.339036], [8.504362, 47.339039], [8.504352, 47.339042], [8.504343, 47.339046], [8.504334, 47.339051], [8.504326, 47.339056], [8.504319, 47.339061], [8.504312, 47.339067], [8.504221, 47.339153], [8.503894, 47.3395], [8.503889, 47.339505], [8.503884, 47.33951], [8.503878, 47.339514], [8.503871, 47.339517], [8.503864, 47.339521], [8.503857, 47.339524], [8.503849, 47.339526], [8.503841, 47.339528], [8.503833, 47.33953], [8.503824, 47.339531], [8.503816, 47.339531], [8.503807, 47.339531], [8.503798, 47.339531], [8.50379, 47.33953], [8.503782, 47.339529], [8.503774, 47.339527], [8.503766, 47.339524], [8.503758, 47.339521], [8.503751, 47.339518], [8.503744, 47.339514], [8.503738, 47.33951], [8.503733, 47.339506], [8.503728, 47.339501], [8.503723, 47.339496], [8.503719, 47.339491], [8.503716, 47.339486], [8.503714, 47.33948], [8.503712, 47.339474], [8.503711, 47.339468], [8.503705, 47.339404], [8.503701, 47.339313], [8.503707, 47.339222], [8.503724, 47.339132], [8.503751, 47.339043], [8.503833, 47.338817], [8.503983, 47.338465], [8.503996, 47.338438], [8.504013, 47.338412], [8.504033, 47.338387], [8.504055, 47.338364], [8.504081, 47.338341], [8.504109, 47.338321], [8.50414, 47.338302], [8.504173, 47.338284], [8.504208, 47.338269], [8.504328, 47.338221], [8.504346, 47.338213], [8.504363, 47.338204], [8.504378, 47.338194], [8.504393, 47.338183], [8.504405, 47.338172], [8.504416, 47.338159], [8.504426, 47.338146], [8.504433, 47.338132], [8.504439, 47.338118], [8.504443, 47.338104], [8.504445, 47.338089], [8.504444, 47.338075], [8.504438, 47.337979], [8.504437, 47.337949], [8.504441, 47.337918], [8.504448, 47.337888], [8.504458, 47.337858], [8.504473, 47.337829], [8.50449, 47.337801], [8.504545, 47.337721], [8.504549, 47.337715], [8.504552, 47.337709], [8.504554, 47.337703], [8.504555, 47.337697], [8.504556, 47.337691], [8.504555, 47.337684], [8.504554, 47.337678], [8.504552, 47.337672], [8.50455, 47.337666], [8.504546, 47.33766], [8.504542, 47.337654], [8.504537, 47.337649], [8.504531, 47.337644], [8.504525, 47.337639], [8.504518, 47.337635], [8.504511, 47.337631], [8.504503, 47.337627], [8.504494, 47.337624], [8.504486, 47.337622], [8.504477, 47.33762], [8.504468, 47.337619], [8.504459, 47.337618], [8.504449, 47.337617], [8.50444, 47.337618], [8.504431, 47.337618], [8.504421, 47.33762], [8.504413, 47.337622], [8.504404, 47.337624], [8.504396, 47.337627], [8.504388, 47.33763], [8.50438, 47.337634], [8.504373, 47.337639], [8.504367, 47.337643], [8.50425, 47.337737], [8.504129, 47.337861], [8.504115, 47.337877], [8.504102, 47.337894], [8.504092, 47.337912], [8.504082, 47.337931], [8.504069, 47.337949], [8.504054, 47.337966], [8.504037, 47.337982], [8.504018, 47.337997], [8.503997, 47.338011], [8.50385, 47.338097], [8.503822, 47.338113], [8.503791, 47.338126], [8.503758, 47.338138], [8.503724, 47.338148], [8.503689, 47.338155], [8.503653, 47.338161], [8.503617, 47.338164], [8.503334, 47.338179], [8.503268, 47.338184], [8.503202, 47.338194], [8.503138, 47.338207], [8.503076, 47.338223], [8.503016, 47.338244], [8.502959, 47.338267], [8.502905, 47.338294], [8.502743, 47.338381], [8.502658, 47.338427], [8.502361, 47.338614], [8.502331, 47.338631], [8.502299, 47.338647], [8.502265, 47.338661], [8.50223, 47.338673], [8.502063, 47.338725], [8.502049, 47.338729], [8.502036, 47.338735], [8.502024, 47.338741], [8.502013, 47.338748], [8.502003, 47.338755], [8.501993, 47.338764], [8.501985, 47.338772], [8.501978, 47.338781], [8.501972, 47.338791], [8.501967, 47.338801], [8.501964, 47.338811], [8.501892, 47.339072], [8.501877, 47.339116], [8.501856, 47.339159], [8.50183, 47.339201], [8.501628, 47.339487], [8.50161, 47.339509], [8.50159, 47.33953], [8.501566, 47.33955], [8.50154, 47.339569], [8.501512, 47.339585], [8.50149, 47.339597], [8.501466, 47.339606], [8.501441, 47.339615], [8.501415, 47.339622], [8.501388, 47.339627], [8.50136, 47.339631], [8.501332, 47.339633], [8.501305, 47.339633], [8.501277, 47.339632], [8.501249, 47.339629], [8.501222, 47.339625], [8.501195, 47.339619], [8.50117, 47.339611], [8.501145, 47.339602], [8.501122, 47.339591], [8.5011, 47.339579], [8.50108, 47.339566], [8.501061, 47.339552], [8.501044, 47.339537], [8.50103, 47.339521], [8.501017, 47.339504], [8.501007, 47.339486], [8.500999, 47.339468], [8.500993, 47.339449], [8.50099, 47.33943], [8.500973, 47.339272], [8.500965, 47.339226], [8.500952, 47.339181], [8.500933, 47.339137], [8.500908, 47.339094], [8.500822, 47.338962], [8.500796, 47.338916], [8.500775, 47.338869], [8.50076, 47.338821], [8.500738, 47.33873], [8.500619, 47.33832], [8.500562, 47.33815], [8.500538, 47.338098]]], "type": "MultiLineString"}, "id": "165", "properties": {}, "type": "Feature"}, {"bbox": [8.537073, 47.397405, 8.537829, 47.397951], "geometry": {"coordinates": [[[8.537829, 47.397405], [8.537073, 47.397951]]], "type": "MultiLineString"}, "id": "167", "properties": {}, "type": "Feature"}, {"bbox": [8.532453, 47.340658, 8.532881, 47.34071], "geometry": {"coordinates": [[[8.532881, 47.340658], [8.532453, 47.34071]]], "type": "MultiLineString"}, "id": "168", "properties": {}, "type": "Feature"}, {"bbox": [8.588578, 47.359076, 8.589072, 47.359809], "geometry": {"coordinates": [[[8.588578, 47.359809], [8.589072, 47.359076]]], "type": "MultiLineString"}, "id": "171", "properties": {}, "type": "Feature"}, {"bbox": [8.546656, 47.366147, 8.547546, 47.366644], "geometry": {"coordinates": [[[8.546656, 47.366147], [8.546724, 47.366192], [8.547427, 47.366634], [8.547546, 47.366644]]], "type": "MultiLineString"}, "id": "173", "properties": {}, "type": "Feature"}, {"bbox": [8.488164, 47.353166, 8.489737, 47.357567], "geometry": {"coordinates": [[[8.48886, 47.357567], [8.488853, 47.357551], [8.488852, 47.357547], [8.488851, 47.357543], [8.48885, 47.357539], [8.48885, 47.357535], [8.488851, 47.357532], [8.488852, 47.357528], [8.488854, 47.357524], [8.488856, 47.357521], [8.488858, 47.357517], [8.488861, 47.357514], [8.488864, 47.357511], [8.488868, 47.357508], [8.488872, 47.357505], [8.488877, 47.357503], [8.488881, 47.3575], [8.488937, 47.357481], [8.488947, 47.357478], [8.488956, 47.357473], [8.488964, 47.357469], [8.488972, 47.357464], [8.48898, 47.357458], [8.488986, 47.357452], [8.488992, 47.357446], [8.488997, 47.357439], [8.489001, 47.357432], [8.489004, 47.357425], [8.489006, 47.357418], [8.489008, 47.357411], [8.489008, 47.357403], [8.489008, 47.357396], [8.489006, 47.357367], [8.489008, 47.357338], [8.489013, 47.357309], [8.489022, 47.35728], [8.489034, 47.357252], [8.48907, 47.357179], [8.489077, 47.357169], [8.489085, 47.357159], [8.489094, 47.357149], [8.489105, 47.35714], [8.489111, 47.357137], [8.489118, 47.357133], [8.489123, 47.357129], [8.489128, 47.357125], [8.489133, 47.35712], [8.489136, 47.357115], [8.489146, 47.357096], [8.489154, 47.357076], [8.489158, 47.357055], [8.489161, 47.357035], [8.48916, 47.357014], [8.489157, 47.356994], [8.489152, 47.356974], [8.489143, 47.356954], [8.489133, 47.356935], [8.489077, 47.356844], [8.489047, 47.356803], [8.489012, 47.356763], [8.488971, 47.356726], [8.48884, 47.35662], [8.488822, 47.356604], [8.488806, 47.356588], [8.488792, 47.35657], [8.488779, 47.356546], [8.48877, 47.356524], [8.48876, 47.356502], [8.488748, 47.356481], [8.488738, 47.356463], [8.488726, 47.356446], [8.488713, 47.356429], [8.488697, 47.356409], [8.48868, 47.35639], [8.488663, 47.35637], [8.488656, 47.356362], [8.488648, 47.356355], [8.488639, 47.356348], [8.488629, 47.356341], [8.488619, 47.356335], [8.488608, 47.35633], [8.488596, 47.356326], [8.488559, 47.356311], [8.488589, 47.35626], [8.488625, 47.356211], [8.488663, 47.356162], [8.488704, 47.356114], [8.488707, 47.356109], [8.48871, 47.356105], [8.488712, 47.356101], [8.488713, 47.356096], [8.488714, 47.356091], [8.488715, 47.356087], [8.488714, 47.356082], [8.488713, 47.356077], [8.488712, 47.356073], [8.48871, 47.356068], [8.488707, 47.356064], [8.488704, 47.35606], [8.4887, 47.356056], [8.488696, 47.356052], [8.488688, 47.356045], [8.488679, 47.356038], [8.488671, 47.356031], [8.488665, 47.356025], [8.48866, 47.356018], [8.488655, 47.356011], [8.488652, 47.356004], [8.488649, 47.355997], [8.488647, 47.355989], [8.488647, 47.355981], [8.488647, 47.355974], [8.488648, 47.355966], [8.48865, 47.355959], [8.488653, 47.355951], [8.488656, 47.355946], [8.488658, 47.35594], [8.488659, 47.355934], [8.488659, 47.355927], [8.488658, 47.355921], [8.488657, 47.355915], [8.488655, 47.355909], [8.488627, 47.355883], [8.488625, 47.355881], [8.488622, 47.355879], [8.48862, 47.355877], [8.488619, 47.355875], [8.488617, 47.355873], [8.488616, 47.355871], [8.488615, 47.355868], [8.488614, 47.355866], [8.488614, 47.355863], [8.488614, 47.355861], [8.488615, 47.355858], [8.488615, 47.355856], [8.488616, 47.355854], [8.488617, 47.355851], [8.488619, 47.355849], [8.488621, 47.355847], [8.488623, 47.355845], [8.488685, 47.355827], [8.488688, 47.355805], [8.488689, 47.355784], [8.488687, 47.355762], [8.488682, 47.355741], [8.488675, 47.35572], [8.488665, 47.355699], [8.488652, 47.35568], [8.488636, 47.355661], [8.488619, 47.355643], [8.488599, 47.355626], [8.488577, 47.35561], [8.488552, 47.355593], [8.48853, 47.355575], [8.48851, 47.355555], [8.488493, 47.355535], [8.488478, 47.355513], [8.488452, 47.355472], [8.488426, 47.355431], [8.488399, 47.355389], [8.488374, 47.355352], [8.488347, 47.355316], [8.488319, 47.355279], [8.488316, 47.355277], [8.488313, 47.355274], [8.48831, 47.355271], [8.488306, 47.355269], [8.488302, 47.355267], [8.488243, 47.355256], [8.488202, 47.355225], [8.488189, 47.355205], [8.488177, 47.355185], [8.488166, 47.355165], [8.488165, 47.355162], [8.488164, 47.35516], [8.488164, 47.355158], [8.488164, 47.355155], [8.488164, 47.355153], [8.488164, 47.35515], [8.488165, 47.355148], [8.488166, 47.355146], [8.488168, 47.355144], [8.48817, 47.355142], [8.488172, 47.35514], [8.488174, 47.355138], [8.488176, 47.355136], [8.488179, 47.355134], [8.488182, 47.355133], [8.488185, 47.355132], [8.488188, 47.355131], [8.488192, 47.355129], [8.488196, 47.355128], [8.488199, 47.355126], [8.488203, 47.355124], [8.488206, 47.355122], [8.488209, 47.35512], [8.488211, 47.355117], [8.488213, 47.355114], [8.488215, 47.355112], [8.488216, 47.355109], [8.488217, 47.355106], [8.488218, 47.355103], [8.488218, 47.3551], [8.488218, 47.355089], [8.488219, 47.355078], [8.48822, 47.355067], [8.48822, 47.355065], [8.488219, 47.355063], [8.488219, 47.35506], [8.488218, 47.355058], [8.488217, 47.355056], [8.488215, 47.355053], [8.488214, 47.355051], [8.488212, 47.355049], [8.488209, 47.355047], [8.488207, 47.355045], [8.488204, 47.355044], [8.488202, 47.355042], [8.488199, 47.355041], [8.488196, 47.35504], [8.488194, 47.355039], [8.488192, 47.355038], [8.48819, 47.355036], [8.488188, 47.355035], [8.488187, 47.355033], [8.488186, 47.355032], [8.488185, 47.35503], [8.488184, 47.355028], [8.488183, 47.355026], [8.488183, 47.355024], [8.488183, 47.355022], [8.488183, 47.355021], [8.488183, 47.355019], [8.488184, 47.355017], [8.488185, 47.355015], [8.488186, 47.355013], [8.488187, 47.355012], [8.488189, 47.35501], [8.48819, 47.355009], [8.488192, 47.355007], [8.488194, 47.355006], [8.488197, 47.355005], [8.488199, 47.355004], [8.488201, 47.355003], [8.488204, 47.355002], [8.488207, 47.355002], [8.488209, 47.355001], [8.488212, 47.355001], [8.488215, 47.355001], [8.488218, 47.355001], [8.48822, 47.355002], [8.488226, 47.355002], [8.488231, 47.355002], [8.488236, 47.355002], [8.488241, 47.355002], [8.488246, 47.355001], [8.488251, 47.355], [8.488256, 47.354999], [8.488261, 47.354997], [8.488266, 47.354996], [8.488293, 47.354985], [8.488322, 47.354976], [8.488352, 47.354968], [8.488382, 47.354962], [8.488398, 47.354959], [8.488414, 47.354956], [8.488428, 47.354951], [8.488443, 47.354945], [8.488456, 47.354939], [8.488468, 47.354931], [8.48848, 47.354923], [8.48849, 47.354915], [8.488499, 47.354905], [8.488507, 47.354895], [8.48851, 47.354891], [8.488514, 47.354887], [8.488519, 47.354884], [8.488523, 47.35488], [8.488529, 47.354877], [8.488535, 47.354874], [8.488541, 47.354872], [8.488547, 47.35487], [8.488554, 47.354868], [8.488566, 47.354866], [8.488578, 47.354865], [8.488591, 47.354864], [8.488603, 47.354864], [8.488616, 47.354865], [8.488628, 47.354867], [8.48864, 47.354869], [8.488643, 47.35487], [8.488647, 47.35487], [8.48865, 47.35487], [8.488654, 47.35487], [8.488657, 47.35487], [8.48866, 47.35487], [8.488663, 47.354869], [8.488667, 47.354868], [8.48867, 47.354867], [8.488673, 47.354866], [8.488675, 47.354865], [8.488678, 47.354864], [8.48868, 47.354862], [8.488683, 47.35486], [8.488685, 47.354858], [8.488686, 47.354857], [8.488688, 47.354854], [8.488689, 47.354852], [8.48869, 47.35485], [8.488691, 47.354848], [8.488691, 47.354846], [8.488691, 47.354843], [8.488692, 47.354817], [8.488696, 47.354792], [8.488702, 47.354766], [8.488705, 47.354755], [8.488706, 47.354743], [8.488706, 47.354732], [8.488704, 47.354721], [8.488701, 47.354709], [8.488696, 47.354698], [8.48869, 47.354688], [8.488682, 47.354677], [8.488673, 47.354668], [8.488663, 47.354659], [8.488652, 47.35465], [8.48864, 47.354642], [8.488636, 47.35464], [8.488633, 47.354638], [8.488631, 47.354635], [8.488628, 47.354632], [8.488626, 47.354629], [8.488624, 47.354626], [8.488623, 47.354623], [8.488622, 47.35462], [8.488621, 47.354617], [8.488621, 47.354614], [8.488622, 47.354611], [8.488622, 47.354608], [8.488624, 47.354604], [8.488625, 47.354601], [8.488627, 47.354598], [8.488629, 47.354596], [8.488632, 47.354593], [8.488635, 47.354591], [8.488638, 47.354588], [8.488642, 47.354586], [8.488646, 47.354584], [8.48865, 47.354583], [8.488654, 47.354581], [8.488658, 47.35458], [8.488663, 47.354579], [8.488668, 47.354579], [8.488683, 47.354578], [8.488698, 47.354578], [8.488713, 47.354579], [8.488728, 47.354581], [8.488742, 47.354584], [8.488757, 47.354588], [8.48877, 47.354592], [8.488783, 47.354597], [8.488837, 47.35462], [8.488892, 47.354641], [8.488949, 47.35466], [8.488957, 47.354662], [8.488965, 47.354664], [8.488973, 47.354665], [8.488981, 47.354666], [8.488989, 47.354666], [8.488998, 47.354666], [8.489006, 47.354665], [8.489014, 47.354664], [8.489022, 47.354663], [8.48903, 47.354661], [8.489037, 47.354658], [8.489044, 47.354655], [8.489074, 47.354642], [8.489103, 47.354627], [8.489132, 47.354612], [8.48914, 47.354609], [8.489148, 47.354605], [8.489157, 47.354603], [8.489166, 47.354601], [8.489175, 47.354599], [8.489185, 47.354598], [8.489194, 47.354598], [8.489204, 47.354598], [8.489253, 47.354599], [8.489301, 47.354597], [8.48935, 47.354592], [8.489375, 47.354588], [8.489399, 47.354583], [8.489422, 47.354576], [8.489445, 47.354568], [8.489466, 47.354558], [8.489487, 47.354548], [8.489505, 47.354536], [8.489522, 47.354523], [8.489538, 47.354509], [8.489587, 47.354464], [8.489641, 47.354422], [8.489698, 47.354382], [8.489706, 47.354376], [8.489713, 47.35437], [8.489719, 47.354364], [8.489724, 47.354357], [8.489729, 47.35435], [8.489732, 47.354343], [8.489735, 47.354335], [8.489736, 47.354328], [8.489737, 47.35432], [8.489736, 47.354312], [8.489735, 47.354305], [8.489732, 47.354297], [8.489729, 47.35429], [8.489724, 47.354283], [8.489719, 47.354276], [8.489712, 47.35427], [8.489582, 47.354149], [8.489566, 47.354139], [8.489552, 47.354128], [8.489539, 47.354117], [8.489527, 47.354104], [8.489518, 47.354091], [8.48951, 47.354077], [8.489503, 47.354063], [8.489499, 47.354049], [8.489497, 47.354035], [8.489496, 47.35402], [8.489497, 47.354005], [8.489496, 47.353989], [8.489496, 47.353973], [8.489499, 47.353957], [8.489504, 47.353941], [8.489505, 47.353937], [8.489505, 47.353934], [8.489505, 47.35393], [8.489505, 47.353926], [8.489504, 47.353923], [8.489503, 47.353919], [8.489502, 47.353916], [8.4895, 47.353912], [8.489497, 47.353909], [8.489494, 47.353906], [8.489491, 47.353903], [8.489488, 47.3539], [8.489484, 47.353898], [8.489446, 47.353853], [8.489439, 47.353832], [8.489431, 47.353811], [8.489422, 47.353791], [8.489417, 47.353781], [8.48941, 47.353772], [8.489403, 47.353764], [8.489394, 47.353755], [8.489384, 47.353748], [8.489373, 47.353741], [8.489361, 47.353735], [8.489349, 47.353729], [8.489336, 47.353725], [8.489322, 47.353721], [8.489313, 47.353719], [8.489304, 47.353715], [8.489296, 47.353712], [8.489288, 47.353708], [8.489281, 47.353703], [8.489274, 47.353699], [8.489268, 47.353693], [8.489263, 47.353688], [8.489258, 47.353682], [8.489254, 47.353676], [8.489251, 47.353669], [8.489249, 47.353663], [8.489248, 47.353656], [8.489247, 47.35365], [8.489248, 47.353643], [8.489249, 47.353636], [8.489251, 47.35363], [8.489254, 47.353624], [8.489258, 47.353617], [8.48927, 47.353598], [8.48928, 47.353577], [8.489287, 47.353556], [8.489292, 47.353535], [8.489294, 47.353521], [8.489296, 47.353506], [8.489298, 47.353491], [8.489299, 47.353489], [8.489298, 47.353486], [8.489298, 47.353484], [8.489297, 47.353481], [8.489296, 47.353479], [8.489295, 47.353477], [8.489293, 47.353474], [8.489291, 47.353472], [8.489289, 47.35347], [8.489287, 47.353468], [8.489284, 47.353467], [8.489281, 47.353465], [8.489274, 47.353461], [8.489268, 47.353457], [8.489262, 47.353452], [8.489256, 47.353447], [8.489252, 47.353441], [8.489248, 47.353436], [8.489246, 47.353432], [8.489245, 47.353429], [8.489244, 47.353425], [8.489243, 47.353422], [8.489243, 47.353418], [8.489244, 47.353414], [8.489245, 47.353411], [8.489246, 47.353407], [8.489247, 47.353405], [8.489247, 47.353404], [8.489247, 47.353402], [8.489247, 47.3534], [8.489247, 47.353398], [8.489247, 47.353396], [8.489246, 47.353394], [8.489245, 47.353392], [8.489244, 47.35339], [8.489242, 47.353389], [8.489241, 47.353387], [8.489239, 47.353386], [8.489237, 47.353384], [8.489188, 47.353355], [8.489183, 47.353346], [8.489179, 47.353337], [8.489175, 47.353328], [8.489173, 47.353321], [8.489172, 47.353313], [8.489172, 47.353305], [8.489173, 47.353297], [8.489175, 47.353289], [8.489178, 47.353281], [8.489182, 47.353274], [8.489187, 47.353267], [8.48919, 47.353263], [8.489192, 47.353259], [8.489194, 47.353256], [8.489195, 47.353252], [8.489195, 47.353248], [8.489196, 47.353244], [8.489195, 47.35324], [8.489194, 47.353236], [8.489193, 47.353232], [8.489191, 47.353229], [8.489189, 47.353225], [8.489186, 47.353222], [8.489183, 47.353218], [8.489127, 47.353166]]], "type": "MultiLineString"}, "id": "174", "properties": {}, "type": "Feature"}, {"bbox": [8.527616, 47.346027, 8.528777, 47.346571], "geometry": {"coordinates": [[[8.528777, 47.346571], [8.528637, 47.346495], [8.527616, 47.346027]]], "type": "MultiLineString"}, "id": "176", "properties": {}, "type": "Feature"}, {"bbox": [8.521929, 47.362486, 8.522294, 47.362963], "geometry": {"coordinates": [[[8.522294, 47.362963], [8.521929, 47.362486]]], "type": "MultiLineString"}, "id": "177", "properties": {}, "type": "Feature"}, {"bbox": [8.546024, 47.393921, 8.547212, 47.394011], "geometry": {"coordinates": [[[8.546024, 47.393973], [8.546652, 47.394011], [8.546879, 47.393948], [8.547035, 47.393921], [8.547212, 47.393938]]], "type": "MultiLineString"}, "id": "179", "properties": {}, "type": "Feature"}, {"bbox": [8.543187, 47.378636, 8.543573, 47.378662], "geometry": {"coordinates": [[[8.543187, 47.378636], [8.543573, 47.378662]]], "type": "MultiLineString"}, "id": "180", "properties": {}, "type": "Feature"}, {"bbox": [8.483788, 47.373838, 8.483938, 47.373943], "geometry": {"coordinates": [[[8.483788, 47.373943], [8.483938, 47.373838]]], "type": "MultiLineString"}, "id": "181", "properties": {}, "type": "Feature"}, {"bbox": [8.519334, 47.340674, 8.519876, 47.341249], "geometry": {"coordinates": [[[8.519876, 47.340674], [8.519643, 47.340752], [8.519334, 47.340757], [8.519371, 47.341249], [8.519673, 47.34124], [8.519643, 47.340752]]], "type": "MultiLineString"}, "id": "185", "properties": {}, "type": "Feature"}, {"bbox": [8.484575, 47.370286, 8.48518, 47.370987], "geometry": {"coordinates": [[[8.48518, 47.370987], [8.485117, 47.370909], [8.484847, 47.370622], [8.484575, 47.370286]]], "type": "MultiLineString"}, "id": "189", "properties": {}, "type": "Feature"}, {"bbox": [8.477226, 47.415354, 8.47726, 47.415801], "geometry": {"coordinates": [[[8.477226, 47.415354], [8.477246, 47.415436], [8.47726, 47.415567], [8.477249, 47.415801]]], "type": "MultiLineString"}, "id": "190", "properties": {}, "type": "Feature"}, {"bbox": [8.475309, 47.363622, 8.488603, 47.368431], "geometry": {"coordinates": [[[8.475309, 47.367762], [8.475319, 47.367777], [8.475331, 47.367792], [8.475345, 47.367805], [8.475361, 47.367818], [8.475378, 47.36783], [8.475397, 47.36784], [8.475417, 47.36785], [8.475438, 47.367858], [8.47546, 47.367865], [8.475483, 47.367871], [8.475516, 47.367879], [8.475549, 47.367889], [8.475579, 47.367901], [8.475608, 47.367915], [8.475635, 47.367931], [8.47566, 47.367948], [8.475683, 47.367967], [8.475684, 47.367967], [8.475684, 47.367968], [8.475713, 47.367997], [8.475742, 47.368027], [8.475771, 47.368056], [8.475786, 47.368071], [8.4758, 47.368085], [8.475814, 47.3681], [8.475819, 47.368104], [8.475823, 47.368109], [8.475827, 47.368113], [8.475827, 47.368113], [8.475846, 47.368133], [8.475846, 47.368133], [8.475862, 47.368151], [8.475878, 47.368169], [8.475894, 47.368187], [8.475902, 47.368196], [8.475911, 47.368205], [8.475919, 47.368214], [8.475957, 47.368249], [8.475997, 47.368282], [8.476042, 47.368313], [8.476075, 47.368334], [8.476112, 47.368352], [8.47615, 47.368369], [8.47619, 47.368383], [8.476231, 47.368395], [8.476281, 47.368407], [8.476332, 47.368416], [8.476384, 47.368422], [8.476437, 47.368426], [8.4765, 47.368428], [8.476563, 47.36843], [8.476627, 47.368431], [8.476693, 47.368431], [8.476759, 47.36843], [8.476824, 47.368428], [8.476901, 47.368424], [8.476978, 47.368417], [8.477054, 47.368409], [8.477136, 47.368397], [8.477217, 47.36838], [8.477295, 47.368358], [8.477355, 47.36834], [8.477416, 47.368322], [8.477477, 47.368304], [8.477557, 47.368281], [8.477638, 47.368258], [8.477719, 47.368235], [8.477779, 47.368216], [8.477838, 47.368194], [8.477895, 47.36817], [8.477988, 47.368128], [8.478081, 47.368084], [8.478173, 47.36804], [8.478245, 47.368005], [8.478318, 47.367971], [8.478391, 47.367938], [8.478502, 47.367886], [8.478611, 47.367833], [8.478718, 47.367778], [8.478771, 47.36775], [8.478825, 47.367723], [8.478879, 47.367696], [8.478904, 47.367682], [8.478927, 47.367667], [8.478948, 47.36765], [8.478967, 47.367632], [8.478984, 47.367614], [8.478998, 47.367594], [8.47901, 47.367574], [8.479029, 47.36754], [8.479053, 47.367507], [8.479081, 47.367476], [8.479113, 47.367447], [8.479149, 47.36742], [8.479304, 47.36731], [8.479454, 47.367198], [8.479601, 47.367083], [8.479792, 47.366933], [8.479991, 47.366788], [8.480196, 47.366647], [8.480258, 47.36661], [8.480324, 47.366576], [8.480395, 47.366547], [8.480469, 47.366522], [8.480534, 47.366503], [8.4806, 47.366487], [8.480668, 47.366473], [8.480765, 47.366454], [8.48086, 47.366431], [8.480953, 47.366405], [8.481029, 47.366383], [8.481105, 47.36636], [8.48118, 47.366337], [8.481225, 47.366322], [8.481268, 47.366303], [8.481309, 47.366282], [8.481346, 47.366259], [8.48138, 47.366233], [8.48141, 47.366205], [8.481479, 47.366136], [8.481547, 47.366067], [8.481616, 47.365998], [8.481711, 47.365908], [8.481812, 47.365822], [8.481919, 47.365739], [8.482073, 47.365623], [8.48222, 47.365504], [8.482362, 47.365381], [8.48241, 47.365341], [8.482462, 47.365304], [8.482519, 47.36527], [8.482561, 47.365249], [8.482606, 47.365229], [8.482652, 47.365212], [8.482701, 47.365198], [8.483237, 47.365057], [8.483277, 47.365048], [8.483318, 47.365042], [8.483359, 47.365038], [8.483401, 47.365036], [8.483443, 47.365037], [8.483485, 47.365041], [8.483526, 47.365047], [8.483596, 47.365062], [8.483663, 47.365081], [8.483728, 47.365104], [8.48379, 47.365131], [8.483847, 47.365162], [8.483887, 47.365188], [8.483924, 47.365215], [8.483958, 47.365245], [8.483987, 47.365277], [8.484166, 47.365487], [8.484183, 47.365505], [8.484202, 47.365523], [8.484224, 47.365539], [8.484247, 47.365554], [8.484273, 47.365568], [8.484299, 47.36558], [8.484328, 47.36559], [8.484357, 47.365599], [8.484388, 47.365607], [8.484419, 47.365612], [8.484451, 47.365616], [8.484483, 47.365617], [8.484555, 47.365617], [8.484626, 47.365614], [8.484697, 47.365607], [8.485201, 47.365544], [8.48527, 47.365534], [8.485339, 47.365522], [8.485407, 47.365508], [8.485927, 47.365392], [8.485988, 47.365376], [8.486046, 47.365356], [8.486102, 47.365333], [8.486154, 47.365306], [8.486202, 47.365276], [8.486246, 47.365243], [8.486585, 47.364963], [8.486665, 47.364901], [8.486749, 47.364842], [8.486839, 47.364787], [8.486923, 47.36474], [8.487053, 47.364673], [8.487187, 47.364609], [8.487325, 47.364549], [8.487356, 47.364538], [8.487389, 47.364528], [8.487423, 47.36452], [8.487458, 47.364515], [8.487493, 47.364511], [8.487529, 47.36451], [8.487929, 47.364505], [8.487929, 47.364505], [8.487959, 47.364504], [8.487988, 47.364501], [8.488017, 47.364497], [8.488045, 47.36449], [8.488073, 47.364482], [8.488099, 47.364473], [8.488124, 47.364462], [8.488148, 47.36445], [8.48817, 47.364436], [8.48819, 47.364421], [8.488208, 47.364405], [8.488224, 47.364388], [8.488238, 47.36437], [8.488249, 47.364351], [8.488309, 47.364243], [8.488319, 47.364227], [8.488332, 47.364211], [8.488346, 47.364196], [8.488363, 47.364183], [8.488381, 47.36417], [8.4884, 47.364158], [8.488417, 47.364148], [8.488433, 47.364138], [8.488447, 47.364126], [8.48846, 47.364113], [8.488471, 47.3641], [8.488481, 47.364087], [8.488489, 47.364072], [8.488495, 47.364058], [8.488499, 47.364043], [8.48854, 47.363857], [8.488551, 47.363816], [8.488565, 47.363775], [8.488582, 47.363735], [8.488593, 47.363707], [8.4886, 47.363678], [8.488603, 47.363649], [8.488603, 47.363622]]], "type": "MultiLineString"}, "id": "192", "properties": {}, "type": "Feature"}, {"bbox": [8.520342, 47.388023, 8.520493, 47.388338], "geometry": {"coordinates": [[[8.520398, 47.388023], [8.520488, 47.388105], [8.520342, 47.388177], [8.520493, 47.388338]]], "type": "MultiLineString"}, "id": "193", "properties": {}, "type": "Feature"}, {"bbox": [8.564824, 47.408457, 8.565001, 47.408513], "geometry": {"coordinates": [[[8.564824, 47.408457], [8.565001, 47.408513]]], "type": "MultiLineString"}, "id": "195", "properties": {}, "type": "Feature"}, {"bbox": [8.553916, 47.419436, 8.554508, 47.420081], "geometry": {"coordinates": [[[8.553916, 47.419436], [8.554508, 47.420081]]], "type": "MultiLineString"}, "id": "196", "properties": {}, "type": "Feature"}, {"bbox": [8.543105, 47.372696, 8.543516, 47.373048], "geometry": {"coordinates": [[[8.543114, 47.372932], [8.543105, 47.373042], [8.543461, 47.373043], [8.543498, 47.373048], [8.543499, 47.372961], [8.543486, 47.372941], [8.543449, 47.372919], [8.543442, 47.372851], [8.5435, 47.372841], [8.543516, 47.37272], [8.543181, 47.372696], [8.543153, 47.372803], [8.543114, 47.372932]]], "type": "MultiLineString"}, "id": "199", "properties": {}, "type": "Feature"}, {"bbox": [8.560056, 47.360056, 8.561517, 47.360242], "geometry": {"coordinates": [[[8.560056, 47.360114], [8.560136, 47.360073], [8.56051, 47.360056], [8.560568, 47.360056], [8.560625, 47.360059], [8.560682, 47.360067], [8.560737, 47.360077], [8.560791, 47.360092], [8.561397, 47.36022], [8.561517, 47.360242]]], "type": "MultiLineString"}, "id": "206", "properties": {}, "type": "Feature"}, {"bbox": [8.581691, 47.357651, 8.582542, 47.358321], "geometry": {"coordinates": [[[8.581691, 47.357651], [8.581717, 47.357686], [8.581994, 47.35786], [8.582377, 47.358054], [8.582541, 47.358177], [8.582541, 47.358291], [8.582542, 47.358321]]], "type": "MultiLineString"}, "id": "208", "properties": {}, "type": "Feature"}, {"bbox": [8.525821, 47.413187, 8.526776, 47.41352], "geometry": {"coordinates": [[[8.526776, 47.413187], [8.525821, 47.41352]]], "type": "MultiLineString"}, "id": "209", "properties": {}, "type": "Feature"}, {"bbox": [8.532061, 47.338521, 8.533662, 47.338666], "geometry": {"coordinates": [[[8.532061, 47.338521], [8.53317, 47.3386], [8.533662, 47.338666]]], "type": "MultiLineString"}, "id": "210", "properties": {}, "type": "Feature"}, {"bbox": [8.535764, 47.374103, 8.53634, 47.374405], "geometry": {"coordinates": [[[8.53634, 47.374103], [8.536235, 47.374165], [8.535764, 47.374405]]], "type": "MultiLineString"}, "id": "211", "properties": {}, "type": "Feature"}, {"bbox": [8.55998, 47.353611, 8.56169, 47.353982], "geometry": {"coordinates": [[[8.55998, 47.353982], [8.560013, 47.35389], [8.560032, 47.353802], [8.560063, 47.35363], [8.560462, 47.353618], [8.561101, 47.353611], [8.561155, 47.353613], [8.56169, 47.353713]]], "type": "MultiLineString"}, "id": "213", "properties": {}, "type": "Feature"}, {"bbox": [8.483188, 47.408676, 8.48508, 47.409581], "geometry": {"coordinates": [[[8.483188, 47.408676], [8.483431, 47.408919], [8.484006, 47.4091], [8.484043, 47.409093], [8.484261, 47.409167], [8.484751, 47.409376], [8.484924, 47.409376], [8.48508, 47.409581]]], "type": "MultiLineString"}, "id": "214", "properties": {}, "type": "Feature"}, {"bbox": [8.54403, 47.37596, 8.544563, 47.376009], "geometry": {"coordinates": [[[8.54403, 47.37596], [8.544563, 47.376009]]], "type": "MultiLineString"}, "id": "217", "properties": {}, "type": "Feature"}, {"bbox": [8.526752, 47.375738, 8.527497, 47.37655], "geometry": {"coordinates": [[[8.526752, 47.376523], [8.5268, 47.37655], [8.526927, 47.3765], [8.526804, 47.376375], [8.527409, 47.376101], [8.527497, 47.376065], [8.52715, 47.375844], [8.526929, 47.375746], [8.526915, 47.375743], [8.5269, 47.37574], [8.526886, 47.375739], [8.526871, 47.375738], [8.526856, 47.375739]]], "type": "MultiLineString"}, "id": "219", "properties": {}, "type": "Feature"}, {"bbox": [8.524694, 47.42382, 8.525058, 47.423949], "geometry": {"coordinates": [[[8.524694, 47.423949], [8.524889, 47.423861], [8.525058, 47.42382]]], "type": "MultiLineString"}, "id": "221", "properties": {}, "type": "Feature"}, {"bbox": [8.53144, 47.418311, 8.534038, 47.419757], "geometry": {"coordinates": [[[8.533602, 47.419757], [8.534038, 47.419125], [8.532609, 47.418672], [8.53144, 47.418311]]], "type": "MultiLineString"}, "id": "222", "properties": {}, "type": "Feature"}, {"bbox": [8.532971, 47.417452, 8.53339, 47.418109], "geometry": {"coordinates": [[[8.53339, 47.417452], [8.532971, 47.418067], [8.532982, 47.418109]]], "type": "MultiLineString"}, "id": "223", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.38359, 8.539735, 47.38385], "geometry": {"coordinates": [[[8.539243, 47.38359], [8.539429, 47.383714], [8.539648, 47.383793], [8.539735, 47.38385]]], "type": "MultiLineString"}, "id": "225", "properties": {}, "type": "Feature"}, {"bbox": [8.547652, 47.360063, 8.548039, 47.360141], "geometry": {"coordinates": [[[8.547652, 47.360063], [8.548039, 47.360141]]], "type": "MultiLineString"}, "id": "230", "properties": {}, "type": "Feature"}, {"bbox": [8.506025, 47.421764, 8.506079, 47.421856], "geometry": {"coordinates": [[[8.506079, 47.421856], [8.506025, 47.421764]]], "type": "MultiLineString"}, "id": "237", "properties": {}, "type": "Feature"}, {"bbox": [8.53216, 47.414362, 8.532507, 47.414446], "geometry": {"coordinates": [[[8.532507, 47.414362], [8.532391, 47.414369], [8.53216, 47.414446]]], "type": "MultiLineString"}, "id": "238", "properties": {}, "type": "Feature"}, {"bbox": [8.507387, 47.383798, 8.508539, 47.38426], "geometry": {"coordinates": [[[8.508539, 47.383798], [8.508381, 47.383859], [8.507855, 47.384084], [8.507492, 47.384238], [8.507387, 47.38426]]], "type": "MultiLineString"}, "id": "239", "properties": {}, "type": "Feature"}, {"bbox": [8.544004, 47.385795, 8.544212, 47.386434], "geometry": {"coordinates": [[[8.544212, 47.385795], [8.54419, 47.385856], [8.544004, 47.38639], [8.544021, 47.386434]]], "type": "MultiLineString"}, "id": "240", "properties": {}, "type": "Feature"}, {"bbox": [8.532337, 47.412829, 8.532577, 47.413235], "geometry": {"coordinates": [[[8.532337, 47.413235], [8.532475, 47.413116], [8.532577, 47.412829]]], "type": "MultiLineString"}, "id": "245", "properties": {}, "type": "Feature"}, {"bbox": [8.537085, 47.419071, 8.53712, 47.419424], "geometry": {"coordinates": [[[8.53712, 47.419424], [8.53709, 47.41919], [8.537085, 47.419071]]], "type": "MultiLineString"}, "id": "247", "properties": {}, "type": "Feature"}, {"bbox": [8.490657, 47.376951, 8.490781, 47.377215], "geometry": {"coordinates": [[[8.490781, 47.376951], [8.490657, 47.377215]]], "type": "MultiLineString"}, "id": "250", "properties": {}, "type": "Feature"}, {"bbox": [8.536921, 47.379839, 8.5376, 47.38002], "geometry": {"coordinates": [[[8.5376, 47.379839], [8.536921, 47.38002]]], "type": "MultiLineString"}, "id": "254", "properties": {}, "type": "Feature"}, {"bbox": [8.479677, 47.374397, 8.480959, 47.374617], "geometry": {"coordinates": [[[8.480959, 47.374617], [8.480725, 47.374592], [8.479813, 47.374459], [8.479677, 47.374397]]], "type": "MultiLineString"}, "id": "256", "properties": {}, "type": "Feature"}, {"bbox": [8.504001, 47.364569, 8.504601, 47.364583], "geometry": {"coordinates": [[[8.504001, 47.364569], [8.504601, 47.364583]]], "type": "MultiLineString"}, "id": "258", "properties": {}, "type": "Feature"}, {"bbox": [8.502482, 47.344268, 8.511199, 47.352536], "geometry": {"coordinates": [[[8.502904, 47.352536], [8.502899, 47.352348], [8.502898, 47.352314], [8.502901, 47.352279], [8.502908, 47.352245], [8.50302, 47.351789], [8.50303, 47.351728], [8.503033, 47.351668], [8.503027, 47.351607], [8.503013, 47.351548], [8.502991, 47.351489], [8.502962, 47.351432], [8.502925, 47.351377], [8.50288, 47.351324], [8.502583, 47.351008], [8.502554, 47.350974], [8.50253, 47.350938], [8.50251, 47.350901], [8.502496, 47.350862], [8.502486, 47.350823], [8.502482, 47.350784], [8.502484, 47.350744], [8.50249, 47.350706], [8.502501, 47.350668], [8.502517, 47.350632], [8.502537, 47.350596], [8.502562, 47.350562], [8.502621, 47.35049], [8.502683, 47.350444], [8.502712, 47.350424], [8.502744, 47.350405], [8.502778, 47.350388], [8.502814, 47.350374], [8.502852, 47.350362], [8.502892, 47.350352], [8.502932, 47.350344], [8.502973, 47.350339], [8.503015, 47.350337], [8.503025, 47.350337], [8.503034, 47.350337], [8.503043, 47.350337], [8.503154, 47.350341], [8.503264, 47.35035], [8.503373, 47.350365], [8.503711, 47.35042], [8.503802, 47.350432], [8.503894, 47.350437], [8.503986, 47.350436], [8.504064, 47.350431], [8.504141, 47.350421], [8.504217, 47.350407], [8.50429, 47.350389], [8.504361, 47.350366], [8.504429, 47.35034], [8.504494, 47.35031], [8.504554, 47.350276], [8.504597, 47.350248], [8.504636, 47.350218], [8.504671, 47.350185], [8.504702, 47.350151], [8.504728, 47.350114], [8.50475, 47.350077], [8.504766, 47.350038], [8.504807, 47.349935], [8.504852, 47.349833], [8.504902, 47.349732], [8.504997, 47.349549], [8.505291, 47.348871], [8.505307, 47.348826], [8.505318, 47.34878], [8.505324, 47.348733], [8.505324, 47.348687], [8.505318, 47.34864], [8.505256, 47.348309], [8.505253, 47.348282], [8.505253, 47.348255], [8.505257, 47.348227], [8.505264, 47.3482], [8.505275, 47.348174], [8.505289, 47.348148], [8.505306, 47.348123], [8.505327, 47.348099], [8.50535, 47.348077], [8.505376, 47.348056], [8.505405, 47.348037], [8.505437, 47.34802], [8.50547, 47.348004], [8.505505, 47.347991], [8.505542, 47.347979], [8.50558, 47.34797], [8.50562, 47.347964], [8.505872, 47.347928], [8.505906, 47.347922], [8.505939, 47.347915], [8.505972, 47.347905], [8.506002, 47.347893], [8.506031, 47.347879], [8.506058, 47.347864], [8.506083, 47.347847], [8.506106, 47.347828], [8.506126, 47.347808], [8.506143, 47.347788], [8.506186, 47.34773], [8.506199, 47.347712], [8.506208, 47.347693], [8.506216, 47.347673], [8.50622, 47.347654], [8.506222, 47.347634], [8.506221, 47.347613], [8.506218, 47.347593], [8.506212, 47.347574], [8.506204, 47.347555], [8.506193, 47.347536], [8.506179, 47.347518], [8.506163, 47.347501], [8.506145, 47.347485], [8.506125, 47.34747], [8.506103, 47.347457], [8.505988, 47.347392], [8.505972, 47.347381], [8.505956, 47.34737], [8.505942, 47.347358], [8.50593, 47.347345], [8.505919, 47.347331], [8.505911, 47.347317], [8.505904, 47.347302], [8.505899, 47.347287], [8.505896, 47.347271], [8.505882, 47.347156], [8.505881, 47.347134], [8.505882, 47.347111], [8.505886, 47.347089], [8.505894, 47.347068], [8.505904, 47.347047], [8.505916, 47.347026], [8.505931, 47.347006], [8.505949, 47.346988], [8.505969, 47.34697], [8.505991, 47.346954], [8.506015, 47.346939], [8.506041, 47.346925], [8.506294, 47.346805], [8.506317, 47.346793], [8.506339, 47.34678], [8.506359, 47.346766], [8.506377, 47.34675], [8.506393, 47.346734], [8.506407, 47.346716], [8.506418, 47.346698], [8.506428, 47.34668], [8.506435, 47.346661], [8.50644, 47.346641], [8.506442, 47.346621], [8.506442, 47.346602], [8.506425, 47.346364], [8.506425, 47.346341], [8.506428, 47.346318], [8.506434, 47.346295], [8.506443, 47.346272], [8.506455, 47.346251], [8.506469, 47.34623], [8.506487, 47.34621], [8.506506, 47.346191], [8.506528, 47.346173], [8.506635, 47.346096], [8.506672, 47.346066], [8.506704, 47.346035], [8.506732, 47.346001], [8.506754, 47.345966], [8.506772, 47.345929], [8.506847, 47.345747], [8.506888, 47.345612], [8.506891, 47.345599], [8.506892, 47.345585], [8.506892, 47.345571], [8.50689, 47.345558], [8.506887, 47.345545], [8.506881, 47.345531], [8.506874, 47.345519], [8.506866, 47.345506], [8.506856, 47.345495], [8.506845, 47.345484], [8.506832, 47.345473], [8.506818, 47.345463], [8.506803, 47.345455], [8.506787, 47.345447], [8.506769, 47.34544], [8.506751, 47.345434], [8.506733, 47.345429], [8.506714, 47.345425], [8.506378, 47.34537], [8.506109, 47.345308], [8.506097, 47.345305], [8.506086, 47.345301], [8.506075, 47.345297], [8.506065, 47.345292], [8.506055, 47.345286], [8.506047, 47.34528], [8.506039, 47.345273], [8.506032, 47.345266], [8.506026, 47.345258], [8.506022, 47.34525], [8.506018, 47.345242], [8.506015, 47.345234], [8.506014, 47.345225], [8.506017, 47.345216], [8.506018, 47.345207], [8.506018, 47.345198], [8.506014, 47.345159], [8.506014, 47.345159], [8.506012, 47.345148], [8.506009, 47.345138], [8.506005, 47.345127], [8.505999, 47.345117], [8.505992, 47.345108], [8.505984, 47.345098], [8.505975, 47.34509], [8.505966, 47.345077], [8.505958, 47.345064], [8.505952, 47.345051], [8.505948, 47.345037], [8.505946, 47.345023], [8.505945, 47.345009], [8.505946, 47.344995], [8.505949, 47.344981], [8.505954, 47.344968], [8.50596, 47.344954], [8.506021, 47.34485], [8.506048, 47.344809], [8.506079, 47.34477], [8.506115, 47.344732], [8.506155, 47.344697], [8.506199, 47.344664], [8.506465, 47.344482], [8.506533, 47.344439], [8.506607, 47.344401], [8.506685, 47.344366], [8.506767, 47.344337], [8.506853, 47.344313], [8.506941, 47.344293], [8.507032, 47.34428], [8.507124, 47.344271], [8.507216, 47.344268], [8.507309, 47.344271], [8.507401, 47.344279], [8.507492, 47.344292], [8.50758, 47.344311], [8.507666, 47.344335], [8.507749, 47.344364], [8.507876, 47.344414], [8.507997, 47.344467], [8.508111, 47.344527], [8.508216, 47.344593], [8.508311, 47.344667], [8.508395, 47.344745], [8.508469, 47.344829], [8.509034, 47.345547], [8.509075, 47.345605], [8.509109, 47.345664], [8.509136, 47.345725], [8.509156, 47.345787], [8.509224, 47.34605], [8.509234, 47.346081], [8.509247, 47.346112], [8.509264, 47.346141], [8.509285, 47.34617], [8.509313, 47.346206], [8.509456, 47.346386], [8.50949, 47.346425], [8.509528, 47.346461], [8.509571, 47.346495], [8.509619, 47.346526], [8.50967, 47.346554], [8.509724, 47.346579], [8.509897, 47.34665], [8.509954, 47.346675], [8.510006, 47.346704], [8.510055, 47.346736], [8.5101, 47.346771], [8.510296, 47.346938], [8.510457, 47.34707], [8.510625, 47.347197], [8.510801, 47.34732], [8.510891, 47.347377], [8.510986, 47.34743], [8.511086, 47.347478], [8.511112, 47.347491], [8.511137, 47.347506], [8.51116, 47.347523], [8.511181, 47.34754], [8.511199, 47.347559]]], "type": "MultiLineString"}, "id": "259", "properties": {}, "type": "Feature"}, {"bbox": [8.521807, 47.346928, 8.523546, 47.348425], "geometry": {"coordinates": [[[8.523546, 47.348425], [8.523388, 47.348321], [8.523252, 47.348254], [8.52314, 47.348191], [8.523047, 47.348108], [8.522774, 47.347808], [8.522608, 47.347609], [8.522366, 47.347413], [8.522304, 47.347349], [8.522028, 47.347106], [8.521838, 47.346972], [8.521831, 47.346966], [8.521824, 47.346959], [8.521818, 47.346951], [8.521814, 47.346944], [8.52181, 47.346936], [8.521807, 47.346928]]], "type": "MultiLineString"}, "id": "262", "properties": {}, "type": "Feature"}, {"bbox": [8.494849, 47.396436, 8.496708, 47.397204], "geometry": {"coordinates": [[[8.494849, 47.397204], [8.495743, 47.396834], [8.496708, 47.396436]]], "type": "MultiLineString"}, "id": "265", "properties": {}, "type": "Feature"}, {"bbox": [8.518881, 47.340674, 8.519876, 47.34072], "geometry": {"coordinates": [[[8.519876, 47.340674], [8.51916, 47.340715], [8.518881, 47.34072]]], "type": "MultiLineString"}, "id": "266", "properties": {}, "type": "Feature"}, {"bbox": [8.523147, 47.377125, 8.524676, 47.378677], "geometry": {"coordinates": [[[8.523147, 47.378677], [8.523147, 47.378513], [8.524676, 47.377891], [8.524051, 47.377125]]], "type": "MultiLineString"}, "id": "267", "properties": {}, "type": "Feature"}, {"bbox": [8.56133, 47.362504, 8.561757, 47.363018], "geometry": {"coordinates": [[[8.56133, 47.363018], [8.561704, 47.362564], [8.561757, 47.362504]]], "type": "MultiLineString"}, "id": "268", "properties": {}, "type": "Feature"}, {"bbox": [8.545073, 47.368196, 8.545754, 47.368452], "geometry": {"coordinates": [[[8.545073, 47.368196], [8.545754, 47.368452]]], "type": "MultiLineString"}, "id": "269", "properties": {}, "type": "Feature"}, {"bbox": [8.48971, 47.378398, 8.491322, 47.379122], "geometry": {"coordinates": [[[8.491322, 47.379122], [8.491133, 47.379037], [8.48971, 47.378398]]], "type": "MultiLineString"}, "id": "273", "properties": {}, "type": "Feature"}, {"bbox": [8.547164, 47.367672, 8.548022, 47.368391], "geometry": {"coordinates": [[[8.548022, 47.36771], [8.547874, 47.367672], [8.547407, 47.368152], [8.547455, 47.36818], [8.547258, 47.368323], [8.547164, 47.368391]]], "type": "MultiLineString"}, "id": "274", "properties": {}, "type": "Feature"}, {"bbox": [8.523277, 47.366343, 8.524948, 47.367437], "geometry": {"coordinates": [[[8.524948, 47.366343], [8.524447, 47.36664], [8.523547, 47.367166], [8.523492, 47.367222], [8.523382, 47.367336], [8.523277, 47.367437]]], "type": "MultiLineString"}, "id": "275", "properties": {}, "type": "Feature"}, {"bbox": [8.55794, 47.374888, 8.558454, 47.375389], "geometry": {"coordinates": [[[8.558454, 47.374888], [8.558407, 47.374933], [8.558296, 47.374993], [8.55799, 47.37526], [8.55794, 47.375389]]], "type": "MultiLineString"}, "id": "276", "properties": {}, "type": "Feature"}, {"bbox": [8.598247, 47.354277, 8.600228, 47.3555], "geometry": {"coordinates": [[[8.598247, 47.354277], [8.598422, 47.354553], [8.598444, 47.354596], [8.598724, 47.354691], [8.598727, 47.354793], [8.598804, 47.354851], [8.598809, 47.354878], [8.599177, 47.355009], [8.599206, 47.355039], [8.599198, 47.355063], [8.599164, 47.355103], [8.599158, 47.355132], [8.59918, 47.355163], [8.599501, 47.355376], [8.599538, 47.355384], [8.599579, 47.355374], [8.599762, 47.355267], [8.599791, 47.355261], [8.599823, 47.355272], [8.600001, 47.355391], [8.600067, 47.355413], [8.600189, 47.355471], [8.600228, 47.3555]]], "type": "MultiLineString"}, "id": "277", "properties": {}, "type": "Feature"}, {"bbox": [8.489223, 47.378398, 8.48971, 47.378688], "geometry": {"coordinates": [[[8.48971, 47.378398], [8.489301, 47.378629], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "278", "properties": {}, "type": "Feature"}, {"bbox": [8.532954, 47.411381, 8.533492, 47.41146], "geometry": {"coordinates": [[[8.533492, 47.41146], [8.533448, 47.411429], [8.533258, 47.411408], [8.532954, 47.411381]]], "type": "MultiLineString"}, "id": "280", "properties": {}, "type": "Feature"}, {"bbox": [8.52843, 47.374074, 8.528857, 47.374371], "geometry": {"coordinates": [[[8.52843, 47.374074], [8.528857, 47.374371]]], "type": "MultiLineString"}, "id": "281", "properties": {}, "type": "Feature"}, {"bbox": [8.533209, 47.397787, 8.533568, 47.398872], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.533449, 47.398018], [8.533353, 47.398254], [8.533279, 47.398494], [8.533249, 47.398619], [8.533226, 47.398746], [8.533209, 47.398872]]], "type": "MultiLineString"}, "id": "282", "properties": {}, "type": "Feature"}, {"bbox": [8.536753, 47.428751, 8.536903, 47.430189], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.536754, 47.428941], [8.536753, 47.429131], [8.536759, 47.429322], [8.536773, 47.429512], [8.536829, 47.429805], [8.536903, 47.430189]]], "type": "MultiLineString"}, "id": "284", "properties": {}, "type": "Feature"}, {"bbox": [8.502048, 47.422887, 8.502099, 47.422975], "geometry": {"coordinates": [[[8.502099, 47.422975], [8.502048, 47.422887]]], "type": "MultiLineString"}, "id": "285", "properties": {}, "type": "Feature"}, {"bbox": [8.524645, 47.396597, 8.525234, 47.397894], "geometry": {"coordinates": [[[8.524645, 47.396597], [8.524969, 47.397321], [8.525234, 47.397894]]], "type": "MultiLineString"}, "id": "287", "properties": {}, "type": "Feature"}, {"bbox": [8.552823, 47.387539, 8.561289, 47.389336], "geometry": {"coordinates": [[[8.552823, 47.387815], [8.552949, 47.387763], [8.553035, 47.387725], [8.553117, 47.387683], [8.553195, 47.387637], [8.553253, 47.387631], [8.553404, 47.387549], [8.553407, 47.387547], [8.55341, 47.387545], [8.553414, 47.387543], [8.553418, 47.387542], [8.553422, 47.387541], [8.553426, 47.38754], [8.55343, 47.387539], [8.553434, 47.387539], [8.553438, 47.387539], [8.553442, 47.387539], [8.553447, 47.387539], [8.553451, 47.38754], [8.553455, 47.38754], [8.553459, 47.387541], [8.553463, 47.387543], [8.553466, 47.387544], [8.55347, 47.387546], [8.553473, 47.387548], [8.553476, 47.38755], [8.553478, 47.387552], [8.55348, 47.387555], [8.553482, 47.387557], [8.553484, 47.38756], [8.553485, 47.387563], [8.553486, 47.387566], [8.553487, 47.387568], [8.553487, 47.387571], [8.553487, 47.387574], [8.553486, 47.387577], [8.553485, 47.38758], [8.553484, 47.387583], [8.553482, 47.387585], [8.55348, 47.387588], [8.553419, 47.387672], [8.55356, 47.387668], [8.553718, 47.387708], [8.554117, 47.387929], [8.554153, 47.387947], [8.554194, 47.387964], [8.554198, 47.387965], [8.554203, 47.387967], [8.554208, 47.387968], [8.554213, 47.387969], [8.554218, 47.38797], [8.554223, 47.387971], [8.554229, 47.387971], [8.554229, 47.387971], [8.554567, 47.387954], [8.554841, 47.387942], [8.55487, 47.387942], [8.5549, 47.387943], [8.554929, 47.387946], [8.554958, 47.387951], [8.554986, 47.387958], [8.555013, 47.387966], [8.555038, 47.387976], [8.555038, 47.387976], [8.555039, 47.387976], [8.555048, 47.387981], [8.555057, 47.387985], [8.555066, 47.387991], [8.555073, 47.387997], [8.55508, 47.388003], [8.555086, 47.388009], [8.555091, 47.388016], [8.555095, 47.388024], [8.555098, 47.388031], [8.5551, 47.388039], [8.555102, 47.388047], [8.555102, 47.388054], [8.555101, 47.388062], [8.555068, 47.388123], [8.555003, 47.388232], [8.555027, 47.388255], [8.555295, 47.388242], [8.555302, 47.388241], [8.555308, 47.38824], [8.555315, 47.388239], [8.55537, 47.388227], [8.555467, 47.388232], [8.555535, 47.388255], [8.555547, 47.38826], [8.555558, 47.388266], [8.555568, 47.388272], [8.555577, 47.388279], [8.555586, 47.388286], [8.555593, 47.388294], [8.5556, 47.388302], [8.555606, 47.38831], [8.55561, 47.388319], [8.55566, 47.388444], [8.55566, 47.388444], [8.555669, 47.388461], [8.555681, 47.388477], [8.555694, 47.388492], [8.555709, 47.388506], [8.555822, 47.388611], [8.555859, 47.388611], [8.555988, 47.388671], [8.556026, 47.388687], [8.556065, 47.3887], [8.556106, 47.388711], [8.556149, 47.388719], [8.556192, 47.388725], [8.556236, 47.388728], [8.55628, 47.388728], [8.556446, 47.388722], [8.55648, 47.388722], [8.556514, 47.388724], [8.556548, 47.388728], [8.556581, 47.388734], [8.556697, 47.388758], [8.55672, 47.388739], [8.556826, 47.388668], [8.556926, 47.388602], [8.556953, 47.388585], [8.556982, 47.38857], [8.557013, 47.388556], [8.557045, 47.388544], [8.557079, 47.388534], [8.557121, 47.388523], [8.557163, 47.38851], [8.557204, 47.388496], [8.557398, 47.388428], [8.557424, 47.388417], [8.557449, 47.388406], [8.557472, 47.388393], [8.557494, 47.388378], [8.557514, 47.388362], [8.557514, 47.388362], [8.557524, 47.388354], [8.557553, 47.388371], [8.557559, 47.388374], [8.557565, 47.388378], [8.557569, 47.388383], [8.557574, 47.388387], [8.557577, 47.388392], [8.55758, 47.388397], [8.557582, 47.388403], [8.557584, 47.388408], [8.557584, 47.388413], [8.557584, 47.388419], [8.557584, 47.388424], [8.557582, 47.38843], [8.55757, 47.388461], [8.557555, 47.388492], [8.557537, 47.388522], [8.557384, 47.388751], [8.557365, 47.388784], [8.557351, 47.388818], [8.557341, 47.388853], [8.557341, 47.388856], [8.55734, 47.388859], [8.55734, 47.388861], [8.557341, 47.388864], [8.557341, 47.388866], [8.557342, 47.388869], [8.557344, 47.388871], [8.557345, 47.388873], [8.557347, 47.388875], [8.557349, 47.388877], [8.557352, 47.388879], [8.557354, 47.388881], [8.557357, 47.388883], [8.55736, 47.388884], [8.557364, 47.388885], [8.557367, 47.388886], [8.55737, 47.388887], [8.557374, 47.388887], [8.557378, 47.388888], [8.557381, 47.388888], [8.557385, 47.388888], [8.557389, 47.388888], [8.557392, 47.388887], [8.557396, 47.388886], [8.557399, 47.388885], [8.557402, 47.388884], [8.557405, 47.388883], [8.557408, 47.388881], [8.557413, 47.388879], [8.557441, 47.388862], [8.557467, 47.388845], [8.557493, 47.388827], [8.557511, 47.388815], [8.557529, 47.388804], [8.557549, 47.388793], [8.557702, 47.38872], [8.557777, 47.388687], [8.557856, 47.38866], [8.557939, 47.388638], [8.557991, 47.388624], [8.558041, 47.388608], [8.558088, 47.388588], [8.558132, 47.388565], [8.558514, 47.38835], [8.558594, 47.388307], [8.558677, 47.388267], [8.558763, 47.388231], [8.559272, 47.388027], [8.55934, 47.388011], [8.559411, 47.388015], [8.559742, 47.388083], [8.559761, 47.388088], [8.55978, 47.388094], [8.559798, 47.388101], [8.559815, 47.388109], [8.559831, 47.388118], [8.559846, 47.388128], [8.559859, 47.388139], [8.560043, 47.388305], [8.560103, 47.388363], [8.560106, 47.388367], [8.56011, 47.38837], [8.560115, 47.388373], [8.56012, 47.388375], [8.560125, 47.388378], [8.56013, 47.38838], [8.560137, 47.388382], [8.560143, 47.388385], [8.560149, 47.388389], [8.560155, 47.388392], [8.56016, 47.388396], [8.560186, 47.388419], [8.560346, 47.388537], [8.560353, 47.388543], [8.56036, 47.388549], [8.560366, 47.388556], [8.560371, 47.388563], [8.560394, 47.388599], [8.5604, 47.388607], [8.560407, 47.388615], [8.560415, 47.388622], [8.56044, 47.388644], [8.560448, 47.38865], [8.560457, 47.388656], [8.560467, 47.388661], [8.560549, 47.3887], [8.560573, 47.388712], [8.560596, 47.388726], [8.560618, 47.38874], [8.560854, 47.388905], [8.560863, 47.388912], [8.560871, 47.38892], [8.560878, 47.388927], [8.560885, 47.388936], [8.560889, 47.388944], [8.560893, 47.388953], [8.560908, 47.388993], [8.560911, 47.388999], [8.560915, 47.389006], [8.560919, 47.389013], [8.560925, 47.389019], [8.560932, 47.389024], [8.560939, 47.389029], [8.560956, 47.389042], [8.560972, 47.389055], [8.560987, 47.389069], [8.560999, 47.389084], [8.561037, 47.389131], [8.561048, 47.389144], [8.56106, 47.389157], [8.561074, 47.389169], [8.561134, 47.389219], [8.561243, 47.389296], [8.561289, 47.389336]]], "type": "MultiLineString"}, "id": "294", "properties": {}, "type": "Feature"}, {"bbox": [8.531312, 47.34587, 8.532232, 47.346008], "geometry": {"coordinates": [[[8.532232, 47.346008], [8.532168, 47.346006], [8.531312, 47.34587]]], "type": "MultiLineString"}, "id": "296", "properties": {}, "type": "Feature"}, {"bbox": [8.512422, 47.386948, 8.514593, 47.389485], "geometry": {"coordinates": [[[8.513039, 47.389485], [8.513125, 47.38929], [8.513886, 47.389152], [8.514076, 47.389111], [8.514202, 47.389075], [8.51439, 47.389006], [8.514593, 47.388944], [8.513688, 47.388214], [8.513151, 47.387781], [8.512987, 47.387585], [8.512439, 47.386948], [8.512422, 47.386959]]], "type": "MultiLineString"}, "id": "297", "properties": {}, "type": "Feature"}, {"bbox": [8.54849, 47.369433, 8.548892, 47.370115], "geometry": {"coordinates": [[[8.54849, 47.369433], [8.548884, 47.369989], [8.548892, 47.370115]]], "type": "MultiLineString"}, "id": "298", "properties": {}, "type": "Feature"}, {"bbox": [8.506233, 47.419713, 8.506525, 47.419786], "geometry": {"coordinates": [[[8.506525, 47.419713], [8.506362, 47.41976], [8.506327, 47.419756], [8.506233, 47.419786]]], "type": "MultiLineString"}, "id": "300", "properties": {}, "type": "Feature"}, {"bbox": [8.466448, 47.399868, 8.469223, 47.400576], "geometry": {"coordinates": [[[8.466448, 47.400576], [8.469223, 47.399868]]], "type": "MultiLineString"}, "id": "301", "properties": {}, "type": "Feature"}, {"bbox": [8.510688, 47.3647, 8.512157, 47.366644], "geometry": {"coordinates": [[[8.510688, 47.366644], [8.510877, 47.366596], [8.512157, 47.366398], [8.512104, 47.366226], [8.511596, 47.3647]]], "type": "MultiLineString"}, "id": "302", "properties": {}, "type": "Feature"}, {"bbox": [8.587114, 47.355223, 8.587704, 47.355757], "geometry": {"coordinates": [[[8.587114, 47.355239], [8.587276, 47.355249], [8.587444, 47.355223], [8.587541, 47.355258], [8.587704, 47.355757]]], "type": "MultiLineString"}, "id": "304", "properties": {}, "type": "Feature"}, {"bbox": [8.480574, 47.411418, 8.481075, 47.412216], "geometry": {"coordinates": [[[8.481075, 47.412216], [8.480574, 47.411418]]], "type": "MultiLineString"}, "id": "308", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386925, 8.512422, 47.386959], "geometry": {"coordinates": [[[8.512388, 47.386925], [8.512422, 47.386959]]], "type": "MultiLineString"}, "id": "310", "properties": {}, "type": "Feature"}, {"bbox": [8.504658, 47.422133, 8.50472, 47.422239], "geometry": {"coordinates": [[[8.50472, 47.422239], [8.504658, 47.422133]]], "type": "MultiLineString"}, "id": "312", "properties": {}, "type": "Feature"}, {"bbox": [8.544166, 47.41318, 8.545397, 47.413241], "geometry": {"coordinates": [[[8.544166, 47.413241], [8.545397, 47.41318]]], "type": "MultiLineString"}, "id": "313", "properties": {}, "type": "Feature"}, {"bbox": [8.532609, 47.418109, 8.532982, 47.418672], "geometry": {"coordinates": [[[8.532982, 47.418109], [8.532609, 47.418672]]], "type": "MultiLineString"}, "id": "316", "properties": {}, "type": "Feature"}, {"bbox": [8.553645, 47.366418, 8.554078, 47.366518], "geometry": {"coordinates": [[[8.553645, 47.366418], [8.554078, 47.366518]]], "type": "MultiLineString"}, "id": "325", "properties": {}, "type": "Feature"}, {"bbox": [8.519079, 47.339002, 8.519829, 47.339174], "geometry": {"coordinates": [[[8.519829, 47.339002], [8.519079, 47.339174]]], "type": "MultiLineString"}, "id": "326", "properties": {}, "type": "Feature"}, {"bbox": [8.542281, 47.430787, 8.543024, 47.431113], "geometry": {"coordinates": [[[8.542281, 47.430787], [8.542527, 47.430898], [8.542774, 47.431007], [8.543024, 47.431113]]], "type": "MultiLineString"}, "id": "328", "properties": {}, "type": "Feature"}, {"bbox": [8.481096, 47.396647, 8.481654, 47.397585], "geometry": {"coordinates": [[[8.481654, 47.397585], [8.481096, 47.396647]]], "type": "MultiLineString"}, "id": "331", "properties": {}, "type": "Feature"}, {"bbox": [8.518181, 47.387797, 8.519338, 47.388317], "geometry": {"coordinates": [[[8.518181, 47.388317], [8.518556, 47.388133], [8.518942, 47.387959], [8.519338, 47.387797]]], "type": "MultiLineString"}, "id": "332", "properties": {}, "type": "Feature"}, {"bbox": [8.533892, 47.393371, 8.534295, 47.393549], "geometry": {"coordinates": [[[8.533892, 47.393371], [8.534295, 47.393549]]], "type": "MultiLineString"}, "id": "340", "properties": {}, "type": "Feature"}, {"bbox": [8.552787, 47.382413, 8.571845, 47.391253], "geometry": {"coordinates": [[[8.552825, 47.389011], [8.552836, 47.389034], [8.552844, 47.38906], [8.55285, 47.389087], [8.552853, 47.389114], [8.552852, 47.389141], [8.552848, 47.389168], [8.552793, 47.389425], [8.552788, 47.389462], [8.552787, 47.3895], [8.552792, 47.389537], [8.552802, 47.389573], [8.552817, 47.389609], [8.552897, 47.389774], [8.552919, 47.389812], [8.552945, 47.389848], [8.552977, 47.389883], [8.553013, 47.389915], [8.553053, 47.389945], [8.553097, 47.389973], [8.553173, 47.390016], [8.554156, 47.390572], [8.55418, 47.390586], [8.554202, 47.390603], [8.554222, 47.39062], [8.55424, 47.390639], [8.554255, 47.390659], [8.554268, 47.390679], [8.554277, 47.3907], [8.554284, 47.390722], [8.554289, 47.390744], [8.55429, 47.390766], [8.554288, 47.390788], [8.554284, 47.39081], [8.554277, 47.390832], [8.554267, 47.390853], [8.554161, 47.391046], [8.554152, 47.391065], [8.554146, 47.391084], [8.554141, 47.391103], [8.55414, 47.391123], [8.554182, 47.391207], [8.554295, 47.391253], [8.554424, 47.391238], [8.554509, 47.391171], [8.554644, 47.39093], [8.555077, 47.39028], [8.555087, 47.390264], [8.555094, 47.390247], [8.5551, 47.390229], [8.555102, 47.390212], [8.555103, 47.390194], [8.555101, 47.390176], [8.555097, 47.390159], [8.55509, 47.390142], [8.555081, 47.390125], [8.555037, 47.390051], [8.555025, 47.390029], [8.555016, 47.390006], [8.55501, 47.389983], [8.555008, 47.38996], [8.555008, 47.389937], [8.555011, 47.389913], [8.555018, 47.38989], [8.555027, 47.389868], [8.555244, 47.389419], [8.555258, 47.389394], [8.555275, 47.38937], [8.555295, 47.389346], [8.555318, 47.389324], [8.555343, 47.389303], [8.555371, 47.389284], [8.555401, 47.389266], [8.555428, 47.389253], [8.555455, 47.389241], [8.555484, 47.389231], [8.555591, 47.38919], [8.555692, 47.389145], [8.555788, 47.389093], [8.555948, 47.389], [8.556013, 47.388964], [8.556081, 47.38893], [8.556151, 47.388899], [8.556377, 47.388802], [8.556392, 47.388796], [8.556408, 47.388791], [8.556424, 47.388787], [8.556441, 47.388784], [8.556458, 47.388782], [8.556475, 47.388781], [8.556492, 47.388781], [8.55651, 47.388782], [8.556527, 47.388784], [8.556544, 47.388787], [8.55656, 47.388791], [8.556576, 47.388796], [8.556591, 47.388802], [8.556605, 47.388809], [8.556618, 47.388816], [8.556631, 47.388825], [8.556642, 47.388834], [8.556652, 47.388843], [8.556661, 47.388853], [8.556668, 47.388864], [8.556675, 47.388875], [8.556679, 47.388886], [8.556683, 47.388898], [8.556685, 47.388909], [8.556728, 47.389393], [8.556731, 47.389456], [8.556728, 47.389519], [8.556721, 47.389581], [8.556703, 47.389689], [8.556701, 47.389707], [8.556701, 47.389726], [8.556704, 47.389744], [8.556709, 47.389762], [8.556716, 47.38978], [8.556725, 47.389797], [8.556737, 47.389813], [8.55675, 47.389829], [8.556765, 47.389844], [8.556782, 47.389858], [8.556801, 47.389872], [8.556821, 47.389884], [8.557077, 47.390022], [8.557148, 47.390057], [8.557224, 47.390088], [8.557304, 47.390115], [8.557387, 47.390136], [8.557472, 47.390152], [8.55756, 47.390163], [8.557648, 47.390169], [8.557736, 47.39017], [8.557825, 47.390165], [8.557912, 47.390155], [8.557998, 47.39014], [8.558081, 47.390119], [8.558398, 47.390031], [8.558724, 47.38993], [8.559199, 47.389742], [8.559283, 47.389712], [8.559371, 47.389686], [8.559461, 47.389664], [8.560041, 47.389544], [8.560969, 47.389361], [8.561048, 47.389348], [8.561128, 47.389339], [8.561208, 47.389335], [8.561289, 47.389336], [8.56137, 47.389341], [8.561449, 47.38935], [8.561527, 47.389364], [8.561604, 47.389383], [8.561677, 47.389405], [8.561748, 47.389432], [8.561815, 47.389462], [8.561878, 47.389497], [8.562085, 47.389618], [8.562254, 47.389718], [8.562344, 47.389771], [8.562434, 47.38982], [8.56253, 47.389863], [8.562631, 47.389901], [8.562736, 47.389933], [8.562845, 47.389958], [8.562957, 47.389978], [8.56307, 47.389991], [8.563185, 47.389997], [8.5633, 47.389997], [8.563415, 47.38999], [8.563529, 47.389977], [8.56364, 47.389957], [8.564605, 47.389755], [8.564699, 47.389739], [8.564795, 47.389729], [8.564892, 47.389725], [8.565606, 47.389715], [8.565621, 47.389715], [8.565779, 47.389713], [8.565869, 47.389709], [8.565959, 47.389699], [8.566048, 47.389684], [8.566134, 47.389664], [8.567414, 47.389315], [8.567708, 47.389227], [8.567992, 47.389124], [8.568264, 47.389007], [8.568958, 47.388686], [8.57106, 47.387678], [8.571526, 47.387459], [8.571526, 47.387459], [8.571543, 47.387451], [8.571559, 47.387443], [8.571575, 47.387434], [8.571634, 47.387397], [8.571676, 47.387365], [8.571715, 47.38733], [8.571749, 47.387293], [8.571778, 47.387254], [8.571803, 47.387213], [8.571822, 47.387171], [8.571835, 47.387128], [8.571843, 47.387085], [8.571845, 47.387041], [8.571842, 47.386997], [8.571834, 47.386954], [8.571797, 47.386816], [8.571778, 47.38672], [8.571773, 47.386622], [8.571781, 47.386525], [8.571825, 47.386251], [8.571834, 47.38616], [8.571832, 47.386068], [8.571819, 47.385976], [8.571795, 47.385886], [8.571776, 47.385836], [8.57175, 47.385787], [8.571718, 47.38574], [8.571681, 47.385695], [8.571638, 47.385652], [8.57159, 47.385612], [8.571457, 47.38551], [8.571395, 47.385459], [8.571337, 47.385406], [8.571285, 47.38535], [8.571133, 47.385177], [8.571053, 47.385095], [8.570962, 47.385017], [8.570861, 47.384945], [8.570643, 47.384802], [8.570622, 47.384789], [8.570549, 47.384737], [8.570481, 47.384681], [8.57042, 47.384622], [8.570406, 47.384608], [8.570394, 47.384594], [8.570381, 47.38458], [8.570094, 47.384244], [8.570018, 47.384162], [8.569933, 47.384084], [8.56984, 47.38401], [8.569491, 47.383754], [8.569459, 47.383733], [8.569233, 47.383589], [8.569168, 47.383539], [8.569147, 47.383522], [8.569129, 47.383503], [8.569112, 47.383484], [8.569055, 47.383413], [8.568993, 47.383343], [8.568926, 47.383276], [8.568926, 47.383275], [8.568926, 47.383275], [8.568844, 47.383194], [8.56875, 47.383118], [8.568647, 47.383049], [8.568583, 47.383011], [8.568517, 47.382974], [8.568448, 47.382939], [8.567896, 47.382679], [8.567876, 47.382668], [8.567857, 47.382656], [8.56784, 47.382643], [8.567825, 47.382629], [8.567812, 47.382614], [8.567801, 47.382598], [8.567791, 47.382582], [8.567784, 47.382565], [8.56778, 47.382548], [8.567777, 47.38253], [8.567777, 47.382513], [8.567779, 47.382495], [8.567784, 47.382478], [8.56781, 47.382413]]], "type": "MultiLineString"}, "id": "342", "properties": {}, "type": "Feature"}, {"bbox": [8.504945, 47.354337, 8.506613, 47.354949], "geometry": {"coordinates": [[[8.506613, 47.354949], [8.506438, 47.354869], [8.504945, 47.354337]]], "type": "MultiLineString"}, "id": "345", "properties": {}, "type": "Feature"}, {"bbox": [8.570516, 47.409195, 8.570945, 47.410234], "geometry": {"coordinates": [[[8.570945, 47.409195], [8.570516, 47.410234]]], "type": "MultiLineString"}, "id": "349", "properties": {}, "type": "Feature"}, {"bbox": [8.57691, 47.389016, 8.578247, 47.390184], "geometry": {"coordinates": [[[8.57691, 47.389016], [8.577048, 47.389133], [8.578247, 47.390184]]], "type": "MultiLineString"}, "id": "351", "properties": {}, "type": "Feature"}, {"bbox": [8.563061, 47.362243, 8.563881, 47.362569], "geometry": {"coordinates": [[[8.563881, 47.362569], [8.563061, 47.362243]]], "type": "MultiLineString"}, "id": "352", "properties": {}, "type": "Feature"}, {"bbox": [8.526351, 47.342947, 8.526801, 47.343363], "geometry": {"coordinates": [[[8.526351, 47.343363], [8.526765, 47.342967], [8.526801, 47.342947]]], "type": "MultiLineString"}, "id": "360", "properties": {}, "type": "Feature"}, {"bbox": [8.542359, 47.392509, 8.54277, 47.392905], "geometry": {"coordinates": [[[8.542359, 47.392509], [8.54277, 47.392905]]], "type": "MultiLineString"}, "id": "361", "properties": {}, "type": "Feature"}, {"bbox": [8.53535, 47.423714, 8.53824, 47.424073], "geometry": {"coordinates": [[[8.53535, 47.423714], [8.536771, 47.423835], [8.537203, 47.423846], [8.537461, 47.42393], [8.53824, 47.424073]]], "type": "MultiLineString"}, "id": "362", "properties": {}, "type": "Feature"}, {"bbox": [8.545258, 47.419886, 8.545871, 47.420452], "geometry": {"coordinates": [[[8.545871, 47.419886], [8.545258, 47.420452]]], "type": "MultiLineString"}, "id": "364", "properties": {}, "type": "Feature"}, {"bbox": [8.546858, 47.428787, 8.547382, 47.429007], "geometry": {"coordinates": [[[8.546858, 47.429007], [8.547382, 47.428787]]], "type": "MultiLineString"}, "id": "365", "properties": {}, "type": "Feature"}, {"bbox": [8.500909, 47.363768, 8.501214, 47.364126], "geometry": {"coordinates": [[[8.501203, 47.364126], [8.501214, 47.364044], [8.501005, 47.363826], [8.500909, 47.363768]]], "type": "MultiLineString"}, "id": "367", "properties": {}, "type": "Feature"}, {"bbox": [8.520267, 47.388047, 8.520874, 47.388477], "geometry": {"coordinates": [[[8.520267, 47.388431], [8.520493, 47.388338], [8.520623, 47.388477], [8.520874, 47.388372], [8.520604, 47.388047], [8.520488, 47.388105]]], "type": "MultiLineString"}, "id": "373", "properties": {}, "type": "Feature"}, {"bbox": [8.551982, 47.369979, 8.552264, 47.370251], "geometry": {"coordinates": [[[8.552084, 47.370251], [8.552066, 47.370217], [8.551982, 47.370036], [8.552264, 47.369979]]], "type": "MultiLineString"}, "id": "374", "properties": {}, "type": "Feature"}, {"bbox": [8.518178, 47.380026, 8.518962, 47.380721], "geometry": {"coordinates": [[[8.518962, 47.380721], [8.518178, 47.380026]]], "type": "MultiLineString"}, "id": "375", "properties": {}, "type": "Feature"}, {"bbox": [8.540417, 47.407547, 8.540464, 47.407844], "geometry": {"coordinates": [[[8.540417, 47.407844], [8.540425, 47.407607], [8.540464, 47.407547]]], "type": "MultiLineString"}, "id": "376", "properties": {}, "type": "Feature"}, {"bbox": [8.495984, 47.380581, 8.497188, 47.381454], "geometry": {"coordinates": [[[8.495984, 47.380581], [8.496587, 47.38102], [8.497188, 47.381454]]], "type": "MultiLineString"}, "id": "379", "properties": {}, "type": "Feature"}, {"bbox": [8.535349, 47.382904, 8.536437, 47.383606], "geometry": {"coordinates": [[[8.535349, 47.382904], [8.53571, 47.383139], [8.536073, 47.383373], [8.536437, 47.383606]]], "type": "MultiLineString"}, "id": "380", "properties": {}, "type": "Feature"}, {"bbox": [8.517812, 47.388317, 8.518181, 47.38849], "geometry": {"coordinates": [[[8.518181, 47.388317], [8.518056, 47.388372], [8.517933, 47.38843], [8.517812, 47.38849]]], "type": "MultiLineString"}, "id": "381", "properties": {}, "type": "Feature"}, {"bbox": [8.526732, 47.409519, 8.527893, 47.410236], "geometry": {"coordinates": [[[8.526732, 47.410236], [8.52728, 47.409932], [8.527893, 47.409519]]], "type": "MultiLineString"}, "id": "382", "properties": {}, "type": "Feature"}, {"bbox": [8.537829, 47.397405, 8.538546, 47.397726], "geometry": {"coordinates": [[[8.537829, 47.397405], [8.538033, 47.397502], [8.538239, 47.397596], [8.538447, 47.397688], [8.538546, 47.397726]]], "type": "MultiLineString"}, "id": "383", "properties": {}, "type": "Feature"}, {"bbox": [8.540917, 47.400092, 8.541875, 47.401088], "geometry": {"coordinates": [[[8.541875, 47.400092], [8.54181, 47.400151], [8.540917, 47.401088]]], "type": "MultiLineString"}, "id": "385", "properties": {}, "type": "Feature"}, {"bbox": [8.49597, 47.381697, 8.498266, 47.382741], "geometry": {"coordinates": [[[8.49597, 47.382741], [8.498266, 47.381697]]], "type": "MultiLineString"}, "id": "386", "properties": {}, "type": "Feature"}, {"bbox": [8.577111, 47.408662, 8.577378, 47.409125], "geometry": {"coordinates": [[[8.577111, 47.408662], [8.577378, 47.409125]]], "type": "MultiLineString"}, "id": "390", "properties": {}, "type": "Feature"}, {"bbox": [8.494496, 47.381329, 8.494599, 47.381377], "geometry": {"coordinates": [[[8.494599, 47.381329], [8.494496, 47.381377]]], "type": "MultiLineString"}, "id": "396", "properties": {}, "type": "Feature"}, {"bbox": [8.483755, 47.386824, 8.483796, 47.386935], "geometry": {"coordinates": [[[8.483755, 47.386935], [8.483796, 47.386824]]], "type": "MultiLineString"}, "id": "397", "properties": {}, "type": "Feature"}, {"bbox": [8.543981, 47.373138, 8.545108, 47.373527], "geometry": {"coordinates": [[[8.543981, 47.373138], [8.544158, 47.373163], [8.544332, 47.373197], [8.544501, 47.373241], [8.544665, 47.373293], [8.544786, 47.373339], [8.544903, 47.373389], [8.545016, 47.373445], [8.545108, 47.373527]]], "type": "MultiLineString"}, "id": "402", "properties": {}, "type": "Feature"}, {"bbox": [8.545557, 47.417488, 8.545617, 47.417513], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545617, 47.417513]]], "type": "MultiLineString"}, "id": "405", "properties": {}, "type": "Feature"}, {"bbox": [8.526755, 47.394199, 8.526863, 47.394356], "geometry": {"coordinates": [[[8.526755, 47.394199], [8.526863, 47.394356]]], "type": "MultiLineString"}, "id": "409", "properties": {}, "type": "Feature"}, {"bbox": [8.50611, 47.40651, 8.506552, 47.407126], "geometry": {"coordinates": [[[8.50611, 47.40651], [8.506326, 47.406801], [8.506552, 47.407126]]], "type": "MultiLineString"}, "id": "410", "properties": {}, "type": "Feature"}, {"bbox": [8.542037, 47.418559, 8.542256, 47.419577], "geometry": {"coordinates": [[[8.542037, 47.418559], [8.542133, 47.418777], [8.542154, 47.418879], [8.542205, 47.419203], [8.542256, 47.419577]]], "type": "MultiLineString"}, "id": "411", "properties": {}, "type": "Feature"}, {"bbox": [8.529389, 47.372033, 8.529531, 47.372105], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529389, 47.372105]]], "type": "MultiLineString"}, "id": "412", "properties": {}, "type": "Feature"}, {"bbox": [8.546891, 47.401377, 8.548124, 47.401704], "geometry": {"coordinates": [[[8.548124, 47.401704], [8.547377, 47.40157], [8.547413, 47.401472], [8.546891, 47.401377]]], "type": "MultiLineString"}, "id": "413", "properties": {}, "type": "Feature"}, {"bbox": [8.540623, 47.41644, 8.540718, 47.417106], "geometry": {"coordinates": [[[8.540623, 47.41644], [8.540718, 47.417106]]], "type": "MultiLineString"}, "id": "414", "properties": {}, "type": "Feature"}, {"bbox": [8.555931, 47.355464, 8.556426, 47.355728], "geometry": {"coordinates": [[[8.555931, 47.355464], [8.556341, 47.355656], [8.556426, 47.355728]]], "type": "MultiLineString"}, "id": "415", "properties": {}, "type": "Feature"}, {"bbox": [8.477081, 47.389905, 8.477326, 47.390252], "geometry": {"coordinates": [[[8.477081, 47.389905], [8.477326, 47.390252]]], "type": "MultiLineString"}, "id": "418", "properties": {}, "type": "Feature"}, {"bbox": [8.522843, 47.389517, 8.523385, 47.390189], "geometry": {"coordinates": [[[8.523385, 47.390189], [8.522843, 47.389517]]], "type": "MultiLineString"}, "id": "420", "properties": {}, "type": "Feature"}, {"bbox": [8.540723, 47.373357, 8.540725, 47.373382], "geometry": {"coordinates": [[[8.540725, 47.373382], [8.540723, 47.373357]]], "type": "MultiLineString"}, "id": "422", "properties": {}, "type": "Feature"}, {"bbox": [8.541862, 47.369868, 8.54191, 47.371304], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.541884, 47.369954], [8.541908, 47.370329], [8.54191, 47.370444], [8.541881, 47.370639], [8.541875, 47.370818], [8.541882, 47.371029], [8.541866, 47.371304]]], "type": "MultiLineString"}, "id": "428", "properties": {}, "type": "Feature"}, {"bbox": [8.498487, 47.355102, 8.502567, 47.358013], "geometry": {"coordinates": [[[8.502567, 47.355102], [8.502237, 47.355155], [8.502158, 47.355163], [8.502119, 47.355164], [8.501928, 47.355191], [8.50177, 47.355219], [8.501752, 47.355223], [8.501622, 47.355263], [8.50158, 47.355277], [8.501462, 47.35532], [8.501441, 47.355328], [8.501175, 47.355436], [8.500723, 47.35563], [8.500129, 47.355882], [8.500087, 47.355917], [8.500047, 47.35598], [8.499776, 47.356468], [8.499649, 47.356685], [8.499392, 47.357061], [8.499094, 47.357423], [8.498758, 47.35777], [8.498575, 47.357936], [8.498487, 47.358013]]], "type": "MultiLineString"}, "id": "430", "properties": {}, "type": "Feature"}, {"bbox": [8.560577, 47.380167, 8.561243, 47.380681], "geometry": {"coordinates": [[[8.560577, 47.380167], [8.561063, 47.380543], [8.561243, 47.380681]]], "type": "MultiLineString"}, "id": "432", "properties": {}, "type": "Feature"}, {"bbox": [8.486132, 47.389747, 8.486861, 47.390902], "geometry": {"coordinates": [[[8.486764, 47.390902], [8.486132, 47.389897], [8.486693, 47.389747], [8.486861, 47.389774]]], "type": "MultiLineString"}, "id": "433", "properties": {}, "type": "Feature"}, {"bbox": [8.524401, 47.351756, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.525744, 47.351829], [8.524545, 47.351771], [8.524401, 47.351756]]], "type": "MultiLineString"}, "id": "436", "properties": {}, "type": "Feature"}, {"bbox": [8.515057, 47.387342, 8.515399, 47.387467], "geometry": {"coordinates": [[[8.515057, 47.387467], [8.515399, 47.387342]]], "type": "MultiLineString"}, "id": "437", "properties": {}, "type": "Feature"}, {"bbox": [8.534434, 47.376794, 8.535586, 47.377849], "geometry": {"coordinates": [[[8.534434, 47.376794], [8.535586, 47.377849]]], "type": "MultiLineString"}, "id": "438", "properties": {}, "type": "Feature"}, {"bbox": [8.534951, 47.41116, 8.535032, 47.411606], "geometry": {"coordinates": [[[8.535032, 47.41116], [8.534951, 47.411606]]], "type": "MultiLineString"}, "id": "446", "properties": {}, "type": "Feature"}, {"bbox": [8.545858, 47.375077, 8.547307, 47.375433], "geometry": {"coordinates": [[[8.545858, 47.375077], [8.546648, 47.375351], [8.546906, 47.375433], [8.547105, 47.375353], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "447", "properties": {}, "type": "Feature"}, {"bbox": [8.589148, 47.399316, 8.58984, 47.400407], "geometry": {"coordinates": [[[8.589148, 47.399316], [8.589221, 47.399441], [8.58984, 47.400407]]], "type": "MultiLineString"}, "id": "449", "properties": {}, "type": "Feature"}, {"bbox": [8.542789, 47.373165, 8.543686, 47.373209], "geometry": {"coordinates": [[[8.542789, 47.373178], [8.54295, 47.373165], [8.543686, 47.373209]]], "type": "MultiLineString"}, "id": "450", "properties": {}, "type": "Feature"}, {"bbox": [8.581382, 47.355431, 8.582338, 47.355832], "geometry": {"coordinates": [[[8.581382, 47.355431], [8.581435, 47.355439], [8.581822, 47.355612], [8.582038, 47.355749], [8.582338, 47.355832]]], "type": "MultiLineString"}, "id": "451", "properties": {}, "type": "Feature"}, {"bbox": [8.555063, 47.367468, 8.555104, 47.367506], "geometry": {"coordinates": [[[8.555063, 47.367506], [8.555104, 47.367468]]], "type": "MultiLineString"}, "id": "452", "properties": {}, "type": "Feature"}, {"bbox": [8.478217, 47.390298, 8.478633, 47.390769], "geometry": {"coordinates": [[[8.478633, 47.390769], [8.478217, 47.390298]]], "type": "MultiLineString"}, "id": "455", "properties": {}, "type": "Feature"}, {"bbox": [8.476068, 47.414098, 8.477112, 47.414408], "geometry": {"coordinates": [[[8.477112, 47.414396], [8.476328, 47.414408], [8.476315, 47.414126], [8.476144, 47.414106], [8.476068, 47.414098]]], "type": "MultiLineString"}, "id": "457", "properties": {}, "type": "Feature"}, {"bbox": [8.533202, 47.343038, 8.533998, 47.343412], "geometry": {"coordinates": [[[8.533998, 47.343412], [8.533761, 47.343288], [8.533525, 47.343164], [8.533363, 47.343129], [8.533202, 47.343038]]], "type": "MultiLineString"}, "id": "458", "properties": {}, "type": "Feature"}, {"bbox": [8.543088, 47.37181, 8.5431, 47.37245], "geometry": {"coordinates": [[[8.5431, 47.37181], [8.543088, 47.372133], [8.54309, 47.37245]]], "type": "MultiLineString"}, "id": "463", "properties": {}, "type": "Feature"}, {"bbox": [8.546182, 47.410197, 8.5467, 47.410217], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546355, 47.410197], [8.546528, 47.410203], [8.5467, 47.410217]]], "type": "MultiLineString"}, "id": "466", "properties": {}, "type": "Feature"}, {"bbox": [8.583434, 47.405168, 8.58516, 47.405535], "geometry": {"coordinates": [[[8.58516, 47.405535], [8.584946, 47.405512], [8.583872, 47.405273], [8.583434, 47.405168]]], "type": "MultiLineString"}, "id": "467", "properties": {}, "type": "Feature"}, {"bbox": [8.503738, 47.40332, 8.504188, 47.40355], "geometry": {"coordinates": [[[8.503738, 47.40355], [8.503753, 47.403542], [8.504188, 47.40332]]], "type": "MultiLineString"}, "id": "470", "properties": {}, "type": "Feature"}, {"bbox": [8.53972, 47.370084, 8.540263, 47.370242], "geometry": {"coordinates": [[[8.540263, 47.37012], [8.540051, 47.370242], [8.53972, 47.370084]]], "type": "MultiLineString"}, "id": "471", "properties": {}, "type": "Feature"}, {"bbox": [8.553671, 47.409431, 8.553879, 47.41072], "geometry": {"coordinates": [[[8.553879, 47.409431], [8.553761, 47.409484], [8.553721, 47.409622], [8.553686, 47.410381], [8.553671, 47.41072]]], "type": "MultiLineString"}, "id": "475", "properties": {}, "type": "Feature"}, {"bbox": [8.53949, 47.415774, 8.540529, 47.415834], "geometry": {"coordinates": [[[8.540529, 47.415774], [8.53949, 47.415834]]], "type": "MultiLineString"}, "id": "476", "properties": {}, "type": "Feature"}, {"bbox": [8.519458, 47.388441, 8.519695, 47.388618], "geometry": {"coordinates": [[[8.519458, 47.388618], [8.519695, 47.38856], [8.51961, 47.388441], [8.519495, 47.388472]]], "type": "MultiLineString"}, "id": "486", "properties": {}, "type": "Feature"}, {"bbox": [8.517671, 47.341603, 8.518374, 47.341875], "geometry": {"coordinates": [[[8.518374, 47.341603], [8.51776, 47.3418], [8.517671, 47.341875]]], "type": "MultiLineString"}, "id": "487", "properties": {}, "type": "Feature"}, {"bbox": [8.546883, 47.372555, 8.546959, 47.372885], "geometry": {"coordinates": [[[8.546959, 47.372555], [8.546883, 47.372885]]], "type": "MultiLineString"}, "id": "488", "properties": {}, "type": "Feature"}, {"bbox": [8.50096, 47.399722, 8.502517, 47.401442], "geometry": {"coordinates": [[[8.502197, 47.399722], [8.502241, 47.399798], [8.502281, 47.399864], [8.502517, 47.400235], [8.501744, 47.400725], [8.501163, 47.401049], [8.501093, 47.401117], [8.500986, 47.401243], [8.50096, 47.401327], [8.500978, 47.401346], [8.501041, 47.401442]]], "type": "MultiLineString"}, "id": "490", "properties": {}, "type": "Feature"}, {"bbox": [8.485555, 47.371471, 8.487816, 47.372573], "geometry": {"coordinates": [[[8.485555, 47.372573], [8.485656, 47.372542], [8.486593, 47.372129], [8.487035, 47.371898], [8.487816, 47.371471]]], "type": "MultiLineString"}, "id": "496", "properties": {}, "type": "Feature"}, {"bbox": [8.485074, 47.373936, 8.4862, 47.3744], "geometry": {"coordinates": [[[8.485074, 47.374397], [8.485167, 47.3744], [8.485224, 47.374373], [8.485561, 47.374208], [8.485554, 47.374192], [8.485767, 47.374091], [8.485799, 47.37406], [8.485792, 47.374026], [8.4862, 47.373936]]], "type": "MultiLineString"}, "id": "499", "properties": {}, "type": "Feature"}, {"bbox": [8.524804, 47.33821, 8.526983, 47.338267], "geometry": {"coordinates": [[[8.526983, 47.338252], [8.52682, 47.338267], [8.525918, 47.338239], [8.525804, 47.338222], [8.524804, 47.33821]]], "type": "MultiLineString"}, "id": "500", "properties": {}, "type": "Feature"}, {"bbox": [8.546463, 47.426417, 8.546903, 47.426546], "geometry": {"coordinates": [[[8.546903, 47.426546], [8.54676, 47.42652], [8.546463, 47.426417]]], "type": "MultiLineString"}, "id": "503", "properties": {}, "type": "Feature"}, {"bbox": [8.492476, 47.37499, 8.492739, 47.375751], "geometry": {"coordinates": [[[8.492739, 47.375751], [8.492476, 47.37499]]], "type": "MultiLineString"}, "id": "504", "properties": {}, "type": "Feature"}, {"bbox": [8.5386, 47.371573, 8.539595, 47.37213], "geometry": {"coordinates": [[[8.5386, 47.371573], [8.538729, 47.371599], [8.538708, 47.371661], [8.538892, 47.371689], [8.53904, 47.371735], [8.538964, 47.371875], [8.539076, 47.371899], [8.539253, 47.372003], [8.539369, 47.37213], [8.539595, 47.372053]]], "type": "MultiLineString"}, "id": "505", "properties": {}, "type": "Feature"}, {"bbox": [8.533327, 47.371787, 8.534156, 47.371962], "geometry": {"coordinates": [[[8.534156, 47.371787], [8.533525, 47.371885], [8.533327, 47.371962]]], "type": "MultiLineString"}, "id": "513", "properties": {}, "type": "Feature"}, {"bbox": [8.540224, 47.366428, 8.540541, 47.367239], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540224, 47.367239]]], "type": "MultiLineString"}, "id": "514", "properties": {}, "type": "Feature"}, {"bbox": [8.527735, 47.341533, 8.528195, 47.341951], "geometry": {"coordinates": [[[8.528195, 47.341533], [8.527735, 47.341951]]], "type": "MultiLineString"}, "id": "515", "properties": {}, "type": "Feature"}, {"bbox": [8.525603, 47.364079, 8.526559, 47.365493], "geometry": {"coordinates": [[[8.526332, 47.364221], [8.526252, 47.36416], [8.525911, 47.364079], [8.525697, 47.364989], [8.525603, 47.365389], [8.526559, 47.365493]]], "type": "MultiLineString"}, "id": "516", "properties": {}, "type": "Feature"}, {"bbox": [8.563172, 47.360567, 8.563318, 47.360973], "geometry": {"coordinates": [[[8.563172, 47.360567], [8.563318, 47.360973]]], "type": "MultiLineString"}, "id": "517", "properties": {}, "type": "Feature"}, {"bbox": [8.537393, 47.375246, 8.539012, 47.37563], "geometry": {"coordinates": [[[8.539012, 47.375246], [8.538296, 47.375415], [8.537558, 47.375592], [8.537393, 47.37563]]], "type": "MultiLineString"}, "id": "518", "properties": {}, "type": "Feature"}, {"bbox": [8.542783, 47.37279, 8.543741, 47.372851], "geometry": {"coordinates": [[[8.542783, 47.37279], [8.542903, 47.372796], [8.543133, 47.3728], [8.543153, 47.372803], [8.543356, 47.37283], [8.5435, 47.372841], [8.543741, 47.372851]]], "type": "MultiLineString"}, "id": "520", "properties": {}, "type": "Feature"}, {"bbox": [8.51916, 47.340715, 8.519334, 47.340757], "geometry": {"coordinates": [[[8.51916, 47.340715], [8.519334, 47.340757]]], "type": "MultiLineString"}, "id": "523", "properties": {}, "type": "Feature"}, {"bbox": [8.50552, 47.40742, 8.505559, 47.407472], "geometry": {"coordinates": [[[8.505559, 47.407472], [8.50552, 47.40742]]], "type": "MultiLineString"}, "id": "524", "properties": {}, "type": "Feature"}, {"bbox": [8.542121, 47.38135, 8.542719, 47.381575], "geometry": {"coordinates": [[[8.542121, 47.38135], [8.542617, 47.381545], [8.542719, 47.381575]]], "type": "MultiLineString"}, "id": "525", "properties": {}, "type": "Feature"}, {"bbox": [8.515621, 47.38618, 8.516584, 47.387354], "geometry": {"coordinates": [[[8.516584, 47.387354], [8.516569, 47.387335], [8.515621, 47.38618]]], "type": "MultiLineString"}, "id": "526", "properties": {}, "type": "Feature"}, {"bbox": [8.477393, 47.411814, 8.477649, 47.413605], "geometry": {"coordinates": [[[8.477649, 47.411814], [8.477626, 47.41202], [8.477496, 47.412864], [8.477559, 47.412872], [8.477534, 47.413069], [8.477465, 47.413064], [8.477424, 47.41333], [8.477393, 47.413482], [8.477449, 47.413605]]], "type": "MultiLineString"}, "id": "527", "properties": {}, "type": "Feature"}, {"bbox": [8.526064, 47.391279, 8.526591, 47.391948], "geometry": {"coordinates": [[[8.526064, 47.391279], [8.526148, 47.391382], [8.526256, 47.391513], [8.526292, 47.391562], [8.526591, 47.391948]]], "type": "MultiLineString"}, "id": "532", "properties": {}, "type": "Feature"}, {"bbox": [8.509092, 47.42423, 8.511388, 47.424888], "geometry": {"coordinates": [[[8.509092, 47.424637], [8.509267, 47.424888], [8.510294, 47.424576], [8.511388, 47.42423]]], "type": "MultiLineString"}, "id": "533", "properties": {}, "type": "Feature"}, {"bbox": [8.556668, 47.364103, 8.557706, 47.364409], "geometry": {"coordinates": [[[8.556668, 47.364103], [8.557531, 47.364357], [8.557706, 47.364409]]], "type": "MultiLineString"}, "id": "534", "properties": {}, "type": "Feature"}, {"bbox": [8.508697, 47.3539, 8.508742, 47.353972], "geometry": {"coordinates": [[[8.508742, 47.3539], [8.508697, 47.353972]]], "type": "MultiLineString"}, "id": "541", "properties": {}, "type": "Feature"}, {"bbox": [8.551475, 47.420316, 8.551688, 47.420677], "geometry": {"coordinates": [[[8.551475, 47.420316], [8.551584, 47.420412], [8.551628, 47.420489], [8.551688, 47.420677]]], "type": "MultiLineString"}, "id": "544", "properties": {}, "type": "Feature"}, {"bbox": [8.517099, 47.386163, 8.518126, 47.386532], "geometry": {"coordinates": [[[8.518126, 47.386209], [8.517923, 47.386163], [8.517099, 47.386532]]], "type": "MultiLineString"}, "id": "545", "properties": {}, "type": "Feature"}, {"bbox": [8.529853, 47.369225, 8.530657, 47.369654], "geometry": {"coordinates": [[[8.530657, 47.369654], [8.529853, 47.369225]]], "type": "MultiLineString"}, "id": "546", "properties": {}, "type": "Feature"}, {"bbox": [8.544026, 47.404506, 8.544483, 47.405336], "geometry": {"coordinates": [[[8.544026, 47.404506], [8.544288, 47.404951], [8.544483, 47.405336]]], "type": "MultiLineString"}, "id": "547", "properties": {}, "type": "Feature"}, {"bbox": [8.540961, 47.375903, 8.541702, 47.376189], "geometry": {"coordinates": [[[8.541044, 47.375903], [8.540961, 47.376102], [8.541641, 47.376189], [8.541702, 47.376]]], "type": "MultiLineString"}, "id": "549", "properties": {}, "type": "Feature"}, {"bbox": [8.511352, 47.395076, 8.511919, 47.39646], "geometry": {"coordinates": [[[8.511352, 47.395076], [8.511417, 47.395441], [8.511566, 47.395436], [8.511663, 47.395825], [8.511689, 47.395883], [8.511919, 47.39646]]], "type": "MultiLineString"}, "id": "550", "properties": {}, "type": "Feature"}, {"bbox": [8.51978, 47.345671, 8.520186, 47.345727], "geometry": {"coordinates": [[[8.520186, 47.345671], [8.51978, 47.345727]]], "type": "MultiLineString"}, "id": "552", "properties": {}, "type": "Feature"}, {"bbox": [8.54137, 47.370809, 8.541875, 47.370877], "geometry": {"coordinates": [[[8.541875, 47.370818], [8.541846, 47.370809], [8.541476, 47.370846], [8.54137, 47.370877]]], "type": "MultiLineString"}, "id": "553", "properties": {}, "type": "Feature"}, {"bbox": [8.544573, 47.372812, 8.545027, 47.372929], "geometry": {"coordinates": [[[8.545027, 47.372929], [8.544573, 47.372812]]], "type": "MultiLineString"}, "id": "554", "properties": {}, "type": "Feature"}, {"bbox": [8.484391, 47.390288, 8.485632, 47.391308], "geometry": {"coordinates": [[[8.484968, 47.391308], [8.485632, 47.391097], [8.48508, 47.390288], [8.484702, 47.390391], [8.484391, 47.390441]]], "type": "MultiLineString"}, "id": "555", "properties": {}, "type": "Feature"}, {"bbox": [8.527834, 47.356788, 8.527939, 47.35745], "geometry": {"coordinates": [[[8.527834, 47.35745], [8.527939, 47.356788]]], "type": "MultiLineString"}, "id": "556", "properties": {}, "type": "Feature"}, {"bbox": [8.522294, 47.362963, 8.523199, 47.363932], "geometry": {"coordinates": [[[8.523199, 47.363932], [8.522294, 47.362963]]], "type": "MultiLineString"}, "id": "558", "properties": {}, "type": "Feature"}, {"bbox": [8.539902, 47.371931, 8.54091, 47.371979], "geometry": {"coordinates": [[[8.54091, 47.371979], [8.540352, 47.371979], [8.540055, 47.371979], [8.539902, 47.371931]]], "type": "MultiLineString"}, "id": "559", "properties": {}, "type": "Feature"}, {"bbox": [8.548218, 47.364754, 8.54945, 47.36549], "geometry": {"coordinates": [[[8.548218, 47.36549], [8.548382, 47.36539], [8.548801, 47.365149], [8.54906, 47.365145], [8.549198, 47.365056], [8.54945, 47.364754]]], "type": "MultiLineString"}, "id": "562", "properties": {}, "type": "Feature"}, {"bbox": [8.546148, 47.379077, 8.546923, 47.379347], "geometry": {"coordinates": [[[8.546148, 47.379077], [8.546923, 47.379347]]], "type": "MultiLineString"}, "id": "563", "properties": {}, "type": "Feature"}, {"bbox": [8.508999, 47.381994, 8.509575, 47.382691], "geometry": {"coordinates": [[[8.509575, 47.382691], [8.509533, 47.38265], [8.508999, 47.381994]]], "type": "MultiLineString"}, "id": "565", "properties": {}, "type": "Feature"}, {"bbox": [8.56307, 47.413105, 8.563172, 47.414255], "geometry": {"coordinates": [[[8.563172, 47.413105], [8.563168, 47.413225], [8.563168, 47.413387], [8.563096, 47.413555], [8.563075, 47.41411], [8.563072, 47.414169], [8.56307, 47.414255]]], "type": "MultiLineString"}, "id": "566", "properties": {}, "type": "Feature"}, {"bbox": [8.504013, 47.400127, 8.50468, 47.40057], "geometry": {"coordinates": [[[8.504013, 47.400127], [8.504118, 47.40017], [8.504658, 47.400544], [8.50468, 47.40057]]], "type": "MultiLineString"}, "id": "567", "properties": {}, "type": "Feature"}, {"bbox": [8.567709, 47.380498, 8.568672, 47.382282], "geometry": {"coordinates": [[[8.567709, 47.380498], [8.56778, 47.380597], [8.567877, 47.380733], [8.567959, 47.380874], [8.568025, 47.381019], [8.568059, 47.381098], [8.568232, 47.381534], [8.568293, 47.381657], [8.568361, 47.38178], [8.568434, 47.3819], [8.568603, 47.382172], [8.568672, 47.382282]]], "type": "MultiLineString"}, "id": "568", "properties": {}, "type": "Feature"}, {"bbox": [8.548691, 47.372037, 8.549339, 47.372212], "geometry": {"coordinates": [[[8.549339, 47.372037], [8.549121, 47.372212], [8.548691, 47.372101]]], "type": "MultiLineString"}, "id": "570", "properties": {}, "type": "Feature"}, {"bbox": [8.521309, 47.389505, 8.52239, 47.390627], "geometry": {"coordinates": [[[8.521309, 47.389505], [8.521474, 47.389678], [8.52239, 47.390627]]], "type": "MultiLineString"}, "id": "571", "properties": {}, "type": "Feature"}, {"bbox": [8.516341, 47.336757, 8.516976, 47.337521], "geometry": {"coordinates": [[[8.516976, 47.337521], [8.516341, 47.337402], [8.516431, 47.336757]]], "type": "MultiLineString"}, "id": "572", "properties": {}, "type": "Feature"}, {"bbox": [8.582905, 47.403442, 8.584269, 47.406276], "geometry": {"coordinates": [[[8.584269, 47.403442], [8.584228, 47.403534], [8.583794, 47.404408], [8.583464, 47.405104], [8.583434, 47.405168], [8.583108, 47.4058], [8.582912, 47.406208], [8.582905, 47.406276]]], "type": "MultiLineString"}, "id": "573", "properties": {}, "type": "Feature"}, {"bbox": [8.535275, 47.342078, 8.535464, 47.342395], "geometry": {"coordinates": [[[8.535275, 47.342395], [8.535288, 47.342351], [8.535463, 47.342079], [8.535464, 47.342078]]], "type": "MultiLineString"}, "id": "574", "properties": {}, "type": "Feature"}, {"bbox": [8.546421, 47.422039, 8.547527, 47.423252], "geometry": {"coordinates": [[[8.546421, 47.422039], [8.547021, 47.422539], [8.547122, 47.422563], [8.547527, 47.422919], [8.547401, 47.422973], [8.547441, 47.423038], [8.547277, 47.423093], [8.547233, 47.42312], [8.547001, 47.423185], [8.547058, 47.423252]]], "type": "MultiLineString"}, "id": "576", "properties": {}, "type": "Feature"}, {"bbox": [8.545732, 47.372908, 8.546474, 47.373742], "geometry": {"coordinates": [[[8.546474, 47.372908], [8.546403, 47.372971], [8.546039, 47.373368], [8.545885, 47.373507], [8.545769, 47.373634], [8.545744, 47.373685], [8.545732, 47.373742]]], "type": "MultiLineString"}, "id": "577", "properties": {}, "type": "Feature"}, {"bbox": [8.544298, 47.410311, 8.544758, 47.410653], "geometry": {"coordinates": [[[8.544298, 47.410653], [8.544337, 47.410595], [8.544512, 47.410651], [8.544573, 47.410639], [8.544758, 47.410311]]], "type": "MultiLineString"}, "id": "578", "properties": {}, "type": "Feature"}, {"bbox": [8.544639, 47.408288, 8.545447, 47.409032], "geometry": {"coordinates": [[[8.544639, 47.408288], [8.544935, 47.408627], [8.545291, 47.409018], [8.545447, 47.409032]]], "type": "MultiLineString"}, "id": "579", "properties": {}, "type": "Feature"}, {"bbox": [8.510997, 47.408885, 8.511464, 47.409593], "geometry": {"coordinates": [[[8.511464, 47.409593], [8.511363, 47.409451], [8.511317, 47.409341], [8.511227, 47.409228], [8.511093, 47.409036], [8.510997, 47.408885]]], "type": "MultiLineString"}, "id": "582", "properties": {}, "type": "Feature"}, {"bbox": [8.543386, 47.383468, 8.544481, 47.383617], "geometry": {"coordinates": [[[8.543386, 47.383475], [8.543526, 47.383468], [8.544315, 47.383597], [8.544481, 47.383617]]], "type": "MultiLineString"}, "id": "583", "properties": {}, "type": "Feature"}, {"bbox": [8.520104, 47.35107, 8.520465, 47.351695], "geometry": {"coordinates": [[[8.520465, 47.35107], [8.520361, 47.351252], [8.520104, 47.351695]]], "type": "MultiLineString"}, "id": "584", "properties": {}, "type": "Feature"}, {"bbox": [8.515266, 47.386138, 8.515346, 47.386229], "geometry": {"coordinates": [[[8.515346, 47.386138], [8.515266, 47.386229]]], "type": "MultiLineString"}, "id": "585", "properties": {}, "type": "Feature"}, {"bbox": [8.485613, 47.387179, 8.485693, 47.38733], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.485693, 47.38733]]], "type": "MultiLineString"}, "id": "586", "properties": {}, "type": "Feature"}, {"bbox": [8.476755, 47.385672, 8.477517, 47.386407], "geometry": {"coordinates": [[[8.477073, 47.386407], [8.476755, 47.385937], [8.477517, 47.385672]]], "type": "MultiLineString"}, "id": "587", "properties": {}, "type": "Feature"}, {"bbox": [8.584919, 47.377358, 8.587638, 47.380026], "geometry": {"coordinates": [[[8.584919, 47.377358], [8.585051, 47.377483], [8.58585, 47.378289], [8.586517, 47.378937], [8.587638, 47.380026]]], "type": "MultiLineString"}, "id": "588", "properties": {}, "type": "Feature"}, {"bbox": [8.527201, 47.354525, 8.527303, 47.355112], "geometry": {"coordinates": [[[8.527201, 47.355112], [8.527303, 47.355042], [8.527303, 47.354764], [8.527303, 47.354525]]], "type": "MultiLineString"}, "id": "591", "properties": {}, "type": "Feature"}, {"bbox": [8.532278, 47.412803, 8.532577, 47.412829], "geometry": {"coordinates": [[[8.532278, 47.412803], [8.532317, 47.412805], [8.532577, 47.412829]]], "type": "MultiLineString"}, "id": "592", "properties": {}, "type": "Feature"}, {"bbox": [8.545153, 47.372467, 8.545705, 47.37286], "geometry": {"coordinates": [[[8.545153, 47.372783], [8.5454, 47.37286], [8.545512, 47.372699], [8.545592, 47.372527], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "593", "properties": {}, "type": "Feature"}, {"bbox": [8.487621, 47.402319, 8.487822, 47.402687], "geometry": {"coordinates": [[[8.487655, 47.402319], [8.487741, 47.402378], [8.487747, 47.402383], [8.487773, 47.402372], [8.48779, 47.402389], [8.487621, 47.402487], [8.487634, 47.402499], [8.487682, 47.402486], [8.487773, 47.402641], [8.487792, 47.402667], [8.487822, 47.402687]]], "type": "MultiLineString"}, "id": "594", "properties": {}, "type": "Feature"}, {"bbox": [8.541003, 47.371292, 8.541503, 47.371307], "geometry": {"coordinates": [[[8.541503, 47.371307], [8.541314, 47.371292], [8.541003, 47.371298]]], "type": "MultiLineString"}, "id": "595", "properties": {}, "type": "Feature"}, {"bbox": [8.518296, 47.333731, 8.51909, 47.334093], "geometry": {"coordinates": [[[8.51909, 47.333731], [8.518296, 47.334093]]], "type": "MultiLineString"}, "id": "598", "properties": {}, "type": "Feature"}, {"bbox": [8.543537, 47.378872, 8.544009, 47.378885], "geometry": {"coordinates": [[[8.543537, 47.378872], [8.544009, 47.378885]]], "type": "MultiLineString"}, "id": "600", "properties": {}, "type": "Feature"}, {"bbox": [8.519266, 47.387405, 8.520033, 47.388192], "geometry": {"coordinates": [[[8.519266, 47.387405], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "604", "properties": {}, "type": "Feature"}, {"bbox": [8.540833, 47.371993, 8.541455, 47.372128], "geometry": {"coordinates": [[[8.541455, 47.371993], [8.541314, 47.372015], [8.54097, 47.372106], [8.540961, 47.372128], [8.540833, 47.372123]]], "type": "MultiLineString"}, "id": "610", "properties": {}, "type": "Feature"}, {"bbox": [8.519518, 47.413526, 8.519698, 47.41395], "geometry": {"coordinates": [[[8.519698, 47.41395], [8.519578, 47.413694], [8.519581, 47.413654], [8.519518, 47.413526]]], "type": "MultiLineString"}, "id": "611", "properties": {}, "type": "Feature"}, {"bbox": [8.532927, 47.405078, 8.533464, 47.405639], "geometry": {"coordinates": [[[8.533464, 47.405078], [8.532927, 47.405639]]], "type": "MultiLineString"}, "id": "614", "properties": {}, "type": "Feature"}, {"bbox": [8.557342, 47.402877, 8.557417, 47.403296], "geometry": {"coordinates": [[[8.557342, 47.403296], [8.557363, 47.403156], [8.557388, 47.403017], [8.557417, 47.402877]]], "type": "MultiLineString"}, "id": "615", "properties": {}, "type": "Feature"}, {"bbox": [8.502118, 47.385724, 8.504581, 47.386472], "geometry": {"coordinates": [[[8.504581, 47.385724], [8.503354, 47.3861], [8.502118, 47.386472]]], "type": "MultiLineString"}, "id": "616", "properties": {}, "type": "Feature"}, {"bbox": [8.541628, 47.387706, 8.542108, 47.388476], "geometry": {"coordinates": [[[8.542108, 47.387706], [8.541648, 47.388363], [8.541628, 47.388476]]], "type": "MultiLineString"}, "id": "617", "properties": {}, "type": "Feature"}, {"bbox": [8.508571, 47.409473, 8.509273, 47.410405], "geometry": {"coordinates": [[[8.509021, 47.410405], [8.50913, 47.410277], [8.509273, 47.410228], [8.508723, 47.409473], [8.508571, 47.409521], [8.50913, 47.410277]]], "type": "MultiLineString"}, "id": "619", "properties": {}, "type": "Feature"}, {"bbox": [8.560818, 47.384269, 8.563865, 47.386425], "geometry": {"coordinates": [[[8.563865, 47.384269], [8.563073, 47.384743], [8.562355, 47.385203], [8.562124, 47.385369], [8.561705, 47.385713], [8.560904, 47.386394], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "621", "properties": {}, "type": "Feature"}, {"bbox": [8.538055, 47.428479, 8.540578, 47.42987], "geometry": {"coordinates": [[[8.538055, 47.42987], [8.539307, 47.429169], [8.540468, 47.428514], [8.540578, 47.428479]]], "type": "MultiLineString"}, "id": "623", "properties": {}, "type": "Feature"}, {"bbox": [8.529133, 47.359282, 8.529246, 47.360635], "geometry": {"coordinates": [[[8.529244, 47.359282], [8.529133, 47.359925], [8.529184, 47.359947], [8.529243, 47.360395], [8.529246, 47.360635]]], "type": "MultiLineString"}, "id": "624", "properties": {}, "type": "Feature"}, {"bbox": [8.477671, 47.382931, 8.478207, 47.383389], "geometry": {"coordinates": [[[8.477671, 47.383389], [8.477675, 47.383385], [8.477753, 47.383368], [8.47815, 47.382958], [8.478207, 47.382931]]], "type": "MultiLineString"}, "id": "626", "properties": {}, "type": "Feature"}, {"bbox": [8.548539, 47.414668, 8.551309, 47.415343], "geometry": {"coordinates": [[[8.548539, 47.415343], [8.54915, 47.415076], [8.549771, 47.414828], [8.549859, 47.414813], [8.550058, 47.414783], [8.551108, 47.414729], [8.551309, 47.414668]]], "type": "MultiLineString"}, "id": "628", "properties": {}, "type": "Feature"}, {"bbox": [8.539883, 47.370513, 8.540081, 47.37122], "geometry": {"coordinates": [[[8.540081, 47.370513], [8.539958, 47.370694], [8.54006, 47.37074], [8.539883, 47.371161], [8.53992, 47.37122]]], "type": "MultiLineString"}, "id": "629", "properties": {}, "type": "Feature"}, {"bbox": [8.514371, 47.417006, 8.51543, 47.418117], "geometry": {"coordinates": [[[8.514371, 47.417006], [8.51443, 47.417083], [8.515338, 47.418045], [8.51543, 47.418117]]], "type": "MultiLineString"}, "id": "630", "properties": {}, "type": "Feature"}, {"bbox": [8.544295, 47.368336, 8.54469, 47.368658], "geometry": {"coordinates": [[[8.544313, 47.368336], [8.544437, 47.368389], [8.544295, 47.368522], [8.544527, 47.368658], [8.54469, 47.368488]]], "type": "MultiLineString"}, "id": "632", "properties": {}, "type": "Feature"}, {"bbox": [8.57245, 47.412872, 8.572466, 47.413305], "geometry": {"coordinates": [[[8.572466, 47.412872], [8.57245, 47.413305]]], "type": "MultiLineString"}, "id": "644", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.385239, 8.497742, 47.385367], "geometry": {"coordinates": [[[8.497742, 47.385239], [8.497637, 47.385249], [8.497395, 47.385324], [8.497351, 47.385367]]], "type": "MultiLineString"}, "id": "658", "properties": {}, "type": "Feature"}, {"bbox": [8.557626, 47.404428, 8.557685, 47.404572], "geometry": {"coordinates": [[[8.557626, 47.404428], [8.557633, 47.404441], [8.557685, 47.404572]]], "type": "MultiLineString"}, "id": "659", "properties": {}, "type": "Feature"}, {"bbox": [8.528769, 47.372482, 8.528916, 47.372561], "geometry": {"coordinates": [[[8.528769, 47.372561], [8.528916, 47.372482]]], "type": "MultiLineString"}, "id": "662", "properties": {}, "type": "Feature"}, {"bbox": [8.506552, 47.407126, 8.507545, 47.408337], "geometry": {"coordinates": [[[8.506552, 47.407126], [8.506985, 47.407727], [8.507325, 47.408189], [8.507495, 47.408267], [8.507545, 47.408337]]], "type": "MultiLineString"}, "id": "663", "properties": {}, "type": "Feature"}, {"bbox": [8.513121, 47.420512, 8.513614, 47.420706], "geometry": {"coordinates": [[[8.513614, 47.420512], [8.513121, 47.420706]]], "type": "MultiLineString"}, "id": "667", "properties": {}, "type": "Feature"}, {"bbox": [8.540985, 47.37148, 8.54142, 47.371585], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541409, 47.371575], [8.541204, 47.371518], [8.540985, 47.37148]]], "type": "MultiLineString"}, "id": "670", "properties": {}, "type": "Feature"}, {"bbox": [8.517615, 47.364405, 8.518059, 47.365195], "geometry": {"coordinates": [[[8.518059, 47.364405], [8.517615, 47.365195]]], "type": "MultiLineString"}, "id": "672", "properties": {}, "type": "Feature"}, {"bbox": [8.488603, 47.361691, 8.49412, 47.363848], "geometry": {"coordinates": [[[8.49412, 47.363848], [8.494098, 47.363846], [8.494091, 47.363845], [8.494084, 47.363844], [8.494077, 47.363842], [8.49407, 47.36384], [8.494063, 47.363837], [8.494063, 47.363837], [8.493925, 47.363788], [8.493921, 47.363787], [8.493917, 47.363786], [8.493913, 47.363785], [8.493908, 47.363785], [8.493904, 47.363785], [8.4939, 47.363785], [8.493895, 47.363785], [8.493891, 47.363786], [8.493887, 47.363786], [8.493883, 47.363787], [8.493879, 47.363789], [8.493875, 47.36379], [8.493872, 47.363792], [8.493869, 47.363794], [8.493826, 47.363821], [8.493824, 47.363822], [8.493822, 47.363823], [8.49382, 47.363824], [8.493818, 47.363825], [8.493816, 47.363826], [8.493813, 47.363826], [8.493811, 47.363826], [8.493808, 47.363827], [8.493806, 47.363827], [8.493803, 47.363827], [8.493801, 47.363826], [8.493798, 47.363826], [8.493796, 47.363825], [8.493794, 47.363825], [8.493791, 47.363824], [8.493789, 47.363823], [8.493787, 47.363822], [8.493785, 47.363821], [8.493784, 47.363819], [8.493782, 47.363818], [8.493781, 47.363817], [8.49378, 47.363815], [8.493779, 47.363813], [8.493778, 47.363812], [8.493778, 47.36381], [8.493777, 47.363808], [8.493777, 47.363807], [8.493777, 47.363807], [8.493777, 47.363807], [8.493777, 47.363794], [8.493778, 47.363781], [8.493778, 47.363768], [8.49378, 47.363754], [8.493783, 47.36374], [8.493788, 47.363726], [8.493794, 47.363712], [8.493806, 47.363684], [8.493815, 47.363656], [8.493819, 47.363627], [8.493819, 47.363598], [8.493816, 47.363537], [8.493815, 47.363477], [8.493817, 47.363417], [8.493817, 47.363413], [8.493816, 47.363409], [8.493815, 47.363405], [8.493814, 47.363402], [8.493812, 47.363398], [8.493809, 47.363395], [8.493807, 47.363391], [8.493803, 47.363388], [8.493791, 47.363378], [8.493778, 47.363369], [8.493764, 47.36336], [8.493761, 47.363358], [8.493759, 47.363356], [8.493756, 47.363354], [8.493754, 47.363351], [8.493752, 47.363349], [8.493751, 47.363346], [8.49375, 47.363344], [8.493749, 47.363341], [8.493749, 47.363338], [8.493749, 47.363336], [8.493749, 47.363333], [8.493753, 47.363313], [8.493755, 47.363292], [8.493755, 47.363272], [8.493755, 47.363265], [8.493753, 47.363258], [8.493751, 47.363252], [8.493748, 47.363245], [8.493744, 47.363239], [8.49374, 47.363233], [8.493734, 47.363227], [8.493716, 47.36321], [8.493697, 47.363192], [8.493677, 47.363175], [8.493674, 47.363172], [8.493672, 47.363169], [8.49367, 47.363166], [8.493668, 47.363163], [8.493667, 47.36316], [8.493666, 47.363157], [8.493665, 47.363154], [8.493665, 47.363151], [8.493665, 47.363138], [8.493663, 47.363126], [8.49366, 47.363113], [8.493655, 47.363101], [8.493647, 47.363084], [8.493637, 47.363067], [8.493625, 47.363051], [8.493588, 47.363038], [8.493585, 47.363032], [8.493582, 47.363025], [8.49358, 47.363019], [8.493578, 47.363012], [8.493578, 47.363005], [8.493578, 47.362998], [8.49358, 47.362992], [8.493582, 47.362985], [8.493585, 47.362978], [8.493589, 47.362972], [8.493594, 47.362966], [8.4936, 47.36296], [8.493606, 47.362955], [8.493613, 47.36295], [8.49362, 47.362946], [8.493623, 47.362944], [8.493625, 47.362942], [8.493628, 47.36294], [8.49363, 47.362938], [8.493632, 47.362936], [8.493633, 47.362933], [8.493634, 47.362931], [8.493635, 47.362929], [8.493636, 47.362926], [8.493636, 47.362924], [8.493636, 47.362921], [8.493636, 47.362918], [8.493635, 47.362916], [8.493634, 47.362913], [8.493632, 47.362911], [8.493631, 47.362909], [8.493629, 47.362907], [8.493627, 47.362905], [8.493624, 47.362903], [8.493622, 47.362901], [8.493619, 47.362899], [8.493613, 47.362897], [8.493607, 47.362894], [8.4936, 47.362892], [8.493593, 47.362891], [8.493587, 47.36289], [8.49358, 47.362889], [8.493573, 47.362889], [8.493566, 47.362889], [8.493559, 47.36289], [8.493552, 47.362891], [8.493545, 47.362892], [8.493538, 47.362894], [8.493523, 47.362899], [8.493507, 47.362902], [8.493491, 47.362905], [8.493474, 47.362907], [8.493469, 47.362907], [8.493465, 47.362907], [8.49346, 47.362907], [8.493456, 47.362907], [8.493451, 47.362906], [8.493447, 47.362905], [8.493443, 47.362903], [8.493439, 47.362902], [8.493435, 47.3629], [8.493432, 47.362898], [8.493429, 47.362896], [8.493426, 47.362893], [8.493423, 47.362891], [8.49341, 47.362875], [8.493398, 47.362858], [8.493387, 47.362842], [8.493385, 47.362837], [8.493383, 47.362832], [8.493382, 47.362827], [8.493381, 47.362822], [8.493382, 47.362816], [8.493383, 47.362798], [8.493382, 47.362779], [8.49338, 47.36276], [8.493378, 47.362752], [8.493375, 47.362744], [8.493371, 47.362737], [8.493367, 47.362729], [8.493361, 47.362722], [8.493354, 47.362715], [8.493347, 47.362709], [8.493339, 47.362703], [8.49333, 47.362697], [8.493321, 47.362692], [8.493293, 47.36268], [8.493263, 47.362669], [8.493232, 47.36266], [8.493199, 47.362653], [8.493166, 47.362648], [8.493157, 47.362647], [8.493148, 47.362646], [8.493139, 47.362646], [8.49313, 47.362647], [8.493121, 47.362648], [8.493117, 47.362648], [8.493114, 47.362649], [8.49311, 47.362649], [8.493106, 47.362648], [8.493103, 47.362648], [8.493099, 47.362647], [8.493096, 47.362646], [8.493092, 47.362645], [8.493089, 47.362644], [8.493082, 47.36264], [8.493076, 47.362636], [8.493069, 47.362632], [8.493064, 47.362627], [8.493059, 47.362622], [8.493055, 47.362617], [8.493, 47.36254], [8.492996, 47.362533], [8.492992, 47.362526], [8.492989, 47.362519], [8.492987, 47.362511], [8.492987, 47.362503], [8.492987, 47.362496], [8.492988, 47.362488], [8.492993, 47.362468], [8.493001, 47.362449], [8.493011, 47.36243], [8.493013, 47.362427], [8.493014, 47.362424], [8.493015, 47.362421], [8.493015, 47.362418], [8.493016, 47.362415], [8.493015, 47.362412], [8.493013, 47.362403], [8.49301, 47.362395], [8.493006, 47.362386], [8.493, 47.362378], [8.492994, 47.362371], [8.492991, 47.362368], [8.492988, 47.362366], [8.492985, 47.362364], [8.492981, 47.362362], [8.492977, 47.36236], [8.492973, 47.362358], [8.492969, 47.362357], [8.492965, 47.362356], [8.49296, 47.362355], [8.492948, 47.362354], [8.492936, 47.362352], [8.492923, 47.362351], [8.492914, 47.36235], [8.492905, 47.362349], [8.492896, 47.362348], [8.492892, 47.362347], [8.492888, 47.362346], [8.492884, 47.362345], [8.49288, 47.362344], [8.492877, 47.362343], [8.492877, 47.362343], [8.492792, 47.362305], [8.492777, 47.362287], [8.492761, 47.362268], [8.492718, 47.362255], [8.492715, 47.362254], [8.492712, 47.362254], [8.492709, 47.362252], [8.492707, 47.362251], [8.492704, 47.36225], [8.492702, 47.362248], [8.4927, 47.362246], [8.492699, 47.362245], [8.492697, 47.362243], [8.492696, 47.362241], [8.492695, 47.362239], [8.492694, 47.362237], [8.492694, 47.362234], [8.492694, 47.362232], [8.492694, 47.36223], [8.492695, 47.362228], [8.492695, 47.362226], [8.492696, 47.362223], [8.492697, 47.36222], [8.492697, 47.362217], [8.492697, 47.362214], [8.492696, 47.362212], [8.492696, 47.362209], [8.492694, 47.362206], [8.492693, 47.362203], [8.492691, 47.362201], [8.492688, 47.362198], [8.492686, 47.362196], [8.492683, 47.362194], [8.49268, 47.362192], [8.492676, 47.36219], [8.492673, 47.362189], [8.49267, 47.362187], [8.492666, 47.362186], [8.492664, 47.362184], [8.492661, 47.362182], [8.492659, 47.36218], [8.492657, 47.362178], [8.492655, 47.362176], [8.492653, 47.362173], [8.492652, 47.362171], [8.492651, 47.362168], [8.492651, 47.362166], [8.49265, 47.362163], [8.49265, 47.362161], [8.492651, 47.362158], [8.492652, 47.362155], [8.492653, 47.362153], [8.492654, 47.362151], [8.492672, 47.362124], [8.492692, 47.362099], [8.492713, 47.362073], [8.492717, 47.362069], [8.49272, 47.362064], [8.492722, 47.362059], [8.492724, 47.362053], [8.492725, 47.362048], [8.492725, 47.362043], [8.492725, 47.362037], [8.492724, 47.362032], [8.492723, 47.362027], [8.49272, 47.362021], [8.492717, 47.362016], [8.492714, 47.362012], [8.49271, 47.362007], [8.492705, 47.362003], [8.4927, 47.361999], [8.492694, 47.361995], [8.492688, 47.361992], [8.492681, 47.361989], [8.492674, 47.361986], [8.492667, 47.361984], [8.492659, 47.361983], [8.492651, 47.361981], [8.492644, 47.361981], [8.492636, 47.36198], [8.492628, 47.36198], [8.49262, 47.361981], [8.492595, 47.361983], [8.492571, 47.361983], [8.492546, 47.361982], [8.492522, 47.361979], [8.492498, 47.361975], [8.492487, 47.361972], [8.492476, 47.361969], [8.492465, 47.361965], [8.492455, 47.36196], [8.492446, 47.361955], [8.492437, 47.361949], [8.49243, 47.361942], [8.492423, 47.361935], [8.492417, 47.361928], [8.492412, 47.36192], [8.492408, 47.361913], [8.492405, 47.361905], [8.492404, 47.361896], [8.492403, 47.361888], [8.492403, 47.361865], [8.492406, 47.361841], [8.49241, 47.361818], [8.492411, 47.361814], [8.492411, 47.361811], [8.492411, 47.361808], [8.49241, 47.361805], [8.492409, 47.361802], [8.492408, 47.361799], [8.492406, 47.361796], [8.492404, 47.361794], [8.492401, 47.361791], [8.492398, 47.361788], [8.492395, 47.361786], [8.492392, 47.361784], [8.492388, 47.361782], [8.492384, 47.36178], [8.49238, 47.361779], [8.492376, 47.361778], [8.492372, 47.361777], [8.492367, 47.361776], [8.49235, 47.361775], [8.492333, 47.361774], [8.492316, 47.361774], [8.492298, 47.361775], [8.492281, 47.361778], [8.492265, 47.361781], [8.492248, 47.361785], [8.492243, 47.361786], [8.492238, 47.361787], [8.492233, 47.361788], [8.492228, 47.361788], [8.492223, 47.361788], [8.492218, 47.361787], [8.492213, 47.361787], [8.492207, 47.361786], [8.492203, 47.361785], [8.492198, 47.361783], [8.492193, 47.361781], [8.492189, 47.361779], [8.492185, 47.361777], [8.492181, 47.361774], [8.49216, 47.361758], [8.492137, 47.361743], [8.492113, 47.361729], [8.49211, 47.361727], [8.492107, 47.361726], [8.492104, 47.361725], [8.4921, 47.361724], [8.492097, 47.361723], [8.492093, 47.361723], [8.49209, 47.361722], [8.492086, 47.361722], [8.492083, 47.361722], [8.492079, 47.361723], [8.492075, 47.361723], [8.492072, 47.361724], [8.492069, 47.361725], [8.492065, 47.361726], [8.492062, 47.361727], [8.49206, 47.361729], [8.492057, 47.36173], [8.492054, 47.361732], [8.492052, 47.361734], [8.49205, 47.361736], [8.492048, 47.361738], [8.492047, 47.36174], [8.492046, 47.361743], [8.492045, 47.361745], [8.492039, 47.361764], [8.49203, 47.361783], [8.492018, 47.361801], [8.492005, 47.361818], [8.491989, 47.361834], [8.491972, 47.361849], [8.491964, 47.361855], [8.491956, 47.36186], [8.491947, 47.361865], [8.491937, 47.361869], [8.491927, 47.361872], [8.491917, 47.361875], [8.491906, 47.361877], [8.491895, 47.361878], [8.491884, 47.361879], [8.491873, 47.361879], [8.491861, 47.361879], [8.49185, 47.361878], [8.49184, 47.361876], [8.491829, 47.361873], [8.491819, 47.36187], [8.491809, 47.361867], [8.4918, 47.361862], [8.491791, 47.361857], [8.491783, 47.361852], [8.491765, 47.361837], [8.491749, 47.361822], [8.491735, 47.361805], [8.491723, 47.361788], [8.491722, 47.361787], [8.491721, 47.361786], [8.49172, 47.361785], [8.491719, 47.361784], [8.491718, 47.361783], [8.491716, 47.361782], [8.491715, 47.361782], [8.491713, 47.361781], [8.491712, 47.36178], [8.49171, 47.36178], [8.491708, 47.36178], [8.491706, 47.36178], [8.491705, 47.361779], [8.491703, 47.361779], [8.491701, 47.36178], [8.491699, 47.36178], [8.491697, 47.36178], [8.491696, 47.361781], [8.491694, 47.361781], [8.491692, 47.361782], [8.491691, 47.361783], [8.49169, 47.361783], [8.491688, 47.361784], [8.491687, 47.361785], [8.491686, 47.361786], [8.491685, 47.361787], [8.491685, 47.361788], [8.491679, 47.361799], [8.491672, 47.361809], [8.491665, 47.361818], [8.491657, 47.361827], [8.491648, 47.361836], [8.491638, 47.361844], [8.491626, 47.361851], [8.491614, 47.361858], [8.491602, 47.361864], [8.491596, 47.361866], [8.49159, 47.361868], [8.491584, 47.361869], [8.491578, 47.36187], [8.491571, 47.361871], [8.491559, 47.361872], [8.491547, 47.361871], [8.491535, 47.361871], [8.491523, 47.361869], [8.491511, 47.361866], [8.4915, 47.361863], [8.491489, 47.361859], [8.491464, 47.361848], [8.49144, 47.361836], [8.491418, 47.361822], [8.491397, 47.361807], [8.49139, 47.3618], [8.491384, 47.361793], [8.491379, 47.361786], [8.491374, 47.361778], [8.491371, 47.36177], [8.491368, 47.36176], [8.491363, 47.361751], [8.491357, 47.361742], [8.49135, 47.361733], [8.491342, 47.361725], [8.491333, 47.361717], [8.491323, 47.36171], [8.491312, 47.361704], [8.491306, 47.361701], [8.4913, 47.361698], [8.491293, 47.361696], [8.491287, 47.361694], [8.49128, 47.361693], [8.491272, 47.361692], [8.491265, 47.361691], [8.491258, 47.361691], [8.491251, 47.361691], [8.491243, 47.361692], [8.491236, 47.361694], [8.491236, 47.361694], [8.491235, 47.361694], [8.491234, 47.361694], [8.491234, 47.361694], [8.491233, 47.361695], [8.491232, 47.361695], [8.491231, 47.361696], [8.491231, 47.361696], [8.49123, 47.361697], [8.49123, 47.361697], [8.491229, 47.361698], [8.491229, 47.361699], [8.491228, 47.361699], [8.491228, 47.3617], [8.491228, 47.361701], [8.491228, 47.361701], [8.491228, 47.361702], [8.491229, 47.361703], [8.491229, 47.361704], [8.491229, 47.361704], [8.49123, 47.361705], [8.49123, 47.361705], [8.491231, 47.361706], [8.491231, 47.361706], [8.491234, 47.361709], [8.491236, 47.361711], [8.491238, 47.361713], [8.49124, 47.361716], [8.491242, 47.361718], [8.491243, 47.361721], [8.491244, 47.361724], [8.491244, 47.361726], [8.491244, 47.361729], [8.491244, 47.361732], [8.491243, 47.361735], [8.491242, 47.361737], [8.49124, 47.36174], [8.491239, 47.361743], [8.491237, 47.361745], [8.491234, 47.361747], [8.491232, 47.361749], [8.491228, 47.361752], [8.491223, 47.361754], [8.491219, 47.361757], [8.491214, 47.361759], [8.491209, 47.36176], [8.491203, 47.361761], [8.491198, 47.361762], [8.491192, 47.361763], [8.491187, 47.361763], [8.491181, 47.361763], [8.491181, 47.361763], [8.491181, 47.361763], [8.491176, 47.361763], [8.491171, 47.361762], [8.491166, 47.361761], [8.491161, 47.36176], [8.491156, 47.361758], [8.491151, 47.361757], [8.491147, 47.361755], [8.491146, 47.361754], [8.491144, 47.361753], [8.491143, 47.361753], [8.491141, 47.361753], [8.49114, 47.361752], [8.491138, 47.361752], [8.491136, 47.361752], [8.491135, 47.361752], [8.491133, 47.361752], [8.491132, 47.361752], [8.49113, 47.361753], [8.491128, 47.361753], [8.491127, 47.361754], [8.491126, 47.361754], [8.491124, 47.361755], [8.491123, 47.361755], [8.491122, 47.361756], [8.491121, 47.361757], [8.49112, 47.361758], [8.491119, 47.361759], [8.491118, 47.36176], [8.491118, 47.361761], [8.491117, 47.361762], [8.491117, 47.361763], [8.491117, 47.361764], [8.491117, 47.361765], [8.491117, 47.361766], [8.491117, 47.361768], [8.491118, 47.361769], [8.491118, 47.36177], [8.491119, 47.361771], [8.49112, 47.361772], [8.491123, 47.361775], [8.491125, 47.361778], [8.491127, 47.361781], [8.491128, 47.361785], [8.491129, 47.361788], [8.491129, 47.361792], [8.491129, 47.361796], [8.491129, 47.361799], [8.491128, 47.361803], [8.491126, 47.361806], [8.491124, 47.361809], [8.491122, 47.361813], [8.491119, 47.361816], [8.491116, 47.361819], [8.491113, 47.361821], [8.491109, 47.361824], [8.491105, 47.361826], [8.491101, 47.361828], [8.491096, 47.36183], [8.491091, 47.361831], [8.491086, 47.361832], [8.49108, 47.361833], [8.491074, 47.361834], [8.491069, 47.361834], [8.491063, 47.361834], [8.491057, 47.361834], [8.491052, 47.361833], [8.491046, 47.361832], [8.491041, 47.36183], [8.491036, 47.361829], [8.491031, 47.361827], [8.491026, 47.361824], [8.491022, 47.361822], [8.491018, 47.361819], [8.491014, 47.361816], [8.491011, 47.361812], [8.491009, 47.361809], [8.490935, 47.361758], [8.490929, 47.361757], [8.490924, 47.361756], [8.490918, 47.361755], [8.490913, 47.361754], [8.490907, 47.361754], [8.490901, 47.361754], [8.490896, 47.361754], [8.49089, 47.361755], [8.490885, 47.361756], [8.490879, 47.361758], [8.490874, 47.36176], [8.490869, 47.361762], [8.490865, 47.361764], [8.490861, 47.361767], [8.490857, 47.36177], [8.490835, 47.361789], [8.490816, 47.361809], [8.4908, 47.36183], [8.490787, 47.361853], [8.490784, 47.361857], [8.490781, 47.361861], [8.490777, 47.361866], [8.490772, 47.36187], [8.490768, 47.361873], [8.490762, 47.361877], [8.490756, 47.36188], [8.49075, 47.361882], [8.490744, 47.361884], [8.490737, 47.361886], [8.49073, 47.361888], [8.490723, 47.361889], [8.490716, 47.361889], [8.490709, 47.36189], [8.490702, 47.361889], [8.490695, 47.361889], [8.490687, 47.361888], [8.490681, 47.361886], [8.49066, 47.36188], [8.49064, 47.361873], [8.490621, 47.361865], [8.490603, 47.361856], [8.490586, 47.361846], [8.490578, 47.361841], [8.49057, 47.361837], [8.490562, 47.361833], [8.490553, 47.36183], [8.490543, 47.361828], [8.490534, 47.361826], [8.490524, 47.361824], [8.490513, 47.361823], [8.490503, 47.361823], [8.490493, 47.361824], [8.490483, 47.361825], [8.490473, 47.361827], [8.490464, 47.361829], [8.490455, 47.361832], [8.490446, 47.361835], [8.490437, 47.361839], [8.490426, 47.361845], [8.490415, 47.361853], [8.490406, 47.36186], [8.490397, 47.361869], [8.49039, 47.361877], [8.490384, 47.361887], [8.490379, 47.361896], [8.490375, 47.361906], [8.490373, 47.361912], [8.490373, 47.361918], [8.490373, 47.361924], [8.490374, 47.36193], [8.490375, 47.361936], [8.490377, 47.361942], [8.49038, 47.361948], [8.490384, 47.361953], [8.490389, 47.361959], [8.490394, 47.361964], [8.4904, 47.361969], [8.490435, 47.361997], [8.490468, 47.362028], [8.490498, 47.36206], [8.490521, 47.362084], [8.490546, 47.362106], [8.490575, 47.362127], [8.490606, 47.362146], [8.490639, 47.362164], [8.490665, 47.362177], [8.490689, 47.362192], [8.49071, 47.362208], [8.490711, 47.362209], [8.490712, 47.36221], [8.490713, 47.362211], [8.490713, 47.362212], [8.490714, 47.362213], [8.490714, 47.362214], [8.490715, 47.362215], [8.490715, 47.362216], [8.490715, 47.362217], [8.490714, 47.362218], [8.490714, 47.362219], [8.490714, 47.36222], [8.490713, 47.362221], [8.490712, 47.362222], [8.490712, 47.362223], [8.490711, 47.362224], [8.49071, 47.362225], [8.490709, 47.362225], [8.490707, 47.362226], [8.490703, 47.362228], [8.490699, 47.362229], [8.490694, 47.362231], [8.490689, 47.362232], [8.490684, 47.362233], [8.490679, 47.362233], [8.490674, 47.362233], [8.490674, 47.362233], [8.490674, 47.362233], [8.490636, 47.362232], [8.490598, 47.362229], [8.49056, 47.362225], [8.49056, 47.362225], [8.490557, 47.362224], [8.490555, 47.362224], [8.490553, 47.362224], [8.490551, 47.362224], [8.490549, 47.362225], [8.490546, 47.362225], [8.490544, 47.362226], [8.490542, 47.362226], [8.49054, 47.362227], [8.490539, 47.362228], [8.490537, 47.362229], [8.490535, 47.36223], [8.490534, 47.362231], [8.490533, 47.362232], [8.490532, 47.362234], [8.490531, 47.362235], [8.49053, 47.362236], [8.490529, 47.362238], [8.490529, 47.362239], [8.490529, 47.362241], [8.490529, 47.362242], [8.490529, 47.362244], [8.490529, 47.362245], [8.49053, 47.362247], [8.490531, 47.362248], [8.490532, 47.36225], [8.490533, 47.362251], [8.490534, 47.362252], [8.490536, 47.362253], [8.490537, 47.362254], [8.490539, 47.362255], [8.490541, 47.362256], [8.490543, 47.362257], [8.490545, 47.362258], [8.490585, 47.362268], [8.490627, 47.362277], [8.490669, 47.362284], [8.490676, 47.362285], [8.490683, 47.362287], [8.49069, 47.362289], [8.490697, 47.362292], [8.490703, 47.362295], [8.490709, 47.362298], [8.490715, 47.362302], [8.49072, 47.362306], [8.490721, 47.362307], [8.490722, 47.362308], [8.490723, 47.362309], [8.490723, 47.362311], [8.490724, 47.362312], [8.490724, 47.362313], [8.490724, 47.362315], [8.490724, 47.362316], [8.490724, 47.362318], [8.490724, 47.362319], [8.490723, 47.36232], [8.490723, 47.362322], [8.490722, 47.362323], [8.490721, 47.362324], [8.490719, 47.362325], [8.490718, 47.362326], [8.490717, 47.362327], [8.490715, 47.362328], [8.490713, 47.362329], [8.490712, 47.36233], [8.49071, 47.36233], [8.490708, 47.362331], [8.490706, 47.362331], [8.490704, 47.362331], [8.490674, 47.362333], [8.490644, 47.362332], [8.490615, 47.36233], [8.490586, 47.362326], [8.490558, 47.36232], [8.490477, 47.3623], [8.490398, 47.362277], [8.49032, 47.362252], [8.490298, 47.362245], [8.490275, 47.362237], [8.490252, 47.362229], [8.490233, 47.362222], [8.490215, 47.362213], [8.490198, 47.362203], [8.490182, 47.362193], [8.490179, 47.36219], [8.490175, 47.362188], [8.49017, 47.362186], [8.490166, 47.362184], [8.490161, 47.362182], [8.490156, 47.362181], [8.490151, 47.36218], [8.490146, 47.362179], [8.490141, 47.362179], [8.490135, 47.362179], [8.49013, 47.362179], [8.490125, 47.362179], [8.49012, 47.36218], [8.490114, 47.362181], [8.49011, 47.362183], [8.490105, 47.362184], [8.4901, 47.362186], [8.490096, 47.362188], [8.490092, 47.362191], [8.490089, 47.362194], [8.490087, 47.362195], [8.490085, 47.362197], [8.490083, 47.362199], [8.490082, 47.362201], [8.490081, 47.362203], [8.49008, 47.362205], [8.49008, 47.362208], [8.49008, 47.36221], [8.49008, 47.362212], [8.49008, 47.362214], [8.490081, 47.362217], [8.490082, 47.362219], [8.490083, 47.362221], [8.490085, 47.362223], [8.490086, 47.362225], [8.490088, 47.362226], [8.490091, 47.362228], [8.490093, 47.36223], [8.490096, 47.362231], [8.490098, 47.362232], [8.490101, 47.362233], [8.490124, 47.362242], [8.490146, 47.362251], [8.490167, 47.362263], [8.490185, 47.362275], [8.490198, 47.362285], [8.490209, 47.362295], [8.490218, 47.362306], [8.490227, 47.362318], [8.490233, 47.36233], [8.490238, 47.362342], [8.490242, 47.362355], [8.490243, 47.362367], [8.490243, 47.362371], [8.490243, 47.362375], [8.490242, 47.362379], [8.49024, 47.362382], [8.490238, 47.362386], [8.490236, 47.362389], [8.490233, 47.362392], [8.49023, 47.362395], [8.490226, 47.362398], [8.490222, 47.362401], [8.490218, 47.362403], [8.490214, 47.362405], [8.490209, 47.362407], [8.490204, 47.362408], [8.490172, 47.362415], [8.49014, 47.362421], [8.490108, 47.362424], [8.490075, 47.362425], [8.490075, 47.362425], [8.490049, 47.362426], [8.490024, 47.362428], [8.489999, 47.362432], [8.489974, 47.362438], [8.489951, 47.362444], [8.489928, 47.362453], [8.489906, 47.362462], [8.489886, 47.362473], [8.489867, 47.362485], [8.48985, 47.362498], [8.489834, 47.362512], [8.489784, 47.36256], [8.489732, 47.362606], [8.489678, 47.362652], [8.489549, 47.362744], [8.489469, 47.362799], [8.489386, 47.362851], [8.4893, 47.362901], [8.489254, 47.362928], [8.489211, 47.362958], [8.48917, 47.362989], [8.48914, 47.363011], [8.489108, 47.363031], [8.489073, 47.36305], [8.488957, 47.363106], [8.488868, 47.363169], [8.488818, 47.363249], [8.48881, 47.36327], [8.488799, 47.363291], [8.488786, 47.36331], [8.488771, 47.363329], [8.488753, 47.363347], [8.488676, 47.363419], [8.48866, 47.363436], [8.488646, 47.363453], [8.488634, 47.363472], [8.488625, 47.36349], [8.488619, 47.36351], [8.488615, 47.363529], [8.488603, 47.363622]]], "type": "MultiLineString"}, "id": "673", "properties": {}, "type": "Feature"}, {"bbox": [8.509868, 47.407685, 8.510728, 47.408885], "geometry": {"coordinates": [[[8.510728, 47.408885], [8.510374, 47.408394], [8.510209, 47.408157], [8.509868, 47.407685]]], "type": "MultiLineString"}, "id": "674", "properties": {}, "type": "Feature"}, {"bbox": [8.486942, 47.401836, 8.487655, 47.402319], "geometry": {"coordinates": [[[8.486942, 47.401838], [8.487065, 47.401845], [8.487375, 47.401836], [8.48743, 47.401919], [8.487554, 47.402106], [8.487557, 47.402113], [8.48756, 47.402121], [8.487562, 47.402129], [8.487563, 47.402137], [8.487562, 47.402145], [8.487561, 47.402153], [8.487559, 47.40216], [8.487555, 47.402168], [8.487551, 47.402175], [8.487517, 47.402207], [8.487551, 47.402253], [8.487655, 47.402319]]], "type": "MultiLineString"}, "id": "675", "properties": {}, "type": "Feature"}, {"bbox": [8.523546, 47.348371, 8.523766, 47.348468], "geometry": {"coordinates": [[[8.523766, 47.348468], [8.52362, 47.348371], [8.523546, 47.348425]]], "type": "MultiLineString"}, "id": "678", "properties": {}, "type": "Feature"}, {"bbox": [8.559399, 47.413073, 8.559845, 47.414559], "geometry": {"coordinates": [[[8.55978, 47.413073], [8.559693, 47.413341], [8.559845, 47.413343], [8.559719, 47.413756], [8.559675, 47.413901], [8.559533, 47.41434], [8.559486, 47.414473], [8.559399, 47.414559]]], "type": "MultiLineString"}, "id": "679", "properties": {}, "type": "Feature"}, {"bbox": [8.56975, 47.409937, 8.57128, 47.410326], "geometry": {"coordinates": [[[8.56975, 47.409937], [8.569981, 47.410039], [8.570225, 47.410126], [8.570478, 47.410199], [8.57074, 47.410257], [8.571008, 47.410299], [8.57128, 47.410326]]], "type": "MultiLineString"}, "id": "680", "properties": {}, "type": "Feature"}, {"bbox": [8.518881, 47.34072, 8.519881, 47.340789], "geometry": {"coordinates": [[[8.519881, 47.340767], [8.51889, 47.340789], [8.518881, 47.34072]]], "type": "MultiLineString"}, "id": "682", "properties": {}, "type": "Feature"}, {"bbox": [8.544933, 47.369139, 8.54707, 47.369923], "geometry": {"coordinates": [[[8.544933, 47.369139], [8.545011, 47.36915], [8.545585, 47.369441], [8.545661, 47.369463], [8.546433, 47.369831], [8.546675, 47.369765], [8.546977, 47.369869], [8.54707, 47.369923]]], "type": "MultiLineString"}, "id": "683", "properties": {}, "type": "Feature"}, {"bbox": [8.495402, 47.361995, 8.495946, 47.362301], "geometry": {"coordinates": [[[8.495946, 47.362301], [8.495719, 47.36214], [8.495599, 47.362067], [8.495514, 47.36203], [8.495402, 47.361995]]], "type": "MultiLineString"}, "id": "694", "properties": {}, "type": "Feature"}, {"bbox": [8.526343, 47.38826, 8.527373, 47.389242], "geometry": {"coordinates": [[[8.526343, 47.38826], [8.526899, 47.389072], [8.52721, 47.38914], [8.527373, 47.389242]]], "type": "MultiLineString"}, "id": "695", "properties": {}, "type": "Feature"}, {"bbox": [8.523115, 47.358318, 8.523551, 47.358483], "geometry": {"coordinates": [[[8.523115, 47.358445], [8.523168, 47.358452], [8.523281, 47.358463], [8.523459, 47.35848], [8.523494, 47.358483], [8.523551, 47.358318]]], "type": "MultiLineString"}, "id": "698", "properties": {}, "type": "Feature"}, {"bbox": [8.515001, 47.359681, 8.516504, 47.359734], "geometry": {"coordinates": [[[8.515001, 47.359734], [8.516504, 47.359681]]], "type": "MultiLineString"}, "id": "708", "properties": {}, "type": "Feature"}, {"bbox": [8.469634, 47.39091, 8.470923, 47.391759], "geometry": {"coordinates": [[[8.470923, 47.39091], [8.470593, 47.391183], [8.470365, 47.391264], [8.469979, 47.391645], [8.469684, 47.391739], [8.469634, 47.391759]]], "type": "MultiLineString"}, "id": "712", "properties": {}, "type": "Feature"}, {"bbox": [8.502012, 47.372162, 8.502889, 47.372251], "geometry": {"coordinates": [[[8.502889, 47.372162], [8.502817, 47.372199], [8.50278, 47.372217], [8.502622, 47.372251], [8.502012, 47.372249]]], "type": "MultiLineString"}, "id": "713", "properties": {}, "type": "Feature"}, {"bbox": [8.505498, 47.408257, 8.506017, 47.408427], "geometry": {"coordinates": [[[8.505498, 47.408427], [8.506017, 47.408257]]], "type": "MultiLineString"}, "id": "714", "properties": {}, "type": "Feature"}, {"bbox": [8.516751, 47.414696, 8.517185, 47.415399], "geometry": {"coordinates": [[[8.516751, 47.414696], [8.516798, 47.414799], [8.517016, 47.4152], [8.517185, 47.415399]]], "type": "MultiLineString"}, "id": "715", "properties": {}, "type": "Feature"}, {"bbox": [8.544288, 47.404212, 8.54541, 47.404951], "geometry": {"coordinates": [[[8.545149, 47.404212], [8.54541, 47.404638], [8.544288, 47.404951]]], "type": "MultiLineString"}, "id": "716", "properties": {}, "type": "Feature"}, {"bbox": [8.544599, 47.410737, 8.544672, 47.410759], "geometry": {"coordinates": [[[8.544672, 47.410759], [8.544599, 47.410737]]], "type": "MultiLineString"}, "id": "719", "properties": {}, "type": "Feature"}, {"bbox": [8.510786, 47.42549, 8.511701, 47.425751], "geometry": {"coordinates": [[[8.511701, 47.42549], [8.511579, 47.42553], [8.511425, 47.42558], [8.511305, 47.425618], [8.511182, 47.425653], [8.511058, 47.425685], [8.510786, 47.425751]]], "type": "MultiLineString"}, "id": "721", "properties": {}, "type": "Feature"}, {"bbox": [8.580266, 47.357136, 8.581463, 47.35753], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580277, 47.357165], [8.580292, 47.357195], [8.58031, 47.357223], [8.580331, 47.35725], [8.58112, 47.357487], [8.581463, 47.35753]]], "type": "MultiLineString"}, "id": "722", "properties": {}, "type": "Feature"}, {"bbox": [8.57592, 47.374602, 8.576313, 47.374605], "geometry": {"coordinates": [[[8.57592, 47.374605], [8.576313, 47.374602]]], "type": "MultiLineString"}, "id": "727", "properties": {}, "type": "Feature"}, {"bbox": [8.546839, 47.385707, 8.54815, 47.38619], "geometry": {"coordinates": [[[8.546839, 47.385707], [8.547286, 47.38589], [8.547963, 47.386154], [8.54815, 47.38619]]], "type": "MultiLineString"}, "id": "728", "properties": {}, "type": "Feature"}, {"bbox": [8.510656, 47.407169, 8.510929, 47.40755], "geometry": {"coordinates": [[[8.510929, 47.40755], [8.510656, 47.407169]]], "type": "MultiLineString"}, "id": "731", "properties": {}, "type": "Feature"}, {"bbox": [8.583247, 47.399659, 8.583723, 47.40014], "geometry": {"coordinates": [[[8.583723, 47.40014], [8.583705, 47.400121], [8.583467, 47.39988], [8.583428, 47.39987], [8.583429, 47.399843], [8.583247, 47.399659]]], "type": "MultiLineString"}, "id": "734", "properties": {}, "type": "Feature"}, {"bbox": [8.527097, 47.412916, 8.52751, 47.413183], "geometry": {"coordinates": [[[8.527097, 47.412916], [8.527168, 47.412973], [8.52751, 47.413183]]], "type": "MultiLineString"}, "id": "738", "properties": {}, "type": "Feature"}, {"bbox": [8.583723, 47.399994, 8.584052, 47.40014], "geometry": {"coordinates": [[[8.583723, 47.40014], [8.584052, 47.399994]]], "type": "MultiLineString"}, "id": "741", "properties": {}, "type": "Feature"}, {"bbox": [8.545737, 47.427926, 8.546858, 47.429007], "geometry": {"coordinates": [[[8.545737, 47.427926], [8.545747, 47.427955], [8.545761, 47.427984], [8.545778, 47.428011], [8.5458, 47.428037], [8.545975, 47.428178], [8.546151, 47.428319], [8.546328, 47.428459], [8.546454, 47.428562], [8.546574, 47.428668], [8.546688, 47.428777], [8.546751, 47.428852], [8.546807, 47.428928], [8.546858, 47.429007]]], "type": "MultiLineString"}, "id": "742", "properties": {}, "type": "Feature"}, {"bbox": [8.576156, 47.407911, 8.576456, 47.408441], "geometry": {"coordinates": [[[8.576456, 47.408441], [8.576156, 47.407911]]], "type": "MultiLineString"}, "id": "744", "properties": {}, "type": "Feature"}, {"bbox": [8.507545, 47.408337, 8.509021, 47.410405], "geometry": {"coordinates": [[[8.507545, 47.408337], [8.50778, 47.408666], [8.508078, 47.409085], [8.508404, 47.409542], [8.509021, 47.410405]]], "type": "MultiLineString"}, "id": "752", "properties": {}, "type": "Feature"}, {"bbox": [8.539609, 47.374972, 8.53998, 47.375009], "geometry": {"coordinates": [[[8.539609, 47.375009], [8.53998, 47.374972]]], "type": "MultiLineString"}, "id": "759", "properties": {}, "type": "Feature"}, {"bbox": [8.54887, 47.362334, 8.550068, 47.362805], "geometry": {"coordinates": [[[8.54887, 47.362334], [8.550068, 47.362805]]], "type": "MultiLineString"}, "id": "760", "properties": {}, "type": "Feature"}, {"bbox": [8.534157, 47.342001, 8.535275, 47.342395], "geometry": {"coordinates": [[[8.535275, 47.342395], [8.534827, 47.342228], [8.534778, 47.342231], [8.534157, 47.342001]]], "type": "MultiLineString"}, "id": "761", "properties": {}, "type": "Feature"}, {"bbox": [8.544892, 47.367793, 8.54592, 47.368195], "geometry": {"coordinates": [[[8.544892, 47.367793], [8.545033, 47.367846], [8.545325, 47.367959], [8.54592, 47.368195]]], "type": "MultiLineString"}, "id": "764", "properties": {}, "type": "Feature"}, {"bbox": [8.510378, 47.408948, 8.510408, 47.40899], "geometry": {"coordinates": [[[8.510408, 47.40899], [8.510378, 47.408948]]], "type": "MultiLineString"}, "id": "765", "properties": {}, "type": "Feature"}, {"bbox": [8.597855, 47.364676, 8.5987, 47.364699], "geometry": {"coordinates": [[[8.597855, 47.364699], [8.5987, 47.364676]]], "type": "MultiLineString"}, "id": "766", "properties": {}, "type": "Feature"}, {"bbox": [8.510989, 47.397909, 8.511213, 47.398323], "geometry": {"coordinates": [[[8.510989, 47.397909], [8.511213, 47.398323]]], "type": "MultiLineString"}, "id": "767", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393195, 8.528746, 47.393206], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528746, 47.393206]]], "type": "MultiLineString"}, "id": "769", "properties": {}, "type": "Feature"}, {"bbox": [8.563799, 47.378805, 8.56479, 47.379824], "geometry": {"coordinates": [[[8.563799, 47.378805], [8.564091, 47.37922], [8.564138, 47.379285], [8.564204, 47.379376], [8.564303, 47.379494], [8.56433, 47.379522], [8.564443, 47.379632], [8.564508, 47.379693], [8.564551, 47.379731], [8.564625, 47.379774], [8.56479, 47.379824]]], "type": "MultiLineString"}, "id": "771", "properties": {}, "type": "Feature"}, {"bbox": [8.539475, 47.37641, 8.539609, 47.376442], "geometry": {"coordinates": [[[8.539609, 47.37641], [8.539475, 47.376442]]], "type": "MultiLineString"}, "id": "772", "properties": {}, "type": "Feature"}, {"bbox": [8.554421, 47.401186, 8.55517, 47.401731], "geometry": {"coordinates": [[[8.554421, 47.401731], [8.554521, 47.401657], [8.554664, 47.401528], [8.554781, 47.401446], [8.554935, 47.401343], [8.555056, 47.401243], [8.55517, 47.401186]]], "type": "MultiLineString"}, "id": "774", "properties": {}, "type": "Feature"}, {"bbox": [8.527303, 47.354764, 8.527693, 47.354768], "geometry": {"coordinates": [[[8.527303, 47.354764], [8.527693, 47.354768]]], "type": "MultiLineString"}, "id": "775", "properties": {}, "type": "Feature"}, {"bbox": [8.558566, 47.361979, 8.55882, 47.36246], "geometry": {"coordinates": [[[8.55882, 47.36246], [8.558695, 47.362367], [8.558566, 47.362259], [8.558745, 47.361979]]], "type": "MultiLineString"}, "id": "781", "properties": {}, "type": "Feature"}, {"bbox": [8.480698, 47.415978, 8.481362, 47.415999], "geometry": {"coordinates": [[[8.480698, 47.415981], [8.481076, 47.415978], [8.481151, 47.415986], [8.481275, 47.415985], [8.481362, 47.415999]]], "type": "MultiLineString"}, "id": "782", "properties": {}, "type": "Feature"}, {"bbox": [8.506771, 47.397168, 8.507117, 47.397501], "geometry": {"coordinates": [[[8.506771, 47.397168], [8.506823, 47.397236], [8.507117, 47.397501]]], "type": "MultiLineString"}, "id": "783", "properties": {}, "type": "Feature"}, {"bbox": [8.487825, 47.388778, 8.48803, 47.389351], "geometry": {"coordinates": [[[8.48803, 47.389351], [8.487825, 47.388778]]], "type": "MultiLineString"}, "id": "792", "properties": {}, "type": "Feature"}, {"bbox": [8.540463, 47.368237, 8.540969, 47.368585], "geometry": {"coordinates": [[[8.540969, 47.368585], [8.54063, 47.368538], [8.540707, 47.368268], [8.540463, 47.368237]]], "type": "MultiLineString"}, "id": "795", "properties": {}, "type": "Feature"}, {"bbox": [8.549471, 47.389867, 8.550882, 47.389882], "geometry": {"coordinates": [[[8.549471, 47.389867], [8.550882, 47.389882]]], "type": "MultiLineString"}, "id": "796", "properties": {}, "type": "Feature"}, {"bbox": [8.530922, 47.35216, 8.531994, 47.352331], "geometry": {"coordinates": [[[8.531994, 47.35216], [8.530922, 47.352331]]], "type": "MultiLineString"}, "id": "797", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.388393, 8.519495, 47.388618], "geometry": {"coordinates": [[[8.519442, 47.388393], [8.519495, 47.388472], [8.51938, 47.388502], [8.519458, 47.388618]]], "type": "MultiLineString"}, "id": "800", "properties": {}, "type": "Feature"}, {"bbox": [8.536929, 47.335408, 8.537148, 47.33561], "geometry": {"coordinates": [[[8.536929, 47.33561], [8.537046, 47.335512], [8.537148, 47.335408]]], "type": "MultiLineString"}, "id": "801", "properties": {}, "type": "Feature"}, {"bbox": [8.47537, 47.384152, 8.476143, 47.384547], "geometry": {"coordinates": [[[8.476143, 47.384152], [8.476042, 47.384218], [8.47537, 47.384547]]], "type": "MultiLineString"}, "id": "805", "properties": {}, "type": "Feature"}, {"bbox": [8.527662, 47.418077, 8.53144, 47.418311], "geometry": {"coordinates": [[[8.53144, 47.418311], [8.531394, 47.418243], [8.531069, 47.418144], [8.527662, 47.418077]]], "type": "MultiLineString"}, "id": "806", "properties": {}, "type": "Feature"}, {"bbox": [8.500651, 47.402063, 8.501561, 47.402873], "geometry": {"coordinates": [[[8.501561, 47.402063], [8.501511, 47.402115], [8.501091, 47.402496], [8.500911, 47.402697], [8.500849, 47.402719], [8.500796, 47.402777], [8.500651, 47.402873]]], "type": "MultiLineString"}, "id": "810", "properties": {}, "type": "Feature"}, {"bbox": [8.51066, 47.416794, 8.51211, 47.418395], "geometry": {"coordinates": [[[8.51066, 47.416794], [8.510756, 47.416916], [8.511531, 47.41768], [8.511603, 47.41776], [8.51211, 47.418395]]], "type": "MultiLineString"}, "id": "813", "properties": {}, "type": "Feature"}, {"bbox": [8.585792, 47.374111, 8.586659, 47.375253], "geometry": {"coordinates": [[[8.585792, 47.374111], [8.585836, 47.374137], [8.58588, 47.374164], [8.585922, 47.374191], [8.586158, 47.37451], [8.586383, 47.374832], [8.586598, 47.375157], [8.586618, 47.375189], [8.586639, 47.375221], [8.586659, 47.375253]]], "type": "MultiLineString"}, "id": "815", "properties": {}, "type": "Feature"}, {"bbox": [8.510049, 47.406536, 8.510801, 47.406971], "geometry": {"coordinates": [[[8.510049, 47.406715], [8.510213, 47.406948], [8.510431, 47.406875], [8.510499, 47.406971], [8.510728, 47.406899], [8.510801, 47.406874], [8.510564, 47.406536], [8.510495, 47.406559], [8.510049, 47.406715]]], "type": "MultiLineString"}, "id": "816", "properties": {}, "type": "Feature"}, {"bbox": [8.539474, 47.407597, 8.539783, 47.408029], "geometry": {"coordinates": [[[8.539474, 47.407597], [8.539783, 47.408029]]], "type": "MultiLineString"}, "id": "818", "properties": {}, "type": "Feature"}, {"bbox": [8.540513, 47.414976, 8.541865, 47.4164], "geometry": {"coordinates": [[[8.541865, 47.416254], [8.541678, 47.41626], [8.54152, 47.414976], [8.540513, 47.415037], [8.540676, 47.4164], [8.541689, 47.416337], [8.541678, 47.41626]]], "type": "MultiLineString"}, "id": "819", "properties": {}, "type": "Feature"}, {"bbox": [8.537934, 47.429987, 8.538568, 47.430545], "geometry": {"coordinates": [[[8.537934, 47.429987], [8.538029, 47.430194], [8.538177, 47.430197], [8.53819, 47.430229], [8.538336, 47.430268], [8.538524, 47.430429], [8.538568, 47.430545]]], "type": "MultiLineString"}, "id": "820", "properties": {}, "type": "Feature"}, {"bbox": [8.546969, 47.362987, 8.547173, 47.36304], "geometry": {"coordinates": [[[8.546969, 47.362987], [8.547173, 47.36304]]], "type": "MultiLineString"}, "id": "821", "properties": {}, "type": "Feature"}, {"bbox": [8.536288, 47.418388, 8.538372, 47.41843], "geometry": {"coordinates": [[[8.538372, 47.418388], [8.536288, 47.41843]]], "type": "MultiLineString"}, "id": "823", "properties": {}, "type": "Feature"}, {"bbox": [8.546179, 47.409267, 8.54651, 47.409987], "geometry": {"coordinates": [[[8.54651, 47.409267], [8.546394, 47.40938], [8.546368, 47.40946], [8.546338, 47.409555], [8.546294, 47.409628], [8.546179, 47.409987]]], "type": "MultiLineString"}, "id": "824", "properties": {}, "type": "Feature"}, {"bbox": [8.522186, 47.368368, 8.523134, 47.368875], "geometry": {"coordinates": [[[8.523134, 47.368875], [8.522186, 47.368368]]], "type": "MultiLineString"}, "id": "827", "properties": {}, "type": "Feature"}, {"bbox": [8.538294, 47.372712, 8.539535, 47.373058], "geometry": {"coordinates": [[[8.539535, 47.373058], [8.538999, 47.372848], [8.538875, 47.372809], [8.538747, 47.372776], [8.538617, 47.37275], [8.53851, 47.372733], [8.538403, 47.37272], [8.538294, 47.372712]]], "type": "MultiLineString"}, "id": "829", "properties": {}, "type": "Feature"}, {"bbox": [8.561035, 47.381097, 8.561513, 47.381467], "geometry": {"coordinates": [[[8.561513, 47.381467], [8.56108, 47.381141], [8.561035, 47.381097]]], "type": "MultiLineString"}, "id": "830", "properties": {}, "type": "Feature"}, {"bbox": [8.545231, 47.405681, 8.54572, 47.406362], "geometry": {"coordinates": [[[8.545231, 47.405681], [8.54526, 47.405698], [8.545548, 47.406109], [8.54572, 47.406362]]], "type": "MultiLineString"}, "id": "831", "properties": {}, "type": "Feature"}, {"bbox": [8.592312, 47.358461, 8.592566, 47.359173], "geometry": {"coordinates": [[[8.592312, 47.359173], [8.592402, 47.359042], [8.592411, 47.359025], [8.592419, 47.359008], [8.592424, 47.358991], [8.592428, 47.358973], [8.592566, 47.358461]]], "type": "MultiLineString"}, "id": "833", "properties": {}, "type": "Feature"}, {"bbox": [8.558736, 47.40739, 8.559523, 47.407413], "geometry": {"coordinates": [[[8.558736, 47.40739], [8.559295, 47.407407], [8.559523, 47.407413]]], "type": "MultiLineString"}, "id": "834", "properties": {}, "type": "Feature"}, {"bbox": [8.534931, 47.408585, 8.535695, 47.408999], "geometry": {"coordinates": [[[8.535695, 47.408585], [8.535103, 47.408754], [8.534931, 47.408808], [8.534994, 47.408999]]], "type": "MultiLineString"}, "id": "835", "properties": {}, "type": "Feature"}, {"bbox": [8.504952, 47.418233, 8.506106, 47.41862], "geometry": {"coordinates": [[[8.506106, 47.418233], [8.505817, 47.418303], [8.504952, 47.41862]]], "type": "MultiLineString"}, "id": "838", "properties": {}, "type": "Feature"}, {"bbox": [8.489224, 47.38695, 8.489281, 47.387126], "geometry": {"coordinates": [[[8.489281, 47.387126], [8.489224, 47.38695]]], "type": "MultiLineString"}, "id": "839", "properties": {}, "type": "Feature"}, {"bbox": [8.480204, 47.360299, 8.480317, 47.360328], "geometry": {"coordinates": [[[8.480317, 47.360328], [8.480204, 47.360299]]], "type": "MultiLineString"}, "id": "840", "properties": {}, "type": "Feature"}, {"bbox": [8.47929, 47.360561, 8.479329, 47.360657], "geometry": {"coordinates": [[[8.47929, 47.360657], [8.479303, 47.360625], [8.479316, 47.360593], [8.479329, 47.360561]]], "type": "MultiLineString"}, "id": "842", "properties": {}, "type": "Feature"}, {"bbox": [8.544645, 47.38884, 8.545593, 47.3896], "geometry": {"coordinates": [[[8.545593, 47.38884], [8.545497, 47.388894], [8.544959, 47.389275], [8.54504, 47.38932], [8.544645, 47.3896]]], "type": "MultiLineString"}, "id": "845", "properties": {}, "type": "Feature"}, {"bbox": [8.560386, 47.361603, 8.561212, 47.361856], "geometry": {"coordinates": [[[8.560386, 47.361856], [8.560536, 47.361835], [8.560682, 47.361806], [8.560824, 47.361767], [8.560961, 47.361721], [8.56109, 47.361666], [8.561212, 47.361603]]], "type": "MultiLineString"}, "id": "848", "properties": {}, "type": "Feature"}, {"bbox": [8.524083, 47.387085, 8.524434, 47.387314], "geometry": {"coordinates": [[[8.524198, 47.387314], [8.524434, 47.387201], [8.524083, 47.387085]]], "type": "MultiLineString"}, "id": "849", "properties": {}, "type": "Feature"}, {"bbox": [8.538549, 47.373931, 8.538842, 47.3743], "geometry": {"coordinates": [[[8.538842, 47.373931], [8.538549, 47.3743]]], "type": "MultiLineString"}, "id": "850", "properties": {}, "type": "Feature"}, {"bbox": [8.527942, 47.374254, 8.528676, 47.374829], "geometry": {"coordinates": [[[8.528634, 47.374385], [8.528676, 47.374354], [8.528498, 47.374254], [8.527942, 47.374764], [8.52807, 47.374829], [8.528634, 47.374385]]], "type": "MultiLineString"}, "id": "851", "properties": {}, "type": "Feature"}, {"bbox": [8.554078, 47.365919, 8.555785, 47.366518], "geometry": {"coordinates": [[[8.554078, 47.366518], [8.554286, 47.366311], [8.554593, 47.366122], [8.554883, 47.365919], [8.555604, 47.366227], [8.555661, 47.366251], [8.555722, 47.36627], [8.555785, 47.366285]]], "type": "MultiLineString"}, "id": "853", "properties": {}, "type": "Feature"}, {"bbox": [8.544823, 47.41724, 8.544928, 47.418043], "geometry": {"coordinates": [[[8.544823, 47.41724], [8.54486, 47.417576], [8.54489, 47.417767], [8.544912, 47.417991], [8.544915, 47.418009], [8.544921, 47.418026], [8.544928, 47.418043]]], "type": "MultiLineString"}, "id": "855", "properties": {}, "type": "Feature"}, {"bbox": [8.561384, 47.41626, 8.562263, 47.417983], "geometry": {"coordinates": [[[8.561384, 47.417983], [8.562263, 47.41626]]], "type": "MultiLineString"}, "id": "860", "properties": {}, "type": "Feature"}, {"bbox": [8.549147, 47.400012, 8.550262, 47.40055], "geometry": {"coordinates": [[[8.549147, 47.400012], [8.549231, 47.40004], [8.549316, 47.400069], [8.549402, 47.400096], [8.549708, 47.40023], [8.549996, 47.400382], [8.550262, 47.40055]]], "type": "MultiLineString"}, "id": "866", "properties": {}, "type": "Feature"}, {"bbox": [8.527868, 47.350028, 8.529276, 47.350488], "geometry": {"coordinates": [[[8.527868, 47.350028], [8.527952, 47.350029], [8.527999, 47.350033], [8.528128, 47.350055], [8.528359, 47.350113], [8.528614, 47.350221], [8.528662, 47.350241], [8.528741, 47.350261], [8.528805, 47.350278], [8.528975, 47.350301], [8.528921, 47.350488], [8.529194, 47.350485], [8.529276, 47.350484]]], "type": "MultiLineString"}, "id": "867", "properties": {}, "type": "Feature"}, {"bbox": [8.481904, 47.385164, 8.482561, 47.385218], "geometry": {"coordinates": [[[8.481904, 47.385164], [8.481998, 47.385175], [8.482092, 47.385189], [8.482186, 47.385205], [8.482248, 47.385213], [8.482311, 47.385217], [8.482374, 47.385218], [8.482437, 47.385215], [8.4825, 47.385208], [8.482561, 47.385197]]], "type": "MultiLineString"}, "id": "868", "properties": {}, "type": "Feature"}, {"bbox": [8.491296, 47.37316, 8.492161, 47.373481], "geometry": {"coordinates": [[[8.491296, 47.373481], [8.491298, 47.373474], [8.4913, 47.373468], [8.491303, 47.373462], [8.491307, 47.373456], [8.491312, 47.37345], [8.491317, 47.373444], [8.491323, 47.373439], [8.49138, 47.373401], [8.491442, 47.373367], [8.491508, 47.373336], [8.491577, 47.37331], [8.491672, 47.37328], [8.491769, 47.373254], [8.491867, 47.37323], [8.491966, 47.373208], [8.492063, 47.373185], [8.492161, 47.37316]]], "type": "MultiLineString"}, "id": "869", "properties": {}, "type": "Feature"}, {"bbox": [8.550818, 47.392402, 8.551303, 47.392435], "geometry": {"coordinates": [[[8.550818, 47.392402], [8.550822, 47.392406], [8.550827, 47.39241], [8.550832, 47.392413], [8.550838, 47.392416], [8.550844, 47.392419], [8.550851, 47.392422], [8.550857, 47.392424], [8.550864, 47.392425], [8.550872, 47.392427], [8.550879, 47.392428], [8.550887, 47.392428], [8.550894, 47.392428], [8.550901, 47.392427], [8.550909, 47.392426], [8.551303, 47.392435]]], "type": "MultiLineString"}, "id": "870", "properties": {}, "type": "Feature"}, {"bbox": [8.508243, 47.425937, 8.508428, 47.426671], "geometry": {"coordinates": [[[8.508369, 47.425937], [8.508428, 47.426236], [8.508426, 47.426263], [8.508421, 47.426291], [8.508413, 47.426318], [8.508361, 47.426437], [8.508304, 47.426554], [8.508243, 47.426671]]], "type": "MultiLineString"}, "id": "874", "properties": {}, "type": "Feature"}, {"bbox": [8.509233, 47.372109, 8.509729, 47.372469], "geometry": {"coordinates": [[[8.509233, 47.372109], [8.509638, 47.372411], [8.509729, 47.372469]]], "type": "MultiLineString"}, "id": "875", "properties": {}, "type": "Feature"}, {"bbox": [8.536487, 47.42582, 8.540834, 47.426204], "geometry": {"coordinates": [[[8.540834, 47.42582], [8.539263, 47.425948], [8.537052, 47.426131], [8.536487, 47.426204]]], "type": "MultiLineString"}, "id": "876", "properties": {}, "type": "Feature"}, {"bbox": [8.560355, 47.376183, 8.56118, 47.37672], "geometry": {"coordinates": [[[8.56118, 47.37672], [8.561036, 47.376554], [8.560877, 47.37638], [8.560665, 47.376208], [8.560573, 47.376183], [8.560442, 47.376237], [8.560355, 47.376288]]], "type": "MultiLineString"}, "id": "878", "properties": {}, "type": "Feature"}, {"bbox": [8.483397, 47.385577, 8.484808, 47.386824], "geometry": {"coordinates": [[[8.484808, 47.38616], [8.484614, 47.385787], [8.484244, 47.385577], [8.483397, 47.386594], [8.483796, 47.386824]]], "type": "MultiLineString"}, "id": "879", "properties": {}, "type": "Feature"}, {"bbox": [8.483796, 47.38616, 8.484808, 47.386824], "geometry": {"coordinates": [[[8.483796, 47.386824], [8.48401, 47.386633], [8.484146, 47.386647], [8.484808, 47.38616]]], "type": "MultiLineString"}, "id": "880", "properties": {}, "type": "Feature"}, {"bbox": [8.536126, 47.37738, 8.536651, 47.377944], "geometry": {"coordinates": [[[8.536592, 47.377944], [8.536651, 47.377923], [8.536181, 47.37738], [8.536126, 47.377399], [8.536276, 47.377556]]], "type": "MultiLineString"}, "id": "881", "properties": {}, "type": "Feature"}, {"bbox": [8.492907, 47.382345, 8.492953, 47.382514], "geometry": {"coordinates": [[[8.492907, 47.382514], [8.492953, 47.382345]]], "type": "MultiLineString"}, "id": "882", "properties": {}, "type": "Feature"}, {"bbox": [8.470389, 47.39272, 8.471037, 47.393063], "geometry": {"coordinates": [[[8.471037, 47.39272], [8.471026, 47.392736], [8.471012, 47.392752], [8.470997, 47.392766], [8.47098, 47.39278], [8.470961, 47.392792], [8.470941, 47.392804], [8.470389, 47.393063]]], "type": "MultiLineString"}, "id": "884", "properties": {}, "type": "Feature"}, {"bbox": [8.535599, 47.400329, 8.536125, 47.40087], "geometry": {"coordinates": [[[8.536125, 47.400329], [8.535599, 47.40087]]], "type": "MultiLineString"}, "id": "885", "properties": {}, "type": "Feature"}, {"bbox": [8.533544, 47.401291, 8.534443, 47.401958], "geometry": {"coordinates": [[[8.534443, 47.401291], [8.534287, 47.40133], [8.533949, 47.401602], [8.533686, 47.401806], [8.533633, 47.401854], [8.533586, 47.401905], [8.533544, 47.401958]]], "type": "MultiLineString"}, "id": "888", "properties": {}, "type": "Feature"}, {"bbox": [8.542915, 47.395716, 8.54349, 47.396076], "geometry": {"coordinates": [[[8.542915, 47.395803], [8.543342, 47.395716], [8.54349, 47.396076]]], "type": "MultiLineString"}, "id": "889", "properties": {}, "type": "Feature"}, {"bbox": [8.516576, 47.335573, 8.517726, 47.336228], "geometry": {"coordinates": [[[8.516612, 47.335573], [8.516618, 47.335609], [8.516632, 47.3357], [8.516576, 47.335911], [8.516648, 47.33592], [8.517219, 47.336082], [8.517683, 47.336216], [8.517726, 47.336228]]], "type": "MultiLineString"}, "id": "890", "properties": {}, "type": "Feature"}, {"bbox": [8.514116, 47.390646, 8.515808, 47.39129], "geometry": {"coordinates": [[[8.514116, 47.390646], [8.514239, 47.390703], [8.514367, 47.390753], [8.514499, 47.390798], [8.515645, 47.39111], [8.515673, 47.391125], [8.515699, 47.391141], [8.515722, 47.391159], [8.515743, 47.391179], [8.515762, 47.391199], [8.515778, 47.391221], [8.515791, 47.391243], [8.515801, 47.391266], [8.515808, 47.39129]]], "type": "MultiLineString"}, "id": "893", "properties": {}, "type": "Feature"}, {"bbox": [8.496794, 47.363597, 8.498445, 47.364532], "geometry": {"coordinates": [[[8.498445, 47.363765], [8.498159, 47.363606], [8.498144, 47.363602], [8.498129, 47.3636], [8.498114, 47.363598], [8.498099, 47.363597], [8.498084, 47.363598], [8.498068, 47.363599], [8.498053, 47.363601], [8.498039, 47.363604], [8.498025, 47.363608], [8.498011, 47.363612], [8.497998, 47.363618], [8.497986, 47.363624], [8.497974, 47.363631], [8.497964, 47.363639], [8.496794, 47.364532]]], "type": "MultiLineString"}, "id": "894", "properties": {}, "type": "Feature"}, {"bbox": [8.505226, 47.397857, 8.505566, 47.398184], "geometry": {"coordinates": [[[8.505226, 47.397857], [8.505236, 47.397867], [8.505247, 47.397876], [8.505257, 47.397886], [8.505358, 47.39798], [8.505459, 47.398075], [8.505561, 47.398169], [8.505562, 47.398172], [8.505564, 47.398174], [8.505565, 47.398177], [8.505566, 47.398179], [8.505566, 47.398182], [8.505566, 47.398184]]], "type": "MultiLineString"}, "id": "895", "properties": {}, "type": "Feature"}, {"bbox": [8.54042, 47.404682, 8.541238, 47.405263], "geometry": {"coordinates": [[[8.54042, 47.404682], [8.540587, 47.404788], [8.540756, 47.404893], [8.540925, 47.404997], [8.540992, 47.405009], [8.541002, 47.405009], [8.541012, 47.405009], [8.541023, 47.405011], [8.541033, 47.405012], [8.541042, 47.405015], [8.541052, 47.405018], [8.541061, 47.405021], [8.541069, 47.405025], [8.541077, 47.40503], [8.541084, 47.405035], [8.541238, 47.405263]]], "type": "MultiLineString"}, "id": "900", "properties": {}, "type": "Feature"}, {"bbox": [8.542066, 47.392509, 8.542359, 47.392664], "geometry": {"coordinates": [[[8.542359, 47.392509], [8.542066, 47.392664]]], "type": "MultiLineString"}, "id": "901", "properties": {}, "type": "Feature"}, {"bbox": [8.582891, 47.401335, 8.583285, 47.401995], "geometry": {"coordinates": [[[8.583285, 47.401995], [8.583108, 47.401783], [8.583011, 47.401542], [8.582891, 47.401335]]], "type": "MultiLineString"}, "id": "902", "properties": {}, "type": "Feature"}, {"bbox": [8.474711, 47.401934, 8.474736, 47.40303], "geometry": {"coordinates": [[[8.474729, 47.40303], [8.474736, 47.402665], [8.47473, 47.402299], [8.474711, 47.401934]]], "type": "MultiLineString"}, "id": "903", "properties": {}, "type": "Feature"}, {"bbox": [8.492953, 47.381377, 8.494665, 47.382345], "geometry": {"coordinates": [[[8.492953, 47.382345], [8.493231, 47.382252], [8.494665, 47.381553], [8.494496, 47.381377]]], "type": "MultiLineString"}, "id": "907", "properties": {}, "type": "Feature"}, {"bbox": [8.472737, 47.389278, 8.472752, 47.389678], "geometry": {"coordinates": [[[8.472746, 47.389278], [8.472749, 47.389366], [8.472751, 47.389454], [8.472752, 47.389542], [8.472749, 47.389587], [8.472744, 47.389633], [8.472737, 47.389678]]], "type": "MultiLineString"}, "id": "911", "properties": {}, "type": "Feature"}, {"bbox": [8.544043, 47.391051, 8.544156, 47.392244], "geometry": {"coordinates": [[[8.544043, 47.392244], [8.544075, 47.391926], [8.544129, 47.391401], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "913", "properties": {}, "type": "Feature"}, {"bbox": [8.58272, 47.399893, 8.583081, 47.400435], "geometry": {"coordinates": [[[8.583081, 47.400435], [8.583061, 47.400414], [8.58272, 47.400069], [8.582895, 47.399916], [8.582872, 47.399893]]], "type": "MultiLineString"}, "id": "914", "properties": {}, "type": "Feature"}, {"bbox": [8.514562, 47.324233, 8.515369, 47.324525], "geometry": {"coordinates": [[[8.514562, 47.324525], [8.514755, 47.324518], [8.514932, 47.324497], [8.515176, 47.324368], [8.515334, 47.32425], [8.515369, 47.324233]]], "type": "MultiLineString"}, "id": "915", "properties": {}, "type": "Feature"}, {"bbox": [8.534851, 47.375635, 8.535521, 47.376093], "geometry": {"coordinates": [[[8.535371, 47.375802], [8.535306, 47.375847], [8.535023, 47.375635], [8.534851, 47.375711], [8.53546, 47.376093], [8.535521, 47.376065]]], "type": "MultiLineString"}, "id": "916", "properties": {}, "type": "Feature"}, {"bbox": [8.530293, 47.338487, 8.530472, 47.338679], "geometry": {"coordinates": [[[8.530472, 47.338646], [8.530306, 47.338679], [8.530293, 47.338487]]], "type": "MultiLineString"}, "id": "920", "properties": {}, "type": "Feature"}, {"bbox": [8.505835, 47.426006, 8.506068, 47.426478], "geometry": {"coordinates": [[[8.506068, 47.426006], [8.505961, 47.426179], [8.505835, 47.426478]]], "type": "MultiLineString"}, "id": "922", "properties": {}, "type": "Feature"}, {"bbox": [8.538742, 47.415032, 8.539311, 47.41523], "geometry": {"coordinates": [[[8.538742, 47.41523], [8.538748, 47.415205], [8.539311, 47.415176], [8.539298, 47.415032]]], "type": "MultiLineString"}, "id": "923", "properties": {}, "type": "Feature"}, {"bbox": [8.545146, 47.427779, 8.545737, 47.427926], "geometry": {"coordinates": [[[8.545146, 47.427779], [8.545589, 47.427919], [8.545737, 47.427926]]], "type": "MultiLineString"}, "id": "927", "properties": {}, "type": "Feature"}, {"bbox": [8.535158, 47.386813, 8.536003, 47.386995], "geometry": {"coordinates": [[[8.535158, 47.386813], [8.535503, 47.386888], [8.536003, 47.386995]]], "type": "MultiLineString"}, "id": "931", "properties": {}, "type": "Feature"}, {"bbox": [8.533939, 47.399359, 8.534439, 47.40054], "geometry": {"coordinates": [[[8.533939, 47.399359], [8.533973, 47.399512], [8.534178, 47.399899], [8.534353, 47.400182], [8.534439, 47.40054]]], "type": "MultiLineString"}, "id": "933", "properties": {}, "type": "Feature"}, {"bbox": [8.556606, 47.384484, 8.55699, 47.385063], "geometry": {"coordinates": [[[8.556905, 47.384484], [8.55699, 47.384821], [8.556781, 47.384899], [8.556763, 47.384907], [8.556745, 47.384916], [8.55673, 47.384926], [8.556715, 47.384936], [8.556702, 47.384948], [8.556691, 47.38496], [8.556606, 47.385063]]], "type": "MultiLineString"}, "id": "934", "properties": {}, "type": "Feature"}, {"bbox": [8.4855, 47.38721, 8.48629, 47.38781], "geometry": {"coordinates": [[[8.48629, 47.387236], [8.486276, 47.38721], [8.485693, 47.38733], [8.485666, 47.387336], [8.485647, 47.387297], [8.4855, 47.387326], [8.485597, 47.387434], [8.48552, 47.387458], [8.485669, 47.38781], [8.485915, 47.387762]]], "type": "MultiLineString"}, "id": "937", "properties": {}, "type": "Feature"}, {"bbox": [8.529718, 47.373579, 8.529875, 47.373701], "geometry": {"coordinates": [[[8.529875, 47.373579], [8.529718, 47.373701]]], "type": "MultiLineString"}, "id": "938", "properties": {}, "type": "Feature"}, {"bbox": [8.525267, 47.349196, 8.525463, 47.349538], "geometry": {"coordinates": [[[8.525267, 47.349538], [8.525353, 47.349397], [8.525463, 47.349196]]], "type": "MultiLineString"}, "id": "942", "properties": {}, "type": "Feature"}, {"bbox": [8.538961, 47.403066, 8.540277, 47.40349], "geometry": {"coordinates": [[[8.538961, 47.403066], [8.539175, 47.403136], [8.53954, 47.403257], [8.539907, 47.403375], [8.540277, 47.40349]]], "type": "MultiLineString"}, "id": "943", "properties": {}, "type": "Feature"}, {"bbox": [8.544729, 47.409863, 8.544952, 47.41033], "geometry": {"coordinates": [[[8.544832, 47.41033], [8.544758, 47.410311], [8.544952, 47.409969], [8.544909, 47.409908], [8.544729, 47.409863]]], "type": "MultiLineString"}, "id": "946", "properties": {}, "type": "Feature"}, {"bbox": [8.540232, 47.411572, 8.540891, 47.412367], "geometry": {"coordinates": [[[8.540478, 47.412367], [8.540439, 47.412351], [8.540891, 47.411814], [8.540277, 47.411572], [8.540232, 47.411625]]], "type": "MultiLineString"}, "id": "949", "properties": {}, "type": "Feature"}, {"bbox": [8.516319, 47.389213, 8.516994, 47.389849], "geometry": {"coordinates": [[[8.516973, 47.389213], [8.516994, 47.389235], [8.516319, 47.389458], [8.516605, 47.389849]]], "type": "MultiLineString"}, "id": "950", "properties": {}, "type": "Feature"}, {"bbox": [8.524667, 47.395607, 8.526283, 47.396144], "geometry": {"coordinates": [[[8.526283, 47.395607], [8.526206, 47.395665], [8.526047, 47.395761], [8.525454, 47.395939], [8.525341, 47.395966], [8.524988, 47.39607], [8.524667, 47.396144]]], "type": "MultiLineString"}, "id": "951", "properties": {}, "type": "Feature"}, {"bbox": [8.535246, 47.340096, 8.536293, 47.340354], "geometry": {"coordinates": [[[8.536293, 47.340354], [8.535246, 47.340096]]], "type": "MultiLineString"}, "id": "954", "properties": {}, "type": "Feature"}, {"bbox": [8.539707, 47.401088, 8.540917, 47.402096], "geometry": {"coordinates": [[[8.540917, 47.401088], [8.540842, 47.401172], [8.540761, 47.401254], [8.540675, 47.401334], [8.54057, 47.401416], [8.540456, 47.401493], [8.540332, 47.401563], [8.540201, 47.401626], [8.540121, 47.401671], [8.540049, 47.401722], [8.539983, 47.401776], [8.539924, 47.401834], [8.539852, 47.401922], [8.53978, 47.402009], [8.539707, 47.402096]]], "type": "MultiLineString"}, "id": "956", "properties": {}, "type": "Feature"}, {"bbox": [8.521643, 47.350248, 8.522139, 47.351468], "geometry": {"coordinates": [[[8.522139, 47.350248], [8.521977, 47.350671], [8.521885, 47.350889], [8.521774, 47.351117], [8.52173, 47.351226], [8.521667, 47.351379], [8.521643, 47.351468]]], "type": "MultiLineString"}, "id": "957", "properties": {}, "type": "Feature"}, {"bbox": [8.589591, 47.402985, 8.590491, 47.403058], "geometry": {"coordinates": [[[8.589591, 47.403058], [8.590418, 47.402991], [8.590491, 47.402985]]], "type": "MultiLineString"}, "id": "958", "properties": {}, "type": "Feature"}, {"bbox": [8.531289, 47.384352, 8.531976, 47.384872], "geometry": {"coordinates": [[[8.531976, 47.384352], [8.531289, 47.384872]]], "type": "MultiLineString"}, "id": "959", "properties": {}, "type": "Feature"}, {"bbox": [8.54274, 47.403535, 8.543088, 47.404106], "geometry": {"coordinates": [[[8.54274, 47.403535], [8.542757, 47.403553], [8.542772, 47.403572], [8.542784, 47.403592], [8.543088, 47.404106]]], "type": "MultiLineString"}, "id": "965", "properties": {}, "type": "Feature"}, {"bbox": [8.506925, 47.392771, 8.507603, 47.393221], "geometry": {"coordinates": [[[8.506925, 47.392771], [8.507276, 47.39299], [8.507602, 47.39321], [8.507603, 47.393221]]], "type": "MultiLineString"}, "id": "966", "properties": {}, "type": "Feature"}, {"bbox": [8.516693, 47.377038, 8.516735, 47.377039], "geometry": {"coordinates": [[[8.516735, 47.377039], [8.516693, 47.377038]]], "type": "MultiLineString"}, "id": "968", "properties": {}, "type": "Feature"}, {"bbox": [8.53412, 47.380022, 8.534917, 47.380269], "geometry": {"coordinates": [[[8.534917, 47.380269], [8.534772, 47.380022], [8.53412, 47.380155]]], "type": "MultiLineString"}, "id": "972", "properties": {}, "type": "Feature"}, {"bbox": [8.534438, 47.380373, 8.53459, 47.380561], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.53459, 47.380529], [8.534492, 47.380373]]], "type": "MultiLineString"}, "id": "973", "properties": {}, "type": "Feature"}, {"bbox": [8.520014, 47.342955, 8.520133, 47.343283], "geometry": {"coordinates": [[[8.520014, 47.342955], [8.520133, 47.343283]]], "type": "MultiLineString"}, "id": "975", "properties": {}, "type": "Feature"}, {"bbox": [8.583247, 47.399487, 8.583524, 47.399659], "geometry": {"coordinates": [[[8.583247, 47.399659], [8.583341, 47.399603], [8.583434, 47.399546], [8.583524, 47.399487]]], "type": "MultiLineString"}, "id": "978", "properties": {}, "type": "Feature"}, {"bbox": [8.563371, 47.410191, 8.563551, 47.410261], "geometry": {"coordinates": [[[8.563371, 47.410191], [8.563551, 47.410261]]], "type": "MultiLineString"}, "id": "980", "properties": {}, "type": "Feature"}, {"bbox": [8.591483, 47.400991, 8.591776, 47.401487], "geometry": {"coordinates": [[[8.591483, 47.400991], [8.591776, 47.401487]]], "type": "MultiLineString"}, "id": "985", "properties": {}, "type": "Feature"}, {"bbox": [8.569334, 47.408824, 8.570013, 47.409435], "geometry": {"coordinates": [[[8.570013, 47.408824], [8.569528, 47.409313], [8.569468, 47.409357], [8.569403, 47.409398], [8.569334, 47.409435]]], "type": "MultiLineString"}, "id": "988", "properties": {}, "type": "Feature"}, {"bbox": [8.532996, 47.416359, 8.533273, 47.417377], "geometry": {"coordinates": [[[8.533273, 47.416359], [8.532996, 47.417377]]], "type": "MultiLineString"}, "id": "989", "properties": {}, "type": "Feature"}, {"bbox": [8.551417, 47.402813, 8.551728, 47.403436], "geometry": {"coordinates": [[[8.551417, 47.402813], [8.551484, 47.402886], [8.551728, 47.403436]]], "type": "MultiLineString"}, "id": "991", "properties": {}, "type": "Feature"}, {"bbox": [8.550262, 47.399747, 8.551007, 47.40055], "geometry": {"coordinates": [[[8.550262, 47.40055], [8.550704, 47.400153], [8.551007, 47.399873], [8.550756, 47.399747]]], "type": "MultiLineString"}, "id": "994", "properties": {}, "type": "Feature"}, {"bbox": [8.584751, 47.360719, 8.585079, 47.361919], "geometry": {"coordinates": [[[8.584751, 47.360719], [8.584777, 47.36073], [8.584805, 47.360739], [8.584833, 47.360747], [8.584863, 47.360752], [8.584935, 47.360762], [8.585008, 47.360773], [8.585079, 47.360787], [8.58491, 47.361919]]], "type": "MultiLineString"}, "id": "995", "properties": {}, "type": "Feature"}, {"bbox": [8.546838, 47.425332, 8.547469, 47.425877], "geometry": {"coordinates": [[[8.546838, 47.425332], [8.546941, 47.425397], [8.547041, 47.425465], [8.547136, 47.425535], [8.547253, 47.425647], [8.547364, 47.425761], [8.547469, 47.425877]]], "type": "MultiLineString"}, "id": "996", "properties": {}, "type": "Feature"}, {"bbox": [8.507117, 47.397501, 8.507383, 47.397741], "geometry": {"coordinates": [[[8.507117, 47.397501], [8.507383, 47.397741]]], "type": "MultiLineString"}, "id": "998", "properties": {}, "type": "Feature"}, {"bbox": [8.487959, 47.378234, 8.488294, 47.378398], "geometry": {"coordinates": [[[8.488294, 47.378398], [8.488047, 47.378271], [8.488019, 47.378257], [8.487989, 47.378245], [8.487959, 47.378234]]], "type": "MultiLineString"}, "id": "999", "properties": {}, "type": "Feature"}, {"bbox": [8.481075, 47.411495, 8.483549, 47.412216], "geometry": {"coordinates": [[[8.483549, 47.411495], [8.482127, 47.411906], [8.481918, 47.411972], [8.481075, 47.412216]]], "type": "MultiLineString"}, "id": "1000", "properties": {}, "type": "Feature"}, {"bbox": [8.583081, 47.40014, 8.583723, 47.400435], "geometry": {"coordinates": [[[8.583081, 47.400435], [8.583396, 47.40029], [8.583723, 47.40014]]], "type": "MultiLineString"}, "id": "1001", "properties": {}, "type": "Feature"}, {"bbox": [8.541269, 47.406404, 8.541474, 47.406704], "geometry": {"coordinates": [[[8.541269, 47.406404], [8.541336, 47.406493], [8.541429, 47.40662], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "1003", "properties": {}, "type": "Feature"}, {"bbox": [8.586103, 47.398881, 8.586488, 47.399625], "geometry": {"coordinates": [[[8.586103, 47.398881], [8.586139, 47.398904], [8.586307, 47.399163], [8.586362, 47.399213], [8.586424, 47.399364], [8.586434, 47.399458], [8.586488, 47.399625]]], "type": "MultiLineString"}, "id": "1010", "properties": {}, "type": "Feature"}, {"bbox": [8.58416, 47.400125, 8.584562, 47.400728], "geometry": {"coordinates": [[[8.584562, 47.400728], [8.584483, 47.400685], [8.584173, 47.400191], [8.58416, 47.400125]]], "type": "MultiLineString"}, "id": "1011", "properties": {}, "type": "Feature"}, {"bbox": [8.557293, 47.403296, 8.557342, 47.403548], "geometry": {"coordinates": [[[8.557293, 47.403548], [8.5573, 47.403532], [8.557309, 47.403517], [8.557318, 47.403502], [8.557326, 47.403433], [8.557334, 47.403365], [8.557342, 47.403296]]], "type": "MultiLineString"}, "id": "1013", "properties": {}, "type": "Feature"}, {"bbox": [8.51377, 47.326797, 8.515909, 47.327637], "geometry": {"coordinates": [[[8.51377, 47.326797], [8.513881, 47.326836], [8.514239, 47.326964], [8.514596, 47.327062], [8.514927, 47.327281], [8.515078, 47.327383], [8.515404, 47.327494], [8.515476, 47.327534], [8.515557, 47.327562], [8.515625, 47.327602], [8.515724, 47.327635], [8.51576, 47.327637], [8.515909, 47.327622]]], "type": "MultiLineString"}, "id": "1014", "properties": {}, "type": "Feature"}, {"bbox": [8.537743, 47.390189, 8.538228, 47.390447], "geometry": {"coordinates": [[[8.537743, 47.390189], [8.537842, 47.390193], [8.538058, 47.390323], [8.538114, 47.390375], [8.538228, 47.390447]]], "type": "MultiLineString"}, "id": "1016", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.384838, 8.526884, 47.385143], "geometry": {"coordinates": [[[8.526884, 47.384838], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "1029", "properties": {}, "type": "Feature"}, {"bbox": [8.539587, 47.411614, 8.540232, 47.412532], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.540232, 47.411625], [8.539587, 47.412412], [8.539887, 47.412532]]], "type": "MultiLineString"}, "id": "1030", "properties": {}, "type": "Feature"}, {"bbox": [8.515621, 47.38618, 8.517553, 47.386648], "geometry": {"coordinates": [[[8.517553, 47.386648], [8.517099, 47.386532], [8.516319, 47.386345], [8.515815, 47.386225], [8.515621, 47.38618]]], "type": "MultiLineString"}, "id": "1031", "properties": {}, "type": "Feature"}, {"bbox": [8.510665, 47.414228, 8.512096, 47.414837], "geometry": {"coordinates": [[[8.510665, 47.414837], [8.510719, 47.414831], [8.510787, 47.414819], [8.510853, 47.414802], [8.510917, 47.414782], [8.510977, 47.414758], [8.511034, 47.41473], [8.511837, 47.414294], [8.51196, 47.414235], [8.512096, 47.414228]]], "type": "MultiLineString"}, "id": "1032", "properties": {}, "type": "Feature"}, {"bbox": [8.539463, 47.413626, 8.540659, 47.41436], "geometry": {"coordinates": [[[8.540344, 47.413806], [8.540357, 47.413964], [8.539463, 47.413626], [8.539481, 47.413712], [8.53955, 47.414265], [8.539555, 47.414294], [8.539564, 47.41436], [8.540659, 47.414308]]], "type": "MultiLineString"}, "id": "1035", "properties": {}, "type": "Feature"}, {"bbox": [8.498749, 47.421091, 8.499251, 47.421665], "geometry": {"coordinates": [[[8.499251, 47.421665], [8.498749, 47.421091]]], "type": "MultiLineString"}, "id": "1036", "properties": {}, "type": "Feature"}, {"bbox": [8.543959, 47.384777, 8.545685, 47.385302], "geometry": {"coordinates": [[[8.543959, 47.385302], [8.544103, 47.38527], [8.544848, 47.385036], [8.545007, 47.384987], [8.545685, 47.384777]]], "type": "MultiLineString"}, "id": "1038", "properties": {}, "type": "Feature"}, {"bbox": [8.515244, 47.382034, 8.515259, 47.382147], "geometry": {"coordinates": [[[8.515259, 47.382034], [8.515244, 47.382147]]], "type": "MultiLineString"}, "id": "1042", "properties": {}, "type": "Feature"}, {"bbox": [8.53712, 47.37563, 8.537393, 47.375729], "geometry": {"coordinates": [[[8.537393, 47.37563], [8.53732, 47.375649], [8.53725, 47.375672], [8.537183, 47.375698], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "1046", "properties": {}, "type": "Feature"}, {"bbox": [8.582223, 47.358342, 8.584116, 47.361189], "geometry": {"coordinates": [[[8.584057, 47.358342], [8.584116, 47.358432], [8.584115, 47.358448], [8.583176, 47.359614], [8.582973, 47.359906], [8.582756, 47.360296], [8.582353, 47.360954], [8.582307, 47.361052], [8.582223, 47.361189]]], "type": "MultiLineString"}, "id": "1047", "properties": {}, "type": "Feature"}, {"bbox": [8.506384, 47.334842, 8.514263, 47.33894], "geometry": {"coordinates": [[[8.514263, 47.33633], [8.514232, 47.336322], [8.514201, 47.336312], [8.514172, 47.3363], [8.514145, 47.336287], [8.514119, 47.336272], [8.514095, 47.336255], [8.514074, 47.336238], [8.514055, 47.336219], [8.514038, 47.336199], [8.513647, 47.335712], [8.513516, 47.335551], [8.513418, 47.33543], [8.513326, 47.33534], [8.513064, 47.335133], [8.513064, 47.335133], [8.513049, 47.335122], [8.513035, 47.335111], [8.513021, 47.3351], [8.512956, 47.335052], [8.51289, 47.335006], [8.512821, 47.334961], [8.512776, 47.334933], [8.512727, 47.334908], [8.512674, 47.334886], [8.512619, 47.334868], [8.512562, 47.334853], [8.512503, 47.334842], [8.512498, 47.334844], [8.512493, 47.334847], [8.512488, 47.334849], [8.512484, 47.334852], [8.512481, 47.334855], [8.512477, 47.334858], [8.512474, 47.334862], [8.512472, 47.334865], [8.51247, 47.334869], [8.512469, 47.334873], [8.512468, 47.334877], [8.512467, 47.334881], [8.512467, 47.334885], [8.512468, 47.334889], [8.512469, 47.334893], [8.51247, 47.334896], [8.512472, 47.3349], [8.512475, 47.334904], [8.512478, 47.334907], [8.512481, 47.33491], [8.512511, 47.334936], [8.512542, 47.334961], [8.512575, 47.334985], [8.512575, 47.334985], [8.512581, 47.334991], [8.512588, 47.334996], [8.512593, 47.335002], [8.512593, 47.335002], [8.512593, 47.335002], [8.512599, 47.33501], [8.512604, 47.335018], [8.512608, 47.335026], [8.512611, 47.335034], [8.512613, 47.335043], [8.512614, 47.335051], [8.512614, 47.33506], [8.512614, 47.33506], [8.512611, 47.335077], [8.512606, 47.335094], [8.512599, 47.33511], [8.51259, 47.335126], [8.512578, 47.335141], [8.512493, 47.335241], [8.512488, 47.335247], [8.512484, 47.335254], [8.512481, 47.335261], [8.512478, 47.335268], [8.512477, 47.335275], [8.512476, 47.335282], [8.512477, 47.335289], [8.512478, 47.335296], [8.51248, 47.335303], [8.512483, 47.33531], [8.512487, 47.335316], [8.512491, 47.335323], [8.512497, 47.335329], [8.512503, 47.335334], [8.512509, 47.33534], [8.512558, 47.335375], [8.512566, 47.335381], [8.512573, 47.335388], [8.51258, 47.335395], [8.512585, 47.335403], [8.51259, 47.335411], [8.512593, 47.335419], [8.512596, 47.335427], [8.512597, 47.335436], [8.512598, 47.335444], [8.512597, 47.335453], [8.51258, 47.335574], [8.512578, 47.335583], [8.512575, 47.335592], [8.512571, 47.3356], [8.512566, 47.335609], [8.51256, 47.335617], [8.512553, 47.335624], [8.512545, 47.335632], [8.512536, 47.335638], [8.512526, 47.335645], [8.512516, 47.33565], [8.512505, 47.335655], [8.512493, 47.33566], [8.512481, 47.335663], [8.512459, 47.33567], [8.512438, 47.335678], [8.512419, 47.335687], [8.5124, 47.335698], [8.512384, 47.335709], [8.512368, 47.335721], [8.512355, 47.335734], [8.512343, 47.335749], [8.512333, 47.335763], [8.512325, 47.335778], [8.512312, 47.335811], [8.512304, 47.335844], [8.5123, 47.335878], [8.512301, 47.335911], [8.512306, 47.335945], [8.512315, 47.335978], [8.512358, 47.336103], [8.512362, 47.336116], [8.512364, 47.336129], [8.512364, 47.336143], [8.512363, 47.336156], [8.512359, 47.33617], [8.512354, 47.336183], [8.512348, 47.336196], [8.512339, 47.336208], [8.512272, 47.336297], [8.51225, 47.336329], [8.512233, 47.336362], [8.51222, 47.336396], [8.512212, 47.33643], [8.512208, 47.336465], [8.512208, 47.3365], [8.512214, 47.336535], [8.512223, 47.336569], [8.512238, 47.336603], [8.512256, 47.336636], [8.512262, 47.336646], [8.512267, 47.336657], [8.51227, 47.336668], [8.512272, 47.336679], [8.512272, 47.336691], [8.512271, 47.336702], [8.512269, 47.336713], [8.512265, 47.336724], [8.512259, 47.336735], [8.512253, 47.336745], [8.512241, 47.336763], [8.512232, 47.336781], [8.512226, 47.336799], [8.512222, 47.336818], [8.51222, 47.336837], [8.512221, 47.336856], [8.512225, 47.336875], [8.51223, 47.336893], [8.512239, 47.33692], [8.512244, 47.336947], [8.512245, 47.336974], [8.512243, 47.337001], [8.512237, 47.337028], [8.512215, 47.337105], [8.512212, 47.337113], [8.512208, 47.337121], [8.512203, 47.337129], [8.512197, 47.337137], [8.51219, 47.337144], [8.512182, 47.337151], [8.512173, 47.337158], [8.512164, 47.337164], [8.512153, 47.337169], [8.512142, 47.337174], [8.512131, 47.337177], [8.512119, 47.337181], [8.512052, 47.337197], [8.51203, 47.337201], [8.512008, 47.337205], [8.511986, 47.337206], [8.511964, 47.337207], [8.51195, 47.337207], [8.511935, 47.337208], [8.511921, 47.33721], [8.511908, 47.337213], [8.511895, 47.337216], [8.511882, 47.337221], [8.51187, 47.337226], [8.511858, 47.337231], [8.511847, 47.337238], [8.511837, 47.337244], [8.511828, 47.337252], [8.511812, 47.337266], [8.511794, 47.337278], [8.511774, 47.33729], [8.511753, 47.3373], [8.511731, 47.337309], [8.511707, 47.337317], [8.511606, 47.337347], [8.511595, 47.337351], [8.511585, 47.337355], [8.511575, 47.33736], [8.511565, 47.337366], [8.511557, 47.337371], [8.511549, 47.337378], [8.511496, 47.337424], [8.511418, 47.337484], [8.5114, 47.337498], [8.511396, 47.337501], [8.511393, 47.337505], [8.51139, 47.337509], [8.511387, 47.337513], [8.511385, 47.337517], [8.511383, 47.337521], [8.511382, 47.337526], [8.511382, 47.33753], [8.511382, 47.337534], [8.511383, 47.337539], [8.511408, 47.337619], [8.511444, 47.337698], [8.511491, 47.337774], [8.511541, 47.337847], [8.511566, 47.33788], [8.511595, 47.337911], [8.511627, 47.337941], [8.511678, 47.337985], [8.511856, 47.338164], [8.511863, 47.338172], [8.511869, 47.338181], [8.511875, 47.33819], [8.511879, 47.338199], [8.511882, 47.338209], [8.511883, 47.338219], [8.511884, 47.338228], [8.511883, 47.338238], [8.51188, 47.338248], [8.511877, 47.338257], [8.511872, 47.338267], [8.511867, 47.338275], [8.511828, 47.338324], [8.511783, 47.338369], [8.511732, 47.338412], [8.511676, 47.338452], [8.511616, 47.338488], [8.511551, 47.338521], [8.511524, 47.338531], [8.511472, 47.338551], [8.511418, 47.33857], [8.511362, 47.338586], [8.511352, 47.338588], [8.511343, 47.33859], [8.511333, 47.338591], [8.511323, 47.338592], [8.511313, 47.338592], [8.511303, 47.338591], [8.511293, 47.33859], [8.511283, 47.338588], [8.511274, 47.338585], [8.511264, 47.338582], [8.511256, 47.338579], [8.511248, 47.338575], [8.51124, 47.338571], [8.511233, 47.338566], [8.511226, 47.338561], [8.51122, 47.338555], [8.511215, 47.338549], [8.511169, 47.338489], [8.511159, 47.338477], [8.511147, 47.338466], [8.511135, 47.338456], [8.511121, 47.338446], [8.511106, 47.338438], [8.51109, 47.33843], [8.511073, 47.338423], [8.511055, 47.338418], [8.511036, 47.338413], [8.511017, 47.338409], [8.510998, 47.338407], [8.510895, 47.338397], [8.510885, 47.338396], [8.510876, 47.338394], [8.510867, 47.338392], [8.510859, 47.338389], [8.510851, 47.338386], [8.510843, 47.338382], [8.510835, 47.338378], [8.510829, 47.338374], [8.510823, 47.338369], [8.510817, 47.338364], [8.510784, 47.33833], [8.510773, 47.338319], [8.51076, 47.338309], [8.510746, 47.3383], [8.510732, 47.338291], [8.510716, 47.338284], [8.510699, 47.338277], [8.510682, 47.338271], [8.510603, 47.338247], [8.51058, 47.33824], [8.510558, 47.338231], [8.510538, 47.338221], [8.510519, 47.338209], [8.510501, 47.338197], [8.510485, 47.338184], [8.51038, 47.338089], [8.510374, 47.338083], [8.510367, 47.338079], [8.510359, 47.338074], [8.510351, 47.33807], [8.510343, 47.338067], [8.510334, 47.338064], [8.510324, 47.338062], [8.510315, 47.33806], [8.510182, 47.33804], [8.510148, 47.338034], [8.510115, 47.338026], [8.510084, 47.338016], [8.510054, 47.338004], [8.510025, 47.33799], [8.509916, 47.337933], [8.509898, 47.337924], [8.509879, 47.337917], [8.509858, 47.33791], [8.509838, 47.337905], [8.509816, 47.337901], [8.509794, 47.337899], [8.509772, 47.337898], [8.50975, 47.337898], [8.509728, 47.3379], [8.509706, 47.337903], [8.509685, 47.337908], [8.509553, 47.337939], [8.50953, 47.337946], [8.509507, 47.337954], [8.509486, 47.337963], [8.509465, 47.337973], [8.509447, 47.337985], [8.50943, 47.337998], [8.509414, 47.338011], [8.509401, 47.338026], [8.509389, 47.338041], [8.50938, 47.338057], [8.509373, 47.338074], [8.509367, 47.338091], [8.509364, 47.338108], [8.509364, 47.338125], [8.509363, 47.338145], [8.509359, 47.338166], [8.509353, 47.338186], [8.509344, 47.338206], [8.509335, 47.338226], [8.509329, 47.338246], [8.509325, 47.338267], [8.509324, 47.338289], [8.509324, 47.338342], [8.509324, 47.338347], [8.509323, 47.338351], [8.509322, 47.338356], [8.50932, 47.33836], [8.509318, 47.338364], [8.509315, 47.338368], [8.509311, 47.338372], [8.509307, 47.338376], [8.509303, 47.338379], [8.509298, 47.338382], [8.509293, 47.338385], [8.509288, 47.338388], [8.509282, 47.33839], [8.509276, 47.338392], [8.509206, 47.338412], [8.509199, 47.338414], [8.509192, 47.338417], [8.509186, 47.33842], [8.50918, 47.338423], [8.509175, 47.338427], [8.50917, 47.338431], [8.509165, 47.338435], [8.509162, 47.33844], [8.509158, 47.338444], [8.509156, 47.338449], [8.509154, 47.338454], [8.509152, 47.338459], [8.509151, 47.338464], [8.50914, 47.338597], [8.509139, 47.338601], [8.509138, 47.338605], [8.509136, 47.338609], [8.509134, 47.338613], [8.509131, 47.338617], [8.509128, 47.338621], [8.509125, 47.338624], [8.50912, 47.338627], [8.509116, 47.33863], [8.509111, 47.338633], [8.509106, 47.338635], [8.509101, 47.338637], [8.509095, 47.338639], [8.509089, 47.33864], [8.509083, 47.338641], [8.509077, 47.338642], [8.509071, 47.338642], [8.509065, 47.338642], [8.509059, 47.338642], [8.509052, 47.338641], [8.509047, 47.33864], [8.509041, 47.338638], [8.509035, 47.338636], [8.50902, 47.33863], [8.509002, 47.338624], [8.508883, 47.33858], [8.508869, 47.338575], [8.508855, 47.338571], [8.508841, 47.338569], [8.508826, 47.338567], [8.508811, 47.338566], [8.508796, 47.338565], [8.508781, 47.338566], [8.508767, 47.338568], [8.508752, 47.33857], [8.508738, 47.338574], [8.508724, 47.338578], [8.508523, 47.338648], [8.508498, 47.338657], [8.508474, 47.338668], [8.508452, 47.338681], [8.508431, 47.338694], [8.508412, 47.338709], [8.508395, 47.338725], [8.50838, 47.338742], [8.508367, 47.338759], [8.508356, 47.338778], [8.508348, 47.338797], [8.508342, 47.338816], [8.508323, 47.338894], [8.508322, 47.338898], [8.50832, 47.338903], [8.508317, 47.338907], [8.508314, 47.338912], [8.50831, 47.338916], [8.508306, 47.338919], [8.508302, 47.338923], [8.508296, 47.338926], [8.508291, 47.338929], [8.508285, 47.338932], [8.508279, 47.338934], [8.508273, 47.338936], [8.508266, 47.338938], [8.508259, 47.338939], [8.508252, 47.338939], [8.508245, 47.33894], [8.508238, 47.33894], [8.508238, 47.33894], [8.508083, 47.338932], [8.508061, 47.338931], [8.508039, 47.338928], [8.508018, 47.338923], [8.507997, 47.338918], [8.507977, 47.338911], [8.507958, 47.338903], [8.50794, 47.338894], [8.507923, 47.338884], [8.507908, 47.338873], [8.507777, 47.338771], [8.507744, 47.338748], [8.507707, 47.338726], [8.507668, 47.338707], [8.507533, 47.338648], [8.50751, 47.338639], [8.507486, 47.338632], [8.507461, 47.338625], [8.507435, 47.338621], [8.507408, 47.338618], [8.507382, 47.338616], [8.507355, 47.338615], [8.507329, 47.338612], [8.507303, 47.338607], [8.507278, 47.338602], [8.507254, 47.338595], [8.507231, 47.338586], [8.507208, 47.338576], [8.507187, 47.338565], [8.507174, 47.338558], [8.50716, 47.338552], [8.507145, 47.338547], [8.50713, 47.338542], [8.507114, 47.338539], [8.507098, 47.338536], [8.507081, 47.338535], [8.507065, 47.338534], [8.507048, 47.338534], [8.507031, 47.338536], [8.506894, 47.338551], [8.506849, 47.338554], [8.506803, 47.338555], [8.506757, 47.338552], [8.506658, 47.338542], [8.506629, 47.33854], [8.5066, 47.33854], [8.506571, 47.338542], [8.506542, 47.338545], [8.506514, 47.33855], [8.506384, 47.338591]]], "type": "MultiLineString"}, "id": "1049", "properties": {}, "type": "Feature"}, {"bbox": [8.527485, 47.38034, 8.527901, 47.380855], "geometry": {"coordinates": [[[8.527485, 47.38034], [8.527901, 47.380855]]], "type": "MultiLineString"}, "id": "1053", "properties": {}, "type": "Feature"}, {"bbox": [8.542785, 47.372923, 8.543746, 47.372948], "geometry": {"coordinates": [[[8.542785, 47.372923], [8.543114, 47.372932], [8.543486, 47.372941], [8.543746, 47.372948]]], "type": "MultiLineString"}, "id": "1054", "properties": {}, "type": "Feature"}, {"bbox": [8.596403, 47.355267, 8.596752, 47.355598], "geometry": {"coordinates": [[[8.596752, 47.355267], [8.596653, 47.355363], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "1056", "properties": {}, "type": "Feature"}, {"bbox": [8.552355, 47.40961, 8.553721, 47.410381], "geometry": {"coordinates": [[[8.553721, 47.409622], [8.552393, 47.40961], [8.552355, 47.41036], [8.553686, 47.410381]]], "type": "MultiLineString"}, "id": "1057", "properties": {}, "type": "Feature"}, {"bbox": [8.521491, 47.361585, 8.521588, 47.361785], "geometry": {"coordinates": [[[8.521588, 47.361585], [8.521569, 47.361648], [8.521491, 47.361785]]], "type": "MultiLineString"}, "id": "1058", "properties": {}, "type": "Feature"}, {"bbox": [8.539982, 47.369399, 8.540064, 47.369684], "geometry": {"coordinates": [[[8.539982, 47.369684], [8.540064, 47.369399]]], "type": "MultiLineString"}, "id": "1059", "properties": {}, "type": "Feature"}, {"bbox": [8.540303, 47.383074, 8.540981, 47.383318], "geometry": {"coordinates": [[[8.540303, 47.383074], [8.540981, 47.383318]]], "type": "MultiLineString"}, "id": "1061", "properties": {}, "type": "Feature"}, {"bbox": [8.530618, 47.417164, 8.531737, 47.418841], "geometry": {"coordinates": [[[8.531737, 47.417164], [8.531069, 47.418144], [8.530618, 47.418841]]], "type": "MultiLineString"}, "id": "1062", "properties": {}, "type": "Feature"}, {"bbox": [8.521549, 47.374472, 8.521827, 47.374725], "geometry": {"coordinates": [[[8.521549, 47.374472], [8.521641, 47.374573], [8.521795, 47.374701], [8.521827, 47.374725]]], "type": "MultiLineString"}, "id": "1064", "properties": {}, "type": "Feature"}, {"bbox": [8.537927, 47.381893, 8.538775, 47.382055], "geometry": {"coordinates": [[[8.537927, 47.381893], [8.538775, 47.382055]]], "type": "MultiLineString"}, "id": "1065", "properties": {}, "type": "Feature"}, {"bbox": [8.517557, 47.367483, 8.518007, 47.367648], "geometry": {"coordinates": [[[8.518007, 47.367648], [8.517942, 47.367633], [8.517578, 47.367507], [8.517557, 47.367483]]], "type": "MultiLineString"}, "id": "1066", "properties": {}, "type": "Feature"}, {"bbox": [8.5243, 47.42391, 8.524695, 47.42395], "geometry": {"coordinates": [[[8.524695, 47.42395], [8.524694, 47.423949], [8.524433, 47.423912], [8.5243, 47.42391]]], "type": "MultiLineString"}, "id": "1069", "properties": {}, "type": "Feature"}, {"bbox": [8.499433, 47.401222, 8.500631, 47.401612], "geometry": {"coordinates": [[[8.499433, 47.401222], [8.499606, 47.401314], [8.500134, 47.401412], [8.500516, 47.401544], [8.500631, 47.401612]]], "type": "MultiLineString"}, "id": "1077", "properties": {}, "type": "Feature"}, {"bbox": [8.587395, 47.357227, 8.587642, 47.358254], "geometry": {"coordinates": [[[8.587642, 47.358254], [8.587511, 47.357571], [8.587395, 47.357227]]], "type": "MultiLineString"}, "id": "1081", "properties": {}, "type": "Feature"}, {"bbox": [8.567443, 47.40429, 8.567555, 47.404875], "geometry": {"coordinates": [[[8.567443, 47.404875], [8.567506, 47.404682], [8.567523, 47.404563], [8.567555, 47.40429]]], "type": "MultiLineString"}, "id": "1082", "properties": {}, "type": "Feature"}, {"bbox": [8.545988, 47.393841, 8.546042, 47.394758], "geometry": {"coordinates": [[[8.546042, 47.393841], [8.546024, 47.393973], [8.545997, 47.394156], [8.545992, 47.394315], [8.545988, 47.394494], [8.545988, 47.394758]]], "type": "MultiLineString"}, "id": "1090", "properties": {}, "type": "Feature"}, {"bbox": [8.535306, 47.375847, 8.535606, 47.376133], "geometry": {"coordinates": [[[8.535606, 47.376133], [8.535521, 47.376065], [8.535568, 47.376043], [8.535306, 47.375847]]], "type": "MultiLineString"}, "id": "1091", "properties": {}, "type": "Feature"}, {"bbox": [8.498445, 47.363078, 8.49935, 47.363765], "geometry": {"coordinates": [[[8.49935, 47.363078], [8.499208, 47.363165], [8.498445, 47.363765]]], "type": "MultiLineString"}, "id": "1098", "properties": {}, "type": "Feature"}, {"bbox": [8.480437, 47.38773, 8.482373, 47.388478], "geometry": {"coordinates": [[[8.482373, 47.38773], [8.481541, 47.387999], [8.481367, 47.388064], [8.481194, 47.388129], [8.481021, 47.388194], [8.480817, 47.38828], [8.480622, 47.388374], [8.480437, 47.388478]]], "type": "MultiLineString"}, "id": "1099", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.370226, 8.514064, 47.370585], "geometry": {"coordinates": [[[8.514064, 47.370585], [8.51349, 47.3703], [8.513407, 47.370274], [8.513324, 47.37025], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "1102", "properties": {}, "type": "Feature"}, {"bbox": [8.565627, 47.365765, 8.567209, 47.36645], "geometry": {"coordinates": [[[8.565627, 47.365765], [8.566081, 47.36597], [8.566423, 47.366122], [8.5665, 47.366171], [8.566582, 47.366239], [8.566856, 47.366323], [8.567209, 47.36645]]], "type": "MultiLineString"}, "id": "1110", "properties": {}, "type": "Feature"}, {"bbox": [8.556447, 47.37579, 8.557144, 47.376733], "geometry": {"coordinates": [[[8.556904, 47.37579], [8.557144, 47.376037], [8.556447, 47.376451], [8.556776, 47.376733]]], "type": "MultiLineString"}, "id": "1113", "properties": {}, "type": "Feature"}, {"bbox": [8.532243, 47.389125, 8.533126, 47.389698], "geometry": {"coordinates": [[[8.532243, 47.389125], [8.532406, 47.389287], [8.533126, 47.389698]]], "type": "MultiLineString"}, "id": "1114", "properties": {}, "type": "Feature"}, {"bbox": [8.513185, 47.378347, 8.513415, 47.378623], "geometry": {"coordinates": [[[8.513185, 47.378347], [8.513415, 47.378623]]], "type": "MultiLineString"}, "id": "1115", "properties": {}, "type": "Feature"}, {"bbox": [8.555794, 47.35751, 8.556715, 47.357754], "geometry": {"coordinates": [[[8.555794, 47.357512], [8.555815, 47.35751], [8.556612, 47.357754], [8.556715, 47.357749]]], "type": "MultiLineString"}, "id": "1116", "properties": {}, "type": "Feature"}, {"bbox": [8.544284, 47.378922, 8.546576, 47.379783], "geometry": {"coordinates": [[[8.544284, 47.378922], [8.544451, 47.37899], [8.544518, 47.379017], [8.544777, 47.379123], [8.544911, 47.379194], [8.545019, 47.379236], [8.545566, 47.379424], [8.545869, 47.379528], [8.546576, 47.379783]]], "type": "MultiLineString"}, "id": "1117", "properties": {}, "type": "Feature"}, {"bbox": [8.522193, 47.398004, 8.522889, 47.399622], "geometry": {"coordinates": [[[8.522545, 47.398004], [8.522193, 47.398637], [8.522205, 47.398911], [8.522221, 47.399062], [8.522274, 47.399121], [8.522633, 47.399327], [8.522653, 47.39934], [8.522672, 47.399353], [8.522688, 47.399368], [8.522703, 47.399384], [8.522861, 47.399586], [8.522889, 47.399622]]], "type": "MultiLineString"}, "id": "1118", "properties": {}, "type": "Feature"}, {"bbox": [8.529897, 47.410987, 8.530175, 47.411675], "geometry": {"coordinates": [[[8.529897, 47.410987], [8.530175, 47.411675]]], "type": "MultiLineString"}, "id": "1119", "properties": {}, "type": "Feature"}, {"bbox": [8.476123, 47.386489, 8.476829, 47.386725], "geometry": {"coordinates": [[[8.476829, 47.386489], [8.476123, 47.386725]]], "type": "MultiLineString"}, "id": "1120", "properties": {}, "type": "Feature"}, {"bbox": [8.52472, 47.366017, 8.524938, 47.366133], "geometry": {"coordinates": [[[8.524935, 47.366017], [8.524938, 47.366051], [8.524786, 47.366133], [8.52472, 47.366129]]], "type": "MultiLineString"}, "id": "1121", "properties": {}, "type": "Feature"}, {"bbox": [8.546755, 47.373935, 8.547845, 47.374343], "geometry": {"coordinates": [[[8.546755, 47.373935], [8.547845, 47.374343]]], "type": "MultiLineString"}, "id": "1122", "properties": {}, "type": "Feature"}, {"bbox": [8.540725, 47.37222, 8.540745, 47.372654], "geometry": {"coordinates": [[[8.540725, 47.372654], [8.54074, 47.372329], [8.540745, 47.37222]]], "type": "MultiLineString"}, "id": "1123", "properties": {}, "type": "Feature"}, {"bbox": [8.49988, 47.380134, 8.502013, 47.381614], "geometry": {"coordinates": [[[8.502013, 47.381614], [8.500634, 47.380658], [8.49988, 47.380134]]], "type": "MultiLineString"}, "id": "1124", "properties": {}, "type": "Feature"}, {"bbox": [8.533372, 47.412065, 8.534032, 47.412618], "geometry": {"coordinates": [[[8.533972, 47.412618], [8.533918, 47.412614], [8.534032, 47.412115], [8.533472, 47.412065], [8.533372, 47.412506]]], "type": "MultiLineString"}, "id": "1125", "properties": {}, "type": "Feature"}, {"bbox": [8.542359, 47.392262, 8.542871, 47.392509], "geometry": {"coordinates": [[[8.542871, 47.392262], [8.542359, 47.392509]]], "type": "MultiLineString"}, "id": "1126", "properties": {}, "type": "Feature"}, {"bbox": [8.530468, 47.410416, 8.530595, 47.410862], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.53054, 47.41048], [8.530468, 47.410515], [8.530477, 47.410549], [8.530571, 47.410787], [8.530595, 47.410862]]], "type": "MultiLineString"}, "id": "1127", "properties": {}, "type": "Feature"}, {"bbox": [8.470303, 47.389182, 8.471296, 47.389885], "geometry": {"coordinates": [[[8.471296, 47.389885], [8.471008, 47.389615], [8.470987, 47.389592], [8.470969, 47.389569], [8.470952, 47.389545], [8.470759, 47.389261], [8.470755, 47.389256], [8.47075, 47.389252], [8.470744, 47.389248], [8.470738, 47.389244], [8.470731, 47.389241], [8.470724, 47.389238], [8.470717, 47.389235], [8.47071, 47.389233], [8.470702, 47.389232], [8.470694, 47.389231], [8.470686, 47.38923], [8.470677, 47.38923], [8.470669, 47.38923], [8.470545, 47.389222], [8.470423, 47.389206], [8.470303, 47.389182]]], "type": "MultiLineString"}, "id": "1128", "properties": {}, "type": "Feature"}, {"bbox": [8.572267, 47.413305, 8.57245, 47.413457], "geometry": {"coordinates": [[[8.57245, 47.413305], [8.572267, 47.413457]]], "type": "MultiLineString"}, "id": "1129", "properties": {}, "type": "Feature"}, {"bbox": [8.582581, 47.400588, 8.582916, 47.401207], "geometry": {"coordinates": [[[8.582916, 47.401207], [8.582581, 47.400677], [8.582642, 47.400588]]], "type": "MultiLineString"}, "id": "1136", "properties": {}, "type": "Feature"}, {"bbox": [8.572284, 47.409671, 8.572895, 47.409736], "geometry": {"coordinates": [[[8.572284, 47.409729], [8.572622, 47.409736], [8.572759, 47.409699], [8.572895, 47.409671]]], "type": "MultiLineString"}, "id": "1138", "properties": {}, "type": "Feature"}, {"bbox": [8.612477, 47.362201, 8.612522, 47.362435], "geometry": {"coordinates": [[[8.612477, 47.362435], [8.612522, 47.362201]]], "type": "MultiLineString"}, "id": "1139", "properties": {}, "type": "Feature"}, {"bbox": [8.487563, 47.372016, 8.48864, 47.373047], "geometry": {"coordinates": [[[8.48864, 47.373047], [8.487584, 47.372199], [8.487576, 47.372186], [8.48757, 47.372173], [8.487566, 47.372159], [8.487564, 47.372145], [8.487563, 47.372131], [8.487564, 47.372117], [8.487567, 47.372103], [8.487571, 47.372089], [8.487577, 47.372076], [8.487585, 47.372063], [8.487594, 47.37205], [8.487605, 47.372038], [8.487618, 47.372027], [8.487631, 47.372016]]], "type": "MultiLineString"}, "id": "1140", "properties": {}, "type": "Feature"}, {"bbox": [8.545773, 47.420821, 8.546108, 47.420912], "geometry": {"coordinates": [[[8.546108, 47.420897], [8.545925, 47.420821], [8.545901, 47.420847], [8.545874, 47.420872], [8.545843, 47.420895], [8.545837, 47.420898], [8.54583, 47.420902], [8.545822, 47.420904], [8.545815, 47.420907], [8.545807, 47.420909], [8.545799, 47.42091], [8.54579, 47.420911], [8.545782, 47.420912], [8.545773, 47.420912]]], "type": "MultiLineString"}, "id": "1141", "properties": {}, "type": "Feature"}, {"bbox": [8.540912, 47.406404, 8.541269, 47.406599], "geometry": {"coordinates": [[[8.540912, 47.406599], [8.54104, 47.406542], [8.541159, 47.406477], [8.541269, 47.406404]]], "type": "MultiLineString"}, "id": "1142", "properties": {}, "type": "Feature"}, {"bbox": [8.550721, 47.392844, 8.551292, 47.392989], "geometry": {"coordinates": [[[8.550721, 47.392844], [8.551083, 47.392965], [8.551185, 47.392989], [8.551292, 47.392985]]], "type": "MultiLineString"}, "id": "1146", "properties": {}, "type": "Feature"}, {"bbox": [8.510029, 47.390207, 8.511394, 47.391646], "geometry": {"coordinates": [[[8.510029, 47.390207], [8.510589, 47.390514], [8.510795, 47.39072], [8.511379, 47.391564], [8.511394, 47.391646]]], "type": "MultiLineString"}, "id": "1147", "properties": {}, "type": "Feature"}, {"bbox": [8.60225, 47.356441, 8.602959, 47.35677], "geometry": {"coordinates": [[[8.602959, 47.356441], [8.60225, 47.35677]]], "type": "MultiLineString"}, "id": "1148", "properties": {}, "type": "Feature"}, {"bbox": [8.515213, 47.331729, 8.516504, 47.331906], "geometry": {"coordinates": [[[8.515213, 47.331906], [8.515225, 47.331903], [8.515695, 47.331775], [8.515903, 47.331755], [8.516061, 47.331752], [8.516081, 47.331752], [8.516391, 47.331768], [8.516434, 47.331763], [8.516443, 47.331763], [8.516504, 47.331729]]], "type": "MultiLineString"}, "id": "1151", "properties": {}, "type": "Feature"}, {"bbox": [8.563371, 47.409549, 8.563857, 47.410191], "geometry": {"coordinates": [[[8.563371, 47.410191], [8.563526, 47.409974], [8.563688, 47.40976], [8.563857, 47.409549]]], "type": "MultiLineString"}, "id": "1152", "properties": {}, "type": "Feature"}, {"bbox": [8.583187, 47.401295, 8.58492, 47.40175], "geometry": {"coordinates": [[[8.58492, 47.401312], [8.584896, 47.401306], [8.584871, 47.401301], [8.584846, 47.401297], [8.58482, 47.401295], [8.584794, 47.401295], [8.584768, 47.401296], [8.584742, 47.401299], [8.584717, 47.401303], [8.584692, 47.401308], [8.583362, 47.401694], [8.583187, 47.40175]]], "type": "MultiLineString"}, "id": "1162", "properties": {}, "type": "Feature"}, {"bbox": [8.530794, 47.411506, 8.531459, 47.411991], "geometry": {"coordinates": [[[8.531459, 47.411991], [8.531432, 47.411983], [8.531009, 47.411851], [8.530813, 47.411539], [8.530794, 47.411506]]], "type": "MultiLineString"}, "id": "1170", "properties": {}, "type": "Feature"}, {"bbox": [8.535009, 47.332731, 8.539459, 47.334834], "geometry": {"coordinates": [[[8.535009, 47.334301], [8.535124, 47.334353], [8.535313, 47.334451], [8.53548, 47.334563], [8.53559, 47.334643], [8.535649, 47.33468], [8.535829, 47.334774], [8.535856, 47.334789], [8.535886, 47.334802], [8.535917, 47.334814], [8.535917, 47.334814], [8.535917, 47.334814], [8.535938, 47.33482], [8.535959, 47.334825], [8.535981, 47.334829], [8.536005, 47.334832], [8.53603, 47.334833], [8.536054, 47.334834], [8.536079, 47.334832], [8.536103, 47.334829], [8.536127, 47.334825], [8.536151, 47.33482], [8.536173, 47.334813], [8.536225, 47.334795], [8.536617, 47.334637], [8.536864, 47.334498], [8.537044, 47.334357], [8.537266, 47.334177], [8.537333, 47.334137], [8.537422, 47.334119], [8.537792, 47.334296], [8.53787, 47.334241], [8.538099, 47.334059], [8.538514, 47.333663], [8.538749, 47.333448], [8.539116, 47.333145], [8.539384, 47.332945], [8.539402, 47.332928], [8.539417, 47.332911], [8.53943, 47.332892], [8.539441, 47.332873], [8.53945, 47.332853], [8.539455, 47.332833], [8.539459, 47.332813], [8.539459, 47.332792], [8.539457, 47.332771], [8.539453, 47.332751], [8.539446, 47.332731]]], "type": "MultiLineString"}, "id": "1172", "properties": {}, "type": "Feature"}, {"bbox": [8.539609, 47.376056, 8.540898, 47.37641], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540852, 47.376096], [8.540658, 47.376163], [8.539609, 47.37641]]], "type": "MultiLineString"}, "id": "1173", "properties": {}, "type": "Feature"}, {"bbox": [8.527309, 47.351826, 8.528294, 47.351969], "geometry": {"coordinates": [[[8.528294, 47.351969], [8.527435, 47.351862], [8.527309, 47.351826]]], "type": "MultiLineString"}, "id": "1174", "properties": {}, "type": "Feature"}, {"bbox": [8.490192, 47.427939, 8.490401, 47.428275], "geometry": {"coordinates": [[[8.490192, 47.427939], [8.490401, 47.428275]]], "type": "MultiLineString"}, "id": "1175", "properties": {}, "type": "Feature"}, {"bbox": [8.4754, 47.413987, 8.475539, 47.414418], "geometry": {"coordinates": [[[8.475461, 47.413987], [8.475417, 47.414043], [8.4754, 47.414216], [8.475413, 47.414329], [8.475539, 47.414418]]], "type": "MultiLineString"}, "id": "1176", "properties": {}, "type": "Feature"}, {"bbox": [8.483323, 47.378743, 8.484371, 47.379409], "geometry": {"coordinates": [[[8.483323, 47.379404], [8.483358, 47.379408], [8.483393, 47.379409], [8.483428, 47.379409], [8.483463, 47.379406], [8.483497, 47.379401], [8.483531, 47.379394], [8.483564, 47.379385], [8.483595, 47.379374], [8.483625, 47.379361], [8.483653, 47.379347], [8.483679, 47.379331], [8.483703, 47.379313], [8.483724, 47.379294], [8.484371, 47.378743]]], "type": "MultiLineString"}, "id": "1180", "properties": {}, "type": "Feature"}, {"bbox": [8.528417, 47.390299, 8.529268, 47.39095], "geometry": {"coordinates": [[[8.528417, 47.390299], [8.528871, 47.39095], [8.529103, 47.390865], [8.529268, 47.390905]]], "type": "MultiLineString"}, "id": "1181", "properties": {}, "type": "Feature"}, {"bbox": [8.506985, 47.406715, 8.510049, 47.407727], "geometry": {"coordinates": [[[8.506985, 47.407727], [8.50882, 47.407121], [8.510049, 47.406715]]], "type": "MultiLineString"}, "id": "1191", "properties": {}, "type": "Feature"}, {"bbox": [8.571675, 47.357209, 8.572454, 47.357396], "geometry": {"coordinates": [[[8.571675, 47.357209], [8.572085, 47.357277], [8.572373, 47.357365], [8.572454, 47.357396]]], "type": "MultiLineString"}, "id": "1193", "properties": {}, "type": "Feature"}, {"bbox": [8.536302, 47.411756, 8.536617, 47.413011], "geometry": {"coordinates": [[[8.536617, 47.411756], [8.536419, 47.412805], [8.536302, 47.413011]]], "type": "MultiLineString"}, "id": "1194", "properties": {}, "type": "Feature"}, {"bbox": [8.524954, 47.391724, 8.525772, 47.391839], "geometry": {"coordinates": [[[8.524954, 47.391839], [8.525008, 47.391813], [8.525065, 47.391789], [8.525125, 47.391769], [8.525187, 47.391753], [8.525251, 47.39174], [8.525316, 47.391731], [8.525382, 47.391725], [8.525449, 47.391724], [8.525515, 47.391726], [8.525581, 47.391732], [8.525646, 47.391742], [8.52571, 47.391755], [8.525772, 47.391773]]], "type": "MultiLineString"}, "id": "1195", "properties": {}, "type": "Feature"}, {"bbox": [8.481153, 47.388271, 8.483143, 47.389024], "geometry": {"coordinates": [[[8.483143, 47.388271], [8.483064, 47.388319], [8.481153, 47.389024]]], "type": "MultiLineString"}, "id": "1196", "properties": {}, "type": "Feature"}, {"bbox": [8.560083, 47.390488, 8.560426, 47.39131], "geometry": {"coordinates": [[[8.560083, 47.390488], [8.560302, 47.390968], [8.560426, 47.39131]]], "type": "MultiLineString"}, "id": "1197", "properties": {}, "type": "Feature"}, {"bbox": [8.540857, 47.374428, 8.541552, 47.374933], "geometry": {"coordinates": [[[8.540857, 47.374933], [8.541552, 47.374846], [8.541447, 47.374428]]], "type": "MultiLineString"}, "id": "1198", "properties": {}, "type": "Feature"}, {"bbox": [8.519106, 47.387242, 8.519266, 47.387405], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.519266, 47.387405]]], "type": "MultiLineString"}, "id": "1207", "properties": {}, "type": "Feature"}, {"bbox": [8.533152, 47.412827, 8.533214, 47.412834], "geometry": {"coordinates": [[[8.533214, 47.412834], [8.533152, 47.412827]]], "type": "MultiLineString"}, "id": "1211", "properties": {}, "type": "Feature"}, {"bbox": [8.563857, 47.408457, 8.564824, 47.409549], "geometry": {"coordinates": [[[8.563857, 47.409549], [8.564193, 47.40919], [8.564516, 47.408826], [8.564824, 47.408457]]], "type": "MultiLineString"}, "id": "1214", "properties": {}, "type": "Feature"}, {"bbox": [8.552599, 47.370387, 8.553222, 47.370638], "geometry": {"coordinates": [[[8.552599, 47.370638], [8.552912, 47.37052], [8.553222, 47.370387]]], "type": "MultiLineString"}, "id": "1218", "properties": {}, "type": "Feature"}, {"bbox": [8.529428, 47.338277, 8.530072, 47.338288], "geometry": {"coordinates": [[[8.530072, 47.338277], [8.529428, 47.338288]]], "type": "MultiLineString"}, "id": "1219", "properties": {}, "type": "Feature"}, {"bbox": [8.538629, 47.385856, 8.539738, 47.386535], "geometry": {"coordinates": [[[8.538824, 47.385856], [8.538629, 47.386253], [8.5396, 47.386523], [8.539738, 47.386535]]], "type": "MultiLineString"}, "id": "1222", "properties": {}, "type": "Feature"}, {"bbox": [8.510915, 47.355088, 8.511734, 47.356596], "geometry": {"coordinates": [[[8.511734, 47.355088], [8.510915, 47.356596]]], "type": "MultiLineString"}, "id": "1223", "properties": {}, "type": "Feature"}, {"bbox": [8.547258, 47.368323, 8.54849, 47.369433], "geometry": {"coordinates": [[[8.547258, 47.368323], [8.547431, 47.368414], [8.547505, 47.368467], [8.547612, 47.368555], [8.547761, 47.368695], [8.547916, 47.368853], [8.548304, 47.369264], [8.548392, 47.369363], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "1225", "properties": {}, "type": "Feature"}, {"bbox": [8.578021, 47.361115, 8.578731, 47.361292], "geometry": {"coordinates": [[[8.578021, 47.361115], [8.578731, 47.361292]]], "type": "MultiLineString"}, "id": "1226", "properties": {}, "type": "Feature"}, {"bbox": [8.548236, 47.385521, 8.548446, 47.385761], "geometry": {"coordinates": [[[8.548236, 47.385521], [8.5483, 47.385584], [8.548446, 47.385761]]], "type": "MultiLineString"}, "id": "1227", "properties": {}, "type": "Feature"}, {"bbox": [8.544454, 47.418263, 8.547215, 47.418728], "geometry": {"coordinates": [[[8.547215, 47.418728], [8.547056, 47.418702], [8.545712, 47.418488], [8.54468, 47.41841], [8.544454, 47.418263]]], "type": "MultiLineString"}, "id": "1228", "properties": {}, "type": "Feature"}, {"bbox": [8.552837, 47.395412, 8.553123, 47.395644], "geometry": {"coordinates": [[[8.552837, 47.395412], [8.553123, 47.395644]]], "type": "MultiLineString"}, "id": "1229", "properties": {}, "type": "Feature"}, {"bbox": [8.526255, 47.393499, 8.526755, 47.394199], "geometry": {"coordinates": [[[8.526255, 47.393499], [8.526341, 47.393643], [8.52646, 47.393814], [8.526495, 47.393855], [8.526581, 47.393969], [8.526668, 47.394083], [8.526754, 47.394198], [8.526755, 47.394199]]], "type": "MultiLineString"}, "id": "1234", "properties": {}, "type": "Feature"}, {"bbox": [8.523797, 47.351753, 8.524103, 47.352207], "geometry": {"coordinates": [[[8.523797, 47.352207], [8.523887, 47.352087], [8.523941, 47.352038], [8.523989, 47.351985], [8.524029, 47.35193], [8.524062, 47.351873], [8.524087, 47.351814], [8.524103, 47.351753]]], "type": "MultiLineString"}, "id": "1235", "properties": {}, "type": "Feature"}, {"bbox": [8.545814, 47.366623, 8.545869, 47.36675], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545869, 47.366623]]], "type": "MultiLineString"}, "id": "1236", "properties": {}, "type": "Feature"}, {"bbox": [8.49718, 47.358436, 8.497438, 47.358817], "geometry": {"coordinates": [[[8.497438, 47.358817], [8.49737, 47.358753], [8.49718, 47.358505], [8.497205, 47.358436]]], "type": "MultiLineString"}, "id": "1237", "properties": {}, "type": "Feature"}, {"bbox": [8.575007, 47.383133, 8.577627, 47.38417], "geometry": {"coordinates": [[[8.575007, 47.383133], [8.575207, 47.383166], [8.575408, 47.383194], [8.575611, 47.383216], [8.575673, 47.383225], [8.575734, 47.383238], [8.575793, 47.383255], [8.575849, 47.383275], [8.576068, 47.383366], [8.57628, 47.383464], [8.576484, 47.383571], [8.577627, 47.38417]]], "type": "MultiLineString"}, "id": "1240", "properties": {}, "type": "Feature"}, {"bbox": [8.497519, 47.364966, 8.502663, 47.365081], "geometry": {"coordinates": [[[8.502663, 47.364966], [8.502549, 47.365013], [8.502351, 47.365017], [8.501292, 47.365027], [8.501026, 47.365027], [8.500602, 47.365025], [8.500059, 47.365073], [8.499632, 47.36508], [8.499623, 47.36508], [8.499613, 47.36508], [8.499604, 47.365081], [8.499594, 47.365081], [8.499585, 47.365081], [8.499575, 47.36508], [8.499042, 47.365079], [8.498462, 47.36507], [8.498094, 47.365016], [8.497519, 47.365014]]], "type": "MultiLineString"}, "id": "1241", "properties": {}, "type": "Feature"}, {"bbox": [8.540352, 47.371784, 8.540416, 47.371979], "geometry": {"coordinates": [[[8.540416, 47.371784], [8.540352, 47.371979]]], "type": "MultiLineString"}, "id": "1251", "properties": {}, "type": "Feature"}, {"bbox": [8.530868, 47.367445, 8.531706, 47.367726], "geometry": {"coordinates": [[[8.531706, 47.367726], [8.530868, 47.367445]]], "type": "MultiLineString"}, "id": "1252", "properties": {}, "type": "Feature"}, {"bbox": [8.532384, 47.345592, 8.533315, 47.345718], "geometry": {"coordinates": [[[8.533315, 47.345718], [8.532474, 47.345627], [8.532384, 47.345592]]], "type": "MultiLineString"}, "id": "1253", "properties": {}, "type": "Feature"}, {"bbox": [8.53992, 47.37122, 8.540012, 47.371233], "geometry": {"coordinates": [[[8.540012, 47.371233], [8.53992, 47.37122], [8.53992, 47.37122]]], "type": "MultiLineString"}, "id": "1269", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.370302, 8.54137, 47.370877], "geometry": {"coordinates": [[[8.541163, 47.370302], [8.541212, 47.370411], [8.541209, 47.370563], [8.541304, 47.37083], [8.54137, 47.370877]]], "type": "MultiLineString"}, "id": "1278", "properties": {}, "type": "Feature"}, {"bbox": [8.528566, 47.39794, 8.530329, 47.398423], "geometry": {"coordinates": [[[8.528566, 47.39794], [8.528605, 47.398003], [8.529125, 47.3981], [8.529525, 47.398178], [8.529825, 47.398251], [8.530182, 47.398359], [8.530329, 47.398423]]], "type": "MultiLineString"}, "id": "1283", "properties": {}, "type": "Feature"}, {"bbox": [8.565881, 47.351006, 8.56651, 47.351767], "geometry": {"coordinates": [[[8.565881, 47.351006], [8.565937, 47.351385], [8.565949, 47.351423], [8.565965, 47.35146], [8.565986, 47.351496], [8.566011, 47.351531], [8.56604, 47.351565], [8.566074, 47.351596], [8.566111, 47.351626], [8.566152, 47.351653], [8.566196, 47.351678], [8.566243, 47.3517], [8.566293, 47.35172], [8.566345, 47.351736], [8.566399, 47.351749], [8.566454, 47.35176], [8.56651, 47.351767]]], "type": "MultiLineString"}, "id": "1284", "properties": {}, "type": "Feature"}, {"bbox": [8.553161, 47.373955, 8.554025, 47.374369], "geometry": {"coordinates": [[[8.553161, 47.373955], [8.554025, 47.374369]]], "type": "MultiLineString"}, "id": "1285", "properties": {}, "type": "Feature"}, {"bbox": [8.540156, 47.369131, 8.540739, 47.369351], "geometry": {"coordinates": [[[8.540739, 47.369351], [8.540349, 47.369297], [8.540384, 47.369163], [8.540156, 47.369131]]], "type": "MultiLineString"}, "id": "1286", "properties": {}, "type": "Feature"}, {"bbox": [8.542119, 47.379644, 8.542623, 47.379724], "geometry": {"coordinates": [[[8.542119, 47.379644], [8.542623, 47.379724]]], "type": "MultiLineString"}, "id": "1289", "properties": {}, "type": "Feature"}, {"bbox": [8.561513, 47.381254, 8.56197, 47.381467], "geometry": {"coordinates": [[[8.561513, 47.381467], [8.56197, 47.381254]]], "type": "MultiLineString"}, "id": "1292", "properties": {}, "type": "Feature"}, {"bbox": [8.546914, 47.365942, 8.547872, 47.366438], "geometry": {"coordinates": [[[8.546914, 47.365942], [8.547195, 47.366072], [8.547712, 47.366368], [8.547762, 47.366395], [8.547816, 47.366418], [8.547872, 47.366438]]], "type": "MultiLineString"}, "id": "1294", "properties": {}, "type": "Feature"}, {"bbox": [8.546576, 47.379783, 8.54727, 47.37996], "geometry": {"coordinates": [[[8.546576, 47.379783], [8.546694, 47.379792], [8.547151, 47.379939], [8.54727, 47.37996]]], "type": "MultiLineString"}, "id": "1295", "properties": {}, "type": "Feature"}, {"bbox": [8.540623, 47.416362, 8.541838, 47.41644], "geometry": {"coordinates": [[[8.541838, 47.416362], [8.540623, 47.41644]]], "type": "MultiLineString"}, "id": "1298", "properties": {}, "type": "Feature"}, {"bbox": [8.492419, 47.405594, 8.492779, 47.406287], "geometry": {"coordinates": [[[8.492419, 47.405594], [8.492661, 47.405962], [8.492587, 47.405989], [8.492779, 47.406287]]], "type": "MultiLineString"}, "id": "1299", "properties": {}, "type": "Feature"}, {"bbox": [8.474388, 47.391857, 8.475352, 47.39214], "geometry": {"coordinates": [[[8.474388, 47.39214], [8.474703, 47.392039], [8.475101, 47.39193], [8.475352, 47.391857]]], "type": "MultiLineString"}, "id": "1300", "properties": {}, "type": "Feature"}, {"bbox": [8.542988, 47.41467, 8.545524, 47.414995], "geometry": {"coordinates": [[[8.545524, 47.414995], [8.544259, 47.414673], [8.544105, 47.41467], [8.542988, 47.414736]]], "type": "MultiLineString"}, "id": "1309", "properties": {}, "type": "Feature"}, {"bbox": [8.541333, 47.388427, 8.541628, 47.388476], "geometry": {"coordinates": [[[8.541333, 47.388427], [8.541628, 47.388476]]], "type": "MultiLineString"}, "id": "1316", "properties": {}, "type": "Feature"}, {"bbox": [8.545279, 47.369849, 8.545875, 47.37003], "geometry": {"coordinates": [[[8.545279, 47.369849], [8.545759, 47.37003], [8.545875, 47.3699]]], "type": "MultiLineString"}, "id": "1319", "properties": {}, "type": "Feature"}, {"bbox": [8.478188, 47.386826, 8.533735, 47.404268], "geometry": {"coordinates": [[[8.533735, 47.386826], [8.53347, 47.387029], [8.533171, 47.387241], [8.532859, 47.387445], [8.532533, 47.387639], [8.532294, 47.387762], [8.532041, 47.387871], [8.531775, 47.387965], [8.531498, 47.388043], [8.531212, 47.388104], [8.531039, 47.388157], [8.530889, 47.388217], [8.530699, 47.388263], [8.529811, 47.388837], [8.528967, 47.389398], [8.528742, 47.389518], [8.528691, 47.389572], [8.528522, 47.389662], [8.528405, 47.389792], [8.528315, 47.38986], [8.528195, 47.389834], [8.527997, 47.389946], [8.527801, 47.390008], [8.527665, 47.390093], [8.527648, 47.390102], [8.527592, 47.390136], [8.527265, 47.390299], [8.527202, 47.390352], [8.526864, 47.390529], [8.526618, 47.39063], [8.526349, 47.390761], [8.525842, 47.391008], [8.525325, 47.39124], [8.524761, 47.391459], [8.524192, 47.391644], [8.523871, 47.391731], [8.523788, 47.391763], [8.523363, 47.391874], [8.522893, 47.392036], [8.520599, 47.392506], [8.519302, 47.392843], [8.519215, 47.392894], [8.519079, 47.39291], [8.51801, 47.393189], [8.517238, 47.393375], [8.517108, 47.393407], [8.516979, 47.393439], [8.516851, 47.393472], [8.515996, 47.393773], [8.514804, 47.394245], [8.514196, 47.394516], [8.514189, 47.394553], [8.513441, 47.394701], [8.513345, 47.3947], [8.513036, 47.394714], [8.512424, 47.394805], [8.512104, 47.39481], [8.511803, 47.394833], [8.511378, 47.394917], [8.511281, 47.394916], [8.510508, 47.395025], [8.509943, 47.395096], [8.509344, 47.395124], [8.50871, 47.395205], [8.508309, 47.395226], [8.508278, 47.395133], [8.508181, 47.39511], [8.507116, 47.395181], [8.506399, 47.395217], [8.505524, 47.395254], [8.505348, 47.395263], [8.505062, 47.395317], [8.504644, 47.395394], [8.504591, 47.395426], [8.504328, 47.39557], [8.504328, 47.395573], [8.504328, 47.395576], [8.504328, 47.39558], [8.504327, 47.395583], [8.504326, 47.395586], [8.504324, 47.39559], [8.504322, 47.395593], [8.504319, 47.395596], [8.504317, 47.395598], [8.504313, 47.395601], [8.50431, 47.395603], [8.504306, 47.395605], [8.504302, 47.395607], [8.504298, 47.395609], [8.504293, 47.395611], [8.504289, 47.395612], [8.504284, 47.395613], [8.504279, 47.395613], [8.504274, 47.395614], [8.503999, 47.395634], [8.503877, 47.395677], [8.503664, 47.395766], [8.503298, 47.395935], [8.503007, 47.396098], [8.502579, 47.396395], [8.502145, 47.396762], [8.501706, 47.397164], [8.501266, 47.397535], [8.500906, 47.397813], [8.500512, 47.398069], [8.500087, 47.3983], [8.499634, 47.398507], [8.499157, 47.398686], [8.498659, 47.398836], [8.498144, 47.398957], [8.498095, 47.398969], [8.497712, 47.399029], [8.497412, 47.399093], [8.496739, 47.399184], [8.496374, 47.399263], [8.495426, 47.399382], [8.494717, 47.399452], [8.494541, 47.39948], [8.493983, 47.399546], [8.493074, 47.399649], [8.492692, 47.399687], [8.492306, 47.399701], [8.49192, 47.399691], [8.491537, 47.399658], [8.491405, 47.399651], [8.491272, 47.399651], [8.49114, 47.39966], [8.491009, 47.399676], [8.490881, 47.3997], [8.490756, 47.399731], [8.490636, 47.39977], [8.490521, 47.399815], [8.490239, 47.399929], [8.489966, 47.400052], [8.489702, 47.400185], [8.489461, 47.400299], [8.48855, 47.400732], [8.487968, 47.401064], [8.487358, 47.401422], [8.487101, 47.401515], [8.48692, 47.401627], [8.486789, 47.401696], [8.486647, 47.401746], [8.486464, 47.401798], [8.485735, 47.402053], [8.485032, 47.402317], [8.484125, 47.402665], [8.483296, 47.402967], [8.483088, 47.403031], [8.4829, 47.40308], [8.482849, 47.40309], [8.482798, 47.403098], [8.482745, 47.403102], [8.482693, 47.403103], [8.482657, 47.403104], [8.482623, 47.403107], [8.482588, 47.403112], [8.482583, 47.403113], [8.482378, 47.403146], [8.482364, 47.403149], [8.48235, 47.403152], [8.482336, 47.403156], [8.482326, 47.403158], [8.482317, 47.403161], [8.482308, 47.403164], [8.482175, 47.403218], [8.482097, 47.40326], [8.481962, 47.403334], [8.481925, 47.403351], [8.481921, 47.403352], [8.481917, 47.403354], [8.481912, 47.403356], [8.481909, 47.403358], [8.481905, 47.40336], [8.481902, 47.403363], [8.481899, 47.403365], [8.481897, 47.403368], [8.481895, 47.403371], [8.481893, 47.403374], [8.481891, 47.403377], [8.481891, 47.403381], [8.48189, 47.403385], [8.481889, 47.40339], [8.481887, 47.403394], [8.481884, 47.403399], [8.481881, 47.403403], [8.481878, 47.403407], [8.481874, 47.40341], [8.481869, 47.403414], [8.481864, 47.403417], [8.481859, 47.40342], [8.481853, 47.403422], [8.481821, 47.403436], [8.481647, 47.403515], [8.481587, 47.40355], [8.481584, 47.403551], [8.481499, 47.403602], [8.481469, 47.403622], [8.481469, 47.403622], [8.481416, 47.403649], [8.481416, 47.403649], [8.481287, 47.403698], [8.481214, 47.403735], [8.481198, 47.403743], [8.481178, 47.403754], [8.481157, 47.403763], [8.481134, 47.403771], [8.481111, 47.403778], [8.481087, 47.403783], [8.481072, 47.403786], [8.481056, 47.403789], [8.48104, 47.403791], [8.481026, 47.403793], [8.481012, 47.403796], [8.480999, 47.4038], [8.480969, 47.403807], [8.480939, 47.403815], [8.480909, 47.403824], [8.480864, 47.403838], [8.480819, 47.403854], [8.480776, 47.40387], [8.480649, 47.403916], [8.480638, 47.40392], [8.480612, 47.403937], [8.480611, 47.403937], [8.480611, 47.403937], [8.480604, 47.403942], [8.480596, 47.403945], [8.480589, 47.403949], [8.480588, 47.403949], [8.480459, 47.403994], [8.480307, 47.404031], [8.480239, 47.404045], [8.480171, 47.404057], [8.480102, 47.404067], [8.480066, 47.404072], [8.48003, 47.404075], [8.479994, 47.404078], [8.479896, 47.404086], [8.479791, 47.404094], [8.479724, 47.4041], [8.479656, 47.404108], [8.479588, 47.404117], [8.479588, 47.404117], [8.479382, 47.404145], [8.479256, 47.404163], [8.479199, 47.404172], [8.479143, 47.404183], [8.479088, 47.404197], [8.47907, 47.404202], [8.479052, 47.404206], [8.479033, 47.404208], [8.479015, 47.40421], [8.478996, 47.40421], [8.478875, 47.404211], [8.47878, 47.404225], [8.478602, 47.404262], [8.478458, 47.404267], [8.478427, 47.404268], [8.478396, 47.404267], [8.478365, 47.404265], [8.478188, 47.404246]]], "type": "MultiLineString"}, "id": "1321", "properties": {}, "type": "Feature"}, {"bbox": [8.537148, 47.335408, 8.53786, 47.335705], "geometry": {"coordinates": [[[8.53786, 47.335705], [8.537206, 47.335417], [8.537148, 47.335408]]], "type": "MultiLineString"}, "id": "1323", "properties": {}, "type": "Feature"}, {"bbox": [8.492214, 47.406496, 8.492747, 47.407233], "geometry": {"coordinates": [[[8.492214, 47.406496], [8.492454, 47.406799], [8.492478, 47.406993], [8.492747, 47.407233]]], "type": "MultiLineString"}, "id": "1324", "properties": {}, "type": "Feature"}, {"bbox": [8.545795, 47.366878, 8.546706, 47.367414], "geometry": {"coordinates": [[[8.545795, 47.366878], [8.546706, 47.367414]]], "type": "MultiLineString"}, "id": "1326", "properties": {}, "type": "Feature"}, {"bbox": [8.514665, 47.413967, 8.515102, 47.414519], "geometry": {"coordinates": [[[8.515102, 47.414519], [8.514877, 47.414131], [8.514665, 47.413967]]], "type": "MultiLineString"}, "id": "1328", "properties": {}, "type": "Feature"}, {"bbox": [8.547996, 47.407073, 8.548245, 47.407515], "geometry": {"coordinates": [[[8.547996, 47.407073], [8.548245, 47.407515]]], "type": "MultiLineString"}, "id": "1331", "properties": {}, "type": "Feature"}, {"bbox": [8.539662, 47.372081, 8.540174, 47.372287], "geometry": {"coordinates": [[[8.540174, 47.372287], [8.539662, 47.372081]]], "type": "MultiLineString"}, "id": "1338", "properties": {}, "type": "Feature"}, {"bbox": [8.519421, 47.393262, 8.519488, 47.393273], "geometry": {"coordinates": [[[8.519421, 47.393273], [8.519488, 47.393262]]], "type": "MultiLineString"}, "id": "1339", "properties": {}, "type": "Feature"}, {"bbox": [8.539477, 47.369205, 8.540064, 47.369399], "geometry": {"coordinates": [[[8.539477, 47.369206], [8.53963, 47.369205], [8.539885, 47.369249], [8.539841, 47.369371], [8.540064, 47.369399]]], "type": "MultiLineString"}, "id": "1340", "properties": {}, "type": "Feature"}, {"bbox": [8.520327, 47.413177, 8.520725, 47.413612], "geometry": {"coordinates": [[[8.520725, 47.413612], [8.520327, 47.413177]]], "type": "MultiLineString"}, "id": "1341", "properties": {}, "type": "Feature"}, {"bbox": [8.528862, 47.375893, 8.529474, 47.376353], "geometry": {"coordinates": [[[8.528862, 47.375893], [8.528973, 47.375943], [8.529474, 47.376353]]], "type": "MultiLineString"}, "id": "1342", "properties": {}, "type": "Feature"}, {"bbox": [8.516563, 47.389849, 8.517497, 47.390197], "geometry": {"coordinates": [[[8.516563, 47.389864], [8.516605, 47.389849], [8.516859, 47.390197], [8.517497, 47.389984]]], "type": "MultiLineString"}, "id": "1343", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506879, 47.42681], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506879, 47.42681]]], "type": "MultiLineString"}, "id": "1344", "properties": {}, "type": "Feature"}, {"bbox": [8.517037, 47.375264, 8.517432, 47.375562], "geometry": {"coordinates": [[[8.517432, 47.375264], [8.517037, 47.375562]]], "type": "MultiLineString"}, "id": "1346", "properties": {}, "type": "Feature"}, {"bbox": [8.495979, 47.423735, 8.496615, 47.423784], "geometry": {"coordinates": [[[8.495979, 47.423735], [8.496615, 47.423784]]], "type": "MultiLineString"}, "id": "1349", "properties": {}, "type": "Feature"}, {"bbox": [8.514492, 47.386114, 8.515346, 47.386157], "geometry": {"coordinates": [[[8.515346, 47.386138], [8.515176, 47.386121], [8.515004, 47.386114], [8.514831, 47.386118], [8.51466, 47.386132], [8.514492, 47.386157]]], "type": "MultiLineString"}, "id": "1359", "properties": {}, "type": "Feature"}, {"bbox": [8.531321, 47.369381, 8.532199, 47.370011], "geometry": {"coordinates": [[[8.532199, 47.369381], [8.531824, 47.369649], [8.531321, 47.370011]]], "type": "MultiLineString"}, "id": "1366", "properties": {}, "type": "Feature"}, {"bbox": [8.554752, 47.416618, 8.55519, 47.416953], "geometry": {"coordinates": [[[8.554752, 47.416953], [8.55519, 47.416618]]], "type": "MultiLineString"}, "id": "1368", "properties": {}, "type": "Feature"}, {"bbox": [8.573433, 47.388093, 8.573761, 47.38823], "geometry": {"coordinates": [[[8.573761, 47.388093], [8.573433, 47.38823]]], "type": "MultiLineString"}, "id": "1369", "properties": {}, "type": "Feature"}, {"bbox": [8.506672, 47.355402, 8.507596, 47.356629], "geometry": {"coordinates": [[[8.507596, 47.355402], [8.507564, 47.35546], [8.507402, 47.355744], [8.507222, 47.356018], [8.50704, 47.356244], [8.506724, 47.356574], [8.506672, 47.356629]]], "type": "MultiLineString"}, "id": "1370", "properties": {}, "type": "Feature"}, {"bbox": [8.533487, 47.373789, 8.534002, 47.373981], "geometry": {"coordinates": [[[8.534002, 47.373789], [8.533833, 47.373967], [8.533637, 47.373934], [8.533487, 47.373981]]], "type": "MultiLineString"}, "id": "1371", "properties": {}, "type": "Feature"}, {"bbox": [8.544646, 47.374891, 8.545571, 47.375122], "geometry": {"coordinates": [[[8.544646, 47.374891], [8.545571, 47.375122]]], "type": "MultiLineString"}, "id": "1372", "properties": {}, "type": "Feature"}, {"bbox": [8.538331, 47.372313, 8.538683, 47.372317], "geometry": {"coordinates": [[[8.538683, 47.372313], [8.538331, 47.372317]]], "type": "MultiLineString"}, "id": "1373", "properties": {}, "type": "Feature"}, {"bbox": [8.511225, 47.424978, 8.511701, 47.42549], "geometry": {"coordinates": [[[8.511225, 47.424978], [8.511294, 47.425066], [8.511625, 47.42541], [8.511701, 47.42549]]], "type": "MultiLineString"}, "id": "1376", "properties": {}, "type": "Feature"}, {"bbox": [8.543797, 47.370653, 8.544419, 47.371873], "geometry": {"coordinates": [[[8.544419, 47.370653], [8.544416, 47.370768], [8.544398, 47.370882], [8.544364, 47.370994], [8.544314, 47.371104], [8.54425, 47.37121], [8.544172, 47.371312], [8.544033, 47.371435], [8.543946, 47.371519], [8.54391, 47.371551], [8.54382, 47.371732], [8.543797, 47.371873]]], "type": "MultiLineString"}, "id": "1379", "properties": {}, "type": "Feature"}, {"bbox": [8.540786, 47.369868, 8.541862, 47.36993], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.541754, 47.369872], [8.541538, 47.369886], [8.540985, 47.36993], [8.540961, 47.36993], [8.540937, 47.369929], [8.540913, 47.369926], [8.54089, 47.369922], [8.540867, 47.369917], [8.540845, 47.36991], [8.540824, 47.369902], [8.540805, 47.369893], [8.540786, 47.369883]]], "type": "MultiLineString"}, "id": "1380", "properties": {}, "type": "Feature"}, {"bbox": [8.553893, 47.390716, 8.574248, 47.400748], "geometry": {"coordinates": [[[8.553893, 47.39891], [8.553912, 47.398923], [8.554016, 47.39898], [8.554119, 47.399029], [8.554173, 47.399054], [8.554387, 47.399153], [8.554605, 47.399247], [8.554826, 47.399337], [8.554826, 47.399337], [8.554826, 47.399337], [8.555061, 47.399421], [8.555305, 47.39949], [8.555558, 47.399544], [8.555817, 47.399582], [8.55611, 47.399615], [8.556161, 47.399622], [8.556212, 47.399631], [8.556261, 47.399642], [8.556447, 47.399685], [8.556578, 47.399716], [8.556908, 47.399794], [8.556945, 47.399804], [8.55698, 47.399815], [8.557013, 47.399829], [8.557045, 47.399844], [8.557457, 47.400062], [8.55797, 47.400352], [8.558094, 47.400406], [8.558234, 47.400437], [8.55841, 47.400462], [8.558493, 47.400476], [8.558573, 47.400495], [8.55865, 47.40052], [8.558724, 47.40055], [8.55907, 47.400705], [8.5591, 47.400718], [8.559131, 47.400728], [8.559164, 47.400736], [8.559197, 47.400742], [8.559231, 47.400746], [8.559266, 47.400748], [8.559301, 47.400747], [8.560002, 47.400719], [8.560068, 47.400714], [8.560134, 47.400705], [8.560198, 47.400693], [8.56026, 47.400676], [8.56032, 47.400656], [8.560377, 47.400633], [8.560431, 47.400606], [8.560514, 47.40056], [8.560542, 47.400544], [8.560568, 47.400526], [8.560593, 47.400508], [8.560838, 47.400306], [8.560851, 47.400296], [8.560865, 47.400287], [8.56088, 47.400279], [8.560896, 47.400272], [8.560912, 47.400266], [8.56093, 47.400261], [8.561044, 47.400233], [8.561056, 47.40023], [8.561069, 47.400228], [8.561081, 47.400227], [8.561094, 47.400226], [8.561107, 47.400227], [8.56112, 47.400228], [8.561132, 47.40023], [8.561383, 47.400276], [8.561412, 47.40028], [8.561441, 47.400283], [8.561471, 47.400284], [8.561501, 47.400284], [8.56153, 47.400281], [8.56156, 47.400277], [8.561588, 47.400272], [8.562363, 47.400094], [8.562391, 47.400087], [8.562417, 47.40008], [8.562443, 47.400071], [8.562458, 47.400066], [8.562472, 47.400061], [8.562487, 47.400055], [8.562514, 47.400043], [8.56254, 47.40003], [8.562566, 47.400016], [8.562648, 47.399967], [8.562727, 47.399921], [8.562743, 47.399912], [8.562757, 47.399901], [8.562771, 47.399891], [8.562926, 47.399764], [8.562962, 47.399732], [8.562998, 47.399701], [8.563034, 47.399669], [8.56305, 47.399656], [8.563066, 47.399642], [8.563083, 47.399628], [8.563153, 47.399569], [8.563179, 47.399547], [8.563324, 47.399426], [8.563468, 47.399304], [8.563611, 47.399182], [8.563778, 47.399043], [8.563951, 47.398907], [8.564131, 47.398775], [8.564252, 47.398682], [8.564372, 47.398588], [8.564492, 47.398494], [8.564492, 47.398494], [8.564493, 47.398493], [8.564679, 47.398354], [8.564867, 47.398216], [8.565056, 47.398079], [8.565056, 47.398079], [8.565057, 47.398079], [8.565057, 47.398078], [8.565057, 47.398078], [8.565226, 47.397949], [8.565408, 47.397827], [8.5656, 47.397714], [8.565601, 47.397713], [8.565601, 47.397713], [8.565784, 47.397617], [8.565969, 47.397522], [8.566155, 47.397428], [8.566155, 47.397428], [8.566155, 47.397428], [8.566699, 47.397145], [8.566699, 47.397144], [8.566699, 47.397144], [8.56682, 47.397077], [8.566939, 47.397009], [8.567059, 47.39694], [8.567122, 47.396903], [8.567307, 47.396789], [8.567712, 47.396481], [8.567962, 47.396308], [8.568074, 47.396241], [8.568191, 47.396178], [8.568312, 47.396118], [8.568938, 47.395808], [8.569135, 47.395701], [8.569329, 47.395591], [8.569519, 47.395479], [8.56952, 47.395479], [8.56952, 47.395479], [8.569687, 47.395384], [8.569849, 47.395286], [8.570008, 47.395184], [8.570008, 47.395184], [8.570008, 47.395184], [8.570142, 47.3951], [8.570278, 47.395017], [8.570416, 47.394936], [8.570416, 47.394936], [8.570589, 47.394841], [8.570919, 47.394659], [8.571373, 47.394397], [8.571761, 47.394178], [8.571831, 47.394139], [8.572286, 47.393877], [8.572493, 47.393764], [8.572586, 47.393714], [8.57269, 47.39365], [8.572777, 47.393596], [8.572997, 47.393466], [8.573149, 47.393371], [8.57317, 47.393357], [8.573189, 47.393341], [8.573206, 47.393325], [8.573221, 47.393307], [8.573233, 47.393288], [8.573243, 47.393269], [8.573251, 47.39325], [8.573256, 47.39323], [8.573259, 47.393209], [8.573259, 47.393189], [8.573256, 47.393169], [8.573251, 47.393149], [8.573189, 47.392958], [8.573185, 47.392944], [8.573183, 47.39293], [8.573183, 47.392916], [8.573185, 47.392902], [8.573189, 47.392888], [8.573194, 47.392874], [8.573202, 47.392861], [8.573211, 47.392848], [8.573221, 47.392836], [8.573233, 47.392824], [8.573247, 47.392814], [8.573261, 47.392804], [8.573277, 47.392795], [8.573295, 47.392787], [8.573313, 47.39278], [8.573332, 47.392774], [8.573351, 47.392769], [8.573371, 47.392766], [8.573392, 47.392764], [8.573437, 47.39276], [8.573846, 47.392728], [8.573885, 47.392723], [8.573924, 47.392717], [8.573962, 47.392708], [8.573998, 47.392697], [8.574033, 47.392683], [8.574066, 47.392668], [8.574097, 47.392651], [8.574126, 47.392632], [8.574152, 47.392611], [8.574175, 47.392589], [8.574195, 47.392565], [8.574213, 47.392541], [8.574227, 47.392515], [8.574237, 47.392489], [8.574244, 47.392462], [8.574248, 47.392435], [8.574248, 47.392372], [8.574238, 47.392309], [8.574219, 47.392247], [8.574073, 47.391868], [8.574031, 47.391761], [8.573946, 47.391512], [8.573693, 47.390826], [8.573684, 47.390803], [8.573671, 47.390779], [8.573656, 47.390757], [8.573638, 47.390736], [8.573616, 47.390716]]], "type": "MultiLineString"}, "id": "1385", "properties": {}, "type": "Feature"}, {"bbox": [8.501522, 47.337319, 8.504587, 47.340021], "geometry": {"coordinates": [[[8.504587, 47.339657], [8.50449, 47.339658], [8.504432, 47.339657], [8.504375, 47.339654], [8.504317, 47.339649], [8.504295, 47.339646], [8.504273, 47.339644], [8.504251, 47.339643], [8.504228, 47.339643], [8.504206, 47.339645], [8.504125, 47.339664], [8.504115, 47.339669], [8.504105, 47.339674], [8.504096, 47.33968], [8.504088, 47.339687], [8.50408, 47.339694], [8.503996, 47.339803], [8.503992, 47.33981], [8.503988, 47.339817], [8.503985, 47.339825], [8.503967, 47.339865], [8.503944, 47.339905], [8.503916, 47.339943], [8.503904, 47.339955], [8.503891, 47.339966], [8.503876, 47.339976], [8.50386, 47.339985], [8.503843, 47.339993], [8.503825, 47.34], [8.503806, 47.340006], [8.503786, 47.340011], [8.503786, 47.340011], [8.503786, 47.340011], [8.503764, 47.340015], [8.503742, 47.340018], [8.50372, 47.34002], [8.503697, 47.340021], [8.503674, 47.34002], [8.503652, 47.340018], [8.503635, 47.340015], [8.503618, 47.340011], [8.503602, 47.340007], [8.503576, 47.339998], [8.503552, 47.339989], [8.503528, 47.339977], [8.503498, 47.33996], [8.503471, 47.33994], [8.503445, 47.33992], [8.503422, 47.339898], [8.503422, 47.339898], [8.503422, 47.339897], [8.503292, 47.339803], [8.503292, 47.339803], [8.503292, 47.339803], [8.503254, 47.339786], [8.503214, 47.339771], [8.503172, 47.339759], [8.503129, 47.339749], [8.503129, 47.339749], [8.50305, 47.339734], [8.503033, 47.339678], [8.503019, 47.339623], [8.503012, 47.339568], [8.503012, 47.339513], [8.503018, 47.339457], [8.503031, 47.339402], [8.50304, 47.339362], [8.503045, 47.339321], [8.503044, 47.33928], [8.503039, 47.339239], [8.503029, 47.339199], [8.503014, 47.339159], [8.502942, 47.338998], [8.50293, 47.338968], [8.50292, 47.338938], [8.502913, 47.338908], [8.502881, 47.338757], [8.502878, 47.338744], [8.502873, 47.338731], [8.502867, 47.338719], [8.502859, 47.338708], [8.502849, 47.338696], [8.502839, 47.338686], [8.502833, 47.33868], [8.502829, 47.338675], [8.502825, 47.338669], [8.502822, 47.338663], [8.50282, 47.338656], [8.502819, 47.33865], [8.502819, 47.338644], [8.502819, 47.338637], [8.50282, 47.338631], [8.502828, 47.338603], [8.502836, 47.338577], [8.502838, 47.338566], [8.502839, 47.338554], [8.502839, 47.338542], [8.502837, 47.338531], [8.502834, 47.338519], [8.50283, 47.338508], [8.502809, 47.338461], [8.502805, 47.338455], [8.502801, 47.338449], [8.502797, 47.338443], [8.502791, 47.338438], [8.502785, 47.338433], [8.502778, 47.338428], [8.502772, 47.338424], [8.502766, 47.338419], [8.502761, 47.338414], [8.502756, 47.338409], [8.502753, 47.338404], [8.50275, 47.338398], [8.502743, 47.338381], [8.502738, 47.33837], [8.502727, 47.338343], [8.502726, 47.338338], [8.502725, 47.338333], [8.502724, 47.338328], [8.502725, 47.338324], [8.502725, 47.338319], [8.502727, 47.338314], [8.502729, 47.338309], [8.502731, 47.338305], [8.502746, 47.33828], [8.502748, 47.338278], [8.502749, 47.338275], [8.50275, 47.338272], [8.50275, 47.338269], [8.50275, 47.338266], [8.50275, 47.338264], [8.502749, 47.338261], [8.502748, 47.338258], [8.502747, 47.338255], [8.502745, 47.338253], [8.502743, 47.33825], [8.502741, 47.338248], [8.502738, 47.338246], [8.502735, 47.338244], [8.502732, 47.338242], [8.502729, 47.33824], [8.502722, 47.338237], [8.502717, 47.338234], [8.502711, 47.33823], [8.502706, 47.338225], [8.502702, 47.338221], [8.502698, 47.338216], [8.502696, 47.338211], [8.502693, 47.338206], [8.502692, 47.338201], [8.502691, 47.338195], [8.502686, 47.338149], [8.502685, 47.338143], [8.502684, 47.338138], [8.502681, 47.338133], [8.502678, 47.338127], [8.502675, 47.338122], [8.502671, 47.338118], [8.502666, 47.338113], [8.502661, 47.338109], [8.502655, 47.338105], [8.502646, 47.338098], [8.502637, 47.338092], [8.50263, 47.338084], [8.502623, 47.338077], [8.502577, 47.33802], [8.502573, 47.338016], [8.502569, 47.338012], [8.502564, 47.338008], [8.502558, 47.338005], [8.502553, 47.338002], [8.502547, 47.337999], [8.50254, 47.337997], [8.502533, 47.337995], [8.502526, 47.337993], [8.502519, 47.337992], [8.502512, 47.337991], [8.502505, 47.337991], [8.502497, 47.337991], [8.502461, 47.337994], [8.502448, 47.337994], [8.502404, 47.337996], [8.50236, 47.337994], [8.502316, 47.33799], [8.502273, 47.337984], [8.502232, 47.337975], [8.502191, 47.337963], [8.502152, 47.337949], [8.502116, 47.337933], [8.502099, 47.337925], [8.502082, 47.337919], [8.502063, 47.337914], [8.502045, 47.33791], [8.502025, 47.337907], [8.502006, 47.337905], [8.501986, 47.337905], [8.501966, 47.337905], [8.501615, 47.337926], [8.501615, 47.337926], [8.501607, 47.337926], [8.5016, 47.337926], [8.501593, 47.337925], [8.501586, 47.337924], [8.501579, 47.337923], [8.501572, 47.337921], [8.501565, 47.337919], [8.501559, 47.337916], [8.501553, 47.337913], [8.501548, 47.33791], [8.501543, 47.337907], [8.501538, 47.337903], [8.501534, 47.337899], [8.501531, 47.337894], [8.501528, 47.33789], [8.501525, 47.337885], [8.501523, 47.33788], [8.501522, 47.337875], [8.501522, 47.33787], [8.501522, 47.337865], [8.501522, 47.33786], [8.501524, 47.337856], [8.501583, 47.337679], [8.50159, 47.337653], [8.501593, 47.337626], [8.501593, 47.3376], [8.501589, 47.337573], [8.501582, 47.337547], [8.501571, 47.337521], [8.501559, 47.337493], [8.501551, 47.337464], [8.501547, 47.337435], [8.501547, 47.337405], [8.501551, 47.337376], [8.501559, 47.337347], [8.501571, 47.337319]]], "type": "MultiLineString"}, "id": "1387", "properties": {}, "type": "Feature"}, {"bbox": [8.539574, 47.374577, 8.539949, 47.375009], "geometry": {"coordinates": [[[8.539949, 47.374577], [8.539574, 47.37459], [8.539609, 47.375009]]], "type": "MultiLineString"}, "id": "1388", "properties": {}, "type": "Feature"}, {"bbox": [8.562427, 47.400055, 8.562983, 47.401617], "geometry": {"coordinates": [[[8.562487, 47.400055], [8.562524, 47.400136], [8.562526, 47.400143], [8.562528, 47.40015], [8.562529, 47.400157], [8.562528, 47.400164], [8.562527, 47.400171], [8.562525, 47.400178], [8.562522, 47.400185], [8.562522, 47.400185], [8.56247, 47.400289], [8.562474, 47.400366], [8.562651, 47.400683], [8.562651, 47.400683], [8.562653, 47.400686], [8.562654, 47.400689], [8.562655, 47.400692], [8.562655, 47.400694], [8.562656, 47.400697], [8.562655, 47.4007], [8.562655, 47.400703], [8.562654, 47.400706], [8.562653, 47.400708], [8.562651, 47.400711], [8.562649, 47.400714], [8.562647, 47.400716], [8.562644, 47.400718], [8.562641, 47.400721], [8.562638, 47.400722], [8.562635, 47.400724], [8.562631, 47.400726], [8.562628, 47.400727], [8.562624, 47.400728], [8.56262, 47.400729], [8.562616, 47.40073], [8.562527, 47.400733], [8.56244, 47.400736], [8.562438, 47.400737], [8.562436, 47.400737], [8.562435, 47.400738], [8.562434, 47.400739], [8.562432, 47.40074], [8.562431, 47.400741], [8.56243, 47.400742], [8.562429, 47.400743], [8.562429, 47.400744], [8.562428, 47.400745], [8.562428, 47.400746], [8.562427, 47.400747], [8.562427, 47.400749], [8.562427, 47.40075], [8.562428, 47.400751], [8.562428, 47.400752], [8.562428, 47.400753], [8.562429, 47.400754], [8.56243, 47.400755], [8.562431, 47.400757], [8.562432, 47.400757], [8.562433, 47.400758], [8.562434, 47.400759], [8.562435, 47.40076], [8.562437, 47.400761], [8.562438, 47.400761], [8.562438, 47.400761], [8.562598, 47.400819], [8.5626, 47.40082], [8.562601, 47.400821], [8.562602, 47.400822], [8.562603, 47.400822], [8.562604, 47.400823], [8.562605, 47.400824], [8.562606, 47.400825], [8.562607, 47.400827], [8.562607, 47.400828], [8.562608, 47.400829], [8.562608, 47.40083], [8.562608, 47.400831], [8.562608, 47.400832], [8.562608, 47.400834], [8.562607, 47.400835], [8.562607, 47.400836], [8.562606, 47.400837], [8.562605, 47.400838], [8.562604, 47.400839], [8.562603, 47.40084], [8.562602, 47.400841], [8.562601, 47.400842], [8.5626, 47.400842], [8.562598, 47.400843], [8.562596, 47.400843], [8.562595, 47.400844], [8.562593, 47.400844], [8.562591, 47.400844], [8.56259, 47.400845], [8.562589, 47.400845], [8.562558, 47.400849], [8.562494, 47.400858], [8.562492, 47.400858], [8.56249, 47.400859], [8.562488, 47.400859], [8.562486, 47.40086], [8.562484, 47.400861], [8.562482, 47.400862], [8.56248, 47.400863], [8.562479, 47.400864], [8.562477, 47.400865], [8.562476, 47.400866], [8.562475, 47.400867], [8.562474, 47.400869], [8.562473, 47.40087], [8.562473, 47.400872], [8.562472, 47.400873], [8.562472, 47.400875], [8.562472, 47.400876], [8.562473, 47.400878], [8.562473, 47.400879], [8.562474, 47.400881], [8.562474, 47.400882], [8.562475, 47.400883], [8.562477, 47.400885], [8.562478, 47.400886], [8.562479, 47.400887], [8.562481, 47.400888], [8.562483, 47.400889], [8.562485, 47.40089], [8.562487, 47.40089], [8.562633, 47.400958], [8.562634, 47.400958], [8.562637, 47.400959], [8.56264, 47.400961], [8.562643, 47.400962], [8.562645, 47.400964], [8.562648, 47.400966], [8.56265, 47.400968], [8.562652, 47.40097], [8.562653, 47.400972], [8.562655, 47.400975], [8.562656, 47.400977], [8.562656, 47.40098], [8.562656, 47.400982], [8.562656, 47.400985], [8.562656, 47.400987], [8.562656, 47.40099], [8.562655, 47.400992], [8.562653, 47.400994], [8.562652, 47.400997], [8.56265, 47.400999], [8.562648, 47.401001], [8.562645, 47.401003], [8.562643, 47.401004], [8.56264, 47.401006], [8.562637, 47.401007], [8.562634, 47.401008], [8.56263, 47.401009], [8.562629, 47.40101], [8.562607, 47.40102], [8.562607, 47.40102], [8.562604, 47.401057], [8.562604, 47.401058], [8.562745, 47.401115], [8.562749, 47.401116], [8.562752, 47.401118], [8.562755, 47.40112], [8.562757, 47.401122], [8.56276, 47.401124], [8.562762, 47.401126], [8.562763, 47.401128], [8.562765, 47.401131], [8.562766, 47.401133], [8.562767, 47.401136], [8.562768, 47.401139], [8.562768, 47.401141], [8.562768, 47.401144], [8.562767, 47.401147], [8.562766, 47.401149], [8.562765, 47.401152], [8.562661, 47.401282], [8.562659, 47.401284], [8.562657, 47.401286], [8.562656, 47.401288], [8.562655, 47.40129], [8.562654, 47.401293], [8.562653, 47.401295], [8.562653, 47.401297], [8.562653, 47.4013], [8.562654, 47.401302], [8.562655, 47.401304], [8.562656, 47.401307], [8.562657, 47.401309], [8.562658, 47.401311], [8.56266, 47.401313], [8.562662, 47.401315], [8.562664, 47.401317], [8.562667, 47.401318], [8.56267, 47.40132], [8.562673, 47.401321], [8.562676, 47.401322], [8.562679, 47.401323], [8.562682, 47.401324], [8.562881, 47.401371], [8.562881, 47.401371], [8.562883, 47.401371], [8.562885, 47.401372], [8.562887, 47.401372], [8.562888, 47.401373], [8.56289, 47.401374], [8.562891, 47.401375], [8.562892, 47.401376], [8.562893, 47.401377], [8.562894, 47.401378], [8.562895, 47.401379], [8.562896, 47.40138], [8.562896, 47.401382], [8.562897, 47.401383], [8.562897, 47.401384], [8.562897, 47.401386], [8.562897, 47.401387], [8.562897, 47.401388], [8.562896, 47.401389], [8.562895, 47.401391], [8.562895, 47.401392], [8.562894, 47.401393], [8.562893, 47.401394], [8.562891, 47.401395], [8.56289, 47.401396], [8.562889, 47.401397], [8.562779, 47.40144], [8.562776, 47.401441], [8.562774, 47.401442], [8.562772, 47.401444], [8.56277, 47.401445], [8.562768, 47.401447], [8.562767, 47.401449], [8.562766, 47.40145], [8.562764, 47.401452], [8.562764, 47.401454], [8.562763, 47.401456], [8.562763, 47.401458], [8.562763, 47.40146], [8.562763, 47.401462], [8.562763, 47.401464], [8.562764, 47.401466], [8.562765, 47.401467], [8.562766, 47.401469], [8.562768, 47.401471], [8.562769, 47.401473], [8.562771, 47.401474], [8.562773, 47.401475], [8.562775, 47.401477], [8.562778, 47.401478], [8.562871, 47.401519], [8.562889, 47.40153], [8.562906, 47.401542], [8.562922, 47.401555], [8.562983, 47.401617]]], "type": "MultiLineString"}, "id": "1390", "properties": {}, "type": "Feature"}, {"bbox": [8.487038, 47.359634, 8.49431, 47.365031], "geometry": {"coordinates": [[[8.494099, 47.365031], [8.49418, 47.365009], [8.494246, 47.364898], [8.494295, 47.364791], [8.494309, 47.364714], [8.494309, 47.364713], [8.494309, 47.36471], [8.494309, 47.364706], [8.494309, 47.364703], [8.49431, 47.364667], [8.494307, 47.364632], [8.494301, 47.364596], [8.494301, 47.364596], [8.494255, 47.364451], [8.49412, 47.363848], [8.494037, 47.36311], [8.494035, 47.363044], [8.494017, 47.363004], [8.494003, 47.362963], [8.493995, 47.362921], [8.49399, 47.362898], [8.493983, 47.362875], [8.493973, 47.362852], [8.493954, 47.36282], [8.493933, 47.362789], [8.493908, 47.362758], [8.493874, 47.362722], [8.493834, 47.362689], [8.49379, 47.362658], [8.493741, 47.36263], [8.493668, 47.362593], [8.493593, 47.362559], [8.493517, 47.362525], [8.493487, 47.362512], [8.493458, 47.362496], [8.493431, 47.36248], [8.493419, 47.362471], [8.493408, 47.362461], [8.493399, 47.362451], [8.493391, 47.36244], [8.493384, 47.362429], [8.493379, 47.362418], [8.493375, 47.362406], [8.493368, 47.362374], [8.493361, 47.362343], [8.493353, 47.362312], [8.49335, 47.362302], [8.493346, 47.362292], [8.493341, 47.362283], [8.493334, 47.362274], [8.493327, 47.362265], [8.493318, 47.362257], [8.493317, 47.362257], [8.493317, 47.362256], [8.493316, 47.362255], [8.493289, 47.362231], [8.493263, 47.362206], [8.493239, 47.36218], [8.493218, 47.362157], [8.4932, 47.362133], [8.493183, 47.362108], [8.493171, 47.362091], [8.493158, 47.362073], [8.493145, 47.362056], [8.493129, 47.362037], [8.493112, 47.36202], [8.493093, 47.362003], [8.493071, 47.361989], [8.493009, 47.361949], [8.492948, 47.361909], [8.492888, 47.361867], [8.492826, 47.361821], [8.492767, 47.361772], [8.492712, 47.361722], [8.492663, 47.361673], [8.492619, 47.361622], [8.49258, 47.361569], [8.492574, 47.361562], [8.492567, 47.361555], [8.49256, 47.361548], [8.492552, 47.361542], [8.492542, 47.361537], [8.492533, 47.361532], [8.49249, 47.361512], [8.492448, 47.361492], [8.492407, 47.361471], [8.492374, 47.361455], [8.492342, 47.361438], [8.492311, 47.36142], [8.492249, 47.361386], [8.492189, 47.36135], [8.492131, 47.361313], [8.492073, 47.361278], [8.492014, 47.361244], [8.491953, 47.361212], [8.491949, 47.36121], [8.491944, 47.361209], [8.49194, 47.361207], [8.491935, 47.361206], [8.49193, 47.361205], [8.491925, 47.361205], [8.49192, 47.361204], [8.491915, 47.361204], [8.49191, 47.361205], [8.491906, 47.361205], [8.491901, 47.361206], [8.491896, 47.361208], [8.491892, 47.361209], [8.491887, 47.361211], [8.491882, 47.361213], [8.491878, 47.361216], [8.491874, 47.361218], [8.49187, 47.361221], [8.491867, 47.361225], [8.491864, 47.361228], [8.491861, 47.361232], [8.491859, 47.361235], [8.491858, 47.361239], [8.491856, 47.361243], [8.491855, 47.36125], [8.491855, 47.361257], [8.491856, 47.361264], [8.491858, 47.361271], [8.49186, 47.361277], [8.491864, 47.361284], [8.491869, 47.361294], [8.491873, 47.361304], [8.491876, 47.361314], [8.491877, 47.361322], [8.491877, 47.361331], [8.491876, 47.361339], [8.491874, 47.361348], [8.491871, 47.361356], [8.491854, 47.361393], [8.491833, 47.36143], [8.491808, 47.361465], [8.491793, 47.361488], [8.491781, 47.361512], [8.491772, 47.361536], [8.491764, 47.361564], [8.491756, 47.361592], [8.491748, 47.36162], [8.491744, 47.361637], [8.491738, 47.361653], [8.491731, 47.361669], [8.491719, 47.361692], [8.491704, 47.361714], [8.491687, 47.361735], [8.491667, 47.361755], [8.491644, 47.361777], [8.491622, 47.361799], [8.4916, 47.361821], [8.491595, 47.361825], [8.49159, 47.361829], [8.491584, 47.361833], [8.491577, 47.361836], [8.49157, 47.361839], [8.491563, 47.361842], [8.491556, 47.361844], [8.491548, 47.361845], [8.491542, 47.361845], [8.491536, 47.361845], [8.49153, 47.361845], [8.491525, 47.361844], [8.491519, 47.361842], [8.491514, 47.361841], [8.491509, 47.361839], [8.491504, 47.361837], [8.491499, 47.361834], [8.491495, 47.361831], [8.491491, 47.361828], [8.491488, 47.361825], [8.491485, 47.361822], [8.491482, 47.361818], [8.49148, 47.361815], [8.491478, 47.361811], [8.491477, 47.361807], [8.491475, 47.36179], [8.491474, 47.361773], [8.491476, 47.361757], [8.491479, 47.36174], [8.491482, 47.361727], [8.491483, 47.361713], [8.491483, 47.361699], [8.491481, 47.361686], [8.491477, 47.361673], [8.491471, 47.361659], [8.491464, 47.361647], [8.491461, 47.361642], [8.491457, 47.361637], [8.491452, 47.361632], [8.491447, 47.361627], [8.491441, 47.361623], [8.491434, 47.36162], [8.491428, 47.361616], [8.491421, 47.361613], [8.491401, 47.361605], [8.491383, 47.361597], [8.491365, 47.361587], [8.491359, 47.361583], [8.491353, 47.361579], [8.491348, 47.361574], [8.491343, 47.361569], [8.491339, 47.361564], [8.491336, 47.361559], [8.491334, 47.361553], [8.491332, 47.361548], [8.491331, 47.361542], [8.491328, 47.361521], [8.491322, 47.3615], [8.491313, 47.36148], [8.491304, 47.361463], [8.491294, 47.361447], [8.491284, 47.36143], [8.491282, 47.361427], [8.49128, 47.361424], [8.491277, 47.361421], [8.491274, 47.361418], [8.49127, 47.361416], [8.491266, 47.361414], [8.491262, 47.361412], [8.491258, 47.36141], [8.49125, 47.361407], [8.491244, 47.361403], [8.491237, 47.361399], [8.491231, 47.361395], [8.491226, 47.361391], [8.491221, 47.361386], [8.491217, 47.361381], [8.491206, 47.361365], [8.491196, 47.361349], [8.491188, 47.361332], [8.491175, 47.361307], [8.491159, 47.361283], [8.491139, 47.36126], [8.491123, 47.361242], [8.49111, 47.361223], [8.491098, 47.361204], [8.491092, 47.361192], [8.491089, 47.36118], [8.491086, 47.361168], [8.491085, 47.361156], [8.491086, 47.361144], [8.491088, 47.361132], [8.491096, 47.3611], [8.491103, 47.361068], [8.491109, 47.361036], [8.491112, 47.361017], [8.491115, 47.360998], [8.491117, 47.360979], [8.491119, 47.36097], [8.491122, 47.36096], [8.491127, 47.360951], [8.491132, 47.360941], [8.491138, 47.360931], [8.491144, 47.360921], [8.491148, 47.36091], [8.491151, 47.360902], [8.491153, 47.360894], [8.491153, 47.360886], [8.491153, 47.360878], [8.491151, 47.360871], [8.491149, 47.360863], [8.491145, 47.360855], [8.491141, 47.360848], [8.491139, 47.360845], [8.491136, 47.360843], [8.491134, 47.360841], [8.491131, 47.360838], [8.491128, 47.360837], [8.491124, 47.360835], [8.491121, 47.360833], [8.491117, 47.360832], [8.491113, 47.360831], [8.491109, 47.36083], [8.491105, 47.36083], [8.4911, 47.360829], [8.491096, 47.360829], [8.491092, 47.360829], [8.491088, 47.36083], [8.491084, 47.360831], [8.49108, 47.360832], [8.491076, 47.360833], [8.491072, 47.360834], [8.491064, 47.360838], [8.491056, 47.360842], [8.491049, 47.360847], [8.491043, 47.360852], [8.491037, 47.360857], [8.491031, 47.360863], [8.491027, 47.360869], [8.491023, 47.360875], [8.491008, 47.360899], [8.490992, 47.360924], [8.490973, 47.360947], [8.490954, 47.360969], [8.490934, 47.360991], [8.490912, 47.361011], [8.490885, 47.361037], [8.490861, 47.361065], [8.49084, 47.361094], [8.490823, 47.361123], [8.490792, 47.361185], [8.490762, 47.361247], [8.490731, 47.361309], [8.490699, 47.361375], [8.490667, 47.361441], [8.490634, 47.361507], [8.490615, 47.361549], [8.490598, 47.361592], [8.490584, 47.361635], [8.490583, 47.361638], [8.490582, 47.361641], [8.49058, 47.361644], [8.490577, 47.361647], [8.490575, 47.36165], [8.490572, 47.361652], [8.490569, 47.361655], [8.490565, 47.361657], [8.490561, 47.361659], [8.490557, 47.361661], [8.490553, 47.361662], [8.490548, 47.361663], [8.490544, 47.361664], [8.490539, 47.361665], [8.490534, 47.361665], [8.490529, 47.361665], [8.490524, 47.361665], [8.49052, 47.361664], [8.490515, 47.361663], [8.490511, 47.361662], [8.490506, 47.361661], [8.490502, 47.361659], [8.490498, 47.361658], [8.490494, 47.361655], [8.490491, 47.361653], [8.490488, 47.361651], [8.490485, 47.361648], [8.490483, 47.361645], [8.490481, 47.361642], [8.490479, 47.361639], [8.490478, 47.361636], [8.490477, 47.361633], [8.490477, 47.36163], [8.490477, 47.361626], [8.490478, 47.361551], [8.490473, 47.361476], [8.490462, 47.361401], [8.490437, 47.361308], [8.490401, 47.361217], [8.490353, 47.361129], [8.490295, 47.361043], [8.490226, 47.360961], [8.4902, 47.360932], [8.490177, 47.360901], [8.490156, 47.36087], [8.490146, 47.360851], [8.490138, 47.360831], [8.490133, 47.360811], [8.490131, 47.360791], [8.490131, 47.36077], [8.490134, 47.36075], [8.49014, 47.360723], [8.490147, 47.360697], [8.490155, 47.360671], [8.490157, 47.360662], [8.490158, 47.360654], [8.490158, 47.360645], [8.490156, 47.360637], [8.490154, 47.360628], [8.490151, 47.36062], [8.490147, 47.360612], [8.490141, 47.360604], [8.490135, 47.360597], [8.490125, 47.360585], [8.490117, 47.360573], [8.490111, 47.36056], [8.490106, 47.360547], [8.490103, 47.360534], [8.490102, 47.36052], [8.490101, 47.360487], [8.490098, 47.360453], [8.490094, 47.36042], [8.490092, 47.360412], [8.490089, 47.360404], [8.490086, 47.360396], [8.490081, 47.360389], [8.490075, 47.360382], [8.490069, 47.360375], [8.49005, 47.360356], [8.490032, 47.360338], [8.490013, 47.360319], [8.489961, 47.36027], [8.489907, 47.360223], [8.489849, 47.360177], [8.489848, 47.360177], [8.489826, 47.360158], [8.489806, 47.360138], [8.489788, 47.360117], [8.489774, 47.360095], [8.489762, 47.360072], [8.489753, 47.360049], [8.489747, 47.360025], [8.489746, 47.360014], [8.489746, 47.360004], [8.489748, 47.359993], [8.48975, 47.359983], [8.489754, 47.359972], [8.489759, 47.359962], [8.489768, 47.359946], [8.489774, 47.359929], [8.489779, 47.359912], [8.489782, 47.359895], [8.489782, 47.359882], [8.489781, 47.359868], [8.489778, 47.359855], [8.489772, 47.359842], [8.489766, 47.359829], [8.489757, 47.359816], [8.489747, 47.359805], [8.489741, 47.359798], [8.489736, 47.35979], [8.489732, 47.359783], [8.489729, 47.359775], [8.489727, 47.359767], [8.489726, 47.359759], [8.489726, 47.359751], [8.489727, 47.359743], [8.489729, 47.359735], [8.489732, 47.359727], [8.489719, 47.359646], [8.489675, 47.359634], [8.489643, 47.359658], [8.489641, 47.359675], [8.489642, 47.359693], [8.489644, 47.359711], [8.489649, 47.359728], [8.489655, 47.359745], [8.489657, 47.35975], [8.489659, 47.359755], [8.489659, 47.35976], [8.489659, 47.359765], [8.489658, 47.35977], [8.489657, 47.359775], [8.489655, 47.35978], [8.489652, 47.359785], [8.48964, 47.359804], [8.489626, 47.359824], [8.489611, 47.359842], [8.489605, 47.359851], [8.4896, 47.35986], [8.489597, 47.359868], [8.489594, 47.359878], [8.489592, 47.359887], [8.489592, 47.359896], [8.489591, 47.359907], [8.489589, 47.359917], [8.489586, 47.359927], [8.489581, 47.359937], [8.489575, 47.359947], [8.489568, 47.359956], [8.48956, 47.359965], [8.489551, 47.359973], [8.489503, 47.360013], [8.489455, 47.360053], [8.489407, 47.360094], [8.489397, 47.360102], [8.489389, 47.360111], [8.489382, 47.36012], [8.489376, 47.36013], [8.489372, 47.36014], [8.489368, 47.36015], [8.489366, 47.36016], [8.489365, 47.360165], [8.489363, 47.360169], [8.489361, 47.360174], [8.489358, 47.360178], [8.489355, 47.360183], [8.489351, 47.360187], [8.489347, 47.36019], [8.489342, 47.360194], [8.489337, 47.360197], [8.489183, 47.360282], [8.48916, 47.360295], [8.489137, 47.360307], [8.489113, 47.36032], [8.489111, 47.360322], [8.489108, 47.360323], [8.489106, 47.360325], [8.489104, 47.360327], [8.489103, 47.360329], [8.489101, 47.360331], [8.4891, 47.360334], [8.489099, 47.360336], [8.489099, 47.360338], [8.489099, 47.360341], [8.489099, 47.360343], [8.489099, 47.360345], [8.4891, 47.360348], [8.489101, 47.36035], [8.489102, 47.360352], [8.489105, 47.360357], [8.489107, 47.360361], [8.489109, 47.360366], [8.489109, 47.360371], [8.48911, 47.360376], [8.489109, 47.36038], [8.489108, 47.360385], [8.489107, 47.36039], [8.489104, 47.360394], [8.489102, 47.360399], [8.489098, 47.360403], [8.489094, 47.360407], [8.48909, 47.360411], [8.489085, 47.360414], [8.489079, 47.360417], [8.489073, 47.36042], [8.489059, 47.360426], [8.489045, 47.360433], [8.48903, 47.360438], [8.489025, 47.360441], [8.48902, 47.360443], [8.489016, 47.360446], [8.489012, 47.360449], [8.489009, 47.360452], [8.489005, 47.360455], [8.489003, 47.360459], [8.489, 47.360462], [8.488998, 47.360466], [8.488997, 47.36047], [8.488996, 47.360474], [8.488996, 47.360478], [8.488996, 47.360482], [8.488997, 47.36049], [8.488999, 47.360498], [8.489002, 47.360506], [8.489006, 47.360514], [8.489012, 47.360521], [8.489018, 47.360529], [8.489027, 47.360539], [8.489038, 47.360548], [8.48905, 47.360557], [8.489053, 47.36056], [8.489055, 47.360562], [8.489058, 47.360565], [8.48906, 47.360567], [8.489061, 47.36057], [8.489062, 47.360573], [8.489063, 47.360576], [8.489064, 47.360579], [8.489064, 47.360582], [8.489063, 47.360585], [8.48906, 47.360613], [8.489059, 47.360641], [8.489061, 47.360669], [8.489062, 47.360677], [8.489064, 47.360686], [8.489068, 47.360694], [8.489072, 47.360702], [8.489077, 47.360709], [8.489084, 47.360717], [8.48909, 47.360724], [8.489095, 47.360731], [8.489099, 47.360739], [8.489102, 47.360747], [8.489104, 47.360755], [8.489105, 47.360763], [8.489105, 47.360771], [8.489104, 47.360782], [8.489102, 47.360793], [8.489098, 47.360805], [8.489093, 47.360815], [8.489086, 47.360826], [8.489078, 47.360836], [8.489075, 47.360841], [8.489072, 47.360845], [8.489069, 47.360851], [8.489067, 47.360856], [8.489066, 47.360861], [8.489066, 47.360866], [8.489064, 47.360885], [8.489061, 47.360903], [8.489056, 47.360922], [8.489054, 47.360927], [8.489051, 47.360933], [8.489047, 47.360938], [8.489042, 47.360943], [8.489037, 47.360948], [8.489032, 47.360952], [8.489026, 47.360956], [8.489019, 47.36096], [8.489012, 47.360963], [8.489004, 47.360966], [8.488997, 47.360968], [8.488989, 47.36097], [8.48898, 47.360971], [8.48896, 47.360974], [8.48894, 47.360978], [8.48892, 47.360983], [8.488918, 47.360984], [8.488915, 47.360985], [8.488912, 47.360986], [8.48891, 47.360987], [8.488908, 47.360989], [8.488906, 47.36099], [8.488904, 47.360992], [8.488903, 47.360993], [8.488901, 47.360995], [8.4889, 47.360997], [8.488899, 47.360999], [8.488899, 47.361001], [8.488894, 47.361018], [8.488887, 47.361035], [8.488878, 47.361052], [8.488867, 47.361068], [8.488846, 47.361095], [8.488822, 47.36112], [8.488794, 47.361143], [8.488791, 47.361146], [8.488787, 47.361148], [8.488783, 47.36115], [8.488778, 47.361152], [8.488774, 47.361154], [8.488769, 47.361155], [8.488764, 47.361156], [8.488759, 47.361157], [8.488754, 47.361157], [8.488749, 47.361158], [8.488744, 47.361157], [8.488738, 47.361157], [8.488733, 47.361156], [8.488728, 47.361155], [8.488724, 47.361154], [8.488719, 47.361152], [8.488715, 47.36115], [8.488711, 47.361148], [8.488707, 47.361146], [8.488704, 47.361144], [8.488702, 47.361142], [8.488701, 47.36114], [8.488699, 47.361138], [8.488698, 47.361136], [8.488697, 47.361133], [8.488696, 47.361131], [8.488695, 47.361129], [8.488695, 47.361126], [8.488695, 47.361124], [8.488696, 47.361122], [8.488696, 47.361119], [8.488698, 47.361117], [8.488699, 47.361115], [8.4887, 47.361113], [8.488702, 47.361111], [8.488704, 47.361109], [8.488707, 47.361107], [8.488709, 47.361105], [8.488729, 47.361094], [8.488749, 47.361083], [8.48877, 47.361073], [8.488773, 47.361071], [8.488775, 47.36107], [8.488777, 47.361068], [8.488779, 47.361066], [8.488781, 47.361064], [8.488783, 47.361062], [8.488784, 47.36106], [8.488785, 47.361058], [8.488785, 47.361056], [8.488786, 47.361054], [8.488786, 47.361051], [8.488786, 47.361049], [8.488785, 47.361047], [8.488785, 47.361045], [8.488784, 47.361042], [8.488782, 47.36104], [8.488781, 47.361038], [8.488779, 47.361036], [8.488763, 47.36102], [8.488747, 47.361003], [8.488732, 47.360985], [8.48873, 47.360983], [8.488729, 47.360981], [8.488728, 47.360978], [8.488727, 47.360976], [8.488726, 47.360973], [8.488726, 47.36097], [8.488727, 47.360968], [8.488727, 47.360965], [8.488728, 47.360963], [8.488729, 47.36096], [8.488731, 47.360958], [8.488732, 47.360955], [8.488734, 47.360953], [8.488737, 47.360951], [8.488739, 47.360949], [8.488742, 47.360947], [8.488777, 47.360927], [8.488812, 47.360907], [8.488846, 47.360886], [8.488855, 47.36088], [8.488864, 47.360873], [8.488871, 47.360866], [8.488878, 47.360859], [8.488883, 47.360851], [8.488888, 47.360842], [8.488891, 47.360834], [8.488894, 47.360825], [8.488895, 47.360816], [8.488895, 47.360808], [8.488894, 47.360799], [8.488889, 47.36078], [8.488882, 47.360762], [8.488873, 47.360744], [8.488862, 47.360726], [8.488848, 47.360709], [8.488833, 47.360693], [8.488816, 47.360678], [8.488805, 47.360671], [8.488794, 47.360663], [8.488782, 47.360657], [8.488769, 47.360651], [8.488755, 47.360646], [8.488741, 47.360642], [8.488726, 47.360638], [8.488711, 47.360636], [8.488696, 47.360634], [8.488693, 47.360634], [8.48869, 47.360634], [8.488687, 47.360634], [8.488684, 47.360634], [8.488681, 47.360635], [8.488678, 47.360636], [8.488675, 47.360637], [8.488673, 47.360638], [8.48867, 47.360639], [8.488668, 47.36064], [8.488666, 47.360642], [8.488664, 47.360643], [8.488662, 47.360645], [8.48866, 47.360647], [8.488659, 47.360648], [8.488658, 47.36065], [8.488657, 47.360652], [8.488657, 47.360654], [8.488656, 47.360656], [8.488656, 47.360659], [8.488657, 47.360661], [8.488657, 47.360663], [8.488658, 47.360665], [8.488659, 47.360667], [8.48866, 47.360668], [8.488662, 47.36067], [8.488664, 47.360672], [8.488666, 47.360673], [8.488668, 47.360675], [8.48867, 47.360676], [8.488672, 47.360677], [8.488699, 47.36069], [8.488723, 47.360704], [8.488747, 47.360718], [8.48875, 47.360721], [8.488753, 47.360724], [8.488756, 47.360727], [8.488758, 47.36073], [8.48876, 47.360733], [8.488762, 47.360737], [8.488763, 47.36074], [8.488763, 47.360744], [8.488763, 47.360747], [8.488763, 47.360751], [8.488762, 47.360754], [8.488761, 47.360758], [8.488759, 47.360761], [8.488757, 47.360764], [8.488754, 47.360767], [8.488751, 47.36077], [8.488748, 47.360773], [8.488745, 47.360775], [8.488741, 47.360777], [8.488736, 47.36078], [8.488732, 47.360781], [8.488727, 47.360783], [8.488722, 47.360784], [8.488717, 47.360785], [8.488651, 47.360796], [8.488585, 47.36081], [8.488521, 47.360828], [8.488515, 47.36083], [8.488509, 47.360832], [8.488503, 47.360835], [8.488498, 47.360838], [8.488493, 47.360842], [8.488488, 47.360845], [8.488484, 47.360849], [8.488481, 47.360854], [8.488478, 47.360858], [8.488476, 47.360862], [8.488474, 47.360867], [8.488473, 47.360872], [8.488473, 47.360877], [8.488473, 47.360881], [8.488475, 47.360916], [8.488475, 47.360951], [8.488473, 47.360986], [8.488472, 47.36099], [8.488471, 47.360995], [8.488469, 47.360998], [8.488467, 47.361002], [8.488464, 47.361006], [8.488461, 47.36101], [8.488458, 47.361013], [8.488454, 47.361016], [8.488449, 47.361019], [8.488444, 47.361022], [8.488439, 47.361024], [8.488434, 47.361026], [8.48843, 47.361027], [8.488426, 47.361028], [8.488421, 47.361029], [8.488417, 47.36103], [8.488412, 47.36103], [8.488407, 47.36103], [8.488403, 47.36103], [8.488398, 47.361029], [8.488394, 47.361028], [8.488389, 47.361027], [8.488385, 47.361026], [8.488381, 47.361024], [8.488378, 47.361022], [8.488374, 47.36102], [8.488371, 47.361018], [8.488368, 47.361015], [8.488365, 47.361013], [8.488363, 47.36101], [8.488361, 47.361007], [8.48836, 47.361004], [8.488359, 47.361001], [8.488358, 47.360998], [8.488358, 47.360995], [8.488357, 47.360974], [8.488353, 47.360954], [8.488346, 47.360934], [8.488337, 47.360914], [8.488313, 47.360879], [8.48831, 47.360875], [8.488308, 47.360871], [8.488306, 47.360867], [8.488304, 47.360863], [8.488304, 47.360859], [8.488303, 47.360854], [8.488303, 47.36085], [8.488304, 47.360846], [8.488306, 47.360841], [8.488307, 47.360837], [8.48831, 47.360833], [8.488313, 47.360829], [8.488316, 47.360825], [8.48832, 47.360822], [8.488337, 47.360806], [8.488354, 47.36079], [8.48837, 47.360773], [8.488374, 47.360768], [8.488377, 47.360763], [8.48838, 47.360758], [8.488382, 47.360753], [8.488384, 47.360747], [8.488384, 47.360742], [8.488384, 47.360736], [8.488384, 47.36073], [8.488382, 47.360725], [8.48838, 47.36072], [8.488378, 47.360714], [8.488368, 47.3607], [8.488356, 47.360686], [8.488343, 47.360673], [8.488327, 47.36066], [8.48831, 47.360649], [8.488292, 47.360639], [8.488268, 47.360627], [8.488243, 47.360616], [8.488218, 47.360605], [8.488217, 47.360605], [8.488216, 47.360604], [8.488215, 47.360604], [8.488213, 47.360604], [8.488212, 47.360604], [8.488211, 47.360603], [8.48821, 47.360603], [8.488208, 47.360604], [8.488207, 47.360604], [8.488206, 47.360604], [8.488205, 47.360604], [8.488204, 47.360605], [8.488203, 47.360605], [8.488202, 47.360606], [8.488201, 47.360606], [8.4882, 47.360607], [8.488199, 47.360607], [8.488198, 47.360608], [8.488198, 47.360609], [8.488197, 47.36061], [8.488197, 47.36061], [8.488196, 47.360611], [8.488196, 47.360612], [8.488196, 47.360613], [8.488196, 47.360614], [8.488196, 47.360615], [8.488197, 47.360615], [8.488197, 47.360616], [8.488197, 47.360617], [8.488217, 47.360645], [8.488237, 47.360672], [8.488259, 47.360698], [8.488261, 47.3607], [8.488262, 47.360703], [8.488263, 47.360705], [8.488264, 47.360707], [8.488265, 47.36071], [8.488265, 47.360712], [8.488264, 47.360715], [8.488264, 47.360717], [8.488263, 47.36072], [8.488262, 47.360722], [8.48826, 47.360724], [8.488259, 47.360726], [8.488257, 47.360728], [8.488254, 47.36073], [8.488239, 47.360742], [8.488223, 47.360752], [8.488206, 47.360763], [8.488131, 47.360826], [8.48812, 47.360841], [8.488111, 47.360857], [8.488104, 47.360874], [8.488099, 47.360891], [8.488092, 47.360912], [8.488082, 47.360933], [8.48807, 47.360954], [8.488055, 47.360973], [8.48801, 47.361027], [8.487969, 47.361082], [8.487931, 47.361138], [8.487924, 47.36115], [8.487918, 47.361163], [8.487914, 47.361176], [8.487912, 47.361189], [8.487911, 47.361202], [8.487913, 47.361228], [8.487916, 47.361253], [8.487923, 47.361278], [8.487937, 47.36133], [8.487951, 47.361382], [8.487963, 47.361434], [8.487967, 47.361461], [8.487967, 47.361488], [8.487964, 47.361514], [8.487961, 47.361543], [8.487962, 47.361571], [8.487967, 47.361599], [8.487981, 47.361657], [8.487996, 47.361715], [8.48801, 47.361774], [8.488021, 47.361818], [8.488031, 47.361863], [8.488041, 47.361909], [8.488042, 47.361911], [8.488042, 47.361914], [8.488041, 47.361916], [8.488041, 47.361919], [8.48804, 47.361921], [8.488039, 47.361924], [8.488037, 47.361926], [8.488035, 47.361928], [8.488033, 47.361931], [8.488031, 47.361933], [8.488028, 47.361934], [8.488025, 47.361936], [8.488022, 47.361938], [8.488019, 47.361939], [8.488016, 47.36194], [8.488012, 47.361941], [8.488008, 47.361942], [8.488005, 47.361942], [8.488001, 47.361943], [8.487997, 47.361943], [8.487993, 47.361943], [8.48799, 47.361942], [8.487986, 47.361942], [8.487982, 47.361941], [8.487979, 47.36194], [8.487975, 47.361939], [8.487972, 47.361937], [8.487969, 47.361936], [8.487966, 47.361934], [8.487964, 47.361932], [8.487962, 47.36193], [8.487959, 47.361928], [8.48793, 47.361894], [8.4879, 47.361861], [8.48787, 47.361828], [8.487661, 47.361602], [8.487641, 47.36158], [8.487623, 47.361558], [8.487607, 47.361535], [8.487573, 47.361483], [8.487538, 47.361432], [8.487502, 47.361381], [8.487038, 47.360972]]], "type": "MultiLineString"}, "id": "1393", "properties": {}, "type": "Feature"}, {"bbox": [8.523909, 47.336367, 8.523959, 47.337269], "geometry": {"coordinates": [[[8.523909, 47.337269], [8.523935, 47.337166], [8.523959, 47.336367]]], "type": "MultiLineString"}, "id": "1394", "properties": {}, "type": "Feature"}, {"bbox": [8.55063, 47.413012, 8.558736, 47.41307], "geometry": {"coordinates": [[[8.55063, 47.413027], [8.550902, 47.413012], [8.552497, 47.413026], [8.552924, 47.413026], [8.55308, 47.413028], [8.554331, 47.413047], [8.55466, 47.413037], [8.555358, 47.41304], [8.555714, 47.413042], [8.557708, 47.41306], [8.558736, 47.41307]]], "type": "MultiLineString"}, "id": "1398", "properties": {}, "type": "Feature"}, {"bbox": [8.535029, 47.374219, 8.535581, 47.374476], "geometry": {"coordinates": [[[8.535581, 47.374219], [8.535029, 47.374476]]], "type": "MultiLineString"}, "id": "1399", "properties": {}, "type": "Feature"}, {"bbox": [8.532345, 47.385988, 8.533312, 47.386756], "geometry": {"coordinates": [[[8.532345, 47.385988], [8.53248, 47.386111], [8.533312, 47.386756]]], "type": "MultiLineString"}, "id": "1400", "properties": {}, "type": "Feature"}, {"bbox": [8.477913, 47.387109, 8.478528, 47.387833], "geometry": {"coordinates": [[[8.478528, 47.387833], [8.478372, 47.387494], [8.477913, 47.387109]]], "type": "MultiLineString"}, "id": "1402", "properties": {}, "type": "Feature"}, {"bbox": [8.56114, 47.371796, 8.56195, 47.372261], "geometry": {"coordinates": [[[8.56114, 47.372261], [8.561756, 47.371919], [8.561794, 47.371888], [8.56195, 47.371796]]], "type": "MultiLineString"}, "id": "1403", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.38233, 8.499084, 47.383155], "geometry": {"coordinates": [[[8.499084, 47.38233], [8.497363, 47.383139], [8.497351, 47.383155]]], "type": "MultiLineString"}, "id": "1404", "properties": {}, "type": "Feature"}, {"bbox": [8.503877, 47.395677, 8.504095, 47.396079], "geometry": {"coordinates": [[[8.503908, 47.396079], [8.504095, 47.395875], [8.503877, 47.395677]]], "type": "MultiLineString"}, "id": "1405", "properties": {}, "type": "Feature"}, {"bbox": [8.54265, 47.378637, 8.542714, 47.378758], "geometry": {"coordinates": [[[8.54265, 47.378758], [8.542714, 47.378637]]], "type": "MultiLineString"}, "id": "1406", "properties": {}, "type": "Feature"}, {"bbox": [8.516094, 47.367855, 8.517183, 47.368461], "geometry": {"coordinates": [[[8.517183, 47.368461], [8.516094, 47.367855]]], "type": "MultiLineString"}, "id": "1407", "properties": {}, "type": "Feature"}, {"bbox": [8.491061, 47.371207, 8.493145, 47.371589], "geometry": {"coordinates": [[[8.493145, 47.371207], [8.492783, 47.371307], [8.492041, 47.371516], [8.491641, 47.371551], [8.491061, 47.371589]]], "type": "MultiLineString"}, "id": "1408", "properties": {}, "type": "Feature"}, {"bbox": [8.535693, 47.369601, 8.536538, 47.370122], "geometry": {"coordinates": [[[8.535693, 47.369939], [8.535803, 47.369934], [8.536052, 47.370122], [8.536075, 47.370122], [8.536538, 47.369829], [8.536262, 47.369652], [8.536241, 47.369601]]], "type": "MultiLineString"}, "id": "1409", "properties": {}, "type": "Feature"}, {"bbox": [8.48629, 47.38721, 8.486435, 47.387236], "geometry": {"coordinates": [[[8.486435, 47.38721], [8.48629, 47.387236]]], "type": "MultiLineString"}, "id": "1415", "properties": {}, "type": "Feature"}, {"bbox": [8.477417, 47.413605, 8.4775, 47.415084], "geometry": {"coordinates": [[[8.477449, 47.413605], [8.4775, 47.413757], [8.47749, 47.414037], [8.477444, 47.414053], [8.477417, 47.414469], [8.477444, 47.415084]]], "type": "MultiLineString"}, "id": "1417", "properties": {}, "type": "Feature"}, {"bbox": [8.587097, 47.354532, 8.5871, 47.354878], "geometry": {"coordinates": [[[8.587097, 47.354878], [8.5871, 47.354532]]], "type": "MultiLineString"}, "id": "1421", "properties": {}, "type": "Feature"}, {"bbox": [8.519485, 47.399638, 8.520387, 47.400006], "geometry": {"coordinates": [[[8.520384, 47.399638], [8.520386, 47.399645], [8.520387, 47.399652], [8.520387, 47.399659], [8.520386, 47.399666], [8.520384, 47.399673], [8.520381, 47.39968], [8.520378, 47.399687], [8.520373, 47.399693], [8.520368, 47.399699], [8.520362, 47.399705], [8.520355, 47.399711], [8.520348, 47.399716], [8.520339, 47.39972], [8.520331, 47.399725], [8.520125, 47.3998], [8.519888, 47.399879], [8.51963, 47.399961], [8.519485, 47.400006]]], "type": "MultiLineString"}, "id": "1423", "properties": {}, "type": "Feature"}, {"bbox": [8.530503, 47.340443, 8.531515, 47.340549], "geometry": {"coordinates": [[[8.530503, 47.340443], [8.530622, 47.34048], [8.531005, 47.340523], [8.531437, 47.340523], [8.531515, 47.340549]]], "type": "MultiLineString"}, "id": "1427", "properties": {}, "type": "Feature"}, {"bbox": [8.552884, 47.413028, 8.55308, 47.414306], "geometry": {"coordinates": [[[8.55308, 47.413028], [8.553075, 47.413138], [8.552894, 47.413137], [8.552884, 47.414306]]], "type": "MultiLineString"}, "id": "1428", "properties": {}, "type": "Feature"}, {"bbox": [8.533256, 47.374884, 8.534366, 47.375376], "geometry": {"coordinates": [[[8.534366, 47.374884], [8.533256, 47.375376]]], "type": "MultiLineString"}, "id": "1429", "properties": {}, "type": "Feature"}, {"bbox": [8.566799, 47.377357, 8.568031, 47.377376], "geometry": {"coordinates": [[[8.566799, 47.377376], [8.568031, 47.377357]]], "type": "MultiLineString"}, "id": "1430", "properties": {}, "type": "Feature"}, {"bbox": [8.551023, 47.37944, 8.551698, 47.379806], "geometry": {"coordinates": [[[8.551023, 47.37944], [8.551698, 47.379806]]], "type": "MultiLineString"}, "id": "1432", "properties": {}, "type": "Feature"}, {"bbox": [8.517753, 47.374247, 8.51834, 47.37458], "geometry": {"coordinates": [[[8.51834, 47.37458], [8.517753, 47.374247]]], "type": "MultiLineString"}, "id": "1433", "properties": {}, "type": "Feature"}, {"bbox": [8.52708, 47.410511, 8.528049, 47.411321], "geometry": {"coordinates": [[[8.52708, 47.410511], [8.52725, 47.410651], [8.528049, 47.411321]]], "type": "MultiLineString"}, "id": "1434", "properties": {}, "type": "Feature"}, {"bbox": [8.483214, 47.414901, 8.483459, 47.41491], "geometry": {"coordinates": [[[8.483459, 47.41491], [8.483214, 47.414901]]], "type": "MultiLineString"}, "id": "1435", "properties": {}, "type": "Feature"}, {"bbox": [8.576119, 47.384216, 8.576461, 47.385681], "geometry": {"coordinates": [[[8.576126, 47.384216], [8.576119, 47.384316], [8.576126, 47.384417], [8.576147, 47.384517], [8.5763, 47.385072], [8.576461, 47.385681]]], "type": "MultiLineString"}, "id": "1436", "properties": {}, "type": "Feature"}, {"bbox": [8.551031, 47.376967, 8.552666, 47.377825], "geometry": {"coordinates": [[[8.551031, 47.377825], [8.551618, 47.377423], [8.551864, 47.377285], [8.552275, 47.377084], [8.55246, 47.37701], [8.552666, 47.376967]]], "type": "MultiLineString"}, "id": "1437", "properties": {}, "type": "Feature"}, {"bbox": [8.542863, 47.371555, 8.54382, 47.371732], "geometry": {"coordinates": [[[8.542863, 47.371555], [8.543029, 47.371563], [8.543232, 47.371594], [8.543235, 47.371652], [8.54382, 47.371732]]], "type": "MultiLineString"}, "id": "1438", "properties": {}, "type": "Feature"}, {"bbox": [8.534219, 47.380278, 8.534492, 47.380373], "geometry": {"coordinates": [[[8.534492, 47.380373], [8.534219, 47.380278]]], "type": "MultiLineString"}, "id": "1440", "properties": {}, "type": "Feature"}, {"bbox": [8.524103, 47.351752, 8.524121, 47.351753], "geometry": {"coordinates": [[[8.524103, 47.351753], [8.524121, 47.351752]]], "type": "MultiLineString"}, "id": "1443", "properties": {}, "type": "Feature"}, {"bbox": [8.577824, 47.390184, 8.578247, 47.390418], "geometry": {"coordinates": [[[8.577824, 47.390418], [8.578247, 47.390184]]], "type": "MultiLineString"}, "id": "1445", "properties": {}, "type": "Feature"}, {"bbox": [8.547973, 47.374072, 8.549081, 47.374265], "geometry": {"coordinates": [[[8.547973, 47.374072], [8.549081, 47.374265]]], "type": "MultiLineString"}, "id": "1446", "properties": {}, "type": "Feature"}, {"bbox": [8.53397, 47.393698, 8.534632, 47.39442], "geometry": {"coordinates": [[[8.534632, 47.393698], [8.53397, 47.39442]]], "type": "MultiLineString"}, "id": "1447", "properties": {}, "type": "Feature"}, {"bbox": [8.559211, 47.369881, 8.559465, 47.370412], "geometry": {"coordinates": [[[8.559211, 47.370412], [8.559246, 47.3703], [8.559465, 47.369881]]], "type": "MultiLineString"}, "id": "1448", "properties": {}, "type": "Feature"}, {"bbox": [8.512578, 47.378623, 8.514461, 47.380532], "geometry": {"coordinates": [[[8.512578, 47.380532], [8.512742, 47.380033], [8.514461, 47.379519], [8.513415, 47.378623]]], "type": "MultiLineString"}, "id": "1449", "properties": {}, "type": "Feature"}, {"bbox": [8.506224, 47.414681, 8.507302, 47.415149], "geometry": {"coordinates": [[[8.507302, 47.414681], [8.50726, 47.4147], [8.506918, 47.414853], [8.506363, 47.415098], [8.506224, 47.415149]]], "type": "MultiLineString"}, "id": "1450", "properties": {}, "type": "Feature"}, {"bbox": [8.496906, 47.424324, 8.49709, 47.424378], "geometry": {"coordinates": [[[8.49709, 47.424324], [8.496906, 47.424378]]], "type": "MultiLineString"}, "id": "1451", "properties": {}, "type": "Feature"}, {"bbox": [8.539146, 47.38221, 8.539885, 47.382708], "geometry": {"coordinates": [[[8.539146, 47.38221], [8.539885, 47.382708]]], "type": "MultiLineString"}, "id": "1454", "properties": {}, "type": "Feature"}, {"bbox": [8.518557, 47.369694, 8.520315, 47.370286], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.520018, 47.369878], [8.518672, 47.370255], [8.518557, 47.370286]]], "type": "MultiLineString"}, "id": "1457", "properties": {}, "type": "Feature"}, {"bbox": [8.477042, 47.415064, 8.477241, 47.415366], "geometry": {"coordinates": [[[8.477234, 47.415064], [8.477241, 47.415196], [8.477146, 47.415294], [8.477042, 47.415366]]], "type": "MultiLineString"}, "id": "1459", "properties": {}, "type": "Feature"}, {"bbox": [8.535062, 47.334296, 8.537803, 47.336572], "geometry": {"coordinates": [[[8.535487, 47.336572], [8.535418, 47.336536], [8.535062, 47.336306], [8.535199, 47.336161], [8.535276, 47.336099], [8.53558, 47.335894], [8.535792, 47.335738], [8.535981, 47.335656], [8.536158, 47.335562], [8.536307, 47.335487], [8.53647, 47.335395], [8.536793, 47.335219], [8.537016, 47.33506], [8.537171, 47.334925], [8.537427, 47.334682], [8.5377, 47.334394], [8.537803, 47.334333], [8.537792, 47.334296]]], "type": "MultiLineString"}, "id": "1460", "properties": {}, "type": "Feature"}, {"bbox": [8.558007, 47.41307, 8.558736, 47.413242], "geometry": {"coordinates": [[[8.558736, 47.41307], [8.558716, 47.413082], [8.558012, 47.413073], [8.558007, 47.413231], [8.558734, 47.413242], [8.558716, 47.413082]]], "type": "MultiLineString"}, "id": "1461", "properties": {}, "type": "Feature"}, {"bbox": [8.52772, 47.371363, 8.527883, 47.371372], "geometry": {"coordinates": [[[8.52772, 47.371372], [8.527774, 47.371368], [8.527829, 47.371365], [8.527883, 47.371363]]], "type": "MultiLineString"}, "id": "1464", "properties": {}, "type": "Feature"}, {"bbox": [8.471575, 47.38778, 8.472465, 47.388734], "geometry": {"coordinates": [[[8.472465, 47.388734], [8.472459, 47.388672], [8.472401, 47.388624], [8.472156, 47.388431], [8.471936, 47.388225], [8.471742, 47.388008], [8.471575, 47.38778]]], "type": "MultiLineString"}, "id": "1465", "properties": {}, "type": "Feature"}, {"bbox": [8.483586, 47.383535, 8.484545, 47.385173], "geometry": {"coordinates": [[[8.484545, 47.385173], [8.484099, 47.384476], [8.483817, 47.384049], [8.483701, 47.383852], [8.483586, 47.383535]]], "type": "MultiLineString"}, "id": "1466", "properties": {}, "type": "Feature"}, {"bbox": [8.51908, 47.392179, 8.519215, 47.392894], "geometry": {"coordinates": [[[8.51908, 47.392179], [8.519155, 47.392197], [8.519215, 47.392894]]], "type": "MultiLineString"}, "id": "1467", "properties": {}, "type": "Feature"}, {"bbox": [8.544437, 47.368271, 8.54479, 47.36851], "geometry": {"coordinates": [[[8.544737, 47.36851], [8.54469, 47.368488], [8.54479, 47.368383], [8.544564, 47.368271], [8.544437, 47.368389]]], "type": "MultiLineString"}, "id": "1468", "properties": {}, "type": "Feature"}, {"bbox": [8.483549, 47.410969, 8.48478, 47.411495], "geometry": {"coordinates": [[[8.48478, 47.410969], [8.484768, 47.410981], [8.484755, 47.410992], [8.48474, 47.411002], [8.484724, 47.411012], [8.484706, 47.41102], [8.484688, 47.411027], [8.483549, 47.411495]]], "type": "MultiLineString"}, "id": "1469", "properties": {}, "type": "Feature"}, {"bbox": [8.508278, 47.356102, 8.509332, 47.357305], "geometry": {"coordinates": [[[8.508278, 47.357305], [8.509332, 47.356102]]], "type": "MultiLineString"}, "id": "1470", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.374076, 8.541694, 47.37442], "geometry": {"coordinates": [[[8.541694, 47.37442], [8.541667, 47.37441], [8.541643, 47.3744], [8.541619, 47.374388], [8.541597, 47.374375], [8.541577, 47.37436], [8.541559, 47.374344], [8.541543, 47.374328], [8.541529, 47.37431], [8.541517, 47.374292], [8.541349, 47.374076]]], "type": "MultiLineString"}, "id": "1472", "properties": {}, "type": "Feature"}, {"bbox": [8.520044, 47.379248, 8.520107, 47.379281], "geometry": {"coordinates": [[[8.520107, 47.379248], [8.520044, 47.379281]]], "type": "MultiLineString"}, "id": "1475", "properties": {}, "type": "Feature"}, {"bbox": [8.503861, 47.394909, 8.504328, 47.39557], "geometry": {"coordinates": [[[8.503861, 47.394909], [8.503916, 47.394982], [8.504328, 47.39557]]], "type": "MultiLineString"}, "id": "1476", "properties": {}, "type": "Feature"}, {"bbox": [8.535198, 47.368911, 8.535751, 47.369095], "geometry": {"coordinates": [[[8.535751, 47.369095], [8.535198, 47.368911]]], "type": "MultiLineString"}, "id": "1478", "properties": {}, "type": "Feature"}, {"bbox": [8.558287, 47.404507, 8.558641, 47.406012], "geometry": {"coordinates": [[[8.558287, 47.404507], [8.558363, 47.404753], [8.558484, 47.405283], [8.558641, 47.406012]]], "type": "MultiLineString"}, "id": "1483", "properties": {}, "type": "Feature"}, {"bbox": [8.513423, 47.331242, 8.513533, 47.331271], "geometry": {"coordinates": [[[8.513533, 47.331242], [8.513423, 47.331271]]], "type": "MultiLineString"}, "id": "1488", "properties": {}, "type": "Feature"}, {"bbox": [8.542724, 47.404853, 8.542753, 47.405092], "geometry": {"coordinates": [[[8.542749, 47.404853], [8.542753, 47.404893], [8.542724, 47.405092]]], "type": "MultiLineString"}, "id": "1489", "properties": {}, "type": "Feature"}, {"bbox": [8.489891, 47.392308, 8.491405, 47.392823], "geometry": {"coordinates": [[[8.489928, 47.392823], [8.489891, 47.392761], [8.491185, 47.392401], [8.491405, 47.392339], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "1493", "properties": {}, "type": "Feature"}, {"bbox": [8.530665, 47.383382, 8.530938, 47.383583], "geometry": {"coordinates": [[[8.530938, 47.383382], [8.530876, 47.38343], [8.530728, 47.383546], [8.530665, 47.383583]]], "type": "MultiLineString"}, "id": "1497", "properties": {}, "type": "Feature"}, {"bbox": [8.544704, 47.370838, 8.545842, 47.371071], "geometry": {"coordinates": [[[8.544704, 47.370838], [8.545414, 47.370926], [8.545842, 47.371071]]], "type": "MultiLineString"}, "id": "1498", "properties": {}, "type": "Feature"}, {"bbox": [8.510536, 47.356979, 8.512183, 47.358774], "geometry": {"coordinates": [[[8.512183, 47.356979], [8.511855, 47.357517], [8.511464, 47.357955], [8.511138, 47.358294], [8.510536, 47.358774]]], "type": "MultiLineString"}, "id": "1499", "properties": {}, "type": "Feature"}, {"bbox": [8.46825, 47.353951, 8.488451, 47.370036], "geometry": {"coordinates": [[[8.46825, 47.370036], [8.468348, 47.369888], [8.468358, 47.369873], [8.468371, 47.369859], [8.468384, 47.369846], [8.4684, 47.369834], [8.468417, 47.369823], [8.468436, 47.369812], [8.468456, 47.369804], [8.468476, 47.369796], [8.468498, 47.369789], [8.468521, 47.369784], [8.468544, 47.369781], [8.468568, 47.369779], [8.468591, 47.369778], [8.468615, 47.369778], [8.468639, 47.369781], [8.469231, 47.369899], [8.469316, 47.369915], [8.469403, 47.369926], [8.469491, 47.369932], [8.469579, 47.369933], [8.469667, 47.369929], [8.469754, 47.36992], [8.46984, 47.369906], [8.470004, 47.369873], [8.470079, 47.369859], [8.472119, 47.369485], [8.472277, 47.369454], [8.472508, 47.369389], [8.473077, 47.369211], [8.473248, 47.369152], [8.473411, 47.369085], [8.473567, 47.369009], [8.473683, 47.368945], [8.473794, 47.368877], [8.4739, 47.368805], [8.474579, 47.36831], [8.47513, 47.367877], [8.475186, 47.367836], [8.475246, 47.367798], [8.475309, 47.367762], [8.475346, 47.367744], [8.475383, 47.367726], [8.475422, 47.36771], [8.475561, 47.367655], [8.476025, 47.367474], [8.477206, 47.367007], [8.478621, 47.366444], [8.479293, 47.366184], [8.479564, 47.366074], [8.479828, 47.365956], [8.480085, 47.365831], [8.480446, 47.365648], [8.480545, 47.365593], [8.480638, 47.365532], [8.480724, 47.365467], [8.480782, 47.365416], [8.480835, 47.365363], [8.480884, 47.365308], [8.481118, 47.365025], [8.481183, 47.364937], [8.481235, 47.364845], [8.481273, 47.36475], [8.481421, 47.364304], [8.48145, 47.36423], [8.48149, 47.364158], [8.481539, 47.364089], [8.481598, 47.364024], [8.481665, 47.363962], [8.48174, 47.363905], [8.481883, 47.363805], [8.481981, 47.363743], [8.482085, 47.363686], [8.482195, 47.363635], [8.482311, 47.36359], [8.48237, 47.363572], [8.482431, 47.363557], [8.482494, 47.363546], [8.482558, 47.363538], [8.482623, 47.363535], [8.482688, 47.363535], [8.482753, 47.363539], [8.482816, 47.363548], [8.482879, 47.36356], [8.48294, 47.363575], [8.482998, 47.363595], [8.483054, 47.363618], [8.48388, 47.363991], [8.48393, 47.364012], [8.483984, 47.364029], [8.484039, 47.364043], [8.484096, 47.364054], [8.484154, 47.364062], [8.484213, 47.364065], [8.484272, 47.364065], [8.484331, 47.364062], [8.484389, 47.364055], [8.484446, 47.364044], [8.484501, 47.36403], [8.484555, 47.364013], [8.48528, 47.363751], [8.485346, 47.363729], [8.485415, 47.363712], [8.485486, 47.363699], [8.485559, 47.36369], [8.485632, 47.363686], [8.485706, 47.363686], [8.485779, 47.36369], [8.486059, 47.363717], [8.486081, 47.363718], [8.486103, 47.363719], [8.486125, 47.363717], [8.486146, 47.363715], [8.486168, 47.363711], [8.486189, 47.363706], [8.486209, 47.3637], [8.486228, 47.363693], [8.486246, 47.363685], [8.486263, 47.363675], [8.486279, 47.363665], [8.486293, 47.363654], [8.486306, 47.363641], [8.486318, 47.363629], [8.486327, 47.363615], [8.486335, 47.363601], [8.486342, 47.363587], [8.486346, 47.363572], [8.486348, 47.363558], [8.486349, 47.363543], [8.486348, 47.363528], [8.486344, 47.363513], [8.486339, 47.363498], [8.486332, 47.363484], [8.486324, 47.36347], [8.486313, 47.363457], [8.486301, 47.363445], [8.486288, 47.363433], [8.486247, 47.363404], [8.486202, 47.363377], [8.486154, 47.363353], [8.486102, 47.363333], [8.485779, 47.36322], [8.485688, 47.363186], [8.485598, 47.36315], [8.485511, 47.36311], [8.485398, 47.363057], [8.485381, 47.363048], [8.485366, 47.363038], [8.485351, 47.363027], [8.485338, 47.363016], [8.485327, 47.363003], [8.485317, 47.36299], [8.485308, 47.362977], [8.485302, 47.362963], [8.485297, 47.362949], [8.485295, 47.362934], [8.485294, 47.36292], [8.485295, 47.362905], [8.485298, 47.362891], [8.485302, 47.362876], [8.485309, 47.362863], [8.485317, 47.362849], [8.485327, 47.362836], [8.485339, 47.362824], [8.485352, 47.362812], [8.485367, 47.362802], [8.485513, 47.362704], [8.485553, 47.362674], [8.485589, 47.362641], [8.485621, 47.362606], [8.485726, 47.362472], [8.485758, 47.362436], [8.485794, 47.362401], [8.485835, 47.36237], [8.485881, 47.36234], [8.48593, 47.362314], [8.486457, 47.362058], [8.486525, 47.362022], [8.486588, 47.361982], [8.486646, 47.361939], [8.486698, 47.361892], [8.486744, 47.361843], [8.486783, 47.361791], [8.486816, 47.361737], [8.486842, 47.361681], [8.486861, 47.361624], [8.486905, 47.361454], [8.486983, 47.361124], [8.486997, 47.361073], [8.487015, 47.361022], [8.487038, 47.360972], [8.487215, 47.36065], [8.487228, 47.360622], [8.487236, 47.360593], [8.487241, 47.360564], [8.487241, 47.360534], [8.487237, 47.360482], [8.487229, 47.360429], [8.487218, 47.360377], [8.487181, 47.36023], [8.487174, 47.360144], [8.487209, 47.35983], [8.487214, 47.359721], [8.487203, 47.359612], [8.487178, 47.359505], [8.487137, 47.359399], [8.487082, 47.359297], [8.486873, 47.358961], [8.486845, 47.35891], [8.486825, 47.358858], [8.48681, 47.358805], [8.486803, 47.358752], [8.486803, 47.358698], [8.486809, 47.358644], [8.486847, 47.358444], [8.486964, 47.358045], [8.486991, 47.35793], [8.487005, 47.357814], [8.487007, 47.357697], [8.487001, 47.357564], [8.487003, 47.357477], [8.487014, 47.357391], [8.487036, 47.357306], [8.487067, 47.357222], [8.487101, 47.357145], [8.487136, 47.357069], [8.487173, 47.356994], [8.487271, 47.356825], [8.487393, 47.356665], [8.487539, 47.356513], [8.487569, 47.356488], [8.487602, 47.356465], [8.487638, 47.356443], [8.487677, 47.356425], [8.487718, 47.356408], [8.487761, 47.356394], [8.487806, 47.356383], [8.487852, 47.356375], [8.487899, 47.356369], [8.487947, 47.356367], [8.487994, 47.356367], [8.488174, 47.356374], [8.488197, 47.356375], [8.48822, 47.356373], [8.488242, 47.356371], [8.488265, 47.356367], [8.488286, 47.356362], [8.488307, 47.356356], [8.488327, 47.356348], [8.488346, 47.356339], [8.488363, 47.356329], [8.48838, 47.356319], [8.488395, 47.356307], [8.488408, 47.356294], [8.48842, 47.356281], [8.488429, 47.356267], [8.488438, 47.356253], [8.488444, 47.356238], [8.488448, 47.356222], [8.48845, 47.356207], [8.488451, 47.356191], [8.488449, 47.356176], [8.488445, 47.356161], [8.48844, 47.356146], [8.488432, 47.356131], [8.488423, 47.356117], [8.488412, 47.356103], [8.488399, 47.35609], [8.488384, 47.356078], [8.488368, 47.356067], [8.488351, 47.356057], [8.488333, 47.356048], [8.488313, 47.35604], [8.488293, 47.356033], [8.488271, 47.356028], [8.487852, 47.355934], [8.487818, 47.355925], [8.487786, 47.355914], [8.487756, 47.355901], [8.487727, 47.355887], [8.4877, 47.355871], [8.487676, 47.355853], [8.487654, 47.355834], [8.487634, 47.355813], [8.48745, 47.355598], [8.487398, 47.355542], [8.487339, 47.35549], [8.487274, 47.355442], [8.487203, 47.355397], [8.48717, 47.35538], [8.487135, 47.355365], [8.487098, 47.355352], [8.48706, 47.355342], [8.48702, 47.355334], [8.48698, 47.355328], [8.486939, 47.355325], [8.486897, 47.355325], [8.486856, 47.355327], [8.486816, 47.355331], [8.486776, 47.355338], [8.486623, 47.35537], [8.486603, 47.355374], [8.486583, 47.355376], [8.486563, 47.355377], [8.486542, 47.355377], [8.486522, 47.355376], [8.486502, 47.355374], [8.486482, 47.35537], [8.486462, 47.355366], [8.486444, 47.35536], [8.486426, 47.355353], [8.486409, 47.355345], [8.486393, 47.355336], [8.486378, 47.355327], [8.486365, 47.355316], [8.486352, 47.355305], [8.486342, 47.355293], [8.486333, 47.35528], [8.486325, 47.355267], [8.486319, 47.355254], [8.486315, 47.35524], [8.486312, 47.355226], [8.486312, 47.355212], [8.486313, 47.355198], [8.486316, 47.355184], [8.486321, 47.35517], [8.486327, 47.355156], [8.486335, 47.355143], [8.486345, 47.355131], [8.486356, 47.355119], [8.486372, 47.355105], [8.48639, 47.355092], [8.486409, 47.35508], [8.48643, 47.35507], [8.486452, 47.355061], [8.486475, 47.355053], [8.486499, 47.355046], [8.486523, 47.355041], [8.486549, 47.355037], [8.486574, 47.355035], [8.4866, 47.355034], [8.486626, 47.355035], [8.486828, 47.355048], [8.486869, 47.355049], [8.486911, 47.355048], [8.486953, 47.355044], [8.486994, 47.355038], [8.487034, 47.355029], [8.487072, 47.355018], [8.487109, 47.355005], [8.487144, 47.354989], [8.487177, 47.354972], [8.48729, 47.3549], [8.487394, 47.354823], [8.487488, 47.35474], [8.487573, 47.354652], [8.487599, 47.35462], [8.48762, 47.354586], [8.487637, 47.354551], [8.48765, 47.354515], [8.487658, 47.354478], [8.487661, 47.354442], [8.487659, 47.354405], [8.487653, 47.354368], [8.487642, 47.354332], [8.487626, 47.354297], [8.487606, 47.354263], [8.487581, 47.35423], [8.487552, 47.354199], [8.48752, 47.354169], [8.487483, 47.354142], [8.487444, 47.354117], [8.487401, 47.354094], [8.487355, 47.354074], [8.487307, 47.354057], [8.487257, 47.354043], [8.487206, 47.354031], [8.487127, 47.354017], [8.487115, 47.354015], [8.487103, 47.354011], [8.487091, 47.354007], [8.48708, 47.354003], [8.48707, 47.353997], [8.487061, 47.353991], [8.487052, 47.353985], [8.487044, 47.353978], [8.487015, 47.353951]]], "type": "MultiLineString"}, "id": "1501", "properties": {}, "type": "Feature"}, {"bbox": [8.536561, 47.414423, 8.537926, 47.414939], "geometry": {"coordinates": [[[8.537926, 47.414842], [8.537883, 47.414423], [8.536561, 47.414494], [8.536612, 47.414939]]], "type": "MultiLineString"}, "id": "1503", "properties": {}, "type": "Feature"}, {"bbox": [8.542507, 47.392547, 8.543562, 47.393045], "geometry": {"coordinates": [[[8.543562, 47.392547], [8.54328, 47.392662], [8.54277, 47.392905], [8.542507, 47.393045]]], "type": "MultiLineString"}, "id": "1504", "properties": {}, "type": "Feature"}, {"bbox": [8.518882, 47.332826, 8.519358, 47.333065], "geometry": {"coordinates": [[[8.518882, 47.333065], [8.519358, 47.332826]]], "type": "MultiLineString"}, "id": "1507", "properties": {}, "type": "Feature"}, {"bbox": [8.552423, 47.355101, 8.553051, 47.355324], "geometry": {"coordinates": [[[8.552423, 47.355101], [8.553051, 47.355324]]], "type": "MultiLineString"}, "id": "1508", "properties": {}, "type": "Feature"}, {"bbox": [8.544665, 47.372488, 8.545238, 47.373293], "geometry": {"coordinates": [[[8.545238, 47.372488], [8.545153, 47.372783], [8.545027, 47.372929], [8.544665, 47.373293]]], "type": "MultiLineString"}, "id": "1512", "properties": {}, "type": "Feature"}, {"bbox": [8.516978, 47.423793, 8.517344, 47.425237], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.517129, 47.424022], [8.51719, 47.424145], [8.517279, 47.42436], [8.517314, 47.424454], [8.517336, 47.42455], [8.517344, 47.424647], [8.517339, 47.424744], [8.51732, 47.42484], [8.517216, 47.425237]]], "type": "MultiLineString"}, "id": "1517", "properties": {}, "type": "Feature"}, {"bbox": [8.514666, 47.335173, 8.515203, 47.335957], "geometry": {"coordinates": [[[8.514757, 47.335173], [8.514666, 47.335486], [8.51484, 47.335641], [8.514981, 47.335689], [8.515203, 47.335957]]], "type": "MultiLineString"}, "id": "1519", "properties": {}, "type": "Feature"}, {"bbox": [8.546589, 47.384193, 8.546953, 47.384592], "geometry": {"coordinates": [[[8.546589, 47.384592], [8.546757, 47.38441], [8.546953, 47.384193]]], "type": "MultiLineString"}, "id": "1520", "properties": {}, "type": "Feature"}, {"bbox": [8.498893, 47.423723, 8.49895, 47.42382], "geometry": {"coordinates": [[[8.49895, 47.42382], [8.498893, 47.423723]]], "type": "MultiLineString"}, "id": "1528", "properties": {}, "type": "Feature"}, {"bbox": [8.53133, 47.379512, 8.532217, 47.380987], "geometry": {"coordinates": [[[8.53133, 47.379512], [8.532206, 47.380899], [8.532217, 47.380987]]], "type": "MultiLineString"}, "id": "1530", "properties": {}, "type": "Feature"}, {"bbox": [8.563508, 47.376926, 8.565577, 47.377381], "geometry": {"coordinates": [[[8.563508, 47.377381], [8.565577, 47.376926]]], "type": "MultiLineString"}, "id": "1531", "properties": {}, "type": "Feature"}, {"bbox": [8.516003, 47.358226, 8.51634, 47.358712], "geometry": {"coordinates": [[[8.516003, 47.358712], [8.51634, 47.358226]]], "type": "MultiLineString"}, "id": "1534", "properties": {}, "type": "Feature"}, {"bbox": [8.576022, 47.409717, 8.576357, 47.410337], "geometry": {"coordinates": [[[8.576022, 47.409717], [8.576357, 47.410337]]], "type": "MultiLineString"}, "id": "1538", "properties": {}, "type": "Feature"}, {"bbox": [8.540148, 47.373343, 8.540248, 47.374022], "geometry": {"coordinates": [[[8.540248, 47.373343], [8.54019, 47.373567], [8.540157, 47.373794], [8.540148, 47.374022]]], "type": "MultiLineString"}, "id": "1539", "properties": {}, "type": "Feature"}, {"bbox": [8.547546, 47.366644, 8.548377, 47.36712], "geometry": {"coordinates": [[[8.547546, 47.366644], [8.547741, 47.366755], [8.548377, 47.36712]]], "type": "MultiLineString"}, "id": "1542", "properties": {}, "type": "Feature"}, {"bbox": [8.54466, 47.368593, 8.545304, 47.368891], "geometry": {"coordinates": [[[8.54466, 47.368593], [8.545087, 47.368776], [8.545304, 47.368891]]], "type": "MultiLineString"}, "id": "1545", "properties": {}, "type": "Feature"}, {"bbox": [8.495743, 47.396834, 8.496008, 47.39713], "geometry": {"coordinates": [[[8.496008, 47.39713], [8.495743, 47.396834]]], "type": "MultiLineString"}, "id": "1547", "properties": {}, "type": "Feature"}, {"bbox": [8.51274, 47.393476, 8.513107, 47.394196], "geometry": {"coordinates": [[[8.51274, 47.393476], [8.513107, 47.394196]]], "type": "MultiLineString"}, "id": "1548", "properties": {}, "type": "Feature"}, {"bbox": [8.53968, 47.389524, 8.540084, 47.389588], "geometry": {"coordinates": [[[8.53968, 47.389524], [8.540084, 47.389588]]], "type": "MultiLineString"}, "id": "1552", "properties": {}, "type": "Feature"}, {"bbox": [8.53065, 47.348227, 8.530812, 47.348575], "geometry": {"coordinates": [[[8.53065, 47.348227], [8.530762, 47.348563], [8.530812, 47.348575]]], "type": "MultiLineString"}, "id": "1554", "properties": {}, "type": "Feature"}, {"bbox": [8.543505, 47.369123, 8.544462, 47.369628], "geometry": {"coordinates": [[[8.543505, 47.369123], [8.543843, 47.369268], [8.544243, 47.369493], [8.544462, 47.369628]]], "type": "MultiLineString"}, "id": "1555", "properties": {}, "type": "Feature"}, {"bbox": [8.542859, 47.373723, 8.543695, 47.373782], "geometry": {"coordinates": [[[8.542859, 47.373782], [8.543695, 47.373723]]], "type": "MultiLineString"}, "id": "1557", "properties": {}, "type": "Feature"}, {"bbox": [8.547765, 47.370867, 8.548219, 47.370961], "geometry": {"coordinates": [[[8.548219, 47.370893], [8.547871, 47.370961], [8.547765, 47.370867]]], "type": "MultiLineString"}, "id": "1558", "properties": {}, "type": "Feature"}, {"bbox": [8.538337, 47.386702, 8.538511, 47.387008], "geometry": {"coordinates": [[[8.538337, 47.387008], [8.538511, 47.386702]]], "type": "MultiLineString"}, "id": "1560", "properties": {}, "type": "Feature"}, {"bbox": [8.569589, 47.361659, 8.57111, 47.362063], "geometry": {"coordinates": [[[8.569589, 47.361659], [8.569687, 47.3617], [8.570564, 47.362063], [8.57111, 47.361778]]], "type": "MultiLineString"}, "id": "1564", "properties": {}, "type": "Feature"}, {"bbox": [8.495041, 47.367865, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.495664, 47.368062], [8.495551, 47.368046], [8.49544, 47.368023], [8.495333, 47.367992], [8.495231, 47.367956], [8.495133, 47.367913], [8.495041, 47.367865]]], "type": "MultiLineString"}, "id": "1565", "properties": {}, "type": "Feature"}, {"bbox": [8.555427, 47.375278, 8.556583, 47.375932], "geometry": {"coordinates": [[[8.555427, 47.375278], [8.555523, 47.375314], [8.556262, 47.375725], [8.556583, 47.375932]]], "type": "MultiLineString"}, "id": "1567", "properties": {}, "type": "Feature"}, {"bbox": [8.542469, 47.385591, 8.542945, 47.386178], "geometry": {"coordinates": [[[8.542945, 47.385591], [8.542861, 47.385699], [8.542469, 47.386178]]], "type": "MultiLineString"}, "id": "1568", "properties": {}, "type": "Feature"}, {"bbox": [8.539621, 47.397542, 8.540047, 47.397735], "geometry": {"coordinates": [[[8.539621, 47.397542], [8.540047, 47.397735]]], "type": "MultiLineString"}, "id": "1572", "properties": {}, "type": "Feature"}, {"bbox": [8.508217, 47.40109, 8.508793, 47.401407], "geometry": {"coordinates": [[[8.508217, 47.40109], [8.508431, 47.401217], [8.508793, 47.401407]]], "type": "MultiLineString"}, "id": "1573", "properties": {}, "type": "Feature"}, {"bbox": [8.527883, 47.371063, 8.528614, 47.371363], "geometry": {"coordinates": [[[8.528614, 47.371315], [8.528485, 47.371323], [8.528181, 47.371063], [8.528129, 47.371066], [8.527883, 47.371363]]], "type": "MultiLineString"}, "id": "1574", "properties": {}, "type": "Feature"}, {"bbox": [8.556614, 47.35553, 8.55758, 47.355947], "geometry": {"coordinates": [[[8.556614, 47.35553], [8.55675, 47.355541], [8.557484, 47.355912], [8.55758, 47.355947]]], "type": "MultiLineString"}, "id": "1577", "properties": {}, "type": "Feature"}, {"bbox": [8.52723, 47.389317, 8.5279, 47.39051], "geometry": {"coordinates": [[[8.52723, 47.389317], [8.527665, 47.390093], [8.527847, 47.390421], [8.5279, 47.39051]]], "type": "MultiLineString"}, "id": "1578", "properties": {}, "type": "Feature"}, {"bbox": [8.535751, 47.369095, 8.536085, 47.369261], "geometry": {"coordinates": [[[8.536085, 47.369261], [8.535907, 47.369147], [8.535751, 47.369095]]], "type": "MultiLineString"}, "id": "1584", "properties": {}, "type": "Feature"}, {"bbox": [8.512652, 47.396403, 8.512737, 47.397716], "geometry": {"coordinates": [[[8.512675, 47.396403], [8.512737, 47.396932], [8.512693, 47.396992], [8.512652, 47.397027], [8.512675, 47.397716]]], "type": "MultiLineString"}, "id": "1585", "properties": {}, "type": "Feature"}, {"bbox": [8.57327, 47.351457, 8.598877, 47.358162], "geometry": {"coordinates": [[[8.57327, 47.358162], [8.573416, 47.357981], [8.573529, 47.357853], [8.573685, 47.357723], [8.574029, 47.35748], [8.574114, 47.357418], [8.574154, 47.357271], [8.574169, 47.357251], [8.574186, 47.357232], [8.574205, 47.357214], [8.574227, 47.357198], [8.574251, 47.357183], [8.574276, 47.357169], [8.574304, 47.357157], [8.574368, 47.357128], [8.574429, 47.357095], [8.574484, 47.357059], [8.574519, 47.357031], [8.57455, 47.357001], [8.574577, 47.35697], [8.5746, 47.356937], [8.574755, 47.356711], [8.574777, 47.356686], [8.574803, 47.356662], [8.574831, 47.356639], [8.574863, 47.356619], [8.574897, 47.3566], [8.574932, 47.356588], [8.574966, 47.356573], [8.574997, 47.356557], [8.575026, 47.356539], [8.575053, 47.356519], [8.575077, 47.356497], [8.575098, 47.356474], [8.575115, 47.35645], [8.57514, 47.356436], [8.575164, 47.356421], [8.575185, 47.356405], [8.575203, 47.356387], [8.57522, 47.356368], [8.575234, 47.356349], [8.575245, 47.356328], [8.575253, 47.356307], [8.575303, 47.35612], [8.575305, 47.356058], [8.575299, 47.355997], [8.575284, 47.355936], [8.57527, 47.355889], [8.575263, 47.355841], [8.575262, 47.355792], [8.575268, 47.355744], [8.57528, 47.355696], [8.57529, 47.355682], [8.575301, 47.355668], [8.575314, 47.355655], [8.575328, 47.355642], [8.575344, 47.355631], [8.575362, 47.355621], [8.57538, 47.355611], [8.5754, 47.355603], [8.575421, 47.355596], [8.575443, 47.355591], [8.575465, 47.355586], [8.575488, 47.355583], [8.575511, 47.355581], [8.575534, 47.355581], [8.575557, 47.355582], [8.575618, 47.355588], [8.575679, 47.35559], [8.57574, 47.355589], [8.5758, 47.355584], [8.57586, 47.355575], [8.576107, 47.355546], [8.576116, 47.355545], [8.576125, 47.355544], [8.576133, 47.355542], [8.576141, 47.355539], [8.576149, 47.355537], [8.576157, 47.355533], [8.576164, 47.35553], [8.57617, 47.355526], [8.576176, 47.355521], [8.576182, 47.355516], [8.576187, 47.355511], [8.576191, 47.355506], [8.57622, 47.355425], [8.576259, 47.355378], [8.576305, 47.35526], [8.576346, 47.355177], [8.576357, 47.355158], [8.57637, 47.355141], [8.576385, 47.355124], [8.576402, 47.355108], [8.576421, 47.355094], [8.576442, 47.35508], [8.576465, 47.355068], [8.576467, 47.355067], [8.576469, 47.355067], [8.57647, 47.355066], [8.576472, 47.355066], [8.576474, 47.355066], [8.576476, 47.355065], [8.576478, 47.355065], [8.57648, 47.355065], [8.576482, 47.355066], [8.576484, 47.355066], [8.576485, 47.355066], [8.576487, 47.355067], [8.576513, 47.355074], [8.576528, 47.355079], [8.576543, 47.355084], [8.576558, 47.355089], [8.576644, 47.35512], [8.576664, 47.355127], [8.576685, 47.355132], [8.576706, 47.355136], [8.576724, 47.355139], [8.576741, 47.355142], [8.576758, 47.355145], [8.57678, 47.355148], [8.576803, 47.35515], [8.576825, 47.35515], [8.576848, 47.355149], [8.57687, 47.355147], [8.576892, 47.355143], [8.576914, 47.355138], [8.577044, 47.355104], [8.577068, 47.355097], [8.57709, 47.355089], [8.577112, 47.355081], [8.577178, 47.355053], [8.57719, 47.355048], [8.577202, 47.355042], [8.577214, 47.355036], [8.577284, 47.354997], [8.577308, 47.354984], [8.577334, 47.354971], [8.57736, 47.35496], [8.577376, 47.354953], [8.577393, 47.354948], [8.57741, 47.354944], [8.577427, 47.354941], [8.577445, 47.354938], [8.577463, 47.354937], [8.577482, 47.354937], [8.5775, 47.354938], [8.5775, 47.354938], [8.577516, 47.35494], [8.577532, 47.354942], [8.577547, 47.354945], [8.577563, 47.35495], [8.577563, 47.35495], [8.577634, 47.354972], [8.577671, 47.354984], [8.57774, 47.355006], [8.57774, 47.355006], [8.577764, 47.355013], [8.57779, 47.355018], [8.577816, 47.355021], [8.577841, 47.355024], [8.577866, 47.355025], [8.577892, 47.355025], [8.577917, 47.355023], [8.577942, 47.35502], [8.577964, 47.355017], [8.577986, 47.355012], [8.578007, 47.355007], [8.578021, 47.355002], [8.578034, 47.354997], [8.578047, 47.354991], [8.578059, 47.354984], [8.57807, 47.354977], [8.578104, 47.354951], [8.578138, 47.354924], [8.57817, 47.354897], [8.578183, 47.354884], [8.578195, 47.354871], [8.578205, 47.354857], [8.578214, 47.354843], [8.578221, 47.354828], [8.578233, 47.354798], [8.578234, 47.354795], [8.578242, 47.35477], [8.578247, 47.354745], [8.578248, 47.35472], [8.578246, 47.354695], [8.578245, 47.354692], [8.578245, 47.35469], [8.578245, 47.354688], [8.578245, 47.354677], [8.578246, 47.354667], [8.578248, 47.354656], [8.578252, 47.354646], [8.578252, 47.354646], [8.578252, 47.354646], [8.578262, 47.354624], [8.578275, 47.354604], [8.57829, 47.354584], [8.578308, 47.354565], [8.578319, 47.354553], [8.578329, 47.35454], [8.578337, 47.354527], [8.57837, 47.354468], [8.578371, 47.354465], [8.578373, 47.354463], [8.578374, 47.354461], [8.578377, 47.35446], [8.578379, 47.354458], [8.578381, 47.354456], [8.578384, 47.354455], [8.578387, 47.354454], [8.57839, 47.354453], [8.578393, 47.354452], [8.578396, 47.354451], [8.578396, 47.354451], [8.578429, 47.354445], [8.578462, 47.35444], [8.578495, 47.354435], [8.578565, 47.354426], [8.578635, 47.354415], [8.578704, 47.354404], [8.578726, 47.354401], [8.578749, 47.354397], [8.578771, 47.354394], [8.578801, 47.35439], [8.578831, 47.354385], [8.578861, 47.354379], [8.579011, 47.354359], [8.579091, 47.354341], [8.579091, 47.354341], [8.579148, 47.354322], [8.579148, 47.354322], [8.579166, 47.354315], [8.579166, 47.354315], [8.579217, 47.354293], [8.579268, 47.35427], [8.579318, 47.354246], [8.579336, 47.354237], [8.579354, 47.354229], [8.579372, 47.35422], [8.579429, 47.35419], [8.579482, 47.354158], [8.579531, 47.354122], [8.579552, 47.354104], [8.579571, 47.354085], [8.579587, 47.354065], [8.579618, 47.354019], [8.579624, 47.354011], [8.57963, 47.354002], [8.579636, 47.353993], [8.579641, 47.353984], [8.579645, 47.353974], [8.579649, 47.353964], [8.579651, 47.353953], [8.579651, 47.353943], [8.579653, 47.353927], [8.579657, 47.35391], [8.579663, 47.353894], [8.579671, 47.353879], [8.579677, 47.353867], [8.579683, 47.353856], [8.579688, 47.353844], [8.579697, 47.353829], [8.579708, 47.353813], [8.57972, 47.353799], [8.579734, 47.353785], [8.57975, 47.353772], [8.579767, 47.35376], [8.579777, 47.353754], [8.579787, 47.353749], [8.579798, 47.353745], [8.57981, 47.353741], [8.579821, 47.353738], [8.579834, 47.353735], [8.579846, 47.353734], [8.579859, 47.353733], [8.579871, 47.353733], [8.579892, 47.353736], [8.579913, 47.353739], [8.579935, 47.353741], [8.579989, 47.353747], [8.580041, 47.353756], [8.580093, 47.353768], [8.58011, 47.353772], [8.580127, 47.353776], [8.580145, 47.353779], [8.580162, 47.35378], [8.580181, 47.353781], [8.580199, 47.35378], [8.580216, 47.353778], [8.580233, 47.353776], [8.580249, 47.353773], [8.580265, 47.35377], [8.580277, 47.353768], [8.58029, 47.353766], [8.580302, 47.353764], [8.580324, 47.35376], [8.580347, 47.353757], [8.580369, 47.353754], [8.580396, 47.35375], [8.580421, 47.353745], [8.580446, 47.353739], [8.580471, 47.353731], [8.580514, 47.353715], [8.580555, 47.353697], [8.580594, 47.353677], [8.58061, 47.353669], [8.580627, 47.353662], [8.580645, 47.353657], [8.580663, 47.353652], [8.580685, 47.353648], [8.580707, 47.353643], [8.580729, 47.353639], [8.580747, 47.353635], [8.580764, 47.353629], [8.580781, 47.353623], [8.580796, 47.353616], [8.58081, 47.353608], [8.580832, 47.353595], [8.580855, 47.353584], [8.580879, 47.353574], [8.580905, 47.353565], [8.580912, 47.353563], [8.580919, 47.353562], [8.580926, 47.353561], [8.580933, 47.35356], [8.58094, 47.35356], [8.580948, 47.35356], [8.580955, 47.353561], [8.580962, 47.353562], [8.580969, 47.353563], [8.580976, 47.353565], [8.580983, 47.353568], [8.580989, 47.35357], [8.580995, 47.353573], [8.581, 47.353576], [8.581279, 47.353771], [8.581302, 47.353786], [8.581327, 47.3538], [8.581353, 47.353812], [8.581381, 47.353823], [8.581409, 47.353833], [8.581454, 47.353846], [8.58147, 47.35385], [8.581488, 47.353853], [8.581505, 47.353856], [8.581523, 47.353857], [8.581541, 47.353857], [8.581559, 47.353857], [8.581577, 47.353855], [8.581594, 47.353852], [8.581611, 47.353848], [8.581628, 47.353844], [8.581643, 47.353838], [8.581672, 47.353828], [8.5817, 47.353818], [8.58173, 47.35381], [8.581748, 47.353804], [8.581766, 47.353797], [8.581782, 47.353789], [8.581798, 47.353781], [8.581812, 47.353771], [8.581826, 47.35376], [8.581837, 47.353749], [8.581847, 47.353737], [8.581856, 47.353725], [8.581863, 47.353712], [8.581868, 47.353698], [8.581871, 47.353685], [8.581873, 47.353671], [8.581873, 47.353657], [8.581872, 47.353643], [8.581872, 47.353629], [8.581873, 47.353615], [8.581874, 47.353607], [8.581877, 47.353599], [8.58188, 47.353592], [8.581884, 47.353585], [8.58189, 47.353578], [8.581896, 47.353571], [8.581903, 47.353565], [8.581919, 47.353553], [8.581936, 47.353541], [8.581956, 47.353531], [8.581976, 47.353523], [8.581997, 47.353515], [8.58203, 47.353507], [8.582064, 47.353501], [8.582099, 47.353497], [8.582134, 47.353495], [8.582169, 47.353495], [8.582204, 47.353497], [8.582239, 47.353501], [8.582273, 47.353507], [8.582293, 47.353509], [8.582314, 47.353511], [8.582334, 47.353512], [8.582355, 47.353511], [8.582375, 47.353509], [8.582396, 47.353506], [8.582415, 47.353502], [8.582435, 47.353497], [8.58259, 47.353444], [8.582637, 47.353418], [8.582681, 47.35339], [8.582722, 47.35336], [8.582775, 47.353319], [8.582822, 47.353275], [8.582862, 47.353228], [8.582896, 47.353178], [8.582914, 47.353153], [8.582934, 47.353128], [8.582958, 47.353105], [8.582984, 47.353083], [8.583013, 47.353063], [8.583048, 47.353042], [8.583085, 47.353022], [8.583139, 47.352994], [8.583166, 47.352982], [8.583194, 47.352971], [8.583224, 47.352962], [8.583254, 47.352955], [8.583286, 47.352949], [8.583317, 47.352945], [8.58339, 47.352943], [8.583419, 47.352942], [8.583509, 47.352952], [8.583583, 47.352951], [8.583623, 47.352955], [8.583662, 47.352959], [8.583701, 47.352965], [8.583735, 47.352972], [8.58377, 47.352978], [8.583805, 47.352984], [8.583842, 47.352988], [8.583879, 47.352992], [8.583915, 47.352997], [8.583954, 47.353003], [8.583992, 47.353011], [8.584029, 47.353022], [8.584064, 47.353034], [8.584091, 47.353046], [8.584117, 47.353059], [8.584142, 47.353073], [8.584152, 47.353079], [8.584164, 47.353084], [8.584176, 47.353088], [8.584189, 47.353091], [8.584202, 47.353094], [8.584215, 47.353095], [8.584228, 47.353096], [8.584242, 47.353096], [8.584305, 47.353095], [8.584592, 47.353098], [8.5846, 47.353098], [8.584608, 47.353098], [8.584616, 47.353098], [8.584624, 47.353097], [8.584631, 47.353096], [8.584639, 47.353094], [8.584646, 47.353092], [8.584653, 47.35309], [8.58466, 47.353087], [8.584699, 47.35307], [8.584708, 47.353066], [8.584717, 47.353061], [8.584725, 47.353055], [8.584733, 47.353049], [8.584739, 47.353043], [8.584767, 47.353007], [8.584771, 47.352998], [8.584776, 47.352988], [8.584782, 47.35298], [8.584789, 47.352971], [8.584798, 47.352964], [8.584807, 47.352956], [8.584817, 47.352949], [8.584828, 47.352943], [8.58502, 47.352846], [8.58503, 47.352841], [8.585041, 47.352837], [8.585052, 47.352834], [8.585063, 47.352831], [8.585074, 47.352829], [8.585086, 47.352827], [8.585098, 47.352826], [8.58511, 47.352826], [8.585117, 47.352826], [8.585123, 47.352825], [8.585129, 47.352824], [8.585135, 47.352822], [8.585141, 47.35282], [8.585147, 47.352818], [8.585152, 47.352815], [8.585157, 47.352813], [8.585162, 47.352809], [8.585166, 47.352806], [8.58517, 47.352802], [8.585185, 47.35278], [8.585203, 47.352758], [8.585224, 47.352737], [8.585248, 47.352718], [8.585273, 47.352701], [8.585302, 47.352684], [8.585332, 47.35267], [8.585349, 47.352661], [8.585367, 47.352653], [8.585386, 47.352646], [8.585406, 47.35264], [8.585426, 47.352636], [8.585447, 47.352632], [8.585469, 47.35263], [8.58549, 47.352629], [8.585575, 47.352626], [8.585588, 47.352628], [8.585601, 47.352631], [8.585614, 47.352634], [8.585626, 47.352639], [8.585638, 47.352643], [8.585649, 47.352649], [8.585659, 47.352655], [8.585668, 47.352662], [8.585676, 47.352669], [8.585684, 47.352677], [8.58569, 47.352685], [8.585695, 47.352693], [8.5857, 47.352702], [8.585731, 47.352785], [8.585741, 47.352802], [8.585754, 47.352817], [8.585768, 47.352832], [8.585783, 47.352846], [8.585801, 47.352859], [8.58582, 47.352871], [8.58584, 47.352882], [8.585862, 47.352892], [8.585966, 47.352934], [8.585991, 47.352945], [8.586018, 47.352955], [8.586046, 47.352963], [8.586075, 47.352969], [8.586104, 47.352974], [8.586135, 47.352976], [8.586165, 47.352977], [8.586663, 47.352966], [8.586896, 47.352934], [8.586985, 47.352923], [8.587074, 47.352908], [8.587161, 47.352891], [8.587199, 47.352883], [8.587239, 47.352878], [8.587279, 47.352875], [8.587319, 47.352875], [8.587359, 47.352876], [8.587383, 47.352878], [8.587406, 47.352882], [8.587429, 47.352887], [8.587451, 47.352894], [8.587473, 47.352901], [8.587518, 47.352921], [8.58756, 47.352943], [8.587601, 47.352967], [8.587678, 47.353011], [8.58776, 47.353051], [8.587849, 47.353085], [8.587868, 47.353091], [8.587887, 47.353095], [8.587908, 47.353099], [8.587928, 47.353101], [8.587949, 47.353101], [8.587949, 47.353101], [8.587949, 47.353101], [8.587981, 47.353101], [8.588013, 47.353099], [8.588045, 47.353097], [8.588077, 47.353093], [8.588108, 47.353087], [8.588139, 47.35308], [8.588168, 47.35307], [8.588196, 47.353059], [8.588222, 47.353046], [8.588246, 47.353031], [8.588288, 47.353005], [8.588332, 47.352979], [8.588376, 47.352955], [8.588392, 47.352948], [8.588408, 47.352941], [8.588425, 47.352936], [8.588443, 47.352931], [8.588461, 47.352928], [8.588479, 47.352926], [8.588498, 47.352924], [8.588517, 47.352924], [8.588551, 47.352925], [8.588584, 47.352927], [8.588618, 47.35293], [8.588642, 47.352931], [8.588667, 47.352931], [8.588692, 47.35293], [8.588717, 47.352927], [8.588741, 47.352924], [8.588791, 47.352914], [8.588841, 47.352902], [8.588889, 47.352889], [8.588909, 47.352884], [8.58893, 47.35288], [8.588951, 47.352878], [8.588972, 47.352877], [8.588994, 47.352876], [8.589008, 47.352877], [8.589022, 47.352878], [8.589036, 47.352878], [8.589067, 47.352881], [8.589099, 47.352884], [8.58913, 47.352888], [8.589218, 47.352899], [8.589306, 47.352909], [8.589394, 47.352918], [8.589471, 47.352926], [8.589548, 47.352934], [8.589624, 47.352943], [8.589636, 47.352944], [8.589648, 47.352944], [8.58966, 47.352944], [8.589672, 47.352943], [8.589684, 47.352942], [8.589696, 47.352939], [8.589707, 47.352937], [8.589718, 47.352933], [8.589728, 47.352929], [8.589758, 47.352917], [8.58979, 47.352907], [8.589822, 47.352899], [8.589859, 47.352893], [8.589897, 47.352888], [8.589935, 47.352885], [8.589969, 47.352884], [8.590003, 47.352884], [8.590037, 47.352884], [8.590061, 47.352885], [8.590086, 47.352886], [8.59011, 47.352888], [8.59011, 47.352888], [8.590121, 47.352888], [8.590132, 47.352887], [8.590142, 47.352886], [8.590153, 47.352885], [8.590163, 47.352882], [8.590173, 47.352879], [8.590189, 47.352874], [8.590205, 47.352868], [8.59022, 47.352862], [8.590243, 47.352853], [8.590267, 47.352844], [8.590291, 47.352836], [8.590306, 47.352831], [8.590322, 47.352826], [8.590338, 47.352821], [8.590371, 47.352822], [8.590404, 47.352825], [8.590436, 47.352829], [8.590468, 47.352836], [8.590499, 47.352844], [8.590529, 47.352854], [8.590537, 47.352857], [8.590545, 47.352861], [8.590552, 47.352865], [8.590559, 47.352869], [8.590565, 47.352874], [8.590571, 47.35288], [8.590576, 47.352885], [8.59058, 47.352891], [8.590584, 47.352897], [8.590586, 47.352904], [8.590588, 47.35291], [8.590615, 47.352966], [8.590644, 47.353021], [8.590673, 47.353076], [8.590682, 47.35309], [8.590692, 47.353104], [8.590704, 47.353118], [8.590719, 47.353131], [8.590735, 47.353144], [8.590752, 47.353155], [8.590771, 47.353165], [8.590792, 47.353174], [8.590851, 47.353196], [8.590911, 47.353218], [8.590972, 47.353239], [8.591006, 47.353251], [8.591041, 47.353261], [8.591076, 47.35327], [8.591106, 47.353277], [8.591136, 47.353281], [8.591167, 47.353284], [8.591198, 47.353285], [8.59123, 47.353285], [8.591253, 47.353283], [8.591277, 47.35328], [8.5913, 47.353275], [8.591322, 47.35327], [8.591343, 47.353263], [8.591364, 47.353254], [8.591405, 47.353234], [8.591444, 47.35321], [8.591478, 47.353184], [8.591513, 47.353154], [8.591543, 47.353122], [8.59157, 47.353088], [8.591589, 47.353065], [8.59161, 47.353043], [8.591633, 47.353023], [8.591656, 47.353005], [8.59168, 47.352988], [8.591704, 47.352972], [8.591756, 47.35294], [8.591808, 47.35291], [8.591862, 47.352881], [8.591887, 47.352867], [8.59191, 47.352851], [8.591931, 47.352835], [8.59195, 47.352817], [8.591977, 47.352789], [8.592, 47.35276], [8.592021, 47.352729], [8.592038, 47.352701], [8.592054, 47.352673], [8.592069, 47.352644], [8.592103, 47.352581], [8.592137, 47.352518], [8.592172, 47.352455], [8.592176, 47.35245], [8.592179, 47.352445], [8.592184, 47.352441], [8.592188, 47.352437], [8.592194, 47.352433], [8.5922, 47.352429], [8.592206, 47.352426], [8.592212, 47.352423], [8.592233, 47.352414], [8.592254, 47.352406], [8.592276, 47.352398], [8.592346, 47.352371], [8.592416, 47.352344], [8.592486, 47.352317], [8.592511, 47.352308], [8.592537, 47.352301], [8.592565, 47.352296], [8.592593, 47.352292], [8.592621, 47.35229], [8.592648, 47.352289], [8.592675, 47.352287], [8.592702, 47.352284], [8.592735, 47.352279], [8.592767, 47.352273], [8.592799, 47.352267], [8.59283, 47.35226], [8.592862, 47.352255], [8.592894, 47.352251], [8.592906, 47.352249], [8.592917, 47.352248], [8.592929, 47.352247], [8.593002, 47.352245], [8.593076, 47.352244], [8.593149, 47.352246], [8.59324, 47.35224], [8.593331, 47.352231], [8.59342, 47.352219], [8.593462, 47.352209], [8.593503, 47.352198], [8.593542, 47.352183], [8.593579, 47.352167], [8.593614, 47.352148], [8.593771, 47.352047], [8.593794, 47.352031], [8.593816, 47.352013], [8.593835, 47.351995], [8.593852, 47.351975], [8.593867, 47.351955], [8.593879, 47.351934], [8.593887, 47.351919], [8.593898, 47.351904], [8.59391, 47.35189], [8.593924, 47.351878], [8.593961, 47.351849], [8.594002, 47.351822], [8.594044, 47.351797], [8.594058, 47.35179], [8.594074, 47.351783], [8.594089, 47.351778], [8.594106, 47.351774], [8.594123, 47.35177], [8.59414, 47.351768], [8.594157, 47.351767], [8.594175, 47.351766], [8.594193, 47.351767], [8.594229, 47.35177], [8.594265, 47.351776], [8.5943, 47.351783], [8.594352, 47.351794], [8.594406, 47.351804], [8.59446, 47.351812], [8.594512, 47.351817], [8.594564, 47.351819], [8.594617, 47.351819], [8.594669, 47.351815], [8.594721, 47.351809], [8.594836, 47.351792], [8.594952, 47.351777], [8.595069, 47.351764], [8.595078, 47.351763], [8.595088, 47.351763], [8.595098, 47.351764], [8.595107, 47.351765], [8.595116, 47.351766], [8.595126, 47.351768], [8.595134, 47.351771], [8.595143, 47.351775], [8.59518, 47.351791], [8.595217, 47.351808], [8.595253, 47.351825], [8.59528, 47.351837], [8.595308, 47.351848], [8.595336, 47.351859], [8.59536, 47.351868], [8.595383, 47.351878], [8.595405, 47.35189], [8.595423, 47.351899], [8.595442, 47.351909], [8.595461, 47.351918], [8.595494, 47.351932], [8.595529, 47.351944], [8.595565, 47.351955], [8.595579, 47.351959], [8.595593, 47.351961], [8.595607, 47.351963], [8.595621, 47.351964], [8.595636, 47.351963], [8.59565, 47.351963], [8.595664, 47.351961], [8.595678, 47.351958], [8.595723, 47.351947], [8.595766, 47.351934], [8.595808, 47.351918], [8.595859, 47.351896], [8.59591, 47.351872], [8.595959, 47.351847], [8.595969, 47.351841], [8.595978, 47.351834], [8.595987, 47.351827], [8.595994, 47.35182], [8.595999, 47.351815], [8.596005, 47.35181], [8.596012, 47.351805], [8.596019, 47.351801], [8.596026, 47.351797], [8.596034, 47.351794], [8.596042, 47.351791], [8.596051, 47.351789], [8.596069, 47.351785], [8.596087, 47.351782], [8.596106, 47.351781], [8.596181, 47.351778], [8.596196, 47.351778], [8.596211, 47.351779], [8.596227, 47.351779], [8.596267, 47.351782], [8.596308, 47.351784], [8.596349, 47.351787], [8.596364, 47.351788], [8.596378, 47.351787], [8.596393, 47.351786], [8.596407, 47.351784], [8.596421, 47.351781], [8.596481, 47.351766], [8.596539, 47.351749], [8.596596, 47.351729], [8.596631, 47.351715], [8.596665, 47.3517], [8.596697, 47.351683], [8.596707, 47.351677], [8.596898, 47.351566], [8.596912, 47.351558], [8.596926, 47.351552], [8.596942, 47.351546], [8.596958, 47.351542], [8.596974, 47.351538], [8.596991, 47.351535], [8.597008, 47.351533], [8.597025, 47.351532], [8.597025, 47.351532], [8.597025, 47.351532], [8.597085, 47.351533], [8.597145, 47.351537], [8.597204, 47.351543], [8.597274, 47.351554], [8.597344, 47.351567], [8.597413, 47.351583], [8.597512, 47.351607], [8.597611, 47.351632], [8.59771, 47.351658], [8.597761, 47.351671], [8.597812, 47.351685], [8.597863, 47.351698], [8.59792, 47.351711], [8.597979, 47.351722], [8.598038, 47.351729], [8.598065, 47.351731], [8.598092, 47.351731], [8.598119, 47.35173], [8.598146, 47.351728], [8.598172, 47.351724], [8.598198, 47.351718], [8.598223, 47.351711], [8.598256, 47.351701], [8.598289, 47.351691], [8.598322, 47.351681], [8.598368, 47.351666], [8.598411, 47.351648], [8.598453, 47.351628], [8.598492, 47.351606], [8.598581, 47.351559], [8.598614, 47.351546], [8.598649, 47.351534], [8.598685, 47.351525], [8.598723, 47.351519], [8.598851, 47.351499], [8.598877, 47.351457]]], "type": "MultiLineString"}, "id": "1588", "properties": {}, "type": "Feature"}, {"bbox": [8.527155, 47.378355, 8.52718, 47.378388], "geometry": {"coordinates": [[[8.52718, 47.378388], [8.527155, 47.378355]]], "type": "MultiLineString"}, "id": "1589", "properties": {}, "type": "Feature"}, {"bbox": [8.551669, 47.413466, 8.552307, 47.41372], "geometry": {"coordinates": [[[8.552302, 47.41372], [8.552307, 47.413472], [8.551673, 47.413466], [8.551669, 47.413714], [8.552302, 47.41372]]], "type": "MultiLineString"}, "id": "1590", "properties": {}, "type": "Feature"}, {"bbox": [8.543081, 47.370492, 8.544306, 47.370578], "geometry": {"coordinates": [[[8.543081, 47.370569], [8.543739, 47.370578], [8.543901, 47.370492], [8.544306, 47.370518]]], "type": "MultiLineString"}, "id": "1594", "properties": {}, "type": "Feature"}, {"bbox": [8.542562, 47.383222, 8.543421, 47.38332], "geometry": {"coordinates": [[[8.543421, 47.383295], [8.54331, 47.38332], [8.542562, 47.383222]]], "type": "MultiLineString"}, "id": "1599", "properties": {}, "type": "Feature"}, {"bbox": [8.525799, 47.346123, 8.526855, 47.346936], "geometry": {"coordinates": [[[8.525799, 47.346123], [8.525984, 47.34623], [8.526289, 47.346378], [8.526156, 47.346555], [8.526569, 47.346775], [8.526855, 47.346936]]], "type": "MultiLineString"}, "id": "1600", "properties": {}, "type": "Feature"}, {"bbox": [8.508161, 47.406205, 8.508263, 47.40635], "geometry": {"coordinates": [[[8.508161, 47.406205], [8.508263, 47.40635]]], "type": "MultiLineString"}, "id": "1601", "properties": {}, "type": "Feature"}, {"bbox": [8.57761, 47.360619, 8.59428, 47.362572], "geometry": {"coordinates": [[[8.57761, 47.362394], [8.578232, 47.362572], [8.578418, 47.36239], [8.578524, 47.362315], [8.579003, 47.362106], [8.579268, 47.361941], [8.579401, 47.361884], [8.579411, 47.361877], [8.579469, 47.361853], [8.579492, 47.361844], [8.579516, 47.361836], [8.579541, 47.361829], [8.579603, 47.361814], [8.579665, 47.361799], [8.579728, 47.361786], [8.579764, 47.361779], [8.5798, 47.361771], [8.579836, 47.361763], [8.579843, 47.361761], [8.57985, 47.36176], [8.579857, 47.361758], [8.580005, 47.361724], [8.580063, 47.361709], [8.580119, 47.361691], [8.580172, 47.361671], [8.580217, 47.361653], [8.580263, 47.361636], [8.58031, 47.36162], [8.580327, 47.361615], [8.580345, 47.36161], [8.580362, 47.361606], [8.580441, 47.361589], [8.58052, 47.361572], [8.580598, 47.361555], [8.58064, 47.361546], [8.580683, 47.361537], [8.580725, 47.361529], [8.580823, 47.361515], [8.580922, 47.361506], [8.581021, 47.361504], [8.581102, 47.361503], [8.581183, 47.3615], [8.581264, 47.361494], [8.581309, 47.361489], [8.581355, 47.361482], [8.581399, 47.361472], [8.581434, 47.361464], [8.58147, 47.361458], [8.581506, 47.361454], [8.581543, 47.361452], [8.58158, 47.361452], [8.581627, 47.361455], [8.581675, 47.361461], [8.581721, 47.361468], [8.581767, 47.361479], [8.581847, 47.3615], [8.581926, 47.361524], [8.582003, 47.361549], [8.582139, 47.36157], [8.582164, 47.361572], [8.58219, 47.361573], [8.582216, 47.361574], [8.582243, 47.361576], [8.58227, 47.361579], [8.582296, 47.361583], [8.582329, 47.361588], [8.582362, 47.361592], [8.582395, 47.361595], [8.582398, 47.361595], [8.582401, 47.361595], [8.582404, 47.361596], [8.582416, 47.361597], [8.582428, 47.361598], [8.58244, 47.3616], [8.582491, 47.361609], [8.582542, 47.361617], [8.582593, 47.361625], [8.582633, 47.361631], [8.582673, 47.361636], [8.582713, 47.36164], [8.582789, 47.361647], [8.582865, 47.361653], [8.582942, 47.36166], [8.58297, 47.361663], [8.582999, 47.361668], [8.583026, 47.361674], [8.583053, 47.361682], [8.583079, 47.361692], [8.583129, 47.361713], [8.583179, 47.361735], [8.583228, 47.361758], [8.58324, 47.361763], [8.583252, 47.361768], [8.583265, 47.361771], [8.583278, 47.361774], [8.583291, 47.361776], [8.583305, 47.361777], [8.583318, 47.361777], [8.583332, 47.361776], [8.583346, 47.361775], [8.583452, 47.36176], [8.583558, 47.361745], [8.583664, 47.361731], [8.583685, 47.361729], [8.583707, 47.361728], [8.583728, 47.361728], [8.583728, 47.361728], [8.583728, 47.361728], [8.58377, 47.36173], [8.583841, 47.36173], [8.583867, 47.36173], [8.583892, 47.36173], [8.583918, 47.361731], [8.583931, 47.361732], [8.583943, 47.361734], [8.583956, 47.361737], [8.583968, 47.36174], [8.583979, 47.361744], [8.58399, 47.361749], [8.584, 47.361754], [8.584009, 47.36176], [8.584018, 47.361766], [8.584026, 47.361773], [8.584033, 47.361781], [8.584039, 47.361789], [8.584046, 47.361797], [8.584054, 47.361804], [8.584064, 47.361811], [8.584074, 47.361817], [8.584084, 47.361822], [8.584096, 47.361827], [8.58415, 47.361847], [8.584205, 47.361864], [8.584261, 47.36188], [8.584539, 47.361935], [8.584747, 47.361926], [8.58491, 47.361919], [8.584987, 47.361913], [8.585063, 47.361905], [8.585138, 47.361896], [8.585229, 47.361883], [8.585319, 47.361868], [8.585409, 47.361852], [8.585567, 47.361822], [8.585724, 47.361789], [8.58588, 47.361755], [8.586002, 47.361725], [8.586122, 47.36169], [8.58624, 47.361652], [8.586267, 47.361643], [8.586296, 47.361636], [8.586326, 47.361631], [8.586356, 47.361627], [8.586387, 47.361625], [8.586447, 47.361622], [8.586507, 47.361622], [8.586567, 47.361625], [8.586622, 47.361634], [8.586676, 47.361647], [8.586729, 47.361661], [8.586794, 47.361687], [8.586862, 47.36171], [8.586931, 47.36173], [8.586959, 47.361738], [8.586988, 47.361743], [8.587018, 47.361747], [8.587048, 47.36175], [8.587078, 47.36175], [8.587108, 47.361749], [8.587393, 47.361728], [8.587403, 47.361728], [8.587413, 47.361728], [8.587423, 47.361729], [8.587433, 47.36173], [8.587442, 47.361732], [8.587452, 47.361735], [8.587461, 47.361738], [8.587469, 47.361742], [8.587477, 47.361746], [8.587539, 47.361771], [8.587639, 47.361826], [8.587704, 47.36186], [8.587773, 47.361888], [8.587846, 47.361912], [8.588039, 47.36197], [8.588189, 47.362027], [8.588225, 47.362042], [8.58826, 47.362058], [8.588293, 47.362076], [8.588328, 47.362096], [8.588364, 47.362114], [8.588403, 47.362129], [8.588444, 47.362143], [8.588486, 47.362154], [8.588529, 47.362162], [8.588574, 47.362168], [8.588795, 47.362186], [8.588812, 47.362188], [8.588829, 47.362188], [8.588846, 47.362188], [8.588862, 47.362186], [8.588879, 47.362184], [8.588895, 47.36218], [8.58891, 47.362176], [8.588925, 47.36217], [8.588939, 47.362164], [8.588994, 47.362142], [8.58905, 47.362121], [8.589107, 47.362103], [8.589172, 47.362084], [8.589238, 47.362067], [8.589305, 47.362052], [8.589385, 47.362031], [8.589464, 47.362007], [8.589541, 47.361981], [8.589604, 47.361962], [8.589668, 47.361946], [8.589733, 47.361932], [8.589756, 47.361927], [8.589779, 47.361923], [8.589802, 47.361921], [8.589826, 47.361919], [8.58985, 47.36192], [8.589874, 47.361921], [8.589897, 47.361924], [8.58992, 47.361929], [8.589942, 47.361934], [8.589964, 47.361941], [8.590015, 47.361959], [8.590066, 47.361977], [8.590116, 47.361996], [8.590146, 47.362009], [8.590177, 47.36202], [8.590209, 47.362029], [8.590242, 47.362036], [8.590276, 47.362042], [8.590359, 47.362063], [8.590439, 47.362087], [8.590515, 47.362117], [8.590588, 47.36215], [8.590611, 47.362159], [8.590634, 47.362167], [8.590659, 47.362173], [8.590684, 47.362178], [8.590709, 47.362182], [8.590735, 47.362184], [8.590762, 47.362184], [8.590788, 47.362183], [8.590813, 47.36218], [8.590839, 47.362176], [8.590864, 47.36217], [8.590887, 47.362163], [8.590915, 47.362153], [8.590943, 47.362146], [8.590972, 47.36214], [8.591002, 47.362135], [8.591032, 47.362133], [8.591063, 47.362132], [8.591093, 47.362133], [8.591124, 47.362135], [8.59117, 47.362137], [8.591217, 47.362137], [8.591263, 47.362133], [8.591309, 47.362127], [8.591354, 47.362118], [8.591398, 47.362107], [8.59144, 47.362093], [8.59148, 47.362076], [8.591501, 47.362065], [8.591524, 47.362055], [8.591549, 47.362047], [8.591574, 47.36204], [8.5916, 47.362034], [8.591633, 47.362028], [8.591665, 47.362019], [8.591696, 47.362009], [8.591726, 47.361997], [8.591754, 47.361983], [8.59178, 47.361968], [8.591804, 47.361951], [8.591826, 47.361933], [8.591846, 47.361913], [8.591863, 47.361893], [8.591877, 47.361872], [8.591911, 47.361824], [8.591943, 47.361777], [8.591975, 47.361729], [8.592002, 47.361696], [8.592033, 47.361664], [8.592068, 47.361635], [8.592106, 47.361607], [8.592147, 47.361582], [8.592223, 47.361539], [8.592295, 47.361494], [8.592366, 47.361447], [8.592383, 47.361435], [8.592398, 47.361421], [8.592411, 47.361406], [8.592423, 47.361391], [8.592433, 47.361375], [8.59244, 47.361359], [8.592446, 47.361342], [8.592449, 47.361325], [8.592502, 47.361239], [8.592548, 47.361217], [8.592596, 47.361198], [8.592647, 47.361182], [8.592837, 47.361129], [8.592921, 47.361094], [8.592975, 47.361068], [8.59301, 47.361052], [8.593278, 47.360904], [8.593369, 47.360855], [8.593455, 47.360801], [8.593593, 47.360718], [8.593636, 47.360695], [8.593682, 47.360675], [8.593731, 47.360658], [8.593782, 47.360644], [8.593834, 47.360633], [8.593888, 47.360625], [8.593942, 47.360621], [8.593997, 47.360619], [8.594052, 47.360622], [8.59428, 47.360645]]], "type": "MultiLineString"}, "id": "1604", "properties": {}, "type": "Feature"}, {"bbox": [8.532217, 47.34071, 8.532453, 47.341449], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.532379, 47.340789], [8.532217, 47.341449]]], "type": "MultiLineString"}, "id": "1608", "properties": {}, "type": "Feature"}, {"bbox": [8.538956, 47.407437, 8.539474, 47.407597], "geometry": {"coordinates": [[[8.538956, 47.407437], [8.539474, 47.407597]]], "type": "MultiLineString"}, "id": "1609", "properties": {}, "type": "Feature"}, {"bbox": [8.56442, 47.366586, 8.565946, 47.367069], "geometry": {"coordinates": [[[8.56442, 47.366586], [8.564865, 47.366807], [8.564948, 47.366827], [8.565092, 47.366862], [8.565946, 47.367069]]], "type": "MultiLineString"}, "id": "1614", "properties": {}, "type": "Feature"}, {"bbox": [8.474729, 47.394196, 8.513107, 47.403533], "geometry": {"coordinates": [[[8.513107, 47.394196], [8.512667, 47.394246], [8.512439, 47.394273], [8.512169, 47.394288], [8.510611, 47.394359], [8.510378, 47.394353], [8.510198, 47.394356], [8.509506, 47.394335], [8.509391, 47.394332], [8.509276, 47.394335], [8.509162, 47.394343], [8.508213, 47.394445], [8.508017, 47.394462], [8.506336, 47.394544], [8.505989, 47.394562], [8.505644, 47.394591], [8.505301, 47.394632], [8.505124, 47.394661], [8.504947, 47.394694], [8.504772, 47.394729], [8.504576, 47.394774], [8.50438, 47.39482], [8.504185, 47.394868], [8.504142, 47.394881], [8.504098, 47.394891], [8.504052, 47.394898], [8.504005, 47.394903], [8.503958, 47.394904], [8.503926, 47.394904], [8.503893, 47.394905], [8.503861, 47.394909], [8.503693, 47.395028], [8.503281, 47.395194], [8.502932, 47.395351], [8.502697, 47.395472], [8.502468, 47.395599], [8.502247, 47.395732], [8.502028, 47.395887], [8.501815, 47.396045], [8.501608, 47.396208], [8.500608, 47.39709], [8.50022, 47.397377], [8.499795, 47.397639], [8.499337, 47.397872], [8.498848, 47.398076], [8.498334, 47.398249], [8.497798, 47.398388], [8.497246, 47.398493], [8.495625, 47.39874], [8.495284, 47.398782], [8.494819, 47.398823], [8.49458, 47.398838], [8.494543, 47.398837], [8.494506, 47.398833], [8.49447, 47.398827], [8.494435, 47.398819], [8.494401, 47.398809], [8.494368, 47.398796], [8.493962, 47.398637], [8.493897, 47.398616], [8.49383, 47.398598], [8.493761, 47.398584], [8.49369, 47.398574], [8.493474, 47.398572], [8.493427, 47.398741], [8.493022, 47.398695], [8.493017, 47.398718], [8.492302, 47.398641], [8.490555, 47.398416], [8.490272, 47.39838], [8.489988, 47.398349], [8.489704, 47.398324], [8.489156, 47.39832], [8.48861, 47.398345], [8.488068, 47.398397], [8.487593, 47.398487], [8.487131, 47.398604], [8.486686, 47.398749], [8.486262, 47.398919], [8.485861, 47.399114], [8.485486, 47.399332], [8.485142, 47.399572], [8.48497, 47.399704], [8.484805, 47.39984], [8.484649, 47.399981], [8.484405, 47.400263], [8.483097, 47.401656], [8.482827, 47.401918], [8.482526, 47.402165], [8.482195, 47.402393], [8.481837, 47.402602], [8.481418, 47.402806], [8.480976, 47.402986], [8.480514, 47.403142], [8.480035, 47.403271], [8.479542, 47.403374], [8.479337, 47.403408], [8.47913, 47.403436], [8.478921, 47.40346], [8.478578, 47.403492], [8.478234, 47.403514], [8.477888, 47.403527], [8.477846, 47.4035], [8.477745, 47.403406], [8.477737, 47.403401], [8.477728, 47.403397], [8.47772, 47.403394], [8.47771, 47.403391], [8.477701, 47.403388], [8.477691, 47.403386], [8.477681, 47.403385], [8.47767, 47.403384], [8.47766, 47.403384], [8.47765, 47.403384], [8.47764, 47.403385], [8.47763, 47.403387], [8.47762, 47.403389], [8.47761, 47.403392], [8.477601, 47.403395], [8.477508, 47.403431], [8.477411, 47.403462], [8.47731, 47.403487], [8.477207, 47.403507], [8.477102, 47.403521], [8.476996, 47.403529], [8.476903, 47.403533], [8.476809, 47.403532], [8.476717, 47.403525], [8.476625, 47.403512], [8.476536, 47.403494], [8.476449, 47.403471], [8.476273, 47.403414], [8.476091, 47.403367], [8.475904, 47.403329], [8.475681, 47.403294], [8.475463, 47.403245], [8.475253, 47.403183], [8.474729, 47.40303]]], "type": "MultiLineString"}, "id": "1619", "properties": {}, "type": "Feature"}, {"bbox": [8.589327, 47.372723, 8.590625, 47.374137], "geometry": {"coordinates": [[[8.589331, 47.372723], [8.58933, 47.37286], [8.589327, 47.372881], [8.589327, 47.372902], [8.58933, 47.372923], [8.589335, 47.372943], [8.589343, 47.372963], [8.589353, 47.372983], [8.589366, 47.373002], [8.589381, 47.37302], [8.589398, 47.373037], [8.589417, 47.373053], [8.589438, 47.373068], [8.590166, 47.373498], [8.590474, 47.373629], [8.590625, 47.373836], [8.590451, 47.373887], [8.590605, 47.374137]]], "type": "MultiLineString"}, "id": "1623", "properties": {}, "type": "Feature"}, {"bbox": [8.531209, 47.41075, 8.53121, 47.41075], "geometry": {"coordinates": [[[8.53121, 47.41075], [8.531209, 47.41075]]], "type": "MultiLineString"}, "id": "1626", "properties": {}, "type": "Feature"}, {"bbox": [8.532416, 47.343038, 8.533236, 47.344216], "geometry": {"coordinates": [[[8.532416, 47.344216], [8.532578, 47.343944], [8.532824, 47.343615], [8.533168, 47.343356], [8.533236, 47.343222], [8.533202, 47.343038]]], "type": "MultiLineString"}, "id": "1628", "properties": {}, "type": "Feature"}, {"bbox": [8.492607, 47.401897, 8.492728, 47.402265], "geometry": {"coordinates": [[[8.492607, 47.401897], [8.492728, 47.402265]]], "type": "MultiLineString"}, "id": "1633", "properties": {}, "type": "Feature"}, {"bbox": [8.492739, 47.375751, 8.493721, 47.376763], "geometry": {"coordinates": [[[8.493721, 47.376763], [8.493022, 47.376172], [8.492978, 47.376139], [8.492938, 47.376104], [8.492904, 47.376066], [8.492874, 47.376027], [8.49285, 47.375985], [8.492773, 47.375796], [8.492739, 47.375751]]], "type": "MultiLineString"}, "id": "1642", "properties": {}, "type": "Feature"}, {"bbox": [8.486102, 47.358112, 8.487923, 47.364858], "geometry": {"coordinates": [[[8.486923, 47.36474], [8.486645, 47.364808], [8.486626, 47.364813], [8.486609, 47.364819], [8.486592, 47.364827], [8.486583, 47.364831], [8.486573, 47.364834], [8.486563, 47.364837], [8.486553, 47.364839], [8.486542, 47.364841], [8.486531, 47.364842], [8.48652, 47.364842], [8.486509, 47.364842], [8.486491, 47.364842], [8.486472, 47.364843], [8.486453, 47.364845], [8.486435, 47.364848], [8.486418, 47.364853], [8.48641, 47.364855], [8.486403, 47.364856], [8.486395, 47.364857], [8.486387, 47.364858], [8.486379, 47.364858], [8.486371, 47.364857], [8.486363, 47.364857], [8.486355, 47.364855], [8.486348, 47.364853], [8.486341, 47.364851], [8.486334, 47.364848], [8.486327, 47.364845], [8.486321, 47.364842], [8.486279, 47.364818], [8.486234, 47.364797], [8.486186, 47.36478], [8.486135, 47.364765], [8.486131, 47.364764], [8.486127, 47.364763], [8.486123, 47.364761], [8.48612, 47.364759], [8.486116, 47.364757], [8.486113, 47.364755], [8.486111, 47.364752], [8.486108, 47.364749], [8.486106, 47.364747], [8.486105, 47.364744], [8.486103, 47.364741], [8.486102, 47.364738], [8.486102, 47.364735], [8.486102, 47.364732], [8.486102, 47.364729], [8.486103, 47.364726], [8.486104, 47.364723], [8.486105, 47.36472], [8.486107, 47.364717], [8.486109, 47.364714], [8.486112, 47.364712], [8.486114, 47.364709], [8.486118, 47.364707], [8.486121, 47.364705], [8.486125, 47.364703], [8.486129, 47.364701], [8.486133, 47.3647], [8.486137, 47.364699], [8.486141, 47.364698], [8.486146, 47.364698], [8.486154, 47.364697], [8.486162, 47.364695], [8.48617, 47.364693], [8.486177, 47.364691], [8.486184, 47.364688], [8.486191, 47.364684], [8.486197, 47.364681], [8.486203, 47.364677], [8.486208, 47.364673], [8.486213, 47.364668], [8.486217, 47.364663], [8.486221, 47.364658], [8.486224, 47.364653], [8.486226, 47.364647], [8.486227, 47.364642], [8.486228, 47.364636], [8.486228, 47.364631], [8.486227, 47.364625], [8.486226, 47.364619], [8.486225, 47.364616], [8.486225, 47.364612], [8.486225, 47.364608], [8.486225, 47.364605], [8.486226, 47.364601], [8.486228, 47.364597], [8.48623, 47.364594], [8.486232, 47.364591], [8.486235, 47.364587], [8.486239, 47.364585], [8.486242, 47.364582], [8.486246, 47.364579], [8.486251, 47.364577], [8.486255, 47.364575], [8.48626, 47.364573], [8.486265, 47.364572], [8.48627, 47.364571], [8.486276, 47.36457], [8.486281, 47.364569], [8.486286, 47.364569], [8.486349, 47.36457], [8.486351, 47.364569], [8.486354, 47.364569], [8.486356, 47.364569], [8.486358, 47.364568], [8.48636, 47.364567], [8.486362, 47.364567], [8.486364, 47.364566], [8.486365, 47.364565], [8.486367, 47.364564], [8.486368, 47.364563], [8.48637, 47.364561], [8.486371, 47.36456], [8.486372, 47.364559], [8.486373, 47.364557], [8.486373, 47.364556], [8.486374, 47.364554], [8.486374, 47.364553], [8.486374, 47.364551], [8.486374, 47.36455], [8.486373, 47.364548], [8.486373, 47.364547], [8.486373, 47.364546], [8.486373, 47.364545], [8.486373, 47.364544], [8.486373, 47.364543], [8.486374, 47.364542], [8.486374, 47.364541], [8.486375, 47.36454], [8.486376, 47.364539], [8.486376, 47.364538], [8.486377, 47.364538], [8.486378, 47.364537], [8.48638, 47.364536], [8.486381, 47.364536], [8.486382, 47.364535], [8.486384, 47.364535], [8.486385, 47.364534], [8.486386, 47.364534], [8.486388, 47.364534], [8.486389, 47.364534], [8.486391, 47.364534], [8.486392, 47.364534], [8.486394, 47.364534], [8.486395, 47.364534], [8.486408, 47.364537], [8.486421, 47.364538], [8.486434, 47.364539], [8.486447, 47.364539], [8.48646, 47.364538], [8.486472, 47.364536], [8.486485, 47.364534], [8.486497, 47.364531], [8.486509, 47.364527], [8.48652, 47.364522], [8.48653, 47.364517], [8.48654, 47.364511], [8.486549, 47.364505], [8.486557, 47.364498], [8.486564, 47.36449], [8.48657, 47.364482], [8.486575, 47.364474], [8.486579, 47.364466], [8.486582, 47.364457], [8.486583, 47.364448], [8.486595, 47.364352], [8.486596, 47.364348], [8.486597, 47.364343], [8.486599, 47.364339], [8.486602, 47.364335], [8.486605, 47.364331], [8.486608, 47.364328], [8.486612, 47.364324], [8.486617, 47.364321], [8.486622, 47.364318], [8.486627, 47.364316], [8.486632, 47.364313], [8.486638, 47.364311], [8.486644, 47.36431], [8.48665, 47.364309], [8.486655, 47.364308], [8.48666, 47.364306], [8.486665, 47.364305], [8.486669, 47.364303], [8.486674, 47.364301], [8.486678, 47.364299], [8.486681, 47.364296], [8.486685, 47.364293], [8.486687, 47.36429], [8.48669, 47.364287], [8.486692, 47.364284], [8.486694, 47.364281], [8.486695, 47.364277], [8.486696, 47.364274], [8.486697, 47.36427], [8.486697, 47.364267], [8.486696, 47.364263], [8.486695, 47.364257], [8.486695, 47.364251], [8.486696, 47.364245], [8.486698, 47.364239], [8.4867, 47.364233], [8.486704, 47.364227], [8.486708, 47.364221], [8.486713, 47.364216], [8.486796, 47.364132], [8.486812, 47.364118], [8.48683, 47.364104], [8.486849, 47.364092], [8.48687, 47.364081], [8.486962, 47.364035], [8.486973, 47.364029], [8.486982, 47.364023], [8.486991, 47.364016], [8.487, 47.364008], [8.487007, 47.364001], [8.487013, 47.363992], [8.487018, 47.363984], [8.487036, 47.36395], [8.487039, 47.363946], [8.487041, 47.363943], [8.487044, 47.36394], [8.487048, 47.363937], [8.487052, 47.363934], [8.487056, 47.363932], [8.48706, 47.363929], [8.487065, 47.363927], [8.48707, 47.363926], [8.487075, 47.363924], [8.487091, 47.36392], [8.487106, 47.363915], [8.487121, 47.363909], [8.487134, 47.363903], [8.487147, 47.363895], [8.487158, 47.363887], [8.487184, 47.363867], [8.487186, 47.363865], [8.487189, 47.363864], [8.487192, 47.363862], [8.487195, 47.363861], [8.487198, 47.36386], [8.487201, 47.363859], [8.487205, 47.363858], [8.487208, 47.363858], [8.487212, 47.363858], [8.487216, 47.363858], [8.487219, 47.363858], [8.487223, 47.363858], [8.487226, 47.363859], [8.487229, 47.36386], [8.487233, 47.363861], [8.487236, 47.363862], [8.487239, 47.363863], [8.487241, 47.363865], [8.487248, 47.363868], [8.487254, 47.363872], [8.487261, 47.363874], [8.487269, 47.363877], [8.487276, 47.363879], [8.487284, 47.36388], [8.487292, 47.363881], [8.4873, 47.363881], [8.487309, 47.363881], [8.487317, 47.363881], [8.487325, 47.36388], [8.487333, 47.363879], [8.48734, 47.363877], [8.487348, 47.363874], [8.487355, 47.363872], [8.487368, 47.363866], [8.487382, 47.363862], [8.487397, 47.363858], [8.487412, 47.363856], [8.487427, 47.363854], [8.487443, 47.363853], [8.487455, 47.363853], [8.487468, 47.363851], [8.48748, 47.363849], [8.487492, 47.363847], [8.487503, 47.363843], [8.487514, 47.363839], [8.487524, 47.363834], [8.487534, 47.363829], [8.487544, 47.363823], [8.487556, 47.363818], [8.487567, 47.363813], [8.48758, 47.363809], [8.487582, 47.363809], [8.487584, 47.363808], [8.487586, 47.363807], [8.487588, 47.363806], [8.48759, 47.363805], [8.487592, 47.363803], [8.487593, 47.363802], [8.487595, 47.3638], [8.487596, 47.363799], [8.487597, 47.363797], [8.487598, 47.363795], [8.487598, 47.363794], [8.487598, 47.363792], [8.487598, 47.36379], [8.487598, 47.363788], [8.487598, 47.363787], [8.487597, 47.363785], [8.487596, 47.363783], [8.487595, 47.363782], [8.487594, 47.36378], [8.487593, 47.363779], [8.487591, 47.363777], [8.487589, 47.363776], [8.487588, 47.363775], [8.487585, 47.363774], [8.487577, 47.36377], [8.48757, 47.363765], [8.487563, 47.36376], [8.487556, 47.363755], [8.487551, 47.363749], [8.487546, 47.363743], [8.487504, 47.363688], [8.4875, 47.363683], [8.487497, 47.363678], [8.487495, 47.363672], [8.487494, 47.363667], [8.487493, 47.363661], [8.487492, 47.363656], [8.487491, 47.363652], [8.487489, 47.363647], [8.487487, 47.363642], [8.487484, 47.363638], [8.48748, 47.363634], [8.487476, 47.36363], [8.487471, 47.363627], [8.487425, 47.363594], [8.487422, 47.363592], [8.487419, 47.36359], [8.487416, 47.363587], [8.487414, 47.363584], [8.487413, 47.363581], [8.487411, 47.363578], [8.48741, 47.363575], [8.48741, 47.363572], [8.48741, 47.363569], [8.48741, 47.363566], [8.48741, 47.363563], [8.487411, 47.36356], [8.487413, 47.363557], [8.487415, 47.363554], [8.487417, 47.363551], [8.487419, 47.363549], [8.487422, 47.363546], [8.487425, 47.363544], [8.487429, 47.363542], [8.487432, 47.36354], [8.487436, 47.363538], [8.48744, 47.363537], [8.487445, 47.363536], [8.487586, 47.363502], [8.487596, 47.363499], [8.487607, 47.363495], [8.487617, 47.363491], [8.487626, 47.363487], [8.487635, 47.363482], [8.487638, 47.36348], [8.48764, 47.363478], [8.487642, 47.363477], [8.487643, 47.363475], [8.487645, 47.363473], [8.487646, 47.363471], [8.487646, 47.363469], [8.487647, 47.363466], [8.487647, 47.363464], [8.487647, 47.363462], [8.487647, 47.36346], [8.487646, 47.363458], [8.487646, 47.363456], [8.487644, 47.363454], [8.487643, 47.363452], [8.487641, 47.36345], [8.48764, 47.363448], [8.487638, 47.363446], [8.487635, 47.363445], [8.487633, 47.363443], [8.48763, 47.363442], [8.487627, 47.363441], [8.487625, 47.36344], [8.487621, 47.363439], [8.487505, 47.363415], [8.487492, 47.363412], [8.487479, 47.363407], [8.487466, 47.363403], [8.487455, 47.363397], [8.487444, 47.363391], [8.487364, 47.363339], [8.487332, 47.363292], [8.48733, 47.363289], [8.487329, 47.363287], [8.487328, 47.363284], [8.487328, 47.363282], [8.487328, 47.363279], [8.487328, 47.363276], [8.487329, 47.363274], [8.48733, 47.363271], [8.487331, 47.363269], [8.487332, 47.363266], [8.487334, 47.363264], [8.487336, 47.363262], [8.487339, 47.36326], [8.487341, 47.363258], [8.487344, 47.363256], [8.487347, 47.363255], [8.487425, 47.36322], [8.487427, 47.363219], [8.487429, 47.363218], [8.487431, 47.363217], [8.487433, 47.363215], [8.487435, 47.363214], [8.487436, 47.363212], [8.487437, 47.36321], [8.487438, 47.363208], [8.487439, 47.363207], [8.487439, 47.363205], [8.48744, 47.363203], [8.48744, 47.363201], [8.487439, 47.363199], [8.487439, 47.363197], [8.487438, 47.363196], [8.487437, 47.363194], [8.487436, 47.363192], [8.487435, 47.36319], [8.487433, 47.363189], [8.487432, 47.363187], [8.48743, 47.363186], [8.487428, 47.363185], [8.487425, 47.363184], [8.487423, 47.363183], [8.487369, 47.363162], [8.487296, 47.363116], [8.487294, 47.363115], [8.487292, 47.363114], [8.487291, 47.363112], [8.48729, 47.363111], [8.487289, 47.363109], [8.487288, 47.363108], [8.487288, 47.363106], [8.487287, 47.363105], [8.487287, 47.363103], [8.487287, 47.363102], [8.487287, 47.3631], [8.487288, 47.363098], [8.487289, 47.363097], [8.487289, 47.363095], [8.48729, 47.363094], [8.487292, 47.363092], [8.487293, 47.363091], [8.487295, 47.36309], [8.487297, 47.363089], [8.487298, 47.363088], [8.4873, 47.363087], [8.487318, 47.363079], [8.487335, 47.36307], [8.487351, 47.36306], [8.487365, 47.363049], [8.487367, 47.363048], [8.487368, 47.363047], [8.487369, 47.363045], [8.48737, 47.363043], [8.48737, 47.363042], [8.487371, 47.36304], [8.487371, 47.363039], [8.487371, 47.363037], [8.487371, 47.363035], [8.487371, 47.363034], [8.48737, 47.363032], [8.487369, 47.363031], [8.487368, 47.363029], [8.487367, 47.363028], [8.487366, 47.363026], [8.487364, 47.363025], [8.487363, 47.363024], [8.487361, 47.363023], [8.487359, 47.363022], [8.487357, 47.363021], [8.487271, 47.362989], [8.487225, 47.362956], [8.487223, 47.362954], [8.487221, 47.362952], [8.487219, 47.362951], [8.487218, 47.362949], [8.487217, 47.362947], [8.487216, 47.362945], [8.487215, 47.362943], [8.487215, 47.362941], [8.487215, 47.362939], [8.487215, 47.362937], [8.487216, 47.362934], [8.487217, 47.362932], [8.487218, 47.362931], [8.487219, 47.362929], [8.48722, 47.362927], [8.487222, 47.362925], [8.487224, 47.362924], [8.487226, 47.362922], [8.487229, 47.362921], [8.487231, 47.36292], [8.487234, 47.362918], [8.487237, 47.362918], [8.487239, 47.362917], [8.487242, 47.362916], [8.487366, 47.362898], [8.487369, 47.362897], [8.487371, 47.362896], [8.487373, 47.362896], [8.487376, 47.362895], [8.487378, 47.362894], [8.48738, 47.362893], [8.487382, 47.362891], [8.487383, 47.36289], [8.487385, 47.362889], [8.487386, 47.362887], [8.487387, 47.362885], [8.487388, 47.362884], [8.487389, 47.362882], [8.487389, 47.36288], [8.487389, 47.362878], [8.487389, 47.362877], [8.487389, 47.362875], [8.487388, 47.362873], [8.487388, 47.362872], [8.487387, 47.36287], [8.487386, 47.362868], [8.487384, 47.362867], [8.487383, 47.362865], [8.487381, 47.362864], [8.487379, 47.362863], [8.487377, 47.362862], [8.487375, 47.362861], [8.487373, 47.36286], [8.48737, 47.362859], [8.487368, 47.362859], [8.487365, 47.362858], [8.487287, 47.362848], [8.487279, 47.362847], [8.487271, 47.362845], [8.487263, 47.362843], [8.487255, 47.36284], [8.487248, 47.362837], [8.487242, 47.362833], [8.487176, 47.362795], [8.487172, 47.362792], [8.487168, 47.362789], [8.487164, 47.362786], [8.487161, 47.362782], [8.487158, 47.362779], [8.487156, 47.362775], [8.487154, 47.362771], [8.487153, 47.362767], [8.487152, 47.362763], [8.487152, 47.362758], [8.487153, 47.362754], [8.487154, 47.36275], [8.487155, 47.362746], [8.487157, 47.362742], [8.48716, 47.362739], [8.487164, 47.362733], [8.487167, 47.362726], [8.48717, 47.36272], [8.487171, 47.362713], [8.487172, 47.362707], [8.487172, 47.3627], [8.487172, 47.362693], [8.48717, 47.362687], [8.487168, 47.36268], [8.487164, 47.362674], [8.48716, 47.362668], [8.487156, 47.362662], [8.48715, 47.362656], [8.487144, 47.362651], [8.487137, 47.362646], [8.48713, 47.362642], [8.487122, 47.362638], [8.487114, 47.362634], [8.487039, 47.362606], [8.487035, 47.362604], [8.48703, 47.362601], [8.487026, 47.362599], [8.487022, 47.362596], [8.487019, 47.362593], [8.487016, 47.36259], [8.487014, 47.362587], [8.487011, 47.362583], [8.48701, 47.36258], [8.487009, 47.362576], [8.487008, 47.362572], [8.487008, 47.362568], [8.487008, 47.362565], [8.487009, 47.362561], [8.48701, 47.362557], [8.487012, 47.362554], [8.487014, 47.36255], [8.487016, 47.362547], [8.487019, 47.362544], [8.487023, 47.362541], [8.487026, 47.362538], [8.487031, 47.362536], [8.487035, 47.362533], [8.48704, 47.362531], [8.487045, 47.36253], [8.48705, 47.362528], [8.487055, 47.362527], [8.487172, 47.362507], [8.487321, 47.362456], [8.487328, 47.362453], [8.487335, 47.36245], [8.487341, 47.362446], [8.487347, 47.362443], [8.487353, 47.362439], [8.487358, 47.362434], [8.487362, 47.362429], [8.487366, 47.362425], [8.487369, 47.362419], [8.487371, 47.362414], [8.487423, 47.362286], [8.487425, 47.362281], [8.487428, 47.362276], [8.487432, 47.362272], [8.487436, 47.362268], [8.48744, 47.362264], [8.487445, 47.36226], [8.487451, 47.362257], [8.487457, 47.362254], [8.487463, 47.362251], [8.487469, 47.362249], [8.48748, 47.362245], [8.487491, 47.362241], [8.4875, 47.362236], [8.487509, 47.36223], [8.487518, 47.362224], [8.487525, 47.362218], [8.487532, 47.362211], [8.487538, 47.362204], [8.487543, 47.362196], [8.487547, 47.362188], [8.48755, 47.36218], [8.487552, 47.362172], [8.487553, 47.362167], [8.487555, 47.362161], [8.487558, 47.362156], [8.487561, 47.362151], [8.487565, 47.362146], [8.48757, 47.362142], [8.487575, 47.362137], [8.48758, 47.362133], [8.487586, 47.36213], [8.487589, 47.362128], [8.487592, 47.362126], [8.487594, 47.362124], [8.487596, 47.362122], [8.487598, 47.362119], [8.487599, 47.362117], [8.4876, 47.362114], [8.487601, 47.362112], [8.487601, 47.362109], [8.487602, 47.362107], [8.487601, 47.362104], [8.487578, 47.361949], [8.487577, 47.36193], [8.487578, 47.361911], [8.487582, 47.361892], [8.487586, 47.361873], [8.487588, 47.361853], [8.487588, 47.361834], [8.487583, 47.361701], [8.487581, 47.361688], [8.487578, 47.361675], [8.487573, 47.361662], [8.487567, 47.361649], [8.487559, 47.361637], [8.48752, 47.361584], [8.487512, 47.361573], [8.487506, 47.361562], [8.487501, 47.36155], [8.487498, 47.361538], [8.487497, 47.361526], [8.487496, 47.361513], [8.487498, 47.361501], [8.48751, 47.361433], [8.487502, 47.361381], [8.487501, 47.361088], [8.487662, 47.360821], [8.487667, 47.360812], [8.48767, 47.360802], [8.487672, 47.360793], [8.487673, 47.360783], [8.487673, 47.360773], [8.487672, 47.360763], [8.487668, 47.360751], [8.487663, 47.360739], [8.487656, 47.360728], [8.487648, 47.360717], [8.487639, 47.360706], [8.487628, 47.360696], [8.487616, 47.360687], [8.487603, 47.360678], [8.487589, 47.360671], [8.487573, 47.360662], [8.487559, 47.360653], [8.487545, 47.360643], [8.487533, 47.360632], [8.487522, 47.36062], [8.487512, 47.360608], [8.487504, 47.360595], [8.487498, 47.360581], [8.487493, 47.360568], [8.48749, 47.360554], [8.487489, 47.36054], [8.487488, 47.360505], [8.487485, 47.36047], [8.487482, 47.360435], [8.487479, 47.360384], [8.487481, 47.360333], [8.487489, 47.360282], [8.487499, 47.360234], [8.487512, 47.360187], [8.487526, 47.36014], [8.487537, 47.360096], [8.487543, 47.360052], [8.487542, 47.360008], [8.487542, 47.359978], [8.487547, 47.359947], [8.487556, 47.359917], [8.487569, 47.359888], [8.487586, 47.359854], [8.487602, 47.35982], [8.487617, 47.359785], [8.487637, 47.359737], [8.487656, 47.359688], [8.487676, 47.359639], [8.487693, 47.35959], [8.487704, 47.35954], [8.48771, 47.35949], [8.487716, 47.359401], [8.487716, 47.359397], [8.487718, 47.359392], [8.48772, 47.359387], [8.487722, 47.359383], [8.487725, 47.359378], [8.487729, 47.359374], [8.487737, 47.359367], [8.487747, 47.35936], [8.487757, 47.359353], [8.487768, 47.359347], [8.487779, 47.359342], [8.487791, 47.359338], [8.487816, 47.35933], [8.487841, 47.359324], [8.487867, 47.359319], [8.487893, 47.359316], [8.487896, 47.359316], [8.487899, 47.359315], [8.487902, 47.359315], [8.487905, 47.359314], [8.487907, 47.359313], [8.487909, 47.359312], [8.487912, 47.35931], [8.487914, 47.359309], [8.487916, 47.359307], [8.487917, 47.359306], [8.487919, 47.359304], [8.48792, 47.359302], [8.487921, 47.3593], [8.487922, 47.359298], [8.487922, 47.359297], [8.487923, 47.359295], [8.487923, 47.359293], [8.487923, 47.359291], [8.487922, 47.359289], [8.487921, 47.359287], [8.487921, 47.359285], [8.487919, 47.359283], [8.487906, 47.359265], [8.48789, 47.359248], [8.487874, 47.359231], [8.487863, 47.359222], [8.487851, 47.359213], [8.487838, 47.359205], [8.487824, 47.359198], [8.487809, 47.359191], [8.487794, 47.359184], [8.48778, 47.359176], [8.487765, 47.359167], [8.487751, 47.359158], [8.487738, 47.359147], [8.487732, 47.359143], [8.487725, 47.359138], [8.487718, 47.359134], [8.48771, 47.359131], [8.487701, 47.359128], [8.487693, 47.359126], [8.487681, 47.359123], [8.48767, 47.359119], [8.48766, 47.359115], [8.48765, 47.35911], [8.487641, 47.359104], [8.487636, 47.359101], [8.487632, 47.359097], [8.487628, 47.359093], [8.487625, 47.359089], [8.487622, 47.359084], [8.48762, 47.35908], [8.487619, 47.359075], [8.487618, 47.359071], [8.487617, 47.359066], [8.487617, 47.359048], [8.487614, 47.35903], [8.48761, 47.359012], [8.487604, 47.358993], [8.487599, 47.358975], [8.487594, 47.358956], [8.48759, 47.358938], [8.487588, 47.358919], [8.487589, 47.358901], [8.487592, 47.358882], [8.487596, 47.358865], [8.487599, 47.358848], [8.487602, 47.358831], [8.487604, 47.358822], [8.487607, 47.358813], [8.487612, 47.358805], [8.487617, 47.358797], [8.487624, 47.358789], [8.487627, 47.358785], [8.48763, 47.358781], [8.487632, 47.358777], [8.487633, 47.358773], [8.487634, 47.358769], [8.487635, 47.358765], [8.487635, 47.358761], [8.487634, 47.358756], [8.487633, 47.358752], [8.487632, 47.358748], [8.487629, 47.358744], [8.487627, 47.35874], [8.48761, 47.358719], [8.487592, 47.358699], [8.487573, 47.358679], [8.48757, 47.358676], [8.487568, 47.358672], [8.487566, 47.358668], [8.487564, 47.358665], [8.487563, 47.358661], [8.487563, 47.358657], [8.487562, 47.358653], [8.487563, 47.35865], [8.487564, 47.358646], [8.487565, 47.358642], [8.48757, 47.358627], [8.487575, 47.358612], [8.487579, 47.358596], [8.487579, 47.358594], [8.487579, 47.358591], [8.487579, 47.358588], [8.487578, 47.358586], [8.487577, 47.358583], [8.487576, 47.358581], [8.487574, 47.358578], [8.487573, 47.358576], [8.48757, 47.358573], [8.487568, 47.358571], [8.487565, 47.358569], [8.487562, 47.358568], [8.487559, 47.358566], [8.487556, 47.358564], [8.487552, 47.358563], [8.487497, 47.358545], [8.487442, 47.358525], [8.487388, 47.358505], [8.487368, 47.358497], [8.48735, 47.358487], [8.487333, 47.358477], [8.48733, 47.358475], [8.487328, 47.358473], [8.487326, 47.358471], [8.487325, 47.358469], [8.487323, 47.358466], [8.487322, 47.358464], [8.487321, 47.358462], [8.487321, 47.358459], [8.487321, 47.358457], [8.487321, 47.358454], [8.487321, 47.358452], [8.487322, 47.358449], [8.487323, 47.358447], [8.487325, 47.358445], [8.487326, 47.358443], [8.487328, 47.358441], [8.48733, 47.358439], [8.487333, 47.358437], [8.487336, 47.358435], [8.487339, 47.358434], [8.487342, 47.358432], [8.487345, 47.358431], [8.487363, 47.358425], [8.48738, 47.358418], [8.487397, 47.358409], [8.487412, 47.3584], [8.487426, 47.358391], [8.487439, 47.358381], [8.48745, 47.35837], [8.487452, 47.358367], [8.487454, 47.358364], [8.487456, 47.358362], [8.487457, 47.358359], [8.487458, 47.358356], [8.487458, 47.358352], [8.487458, 47.358349], [8.487458, 47.358346], [8.487457, 47.358343], [8.487456, 47.35834], [8.487455, 47.358337], [8.487453, 47.358334], [8.48745, 47.358332], [8.487448, 47.358329], [8.487445, 47.358327], [8.487442, 47.358325], [8.487433, 47.35832], [8.487424, 47.358315], [8.487415, 47.358312], [8.487405, 47.358308], [8.487395, 47.358305], [8.487381, 47.358302], [8.487368, 47.358297], [8.487355, 47.358292], [8.487352, 47.358291], [8.487348, 47.358289], [8.487345, 47.358287], [8.487343, 47.358285], [8.48734, 47.358283], [8.487338, 47.35828], [8.487336, 47.358278], [8.487335, 47.358275], [8.487334, 47.358273], [8.487333, 47.35827], [8.48733, 47.358257], [8.487329, 47.358243], [8.487329, 47.35823], [8.487332, 47.358204], [8.487338, 47.358179], [8.487347, 47.358155], [8.487366, 47.358112]]], "type": "MultiLineString"}, "id": "1647", "properties": {}, "type": "Feature"}, {"bbox": [8.484489, 47.405005, 8.485172, 47.405193], "geometry": {"coordinates": [[[8.485172, 47.405005], [8.485062, 47.40504], [8.484778, 47.40512], [8.484489, 47.405193]]], "type": "MultiLineString"}, "id": "1648", "properties": {}, "type": "Feature"}, {"bbox": [8.527937, 47.349533, 8.529695, 47.349633], "geometry": {"coordinates": [[[8.529695, 47.349633], [8.529448, 47.349607], [8.529399, 47.349607], [8.529213, 47.349621], [8.529038, 47.349627], [8.528394, 47.349558], [8.527937, 47.349533]]], "type": "MultiLineString"}, "id": "1652", "properties": {}, "type": "Feature"}, {"bbox": [8.539237, 47.393682, 8.540441, 47.393691], "geometry": {"coordinates": [[[8.539237, 47.393682], [8.539729, 47.393691], [8.540441, 47.393688]]], "type": "MultiLineString"}, "id": "1653", "properties": {}, "type": "Feature"}, {"bbox": [8.538631, 47.41435, 8.539387, 47.415032], "geometry": {"coordinates": [[[8.539387, 47.415022], [8.539298, 47.415032], [8.539211, 47.41435], [8.538631, 47.414377]]], "type": "MultiLineString"}, "id": "1657", "properties": {}, "type": "Feature"}, {"bbox": [8.558474, 47.351998, 8.559405, 47.352587], "geometry": {"coordinates": [[[8.558474, 47.351998], [8.558659, 47.352117], [8.558954, 47.352312], [8.559405, 47.352587]]], "type": "MultiLineString"}, "id": "1658", "properties": {}, "type": "Feature"}, {"bbox": [8.533598, 47.412614, 8.533918, 47.413081], "geometry": {"coordinates": [[[8.533598, 47.413081], [8.533823, 47.413068], [8.533918, 47.412614]]], "type": "MultiLineString"}, "id": "1664", "properties": {}, "type": "Feature"}, {"bbox": [8.499862, 47.423467, 8.499915, 47.423556], "geometry": {"coordinates": [[[8.499915, 47.423556], [8.499862, 47.423467]]], "type": "MultiLineString"}, "id": "1665", "properties": {}, "type": "Feature"}, {"bbox": [8.517373, 47.369199, 8.518133, 47.369387], "geometry": {"coordinates": [[[8.518133, 47.369199], [8.517972, 47.369218], [8.517815, 47.369247], [8.517662, 47.369285], [8.517514, 47.369331], [8.517373, 47.369387]]], "type": "MultiLineString"}, "id": "1667", "properties": {}, "type": "Feature"}, {"bbox": [8.579299, 47.358593, 8.580319, 47.359004], "geometry": {"coordinates": [[[8.579299, 47.358593], [8.579525, 47.358707], [8.580205, 47.358973], [8.580319, 47.359004]]], "type": "MultiLineString"}, "id": "1668", "properties": {}, "type": "Feature"}, {"bbox": [8.50472, 47.422191, 8.50488, 47.422239], "geometry": {"coordinates": [[[8.50488, 47.422191], [8.50472, 47.422239]]], "type": "MultiLineString"}, "id": "1673", "properties": {}, "type": "Feature"}, {"bbox": [8.529853, 47.368834, 8.530337, 47.369225], "geometry": {"coordinates": [[[8.530337, 47.368834], [8.529853, 47.369225]]], "type": "MultiLineString"}, "id": "1674", "properties": {}, "type": "Feature"}, {"bbox": [8.48743, 47.401417, 8.489768, 47.401919], "geometry": {"coordinates": [[[8.489768, 47.401567], [8.489689, 47.401474], [8.489489, 47.401417], [8.489011, 47.401514], [8.487965, 47.401731], [8.48743, 47.401919]]], "type": "MultiLineString"}, "id": "1675", "properties": {}, "type": "Feature"}, {"bbox": [8.56668, 47.367614, 8.567231, 47.368644], "geometry": {"coordinates": [[[8.567231, 47.367614], [8.566956, 47.368138], [8.56668, 47.368644]]], "type": "MultiLineString"}, "id": "1679", "properties": {}, "type": "Feature"}, {"bbox": [8.550061, 47.427592, 8.550168, 47.427988], "geometry": {"coordinates": [[[8.550168, 47.427592], [8.550061, 47.427988]]], "type": "MultiLineString"}, "id": "1680", "properties": {}, "type": "Feature"}, {"bbox": [8.542577, 47.419204, 8.5439, 47.419286], "geometry": {"coordinates": [[[8.5439, 47.419286], [8.542577, 47.419204]]], "type": "MultiLineString"}, "id": "1682", "properties": {}, "type": "Feature"}, {"bbox": [8.480069, 47.380415, 8.480957, 47.381213], "geometry": {"coordinates": [[[8.480957, 47.380415], [8.480661, 47.380683], [8.480282, 47.381026], [8.480069, 47.381213]]], "type": "MultiLineString"}, "id": "1683", "properties": {}, "type": "Feature"}, {"bbox": [8.534154, 47.333976, 8.535009, 47.334301], "geometry": {"coordinates": [[[8.534154, 47.333976], [8.534238, 47.334004], [8.534286, 47.33402], [8.534892, 47.334243], [8.534935, 47.334251], [8.535009, 47.334301]]], "type": "MultiLineString"}, "id": "1684", "properties": {}, "type": "Feature"}, {"bbox": [8.54418, 47.39392, 8.544955, 47.393946], "geometry": {"coordinates": [[[8.54418, 47.393946], [8.544955, 47.39392]]], "type": "MultiLineString"}, "id": "1685", "properties": {}, "type": "Feature"}, {"bbox": [8.479069, 47.365391, 8.492121, 47.369424], "geometry": {"coordinates": [[[8.492121, 47.365391], [8.492093, 47.365408], [8.492083, 47.365414], [8.492074, 47.365419], [8.492064, 47.365423], [8.491998, 47.365457], [8.491969, 47.36547], [8.49194, 47.365482], [8.49191, 47.365493], [8.49188, 47.365502], [8.491849, 47.36551], [8.491817, 47.365516], [8.491785, 47.365521], [8.491752, 47.365524], [8.491719, 47.365526], [8.491685, 47.365528], [8.491648, 47.36553], [8.491612, 47.365532], [8.491575, 47.365534], [8.491545, 47.365536], [8.491516, 47.365537], [8.491486, 47.365537], [8.491486, 47.365537], [8.491486, 47.365537], [8.491441, 47.365539], [8.491397, 47.365543], [8.491352, 47.365549], [8.491316, 47.365555], [8.49128, 47.365563], [8.491244, 47.365571], [8.491201, 47.365582], [8.491158, 47.365595], [8.491116, 47.365608], [8.491059, 47.365628], [8.491001, 47.365647], [8.490944, 47.365666], [8.49088, 47.365687], [8.490815, 47.365708], [8.490751, 47.365729], [8.490688, 47.365747], [8.490625, 47.365763], [8.49056, 47.365777], [8.490389, 47.365808], [8.490307, 47.365824], [8.490225, 47.365839], [8.490144, 47.365854], [8.490102, 47.365862], [8.49006, 47.36587], [8.490018, 47.365878], [8.489964, 47.365888], [8.489909, 47.365895], [8.489853, 47.365901], [8.489777, 47.365907], [8.489701, 47.365911], [8.489624, 47.365914], [8.489624, 47.365914], [8.489623, 47.365914], [8.489579, 47.365916], [8.489534, 47.36592], [8.48949, 47.365927], [8.489378, 47.365959], [8.489345, 47.365974], [8.489312, 47.36599], [8.489279, 47.366007], [8.489237, 47.366027], [8.489194, 47.366045], [8.489149, 47.366062], [8.489092, 47.366079], [8.489033, 47.366093], [8.488973, 47.366104], [8.488922, 47.366111], [8.48887, 47.366117], [8.488819, 47.366123], [8.488779, 47.366129], [8.48874, 47.366135], [8.488701, 47.366143], [8.488544, 47.366176], [8.488387, 47.366209], [8.48823, 47.366242], [8.488201, 47.366249], [8.488174, 47.366257], [8.488148, 47.366267], [8.488148, 47.366267], [8.487886, 47.366389], [8.487886, 47.366389], [8.487878, 47.366393], [8.487871, 47.366397], [8.487864, 47.3664], [8.487742, 47.366476], [8.487704, 47.366499], [8.487629, 47.366548], [8.487551, 47.366595], [8.48747, 47.36664], [8.487407, 47.366676], [8.487345, 47.366714], [8.487286, 47.366753], [8.487237, 47.366784], [8.487186, 47.366813], [8.487132, 47.36684], [8.487096, 47.366855], [8.487058, 47.366869], [8.487019, 47.36688], [8.487003, 47.366884], [8.486986, 47.366886], [8.48697, 47.366888], [8.486953, 47.366888], [8.486936, 47.366887], [8.486919, 47.366886], [8.486906, 47.366883], [8.486893, 47.36688], [8.48688, 47.366876], [8.486867, 47.366872], [8.486856, 47.366867], [8.486845, 47.366861], [8.486834, 47.366854], [8.486783, 47.366821], [8.486729, 47.36679], [8.486673, 47.366761], [8.486645, 47.366748], [8.486616, 47.366737], [8.486585, 47.366728], [8.486553, 47.366721], [8.48652, 47.366716], [8.486486, 47.366712], [8.486367, 47.366721], [8.486261, 47.366761], [8.486184, 47.366806], [8.486109, 47.366852], [8.486036, 47.3669], [8.485992, 47.366932], [8.485951, 47.366967], [8.485914, 47.367003], [8.485805, 47.367083], [8.485768, 47.367099], [8.48573, 47.367113], [8.485689, 47.367124], [8.485628, 47.367138], [8.485565, 47.367148], [8.485502, 47.367154], [8.485437, 47.367158], [8.485419, 47.367158], [8.485401, 47.367157], [8.485382, 47.367154], [8.485365, 47.367151], [8.485347, 47.367147], [8.48533, 47.367142], [8.485314, 47.367135], [8.485299, 47.367128], [8.485258, 47.367106], [8.485218, 47.367084], [8.485178, 47.367061], [8.485156, 47.367047], [8.485133, 47.367033], [8.485112, 47.367019], [8.485095, 47.367008], [8.485077, 47.366998], [8.485057, 47.36699], [8.485037, 47.366982], [8.485016, 47.366976], [8.484994, 47.36697], [8.484974, 47.366967], [8.484953, 47.366964], [8.484932, 47.366963], [8.48491, 47.366963], [8.484889, 47.366964], [8.484868, 47.366966], [8.484848, 47.366969], [8.484827, 47.366974], [8.484808, 47.36698], [8.484774, 47.366992], [8.484741, 47.367006], [8.48471, 47.367022], [8.484682, 47.367039], [8.484655, 47.367058], [8.484632, 47.367076], [8.48461, 47.367095], [8.484589, 47.367113], [8.484569, 47.36713], [8.484546, 47.367146], [8.484522, 47.36716], [8.484496, 47.367172], [8.484468, 47.367183], [8.484449, 47.367189], [8.48443, 47.367194], [8.48441, 47.367198], [8.48439, 47.3672], [8.484307, 47.367207], [8.484224, 47.367212], [8.48414, 47.367215], [8.48414, 47.367215], [8.48414, 47.367215], [8.484103, 47.367215], [8.484066, 47.367213], [8.484029, 47.367209], [8.483993, 47.367202], [8.483958, 47.367194], [8.483924, 47.367184], [8.483898, 47.367174], [8.483872, 47.367163], [8.483848, 47.36715], [8.483826, 47.367137], [8.483805, 47.367121], [8.483786, 47.367105], [8.483731, 47.367053], [8.483675, 47.367002], [8.483619, 47.36695], [8.48361, 47.366942], [8.4836, 47.366935], [8.483589, 47.366929], [8.483577, 47.366923], [8.483565, 47.366919], [8.483552, 47.366915], [8.483538, 47.366911], [8.483524, 47.366909], [8.483481, 47.366903], [8.483438, 47.366898], [8.483395, 47.366894], [8.483358, 47.366891], [8.483321, 47.366891], [8.483283, 47.366892], [8.483247, 47.366896], [8.48321, 47.366902], [8.483167, 47.366911], [8.483124, 47.366923], [8.483082, 47.366937], [8.483019, 47.366961], [8.482959, 47.366988], [8.482901, 47.367018], [8.482832, 47.367055], [8.482762, 47.367092], [8.482693, 47.367129], [8.48266, 47.367148], [8.48263, 47.367169], [8.482603, 47.367192], [8.48258, 47.367217], [8.48256, 47.367242], [8.482513, 47.367313], [8.482472, 47.367384], [8.482434, 47.367456], [8.482417, 47.367487], [8.482396, 47.367518], [8.482372, 47.367546], [8.482344, 47.367574], [8.482313, 47.367599], [8.482279, 47.367623], [8.482243, 47.367645], [8.482203, 47.367665], [8.482162, 47.367682], [8.482118, 47.367696], [8.482072, 47.367708], [8.482025, 47.367716], [8.481938, 47.36773], [8.481851, 47.367746], [8.481766, 47.367765], [8.481685, 47.367784], [8.481603, 47.367802], [8.481521, 47.36782], [8.481468, 47.36783], [8.481413, 47.36784], [8.481359, 47.367848], [8.481322, 47.367853], [8.481287, 47.367861], [8.481252, 47.36787], [8.481222, 47.36788], [8.481207, 47.367885], [8.481192, 47.367891], [8.481178, 47.367897], [8.481048, 47.367954], [8.480917, 47.36801], [8.480785, 47.368064], [8.480668, 47.36811], [8.480549, 47.368156], [8.48043, 47.3682], [8.480377, 47.36822], [8.480326, 47.36824], [8.480275, 47.368262], [8.48025, 47.368274], [8.480227, 47.368288], [8.480206, 47.368303], [8.480187, 47.368319], [8.480171, 47.368337], [8.480157, 47.368355], [8.480104, 47.368437], [8.480056, 47.368519], [8.480013, 47.368603], [8.479997, 47.368634], [8.479981, 47.368665], [8.479965, 47.368696], [8.479952, 47.368717], [8.479937, 47.368737], [8.47992, 47.368756], [8.479899, 47.368774], [8.479858, 47.368807], [8.479813, 47.368838], [8.479766, 47.368866], [8.479727, 47.368887], [8.479687, 47.368907], [8.479645, 47.368925], [8.479336, 47.369052], [8.479264, 47.369084], [8.479197, 47.369121], [8.479135, 47.369161], [8.479121, 47.369172], [8.479108, 47.369184], [8.479097, 47.369196], [8.479088, 47.36921], [8.47908, 47.369223], [8.479075, 47.369237], [8.479071, 47.369252], [8.479069, 47.369266], [8.479073, 47.369281], [8.479078, 47.369295], [8.479085, 47.36931], [8.479094, 47.369323], [8.479105, 47.369336], [8.479118, 47.369349], [8.479132, 47.36936], [8.479148, 47.369371], [8.479165, 47.369381], [8.479183, 47.369389], [8.479202, 47.369397], [8.479212, 47.3694], [8.479221, 47.369403], [8.47923, 47.369407], [8.479253, 47.369413], [8.479275, 47.369418], [8.479299, 47.369421], [8.479323, 47.369423], [8.479347, 47.369424], [8.479371, 47.369424], [8.479394, 47.369422], [8.479418, 47.369418], [8.479441, 47.369414], [8.479481, 47.369404], [8.47952, 47.369392], [8.479558, 47.369379], [8.479791, 47.36929], [8.479792, 47.36929], [8.479848, 47.369268], [8.479904, 47.369246], [8.47996, 47.369224], [8.480051, 47.369188], [8.480143, 47.369152], [8.480234, 47.369116], [8.480278, 47.369098], [8.480323, 47.369082], [8.480368, 47.369065], [8.480434, 47.369043], [8.480502, 47.369023], [8.480572, 47.369005], [8.480617, 47.368997], [8.480664, 47.36899], [8.48071, 47.368984], [8.481115, 47.36892], [8.481115, 47.36892], [8.481115, 47.36892], [8.481152, 47.368912], [8.481188, 47.368902], [8.481222, 47.368889], [8.481274, 47.368869], [8.481325, 47.368846], [8.481374, 47.368822], [8.481414, 47.368803], [8.48153, 47.368739], [8.481579, 47.368705], [8.481625, 47.368668], [8.481667, 47.368629], [8.481675, 47.368622], [8.481683, 47.368614], [8.48169, 47.368606], [8.48169, 47.368606], [8.481691, 47.368606], [8.481725, 47.368571], [8.481763, 47.368539], [8.481805, 47.368508], [8.481824, 47.368497], [8.481844, 47.368487], [8.481866, 47.368478], [8.481888, 47.368471], [8.481912, 47.368465], [8.481912, 47.368465], [8.482019, 47.368438], [8.482127, 47.368414], [8.482237, 47.368392], [8.482284, 47.368384], [8.482332, 47.368379], [8.48238, 47.368377], [8.482429, 47.368377], [8.482477, 47.368381], [8.482524, 47.368387], [8.482571, 47.368395], [8.482617, 47.368406], [8.482661, 47.36842], [8.482703, 47.368437], [8.482981, 47.368553], [8.483127, 47.36866]]], "type": "MultiLineString"}, "id": "1686", "properties": {}, "type": "Feature"}, {"bbox": [8.551986, 47.378722, 8.552554, 47.379177], "geometry": {"coordinates": [[[8.551986, 47.378722], [8.552118, 47.378803], [8.552554, 47.379177]]], "type": "MultiLineString"}, "id": "1687", "properties": {}, "type": "Feature"}, {"bbox": [8.584562, 47.400728, 8.58492, 47.401312], "geometry": {"coordinates": [[[8.584562, 47.400728], [8.584621, 47.40083], [8.58492, 47.401312]]], "type": "MultiLineString"}, "id": "1688", "properties": {}, "type": "Feature"}, {"bbox": [8.491308, 47.380252, 8.492347, 47.380899], "geometry": {"coordinates": [[[8.492347, 47.380252], [8.491988, 47.380503], [8.491515, 47.380801], [8.491308, 47.380899]]], "type": "MultiLineString"}, "id": "1689", "properties": {}, "type": "Feature"}, {"bbox": [8.552497, 47.412194, 8.552534, 47.413026], "geometry": {"coordinates": [[[8.552534, 47.412194], [8.552497, 47.413026]]], "type": "MultiLineString"}, "id": "1691", "properties": {}, "type": "Feature"}, {"bbox": [8.551396, 47.356965, 8.552167, 47.35867], "geometry": {"coordinates": [[[8.551396, 47.35867], [8.551623, 47.358075], [8.551831, 47.357646], [8.551881, 47.357547], [8.552144, 47.357023], [8.552167, 47.356965]]], "type": "MultiLineString"}, "id": "1694", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.348183, 8.52314, 47.349769], "geometry": {"coordinates": [[[8.52314, 47.348191], [8.5231, 47.348183], [8.523067, 47.348208], [8.523056, 47.348221], [8.523052, 47.348236], [8.523037, 47.348369], [8.523098, 47.348412], [8.52225, 47.348963], [8.521, 47.349769]]], "type": "MultiLineString"}, "id": "1695", "properties": {}, "type": "Feature"}, {"bbox": [8.50851, 47.409508, 8.508571, 47.409521], "geometry": {"coordinates": [[[8.50851, 47.409508], [8.508571, 47.409521]]], "type": "MultiLineString"}, "id": "1696", "properties": {}, "type": "Feature"}, {"bbox": [8.50649, 47.401806, 8.506826, 47.402106], "geometry": {"coordinates": [[[8.506826, 47.401806], [8.506714, 47.401919], [8.506569, 47.402059], [8.50649, 47.402106]]], "type": "MultiLineString"}, "id": "1700", "properties": {}, "type": "Feature"}, {"bbox": [8.524956, 47.428734, 8.525794, 47.429056], "geometry": {"coordinates": [[[8.525794, 47.429036], [8.52578, 47.429039], [8.525731, 47.429048], [8.52568, 47.429053], [8.525629, 47.429056], [8.525577, 47.429055], [8.525526, 47.429052], [8.525476, 47.429045], [8.525426, 47.429036], [8.525378, 47.429023], [8.525332, 47.429008], [8.525274, 47.428986], [8.52522, 47.42896], [8.525169, 47.428931], [8.525122, 47.428899], [8.525078, 47.428865], [8.525039, 47.428829], [8.525004, 47.42879], [8.524956, 47.428734]]], "type": "MultiLineString"}, "id": "1702", "properties": {}, "type": "Feature"}, {"bbox": [8.544084, 47.369061, 8.544673, 47.369365], "geometry": {"coordinates": [[[8.544084, 47.369061], [8.544269, 47.369167], [8.544661, 47.36933], [8.544673, 47.369365]]], "type": "MultiLineString"}, "id": "1704", "properties": {}, "type": "Feature"}, {"bbox": [8.529403, 47.39851, 8.53011, 47.39896], "geometry": {"coordinates": [[[8.529892, 47.39896], [8.529878, 47.39892], [8.529813, 47.398881], [8.529744, 47.398846], [8.529671, 47.398814], [8.529595, 47.398787], [8.529515, 47.398763], [8.529503, 47.398761], [8.529491, 47.398758], [8.529479, 47.398754], [8.529468, 47.398749], [8.529458, 47.398744], [8.529448, 47.398738], [8.529439, 47.398732], [8.529431, 47.398725], [8.529424, 47.398718], [8.529418, 47.39871], [8.529413, 47.398702], [8.529408, 47.398694], [8.529405, 47.398685], [8.529403, 47.398676], [8.529403, 47.398668], [8.529403, 47.398659], [8.529404, 47.39865], [8.529407, 47.398642], [8.529411, 47.398633], [8.529415, 47.398625], [8.529421, 47.398617], [8.529428, 47.39861], [8.529436, 47.398603], [8.529444, 47.398596], [8.529453, 47.39859], [8.529464, 47.398584], [8.529474, 47.398578], [8.529485, 47.398571], [8.529497, 47.398566], [8.52951, 47.398561], [8.529523, 47.398557], [8.529537, 47.398554], [8.529551, 47.398551], [8.529565, 47.39855], [8.529579, 47.398549], [8.53011, 47.39851], [8.530104, 47.398524], [8.530049, 47.398634]]], "type": "MultiLineString"}, "id": "1706", "properties": {}, "type": "Feature"}, {"bbox": [8.543278, 47.370783, 8.543443, 47.371019], "geometry": {"coordinates": [[[8.543322, 47.371019], [8.543373, 47.371009], [8.543443, 47.370783], [8.543278, 47.370791]]], "type": "MultiLineString"}, "id": "1709", "properties": {}, "type": "Feature"}, {"bbox": [8.535828, 47.431186, 8.53983, 47.431863], "geometry": {"coordinates": [[[8.53983, 47.431186], [8.539782, 47.431203], [8.539727, 47.431218], [8.539671, 47.43123], [8.539613, 47.431238], [8.539554, 47.431242], [8.5377, 47.431346], [8.537398, 47.431372], [8.537301, 47.431399], [8.537122, 47.431436], [8.53633, 47.431774], [8.536252, 47.431801], [8.536171, 47.431823], [8.536087, 47.43184], [8.536002, 47.431853], [8.535915, 47.43186], [8.535828, 47.431863]]], "type": "MultiLineString"}, "id": "1710", "properties": {}, "type": "Feature"}, {"bbox": [8.468761, 47.412267, 8.475857, 47.413287], "geometry": {"coordinates": [[[8.475857, 47.413287], [8.475794, 47.413278], [8.475233, 47.41321], [8.47506, 47.413189], [8.47479, 47.413156], [8.474626, 47.413136], [8.473582, 47.413019], [8.472556, 47.412879], [8.472024, 47.412799], [8.470556, 47.412589], [8.470032, 47.412511], [8.468761, 47.412267]]], "type": "MultiLineString"}, "id": "1711", "properties": {}, "type": "Feature"}, {"bbox": [8.478315, 47.41447, 8.480146, 47.415032], "geometry": {"coordinates": [[[8.480146, 47.41447], [8.480103, 47.414521], [8.480102, 47.414523], [8.4801, 47.414525], [8.480098, 47.414526], [8.480096, 47.414528], [8.480094, 47.414529], [8.480092, 47.414531], [8.48009, 47.414532], [8.480087, 47.414533], [8.480084, 47.414533], [8.480081, 47.414534], [8.480079, 47.414534], [8.480076, 47.414535], [8.480073, 47.414535], [8.48007, 47.414535], [8.479983, 47.414534], [8.479973, 47.414535], [8.479963, 47.414536], [8.479954, 47.414538], [8.479944, 47.41454], [8.479935, 47.414543], [8.479926, 47.414546], [8.479918, 47.41455], [8.47991, 47.414554], [8.479903, 47.414559], [8.479862, 47.414589], [8.479852, 47.414597], [8.479841, 47.414604], [8.47983, 47.41461], [8.479817, 47.414615], [8.479753, 47.414642], [8.479741, 47.414647], [8.479731, 47.414653], [8.479721, 47.41466], [8.479712, 47.414667], [8.479705, 47.414675], [8.479698, 47.414683], [8.4795, 47.414956], [8.479494, 47.414963], [8.479488, 47.41497], [8.479481, 47.414975], [8.479473, 47.414981], [8.479464, 47.414986], [8.479455, 47.41499], [8.479445, 47.414994], [8.479435, 47.414998], [8.479424, 47.415], [8.479292, 47.415032], [8.479212, 47.415007], [8.478992, 47.414962], [8.478947, 47.414951], [8.478882, 47.414944], [8.478594, 47.414902], [8.47845, 47.414837], [8.478315, 47.414755]]], "type": "MultiLineString"}, "id": "1712", "properties": {}, "type": "Feature"}, {"bbox": [8.524956, 47.404614, 8.525594, 47.407465], "geometry": {"coordinates": [[[8.525556, 47.404614], [8.525542, 47.404694], [8.525537, 47.404723], [8.525535, 47.404753], [8.525538, 47.404783], [8.525544, 47.404813], [8.525588, 47.40498], [8.525592, 47.405], [8.525594, 47.40502], [8.525592, 47.40504], [8.525588, 47.40506], [8.525581, 47.405079], [8.525572, 47.405098], [8.525561, 47.405116], [8.525561, 47.405116], [8.525533, 47.405155], [8.525469, 47.405243], [8.525447, 47.405272], [8.525422, 47.405299], [8.525394, 47.405326], [8.525364, 47.405355], [8.525338, 47.405385], [8.525315, 47.405417], [8.525285, 47.405461], [8.525252, 47.405505], [8.525217, 47.405548], [8.525199, 47.405571], [8.525182, 47.405595], [8.525168, 47.40562], [8.525168, 47.40562], [8.525096, 47.40575], [8.525003, 47.405895], [8.524985, 47.405924], [8.524972, 47.405955], [8.524962, 47.405986], [8.524957, 47.406018], [8.524956, 47.40605], [8.524959, 47.406082], [8.524966, 47.406114], [8.524977, 47.406145], [8.524993, 47.406175], [8.525012, 47.406205], [8.525035, 47.406233], [8.525062, 47.406259], [8.525092, 47.406284], [8.525124, 47.406307], [8.525168, 47.406336], [8.525209, 47.406367], [8.525245, 47.406401], [8.525277, 47.406437], [8.525313, 47.406518], [8.525345, 47.406601], [8.525373, 47.406685], [8.525375, 47.406699], [8.525376, 47.406714], [8.525374, 47.406729], [8.525371, 47.406744], [8.525366, 47.406758], [8.525359, 47.406773], [8.525224, 47.407002], [8.525096, 47.407232], [8.524977, 47.407465]]], "type": "MultiLineString"}, "id": "1715", "properties": {}, "type": "Feature"}, {"bbox": [8.52578, 47.429039, 8.530476, 47.43017], "geometry": {"coordinates": [[[8.530476, 47.429609], [8.530378, 47.429607], [8.530358, 47.429613], [8.530262, 47.429636], [8.530244, 47.42964], [8.530224, 47.429643], [8.530205, 47.429644], [8.530185, 47.429644], [8.529902, 47.42964], [8.529885, 47.429639], [8.529868, 47.429636], [8.529851, 47.429633], [8.529817, 47.429626], [8.529782, 47.429621], [8.529747, 47.429618], [8.529711, 47.429616], [8.529675, 47.429617], [8.529511, 47.429626], [8.529492, 47.429627], [8.529474, 47.42963], [8.529456, 47.429633], [8.529438, 47.429637], [8.529305, 47.429652], [8.529243, 47.42965], [8.52923, 47.42965], [8.529218, 47.429651], [8.529205, 47.429652], [8.529193, 47.429654], [8.529181, 47.429656], [8.52917, 47.42966], [8.528749, 47.429796], [8.528738, 47.4298], [8.528728, 47.429804], [8.528718, 47.429809], [8.52871, 47.429815], [8.528702, 47.429821], [8.528695, 47.429828], [8.528648, 47.429877], [8.528641, 47.429883], [8.528635, 47.429889], [8.528627, 47.429894], [8.528619, 47.429899], [8.52861, 47.429903], [8.528601, 47.429906], [8.528401, 47.429975], [8.528359, 47.429988], [8.528315, 47.429999], [8.52827, 47.430008], [8.528224, 47.430014], [8.52817, 47.430019], [8.528115, 47.430023], [8.52806, 47.430026], [8.527926, 47.430031], [8.527906, 47.430031], [8.527802, 47.430024], [8.527768, 47.430023], [8.527735, 47.430024], [8.527702, 47.430027], [8.52767, 47.430032], [8.527463, 47.43007], [8.527437, 47.430074], [8.52741, 47.430078], [8.527384, 47.430081], [8.527359, 47.430083], [8.527334, 47.430088], [8.52731, 47.430094], [8.527287, 47.430101], [8.52714, 47.430153], [8.527122, 47.430159], [8.527104, 47.430163], [8.527086, 47.430167], [8.527067, 47.430169], [8.527048, 47.43017], [8.527028, 47.43017], [8.527009, 47.430169], [8.52699, 47.430167], [8.526842, 47.430144], [8.526824, 47.430141], [8.526805, 47.430136], [8.526788, 47.43013], [8.526771, 47.430124], [8.526756, 47.430116], [8.526379, 47.429907], [8.526349, 47.429889], [8.526322, 47.429869], [8.526297, 47.429848], [8.52619, 47.429746], [8.526184, 47.429741], [8.526178, 47.429736], [8.526171, 47.429732], [8.526164, 47.429729], [8.526157, 47.429725], [8.526149, 47.429723], [8.526141, 47.42972], [8.526132, 47.429719], [8.526118, 47.429716], [8.526103, 47.429712], [8.52609, 47.429707], [8.526077, 47.429702], [8.525914, 47.429633], [8.525861, 47.429574], [8.525838, 47.429418], [8.525837, 47.429406], [8.525838, 47.429393], [8.52584, 47.429381], [8.525844, 47.429369], [8.525846, 47.429362], [8.525847, 47.429354], [8.525847, 47.429347], [8.525847, 47.42934], [8.525845, 47.429332], [8.525842, 47.429325], [8.525839, 47.429318], [8.525835, 47.429311], [8.525827, 47.4293], [8.525821, 47.429288], [8.525817, 47.429275], [8.525814, 47.429263], [8.52578, 47.429039]]], "type": "MultiLineString"}, "id": "1716", "properties": {}, "type": "Feature"}, {"bbox": [8.567888, 47.348887, 8.570545, 47.349993], "geometry": {"coordinates": [[[8.567888, 47.349993], [8.568411, 47.349314], [8.568656, 47.348984], [8.568707, 47.348961], [8.568761, 47.34894], [8.568817, 47.348922], [8.568876, 47.348908], [8.568935, 47.348898], [8.568997, 47.348891], [8.569058, 47.348887], [8.56912, 47.348887], [8.569182, 47.348891], [8.569243, 47.348899], [8.569303, 47.34891], [8.569361, 47.348924], [8.569417, 47.348942], [8.569761, 47.349057], [8.569913, 47.348887], [8.570545, 47.349109]]], "type": "MultiLineString"}, "id": "1717", "properties": {}, "type": "Feature"}, {"bbox": [8.579742, 47.372468, 8.593184, 47.374858], "geometry": {"coordinates": [[[8.579742, 47.374595], [8.579763, 47.374586], [8.579785, 47.374579], [8.579807, 47.374573], [8.57983, 47.374569], [8.579854, 47.374565], [8.579877, 47.374563], [8.579901, 47.374563], [8.57999, 47.374565], [8.580079, 47.37457], [8.580168, 47.374578], [8.581357, 47.374771], [8.581645, 47.374817], [8.581937, 47.374846], [8.582232, 47.374858], [8.582527, 47.374853], [8.582821, 47.374831], [8.583111, 47.374793], [8.583395, 47.374738], [8.584349, 47.374566], [8.58476, 47.374473], [8.58516, 47.374363], [8.585549, 47.374235], [8.585616, 47.374209], [8.585678, 47.37418], [8.585737, 47.374147], [8.585792, 47.374111], [8.585938, 47.373946], [8.587143, 47.372836], [8.587194, 47.372799], [8.587249, 47.372765], [8.587307, 47.372734], [8.587398, 47.372726], [8.587489, 47.372719], [8.58792, 47.372724], [8.588809, 47.372753], [8.589083, 47.372754], [8.589331, 47.372723], [8.589437, 47.372704], [8.590258, 47.372495], [8.590368, 47.37248], [8.590478, 47.372471], [8.59059, 47.372468], [8.590701, 47.372472], [8.590767, 47.372472], [8.591098, 47.37247], [8.591265, 47.372476], [8.59145, 47.372482], [8.591633, 47.372498], [8.591814, 47.372525], [8.59199, 47.372563], [8.592161, 47.372611], [8.592326, 47.372669], [8.592482, 47.372736], [8.592629, 47.372813], [8.592766, 47.372897], [8.592794, 47.372915], [8.59282, 47.372935], [8.592844, 47.372956], [8.592864, 47.372979], [8.592881, 47.373003], [8.592895, 47.373028], [8.592906, 47.373053], [8.592913, 47.373079], [8.592917, 47.373105], [8.592952, 47.373374], [8.592957, 47.373401], [8.592964, 47.373427], [8.592975, 47.373453], [8.592989, 47.373478], [8.593007, 47.373502], [8.593027, 47.373524], [8.59305, 47.373546], [8.593075, 47.373566], [8.593104, 47.373585], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "1721", "properties": {}, "type": "Feature"}, {"bbox": [8.533998, 47.343412, 8.534644, 47.3438], "geometry": {"coordinates": [[[8.534644, 47.3438], [8.533998, 47.343412]]], "type": "MultiLineString"}, "id": "1722", "properties": {}, "type": "Feature"}, {"bbox": [8.54891, 47.414027, 8.551709, 47.417037], "geometry": {"coordinates": [[[8.548921, 47.414027], [8.54891, 47.41423], [8.549015, 47.414416], [8.549066, 47.4148], [8.549088, 47.41495], [8.54915, 47.415076], [8.549181, 47.415179], [8.5492, 47.415259], [8.549239, 47.415413], [8.549257, 47.415487], [8.549285, 47.415561], [8.549323, 47.415632], [8.549371, 47.4157], [8.549428, 47.415765], [8.549437, 47.415775], [8.549463, 47.415803], [8.54991, 47.41629], [8.55039, 47.416806], [8.550453, 47.416875], [8.550455, 47.416877], [8.550478, 47.416901], [8.550505, 47.416924], [8.550534, 47.416945], [8.550567, 47.416965], [8.550601, 47.416982], [8.550638, 47.416997], [8.550676, 47.41701], [8.550716, 47.41702], [8.550757, 47.417028], [8.5508, 47.417034], [8.550842, 47.417037], [8.550885, 47.417037], [8.551407, 47.417033], [8.551533, 47.417032], [8.55166, 47.417005], [8.551709, 47.416994]]], "type": "MultiLineString"}, "id": "1726", "properties": {}, "type": "Feature"}, {"bbox": [8.481624, 47.385164, 8.481904, 47.38552], "geometry": {"coordinates": [[[8.481624, 47.38552], [8.481653, 47.385513], [8.48168, 47.385504], [8.481707, 47.385494], [8.481731, 47.385483], [8.481755, 47.385469], [8.481776, 47.385455], [8.481796, 47.385439], [8.481813, 47.385422], [8.481828, 47.385404], [8.481841, 47.385386], [8.481851, 47.385366], [8.481858, 47.385347], [8.481863, 47.385326], [8.481875, 47.385272], [8.481888, 47.385218], [8.481904, 47.385164]]], "type": "MultiLineString"}, "id": "1730", "properties": {}, "type": "Feature"}, {"bbox": [8.513107, 47.391731, 8.519082, 47.394196], "geometry": {"coordinates": [[[8.518876, 47.391731], [8.519082, 47.392074], [8.51908, 47.392179], [8.519036, 47.392204], [8.518114, 47.392429], [8.517738, 47.392536], [8.517153, 47.392733], [8.516899, 47.392814], [8.516735, 47.392888], [8.515895, 47.393193], [8.51572, 47.393251], [8.5148, 47.393617], [8.51462, 47.393682], [8.514444, 47.39375], [8.51427, 47.393822], [8.513929, 47.393968], [8.513924, 47.39397], [8.513918, 47.393972], [8.513912, 47.393973], [8.513906, 47.393974], [8.513899, 47.393974], [8.513893, 47.393975], [8.513887, 47.393975], [8.51388, 47.393974], [8.513874, 47.393973], [8.513868, 47.393972], [8.513862, 47.39397], [8.513857, 47.393968], [8.513851, 47.393966], [8.513846, 47.393963], [8.513842, 47.39396], [8.513838, 47.393957], [8.513834, 47.393954], [8.51383, 47.393951], [8.513825, 47.393949], [8.51382, 47.393947], [8.513815, 47.393945], [8.51381, 47.393943], [8.513804, 47.393942], [8.513799, 47.393941], [8.513793, 47.393941], [8.513787, 47.39394], [8.513781, 47.39394], [8.513775, 47.393941], [8.51377, 47.393942], [8.513764, 47.393943], [8.513758, 47.393944], [8.513648, 47.393979], [8.51364, 47.393983], [8.513634, 47.393986], [8.513628, 47.393991], [8.513622, 47.393995], [8.513618, 47.394], [8.513614, 47.394005], [8.51361, 47.394011], [8.513607, 47.394016], [8.513605, 47.394022], [8.513604, 47.394028], [8.513604, 47.394034], [8.513604, 47.39404], [8.513606, 47.394046], [8.513606, 47.394049], [8.513605, 47.394053], [8.513604, 47.394057], [8.513603, 47.394061], [8.513601, 47.394064], [8.513599, 47.394068], [8.513596, 47.394071], [8.513593, 47.394074], [8.51359, 47.394077], [8.513586, 47.39408], [8.513582, 47.394082], [8.513577, 47.394085], [8.513573, 47.394087], [8.513568, 47.394088], [8.513562, 47.39409], [8.513557, 47.394091], [8.513552, 47.394092], [8.513406, 47.394131], [8.513258, 47.394166], [8.513107, 47.394196]]], "type": "MultiLineString"}, "id": "1731", "properties": {}, "type": "Feature"}, {"bbox": [8.488447, 47.351215, 8.490099, 47.352545], "geometry": {"coordinates": [[[8.490099, 47.351215], [8.490092, 47.351215], [8.490084, 47.351215], [8.490077, 47.351216], [8.490069, 47.351217], [8.490062, 47.351219], [8.490055, 47.351221], [8.490048, 47.351223], [8.490042, 47.351226], [8.490036, 47.351229], [8.490031, 47.351233], [8.490026, 47.351237], [8.490021, 47.351244], [8.490017, 47.351251], [8.490014, 47.351259], [8.490012, 47.351266], [8.490011, 47.351274], [8.490011, 47.351282], [8.490012, 47.351288], [8.490013, 47.351294], [8.490014, 47.3513], [8.490013, 47.351306], [8.490012, 47.351312], [8.49001, 47.351318], [8.490007, 47.351324], [8.490003, 47.351329], [8.489986, 47.351346], [8.489972, 47.351364], [8.48996, 47.351382], [8.489951, 47.351402], [8.489945, 47.351421], [8.489945, 47.351421], [8.489945, 47.351422], [8.48993, 47.351462], [8.489911, 47.351501], [8.489887, 47.351539], [8.489858, 47.351576], [8.489825, 47.351611], [8.489787, 47.351643], [8.48972, 47.351684], [8.489656, 47.351725], [8.489595, 47.351769], [8.489529, 47.351821], [8.489467, 47.351875], [8.489411, 47.351932], [8.489377, 47.351979], [8.489341, 47.352025], [8.489301, 47.352069], [8.489288, 47.352079], [8.489273, 47.352088], [8.489258, 47.352096], [8.489241, 47.352103], [8.489224, 47.352109], [8.489206, 47.352113], [8.489187, 47.352117], [8.489168, 47.35212], [8.489149, 47.352121], [8.489129, 47.352121], [8.48911, 47.35212], [8.489091, 47.352118], [8.489141, 47.352174], [8.489148, 47.352177], [8.489154, 47.352181], [8.489159, 47.352185], [8.489164, 47.35219], [8.489169, 47.352194], [8.489172, 47.352199], [8.489175, 47.352205], [8.489178, 47.35221], [8.489179, 47.352216], [8.489184, 47.35224], [8.489185, 47.352265], [8.489182, 47.352289], [8.489176, 47.352313], [8.489175, 47.352325], [8.489176, 47.352336], [8.489178, 47.352347], [8.489182, 47.352358], [8.489187, 47.352369], [8.489187, 47.352369], [8.489207, 47.352403], [8.489209, 47.352408], [8.489211, 47.352414], [8.489212, 47.352419], [8.489213, 47.352425], [8.489212, 47.35243], [8.489211, 47.352436], [8.48921, 47.352441], [8.489207, 47.352446], [8.489204, 47.352452], [8.4892, 47.352457], [8.489196, 47.352461], [8.489191, 47.352466], [8.489186, 47.35247], [8.48918, 47.352474], [8.489173, 47.352477], [8.489167, 47.35248], [8.489159, 47.352483], [8.489152, 47.352485], [8.489144, 47.352487], [8.489136, 47.352489], [8.489118, 47.352493], [8.489101, 47.352499], [8.489084, 47.352506], [8.489069, 47.352514], [8.489054, 47.352523], [8.489042, 47.352529], [8.489029, 47.352534], [8.489016, 47.352538], [8.489002, 47.352541], [8.488988, 47.352543], [8.488974, 47.352545], [8.488959, 47.352545], [8.488944, 47.352545], [8.48893, 47.352544], [8.488916, 47.352542], [8.488902, 47.352539], [8.488888, 47.352535], [8.488876, 47.35253], [8.488863, 47.352525], [8.488845, 47.352517], [8.488826, 47.35251], [8.488807, 47.352504], [8.488786, 47.3525], [8.488765, 47.352496], [8.488755, 47.352496], [8.488745, 47.352496], [8.488735, 47.352495], [8.488726, 47.352493], [8.488716, 47.352491], [8.488707, 47.352488], [8.488698, 47.352485], [8.48869, 47.352481], [8.488682, 47.352477], [8.488674, 47.352473], [8.488668, 47.352468], [8.48854, 47.352391], [8.488521, 47.352393], [8.488502, 47.352395], [8.488483, 47.352399], [8.488465, 47.352403], [8.488447, 47.352409]]], "type": "MultiLineString"}, "id": "1734", "properties": {}, "type": "Feature"}, {"bbox": [8.52738, 47.41442, 8.528176, 47.414532], "geometry": {"coordinates": [[[8.528176, 47.41442], [8.528141, 47.414423], [8.52738, 47.414532]]], "type": "MultiLineString"}, "id": "1735", "properties": {}, "type": "Feature"}, {"bbox": [8.536132, 47.406468, 8.537944, 47.406856], "geometry": {"coordinates": [[[8.537944, 47.406501], [8.537787, 47.406468], [8.537305, 47.406574], [8.536213, 47.406812], [8.536132, 47.406856]]], "type": "MultiLineString"}, "id": "1737", "properties": {}, "type": "Feature"}, {"bbox": [8.490942, 47.416802, 8.494306, 47.418888], "geometry": {"coordinates": [[[8.494306, 47.416802], [8.494254, 47.416827], [8.494182, 47.416868], [8.492185, 47.418073], [8.491955, 47.418215], [8.491931, 47.418229], [8.491905, 47.418241], [8.491879, 47.418252], [8.491792, 47.418283], [8.491792, 47.418283], [8.491734, 47.418307], [8.49168, 47.418335], [8.491629, 47.418366], [8.491584, 47.4184], [8.491543, 47.418437], [8.491508, 47.418476], [8.491463, 47.418528], [8.491413, 47.418577], [8.491359, 47.418625], [8.491198, 47.418759], [8.491168, 47.418782], [8.491136, 47.418802], [8.491101, 47.418821], [8.491063, 47.418838], [8.490942, 47.418888]]], "type": "MultiLineString"}, "id": "1738", "properties": {}, "type": "Feature"}, {"bbox": [8.583386, 47.355952, 8.583901, 47.356072], "geometry": {"coordinates": [[[8.583386, 47.355952], [8.583497, 47.355964], [8.58381, 47.356052], [8.583901, 47.356072]]], "type": "MultiLineString"}, "id": "1739", "properties": {}, "type": "Feature"}, {"bbox": [8.602469, 47.356908, 8.609922, 47.359326], "geometry": {"coordinates": [[[8.602469, 47.359326], [8.602563, 47.359154], [8.602662, 47.359003], [8.602822, 47.358773], [8.602867, 47.358705], [8.602911, 47.358636], [8.602953, 47.358567], [8.60298, 47.358522], [8.603008, 47.358478], [8.603036, 47.358434], [8.603051, 47.358412], [8.603065, 47.35839], [8.60308, 47.358369], [8.603113, 47.358324], [8.603148, 47.358281], [8.603187, 47.358239], [8.603257, 47.358167], [8.603328, 47.358097], [8.603402, 47.358028], [8.603402, 47.358028], [8.603452, 47.357982], [8.603452, 47.357982], [8.603587, 47.35786], [8.603726, 47.35774], [8.603867, 47.357622], [8.603931, 47.35757], [8.603999, 47.357522], [8.604072, 47.357476], [8.604072, 47.357476], [8.604128, 47.357446], [8.604187, 47.35742], [8.604248, 47.357396], [8.604293, 47.357381], [8.604338, 47.357369], [8.604386, 47.357359], [8.604513, 47.35733], [8.604641, 47.357302], [8.60477, 47.357275], [8.605159, 47.357209], [8.605555, 47.357166], [8.605956, 47.357149], [8.607183, 47.357109], [8.608028, 47.357115], [8.608205, 47.357118], [8.608382, 47.357126], [8.608558, 47.357139], [8.608619, 47.357146], [8.60868, 47.357149], [8.608742, 47.357148], [8.608804, 47.357144], [8.608865, 47.357136], [8.608924, 47.357124], [8.608982, 47.357108], [8.609464, 47.356965], [8.609536, 47.356944], [8.609611, 47.356928], [8.609688, 47.356917], [8.609766, 47.35691], [8.609844, 47.356908], [8.609922, 47.35691]]], "type": "MultiLineString"}, "id": "1740", "properties": {}, "type": "Feature"}, {"bbox": [8.48976, 47.403773, 8.490019, 47.404375], "geometry": {"coordinates": [[[8.48976, 47.403773], [8.489766, 47.403778], [8.489776, 47.403784], [8.489787, 47.403789], [8.489798, 47.403794], [8.48981, 47.403798], [8.489822, 47.403802], [8.489835, 47.403805], [8.489848, 47.403807], [8.489861, 47.403808], [8.489875, 47.403808], [8.489888, 47.403808], [8.489901, 47.403806], [8.489935, 47.404043], [8.489989, 47.404314], [8.489998, 47.404333], [8.490019, 47.404375]]], "type": "MultiLineString"}, "id": "1741", "properties": {}, "type": "Feature"}, {"bbox": [8.508495, 47.362841, 8.511656, 47.364156], "geometry": {"coordinates": [[[8.511656, 47.364156], [8.510383, 47.363764], [8.509747, 47.363507], [8.509291, 47.363294], [8.508852, 47.363081], [8.508495, 47.362841]]], "type": "MultiLineString"}, "id": "1742", "properties": {}, "type": "Feature"}, {"bbox": [8.526681, 47.365485, 8.528983, 47.367448], "geometry": {"coordinates": [[[8.528947, 47.367448], [8.528983, 47.367376], [8.528699, 47.367275], [8.528619, 47.367247], [8.528543, 47.367214], [8.528472, 47.367177], [8.528406, 47.367136], [8.528345, 47.367091], [8.52829, 47.367043], [8.528242, 47.366991], [8.528201, 47.366937], [8.528167, 47.366881], [8.52814, 47.366801], [8.528102, 47.366723], [8.528054, 47.366648], [8.527997, 47.366576], [8.527514, 47.365968], [8.527472, 47.365914], [8.527423, 47.365863], [8.527369, 47.365815], [8.527308, 47.36577], [8.527241, 47.365729], [8.52717, 47.365693], [8.526861, 47.365545], [8.526681, 47.365485]]], "type": "MultiLineString"}, "id": "1743", "properties": {}, "type": "Feature"}, {"bbox": [8.579633, 47.357136, 8.580269, 47.35846], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580269, 47.357238], [8.580258, 47.35734], [8.580234, 47.357441], [8.580197, 47.35754], [8.580147, 47.357636], [8.580085, 47.357729], [8.579786, 47.35811], [8.579644, 47.35834], [8.579633, 47.358391], [8.579649, 47.35846]]], "type": "MultiLineString"}, "id": "1744", "properties": {}, "type": "Feature"}, {"bbox": [8.557247, 47.358921, 8.563315, 47.359534], "geometry": {"coordinates": [[[8.557247, 47.358974], [8.557488, 47.358921], [8.558078, 47.359172], [8.558259, 47.359236], [8.558409, 47.359276], [8.558708, 47.359373], [8.559326, 47.359446], [8.56013, 47.359532], [8.560185, 47.359534], [8.560239, 47.359533], [8.560292, 47.359529], [8.560346, 47.359522], [8.560398, 47.359511], [8.560448, 47.359498], [8.560497, 47.359482], [8.560544, 47.359464], [8.560708, 47.359378], [8.560726, 47.35937], [8.560744, 47.359362], [8.560763, 47.359356], [8.560782, 47.359351], [8.560802, 47.359347], [8.561031, 47.359302], [8.561069, 47.3593], [8.561108, 47.359301], [8.561146, 47.359305], [8.561183, 47.359311], [8.56122, 47.359318], [8.561255, 47.359329], [8.561289, 47.359341], [8.561322, 47.359355], [8.561352, 47.359371], [8.56138, 47.359389], [8.561406, 47.359408], [8.561459, 47.359429], [8.561572, 47.359415], [8.561682, 47.359507], [8.562358, 47.35941], [8.562514, 47.359352], [8.562754, 47.359312], [8.563157, 47.359192], [8.563315, 47.359155]]], "type": "MultiLineString"}, "id": "1747", "properties": {}, "type": "Feature"}, {"bbox": [8.481082, 47.405132, 8.48188, 47.405949], "geometry": {"coordinates": [[[8.48188, 47.405132], [8.481824, 47.405357], [8.481607, 47.405629], [8.481097, 47.405795], [8.481082, 47.405949]]], "type": "MultiLineString"}, "id": "1748", "properties": {}, "type": "Feature"}, {"bbox": [8.466911, 47.366529, 8.4739, 47.368805], "geometry": {"coordinates": [[[8.4739, 47.368805], [8.473886, 47.368735], [8.473862, 47.368694], [8.473837, 47.368654], [8.473809, 47.368614], [8.473786, 47.368582], [8.47376, 47.368552], [8.473733, 47.368521], [8.473702, 47.368491], [8.473666, 47.368462], [8.473627, 47.368436], [8.473556, 47.368395], [8.473483, 47.368356], [8.473408, 47.368318], [8.47332, 47.368279], [8.473229, 47.368244], [8.473134, 47.368213], [8.472902, 47.368144], [8.472671, 47.368073], [8.47244, 47.368002], [8.472239, 47.367938], [8.472039, 47.367874], [8.471839, 47.36781], [8.471702, 47.367765], [8.471566, 47.367718], [8.471431, 47.367669], [8.47121, 47.367588], [8.471131, 47.367562], [8.47105, 47.367541], [8.470967, 47.367523], [8.470882, 47.36751], [8.470769, 47.367496], [8.470656, 47.367481], [8.470544, 47.367465], [8.469806, 47.367358], [8.469668, 47.367337], [8.469532, 47.367314], [8.469396, 47.367287], [8.46919, 47.367242], [8.468988, 47.367191], [8.468789, 47.367133], [8.468694, 47.367104], [8.468599, 47.367073], [8.468505, 47.367042], [8.468408, 47.367008], [8.4683, 47.366969], [8.468194, 47.366929], [8.468088, 47.366888], [8.467957, 47.366836], [8.467826, 47.366785], [8.467693, 47.366735], [8.467411, 47.366628], [8.467337, 47.366602], [8.467261, 47.36658], [8.467182, 47.366562], [8.467153, 47.366556], [8.467122, 47.366551], [8.467092, 47.366547], [8.466911, 47.366529]]], "type": "MultiLineString"}, "id": "1754", "properties": {}, "type": "Feature"}, {"bbox": [8.520252, 47.33266, 8.521331, 47.336977], "geometry": {"coordinates": [[[8.520582, 47.336977], [8.520562, 47.336732], [8.520561, 47.336656], [8.520562, 47.33652], [8.520569, 47.336427], [8.520609, 47.33624], [8.520631, 47.336176], [8.520711, 47.335962], [8.520813, 47.335753], [8.520937, 47.335549], [8.521062, 47.335358], [8.521153, 47.335162], [8.521215, 47.334903], [8.521228, 47.334777], [8.521228, 47.334777], [8.521237, 47.334729], [8.521248, 47.334682], [8.521261, 47.334635], [8.521261, 47.334635], [8.521327, 47.334415], [8.52133, 47.334402], [8.521331, 47.334389], [8.521331, 47.334376], [8.521328, 47.334363], [8.521252, 47.334071], [8.5212, 47.333946], [8.521082, 47.333754], [8.520969, 47.333569], [8.520897, 47.333441], [8.520826, 47.333327], [8.520755, 47.33323], [8.520642, 47.333095], [8.520389, 47.332814], [8.520293, 47.332706], [8.520252, 47.33266]]], "type": "MultiLineString"}, "id": "1755", "properties": {}, "type": "Feature"}, {"bbox": [8.539418, 47.391994, 8.540486, 47.392633], "geometry": {"coordinates": [[[8.539418, 47.391994], [8.539638, 47.392119], [8.539648, 47.392127], [8.539656, 47.392135], [8.539664, 47.392143], [8.53967, 47.392152], [8.539676, 47.392162], [8.53968, 47.392172], [8.539683, 47.392181], [8.539684, 47.392191], [8.539684, 47.392202], [8.539683, 47.392212], [8.539681, 47.392221], [8.539654, 47.392332], [8.539878, 47.39245], [8.539862, 47.39254], [8.540486, 47.392633]]], "type": "MultiLineString"}, "id": "1762", "properties": {}, "type": "Feature"}, {"bbox": [8.552721, 47.395568, 8.562674, 47.399967], "geometry": {"coordinates": [[[8.552721, 47.395568], [8.552852, 47.395654], [8.55328, 47.395962], [8.55328, 47.395963], [8.553363, 47.396028], [8.55344, 47.396096], [8.55351, 47.396167], [8.554036, 47.396698], [8.554169, 47.396835], [8.554235, 47.396902], [8.554456, 47.397126], [8.555162, 47.397834], [8.555246, 47.397904], [8.555339, 47.397967], [8.555441, 47.398024], [8.555551, 47.398074], [8.555939, 47.398227], [8.555939, 47.398227], [8.556072, 47.398285], [8.556203, 47.398347], [8.556329, 47.398412], [8.556582, 47.398546], [8.556823, 47.398674], [8.557374, 47.398963], [8.557459, 47.399008], [8.557593, 47.399078], [8.557647, 47.399104], [8.557703, 47.399127], [8.557761, 47.399148], [8.557792, 47.399159], [8.557821, 47.399171], [8.557848, 47.399185], [8.557873, 47.399201], [8.557896, 47.399219], [8.557917, 47.399237], [8.557944, 47.39926], [8.557974, 47.399282], [8.558007, 47.399302], [8.558007, 47.399302], [8.558519, 47.399574], [8.55852, 47.399574], [8.55852, 47.399575], [8.558572, 47.399604], [8.558625, 47.399632], [8.55868, 47.399658], [8.55868, 47.399658], [8.558681, 47.399658], [8.558755, 47.399694], [8.558834, 47.399725], [8.558916, 47.399751], [8.559, 47.399773], [8.559087, 47.399791], [8.559088, 47.399791], [8.559287, 47.399831], [8.559684, 47.399912], [8.559771, 47.399925], [8.559859, 47.399934], [8.559948, 47.399937], [8.560036, 47.399936], [8.560125, 47.399929], [8.560212, 47.399918], [8.560297, 47.399902], [8.560475, 47.399854], [8.560653, 47.399807], [8.560831, 47.399759], [8.56095, 47.399727], [8.561072, 47.3997], [8.561197, 47.39968], [8.561472, 47.39964], [8.561539, 47.39963], [8.562086, 47.399551], [8.562167, 47.399539], [8.562203, 47.399535], [8.56224, 47.399533], [8.562277, 47.399533], [8.562314, 47.399535], [8.56235, 47.39954], [8.562386, 47.399547], [8.56242, 47.399556], [8.562454, 47.399567], [8.562485, 47.399579], [8.562515, 47.399594], [8.562543, 47.399611], [8.562569, 47.399629], [8.562592, 47.399648], [8.562613, 47.399669], [8.56263, 47.39969], [8.562645, 47.399713], [8.562657, 47.399736], [8.562665, 47.399759], [8.562671, 47.399783], [8.562674, 47.399807], [8.562674, 47.399832], [8.56267, 47.399856], [8.562648, 47.399967]]], "type": "MultiLineString"}, "id": "1763", "properties": {}, "type": "Feature"}, {"bbox": [8.489473, 47.412472, 8.492633, 47.416769], "geometry": {"coordinates": [[[8.492633, 47.412472], [8.492492, 47.412833], [8.492485, 47.412905], [8.49208, 47.413692], [8.492037, 47.413773], [8.491991, 47.413853], [8.491942, 47.413932], [8.491688, 47.414332], [8.491636, 47.414416], [8.491587, 47.414501], [8.491541, 47.414586], [8.491281, 47.415088], [8.491173, 47.415358], [8.491095, 47.415583], [8.491082, 47.415615], [8.491064, 47.415647], [8.491042, 47.415677], [8.491016, 47.415706], [8.490986, 47.415733], [8.490916, 47.415793], [8.490849, 47.415855], [8.490786, 47.415919], [8.490429, 47.416292], [8.49039, 47.416329], [8.490346, 47.416363], [8.490299, 47.416395], [8.4899, 47.416638], [8.489853, 47.416664], [8.489803, 47.416686], [8.48975, 47.416706], [8.489585, 47.416759], [8.489473, 47.416769]]], "type": "MultiLineString"}, "id": "1764", "properties": {}, "type": "Feature"}, {"bbox": [8.469507, 47.364213, 8.475451, 47.367762], "geometry": {"coordinates": [[[8.475309, 47.367762], [8.475338, 47.367569], [8.475451, 47.366883], [8.475451, 47.366865], [8.475451, 47.366846], [8.47545, 47.366827], [8.47545, 47.366827], [8.47545, 47.366827], [8.475444, 47.366779], [8.475436, 47.366731], [8.475425, 47.366683], [8.475425, 47.366682], [8.475425, 47.366682], [8.475411, 47.36664], [8.475394, 47.366599], [8.475374, 47.366558], [8.475374, 47.366558], [8.47525, 47.366292], [8.475162, 47.36613], [8.47515, 47.366111], [8.475135, 47.366092], [8.475118, 47.366074], [8.475099, 47.366057], [8.475078, 47.366041], [8.475055, 47.366027], [8.47503, 47.366014], [8.475004, 47.366003], [8.474976, 47.365993], [8.474947, 47.365985], [8.474917, 47.365978], [8.474887, 47.365974], [8.474806, 47.365977], [8.474661, 47.365982], [8.474517, 47.365995], [8.474374, 47.366013], [8.473197, 47.366195], [8.473171, 47.366198], [8.473145, 47.366199], [8.473119, 47.3662], [8.473093, 47.366198], [8.473068, 47.366195], [8.473042, 47.366191], [8.473017, 47.366184], [8.472993, 47.366177], [8.472969, 47.366168], [8.472948, 47.366157], [8.472927, 47.366146], [8.472499, 47.365878], [8.472194, 47.365702], [8.472139, 47.365669], [8.472084, 47.365634], [8.472032, 47.365599], [8.471411, 47.365166], [8.471317, 47.365106], [8.471218, 47.36505], [8.471113, 47.365], [8.470625, 47.364784], [8.470543, 47.364757], [8.470404, 47.364712], [8.47003, 47.364574], [8.469941, 47.364538], [8.469858, 47.364496], [8.469782, 47.364449], [8.469712, 47.364397], [8.46965, 47.364341], [8.469642, 47.364334], [8.469635, 47.364327], [8.469628, 47.36432], [8.469577, 47.364269], [8.469572, 47.364261], [8.469567, 47.364254], [8.469561, 47.364246], [8.469554, 47.36424], [8.469546, 47.364233], [8.469537, 47.364228], [8.469528, 47.364222], [8.469518, 47.364217], [8.469507, 47.364213]]], "type": "MultiLineString"}, "id": "1765", "properties": {}, "type": "Feature"}, {"bbox": [8.563228, 47.38823, 8.573433, 47.392813], "geometry": {"coordinates": [[[8.573433, 47.38823], [8.573409, 47.388243], [8.573385, 47.388257], [8.573362, 47.388271], [8.573322, 47.388296], [8.573244, 47.388345], [8.573124, 47.388422], [8.572775, 47.388658], [8.57266, 47.388731], [8.572536, 47.388798], [8.572406, 47.388858], [8.572066, 47.389004], [8.571994, 47.389037], [8.571924, 47.389071], [8.571856, 47.389109], [8.571564, 47.389277], [8.571425, 47.389352], [8.57128, 47.389422], [8.57113, 47.389486], [8.57058, 47.389706], [8.568859, 47.390408], [8.567535, 47.390936], [8.567491, 47.390953], [8.56742, 47.390983], [8.567325, 47.391019], [8.566993, 47.391156], [8.56571, 47.391694], [8.565029, 47.391992], [8.564137, 47.392397], [8.56361, 47.392628], [8.563355, 47.39274], [8.563228, 47.392813]]], "type": "MultiLineString"}, "id": "1766", "properties": {}, "type": "Feature"}, {"bbox": [8.487645, 47.379847, 8.490312, 47.381555], "geometry": {"coordinates": [[[8.490312, 47.379847], [8.490296, 47.379889], [8.490274, 47.37993], [8.490247, 47.379969], [8.490215, 47.380007], [8.490178, 47.380042], [8.490137, 47.380075], [8.490091, 47.380106], [8.489365, 47.380534], [8.489353, 47.380541], [8.489341, 47.380546], [8.489327, 47.380551], [8.489313, 47.380555], [8.489298, 47.380558], [8.489283, 47.380561], [8.488948, 47.380599], [8.48892, 47.380603], [8.488893, 47.380609], [8.488867, 47.380616], [8.488842, 47.380625], [8.488818, 47.380635], [8.488796, 47.380647], [8.487668, 47.381317], [8.487665, 47.381319], [8.487662, 47.381321], [8.48766, 47.381323], [8.487657, 47.381326], [8.487656, 47.381328], [8.487654, 47.381331], [8.487653, 47.381334], [8.487652, 47.381336], [8.487652, 47.381339], [8.487647, 47.381379], [8.487645, 47.381438], [8.487651, 47.381497], [8.487665, 47.381555]]], "type": "MultiLineString"}, "id": "1767", "properties": {}, "type": "Feature"}, {"bbox": [8.520451, 47.324721, 8.523603, 47.332529], "geometry": {"coordinates": [[[8.523603, 47.325062], [8.523556, 47.325021], [8.523387, 47.324892], [8.523297, 47.324818], [8.523274, 47.324799], [8.523171, 47.324721], [8.522998, 47.324727], [8.522634, 47.324837], [8.522432, 47.324863], [8.522241, 47.324882], [8.522194, 47.324898], [8.521776, 47.325083], [8.521564, 47.325183], [8.52143, 47.325267], [8.521282, 47.325461], [8.521186, 47.325697], [8.521116, 47.32588], [8.521058, 47.32603], [8.521027, 47.326175], [8.520999, 47.326302], [8.520927, 47.326525], [8.520877, 47.326678], [8.520768, 47.326961], [8.52072, 47.327122], [8.520723, 47.32715], [8.520729, 47.32723], [8.520742, 47.327497], [8.520718, 47.327625], [8.520598, 47.327963], [8.520543, 47.328246], [8.520461, 47.32858], [8.520461, 47.328934], [8.520462, 47.329043], [8.520463, 47.329212], [8.520463, 47.329318], [8.520456, 47.329537], [8.520451, 47.329716], [8.520476, 47.329828], [8.520639, 47.330063], [8.520656, 47.33009], [8.52067, 47.330118], [8.52068, 47.330146], [8.520687, 47.330175], [8.52069, 47.330205], [8.520698, 47.330263], [8.520714, 47.33032], [8.520738, 47.330375], [8.520803, 47.330502], [8.520841, 47.330572], [8.520884, 47.330641], [8.520931, 47.330709], [8.520972, 47.330771], [8.521007, 47.330834], [8.521035, 47.330899], [8.521096, 47.33106], [8.521126, 47.331126], [8.521161, 47.331191], [8.521201, 47.331254], [8.521337, 47.331425], [8.521436, 47.331594], [8.521502, 47.331813], [8.521533, 47.331915], [8.521623, 47.332019], [8.52163, 47.332023], [8.521641, 47.33203], [8.521734, 47.33209], [8.522008, 47.3322], [8.522052, 47.332219], [8.522126, 47.332249], [8.522236, 47.332294], [8.522253, 47.332301], [8.522439, 47.332378], [8.522741, 47.33247], [8.522759, 47.332475], [8.523137, 47.332519], [8.523248, 47.332529]]], "type": "MultiLineString"}, "id": "1768", "properties": {}, "type": "Feature"}, {"bbox": [8.538051, 47.414344, 8.538632, 47.414835], "geometry": {"coordinates": [[[8.538632, 47.414344], [8.538631, 47.414377], [8.538051, 47.41441], [8.538097, 47.414835]]], "type": "MultiLineString"}, "id": "1770", "properties": {}, "type": "Feature"}, {"bbox": [8.586902, 47.377622, 8.591445, 47.378323], "geometry": {"coordinates": [[[8.591445, 47.378323], [8.591285, 47.378311], [8.591245, 47.378308], [8.591206, 47.378304], [8.591166, 47.378298], [8.590338, 47.378167], [8.590041, 47.378119], [8.589265, 47.377994], [8.588526, 47.377884], [8.586986, 47.377633], [8.586958, 47.377628], [8.58693, 47.377625], [8.586902, 47.377622]]], "type": "MultiLineString"}, "id": "1771", "properties": {}, "type": "Feature"}, {"bbox": [8.538911, 47.370092, 8.539191, 47.370732], "geometry": {"coordinates": [[[8.539191, 47.370092], [8.539003, 47.370489], [8.538911, 47.370732]]], "type": "MultiLineString"}, "id": "1772", "properties": {}, "type": "Feature"}, {"bbox": [8.588412, 47.374256, 8.591169, 47.382493], "geometry": {"coordinates": [[[8.588412, 47.382493], [8.588413, 47.382492], [8.588559, 47.382229], [8.588749, 47.382028], [8.589024, 47.381736], [8.589473, 47.381282], [8.589593, 47.381131], [8.589617, 47.381098], [8.589637, 47.381063], [8.589652, 47.381028], [8.589662, 47.380992], [8.589668, 47.380955], [8.589669, 47.380918], [8.589665, 47.380881], [8.58965, 47.380796], [8.589644, 47.380741], [8.589647, 47.380687], [8.589657, 47.380633], [8.589681, 47.380537], [8.589689, 47.380498], [8.589691, 47.380458], [8.589689, 47.380418], [8.589681, 47.380379], [8.589669, 47.38034], [8.589652, 47.380302], [8.58963, 47.380265], [8.589603, 47.380229], [8.589575, 47.380196], [8.589564, 47.380181], [8.589555, 47.380166], [8.589548, 47.38015], [8.589543, 47.380134], [8.589541, 47.380117], [8.58954, 47.380101], [8.589542, 47.380084], [8.589546, 47.380068], [8.589585, 47.379961], [8.589638, 47.379856], [8.589702, 47.379755], [8.589779, 47.379657], [8.589867, 47.379565], [8.589995, 47.379442], [8.590018, 47.379417], [8.590039, 47.37939], [8.590055, 47.379363], [8.590068, 47.379334], [8.590072, 47.379322], [8.590074, 47.379309], [8.590075, 47.379297], [8.590074, 47.379284], [8.590072, 47.379272], [8.590068, 47.37926], [8.590062, 47.379248], [8.590055, 47.379236], [8.590046, 47.379225], [8.58998, 47.379149], [8.589891, 47.37906], [8.589884, 47.379052], [8.589877, 47.379043], [8.589872, 47.379034], [8.589867, 47.379025], [8.589864, 47.379015], [8.589862, 47.379006], [8.589861, 47.378996], [8.589862, 47.378986], [8.589863, 47.378976], [8.589867, 47.378935], [8.58986, 47.378854], [8.589858, 47.378814], [8.58986, 47.378775], [8.589867, 47.378736], [8.589901, 47.378571], [8.589908, 47.378523], [8.589911, 47.378475], [8.58991, 47.378427], [8.589905, 47.378368], [8.589904, 47.378351], [8.589906, 47.378334], [8.58991, 47.378317], [8.589916, 47.3783], [8.589924, 47.378284], [8.589934, 47.378268], [8.590041, 47.378119], [8.590133, 47.37799], [8.590167, 47.377941], [8.590199, 47.377891], [8.590229, 47.37784], [8.590345, 47.377639], [8.590397, 47.377541], [8.590444, 47.377442], [8.590484, 47.377342], [8.5905, 47.377289], [8.590508, 47.377236], [8.59051, 47.377183], [8.590504, 47.377129], [8.590498, 47.377086], [8.590496, 47.377043], [8.590497, 47.377], [8.5905, 47.376921], [8.590497, 47.376843], [8.590488, 47.376764], [8.590476, 47.376654], [8.590471, 47.376543], [8.590475, 47.376432], [8.590502, 47.376022], [8.590504, 47.376001], [8.590535, 47.375638], [8.590545, 47.375569], [8.590564, 47.3755], [8.590592, 47.375433], [8.590628, 47.375368], [8.590754, 47.37517], [8.59078, 47.375127], [8.590804, 47.375083], [8.590826, 47.375038], [8.590843, 47.375005], [8.590862, 47.374972], [8.590885, 47.37494], [8.590946, 47.374846], [8.590993, 47.374747], [8.591026, 47.374647], [8.59111, 47.374315], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "1773", "properties": {}, "type": "Feature"}, {"bbox": [8.544673, 47.369365, 8.546433, 47.370048], "geometry": {"coordinates": [[[8.544673, 47.369365], [8.544683, 47.369398], [8.545027, 47.369516], [8.545393, 47.369674], [8.545414, 47.369708], [8.545546, 47.369771], [8.545875, 47.3699], [8.546218, 47.370048], [8.546433, 47.369831]]], "type": "MultiLineString"}, "id": "1774", "properties": {}, "type": "Feature"}, {"bbox": [8.573345, 47.393178, 8.589843, 47.39901], "geometry": {"coordinates": [[[8.573345, 47.39901], [8.57347, 47.398955], [8.573708, 47.398888], [8.574059, 47.398791], [8.5745, 47.398644], [8.574928, 47.398482], [8.575497, 47.398161], [8.576007, 47.39792], [8.576045, 47.397903], [8.576146, 47.397844], [8.576374, 47.397699], [8.576399, 47.397686], [8.57679, 47.397525], [8.576847, 47.397501], [8.576886, 47.397483], [8.577496, 47.397161], [8.577526, 47.397147], [8.577631, 47.397101], [8.578175, 47.396865], [8.579476, 47.396367], [8.580106, 47.396091], [8.58013, 47.396082], [8.580586, 47.395929], [8.580656, 47.395906], [8.580682, 47.395894], [8.581009, 47.395706], [8.581142, 47.395629], [8.581185, 47.395604], [8.581214, 47.39559], [8.581305, 47.395554], [8.581904, 47.395317], [8.582513, 47.395061], [8.582538, 47.395052], [8.582719, 47.394991], [8.58286, 47.394944], [8.582944, 47.394918], [8.583118, 47.394865], [8.583129, 47.394863], [8.583179, 47.394857], [8.583675, 47.394804], [8.58376, 47.394787], [8.583792, 47.394781], [8.583811, 47.394774], [8.583894, 47.394738], [8.583924, 47.394722], [8.584209, 47.394552], [8.584315, 47.394494], [8.584337, 47.394485], [8.584457, 47.394459], [8.584641, 47.394425], [8.584683, 47.394414], [8.584783, 47.394388], [8.584802, 47.394382], [8.58481, 47.394378], [8.585324, 47.394144], [8.585527, 47.394092], [8.585839, 47.394054], [8.585967, 47.39401], [8.585994, 47.393996], [8.586612, 47.393592], [8.586798, 47.39347], [8.587239, 47.393178], [8.587293, 47.393187], [8.587498, 47.393221], [8.587524, 47.393225], [8.587592, 47.393243], [8.587622, 47.393253], [8.587923, 47.393382], [8.587936, 47.393388], [8.58797, 47.393405], [8.588119, 47.39349], [8.588165, 47.393529], [8.588185, 47.393553], [8.588229, 47.393612], [8.588293, 47.393685], [8.588314, 47.393706], [8.5884, 47.39378], [8.588496, 47.39384], [8.588533, 47.393859], [8.588662, 47.393916], [8.588756, 47.393957], [8.588799, 47.393978], [8.588928, 47.394056], [8.58937, 47.394362], [8.589684, 47.394586], [8.589776, 47.394659], [8.589791, 47.394672], [8.589803, 47.394684], [8.589814, 47.394698], [8.589824, 47.394712], [8.589831, 47.394727], [8.589837, 47.394742], [8.589841, 47.394757], [8.589843, 47.394773]]], "type": "MultiLineString"}, "id": "1775", "properties": {}, "type": "Feature"}, {"bbox": [8.543229, 47.378885, 8.544009, 47.379651], "geometry": {"coordinates": [[[8.544009, 47.378885], [8.543758, 47.379448], [8.543467, 47.379468], [8.543383, 47.379651], [8.543229, 47.379646]]], "type": "MultiLineString"}, "id": "1776", "properties": {}, "type": "Feature"}, {"bbox": [8.560851, 47.372233, 8.562031, 47.372814], "geometry": {"coordinates": [[[8.560851, 47.372814], [8.562031, 47.372233]]], "type": "MultiLineString"}, "id": "1777", "properties": {}, "type": "Feature"}, {"bbox": [8.487822, 47.402214, 8.490667, 47.402687], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.488358, 47.402549], [8.488905, 47.402432], [8.48946, 47.402334], [8.489694, 47.402284], [8.489934, 47.402248], [8.490177, 47.402224], [8.490422, 47.402214], [8.490667, 47.402218]]], "type": "MultiLineString"}, "id": "1779", "properties": {}, "type": "Feature"}, {"bbox": [8.504858, 47.421856, 8.506079, 47.422239], "geometry": {"coordinates": [[[8.506079, 47.421856], [8.505916, 47.421899], [8.5059, 47.421869], [8.504858, 47.422152], [8.50488, 47.422191], [8.504909, 47.422239], [8.50595, 47.421959], [8.505916, 47.421899]]], "type": "MultiLineString"}, "id": "1781", "properties": {}, "type": "Feature"}, {"bbox": [8.525794, 47.428143, 8.529925, 47.429036], "geometry": {"coordinates": [[[8.529925, 47.428188], [8.529907, 47.42818], [8.529891, 47.428173], [8.529874, 47.428167], [8.529856, 47.428163], [8.529838, 47.428159], [8.529819, 47.428157], [8.5298, 47.428156], [8.529444, 47.428143], [8.529328, 47.428143], [8.529212, 47.428151], [8.529099, 47.428166], [8.528966, 47.428192], [8.528866, 47.428211], [8.528777, 47.428228], [8.528611, 47.428259], [8.528498, 47.428281], [8.528324, 47.428316], [8.528078, 47.428363], [8.527975, 47.428381], [8.527886, 47.428397], [8.527862, 47.428401], [8.527801, 47.428413], [8.527654, 47.428441], [8.527515, 47.428466], [8.527437, 47.428481], [8.52741, 47.428488], [8.527327, 47.428509], [8.527271, 47.428523], [8.527183, 47.428545], [8.527093, 47.428567], [8.52703, 47.428584], [8.526896, 47.428628], [8.52674, 47.428682], [8.526649, 47.428713], [8.526607, 47.428728], [8.526579, 47.42874], [8.526089, 47.428946], [8.526017, 47.428971], [8.525856, 47.42902], [8.525831, 47.429027], [8.525806, 47.429034], [8.525794, 47.429036]]], "type": "MultiLineString"}, "id": "1783", "properties": {}, "type": "Feature"}, {"bbox": [8.515978, 47.376742, 8.516764, 47.377383], "geometry": {"coordinates": [[[8.516693, 47.377038], [8.516698, 47.377026], [8.516704, 47.377014], [8.516711, 47.377004], [8.51672, 47.376993], [8.51673, 47.376983], [8.516742, 47.376974], [8.516755, 47.376966], [8.516688, 47.37687], [8.516656, 47.376807], [8.516506, 47.376742], [8.516464, 47.377007], [8.516391, 47.377008], [8.516323, 47.377008], [8.516234, 47.377004], [8.516156, 47.377036], [8.516016, 47.377036], [8.516023, 47.377047], [8.516029, 47.377058], [8.516033, 47.37707], [8.516036, 47.377082], [8.516037, 47.377094], [8.516037, 47.377106], [8.516035, 47.377119], [8.516031, 47.37713], [8.516027, 47.377141], [8.516021, 47.37715], [8.516015, 47.37716], [8.516007, 47.377169], [8.515998, 47.377178], [8.515988, 47.377186], [8.515978, 47.377194], [8.516157, 47.377363], [8.51633, 47.377377], [8.516404, 47.377383], [8.516419, 47.377298], [8.516764, 47.377177], [8.516701, 47.377099], [8.516697, 47.377089], [8.516693, 47.377079], [8.516691, 47.377068], [8.516691, 47.377058], [8.516691, 47.377048], [8.516693, 47.377038]]], "type": "MultiLineString"}, "id": "1784", "properties": {}, "type": "Feature"}, {"bbox": [8.503762, 47.405365, 8.512017, 47.411058], "geometry": {"coordinates": [[[8.504113, 47.408501], [8.504122, 47.408518], [8.504133, 47.408535], [8.504144, 47.408551], [8.504839, 47.409466], [8.504911, 47.409562], [8.505339, 47.410145], [8.505504, 47.410338], [8.505685, 47.410524], [8.505884, 47.410702], [8.505966, 47.410774], [8.506059, 47.410839], [8.50616, 47.410899], [8.506233, 47.410936], [8.506311, 47.410968], [8.506392, 47.410995], [8.506477, 47.411018], [8.506564, 47.411036], [8.506653, 47.411049], [8.506744, 47.411056], [8.506835, 47.411058], [8.506926, 47.411054], [8.507016, 47.411046], [8.507147, 47.411014], [8.50727, 47.410984], [8.507391, 47.41095], [8.50751, 47.410912], [8.509021, 47.410405], [8.509888, 47.410121], [8.510986, 47.409752], [8.511464, 47.409593], [8.511855, 47.409463], [8.511881, 47.409451], [8.511906, 47.409437], [8.511928, 47.409422], [8.511948, 47.409406], [8.511966, 47.409388], [8.511982, 47.409369], [8.511995, 47.40935], [8.512005, 47.40933], [8.512013, 47.409309], [8.512017, 47.409287], [8.512013, 47.40925], [8.512005, 47.409214], [8.511991, 47.409177], [8.511973, 47.409142], [8.51195, 47.409108], [8.511923, 47.409076], [8.511588, 47.408609], [8.51153, 47.40853], [8.511502, 47.408488], [8.51148, 47.408444], [8.511465, 47.4084], [8.511455, 47.408354], [8.511452, 47.408308], [8.511455, 47.408262], [8.511464, 47.408217], [8.511519, 47.40797], [8.511522, 47.407933], [8.511521, 47.407896], [8.511514, 47.407859], [8.511503, 47.407823], [8.511488, 47.407788], [8.511467, 47.407754], [8.511443, 47.407721], [8.5114, 47.407679], [8.511355, 47.40764], [8.511306, 47.407602], [8.511179, 47.407465], [8.511074, 47.407385], [8.510728, 47.406899], [8.510495, 47.406559], [8.509795, 47.405649], [8.509648, 47.405458], [8.509577, 47.405365], [8.509316, 47.40545], [8.50611, 47.40651], [8.505517, 47.406709], [8.504793, 47.406952], [8.503976, 47.40722], [8.50395, 47.407229], [8.503926, 47.40724], [8.503903, 47.407253], [8.503881, 47.407266], [8.503862, 47.407281], [8.503844, 47.407297], [8.503828, 47.407313], [8.503809, 47.407338], [8.503793, 47.407364], [8.503781, 47.40739], [8.503771, 47.407417], [8.503765, 47.407444], [8.503762, 47.407472], [8.503763, 47.4075], [8.503774, 47.407852], [8.50378, 47.407919], [8.503794, 47.407986], [8.503814, 47.408052], [8.503846, 47.408125], [8.503884, 47.408197], [8.503928, 47.408267], [8.504113, 47.408501]]], "type": "MultiLineString"}, "id": "1786", "properties": {}, "type": "Feature"}, {"bbox": [8.514172, 47.406349, 8.523409, 47.407166], "geometry": {"coordinates": [[[8.523409, 47.406841], [8.523086, 47.406902], [8.523008, 47.406913], [8.522932, 47.406915], [8.522564, 47.4069], [8.522144, 47.406858], [8.521907, 47.406819], [8.521744, 47.406785], [8.521539, 47.406735], [8.521299, 47.406678], [8.521179, 47.406655], [8.521066, 47.406642], [8.521044, 47.40664], [8.520951, 47.406626], [8.520858, 47.406612], [8.520672, 47.406567], [8.5206, 47.406545], [8.520493, 47.406513], [8.520427, 47.406484], [8.520296, 47.406407], [8.520172, 47.406367], [8.520038, 47.406349], [8.519966, 47.406354], [8.5199, 47.406373], [8.519677, 47.406492], [8.51936, 47.406635], [8.519066, 47.406766], [8.519008, 47.406786], [8.518947, 47.406804], [8.518885, 47.406818], [8.518821, 47.406828], [8.518702, 47.406836], [8.518583, 47.40684], [8.518463, 47.40684], [8.518245, 47.406826], [8.518194, 47.406822], [8.518087, 47.406823], [8.517982, 47.406832], [8.517872, 47.406854], [8.5176, 47.406922], [8.517567, 47.40693], [8.517502, 47.406944], [8.517404, 47.40696], [8.517304, 47.40697], [8.517056, 47.406981], [8.516954, 47.406981], [8.5168, 47.406982], [8.516643, 47.406978], [8.51654, 47.406981], [8.516431, 47.406996], [8.516199, 47.407051], [8.516054, 47.407081], [8.515468, 47.407156], [8.515362, 47.407166], [8.515258, 47.407166], [8.515155, 47.407151], [8.515055, 47.407125], [8.51497, 47.407102], [8.51488, 47.407085], [8.514787, 47.407073], [8.514692, 47.407072], [8.514491, 47.407085], [8.514341, 47.407089], [8.514172, 47.407097]]], "type": "MultiLineString"}, "id": "1788", "properties": {}, "type": "Feature"}, {"bbox": [8.612522, 47.361017, 8.619954, 47.362201], "geometry": {"coordinates": [[[8.612522, 47.362201], [8.612524, 47.362012], [8.612765, 47.361938], [8.613096, 47.36183], [8.613614, 47.361623], [8.613859, 47.36155], [8.614038, 47.361518], [8.614564, 47.361498], [8.614892, 47.36148], [8.615255, 47.361431], [8.615625, 47.361392], [8.617525, 47.361336], [8.618186, 47.361333], [8.618647, 47.361284], [8.619096, 47.361221], [8.619235, 47.361193], [8.619276, 47.361188], [8.619304, 47.361183], [8.61967, 47.361079], [8.619689, 47.361074], [8.619871, 47.361038], [8.619954, 47.361017]]], "type": "MultiLineString"}, "id": "1789", "properties": {}, "type": "Feature"}, {"bbox": [8.559415, 47.353938, 8.561431, 47.355296], "geometry": {"coordinates": [[[8.559415, 47.353938], [8.559601, 47.35396], [8.55998, 47.353982], [8.559986, 47.354291], [8.560171, 47.35445], [8.560397, 47.354573], [8.56086, 47.354992], [8.561051, 47.35517], [8.561066, 47.355183], [8.561088, 47.355199], [8.561112, 47.355213], [8.561138, 47.355226], [8.561165, 47.355238], [8.561193, 47.355248], [8.561285, 47.355264], [8.561431, 47.355296]]], "type": "MultiLineString"}, "id": "1790", "properties": {}, "type": "Feature"}, {"bbox": [8.495084, 47.399437, 8.496111, 47.399639], "geometry": {"coordinates": [[[8.496111, 47.399639], [8.496076, 47.399578], [8.496037, 47.399551], [8.495678, 47.399544], [8.495636, 47.399541], [8.495597, 47.399531], [8.495576, 47.399517], [8.495527, 47.399478], [8.495505, 47.399437], [8.495084, 47.399491]]], "type": "MultiLineString"}, "id": "1792", "properties": {}, "type": "Feature"}, {"bbox": [8.542157, 47.421908, 8.550363, 47.425479], "geometry": {"coordinates": [[[8.550363, 47.421908], [8.549949, 47.42211], [8.549699, 47.422231], [8.548773, 47.422733], [8.548225, 47.423021], [8.547736, 47.423171], [8.547123, 47.423345], [8.547058, 47.423252], [8.546641, 47.423369], [8.546672, 47.423431], [8.546435, 47.423536], [8.545383, 47.423844], [8.545189, 47.423912], [8.54529, 47.42405], [8.545143, 47.424094], [8.544064, 47.424413], [8.543768, 47.424498], [8.543779, 47.424574], [8.543421, 47.42469], [8.543363, 47.424726], [8.543238, 47.424776], [8.54312, 47.424833], [8.543011, 47.424898], [8.542911, 47.42497], [8.542157, 47.425479]]], "type": "MultiLineString"}, "id": "1793", "properties": {}, "type": "Feature"}, {"bbox": [8.494559, 47.400711, 8.497676, 47.401938], "geometry": {"coordinates": [[[8.494559, 47.400711], [8.494674, 47.400728], [8.494758, 47.400839], [8.494782, 47.400863], [8.494821, 47.400895], [8.495013, 47.401025], [8.495055, 47.401048], [8.495451, 47.401241], [8.495511, 47.401273], [8.495632, 47.401346], [8.495937, 47.401542], [8.496035, 47.4016], [8.496139, 47.401652], [8.496268, 47.401712], [8.49629, 47.401719], [8.496604, 47.401823], [8.496843, 47.401895], [8.49686, 47.401938], [8.496998, 47.40191], [8.49731, 47.401873], [8.497479, 47.401845], [8.497676, 47.401882]]], "type": "MultiLineString"}, "id": "1795", "properties": {}, "type": "Feature"}, {"bbox": [8.521539, 47.404798, 8.523714, 47.406735], "geometry": {"coordinates": [[[8.523714, 47.404798], [8.523614, 47.404886], [8.52351, 47.40497], [8.523401, 47.405052], [8.523154, 47.405231], [8.523061, 47.405297], [8.522965, 47.40536], [8.522866, 47.405421], [8.522467, 47.405658], [8.522431, 47.405681], [8.522086, 47.405897], [8.521951, 47.405982], [8.521892, 47.406023], [8.521839, 47.406066], [8.521792, 47.406113], [8.521751, 47.406163], [8.521717, 47.406215], [8.521689, 47.406269], [8.521669, 47.406324], [8.521566, 47.406672], [8.521539, 47.406735]]], "type": "MultiLineString"}, "id": "1796", "properties": {}, "type": "Feature"}, {"bbox": [8.561019, 47.404867, 8.572311, 47.410623], "geometry": {"coordinates": [[[8.561019, 47.404901], [8.561049, 47.404867], [8.561456, 47.404975], [8.56172, 47.405043], [8.56211, 47.405126], [8.562422, 47.405207], [8.562638, 47.40527], [8.562845, 47.405336], [8.563112, 47.405432], [8.56335, 47.405532], [8.563619, 47.405659], [8.563909, 47.405825], [8.564257, 47.40603], [8.564699, 47.406295], [8.56558, 47.406809], [8.565961, 47.407037], [8.566206, 47.407165], [8.566255, 47.407216], [8.56638, 47.407295], [8.566713, 47.40755], [8.567039, 47.407806], [8.567233, 47.407969], [8.567472, 47.408174], [8.567922, 47.408566], [8.568107, 47.408713], [8.568401, 47.408974], [8.568569, 47.409114], [8.568731, 47.40923], [8.56892, 47.409366], [8.569112, 47.409504], [8.569362, 47.409671], [8.569586, 47.409812], [8.569779, 47.409923], [8.569971, 47.410014], [8.570123, 47.410075], [8.57032, 47.410137], [8.570487, 47.410178], [8.570731, 47.410226], [8.571083, 47.410284], [8.571349, 47.410308], [8.572142, 47.410379], [8.572263, 47.410467], [8.572311, 47.410623]]], "type": "MultiLineString"}, "id": "1797", "properties": {}, "type": "Feature"}, {"bbox": [8.465574, 47.360917, 8.487038, 47.366551], "geometry": {"coordinates": [[[8.465574, 47.366404], [8.465804, 47.366466], [8.46596, 47.3665], [8.466119, 47.366525], [8.46628, 47.366541], [8.466443, 47.366547], [8.466768, 47.366551], [8.466793, 47.366551], [8.466817, 47.366549], [8.466842, 47.366546], [8.466865, 47.366541], [8.466889, 47.366536], [8.466911, 47.366529], [8.466935, 47.366519], [8.466957, 47.366509], [8.466978, 47.366497], [8.466998, 47.366484], [8.467015, 47.36647], [8.467031, 47.366454], [8.467044, 47.366438], [8.467167, 47.366275], [8.467374, 47.366016], [8.467428, 47.365955], [8.467488, 47.365897], [8.467555, 47.365842], [8.467627, 47.365791], [8.467662, 47.36577], [8.4677, 47.365751], [8.46774, 47.365734], [8.467782, 47.365719], [8.467826, 47.365707], [8.467871, 47.365698], [8.46791, 47.365691], [8.46795, 47.365685], [8.46799, 47.365681], [8.468043, 47.365675], [8.468096, 47.365669], [8.468149, 47.365662], [8.468283, 47.365646], [8.468417, 47.365631], [8.468551, 47.365616], [8.46884, 47.365582], [8.469044, 47.365558], [8.469326, 47.365524], [8.469386, 47.365515], [8.469445, 47.365502], [8.469502, 47.365487], [8.469557, 47.365468], [8.469609, 47.365446], [8.469659, 47.365422], [8.469705, 47.365394], [8.469748, 47.365365], [8.470543, 47.364757], [8.470619, 47.364702], [8.470701, 47.364652], [8.470789, 47.364605], [8.470881, 47.364564], [8.471194, 47.364436], [8.471268, 47.364408], [8.471345, 47.364384], [8.471425, 47.364365], [8.471507, 47.364351], [8.471591, 47.364341], [8.471675, 47.364336], [8.47176, 47.364335], [8.472926, 47.364361], [8.47369, 47.364351], [8.473867, 47.364343], [8.474042, 47.364324], [8.474215, 47.364295], [8.474382, 47.364256], [8.475016, 47.364085], [8.475334, 47.364002], [8.475519, 47.36396], [8.475709, 47.363928], [8.475902, 47.363908], [8.476559, 47.363859], [8.477208, 47.363804], [8.477318, 47.363797], [8.477428, 47.363797], [8.477537, 47.363802], [8.477955, 47.363833], [8.478443, 47.363884], [8.478598, 47.363896], [8.478753, 47.363901], [8.478909, 47.3639], [8.479986, 47.363867], [8.480055, 47.363863], [8.480124, 47.363855], [8.480191, 47.363844], [8.480257, 47.363828], [8.48032, 47.363809], [8.481112, 47.363543], [8.481144, 47.363531], [8.481174, 47.363517], [8.481203, 47.363501], [8.481229, 47.363484], [8.481252, 47.363465], [8.481273, 47.363445], [8.481291, 47.363423], [8.481306, 47.363401], [8.481419, 47.363211], [8.481553, 47.363013], [8.481581, 47.362976], [8.481614, 47.362942], [8.481652, 47.362909], [8.481694, 47.36288], [8.481856, 47.362778], [8.482103, 47.362621], [8.482133, 47.362604], [8.482164, 47.362588], [8.482197, 47.362575], [8.482232, 47.362563], [8.482268, 47.362553], [8.482305, 47.362546], [8.482343, 47.36254], [8.482404, 47.362535], [8.482466, 47.362534], [8.482529, 47.362536], [8.48259, 47.362543], [8.482621, 47.362548], [8.482651, 47.362556], [8.48268, 47.362565], [8.482707, 47.362575], [8.482734, 47.362588], [8.482758, 47.362601], [8.482781, 47.362617], [8.482931, 47.362727], [8.482951, 47.362741], [8.482973, 47.362753], [8.482996, 47.362764], [8.483021, 47.362773], [8.483047, 47.362781], [8.483074, 47.362787], [8.483101, 47.362791], [8.483151, 47.362796], [8.483201, 47.362798], [8.483251, 47.362796], [8.483324, 47.362791], [8.483354, 47.362788], [8.483384, 47.362783], [8.483413, 47.362776], [8.483441, 47.362768], [8.483467, 47.362759], [8.483545, 47.362724], [8.483616, 47.362685], [8.483682, 47.362641], [8.48403, 47.362384], [8.484226, 47.362242], [8.484383, 47.36212], [8.484849, 47.361761], [8.484958, 47.361684], [8.485077, 47.361614], [8.485204, 47.361552], [8.48534, 47.361498], [8.48654, 47.361065], [8.48691, 47.360925], [8.486917, 47.360923], [8.486924, 47.360921], [8.486931, 47.360919], [8.486938, 47.360918], [8.486946, 47.360918], [8.486953, 47.360917], [8.486961, 47.360918], [8.486968, 47.360918], [8.486976, 47.360919], [8.486983, 47.360921], [8.48699, 47.360923], [8.486996, 47.360925], [8.487003, 47.360928], [8.487009, 47.360931], [8.487014, 47.360935], [8.487019, 47.360939], [8.487024, 47.360943], [8.487028, 47.360947], [8.487031, 47.360952], [8.487034, 47.360957], [8.487036, 47.360961], [8.487037, 47.360966], [8.487038, 47.360972]]], "type": "MultiLineString"}, "id": "1799", "properties": {}, "type": "Feature"}, {"bbox": [8.539571, 47.37122, 8.53992, 47.371832], "geometry": {"coordinates": [[[8.53992, 47.37122], [8.539915, 47.371297], [8.539892, 47.37129], [8.539571, 47.371744], [8.539889, 47.371832], [8.539916, 47.371809]]], "type": "MultiLineString"}, "id": "1801", "properties": {}, "type": "Feature"}, {"bbox": [8.568177, 47.41457, 8.569295, 47.41618], "geometry": {"coordinates": [[[8.569295, 47.41618], [8.569084, 47.416016], [8.568889, 47.415843], [8.56871, 47.415662], [8.568584, 47.415499], [8.568476, 47.415329], [8.568388, 47.415155], [8.56832, 47.414977], [8.568177, 47.41457]]], "type": "MultiLineString"}, "id": "1802", "properties": {}, "type": "Feature"}, {"bbox": [8.506506, 47.39876, 8.507443, 47.398955], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506524, 47.398856], [8.506543, 47.398862], [8.506563, 47.398866], [8.506584, 47.398869], [8.506604, 47.398872], [8.506625, 47.398873], [8.506646, 47.398872], [8.506667, 47.398871], [8.506677, 47.398864], [8.506699, 47.398851], [8.506722, 47.398839], [8.506747, 47.398828], [8.506773, 47.398819], [8.506785, 47.398815], [8.506898, 47.398789], [8.506927, 47.398786], [8.507029, 47.398763], [8.507042, 47.398761], [8.50705, 47.39876], [8.507058, 47.39876], [8.507067, 47.398761], [8.507075, 47.398761], [8.507083, 47.398763], [8.50709, 47.398765], [8.507098, 47.398767], [8.507105, 47.39877], [8.507112, 47.398773], [8.507118, 47.398777], [8.507124, 47.39878], [8.507129, 47.398785], [8.507134, 47.398789], [8.507138, 47.398794], [8.507142, 47.398799], [8.507145, 47.398804], [8.507147, 47.39881], [8.507166, 47.398889], [8.507169, 47.398895], [8.507173, 47.398901], [8.507177, 47.398906], [8.507182, 47.398912], [8.507188, 47.398916], [8.507194, 47.398921], [8.507201, 47.398925], [8.507209, 47.398929], [8.507248, 47.398937], [8.507289, 47.398943], [8.50733, 47.398946], [8.507368, 47.398947], [8.507406, 47.39895], [8.507443, 47.398955]]], "type": "MultiLineString"}, "id": "1804", "properties": {}, "type": "Feature"}, {"bbox": [8.544881, 47.429007, 8.546858, 47.429554], "geometry": {"coordinates": [[[8.544881, 47.429379], [8.545597, 47.429548], [8.545623, 47.429551], [8.54565, 47.429553], [8.545676, 47.429554], [8.545703, 47.429552], [8.545729, 47.429549], [8.545755, 47.429545], [8.545781, 47.429539], [8.545805, 47.429531], [8.545828, 47.429522], [8.54585, 47.429512], [8.546226, 47.429296], [8.54628, 47.429262], [8.546339, 47.42923], [8.546401, 47.429202], [8.546858, 47.429007]]], "type": "MultiLineString"}, "id": "1805", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.349769, 8.524105, 47.351753], "geometry": {"coordinates": [[[8.524103, 47.351753], [8.524105, 47.351696], [8.524099, 47.351651], [8.524085, 47.351606], [8.524067, 47.351553], [8.524045, 47.35151], [8.524021, 47.351472], [8.523994, 47.351436], [8.523957, 47.351396], [8.523913, 47.35136], [8.523849, 47.351316], [8.523565, 47.351165], [8.523496, 47.351124], [8.523427, 47.351077], [8.523364, 47.351033], [8.523309, 47.35099], [8.523177, 47.350873], [8.522984, 47.350696], [8.522872, 47.350608], [8.522732, 47.350496], [8.522635, 47.350434], [8.52253, 47.350379], [8.522427, 47.350334], [8.522318, 47.350294], [8.522139, 47.350248], [8.521685, 47.350113], [8.521599, 47.350088], [8.521496, 47.350049], [8.521399, 47.350007], [8.521304, 47.349961], [8.521205, 47.349905], [8.521056, 47.349806], [8.521, 47.349769]]], "type": "MultiLineString"}, "id": "1807", "properties": {}, "type": "Feature"}, {"bbox": [8.525679, 47.414012, 8.525747, 47.414942], "geometry": {"coordinates": [[[8.525718, 47.414012], [8.525747, 47.414074], [8.525725, 47.414178], [8.525733, 47.414662], [8.525679, 47.414942]]], "type": "MultiLineString"}, "id": "1808", "properties": {}, "type": "Feature"}, {"bbox": [8.541921, 47.375497, 8.543387, 47.375705], "geometry": {"coordinates": [[[8.541921, 47.375705], [8.543387, 47.375497]]], "type": "MultiLineString"}, "id": "1809", "properties": {}, "type": "Feature"}, {"bbox": [8.511873, 47.392082, 8.51274, 47.393476], "geometry": {"coordinates": [[[8.511873, 47.392082], [8.51258, 47.393364], [8.51274, 47.393476]]], "type": "MultiLineString"}, "id": "1810", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.369886, 8.541538, 47.370302], "geometry": {"coordinates": [[[8.541163, 47.370302], [8.541167, 47.370302], [8.541171, 47.370302], [8.541176, 47.370301], [8.54118, 47.370301], [8.541184, 47.3703], [8.541188, 47.370299], [8.541191, 47.370298], [8.541195, 47.370296], [8.541198, 47.370294], [8.541201, 47.370292], [8.541204, 47.37029], [8.541206, 47.370288], [8.541209, 47.370286], [8.541211, 47.370283], [8.541212, 47.370281], [8.541214, 47.370278], [8.541215, 47.370275], [8.541215, 47.370272], [8.541221, 47.370204], [8.541221, 47.3702], [8.541222, 47.370196], [8.541223, 47.370193], [8.541225, 47.370189], [8.541228, 47.370186], [8.54123, 47.370182], [8.541233, 47.370179], [8.54149, 47.369933], [8.541538, 47.369886]]], "type": "MultiLineString"}, "id": "1811", "properties": {}, "type": "Feature"}, {"bbox": [8.503784, 47.402683, 8.504275, 47.402913], "geometry": {"coordinates": [[[8.503784, 47.402913], [8.504275, 47.402683]]], "type": "MultiLineString"}, "id": "1813", "properties": {}, "type": "Feature"}, {"bbox": [8.540249, 47.369883, 8.541163, 47.370302], "geometry": {"coordinates": [[[8.540786, 47.369883], [8.540732, 47.369926], [8.540739, 47.369933], [8.54074, 47.369935], [8.540742, 47.369937], [8.540743, 47.369939], [8.540744, 47.369942], [8.540744, 47.369944], [8.540744, 47.369946], [8.540744, 47.369949], [8.540744, 47.369951], [8.540743, 47.369953], [8.540742, 47.369956], [8.54074, 47.369958], [8.540739, 47.36996], [8.540737, 47.369962], [8.540735, 47.369964], [8.540732, 47.369965], [8.54073, 47.369967], [8.540727, 47.369968], [8.540724, 47.36997], [8.540721, 47.369971], [8.540717, 47.369972], [8.540714, 47.369972], [8.540638, 47.369985], [8.540563, 47.370002], [8.540489, 47.370021], [8.540421, 47.370043], [8.540355, 47.370067], [8.540292, 47.370095], [8.540249, 47.370113], [8.540263, 47.37012], [8.540311, 47.370146], [8.540528, 47.370263], [8.540596, 47.370249], [8.540627, 47.370193], [8.540628, 47.370192], [8.540629, 47.37019], [8.540631, 47.370189], [8.540633, 47.370187], [8.540634, 47.370186], [8.540636, 47.370185], [8.540639, 47.370184], [8.540641, 47.370183], [8.540643, 47.370182], [8.540646, 47.370182], [8.540648, 47.370181], [8.540651, 47.370181], [8.540653, 47.370181], [8.540656, 47.370181], [8.540659, 47.370181], [8.540661, 47.370182], [8.540664, 47.370182], [8.540666, 47.370183], [8.541034, 47.37029], [8.541057, 47.370295], [8.54108, 47.370298], [8.541103, 47.3703], [8.541163, 47.370302]]], "type": "MultiLineString"}, "id": "1814", "properties": {}, "type": "Feature"}, {"bbox": [8.554119, 47.399029, 8.556119, 47.401937], "geometry": {"coordinates": [[[8.554119, 47.399029], [8.554207, 47.399156], [8.55429, 47.399284], [8.55437, 47.399414], [8.55437, 47.399414], [8.55437, 47.399414], [8.55439, 47.39945], [8.554408, 47.399487], [8.554424, 47.399525], [8.554494, 47.399694], [8.55451, 47.399728], [8.554531, 47.399761], [8.554557, 47.399793], [8.554586, 47.399824], [8.554619, 47.399852], [8.554648, 47.399876], [8.554676, 47.399901], [8.554703, 47.399926], [8.554703, 47.399926], [8.554703, 47.399926], [8.554828, 47.400049], [8.554959, 47.400169], [8.555094, 47.400287], [8.555277, 47.40042], [8.555332, 47.400464], [8.555385, 47.400511], [8.555433, 47.400558], [8.555457, 47.400583], [8.555478, 47.400608], [8.555496, 47.400634], [8.555511, 47.400662], [8.555522, 47.40069], [8.555592, 47.400844], [8.555592, 47.400844], [8.55561, 47.400885], [8.555633, 47.400925], [8.555661, 47.400963], [8.555808, 47.401122], [8.556027, 47.401392], [8.556045, 47.401414], [8.556063, 47.401438], [8.556078, 47.401463], [8.55609, 47.401489], [8.5561, 47.401516], [8.556115, 47.401589], [8.556119, 47.401664], [8.556112, 47.401738], [8.556106, 47.401762], [8.556097, 47.401786], [8.556084, 47.401809], [8.556069, 47.401832], [8.55605, 47.401853], [8.556029, 47.401873], [8.55601, 47.401887], [8.55599, 47.401901], [8.555968, 47.401913], [8.555917, 47.401937]]], "type": "MultiLineString"}, "id": "1815", "properties": {}, "type": "Feature"}, {"bbox": [8.58584, 47.355467, 8.590078, 47.3568], "geometry": {"coordinates": [[[8.58584, 47.3568], [8.58586, 47.356753], [8.585895, 47.356712], [8.585934, 47.356672], [8.585975, 47.356634], [8.58627, 47.356403], [8.586612, 47.356171], [8.586673, 47.356127], [8.58673, 47.356081], [8.586781, 47.356032], [8.586845, 47.355963], [8.586859, 47.355948], [8.586875, 47.355933], [8.586893, 47.355919], [8.586913, 47.355906], [8.586934, 47.355894], [8.586956, 47.355884], [8.58698, 47.355875], [8.587005, 47.355867], [8.58703, 47.355861], [8.587276, 47.35582], [8.587704, 47.355757], [8.587909, 47.355729], [8.588347, 47.35567], [8.588668, 47.355629], [8.588964, 47.355594], [8.589557, 47.355523], [8.590078, 47.355467]]], "type": "MultiLineString"}, "id": "1816", "properties": {}, "type": "Feature"}, {"bbox": [8.563503, 47.405962, 8.569594, 47.410397], "geometry": {"coordinates": [[[8.563503, 47.405962], [8.563646, 47.406011], [8.564201, 47.406307], [8.564556, 47.406507], [8.565124, 47.40683], [8.565644, 47.407158], [8.566011, 47.407415], [8.566142, 47.407477], [8.566368, 47.407637], [8.566646, 47.40786], [8.566889, 47.408061], [8.567158, 47.408303], [8.5677, 47.408792], [8.568249, 47.409244], [8.568593, 47.409513], [8.568906, 47.409745], [8.569245, 47.409988], [8.569594, 47.410397]]], "type": "MultiLineString"}, "id": "1819", "properties": {}, "type": "Feature"}, {"bbox": [8.494037, 47.359972, 8.500114, 47.36311], "geometry": {"coordinates": [[[8.500114, 47.359972], [8.498885, 47.360992], [8.498036, 47.360987], [8.497864, 47.361034], [8.497749, 47.360987], [8.497627, 47.360949], [8.497508, 47.360914], [8.497156, 47.360745], [8.496958, 47.360827], [8.496968, 47.361094], [8.49663, 47.361333], [8.496585, 47.361374], [8.495402, 47.361995], [8.495296, 47.362034], [8.495219, 47.362082], [8.495025, 47.362187], [8.494815, 47.362403], [8.494548, 47.362665], [8.494414, 47.362775], [8.494206, 47.362927], [8.494171, 47.362948], [8.49414, 47.362971], [8.494112, 47.362996], [8.494087, 47.363023], [8.494066, 47.363051], [8.49405, 47.36308], [8.494037, 47.36311]]], "type": "MultiLineString"}, "id": "1821", "properties": {}, "type": "Feature"}, {"bbox": [8.562308, 47.399836, 8.571367, 47.40221], "geometry": {"coordinates": [[[8.562308, 47.401909], [8.56243, 47.401962], [8.562554, 47.402014], [8.56268, 47.402064], [8.562714, 47.402077], [8.562824, 47.402119], [8.56294, 47.402154], [8.56306, 47.40218], [8.56308, 47.402184], [8.563184, 47.402199], [8.563289, 47.402207], [8.563395, 47.40221], [8.563502, 47.402207], [8.563607, 47.402198], [8.563961, 47.402165], [8.5641, 47.402142], [8.564235, 47.402111], [8.564365, 47.402072], [8.564489, 47.402025], [8.564607, 47.401971], [8.564761, 47.401909], [8.564918, 47.401851], [8.565079, 47.401797], [8.565729, 47.401588], [8.565901, 47.40154], [8.566079, 47.401501], [8.566259, 47.401471], [8.566511, 47.401429], [8.566764, 47.401388], [8.567018, 47.401351], [8.567149, 47.401331], [8.567279, 47.40131], [8.567409, 47.401287], [8.56749, 47.401272], [8.567568, 47.401251], [8.567644, 47.401226], [8.567716, 47.401196], [8.567783, 47.401162], [8.567846, 47.401124], [8.568055, 47.400999], [8.568109, 47.400968], [8.568244, 47.400892], [8.56828, 47.400871], [8.568394, 47.400809], [8.568515, 47.400754], [8.568643, 47.400705], [8.569015, 47.400579], [8.569391, 47.400459], [8.56977, 47.400345], [8.5704, 47.400109], [8.5704, 47.400109], [8.570541, 47.400054], [8.570677, 47.399995], [8.570808, 47.399931], [8.570863, 47.399906], [8.570921, 47.399886], [8.570981, 47.399868], [8.571043, 47.399855], [8.571107, 47.399845], [8.571172, 47.399838], [8.571237, 47.399836], [8.571302, 47.399837], [8.571367, 47.399842]]], "type": "MultiLineString"}, "id": "1830", "properties": {}, "type": "Feature"}, {"bbox": [8.509694, 47.333072, 8.51403, 47.334288], "geometry": {"coordinates": [[[8.51403, 47.334288], [8.514003, 47.334288], [8.513976, 47.334286], [8.51395, 47.334283], [8.513924, 47.334279], [8.513898, 47.334273], [8.513874, 47.334265], [8.51385, 47.334256], [8.513828, 47.334246], [8.513445, 47.334074], [8.513177, 47.333865], [8.513057, 47.333731], [8.512927, 47.333507], [8.512721, 47.333256], [8.512599, 47.333147], [8.512533, 47.333107], [8.512507, 47.333097], [8.51248, 47.333088], [8.512452, 47.333082], [8.512423, 47.333077], [8.512394, 47.333073], [8.512365, 47.333072], [8.512335, 47.333073], [8.512306, 47.333075], [8.512277, 47.333079], [8.512249, 47.333085], [8.512221, 47.333092], [8.511642, 47.33327], [8.511201, 47.333549], [8.510984, 47.333605], [8.510583, 47.333649], [8.510525, 47.33365], [8.510378, 47.333654], [8.510164, 47.333678], [8.510002, 47.333738], [8.509814, 47.33381], [8.509694, 47.333856]]], "type": "MultiLineString"}, "id": "1838", "properties": {}, "type": "Feature"}, {"bbox": [8.538749, 47.378523, 8.541507, 47.382055], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541428, 47.378527], [8.541439, 47.378531], [8.54145, 47.378536], [8.54146, 47.378542], [8.541469, 47.378548], [8.541477, 47.378555], [8.541485, 47.378562], [8.541491, 47.37857], [8.541496, 47.378578], [8.541501, 47.378586], [8.541504, 47.378594], [8.541506, 47.378603], [8.541507, 47.378612], [8.541507, 47.378621], [8.541506, 47.378629], [8.541503, 47.378638], [8.541439, 47.378801], [8.541389, 47.378793], [8.54136, 47.378878], [8.54124, 47.379208], [8.541217, 47.379267], [8.541191, 47.379326], [8.541164, 47.379384], [8.541113, 47.379492], [8.54106, 47.379599], [8.541005, 47.379706], [8.54083, 47.379762], [8.540327, 47.379607], [8.539957, 47.379707], [8.539769, 47.379536], [8.539119, 47.37971], [8.538749, 47.37981], [8.538799, 47.37992], [8.538842, 47.380032], [8.538877, 47.380144], [8.538913, 47.380273], [8.53894, 47.380402], [8.538958, 47.380533], [8.538967, 47.38062], [8.538972, 47.380707], [8.538973, 47.380794], [8.538968, 47.380959], [8.538957, 47.381124], [8.538939, 47.381288], [8.538915, 47.381441], [8.538884, 47.381593], [8.538848, 47.381744], [8.538824, 47.381828], [8.538798, 47.381912], [8.53877, 47.381995], [8.538775, 47.382055]]], "type": "MultiLineString"}, "id": "1839", "properties": {}, "type": "Feature"}, {"bbox": [8.536666, 47.415979, 8.538275, 47.416931], "geometry": {"coordinates": [[[8.536666, 47.415979], [8.536734, 47.416455], [8.537274, 47.416546], [8.538156, 47.416757], [8.538275, 47.416931]]], "type": "MultiLineString"}, "id": "1841", "properties": {}, "type": "Feature"}, {"bbox": [8.556217, 47.386277, 8.560818, 47.387168], "geometry": {"coordinates": [[[8.556217, 47.386277], [8.55662, 47.386714], [8.557633, 47.387096], [8.557811, 47.387133], [8.557881, 47.387168], [8.558529, 47.387046], [8.559089, 47.386946], [8.559237, 47.386912], [8.559856, 47.386754], [8.559939, 47.386729], [8.56002, 47.386701], [8.560099, 47.386671], [8.560224, 47.38662], [8.560259, 47.386606], [8.560294, 47.386593], [8.56033, 47.386581], [8.560377, 47.386563], [8.560421, 47.386543], [8.560461, 47.38652], [8.560499, 47.386494], [8.560517, 47.386481], [8.560536, 47.38647], [8.560557, 47.38646], [8.560579, 47.386451], [8.560602, 47.386443], [8.560626, 47.386436], [8.56065, 47.386431], [8.560676, 47.386427], [8.560701, 47.386425], [8.560727, 47.386424], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "1842", "properties": {}, "type": "Feature"}, {"bbox": [8.583171, 47.380311, 8.585882, 47.381013], "geometry": {"coordinates": [[[8.585882, 47.380678], [8.585636, 47.380696], [8.585554, 47.3807], [8.585471, 47.3807], [8.585389, 47.380697], [8.585124, 47.380678], [8.585032, 47.380673], [8.58494, 47.38067], [8.584848, 47.380671], [8.584648, 47.380674], [8.584584, 47.380678], [8.584521, 47.380685], [8.584459, 47.380696], [8.584399, 47.38071], [8.584341, 47.380729], [8.584286, 47.380751], [8.584234, 47.380776], [8.583995, 47.380904], [8.58394, 47.380931], [8.583881, 47.380955], [8.58382, 47.380974], [8.583757, 47.38099], [8.583691, 47.381002], [8.583625, 47.381009], [8.583557, 47.381013], [8.58349, 47.381012], [8.583422, 47.381007], [8.583411, 47.381006], [8.583399, 47.381003], [8.583388, 47.381001], [8.583377, 47.380997], [8.583366, 47.380993], [8.583356, 47.380988], [8.583347, 47.380983], [8.583338, 47.380977], [8.583331, 47.38097], [8.583324, 47.380964], [8.583318, 47.380957], [8.583312, 47.380949], [8.583308, 47.380941], [8.583305, 47.380933], [8.583303, 47.380925], [8.583301, 47.380917], [8.583292, 47.380811], [8.583287, 47.380775], [8.583277, 47.38074], [8.583263, 47.380706], [8.583245, 47.380672], [8.583223, 47.38064], [8.583211, 47.380623], [8.583202, 47.380606], [8.583195, 47.380588], [8.58319, 47.38057], [8.583188, 47.380552], [8.583171, 47.380311]]], "type": "MultiLineString"}, "id": "1843", "properties": {}, "type": "Feature"}, {"bbox": [8.576574, 47.406121, 8.578059, 47.406809], "geometry": {"coordinates": [[[8.578059, 47.406121], [8.577652, 47.406312], [8.576895, 47.406668], [8.576661, 47.406778], [8.576574, 47.406809]]], "type": "MultiLineString"}, "id": "1846", "properties": {}, "type": "Feature"}, {"bbox": [8.506442, 47.360434, 8.507203, 47.360901], "geometry": {"coordinates": [[[8.506442, 47.36071], [8.506573, 47.360768], [8.506906, 47.360901], [8.507203, 47.360564], [8.506867, 47.360434], [8.506573, 47.360768]]], "type": "MultiLineString"}, "id": "1847", "properties": {}, "type": "Feature"}, {"bbox": [8.565457, 47.359843, 8.566036, 47.360289], "geometry": {"coordinates": [[[8.565457, 47.359843], [8.565537, 47.359881], [8.565656, 47.360076], [8.565937, 47.360187], [8.565967, 47.360204], [8.566036, 47.360289]]], "type": "MultiLineString"}, "id": "1848", "properties": {}, "type": "Feature"}, {"bbox": [8.5262, 47.370975, 8.52653, 47.371277], "geometry": {"coordinates": [[[8.5262, 47.370975], [8.52653, 47.371277]]], "type": "MultiLineString"}, "id": "1849", "properties": {}, "type": "Feature"}, {"bbox": [8.490781, 47.376513, 8.491023, 47.376951], "geometry": {"coordinates": [[[8.490781, 47.376951], [8.490853, 47.376869], [8.491023, 47.376513]]], "type": "MultiLineString"}, "id": "1850", "properties": {}, "type": "Feature"}, {"bbox": [8.508263, 47.406228, 8.50906, 47.407121], "geometry": {"coordinates": [[[8.50882, 47.407121], [8.508681, 47.406936], [8.50906, 47.406814], [8.508635, 47.406228], [8.508263, 47.40635], [8.508681, 47.406936]]], "type": "MultiLineString"}, "id": "1851", "properties": {}, "type": "Feature"}, {"bbox": [8.509092, 47.423321, 8.510879, 47.424637], "geometry": {"coordinates": [[[8.510879, 47.423321], [8.510671, 47.423444], [8.510453, 47.423559], [8.510227, 47.423666], [8.510058, 47.423743], [8.509901, 47.42383], [8.509756, 47.423926], [8.509624, 47.424032], [8.509508, 47.424144], [8.509407, 47.424264], [8.509322, 47.424389], [8.509277, 47.424456], [8.509224, 47.42452], [8.509162, 47.42458], [8.509092, 47.424637]]], "type": "MultiLineString"}, "id": "1854", "properties": {}, "type": "Feature"}, {"bbox": [8.499733, 47.401905, 8.500651, 47.402873], "geometry": {"coordinates": [[[8.499733, 47.401905], [8.499937, 47.402065], [8.50015, 47.40222], [8.500371, 47.40237], [8.500411, 47.402393], [8.500449, 47.402417], [8.500483, 47.402445], [8.500513, 47.402474], [8.500539, 47.402505], [8.50056, 47.402537], [8.500577, 47.40257], [8.500651, 47.402873]]], "type": "MultiLineString"}, "id": "1856", "properties": {}, "type": "Feature"}, {"bbox": [8.475596, 47.414898, 8.475754, 47.415838], "geometry": {"coordinates": [[[8.475754, 47.414898], [8.475642, 47.414944], [8.475596, 47.414989], [8.475607, 47.415194], [8.475645, 47.41534], [8.475645, 47.415516], [8.475702, 47.415613], [8.475704, 47.415739], [8.475733, 47.415838]]], "type": "MultiLineString"}, "id": "1857", "properties": {}, "type": "Feature"}, {"bbox": [8.602217, 47.353761, 8.615431, 47.355645], "geometry": {"coordinates": [[[8.602217, 47.355645], [8.602403, 47.355532], [8.602578, 47.355406], [8.602609, 47.355386], [8.602642, 47.355367], [8.602677, 47.355351], [8.602715, 47.355337], [8.602754, 47.355326], [8.602794, 47.355317], [8.602836, 47.35531], [8.602878, 47.355307], [8.603165, 47.355273], [8.603448, 47.355231], [8.603726, 47.355176], [8.603998, 47.355109], [8.604051, 47.355089], [8.604107, 47.355072], [8.604165, 47.355059], [8.604224, 47.35505], [8.604285, 47.355044], [8.604823, 47.354998], [8.604989, 47.35497], [8.605057, 47.354958], [8.605125, 47.354946], [8.605194, 47.354935], [8.605287, 47.354918], [8.60538, 47.354898], [8.60547, 47.354875], [8.605598, 47.354831], [8.605647, 47.354797], [8.605669, 47.354781], [8.605689, 47.354764], [8.605708, 47.354746], [8.606073, 47.354374], [8.606154, 47.354299], [8.606244, 47.354229], [8.606342, 47.354163], [8.606447, 47.354104], [8.60656, 47.35405], [8.606678, 47.354003], [8.606802, 47.353963], [8.60693, 47.35393], [8.607172, 47.353875], [8.60762, 47.353799], [8.60762, 47.353799], [8.607707, 47.353785], [8.607795, 47.353775], [8.607883, 47.353767], [8.607972, 47.353763], [8.60806, 47.353761], [8.608149, 47.353762], [8.608969, 47.353786], [8.609786, 47.353818], [8.609849, 47.353822], [8.609913, 47.353826], [8.609976, 47.353831], [8.610038, 47.353837], [8.610101, 47.353844], [8.610163, 47.353852], [8.610398, 47.353885], [8.610566, 47.353909], [8.610734, 47.353934], [8.610901, 47.35396], [8.611042, 47.353988], [8.611179, 47.354024], [8.611311, 47.354069], [8.611436, 47.354122], [8.611554, 47.354182], [8.611664, 47.354248], [8.61228, 47.354615], [8.612353, 47.354655], [8.612431, 47.354691], [8.612513, 47.354722], [8.612599, 47.354748], [8.612688, 47.354769], [8.612779, 47.354784], [8.612872, 47.354794], [8.612966, 47.354798], [8.61306, 47.354797], [8.613153, 47.35479], [8.613245, 47.354777], [8.613335, 47.35476], [8.613423, 47.354736], [8.613507, 47.354708], [8.613902, 47.354561], [8.614031, 47.354517], [8.614166, 47.354479], [8.614304, 47.35445], [8.614446, 47.354427], [8.61459, 47.354413], [8.614735, 47.354407], [8.615252, 47.354358], [8.61529, 47.354354], [8.615327, 47.354348], [8.615363, 47.35434], [8.615398, 47.354329], [8.615431, 47.354317]]], "type": "MultiLineString"}, "id": "1858", "properties": {}, "type": "Feature"}, {"bbox": [8.548446, 47.385761, 8.553089, 47.387465], "geometry": {"coordinates": [[[8.548446, 47.385761], [8.548969, 47.385828], [8.549501, 47.386063], [8.549814, 47.386189], [8.550163, 47.386315], [8.55019, 47.386417], [8.550313, 47.386476], [8.550829, 47.386698], [8.551103, 47.386816], [8.551252, 47.386853], [8.551477, 47.386901], [8.55153, 47.386958], [8.552262, 47.387209], [8.552484, 47.387349], [8.552565, 47.387384], [8.552629, 47.387354], [8.552665, 47.38741], [8.552755, 47.387373], [8.552795, 47.387439], [8.552876, 47.387377], [8.552898, 47.387465], [8.553015, 47.38739], [8.553089, 47.387422]]], "type": "MultiLineString"}, "id": "1859", "properties": {}, "type": "Feature"}, {"bbox": [8.548604, 47.376882, 8.551986, 47.378722], "geometry": {"coordinates": [[[8.548604, 47.376882], [8.548843, 47.376987], [8.549086, 47.377087], [8.549335, 47.37718], [8.549538, 47.37725], [8.549741, 47.377319], [8.549945, 47.377387], [8.550395, 47.377526], [8.550534, 47.377582], [8.551031, 47.377825], [8.551067, 47.377851], [8.5511, 47.37788], [8.551129, 47.37791], [8.551154, 47.377942], [8.551174, 47.377976], [8.55119, 47.378011], [8.551306, 47.378137], [8.551501, 47.378327], [8.551788, 47.378574], [8.551986, 47.378722]]], "type": "MultiLineString"}, "id": "1860", "properties": {}, "type": "Feature"}, {"bbox": [8.563348, 47.349169, 8.564215, 47.350265], "geometry": {"coordinates": [[[8.563348, 47.350265], [8.56346, 47.350087], [8.563494, 47.350036], [8.563517, 47.350005], [8.564172, 47.34922], [8.564215, 47.349169]]], "type": "MultiLineString"}, "id": "1863", "properties": {}, "type": "Feature"}, {"bbox": [8.55807, 47.412297, 8.558943, 47.417191], "geometry": {"coordinates": [[[8.558712, 47.412297], [8.558724, 47.412452], [8.558705, 47.412851], [8.558698, 47.413013], [8.558736, 47.41307], [8.558914, 47.414441], [8.558943, 47.41455], [8.558562, 47.415722], [8.55807, 47.417191]]], "type": "MultiLineString"}, "id": "1865", "properties": {}, "type": "Feature"}, {"bbox": [8.562651, 47.371451, 8.565023, 47.37229], "geometry": {"coordinates": [[[8.562651, 47.371451], [8.562814, 47.37157], [8.563392, 47.371891], [8.563498, 47.371949], [8.563612, 47.372], [8.563732, 47.372045], [8.563857, 47.372083], [8.563986, 47.372113], [8.564119, 47.372136], [8.56476, 47.372247], [8.565023, 47.37229]]], "type": "MultiLineString"}, "id": "1868", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.382708, 8.540019, 47.38359], "geometry": {"coordinates": [[[8.539885, 47.382708], [8.539897, 47.382718], [8.539907, 47.382729], [8.539916, 47.38274], [8.539924, 47.382752], [8.539996, 47.382906], [8.539999, 47.382914], [8.540003, 47.382923], [8.540005, 47.382931], [8.540009, 47.382945], [8.540013, 47.382958], [8.540015, 47.382972], [8.540018, 47.382994], [8.540019, 47.383017], [8.540017, 47.383039], [8.540015, 47.383054], [8.54001, 47.383068], [8.540004, 47.383081], [8.54, 47.383088], [8.539995, 47.383095], [8.53999, 47.383101], [8.53998, 47.383112], [8.539969, 47.383123], [8.539957, 47.383133], [8.539943, 47.383142], [8.539928, 47.38315], [8.539834, 47.383196], [8.539766, 47.383234], [8.539757, 47.383239], [8.539605, 47.383317], [8.539602, 47.383319], [8.539555, 47.383344], [8.539429, 47.383413], [8.53935, 47.383462], [8.5393, 47.383513], [8.539243, 47.38359]]], "type": "MultiLineString"}, "id": "1870", "properties": {}, "type": "Feature"}, {"bbox": [8.567643, 47.40999, 8.569115, 47.410537], "geometry": {"coordinates": [[[8.567643, 47.40999], [8.567918, 47.410112], [8.567939, 47.410121], [8.567961, 47.410129], [8.567985, 47.410136], [8.568008, 47.410141], [8.568033, 47.410144], [8.568057, 47.410147], [8.568082, 47.410148], [8.568107, 47.410147], [8.568132, 47.410145], [8.568156, 47.410142], [8.56818, 47.410137], [8.568409, 47.410114], [8.568438, 47.410111], [8.568467, 47.41011], [8.568495, 47.41011], [8.568524, 47.410112], [8.568552, 47.410116], [8.56858, 47.410121], [8.568607, 47.410128], [8.568633, 47.410137], [8.568658, 47.410147], [8.568681, 47.410159], [8.568895, 47.410249], [8.568926, 47.410265], [8.568955, 47.410282], [8.568981, 47.410301], [8.569005, 47.410322], [8.569026, 47.410344], [8.569044, 47.410367], [8.569059, 47.410391], [8.569071, 47.410415], [8.56908, 47.410441], [8.569115, 47.410537]]], "type": "MultiLineString"}, "id": "1871", "properties": {}, "type": "Feature"}, {"bbox": [8.521015, 47.343396, 8.524337, 47.34658], "geometry": {"coordinates": [[[8.521321, 47.34658], [8.521332, 47.346535], [8.521276, 47.346401], [8.521219, 47.346267], [8.52116, 47.346133], [8.521125, 47.346028], [8.52111, 47.345964], [8.521027, 47.345782], [8.521021, 47.345762], [8.521016, 47.345742], [8.521015, 47.345722], [8.521015, 47.345702], [8.521018, 47.345682], [8.521024, 47.345662], [8.521032, 47.345643], [8.521042, 47.345624], [8.521302, 47.345246], [8.521339, 47.345203], [8.521381, 47.345162], [8.521428, 47.345124], [8.521481, 47.345089], [8.521537, 47.345057], [8.522048, 47.344787], [8.522226, 47.344691], [8.522525, 47.34457], [8.522847, 47.344431], [8.523031, 47.344341], [8.523368, 47.344117], [8.523664, 47.343904], [8.523931, 47.343723], [8.52404, 47.343656], [8.524085, 47.343615], [8.524116, 47.343572], [8.524133, 47.343536], [8.524146, 47.343521], [8.524161, 47.343506], [8.524178, 47.343492], [8.524196, 47.343479], [8.524216, 47.343468], [8.524337, 47.343396]]], "type": "MultiLineString"}, "id": "1873", "properties": {}, "type": "Feature"}, {"bbox": [8.617644, 47.355692, 8.621818, 47.360043], "geometry": {"coordinates": [[[8.61869, 47.355692], [8.618651, 47.355821], [8.618503, 47.356075], [8.6184, 47.356137], [8.618306, 47.356201], [8.618238, 47.356298], [8.618127, 47.35652], [8.617664, 47.357026], [8.617656, 47.357041], [8.61765, 47.357057], [8.617646, 47.357072], [8.617644, 47.357088], [8.617644, 47.357104], [8.617646, 47.35712], [8.61765, 47.357135], [8.617656, 47.357151], [8.617664, 47.357165], [8.617674, 47.35718], [8.617686, 47.357194], [8.617699, 47.357207], [8.617714, 47.357219], [8.617971, 47.357486], [8.618175, 47.357743], [8.618236, 47.357826], [8.618312, 47.357939], [8.618389, 47.358051], [8.618466, 47.358163], [8.618501, 47.358214], [8.618536, 47.358265], [8.618571, 47.358316], [8.618597, 47.358352], [8.618624, 47.358387], [8.618653, 47.358422], [8.618681, 47.358454], [8.61871, 47.358486], [8.61874, 47.358517], [8.618944, 47.358724], [8.619146, 47.358933], [8.619346, 47.359142], [8.619372, 47.359168], [8.619398, 47.359194], [8.619425, 47.35922], [8.61946, 47.359252], [8.619497, 47.359283], [8.619535, 47.359314], [8.619546, 47.359323], [8.619557, 47.359331], [8.619568, 47.35934], [8.619611, 47.359372], [8.619655, 47.359404], [8.6197, 47.359435], [8.619717, 47.359462], [8.619735, 47.359462], [8.619813, 47.359514], [8.619896, 47.359562], [8.619982, 47.359607], [8.62005, 47.359638], [8.620121, 47.359664], [8.620196, 47.359686], [8.620273, 47.359704], [8.620352, 47.359717], [8.620432, 47.359725], [8.620494, 47.359731], [8.620557, 47.359737], [8.620619, 47.359744], [8.62071, 47.359757], [8.6208, 47.359773], [8.620889, 47.359792], [8.620911, 47.359798], [8.620932, 47.359804], [8.620952, 47.359812], [8.621012, 47.359835], [8.621072, 47.359859], [8.621133, 47.359881], [8.62117, 47.359894], [8.621246, 47.359919], [8.621323, 47.359943], [8.621402, 47.359965], [8.621451, 47.359976], [8.621501, 47.359984], [8.621553, 47.35999], [8.621604, 47.359993], [8.621641, 47.359994], [8.621677, 47.359998], [8.621713, 47.360003], [8.621736, 47.360008], [8.621758, 47.360015], [8.621779, 47.360023], [8.621799, 47.360032], [8.621818, 47.360043]]], "type": "MultiLineString"}, "id": "1876", "properties": {}, "type": "Feature"}, {"bbox": [8.563175, 47.374503, 8.566271, 47.375241], "geometry": {"coordinates": [[[8.563175, 47.37503], [8.563694, 47.374582], [8.563718, 47.374566], [8.563744, 47.374552], [8.563772, 47.37454], [8.563801, 47.374529], [8.563832, 47.37452], [8.563864, 47.374513], [8.563896, 47.374508], [8.563929, 47.374505], [8.563962, 47.374503], [8.563995, 47.374504], [8.564029, 47.374506], [8.564061, 47.374511], [8.564093, 47.374517], [8.564124, 47.374525], [8.564154, 47.374535], [8.564183, 47.374547], [8.56421, 47.37456], [8.564235, 47.374575], [8.564258, 47.374592], [8.564279, 47.374609], [8.564297, 47.374628], [8.564389, 47.374712], [8.564408, 47.37473], [8.564429, 47.374748], [8.564453, 47.374763], [8.564478, 47.374778], [8.564506, 47.374791], [8.564535, 47.374802], [8.564565, 47.374811], [8.564597, 47.374819], [8.564629, 47.374824], [8.564662, 47.374828], [8.564695, 47.374829], [8.564728, 47.374829], [8.564761, 47.374826], [8.565819, 47.374716], [8.566271, 47.375241]]], "type": "MultiLineString"}, "id": "1881", "properties": {}, "type": "Feature"}, {"bbox": [8.581708, 47.359792, 8.582973, 47.36001], "geometry": {"coordinates": [[[8.581708, 47.36001], [8.581806, 47.359974], [8.582205, 47.359885], [8.582446, 47.359809], [8.582462, 47.359804], [8.58248, 47.359799], [8.582497, 47.359796], [8.582516, 47.359793], [8.582534, 47.359792], [8.582553, 47.359792], [8.582571, 47.359793], [8.582589, 47.359795], [8.582607, 47.359798], [8.582625, 47.359802], [8.582642, 47.359807], [8.582973, 47.359906]]], "type": "MultiLineString"}, "id": "1885", "properties": {}, "type": "Feature"}, {"bbox": [8.506576, 47.367689, 8.509543, 47.368588], "geometry": {"coordinates": [[[8.509543, 47.368588], [8.509265, 47.368411], [8.509088, 47.36832], [8.508899, 47.368241], [8.508699, 47.368175], [8.508491, 47.368122], [8.506576, 47.367689]]], "type": "MultiLineString"}, "id": "1886", "properties": {}, "type": "Feature"}, {"bbox": [8.475645, 47.415354, 8.479057, 47.415709], "geometry": {"coordinates": [[[8.475645, 47.415516], [8.475967, 47.415497], [8.476072, 47.41552], [8.476402, 47.415475], [8.476401, 47.41543], [8.47664, 47.415364], [8.477042, 47.415366], [8.477226, 47.415354], [8.477305, 47.415357], [8.477394, 47.415442], [8.477744, 47.415466], [8.478344, 47.415566], [8.478793, 47.415707], [8.478838, 47.415709], [8.478883, 47.415709], [8.478928, 47.415706], [8.478972, 47.4157], [8.479015, 47.415691], [8.479057, 47.41568]]], "type": "MultiLineString"}, "id": "1887", "properties": {}, "type": "Feature"}, {"bbox": [8.575324, 47.38473, 8.577204, 47.385914], "geometry": {"coordinates": [[[8.575324, 47.385914], [8.57587, 47.385844], [8.57593, 47.385732], [8.576283, 47.385693], [8.576461, 47.385681], [8.57712, 47.385602], [8.577129, 47.3856], [8.577138, 47.385598], [8.577147, 47.385595], [8.577155, 47.385592], [8.577163, 47.385588], [8.57717, 47.385584], [8.577177, 47.385579], [8.577183, 47.385574], [8.577188, 47.385568], [8.577193, 47.385563], [8.577197, 47.385557], [8.5772, 47.38555], [8.577202, 47.385544], [8.577203, 47.385538], [8.577204, 47.385531], [8.577203, 47.385525], [8.577202, 47.385518], [8.577039, 47.384925], [8.577032, 47.38486], [8.577034, 47.384795], [8.577044, 47.38473]]], "type": "MultiLineString"}, "id": "1888", "properties": {}, "type": "Feature"}, {"bbox": [8.518213, 47.399732, 8.529955, 47.402231], "geometry": {"coordinates": [[[8.529955, 47.399732], [8.529927, 47.399745], [8.529897, 47.399757], [8.529866, 47.399767], [8.529784, 47.399787], [8.5297, 47.399801], [8.529614, 47.399812], [8.529527, 47.399817], [8.52944, 47.399817], [8.52894, 47.399806], [8.528903, 47.399806], [8.528867, 47.399808], [8.528831, 47.399812], [8.528796, 47.399819], [8.528762, 47.399827], [8.528729, 47.399837], [8.528697, 47.399849], [8.528667, 47.399863], [8.528638, 47.399878], [8.528612, 47.399895], [8.528268, 47.400136], [8.528212, 47.400172], [8.528151, 47.400204], [8.528086, 47.400233], [8.528018, 47.400258], [8.527947, 47.400278], [8.527873, 47.400294], [8.526996, 47.400454], [8.526685, 47.400511], [8.526636, 47.400521], [8.526588, 47.400534], [8.526542, 47.40055], [8.526493, 47.400569], [8.526447, 47.400592], [8.526403, 47.400617], [8.526363, 47.400644], [8.526326, 47.400674], [8.526294, 47.400706], [8.526265, 47.400739], [8.52624, 47.400774], [8.52622, 47.40081], [8.526205, 47.400847], [8.526194, 47.400885], [8.526188, 47.400924], [8.526187, 47.400963], [8.526191, 47.401001], [8.526196, 47.401029], [8.526208, 47.401069], [8.526225, 47.401108], [8.526247, 47.401146], [8.526273, 47.401183], [8.526303, 47.401218], [8.526326, 47.401241], [8.525002, 47.401782], [8.524967, 47.401796], [8.524035, 47.402176], [8.523937, 47.402219], [8.523928, 47.402222], [8.523919, 47.402225], [8.52391, 47.402227], [8.5239, 47.402229], [8.52389, 47.40223], [8.52388, 47.402231], [8.52387, 47.402231], [8.523859, 47.40223], [8.52385, 47.402229], [8.52384, 47.402227], [8.52383, 47.402225], [8.523821, 47.402222], [8.523766, 47.402202], [8.523573, 47.40213], [8.523544, 47.402125], [8.521948, 47.401834], [8.520994, 47.401644], [8.520931, 47.401634], [8.520867, 47.401627], [8.520802, 47.401624], [8.520737, 47.401625], [8.520672, 47.40163], [8.520608, 47.401638], [8.520546, 47.401651], [8.520241, 47.401721], [8.520074, 47.401754], [8.519903, 47.401777], [8.51973, 47.40179], [8.519556, 47.401792], [8.519382, 47.401785], [8.51921, 47.401768], [8.519199, 47.401766], [8.519124, 47.401755], [8.519049, 47.401743], [8.518974, 47.401729], [8.518758, 47.40168], [8.518549, 47.401618], [8.518349, 47.401543], [8.518213, 47.401482]]], "type": "MultiLineString"}, "id": "1889", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.358445, 8.523115, 47.359321], "geometry": {"coordinates": [[[8.522947, 47.359321], [8.523115, 47.358445]]], "type": "MultiLineString"}, "id": "1890", "properties": {}, "type": "Feature"}, {"bbox": [8.467512, 47.389396, 8.46932, 47.390483], "geometry": {"coordinates": [[[8.46932, 47.389396], [8.469195, 47.389458], [8.469067, 47.389517], [8.468937, 47.389573], [8.468438, 47.389859], [8.467963, 47.390163], [8.467512, 47.390483]]], "type": "MultiLineString"}, "id": "1891", "properties": {}, "type": "Feature"}, {"bbox": [8.475352, 47.389958, 8.4772, 47.391857], "geometry": {"coordinates": [[[8.476606, 47.389958], [8.476648, 47.390003], [8.476859, 47.390313], [8.477171, 47.390618], [8.477179, 47.390627], [8.477186, 47.390637], [8.477191, 47.390646], [8.477196, 47.390656], [8.477199, 47.390666], [8.4772, 47.390677], [8.4772, 47.390687], [8.477199, 47.390697], [8.477197, 47.390708], [8.477193, 47.390718], [8.477188, 47.390727], [8.477181, 47.390737], [8.477174, 47.390746], [8.477165, 47.390754], [8.477155, 47.390762], [8.477144, 47.390769], [8.477132, 47.390776], [8.476702, 47.391013], [8.476233, 47.391295], [8.475363, 47.391817], [8.475352, 47.391857]]], "type": "MultiLineString"}, "id": "1893", "properties": {}, "type": "Feature"}, {"bbox": [8.594253, 47.367407, 8.601023, 47.373566], "geometry": {"coordinates": [[[8.594253, 47.373566], [8.594282, 47.373538], [8.594295, 47.373526], [8.594309, 47.373516], [8.594325, 47.373506], [8.594342, 47.373498], [8.594361, 47.37349], [8.594441, 47.37346], [8.594512, 47.373437], [8.595101, 47.373257], [8.595226, 47.373223], [8.595355, 47.373196], [8.595487, 47.373176], [8.595951, 47.373119], [8.596146, 47.37309], [8.596337, 47.373052], [8.596525, 47.373005], [8.59697, 47.372882], [8.597557, 47.372719], [8.597688, 47.372684], [8.59782, 47.372653], [8.597954, 47.372625], [8.598507, 47.372516], [8.5986, 47.372495], [8.598689, 47.372469], [8.598776, 47.372438], [8.598859, 47.372403], [8.598937, 47.372364], [8.599352, 47.372136], [8.599438, 47.372085], [8.599519, 47.372029], [8.599593, 47.371969], [8.59966, 47.371905], [8.599774, 47.371788], [8.599864, 47.371685], [8.59994, 47.371577], [8.599999, 47.371464], [8.600217, 47.370982], [8.600248, 47.370916], [8.600275, 47.370866], [8.600304, 47.370816], [8.600335, 47.370767], [8.600469, 47.370562], [8.600519, 47.370475], [8.600555, 47.370386], [8.600579, 47.370295], [8.600589, 47.370202], [8.600686, 47.369975], [8.600739, 47.369852], [8.60075, 47.369827], [8.600759, 47.369801], [8.600765, 47.369776], [8.600768, 47.36975], [8.600767, 47.369724], [8.600763, 47.369699], [8.600756, 47.369673], [8.600746, 47.369648], [8.600733, 47.369624], [8.600717, 47.369601], [8.600698, 47.369578], [8.600677, 47.369557], [8.600653, 47.369537], [8.600396, 47.369342], [8.600132, 47.369156], [8.599604, 47.368786], [8.599565, 47.368751], [8.599532, 47.368713], [8.599503, 47.368673], [8.599498, 47.368663], [8.599493, 47.368652], [8.59949, 47.368642], [8.599488, 47.368631], [8.599488, 47.36862], [8.599489, 47.368609], [8.599491, 47.368598], [8.599495, 47.368587], [8.5995, 47.368576], [8.599506, 47.368566], [8.599519, 47.36855], [8.599533, 47.368534], [8.59955, 47.368519], [8.599568, 47.368504], [8.599587, 47.368491], [8.599677, 47.368438], [8.599769, 47.368388], [8.599864, 47.36834], [8.599985, 47.368285], [8.60011, 47.368234], [8.600239, 47.368187], [8.600493, 47.368101], [8.600552, 47.368078], [8.600608, 47.368052], [8.60066, 47.368022], [8.600708, 47.36799], [8.600752, 47.367954], [8.600791, 47.367916], [8.600824, 47.367876], [8.600852, 47.367834], [8.600874, 47.367791], [8.600891, 47.367746], [8.600923, 47.367634], [8.601023, 47.367407]]], "type": "MultiLineString"}, "id": "1894", "properties": {}, "type": "Feature"}, {"bbox": [8.524713, 47.329211, 8.529881, 47.332432], "geometry": {"coordinates": [[[8.529881, 47.332393], [8.528423, 47.332432], [8.528385, 47.33243], [8.528348, 47.332426], [8.528312, 47.33242], [8.528276, 47.332411], [8.528242, 47.332401], [8.528209, 47.332389], [8.528177, 47.332375], [8.528148, 47.332359], [8.527839, 47.332221], [8.527778, 47.332189], [8.527722, 47.332154], [8.52767, 47.332115], [8.527623, 47.332073], [8.527582, 47.332029], [8.527547, 47.331982], [8.527199, 47.331395], [8.527022, 47.330995], [8.526885, 47.330588], [8.526789, 47.330175], [8.52678, 47.330061], [8.526678, 47.329985], [8.526662, 47.329974], [8.526644, 47.329964], [8.526625, 47.329955], [8.526605, 47.329947], [8.526584, 47.329941], [8.526562, 47.329936], [8.52654, 47.329932], [8.526517, 47.32993], [8.526423, 47.329907], [8.526396, 47.329896], [8.52637, 47.329884], [8.526347, 47.329871], [8.526272, 47.329809], [8.526198, 47.329752], [8.526181, 47.329738], [8.526181, 47.329738], [8.526149, 47.329716], [8.526113, 47.329695], [8.526075, 47.329678], [8.526058, 47.32967], [8.525661, 47.329517], [8.525044, 47.329286], [8.524972, 47.329261], [8.524899, 47.329238], [8.524824, 47.329219], [8.524713, 47.329211]]], "type": "MultiLineString"}, "id": "1895", "properties": {}, "type": "Feature"}, {"bbox": [8.501089, 47.353155, 8.505942, 47.3563], "geometry": {"coordinates": [[[8.505942, 47.3563], [8.505587, 47.356109], [8.50553, 47.356078], [8.505469, 47.356049], [8.505391, 47.356016], [8.505003, 47.355866], [8.504889, 47.355826], [8.504654, 47.355747], [8.504564, 47.355718], [8.504463, 47.355687], [8.50436, 47.355659], [8.504139, 47.355605], [8.504087, 47.355592], [8.503905, 47.355544], [8.50379, 47.355509], [8.50335, 47.355375], [8.503117, 47.355302], [8.503041, 47.355277], [8.502966, 47.355251], [8.502894, 47.355224], [8.5028, 47.355187], [8.502769, 47.355172], [8.502567, 47.355102], [8.502535, 47.355043], [8.502508, 47.355012], [8.502384, 47.354919], [8.502348, 47.35489], [8.502266, 47.354821], [8.502243, 47.354797], [8.502176, 47.35471], [8.502165, 47.354693], [8.502112, 47.354584], [8.502038, 47.354349], [8.50189, 47.354017], [8.501883, 47.354003], [8.501766, 47.353812], [8.501749, 47.353791], [8.501292, 47.353364], [8.501221, 47.353295], [8.501154, 47.353226], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "1897", "properties": {}, "type": "Feature"}, {"bbox": [8.486915, 47.380001, 8.487665, 47.382432], "geometry": {"coordinates": [[[8.487463, 47.382432], [8.487471, 47.382251], [8.487646, 47.381653], [8.487665, 47.381555], [8.487605, 47.381429], [8.487544, 47.381303], [8.48748, 47.381178], [8.487409, 47.381043], [8.487336, 47.380909], [8.487262, 47.380775], [8.487217, 47.38069], [8.487173, 47.380604], [8.487129, 47.380518], [8.487052, 47.380347], [8.48698, 47.380175], [8.486915, 47.380001]]], "type": "MultiLineString"}, "id": "1898", "properties": {}, "type": "Feature"}, {"bbox": [8.503968, 47.361696, 8.504338, 47.362109], "geometry": {"coordinates": [[[8.503968, 47.362109], [8.504007, 47.362073], [8.504183, 47.361927], [8.504198, 47.361909], [8.504241, 47.361828], [8.504257, 47.361809], [8.504291, 47.361781], [8.504338, 47.361696]]], "type": "MultiLineString"}, "id": "1900", "properties": {}, "type": "Feature"}, {"bbox": [8.4882, 47.404861, 8.488802, 47.405896], "geometry": {"coordinates": [[[8.4882, 47.404861], [8.488234, 47.404911], [8.488267, 47.404963], [8.488414, 47.405194], [8.488497, 47.405326], [8.488659, 47.405806], [8.488734, 47.405863], [8.488802, 47.405896]]], "type": "MultiLineString"}, "id": "1901", "properties": {}, "type": "Feature"}, {"bbox": [8.508268, 47.417887, 8.511174, 47.419518], "geometry": {"coordinates": [[[8.511174, 47.417887], [8.509802, 47.41868], [8.509871, 47.418741], [8.509517, 47.418923], [8.509475, 47.418953], [8.509429, 47.41899], [8.509178, 47.419256], [8.509057, 47.419188], [8.508838, 47.419306], [8.508793, 47.419265], [8.508268, 47.419518]]], "type": "MultiLineString"}, "id": "1902", "properties": {}, "type": "Feature"}, {"bbox": [8.504336, 47.419952, 8.506647, 47.420636], "geometry": {"coordinates": [[[8.506647, 47.419952], [8.506334, 47.420138], [8.505519, 47.420385], [8.505486, 47.420375], [8.505452, 47.420366], [8.505416, 47.42036], [8.50538, 47.420356], [8.505344, 47.420355], [8.505307, 47.420355], [8.505271, 47.420358], [8.505235, 47.420363], [8.5052, 47.42037], [8.505166, 47.420379], [8.504336, 47.420636]]], "type": "MultiLineString"}, "id": "1903", "properties": {}, "type": "Feature"}, {"bbox": [8.510216, 47.409054, 8.510986, 47.409752], "geometry": {"coordinates": [[[8.510216, 47.409054], [8.510244, 47.40909], [8.510409, 47.409178], [8.510754, 47.409384], [8.510931, 47.409637], [8.510986, 47.409752]]], "type": "MultiLineString"}, "id": "1906", "properties": {}, "type": "Feature"}, {"bbox": [8.535371, 47.375749, 8.535738, 47.375964], "geometry": {"coordinates": [[[8.535371, 47.375802], [8.535447, 47.375749], [8.535738, 47.375964]]], "type": "MultiLineString"}, "id": "1908", "properties": {}, "type": "Feature"}, {"bbox": [8.522175, 47.357934, 8.523632, 47.358445], "geometry": {"coordinates": [[[8.523632, 47.358316], [8.523551, 47.358318], [8.523601, 47.358172], [8.523352, 47.358125], [8.523135, 47.358085], [8.523134, 47.35809], [8.522494, 47.358028], [8.522485, 47.357965], [8.522269, 47.357934], [8.522235, 47.358089], [8.522175, 47.358382], [8.522254, 47.358388], [8.522584, 47.35842], [8.52259, 47.35839], [8.523086, 47.358438], [8.523115, 47.358445]]], "type": "MultiLineString"}, "id": "1909", "properties": {}, "type": "Feature"}, {"bbox": [8.53978, 47.368392, 8.540288, 47.368729], "geometry": {"coordinates": [[[8.53978, 47.368392], [8.540131, 47.368453], [8.540044, 47.368695], [8.540288, 47.368729]]], "type": "MultiLineString"}, "id": "1914", "properties": {}, "type": "Feature"}, {"bbox": [8.496264, 47.40761, 8.50119, 47.411467], "geometry": {"coordinates": [[[8.497547, 47.40761], [8.497584, 47.407636], [8.497812, 47.407819], [8.498214, 47.408093], [8.498245, 47.408114], [8.498286, 47.408146], [8.49833, 47.40818], [8.498404, 47.408253], [8.498514, 47.408381], [8.498548, 47.408411], [8.498604, 47.408463], [8.498714, 47.408528], [8.498832, 47.408573], [8.4991, 47.40866], [8.499264, 47.408731], [8.499414, 47.408817], [8.499552, 47.408911], [8.499661, 47.40902], [8.499934, 47.409371], [8.499986, 47.409442], [8.500084, 47.409572], [8.50016, 47.409713], [8.500185, 47.409856], [8.50022, 47.409961], [8.500291, 47.410058], [8.500404, 47.410136], [8.500557, 47.410211], [8.500782, 47.410338], [8.500942, 47.41044], [8.501128, 47.41058], [8.501143, 47.410594], [8.501157, 47.410608], [8.501169, 47.410624], [8.501178, 47.41064], [8.501185, 47.410656], [8.501188, 47.410665], [8.50119, 47.410675], [8.50119, 47.410684], [8.50119, 47.410694], [8.501188, 47.410703], [8.501185, 47.410712], [8.501181, 47.410721], [8.501176, 47.410731], [8.50117, 47.410739], [8.501162, 47.410748], [8.501154, 47.410756], [8.501145, 47.410763], [8.501135, 47.41077], [8.501124, 47.410776], [8.501112, 47.410782], [8.5011, 47.410787], [8.501087, 47.410791], [8.500953, 47.41083], [8.500721, 47.41092], [8.499712, 47.411371], [8.499646, 47.411398], [8.499577, 47.41142], [8.499505, 47.411439], [8.499431, 47.411453], [8.499356, 47.411462], [8.49928, 47.411467], [8.499203, 47.411467], [8.498041, 47.411434], [8.497632, 47.411424], [8.497531, 47.41142], [8.496821, 47.411403], [8.496736, 47.411399], [8.496651, 47.411394], [8.496567, 47.411386], [8.496407, 47.41137], [8.496377, 47.411366], [8.496347, 47.411359], [8.496318, 47.411352], [8.49629, 47.411342], [8.496264, 47.41133]]], "type": "MultiLineString"}, "id": "1919", "properties": {}, "type": "Feature"}, {"bbox": [8.499026, 47.403619, 8.499966, 47.40488], "geometry": {"coordinates": [[[8.499026, 47.403692], [8.499033, 47.403695], [8.499334, 47.403619], [8.499429, 47.403792], [8.499274, 47.403832], [8.499617, 47.404445], [8.499544, 47.404508], [8.499773, 47.404823], [8.499898, 47.40479], [8.499966, 47.40488]]], "type": "MultiLineString"}, "id": "1920", "properties": {}, "type": "Feature"}, {"bbox": [8.505618, 47.428526, 8.507128, 47.433147], "geometry": {"coordinates": [[[8.505623, 47.428526], [8.505657, 47.428538], [8.505693, 47.428548], [8.50573, 47.428555], [8.505768, 47.428561], [8.505807, 47.428565], [8.505968, 47.428582], [8.506126, 47.428608], [8.50628, 47.428645], [8.506937, 47.428805], [8.50695, 47.428809], [8.506962, 47.428814], [8.506973, 47.42882], [8.506983, 47.428827], [8.506992, 47.428834], [8.507001, 47.428841], [8.507008, 47.428849], [8.507014, 47.428857], [8.50702, 47.428866], [8.507054, 47.428937], [8.507085, 47.429009], [8.507114, 47.429082], [8.507128, 47.429186], [8.507107, 47.429331], [8.507044, 47.429482], [8.506978, 47.429579], [8.506694, 47.429928], [8.506634, 47.430024], [8.506297, 47.430715], [8.506275, 47.43075], [8.506249, 47.430783], [8.506218, 47.430815], [8.506183, 47.430845], [8.506145, 47.430872], [8.505858, 47.431065], [8.505838, 47.43108], [8.50582, 47.431097], [8.505804, 47.431114], [8.50579, 47.431133], [8.505779, 47.431152], [8.50577, 47.431171], [8.505763, 47.431192], [8.505759, 47.431212], [8.505736, 47.431376], [8.505707, 47.431589], [8.505676, 47.43181], [8.505618, 47.432226], [8.505619, 47.43226], [8.505622, 47.432292], [8.505655, 47.43233], [8.505858, 47.432537], [8.506131, 47.432821], [8.506417, 47.433129], [8.506434, 47.433147]]], "type": "MultiLineString"}, "id": "1924", "properties": {}, "type": "Feature"}, {"bbox": [8.518715, 47.402202, 8.527785, 47.405681], "geometry": {"coordinates": [[[8.527785, 47.4036], [8.52771, 47.403602], [8.526625, 47.403908], [8.52567, 47.404192], [8.525644, 47.4042], [8.525619, 47.40421], [8.525595, 47.404222], [8.525572, 47.404234], [8.52393, 47.405216], [8.523493, 47.405484], [8.523417, 47.405527], [8.523335, 47.405565], [8.523248, 47.405597], [8.523157, 47.405624], [8.523063, 47.405645], [8.522967, 47.40566], [8.522798, 47.405672], [8.522628, 47.40568], [8.522458, 47.405681], [8.522431, 47.405681], [8.522402, 47.405681], [8.521863, 47.405674], [8.521539, 47.405669], [8.521489, 47.405666], [8.521441, 47.405661], [8.521393, 47.405653], [8.521346, 47.405642], [8.5213, 47.405629], [8.521257, 47.405612], [8.521216, 47.405594], [8.521177, 47.405573], [8.521141, 47.40555], [8.519809, 47.404626], [8.518962, 47.404058], [8.518911, 47.404021], [8.518866, 47.403981], [8.518825, 47.403938], [8.518791, 47.403893], [8.518763, 47.403845], [8.518741, 47.403797], [8.518725, 47.403747], [8.518717, 47.403696], [8.518715, 47.403646], [8.518719, 47.403595], [8.518731, 47.403544], [8.518741, 47.403518], [8.518754, 47.403492], [8.51877, 47.403466], [8.51879, 47.403442], [8.518813, 47.403419], [8.518839, 47.403398], [8.518867, 47.403378], [8.518898, 47.40336], [8.518931, 47.403344], [8.518966, 47.40333], [8.519002, 47.403318], [8.51904, 47.403309], [8.51908, 47.403301], [8.51912, 47.403297], [8.519388, 47.403272], [8.519452, 47.403266], [8.520473, 47.403142], [8.521265, 47.403066], [8.521333, 47.403059], [8.522183, 47.402961], [8.522304, 47.402943], [8.522423, 47.402919], [8.522538, 47.402889], [8.52265, 47.402853], [8.522718, 47.402823], [8.52274, 47.402812], [8.522761, 47.402799], [8.522781, 47.402786], [8.522912, 47.402692], [8.523012, 47.402619], [8.52311, 47.402545], [8.523206, 47.40247], [8.523317, 47.402391], [8.523439, 47.402319], [8.52357, 47.402256], [8.523616, 47.402238], [8.523664, 47.402223], [8.523714, 47.402211], [8.523766, 47.402202]]], "type": "MultiLineString"}, "id": "1925", "properties": {}, "type": "Feature"}, {"bbox": [8.548198, 47.411253, 8.54901, 47.412183], "geometry": {"coordinates": [[[8.548402, 47.412183], [8.548198, 47.411718], [8.548294, 47.411685], [8.54901, 47.411491], [8.548865, 47.411253]]], "type": "MultiLineString"}, "id": "1929", "properties": {}, "type": "Feature"}, {"bbox": [8.521446, 47.38493, 8.524191, 47.386063], "geometry": {"coordinates": [[[8.524191, 47.384974], [8.524071, 47.384937], [8.524063, 47.384934], [8.524055, 47.384933], [8.524047, 47.384931], [8.524039, 47.384931], [8.52403, 47.38493], [8.524022, 47.384931], [8.524013, 47.384931], [8.524005, 47.384933], [8.523997, 47.384934], [8.523929, 47.384956], [8.521913, 47.385905], [8.521959, 47.38594], [8.521771, 47.38604], [8.521446, 47.386063]]], "type": "MultiLineString"}, "id": "1930", "properties": {}, "type": "Feature"}, {"bbox": [8.545705, 47.372467, 8.547257, 47.373018], "geometry": {"coordinates": [[[8.545705, 47.372467], [8.545961, 47.372662], [8.546049, 47.372723], [8.546146, 47.372779], [8.546249, 47.372829], [8.546359, 47.372872], [8.546474, 47.372908], [8.546791, 47.372954], [8.547077, 47.373018], [8.547257, 47.373009]]], "type": "MultiLineString"}, "id": "1931", "properties": {}, "type": "Feature"}, {"bbox": [8.540449, 47.393763, 8.541681, 47.393831], "geometry": {"coordinates": [[[8.540449, 47.393829], [8.540979, 47.39381], [8.541207, 47.393825], [8.541341, 47.393831], [8.541681, 47.393763]]], "type": "MultiLineString"}, "id": "1937", "properties": {}, "type": "Feature"}, {"bbox": [8.477449, 47.412418, 8.480362, 47.413605], "geometry": {"coordinates": [[[8.480362, 47.412418], [8.480037, 47.412519], [8.479713, 47.412627], [8.479542, 47.412657], [8.479523, 47.412662], [8.47943, 47.412695], [8.479345, 47.412725], [8.479205, 47.412775], [8.478924, 47.412909], [8.477621, 47.41353], [8.477449, 47.413605]]], "type": "MultiLineString"}, "id": "1939", "properties": {}, "type": "Feature"}, {"bbox": [8.594862, 47.397047, 8.59627, 47.398941], "geometry": {"coordinates": [[[8.594862, 47.397047], [8.594942, 47.397069], [8.59502, 47.397094], [8.595097, 47.397122], [8.59627, 47.397922], [8.596193, 47.398077], [8.596161, 47.39819], [8.596128, 47.398309], [8.596073, 47.398505], [8.596054, 47.398552], [8.596029, 47.398597], [8.595999, 47.398641], [8.595964, 47.398682], [8.595924, 47.398722], [8.595673, 47.398941]]], "type": "MultiLineString"}, "id": "1941", "properties": {}, "type": "Feature"}, {"bbox": [8.57542, 47.409542, 8.576022, 47.409717], "geometry": {"coordinates": [[[8.57542, 47.409542], [8.575524, 47.4097], [8.575785, 47.409634], [8.576022, 47.409717]]], "type": "MultiLineString"}, "id": "1942", "properties": {}, "type": "Feature"}, {"bbox": [8.513039, 47.389485, 8.514116, 47.390646], "geometry": {"coordinates": [[[8.513039, 47.389485], [8.513055, 47.389566], [8.513076, 47.389647], [8.513101, 47.389727], [8.513232, 47.389911], [8.513367, 47.390094], [8.513507, 47.390275], [8.513549, 47.390321], [8.513595, 47.390365], [8.513645, 47.390407], [8.513654, 47.390415], [8.513665, 47.390421], [8.513676, 47.390427], [8.513687, 47.390432], [8.5137, 47.390437], [8.513713, 47.390441], [8.513726, 47.390444], [8.513747, 47.390447], [8.513767, 47.390452], [8.513786, 47.390458], [8.513804, 47.390466], [8.513821, 47.390474], [8.513914, 47.390535], [8.514013, 47.390593], [8.514116, 47.390646]]], "type": "MultiLineString"}, "id": "1944", "properties": {}, "type": "Feature"}, {"bbox": [8.545705, 47.37211, 8.546273, 47.372467], "geometry": {"coordinates": [[[8.545705, 47.372467], [8.54581, 47.37246], [8.545989, 47.372337], [8.546013, 47.372186], [8.546273, 47.37211]]], "type": "MultiLineString"}, "id": "1945", "properties": {}, "type": "Feature"}, {"bbox": [8.542322, 47.380098, 8.542672, 47.380373], "geometry": {"coordinates": [[[8.542322, 47.380261], [8.542346, 47.380269], [8.542656, 47.380373], [8.542672, 47.380348], [8.542467, 47.380098], [8.542346, 47.380269]]], "type": "MultiLineString"}, "id": "1949", "properties": {}, "type": "Feature"}, {"bbox": [8.502237, 47.355155, 8.506546, 47.356971], "geometry": {"coordinates": [[[8.506546, 47.356971], [8.506379, 47.356872], [8.50499, 47.356381], [8.504667, 47.356252], [8.504021, 47.355953], [8.503888, 47.355891], [8.503597, 47.355717], [8.503008, 47.355536], [8.502299, 47.355225], [8.502237, 47.355155]]], "type": "MultiLineString"}, "id": "1953", "properties": {}, "type": "Feature"}, {"bbox": [8.506205, 47.407599, 8.507337, 47.408465], "geometry": {"coordinates": [[[8.506985, 47.407727], [8.506927, 47.407748], [8.506816, 47.407599], [8.506205, 47.407803], [8.506436, 47.408124], [8.506403, 47.408136], [8.506476, 47.408235], [8.506818, 47.408118], [8.506953, 47.408302], [8.506837, 47.408338], [8.506931, 47.408465], [8.507337, 47.408328], [8.506927, 47.407748]]], "type": "MultiLineString"}, "id": "1954", "properties": {}, "type": "Feature"}, {"bbox": [8.527722, 47.403659, 8.529262, 47.404228], "geometry": {"coordinates": [[[8.529262, 47.404228], [8.529148, 47.404193], [8.528293, 47.403904], [8.528133, 47.403846], [8.527978, 47.403782], [8.527828, 47.403712], [8.527722, 47.403659]]], "type": "MultiLineString"}, "id": "1955", "properties": {}, "type": "Feature"}, {"bbox": [8.518941, 47.399904, 8.522749, 47.403317], "geometry": {"coordinates": [[[8.522749, 47.403288], [8.52264, 47.403302], [8.522549, 47.403312], [8.522457, 47.403317], [8.522365, 47.403317], [8.522269, 47.403312], [8.522174, 47.403301], [8.522081, 47.403283], [8.521991, 47.403259], [8.521371, 47.40307], [8.521333, 47.403059], [8.521294, 47.403047], [8.521256, 47.403035], [8.52122, 47.40302], [8.521186, 47.403003], [8.521152, 47.402985], [8.521111, 47.402964], [8.521103, 47.40296], [8.521096, 47.402956], [8.52109, 47.402951], [8.521084, 47.402945], [8.521079, 47.402939], [8.521075, 47.402933], [8.521072, 47.402927], [8.52107, 47.402921], [8.521068, 47.402914], [8.521043, 47.402751], [8.521037, 47.402723], [8.521027, 47.402696], [8.521014, 47.402669], [8.520997, 47.402644], [8.520978, 47.402619], [8.520955, 47.402596], [8.520929, 47.402574], [8.5209, 47.402554], [8.520869, 47.402535], [8.520835, 47.402519], [8.5208, 47.402505], [8.520482, 47.402388], [8.520482, 47.402388], [8.520467, 47.402383], [8.520451, 47.402379], [8.520435, 47.402376], [8.520419, 47.402374], [8.520402, 47.402374], [8.520386, 47.402374], [8.520369, 47.402375], [8.520353, 47.402377], [8.520337, 47.40238], [8.520289, 47.402392], [8.520242, 47.402405], [8.520196, 47.40242], [8.520112, 47.402446], [8.520026, 47.402467], [8.519937, 47.402483], [8.519566, 47.402541], [8.519405, 47.402565], [8.519244, 47.402586], [8.519082, 47.402605], [8.518976, 47.402619], [8.518974, 47.402619], [8.518971, 47.40262], [8.518969, 47.40262], [8.518966, 47.402619], [8.518964, 47.402619], [8.518961, 47.402619], [8.518959, 47.402618], [8.518957, 47.402617], [8.518954, 47.402616], [8.518952, 47.402615], [8.51895, 47.402614], [8.518949, 47.402613], [8.518947, 47.402612], [8.518946, 47.40261], [8.518944, 47.402609], [8.518943, 47.402607], [8.518942, 47.402606], [8.518942, 47.402604], [8.518941, 47.402602], [8.518941, 47.402601], [8.518941, 47.402599], [8.518941, 47.402597], [8.518942, 47.402596], [8.518942, 47.402594], [8.518943, 47.402592], [8.518944, 47.402591], [8.519008, 47.402508], [8.519027, 47.402481], [8.519042, 47.402453], [8.519053, 47.402423], [8.51906, 47.402394], [8.519063, 47.402363], [8.519062, 47.402333], [8.519038, 47.402118], [8.519076, 47.402106], [8.519088, 47.402101], [8.5191, 47.402096], [8.519111, 47.40209], [8.519121, 47.402083], [8.519131, 47.402076], [8.519139, 47.402069], [8.519147, 47.402061], [8.519154, 47.402052], [8.519197, 47.40199], [8.519214, 47.401963], [8.519227, 47.401936], [8.519237, 47.401907], [8.519244, 47.401878], [8.519246, 47.401849], [8.519245, 47.40182], [8.519241, 47.401791], [8.519199, 47.401766], [8.519164, 47.401743], [8.519174, 47.401733], [8.519369, 47.401687], [8.519377, 47.401685], [8.519385, 47.401683], [8.519392, 47.40168], [8.519399, 47.401676], [8.519405, 47.401672], [8.519411, 47.401668], [8.519416, 47.401663], [8.519649, 47.401439], [8.520044, 47.401059], [8.520129, 47.400957], [8.520145, 47.400937], [8.520161, 47.400917], [8.520182, 47.400891], [8.520341, 47.40067], [8.520408, 47.400557], [8.520541, 47.400399], [8.520556, 47.400379], [8.520569, 47.400358], [8.520579, 47.400336], [8.520647, 47.40015], [8.52066, 47.400124], [8.520676, 47.400099], [8.520695, 47.400075], [8.520818, 47.399929], [8.520831, 47.399904]]], "type": "MultiLineString"}, "id": "1961", "properties": {}, "type": "Feature"}, {"bbox": [8.566941, 47.359957, 8.567019, 47.360292], "geometry": {"coordinates": [[[8.566941, 47.359957], [8.566952, 47.359986], [8.567011, 47.359985], [8.567019, 47.360292]]], "type": "MultiLineString"}, "id": "1962", "properties": {}, "type": "Feature"}, {"bbox": [8.518869, 47.356952, 8.519291, 47.357758], "geometry": {"coordinates": [[[8.519291, 47.356952], [8.519208, 47.357078], [8.518869, 47.357758]]], "type": "MultiLineString"}, "id": "1965", "properties": {}, "type": "Feature"}, {"bbox": [8.538842, 47.372287, 8.540174, 47.373931], "geometry": {"coordinates": [[[8.540174, 47.372287], [8.539951, 47.372533], [8.539535, 47.373058], [8.538842, 47.373931]]], "type": "MultiLineString"}, "id": "1966", "properties": {}, "type": "Feature"}, {"bbox": [8.522872, 47.325029, 8.529592, 47.328469], "geometry": {"coordinates": [[[8.529592, 47.3281], [8.529067, 47.32808], [8.528971, 47.328091], [8.528877, 47.328107], [8.528786, 47.32813], [8.528698, 47.328158], [8.528614, 47.328191], [8.528536, 47.328229], [8.528462, 47.328273], [8.528395, 47.32832], [8.528279, 47.32839], [8.528249, 47.328407], [8.528218, 47.328421], [8.528184, 47.328434], [8.528149, 47.328445], [8.528113, 47.328454], [8.528076, 47.328461], [8.528038, 47.328465], [8.527969, 47.328469], [8.527899, 47.328469], [8.527831, 47.328464], [8.527763, 47.328455], [8.527696, 47.328442], [8.527632, 47.328425], [8.52757, 47.328404], [8.526873, 47.328136], [8.52679, 47.328102], [8.526586, 47.328017], [8.526496, 47.32798], [8.526331, 47.327926], [8.526232, 47.327894], [8.526042, 47.327873], [8.525806, 47.327863], [8.525749, 47.327862], [8.52545, 47.327881], [8.525197, 47.327905], [8.524665, 47.327949], [8.524538, 47.327858], [8.524341, 47.327724], [8.524178, 47.327605], [8.524066, 47.327523], [8.523705, 47.327272], [8.52369, 47.327257], [8.523555, 47.327127], [8.523466, 47.32699], [8.523359, 47.326709], [8.523328, 47.326563], [8.523299, 47.32642], [8.523252, 47.326115], [8.523178, 47.325806], [8.523043, 47.325481], [8.523038, 47.32547], [8.522982, 47.325346], [8.522898, 47.325162], [8.522872, 47.325029]]], "type": "MultiLineString"}, "id": "1967", "properties": {}, "type": "Feature"}, {"bbox": [8.543322, 47.371019, 8.544172, 47.371312], "geometry": {"coordinates": [[[8.543322, 47.371019], [8.54346, 47.371066], [8.5435, 47.371079], [8.543711, 47.371141], [8.543916, 47.371212], [8.544113, 47.371292], [8.544172, 47.371312]]], "type": "MultiLineString"}, "id": "1968", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380414, 8.525612, 47.380591], "geometry": {"coordinates": [[[8.525612, 47.380414], [8.525425, 47.380457], [8.525252, 47.380547], [8.525167, 47.380591]]], "type": "MultiLineString"}, "id": "1970", "properties": {}, "type": "Feature"}, {"bbox": [8.561076, 47.408296, 8.561334, 47.411648], "geometry": {"coordinates": [[[8.561309, 47.408296], [8.561334, 47.408369], [8.561246, 47.409447], [8.5612, 47.410083], [8.561145, 47.410856], [8.56112, 47.410978], [8.561076, 47.411566], [8.561094, 47.411648]]], "type": "MultiLineString"}, "id": "1971", "properties": {}, "type": "Feature"}, {"bbox": [8.526264, 47.378218, 8.526688, 47.378646], "geometry": {"coordinates": [[[8.526264, 47.378218], [8.526295, 47.37829], [8.526688, 47.378646]]], "type": "MultiLineString"}, "id": "1973", "properties": {}, "type": "Feature"}, {"bbox": [8.509331, 47.398257, 8.514399, 47.398935], "geometry": {"coordinates": [[[8.509331, 47.398935], [8.509341, 47.398908], [8.509355, 47.398882], [8.509371, 47.398857], [8.509391, 47.398834], [8.509427, 47.3988], [8.509466, 47.398769], [8.50951, 47.39874], [8.509556, 47.398714], [8.509606, 47.39869], [8.509659, 47.398669], [8.509714, 47.398652], [8.510099, 47.398544], [8.510492, 47.398451], [8.510891, 47.398372], [8.510996, 47.398349], [8.511104, 47.398333], [8.511213, 47.398323], [8.511686, 47.398262], [8.511707, 47.398259], [8.511728, 47.398257], [8.511749, 47.398257], [8.511771, 47.398258], [8.511792, 47.39826], [8.511812, 47.398263], [8.511832, 47.398268], [8.511852, 47.398273], [8.511871, 47.39828], [8.511898, 47.398289], [8.511925, 47.398297], [8.511954, 47.398303], [8.511983, 47.398307], [8.51251, 47.398273], [8.512894, 47.398266], [8.513279, 47.398281], [8.513659, 47.39832], [8.514034, 47.39838], [8.514399, 47.398462]]], "type": "MultiLineString"}, "id": "1974", "properties": {}, "type": "Feature"}, {"bbox": [8.575113, 47.35444, 8.57622, 47.355425], "geometry": {"coordinates": [[[8.575113, 47.35444], [8.575545, 47.354592], [8.575888, 47.354828], [8.575901, 47.354844], [8.575912, 47.35486], [8.57592, 47.354877], [8.575926, 47.354894], [8.575945, 47.355012], [8.575971, 47.355197], [8.575973, 47.355209], [8.575976, 47.355221], [8.57598, 47.355232], [8.575987, 47.355244], [8.575994, 47.355254], [8.576003, 47.355265], [8.576014, 47.355274], [8.576025, 47.355283], [8.576038, 47.355292], [8.576052, 47.355299], [8.57619, 47.355378], [8.57622, 47.355425]]], "type": "MultiLineString"}, "id": "1975", "properties": {}, "type": "Feature"}, {"bbox": [8.544307, 47.42248, 8.544786, 47.422905], "geometry": {"coordinates": [[[8.544307, 47.42248], [8.544408, 47.422554], [8.544786, 47.422905]]], "type": "MultiLineString"}, "id": "1978", "properties": {}, "type": "Feature"}, {"bbox": [8.51151, 47.322201, 8.514734, 47.324005], "geometry": {"coordinates": [[[8.514734, 47.324005], [8.514693, 47.323976], [8.514512, 47.323956], [8.514332, 47.323965], [8.514, 47.323951], [8.513868, 47.323895], [8.5138, 47.323858], [8.513775, 47.323716], [8.513452, 47.32374], [8.513452, 47.323741], [8.513452, 47.323742], [8.513452, 47.323743], [8.513452, 47.323744], [8.513451, 47.323745], [8.513451, 47.323746], [8.51345, 47.323748], [8.513449, 47.323748], [8.513448, 47.323749], [8.513447, 47.32375], [8.513446, 47.323751], [8.513445, 47.323752], [8.513443, 47.323753], [8.513442, 47.323753], [8.513441, 47.323754], [8.513439, 47.323754], [8.513437, 47.323754], [8.513436, 47.323754], [8.513422, 47.323755], [8.513407, 47.323755], [8.513393, 47.323754], [8.513379, 47.323752], [8.513366, 47.32375], [8.513352, 47.323746], [8.51334, 47.323742], [8.513328, 47.323737], [8.513316, 47.323731], [8.513276, 47.32371], [8.513263, 47.323702], [8.513251, 47.323693], [8.51324, 47.323684], [8.51323, 47.323674], [8.513221, 47.323663], [8.513181, 47.323607], [8.513119, 47.323555], [8.513104, 47.323548], [8.513061, 47.323528], [8.512634, 47.323328], [8.51229, 47.323165], [8.51214, 47.323098], [8.512119, 47.323087], [8.512098, 47.323075], [8.51208, 47.323062], [8.512063, 47.323048], [8.512047, 47.323033], [8.512034, 47.323017], [8.512012, 47.322987], [8.511993, 47.322955], [8.511977, 47.322923], [8.51194, 47.322857], [8.511901, 47.322792], [8.511861, 47.322728], [8.51186, 47.322728], [8.511707, 47.322483], [8.511558, 47.322241], [8.51151, 47.322201]]], "type": "MultiLineString"}, "id": "1979", "properties": {}, "type": "Feature"}, {"bbox": [8.507934, 47.329578, 8.511369, 47.329831], "geometry": {"coordinates": [[[8.511369, 47.329831], [8.509735, 47.329659], [8.509326, 47.329619], [8.508914, 47.329597], [8.508501, 47.329591], [8.507934, 47.329578]]], "type": "MultiLineString"}, "id": "1980", "properties": {}, "type": "Feature"}, {"bbox": [8.594525, 47.378469, 8.597217, 47.379456], "geometry": {"coordinates": [[[8.594525, 47.379456], [8.595274, 47.379238], [8.595385, 47.379208], [8.595497, 47.379179], [8.59561, 47.379153], [8.595916, 47.379087], [8.596044, 47.379055], [8.596168, 47.379014], [8.596286, 47.378966], [8.596397, 47.378911], [8.596918, 47.378627], [8.597217, 47.378469]]], "type": "MultiLineString"}, "id": "1981", "properties": {}, "type": "Feature"}, {"bbox": [8.533312, 47.382708, 8.539885, 47.386756], "geometry": {"coordinates": [[[8.539885, 47.382708], [8.539415, 47.383048], [8.538917, 47.38344], [8.538557, 47.383767], [8.538404, 47.383881], [8.538239, 47.383986], [8.538062, 47.384083], [8.537071, 47.384532], [8.53647, 47.384855], [8.536056, 47.385096], [8.53502, 47.385755], [8.534501, 47.386096], [8.534175, 47.386295], [8.533651, 47.386602], [8.533312, 47.386756]]], "type": "MultiLineString"}, "id": "1982", "properties": {}, "type": "Feature"}, {"bbox": [8.573616, 47.389906, 8.577824, 47.390716], "geometry": {"coordinates": [[[8.573616, 47.390716], [8.573852, 47.390636], [8.574239, 47.390513], [8.575447, 47.390121], [8.575497, 47.390102], [8.575545, 47.39008], [8.57559, 47.390056], [8.575643, 47.39002], [8.575794, 47.389906], [8.5765, 47.390075], [8.576646, 47.390112], [8.576789, 47.390155], [8.576929, 47.390202], [8.577004, 47.390227], [8.577082, 47.390247], [8.577163, 47.390263], [8.577558, 47.390328], [8.577616, 47.39034], [8.577672, 47.390355], [8.577726, 47.390373], [8.577777, 47.390395], [8.577824, 47.390418]]], "type": "MultiLineString"}, "id": "1983", "properties": {}, "type": "Feature"}, {"bbox": [8.56371, 47.381057, 8.573433, 47.38823], "geometry": {"coordinates": [[[8.56371, 47.381057], [8.564207, 47.3812], [8.564764, 47.381518], [8.564813, 47.381566], [8.564865, 47.381639], [8.565181, 47.382086], [8.565307, 47.382265], [8.565653, 47.382687], [8.566004, 47.383058], [8.566093, 47.383169], [8.566437, 47.38369], [8.566841, 47.384286], [8.566899, 47.384371], [8.567267, 47.384915], [8.567644, 47.385438], [8.567652, 47.38545], [8.567666, 47.385469], [8.56772, 47.385538], [8.567782, 47.385604], [8.56785, 47.385666], [8.568297, 47.386047], [8.568403, 47.386137], [8.568456, 47.386183], [8.568512, 47.386226], [8.568574, 47.386266], [8.568641, 47.386301], [8.568712, 47.386333], [8.569152, 47.386506], [8.569212, 47.386529], [8.569274, 47.386552], [8.569336, 47.386574], [8.569795, 47.386732], [8.570332, 47.386934], [8.570936, 47.387143], [8.571551, 47.387367], [8.571634, 47.387397], [8.571745, 47.387438], [8.571806, 47.387459], [8.571868, 47.387479], [8.571931, 47.387497], [8.571931, 47.387497], [8.573273, 47.387873], [8.57329, 47.387879], [8.573305, 47.387885], [8.57332, 47.387891], [8.573333, 47.387899], [8.573346, 47.387907], [8.573358, 47.387917], [8.573368, 47.387926], [8.573377, 47.387937], [8.573385, 47.387948], [8.573392, 47.387959], [8.573397, 47.38797], [8.573401, 47.387982], [8.573403, 47.387994], [8.573421, 47.388155], [8.573433, 47.38823]]], "type": "MultiLineString"}, "id": "1985", "properties": {}, "type": "Feature"}, {"bbox": [8.588529, 47.374733, 8.594533, 47.38063], "geometry": {"coordinates": [[[8.588529, 47.374733], [8.588823, 47.37508], [8.588878, 47.375137], [8.589026, 47.375315], [8.589342, 47.375664], [8.589378, 47.375701], [8.58942, 47.375735], [8.589466, 47.375767], [8.589517, 47.375796], [8.589571, 47.375821], [8.589671, 47.375861], [8.589776, 47.375896], [8.589884, 47.375925], [8.590149, 47.375991], [8.590504, 47.376001], [8.590624, 47.37601], [8.590698, 47.376046], [8.590794, 47.376095], [8.590888, 47.376146], [8.590979, 47.376198], [8.592247, 47.376948], [8.592352, 47.377016], [8.592447, 47.37709], [8.592532, 47.377169], [8.592606, 47.377253], [8.592668, 47.377342], [8.592921, 47.377748], [8.593035, 47.378053], [8.593182, 47.378498], [8.593197, 47.378537], [8.593217, 47.378575], [8.593241, 47.378612], [8.59327, 47.378647], [8.593333, 47.378712], [8.593405, 47.378772], [8.593483, 47.378829], [8.593569, 47.37888], [8.593654, 47.378924], [8.593744, 47.378963], [8.593838, 47.378997], [8.593935, 47.379026], [8.594036, 47.379049], [8.594218, 47.379086], [8.594248, 47.379093], [8.594278, 47.379102], [8.594306, 47.379113], [8.594332, 47.379125], [8.594357, 47.379139], [8.594381, 47.379154], [8.594402, 47.37917], [8.594421, 47.379188], [8.594438, 47.379206], [8.594452, 47.379226], [8.594501, 47.3793], [8.594513, 47.379321], [8.594523, 47.379343], [8.594529, 47.379365], [8.594533, 47.379388], [8.594533, 47.379411], [8.594531, 47.379434], [8.594525, 47.379456], [8.59452, 47.379472], [8.594512, 47.379488], [8.594503, 47.379503], [8.594059, 47.380211], [8.594033, 47.380258], [8.594013, 47.380307], [8.593999, 47.380356], [8.593992, 47.380407], [8.593992, 47.380457], [8.593998, 47.380508], [8.594011, 47.380557], [8.594021, 47.380582], [8.594035, 47.380607], [8.594052, 47.38063]]], "type": "MultiLineString"}, "id": "1990", "properties": {}, "type": "Feature"}, {"bbox": [8.59269, 47.353219, 8.594895, 47.356937], "geometry": {"coordinates": [[[8.594415, 47.356937], [8.594302, 47.356891], [8.594196, 47.356838], [8.594097, 47.356779], [8.594006, 47.356714], [8.593863, 47.356554], [8.59373, 47.35639], [8.593607, 47.356222], [8.593263, 47.355732], [8.59269, 47.354936], [8.592993, 47.354817], [8.59349, 47.354648], [8.593573, 47.354627], [8.593657, 47.35461], [8.593744, 47.354598], [8.593831, 47.354591], [8.593919, 47.354588], [8.593963, 47.354568], [8.594343, 47.354509], [8.594737, 47.354445], [8.594753, 47.354442], [8.594769, 47.354439], [8.594784, 47.354435], [8.594799, 47.35443], [8.594813, 47.354424], [8.594826, 47.354418], [8.594838, 47.35441], [8.594849, 47.354402], [8.594859, 47.354393], [8.594868, 47.354384], [8.594876, 47.354374], [8.594882, 47.354364], [8.594888, 47.354354], [8.594891, 47.354343], [8.594894, 47.354332], [8.594895, 47.354321], [8.594894, 47.35431], [8.594892, 47.354298], [8.594889, 47.354288], [8.594884, 47.354277], [8.594878, 47.354267], [8.594871, 47.354257], [8.594862, 47.354247], [8.594852, 47.354238], [8.594841, 47.35423], [8.594829, 47.354223], [8.594816, 47.354216], [8.59412, 47.353765], [8.594051, 47.353706], [8.593992, 47.353642], [8.593941, 47.353575], [8.593861, 47.353496], [8.593782, 47.353415], [8.593706, 47.353333], [8.59369, 47.353319], [8.593671, 47.353306], [8.593651, 47.353293], [8.59363, 47.353282], [8.593607, 47.353272], [8.593584, 47.353264], [8.593538, 47.353249], [8.593493, 47.353234], [8.593449, 47.353219]]], "type": "MultiLineString"}, "id": "1991", "properties": {}, "type": "Feature"}, {"bbox": [8.572342, 47.365855, 8.578901, 47.367381], "geometry": {"coordinates": [[[8.572342, 47.365855], [8.57251, 47.365909], [8.57307, 47.366096], [8.573222, 47.366119], [8.573501, 47.366204], [8.57374, 47.366217], [8.574167, 47.366287], [8.574434, 47.366312], [8.574496, 47.366315], [8.574558, 47.366316], [8.57462, 47.366314], [8.574736, 47.366312], [8.574757, 47.366314], [8.574778, 47.366316], [8.574798, 47.36632], [8.574818, 47.366325], [8.574837, 47.366331], [8.574855, 47.366338], [8.574873, 47.366347], [8.574889, 47.366356], [8.574941, 47.366384], [8.574965, 47.366395], [8.57499, 47.366405], [8.575016, 47.366414], [8.575086, 47.366435], [8.575157, 47.366453], [8.57523, 47.366469], [8.575342, 47.366495], [8.575866, 47.366614], [8.576453, 47.366754], [8.577536, 47.36702], [8.577842, 47.3671], [8.578222, 47.367219], [8.578293, 47.367233], [8.578366, 47.367244], [8.57844, 47.367251], [8.578469, 47.367254], [8.578497, 47.367258], [8.578525, 47.367265], [8.578743, 47.367322], [8.578779, 47.367332], [8.578815, 47.367344], [8.57885, 47.367357], [8.578901, 47.367381]]], "type": "MultiLineString"}, "id": "1998", "properties": {}, "type": "Feature"}, {"bbox": [8.488241, 47.357618, 8.488675, 47.357753], "geometry": {"coordinates": [[[8.488241, 47.3577], [8.488332, 47.357691], [8.488345, 47.35769], [8.488358, 47.35769], [8.488371, 47.357691], [8.488384, 47.357692], [8.488397, 47.357694], [8.488409, 47.357696], [8.488421, 47.3577], [8.488582, 47.357749], [8.488587, 47.35775], [8.488593, 47.357752], [8.488598, 47.357752], [8.488604, 47.357753], [8.48861, 47.357753], [8.488616, 47.357753], [8.488621, 47.357752], [8.488627, 47.357751], [8.488632, 47.35775], [8.488638, 47.357749], [8.488643, 47.357747], [8.488647, 47.357745], [8.488652, 47.357742], [8.488656, 47.35774], [8.48866, 47.357737], [8.488664, 47.357734], [8.488667, 47.35773], [8.488669, 47.357727], [8.488671, 47.357723], [8.488673, 47.357719], [8.488674, 47.357716], [8.488675, 47.357712], [8.488675, 47.357708], [8.488675, 47.357704], [8.488674, 47.3577], [8.488673, 47.357696], [8.488669, 47.357686], [8.488667, 47.357676], [8.488667, 47.357666], [8.488667, 47.357655], [8.488669, 47.357645], [8.488675, 47.357618]]], "type": "MultiLineString"}, "id": "1999", "properties": {}, "type": "Feature"}, {"bbox": [8.495169, 47.396482, 8.497159, 47.397592], "geometry": {"coordinates": [[[8.495169, 47.397592], [8.49517, 47.397584], [8.495171, 47.397576], [8.495174, 47.397568], [8.495178, 47.397561], [8.495183, 47.397554], [8.495189, 47.397546], [8.495196, 47.39754], [8.495203, 47.397534], [8.495211, 47.397528], [8.49522, 47.397523], [8.49523, 47.397518], [8.49524, 47.397514], [8.495251, 47.397511], [8.495262, 47.397508], [8.495378, 47.397467], [8.495488, 47.39742], [8.495592, 47.397366], [8.496008, 47.39713], [8.497159, 47.396482]]], "type": "MultiLineString"}, "id": "2001", "properties": {}, "type": "Feature"}, {"bbox": [8.51362, 47.382038, 8.516116, 47.383106], "geometry": {"coordinates": [[[8.516116, 47.382038], [8.515674, 47.382212], [8.515244, 47.382147], [8.514886, 47.382302], [8.514463, 47.38247], [8.51362, 47.382807], [8.513789, 47.382978], [8.513938, 47.383106]]], "type": "MultiLineString"}, "id": "2002", "properties": {}, "type": "Feature"}, {"bbox": [8.543933, 47.374832, 8.544646, 47.374891], "geometry": {"coordinates": [[[8.543933, 47.374832], [8.544646, 47.374891]]], "type": "MultiLineString"}, "id": "2003", "properties": {}, "type": "Feature"}, {"bbox": [8.52697, 47.336847, 8.530048, 47.336925], "geometry": {"coordinates": [[[8.530048, 47.336913], [8.528879, 47.336919], [8.527956, 47.336925], [8.527624, 47.336921], [8.527295, 47.336895], [8.52697, 47.336847]]], "type": "MultiLineString"}, "id": "2004", "properties": {}, "type": "Feature"}, {"bbox": [8.591483, 47.400758, 8.59224, 47.400991], "geometry": {"coordinates": [[[8.591483, 47.400991], [8.59224, 47.400758]]], "type": "MultiLineString"}, "id": "2008", "properties": {}, "type": "Feature"}, {"bbox": [8.531969, 47.336723, 8.532632, 47.337136], "geometry": {"coordinates": [[[8.532632, 47.337136], [8.532555, 47.337118], [8.53248, 47.337096], [8.532409, 47.337069], [8.532342, 47.337038], [8.532279, 47.337003], [8.53222, 47.336964], [8.532167, 47.336922], [8.532012, 47.336786], [8.531969, 47.336723]]], "type": "MultiLineString"}, "id": "2011", "properties": {}, "type": "Feature"}, {"bbox": [8.542903, 47.373818, 8.543708, 47.373917], "geometry": {"coordinates": [[[8.542903, 47.373917], [8.543708, 47.373818]]], "type": "MultiLineString"}, "id": "2012", "properties": {}, "type": "Feature"}, {"bbox": [8.559016, 47.351655, 8.559228, 47.351736], "geometry": {"coordinates": [[[8.559016, 47.351655], [8.559228, 47.351736]]], "type": "MultiLineString"}, "id": "2013", "properties": {}, "type": "Feature"}, {"bbox": [8.54386, 47.368821, 8.544161, 47.369042], "geometry": {"coordinates": [[[8.54396, 47.368821], [8.54386, 47.368933], [8.544047, 47.369042], [8.544161, 47.36894]]], "type": "MultiLineString"}, "id": "2015", "properties": {}, "type": "Feature"}, {"bbox": [8.541363, 47.371841, 8.541851, 47.373858], "geometry": {"coordinates": [[[8.541851, 47.37187], [8.541402, 47.371841], [8.541455, 47.371993], [8.54149, 47.372092], [8.541627, 47.372105], [8.541744, 47.372216], [8.541363, 47.372273]], [[8.541744, 47.372216], [8.541799, 47.372288], [8.541825, 47.372481], [8.541828, 47.372574], [8.541755, 47.372575], [8.541692, 47.372929], [8.541692, 47.373037], [8.541692, 47.373109], [8.541818, 47.373615], [8.541846, 47.373728], [8.54185, 47.373858]]], "type": "MultiLineString"}, "id": "2017", "properties": {}, "type": "Feature"}, {"bbox": [8.558335, 47.383235, 8.559779, 47.384056], "geometry": {"coordinates": [[[8.559779, 47.383235], [8.559671, 47.383253], [8.559631, 47.383245], [8.559589, 47.383239], [8.559548, 47.383236], [8.559506, 47.383235], [8.559464, 47.383237], [8.559422, 47.383241], [8.559381, 47.383248], [8.559342, 47.383257], [8.559303, 47.383269], [8.559267, 47.383283], [8.559232, 47.383299], [8.559211, 47.383309], [8.558767, 47.383545], [8.558607, 47.383644], [8.558335, 47.383794], [8.558345, 47.383909], [8.558464, 47.383997], [8.558482, 47.384056]]], "type": "MultiLineString"}, "id": "2018", "properties": {}, "type": "Feature"}, {"bbox": [8.520133, 47.337119, 8.522016, 47.343283], "geometry": {"coordinates": [[[8.520133, 47.343283], [8.520187, 47.343259], [8.520241, 47.343234], [8.520294, 47.34321], [8.520361, 47.343177], [8.520427, 47.343143], [8.520492, 47.343109], [8.520615, 47.343034], [8.520731, 47.342959], [8.520999, 47.342706], [8.521008, 47.342696], [8.521015, 47.342685], [8.521021, 47.342674], [8.521026, 47.342663], [8.521029, 47.342652], [8.52103, 47.34264], [8.52103, 47.342617], [8.521028, 47.342593], [8.521023, 47.34257], [8.521016, 47.342547], [8.521006, 47.342525], [8.521006, 47.342525], [8.520995, 47.342505], [8.520982, 47.34248], [8.520951, 47.342434], [8.520942, 47.34241], [8.520935, 47.342386], [8.520932, 47.342362], [8.520932, 47.342338], [8.520935, 47.342313], [8.52094, 47.342291], [8.520948, 47.34227], [8.520958, 47.342249], [8.52097, 47.342228], [8.521089, 47.342083], [8.521203, 47.341936], [8.521312, 47.341787], [8.521312, 47.341787], [8.521312, 47.341787], [8.521489, 47.341518], [8.521647, 47.341243], [8.521784, 47.340963], [8.521828, 47.340862], [8.521868, 47.340761], [8.521905, 47.340659], [8.521939, 47.340556], [8.521969, 47.340453], [8.521996, 47.340349], [8.521996, 47.340349], [8.522016, 47.340239], [8.521995, 47.34019], [8.521968, 47.340142], [8.521935, 47.340096], [8.521898, 47.340052], [8.521855, 47.34001], [8.521808, 47.33997], [8.521746, 47.339933], [8.521733, 47.339924], [8.521721, 47.339915], [8.52171, 47.339906], [8.521701, 47.339895], [8.521692, 47.339885], [8.521685, 47.339874], [8.52168, 47.339863], [8.521676, 47.339852], [8.521673, 47.339841], [8.521645, 47.339692], [8.521619, 47.339502], [8.521614, 47.339481], [8.521608, 47.339461], [8.521598, 47.339441], [8.52158, 47.339409], [8.521576, 47.339401], [8.521573, 47.339392], [8.52157, 47.339384], [8.521567, 47.339371], [8.521565, 47.339357], [8.521565, 47.339344], [8.521569, 47.339288], [8.521571, 47.339234], [8.52157, 47.33918], [8.521567, 47.339127], [8.521565, 47.339111], [8.521562, 47.339095], [8.521559, 47.339079], [8.521559, 47.339079], [8.521558, 47.339074], [8.52154, 47.33903], [8.52154, 47.33903], [8.521518, 47.338966], [8.521505, 47.338901], [8.521499, 47.338836], [8.521499, 47.338822], [8.521499, 47.338821], [8.521498, 47.338805], [8.521496, 47.338789], [8.521493, 47.338773], [8.521489, 47.338741], [8.521486, 47.33871], [8.521484, 47.338678], [8.521478, 47.338522], [8.521475, 47.338481], [8.521471, 47.33844], [8.521464, 47.338399], [8.521444, 47.3383], [8.521439, 47.338278], [8.521431, 47.338256], [8.52142, 47.338235], [8.521407, 47.338215], [8.521374, 47.338165], [8.521344, 47.338114], [8.521319, 47.338062], [8.521306, 47.338026], [8.521297, 47.33799], [8.521293, 47.337953], [8.52129, 47.337929], [8.521285, 47.337905], [8.521276, 47.337881], [8.521265, 47.337858], [8.521251, 47.337835], [8.521234, 47.337814], [8.521165, 47.337725], [8.521108, 47.337633], [8.521062, 47.337538], [8.521032, 47.337474], [8.520998, 47.33741], [8.52096, 47.337348], [8.52093, 47.337297], [8.520907, 47.337244], [8.520892, 47.33719], [8.520901, 47.337119]]], "type": "MultiLineString"}, "id": "2025", "properties": {}, "type": "Feature"}, {"bbox": [8.509929, 47.398894, 8.51057, 47.399725], "geometry": {"coordinates": [[[8.509929, 47.398894], [8.509964, 47.398982], [8.510002, 47.399066], [8.510004, 47.399165], [8.510025, 47.399167], [8.510234, 47.399131], [8.510238, 47.399143], [8.510063, 47.399494], [8.510299, 47.39968], [8.510458, 47.399644], [8.51057, 47.399725]]], "type": "MultiLineString"}, "id": "2026", "properties": {}, "type": "Feature"}, {"bbox": [8.557712, 47.417134, 8.561384, 47.417983], "geometry": {"coordinates": [[[8.557712, 47.417365], [8.557833, 47.417134], [8.55807, 47.417191], [8.560006, 47.417654], [8.561384, 47.417983]]], "type": "MultiLineString"}, "id": "2028", "properties": {}, "type": "Feature"}, {"bbox": [8.503644, 47.394043, 8.505154, 47.394754], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.503681, 47.394321], [8.503667, 47.394344], [8.503657, 47.394368], [8.503649, 47.394393], [8.503645, 47.394417], [8.503644, 47.394443], [8.503646, 47.394468], [8.503652, 47.394492], [8.50366, 47.394517], [8.503672, 47.394541], [8.503729, 47.394631], [8.503739, 47.394646], [8.50375, 47.394661], [8.503764, 47.394675], [8.503779, 47.394688], [8.503796, 47.3947], [8.503814, 47.394711], [8.503834, 47.394721], [8.503855, 47.39473], [8.503877, 47.394737], [8.5039, 47.394743], [8.503923, 47.394748], [8.503947, 47.394752], [8.503971, 47.394754], [8.503996, 47.394754], [8.50402, 47.394753], [8.504045, 47.394751], [8.504068, 47.394747], [8.504892, 47.394553], [8.50491, 47.394549], [8.504928, 47.394543], [8.504944, 47.394536], [8.50496, 47.394528], [8.504974, 47.39452], [8.504988, 47.39451], [8.505, 47.3945], [8.50501, 47.394489], [8.505019, 47.394477], [8.505027, 47.394465], [8.505033, 47.394453], [8.505037, 47.39444], [8.50504, 47.394427], [8.505041, 47.394414], [8.50504, 47.394401], [8.505038, 47.394388], [8.505034, 47.394375], [8.505028, 47.394362], [8.504999, 47.394247], [8.505001, 47.394224], [8.505007, 47.3942], [8.505016, 47.394177], [8.505027, 47.394155], [8.505042, 47.394133], [8.505059, 47.394112], [8.505079, 47.394093], [8.505102, 47.394075], [8.505127, 47.394058], [8.505154, 47.394043]]], "type": "MultiLineString"}, "id": "2033", "properties": {}, "type": "Feature"}, {"bbox": [8.51476, 47.382038, 8.516116, 47.382613], "geometry": {"coordinates": [[[8.514886, 47.382302], [8.514854, 47.382319], [8.514825, 47.382338], [8.514797, 47.382359], [8.514787, 47.382372], [8.514778, 47.382385], [8.514771, 47.382399], [8.514765, 47.382413], [8.514762, 47.382428], [8.51476, 47.382442], [8.514761, 47.382457], [8.514763, 47.382472], [8.514767, 47.382486], [8.514773, 47.3825], [8.514781, 47.382514], [8.514791, 47.382527], [8.514802, 47.38254], [8.514815, 47.382552], [8.514829, 47.382563], [8.514845, 47.382573], [8.514862, 47.382582], [8.51488, 47.38259], [8.514899, 47.382597], [8.514919, 47.382603], [8.514939, 47.382607], [8.51496, 47.382611], [8.514982, 47.382613], [8.515003, 47.382613], [8.515025, 47.382613], [8.515047, 47.382611], [8.515068, 47.382608], [8.515088, 47.382603], [8.515108, 47.382598], [8.515146, 47.382583], [8.515182, 47.382565], [8.515216, 47.382546], [8.515731, 47.382248], [8.516116, 47.382038]]], "type": "MultiLineString"}, "id": "2034", "properties": {}, "type": "Feature"}, {"bbox": [8.503195, 47.381041, 8.504093, 47.381435], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504004, 47.381131], [8.503921, 47.381224], [8.503846, 47.381319], [8.503835, 47.381331], [8.503823, 47.381342], [8.503809, 47.381353], [8.503794, 47.381363], [8.503777, 47.381371], [8.50376, 47.381379], [8.503742, 47.381386], [8.503723, 47.381391], [8.503703, 47.381396], [8.503683, 47.381399], [8.503662, 47.381401], [8.503641, 47.381402], [8.503621, 47.381401], [8.5036, 47.381399], [8.50358, 47.381396], [8.50356, 47.381392], [8.503541, 47.381387], [8.503522, 47.38138], [8.503505, 47.381373], [8.503488, 47.381364], [8.503473, 47.381355], [8.503459, 47.381344], [8.503446, 47.381333], [8.503435, 47.381321], [8.503426, 47.381309], [8.503418, 47.381296], [8.503412, 47.381283], [8.503408, 47.38127], [8.503405, 47.381256], [8.503404, 47.381242], [8.503405, 47.381229], [8.503407, 47.381215], [8.503411, 47.381202], [8.503417, 47.381188], [8.503425, 47.381176], [8.503434, 47.381163], [8.503444, 47.381152], [8.503457, 47.38114], [8.50347, 47.38113], [8.503485, 47.381121], [8.503501, 47.381112], [8.503517, 47.381104], [8.503535, 47.381098], [8.503554, 47.381092], [8.503573, 47.381088], [8.504093, 47.381041], [8.503446, 47.381333], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "2035", "properties": {}, "type": "Feature"}, {"bbox": [8.541495, 47.396633, 8.543331, 47.399597], "geometry": {"coordinates": [[[8.542069, 47.396633], [8.541736, 47.396788], [8.541698, 47.396807], [8.541662, 47.396828], [8.541629, 47.39685], [8.541599, 47.396875], [8.541572, 47.396902], [8.54155, 47.39693], [8.541531, 47.396959], [8.541515, 47.396989], [8.541504, 47.39702], [8.541498, 47.397052], [8.541495, 47.397084], [8.541496, 47.397116], [8.541502, 47.397148], [8.541512, 47.397179], [8.541526, 47.39721], [8.541544, 47.397239], [8.541802, 47.397679], [8.542103, 47.398107], [8.542444, 47.39852], [8.542741, 47.39886], [8.542755, 47.398878], [8.542771, 47.398895], [8.542789, 47.398911], [8.542809, 47.398925], [8.542831, 47.398939], [8.542855, 47.398951], [8.54288, 47.398962], [8.542906, 47.398971], [8.542934, 47.398978], [8.542962, 47.398984], [8.542991, 47.398988], [8.54302, 47.398991], [8.54305, 47.398992], [8.543079, 47.39899], [8.543108, 47.398988], [8.543137, 47.398983], [8.543165, 47.398977], [8.543192, 47.398969], [8.543219, 47.39896], [8.543237, 47.39895], [8.543253, 47.39894], [8.543269, 47.398929], [8.543283, 47.398917], [8.543295, 47.398904], [8.543306, 47.39889], [8.543314, 47.398876], [8.543322, 47.398861], [8.543327, 47.398846], [8.54333, 47.398831], [8.543331, 47.398816], [8.543331, 47.3988], [8.543328, 47.398785], [8.543324, 47.39877], [8.543318, 47.398755], [8.54331, 47.398741], [8.5433, 47.398727], [8.543288, 47.398714], [8.543275, 47.398701], [8.54326, 47.398689], [8.543244, 47.398679], [8.543227, 47.398669], [8.543194, 47.398654], [8.54316, 47.398642], [8.543125, 47.398631], [8.543088, 47.398623], [8.54305, 47.398616], [8.543012, 47.398612], [8.542973, 47.398611], [8.542935, 47.398612], [8.542896, 47.398614], [8.542827, 47.398613], [8.542759, 47.398607], [8.542692, 47.398598], [8.542627, 47.398584], [8.542563, 47.398567], [8.542502, 47.398545], [8.542444, 47.39852], [8.542641, 47.398831], [8.542676, 47.398908], [8.542699, 47.398987], [8.542712, 47.399067], [8.542713, 47.399147], [8.542717, 47.399281], [8.542735, 47.399414], [8.542768, 47.399546], [8.542741, 47.399597]]], "type": "MultiLineString"}, "id": "2036", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.360521, 8.561893, 47.360849], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.561339, 47.360532], [8.561893, 47.360849]]], "type": "MultiLineString"}, "id": "2037", "properties": {}, "type": "Feature"}, {"bbox": [8.495041, 47.367781, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.496151, 47.368094], [8.496093, 47.368079], [8.496037, 47.368061], [8.495984, 47.36804], [8.495933, 47.368015], [8.495885, 47.367988], [8.495841, 47.367959], [8.495801, 47.367927], [8.495773, 47.367903], [8.495741, 47.367881], [8.495708, 47.36786], [8.495671, 47.367842], [8.495633, 47.367826], [8.495592, 47.367812], [8.495551, 47.367801], [8.495507, 47.367792], [8.495463, 47.367786], [8.495418, 47.367782], [8.495373, 47.367781], [8.495328, 47.367783], [8.495284, 47.367787], [8.49524, 47.367794], [8.495197, 47.367804], [8.495155, 47.367816], [8.495115, 47.36783], [8.495077, 47.367846], [8.495041, 47.367865]]], "type": "MultiLineString"}, "id": "2039", "properties": {}, "type": "Feature"}, {"bbox": [8.555401, 47.387168, 8.557881, 47.389266], "geometry": {"coordinates": [[[8.555401, 47.389266], [8.555595, 47.388821], [8.555611, 47.388789], [8.555631, 47.388759], [8.555654, 47.38873], [8.555681, 47.388702], [8.555712, 47.388676], [8.555746, 47.388652], [8.555783, 47.38863], [8.555822, 47.388611], [8.555836, 47.388605], [8.55585, 47.388599], [8.555864, 47.388593], [8.556078, 47.388513], [8.556131, 47.388493], [8.556184, 47.388472], [8.556237, 47.388451], [8.556307, 47.388418], [8.556373, 47.388382], [8.556433, 47.388342], [8.556488, 47.388298], [8.556586, 47.388212], [8.556625, 47.388176], [8.556661, 47.388139], [8.556694, 47.3881], [8.556733, 47.388053], [8.556768, 47.388011], [8.556805, 47.38797], [8.556844, 47.387931], [8.557265, 47.387525], [8.557506, 47.387342], [8.557565, 47.387301], [8.557627, 47.387262], [8.557693, 47.387226], [8.557725, 47.387212], [8.557758, 47.387199], [8.557793, 47.387188], [8.557815, 47.387182], [8.557836, 47.387177], [8.557858, 47.387172], [8.557881, 47.387168]]], "type": "MultiLineString"}, "id": "2040", "properties": {}, "type": "Feature"}, {"bbox": [8.592038, 47.365562, 8.593025, 47.367663], "geometry": {"coordinates": [[[8.59256, 47.365562], [8.59262, 47.365608], [8.592647, 47.365663], [8.592745, 47.365723], [8.592831, 47.365828], [8.592934, 47.366029], [8.592947, 47.366065], [8.59296, 47.366102], [8.592972, 47.366139], [8.593023, 47.366336], [8.593025, 47.366352], [8.593024, 47.366368], [8.593022, 47.366384], [8.593018, 47.3664], [8.593012, 47.366416], [8.593004, 47.366431], [8.592994, 47.366446], [8.592982, 47.36646], [8.592961, 47.366482], [8.59294, 47.366503], [8.592919, 47.366524], [8.592877, 47.36658], [8.592836, 47.366636], [8.592795, 47.366693], [8.592673, 47.366907], [8.592482, 47.367241], [8.592433, 47.367295], [8.592379, 47.367347], [8.592321, 47.367397], [8.592045, 47.367627], [8.592038, 47.367663]]], "type": "MultiLineString"}, "id": "2041", "properties": {}, "type": "Feature"}, {"bbox": [8.541237, 47.334497, 8.541813, 47.334814], "geometry": {"coordinates": [[[8.541813, 47.334807], [8.541746, 47.334814], [8.541548, 47.334701], [8.541541, 47.334697], [8.541532, 47.334693], [8.541523, 47.33469], [8.541514, 47.334687], [8.541505, 47.334685], [8.541495, 47.334684], [8.541485, 47.334683], [8.541475, 47.334682], [8.541465, 47.334683], [8.541455, 47.334684], [8.541445, 47.334685], [8.541412, 47.334698], [8.541408, 47.3347], [8.541404, 47.334702], [8.5414, 47.334703], [8.541396, 47.334705], [8.541391, 47.334706], [8.541387, 47.334706], [8.541382, 47.334707], [8.541377, 47.334707], [8.541373, 47.334707], [8.541368, 47.334706], [8.541363, 47.334706], [8.541359, 47.334705], [8.541354, 47.334704], [8.54135, 47.334702], [8.541346, 47.334701], [8.541342, 47.334699], [8.541339, 47.334697], [8.541335, 47.334694], [8.541332, 47.334692], [8.54133, 47.334689], [8.541237, 47.334604], [8.541397, 47.334497]]], "type": "MultiLineString"}, "id": "2042", "properties": {}, "type": "Feature"}, {"bbox": [8.482449, 47.412848, 8.483266, 47.417647], "geometry": {"coordinates": [[[8.483129, 47.417647], [8.483112, 47.417632], [8.483096, 47.417616], [8.483083, 47.417599], [8.483072, 47.417581], [8.483063, 47.417563], [8.483057, 47.417545], [8.483053, 47.417526], [8.483051, 47.417506], [8.483091, 47.417096], [8.483096, 47.41703], [8.483097, 47.416963], [8.483094, 47.416897], [8.483093, 47.416862], [8.483095, 47.416827], [8.4831, 47.416792], [8.483206, 47.41617], [8.48321, 47.415779], [8.483245, 47.415576], [8.483254, 47.415255], [8.483225, 47.415134], [8.483192, 47.415026], [8.483214, 47.414901], [8.483237, 47.414775], [8.483266, 47.414672], [8.483253, 47.414575], [8.483196, 47.414446], [8.483077, 47.41435], [8.482951, 47.414243], [8.48274, 47.414179], [8.482677, 47.41415], [8.482836, 47.413907], [8.482722, 47.413873], [8.482602, 47.413864], [8.482512, 47.413854], [8.482449, 47.413812], [8.482453, 47.413719], [8.482455, 47.412922], [8.482458, 47.412848]]], "type": "MultiLineString"}, "id": "2047", "properties": {}, "type": "Feature"}, {"bbox": [8.551938, 47.378166, 8.552532, 47.378722], "geometry": {"coordinates": [[[8.551986, 47.378722], [8.551976, 47.378712], [8.551966, 47.378703], [8.551958, 47.378692], [8.551951, 47.378681], [8.551946, 47.37867], [8.551942, 47.378659], [8.551939, 47.378647], [8.551938, 47.378635], [8.551939, 47.378624], [8.551941, 47.378612], [8.551944, 47.3786], [8.551949, 47.378589], [8.551955, 47.378578], [8.551962, 47.378567], [8.551971, 47.378557], [8.551981, 47.378548], [8.552532, 47.378166]]], "type": "MultiLineString"}, "id": "2048", "properties": {}, "type": "Feature"}, {"bbox": [8.479057, 47.415032, 8.479311, 47.41628], "geometry": {"coordinates": [[[8.479292, 47.415032], [8.479296, 47.415083], [8.47931, 47.415175], [8.479311, 47.415186], [8.47931, 47.415196], [8.479308, 47.415206], [8.479304, 47.415216], [8.479299, 47.415226], [8.479293, 47.415236], [8.47924, 47.415308], [8.479214, 47.415341], [8.47909, 47.415459], [8.479101, 47.415481], [8.479108, 47.415504], [8.479112, 47.415526], [8.479113, 47.415549], [8.479111, 47.415572], [8.479106, 47.415595], [8.479098, 47.415617], [8.479087, 47.415639], [8.479074, 47.41566], [8.479057, 47.41568], [8.479128, 47.415708], [8.479167, 47.415844], [8.479168, 47.415889], [8.479168, 47.415987], [8.47915, 47.416073], [8.47917, 47.416102], [8.479174, 47.41628]]], "type": "MultiLineString"}, "id": "2051", "properties": {}, "type": "Feature"}, {"bbox": [8.505884, 47.409542, 8.508404, 47.410702], "geometry": {"coordinates": [[[8.508404, 47.409542], [8.50813, 47.409586], [8.507055, 47.409946], [8.507067, 47.409982], [8.507073, 47.410008], [8.507075, 47.410035], [8.507074, 47.410062], [8.507075, 47.410123], [8.507071, 47.410184], [8.507062, 47.410244], [8.507058, 47.410254], [8.507053, 47.410263], [8.507047, 47.410272], [8.50704, 47.410281], [8.507031, 47.410289], [8.507022, 47.410296], [8.507012, 47.410304], [8.507, 47.41031], [8.506989, 47.410316], [8.506882, 47.41035], [8.506819, 47.410381], [8.505884, 47.410702]]], "type": "MultiLineString"}, "id": "2052", "properties": {}, "type": "Feature"}, {"bbox": [8.50641, 47.39954, 8.508726, 47.400215], "geometry": {"coordinates": [[[8.50641, 47.39954], [8.506776, 47.399621], [8.506877, 47.399657], [8.507062, 47.399743], [8.507167, 47.399798], [8.507312, 47.39987], [8.507613, 47.399977], [8.50781, 47.399972], [8.507915, 47.400025], [8.507889, 47.40005], [8.508059, 47.400135], [8.508037, 47.400157], [8.508117, 47.400195], [8.508153, 47.400162], [8.508233, 47.400195], [8.508443, 47.400215], [8.508502, 47.400158], [8.508585, 47.400124], [8.508726, 47.4002]]], "type": "MultiLineString"}, "id": "2053", "properties": {}, "type": "Feature"}, {"bbox": [8.497039, 47.358817, 8.500909, 47.363768], "geometry": {"coordinates": [[[8.500909, 47.363768], [8.500439, 47.363485], [8.500023, 47.36316], [8.499816, 47.362917], [8.499653, 47.362776], [8.499202, 47.362607], [8.498757, 47.3623], [8.498303, 47.361955], [8.498285, 47.361607], [8.498162, 47.361391], [8.497994, 47.361217], [8.497749, 47.360987], [8.497039, 47.36029], [8.497094, 47.360143], [8.497227, 47.359996], [8.497376, 47.359875], [8.497493, 47.359664], [8.497501, 47.358943], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "2054", "properties": {}, "type": "Feature"}, {"bbox": [8.553353, 47.376, 8.556075, 47.378399], "geometry": {"coordinates": [[[8.553353, 47.376], [8.553504, 47.376099], [8.55382, 47.376389], [8.554048, 47.376686], [8.554363, 47.376902], [8.554584, 47.377029], [8.555565, 47.377589], [8.555925, 47.377835], [8.555965, 47.377922], [8.556007, 47.37807], [8.556023, 47.378214], [8.556075, 47.378399]]], "type": "MultiLineString"}, "id": "2055", "properties": {}, "type": "Feature"}, {"bbox": [8.527814, 47.371323, 8.528572, 47.371463], "geometry": {"coordinates": [[[8.527883, 47.371363], [8.527814, 47.371463], [8.527885, 47.371424], [8.528498, 47.371376], [8.528572, 47.371397], [8.528485, 47.371323]]], "type": "MultiLineString"}, "id": "2056", "properties": {}, "type": "Feature"}, {"bbox": [8.554491, 47.393868, 8.55892, 47.394415], "geometry": {"coordinates": [[[8.554491, 47.394254], [8.555348, 47.394371], [8.55539, 47.394375], [8.555432, 47.394377], [8.555475, 47.394377], [8.555517, 47.394373], [8.555558, 47.394367], [8.555599, 47.394359], [8.555823, 47.394305], [8.55586, 47.394297], [8.555898, 47.394291], [8.555937, 47.394288], [8.555976, 47.394287], [8.556015, 47.394289], [8.556054, 47.394293], [8.556092, 47.394299], [8.556129, 47.394308], [8.556443, 47.394391], [8.556484, 47.394401], [8.556527, 47.394408], [8.55657, 47.394413], [8.556613, 47.394415], [8.556657, 47.394415], [8.556701, 47.394412], [8.556744, 47.394406], [8.556786, 47.394399], [8.556827, 47.394388], [8.556867, 47.394376], [8.557014, 47.394324], [8.557075, 47.394303], [8.557138, 47.394285], [8.557202, 47.394269], [8.557494, 47.3942], [8.557791, 47.39414], [8.557876, 47.394121], [8.557959, 47.394097], [8.558038, 47.394068], [8.558114, 47.394036], [8.558277, 47.393959], [8.558329, 47.393938], [8.558384, 47.393919], [8.55844, 47.393904], [8.558499, 47.393893], [8.558559, 47.393885], [8.55862, 47.393882], [8.558814, 47.393876], [8.558849, 47.393875], [8.558885, 47.393872], [8.55892, 47.393868]]], "type": "MultiLineString"}, "id": "2057", "properties": {}, "type": "Feature"}, {"bbox": [8.576889, 47.37273, 8.587307, 47.373608], "geometry": {"coordinates": [[[8.576889, 47.373432], [8.577024, 47.373456], [8.577164, 47.373478], [8.577305, 47.373498], [8.577447, 47.373515], [8.578146, 47.373586], [8.578281, 47.3736], [8.578418, 47.373607], [8.578554, 47.373608], [8.579008, 47.373602], [8.579105, 47.3736], [8.579203, 47.373597], [8.5793, 47.373593], [8.579435, 47.373588], [8.579591, 47.373582], [8.579726, 47.373589], [8.579862, 47.373589], [8.579997, 47.373584], [8.580389, 47.37357], [8.580781, 47.373554], [8.581173, 47.373536], [8.582768, 47.373438], [8.583007, 47.373422], [8.583332, 47.373397], [8.583655, 47.373361], [8.583975, 47.373315], [8.58425, 47.373268], [8.584525, 47.373217], [8.584797, 47.373162], [8.58586, 47.372969], [8.587116, 47.37274], [8.587163, 47.372734], [8.587211, 47.372731], [8.587259, 47.37273], [8.587307, 47.372734]]], "type": "MultiLineString"}, "id": "2058", "properties": {}, "type": "Feature"}, {"bbox": [8.53832, 47.373903, 8.540329, 47.374022], "geometry": {"coordinates": [[[8.540329, 47.374015], [8.540148, 47.374022], [8.5401, 47.374021], [8.540046, 47.374021], [8.539618, 47.373987], [8.539062, 47.373943], [8.538842, 47.373931], [8.53832, 47.373903]]], "type": "MultiLineString"}, "id": "2059", "properties": {}, "type": "Feature"}, {"bbox": [8.562827, 47.383356, 8.563865, 47.384269], "geometry": {"coordinates": [[[8.563865, 47.384269], [8.563829, 47.384251], [8.563796, 47.384205], [8.563746, 47.384147], [8.563584, 47.383957], [8.563035, 47.383513], [8.562827, 47.383356]]], "type": "MultiLineString"}, "id": "2061", "properties": {}, "type": "Feature"}, {"bbox": [8.508156, 47.407286, 8.508602, 47.407618], "geometry": {"coordinates": [[[8.508602, 47.407618], [8.508516, 47.407505], [8.508577, 47.407483], [8.508437, 47.407286], [8.508156, 47.407378], [8.508296, 47.407578], [8.508516, 47.407505]]], "type": "MultiLineString"}, "id": "2063", "properties": {}, "type": "Feature"}, {"bbox": [8.548314, 47.366131, 8.548879, 47.366361], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.548736, 47.366187], [8.548492, 47.366283], [8.548314, 47.366361]]], "type": "MultiLineString"}, "id": "2064", "properties": {}, "type": "Feature"}, {"bbox": [8.469339, 47.37662, 8.472942, 47.379945], "geometry": {"coordinates": [[[8.469339, 47.379945], [8.469398, 47.379871], [8.470285, 47.379268], [8.470664, 47.379009], [8.470762, 47.378929], [8.471312, 47.378496], [8.471647, 47.378239], [8.471693, 47.3782], [8.471735, 47.378157], [8.47177, 47.378112], [8.471799, 47.378066], [8.472208, 47.37732], [8.472367, 47.377012], [8.472457, 47.376858], [8.472519, 47.376764], [8.472535, 47.376743], [8.472552, 47.376723], [8.472573, 47.376704], [8.472584, 47.376692], [8.472597, 47.37668], [8.472611, 47.37667], [8.472627, 47.37666], [8.472644, 47.376651], [8.472662, 47.376643], [8.472681, 47.376636], [8.4727, 47.376631], [8.472721, 47.376626], [8.472742, 47.376623], [8.472763, 47.376621], [8.472784, 47.37662], [8.472806, 47.376621], [8.472827, 47.376623], [8.472848, 47.376626], [8.472868, 47.37663], [8.472888, 47.376635], [8.472907, 47.376642], [8.472925, 47.37665], [8.472942, 47.376658]]], "type": "MultiLineString"}, "id": "2065", "properties": {}, "type": "Feature"}, {"bbox": [8.568003, 47.368448, 8.569275, 47.368743], "geometry": {"coordinates": [[[8.568003, 47.368448], [8.568719, 47.368587], [8.569275, 47.368743]]], "type": "MultiLineString"}, "id": "2077", "properties": {}, "type": "Feature"}, {"bbox": [8.461388, 47.385862, 8.468057, 47.388332], "geometry": {"coordinates": [[[8.468057, 47.385862], [8.467982, 47.385898], [8.467969, 47.385904], [8.467955, 47.385909], [8.467941, 47.385914], [8.467927, 47.385918], [8.467927, 47.385918], [8.46791, 47.385923], [8.467892, 47.385928], [8.467874, 47.385933], [8.467874, 47.385933], [8.467874, 47.385933], [8.467849, 47.385939], [8.467825, 47.385946], [8.467801, 47.385952], [8.467598, 47.386003], [8.467459, 47.386036], [8.467319, 47.386068], [8.46718, 47.386101], [8.467096, 47.386121], [8.467014, 47.386142], [8.466932, 47.386165], [8.466932, 47.386165], [8.466932, 47.386165], [8.466876, 47.386181], [8.466819, 47.386195], [8.466761, 47.386207], [8.46676, 47.386208], [8.466345, 47.386317], [8.466308, 47.386329], [8.466107, 47.386395], [8.465956, 47.386449], [8.465812, 47.386512], [8.465676, 47.386583], [8.465121, 47.386898], [8.464422, 47.387178], [8.464334, 47.38721], [8.464242, 47.387237], [8.464147, 47.387258], [8.46405, 47.387273], [8.46359, 47.38733], [8.463463, 47.387348], [8.463339, 47.387375], [8.463219, 47.387409], [8.463104, 47.38745], [8.462995, 47.387499], [8.462952, 47.387522], [8.462913, 47.387548], [8.462877, 47.387577], [8.462844, 47.387607], [8.462816, 47.387639], [8.462809, 47.387649], [8.462803, 47.38766], [8.462798, 47.387672], [8.462795, 47.387683], [8.462793, 47.387695], [8.462638, 47.387709], [8.462292, 47.38776], [8.462228, 47.387771], [8.462167, 47.387786], [8.462107, 47.387805], [8.46205, 47.387827], [8.461996, 47.387852], [8.461945, 47.38788], [8.461898, 47.38791], [8.461855, 47.387944], [8.461468, 47.388271], [8.461442, 47.388292], [8.461416, 47.388312], [8.461388, 47.388332]]], "type": "MultiLineString"}, "id": "2078", "properties": {}, "type": "Feature"}, {"bbox": [8.538671, 47.374582, 8.540097, 47.377022], "geometry": {"coordinates": [[[8.538671, 47.374582], [8.538678, 47.374621], [8.538959, 47.375143], [8.539012, 47.375246], [8.539151, 47.375516], [8.539266, 47.375741], [8.539609, 47.37641], [8.539767, 47.376715], [8.539849, 47.376864], [8.539859, 47.376883], [8.539872, 47.376901], [8.539886, 47.376918], [8.539903, 47.376935], [8.539922, 47.376951], [8.539942, 47.376965], [8.539965, 47.376978], [8.539989, 47.37699], [8.540014, 47.377], [8.540041, 47.377009], [8.540068, 47.377017], [8.540097, 47.377022]]], "type": "MultiLineString"}, "id": "2079", "properties": {}, "type": "Feature"}, {"bbox": [8.4756, 47.360326, 8.477097, 47.362753], "geometry": {"coordinates": [[[8.4756, 47.362753], [8.475703, 47.362702], [8.475716, 47.362695], [8.475728, 47.362688], [8.475739, 47.362679], [8.475749, 47.362671], [8.475758, 47.362661], [8.475792, 47.362618], [8.47582, 47.362572], [8.475842, 47.362525], [8.47588, 47.362405], [8.475903, 47.362284], [8.47591, 47.362161], [8.475901, 47.362038], [8.475865, 47.361774], [8.475859, 47.361714], [8.475858, 47.361653], [8.475862, 47.361592], [8.475872, 47.361492], [8.475888, 47.361396], [8.475917, 47.361301], [8.475958, 47.361208], [8.47601, 47.361118], [8.476106, 47.360972], [8.476153, 47.360908], [8.476209, 47.360848], [8.476272, 47.36079], [8.476365, 47.360718], [8.476465, 47.36065], [8.47657, 47.360586], [8.476841, 47.360451], [8.477097, 47.360326]]], "type": "MultiLineString"}, "id": "2081", "properties": {}, "type": "Feature"}, {"bbox": [8.557832, 47.389618, 8.562085, 47.391521], "geometry": {"coordinates": [[[8.562085, 47.389618], [8.561696, 47.389722], [8.561585, 47.389757], [8.561479, 47.389798], [8.561379, 47.389845], [8.561286, 47.389899], [8.561127, 47.390001], [8.561034, 47.390055], [8.560934, 47.390104], [8.560829, 47.390147], [8.560478, 47.390277], [8.560421, 47.390299], [8.560366, 47.390324], [8.560312, 47.390351], [8.560185, 47.390419], [8.56016, 47.390433], [8.560138, 47.390449], [8.560117, 47.390465], [8.560107, 47.390473], [8.560095, 47.390481], [8.560083, 47.390488], [8.560078, 47.39049], [8.560074, 47.390492], [8.560069, 47.390494], [8.559805, 47.390602], [8.559437, 47.390738], [8.559109, 47.390856], [8.55885, 47.390967], [8.558771, 47.390999], [8.55869, 47.391027], [8.558606, 47.391053], [8.558306, 47.391139], [8.558242, 47.39116], [8.55818, 47.391185], [8.558123, 47.391213], [8.558069, 47.391245], [8.55802, 47.39128], [8.557975, 47.391318], [8.557936, 47.391358], [8.557853, 47.391454], [8.557847, 47.391461], [8.557842, 47.39147], [8.557838, 47.391478], [8.557835, 47.391486], [8.557833, 47.391495], [8.557832, 47.391504], [8.557833, 47.391513], [8.557834, 47.391521]]], "type": "MultiLineString"}, "id": "2085", "properties": {}, "type": "Feature"}, {"bbox": [8.55241, 47.373461, 8.553033, 47.374073], "geometry": {"coordinates": [[[8.55241, 47.374073], [8.552568, 47.373911], [8.552664, 47.373824], [8.552891, 47.373702], [8.552983, 47.373546], [8.553033, 47.373461]]], "type": "MultiLineString"}, "id": "2086", "properties": {}, "type": "Feature"}, {"bbox": [8.570868, 47.378878, 8.573127, 47.38014], "geometry": {"coordinates": [[[8.573127, 47.378878], [8.573056, 47.378923], [8.572222, 47.379286], [8.572105, 47.379341], [8.571473, 47.379713], [8.571297, 47.379875], [8.570976, 47.380103], [8.570868, 47.38014]]], "type": "MultiLineString"}, "id": "2087", "properties": {}, "type": "Feature"}, {"bbox": [8.538521, 47.378801, 8.54159, 47.382539], "geometry": {"coordinates": [[[8.538775, 47.382055], [8.538733, 47.382083], [8.538521, 47.382523], [8.538521, 47.382525], [8.538522, 47.382526], [8.538523, 47.382528], [8.538525, 47.38253], [8.538526, 47.382531], [8.538528, 47.382533], [8.53853, 47.382534], [8.538532, 47.382535], [8.538534, 47.382536], [8.538537, 47.382537], [8.538539, 47.382538], [8.538542, 47.382539], [8.538544, 47.382539], [8.538547, 47.382539], [8.53855, 47.382539], [8.538552, 47.382539], [8.538555, 47.382539], [8.538558, 47.382539], [8.53856, 47.382538], [8.538563, 47.382538], [8.538565, 47.382537], [8.5386, 47.382516], [8.53861, 47.382525], [8.538806, 47.38241], [8.538802, 47.382406], [8.539146, 47.38221], [8.539561, 47.381974], [8.5396, 47.381951], [8.539635, 47.381925], [8.539666, 47.381897], [8.539694, 47.381867], [8.539718, 47.381836], [8.539737, 47.381803], [8.539743, 47.381805], [8.539906, 47.38158], [8.540125, 47.381278], [8.540198, 47.381176], [8.540377, 47.380915], [8.540384, 47.380917], [8.540527, 47.38072], [8.540675, 47.380515], [8.541096, 47.379929], [8.541231, 47.379721], [8.541384, 47.379442], [8.541493, 47.379204], [8.541486, 47.379198], [8.541491, 47.379194], [8.541495, 47.379189], [8.541499, 47.379185], [8.541502, 47.37918], [8.541505, 47.379175], [8.54159, 47.378948], [8.541526, 47.378937], [8.541568, 47.378823], [8.541439, 47.378801]]], "type": "MultiLineString"}, "id": "2088", "properties": {}, "type": "Feature"}, {"bbox": [8.546186, 47.373907, 8.546466, 47.373975], "geometry": {"coordinates": [[[8.546466, 47.373975], [8.546186, 47.373907]]], "type": "MultiLineString"}, "id": "2089", "properties": {}, "type": "Feature"}, {"bbox": [8.542965, 47.373945, 8.544772, 47.374106], "geometry": {"coordinates": [[[8.542965, 47.374106], [8.543729, 47.373976], [8.543849, 47.373966], [8.544609, 47.373945], [8.544772, 47.373953]]], "type": "MultiLineString"}, "id": "2090", "properties": {}, "type": "Feature"}, {"bbox": [8.552302, 47.41372, 8.552866, 47.4144], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.552383, 47.414123], [8.552302, 47.41372]]], "type": "MultiLineString"}, "id": "2091", "properties": {}, "type": "Feature"}, {"bbox": [8.528842, 47.342421, 8.529951, 47.342925], "geometry": {"coordinates": [[[8.529951, 47.342925], [8.529781, 47.342782], [8.529303, 47.34261], [8.528842, 47.342421]]], "type": "MultiLineString"}, "id": "2093", "properties": {}, "type": "Feature"}, {"bbox": [8.527289, 47.422782, 8.531131, 47.42398], "geometry": {"coordinates": [[[8.531131, 47.422782], [8.531121, 47.422804], [8.531108, 47.422826], [8.531093, 47.422846], [8.531075, 47.422866], [8.531054, 47.422885], [8.531032, 47.422902], [8.531007, 47.422919], [8.53098, 47.422933], [8.530952, 47.422946], [8.530875, 47.422975], [8.530795, 47.422998], [8.530712, 47.423017], [8.53058, 47.423041], [8.530552, 47.423047], [8.530525, 47.423055], [8.530499, 47.423064], [8.530474, 47.423075], [8.530288, 47.423165], [8.53014, 47.423244], [8.530119, 47.423254], [8.530097, 47.423263], [8.530074, 47.423271], [8.53005, 47.423277], [8.530026, 47.423282], [8.53, 47.423285], [8.529975, 47.423287], [8.529949, 47.423288], [8.529843, 47.423289], [8.529738, 47.423298], [8.529635, 47.423314], [8.529339, 47.423369], [8.529288, 47.423378], [8.529238, 47.423386], [8.529187, 47.423394], [8.529052, 47.423414], [8.529016, 47.42342], [8.528981, 47.423427], [8.528946, 47.423436], [8.528798, 47.423475], [8.528768, 47.423484], [8.528739, 47.423493], [8.528711, 47.423504], [8.528581, 47.423555], [8.528553, 47.423566], [8.528523, 47.423575], [8.528493, 47.423582], [8.528363, 47.423611], [8.528337, 47.423617], [8.528312, 47.423624], [8.528288, 47.423632], [8.528174, 47.423675], [8.528144, 47.423686], [8.528113, 47.423695], [8.528081, 47.423703], [8.528017, 47.423719], [8.527991, 47.423726], [8.527967, 47.423734], [8.527944, 47.423744], [8.527883, 47.423774], [8.527837, 47.423795], [8.52779, 47.423813], [8.527741, 47.423828], [8.52769, 47.42384], [8.527586, 47.423862], [8.527558, 47.423869], [8.52753, 47.423877], [8.527504, 47.423886], [8.527388, 47.423928], [8.527289, 47.423921], [8.52729, 47.423962], [8.527292, 47.42398]]], "type": "MultiLineString"}, "id": "2097", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.36705, 8.545177, 47.367474], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544301, 47.36707], [8.544321, 47.367064], [8.544341, 47.367059], [8.544362, 47.367055], [8.544384, 47.367052], [8.544406, 47.36705], [8.544428, 47.36705], [8.54445, 47.367051], [8.544471, 47.367053], [8.544493, 47.367056], [8.544514, 47.367061], [8.544534, 47.367067], [8.544553, 47.367074], [8.544572, 47.367082], [8.545013, 47.367286], [8.545044, 47.367305], [8.545072, 47.367325], [8.545097, 47.367347], [8.54512, 47.36737], [8.545139, 47.367395], [8.545155, 47.36742], [8.545168, 47.367447], [8.545177, 47.367474]]], "type": "MultiLineString"}, "id": "2099", "properties": {}, "type": "Feature"}, {"bbox": [8.488239, 47.412195, 8.489473, 47.416769], "geometry": {"coordinates": [[[8.488239, 47.412195], [8.488353, 47.412288], [8.48842, 47.412347], [8.48848, 47.412409], [8.488532, 47.412475], [8.488576, 47.412543], [8.488611, 47.412614], [8.488647, 47.412714], [8.488669, 47.412817], [8.488675, 47.41292], [8.488671, 47.412999], [8.488672, 47.413178], [8.488672, 47.413232], [8.488675, 47.413285], [8.488679, 47.413338], [8.488755, 47.414032], [8.488916, 47.414751], [8.489082, 47.415498], [8.489092, 47.415539], [8.489125, 47.415673], [8.489132, 47.415696], [8.489141, 47.415719], [8.489151, 47.415741], [8.489166, 47.415775], [8.489176, 47.41581], [8.489181, 47.415845], [8.489202, 47.416101], [8.489253, 47.416461], [8.489258, 47.416485], [8.489266, 47.416509], [8.489278, 47.416533], [8.489292, 47.416555], [8.489406, 47.416713], [8.489473, 47.416769]]], "type": "MultiLineString"}, "id": "2101", "properties": {}, "type": "Feature"}, {"bbox": [8.580431, 47.358862, 8.581749, 47.359208], "geometry": {"coordinates": [[[8.580431, 47.358862], [8.580686, 47.358949], [8.580722, 47.35896], [8.581053, 47.358992], [8.581228, 47.35904], [8.581749, 47.359208]]], "type": "MultiLineString"}, "id": "2113", "properties": {}, "type": "Feature"}, {"bbox": [8.578573, 47.35852, 8.579313, 47.359562], "geometry": {"coordinates": [[[8.579313, 47.35852], [8.579299, 47.358593], [8.579278, 47.358597], [8.579258, 47.358602], [8.579238, 47.358607], [8.579219, 47.358614], [8.579201, 47.358623], [8.579184, 47.358632], [8.579169, 47.358642], [8.579154, 47.358653], [8.579142, 47.358665], [8.579131, 47.358678], [8.579117, 47.358696], [8.578644, 47.359437], [8.578573, 47.359562]]], "type": "MultiLineString"}, "id": "2114", "properties": {}, "type": "Feature"}, {"bbox": [8.582872, 47.399659, 8.583247, 47.399893], "geometry": {"coordinates": [[[8.582872, 47.399893], [8.582998, 47.399816], [8.583123, 47.399738], [8.583247, 47.399659]]], "type": "MultiLineString"}, "id": "2115", "properties": {}, "type": "Feature"}, {"bbox": [8.488294, 47.378398, 8.489223, 47.378714], "geometry": {"coordinates": [[[8.489223, 47.378688], [8.489188, 47.378697], [8.489152, 47.378705], [8.489115, 47.37871], [8.489078, 47.378713], [8.48904, 47.378714], [8.489002, 47.378713], [8.488965, 47.378709], [8.488928, 47.378704], [8.488892, 47.378696], [8.488857, 47.378687], [8.488824, 47.378675], [8.488792, 47.378661], [8.488294, 47.378398]]], "type": "MultiLineString"}, "id": "2116", "properties": {}, "type": "Feature"}, {"bbox": [8.591865, 47.398309, 8.596128, 47.399556], "geometry": {"coordinates": [[[8.591865, 47.399556], [8.592017, 47.399459], [8.596049, 47.398344], [8.596128, 47.398309]]], "type": "MultiLineString"}, "id": "2117", "properties": {}, "type": "Feature"}, {"bbox": [8.524641, 47.429768, 8.536829, 47.431274], "geometry": {"coordinates": [[[8.536829, 47.429805], [8.536365, 47.429834], [8.536061, 47.429768], [8.535818, 47.429772], [8.53505, 47.429889], [8.534232, 47.430042], [8.533575, 47.430186], [8.532646, 47.430462], [8.5311, 47.430774], [8.530519, 47.430872], [8.529963, 47.430922], [8.529474, 47.430975], [8.529249, 47.431017], [8.528691, 47.431011], [8.528119, 47.4311], [8.52737, 47.431103], [8.526859, 47.43111], [8.526569, 47.431119], [8.526303, 47.431133], [8.525913, 47.431173], [8.52548, 47.431207], [8.524641, 47.431274]]], "type": "MultiLineString"}, "id": "2118", "properties": {}, "type": "Feature"}, {"bbox": [8.542708, 47.406957, 8.543263, 47.407753], "geometry": {"coordinates": [[[8.543263, 47.407753], [8.543195, 47.407657], [8.542708, 47.406957]]], "type": "MultiLineString"}, "id": "2119", "properties": {}, "type": "Feature"}, {"bbox": [8.547492, 47.365829, 8.548211, 47.366438], "geometry": {"coordinates": [[[8.547872, 47.366438], [8.547858, 47.366395], [8.547872, 47.366403], [8.547887, 47.36641], [8.547903, 47.366417], [8.54792, 47.366422], [8.547937, 47.366426], [8.547955, 47.36643], [8.547974, 47.366432], [8.547992, 47.366433], [8.548011, 47.366433], [8.548029, 47.366432], [8.548048, 47.366429], [8.548066, 47.366426], [8.548083, 47.366421], [8.5481, 47.366416], [8.548116, 47.36641], [8.548131, 47.366402], [8.548145, 47.366394], [8.548158, 47.366385], [8.54817, 47.366375], [8.54818, 47.366365], [8.548189, 47.366354], [8.548197, 47.366342], [8.548203, 47.36633], [8.548207, 47.366318], [8.54821, 47.366305], [8.548211, 47.366293], [8.548211, 47.36628], [8.548209, 47.366267], [8.548205, 47.366255], [8.5482, 47.366243], [8.548193, 47.366231], [8.548185, 47.36622], [8.548175, 47.366209], [8.548164, 47.366199], [8.548151, 47.36619], [8.547577, 47.365867], [8.547492, 47.365829]]], "type": "MultiLineString"}, "id": "2122", "properties": {}, "type": "Feature"}, {"bbox": [8.547546, 47.366502, 8.54777, 47.366644], "geometry": {"coordinates": [[[8.54777, 47.366502], [8.547546, 47.366644]]], "type": "MultiLineString"}, "id": "2123", "properties": {}, "type": "Feature"}, {"bbox": [8.55029, 47.410572, 8.551007, 47.411075], "geometry": {"coordinates": [[[8.55029, 47.410572], [8.550401, 47.410931], [8.55041, 47.410948], [8.550422, 47.410964], [8.550436, 47.41098], [8.550452, 47.410995], [8.55047, 47.411009], [8.550489, 47.411022], [8.55051, 47.411033], [8.550533, 47.411044], [8.550556, 47.411053], [8.550581, 47.41106], [8.550607, 47.411066], [8.550633, 47.411071], [8.55066, 47.411074], [8.550687, 47.411075], [8.550714, 47.411075], [8.550741, 47.411073], [8.550767, 47.411069], [8.550794, 47.411064], [8.550819, 47.411058], [8.550843, 47.41105], [8.550867, 47.41104], [8.550889, 47.41103], [8.550909, 47.411018], [8.550928, 47.411004], [8.550945, 47.41099], [8.55096, 47.410975], [8.550974, 47.410959], [8.550985, 47.410942], [8.550994, 47.410925], [8.551, 47.410907], [8.551005, 47.410889], [8.551007, 47.41087], [8.551006, 47.410852], [8.551004, 47.410834], [8.550945, 47.410616]]], "type": "MultiLineString"}, "id": "2124", "properties": {}, "type": "Feature"}, {"bbox": [8.551912, 47.403403, 8.552381, 47.40447], "geometry": {"coordinates": [[[8.551912, 47.403403], [8.551943, 47.403474], [8.55219, 47.403886], [8.552212, 47.403922], [8.552231, 47.40395], [8.552318, 47.404103], [8.552321, 47.404108], [8.552324, 47.404113], [8.552326, 47.404119], [8.552328, 47.404124], [8.552329, 47.40413], [8.552329, 47.404136], [8.552328, 47.404141], [8.552326, 47.404147], [8.552324, 47.404152], [8.552322, 47.404158], [8.552318, 47.404163], [8.552282, 47.404219], [8.552277, 47.404226], [8.552272, 47.404234], [8.552269, 47.404242], [8.552267, 47.404249], [8.552266, 47.404257], [8.552266, 47.404265], [8.552267, 47.404273], [8.55227, 47.404281], [8.552273, 47.404289], [8.552277, 47.404296], [8.552381, 47.40447]]], "type": "MultiLineString"}, "id": "2125", "properties": {}, "type": "Feature"}, {"bbox": [8.514466, 47.397024, 8.514921, 47.397834], "geometry": {"coordinates": [[[8.514921, 47.397024], [8.514848, 47.397072], [8.514605, 47.397516], [8.514481, 47.397781], [8.514466, 47.397834]]], "type": "MultiLineString"}, "id": "2126", "properties": {}, "type": "Feature"}, {"bbox": [8.496674, 47.354075, 8.499928, 47.358436], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497217, 47.358377], [8.497181, 47.35829], [8.496932, 47.357997], [8.496751, 47.357702], [8.496689, 47.357503], [8.496674, 47.357237], [8.4967, 47.356973], [8.49671, 47.356882], [8.49671, 47.356882], [8.496723, 47.35681], [8.496744, 47.356739], [8.496773, 47.356669], [8.49681, 47.356601], [8.496935, 47.356395], [8.496948, 47.356372], [8.496958, 47.356349], [8.496964, 47.356325], [8.497311, 47.356274], [8.497383, 47.356261], [8.497453, 47.356244], [8.49752, 47.356223], [8.497585, 47.356198], [8.497646, 47.356169], [8.497703, 47.356137], [8.497756, 47.356101], [8.497804, 47.356063], [8.498113, 47.355794], [8.498125, 47.355783], [8.498134, 47.355772], [8.498143, 47.35576], [8.49815, 47.355747], [8.498155, 47.355734], [8.498158, 47.355721], [8.49816, 47.355708], [8.49816, 47.355695], [8.498158, 47.355682], [8.498154, 47.355668], [8.498149, 47.355656], [8.498136, 47.355633], [8.498121, 47.355612], [8.498103, 47.355591], [8.498082, 47.355572], [8.498058, 47.355554], [8.49767, 47.355285], [8.497644, 47.355265], [8.497619, 47.355244], [8.497596, 47.355222], [8.497461, 47.355082], [8.497444, 47.355063], [8.497431, 47.355043], [8.497419, 47.355023], [8.497411, 47.355002], [8.497405, 47.35498], [8.497402, 47.354959], [8.497402, 47.354937], [8.497405, 47.354915], [8.497411, 47.354894], [8.497419, 47.354873], [8.497431, 47.354852], [8.497501, 47.354739], [8.49752, 47.354712], [8.497542, 47.354686], [8.497568, 47.354661], [8.497597, 47.354638], [8.497628, 47.354617], [8.497662, 47.354598], [8.497698, 47.35458], [8.497737, 47.354565], [8.497777, 47.354552], [8.497818, 47.354542], [8.498225, 47.354452], [8.498322, 47.354434], [8.498421, 47.354421], [8.498521, 47.354415], [8.498807, 47.354406], [8.499116, 47.354394], [8.499169, 47.354391], [8.499222, 47.354383], [8.499273, 47.354373], [8.499322, 47.354359], [8.49937, 47.354343], [8.499415, 47.354323], [8.499928, 47.354075]]], "type": "MultiLineString"}, "id": "2127", "properties": {}, "type": "Feature"}, {"bbox": [8.477426, 47.419877, 8.482874, 47.421262], "geometry": {"coordinates": [[[8.482874, 47.419877], [8.482611, 47.419941], [8.48154, 47.420213], [8.480852, 47.420358], [8.480777, 47.420373], [8.480702, 47.420386], [8.480626, 47.420398], [8.479797, 47.420507], [8.479663, 47.420528], [8.479531, 47.420555], [8.479402, 47.420587], [8.478825, 47.420747], [8.47873, 47.420775], [8.478637, 47.420806], [8.478546, 47.420839], [8.477426, 47.421262]]], "type": "MultiLineString"}, "id": "2141", "properties": {}, "type": "Feature"}, {"bbox": [8.491438, 47.415253, 8.49313, 47.416954], "geometry": {"coordinates": [[[8.49313, 47.415253], [8.49237, 47.41539], [8.492355, 47.415394], [8.492341, 47.415398], [8.492326, 47.415402], [8.492313, 47.415408], [8.4923, 47.415415], [8.492288, 47.415422], [8.492277, 47.41543], [8.492267, 47.415438], [8.492259, 47.415447], [8.492251, 47.415456], [8.492244, 47.415466], [8.492134, 47.415653], [8.49168, 47.41657], [8.491673, 47.416586], [8.491667, 47.416603], [8.491664, 47.41662], [8.491636, 47.416691], [8.491598, 47.416761], [8.491553, 47.416828], [8.491499, 47.416893], [8.491438, 47.416954]]], "type": "MultiLineString"}, "id": "2142", "properties": {}, "type": "Feature"}, {"bbox": [8.541828, 47.373897, 8.54195, 47.374414], "geometry": {"coordinates": [[[8.54195, 47.373897], [8.541947, 47.373975], [8.541849, 47.374161], [8.541828, 47.374257], [8.541836, 47.37432], [8.541857, 47.374414]]], "type": "MultiLineString"}, "id": "2143", "properties": {}, "type": "Feature"}, {"bbox": [8.536047, 47.340897, 8.538912, 47.342933], "geometry": {"coordinates": [[[8.536047, 47.342762], [8.536178, 47.342805], [8.536542, 47.342933], [8.537275, 47.342851], [8.538004, 47.342412], [8.538191, 47.342432], [8.538726, 47.341685], [8.538912, 47.341639], [8.53879, 47.340928], [8.538785, 47.340897]]], "type": "MultiLineString"}, "id": "2144", "properties": {}, "type": "Feature"}, {"bbox": [8.546757, 47.38441, 8.547124, 47.384449], "geometry": {"coordinates": [[[8.546757, 47.38441], [8.547124, 47.384449]]], "type": "MultiLineString"}, "id": "2145", "properties": {}, "type": "Feature"}, {"bbox": [8.475806, 47.395417, 8.476443, 47.397322], "geometry": {"coordinates": [[[8.47643, 47.397322], [8.476437, 47.397307], [8.476441, 47.397291], [8.476443, 47.397275], [8.476443, 47.397259], [8.476249, 47.396696], [8.476175, 47.396481], [8.475881, 47.395621], [8.475806, 47.395417]]], "type": "MultiLineString"}, "id": "2150", "properties": {}, "type": "Feature"}, {"bbox": [8.525006, 47.420115, 8.530659, 47.424034], "geometry": {"coordinates": [[[8.530659, 47.420115], [8.530574, 47.420124], [8.530489, 47.420134], [8.530404, 47.420147], [8.530354, 47.420157], [8.530304, 47.420169], [8.530256, 47.420183], [8.530251, 47.420185], [8.530246, 47.420186], [8.530241, 47.420188], [8.530195, 47.420205], [8.529817, 47.420348], [8.529767, 47.420366], [8.529677, 47.420392], [8.529455, 47.420446], [8.529064, 47.420536], [8.528528, 47.420651], [8.52837, 47.420688], [8.528218, 47.420733], [8.528071, 47.420786], [8.527932, 47.420848], [8.527633, 47.420994], [8.527372, 47.421128], [8.527042, 47.4213], [8.52679, 47.42143], [8.526698, 47.421476], [8.526604, 47.421519], [8.526507, 47.421559], [8.526369, 47.421613], [8.526228, 47.421663], [8.526084, 47.421709], [8.526084, 47.421709], [8.526084, 47.421709], [8.52595, 47.421748], [8.525812, 47.421781], [8.525672, 47.421808], [8.525608, 47.421818], [8.525544, 47.421827], [8.52548, 47.421835], [8.525466, 47.421836], [8.525451, 47.421838], [8.525437, 47.421841], [8.525423, 47.421845], [8.52541, 47.421849], [8.525398, 47.421855], [8.525386, 47.421861], [8.525375, 47.421867], [8.525365, 47.421874], [8.525356, 47.421882], [8.525348, 47.421891], [8.525341, 47.4219], [8.525336, 47.421909], [8.525331, 47.421918], [8.525336, 47.422114], [8.525334, 47.422256], [8.525334, 47.422256], [8.525334, 47.422256], [8.52533, 47.422288], [8.525322, 47.422321], [8.52531, 47.422352], [8.525297, 47.422382], [8.525282, 47.42241], [8.525266, 47.422439], [8.525266, 47.422439], [8.525266, 47.422439], [8.525237, 47.422492], [8.525207, 47.422545], [8.525177, 47.422597], [8.525177, 47.422597], [8.525177, 47.422598], [8.525153, 47.422647], [8.525129, 47.422697], [8.525107, 47.422747], [8.525107, 47.422747], [8.525107, 47.422747], [8.52509, 47.422793], [8.525073, 47.422838], [8.525057, 47.422883], [8.525022, 47.423024], [8.525006, 47.423165], [8.525009, 47.423307], [8.525011, 47.423376], [8.525026, 47.423563], [8.525034, 47.423621], [8.52505, 47.423731], [8.525058, 47.42382], [8.525062, 47.424034]]], "type": "MultiLineString"}, "id": "2152", "properties": {}, "type": "Feature"}, {"bbox": [8.593919, 47.352978, 8.602074, 47.355184], "geometry": {"coordinates": [[[8.593919, 47.354588], [8.594029, 47.354613], [8.594134, 47.354644], [8.594235, 47.354681], [8.594331, 47.354725], [8.59442, 47.354774], [8.59458, 47.35489], [8.594745, 47.355004], [8.594914, 47.355114], [8.594952, 47.355132], [8.594991, 47.355147], [8.595033, 47.35516], [8.595076, 47.35517], [8.59512, 47.355177], [8.595165, 47.355182], [8.595211, 47.355184], [8.595256, 47.355183], [8.595302, 47.355179], [8.595346, 47.355173], [8.59539, 47.355164], [8.595432, 47.355153], [8.595473, 47.355138], [8.595511, 47.355122], [8.595547, 47.355103], [8.595616, 47.355049], [8.595676, 47.354991], [8.595729, 47.354929], [8.595774, 47.354864], [8.595811, 47.354798], [8.595838, 47.354729], [8.595857, 47.354658], [8.595879, 47.354028], [8.59589, 47.353957], [8.595911, 47.353887], [8.595941, 47.353818], [8.595979, 47.353751], [8.596026, 47.353687], [8.596082, 47.353626], [8.596145, 47.353569], [8.596215, 47.353516], [8.596272, 47.353478], [8.596334, 47.353444], [8.596399, 47.353413], [8.596468, 47.353387], [8.59654, 47.353364], [8.596615, 47.353346], [8.596692, 47.353332], [8.59677, 47.353323], [8.597236, 47.353274], [8.59859, 47.353184], [8.599575, 47.353163], [8.599713, 47.353169], [8.599738, 47.353152], [8.600425, 47.353065], [8.60109, 47.352978], [8.601172, 47.352978], [8.601253, 47.352983], [8.601334, 47.352993], [8.601413, 47.353008], [8.60149, 47.353027], [8.601564, 47.353051], [8.601634, 47.353079], [8.601701, 47.353111], [8.601764, 47.353148], [8.601809, 47.353171], [8.601851, 47.353198], [8.60189, 47.353226], [8.601924, 47.353258], [8.601955, 47.353291], [8.60198, 47.353326], [8.602001, 47.353362], [8.602017, 47.353399], [8.602028, 47.353437], [8.602074, 47.353461]]], "type": "MultiLineString"}, "id": "2154", "properties": {}, "type": "Feature"}, {"bbox": [8.482373, 47.387226, 8.484208, 47.38773], "geometry": {"coordinates": [[[8.484208, 47.387226], [8.484138, 47.387267], [8.483936, 47.387364], [8.483803, 47.387419], [8.483554, 47.387476], [8.483367, 47.387496], [8.483115, 47.387539], [8.482817, 47.38758], [8.48247, 47.387682], [8.482373, 47.38773]]], "type": "MultiLineString"}, "id": "2157", "properties": {}, "type": "Feature"}, {"bbox": [8.519155, 47.379281, 8.520104, 47.379944], "geometry": {"coordinates": [[[8.519155, 47.379729], [8.519179, 47.379751], [8.519422, 47.379644], [8.519731, 47.379944], [8.520104, 47.379754], [8.519786, 47.379426], [8.520058, 47.379303], [8.520044, 47.379281]]], "type": "MultiLineString"}, "id": "2158", "properties": {}, "type": "Feature"}, {"bbox": [8.519032, 47.379098, 8.520044, 47.379729], "geometry": {"coordinates": [[[8.520044, 47.379281], [8.52003, 47.379259], [8.519761, 47.379378], [8.519468, 47.379098], [8.519032, 47.379272], [8.519062, 47.379295], [8.519354, 47.379591], [8.51913, 47.379708], [8.519155, 47.379729]]], "type": "MultiLineString"}, "id": "2159", "properties": {}, "type": "Feature"}, {"bbox": [8.581729, 47.404705, 8.583464, 47.405104], "geometry": {"coordinates": [[[8.581729, 47.404705], [8.581855, 47.404743], [8.583464, 47.405104]]], "type": "MultiLineString"}, "id": "2172", "properties": {}, "type": "Feature"}, {"bbox": [8.552447, 47.388649, 8.552737, 47.389677], "geometry": {"coordinates": [[[8.552459, 47.389677], [8.55246, 47.389628], [8.552449, 47.389563], [8.552447, 47.389497], [8.552454, 47.389431], [8.552469, 47.389365], [8.552493, 47.389301], [8.552649, 47.388873], [8.552737, 47.388649]]], "type": "MultiLineString"}, "id": "2173", "properties": {}, "type": "Feature"}, {"bbox": [8.556905, 47.384317, 8.557666, 47.384484], "geometry": {"coordinates": [[[8.556905, 47.384484], [8.557102, 47.384457], [8.557295, 47.38442], [8.557484, 47.384374], [8.557666, 47.384317]]], "type": "MultiLineString"}, "id": "2179", "properties": {}, "type": "Feature"}, {"bbox": [8.584052, 47.399994, 8.58416, 47.400125], "geometry": {"coordinates": [[[8.58416, 47.400125], [8.584052, 47.399994]]], "type": "MultiLineString"}, "id": "2182", "properties": {}, "type": "Feature"}, {"bbox": [8.479723, 47.398116, 8.480912, 47.39971], "geometry": {"coordinates": [[[8.479723, 47.398116], [8.480641, 47.399525], [8.480692, 47.399602], [8.480912, 47.39971]]], "type": "MultiLineString"}, "id": "2184", "properties": {}, "type": "Feature"}, {"bbox": [8.582642, 47.400435, 8.583081, 47.400588], "geometry": {"coordinates": [[[8.582642, 47.400588], [8.58279, 47.400575], [8.582994, 47.400482], [8.583013, 47.400471], [8.583081, 47.400435]]], "type": "MultiLineString"}, "id": "2185", "properties": {}, "type": "Feature"}, {"bbox": [8.584732, 47.37644, 8.586902, 47.377622], "geometry": {"coordinates": [[[8.584747, 47.37644], [8.584733, 47.37651], [8.584732, 47.376518], [8.584732, 47.376526], [8.584733, 47.376534], [8.584735, 47.376542], [8.584738, 47.37655], [8.584742, 47.376558], [8.584747, 47.376566], [8.584753, 47.376573], [8.58476, 47.37658], [8.584768, 47.376586], [8.584776, 47.376592], [8.584786, 47.376597], [8.584795, 47.376602], [8.584806, 47.376606], [8.58529, 47.376778], [8.585326, 47.37679], [8.585362, 47.376802], [8.585399, 47.376813], [8.585535, 47.376853], [8.585584, 47.376867], [8.585634, 47.376879], [8.585684, 47.376889], [8.585871, 47.376925], [8.585921, 47.376936], [8.585969, 47.376951], [8.586016, 47.376968], [8.586059, 47.376989], [8.586415, 47.377172], [8.586448, 47.377191], [8.586479, 47.377212], [8.586506, 47.377234], [8.586531, 47.377258], [8.586808, 47.377559], [8.586902, 47.377622]]], "type": "MultiLineString"}, "id": "2188", "properties": {}, "type": "Feature"}, {"bbox": [8.515619, 47.395978, 8.516051, 47.396176], "geometry": {"coordinates": [[[8.516051, 47.396176], [8.515984, 47.396167], [8.515952, 47.396161], [8.51592, 47.396155], [8.515888, 47.396149], [8.515851, 47.39614], [8.515815, 47.396128], [8.515781, 47.396115], [8.515753, 47.396099], [8.515727, 47.396082], [8.515703, 47.396064], [8.515619, 47.395978]]], "type": "MultiLineString"}, "id": "2198", "properties": {}, "type": "Feature"}, {"bbox": [8.529346, 47.398423, 8.530329, 47.399732], "geometry": {"coordinates": [[[8.530329, 47.398423], [8.53007, 47.398492], [8.529693, 47.39852], [8.529478, 47.398544], [8.529463, 47.398547], [8.529449, 47.398552], [8.529435, 47.398557], [8.529422, 47.398563], [8.529409, 47.39857], [8.529398, 47.398577], [8.529387, 47.398585], [8.529378, 47.398594], [8.529369, 47.398603], [8.529362, 47.398613], [8.529356, 47.398623], [8.529352, 47.398633], [8.529349, 47.398643], [8.529347, 47.398654], [8.529346, 47.398665], [8.529347, 47.398676], [8.529349, 47.398686], [8.529353, 47.398697], [8.529358, 47.398707], [8.529364, 47.398717], [8.529371, 47.398727], [8.52938, 47.398736], [8.52939, 47.398744], [8.5294, 47.398752], [8.529412, 47.398759], [8.529425, 47.398766], [8.529438, 47.398772], [8.529452, 47.398777], [8.529467, 47.398781], [8.529482, 47.398784], [8.529587, 47.398818], [8.529689, 47.398858], [8.529786, 47.398902], [8.529892, 47.39896], [8.529975, 47.399023], [8.53005, 47.39909], [8.530116, 47.399162], [8.530142, 47.399198], [8.530163, 47.399235], [8.530179, 47.399274], [8.53019, 47.399313], [8.530197, 47.399353], [8.530198, 47.399393], [8.530194, 47.399433], [8.530185, 47.399473], [8.530171, 47.399512], [8.530152, 47.39955], [8.530128, 47.399586], [8.5301, 47.399622], [8.530067, 47.399655], [8.530031, 47.399686], [8.530007, 47.399703], [8.529982, 47.399718], [8.529955, 47.399732]]], "type": "MultiLineString"}, "id": "2201", "properties": {}, "type": "Feature"}, {"bbox": [8.517983, 47.351695, 8.520104, 47.353227], "geometry": {"coordinates": [[[8.520104, 47.351695], [8.519966, 47.351945], [8.519927, 47.351979], [8.519667, 47.352143], [8.51902, 47.352543], [8.518106, 47.353109], [8.517983, 47.353227]]], "type": "MultiLineString"}, "id": "2202", "properties": {}, "type": "Feature"}, {"bbox": [8.480317, 47.360011, 8.487038, 47.360972], "geometry": {"coordinates": [[[8.487038, 47.360972], [8.487001, 47.360852], [8.486962, 47.360769], [8.486944, 47.360735], [8.486923, 47.360703], [8.486897, 47.360672], [8.486868, 47.360643], [8.486836, 47.360615], [8.4868, 47.360589], [8.48662, 47.360469], [8.486569, 47.360438], [8.486513, 47.360409], [8.486454, 47.360384], [8.486393, 47.360362], [8.486328, 47.360344], [8.486262, 47.36033], [8.486194, 47.360319], [8.486061, 47.360303], [8.486003, 47.360294], [8.485946, 47.360282], [8.485891, 47.360266], [8.485838, 47.360248], [8.485702, 47.360194], [8.485625, 47.360167], [8.485544, 47.360145], [8.485461, 47.360127], [8.485376, 47.360114], [8.485016, 47.360071], [8.48458, 47.360016], [8.484544, 47.360013], [8.484507, 47.360011], [8.48447, 47.360012], [8.484434, 47.360015], [8.484398, 47.360019], [8.484363, 47.360026], [8.484328, 47.360035], [8.484295, 47.360046], [8.484263, 47.360058], [8.484233, 47.360073], [8.483993, 47.360198], [8.483923, 47.360232], [8.48385, 47.360262], [8.483773, 47.360289], [8.483169, 47.360487], [8.483038, 47.360525], [8.482903, 47.360557], [8.482764, 47.360581], [8.482764, 47.360581], [8.482435, 47.36063], [8.482285, 47.360649], [8.482134, 47.36066], [8.481982, 47.360664], [8.481982, 47.360664], [8.481982, 47.360664], [8.481869, 47.360662], [8.481757, 47.360653], [8.481647, 47.360638], [8.481539, 47.360617], [8.481129, 47.360524], [8.48045, 47.360359], [8.480317, 47.360328]]], "type": "MultiLineString"}, "id": "2203", "properties": {}, "type": "Feature"}, {"bbox": [8.548153, 47.377582, 8.550534, 47.379997], "geometry": {"coordinates": [[[8.548153, 47.379991], [8.548408, 47.379997], [8.548436, 47.379997], [8.548465, 47.379995], [8.548493, 47.379992], [8.548521, 47.379987], [8.548548, 47.379981], [8.548574, 47.379973], [8.548599, 47.379963], [8.548622, 47.379952], [8.548645, 47.37994], [8.548665, 47.379927], [8.548684, 47.379912], [8.548701, 47.379896], [8.548716, 47.37988], [8.548877, 47.379721], [8.548982, 47.379593], [8.549012, 47.379556], [8.549037, 47.379518], [8.549057, 47.379478], [8.549072, 47.379437], [8.549082, 47.379396], [8.549087, 47.379354], [8.549087, 47.379312], [8.549086, 47.379267], [8.54909, 47.379223], [8.549101, 47.379178], [8.549117, 47.379135], [8.549139, 47.379093], [8.549166, 47.379052], [8.549198, 47.379013], [8.549235, 47.378976], [8.549236, 47.378975], [8.549427, 47.378821], [8.549856, 47.378475], [8.55001, 47.378343], [8.550144, 47.378201], [8.550256, 47.378051], [8.550462, 47.377717], [8.550534, 47.377582]]], "type": "MultiLineString"}, "id": "2204", "properties": {}, "type": "Feature"}, {"bbox": [8.545287, 47.370924, 8.547059, 47.372101], "geometry": {"coordinates": [[[8.547059, 47.370924], [8.546871, 47.371028], [8.546747, 47.371099], [8.546349, 47.371314], [8.545913, 47.371553], [8.545816, 47.371602], [8.545728, 47.371658], [8.545647, 47.371719], [8.545576, 47.371785], [8.545509, 47.371859], [8.545444, 47.371934], [8.545383, 47.37201], [8.545352, 47.372041], [8.54532, 47.372071], [8.545287, 47.372101]]], "type": "MultiLineString"}, "id": "2205", "properties": {}, "type": "Feature"}, {"bbox": [8.544285, 47.41077, 8.544578, 47.411274], "geometry": {"coordinates": [[[8.544578, 47.41077], [8.544572, 47.410781], [8.544538, 47.410823], [8.5445, 47.410864], [8.544486, 47.410878], [8.544473, 47.410892], [8.544462, 47.410907], [8.544359, 47.411078], [8.544332, 47.411125], [8.544311, 47.411174], [8.544295, 47.411223], [8.544285, 47.411274]]], "type": "MultiLineString"}, "id": "2206", "properties": {}, "type": "Feature"}, {"bbox": [8.560006, 47.416066, 8.560826, 47.417654], "geometry": {"coordinates": [[[8.560006, 47.417654], [8.560826, 47.416066]]], "type": "MultiLineString"}, "id": "2213", "properties": {}, "type": "Feature"}, {"bbox": [8.530083, 47.338487, 8.530293, 47.338585], "geometry": {"coordinates": [[[8.530083, 47.338585], [8.530293, 47.338487]]], "type": "MultiLineString"}, "id": "2215", "properties": {}, "type": "Feature"}, {"bbox": [8.519743, 47.349769, 8.521, 47.35107], "geometry": {"coordinates": [[[8.521, 47.349769], [8.519743, 47.350581], [8.52055, 47.35086], [8.520475, 47.350993], [8.520465, 47.35107]]], "type": "MultiLineString"}, "id": "2217", "properties": {}, "type": "Feature"}, {"bbox": [8.524121, 47.351695, 8.524407, 47.351756], "geometry": {"coordinates": [[[8.524401, 47.351756], [8.524407, 47.351705], [8.524331, 47.351702], [8.524124, 47.351695], [8.524124, 47.351714], [8.524123, 47.351733], [8.524121, 47.351752]]], "type": "MultiLineString"}, "id": "2220", "properties": {}, "type": "Feature"}, {"bbox": [8.547042, 47.365766, 8.54711, 47.365799], "geometry": {"coordinates": [[[8.54711, 47.365799], [8.547042, 47.365766]]], "type": "MultiLineString"}, "id": "2221", "properties": {}, "type": "Feature"}, {"bbox": [8.489849, 47.356006, 8.496968, 47.360491], "geometry": {"coordinates": [[[8.496964, 47.356325], [8.496967, 47.35631], [8.496968, 47.356294], [8.496967, 47.356278], [8.496954, 47.356131], [8.496953, 47.356119], [8.496949, 47.356108], [8.496945, 47.356097], [8.496938, 47.356086], [8.496931, 47.356075], [8.496922, 47.356066], [8.496912, 47.356056], [8.4969, 47.356048], [8.496888, 47.35604], [8.496874, 47.356032], [8.49686, 47.356026], [8.496845, 47.356021], [8.496829, 47.356016], [8.496812, 47.356013], [8.496796, 47.35601], [8.496779, 47.356009], [8.496651, 47.356006], [8.496523, 47.35601], [8.496396, 47.356021], [8.49627, 47.35604], [8.496148, 47.356065], [8.496015, 47.356099], [8.495885, 47.356135], [8.495756, 47.356175], [8.495702, 47.356191], [8.495645, 47.356204], [8.495588, 47.356214], [8.495529, 47.356221], [8.495274, 47.356243], [8.494967, 47.356263], [8.494761, 47.356275], [8.494743, 47.356276], [8.494726, 47.356279], [8.494708, 47.356283], [8.494692, 47.356288], [8.494676, 47.356294], [8.49466, 47.3563], [8.494646, 47.356308], [8.494633, 47.356316], [8.494621, 47.356326], [8.49461, 47.356335], [8.4946, 47.356346], [8.494592, 47.356357], [8.494585, 47.356368], [8.494579, 47.35638], [8.494575, 47.356392], [8.494556, 47.356453], [8.494532, 47.356513], [8.494502, 47.356573], [8.494441, 47.35668], [8.494427, 47.35671], [8.494417, 47.35674], [8.494411, 47.356771], [8.494399, 47.356884], [8.494396, 47.356902], [8.494391, 47.35692], [8.494383, 47.356937], [8.494374, 47.356954], [8.494362, 47.35697], [8.494349, 47.356986], [8.494255, 47.357083], [8.494232, 47.35711], [8.494212, 47.357137], [8.494196, 47.357166], [8.494184, 47.357196], [8.494176, 47.357226], [8.494171, 47.357257], [8.494171, 47.357287], [8.494174, 47.357318], [8.494181, 47.357348], [8.494192, 47.357378], [8.494207, 47.357407], [8.494226, 47.357435], [8.494468, 47.357764], [8.494682, 47.35814], [8.494692, 47.358155], [8.494704, 47.358169], [8.494717, 47.358183], [8.494733, 47.358195], [8.49475, 47.358207], [8.494768, 47.358218], [8.494788, 47.358227], [8.494912, 47.358279], [8.49492, 47.358283], [8.494927, 47.358287], [8.494933, 47.358291], [8.494939, 47.358296], [8.494945, 47.358301], [8.49495, 47.358306], [8.494954, 47.358312], [8.494957, 47.358318], [8.49496, 47.358324], [8.494961, 47.35833], [8.494962, 47.358336], [8.494963, 47.358343], [8.494962, 47.358349], [8.494961, 47.358355], [8.494959, 47.358361], [8.494956, 47.358367], [8.494952, 47.358373], [8.494948, 47.358378], [8.494943, 47.358384], [8.494937, 47.358389], [8.49493, 47.358393], [8.494924, 47.358397], [8.494916, 47.358401], [8.494908, 47.358405], [8.4949, 47.358407], [8.494892, 47.35841], [8.49474, 47.358447], [8.494713, 47.358454], [8.494687, 47.358464], [8.494662, 47.358474], [8.494639, 47.358487], [8.494618, 47.3585], [8.494598, 47.358515], [8.494581, 47.358531], [8.494566, 47.358548], [8.494553, 47.358566], [8.494542, 47.358585], [8.494534, 47.358604], [8.49449, 47.358735], [8.494485, 47.358746], [8.494479, 47.358757], [8.494472, 47.358768], [8.494463, 47.358778], [8.494453, 47.358788], [8.494441, 47.358797], [8.494429, 47.358806], [8.494416, 47.358813], [8.494401, 47.35882], [8.494386, 47.358826], [8.494371, 47.358832], [8.494354, 47.358836], [8.494337, 47.358839], [8.49432, 47.358841], [8.494303, 47.358843], [8.494285, 47.358843], [8.494268, 47.358842], [8.49425, 47.35884], [8.494233, 47.358838], [8.494217, 47.358834], [8.4942, 47.358829], [8.493806, 47.358701], [8.493479, 47.358564], [8.493398, 47.35853], [8.493318, 47.358495], [8.493239, 47.358459], [8.493221, 47.358451], [8.493202, 47.358445], [8.493182, 47.358439], [8.493161, 47.358435], [8.49314, 47.358432], [8.493119, 47.358431], [8.493097, 47.358431], [8.493076, 47.358432], [8.493055, 47.358434], [8.493034, 47.358438], [8.493014, 47.358443], [8.492994, 47.358449], [8.492976, 47.358457], [8.492887, 47.358499], [8.492806, 47.358548], [8.492732, 47.358602], [8.492666, 47.35866], [8.492614, 47.358707], [8.492556, 47.358752], [8.492494, 47.358793], [8.492428, 47.358837], [8.492368, 47.358884], [8.492313, 47.358935], [8.492265, 47.358988], [8.492183, 47.359086], [8.492163, 47.359112], [8.492147, 47.359139], [8.492135, 47.359166], [8.492127, 47.359195], [8.492122, 47.359223], [8.492121, 47.359252], [8.492124, 47.359281], [8.49213, 47.359309], [8.49214, 47.359337], [8.492225, 47.359531], [8.492238, 47.359567], [8.492246, 47.359603], [8.492249, 47.359639], [8.492246, 47.359676], [8.492239, 47.359712], [8.492189, 47.359887], [8.492185, 47.359909], [8.492183, 47.359932], [8.492184, 47.359955], [8.492188, 47.359977], [8.492195, 47.359999], [8.492206, 47.360021], [8.492219, 47.360042], [8.492234, 47.360062], [8.492252, 47.360081], [8.492273, 47.360099], [8.492296, 47.360115], [8.492321, 47.36013], [8.492348, 47.360144], [8.492377, 47.360155], [8.492448, 47.360184], [8.492516, 47.360216], [8.49258, 47.360252], [8.492592, 47.36026], [8.492604, 47.360269], [8.492614, 47.360278], [8.492623, 47.360289], [8.492631, 47.360299], [8.492637, 47.36031], [8.492642, 47.360322], [8.492645, 47.360333], [8.492647, 47.360345], [8.492648, 47.360357], [8.492647, 47.360369], [8.492644, 47.36038], [8.49264, 47.360392], [8.492635, 47.360403], [8.492628, 47.360414], [8.492619, 47.360424], [8.49261, 47.360434], [8.492599, 47.360444], [8.492587, 47.360452], [8.492574, 47.36046], [8.49256, 47.360467], [8.492545, 47.360473], [8.49253, 47.360479], [8.492514, 47.360483], [8.492497, 47.360487], [8.49248, 47.360489], [8.492463, 47.360491], [8.492445, 47.360491], [8.492428, 47.360491], [8.492385, 47.360486], [8.492342, 47.36048], [8.4923, 47.36047], [8.49226, 47.360459], [8.492222, 47.360444], [8.492186, 47.360428], [8.492152, 47.360409], [8.492121, 47.360388], [8.491808, 47.36016], [8.491771, 47.360136], [8.491731, 47.360114], [8.491689, 47.360094], [8.491643, 47.360077], [8.491596, 47.360063], [8.491547, 47.360052], [8.491448, 47.360033], [8.491425, 47.360027], [8.491402, 47.360021], [8.49138, 47.360013], [8.491359, 47.360004], [8.49134, 47.359994], [8.491322, 47.359982], [8.491305, 47.35997], [8.49129, 47.359956], [8.491276, 47.359942], [8.491265, 47.359927], [8.491204, 47.35984], [8.491185, 47.359816], [8.491163, 47.359793], [8.491138, 47.359771], [8.491111, 47.359751], [8.491081, 47.359733], [8.491049, 47.359716], [8.491015, 47.359702], [8.49098, 47.359689], [8.490943, 47.359679], [8.490791, 47.359641], [8.490762, 47.359635], [8.490731, 47.35963], [8.4907, 47.359627], [8.490669, 47.359626], [8.490637, 47.359626], [8.490606, 47.359629], [8.490575, 47.359633], [8.490545, 47.359639], [8.490516, 47.359646], [8.490487, 47.359655], [8.490134, 47.359777], [8.489964, 47.359845], [8.489948, 47.359855], [8.489933, 47.359866], [8.489919, 47.359878], [8.4899, 47.359901], [8.489883, 47.359925], [8.48987, 47.35995], [8.48986, 47.359976], [8.489853, 47.360003], [8.489849, 47.360029], [8.489849, 47.360056], [8.489853, 47.360083], [8.48986, 47.360109], [8.48987, 47.360135], [8.489884, 47.36016], [8.489901, 47.360184], [8.489921, 47.360207], [8.490013, 47.360319]]], "type": "MultiLineString"}, "id": "2222", "properties": {}, "type": "Feature"}, {"bbox": [8.551905, 47.367061, 8.55254, 47.367492], "geometry": {"coordinates": [[[8.55254, 47.367492], [8.552445, 47.367483], [8.551905, 47.367061]]], "type": "MultiLineString"}, "id": "2224", "properties": {}, "type": "Feature"}, {"bbox": [8.546165, 47.383827, 8.546953, 47.384193], "geometry": {"coordinates": [[[8.546165, 47.383827], [8.546371, 47.38393], [8.546953, 47.384193]]], "type": "MultiLineString"}, "id": "2227", "properties": {}, "type": "Feature"}, {"bbox": [8.588027, 47.395806, 8.588323, 47.39618], "geometry": {"coordinates": [[[8.588027, 47.39618], [8.588323, 47.395806]]], "type": "MultiLineString"}, "id": "2229", "properties": {}, "type": "Feature"}, {"bbox": [8.545489, 47.367148, 8.546471, 47.367611], "geometry": {"coordinates": [[[8.545489, 47.367148], [8.545586, 47.367193], [8.546471, 47.367611]]], "type": "MultiLineString"}, "id": "2232", "properties": {}, "type": "Feature"}, {"bbox": [8.544672, 47.410759, 8.545189, 47.410918], "geometry": {"coordinates": [[[8.545189, 47.410918], [8.544672, 47.410759]]], "type": "MultiLineString"}, "id": "2235", "properties": {}, "type": "Feature"}, {"bbox": [8.539191, 47.369604, 8.539393, 47.370092], "geometry": {"coordinates": [[[8.539393, 47.369604], [8.539379, 47.369674], [8.539302, 47.369944], [8.539288, 47.369976], [8.539269, 47.370007], [8.539247, 47.370037], [8.539221, 47.370065], [8.539191, 47.370092]]], "type": "MultiLineString"}, "id": "2245", "properties": {}, "type": "Feature"}, {"bbox": [8.571708, 47.358835, 8.572269, 47.359406], "geometry": {"coordinates": [[[8.571708, 47.358835], [8.571852, 47.358973], [8.571963, 47.359066], [8.571884, 47.35911], [8.572269, 47.359406]]], "type": "MultiLineString"}, "id": "2246", "properties": {}, "type": "Feature"}, {"bbox": [8.539676, 47.371297, 8.539998, 47.371836], "geometry": {"coordinates": [[[8.539998, 47.371836], [8.539916, 47.371809], [8.539942, 47.371786], [8.539918, 47.37178], [8.539927, 47.371761], [8.539858, 47.37174], [8.539852, 47.371752], [8.539815, 47.371738], [8.539824, 47.371723], [8.539676, 47.371685], [8.539939, 47.371304], [8.539915, 47.371297]]], "type": "MultiLineString"}, "id": "2247", "properties": {}, "type": "Feature"}, {"bbox": [8.570915, 47.353904, 8.572052, 47.354016], "geometry": {"coordinates": [[[8.572052, 47.354016], [8.570915, 47.353904]]], "type": "MultiLineString"}, "id": "2250", "properties": {}, "type": "Feature"}, {"bbox": [8.566837, 47.413287, 8.567563, 47.413297], "geometry": {"coordinates": [[[8.566837, 47.413297], [8.567079, 47.413294], [8.567321, 47.413291], [8.567563, 47.413287]]], "type": "MultiLineString"}, "id": "2251", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.416689, 8.529267, 47.416725], "geometry": {"coordinates": [[[8.528055, 47.416689], [8.528593, 47.416701], [8.528818, 47.416706], [8.529042, 47.416714], [8.529267, 47.416725]]], "type": "MultiLineString"}, "id": "2253", "properties": {}, "type": "Feature"}, {"bbox": [8.564953, 47.406728, 8.565785, 47.407865], "geometry": {"coordinates": [[[8.565258, 47.407865], [8.565785, 47.407287], [8.56561, 47.407135], [8.564953, 47.406728]]], "type": "MultiLineString"}, "id": "2255", "properties": {}, "type": "Feature"}, {"bbox": [8.57151, 47.36799, 8.572354, 47.369187], "geometry": {"coordinates": [[[8.572354, 47.36799], [8.572149, 47.368377], [8.571974, 47.368655], [8.571881, 47.36878], [8.57151, 47.369187]]], "type": "MultiLineString"}, "id": "2256", "properties": {}, "type": "Feature"}, {"bbox": [8.557179, 47.36352, 8.557944, 47.363954], "geometry": {"coordinates": [[[8.557179, 47.36352], [8.557944, 47.363954]]], "type": "MultiLineString"}, "id": "2259", "properties": {}, "type": "Feature"}, {"bbox": [8.499589, 47.358896, 8.500437, 47.359681], "geometry": {"coordinates": [[[8.499589, 47.359681], [8.500437, 47.358896]]], "type": "MultiLineString"}, "id": "2260", "properties": {}, "type": "Feature"}, {"bbox": [8.482099, 47.384202, 8.483109, 47.384716], "geometry": {"coordinates": [[[8.483109, 47.384716], [8.482759, 47.384687], [8.482355, 47.384529], [8.482099, 47.384202]]], "type": "MultiLineString"}, "id": "2261", "properties": {}, "type": "Feature"}, {"bbox": [8.59131, 47.360989, 8.592449, 47.361375], "geometry": {"coordinates": [[[8.59131, 47.360989], [8.591329, 47.361], [8.591349, 47.36101], [8.59137, 47.36102], [8.591749, 47.361268], [8.591783, 47.361286], [8.591819, 47.361302], [8.591858, 47.361316], [8.591897, 47.361328], [8.591939, 47.361337], [8.592219, 47.361375], [8.592254, 47.361374], [8.592289, 47.361371], [8.592323, 47.361365], [8.592356, 47.361358], [8.592389, 47.361349], [8.59242, 47.361338], [8.592449, 47.361325]]], "type": "MultiLineString"}, "id": "2263", "properties": {}, "type": "Feature"}, {"bbox": [8.500909, 47.362962, 8.503228, 47.363768], "geometry": {"coordinates": [[[8.500909, 47.363768], [8.500911, 47.363749], [8.500928, 47.363582], [8.500964, 47.363577], [8.501686, 47.363408], [8.502404, 47.363194], [8.502927, 47.362967], [8.503001, 47.362962], [8.503189, 47.363045], [8.503228, 47.36306]]], "type": "MultiLineString"}, "id": "2264", "properties": {}, "type": "Feature"}, {"bbox": [8.576357, 47.410301, 8.576669, 47.410549], "geometry": {"coordinates": [[[8.576357, 47.410337], [8.576534, 47.410301], [8.576669, 47.410549]]], "type": "MultiLineString"}, "id": "2265", "properties": {}, "type": "Feature"}, {"bbox": [8.451733, 47.380518, 8.451923, 47.380616], "geometry": {"coordinates": [[[8.451923, 47.380518], [8.451858, 47.380549], [8.451795, 47.380582], [8.451733, 47.380616]]], "type": "MultiLineString"}, "id": "2267", "properties": {}, "type": "Feature"}, {"bbox": [8.571367, 47.398838, 8.572463, 47.399842], "geometry": {"coordinates": [[[8.571367, 47.399842], [8.572202, 47.399342], [8.572372, 47.399139], [8.572463, 47.398838]]], "type": "MultiLineString"}, "id": "2269", "properties": {}, "type": "Feature"}, {"bbox": [8.496675, 47.384546, 8.497351, 47.385367], "geometry": {"coordinates": [[[8.496675, 47.384546], [8.497285, 47.385322], [8.497298, 47.385337], [8.497324, 47.385329], [8.497351, 47.385367]]], "type": "MultiLineString"}, "id": "2274", "properties": {}, "type": "Feature"}, {"bbox": [8.55299, 47.353058, 8.554662, 47.353549], "geometry": {"coordinates": [[[8.55299, 47.353172], [8.553348, 47.353076], [8.553486, 47.353058], [8.55425, 47.353103], [8.554411, 47.353291], [8.554544, 47.353476], [8.554662, 47.353549]]], "type": "MultiLineString"}, "id": "2275", "properties": {}, "type": "Feature"}, {"bbox": [8.496012, 47.385367, 8.49736, 47.385789], "geometry": {"coordinates": [[[8.497351, 47.385367], [8.49736, 47.385423], [8.497313, 47.385438], [8.496152, 47.385778], [8.496105, 47.385781], [8.496059, 47.385785], [8.496012, 47.385789]]], "type": "MultiLineString"}, "id": "2277", "properties": {}, "type": "Feature"}, {"bbox": [8.561053, 47.414226, 8.56307, 47.414255], "geometry": {"coordinates": [[[8.56307, 47.414255], [8.561053, 47.414226]]], "type": "MultiLineString"}, "id": "2280", "properties": {}, "type": "Feature"}, {"bbox": [8.551886, 47.417203, 8.553833, 47.417498], "geometry": {"coordinates": [[[8.551886, 47.417203], [8.552034, 47.417236], [8.553449, 47.417468], [8.553833, 47.417498]]], "type": "MultiLineString"}, "id": "2281", "properties": {}, "type": "Feature"}, {"bbox": [8.572311, 47.410623, 8.572614, 47.411182], "geometry": {"coordinates": [[[8.572311, 47.410623], [8.572348, 47.410653], [8.57238, 47.410685], [8.572407, 47.410719], [8.572485, 47.410872], [8.572554, 47.411026], [8.572614, 47.411182]]], "type": "MultiLineString"}, "id": "2282", "properties": {}, "type": "Feature"}, {"bbox": [8.505566, 47.397501, 8.507117, 47.398184], "geometry": {"coordinates": [[[8.505566, 47.398184], [8.505572, 47.398184], [8.505577, 47.398183], [8.505582, 47.398181], [8.505587, 47.39818], [8.505591, 47.398178], [8.505836, 47.398065], [8.506082, 47.397955], [8.50633, 47.397846], [8.506591, 47.397731], [8.506854, 47.397616], [8.507117, 47.397501]]], "type": "MultiLineString"}, "id": "2283", "properties": {}, "type": "Feature"}, {"bbox": [8.589723, 47.399221, 8.590306, 47.400214], "geometry": {"coordinates": [[[8.590306, 47.400214], [8.590283, 47.400176], [8.590282, 47.400146], [8.589723, 47.399221]]], "type": "MultiLineString"}, "id": "2285", "properties": {}, "type": "Feature"}, {"bbox": [8.543398, 47.391036, 8.544156, 47.392389], "geometry": {"coordinates": [[[8.54393, 47.392389], [8.543486, 47.391899], [8.543398, 47.391803], [8.543435, 47.391439], [8.543501, 47.39137], [8.543586, 47.391282], [8.543614, 47.391248], [8.543695, 47.391141], [8.543761, 47.391036], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "2286", "properties": {}, "type": "Feature"}, {"bbox": [8.505338, 47.368452, 8.505525, 47.369326], "geometry": {"coordinates": [[[8.505407, 47.369326], [8.505338, 47.369187], [8.505341, 47.369164], [8.50538, 47.369019], [8.505392, 47.368974], [8.505401, 47.368899], [8.505517, 47.368482], [8.505525, 47.368452]]], "type": "MultiLineString"}, "id": "2287", "properties": {}, "type": "Feature"}, {"bbox": [8.513293, 47.417736, 8.514129, 47.418332], "geometry": {"coordinates": [[[8.513293, 47.417736], [8.51334, 47.417767], [8.514129, 47.418332]]], "type": "MultiLineString"}, "id": "2288", "properties": {}, "type": "Feature"}, {"bbox": [8.518181, 47.388317, 8.518563, 47.388684], "geometry": {"coordinates": [[[8.518563, 47.388684], [8.518181, 47.388317]]], "type": "MultiLineString"}, "id": "2289", "properties": {}, "type": "Feature"}, {"bbox": [8.514398, 47.330582, 8.515629, 47.330898], "geometry": {"coordinates": [[[8.515629, 47.330582], [8.515151, 47.330788], [8.515038, 47.33067], [8.514741, 47.330749], [8.514398, 47.330898]]], "type": "MultiLineString"}, "id": "2298", "properties": {}, "type": "Feature"}, {"bbox": [8.532671, 47.355015, 8.534276, 47.355064], "geometry": {"coordinates": [[[8.534276, 47.355047], [8.533823, 47.355022], [8.533225, 47.355064], [8.532671, 47.355015]]], "type": "MultiLineString"}, "id": "2299", "properties": {}, "type": "Feature"}, {"bbox": [8.546364, 47.394938, 8.55174, 47.395381], "geometry": {"coordinates": [[[8.546364, 47.395312], [8.546605, 47.395322], [8.547725, 47.395364], [8.548233, 47.395375], [8.548844, 47.395381], [8.549708, 47.395347], [8.551178, 47.395304], [8.551205, 47.395303], [8.551232, 47.3953], [8.551258, 47.395296], [8.551283, 47.39529], [8.551308, 47.395283], [8.551331, 47.395274], [8.551354, 47.395264], [8.551375, 47.395253], [8.551394, 47.39524], [8.551412, 47.395227], [8.551428, 47.395212], [8.551442, 47.395196], [8.55158, 47.395025], [8.551588, 47.395013], [8.551598, 47.395002], [8.55161, 47.394991], [8.551622, 47.394981], [8.551637, 47.394972], [8.551652, 47.394964], [8.551668, 47.394957], [8.551685, 47.39495], [8.551703, 47.394945], [8.551721, 47.394941], [8.55174, 47.394938]]], "type": "MultiLineString"}, "id": "2300", "properties": {}, "type": "Feature"}, {"bbox": [8.486906, 47.37741, 8.487959, 47.378234], "geometry": {"coordinates": [[[8.487959, 47.378234], [8.487952, 47.378214], [8.487942, 47.378195], [8.487929, 47.378176], [8.487915, 47.378158], [8.487897, 47.378142], [8.487878, 47.378126], [8.487856, 47.378112], [8.486972, 47.377449], [8.486951, 47.377435], [8.486929, 47.377422], [8.486906, 47.37741]]], "type": "MultiLineString"}, "id": "2302", "properties": {}, "type": "Feature"}, {"bbox": [8.506786, 47.41753, 8.507647, 47.417819], "geometry": {"coordinates": [[[8.507647, 47.417785], [8.507516, 47.417788], [8.507408, 47.417819], [8.507086, 47.417712], [8.507032, 47.417661], [8.506786, 47.41753]]], "type": "MultiLineString"}, "id": "2303", "properties": {}, "type": "Feature"}, {"bbox": [8.509874, 47.35855, 8.510545, 47.359001], "geometry": {"coordinates": [[[8.510545, 47.359001], [8.510534, 47.358992], [8.510136, 47.358735], [8.509921, 47.358584], [8.509874, 47.35855]]], "type": "MultiLineString"}, "id": "2304", "properties": {}, "type": "Feature"}, {"bbox": [8.492161, 47.372504, 8.494113, 47.37316], "geometry": {"coordinates": [[[8.492161, 47.37316], [8.492376, 47.373093], [8.49259, 47.373023], [8.492803, 47.372953], [8.49324, 47.372804], [8.493677, 47.372654], [8.494113, 47.372504]]], "type": "MultiLineString"}, "id": "2305", "properties": {}, "type": "Feature"}, {"bbox": [8.507362, 47.353867, 8.508284, 47.355294], "geometry": {"coordinates": [[[8.507362, 47.355294], [8.507424, 47.355249], [8.507483, 47.355157], [8.507518, 47.355053], [8.507618, 47.354921], [8.507648, 47.354848], [8.507706, 47.354758], [8.507762, 47.354669], [8.507889, 47.354513], [8.507925, 47.354456], [8.507997, 47.354343], [8.508122, 47.354147], [8.508189, 47.354042], [8.508256, 47.353936], [8.508284, 47.353867]]], "type": "MultiLineString"}, "id": "2306", "properties": {}, "type": "Feature"}, {"bbox": [8.511212, 47.37913, 8.511984, 47.379239], "geometry": {"coordinates": [[[8.511984, 47.379239], [8.511787, 47.379228], [8.511592, 47.379206], [8.5114, 47.379173], [8.511212, 47.37913]]], "type": "MultiLineString"}, "id": "2307", "properties": {}, "type": "Feature"}, {"bbox": [8.54277, 47.392662, 8.543535, 47.393141], "geometry": {"coordinates": [[[8.54277, 47.392905], [8.542808, 47.392946], [8.54301, 47.393141], [8.543535, 47.392918], [8.54328, 47.392662]]], "type": "MultiLineString"}, "id": "2310", "properties": {}, "type": "Feature"}, {"bbox": [8.557752, 47.41353, 8.558163, 47.414528], "geometry": {"coordinates": [[[8.557752, 47.414528], [8.557764, 47.41425], [8.558141, 47.414254], [8.558163, 47.41353]]], "type": "MultiLineString"}, "id": "2311", "properties": {}, "type": "Feature"}, {"bbox": [8.521588, 47.361264, 8.521707, 47.361585], "geometry": {"coordinates": [[[8.521707, 47.361264], [8.521588, 47.361585]]], "type": "MultiLineString"}, "id": "2312", "properties": {}, "type": "Feature"}, {"bbox": [8.567923, 47.401877, 8.568693, 47.402667], "geometry": {"coordinates": [[[8.568693, 47.402667], [8.568684, 47.402625], [8.568663, 47.402609], [8.568439, 47.402384], [8.568221, 47.402132], [8.567923, 47.401877]]], "type": "MultiLineString"}, "id": "2313", "properties": {}, "type": "Feature"}, {"bbox": [8.553558, 47.401648, 8.553953, 47.402067], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553953, 47.401648]]], "type": "MultiLineString"}, "id": "2314", "properties": {}, "type": "Feature"}, {"bbox": [8.540417, 47.407844, 8.541192, 47.408432], "geometry": {"coordinates": [[[8.541192, 47.408432], [8.540807, 47.408397], [8.540471, 47.407904], [8.540417, 47.407844]]], "type": "MultiLineString"}, "id": "2315", "properties": {}, "type": "Feature"}, {"bbox": [8.516504, 47.331188, 8.516723, 47.331729], "geometry": {"coordinates": [[[8.516504, 47.331729], [8.516621, 47.331659], [8.516592, 47.331215], [8.516723, 47.331188]]], "type": "MultiLineString"}, "id": "2316", "properties": {}, "type": "Feature"}, {"bbox": [8.548836, 47.384338, 8.549868, 47.384598], "geometry": {"coordinates": [[[8.548836, 47.384598], [8.549331, 47.384338], [8.549868, 47.384524]]], "type": "MultiLineString"}, "id": "2317", "properties": {}, "type": "Feature"}, {"bbox": [8.508284, 47.353867, 8.508697, 47.353972], "geometry": {"coordinates": [[[8.508697, 47.353972], [8.508284, 47.353867]]], "type": "MultiLineString"}, "id": "2319", "properties": {}, "type": "Feature"}, {"bbox": [8.507191, 47.359001, 8.510545, 47.361908], "geometry": {"coordinates": [[[8.510545, 47.359001], [8.510268, 47.359221], [8.509833, 47.359072], [8.507542, 47.361677], [8.507262, 47.361861], [8.507191, 47.361908]]], "type": "MultiLineString"}, "id": "2320", "properties": {}, "type": "Feature"}, {"bbox": [8.527575, 47.383795, 8.528679, 47.384341], "geometry": {"coordinates": [[[8.528679, 47.383795], [8.527575, 47.384341]]], "type": "MultiLineString"}, "id": "2322", "properties": {}, "type": "Feature"}, {"bbox": [8.533322, 47.382114, 8.534232, 47.382682], "geometry": {"coordinates": [[[8.534232, 47.382682], [8.533322, 47.382114]]], "type": "MultiLineString"}, "id": "2325", "properties": {}, "type": "Feature"}, {"bbox": [8.547892, 47.384744, 8.548376, 47.384891], "geometry": {"coordinates": [[[8.547892, 47.384891], [8.547897, 47.38488], [8.547903, 47.384869], [8.547911, 47.384858], [8.54792, 47.384849], [8.54793, 47.384839], [8.547942, 47.384831], [8.547954, 47.384823], [8.547968, 47.384816], [8.548018, 47.384793], [8.548186, 47.384745], [8.548204, 47.384744], [8.548222, 47.384744], [8.54824, 47.384745], [8.548257, 47.384747], [8.548275, 47.38475], [8.548291, 47.384754], [8.548308, 47.384759], [8.548323, 47.384765], [8.548338, 47.384772], [8.548352, 47.384779], [8.548365, 47.384788], [8.548376, 47.384797]]], "type": "MultiLineString"}, "id": "2329", "properties": {}, "type": "Feature"}, {"bbox": [8.533312, 47.386756, 8.534227, 47.386942], "geometry": {"coordinates": [[[8.533312, 47.386756], [8.533735, 47.386826], [8.533747, 47.386841], [8.533761, 47.386856], [8.533776, 47.38687], [8.533793, 47.386882], [8.533812, 47.386894], [8.533832, 47.386905], [8.533854, 47.386914], [8.533876, 47.386923], [8.5339, 47.386929], [8.533924, 47.386935], [8.533949, 47.386939], [8.533975, 47.386941], [8.534, 47.386942], [8.534026, 47.386941], [8.534051, 47.386939], [8.534076, 47.386936], [8.534101, 47.386931], [8.534125, 47.386924], [8.534148, 47.386916], [8.534169, 47.386907], [8.53419, 47.386897], [8.534209, 47.386885], [8.534227, 47.386873]]], "type": "MultiLineString"}, "id": "2330", "properties": {}, "type": "Feature"}, {"bbox": [8.526385, 47.385143, 8.526738, 47.385258], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526385, 47.385258]]], "type": "MultiLineString"}, "id": "2332", "properties": {}, "type": "Feature"}, {"bbox": [8.528746, 47.393065, 8.529116, 47.393206], "geometry": {"coordinates": [[[8.529116, 47.393065], [8.529075, 47.39314], [8.529054, 47.393137], [8.529033, 47.393136], [8.529012, 47.393136], [8.528991, 47.393137], [8.528945, 47.393141], [8.5289, 47.393148], [8.528856, 47.393158], [8.528814, 47.39317], [8.528773, 47.393185], [8.528767, 47.393188], [8.528762, 47.393191], [8.528758, 47.393194], [8.528753, 47.393198], [8.528749, 47.393202], [8.528746, 47.393206]]], "type": "MultiLineString"}, "id": "2334", "properties": {}, "type": "Feature"}, {"bbox": [8.507647, 47.417785, 8.508416, 47.418317], "geometry": {"coordinates": [[[8.508416, 47.418317], [8.508385, 47.418282], [8.50835, 47.418249], [8.508312, 47.418218], [8.50777, 47.417805], [8.507647, 47.417785]]], "type": "MultiLineString"}, "id": "2337", "properties": {}, "type": "Feature"}, {"bbox": [8.486241, 47.375509, 8.486489, 47.376278], "geometry": {"coordinates": [[[8.486489, 47.375509], [8.486413, 47.375782], [8.48635, 47.375951], [8.486335, 47.376083], [8.486302, 47.376195], [8.486241, 47.376278]]], "type": "MultiLineString"}, "id": "2338", "properties": {}, "type": "Feature"}, {"bbox": [8.555916, 47.383641, 8.556301, 47.383887], "geometry": {"coordinates": [[[8.555916, 47.383641], [8.556301, 47.383887]]], "type": "MultiLineString"}, "id": "2339", "properties": {}, "type": "Feature"}, {"bbox": [8.510318, 47.393706, 8.510378, 47.394353], "geometry": {"coordinates": [[[8.510378, 47.394353], [8.510369, 47.394251], [8.510358, 47.394149], [8.510346, 47.394047], [8.510318, 47.393706]]], "type": "MultiLineString"}, "id": "2340", "properties": {}, "type": "Feature"}, {"bbox": [8.511984, 47.379239, 8.512742, 47.380033], "geometry": {"coordinates": [[[8.511984, 47.379239], [8.512742, 47.380033]]], "type": "MultiLineString"}, "id": "2341", "properties": {}, "type": "Feature"}, {"bbox": [8.555717, 47.409461, 8.555781, 47.410756], "geometry": {"coordinates": [[[8.555781, 47.409461], [8.555753, 47.409742], [8.555729, 47.410468], [8.55572, 47.410671], [8.555717, 47.410756]]], "type": "MultiLineString"}, "id": "2342", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.331216, 8.53384, 47.331469], "geometry": {"coordinates": [[[8.532676, 47.331233], [8.532826, 47.33122], [8.533837, 47.331216], [8.53384, 47.331469]]], "type": "MultiLineString"}, "id": "2343", "properties": {}, "type": "Feature"}, {"bbox": [8.591367, 47.400398, 8.592582, 47.400796], "geometry": {"coordinates": [[[8.592582, 47.400398], [8.592517, 47.400417], [8.591367, 47.400796]]], "type": "MultiLineString"}, "id": "2345", "properties": {}, "type": "Feature"}, {"bbox": [8.520727, 47.36119, 8.521588, 47.361585], "geometry": {"coordinates": [[[8.521588, 47.361585], [8.521557, 47.361573], [8.521327, 47.361481], [8.521192, 47.361394], [8.520896, 47.361269], [8.520727, 47.36119]]], "type": "MultiLineString"}, "id": "2346", "properties": {}, "type": "Feature"}, {"bbox": [8.536458, 47.393689, 8.536996, 47.394065], "geometry": {"coordinates": [[[8.53664, 47.393689], [8.536677, 47.393698], [8.536996, 47.393798], [8.536824, 47.394065], [8.536458, 47.393935]]], "type": "MultiLineString"}, "id": "2348", "properties": {}, "type": "Feature"}, {"bbox": [8.469297, 47.392537, 8.470565, 47.393375], "geometry": {"coordinates": [[[8.470565, 47.392537], [8.469749, 47.393071], [8.469297, 47.393375]]], "type": "MultiLineString"}, "id": "2350", "properties": {}, "type": "Feature"}, {"bbox": [8.578671, 47.407768, 8.579005, 47.408124], "geometry": {"coordinates": [[[8.578671, 47.407768], [8.579005, 47.408124]]], "type": "MultiLineString"}, "id": "2357", "properties": {}, "type": "Feature"}, {"bbox": [8.523995, 47.387085, 8.524198, 47.387314], "geometry": {"coordinates": [[[8.524083, 47.387085], [8.523995, 47.387126], [8.524198, 47.387314]]], "type": "MultiLineString"}, "id": "2362", "properties": {}, "type": "Feature"}, {"bbox": [8.528634, 47.374385, 8.528748, 47.374454], "geometry": {"coordinates": [[[8.528748, 47.374454], [8.528634, 47.374385]]], "type": "MultiLineString"}, "id": "2363", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.390627, 8.522407, 47.390845], "geometry": {"coordinates": [[[8.52239, 47.390627], [8.522407, 47.390708], [8.522334, 47.390772], [8.522048, 47.390845]]], "type": "MultiLineString"}, "id": "2364", "properties": {}, "type": "Feature"}, {"bbox": [8.536052, 47.377556, 8.536276, 47.37764], "geometry": {"coordinates": [[[8.536052, 47.37764], [8.536276, 47.377556]]], "type": "MultiLineString"}, "id": "2373", "properties": {}, "type": "Feature"}, {"bbox": [8.492548, 47.38081, 8.492612, 47.380922], "geometry": {"coordinates": [[[8.492548, 47.38081], [8.492612, 47.380922]]], "type": "MultiLineString"}, "id": "2374", "properties": {}, "type": "Feature"}, {"bbox": [8.514104, 47.363487, 8.51704, 47.366394], "geometry": {"coordinates": [[[8.51704, 47.363487], [8.51433, 47.366198], [8.514104, 47.366394]]], "type": "MultiLineString"}, "id": "2376", "properties": {}, "type": "Feature"}, {"bbox": [8.484901, 47.386231, 8.484926, 47.386266], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484926, 47.386266]]], "type": "MultiLineString"}, "id": "2378", "properties": {}, "type": "Feature"}, {"bbox": [8.484808, 47.38616, 8.484901, 47.386231], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484808, 47.38616]]], "type": "MultiLineString"}, "id": "2379", "properties": {}, "type": "Feature"}, {"bbox": [8.559719, 47.413756, 8.5611, 47.413876], "geometry": {"coordinates": [[[8.5611, 47.413876], [8.559719, 47.413756]]], "type": "MultiLineString"}, "id": "2380", "properties": {}, "type": "Feature"}, {"bbox": [8.537927, 47.381893, 8.538775, 47.382061], "geometry": {"coordinates": [[[8.538775, 47.382055], [8.538741, 47.382061], [8.537949, 47.381907], [8.537927, 47.381893]]], "type": "MultiLineString"}, "id": "2381", "properties": {}, "type": "Feature"}, {"bbox": [8.483755, 47.386231, 8.484901, 47.386935], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484808, 47.386266], [8.484579, 47.386415], [8.484375, 47.386586], [8.484242, 47.386698], [8.484024, 47.3867], [8.483755, 47.386935]]], "type": "MultiLineString"}, "id": "2382", "properties": {}, "type": "Feature"}, {"bbox": [8.551053, 47.422702, 8.551181, 47.422759], "geometry": {"coordinates": [[[8.551053, 47.422759], [8.551181, 47.422702]]], "type": "MultiLineString"}, "id": "2388", "properties": {}, "type": "Feature"}, {"bbox": [8.583524, 47.399487, 8.584052, 47.399994], "geometry": {"coordinates": [[[8.584052, 47.399994], [8.583983, 47.39991], [8.583656, 47.399613], [8.583524, 47.399487]]], "type": "MultiLineString"}, "id": "2390", "properties": {}, "type": "Feature"}, {"bbox": [8.53128, 47.359487, 8.531592, 47.359559], "geometry": {"coordinates": [[[8.53128, 47.359487], [8.531592, 47.359559]]], "type": "MultiLineString"}, "id": "2391", "properties": {}, "type": "Feature"}, {"bbox": [8.568281, 47.377102, 8.569433, 47.378552], "geometry": {"coordinates": [[[8.568281, 47.378552], [8.568355, 47.37855], [8.568428, 47.378544], [8.5685, 47.378534], [8.56857, 47.378519], [8.569433, 47.377243], [8.568994, 47.377102]]], "type": "MultiLineString"}, "id": "2392", "properties": {}, "type": "Feature"}, {"bbox": [8.534363, 47.346548, 8.535549, 47.346813], "geometry": {"coordinates": [[[8.534363, 47.346548], [8.534482, 47.346575], [8.535549, 47.346813]]], "type": "MultiLineString"}, "id": "2394", "properties": {}, "type": "Feature"}, {"bbox": [8.586184, 47.358965, 8.586521, 47.359712], "geometry": {"coordinates": [[[8.586184, 47.359712], [8.586521, 47.358965]]], "type": "MultiLineString"}, "id": "2399", "properties": {}, "type": "Feature"}, {"bbox": [8.555851, 47.385469, 8.556367, 47.386198], "geometry": {"coordinates": [[[8.555851, 47.385469], [8.555959, 47.385798], [8.556059, 47.385936], [8.556367, 47.386198]]], "type": "MultiLineString"}, "id": "2401", "properties": {}, "type": "Feature"}, {"bbox": [8.494458, 47.423586, 8.494724, 47.424211], "geometry": {"coordinates": [[[8.494724, 47.423586], [8.494688, 47.423606], [8.494654, 47.423629], [8.494624, 47.423653], [8.494597, 47.42368], [8.494574, 47.423708], [8.494525, 47.423874], [8.494487, 47.424042], [8.494458, 47.424211]]], "type": "MultiLineString"}, "id": "2402", "properties": {}, "type": "Feature"}, {"bbox": [8.544397, 47.403188, 8.545422, 47.40353], "geometry": {"coordinates": [[[8.545422, 47.403311], [8.544585, 47.40353], [8.544397, 47.403188]]], "type": "MultiLineString"}, "id": "2404", "properties": {}, "type": "Feature"}, {"bbox": [8.510202, 47.331166, 8.512296, 47.331749], "geometry": {"coordinates": [[[8.512296, 47.331743], [8.512282, 47.331749], [8.511792, 47.331166], [8.510202, 47.331684]]], "type": "MultiLineString"}, "id": "2406", "properties": {}, "type": "Feature"}, {"bbox": [8.531007, 47.338607, 8.531061, 47.339221], "geometry": {"coordinates": [[[8.531061, 47.338607], [8.531049, 47.338723], [8.531008, 47.339122], [8.531007, 47.339221]]], "type": "MultiLineString"}, "id": "2407", "properties": {}, "type": "Feature"}, {"bbox": [8.551917, 47.39467, 8.552837, 47.395473], "geometry": {"coordinates": [[[8.552016, 47.39467], [8.551917, 47.394724], [8.551932, 47.394826], [8.552227, 47.395077], [8.5523, 47.395141], [8.552416, 47.39523], [8.552731, 47.395473], [8.552837, 47.395412]]], "type": "MultiLineString"}, "id": "2409", "properties": {}, "type": "Feature"}, {"bbox": [8.545471, 47.417469, 8.545557, 47.417488], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545471, 47.417469]]], "type": "MultiLineString"}, "id": "2410", "properties": {}, "type": "Feature"}, {"bbox": [8.515266, 47.386229, 8.51615, 47.387525], "geometry": {"coordinates": [[[8.515399, 47.387342], [8.515554, 47.387525], [8.51615, 47.387297], [8.515266, 47.386229]]], "type": "MultiLineString"}, "id": "2411", "properties": {}, "type": "Feature"}, {"bbox": [8.5467, 47.410217, 8.548231, 47.410364], "geometry": {"coordinates": [[[8.5467, 47.410217], [8.547272, 47.410272], [8.548231, 47.410364]]], "type": "MultiLineString"}, "id": "2413", "properties": {}, "type": "Feature"}, {"bbox": [8.51704, 47.363146, 8.517318, 47.363487], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517294, 47.363235], [8.51704, 47.363487]]], "type": "MultiLineString"}, "id": "2417", "properties": {}, "type": "Feature"}, {"bbox": [8.582932, 47.355327, 8.583533, 47.35571], "geometry": {"coordinates": [[[8.582932, 47.355327], [8.583533, 47.35571]]], "type": "MultiLineString"}, "id": "2418", "properties": {}, "type": "Feature"}, {"bbox": [8.506889, 47.409689, 8.506972, 47.409716], "geometry": {"coordinates": [[[8.506889, 47.409716], [8.506972, 47.409689]]], "type": "MultiLineString"}, "id": "2423", "properties": {}, "type": "Feature"}, {"bbox": [8.595547, 47.355103, 8.596403, 47.355598], "geometry": {"coordinates": [[[8.595547, 47.355103], [8.595638, 47.355181], [8.595737, 47.355253], [8.595845, 47.355319], [8.596025, 47.355418], [8.596211, 47.355511], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "2426", "properties": {}, "type": "Feature"}, {"bbox": [8.550061, 47.427988, 8.550457, 47.428243], "geometry": {"coordinates": [[[8.550061, 47.427988], [8.550097, 47.428005], [8.550131, 47.428023], [8.550163, 47.428043], [8.550262, 47.428109], [8.55036, 47.428175], [8.550457, 47.428243]]], "type": "MultiLineString"}, "id": "2427", "properties": {}, "type": "Feature"}, {"bbox": [8.580022, 47.356147, 8.581114, 47.357005], "geometry": {"coordinates": [[[8.580022, 47.357005], [8.580044, 47.357002], [8.580064, 47.356998], [8.580085, 47.356993], [8.580104, 47.356986], [8.580123, 47.356979], [8.58044, 47.356677], [8.580492, 47.356644], [8.580548, 47.356614], [8.580607, 47.356587], [8.580699, 47.356523], [8.580783, 47.356455], [8.580861, 47.356383], [8.581114, 47.356147]]], "type": "MultiLineString"}, "id": "2428", "properties": {}, "type": "Feature"}, {"bbox": [8.568005, 47.369937, 8.568834, 47.370045], "geometry": {"coordinates": [[[8.568005, 47.370045], [8.568834, 47.369937]]], "type": "MultiLineString"}, "id": "2429", "properties": {}, "type": "Feature"}, {"bbox": [8.551439, 47.353127, 8.55299, 47.353172], "geometry": {"coordinates": [[[8.55299, 47.353172], [8.552829, 47.353153], [8.551439, 47.353127]]], "type": "MultiLineString"}, "id": "2430", "properties": {}, "type": "Feature"}, {"bbox": [8.552969, 47.353172, 8.553144, 47.354301], "geometry": {"coordinates": [[[8.553144, 47.354301], [8.553078, 47.354214], [8.553019, 47.354124], [8.552969, 47.354032], [8.553002, 47.353214], [8.55299, 47.353172]]], "type": "MultiLineString"}, "id": "2431", "properties": {}, "type": "Feature"}, {"bbox": [8.538702, 47.403066, 8.538961, 47.403464], "geometry": {"coordinates": [[[8.538961, 47.403066], [8.53895, 47.403081], [8.538927, 47.403113], [8.538716, 47.403443], [8.538702, 47.403464]]], "type": "MultiLineString"}, "id": "2433", "properties": {}, "type": "Feature"}, {"bbox": [8.541688, 47.425479, 8.542157, 47.425679], "geometry": {"coordinates": [[[8.542157, 47.425479], [8.542008, 47.425554], [8.541851, 47.425621], [8.541688, 47.425679]]], "type": "MultiLineString"}, "id": "2434", "properties": {}, "type": "Feature"}, {"bbox": [8.580016, 47.355647, 8.580805, 47.355982], "geometry": {"coordinates": [[[8.580016, 47.355647], [8.580277, 47.355761], [8.58054, 47.355872], [8.580805, 47.355982]]], "type": "MultiLineString"}, "id": "2437", "properties": {}, "type": "Feature"}, {"bbox": [8.533624, 47.334637, 8.534492, 47.335073], "geometry": {"coordinates": [[[8.533624, 47.334637], [8.533731, 47.334651], [8.533852, 47.334688], [8.534151, 47.334869], [8.534398, 47.335012], [8.534416, 47.335024], [8.534492, 47.335073]]], "type": "MultiLineString"}, "id": "2440", "properties": {}, "type": "Feature"}, {"bbox": [8.576913, 47.408318, 8.577111, 47.408662], "geometry": {"coordinates": [[[8.576913, 47.408318], [8.577111, 47.408662]]], "type": "MultiLineString"}, "id": "2441", "properties": {}, "type": "Feature"}, {"bbox": [8.539783, 47.408029, 8.540282, 47.40873], "geometry": {"coordinates": [[[8.539783, 47.408029], [8.540282, 47.40873]]], "type": "MultiLineString"}, "id": "2442", "properties": {}, "type": "Feature"}, {"bbox": [8.503228, 47.362195, 8.504126, 47.36306], "geometry": {"coordinates": [[[8.504126, 47.362195], [8.504082, 47.362237], [8.503575, 47.36271], [8.503504, 47.362776], [8.503255, 47.363035], [8.503228, 47.36306]]], "type": "MultiLineString"}, "id": "2443", "properties": {}, "type": "Feature"}, {"bbox": [8.561947, 47.373531, 8.562294, 47.374007], "geometry": {"coordinates": [[[8.561947, 47.374007], [8.561972, 47.373946], [8.561977, 47.373878], [8.562001, 47.373802], [8.562046, 47.373723], [8.562109, 47.373647], [8.562193, 47.373574], [8.562294, 47.373531]]], "type": "MultiLineString"}, "id": "2444", "properties": {}, "type": "Feature"}, {"bbox": [8.518699, 47.428181, 8.519068, 47.42907], "geometry": {"coordinates": [[[8.518699, 47.428181], [8.51899, 47.428824], [8.519068, 47.42907]]], "type": "MultiLineString"}, "id": "2445", "properties": {}, "type": "Feature"}, {"bbox": [8.530028, 47.336256, 8.530794, 47.336557], "geometry": {"coordinates": [[[8.530028, 47.336256], [8.530124, 47.33628], [8.530153, 47.336287], [8.530794, 47.336557]]], "type": "MultiLineString"}, "id": "2447", "properties": {}, "type": "Feature"}, {"bbox": [8.487371, 47.366622, 8.489538, 47.367758], "geometry": {"coordinates": [[[8.487379, 47.367758], [8.487375, 47.367745], [8.487372, 47.367732], [8.487371, 47.367719], [8.487372, 47.367706], [8.487374, 47.367694], [8.487378, 47.367681], [8.487383, 47.367668], [8.48739, 47.367656], [8.487398, 47.367645], [8.487408, 47.367633], [8.487419, 47.367623], [8.487432, 47.367613], [8.487445, 47.367604], [8.48746, 47.367596], [8.487476, 47.367588], [8.487492, 47.367582], [8.487509, 47.367576], [8.488608, 47.367291], [8.488691, 47.367263], [8.488769, 47.367229], [8.488842, 47.36719], [8.48891, 47.367146], [8.489079, 47.367029], [8.489236, 47.366905], [8.489382, 47.366773], [8.489538, 47.366622]]], "type": "MultiLineString"}, "id": "2450", "properties": {}, "type": "Feature"}, {"bbox": [8.584198, 47.383704, 8.586407, 47.387918], "geometry": {"coordinates": [[[8.584198, 47.383704], [8.584465, 47.383911], [8.584829, 47.384367], [8.584969, 47.384517], [8.585123, 47.384661], [8.58529, 47.384797], [8.585618, 47.385042], [8.585936, 47.385486], [8.586057, 47.38565], [8.586101, 47.38572], [8.586134, 47.385792], [8.586157, 47.385865], [8.586169, 47.38594], [8.586142, 47.386355], [8.586056, 47.386902], [8.586018, 47.387189], [8.586016, 47.387217], [8.586018, 47.387244], [8.586025, 47.387272], [8.586035, 47.387298], [8.586097, 47.387435], [8.586187, 47.387613], [8.586327, 47.387864], [8.586332, 47.387871], [8.586338, 47.387878], [8.586344, 47.387885], [8.586351, 47.387891], [8.586359, 47.387897], [8.586367, 47.387902], [8.586377, 47.387907], [8.586386, 47.387912], [8.586397, 47.387915], [8.586407, 47.387918]]], "type": "MultiLineString"}, "id": "2451", "properties": {}, "type": "Feature"}, {"bbox": [8.461232, 47.382058, 8.466976, 47.385121], "geometry": {"coordinates": [[[8.466976, 47.385121], [8.466794, 47.385097], [8.466692, 47.385087], [8.46659, 47.385083], [8.466488, 47.385084], [8.46624, 47.385096], [8.466001, 47.385107], [8.465961, 47.385107], [8.46592, 47.385106], [8.46588, 47.385102], [8.46584, 47.385095], [8.465801, 47.385086], [8.465764, 47.385076], [8.465728, 47.385062], [8.465694, 47.385047], [8.464861, 47.384643], [8.464299, 47.38437], [8.463785, 47.384136], [8.463723, 47.384105], [8.463678, 47.384082], [8.46341, 47.383946], [8.463296, 47.383883], [8.463191, 47.383814], [8.463095, 47.383739], [8.462834, 47.383517], [8.462439, 47.383156], [8.461303, 47.382122], [8.461232, 47.382058]]], "type": "MultiLineString"}, "id": "2452", "properties": {}, "type": "Feature"}, {"bbox": [8.552066, 47.369868, 8.552346, 47.370217], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552264, 47.369979], [8.552346, 47.370159], [8.552066, 47.370217]]], "type": "MultiLineString"}, "id": "2457", "properties": {}, "type": "Feature"}, {"bbox": [8.574671, 47.363017, 8.582411, 47.367071], "geometry": {"coordinates": [[[8.574693, 47.363659], [8.574671, 47.363799], [8.574794, 47.363973], [8.574889, 47.364081], [8.574998, 47.364183], [8.575119, 47.364279], [8.575252, 47.364366], [8.575396, 47.364446], [8.57555, 47.364516], [8.576011, 47.364711], [8.576123, 47.364753], [8.57624, 47.364789], [8.576362, 47.364817], [8.576487, 47.364837], [8.576614, 47.364849], [8.577112, 47.364879], [8.577211, 47.364884], [8.577311, 47.364882], [8.577411, 47.364875], [8.577509, 47.364863], [8.577605, 47.364844], [8.577699, 47.36482], [8.577776, 47.364787], [8.577858, 47.364759], [8.577942, 47.364735], [8.578029, 47.364716], [8.578119, 47.364702], [8.578209, 47.364693], [8.578509, 47.364661], [8.578809, 47.364628], [8.57911, 47.364596], [8.579153, 47.364591], [8.579196, 47.364584], [8.579237, 47.364574], [8.579278, 47.364563], [8.579316, 47.364548], [8.579353, 47.364532], [8.579388, 47.364513], [8.57942, 47.364493], [8.579449, 47.364471], [8.579475, 47.364447], [8.579547, 47.364367], [8.579593, 47.364286], [8.579628, 47.364202], [8.579653, 47.364117], [8.579666, 47.36403], [8.579667, 47.363943], [8.579648, 47.363646], [8.579652, 47.363605], [8.579661, 47.363565], [8.579675, 47.363525], [8.579694, 47.363486], [8.579718, 47.363449], [8.579747, 47.363413], [8.579781, 47.363379], [8.579819, 47.363348], [8.579861, 47.363318], [8.579949, 47.363272], [8.580042, 47.363232], [8.580141, 47.363198], [8.580244, 47.363171], [8.580351, 47.36315], [8.580459, 47.363136], [8.580572, 47.363121], [8.580685, 47.363107], [8.580798, 47.363094], [8.581065, 47.363066], [8.581332, 47.363042], [8.5816, 47.36302], [8.581694, 47.363017], [8.581788, 47.363019], [8.581882, 47.363027], [8.581974, 47.363041], [8.582064, 47.363061], [8.582151, 47.363087], [8.582185, 47.3631], [8.582218, 47.363115], [8.582248, 47.363132], [8.582276, 47.363151], [8.582301, 47.363171], [8.582323, 47.363192], [8.582344, 47.363214], [8.582364, 47.363236], [8.582378, 47.363254], [8.58239, 47.363274], [8.582399, 47.363293], [8.582406, 47.363314], [8.58241, 47.363335], [8.582411, 47.363355], [8.58241, 47.363376], [8.582401, 47.363415], [8.582386, 47.363453], [8.582366, 47.36349], [8.582288, 47.363574], [8.582252, 47.363611], [8.582217, 47.363648], [8.582182, 47.363685], [8.582094, 47.36378], [8.582004, 47.363875], [8.581913, 47.363969], [8.581874, 47.364009], [8.581838, 47.36405], [8.581804, 47.364092], [8.581779, 47.364126], [8.581756, 47.364162], [8.581735, 47.364198], [8.581719, 47.364225], [8.581704, 47.364253], [8.581691, 47.36428], [8.581685, 47.364293], [8.581671, 47.364324], [8.581659, 47.364356], [8.581649, 47.364388], [8.581617, 47.364491], [8.581591, 47.364596], [8.581573, 47.364701], [8.581564, 47.364808], [8.581459, 47.365132], [8.581408, 47.365264], [8.58134, 47.365393], [8.581257, 47.365518], [8.581158, 47.365637], [8.581045, 47.36575], [8.580918, 47.365856], [8.580778, 47.365954], [8.580612, 47.366071], [8.580481, 47.366167], [8.580351, 47.366263], [8.580224, 47.366361], [8.580005, 47.366543], [8.57979, 47.366727], [8.579579, 47.366912], [8.579405, 47.367071]]], "type": "MultiLineString"}, "id": "2458", "properties": {}, "type": "Feature"}, {"bbox": [8.578019, 47.381118, 8.581266, 47.383403], "geometry": {"coordinates": [[[8.578019, 47.382518], [8.578711, 47.382516], [8.578818, 47.382519], [8.578925, 47.38253], [8.579029, 47.382547], [8.579131, 47.38257], [8.579229, 47.3826], [8.579683, 47.382759], [8.579791, 47.382801], [8.579893, 47.38285], [8.579987, 47.382905], [8.580206, 47.383045], [8.580254, 47.383074], [8.580305, 47.3831], [8.58036, 47.383123], [8.580421, 47.383147], [8.58048, 47.383172], [8.580537, 47.383199], [8.580695, 47.383277], [8.580738, 47.383299], [8.580778, 47.383324], [8.580815, 47.383351], [8.580829, 47.383361], [8.580845, 47.38337], [8.580861, 47.383378], [8.580878, 47.383385], [8.580897, 47.383391], [8.580916, 47.383395], [8.580935, 47.383399], [8.580955, 47.383401], [8.580975, 47.383403], [8.580995, 47.383403], [8.581016, 47.383401], [8.581035, 47.383399], [8.581055, 47.383395], [8.581074, 47.383391], [8.581092, 47.383385], [8.581109, 47.383378], [8.581126, 47.38337], [8.581141, 47.383361], [8.581155, 47.383351], [8.581168, 47.383341], [8.581178, 47.38333], [8.581188, 47.383318], [8.581196, 47.383306], [8.581202, 47.383293], [8.581206, 47.38328], [8.581209, 47.383267], [8.58121, 47.383254], [8.58121, 47.383241], [8.581208, 47.383228], [8.581204, 47.383215], [8.581198, 47.383202], [8.581191, 47.38319], [8.581182, 47.383178], [8.581171, 47.383167], [8.58116, 47.383156], [8.581147, 47.383147], [8.581132, 47.383138], [8.581117, 47.38313], [8.5811, 47.383122], [8.58101, 47.383083], [8.580924, 47.383039], [8.580845, 47.382989], [8.580773, 47.382936], [8.580708, 47.382878], [8.580701, 47.38287], [8.580695, 47.382862], [8.58069, 47.382854], [8.580686, 47.382846], [8.580684, 47.382838], [8.580682, 47.382829], [8.580681, 47.38282], [8.580682, 47.382811], [8.580684, 47.382803], [8.580687, 47.382794], [8.580691, 47.382786], [8.580696, 47.382778], [8.580702, 47.38277], [8.580708, 47.382763], [8.580716, 47.382756], [8.580725, 47.38275], [8.580735, 47.382744], [8.580745, 47.382738], [8.580756, 47.382734], [8.580767, 47.38273], [8.580779, 47.382727], [8.580791, 47.382724], [8.580804, 47.382722], [8.581102, 47.382688], [8.581119, 47.382685], [8.581135, 47.382682], [8.581151, 47.382677], [8.581167, 47.382672], [8.581182, 47.382665], [8.581196, 47.382658], [8.581208, 47.38265], [8.58122, 47.382641], [8.581231, 47.382632], [8.58124, 47.382622], [8.581248, 47.382611], [8.581255, 47.3826], [8.58126, 47.382589], [8.581263, 47.382577], [8.581266, 47.382565], [8.581266, 47.382554], [8.581261, 47.382257], [8.581255, 47.38218], [8.58124, 47.382104], [8.581215, 47.38203], [8.581199, 47.381991], [8.58118, 47.381953], [8.581159, 47.381916], [8.581033, 47.381706], [8.580991, 47.381631], [8.580954, 47.381554], [8.580923, 47.381476], [8.58083, 47.381223], [8.58085, 47.381118]]], "type": "MultiLineString"}, "id": "2459", "properties": {}, "type": "Feature"}, {"bbox": [8.525438, 47.387496, 8.526542, 47.388148], "geometry": {"coordinates": [[[8.526542, 47.388148], [8.526449, 47.388076], [8.526197, 47.387895], [8.525922, 47.38773], [8.525627, 47.387582], [8.525438, 47.387496]]], "type": "MultiLineString"}, "id": "2460", "properties": {}, "type": "Feature"}, {"bbox": [8.550421, 47.40214, 8.552211, 47.402541], "geometry": {"coordinates": [[[8.552211, 47.40214], [8.552115, 47.402174], [8.551611, 47.402299], [8.551003, 47.402444], [8.550571, 47.402514], [8.550421, 47.402541]]], "type": "MultiLineString"}, "id": "2461", "properties": {}, "type": "Feature"}, {"bbox": [8.503428, 47.352633, 8.508284, 47.353867], "geometry": {"coordinates": [[[8.508284, 47.353867], [8.508227, 47.353852], [8.507017, 47.353602], [8.506374, 47.353449], [8.506087, 47.353406], [8.505653, 47.353342], [8.505204, 47.353279], [8.504772, 47.353171], [8.50403, 47.35297], [8.503889, 47.352919], [8.503626, 47.352763], [8.503428, 47.352633]]], "type": "MultiLineString"}, "id": "2464", "properties": {}, "type": "Feature"}, {"bbox": [8.525853, 47.375548, 8.526856, 47.376523], "geometry": {"coordinates": [[[8.526852, 47.375548], [8.526856, 47.375739], [8.526841, 47.37574], [8.526827, 47.375742], [8.526813, 47.375745], [8.5268, 47.375749], [8.526787, 47.375753], [8.526774, 47.375759], [8.526763, 47.375765], [8.526752, 47.375772], [8.526743, 47.375779], [8.526734, 47.375787], [8.52636, 47.376132], [8.526302, 47.376194], [8.526237, 47.376253], [8.526164, 47.376309], [8.526086, 47.37636], [8.526001, 47.376406], [8.525911, 47.376447], [8.525903, 47.37645], [8.525895, 47.376453], [8.525889, 47.376457], [8.525882, 47.376461], [8.525876, 47.376465], [8.525871, 47.37647], [8.525866, 47.376475], [8.525862, 47.376481], [8.525859, 47.376486], [8.525856, 47.376492], [8.525854, 47.376498], [8.525853, 47.376504], [8.525853, 47.37651], [8.525853, 47.376516], [8.525854, 47.376522], [8.525902, 47.376505], [8.526355, 47.37635], [8.526451, 47.376341], [8.526544, 47.376387], [8.526576, 47.376418], [8.526752, 47.376523]]], "type": "MultiLineString"}, "id": "2487", "properties": {}, "type": "Feature"}, {"bbox": [8.538258, 47.372317, 8.538331, 47.373903], "geometry": {"coordinates": [[[8.538331, 47.372317], [8.538306, 47.372411], [8.538294, 47.372712], [8.538278, 47.373107], [8.538263, 47.373479], [8.538258, 47.373722], [8.538269, 47.373784], [8.53829, 47.373844], [8.53832, 47.373903]]], "type": "MultiLineString"}, "id": "2490", "properties": {}, "type": "Feature"}, {"bbox": [8.489473, 47.416769, 8.491315, 47.419864], "geometry": {"coordinates": [[[8.489473, 47.416769], [8.489575, 47.416807], [8.489961, 47.417064], [8.489984, 47.417082], [8.49008, 47.41716], [8.490091, 47.417168], [8.490101, 47.417177], [8.490111, 47.417186], [8.490119, 47.417196], [8.490126, 47.417206], [8.490135, 47.417228], [8.49016, 47.417296], [8.490194, 47.417361], [8.490237, 47.417423], [8.490397, 47.417628], [8.490453, 47.417706], [8.490499, 47.417786], [8.490536, 47.417869], [8.490564, 47.417954], [8.490615, 47.418145], [8.490631, 47.418196], [8.490651, 47.418247], [8.490675, 47.418298], [8.49075, 47.41844], [8.490762, 47.418467], [8.490773, 47.418494], [8.490781, 47.418521], [8.490794, 47.418563], [8.49081, 47.418605], [8.490829, 47.418646], [8.490912, 47.418807], [8.490924, 47.418834], [8.490934, 47.418861], [8.490942, 47.418888], [8.490946, 47.418903], [8.490948, 47.418918], [8.49095, 47.418933], [8.490952, 47.418955], [8.490952, 47.418976], [8.49095, 47.418997], [8.490935, 47.419164], [8.490934, 47.419204], [8.490938, 47.419244], [8.490948, 47.419284], [8.490962, 47.419323], [8.490981, 47.41936], [8.491005, 47.419397], [8.491034, 47.419432], [8.491258, 47.419681], [8.491273, 47.419699], [8.491286, 47.419719], [8.491296, 47.41974], [8.491303, 47.41976], [8.491315, 47.419864]]], "type": "MultiLineString"}, "id": "2495", "properties": {}, "type": "Feature"}, {"bbox": [8.54934, 47.387721, 8.549508, 47.388391], "geometry": {"coordinates": [[[8.54934, 47.387721], [8.549352, 47.387784], [8.549371, 47.387951], [8.549377, 47.388], [8.549382, 47.388039], [8.549389, 47.388095], [8.549416, 47.388324], [8.549452, 47.388382], [8.549508, 47.388391]]], "type": "MultiLineString"}, "id": "2506", "properties": {}, "type": "Feature"}, {"bbox": [8.547143, 47.365792, 8.547858, 47.366395], "geometry": {"coordinates": [[[8.547492, 47.365829], [8.547418, 47.365803], [8.547402, 47.365799], [8.547385, 47.365796], [8.547368, 47.365793], [8.547351, 47.365792], [8.547334, 47.365792], [8.547317, 47.365793], [8.5473, 47.365795], [8.547283, 47.365798], [8.547266, 47.365802], [8.547251, 47.365806], [8.547236, 47.365812], [8.547221, 47.365819], [8.547208, 47.365826], [8.547196, 47.365835], [8.547184, 47.365844], [8.547174, 47.365853], [8.547166, 47.365863], [8.547158, 47.365874], [8.547152, 47.365885], [8.547148, 47.365896], [8.547145, 47.365908], [8.547143, 47.36592], [8.547143, 47.365931], [8.547145, 47.365943], [8.547148, 47.365955], [8.547152, 47.365966], [8.547158, 47.365977], [8.547165, 47.365988], [8.547174, 47.365998], [8.547184, 47.366008], [8.547195, 47.366017], [8.547208, 47.366025], [8.547547, 47.366226], [8.547858, 47.366395]]], "type": "MultiLineString"}, "id": "2507", "properties": {}, "type": "Feature"}, {"bbox": [8.579431, 47.356941, 8.580022, 47.357005], "geometry": {"coordinates": [[[8.579431, 47.356941], [8.579481, 47.356951], [8.579535, 47.356959], [8.57959, 47.356964], [8.579646, 47.356966], [8.579687, 47.356968], [8.579729, 47.356972], [8.579769, 47.356977], [8.579814, 47.356982], [8.579859, 47.356986], [8.579904, 47.356991], [8.579944, 47.356996], [8.579983, 47.357001], [8.580022, 47.357005]]], "type": "MultiLineString"}, "id": "2508", "properties": {}, "type": "Feature"}, {"bbox": [8.495786, 47.366101, 8.497152, 47.367528], "geometry": {"coordinates": [[[8.495786, 47.367528], [8.495835, 47.367507], [8.495881, 47.367483], [8.495923, 47.367457], [8.495962, 47.367428], [8.495997, 47.367396], [8.497031, 47.366311], [8.497152, 47.366205], [8.497117, 47.366183], [8.497079, 47.366164], [8.497039, 47.366147], [8.496997, 47.366133], [8.496953, 47.366121], [8.496907, 47.366112], [8.496861, 47.366105], [8.496814, 47.366102], [8.496767, 47.366101], [8.49672, 47.366103], [8.496673, 47.366108], [8.496627, 47.366115], [8.496582, 47.366126], [8.496539, 47.366139], [8.496497, 47.366154], [8.496458, 47.366172], [8.497031, 47.366311]]], "type": "MultiLineString"}, "id": "2509", "properties": {}, "type": "Feature"}, {"bbox": [8.50379, 47.352248, 8.50659, 47.355509], "geometry": {"coordinates": [[[8.50659, 47.352248], [8.506523, 47.352338], [8.506398, 47.352656], [8.506087, 47.353406], [8.505854, 47.353949], [8.505147, 47.354133], [8.504945, 47.354337], [8.50379, 47.355509]]], "type": "MultiLineString"}, "id": "2512", "properties": {}, "type": "Feature"}, {"bbox": [8.53841, 47.375385, 8.539151, 47.375859], "geometry": {"coordinates": [[[8.5386, 47.375859], [8.539098, 47.37573], [8.538998, 47.37555]], [[8.539151, 47.375516], [8.538998, 47.37555], [8.538912, 47.375385], [8.53841, 47.3755], [8.5386, 47.375859]]], "type": "MultiLineString"}, "id": "2513", "properties": {}, "type": "Feature"}, {"bbox": [8.506865, 47.42678, 8.507341, 47.426875], "geometry": {"coordinates": [[[8.506865, 47.42678], [8.507341, 47.426875]]], "type": "MultiLineString"}, "id": "2514", "properties": {}, "type": "Feature"}, {"bbox": [8.49546, 47.396514, 8.495743, 47.396834], "geometry": {"coordinates": [[[8.495743, 47.396834], [8.49546, 47.396514]]], "type": "MultiLineString"}, "id": "2519", "properties": {}, "type": "Feature"}, {"bbox": [8.545913, 47.371553, 8.54689, 47.372954], "geometry": {"coordinates": [[[8.545913, 47.371553], [8.54611, 47.371746], [8.546141, 47.371776], [8.546169, 47.371808], [8.546192, 47.371841], [8.546211, 47.371875], [8.546226, 47.37191], [8.546236, 47.371946], [8.546242, 47.372001], [8.546255, 47.372056], [8.546273, 47.37211], [8.546304, 47.372155], [8.546443, 47.372275], [8.546691, 47.372441], [8.546823, 47.372521], [8.54689, 47.372572], [8.546791, 47.372954]]], "type": "MultiLineString"}, "id": "2520", "properties": {}, "type": "Feature"}, {"bbox": [8.562035, 47.39621, 8.563153, 47.399569], "geometry": {"coordinates": [[[8.562035, 47.39621], [8.56215, 47.396456], [8.562155, 47.396468], [8.562161, 47.39648], [8.562166, 47.396492], [8.562169, 47.396501], [8.562188, 47.396565], [8.5622, 47.396631], [8.562203, 47.396697], [8.562199, 47.396763], [8.562186, 47.396828], [8.562165, 47.396893], [8.562136, 47.396956], [8.562096, 47.39703], [8.56208, 47.397065], [8.562069, 47.3971], [8.562063, 47.397136], [8.562062, 47.397172], [8.562066, 47.397208], [8.562122, 47.397527], [8.562136, 47.397591], [8.562156, 47.397654], [8.562181, 47.397717], [8.562221, 47.397805], [8.562246, 47.397859], [8.562293, 47.397956], [8.562393, 47.398139], [8.562503, 47.39832], [8.562621, 47.398498], [8.562621, 47.398498], [8.562621, 47.398498], [8.56275, 47.398734], [8.562875, 47.39897], [8.562997, 47.399208], [8.562997, 47.399208], [8.562997, 47.399208], [8.563052, 47.399319], [8.563101, 47.39943], [8.563144, 47.399543], [8.563153, 47.399569]]], "type": "MultiLineString"}, "id": "2521", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.359395, 8.523061, 47.360019], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522962, 47.359852], [8.522968, 47.35982], [8.522986, 47.359648], [8.522989, 47.359632], [8.523046, 47.359464], [8.523061, 47.359395]]], "type": "MultiLineString"}, "id": "2522", "properties": {}, "type": "Feature"}, {"bbox": [8.522394, 47.359254, 8.52328, 47.359852], "geometry": {"coordinates": [[[8.52328, 47.359416], [8.523061, 47.359395], [8.523072, 47.359334], [8.522982, 47.359325], [8.522947, 47.359321], [8.522876, 47.359314], [8.522425, 47.359268], [8.522421, 47.359267], [8.522418, 47.359267], [8.522414, 47.359266], [8.522411, 47.359264], [8.522408, 47.359263], [8.522405, 47.359262], [8.522402, 47.35926], [8.522399, 47.359258], [8.522397, 47.359256], [8.522395, 47.359254], [8.522394, 47.359254], [8.522513, 47.359395], [8.522577, 47.359464], [8.522614, 47.359501], [8.522898, 47.359797], [8.522962, 47.359852]]], "type": "MultiLineString"}, "id": "2523", "properties": {}, "type": "Feature"}, {"bbox": [8.517598, 47.402677, 8.519816, 47.406001], "geometry": {"coordinates": [[[8.518024, 47.402677], [8.517981, 47.402766], [8.517818, 47.402955], [8.517696, 47.403094], [8.517668, 47.403125], [8.517645, 47.403158], [8.517626, 47.403192], [8.517612, 47.403227], [8.517603, 47.403262], [8.517598, 47.403299], [8.517598, 47.403335], [8.517603, 47.403371], [8.517612, 47.403407], [8.517656, 47.403618], [8.517678, 47.40366], [8.517704, 47.4037], [8.517735, 47.403738], [8.517771, 47.403775], [8.51781, 47.403809], [8.517923, 47.403884], [8.517931, 47.40389], [8.517938, 47.403898], [8.517943, 47.403905], [8.517948, 47.403913], [8.517952, 47.403921], [8.517955, 47.40393], [8.517956, 47.403938], [8.517957, 47.403947], [8.517957, 47.403955], [8.517955, 47.403964], [8.517952, 47.403972], [8.517949, 47.40398], [8.517944, 47.403988], [8.517939, 47.403996], [8.517932, 47.404003], [8.517925, 47.40401], [8.517916, 47.404016], [8.517907, 47.404022], [8.517897, 47.404028], [8.517692, 47.404139], [8.517679, 47.404146], [8.517667, 47.404153], [8.517657, 47.404162], [8.517647, 47.40417], [8.517639, 47.40418], [8.517632, 47.40419], [8.517626, 47.4042], [8.517622, 47.40421], [8.517619, 47.404221], [8.517617, 47.404232], [8.517617, 47.404243], [8.517619, 47.404254], [8.517621, 47.404264], [8.517626, 47.404275], [8.517631, 47.404285], [8.517638, 47.404295], [8.517646, 47.404304], [8.517656, 47.404313], [8.517666, 47.404322], [8.517678, 47.404329], [8.518024, 47.404606], [8.518471, 47.404914], [8.519075, 47.405322], [8.519781, 47.405802], [8.519787, 47.405807], [8.519794, 47.405812], [8.519799, 47.405817], [8.519804, 47.405823], [8.519808, 47.405829], [8.519811, 47.405835], [8.519813, 47.405841], [8.519815, 47.405847], [8.519816, 47.405854], [8.519816, 47.40586], [8.519815, 47.405867], [8.519813, 47.405873], [8.519811, 47.405879], [8.519807, 47.405885], [8.519803, 47.405891], [8.519799, 47.405897], [8.519793, 47.405902], [8.519787, 47.405907], [8.51978, 47.405912], [8.519773, 47.405916], [8.519765, 47.405919], [8.519649, 47.406001]]], "type": "MultiLineString"}, "id": "2537", "properties": {}, "type": "Feature"}, {"bbox": [8.51258, 47.382072, 8.51362, 47.382807], "geometry": {"coordinates": [[[8.51362, 47.382807], [8.513498, 47.382723], [8.513138, 47.382641], [8.51258, 47.382072]]], "type": "MultiLineString"}, "id": "2538", "properties": {}, "type": "Feature"}, {"bbox": [8.460902, 47.385096, 8.46624, 47.387088], "geometry": {"coordinates": [[[8.46624, 47.385096], [8.466096, 47.385138], [8.46593, 47.38518], [8.465765, 47.385223], [8.4656, 47.385265], [8.465445, 47.385305], [8.465288, 47.385342], [8.465131, 47.385378], [8.46505, 47.385396], [8.46497, 47.385415], [8.46489, 47.385435], [8.464661, 47.385493], [8.464432, 47.38555], [8.464203, 47.385607], [8.464156, 47.385619], [8.464109, 47.385633], [8.464064, 47.385648], [8.46393, 47.385694], [8.463797, 47.38574], [8.463662, 47.385784], [8.463483, 47.385844], [8.463306, 47.385904], [8.463129, 47.385966], [8.463022, 47.386006], [8.462917, 47.386049], [8.462814, 47.386094], [8.46275, 47.386123], [8.462686, 47.386153], [8.462623, 47.386183], [8.462569, 47.386209], [8.462515, 47.386235], [8.462462, 47.386261], [8.462352, 47.386317], [8.462243, 47.386375], [8.462136, 47.386433], [8.462051, 47.386481], [8.461966, 47.386528], [8.461881, 47.386575], [8.461829, 47.386603], [8.461776, 47.386631], [8.461722, 47.386658], [8.461701, 47.38667], [8.461681, 47.386682], [8.461662, 47.386695], [8.461636, 47.386713], [8.461608, 47.38673], [8.461578, 47.386746], [8.46153, 47.386769], [8.461482, 47.386792], [8.461434, 47.386815], [8.461381, 47.38684], [8.461327, 47.386866], [8.461274, 47.386892], [8.461224, 47.386918], [8.461174, 47.386945], [8.461127, 47.386974], [8.461093, 47.386994], [8.461057, 47.387012], [8.461019, 47.387028], [8.460999, 47.387037], [8.460979, 47.387045], [8.46096, 47.387054], [8.460944, 47.387062], [8.460928, 47.387071], [8.460914, 47.387081], [8.460902, 47.387088]]], "type": "MultiLineString"}, "id": "2539", "properties": {}, "type": "Feature"}, {"bbox": [8.479926, 47.41524, 8.480733, 47.416621], "geometry": {"coordinates": [[[8.479926, 47.41524], [8.480004, 47.415279], [8.480126, 47.415408], [8.480136, 47.41554], [8.480142, 47.415877], [8.480228, 47.415939], [8.480421, 47.41594], [8.480489, 47.415947], [8.480514, 47.415973], [8.480566, 47.415983], [8.480698, 47.415981], [8.480698, 47.415992], [8.480731, 47.416142], [8.480733, 47.416324], [8.480654, 47.416338], [8.480497, 47.41634], [8.480238, 47.416342], [8.480198, 47.416344], [8.480154, 47.416376], [8.480156, 47.416563], [8.480157, 47.416621]]], "type": "MultiLineString"}, "id": "2540", "properties": {}, "type": "Feature"}, {"bbox": [8.506068, 47.426006, 8.507283, 47.426156], "geometry": {"coordinates": [[[8.507283, 47.426156], [8.507242, 47.426139], [8.5072, 47.426123], [8.507155, 47.426111], [8.507109, 47.426101], [8.507062, 47.426094], [8.507014, 47.42609], [8.50666, 47.426069], [8.506559, 47.426073], [8.506458, 47.426071], [8.506358, 47.426063], [8.506259, 47.426049], [8.506162, 47.42603], [8.506068, 47.426006]]], "type": "MultiLineString"}, "id": "2541", "properties": {}, "type": "Feature"}, {"bbox": [8.498145, 47.358299, 8.503659, 47.359965], "geometry": {"coordinates": [[[8.503659, 47.359965], [8.503516, 47.359904], [8.502821, 47.35963], [8.502001, 47.35933], [8.501244, 47.358923], [8.501094, 47.358857], [8.501022, 47.35884], [8.500028, 47.358386], [8.499943, 47.35846], [8.498227, 47.358342], [8.498145, 47.358299]]], "type": "MultiLineString"}, "id": "2542", "properties": {}, "type": "Feature"}, {"bbox": [8.504978, 47.405203, 8.50611, 47.40651], "geometry": {"coordinates": [[[8.504978, 47.405203], [8.50507, 47.40529], [8.505164, 47.405377], [8.50526, 47.405462], [8.505403, 47.405587], [8.505529, 47.40572], [8.505639, 47.40586], [8.50611, 47.40651]]], "type": "MultiLineString"}, "id": "2548", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.361758, 8.522128, 47.362588], "geometry": {"coordinates": [[[8.521491, 47.361785], [8.521457, 47.361768], [8.521253, 47.361764], [8.521, 47.361758], [8.521271, 47.361969], [8.521389, 47.361901], [8.521566, 47.36204], [8.52174, 47.362178], [8.521915, 47.362316], [8.521797, 47.362385], [8.521929, 47.362486], [8.522061, 47.362588], [8.522021, 47.362442], [8.52203, 47.362408], [8.52211, 47.362103], [8.522128, 47.361927], [8.522055, 47.361935], [8.521982, 47.361943], [8.521882, 47.361968], [8.521626, 47.361848], [8.521525, 47.361801], [8.521491, 47.361785]]], "type": "MultiLineString"}, "id": "2549", "properties": {}, "type": "Feature"}, {"bbox": [8.515346, 47.386138, 8.515621, 47.38618], "geometry": {"coordinates": [[[8.515621, 47.38618], [8.51553, 47.386165], [8.515438, 47.386151], [8.515346, 47.386138]]], "type": "MultiLineString"}, "id": "2552", "properties": {}, "type": "Feature"}, {"bbox": [8.54468, 47.373527, 8.545108, 47.374247], "geometry": {"coordinates": [[[8.545108, 47.373527], [8.544951, 47.373728], [8.544772, 47.373953], [8.544747, 47.373983], [8.544726, 47.374013], [8.544708, 47.374045], [8.544695, 47.374078], [8.544686, 47.374112], [8.544681, 47.374145], [8.54468, 47.374179], [8.544683, 47.374213], [8.544691, 47.374247]]], "type": "MultiLineString"}, "id": "2553", "properties": {}, "type": "Feature"}, {"bbox": [8.540064, 47.369297, 8.540349, 47.369431], "geometry": {"coordinates": [[[8.540064, 47.369399], [8.540313, 47.369431], [8.540349, 47.369297]]], "type": "MultiLineString"}, "id": "2554", "properties": {}, "type": "Feature"}, {"bbox": [8.539885, 47.368912, 8.540226, 47.369249], "geometry": {"coordinates": [[[8.540226, 47.368912], [8.540207, 47.368963], [8.540156, 47.369131], [8.539937, 47.3691], [8.539885, 47.369249]]], "type": "MultiLineString"}, "id": "2555", "properties": {}, "type": "Feature"}, {"bbox": [8.516519, 47.373651, 8.517209, 47.374197], "geometry": {"coordinates": [[[8.517209, 47.373651], [8.517071, 47.37368], [8.516519, 47.374132], [8.516531, 47.374197]]], "type": "MultiLineString"}, "id": "2556", "properties": {}, "type": "Feature"}, {"bbox": [8.485576, 47.387068, 8.485613, 47.387179], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.485576, 47.387068]]], "type": "MultiLineString"}, "id": "2558", "properties": {}, "type": "Feature"}, {"bbox": [8.54352, 47.381913, 8.544333, 47.382079], "geometry": {"coordinates": [[[8.54352, 47.381913], [8.543574, 47.381924], [8.54371, 47.381955], [8.544333, 47.382079]]], "type": "MultiLineString"}, "id": "2567", "properties": {}, "type": "Feature"}, {"bbox": [8.496928, 47.404907, 8.497362, 47.405031], "geometry": {"coordinates": [[[8.496928, 47.404907], [8.497103, 47.404961], [8.497212, 47.404953], [8.49731, 47.405028], [8.497362, 47.405031]]], "type": "MultiLineString"}, "id": "2568", "properties": {}, "type": "Feature"}, {"bbox": [8.490537, 47.401227, 8.490778, 47.402218], "geometry": {"coordinates": [[[8.490632, 47.401227], [8.490685, 47.401296], [8.490564, 47.401355], [8.490673, 47.401589], [8.490778, 47.401852], [8.490537, 47.401912], [8.490618, 47.402162], [8.490667, 47.402218]]], "type": "MultiLineString"}, "id": "2569", "properties": {}, "type": "Feature"}, {"bbox": [8.52616, 47.36416, 8.526681, 47.365493], "geometry": {"coordinates": [[[8.526681, 47.365485], [8.526559, 47.365493], [8.526414, 47.36532], [8.526323, 47.365201], [8.526285, 47.365139], [8.526255, 47.365075], [8.526233, 47.365009], [8.526218, 47.364943], [8.526208, 47.364876], [8.526202, 47.364808], [8.526201, 47.364741], [8.526208, 47.364641], [8.52616, 47.364637], [8.526219, 47.364388], [8.526252, 47.36416]]], "type": "MultiLineString"}, "id": "2570", "properties": {}, "type": "Feature"}, {"bbox": [8.52678, 47.326855, 8.529565, 47.330061], "geometry": {"coordinates": [[[8.52678, 47.330061], [8.526805, 47.330038], [8.526823, 47.329932], [8.52683, 47.329755], [8.526843, 47.329441], [8.526845, 47.329188], [8.526854, 47.328943], [8.526855, 47.328899], [8.526856, 47.328838], [8.526856, 47.328794], [8.526858, 47.328675], [8.526863, 47.328386], [8.52687, 47.328244], [8.526872, 47.32818], [8.526873, 47.328136], [8.526874, 47.328084], [8.526869, 47.327839], [8.526869, 47.327551], [8.526869, 47.327459], [8.526868, 47.327373], [8.526866, 47.327162], [8.526865, 47.327085], [8.526905, 47.327006], [8.526987, 47.326963], [8.527346, 47.326909], [8.527699, 47.326863], [8.527935, 47.326855], [8.528138, 47.326865], [8.528199, 47.326873], [8.528562, 47.326934], [8.528879, 47.326986], [8.528998, 47.326991], [8.529134, 47.326957], [8.529196, 47.326941], [8.529417, 47.326885], [8.529565, 47.326865]]], "type": "MultiLineString"}, "id": "2571", "properties": {}, "type": "Feature"}, {"bbox": [8.525058, 47.420366, 8.531052, 47.42382], "geometry": {"coordinates": [[[8.529767, 47.420366], [8.529749, 47.420528], [8.529749, 47.420621], [8.529767, 47.420767], [8.529798, 47.420866], [8.529847, 47.420947], [8.529915, 47.421016], [8.530004, 47.421083], [8.530215, 47.42122], [8.530386, 47.421323], [8.530544, 47.421415], [8.530718, 47.421531], [8.530837, 47.421651], [8.531052, 47.421916], [8.530754, 47.422072], [8.529437, 47.422525], [8.529132, 47.42267], [8.528753, 47.422938], [8.526907, 47.423316], [8.526331, 47.423491], [8.525177, 47.423721], [8.525164, 47.423724], [8.525151, 47.423727], [8.525139, 47.423731], [8.525128, 47.423736], [8.525117, 47.423741], [8.525107, 47.423747], [8.525097, 47.423754], [8.525089, 47.423761], [8.525081, 47.423768], [8.525075, 47.423776], [8.525069, 47.423784], [8.525065, 47.423793], [8.525061, 47.423802], [8.525059, 47.423811], [8.525058, 47.42382]]], "type": "MultiLineString"}, "id": "2574", "properties": {}, "type": "Feature"}, {"bbox": [8.539326, 47.369939, 8.539762, 47.370274], "geometry": {"coordinates": [[[8.539534, 47.370274], [8.539574, 47.370237], [8.539685, 47.370116], [8.53972, 47.370084], [8.539762, 47.370045], [8.539419, 47.369939], [8.539326, 47.370107]]], "type": "MultiLineString"}, "id": "2577", "properties": {}, "type": "Feature"}, {"bbox": [8.49096, 47.350343, 8.499961, 47.352573], "geometry": {"coordinates": [[[8.499961, 47.352573], [8.499882, 47.352545], [8.499854, 47.352534], [8.499827, 47.352522], [8.499802, 47.352508], [8.499694, 47.352443], [8.499533, 47.352347], [8.499437, 47.352277], [8.499199, 47.352067], [8.499155, 47.352031], [8.499107, 47.351996], [8.499056, 47.351964], [8.498732, 47.351773], [8.498693, 47.351748], [8.498658, 47.351721], [8.498626, 47.351692], [8.498597, 47.351662], [8.498572, 47.35163], [8.498474, 47.351491], [8.498446, 47.351455], [8.498414, 47.351421], [8.498378, 47.351389], [8.498337, 47.351359], [8.498293, 47.351332], [8.498123, 47.351225], [8.498071, 47.35116], [8.497976, 47.35122], [8.497991, 47.351273], [8.497994, 47.351297], [8.497983, 47.351303], [8.497965, 47.351305], [8.497904, 47.351266], [8.497858, 47.351213], [8.497791, 47.351213], [8.497715, 47.351219], [8.497668, 47.351269], [8.497669, 47.351315], [8.497543, 47.35139], [8.497488, 47.351307], [8.497349, 47.351334], [8.497214, 47.351378], [8.497141, 47.351429], [8.496999, 47.351431], [8.496696, 47.35136], [8.496588, 47.351296], [8.496418, 47.351248], [8.496326, 47.351188], [8.496194, 47.351148], [8.49588, 47.35092], [8.495754, 47.350931], [8.495722, 47.350908], [8.495707, 47.350865], [8.495673, 47.350834], [8.49562, 47.350842], [8.49556, 47.350842], [8.495588, 47.350795], [8.495593, 47.350757], [8.495564, 47.350739], [8.495487, 47.35068], [8.495429, 47.350675], [8.495407, 47.350666], [8.495404, 47.35065], [8.495439, 47.350628], [8.495463, 47.350585], [8.495374, 47.350588], [8.495326, 47.35058], [8.495329, 47.350558], [8.495339, 47.350538], [8.495357, 47.350498], [8.495343, 47.350481], [8.495324, 47.350464], [8.495285, 47.350486], [8.495266, 47.350505], [8.495226, 47.350525], [8.495189, 47.350541], [8.495082, 47.350549], [8.495003, 47.350585], [8.494957, 47.350543], [8.494993, 47.350496], [8.495, 47.350453], [8.494976, 47.350444], [8.494948, 47.350417], [8.494928, 47.35041], [8.49491, 47.350416], [8.494875, 47.350439], [8.494841, 47.350438], [8.494833, 47.350406], [8.494755, 47.350431], [8.494743, 47.350417], [8.494724, 47.350424], [8.494708, 47.350389], [8.494668, 47.350417], [8.494656, 47.350449], [8.494618, 47.350411], [8.494615, 47.350357], [8.49454, 47.350372], [8.494491, 47.350416], [8.494476, 47.350385], [8.494453, 47.350369], [8.49442, 47.350387], [8.494397, 47.350391], [8.494293, 47.350432], [8.494298, 47.350417], [8.494298, 47.350395], [8.494148, 47.350382], [8.494113, 47.350366], [8.494083, 47.350374], [8.494038, 47.350394], [8.493986, 47.350401], [8.493934, 47.35042], [8.493889, 47.350389], [8.493864, 47.350396], [8.493848, 47.350418], [8.493764, 47.350462], [8.493677, 47.350571], [8.49371, 47.350657], [8.493696, 47.350706], [8.493673, 47.35072], [8.493615, 47.350725], [8.493545, 47.350722], [8.493344, 47.350709], [8.493233, 47.350714], [8.493039, 47.350871], [8.492913, 47.350832], [8.492958, 47.350905], [8.492926, 47.350885], [8.492893, 47.350877], [8.492815, 47.350892], [8.492786, 47.35083], [8.492751, 47.35083], [8.492733, 47.350791], [8.492676, 47.350824], [8.492663, 47.350785], [8.492624, 47.350798], [8.492623, 47.350774], [8.492607, 47.350783], [8.49259, 47.350759], [8.492574, 47.35076], [8.492543, 47.350731], [8.492504, 47.350761], [8.492473, 47.350695], [8.492421, 47.350738], [8.492397, 47.350675], [8.492332, 47.350715], [8.492296, 47.350618], [8.4922, 47.350663], [8.492196, 47.350587], [8.492148, 47.350571], [8.492127, 47.350601], [8.492105, 47.350656], [8.492031, 47.350608], [8.492027, 47.350588], [8.492002, 47.350598], [8.491892, 47.350577], [8.491927, 47.350553], [8.491894, 47.350526], [8.491811, 47.350569], [8.491764, 47.350562], [8.491709, 47.350537], [8.491699, 47.350507], [8.491725, 47.350458], [8.491725, 47.350443], [8.491682, 47.350457], [8.491652, 47.350409], [8.491619, 47.350418], [8.491597, 47.350438], [8.491495, 47.350439], [8.49128, 47.350463], [8.491212, 47.350477], [8.491164, 47.350465], [8.491126, 47.350502], [8.491099, 47.350505], [8.491076, 47.350458], [8.491056, 47.350343], [8.49096, 47.350349]]], "type": "MultiLineString"}, "id": "2580", "properties": {}, "type": "Feature"}, {"bbox": [8.586698, 47.363011, 8.58934, 47.36541], "geometry": {"coordinates": [[[8.588239, 47.36541], [8.588109, 47.365367], [8.587884, 47.365271], [8.587862, 47.365262], [8.58784, 47.365251], [8.587819, 47.365241], [8.587782, 47.365221], [8.587746, 47.365201], [8.587711, 47.365179], [8.587664, 47.365148], [8.587617, 47.365116], [8.58757, 47.365085], [8.587529, 47.365057], [8.58749, 47.365028], [8.587452, 47.364999], [8.587405, 47.364962], [8.587357, 47.364924], [8.587309, 47.364887], [8.587286, 47.364871], [8.587264, 47.364854], [8.587242, 47.364837], [8.587221, 47.364819], [8.587201, 47.364801], [8.587181, 47.364783], [8.587113, 47.364709], [8.587054, 47.364632], [8.587005, 47.364551], [8.586967, 47.364468], [8.586933, 47.364293], [8.586917, 47.364118], [8.58692, 47.363943], [8.586893, 47.363833], [8.586871, 47.363722], [8.586856, 47.363611], [8.586851, 47.363547], [8.586847, 47.363483], [8.586842, 47.363418], [8.586842, 47.363406], [8.586841, 47.363393], [8.586838, 47.363381], [8.586833, 47.363369], [8.586827, 47.363357], [8.586819, 47.363345], [8.58681, 47.363334], [8.5868, 47.363324], [8.586788, 47.363314], [8.586776, 47.363305], [8.586762, 47.363296], [8.586747, 47.363289], [8.586731, 47.363282], [8.586715, 47.363276], [8.586698, 47.363271], [8.586827, 47.363256], [8.58731, 47.363105], [8.587393, 47.363082], [8.587479, 47.363065], [8.587566, 47.363054], [8.587701, 47.363047], [8.587835, 47.363048], [8.587969, 47.363059], [8.588047, 47.363068], [8.588126, 47.363076], [8.588204, 47.363084], [8.588298, 47.363091], [8.588392, 47.363093], [8.588486, 47.36309], [8.588579, 47.363082], [8.58875, 47.363062], [8.588921, 47.363043], [8.589093, 47.363026], [8.589175, 47.363018], [8.589257, 47.363014], [8.58934, 47.363011]]], "type": "MultiLineString"}, "id": "2581", "properties": {}, "type": "Feature"}, {"bbox": [8.521289, 47.399022, 8.522221, 47.399364], "geometry": {"coordinates": [[[8.521347, 47.399364], [8.521301, 47.399299], [8.521296, 47.399291], [8.521293, 47.399282], [8.52129, 47.399273], [8.521289, 47.399264], [8.521289, 47.399254], [8.52129, 47.399245], [8.521292, 47.399236], [8.521296, 47.399227], [8.521359, 47.39908], [8.521362, 47.399074], [8.521366, 47.399067], [8.52137, 47.399062], [8.521375, 47.399056], [8.521381, 47.399051], [8.521388, 47.399046], [8.521395, 47.399041], [8.521402, 47.399037], [8.521411, 47.399033], [8.521419, 47.39903], [8.521428, 47.399028], [8.521437, 47.399025], [8.521447, 47.399024], [8.521456, 47.399023], [8.521466, 47.399022], [8.521476, 47.399022], [8.521485, 47.399023], [8.521495, 47.399024], [8.521504, 47.399026], [8.521877, 47.399101], [8.521905, 47.399106], [8.521934, 47.399109], [8.521964, 47.399111], [8.521993, 47.399111], [8.522023, 47.399109], [8.522052, 47.399105], [8.52208, 47.3991], [8.522221, 47.399062]]], "type": "MultiLineString"}, "id": "2582", "properties": {}, "type": "Feature"}, {"bbox": [8.53351, 47.332266, 8.538963, 47.336356], "geometry": {"coordinates": [[[8.53351, 47.336356], [8.533712, 47.336296], [8.533998, 47.336163], [8.534025, 47.33615], [8.53405, 47.336136], [8.534073, 47.33612], [8.534094, 47.336103], [8.534094, 47.336103], [8.534094, 47.336103], [8.534163, 47.336045], [8.534231, 47.335986], [8.534297, 47.335927], [8.534352, 47.335868], [8.534379, 47.335822], [8.534461, 47.335662], [8.534562, 47.335497], [8.534831, 47.335205], [8.53495, 47.335083], [8.535084, 47.334969], [8.535235, 47.334865], [8.535235, 47.334865], [8.53559, 47.334643], [8.536046, 47.334493], [8.536176, 47.334449], [8.536299, 47.334398], [8.536414, 47.334339], [8.536521, 47.334273], [8.536618, 47.3342], [8.536757, 47.334086], [8.536907, 47.333978], [8.537066, 47.333877], [8.537524, 47.333559], [8.537578, 47.333519], [8.537627, 47.333476], [8.53767, 47.33343], [8.537708, 47.333382], [8.53774, 47.333332], [8.537765, 47.333281], [8.53779, 47.333236], [8.53782, 47.333192], [8.537856, 47.333151], [8.537896, 47.333111], [8.53794, 47.333074], [8.537989, 47.333039], [8.538042, 47.333008], [8.538481, 47.332701], [8.538636, 47.332553], [8.538797, 47.332408], [8.538963, 47.332266]]], "type": "MultiLineString"}, "id": "2583", "properties": {}, "type": "Feature"}, {"bbox": [8.539851, 47.402311, 8.540212, 47.402677], "geometry": {"coordinates": [[[8.540212, 47.402311], [8.540193, 47.40233], [8.540039, 47.40249], [8.539926, 47.402607], [8.539851, 47.402677]]], "type": "MultiLineString"}, "id": "2584", "properties": {}, "type": "Feature"}, {"bbox": [8.501111, 47.39748, 8.503003, 47.398358], "geometry": {"coordinates": [[[8.501111, 47.397966], [8.501995, 47.39748], [8.502137, 47.397595], [8.502251, 47.397671], [8.502375, 47.397765], [8.502735, 47.398236], [8.502766, 47.39826], [8.502799, 47.398282], [8.502836, 47.398302], [8.502875, 47.39832], [8.502916, 47.398335], [8.502959, 47.398348], [8.503003, 47.398358]]], "type": "MultiLineString"}, "id": "2585", "properties": {}, "type": "Feature"}, {"bbox": [8.484563, 47.416224, 8.48658, 47.42034], "geometry": {"coordinates": [[[8.484563, 47.416224], [8.484572, 47.416277], [8.484647, 47.416346], [8.485032, 47.416758], [8.485302, 47.416975], [8.485363, 47.417025], [8.485437, 47.41708], [8.485997, 47.417512], [8.486041, 47.417549], [8.48608, 47.417588], [8.486114, 47.417628], [8.486143, 47.417671], [8.486167, 47.417715], [8.486185, 47.417761], [8.486338, 47.418209], [8.48658, 47.418777], [8.486458, 47.418866], [8.486486, 47.418935], [8.48649, 47.418974], [8.48649, 47.419014], [8.486486, 47.419054], [8.486477, 47.419092], [8.486464, 47.41913], [8.486446, 47.419166], [8.486425, 47.419202], [8.486228, 47.419492], [8.486199, 47.419531], [8.486165, 47.419569], [8.486128, 47.419604], [8.486086, 47.419638], [8.485173, 47.42032], [8.485146, 47.42034]]], "type": "MultiLineString"}, "id": "2586", "properties": {}, "type": "Feature"}, {"bbox": [8.542714, 47.378469, 8.543206, 47.378975], "geometry": {"coordinates": [[[8.543064, 47.378975], [8.543144, 47.378766], [8.543187, 47.378636], [8.543206, 47.37856], [8.542802, 47.378469], [8.542714, 47.378637]]], "type": "MultiLineString"}, "id": "2587", "properties": {}, "type": "Feature"}, {"bbox": [8.527155, 47.344681, 8.527616, 47.346027], "geometry": {"coordinates": [[[8.527616, 47.346027], [8.527429, 47.34592], [8.527381, 47.345891], [8.527337, 47.345858], [8.527297, 47.345823], [8.527261, 47.345786], [8.52723, 47.345747], [8.527205, 47.345706], [8.527184, 47.345664], [8.527169, 47.345621], [8.527159, 47.345577], [8.527155, 47.345533], [8.527156, 47.345488], [8.527163, 47.345444], [8.527175, 47.345401], [8.527367, 47.344925], [8.527408, 47.344798], [8.527435, 47.344681]]], "type": "MultiLineString"}, "id": "2588", "properties": {}, "type": "Feature"}, {"bbox": [8.548736, 47.366187, 8.549263, 47.366729], "geometry": {"coordinates": [[[8.548736, 47.366187], [8.548938, 47.366428], [8.549099, 47.366584], [8.549263, 47.366729]]], "type": "MultiLineString"}, "id": "2589", "properties": {}, "type": "Feature"}, {"bbox": [8.504989, 47.363042, 8.505468, 47.363279], "geometry": {"coordinates": [[[8.505468, 47.363279], [8.504989, 47.363042]]], "type": "MultiLineString"}, "id": "2590", "properties": {}, "type": "Feature"}, {"bbox": [8.540131, 47.367991, 8.540536, 47.368453], "geometry": {"coordinates": [[[8.540536, 47.367991], [8.540463, 47.368237], [8.54022, 47.368205], [8.540131, 47.368453]]], "type": "MultiLineString"}, "id": "2591", "properties": {}, "type": "Feature"}, {"bbox": [8.578299, 47.397297, 8.58205, 47.401629], "geometry": {"coordinates": [[[8.578299, 47.401629], [8.578322, 47.40154], [8.578335, 47.401452], [8.578338, 47.401362], [8.578343, 47.401252], [8.578362, 47.401142], [8.578394, 47.401033], [8.57844, 47.400927], [8.578499, 47.400824], [8.57857, 47.400724], [8.578653, 47.400629], [8.578748, 47.400539], [8.578854, 47.400455], [8.579155, 47.400214], [8.579419, 47.399954], [8.579643, 47.399677], [8.579687, 47.399625], [8.579713, 47.39959], [8.579756, 47.399533], [8.580218, 47.398904], [8.580408, 47.398646], [8.580525, 47.398506], [8.580546, 47.398484], [8.581196, 47.397885], [8.581226, 47.39786], [8.581679, 47.39751], [8.582008, 47.397319], [8.58205, 47.397297]]], "type": "MultiLineString"}, "id": "2593", "properties": {}, "type": "Feature"}, {"bbox": [8.52314, 47.346441, 8.52537, 47.348191], "geometry": {"coordinates": [[[8.52537, 47.346441], [8.525346, 47.346459], [8.525259, 47.346525], [8.525208, 47.346588], [8.52406, 47.34748], [8.523935, 47.347565], [8.523831, 47.347652], [8.523243, 47.348107], [8.52314, 47.348191]]], "type": "MultiLineString"}, "id": "2594", "properties": {}, "type": "Feature"}, {"bbox": [8.538228, 47.390447, 8.538902, 47.390672], "geometry": {"coordinates": [[[8.538228, 47.390447], [8.53844, 47.390582], [8.538455, 47.390592], [8.538472, 47.3906], [8.538489, 47.390608], [8.538507, 47.390615], [8.538526, 47.39062], [8.538546, 47.390625], [8.538566, 47.390628], [8.53874, 47.390648], [8.538902, 47.390672]]], "type": "MultiLineString"}, "id": "2600", "properties": {}, "type": "Feature"}, {"bbox": [8.544837, 47.369463, 8.545661, 47.37011], "geometry": {"coordinates": [[[8.545661, 47.369463], [8.545506, 47.369597], [8.545414, 47.369708], [8.545279, 47.369849], [8.545201, 47.369912], [8.545028, 47.36994], [8.544837, 47.370073], [8.544846, 47.37011]]], "type": "MultiLineString"}, "id": "2602", "properties": {}, "type": "Feature"}, {"bbox": [8.540134, 47.372616, 8.541548, 47.373404], "geometry": {"coordinates": [[[8.540723, 47.373357], [8.540749, 47.373357], [8.540782, 47.373404], [8.540946, 47.373391], [8.541389, 47.373225], [8.541518, 47.37315], [8.541445, 47.373111], [8.541548, 47.372944], [8.541537, 47.372732], [8.541433, 47.372739], [8.541427, 47.372672], [8.541343, 47.372671], [8.541337, 47.37272], [8.541204, 47.372723], [8.541203, 47.372691], [8.5409, 47.372698], [8.540902, 47.372649], [8.540725, 47.372654], [8.540639, 47.372638], [8.540388, 47.372616], [8.540248, 47.372844], [8.540134, 47.373153], [8.540159, 47.373158], [8.540143, 47.373265], [8.54028, 47.373319], [8.54038, 47.373336], [8.540545, 47.373351], [8.540672, 47.373356], [8.540723, 47.373357]]], "type": "MultiLineString"}, "id": "2603", "properties": {}, "type": "Feature"}, {"bbox": [8.516319, 47.385503, 8.51723, 47.386345], "geometry": {"coordinates": [[[8.516319, 47.386345], [8.516471, 47.386144], [8.51693, 47.38626], [8.517049, 47.386225], [8.517065, 47.386027], [8.516984, 47.385854], [8.51723, 47.385806], [8.517063, 47.385503], [8.516808, 47.385567], [8.516884, 47.385764], [8.51674, 47.385854], [8.51656, 47.385945], [8.516471, 47.386144]]], "type": "MultiLineString"}, "id": "2604", "properties": {}, "type": "Feature"}, {"bbox": [8.499282, 47.353155, 8.501089, 47.355254], "geometry": {"coordinates": [[[8.499282, 47.355254], [8.499884, 47.354675], [8.499969, 47.354585], [8.500042, 47.35449], [8.500101, 47.354391], [8.500114, 47.35437], [8.500129, 47.354349], [8.500147, 47.35433], [8.500167, 47.354311], [8.500189, 47.354294], [8.500213, 47.354278], [8.500239, 47.354263], [8.500495, 47.354131], [8.50054, 47.354105], [8.500581, 47.354077], [8.500619, 47.354046], [8.500652, 47.354013], [8.50068, 47.353979], [8.500704, 47.353942], [8.500907, 47.35359], [8.500927, 47.35355], [8.500942, 47.353509], [8.500951, 47.353466], [8.50096, 47.353411], [8.500965, 47.353389], [8.500971, 47.353368], [8.500981, 47.353346], [8.500997, 47.353313], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "2605", "properties": {}, "type": "Feature"}, {"bbox": [8.582366, 47.362678, 8.58474, 47.36349], "geometry": {"coordinates": [[[8.582366, 47.36349], [8.582409, 47.363478], [8.582451, 47.363464], [8.582489, 47.363447], [8.582509, 47.363437], [8.582529, 47.363427], [8.582548, 47.363417], [8.582595, 47.363396], [8.582644, 47.363377], [8.582694, 47.36336], [8.583622, 47.363079], [8.583724, 47.363049], [8.584008, 47.362963], [8.584037, 47.362952], [8.584064, 47.362939], [8.584089, 47.362925], [8.584113, 47.362909], [8.584134, 47.362893], [8.584153, 47.362875], [8.58417, 47.362856], [8.584192, 47.362834], [8.584214, 47.362812], [8.584238, 47.362792], [8.584256, 47.362778], [8.584275, 47.362764], [8.584295, 47.362752], [8.584317, 47.362741], [8.58434, 47.362731], [8.584365, 47.362723], [8.58439, 47.362716], [8.584417, 47.36271], [8.584443, 47.362706], [8.584542, 47.362695], [8.584641, 47.362686], [8.58474, 47.362678]]], "type": "MultiLineString"}, "id": "2606", "properties": {}, "type": "Feature"}, {"bbox": [8.480936, 47.405132, 8.48188, 47.40567], "geometry": {"coordinates": [[[8.48188, 47.405132], [8.481787, 47.405168], [8.481695, 47.405206], [8.481606, 47.405247], [8.481573, 47.405259], [8.481538, 47.40527], [8.481501, 47.405278], [8.481464, 47.405285], [8.481427, 47.405289], [8.481141, 47.405311], [8.481119, 47.405315], [8.481097, 47.405321], [8.481076, 47.405328], [8.481056, 47.405336], [8.481037, 47.405345], [8.481019, 47.405356], [8.481003, 47.405367], [8.480988, 47.405379], [8.480975, 47.405393], [8.480964, 47.405406], [8.480954, 47.405421], [8.480947, 47.405436], [8.480941, 47.405451], [8.480937, 47.405467], [8.480936, 47.405483], [8.480936, 47.405499], [8.480938, 47.405514], [8.480943, 47.40553], [8.480949, 47.405545], [8.480958, 47.40556], [8.480968, 47.405574], [8.48098, 47.405588], [8.480994, 47.405601], [8.481009, 47.405613], [8.481026, 47.405624], [8.481044, 47.405634], [8.481063, 47.405643], [8.481084, 47.405651], [8.481105, 47.405657], [8.481127, 47.405662], [8.48115, 47.405666], [8.481173, 47.405669], [8.481196, 47.40567], [8.48122, 47.405669], [8.481243, 47.405668], [8.481266, 47.405665], [8.481288, 47.40566], [8.48131, 47.405655], [8.481331, 47.405648], [8.481351, 47.40564], [8.48137, 47.40563], [8.481388, 47.40562], [8.481404, 47.405609], [8.481609, 47.405387], [8.48188, 47.405132]]], "type": "MultiLineString"}, "id": "2619", "properties": {}, "type": "Feature"}, {"bbox": [8.503698, 47.393874, 8.505557, 47.394298], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.504072, 47.394266], [8.504441, 47.394212], [8.504803, 47.394138], [8.505154, 47.394043], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "2620", "properties": {}, "type": "Feature"}, {"bbox": [8.516431, 47.358799, 8.516937, 47.359358], "geometry": {"coordinates": [[[8.516937, 47.358799], [8.516912, 47.358806], [8.516888, 47.358815], [8.516865, 47.358824], [8.516844, 47.358835], [8.516824, 47.358848], [8.516805, 47.358861], [8.516789, 47.358876], [8.516775, 47.358891], [8.516762, 47.358908], [8.516752, 47.358925], [8.516744, 47.358942], [8.516738, 47.35896], [8.516735, 47.358978], [8.516734, 47.358997], [8.516736, 47.359015], [8.51674, 47.359033], [8.516746, 47.359051], [8.516812, 47.359158], [8.516817, 47.359171], [8.516822, 47.359183], [8.516824, 47.359196], [8.516825, 47.359209], [8.516825, 47.359222], [8.516822, 47.359234], [8.516818, 47.359247], [8.516813, 47.359259], [8.516806, 47.359271], [8.516797, 47.359283], [8.516787, 47.359294], [8.516776, 47.359304], [8.516763, 47.359313], [8.516749, 47.359322], [8.516734, 47.35933], [8.516718, 47.359337], [8.516702, 47.359343], [8.516684, 47.359348], [8.516666, 47.359352], [8.516648, 47.359355], [8.516629, 47.359357], [8.51661, 47.359358], [8.516591, 47.359357], [8.516572, 47.359355], [8.516554, 47.359353], [8.516536, 47.359349], [8.516518, 47.359344], [8.516501, 47.359338], [8.516485, 47.359332], [8.51647, 47.359324], [8.516456, 47.359315], [8.516443, 47.359306], [8.516431, 47.359296]]], "type": "MultiLineString"}, "id": "2621", "properties": {}, "type": "Feature"}, {"bbox": [8.57365, 47.404152, 8.573989, 47.404344], "geometry": {"coordinates": [[[8.57365, 47.404344], [8.573694, 47.404335], [8.573736, 47.404324], [8.573777, 47.40431], [8.573816, 47.404293], [8.573852, 47.404274], [8.573886, 47.404254], [8.573916, 47.404231], [8.573944, 47.404206], [8.573968, 47.40418], [8.573989, 47.404152]]], "type": "MultiLineString"}, "id": "2622", "properties": {}, "type": "Feature"}, {"bbox": [8.482521, 47.35528, 8.486333, 47.359217], "geometry": {"coordinates": [[[8.482521, 47.359217], [8.483103, 47.359108], [8.48369, 47.358995], [8.48378, 47.358975], [8.483868, 47.35895], [8.483953, 47.358921], [8.484034, 47.358887], [8.484166, 47.358828], [8.484188, 47.358818], [8.484399, 47.358728], [8.484461, 47.358698], [8.484519, 47.358666], [8.484574, 47.358631], [8.484625, 47.358593], [8.484741, 47.358499], [8.484779, 47.35847], [8.484822, 47.358444], [8.484867, 47.35842], [8.484916, 47.3584], [8.484966, 47.358382], [8.48502, 47.358367], [8.485233, 47.358316], [8.485284, 47.358302], [8.485332, 47.358285], [8.485378, 47.358266], [8.485422, 47.358244], [8.485462, 47.35822], [8.4855, 47.358193], [8.485533, 47.358164], [8.485563, 47.358133], [8.48561, 47.358076], [8.485649, 47.358016], [8.48568, 47.357954], [8.485692, 47.357923], [8.485699, 47.35789], [8.485703, 47.357858], [8.485703, 47.357826], [8.485698, 47.357793], [8.485689, 47.357761], [8.485677, 47.35773], [8.48566, 47.357699], [8.48564, 47.35767], [8.485616, 47.357642], [8.485525, 47.357543], [8.485487, 47.357505], [8.485458, 47.357468], [8.485434, 47.357429], [8.485415, 47.357389], [8.485402, 47.357348], [8.485395, 47.357306], [8.485393, 47.357264], [8.485397, 47.357222], [8.48566, 47.355843], [8.485674, 47.355791], [8.485695, 47.35574], [8.485723, 47.355691], [8.485756, 47.355644], [8.485796, 47.355598], [8.485841, 47.355556], [8.485892, 47.355516], [8.485947, 47.355479], [8.486007, 47.355445], [8.486152, 47.355362], [8.486208, 47.355331], [8.486269, 47.355304], [8.486333, 47.35528]]], "type": "MultiLineString"}, "id": "2623", "properties": {}, "type": "Feature"}, {"bbox": [8.543488, 47.369493, 8.544243, 47.369693], "geometry": {"coordinates": [[[8.543488, 47.369634], [8.543778, 47.369693], [8.543814, 47.369692], [8.54385, 47.369678], [8.543906, 47.369649], [8.544022, 47.369549], [8.544104, 47.369597], [8.544243, 47.369493]]], "type": "MultiLineString"}, "id": "2625", "properties": {}, "type": "Feature"}, {"bbox": [8.504793, 47.406952, 8.507055, 47.409946], "geometry": {"coordinates": [[[8.504793, 47.406952], [8.505245, 47.407577], [8.505936, 47.40852], [8.50633, 47.409065], [8.506397, 47.409158], [8.506571, 47.40928], [8.506889, 47.409716], [8.507055, 47.409946]]], "type": "MultiLineString"}, "id": "2626", "properties": {}, "type": "Feature"}, {"bbox": [8.515385, 47.348981, 8.517398, 47.349101], "geometry": {"coordinates": [[[8.517398, 47.348981], [8.516918, 47.349006], [8.516505, 47.349022], [8.515882, 47.349052], [8.515547, 47.349076], [8.515385, 47.349101]]], "type": "MultiLineString"}, "id": "2627", "properties": {}, "type": "Feature"}, {"bbox": [8.576605, 47.376093, 8.577777, 47.378496], "geometry": {"coordinates": [[[8.576605, 47.378496], [8.57693, 47.378253], [8.577514, 47.37788], [8.577701, 47.377752], [8.577716, 47.377739], [8.57773, 47.377725], [8.577742, 47.37771], [8.577752, 47.377695], [8.57776, 47.377679], [8.577765, 47.377663], [8.577769, 47.377646], [8.57777, 47.377629], [8.577769, 47.377612], [8.577637, 47.377248], [8.57763, 47.377225], [8.577625, 47.377201], [8.577623, 47.377178], [8.577619, 47.37707], [8.57762, 47.377048], [8.577623, 47.377026], [8.57763, 47.377004], [8.57764, 47.376982], [8.577758, 47.376759], [8.577766, 47.37674], [8.577772, 47.376721], [8.577776, 47.376701], [8.577777, 47.376682], [8.577775, 47.376662], [8.577771, 47.376643], [8.577764, 47.376624], [8.577755, 47.376605], [8.577743, 47.376587], [8.577729, 47.37657], [8.577713, 47.376554], [8.577229, 47.376111], [8.577186, 47.376093]]], "type": "MultiLineString"}, "id": "2628", "properties": {}, "type": "Feature"}, {"bbox": [8.568148, 47.375352, 8.575051, 47.376189], "geometry": {"coordinates": [[[8.568148, 47.375352], [8.568227, 47.375366], [8.568536, 47.375431], [8.569233, 47.375957], [8.569261, 47.375976], [8.56929, 47.375993], [8.569322, 47.376009], [8.569355, 47.376023], [8.56939, 47.376035], [8.569427, 47.376044], [8.569464, 47.376052], [8.570022, 47.376153], [8.570144, 47.376175], [8.570193, 47.376182], [8.570243, 47.376187], [8.570293, 47.376189], [8.570344, 47.376188], [8.570945, 47.376163], [8.572318, 47.376127], [8.572327, 47.376126], [8.572337, 47.376125], [8.572346, 47.376124], [8.572355, 47.376122], [8.572364, 47.376119], [8.572372, 47.376116], [8.57238, 47.376112], [8.572387, 47.376108], [8.572392, 47.376106], [8.572396, 47.376104], [8.572401, 47.376103], [8.572406, 47.376102], [8.572411, 47.376101], [8.572416, 47.3761], [8.572421, 47.3761], [8.572426, 47.3761], [8.572431, 47.376101], [8.572437, 47.376101], [8.572441, 47.376102], [8.572446, 47.376104], [8.572451, 47.376105], [8.572455, 47.376107], [8.57246, 47.376109], [8.572472, 47.376115], [8.572486, 47.376119], [8.5725, 47.376123], [8.572514, 47.376126], [8.572529, 47.376129], [8.572544, 47.37613], [8.572559, 47.37613], [8.572574, 47.37613], [8.572589, 47.376129], [8.572604, 47.376127], [8.572619, 47.376124], [8.573189, 47.37599], [8.573268, 47.375974], [8.573349, 47.375963], [8.573432, 47.375957], [8.573514, 47.375956], [8.573714, 47.375961], [8.573807, 47.375962], [8.5739, 47.37596], [8.573993, 47.375957], [8.574499, 47.37593], [8.575051, 47.375839]]], "type": "MultiLineString"}, "id": "2629", "properties": {}, "type": "Feature"}, {"bbox": [8.548544, 47.387698, 8.550451, 47.392533], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.548563, 47.387844], [8.548656, 47.388989], [8.548688, 47.389123], [8.548739, 47.389254], [8.548808, 47.389381], [8.548895, 47.389503], [8.549202, 47.389891], [8.54936, 47.390067], [8.549385, 47.390153], [8.549649, 47.390859], [8.54982, 47.391259], [8.550116, 47.391849], [8.550298, 47.392217], [8.550305, 47.392292], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "2630", "properties": {}, "type": "Feature"}, {"bbox": [8.531903, 47.411794, 8.532337, 47.413235], "geometry": {"coordinates": [[[8.531903, 47.411794], [8.531952, 47.411862], [8.532061, 47.412047], [8.532109, 47.412146], [8.532149, 47.412229], [8.532217, 47.412339], [8.532278, 47.412803], [8.532337, 47.413235]]], "type": "MultiLineString"}, "id": "2631", "properties": {}, "type": "Feature"}, {"bbox": [8.55151, 47.428481, 8.555657, 47.429624], "geometry": {"coordinates": [[[8.55151, 47.42852], [8.55151, 47.428521], [8.551744, 47.428488], [8.551763, 47.428484], [8.551783, 47.428482], [8.551802, 47.428481], [8.551822, 47.428481], [8.551842, 47.428483], [8.551862, 47.428485], [8.551881, 47.428489], [8.551899, 47.428494], [8.552149, 47.428555], [8.552406, 47.428602], [8.552667, 47.428635], [8.552776, 47.428646], [8.552879, 47.428621], [8.553041, 47.428537], [8.553056, 47.42853], [8.553073, 47.428525], [8.553089, 47.428521], [8.553106, 47.428518], [8.553124, 47.428516], [8.553142, 47.428515], [8.553159, 47.428515], [8.553177, 47.428516], [8.553195, 47.428518], [8.553212, 47.428521], [8.553228, 47.428525], [8.553244, 47.428531], [8.55326, 47.428537], [8.553274, 47.428544], [8.553288, 47.428551], [8.5533, 47.42856], [8.553894, 47.429083], [8.554001, 47.429154], [8.554116, 47.429219], [8.554239, 47.429276], [8.554369, 47.429327], [8.554505, 47.429369], [8.554646, 47.429404], [8.555657, 47.429624]]], "type": "MultiLineString"}, "id": "2644", "properties": {}, "type": "Feature"}, {"bbox": [8.511997, 47.386925, 8.513039, 47.389485], "geometry": {"coordinates": [[[8.512388, 47.386925], [8.512329, 47.38697], [8.512276, 47.387018], [8.512229, 47.387068], [8.512193, 47.387111], [8.512161, 47.387155], [8.512131, 47.3872], [8.512096, 47.387259], [8.512066, 47.38732], [8.512041, 47.387383], [8.512018, 47.387464], [8.512003, 47.387546], [8.511997, 47.387629], [8.512, 47.387697], [8.51201, 47.387765], [8.512025, 47.387833], [8.512042, 47.387885], [8.512062, 47.387937], [8.512086, 47.387989], [8.512116, 47.388046], [8.512151, 47.388102], [8.51219, 47.388157], [8.512339, 47.388373], [8.512433, 47.388503], [8.512456, 47.388566], [8.512977, 47.389271], [8.513039, 47.389485]]], "type": "MultiLineString"}, "id": "2646", "properties": {}, "type": "Feature"}, {"bbox": [8.524112, 47.351752, 8.524401, 47.351818], "geometry": {"coordinates": [[[8.524121, 47.351752], [8.524119, 47.351769], [8.524116, 47.351785], [8.524112, 47.351801], [8.524394, 47.351818], [8.524401, 47.351756]]], "type": "MultiLineString"}, "id": "2647", "properties": {}, "type": "Feature"}, {"bbox": [8.512049, 47.386959, 8.513125, 47.389293], "geometry": {"coordinates": [[[8.512422, 47.386959], [8.51236, 47.386992], [8.512283, 47.387068], [8.512217, 47.387148], [8.512161, 47.387232], [8.512116, 47.38732], [8.512079, 47.387427], [8.512057, 47.387536], [8.512049, 47.387645], [8.512057, 47.387755], [8.512087, 47.387866], [8.512132, 47.387975], [8.512189, 47.38808], [8.51226, 47.388183], [8.512317, 47.3883], [8.512986, 47.389208], [8.513084, 47.389201], [8.513093, 47.389293], [8.513125, 47.38929]]], "type": "MultiLineString"}, "id": "2648", "properties": {}, "type": "Feature"}, {"bbox": [8.546961, 47.36542, 8.547357, 47.365766], "geometry": {"coordinates": [[[8.547042, 47.365766], [8.547079, 47.365742], [8.547117, 47.36572], [8.547155, 47.365698], [8.547194, 47.365676], [8.547233, 47.365654], [8.547273, 47.365634], [8.547295, 47.365622], [8.547317, 47.36561], [8.547338, 47.365598], [8.547357, 47.365586], [8.547072, 47.365422], [8.546961, 47.36542]]], "type": "MultiLineString"}, "id": "2649", "properties": {}, "type": "Feature"}, {"bbox": [8.545761, 47.36508, 8.546961, 47.36542], "geometry": {"coordinates": [[[8.546961, 47.36542], [8.546843, 47.36542], [8.546265, 47.365231], [8.546281, 47.365205], [8.5459, 47.36508], [8.545761, 47.365316]]], "type": "MultiLineString"}, "id": "2650", "properties": {}, "type": "Feature"}, {"bbox": [8.523588, 47.394749, 8.524692, 47.395065], "geometry": {"coordinates": [[[8.524692, 47.395065], [8.524573, 47.39499], [8.524513, 47.39496], [8.524459, 47.394942], [8.524383, 47.394916], [8.524304, 47.394899], [8.523642, 47.394761], [8.523588, 47.394749]]], "type": "MultiLineString"}, "id": "2652", "properties": {}, "type": "Feature"}, {"bbox": [8.514985, 47.413584, 8.515761, 47.413612], "geometry": {"coordinates": [[[8.515761, 47.413601], [8.515637, 47.413598], [8.515563, 47.413593], [8.51549, 47.413591], [8.515416, 47.413594], [8.515343, 47.413601], [8.515292, 47.413608], [8.51524, 47.413612], [8.515188, 47.413612], [8.515136, 47.41361], [8.515085, 47.413604], [8.515034, 47.413596], [8.514985, 47.413584]]], "type": "MultiLineString"}, "id": "2657", "properties": {}, "type": "Feature"}, {"bbox": [8.58292, 47.395138, 8.584437, 47.396868], "geometry": {"coordinates": [[[8.58292, 47.396868], [8.582955, 47.396843], [8.582987, 47.396818], [8.583019, 47.396793], [8.58305, 47.396767], [8.583122, 47.396703], [8.583173, 47.396655], [8.58322, 47.396604], [8.583263, 47.396552], [8.583437, 47.396326], [8.583491, 47.396256], [8.583598, 47.396115], [8.583675, 47.396059], [8.583997, 47.395856], [8.584323, 47.395658], [8.584389, 47.395621], [8.584398, 47.395616], [8.584405, 47.39561], [8.584412, 47.395604], [8.584419, 47.395598], [8.584424, 47.395591], [8.584428, 47.395584], [8.584432, 47.395576], [8.584435, 47.395569], [8.584436, 47.395561], [8.584437, 47.395553], [8.584437, 47.395546], [8.584436, 47.395538], [8.584434, 47.39553], [8.584431, 47.395523], [8.584427, 47.395516], [8.584422, 47.395509], [8.584416, 47.395502], [8.584134, 47.395208], [8.584125, 47.395197], [8.584117, 47.395186], [8.584111, 47.395174], [8.584106, 47.395162], [8.584104, 47.39515], [8.584102, 47.395138]]], "type": "MultiLineString"}, "id": "2658", "properties": {}, "type": "Feature"}, {"bbox": [8.490126, 47.416286, 8.493833, 47.417206], "geometry": {"coordinates": [[[8.490126, 47.417206], [8.490591, 47.417177], [8.490636, 47.417172], [8.49068, 47.417165], [8.490723, 47.417157], [8.490766, 47.417147], [8.490808, 47.417136], [8.490849, 47.417124], [8.490849, 47.417124], [8.49109, 47.417049], [8.49136, 47.416973], [8.49136, 47.416973], [8.491438, 47.416954], [8.4915, 47.416944], [8.491563, 47.416936], [8.491626, 47.416932], [8.491781, 47.416927], [8.491784, 47.416927], [8.491787, 47.416926], [8.491791, 47.416926], [8.491803, 47.416926], [8.491816, 47.416925], [8.491829, 47.416924], [8.491851, 47.416921], [8.491873, 47.416918], [8.491895, 47.416914], [8.491982, 47.416896], [8.492067, 47.416874], [8.49215, 47.416849], [8.49256, 47.416714], [8.493132, 47.416526], [8.493833, 47.416286]]], "type": "MultiLineString"}, "id": "2660", "properties": {}, "type": "Feature"}, {"bbox": [8.545639, 47.372954, 8.546835, 47.374582], "geometry": {"coordinates": [[[8.546791, 47.372954], [8.546708, 47.373138], [8.546835, 47.373175], [8.546706, 47.373354], [8.546544, 47.373534], [8.546273, 47.37387], [8.546186, 47.373907], [8.546026, 47.374121], [8.545639, 47.374582]]], "type": "MultiLineString"}, "id": "2662", "properties": {}, "type": "Feature"}, {"bbox": [8.482595, 47.410712, 8.501205, 47.420561], "geometry": {"coordinates": [[[8.501185, 47.410712], [8.501205, 47.410846], [8.501105, 47.411524], [8.500929, 47.412414], [8.500759, 47.413294], [8.50073, 47.41344], [8.500716, 47.413551], [8.500717, 47.413662], [8.500732, 47.413773], [8.50094, 47.41475], [8.500947, 47.414795], [8.500948, 47.414839], [8.500943, 47.414884], [8.500932, 47.414928], [8.500915, 47.414971], [8.500893, 47.415013], [8.500767, 47.415222], [8.500665, 47.415348], [8.500646, 47.41537], [8.500625, 47.415391], [8.500601, 47.415411], [8.500572, 47.415432], [8.50054, 47.415452], [8.500506, 47.41547], [8.500471, 47.415486], [8.500433, 47.4155], [8.499841, 47.415703], [8.499783, 47.415725], [8.499728, 47.41575], [8.499676, 47.415777], [8.499628, 47.415808], [8.499348, 47.416001], [8.4989, 47.416318], [8.4989, 47.416318], [8.498856, 47.416348], [8.498812, 47.416378], [8.498767, 47.416407], [8.498619, 47.416496], [8.498494, 47.416541], [8.497896, 47.416676], [8.49599, 47.417104], [8.495899, 47.417122], [8.495841, 47.417135], [8.495785, 47.417151], [8.495732, 47.417171], [8.495675, 47.417204], [8.495624, 47.41724], [8.495578, 47.41728], [8.495538, 47.417322], [8.494788, 47.418204], [8.494387, 47.418688], [8.494348, 47.418732], [8.494303, 47.418773], [8.494254, 47.418811], [8.4942, 47.418846], [8.494142, 47.418879], [8.49408, 47.418908], [8.494015, 47.418933], [8.493131, 47.419248], [8.492132, 47.419605], [8.491545, 47.419801], [8.491471, 47.419825], [8.491394, 47.419846], [8.491315, 47.419864], [8.491244, 47.419878], [8.491172, 47.41989], [8.491099, 47.4199], [8.490405, 47.419982], [8.489679, 47.420072], [8.489431, 47.420108], [8.489187, 47.420155], [8.488948, 47.420213], [8.488535, 47.420323], [8.488446, 47.420345], [8.488356, 47.420363], [8.488264, 47.420378], [8.488161, 47.420391], [8.488057, 47.420399], [8.487952, 47.420402], [8.487679, 47.420406], [8.487559, 47.420406], [8.48744, 47.420404], [8.48732, 47.420398], [8.486496, 47.420351], [8.486433, 47.420347], [8.48637, 47.420341], [8.486308, 47.420334], [8.485884, 47.420281], [8.485818, 47.420274], [8.485752, 47.420271], [8.485686, 47.420272], [8.485619, 47.420276], [8.485554, 47.420284], [8.485146, 47.42034], [8.485079, 47.420349], [8.484887, 47.420372], [8.484694, 47.420395], [8.484501, 47.420416], [8.484475, 47.420419], [8.484449, 47.420421], [8.484423, 47.420424], [8.484383, 47.420428], [8.48314, 47.420555], [8.483062, 47.42056], [8.482985, 47.420561], [8.482907, 47.420557], [8.482831, 47.420548], [8.482595, 47.420516]]], "type": "MultiLineString"}, "id": "2663", "properties": {}, "type": "Feature"}, {"bbox": [8.542901, 47.37234, 8.543889, 47.37266], "geometry": {"coordinates": [[[8.543773, 47.372656], [8.543806, 47.37266], [8.543889, 47.372347], [8.543842, 47.37234], [8.543785, 47.372341], [8.543445, 47.372368], [8.543433, 47.3725], [8.543132, 47.372493], [8.54309, 47.37245], [8.543058, 47.372416], [8.542922, 47.372422], [8.542901, 47.372466]]], "type": "MultiLineString"}, "id": "2664", "properties": {}, "type": "Feature"}, {"bbox": [8.498786, 47.400628, 8.499591, 47.401081], "geometry": {"coordinates": [[[8.498786, 47.400628], [8.499074, 47.400775], [8.499175, 47.40088], [8.499591, 47.401081]]], "type": "MultiLineString"}, "id": "2665", "properties": {}, "type": "Feature"}, {"bbox": [8.531537, 47.364576, 8.53193, 47.364624], "geometry": {"coordinates": [[[8.53193, 47.364624], [8.53183, 47.364621], [8.53173, 47.364613], [8.531633, 47.364597], [8.531537, 47.364576]]], "type": "MultiLineString"}, "id": "2666", "properties": {}, "type": "Feature"}, {"bbox": [8.518908, 47.373837, 8.520274, 47.3774], "geometry": {"coordinates": [[[8.520274, 47.373837], [8.520207, 47.373913], [8.520068, 47.374028], [8.519934, 47.374147], [8.519805, 47.374268], [8.519648, 47.374439], [8.519507, 47.374616], [8.519385, 47.3748], [8.519368, 47.374834], [8.519356, 47.374869], [8.519349, 47.374905], [8.519346, 47.374941], [8.519349, 47.374977], [8.519113, 47.375434], [8.519044, 47.375605], [8.518989, 47.37578], [8.518949, 47.375956], [8.518917, 47.376168], [8.518908, 47.37638], [8.518924, 47.376593], [8.518964, 47.376804], [8.519012, 47.376995], [8.519081, 47.377183], [8.519169, 47.377367], [8.519306, 47.3774]]], "type": "MultiLineString"}, "id": "2667", "properties": {}, "type": "Feature"}, {"bbox": [8.583924, 47.374256, 8.591169, 47.376494], "geometry": {"coordinates": [[[8.583924, 47.376494], [8.584747, 47.37644], [8.585238, 47.376408], [8.585429, 47.376391], [8.585619, 47.376365], [8.585805, 47.37633], [8.586334, 47.376218], [8.586688, 47.376165], [8.586764, 47.376152], [8.58684, 47.376135], [8.586914, 47.376116], [8.587254, 47.376019], [8.587331, 47.375995], [8.58742, 47.375968], [8.587477, 47.375951], [8.587535, 47.375935], [8.587593, 47.37592], [8.58767, 47.375899], [8.587745, 47.375873], [8.587817, 47.375844], [8.588123, 47.37571], [8.588393, 47.375606], [8.588854, 47.375392], [8.589026, 47.375315], [8.589452, 47.375125], [8.590279, 47.374691], [8.590911, 47.37441], [8.591004, 47.374364], [8.59109, 47.374313], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "2668", "properties": {}, "type": "Feature"}, {"bbox": [8.612193, 47.363209, 8.615209, 47.364026], "geometry": {"coordinates": [[[8.612193, 47.363209], [8.612325, 47.363424], [8.61254, 47.363694], [8.612647, 47.363873], [8.612664, 47.363889], [8.612682, 47.363904], [8.612703, 47.363917], [8.612725, 47.363929], [8.612748, 47.36394], [8.612773, 47.36395], [8.612799, 47.363957], [8.612826, 47.363964], [8.612854, 47.363968], [8.613303, 47.363997], [8.613509, 47.363992], [8.613982, 47.363931], [8.614282, 47.363881], [8.614451, 47.363887], [8.614711, 47.363922], [8.615012, 47.363965], [8.615209, 47.364026]]], "type": "MultiLineString"}, "id": "2669", "properties": {}, "type": "Feature"}, {"bbox": [8.516891, 47.337213, 8.51916, 47.349006], "geometry": {"coordinates": [[[8.516918, 47.349006], [8.51691, 47.348935], [8.516891, 47.34876], [8.516949, 47.348568], [8.517136, 47.347942], [8.517334, 47.347283], [8.5175, 47.346732], [8.51756, 47.346575], [8.517605, 47.346484], [8.517644, 47.346418], [8.51775, 47.346237], [8.518059, 47.345726], [8.518369, 47.345212], [8.51843, 47.345105], [8.518496, 47.34497], [8.518541, 47.344853], [8.518605, 47.344628], [8.518665, 47.344496], [8.518764, 47.344267], [8.518793, 47.344192], [8.518829, 47.344079], [8.518872, 47.343904], [8.518894, 47.34379], [8.518918, 47.34364], [8.51898, 47.34339], [8.518983, 47.343128], [8.518969, 47.342966], [8.518946, 47.342801], [8.518841, 47.342441], [8.518692, 47.342099], [8.518493, 47.34178], [8.518374, 47.341603], [8.517861, 47.34086], [8.517492, 47.340323], [8.517184, 47.339765], [8.517112, 47.339476], [8.517075, 47.33934], [8.517056, 47.339202], [8.517055, 47.339063], [8.517073, 47.338925], [8.517108, 47.338788], [8.517161, 47.338654], [8.517231, 47.338524], [8.517318, 47.338399], [8.517421, 47.338279], [8.517539, 47.338166], [8.517672, 47.338061], [8.517818, 47.337964], [8.51824, 47.337693], [8.518689, 47.337443], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "2670", "properties": {}, "type": "Feature"}, {"bbox": [8.495047, 47.396107, 8.496447, 47.396684], "geometry": {"coordinates": [[[8.495047, 47.396684], [8.49546, 47.396514], [8.496447, 47.396107]]], "type": "MultiLineString"}, "id": "2678", "properties": {}, "type": "Feature"}, {"bbox": [8.513345, 47.3947, 8.513371, 47.394793], "geometry": {"coordinates": [[[8.513345, 47.3947], [8.513371, 47.394793]]], "type": "MultiLineString"}, "id": "2679", "properties": {}, "type": "Feature"}, {"bbox": [8.512257, 47.40079, 8.523151, 47.403138], "geometry": {"coordinates": [[[8.523151, 47.402828], [8.522803, 47.402826], [8.522718, 47.402823], [8.522655, 47.402821], [8.52239, 47.402811], [8.522339, 47.402811], [8.52229, 47.402813], [8.52224, 47.402818], [8.522191, 47.402826], [8.521518, 47.402956], [8.521436, 47.40297], [8.521352, 47.402978], [8.521267, 47.402983], [8.521152, 47.402985], [8.520653, 47.402997], [8.520514, 47.403004], [8.520375, 47.403019], [8.520239, 47.403042], [8.519806, 47.403128], [8.51977, 47.403134], [8.519734, 47.403137], [8.519698, 47.403138], [8.519661, 47.403137], [8.519625, 47.403134], [8.519589, 47.403129], [8.519554, 47.403121], [8.519221, 47.403035], [8.518107, 47.402727], [8.518058, 47.402713], [8.518024, 47.402677], [8.51789, 47.402619], [8.517875, 47.402607], [8.517593, 47.402385], [8.517559, 47.40236], [8.517522, 47.402336], [8.517484, 47.402313], [8.517227, 47.402173], [8.517185, 47.402148], [8.517146, 47.402121], [8.51711, 47.402092], [8.517078, 47.402061], [8.516999, 47.401987], [8.51691, 47.401917], [8.516813, 47.401854], [8.516708, 47.401796], [8.516595, 47.401746], [8.516482, 47.401699], [8.516082, 47.401508], [8.515963, 47.401441], [8.515865, 47.401374], [8.515852, 47.401366], [8.515849, 47.401363], [8.515586, 47.401154], [8.515498, 47.401087], [8.515431, 47.401043], [8.515355, 47.401009], [8.51527, 47.400986], [8.51514, 47.400961], [8.515029, 47.400948], [8.514715, 47.400917], [8.514625, 47.40091], [8.514306, 47.400872], [8.514251, 47.400865], [8.514195, 47.400859], [8.51414, 47.400854], [8.513929, 47.400836], [8.513371, 47.400793], [8.51331, 47.40079], [8.513249, 47.400791], [8.513188, 47.400795], [8.513128, 47.400802], [8.512824, 47.40085], [8.512756, 47.400858], [8.512686, 47.400863], [8.512617, 47.400864], [8.512547, 47.400861], [8.512479, 47.400854], [8.512257, 47.400824]]], "type": "MultiLineString"}, "id": "2680", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.414313, 8.540144, 47.417065], "geometry": {"coordinates": [[[8.539243, 47.414313], [8.539387, 47.415022], [8.539411, 47.415197], [8.53949, 47.415834], [8.539557, 47.416051], [8.539646, 47.416265], [8.539757, 47.416474], [8.540144, 47.417065]]], "type": "MultiLineString"}, "id": "2683", "properties": {}, "type": "Feature"}, {"bbox": [8.497159, 47.394298, 8.503698, 47.396482], "geometry": {"coordinates": [[[8.497159, 47.396482], [8.497311, 47.396476], [8.498278, 47.3959], [8.499027, 47.395436], [8.499412, 47.395201], [8.499669, 47.395047], [8.499945, 47.39491], [8.500239, 47.394791], [8.500547, 47.39469], [8.500868, 47.394609], [8.501199, 47.394548], [8.501536, 47.394508], [8.503698, 47.394298]]], "type": "MultiLineString"}, "id": "2697", "properties": {}, "type": "Feature"}, {"bbox": [8.548022, 47.36712, 8.548377, 47.36771], "geometry": {"coordinates": [[[8.548377, 47.36712], [8.548022, 47.36771]]], "type": "MultiLineString"}, "id": "2698", "properties": {}, "type": "Feature"}, {"bbox": [8.497301, 47.368319, 8.503073, 47.373816], "geometry": {"coordinates": [[[8.503073, 47.373816], [8.50241, 47.373223], [8.502139, 47.373006], [8.501977, 47.372848], [8.501367, 47.372192], [8.501351, 47.372173], [8.501338, 47.372152], [8.501327, 47.372131], [8.501319, 47.372109], [8.501314, 47.372087], [8.501312, 47.372064], [8.501312, 47.372042], [8.501316, 47.372019], [8.501321, 47.371959], [8.501318, 47.3719], [8.501308, 47.37184], [8.50129, 47.371781], [8.501265, 47.371724], [8.501232, 47.371668], [8.501192, 47.371615], [8.500851, 47.371309], [8.500338, 47.370937], [8.500116, 47.370808], [8.500083, 47.370788], [8.500053, 47.370765], [8.500026, 47.370741], [8.500002, 47.370715], [8.499983, 47.370688], [8.499891, 47.370573], [8.499788, 47.370464], [8.499674, 47.370359], [8.498923, 47.369847], [8.498718, 47.369742], [8.4985, 47.369668], [8.498308, 47.369608], [8.498125, 47.369536], [8.497952, 47.369454], [8.497789, 47.369363], [8.497639, 47.369262], [8.497524, 47.36921], [8.497301, 47.369134], [8.497385, 47.369023], [8.497442, 47.368905], [8.497351, 47.368893], [8.49741, 47.368672], [8.497367, 47.368634], [8.497418, 47.36846], [8.497464, 47.368319]]], "type": "MultiLineString"}, "id": "2699", "properties": {}, "type": "Feature"}, {"bbox": [8.580168, 47.368693, 8.600686, 47.374578], "geometry": {"coordinates": [[[8.580168, 47.374578], [8.580458, 47.374527], [8.580567, 47.374519], [8.580675, 47.374505], [8.580781, 47.374484], [8.580883, 47.374458], [8.580982, 47.374425], [8.581076, 47.374386], [8.581229, 47.374311], [8.581374, 47.374229], [8.581512, 47.37414], [8.581835, 47.373929], [8.582233, 47.373679], [8.582406, 47.373593], [8.582584, 47.373512], [8.582768, 47.373438], [8.58292, 47.373383], [8.583054, 47.373335], [8.583186, 47.373285], [8.583316, 47.373233], [8.583317, 47.373233], [8.583317, 47.373233], [8.583492, 47.373155], [8.583659, 47.37307], [8.583817, 47.372977], [8.584492, 47.372543], [8.584639, 47.372439], [8.584772, 47.372326], [8.584889, 47.372205], [8.584989, 47.372078], [8.585197, 47.371783], [8.585358, 47.37157], [8.585535, 47.371362], [8.585728, 47.371161], [8.58589, 47.371008], [8.586111, 47.370809], [8.58694, 47.370085], [8.58698, 47.370052], [8.587021, 47.370019], [8.587063, 47.369987], [8.587198, 47.369896], [8.587343, 47.369813], [8.587499, 47.369739], [8.587662, 47.369674], [8.587834, 47.369618], [8.588012, 47.369573], [8.588194, 47.369537], [8.588287, 47.369524], [8.588381, 47.369513], [8.588476, 47.369505], [8.590372, 47.369366], [8.590537, 47.369353], [8.590701, 47.369337], [8.590865, 47.369318], [8.591024, 47.369297], [8.591182, 47.369273], [8.59134, 47.369247], [8.592708, 47.369009], [8.594244, 47.368713], [8.594307, 47.368703], [8.594371, 47.368696], [8.594436, 47.368693], [8.594501, 47.368694], [8.594566, 47.368699], [8.59463, 47.368707], [8.595548, 47.368852], [8.59563, 47.368864], [8.595712, 47.368875], [8.595795, 47.368885], [8.595872, 47.368893], [8.595949, 47.368899], [8.596026, 47.368905], [8.597257, 47.368981], [8.59767, 47.369019], [8.598077, 47.369079], [8.598476, 47.369162], [8.598769, 47.369231], [8.598844, 47.369252], [8.598915, 47.369278], [8.598982, 47.369308], [8.599066, 47.36935], [8.599107, 47.369369], [8.59915, 47.369385], [8.599196, 47.369398], [8.599243, 47.369409], [8.599481, 47.369454], [8.599596, 47.36948], [8.599708, 47.369511], [8.599816, 47.369548], [8.600094, 47.369651], [8.600176, 47.369685], [8.600255, 47.369721], [8.600331, 47.369761], [8.600513, 47.369865], [8.600686, 47.369975]]], "type": "MultiLineString"}, "id": "2700", "properties": {}, "type": "Feature"}, {"bbox": [8.523603, 47.325062, 8.524713, 47.329211], "geometry": {"coordinates": [[[8.524713, 47.329211], [8.524682, 47.328843], [8.524675, 47.328756], [8.524671, 47.328327], [8.52467, 47.328012], [8.524665, 47.327949], [8.52466, 47.327899], [8.524657, 47.327885], [8.524599, 47.327523], [8.524508, 47.327082], [8.524412, 47.326718], [8.524393, 47.326646], [8.524319, 47.326361], [8.524313, 47.326339], [8.524286, 47.32624], [8.524244, 47.326082], [8.524202, 47.325905], [8.524189, 47.325769], [8.524173, 47.325588], [8.524146, 47.325547], [8.524134, 47.325529], [8.524033, 47.325443], [8.5239, 47.32533], [8.523629, 47.325086], [8.523603, 47.325062]]], "type": "MultiLineString"}, "id": "2701", "properties": {}, "type": "Feature"}, {"bbox": [8.575555, 47.390056, 8.576921, 47.393803], "geometry": {"coordinates": [[[8.57559, 47.390056], [8.575596, 47.390131], [8.575598, 47.390255], [8.575588, 47.390379], [8.575563, 47.390501], [8.575563, 47.390502], [8.575561, 47.390512], [8.575561, 47.390512], [8.575556, 47.390547], [8.575555, 47.390581], [8.575558, 47.390616], [8.575566, 47.39065], [8.575578, 47.390683], [8.575593, 47.390716], [8.575665, 47.390854], [8.575741, 47.390992], [8.575821, 47.391128], [8.575855, 47.391183], [8.575889, 47.391239], [8.575925, 47.391294], [8.575951, 47.391339], [8.575973, 47.391384], [8.575991, 47.391431], [8.576036, 47.39156], [8.576068, 47.39165], [8.576096, 47.3917], [8.576126, 47.391749], [8.576158, 47.391798], [8.57624, 47.391918], [8.576322, 47.392038], [8.576409, 47.392316], [8.576468, 47.39251], [8.576594, 47.392846], [8.576626, 47.39293], [8.576666, 47.39306], [8.576705, 47.39319], [8.576744, 47.39332], [8.576744, 47.39332], [8.576921, 47.393803]]], "type": "MultiLineString"}, "id": "2702", "properties": {}, "type": "Feature"}, {"bbox": [8.579143, 47.365745, 8.580612, 47.367195], "geometry": {"coordinates": [[[8.580612, 47.366071], [8.580566, 47.366028], [8.580527, 47.365984], [8.580483, 47.365941], [8.580434, 47.365901], [8.580381, 47.365863], [8.580332, 47.365823], [8.580287, 47.36578], [8.580279, 47.365774], [8.58027, 47.365768], [8.58026, 47.365763], [8.580249, 47.365758], [8.580238, 47.365754], [8.580227, 47.365751], [8.580215, 47.365749], [8.580203, 47.365747], [8.58019, 47.365746], [8.580178, 47.365745], [8.580165, 47.365746], [8.580153, 47.365747], [8.580141, 47.365749], [8.580129, 47.365752], [8.579807, 47.365855], [8.579733, 47.365878], [8.579661, 47.365905], [8.579591, 47.365934], [8.579571, 47.365945], [8.579552, 47.365957], [8.579534, 47.36597], [8.579519, 47.365984], [8.579505, 47.365999], [8.579493, 47.366014], [8.579482, 47.366031], [8.579474, 47.366047], [8.579468, 47.366064], [8.579464, 47.366082], [8.579463, 47.366099], [8.57947, 47.366152], [8.579484, 47.366205], [8.579503, 47.366257], [8.579515, 47.366282], [8.579525, 47.366308], [8.579533, 47.366334], [8.57954, 47.366376], [8.57954, 47.366418], [8.579536, 47.366459], [8.579525, 47.3665], [8.579503, 47.366544], [8.579476, 47.366585], [8.579443, 47.366625], [8.579404, 47.366663], [8.579379, 47.366692], [8.579357, 47.366723], [8.579338, 47.366755], [8.57932, 47.366794], [8.5793, 47.366833], [8.579278, 47.366871], [8.579265, 47.366894], [8.57925, 47.366916], [8.579234, 47.366938], [8.579213, 47.366971], [8.579196, 47.367005], [8.579185, 47.367041], [8.579143, 47.367195]]], "type": "MultiLineString"}, "id": "2703", "properties": {}, "type": "Feature"}, {"bbox": [8.571182, 47.406083, 8.571724, 47.406237], "geometry": {"coordinates": [[[8.571724, 47.406207], [8.571707, 47.406214], [8.571689, 47.406221], [8.57167, 47.406226], [8.57165, 47.406231], [8.57163, 47.406234], [8.57161, 47.406236], [8.571589, 47.406237], [8.571568, 47.406236], [8.571548, 47.406235], [8.571528, 47.406232], [8.571508, 47.406228], [8.571489, 47.406222], [8.57147, 47.406216], [8.571453, 47.406209], [8.571437, 47.4062], [8.571421, 47.406191], [8.571407, 47.40618], [8.571391, 47.406165], [8.571373, 47.406151], [8.571354, 47.406138], [8.571333, 47.406126], [8.57131, 47.406115], [8.571286, 47.406106], [8.571261, 47.406098], [8.571235, 47.406091], [8.571209, 47.406086], [8.571182, 47.406083]]], "type": "MultiLineString"}, "id": "2704", "properties": {}, "type": "Feature"}, {"bbox": [8.484553, 47.374191, 8.485075, 47.374866], "geometry": {"coordinates": [[[8.484964, 47.374866], [8.484952, 47.374837], [8.484944, 47.374807], [8.48494, 47.374777], [8.48494, 47.374747], [8.484943, 47.374718], [8.484951, 47.374688], [8.484962, 47.374659], [8.484977, 47.374631], [8.484995, 47.374603], [8.48502, 47.374571], [8.48504, 47.374538], [8.485056, 47.374504], [8.485066, 47.374469], [8.485072, 47.374433], [8.485074, 47.374397], [8.485075, 47.374381], [8.485075, 47.374365], [8.485073, 47.374349], [8.485068, 47.374334], [8.485062, 47.374319], [8.485054, 47.374304], [8.485044, 47.374289], [8.485032, 47.374276], [8.485019, 47.374263], [8.485004, 47.374251], [8.484988, 47.37424], [8.48497, 47.374229], [8.484951, 47.37422], [8.484931, 47.374212], [8.48491, 47.374205], [8.484888, 47.3742], [8.484866, 47.374195], [8.484843, 47.374192], [8.48482, 47.374191], [8.484798, 47.374192], [8.484775, 47.374193], [8.484753, 47.374196], [8.484731, 47.374201], [8.48471, 47.374206], [8.48469, 47.374213], [8.48467, 47.374221], [8.484652, 47.374231], [8.484635, 47.374241], [8.48462, 47.374252], [8.484606, 47.374264], [8.484593, 47.374277], [8.484583, 47.374291], [8.484574, 47.374305], [8.484567, 47.374319], [8.484562, 47.374334], [8.484556, 47.374355], [8.484554, 47.374375], [8.484553, 47.374396], [8.484556, 47.374417], [8.484561, 47.374437], [8.484569, 47.374457], [8.48458, 47.374476]]], "type": "MultiLineString"}, "id": "2705", "properties": {}, "type": "Feature"}, {"bbox": [8.577842, 47.408068, 8.578577, 47.409076], "geometry": {"coordinates": [[[8.577842, 47.408068], [8.577939, 47.408172], [8.578498, 47.408743], [8.578457, 47.408842], [8.578577, 47.409076]]], "type": "MultiLineString"}, "id": "2706", "properties": {}, "type": "Feature"}, {"bbox": [8.584464, 47.356672, 8.585405, 47.358312], "geometry": {"coordinates": [[[8.584485, 47.358312], [8.584469, 47.358093], [8.584464, 47.358049], [8.584466, 47.358006], [8.584473, 47.357962], [8.584486, 47.35792], [8.584505, 47.357878], [8.58453, 47.357838], [8.584559, 47.357799], [8.584594, 47.357762], [8.584839, 47.357491], [8.585057, 47.357209], [8.585248, 47.356918], [8.585405, 47.356672]]], "type": "MultiLineString"}, "id": "2707", "properties": {}, "type": "Feature"}, {"bbox": [8.529857, 47.366725, 8.531561, 47.367893], "geometry": {"coordinates": [[[8.531561, 47.366725], [8.531444, 47.366825], [8.53133, 47.366906], [8.531295, 47.366935], [8.531265, 47.366966], [8.531238, 47.366999], [8.531176, 47.367083], [8.530868, 47.367445], [8.530853, 47.36747], [8.530735, 47.367615], [8.53071, 47.367641], [8.530697, 47.367655], [8.530681, 47.367669], [8.530664, 47.367682], [8.530645, 47.367694], [8.530625, 47.367704], [8.530604, 47.367713], [8.530582, 47.367722], [8.530558, 47.367728], [8.530534, 47.367733], [8.530177, 47.367819], [8.529857, 47.367893]]], "type": "MultiLineString"}, "id": "2708", "properties": {}, "type": "Feature"}, {"bbox": [8.539851, 47.402677, 8.542318, 47.40443], "geometry": {"coordinates": [[[8.539851, 47.402677], [8.540194, 47.402908], [8.540197, 47.40291], [8.540199, 47.402911], [8.5402, 47.402913], [8.540202, 47.402915], [8.540204, 47.402917], [8.540205, 47.402919], [8.540206, 47.402921], [8.540253, 47.40304], [8.540255, 47.403042], [8.540257, 47.403045], [8.540259, 47.403047], [8.540261, 47.403049], [8.540264, 47.40305], [8.540266, 47.403052], [8.540269, 47.403053], [8.540327, 47.403082], [8.540328, 47.403082], [8.540329, 47.403083], [8.540331, 47.403084], [8.540332, 47.403085], [8.540332, 47.403086], [8.540333, 47.403087], [8.540334, 47.403089], [8.540334, 47.40309], [8.540334, 47.403091], [8.540334, 47.403092], [8.540334, 47.403094], [8.540334, 47.403095], [8.540343, 47.403222], [8.540342, 47.403225], [8.540341, 47.403229], [8.54034, 47.403233], [8.540338, 47.403236], [8.540335, 47.403239], [8.540225, 47.403386], [8.540221, 47.403392], [8.540218, 47.403399], [8.540216, 47.403406], [8.540215, 47.403413], [8.540214, 47.403421], [8.540215, 47.403428], [8.540217, 47.403435], [8.540219, 47.403442], [8.540223, 47.403448], [8.540227, 47.403455], [8.540232, 47.403461], [8.540238, 47.403467], [8.540244, 47.403473], [8.540252, 47.403478], [8.54026, 47.403482], [8.540268, 47.403487], [8.540277, 47.40349], [8.540739, 47.403698], [8.541017, 47.403835], [8.54127, 47.403956], [8.541328, 47.403943], [8.54141, 47.403929], [8.541519, 47.403977], [8.54162, 47.404031], [8.541714, 47.404092], [8.541917, 47.404236], [8.542008, 47.404292], [8.542105, 47.404344], [8.542206, 47.404392], [8.542242, 47.404406], [8.542279, 47.404419], [8.542318, 47.40443]]], "type": "MultiLineString"}, "id": "2709", "properties": {}, "type": "Feature"}, {"bbox": [8.518067, 47.39936, 8.52894, 47.401729], "geometry": {"coordinates": [[[8.52894, 47.399806], [8.528939, 47.399722], [8.528937, 47.399709], [8.528934, 47.399697], [8.528929, 47.399685], [8.528923, 47.399673], [8.528916, 47.399662], [8.528907, 47.399651], [8.528897, 47.39964], [8.528885, 47.399631], [8.528758, 47.399531], [8.528726, 47.399508], [8.52869, 47.399487], [8.528652, 47.399468], [8.528611, 47.399451], [8.528569, 47.399437], [8.528525, 47.399426], [8.528479, 47.399417], [8.528433, 47.399411], [8.527955, 47.399365], [8.527863, 47.39936], [8.527771, 47.39936], [8.527679, 47.399365], [8.527589, 47.399377], [8.5275, 47.399394], [8.527414, 47.399416], [8.527318, 47.399443], [8.52722, 47.399466], [8.527121, 47.399485], [8.52704, 47.399499], [8.527002, 47.399506], [8.526302, 47.399627], [8.52616, 47.399656], [8.526021, 47.399693], [8.525888, 47.399738], [8.525761, 47.39979], [8.525641, 47.399849], [8.525529, 47.399915], [8.525425, 47.399987], [8.525372, 47.400026], [8.525347, 47.400045], [8.525077, 47.400249], [8.524653, 47.400558], [8.524355, 47.400782], [8.524261, 47.400843], [8.524219, 47.40087], [8.523892, 47.400989], [8.523819, 47.401013], [8.523743, 47.401031], [8.523665, 47.401046], [8.523585, 47.401055], [8.523505, 47.401059], [8.523505, 47.401059], [8.522753, 47.401076], [8.522313, 47.401086], [8.522247, 47.401086], [8.522183, 47.401081], [8.522118, 47.401073], [8.522055, 47.401061], [8.521994, 47.401045], [8.521896, 47.401016], [8.5218, 47.400984], [8.521705, 47.400949], [8.521655, 47.400932], [8.521602, 47.400918], [8.521548, 47.400906], [8.521494, 47.400898], [8.521438, 47.400892], [8.521055, 47.400864], [8.521005, 47.400862], [8.520955, 47.400861], [8.520905, 47.400863], [8.520549, 47.40088], [8.520484, 47.400885], [8.52042, 47.400892], [8.520357, 47.400902], [8.520298, 47.400912], [8.520239, 47.400922], [8.520179, 47.400932], [8.520145, 47.400937], [8.52007, 47.40095], [8.519997, 47.400966], [8.519925, 47.400985], [8.519498, 47.401106], [8.519408, 47.401128], [8.519316, 47.401144], [8.519223, 47.401154], [8.519128, 47.401159], [8.519033, 47.401157], [8.518938, 47.40115], [8.518845, 47.401136], [8.518806, 47.401128], [8.518768, 47.401118], [8.518732, 47.401106], [8.518697, 47.401091], [8.518664, 47.401075], [8.518512, 47.400993], [8.518406, 47.40094], [8.518388, 47.400932], [8.518369, 47.400925], [8.51835, 47.400919], [8.51833, 47.400915], [8.518309, 47.400911], [8.518288, 47.400909], [8.518267, 47.400908], [8.518245, 47.400908], [8.518224, 47.40091], [8.518203, 47.400912], [8.518183, 47.400916], [8.518087, 47.400969], [8.518067, 47.401051], [8.51807, 47.40106], [8.518075, 47.401069], [8.51808, 47.401077], [8.518087, 47.401085], [8.518094, 47.401093], [8.518103, 47.4011], [8.518113, 47.401107], [8.518123, 47.401113], [8.518437, 47.401278], [8.518474, 47.401299], [8.51851, 47.401321], [8.518544, 47.401344], [8.518586, 47.401372], [8.518632, 47.401396], [8.518681, 47.401418], [8.518734, 47.401436], [8.51885, 47.401472], [8.518863, 47.401476], [8.518875, 47.401481], [8.518887, 47.401487], [8.518898, 47.401494], [8.518908, 47.401501], [8.518917, 47.401509], [8.518926, 47.401517], [8.518933, 47.401526], [8.518938, 47.401535], [8.518943, 47.401545], [8.518947, 47.401554], [8.518949, 47.401564], [8.518974, 47.401729]]], "type": "MultiLineString"}, "id": "2710", "properties": {}, "type": "Feature"}, {"bbox": [8.483129, 47.412999, 8.488671, 47.417647], "geometry": {"coordinates": [[[8.488671, 47.412999], [8.488537, 47.413077], [8.488267, 47.413292], [8.488232, 47.413321], [8.488201, 47.413353], [8.488174, 47.413386], [8.488151, 47.413421], [8.488141, 47.413437], [8.487702, 47.414168], [8.487203, 47.414989], [8.486771, 47.415731], [8.486679, 47.415885], [8.48658, 47.416036], [8.486475, 47.416185], [8.486468, 47.416196], [8.486372, 47.416328], [8.48634, 47.416367], [8.486304, 47.416404], [8.486264, 47.416439], [8.486219, 47.416471], [8.486171, 47.416501], [8.485726, 47.416752], [8.485381, 47.416933], [8.485302, 47.416975], [8.485145, 47.417057], [8.485076, 47.417093], [8.485005, 47.417127], [8.484933, 47.417159], [8.4849, 47.417173], [8.484753, 47.417231], [8.484603, 47.417284], [8.484448, 47.41733], [8.483983, 47.417464], [8.483792, 47.417516], [8.483598, 47.417564], [8.483402, 47.417607], [8.483129, 47.417647]]], "type": "MultiLineString"}, "id": "2711", "properties": {}, "type": "Feature"}, {"bbox": [8.521637, 47.333329, 8.522379, 47.336406], "geometry": {"coordinates": [[[8.521699, 47.336406], [8.521681, 47.336383], [8.521666, 47.336359], [8.521654, 47.336335], [8.521645, 47.336309], [8.52164, 47.336284], [8.521637, 47.336258], [8.521638, 47.336232], [8.521642, 47.336206], [8.521649, 47.33618], [8.521659, 47.336155], [8.521674, 47.336124], [8.521739, 47.33599], [8.521776, 47.335916], [8.521809, 47.33585], [8.521923, 47.335621], [8.522046, 47.335359], [8.522168, 47.335111], [8.52229, 47.334847], [8.522354, 47.334684], [8.522379, 47.334514], [8.522369, 47.334344], [8.522366, 47.334316], [8.522358, 47.334289], [8.522346, 47.334262], [8.522331, 47.334236], [8.522227, 47.334061], [8.522139, 47.333858], [8.522115, 47.333801], [8.521984, 47.333537], [8.521912, 47.33335], [8.521904, 47.333329]]], "type": "MultiLineString"}, "id": "2712", "properties": {}, "type": "Feature"}, {"bbox": [8.529877, 47.412811, 8.531452, 47.413078], "geometry": {"coordinates": [[[8.531452, 47.412811], [8.529957, 47.413044], [8.529877, 47.413078]]], "type": "MultiLineString"}, "id": "2713", "properties": {}, "type": "Feature"}, {"bbox": [8.482878, 47.375545, 8.483733, 47.375717], "geometry": {"coordinates": [[[8.483733, 47.375717], [8.483729, 47.375715], [8.483706, 47.375707], [8.483681, 47.3757], [8.483655, 47.375694], [8.483558, 47.37568], [8.483461, 47.375668], [8.483362, 47.375658], [8.483274, 47.375648], [8.483186, 47.375637], [8.483098, 47.375625], [8.483073, 47.375621], [8.483049, 47.375615], [8.483026, 47.375608], [8.483003, 47.3756], [8.482962, 47.375581], [8.48292, 47.375563], [8.482878, 47.375545]]], "type": "MultiLineString"}, "id": "2716", "properties": {}, "type": "Feature"}, {"bbox": [8.553073, 47.392487, 8.558019, 47.393343], "geometry": {"coordinates": [[[8.553073, 47.393343], [8.553131, 47.39332], [8.553571, 47.393207], [8.554489, 47.392949], [8.554596, 47.392923], [8.554706, 47.392903], [8.554818, 47.39289], [8.554932, 47.392884], [8.555501, 47.392869], [8.556038, 47.392866], [8.556057, 47.392865], [8.556077, 47.392863], [8.556096, 47.39286], [8.556115, 47.392856], [8.556133, 47.392851], [8.55615, 47.392845], [8.556167, 47.392837], [8.556183, 47.392829], [8.5562, 47.39282], [8.556219, 47.392812], [8.556238, 47.392804], [8.556258, 47.392798], [8.556279, 47.392793], [8.556489, 47.392749], [8.556736, 47.392712], [8.556895, 47.392677], [8.556921, 47.392672], [8.556947, 47.392669], [8.556973, 47.392667], [8.556999, 47.392666], [8.557037, 47.392665], [8.557074, 47.392662], [8.55711, 47.392657], [8.557145, 47.392652], [8.557181, 47.392649], [8.557217, 47.392648], [8.55749, 47.392648], [8.55755, 47.392647], [8.557609, 47.392642], [8.557667, 47.392633], [8.557725, 47.392621], [8.55778, 47.392606], [8.557834, 47.392588], [8.557885, 47.392567], [8.557933, 47.392543], [8.557978, 47.392516], [8.558019, 47.392487]]], "type": "MultiLineString"}, "id": "2717", "properties": {}, "type": "Feature"}, {"bbox": [8.534353, 47.369467, 8.534785, 47.370127], "geometry": {"coordinates": [[[8.534785, 47.369467], [8.534699, 47.369615], [8.534513, 47.369934], [8.534365, 47.370059], [8.534353, 47.370127]]], "type": "MultiLineString"}, "id": "2718", "properties": {}, "type": "Feature"}, {"bbox": [8.503182, 47.421126, 8.507415, 47.422326], "geometry": {"coordinates": [[[8.507415, 47.421126], [8.507188, 47.421141], [8.507178, 47.421142], [8.507168, 47.421143], [8.507158, 47.421145], [8.507149, 47.421146], [8.507139, 47.421147], [8.50713, 47.421149], [8.507125, 47.42115], [8.50712, 47.42115], [8.507114, 47.421151], [8.507109, 47.421152], [8.507104, 47.421153], [8.507098, 47.421155], [8.507098, 47.421155], [8.506472, 47.421329], [8.506012, 47.421416], [8.505942, 47.421424], [8.505352, 47.421574], [8.505343, 47.421576], [8.505335, 47.421579], [8.505328, 47.421583], [8.50532, 47.421587], [8.505313, 47.421591], [8.505307, 47.421596], [8.505277, 47.421626], [8.505064, 47.421801], [8.505058, 47.421806], [8.505051, 47.42181], [8.505043, 47.421813], [8.505036, 47.421816], [8.505027, 47.421819], [8.504512, 47.421958], [8.50414, 47.422079], [8.504101, 47.422091], [8.504062, 47.422103], [8.504022, 47.422113], [8.503182, 47.422326]]], "type": "MultiLineString"}, "id": "2719", "properties": {}, "type": "Feature"}, {"bbox": [8.474523, 47.383801, 8.47534, 47.38547], "geometry": {"coordinates": [[[8.475195, 47.38547], [8.4751, 47.385402], [8.475073, 47.385243], [8.47503, 47.385134], [8.474658, 47.384704], [8.474629, 47.384662], [8.474533, 47.384479], [8.474523, 47.38446], [8.474839, 47.384147], [8.475042, 47.383974], [8.475272, 47.383838], [8.47534, 47.383801]]], "type": "MultiLineString"}, "id": "2720", "properties": {}, "type": "Feature"}, {"bbox": [8.484901, 47.386012, 8.485659, 47.386231], "geometry": {"coordinates": [[[8.485659, 47.386012], [8.485551, 47.38607], [8.485506, 47.386096], [8.485457, 47.386119], [8.485406, 47.386139], [8.485352, 47.386155], [8.485296, 47.386169], [8.485239, 47.386179], [8.485181, 47.386185], [8.485121, 47.386188], [8.485065, 47.386194], [8.485009, 47.386203], [8.484954, 47.386216], [8.484901, 47.386231]]], "type": "MultiLineString"}, "id": "2722", "properties": {}, "type": "Feature"}, {"bbox": [8.588409, 47.397841, 8.589669, 47.399114], "geometry": {"coordinates": [[[8.589669, 47.399114], [8.589582, 47.399006], [8.589354, 47.398573], [8.589254, 47.398407], [8.589161, 47.398347], [8.588774, 47.398296], [8.58874, 47.398288], [8.588706, 47.398277], [8.588674, 47.398265], [8.588644, 47.398251], [8.588616, 47.398235], [8.58859, 47.398217], [8.588566, 47.398198], [8.588545, 47.398178], [8.588527, 47.398156], [8.588511, 47.398133], [8.588498, 47.39811], [8.588409, 47.397841]]], "type": "MultiLineString"}, "id": "2723", "properties": {}, "type": "Feature"}, {"bbox": [8.572813, 47.34763, 8.573461, 47.348949], "geometry": {"coordinates": [[[8.572813, 47.348949], [8.572853, 47.34883], [8.573006, 47.348419], [8.573209, 47.348018], [8.573461, 47.34763]]], "type": "MultiLineString"}, "id": "2724", "properties": {}, "type": "Feature"}, {"bbox": [8.545817, 47.3781, 8.546628, 47.378312], "geometry": {"coordinates": [[[8.545817, 47.3781], [8.546628, 47.378312]]], "type": "MultiLineString"}, "id": "2727", "properties": {}, "type": "Feature"}, {"bbox": [8.596537, 47.371167, 8.598431, 47.373494], "geometry": {"coordinates": [[[8.598431, 47.373494], [8.597772, 47.373299], [8.597657, 47.373262], [8.597547, 47.373218], [8.597443, 47.373167], [8.597345, 47.373112], [8.597255, 47.373051], [8.597172, 47.372985], [8.597117, 47.372937], [8.597105, 47.372927], [8.597091, 47.372918], [8.597077, 47.37291], [8.597062, 47.372903], [8.597045, 47.372897], [8.597028, 47.372892], [8.59701, 47.372888], [8.59697, 47.372882], [8.596931, 47.372876], [8.59692, 47.37287], [8.59691, 47.372863], [8.596901, 47.372856], [8.596893, 47.372849], [8.596885, 47.372841], [8.596879, 47.372833], [8.596874, 47.372824], [8.59687, 47.372815], [8.596867, 47.372806], [8.596865, 47.372797], [8.596865, 47.372787], [8.596866, 47.372566], [8.596865, 47.372511], [8.596861, 47.372457], [8.596854, 47.372402], [8.596791, 47.371978], [8.59677, 47.371878], [8.596739, 47.37178], [8.596696, 47.371684], [8.596676, 47.371643], [8.596644, 47.37158], [8.596612, 47.371509], [8.596588, 47.371437], [8.596572, 47.371364], [8.596537, 47.371167]]], "type": "MultiLineString"}, "id": "2730", "properties": {}, "type": "Feature"}, {"bbox": [8.546052, 47.409987, 8.546182, 47.410199], "geometry": {"coordinates": [[[8.546179, 47.409987], [8.54617, 47.41004], [8.546167, 47.410093], [8.546172, 47.410146], [8.546182, 47.410199], [8.546175, 47.410187], [8.546166, 47.410176], [8.546155, 47.410166], [8.546144, 47.410156], [8.546131, 47.410147], [8.546117, 47.410139], [8.546102, 47.410132], [8.546086, 47.410126], [8.546069, 47.41012], [8.546052, 47.410116]]], "type": "MultiLineString"}, "id": "2731", "properties": {}, "type": "Feature"}, {"bbox": [8.506571, 47.409104, 8.507349, 47.409689], "geometry": {"coordinates": [[[8.506571, 47.40928], [8.506657, 47.409251], [8.506972, 47.409689], [8.507163, 47.409627], [8.507114, 47.409555], [8.507349, 47.409479], [8.507091, 47.409104], [8.506657, 47.409251]]], "type": "MultiLineString"}, "id": "2733", "properties": {}, "type": "Feature"}, {"bbox": [8.589784, 47.369318, 8.590865, 47.371604], "geometry": {"coordinates": [[[8.589784, 47.371604], [8.589838, 47.37114], [8.589843, 47.371111], [8.589853, 47.371082], [8.589866, 47.371054], [8.589883, 47.371027], [8.589903, 47.371001], [8.590282, 47.370566], [8.590311, 47.370525], [8.590316, 47.370494], [8.590323, 47.370464], [8.590334, 47.370434], [8.590349, 47.370405], [8.590368, 47.370377], [8.590481, 47.370229], [8.5905, 47.370201], [8.590516, 47.370171], [8.590527, 47.370141], [8.590533, 47.37011], [8.590536, 47.370079], [8.590537, 47.369954], [8.590543, 47.369879], [8.590559, 47.369804], [8.590585, 47.369731], [8.59062, 47.36966], [8.590665, 47.369592], [8.590865, 47.369318]]], "type": "MultiLineString"}, "id": "2734", "properties": {}, "type": "Feature"}, {"bbox": [8.50105, 47.351839, 8.504302, 47.353155], "geometry": {"coordinates": [[[8.504302, 47.351839], [8.503995, 47.35227], [8.503971, 47.35229], [8.503947, 47.352309], [8.503565, 47.352575], [8.503428, 47.352633], [8.50338, 47.352633], [8.503333, 47.35263], [8.503286, 47.352625], [8.50324, 47.352617], [8.503195, 47.352606], [8.503141, 47.352586], [8.503084, 47.352568], [8.503026, 47.352554], [8.502965, 47.352544], [8.502904, 47.352536], [8.50285, 47.352533], [8.502795, 47.352533], [8.50274, 47.352537], [8.502686, 47.352544], [8.502634, 47.352554], [8.502583, 47.352567], [8.502534, 47.352584], [8.502487, 47.352603], [8.502443, 47.352626], [8.502356, 47.352668], [8.502262, 47.352706], [8.502164, 47.352737], [8.502063, 47.352762], [8.501958, 47.352781], [8.501852, 47.352793], [8.501633, 47.35282], [8.501416, 47.352857], [8.501204, 47.352903], [8.501184, 47.35291], [8.501165, 47.352917], [8.501147, 47.352926], [8.501131, 47.352936], [8.501115, 47.352946], [8.501101, 47.352958], [8.501089, 47.35297], [8.501078, 47.352983], [8.501069, 47.352997], [8.501061, 47.353011], [8.501056, 47.353025], [8.501052, 47.35304], [8.50105, 47.353055], [8.50105, 47.35307], [8.501052, 47.353085], [8.501056, 47.3531], [8.501062, 47.353114], [8.501069, 47.353128], [8.501078, 47.353142], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "2735", "properties": {}, "type": "Feature"}, {"bbox": [8.589557, 47.358727, 8.590359, 47.359976], "geometry": {"coordinates": [[[8.590359, 47.358727], [8.590244, 47.358892], [8.589643, 47.359829], [8.589557, 47.359976]]], "type": "MultiLineString"}, "id": "2736", "properties": {}, "type": "Feature"}, {"bbox": [8.523766, 47.401029, 8.526196, 47.402203], "geometry": {"coordinates": [[[8.523766, 47.402202], [8.523784, 47.402203], [8.523803, 47.402203], [8.523821, 47.402201], [8.523839, 47.402199], [8.523857, 47.402195], [8.523874, 47.40219], [8.52389, 47.402185], [8.523906, 47.402178], [8.52392, 47.40217], [8.523933, 47.402162], [8.524005, 47.40211], [8.524206, 47.401979], [8.524423, 47.40186], [8.524654, 47.401755], [8.524713, 47.401728], [8.524768, 47.401698], [8.524819, 47.401665], [8.524997, 47.401539], [8.52509, 47.401477], [8.52519, 47.401421], [8.525296, 47.40137], [8.525407, 47.401325], [8.525716, 47.40121], [8.526048, 47.401086], [8.526137, 47.401052], [8.526196, 47.401029]]], "type": "MultiLineString"}, "id": "2737", "properties": {}, "type": "Feature"}, {"bbox": [8.497037, 47.423792, 8.49895, 47.424382], "geometry": {"coordinates": [[[8.49895, 47.42382], [8.498785, 47.423864], [8.498743, 47.423792], [8.497037, 47.424232], [8.49709, 47.424324], [8.497128, 47.424382], [8.498833, 47.423948], [8.498785, 47.423864]]], "type": "MultiLineString"}, "id": "2738", "properties": {}, "type": "Feature"}, {"bbox": [8.558048, 47.362143, 8.558275, 47.36241], "geometry": {"coordinates": [[[8.558275, 47.362143], [8.558048, 47.36241]]], "type": "MultiLineString"}, "id": "2739", "properties": {}, "type": "Feature"}, {"bbox": [8.528278, 47.399212, 8.531896, 47.405116], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531812, 47.399418], [8.531809, 47.399425], [8.531805, 47.399433], [8.531801, 47.39944], [8.531787, 47.399462], [8.531767, 47.399496], [8.531764, 47.399502], [8.531761, 47.399507], [8.531758, 47.399513], [8.531758, 47.399513], [8.531756, 47.39952], [8.531754, 47.399527], [8.531753, 47.399534], [8.531743, 47.399595], [8.531735, 47.399678], [8.531737, 47.399761], [8.531747, 47.399844], [8.531751, 47.399872], [8.53175, 47.3999], [8.531745, 47.399928], [8.531736, 47.399955], [8.531643, 47.400193], [8.531633, 47.400222], [8.531627, 47.400251], [8.531625, 47.40028], [8.531626, 47.400309], [8.531626, 47.400333], [8.531624, 47.400356], [8.531619, 47.400379], [8.531612, 47.400402], [8.531601, 47.400424], [8.531583, 47.40046], [8.531571, 47.400497], [8.531562, 47.400535], [8.531559, 47.400573], [8.531556, 47.400606], [8.531549, 47.400639], [8.531538, 47.400671], [8.531523, 47.400702], [8.531505, 47.400732], [8.531413, 47.400868], [8.53112, 47.401322], [8.531112, 47.401335], [8.531063, 47.40141], [8.531019, 47.401476], [8.53097, 47.401539], [8.530916, 47.401602], [8.53078, 47.401753], [8.530677, 47.401856], [8.53059, 47.40195], [8.530514, 47.402047], [8.530447, 47.402148], [8.530369, 47.40228], [8.530362, 47.402292], [8.530257, 47.402467], [8.530131, 47.402657], [8.530099, 47.402712], [8.530074, 47.402768], [8.530056, 47.402825], [8.530033, 47.4029], [8.530001, 47.402973], [8.529962, 47.403044], [8.529845, 47.403233], [8.529825, 47.40327], [8.529654, 47.403549], [8.529499, 47.403792], [8.529435, 47.403911], [8.529404, 47.40397], [8.529304, 47.404156], [8.529291, 47.404177], [8.529262, 47.404228], [8.529221, 47.404295], [8.529174, 47.40436], [8.529123, 47.404424], [8.52905, 47.404509], [8.529013, 47.404556], [8.528982, 47.404605], [8.528957, 47.404655], [8.528937, 47.404707], [8.528899, 47.404828], [8.528897, 47.404834], [8.528894, 47.404839], [8.528891, 47.404845], [8.528886, 47.40485], [8.528882, 47.404855], [8.528876, 47.404859], [8.52887, 47.404864], [8.528864, 47.404868], [8.528857, 47.404871], [8.528695, 47.404946], [8.52851, 47.405023], [8.528278, 47.405116]]], "type": "MultiLineString"}, "id": "2740", "properties": {}, "type": "Feature"}, {"bbox": [8.539962, 47.366745, 8.540229, 47.367171], "geometry": {"coordinates": [[[8.539962, 47.367171], [8.539986, 47.367108], [8.54006, 47.367124], [8.540062, 47.367125], [8.540064, 47.367125], [8.540067, 47.367125], [8.540069, 47.367126], [8.540071, 47.367126], [8.540073, 47.367125], [8.540075, 47.367125], [8.540078, 47.367125], [8.54008, 47.367124], [8.540082, 47.367123], [8.540084, 47.367123], [8.540085, 47.367122], [8.540087, 47.367121], [8.540089, 47.36712], [8.54009, 47.367118], [8.540091, 47.367117], [8.540092, 47.367116], [8.540093, 47.367114], [8.540094, 47.367113], [8.540227, 47.366783], [8.540228, 47.366781], [8.540228, 47.366778], [8.540229, 47.366775], [8.540228, 47.366773], [8.540228, 47.36677], [8.540227, 47.366768], [8.540226, 47.366765], [8.540224, 47.366763], [8.540223, 47.36676], [8.540221, 47.366758], [8.540218, 47.366756], [8.540216, 47.366754], [8.540213, 47.366752], [8.54021, 47.366751], [8.540207, 47.366749], [8.540203, 47.366748], [8.5402, 47.366747], [8.540196, 47.366746], [8.540192, 47.366745]]], "type": "MultiLineString"}, "id": "2741", "properties": {}, "type": "Feature"}, {"bbox": [8.489481, 47.391843, 8.491386, 47.392791], "geometry": {"coordinates": [[[8.491386, 47.392308], [8.491114, 47.391843], [8.489481, 47.392283], [8.489782, 47.392791], [8.489891, 47.392761]]], "type": "MultiLineString"}, "id": "2743", "properties": {}, "type": "Feature"}, {"bbox": [8.581564, 47.363207, 8.586698, 47.364808], "geometry": {"coordinates": [[[8.581564, 47.364808], [8.581685, 47.364752], [8.581862, 47.364632], [8.581976, 47.364568], [8.582929, 47.364133], [8.583341, 47.363904], [8.583566, 47.363779], [8.584202, 47.36351], [8.585051, 47.363226], [8.585073, 47.36322], [8.585096, 47.363215], [8.58512, 47.363211], [8.585144, 47.363208], [8.585168, 47.363207], [8.585193, 47.363208], [8.585217, 47.36321], [8.58524, 47.363213], [8.585264, 47.363218], [8.585286, 47.363224], [8.585308, 47.363232], [8.585329, 47.36324], [8.585348, 47.36325], [8.585366, 47.363261], [8.585383, 47.363273], [8.585398, 47.363286], [8.585411, 47.3633], [8.585422, 47.363315], [8.585899, 47.363813], [8.585986, 47.363892], [8.586001, 47.363904], [8.586018, 47.363915], [8.586035, 47.363925], [8.586054, 47.363934], [8.586075, 47.363942], [8.586096, 47.363949], [8.586117, 47.363954], [8.58614, 47.363959], [8.586163, 47.363962], [8.586186, 47.363963], [8.586209, 47.363963], [8.586233, 47.363962], [8.586255, 47.363959], [8.586278, 47.363956], [8.5863, 47.36395], [8.586321, 47.363944], [8.586342, 47.363936], [8.586359, 47.363925], [8.586376, 47.363913], [8.58639, 47.3639], [8.586403, 47.363886], [8.586414, 47.363872], [8.586423, 47.363857], [8.586431, 47.363841], [8.586436, 47.363825], [8.586439, 47.363809], [8.58644, 47.363793], [8.586434, 47.363741], [8.586428, 47.363689], [8.586421, 47.363637], [8.586411, 47.363571], [8.586402, 47.363505], [8.586392, 47.363438], [8.58639, 47.363425], [8.58639, 47.363412], [8.586392, 47.363399], [8.586395, 47.363385], [8.5864, 47.363372], [8.586406, 47.36336], [8.586414, 47.363348], [8.586424, 47.363336], [8.586434, 47.363325], [8.586447, 47.363314], [8.58646, 47.363305], [8.586475, 47.363296], [8.586491, 47.363288], [8.586508, 47.363281], [8.586525, 47.363275], [8.586544, 47.36327], [8.586562, 47.363266], [8.586582, 47.363264], [8.586601, 47.363262], [8.586621, 47.363262], [8.58664, 47.363262], [8.58666, 47.363264], [8.586679, 47.363267], [8.586698, 47.363271]]], "type": "MultiLineString"}, "id": "2744", "properties": {}, "type": "Feature"}, {"bbox": [8.575938, 47.358729, 8.579025, 47.360357], "geometry": {"coordinates": [[[8.575938, 47.358729], [8.576259, 47.358875], [8.576318, 47.358904], [8.576521, 47.359048], [8.576731, 47.359226], [8.576969, 47.359393], [8.577027, 47.359441], [8.57725, 47.35955], [8.577513, 47.359653], [8.577835, 47.359768], [8.577927, 47.359802], [8.57803, 47.359872], [8.578215, 47.360004], [8.578296, 47.360074], [8.578391, 47.36016], [8.578589, 47.360297], [8.5786, 47.360304], [8.578611, 47.360311], [8.578624, 47.360317], [8.578637, 47.360322], [8.578651, 47.360326], [8.578665, 47.360329], [8.57868, 47.360332], [8.578695, 47.360333], [8.57871, 47.360334], [8.578725, 47.360334], [8.57874, 47.360332], [8.578755, 47.36033], [8.578774, 47.360324], [8.578793, 47.360319], [8.578814, 47.360316], [8.578834, 47.360313], [8.578855, 47.360312], [8.578876, 47.360312], [8.578896, 47.360314], [8.578917, 47.360317], [8.578937, 47.360321], [8.578956, 47.360326], [8.578975, 47.360332], [8.578992, 47.360339], [8.579009, 47.360348], [8.579025, 47.360357]]], "type": "MultiLineString"}, "id": "2745", "properties": {}, "type": "Feature"}, {"bbox": [8.497845, 47.371544, 8.498502, 47.374057], "geometry": {"coordinates": [[[8.498451, 47.374057], [8.498284, 47.373583], [8.498476, 47.373293], [8.498485, 47.373277], [8.498493, 47.373261], [8.498498, 47.373244], [8.498501, 47.373228], [8.498502, 47.373211], [8.498501, 47.373194], [8.498497, 47.373177], [8.498492, 47.373161], [8.498485, 47.373145], [8.498306, 47.37268], [8.498276, 47.372547], [8.498227, 47.372417], [8.49816, 47.372291], [8.498076, 47.37217], [8.498038, 47.372126], [8.498005, 47.372079], [8.497978, 47.372032], [8.497957, 47.371982], [8.497942, 47.371932], [8.497932, 47.371882], [8.497845, 47.371544]]], "type": "MultiLineString"}, "id": "2746", "properties": {}, "type": "Feature"}, {"bbox": [8.561348, 47.350881, 8.565005, 47.352771], "geometry": {"coordinates": [[[8.561348, 47.350881], [8.561819, 47.351081], [8.563196, 47.351651], [8.563277, 47.35169], [8.563359, 47.351693], [8.56344, 47.351701], [8.56352, 47.351715], [8.563955, 47.351874], [8.563971, 47.351881], [8.563986, 47.351889], [8.564, 47.351898], [8.564013, 47.351907], [8.564024, 47.351918], [8.564034, 47.351929], [8.564043, 47.35194], [8.56405, 47.351952], [8.564055, 47.351964], [8.564059, 47.351977], [8.564061, 47.35199], [8.564061, 47.352003], [8.56406, 47.352016], [8.564057, 47.352028], [8.564032, 47.352252], [8.56403, 47.352262], [8.564029, 47.352273], [8.564029, 47.352284], [8.564031, 47.352294], [8.564034, 47.352305], [8.564038, 47.352315], [8.564044, 47.352325], [8.564051, 47.352335], [8.564087, 47.35237], [8.564091, 47.352372], [8.564095, 47.352373], [8.564099, 47.352375], [8.564104, 47.352376], [8.564108, 47.352377], [8.564113, 47.352377], [8.564118, 47.352377], [8.564122, 47.352377], [8.564127, 47.352377], [8.564132, 47.352376], [8.564136, 47.352375], [8.56414, 47.352374], [8.564145, 47.352373], [8.564149, 47.352371], [8.564152, 47.352369], [8.564205, 47.352345], [8.564212, 47.352342], [8.56422, 47.352339], [8.564229, 47.352338], [8.564237, 47.352336], [8.564246, 47.352335], [8.564255, 47.352335], [8.564264, 47.352335], [8.564273, 47.352336], [8.564281, 47.352337], [8.56429, 47.352339], [8.564298, 47.352341], [8.564306, 47.352344], [8.564313, 47.352347], [8.56432, 47.352351], [8.564327, 47.352355], [8.564333, 47.352359], [8.564338, 47.352364], [8.564343, 47.352369], [8.564347, 47.352375], [8.56435, 47.35238], [8.564353, 47.352386], [8.564355, 47.352392], [8.564356, 47.352398], [8.564356, 47.352404], [8.564356, 47.35241], [8.564355, 47.352415], [8.564353, 47.352421], [8.56435, 47.352427], [8.564347, 47.352433], [8.564343, 47.352438], [8.564338, 47.352443], [8.564333, 47.352448], [8.564309, 47.352489], [8.564405, 47.352486], [8.564588, 47.35256], [8.56473, 47.352611], [8.564783, 47.352619], [8.565005, 47.352771]]], "type": "MultiLineString"}, "id": "2749", "properties": {}, "type": "Feature"}, {"bbox": [8.563865, 47.381651, 8.571352, 47.384279], "geometry": {"coordinates": [[[8.571352, 47.381651], [8.571176, 47.381805], [8.570949, 47.382004], [8.570932, 47.382017], [8.57086, 47.382075], [8.570781, 47.382129], [8.570696, 47.382177], [8.570604, 47.382221], [8.570508, 47.382259], [8.570407, 47.382291], [8.570303, 47.382317], [8.570195, 47.382338], [8.570086, 47.382352], [8.569975, 47.382359], [8.569863, 47.38236], [8.569752, 47.382355], [8.569062, 47.38231], [8.568758, 47.382288], [8.56873, 47.382285], [8.568701, 47.382283], [8.568672, 47.382282], [8.568544, 47.382278], [8.568416, 47.382282], [8.568289, 47.382294], [8.568164, 47.382313], [8.568042, 47.382339], [8.567924, 47.382373], [8.56781, 47.382413], [8.566625, 47.382825], [8.566139, 47.382994], [8.566087, 47.383014], [8.566078, 47.383016], [8.566068, 47.383019], [8.566004, 47.383058], [8.565818, 47.383166], [8.565632, 47.383274], [8.564659, 47.383803], [8.564628, 47.383821], [8.564418, 47.383953], [8.564042, 47.384242], [8.564033, 47.384248], [8.564024, 47.384255], [8.564014, 47.38426], [8.564003, 47.384265], [8.563991, 47.384269], [8.563979, 47.384273], [8.563967, 47.384275], [8.563954, 47.384277], [8.563941, 47.384278], [8.563928, 47.384279], [8.563915, 47.384278], [8.563902, 47.384277], [8.563889, 47.384275], [8.563877, 47.384272], [8.563865, 47.384269]]], "type": "MultiLineString"}, "id": "2750", "properties": {}, "type": "Feature"}, {"bbox": [8.52323, 47.338778, 8.524731, 47.339016], "geometry": {"coordinates": [[[8.524731, 47.339016], [8.524726, 47.339005], [8.524721, 47.338995], [8.524714, 47.338985], [8.524706, 47.338976], [8.524696, 47.338967], [8.524685, 47.338958], [8.524674, 47.338951], [8.524661, 47.338944], [8.524647, 47.338937], [8.524633, 47.338932], [8.524618, 47.338928], [8.524603, 47.338924], [8.524587, 47.338922], [8.52323, 47.338778]]], "type": "MultiLineString"}, "id": "2753", "properties": {}, "type": "Feature"}, {"bbox": [8.564216, 47.368044, 8.567878, 47.368897], "geometry": {"coordinates": [[[8.564216, 47.368067], [8.564416, 47.368044], [8.564803, 47.368113], [8.565082, 47.368136], [8.565195, 47.368129], [8.565741, 47.36823], [8.565809, 47.368257], [8.565993, 47.368332], [8.566104, 47.368376], [8.566463, 47.368509], [8.56668, 47.368644], [8.566868, 47.368767], [8.566882, 47.368773], [8.566897, 47.368779], [8.566912, 47.368784], [8.566928, 47.368788], [8.566945, 47.368791], [8.566961, 47.368793], [8.566978, 47.368794], [8.567124, 47.368803], [8.567878, 47.368897]]], "type": "MultiLineString"}, "id": "2754", "properties": {}, "type": "Feature"}, {"bbox": [8.521523, 47.401241, 8.526715, 47.405337], "geometry": {"coordinates": [[[8.523766, 47.402202], [8.523475, 47.402461], [8.523432, 47.402498], [8.523392, 47.402537], [8.523356, 47.402578], [8.523151, 47.402828], [8.522878, 47.403162], [8.522796, 47.403242], [8.522749, 47.403288]], [[8.523714, 47.404798], [8.523615, 47.404861], [8.523509, 47.404917], [8.523395, 47.404966], [8.522814, 47.405192], [8.522721, 47.405225], [8.522624, 47.405252], [8.522525, 47.405275], [8.522423, 47.405292], [8.52232, 47.405303], [8.52217, 47.405317], [8.52202, 47.405328], [8.521869, 47.405336], [8.521869, 47.405336], [8.521869, 47.405336], [8.521815, 47.405337], [8.521762, 47.405334], [8.521709, 47.405329], [8.521657, 47.40532], [8.521641, 47.405316], [8.521626, 47.405312], [8.521612, 47.405306], [8.521598, 47.4053], [8.521586, 47.405293], [8.521574, 47.405285], [8.521563, 47.405276], [8.521554, 47.405267], [8.521546, 47.405257], [8.521539, 47.405247], [8.521533, 47.405236], [8.521529, 47.405225], [8.521526, 47.405214], [8.521523, 47.405183], [8.521523, 47.405151], [8.521527, 47.405119], [8.521535, 47.405088], [8.521547, 47.405057], [8.521562, 47.405027], [8.521935, 47.404383], [8.522123, 47.404079], [8.522332, 47.40378], [8.522562, 47.403489], [8.522621, 47.403421], [8.522684, 47.403354], [8.522749, 47.403288]], [[8.523714, 47.404798], [8.524057, 47.404511], [8.524392, 47.404219], [8.52472, 47.403924], [8.524767, 47.403878], [8.525442, 47.403228], [8.526563, 47.402148], [8.526601, 47.402108], [8.526634, 47.402066], [8.526661, 47.402022], [8.526683, 47.401977], [8.5267, 47.401931], [8.52671, 47.401884], [8.526715, 47.401836], [8.526713, 47.401789], [8.526706, 47.401741], [8.526693, 47.401695], [8.526674, 47.401649], [8.52665, 47.401604], [8.52662, 47.401561], [8.526585, 47.40152], [8.526585, 47.40152], [8.526361, 47.401278], [8.526326, 47.401241]]], "type": "MultiLineString"}, "id": "2766", "properties": {}, "type": "Feature"}, {"bbox": [8.462439, 47.38212, 8.464328, 47.383156], "geometry": {"coordinates": [[[8.464328, 47.38212], [8.464102, 47.382225], [8.464027, 47.382263], [8.463957, 47.382305], [8.463891, 47.38235], [8.463407, 47.382708], [8.463298, 47.382782], [8.46318, 47.382851], [8.463056, 47.382913], [8.462924, 47.382969], [8.462461, 47.383148], [8.462439, 47.383156]]], "type": "MultiLineString"}, "id": "2767", "properties": {}, "type": "Feature"}, {"bbox": [8.534038, 47.417744, 8.534985, 47.419125], "geometry": {"coordinates": [[[8.534985, 47.417744], [8.53414, 47.419009], [8.534038, 47.419125]]], "type": "MultiLineString"}, "id": "2768", "properties": {}, "type": "Feature"}, {"bbox": [8.571058, 47.356165, 8.572961, 47.357209], "geometry": {"coordinates": [[[8.571058, 47.357191], [8.571675, 47.357209], [8.571749, 47.357138], [8.571864, 47.357019], [8.572201, 47.356635], [8.572403, 47.356445], [8.572511, 47.356338], [8.572679, 47.356342], [8.572771, 47.356304], [8.572895, 47.356185], [8.572961, 47.356165]]], "type": "MultiLineString"}, "id": "2770", "properties": {}, "type": "Feature"}, {"bbox": [8.496408, 47.34594, 8.504302, 47.351839], "geometry": {"coordinates": [[[8.504302, 47.351839], [8.50404, 47.351709], [8.504006, 47.351687], [8.503944, 47.351624], [8.503913, 47.351453], [8.503889, 47.351385], [8.503862, 47.351321], [8.503824, 47.351258], [8.503755, 47.351188], [8.503629, 47.351082], [8.503565, 47.351027], [8.503502, 47.350971], [8.503451, 47.35091], [8.503435, 47.350896], [8.503405, 47.350869], [8.503345, 47.350821], [8.503298, 47.350789], [8.503218, 47.350744], [8.503164, 47.350717], [8.503103, 47.350692], [8.50302, 47.350662], [8.502918, 47.350628], [8.502863, 47.350607], [8.502808, 47.350581], [8.502741, 47.350549], [8.502642, 47.3505], [8.502621, 47.35049], [8.502527, 47.350442], [8.502455, 47.3504], [8.502382, 47.350352], [8.502335, 47.350305], [8.502247, 47.350217], [8.502182, 47.350166], [8.502112, 47.350117], [8.502024, 47.350062], [8.501897, 47.349995], [8.501804, 47.349954], [8.50179, 47.349948], [8.501772, 47.349938], [8.501763, 47.349933], [8.501719, 47.349895], [8.501696, 47.349873], [8.501672, 47.34984], [8.501634, 47.349798], [8.501552, 47.349713], [8.501442, 47.349625], [8.501389, 47.349584], [8.501331, 47.349545], [8.501256, 47.349498], [8.501152, 47.349436], [8.501121, 47.349397], [8.501098, 47.349325], [8.501082, 47.349261], [8.501072, 47.349214], [8.501051, 47.349168], [8.501041, 47.349158], [8.501013, 47.34913], [8.500947, 47.349095], [8.500814, 47.349046], [8.500747, 47.349013], [8.500693, 47.348966], [8.500661, 47.348921], [8.50063, 47.348871], [8.500596, 47.348829], [8.500538, 47.348786], [8.500395, 47.348716], [8.50031, 47.348638], [8.500259, 47.348577], [8.500053, 47.348206], [8.499932, 47.348124], [8.499824, 47.348142], [8.499829, 47.348058], [8.499797, 47.348031], [8.499591, 47.348058], [8.49953, 47.348012], [8.499607, 47.347922], [8.499593, 47.347823], [8.499451, 47.347795], [8.499449, 47.347758], [8.499471, 47.347677], [8.499442, 47.347646], [8.49902, 47.347544], [8.499022, 47.347371], [8.499032, 47.347326], [8.498921, 47.347277], [8.498676, 47.347306], [8.498809, 47.347021], [8.498744, 47.346994], [8.498586, 47.347001], [8.498602, 47.346924], [8.498689, 47.346771], [8.498457, 47.346802], [8.498454, 47.3467], [8.498518, 47.346631], [8.498694, 47.346585], [8.498791, 47.346506], [8.498887, 47.346457], [8.498759, 47.346421], [8.498627, 47.346473], [8.498659, 47.346344], [8.498732, 47.346239], [8.49883, 47.346173], [8.498998, 47.346157], [8.499147, 47.346179], [8.499323, 47.346174], [8.499225, 47.34611], [8.498817, 47.345997], [8.49856, 47.346008], [8.498324, 47.346077], [8.498134, 47.346091], [8.498028, 47.345975], [8.497816, 47.34594], [8.49745, 47.34597], [8.497198, 47.34609], [8.497107, 47.346175], [8.496807, 47.346287], [8.496729, 47.346316], [8.496481, 47.34644], [8.496408, 47.346444]]], "type": "MultiLineString"}, "id": "2772", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506865, 47.42678], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506865, 47.42678]]], "type": "MultiLineString"}, "id": "2773", "properties": {}, "type": "Feature"}, {"bbox": [8.601577, 47.368686, 8.605924, 47.371813], "geometry": {"coordinates": [[[8.605924, 47.368686], [8.605886, 47.368941], [8.605842, 47.369037], [8.60577, 47.369097], [8.605139, 47.369631], [8.604699, 47.369946], [8.604588, 47.370012], [8.604486, 47.370085], [8.604395, 47.370164], [8.604315, 47.370248], [8.604281, 47.370314], [8.604238, 47.370377], [8.604187, 47.370438], [8.604129, 47.370495], [8.604063, 47.370548], [8.603991, 47.370598], [8.603852, 47.37069], [8.603725, 47.370791], [8.603613, 47.370899], [8.603515, 47.371014], [8.603342, 47.371205], [8.60328, 47.371255], [8.603213, 47.371301], [8.603141, 47.371343], [8.603063, 47.37138], [8.602981, 47.371413], [8.602895, 47.371441], [8.602618, 47.371527], [8.602511, 47.371552], [8.602402, 47.371572], [8.602291, 47.371585], [8.602223, 47.371592], [8.602156, 47.371603], [8.602091, 47.371618], [8.602028, 47.371637], [8.601968, 47.37166], [8.601911, 47.371685], [8.601857, 47.371714], [8.601817, 47.371738], [8.601773, 47.371759], [8.601727, 47.371777], [8.601678, 47.371792], [8.601628, 47.371804], [8.601577, 47.371813]]], "type": "MultiLineString"}, "id": "2775", "properties": {}, "type": "Feature"}, {"bbox": [8.487742, 47.363589, 8.49214, 47.366476], "geometry": {"coordinates": [[[8.49214, 47.363589], [8.492113, 47.363614], [8.491933, 47.36379], [8.491749, 47.363975], [8.491713, 47.364007], [8.491674, 47.364038], [8.491632, 47.364066], [8.491449, 47.364181], [8.491249, 47.364294], [8.491228, 47.364305], [8.491206, 47.364314], [8.491183, 47.364323], [8.491159, 47.36433], [8.491133, 47.364335], [8.491108, 47.36434], [8.491082, 47.364342], [8.491055, 47.364343], [8.491029, 47.364343], [8.491003, 47.364341], [8.490751, 47.364317], [8.490712, 47.364314], [8.490674, 47.364314], [8.490635, 47.364316], [8.490597, 47.36432], [8.490559, 47.364327], [8.490523, 47.364336], [8.490488, 47.364347], [8.490454, 47.36436], [8.490422, 47.364375], [8.490393, 47.364392], [8.490366, 47.364411], [8.490341, 47.364431], [8.490319, 47.364453], [8.4903, 47.364476], [8.490284, 47.3645], [8.490271, 47.364525], [8.490261, 47.36455], [8.490255, 47.364576], [8.490223, 47.364765], [8.490219, 47.364781], [8.490214, 47.364796], [8.490206, 47.36481], [8.490197, 47.364824], [8.490186, 47.364838], [8.490173, 47.364851], [8.490159, 47.364863], [8.490143, 47.364874], [8.490126, 47.364884], [8.490108, 47.364893], [8.489928, 47.364974], [8.489772, 47.365051], [8.48972, 47.365079], [8.489673, 47.365111], [8.489631, 47.365145], [8.489613, 47.36516], [8.489594, 47.365174], [8.489573, 47.365186], [8.489551, 47.365198], [8.489527, 47.365208], [8.489502, 47.365217], [8.489477, 47.365224], [8.489472, 47.365225], [8.489468, 47.365227], [8.489464, 47.365229], [8.489461, 47.365231], [8.489457, 47.365233], [8.489454, 47.365236], [8.489451, 47.365238], [8.489449, 47.365241], [8.489447, 47.365244], [8.489445, 47.365247], [8.489444, 47.36525], [8.489443, 47.365253], [8.489443, 47.365257], [8.489443, 47.36526], [8.489443, 47.365263], [8.489444, 47.365266], [8.489457, 47.365284], [8.489464, 47.365289], [8.489471, 47.365296], [8.489477, 47.365302], [8.489482, 47.365309], [8.489487, 47.365316], [8.48949, 47.365323], [8.489492, 47.365331], [8.489494, 47.365339], [8.489494, 47.365346], [8.489493, 47.365354], [8.489492, 47.365362], [8.489489, 47.365369], [8.489486, 47.365377], [8.489482, 47.365384], [8.489476, 47.36539], [8.48947, 47.365397], [8.489464, 47.365403], [8.489456, 47.365409], [8.489448, 47.365414], [8.489439, 47.365419], [8.48942, 47.365426], [8.489401, 47.365433], [8.48938, 47.365438], [8.489359, 47.365442], [8.489338, 47.365445], [8.489211, 47.365458], [8.489192, 47.36546], [8.489173, 47.365464], [8.489154, 47.365469], [8.489137, 47.365475], [8.48912, 47.365482], [8.489104, 47.36549], [8.489089, 47.365498], [8.489075, 47.365508], [8.489062, 47.365518], [8.489051, 47.365529], [8.489041, 47.365541], [8.48897, 47.365636], [8.488954, 47.365654], [8.488937, 47.365672], [8.488917, 47.365688], [8.488895, 47.365703], [8.488871, 47.365717], [8.488797, 47.365755], [8.48878, 47.365763], [8.488762, 47.36577], [8.488743, 47.365776], [8.488724, 47.365781], [8.488704, 47.365785], [8.488684, 47.365788], [8.488664, 47.365789], [8.488558, 47.365795], [8.488548, 47.365795], [8.488538, 47.365797], [8.488529, 47.365799], [8.488519, 47.365802], [8.48851, 47.365805], [8.488502, 47.365808], [8.488494, 47.365813], [8.488486, 47.365817], [8.48848, 47.365822], [8.488407, 47.365882], [8.48838, 47.365904], [8.488353, 47.365925], [8.488324, 47.365945], [8.488134, 47.366079], [8.488027, 47.366161], [8.487931, 47.366249], [8.487847, 47.366342], [8.487742, 47.366476]]], "type": "MultiLineString"}, "id": "2776", "properties": {}, "type": "Feature"}, {"bbox": [8.483697, 47.391307, 8.484147, 47.391871], "geometry": {"coordinates": [[[8.483697, 47.391307], [8.483843, 47.391526], [8.484059, 47.391565], [8.484084, 47.391616], [8.484147, 47.391871]]], "type": "MultiLineString"}, "id": "2778", "properties": {}, "type": "Feature"}, {"bbox": [8.545599, 47.417474, 8.545834, 47.417651], "geometry": {"coordinates": [[[8.545617, 47.417513], [8.545601, 47.417541], [8.5456, 47.417543], [8.5456, 47.417545], [8.545599, 47.417547], [8.545599, 47.417549], [8.545599, 47.41755], [8.5456, 47.417552], [8.5456, 47.417554], [8.545601, 47.417556], [8.545602, 47.417557], [8.545603, 47.417559], [8.545605, 47.41756], [8.545606, 47.417562], [8.545608, 47.417563], [8.54561, 47.417564], [8.545612, 47.417565], [8.54577, 47.417647], [8.545772, 47.417648], [8.545774, 47.417649], [8.545776, 47.417649], [8.545778, 47.41765], [8.545781, 47.41765], [8.545783, 47.41765], [8.545785, 47.417651], [8.545788, 47.417651], [8.54579, 47.41765], [8.545792, 47.41765], [8.545794, 47.41765], [8.545797, 47.417649], [8.545799, 47.417649], [8.545801, 47.417648], [8.545803, 47.417647], [8.545829, 47.417634], [8.545834, 47.417608], [8.545686, 47.417482], [8.545684, 47.41748], [8.545682, 47.417479], [8.54568, 47.417478], [8.545678, 47.417477], [8.545676, 47.417476], [8.545673, 47.417475], [8.545671, 47.417475], [8.545668, 47.417474], [8.545666, 47.417474], [8.545663, 47.417474], [8.54566, 47.417474], [8.545657, 47.417474], [8.545655, 47.417474], [8.545652, 47.417475], [8.54565, 47.417475], [8.545647, 47.417476], [8.545645, 47.417477], [8.545643, 47.417478], [8.54564, 47.417479], [8.545639, 47.41748], [8.545637, 47.417482], [8.545635, 47.417483], [8.545634, 47.417485], [8.545633, 47.417487], [8.545632, 47.417488], [8.545617, 47.417513]]], "type": "MultiLineString"}, "id": "2780", "properties": {}, "type": "Feature"}, {"bbox": [8.491386, 47.392115, 8.492496, 47.392308], "geometry": {"coordinates": [[[8.492496, 47.392205], [8.492337, 47.392115], [8.491964, 47.392172], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "2786", "properties": {}, "type": "Feature"}, {"bbox": [8.532217, 47.380155, 8.53412, 47.380987], "geometry": {"coordinates": [[[8.53412, 47.380155], [8.53339, 47.380294], [8.532987, 47.380429], [8.532347, 47.380821], [8.532217, 47.380987]]], "type": "MultiLineString"}, "id": "2789", "properties": {}, "type": "Feature"}, {"bbox": [8.552016, 47.394665, 8.552912, 47.395412], "geometry": {"coordinates": [[[8.552837, 47.395412], [8.552912, 47.395367], [8.552596, 47.395123], [8.552511, 47.395173], [8.552287, 47.394993], [8.552319, 47.394975], [8.552183, 47.394858], [8.55215, 47.394875], [8.552033, 47.394774], [8.552108, 47.394736], [8.552026, 47.394665], [8.552016, 47.39467]]], "type": "MultiLineString"}, "id": "2791", "properties": {}, "type": "Feature"}, {"bbox": [8.530293, 47.338398, 8.530753, 47.338646], "geometry": {"coordinates": [[[8.530293, 47.338487], [8.530731, 47.338398], [8.530753, 47.338587], [8.530472, 47.338646]]], "type": "MultiLineString"}, "id": "2792", "properties": {}, "type": "Feature"}, {"bbox": [8.57622, 47.355425, 8.578796, 47.356757], "geometry": {"coordinates": [[[8.57622, 47.355425], [8.576269, 47.355452], [8.576346, 47.35553], [8.577213, 47.355803], [8.577714, 47.355978], [8.577952, 47.35609], [8.578652, 47.356304], [8.578796, 47.356757]]], "type": "MultiLineString"}, "id": "2801", "properties": {}, "type": "Feature"}, {"bbox": [8.534648, 47.365878, 8.539799, 47.370322], "geometry": {"coordinates": [[[8.539799, 47.365878], [8.538942, 47.366814], [8.538303, 47.367503], [8.538618, 47.367555], [8.538567, 47.367639], [8.538456, 47.367735], [8.537664, 47.3686], [8.537543, 47.368698], [8.537341, 47.368841], [8.537232, 47.36891], [8.537109, 47.368948], [8.536791, 47.369039], [8.536564, 47.369116], [8.536508, 47.369078], [8.536078, 47.369102], [8.535868, 47.36911], [8.535751, 47.369095], [8.535486, 47.369109], [8.53479, 47.370135], [8.534665, 47.370256], [8.534648, 47.370322]]], "type": "MultiLineString"}, "id": "2803", "properties": {}, "type": "Feature"}, {"bbox": [8.538672, 47.401625, 8.539707, 47.402096], "geometry": {"coordinates": [[[8.538672, 47.401625], [8.538707, 47.401653], [8.539067, 47.401823], [8.539679, 47.402085], [8.539707, 47.402096]]], "type": "MultiLineString"}, "id": "2804", "properties": {}, "type": "Feature"}, {"bbox": [8.559287, 47.35587, 8.560505, 47.356432], "geometry": {"coordinates": [[[8.559287, 47.35587], [8.560395, 47.356388], [8.560505, 47.356432]]], "type": "MultiLineString"}, "id": "2805", "properties": {}, "type": "Feature"}, {"bbox": [8.58818, 47.369537, 8.590661, 47.372193], "geometry": {"coordinates": [[[8.590661, 47.372193], [8.590655, 47.372182], [8.590648, 47.372171], [8.59064, 47.37216], [8.59063, 47.372151], [8.590619, 47.372141], [8.590607, 47.372133], [8.590594, 47.372125], [8.59058, 47.372118], [8.590564, 47.372112], [8.590549, 47.372107], [8.590532, 47.372103], [8.590515, 47.3721], [8.590498, 47.372098], [8.59038, 47.372089], [8.590313, 47.372081], [8.590247, 47.37207], [8.590183, 47.372054], [8.590121, 47.372035], [8.590062, 47.372013], [8.590005, 47.371986], [8.58998, 47.37197], [8.589956, 47.371953], [8.589935, 47.371934], [8.589917, 47.371914], [8.589901, 47.371893], [8.589861, 47.371797], [8.589822, 47.3717], [8.589784, 47.371604], [8.589781, 47.371598], [8.589763, 47.371559], [8.589741, 47.371522], [8.589714, 47.371486], [8.589683, 47.371452], [8.588453, 47.370216], [8.588333, 47.370096], [8.588296, 47.370055], [8.588265, 47.370011], [8.58824, 47.369966], [8.588221, 47.36992], [8.588208, 47.369872], [8.588191, 47.369788], [8.588182, 47.369723], [8.58818, 47.369657], [8.588186, 47.369592], [8.588194, 47.369537]]], "type": "MultiLineString"}, "id": "2806", "properties": {}, "type": "Feature"}, {"bbox": [8.5225, 47.377005, 8.524051, 47.378513], "geometry": {"coordinates": [[[8.524021, 47.377005], [8.524051, 47.377125], [8.5225, 47.377658], [8.523147, 47.378513]]], "type": "MultiLineString"}, "id": "2810", "properties": {}, "type": "Feature"}, {"bbox": [8.48149, 47.407008, 8.483032, 47.408749], "geometry": {"coordinates": [[[8.48149, 47.407008], [8.4815, 47.407036], [8.481513, 47.407064], [8.481529, 47.407091], [8.481548, 47.407116], [8.48157, 47.407141], [8.481669, 47.407231], [8.481979, 47.407538], [8.482135, 47.407708], [8.482445, 47.408028], [8.48249, 47.408083], [8.482528, 47.408139], [8.482558, 47.408198], [8.482581, 47.408258], [8.482629, 47.408467], [8.482631, 47.408475], [8.482634, 47.408482], [8.482638, 47.408489], [8.482643, 47.408496], [8.482649, 47.408502], [8.482655, 47.408508], [8.482663, 47.408514], [8.482671, 47.408519], [8.482966, 47.408703], [8.483032, 47.408749]]], "type": "MultiLineString"}, "id": "2811", "properties": {}, "type": "Feature"}, {"bbox": [8.501032, 47.321997, 8.512843, 47.328589], "geometry": {"coordinates": [[[8.512843, 47.328575], [8.512618, 47.328535], [8.512423, 47.328563], [8.512125, 47.32854], [8.511728, 47.328587], [8.511517, 47.328589], [8.511431, 47.328585], [8.511344, 47.328577], [8.511259, 47.328565], [8.511176, 47.328547], [8.511098, 47.328526], [8.511023, 47.328501], [8.510952, 47.32847], [8.510886, 47.328436], [8.510824, 47.328398], [8.510804, 47.328383], [8.510787, 47.328368], [8.510772, 47.328351], [8.510759, 47.328334], [8.510748, 47.328316], [8.510748, 47.328316], [8.510638, 47.328091], [8.51057, 47.32795], [8.510493, 47.327818], [8.510483, 47.327797], [8.510476, 47.327776], [8.510471, 47.327755], [8.51047, 47.327734], [8.510471, 47.327712], [8.510476, 47.327691], [8.510476, 47.327691], [8.510542, 47.327469], [8.510543, 47.327338], [8.510494, 47.327203], [8.510342, 47.32696], [8.51018, 47.326709], [8.509934, 47.326301], [8.509916, 47.326267], [8.509911, 47.32626], [8.509905, 47.326253], [8.509898, 47.326247], [8.509892, 47.326241], [8.509884, 47.326236], [8.509876, 47.326232], [8.509867, 47.326228], [8.509858, 47.326224], [8.509377, 47.326046], [8.509339, 47.326032], [8.509301, 47.326016], [8.509264, 47.326], [8.508841, 47.325804], [8.508716, 47.32576], [8.508664, 47.32574], [8.508615, 47.325717], [8.508568, 47.325691], [8.508525, 47.325663], [8.508332, 47.325527], [8.508032, 47.325301], [8.50764, 47.325025], [8.50753, 47.324947], [8.507526, 47.324944], [8.507502, 47.324927], [8.50739, 47.324846], [8.507342, 47.324811], [8.507287, 47.324771], [8.507222, 47.32473], [8.507078, 47.324629], [8.506961, 47.324546], [8.506709, 47.324367], [8.506424, 47.324172], [8.506127, 47.323983], [8.505845, 47.323827], [8.505517, 47.323664], [8.505494, 47.323654], [8.505364, 47.323611], [8.505343, 47.323587], [8.505337, 47.323573], [8.504609, 47.323221], [8.504493, 47.323181], [8.504374, 47.323165], [8.504211, 47.323193], [8.504204, 47.323194], [8.504196, 47.323194], [8.504188, 47.323194], [8.50418, 47.323194], [8.504172, 47.323193], [8.504165, 47.323192], [8.504157, 47.32319], [8.50415, 47.323188], [8.504143, 47.323185], [8.504137, 47.323182], [8.50413, 47.323179], [8.503966, 47.323096], [8.503956, 47.323088], [8.503947, 47.32308], [8.503939, 47.323071], [8.503932, 47.323062], [8.503927, 47.323053], [8.503922, 47.323043], [8.503893, 47.322962], [8.503891, 47.322958], [8.503889, 47.322954], [8.503886, 47.32295], [8.503882, 47.322946], [8.503879, 47.322942], [8.503874, 47.322939], [8.503869, 47.322936], [8.503864, 47.322933], [8.503859, 47.322931], [8.503853, 47.322929], [8.503847, 47.322927], [8.503841, 47.322926], [8.503835, 47.322925], [8.503828, 47.322924], [8.503822, 47.322924], [8.503815, 47.322924], [8.503809, 47.322924], [8.503802, 47.322925], [8.503796, 47.322926], [8.50379, 47.322928], [8.503784, 47.32293], [8.503778, 47.322932], [8.503735, 47.322955], [8.503694, 47.322979], [8.503656, 47.323006], [8.503622, 47.323034], [8.503524, 47.323121], [8.503523, 47.323123], [8.503521, 47.323124], [8.503519, 47.323125], [8.503517, 47.323126], [8.503515, 47.323127], [8.503513, 47.323127], [8.503511, 47.323128], [8.503508, 47.323128], [8.503506, 47.323129], [8.503504, 47.323129], [8.503501, 47.323129], [8.503499, 47.323129], [8.503496, 47.323129], [8.503494, 47.323128], [8.503492, 47.323128], [8.503489, 47.323127], [8.503487, 47.323126], [8.503485, 47.323125], [8.503483, 47.323124], [8.503481, 47.323123], [8.50348, 47.323122], [8.503478, 47.323121], [8.503477, 47.323119], [8.503476, 47.323118], [8.503475, 47.323116], [8.503474, 47.323114], [8.503474, 47.323113], [8.503473, 47.323111], [8.503473, 47.32311], [8.503473, 47.322947], [8.503472, 47.322929], [8.503469, 47.322912], [8.503463, 47.322895], [8.503463, 47.322895], [8.503463, 47.322895], [8.503462, 47.322893], [8.503461, 47.322891], [8.503459, 47.322889], [8.503457, 47.322888], [8.503456, 47.322886], [8.503453, 47.322884], [8.503451, 47.322883], [8.503449, 47.322882], [8.503446, 47.322881], [8.503443, 47.32288], [8.50344, 47.322879], [8.503437, 47.322878], [8.503434, 47.322878], [8.503431, 47.322878], [8.503428, 47.322878], [8.503425, 47.322878], [8.503422, 47.322878], [8.503419, 47.322878], [8.503416, 47.322879], [8.503413, 47.32288], [8.50341, 47.322881], [8.503408, 47.322882], [8.503405, 47.322883], [8.503403, 47.322885], [8.503401, 47.322886], [8.503399, 47.322888], [8.503397, 47.32289], [8.503396, 47.322891], [8.503395, 47.322893], [8.503395, 47.322893], [8.503387, 47.322906], [8.503378, 47.322917], [8.503368, 47.322928], [8.503356, 47.322939], [8.503343, 47.322948], [8.503329, 47.322957], [8.503314, 47.322965], [8.503298, 47.322973], [8.503281, 47.322979], [8.503263, 47.322984], [8.503245, 47.322988], [8.503226, 47.322991], [8.503219, 47.322993], [8.503212, 47.322994], [8.503205, 47.322996], [8.503199, 47.322999], [8.503193, 47.323001], [8.503187, 47.323005], [8.503181, 47.323008], [8.503177, 47.323012], [8.503172, 47.323016], [8.503168, 47.32302], [8.503165, 47.323024], [8.503122, 47.323089], [8.503118, 47.323094], [8.503114, 47.323098], [8.50311, 47.323103], [8.503104, 47.323106], [8.503104, 47.323106], [8.503104, 47.323106], [8.503099, 47.32311], [8.503093, 47.323113], [8.503087, 47.323115], [8.503087, 47.323115], [8.503087, 47.323115], [8.503083, 47.323117], [8.503079, 47.323118], [8.503075, 47.323119], [8.503029, 47.32313], [8.503023, 47.323132], [8.503017, 47.323134], [8.503011, 47.323137], [8.503006, 47.32314], [8.503001, 47.323143], [8.502996, 47.323147], [8.502992, 47.32315], [8.502989, 47.323154], [8.502881, 47.323289], [8.50288, 47.32329], [8.502878, 47.323292], [8.502876, 47.323294], [8.502874, 47.323295], [8.502871, 47.323296], [8.502869, 47.323297], [8.502866, 47.323298], [8.502863, 47.323299], [8.502861, 47.3233], [8.502858, 47.3233], [8.502855, 47.323301], [8.502852, 47.323301], [8.502849, 47.323301], [8.502846, 47.3233], [8.502843, 47.3233], [8.50284, 47.323299], [8.502837, 47.323299], [8.502834, 47.323298], [8.502832, 47.323297], [8.502829, 47.323295], [8.502827, 47.323294], [8.502825, 47.323292], [8.502823, 47.323291], [8.502821, 47.323289], [8.50282, 47.323287], [8.502819, 47.323285], [8.502818, 47.323283], [8.502806, 47.323244], [8.502798, 47.323205], [8.502796, 47.323165], [8.502798, 47.323125], [8.502805, 47.323085], [8.502805, 47.323083], [8.502805, 47.323081], [8.502805, 47.323079], [8.502805, 47.323078], [8.502804, 47.323076], [8.502803, 47.323074], [8.502802, 47.323072], [8.502801, 47.323071], [8.502799, 47.323069], [8.502798, 47.323068], [8.502796, 47.323066], [8.502794, 47.323065], [8.502791, 47.323064], [8.502789, 47.323063], [8.502787, 47.323062], [8.502784, 47.323062], [8.502781, 47.323061], [8.502779, 47.323061], [8.502776, 47.323061], [8.502773, 47.323061], [8.50277, 47.323061], [8.502768, 47.323061], [8.502765, 47.323061], [8.502763, 47.323062], [8.50276, 47.323063], [8.502758, 47.323064], [8.502755, 47.323065], [8.502753, 47.323066], [8.502751, 47.323067], [8.50275, 47.323069], [8.502748, 47.32307], [8.50273, 47.323089], [8.502709, 47.323106], [8.502687, 47.323123], [8.502582, 47.323193], [8.502581, 47.323194], [8.502579, 47.323195], [8.502577, 47.323196], [8.502575, 47.323197], [8.502573, 47.323197], [8.502571, 47.323198], [8.502569, 47.323198], [8.502567, 47.323198], [8.502565, 47.323198], [8.502563, 47.323198], [8.502561, 47.323198], [8.502558, 47.323198], [8.502556, 47.323197], [8.502554, 47.323197], [8.502552, 47.323196], [8.502551, 47.323195], [8.502549, 47.323194], [8.502547, 47.323193], [8.502546, 47.323192], [8.502544, 47.323191], [8.502543, 47.32319], [8.502542, 47.323189], [8.502541, 47.323187], [8.502541, 47.323186], [8.50254, 47.323185], [8.50254, 47.323183], [8.50254, 47.323182], [8.50254, 47.32318], [8.50254, 47.323179], [8.50254, 47.323177], [8.502541, 47.323176], [8.502577, 47.323102], [8.502578, 47.3231], [8.502578, 47.323098], [8.502578, 47.323096], [8.502578, 47.323094], [8.502578, 47.323093], [8.502578, 47.323091], [8.502577, 47.323089], [8.502576, 47.323087], [8.502575, 47.323086], [8.502574, 47.323084], [8.502572, 47.323083], [8.50257, 47.323081], [8.502568, 47.32308], [8.502566, 47.323079], [8.502564, 47.323078], [8.502562, 47.323077], [8.502559, 47.323076], [8.502557, 47.323076], [8.502554, 47.323075], [8.502552, 47.323075], [8.502549, 47.323075], [8.502546, 47.323075], [8.502544, 47.323075], [8.502541, 47.323075], [8.502539, 47.323076], [8.502536, 47.323077], [8.502534, 47.323077], [8.502531, 47.323078], [8.502529, 47.323079], [8.502527, 47.323081], [8.502445, 47.323135], [8.502443, 47.323136], [8.502442, 47.323137], [8.50244, 47.323138], [8.502438, 47.323138], [8.502437, 47.323139], [8.502435, 47.323139], [8.502433, 47.323139], [8.502431, 47.323139], [8.502429, 47.323139], [8.502427, 47.323139], [8.502426, 47.323139], [8.502424, 47.323139], [8.502422, 47.323138], [8.50242, 47.323138], [8.502418, 47.323137], [8.502417, 47.323137], [8.502415, 47.323136], [8.502414, 47.323135], [8.502413, 47.323134], [8.502412, 47.323133], [8.502411, 47.323132], [8.50241, 47.323131], [8.502409, 47.32313], [8.502408, 47.323128], [8.502408, 47.323127], [8.502408, 47.323126], [8.502408, 47.323125], [8.502408, 47.323123], [8.502408, 47.323122], [8.502408, 47.323121], [8.502409, 47.32312], [8.50241, 47.323118], [8.502451, 47.323057], [8.502458, 47.323046], [8.502464, 47.323035], [8.502468, 47.323023], [8.50247, 47.323011], [8.502471, 47.322999], [8.502471, 47.322986], [8.502466, 47.322919], [8.502465, 47.322852], [8.502468, 47.322784], [8.502468, 47.322751], [8.502463, 47.322717], [8.502454, 47.322685], [8.502441, 47.322653], [8.5024, 47.322569], [8.502399, 47.322567], [8.502397, 47.322565], [8.502396, 47.322563], [8.502394, 47.322562], [8.502392, 47.32256], [8.50239, 47.322559], [8.502388, 47.322558], [8.502386, 47.322557], [8.502383, 47.322556], [8.502381, 47.322555], [8.502378, 47.322554], [8.502376, 47.322554], [8.502373, 47.322554], [8.50237, 47.322554], [8.502367, 47.322554], [8.502364, 47.322554], [8.502362, 47.322554], [8.502359, 47.322555], [8.502356, 47.322555], [8.502354, 47.322556], [8.502351, 47.322557], [8.502349, 47.322558], [8.502347, 47.322559], [8.502345, 47.322561], [8.502343, 47.322562], [8.502342, 47.322564], [8.50234, 47.322565], [8.502339, 47.322567], [8.502338, 47.322569], [8.502337, 47.322571], [8.502337, 47.322573], [8.502336, 47.322574], [8.502332, 47.322607], [8.502324, 47.322638], [8.502311, 47.322669], [8.502295, 47.322699], [8.502292, 47.322704], [8.502289, 47.322707], [8.502285, 47.322711], [8.502281, 47.322714], [8.502276, 47.322718], [8.502271, 47.32272], [8.502266, 47.322723], [8.50226, 47.322725], [8.502254, 47.322727], [8.502248, 47.322729], [8.502242, 47.32273], [8.502235, 47.32273], [8.502174, 47.322735], [8.50216, 47.322737], [8.502147, 47.322739], [8.502134, 47.322742], [8.502122, 47.322746], [8.50211, 47.322751], [8.502099, 47.322756], [8.502089, 47.322762], [8.502079, 47.322769], [8.50201, 47.322821], [8.502008, 47.322822], [8.502006, 47.322823], [8.502005, 47.322824], [8.502003, 47.322825], [8.502001, 47.322825], [8.501999, 47.322826], [8.501997, 47.322826], [8.501995, 47.322826], [8.501992, 47.322827], [8.50199, 47.322827], [8.501988, 47.322826], [8.501986, 47.322826], [8.501984, 47.322826], [8.501982, 47.322825], [8.50198, 47.322825], [8.501978, 47.322824], [8.501976, 47.322823], [8.501974, 47.322822], [8.501973, 47.322821], [8.501971, 47.32282], [8.50197, 47.322819], [8.501969, 47.322818], [8.501968, 47.322816], [8.501967, 47.322815], [8.501967, 47.322813], [8.501966, 47.322812], [8.501966, 47.32281], [8.501966, 47.322809], [8.501966, 47.322808], [8.501967, 47.322806], [8.501967, 47.322805], [8.501968, 47.322803], [8.502042, 47.322679], [8.502046, 47.322671], [8.502049, 47.322663], [8.502051, 47.322655], [8.502052, 47.322647], [8.502052, 47.322639], [8.502051, 47.322631], [8.502049, 47.322623], [8.502045, 47.322615], [8.502041, 47.322607], [8.50199, 47.322528], [8.501987, 47.322522], [8.501984, 47.322516], [8.501982, 47.322509], [8.501981, 47.322502], [8.50198, 47.322495], [8.501979, 47.322446], [8.501979, 47.322444], [8.501979, 47.322441], [8.501978, 47.322438], [8.501976, 47.322436], [8.501975, 47.322433], [8.501973, 47.322431], [8.501971, 47.322429], [8.501968, 47.322426], [8.501966, 47.322424], [8.501963, 47.322423], [8.50196, 47.322421], [8.501956, 47.32242], [8.501953, 47.322418], [8.501949, 47.322417], [8.501945, 47.322417], [8.501941, 47.322416], [8.501937, 47.322416], [8.501934, 47.322415], [8.50193, 47.322416], [8.501926, 47.322416], [8.501922, 47.322416], [8.501918, 47.322417], [8.501914, 47.322418], [8.501911, 47.32242], [8.501907, 47.322421], [8.501904, 47.322423], [8.501901, 47.322424], [8.501899, 47.322426], [8.501896, 47.322428], [8.501894, 47.322431], [8.501892, 47.322433], [8.501891, 47.322436], [8.501889, 47.322438], [8.501861, 47.322507], [8.501846, 47.322552], [8.501845, 47.322556], [8.501843, 47.322559], [8.50184, 47.322563], [8.501837, 47.322567], [8.501833, 47.32257], [8.501829, 47.322573], [8.501825, 47.322576], [8.50182, 47.322579], [8.501815, 47.322581], [8.50181, 47.322583], [8.501804, 47.322585], [8.501799, 47.322586], [8.501793, 47.322587], [8.501787, 47.322588], [8.501748, 47.32259], [8.501737, 47.322591], [8.501726, 47.322593], [8.501715, 47.322595], [8.501705, 47.322599], [8.501695, 47.322602], [8.501686, 47.322607], [8.50165, 47.322625], [8.501648, 47.322626], [8.501645, 47.322627], [8.501643, 47.322627], [8.501641, 47.322628], [8.501638, 47.322628], [8.501636, 47.322629], [8.501634, 47.322629], [8.501631, 47.322629], [8.501629, 47.322629], [8.501626, 47.322628], [8.501624, 47.322628], [8.501621, 47.322627], [8.501619, 47.322626], [8.501617, 47.322626], [8.501615, 47.322625], [8.501613, 47.322623], [8.501612, 47.322622], [8.50161, 47.322621], [8.501609, 47.32262], [8.501607, 47.322618], [8.501607, 47.322617], [8.501606, 47.322615], [8.501605, 47.322613], [8.501605, 47.322612], [8.501597, 47.322558], [8.501597, 47.322556], [8.501596, 47.322554], [8.501595, 47.322552], [8.501594, 47.322551], [8.501593, 47.322549], [8.501591, 47.322547], [8.501589, 47.322546], [8.501587, 47.322544], [8.501585, 47.322543], [8.501583, 47.322542], [8.50158, 47.32254], [8.501578, 47.32254], [8.501575, 47.322539], [8.501572, 47.322538], [8.50157, 47.322538], [8.501567, 47.322537], [8.501564, 47.322537], [8.501561, 47.322537], [8.501558, 47.322538], [8.501555, 47.322538], [8.501552, 47.322539], [8.50155, 47.322539], [8.501547, 47.32254], [8.501544, 47.322541], [8.501542, 47.322542], [8.501509, 47.32256], [8.501508, 47.322561], [8.501506, 47.322561], [8.501505, 47.322562], [8.501504, 47.322562], [8.501502, 47.322563], [8.5015, 47.322563], [8.501499, 47.322563], [8.501497, 47.322563], [8.501495, 47.322563], [8.501494, 47.322563], [8.501492, 47.322562], [8.501491, 47.322562], [8.501489, 47.322562], [8.501488, 47.322561], [8.501486, 47.32256], [8.501485, 47.32256], [8.501484, 47.322559], [8.501483, 47.322558], [8.501482, 47.322557], [8.501481, 47.322556], [8.50148, 47.322555], [8.50148, 47.322554], [8.501479, 47.322553], [8.501466, 47.322516], [8.501462, 47.322506], [8.501456, 47.322496], [8.50145, 47.322486], [8.501442, 47.322477], [8.501433, 47.322468], [8.501423, 47.32246], [8.501412, 47.322452], [8.501297, 47.322379], [8.50129, 47.322374], [8.501284, 47.322369], [8.501278, 47.322364], [8.501274, 47.322358], [8.50127, 47.322352], [8.501266, 47.322346], [8.501202, 47.32221], [8.501194, 47.322195], [8.501185, 47.322181], [8.501174, 47.322168], [8.501044, 47.322012], [8.501032, 47.321997]]], "type": "MultiLineString"}, "id": "2813", "properties": {}, "type": "Feature"}, {"bbox": [8.593184, 47.373646, 8.595222, 47.375289], "geometry": {"coordinates": [[[8.593184, 47.373646], [8.593215, 47.373671], [8.593417, 47.374141], [8.593776, 47.37489], [8.593791, 47.374917], [8.59381, 47.374944], [8.593831, 47.374969], [8.593856, 47.374993], [8.593883, 47.375015], [8.593914, 47.375036], [8.593946, 47.375055], [8.593981, 47.375072], [8.594018, 47.375086], [8.594057, 47.375099], [8.594097, 47.37511], [8.594138, 47.375118], [8.594635, 47.3752], [8.595222, 47.375289]]], "type": "MultiLineString"}, "id": "2815", "properties": {}, "type": "Feature"}, {"bbox": [8.529075, 47.39314, 8.529365, 47.393515], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.529165, 47.393361], [8.529169, 47.39336], [8.529172, 47.393359], [8.529175, 47.393357], [8.529177, 47.393356], [8.52918, 47.393354], [8.529182, 47.393352], [8.529184, 47.39335], [8.529186, 47.393348], [8.529188, 47.393346], [8.529189, 47.393344], [8.52919, 47.393342], [8.529191, 47.393339], [8.529191, 47.393337], [8.529191, 47.393335], [8.529191, 47.393332], [8.529179, 47.393278], [8.52916, 47.393225], [8.529134, 47.393174], [8.529129, 47.393168], [8.529123, 47.393163], [8.529116, 47.393158], [8.529109, 47.393153], [8.529101, 47.393149], [8.529093, 47.393146], [8.529084, 47.393142], [8.529075, 47.39314]]], "type": "MultiLineString"}, "id": "2816", "properties": {}, "type": "Feature"}, {"bbox": [8.496232, 47.42615, 8.502591, 47.427205], "geometry": {"coordinates": [[[8.502591, 47.42615], [8.501519, 47.426155], [8.501226, 47.426167], [8.500934, 47.426193], [8.500647, 47.426233], [8.499066, 47.426413], [8.498925, 47.426435], [8.498787, 47.426465], [8.498654, 47.426503], [8.498526, 47.426548], [8.49837, 47.427128], [8.497842, 47.427076], [8.497316, 47.427018], [8.496791, 47.426955], [8.496666, 47.427023], [8.496367, 47.427136], [8.496232, 47.427205]]], "type": "MultiLineString"}, "id": "2818", "properties": {}, "type": "Feature"}, {"bbox": [8.539325, 47.396236, 8.540514, 47.396708], "geometry": {"coordinates": [[[8.540514, 47.396236], [8.539903, 47.396413], [8.539325, 47.396708]]], "type": "MultiLineString"}, "id": "2819", "properties": {}, "type": "Feature"}, {"bbox": [8.566397, 47.364948, 8.566924, 47.365581], "geometry": {"coordinates": [[[8.566924, 47.364948], [8.566598, 47.365232], [8.566397, 47.365581]]], "type": "MultiLineString"}, "id": "2820", "properties": {}, "type": "Feature"}, {"bbox": [8.531943, 47.4114, 8.533258, 47.412805], "geometry": {"coordinates": [[[8.533258, 47.411408], [8.533255, 47.411421], [8.532987, 47.4114], [8.532977, 47.411422], [8.532965, 47.411443], [8.53295, 47.411464], [8.532933, 47.411483], [8.532913, 47.411502], [8.532891, 47.411519], [8.532867, 47.411535], [8.532841, 47.41155], [8.532813, 47.411563], [8.532784, 47.411574], [8.532753, 47.411584], [8.53229, 47.411707], [8.531943, 47.411808], [8.53214, 47.412154], [8.532157, 47.412201], [8.532234, 47.412195], [8.532317, 47.412805]]], "type": "MultiLineString"}, "id": "2821", "properties": {}, "type": "Feature"}, {"bbox": [8.559467, 47.403274, 8.561128, 47.403411], "geometry": {"coordinates": [[[8.559467, 47.403326], [8.559485, 47.403315], [8.559505, 47.403306], [8.559526, 47.403297], [8.559548, 47.40329], [8.55957, 47.403284], [8.559594, 47.403279], [8.559618, 47.403276], [8.559642, 47.403274], [8.559667, 47.403274], [8.559691, 47.403275], [8.559715, 47.403277], [8.560601, 47.403389], [8.560665, 47.403394], [8.56079, 47.403403], [8.5609, 47.403411], [8.561128, 47.403407]]], "type": "MultiLineString"}, "id": "2822", "properties": {}, "type": "Feature"}, {"bbox": [8.51929, 47.391961, 8.523937, 47.393262], "geometry": {"coordinates": [[[8.523937, 47.392247], [8.523523, 47.392119], [8.523419, 47.392007], [8.52333, 47.391961], [8.520614, 47.392514], [8.52021, 47.392617], [8.51977, 47.392733], [8.51929, 47.392866], [8.51935, 47.392967], [8.519328, 47.392993], [8.519488, 47.393262]]], "type": "MultiLineString"}, "id": "2823", "properties": {}, "type": "Feature"}, {"bbox": [8.506484, 47.424125, 8.50856, 47.4245], "geometry": {"coordinates": [[[8.50856, 47.4245], [8.508435, 47.424477], [8.507941, 47.424293], [8.507783, 47.424239], [8.507619, 47.424195], [8.507449, 47.424161], [8.507275, 47.424138], [8.507099, 47.424126], [8.506922, 47.424125], [8.506746, 47.424135], [8.506572, 47.424156], [8.506484, 47.424172]]], "type": "MultiLineString"}, "id": "2824", "properties": {}, "type": "Feature"}, {"bbox": [8.508602, 47.406931, 8.510213, 47.407618], "geometry": {"coordinates": [[[8.508602, 47.407618], [8.508973, 47.407272], [8.508992, 47.407256], [8.509014, 47.407241], [8.509037, 47.407228], [8.509061, 47.407216], [8.509088, 47.407206], [8.509115, 47.407197], [8.509385, 47.407107], [8.509414, 47.407099], [8.509444, 47.407093], [8.509475, 47.407088], [8.509506, 47.407086], [8.509538, 47.407085], [8.509569, 47.407085], [8.509682, 47.40709], [8.510163, 47.406931], [8.510213, 47.406948]]], "type": "MultiLineString"}, "id": "2825", "properties": {}, "type": "Feature"}, {"bbox": [8.539849, 47.397943, 8.540878, 47.398339], "geometry": {"coordinates": [[[8.540327, 47.398142], [8.540767, 47.398339], [8.540878, 47.398224], [8.540436, 47.39804], [8.540327, 47.398142], [8.54025, 47.398117], [8.539849, 47.397943]]], "type": "MultiLineString"}, "id": "2826", "properties": {}, "type": "Feature"}, {"bbox": [8.484317, 47.406832, 8.484836, 47.407938], "geometry": {"coordinates": [[[8.484317, 47.406832], [8.484434, 47.406833], [8.484538, 47.407031], [8.484588, 47.40714], [8.484606, 47.407194], [8.484685, 47.407448], [8.484697, 47.407496], [8.484607, 47.407622], [8.484604, 47.407628], [8.484601, 47.407634], [8.484599, 47.40764], [8.484598, 47.407647], [8.484598, 47.407653], [8.484598, 47.40766], [8.4846, 47.407666], [8.484602, 47.407672], [8.484605, 47.407678], [8.484608, 47.407684], [8.484613, 47.40769], [8.484787, 47.407902], [8.484836, 47.407938]]], "type": "MultiLineString"}, "id": "2827", "properties": {}, "type": "Feature"}, {"bbox": [8.473022, 47.3717, 8.478307, 47.372547], "geometry": {"coordinates": [[[8.478307, 47.372547], [8.478172, 47.372521], [8.477259, 47.37237], [8.477184, 47.372362], [8.477108, 47.372359], [8.477032, 47.37236], [8.476972, 47.372365], [8.476912, 47.372372], [8.476852, 47.372381], [8.476746, 47.372398], [8.47664, 47.372415], [8.476533, 47.372432], [8.476449, 47.372443], [8.476365, 47.372453], [8.476281, 47.372461], [8.476155, 47.372471], [8.47603, 47.37248], [8.475904, 47.372489], [8.475821, 47.372494], [8.475738, 47.372497], [8.475655, 47.372499], [8.475654, 47.372499], [8.475147, 47.372449], [8.475096, 47.372444], [8.475046, 47.372438], [8.474997, 47.372432], [8.474952, 47.372426], [8.474908, 47.37242], [8.474863, 47.372414], [8.474848, 47.372411], [8.474833, 47.372408], [8.474819, 47.372405], [8.474794, 47.372398], [8.47477, 47.37239], [8.474747, 47.372381], [8.474725, 47.37237], [8.474659, 47.372335], [8.474593, 47.3723], [8.474528, 47.372264], [8.474117, 47.372039], [8.474064, 47.372012], [8.474006, 47.371989], [8.473946, 47.371969], [8.473678, 47.371893], [8.473614, 47.371873], [8.473553, 47.371849], [8.473494, 47.371823], [8.473414, 47.371783], [8.473336, 47.371742], [8.473259, 47.3717], [8.473022, 47.371702]]], "type": "MultiLineString"}, "id": "2828", "properties": {}, "type": "Feature"}, {"bbox": [8.544898, 47.417313, 8.545471, 47.417827], "geometry": {"coordinates": [[[8.545471, 47.417469], [8.545354, 47.417332], [8.545313, 47.417315], [8.545037, 47.417313], [8.545026, 47.417313], [8.545014, 47.417314], [8.545003, 47.417316], [8.544991, 47.417318], [8.54498, 47.417321], [8.54497, 47.417324], [8.54496, 47.417328], [8.54495, 47.417333], [8.544942, 47.417338], [8.544933, 47.417344], [8.544926, 47.41735], [8.544919, 47.417356], [8.544913, 47.417363], [8.544909, 47.41737], [8.544905, 47.417378], [8.544901, 47.417386], [8.544899, 47.417393], [8.544898, 47.417401], [8.544898, 47.417409], [8.544915, 47.417738], [8.544916, 47.417746], [8.544918, 47.417753], [8.54492, 47.417761], [8.544924, 47.417768], [8.544928, 47.417775], [8.544934, 47.417782], [8.54494, 47.417789], [8.544947, 47.417795], [8.544955, 47.4178], [8.544963, 47.417806], [8.544972, 47.41781], [8.544982, 47.417815], [8.544992, 47.417818], [8.545002, 47.417821], [8.545013, 47.417823], [8.545024, 47.417825], [8.545036, 47.417826], [8.545047, 47.417827], [8.545058, 47.417826], [8.54507, 47.417825], [8.545081, 47.417824], [8.545092, 47.417822], [8.545102, 47.417819], [8.545113, 47.417815], [8.545122, 47.417811], [8.545131, 47.417807], [8.54514, 47.417801], [8.545236, 47.417728], [8.545321, 47.417648], [8.545395, 47.417563], [8.545471, 47.417469]]], "type": "MultiLineString"}, "id": "2837", "properties": {}, "type": "Feature"}, {"bbox": [8.517906, 47.3953, 8.518829, 47.397864], "geometry": {"coordinates": [[[8.518096, 47.3953], [8.518097, 47.395304], [8.518156, 47.395305], [8.518206, 47.395454], [8.518143, 47.395551], [8.518087, 47.395657], [8.51805, 47.396019], [8.518058, 47.3961], [8.518005, 47.396155], [8.517982, 47.396214], [8.517906, 47.39665], [8.517934, 47.396724], [8.517945, 47.39681], [8.518123, 47.397209], [8.518155, 47.397249], [8.518196, 47.397291], [8.518286, 47.397498], [8.518312, 47.397853], [8.518518, 47.397864], [8.518829, 47.397859]]], "type": "MultiLineString"}, "id": "2839", "properties": {}, "type": "Feature"}, {"bbox": [8.584605, 47.403075, 8.592121, 47.406781], "geometry": {"coordinates": [[[8.584605, 47.406657], [8.584694, 47.406674], [8.584784, 47.406686], [8.584876, 47.406692], [8.584968, 47.406691], [8.585086, 47.406692], [8.585204, 47.4067], [8.58532, 47.406714], [8.58567, 47.406758], [8.585845, 47.406774], [8.586022, 47.406781], [8.586198, 47.406779], [8.586618, 47.406761], [8.586786, 47.406749], [8.586952, 47.406728], [8.587114, 47.406699], [8.587273, 47.406661], [8.588066, 47.406443], [8.588937, 47.4062], [8.591186, 47.405573], [8.591734, 47.405419], [8.591816, 47.405393], [8.591895, 47.405362], [8.59197, 47.405328], [8.591998, 47.405308], [8.592024, 47.405287], [8.592047, 47.405264], [8.592067, 47.405241], [8.592084, 47.405216], [8.592098, 47.40519], [8.592109, 47.405164], [8.592116, 47.405137], [8.59212, 47.405109], [8.592121, 47.405082], [8.592118, 47.405054], [8.592112, 47.405027], [8.592102, 47.405001], [8.592089, 47.404975], [8.592073, 47.40495], [8.592053, 47.404925], [8.591932, 47.404789], [8.59182, 47.40465], [8.591719, 47.404508], [8.591629, 47.404362], [8.591387, 47.403976], [8.591362, 47.403883], [8.59135, 47.40383], [8.591345, 47.403776], [8.591347, 47.403723], [8.591357, 47.403669], [8.591374, 47.403617], [8.591397, 47.403565], [8.591521, 47.403383], [8.591533, 47.403367], [8.591543, 47.403349], [8.591551, 47.403332], [8.591557, 47.403313], [8.59156, 47.403295], [8.591561, 47.403276], [8.59156, 47.403257], [8.591556, 47.403239], [8.59155, 47.403221], [8.591542, 47.403203], [8.591531, 47.403186], [8.591519, 47.403169], [8.591504, 47.403153], [8.591487, 47.403138], [8.591469, 47.403125], [8.591452, 47.403114], [8.591434, 47.403105], [8.591415, 47.403097], [8.591394, 47.40309], [8.591373, 47.403085], [8.591351, 47.40308], [8.591329, 47.403077], [8.591307, 47.403076], [8.591284, 47.403075], [8.591262, 47.403076], [8.591239, 47.403079], [8.591217, 47.403083], [8.591196, 47.403088], [8.591175, 47.403094], [8.591155, 47.403102], [8.591137, 47.40311], [8.591119, 47.40312], [8.5911, 47.403133], [8.591082, 47.403148], [8.591066, 47.403163], [8.591053, 47.403179], [8.591041, 47.403197], [8.591032, 47.403214], [8.591026, 47.403232], [8.591021, 47.403251], [8.59102, 47.40327], [8.59102, 47.403288], [8.591024, 47.403307], [8.591029, 47.403325], [8.591247, 47.40368], [8.591299, 47.403839], [8.591387, 47.403976]]], "type": "MultiLineString"}, "id": "2840", "properties": {}, "type": "Feature"}, {"bbox": [8.472898, 47.378266, 8.476462, 47.38156], "geometry": {"coordinates": [[[8.476462, 47.378266], [8.476044, 47.37849], [8.475944, 47.378548], [8.475852, 47.378611], [8.475767, 47.378678], [8.475317, 47.379062], [8.475129, 47.379229], [8.475083, 47.379274], [8.475041, 47.379321], [8.475006, 47.37937], [8.474984, 47.379402], [8.47496, 47.379434], [8.474935, 47.379465], [8.474608, 47.379852], [8.474484, 47.379986], [8.474344, 47.380112], [8.474188, 47.380229], [8.474019, 47.380337], [8.473714, 47.380515], [8.473653, 47.380553], [8.473595, 47.380592], [8.47354, 47.380634], [8.47332, 47.380806], [8.473293, 47.38083], [8.473268, 47.380855], [8.473247, 47.380882], [8.47323, 47.380909], [8.473216, 47.380938], [8.473206, 47.380967], [8.4732, 47.380997], [8.473165, 47.381247], [8.473158, 47.381282], [8.473147, 47.381316], [8.473132, 47.381349], [8.473113, 47.381381], [8.47309, 47.381412], [8.473063, 47.381442], [8.473033, 47.38147], [8.473, 47.381496], [8.472963, 47.38152], [8.472898, 47.38156]]], "type": "MultiLineString"}, "id": "2841", "properties": {}, "type": "Feature"}, {"bbox": [8.577299, 47.382294, 8.583323, 47.387802], "geometry": {"coordinates": [[[8.582011, 47.387802], [8.582039, 47.387787], [8.582501, 47.387252], [8.582561, 47.38718], [8.582617, 47.387106], [8.582668, 47.38703], [8.582744, 47.386912], [8.582783, 47.386854], [8.582825, 47.386797], [8.58287, 47.386742], [8.582985, 47.386605], [8.58315, 47.386393], [8.583208, 47.386309], [8.583255, 47.386221], [8.58329, 47.386132], [8.583312, 47.38604], [8.583323, 47.385947], [8.583321, 47.385855], [8.583299, 47.385606], [8.583289, 47.385544], [8.583272, 47.385483], [8.583248, 47.385423], [8.583216, 47.385365], [8.583129, 47.385224], [8.582984, 47.385015], [8.58297, 47.384997], [8.582954, 47.38498], [8.582936, 47.384963], [8.582916, 47.384948], [8.582895, 47.384934], [8.582871, 47.384921], [8.582847, 47.384909], [8.582821, 47.384899], [8.582794, 47.38489], [8.582766, 47.384882], [8.581846, 47.384666], [8.581695, 47.384634], [8.581541, 47.384607], [8.581386, 47.384586], [8.581315, 47.384578], [8.581244, 47.384571], [8.581173, 47.384566], [8.580561, 47.384525], [8.580522, 47.384524], [8.580482, 47.384524], [8.580442, 47.384527], [8.580403, 47.384532], [8.580365, 47.38454], [8.580359, 47.384532], [8.580352, 47.384524], [8.580344, 47.384516], [8.580335, 47.384509], [8.580326, 47.384503], [8.580315, 47.384497], [8.580304, 47.384492], [8.580293, 47.384488], [8.58028, 47.384484], [8.580268, 47.384481], [8.580255, 47.384478], [8.580055, 47.384441], [8.579862, 47.384391], [8.579677, 47.384329], [8.579501, 47.384255], [8.579336, 47.38417], [8.57894, 47.383944], [8.5789, 47.38392], [8.578864, 47.383893], [8.578831, 47.383864], [8.578802, 47.383834], [8.578776, 47.383801], [8.578755, 47.383768], [8.578738, 47.383733], [8.578725, 47.383698], [8.578685, 47.383562], [8.578647, 47.383375], [8.578633, 47.383324], [8.578614, 47.383274], [8.578588, 47.383224], [8.578558, 47.383176], [8.57845, 47.383024], [8.578173, 47.38268], [8.578027, 47.382526], [8.578019, 47.382518], [8.577999, 47.3825], [8.577977, 47.382484], [8.577954, 47.382469], [8.577928, 47.382456], [8.5779, 47.382444], [8.577871, 47.382434], [8.577841, 47.382426], [8.577716, 47.382395], [8.577299, 47.382294]]], "type": "MultiLineString"}, "id": "2843", "properties": {}, "type": "Feature"}, {"bbox": [8.523275, 47.411969, 8.524215, 47.412139], "geometry": {"coordinates": [[[8.524215, 47.412139], [8.52401, 47.412106], [8.523625, 47.412084], [8.52343, 47.412027], [8.523275, 47.411969]]], "type": "MultiLineString"}, "id": "2844", "properties": {}, "type": "Feature"}, {"bbox": [8.496477, 47.403887, 8.497547, 47.40761], "geometry": {"coordinates": [[[8.496491, 47.403887], [8.496485, 47.4039], [8.496481, 47.403913], [8.496478, 47.403926], [8.496477, 47.403939], [8.496478, 47.403952], [8.496481, 47.403965], [8.496485, 47.403978], [8.496491, 47.40399], [8.496498, 47.404002], [8.496723, 47.404276], [8.496782, 47.404332], [8.496847, 47.404385], [8.496917, 47.404435], [8.497116, 47.404581], [8.497158, 47.404616], [8.497195, 47.404653], [8.497226, 47.404693], [8.497252, 47.404734], [8.497272, 47.404777], [8.497362, 47.405031], [8.4974, 47.405155], [8.497419, 47.405237], [8.497435, 47.405403], [8.497444, 47.405611], [8.497445, 47.405621], [8.497457, 47.405777], [8.497469, 47.405883], [8.497472, 47.406029], [8.497472, 47.406047], [8.497457, 47.406162], [8.497392, 47.406483], [8.497379, 47.40655], [8.497371, 47.406723], [8.497387, 47.406895], [8.497424, 47.407065], [8.497451, 47.407172], [8.497464, 47.40728], [8.497464, 47.407388], [8.497478, 47.407522], [8.497547, 47.40761]]], "type": "MultiLineString"}, "id": "2845", "properties": {}, "type": "Feature"}, {"bbox": [8.491717, 47.41143, 8.495642, 47.416802], "geometry": {"coordinates": [[[8.491717, 47.41143], [8.491811, 47.41152], [8.491912, 47.411633], [8.492304, 47.412075], [8.492355, 47.412138], [8.492602, 47.412438], [8.492612, 47.412449], [8.492622, 47.412461], [8.492633, 47.412472], [8.492648, 47.412487], [8.492663, 47.412501], [8.492679, 47.412515], [8.492925, 47.41272], [8.492925, 47.41272], [8.492955, 47.412748], [8.492981, 47.412777], [8.493004, 47.412808], [8.493023, 47.41284], [8.493038, 47.412873], [8.493048, 47.412907], [8.493055, 47.412941], [8.493057, 47.412975], [8.493067, 47.413073], [8.49306, 47.413171], [8.493006, 47.413594], [8.492987, 47.41381], [8.492985, 47.414027], [8.493, 47.414244], [8.49309, 47.415058], [8.4931, 47.415124], [8.493113, 47.415188], [8.49313, 47.415253], [8.493138, 47.415279], [8.493147, 47.415304], [8.493156, 47.41533], [8.493234, 47.415505], [8.493334, 47.415674], [8.493457, 47.415837], [8.493833, 47.416286], [8.493872, 47.416332], [8.494236, 47.416724], [8.494306, 47.416802], [8.494421, 47.416751], [8.495132, 47.416431], [8.495334, 47.416329], [8.495551, 47.416178], [8.495642, 47.416109]]], "type": "MultiLineString"}, "id": "2848", "properties": {}, "type": "Feature"}, {"bbox": [8.56049, 47.392206, 8.563228, 47.392813], "geometry": {"coordinates": [[[8.56049, 47.392206], [8.560495, 47.39222], [8.560502, 47.392234], [8.56051, 47.392248], [8.56052, 47.392261], [8.560532, 47.392273], [8.560545, 47.392285], [8.56056, 47.392296], [8.560576, 47.392306], [8.560593, 47.392315], [8.560611, 47.392323], [8.56063, 47.39233], [8.56065, 47.392336], [8.561381, 47.392529], [8.561765, 47.39262], [8.561826, 47.392634], [8.561889, 47.392644], [8.561952, 47.392653], [8.562171, 47.392677], [8.562212, 47.392681], [8.562253, 47.392683], [8.562294, 47.392685], [8.562335, 47.392687], [8.562375, 47.392691], [8.562414, 47.392698], [8.562488, 47.392712], [8.562563, 47.392722], [8.562639, 47.392729], [8.562845, 47.392743], [8.562904, 47.392748], [8.562963, 47.392757], [8.56302, 47.392768], [8.563228, 47.392813]]], "type": "MultiLineString"}, "id": "2850", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394524, 8.492571, 47.394843], "geometry": {"coordinates": [[[8.492571, 47.394524], [8.491234, 47.394843], [8.491182, 47.394825], [8.491128, 47.39481], [8.491073, 47.394798], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "2853", "properties": {}, "type": "Feature"}, {"bbox": [8.54281, 47.372073, 8.543801, 47.372133], "geometry": {"coordinates": [[[8.54281, 47.372133], [8.543088, 47.372133], [8.543131, 47.37212], [8.543801, 47.372073]]], "type": "MultiLineString"}, "id": "2855", "properties": {}, "type": "Feature"}, {"bbox": [8.539887, 47.412351, 8.540439, 47.412642], "geometry": {"coordinates": [[[8.539887, 47.412532], [8.540182, 47.412642], [8.540439, 47.412351]]], "type": "MultiLineString"}, "id": "2856", "properties": {}, "type": "Feature"}, {"bbox": [8.515553, 47.402677, 8.518024, 47.405318], "geometry": {"coordinates": [[[8.518024, 47.402677], [8.517912, 47.402714], [8.517806, 47.402758], [8.517705, 47.402808], [8.517612, 47.402864], [8.517526, 47.402926], [8.517448, 47.402992], [8.517385, 47.403047], [8.517315, 47.403098], [8.517238, 47.403144], [8.517155, 47.403186], [8.517067, 47.403222], [8.516974, 47.403252], [8.516904, 47.403282], [8.516836, 47.403313], [8.516768, 47.403346], [8.516569, 47.403464], [8.516307, 47.403609], [8.515935, 47.403784], [8.51573, 47.403877], [8.515553, 47.403956], [8.515636, 47.403942], [8.515696, 47.403955], [8.515896, 47.404017], [8.516082, 47.404115], [8.516251, 47.404224], [8.516312, 47.404261], [8.516537, 47.404385], [8.516637, 47.404448], [8.516723, 47.404511], [8.516953, 47.404745], [8.517396, 47.405108], [8.517765, 47.405318]]], "type": "MultiLineString"}, "id": "2867", "properties": {}, "type": "Feature"}, {"bbox": [8.517998, 47.398549, 8.520384, 47.399638], "geometry": {"coordinates": [[[8.517998, 47.398549], [8.518159, 47.39857], [8.518245, 47.398635], [8.518312, 47.398673], [8.518317, 47.398677], [8.518322, 47.39868], [8.518326, 47.398684], [8.518329, 47.398688], [8.518332, 47.398692], [8.518335, 47.398696], [8.518337, 47.398701], [8.518338, 47.398705], [8.518339, 47.39871], [8.518339, 47.398714], [8.518339, 47.398719], [8.518338, 47.398724], [8.518337, 47.398728], [8.518335, 47.398732], [8.518332, 47.398737], [8.518329, 47.398741], [8.518271, 47.39881], [8.518266, 47.398817], [8.518263, 47.398825], [8.518261, 47.398832], [8.51826, 47.39884], [8.51826, 47.398848], [8.518261, 47.398856], [8.518263, 47.398863], [8.518266, 47.39887], [8.51827, 47.398877], [8.518275, 47.398883], [8.518281, 47.398889], [8.518287, 47.398895], [8.518295, 47.3989], [8.518303, 47.398905], [8.518311, 47.398909], [8.51832, 47.398913], [8.518371, 47.398933], [8.51922, 47.399256], [8.519236, 47.399263], [8.51925, 47.39927], [8.519264, 47.399279], [8.519277, 47.399288], [8.519288, 47.399298], [8.519298, 47.399308], [8.519306, 47.399319], [8.51935, 47.399366], [8.519382, 47.3994], [8.519405, 47.399415], [8.51943, 47.399429], [8.519457, 47.39944], [8.519486, 47.39945], [8.519515, 47.399458], [8.519545, 47.399465], [8.520316, 47.399584], [8.520326, 47.399587], [8.520335, 47.399591], [8.520344, 47.399596], [8.520352, 47.399601], [8.520359, 47.399606], [8.520365, 47.399612], [8.520371, 47.399618], [8.520376, 47.399624], [8.520381, 47.399631], [8.520384, 47.399638]]], "type": "MultiLineString"}, "id": "2871", "properties": {}, "type": "Feature"}, {"bbox": [8.562987, 47.389715, 8.567304, 47.396903], "geometry": {"coordinates": [[[8.565621, 47.389715], [8.565641, 47.3898], [8.56561, 47.389846], [8.565144, 47.390486], [8.565117, 47.390521], [8.565085, 47.390553], [8.56505, 47.390584], [8.56472, 47.390854], [8.564685, 47.390883], [8.564651, 47.390913], [8.564618, 47.390943], [8.564409, 47.391142], [8.56435, 47.391203], [8.564296, 47.391266], [8.564247, 47.391332], [8.563624, 47.392251], [8.563328, 47.39272], [8.563313, 47.392741], [8.563295, 47.392761], [8.563275, 47.39278], [8.563253, 47.392797], [8.563228, 47.392813], [8.563169, 47.392916], [8.563022, 47.393173], [8.563007, 47.393203], [8.562996, 47.393234], [8.562989, 47.393265], [8.562987, 47.393297], [8.562988, 47.393329], [8.562994, 47.393361], [8.563003, 47.393393], [8.563017, 47.393423], [8.563035, 47.393453], [8.563056, 47.393482], [8.563081, 47.39351], [8.563109, 47.393535], [8.563141, 47.39356], [8.563176, 47.393582], [8.563213, 47.393602], [8.563252, 47.393619], [8.563466, 47.393669], [8.564048, 47.393718], [8.564102, 47.393721], [8.564156, 47.393721], [8.56421, 47.393719], [8.564263, 47.393713], [8.564316, 47.393705], [8.564621, 47.393647], [8.565846, 47.393409], [8.56588, 47.393404], [8.565915, 47.3934], [8.56595, 47.393399], [8.565985, 47.3934], [8.566019, 47.393403], [8.566054, 47.393408], [8.566087, 47.393415], [8.566119, 47.393424], [8.56615, 47.393435], [8.56618, 47.393448], [8.566208, 47.393462], [8.566233, 47.393479], [8.566257, 47.393496], [8.566278, 47.393515], [8.566296, 47.393535], [8.566312, 47.393557], [8.566403, 47.393695], [8.566455, 47.393781], [8.566531, 47.393914], [8.566782, 47.394327], [8.567107, 47.394883], [8.567138, 47.394945], [8.56716, 47.395009], [8.567172, 47.395075], [8.56719, 47.39524], [8.5673, 47.396179], [8.567304, 47.396271], [8.567295, 47.396364], [8.567271, 47.396455], [8.567122, 47.396903]]], "type": "MultiLineString"}, "id": "2873", "properties": {}, "type": "Feature"}, {"bbox": [8.593674, 47.37173, 8.594441, 47.37346], "geometry": {"coordinates": [[[8.593898, 47.37173], [8.593709, 47.372055], [8.593674, 47.372195], [8.593727, 47.372333], [8.593953, 47.372639], [8.594241, 47.373033], [8.594273, 47.37308], [8.5943, 47.373129], [8.594323, 47.373178], [8.594441, 47.37346]]], "type": "MultiLineString"}, "id": "2874", "properties": {}, "type": "Feature"}, {"bbox": [8.5582, 47.37618, 8.558663, 47.376436], "geometry": {"coordinates": [[[8.5582, 47.376436], [8.558236, 47.376416], [8.558429, 47.376261], [8.558663, 47.37618]]], "type": "MultiLineString"}, "id": "2875", "properties": {}, "type": "Feature"}, {"bbox": [8.530476, 47.427692, 8.532677, 47.429609], "geometry": {"coordinates": [[[8.532677, 47.427692], [8.532348, 47.428054], [8.532338, 47.428065], [8.532327, 47.428076], [8.532316, 47.428087], [8.532233, 47.428167], [8.532155, 47.428248], [8.532082, 47.428332], [8.532065, 47.428352], [8.532048, 47.428371], [8.53203, 47.42839], [8.531871, 47.428552], [8.531842, 47.42858], [8.531811, 47.428606], [8.531777, 47.428631], [8.531641, 47.428729], [8.531583, 47.428767], [8.53152, 47.428802], [8.531453, 47.428833], [8.531382, 47.42886], [8.531014, 47.428987], [8.530988, 47.428997], [8.530964, 47.429009], [8.530941, 47.429021], [8.530919, 47.429035], [8.5309, 47.429051], [8.530883, 47.429067], [8.530868, 47.429084], [8.53076, 47.429221], [8.530733, 47.429259], [8.530712, 47.429298], [8.530696, 47.429339], [8.530682, 47.429378], [8.530596, 47.429474], [8.530476, 47.429609]]], "type": "MultiLineString"}, "id": "2876", "properties": {}, "type": "Feature"}, {"bbox": [8.503077, 47.402423, 8.504317, 47.403432], "geometry": {"coordinates": [[[8.503077, 47.402423], [8.503239, 47.402523], [8.503397, 47.402627], [8.50355, 47.402733], [8.503784, 47.402913], [8.503838, 47.402962], [8.503888, 47.403013], [8.503936, 47.403064], [8.504188, 47.40332], [8.504317, 47.403432]]], "type": "MultiLineString"}, "id": "2877", "properties": {}, "type": "Feature"}, {"bbox": [8.542483, 47.404893, 8.542753, 47.405119], "geometry": {"coordinates": [[[8.542681, 47.405119], [8.542724, 47.405092], [8.54253, 47.40505], [8.542524, 47.405048], [8.542518, 47.405045], [8.542513, 47.405042], [8.542508, 47.405039], [8.542503, 47.405036], [8.542499, 47.405032], [8.542495, 47.405029], [8.542492, 47.405025], [8.542489, 47.40502], [8.542487, 47.405016], [8.542485, 47.405012], [8.542484, 47.405007], [8.542483, 47.405002], [8.542484, 47.404998], [8.542484, 47.404993], [8.542486, 47.404989], [8.542487, 47.404984], [8.54249, 47.40498], [8.542493, 47.404976], [8.542496, 47.404972], [8.5425, 47.404968], [8.542505, 47.404965], [8.54251, 47.404961], [8.542515, 47.404958], [8.54252, 47.404956], [8.542526, 47.404954], [8.542533, 47.404952], [8.542539, 47.40495], [8.542753, 47.404893]]], "type": "MultiLineString"}, "id": "2878", "properties": {}, "type": "Feature"}, {"bbox": [8.545932, 47.371986, 8.546273, 47.37218], "geometry": {"coordinates": [[[8.546273, 47.37211], [8.546222, 47.3721], [8.546145, 47.371986], [8.545932, 47.372051], [8.545957, 47.372078], [8.546019, 47.37218], [8.546207, 47.372119], [8.546222, 47.3721]]], "type": "MultiLineString"}, "id": "2879", "properties": {}, "type": "Feature"}, {"bbox": [8.575786, 47.392509, 8.587239, 47.39496], "geometry": {"coordinates": [[[8.575786, 47.39496], [8.575947, 47.394878], [8.576051, 47.39483], [8.57616, 47.394787], [8.576274, 47.39475], [8.576392, 47.39472], [8.576513, 47.394696], [8.576513, 47.394696], [8.576767, 47.394655], [8.576859, 47.39464], [8.577833, 47.394491], [8.579032, 47.394294], [8.579049, 47.394291], [8.579066, 47.394288], [8.579084, 47.394285], [8.579171, 47.394272], [8.579322, 47.394251], [8.57967, 47.394206], [8.579838, 47.394179], [8.580002, 47.394141], [8.58016, 47.394094], [8.580932, 47.393834], [8.580983, 47.393815], [8.581031, 47.393793], [8.581076, 47.393768], [8.581118, 47.39374], [8.581156, 47.39371], [8.58119, 47.393678], [8.581219, 47.393644], [8.581243, 47.393608], [8.581263, 47.393571], [8.581278, 47.393533], [8.581483, 47.392889], [8.581493, 47.392857], [8.581574, 47.392602], [8.581578, 47.392593], [8.581583, 47.392583], [8.581589, 47.392574], [8.581596, 47.392566], [8.581604, 47.392558], [8.581614, 47.39255], [8.581624, 47.392543], [8.581635, 47.392536], [8.581647, 47.39253], [8.581659, 47.392525], [8.581673, 47.392521], [8.581686, 47.392517], [8.5817, 47.392515], [8.581721, 47.392511], [8.581743, 47.39251], [8.581765, 47.392509], [8.581786, 47.39251], [8.581808, 47.392512], [8.581829, 47.392515], [8.581849, 47.392519], [8.581869, 47.392525], [8.581889, 47.392532], [8.581907, 47.39254], [8.581924, 47.392549], [8.582374, 47.392813], [8.582423, 47.39284], [8.582474, 47.392865], [8.582527, 47.392888], [8.582549, 47.392897], [8.58257, 47.392908], [8.58259, 47.392919], [8.582748, 47.393009], [8.582789, 47.39303], [8.582832, 47.393049], [8.582878, 47.393065], [8.582926, 47.393079], [8.583149, 47.393133], [8.583222, 47.393149], [8.583297, 47.393161], [8.583373, 47.393168], [8.58345, 47.393171], [8.583527, 47.393169], [8.583604, 47.393164], [8.583679, 47.393154], [8.584446, 47.39303], [8.584477, 47.393026], [8.584508, 47.393024], [8.58454, 47.393023], [8.584571, 47.393024], [8.584603, 47.393028], [8.584633, 47.393033], [8.584663, 47.393039], [8.584692, 47.393048], [8.58472, 47.393058], [8.584746, 47.39307], [8.584771, 47.393083], [8.584794, 47.393097], [8.584816, 47.393113], [8.584835, 47.39313], [8.584852, 47.393148], [8.584866, 47.393167], [8.584878, 47.393187], [8.584889, 47.393204], [8.584901, 47.39322], [8.584916, 47.393235], [8.584932, 47.393249], [8.58495, 47.393262], [8.58497, 47.393274], [8.584992, 47.393284], [8.585014, 47.393294], [8.585038, 47.393301], [8.585063, 47.393308], [8.585088, 47.393312], [8.585114, 47.393316], [8.585141, 47.393317], [8.585167, 47.393317], [8.58618, 47.393285], [8.586265, 47.393282], [8.586265, 47.393282], [8.58632, 47.393279], [8.586375, 47.393272], [8.586428, 47.393261], [8.586479, 47.393247], [8.586731, 47.393168], [8.586765, 47.393158], [8.586801, 47.39315], [8.586837, 47.393145], [8.586873, 47.393141], [8.58691, 47.393139], [8.586947, 47.39314], [8.586984, 47.393142], [8.587021, 47.393147], [8.587198, 47.393174], [8.587239, 47.393178]]], "type": "MultiLineString"}, "id": "2880", "properties": {}, "type": "Feature"}, {"bbox": [8.5617, 47.357297, 8.568354, 47.360093], "geometry": {"coordinates": [[[8.5617, 47.360093], [8.561762, 47.360042], [8.561799, 47.359989], [8.561806, 47.359985], [8.561818, 47.359964], [8.561824, 47.35995], [8.561827, 47.359935], [8.561826, 47.359912], [8.56182, 47.359894], [8.561798, 47.359855], [8.561786, 47.359824], [8.561784, 47.359809], [8.561784, 47.359793], [8.56179, 47.359768], [8.561776, 47.359729], [8.561892, 47.3597], [8.561913, 47.359696], [8.561972, 47.35969], [8.562064, 47.359677], [8.56208, 47.359673], [8.562189, 47.359642], [8.562219, 47.359633], [8.562274, 47.359613], [8.56231, 47.359599], [8.562321, 47.359593], [8.562454, 47.359531], [8.562593, 47.359456], [8.562629, 47.359438], [8.562826, 47.359357], [8.563116, 47.359248], [8.563148, 47.359233], [8.563215, 47.359196], [8.563252, 47.359178], [8.563315, 47.359155], [8.563352, 47.359147], [8.563405, 47.35914], [8.563461, 47.359137], [8.563483, 47.359138], [8.563725, 47.35917], [8.56389, 47.359139], [8.563905, 47.359135], [8.56399, 47.359103], [8.564016, 47.359092], [8.564132, 47.359034], [8.564248, 47.358959], [8.564275, 47.358946], [8.564366, 47.358908], [8.564428, 47.35889], [8.564509, 47.358869], [8.564653, 47.358835], [8.564828, 47.358779], [8.564851, 47.358771], [8.565149, 47.358652], [8.565395, 47.358541], [8.565899, 47.358299], [8.566189, 47.358157], [8.566378, 47.358062], [8.56726, 47.357751], [8.568203, 47.357357], [8.568354, 47.357297]]], "type": "MultiLineString"}, "id": "2881", "properties": {}, "type": "Feature"}, {"bbox": [8.485659, 47.399154, 8.489702, 47.401746], "geometry": {"coordinates": [[[8.489702, 47.400185], [8.489382, 47.399883], [8.489281, 47.399741], [8.489071, 47.399285], [8.488392, 47.399445], [8.488379, 47.399447], [8.488367, 47.399448], [8.488354, 47.399448], [8.488341, 47.399447], [8.488328, 47.399446], [8.488316, 47.399443], [8.488304, 47.399441], [8.488292, 47.399437], [8.488281, 47.399433], [8.488271, 47.399428], [8.488261, 47.399423], [8.488251, 47.399417], [8.488243, 47.39941], [8.488235, 47.399403], [8.488229, 47.399396], [8.488026, 47.399179], [8.48802, 47.399175], [8.488014, 47.399171], [8.488007, 47.399167], [8.488, 47.399164], [8.487993, 47.399161], [8.487985, 47.399159], [8.487977, 47.399157], [8.487969, 47.399155], [8.487961, 47.399154], [8.487952, 47.399154], [8.487944, 47.399154], [8.487935, 47.399154], [8.487927, 47.399155], [8.487919, 47.399157], [8.487911, 47.399159], [8.487472, 47.399276], [8.487295, 47.399328], [8.48693, 47.39947], [8.486585, 47.399633], [8.486261, 47.399816], [8.486181, 47.399868], [8.486107, 47.399924], [8.48604, 47.399984], [8.485988, 47.400038], [8.485659, 47.400418], [8.486089, 47.400614], [8.486314, 47.401232], [8.486324, 47.401302], [8.486403, 47.401441], [8.486647, 47.401746]]], "type": "MultiLineString"}, "id": "2883", "properties": {}, "type": "Feature"}, {"bbox": [8.538959, 47.375009, 8.539609, 47.375143], "geometry": {"coordinates": [[[8.538959, 47.375143], [8.539529, 47.375018], [8.539609, 47.375009]]], "type": "MultiLineString"}, "id": "2884", "properties": {}, "type": "Feature"}, {"bbox": [8.528916, 47.372095, 8.529389, 47.372482], "geometry": {"coordinates": [[[8.529389, 47.372105], [8.529362, 47.372095], [8.528916, 47.372482]]], "type": "MultiLineString"}, "id": "2885", "properties": {}, "type": "Feature"}, {"bbox": [8.528916, 47.372105, 8.529389, 47.372514], "geometry": {"coordinates": [[[8.528916, 47.372482], [8.529181, 47.372514], [8.52919, 47.372513], [8.529199, 47.372512], [8.529207, 47.37251], [8.529216, 47.372508], [8.529224, 47.372505], [8.529231, 47.372502], [8.529239, 47.372499], [8.529245, 47.372495], [8.529251, 47.37249], [8.529257, 47.372485], [8.529262, 47.37248], [8.529266, 47.372475], [8.52927, 47.372469], [8.529273, 47.372464], [8.529389, 47.372105]]], "type": "MultiLineString"}, "id": "2886", "properties": {}, "type": "Feature"}, {"bbox": [8.603015, 47.364675, 8.615701, 47.36928], "geometry": {"coordinates": [[[8.603015, 47.36928], [8.603394, 47.369016], [8.603439, 47.368987], [8.603488, 47.368961], [8.603541, 47.368939], [8.603596, 47.36892], [8.603654, 47.368904], [8.603713, 47.368892], [8.603774, 47.368883], [8.603836, 47.368879], [8.603898, 47.368878], [8.60396, 47.368881], [8.604682, 47.368845], [8.605924, 47.368686], [8.606409, 47.368615], [8.606459, 47.368607], [8.606508, 47.368597], [8.606555, 47.368584], [8.606601, 47.368568], [8.606644, 47.36855], [8.606685, 47.368529], [8.607443, 47.368143], [8.6077, 47.367998], [8.607784, 47.367934], [8.60786, 47.367865], [8.607927, 47.367793], [8.607984, 47.367716], [8.608031, 47.367636], [8.608067, 47.367554], [8.608398, 47.367582], [8.608699, 47.367575], [8.610328, 47.367338], [8.610698, 47.36728], [8.611584, 47.367003], [8.612067, 47.366801], [8.61315, 47.366392], [8.613837, 47.366153], [8.613989, 47.366066], [8.614132, 47.365972], [8.614266, 47.365873], [8.614436, 47.36571], [8.614788, 47.365368], [8.614951, 47.36526], [8.615107, 47.365124], [8.615373, 47.364941], [8.615408, 47.36485], [8.61559, 47.364694], [8.615701, 47.364675]]], "type": "MultiLineString"}, "id": "2910", "properties": {}, "type": "Feature"}, {"bbox": [8.493614, 47.401031, 8.493829, 47.402358], "geometry": {"coordinates": [[[8.493722, 47.401031], [8.493689, 47.401387], [8.493699, 47.401728], [8.493648, 47.401782], [8.493614, 47.401848], [8.493643, 47.401945], [8.493672, 47.402163], [8.49372, 47.402231], [8.493764, 47.402291], [8.493829, 47.402358]]], "type": "MultiLineString"}, "id": "2911", "properties": {}, "type": "Feature"}, {"bbox": [8.492485, 47.365031, 8.494099, 47.367183], "geometry": {"coordinates": [[[8.492485, 47.367183], [8.492683, 47.36695], [8.492735, 47.366864], [8.492861, 47.366712], [8.493024, 47.366485], [8.493066, 47.366419], [8.493461, 47.365763], [8.493736, 47.365344], [8.493831, 47.365122], [8.493836, 47.365073], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "2912", "properties": {}, "type": "Feature"}, {"bbox": [8.57928, 47.384586, 8.582244, 47.387268], "geometry": {"coordinates": [[[8.57928, 47.386431], [8.579372, 47.386405], [8.579409, 47.386393], [8.579444, 47.38638], [8.579478, 47.386364], [8.580635, 47.385785], [8.580724, 47.385736], [8.580808, 47.385683], [8.580885, 47.385626], [8.580956, 47.385565], [8.581107, 47.385423], [8.581157, 47.385372], [8.5812, 47.385318], [8.581237, 47.385263], [8.581267, 47.385205], [8.58129, 47.385146], [8.581305, 47.385086], [8.581314, 47.385025], [8.581324, 47.384891], [8.581328, 47.384855], [8.581333, 47.384818], [8.581341, 47.384781], [8.581386, 47.384586], [8.58144, 47.384644], [8.581591, 47.384852], [8.581762, 47.385076], [8.582209, 47.385636], [8.58222, 47.385651], [8.582229, 47.385667], [8.582236, 47.385683], [8.58224, 47.385699], [8.582243, 47.385716], [8.582244, 47.385733], [8.582243, 47.385749], [8.582239, 47.385766], [8.582234, 47.385782], [8.582227, 47.385798], [8.582217, 47.385814], [8.582206, 47.385828], [8.582193, 47.385843], [8.582178, 47.385856], [8.582161, 47.385868], [8.58157, 47.386281], [8.580765, 47.386834], [8.580199, 47.387217], [8.580122, 47.387268]]], "type": "MultiLineString"}, "id": "2913", "properties": {}, "type": "Feature"}, {"bbox": [8.50787, 47.378783, 8.511212, 47.380774], "geometry": {"coordinates": [[[8.511212, 47.37913], [8.511066, 47.37916], [8.510991, 47.379082], [8.510696, 47.379214], [8.510279, 47.378783], [8.50799, 47.379812], [8.50837, 47.380179], [8.50787, 47.380391], [8.508269, 47.380761], [8.508281, 47.380774], [8.509239, 47.380338], [8.50906, 47.380159], [8.511133, 47.379228], [8.511066, 47.37916]]], "type": "MultiLineString"}, "id": "2914", "properties": {}, "type": "Feature"}, {"bbox": [8.572493, 47.393479, 8.577512, 47.39554], "geometry": {"coordinates": [[[8.577512, 47.39554], [8.577411, 47.395352], [8.577374, 47.395283], [8.577297, 47.395157], [8.577205, 47.395035], [8.577098, 47.394918], [8.576977, 47.394809], [8.576843, 47.394706], [8.576818, 47.394689], [8.576793, 47.394672], [8.576767, 47.394655], [8.576622, 47.394572], [8.576466, 47.394499], [8.576301, 47.394436], [8.576231, 47.394413], [8.575538, 47.394208], [8.57499, 47.394051], [8.574881, 47.394023], [8.574841, 47.394012], [8.574801, 47.394003], [8.57476, 47.393993], [8.574679, 47.393972], [8.574601, 47.393946], [8.574526, 47.393916], [8.574456, 47.393881], [8.57439, 47.393843], [8.574328, 47.393801], [8.57406, 47.393602], [8.574025, 47.393578], [8.573987, 47.393557], [8.573946, 47.393538], [8.573903, 47.393521], [8.573858, 47.393507], [8.573811, 47.393495], [8.573763, 47.393487], [8.573714, 47.393481], [8.573665, 47.393479], [8.573615, 47.393479], [8.573566, 47.393482], [8.573517, 47.393488], [8.573469, 47.393498], [8.572843, 47.393638], [8.57275, 47.393662], [8.57266, 47.393691], [8.572575, 47.393725], [8.572493, 47.393764]]], "type": "MultiLineString"}, "id": "2915", "properties": {}, "type": "Feature"}, {"bbox": [8.532881, 47.340651, 8.53467, 47.341224], "geometry": {"coordinates": [[[8.53467, 47.341224], [8.533494, 47.340985], [8.533456, 47.340977], [8.533419, 47.340967], [8.533383, 47.340954], [8.533349, 47.34094], [8.533318, 47.340923], [8.533288, 47.340904], [8.533262, 47.340884], [8.533238, 47.340862], [8.533217, 47.340839], [8.533199, 47.340815], [8.533184, 47.340789], [8.533173, 47.340763], [8.533166, 47.34075], [8.533158, 47.340737], [8.533148, 47.340725], [8.533136, 47.340714], [8.533123, 47.340703], [8.533108, 47.340693], [8.533093, 47.340684], [8.533076, 47.340676], [8.533058, 47.340669], [8.53304, 47.340663], [8.53302, 47.340658], [8.533001, 47.340654], [8.53298, 47.340652], [8.53296, 47.340651], [8.53294, 47.340651], [8.532881, 47.340658]]], "type": "MultiLineString"}, "id": "2916", "properties": {}, "type": "Feature"}, {"bbox": [8.576919, 47.361861, 8.57761, 47.362394], "geometry": {"coordinates": [[[8.576925, 47.361861], [8.576922, 47.361867], [8.576921, 47.361872], [8.57692, 47.361878], [8.576919, 47.361884], [8.57692, 47.36189], [8.576921, 47.361896], [8.576923, 47.361902], [8.576926, 47.361907], [8.576929, 47.361913], [8.576933, 47.361918], [8.576938, 47.361923], [8.577051, 47.362023], [8.577484, 47.362321], [8.57761, 47.362394]]], "type": "MultiLineString"}, "id": "2917", "properties": {}, "type": "Feature"}, {"bbox": [8.492525, 47.407335, 8.493228, 47.407728], "geometry": {"coordinates": [[[8.493228, 47.407728], [8.493184, 47.407686], [8.493134, 47.407647], [8.49308, 47.407611], [8.493021, 47.407579], [8.492958, 47.40755], [8.492891, 47.407526], [8.492808, 47.407497], [8.492729, 47.407464], [8.492655, 47.407425], [8.492587, 47.407382], [8.492525, 47.407335]]], "type": "MultiLineString"}, "id": "2920", "properties": {}, "type": "Feature"}, {"bbox": [8.476595, 47.381806, 8.480432, 47.383957], "geometry": {"coordinates": [[[8.480432, 47.38393], [8.480252, 47.38395], [8.480234, 47.383953], [8.480216, 47.383955], [8.480198, 47.383957], [8.48018, 47.383957], [8.480162, 47.383956], [8.480144, 47.383953], [8.480126, 47.38395], [8.480109, 47.383946], [8.480093, 47.383941], [8.480077, 47.383934], [8.480062, 47.383927], [8.479742, 47.383762], [8.479415, 47.383603], [8.479082, 47.383449], [8.479038, 47.38343], [8.478997, 47.383409], [8.478959, 47.383385], [8.478704, 47.383237], [8.478454, 47.383086], [8.478207, 47.382931], [8.477549, 47.382567], [8.477467, 47.382513], [8.477392, 47.382455], [8.477326, 47.382393], [8.477176, 47.382249], [8.477019, 47.382109], [8.476855, 47.381972], [8.476747, 47.381888], [8.476595, 47.381806]]], "type": "MultiLineString"}, "id": "2921", "properties": {}, "type": "Feature"}, {"bbox": [8.548539, 47.415343, 8.549049, 47.415854], "geometry": {"coordinates": [[[8.548539, 47.415343], [8.548606, 47.415425], [8.549049, 47.415854]]], "type": "MultiLineString"}, "id": "2922", "properties": {}, "type": "Feature"}, {"bbox": [8.511656, 47.364156, 8.5129, 47.364999], "geometry": {"coordinates": [[[8.5129, 47.364999], [8.512705, 47.364848], [8.51236, 47.364609], [8.511702, 47.364171], [8.511656, 47.364156]]], "type": "MultiLineString"}, "id": "2923", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.381617, 8.513634, 47.383143], "geometry": {"coordinates": [[[8.513634, 47.381617], [8.51258, 47.382072], [8.512232, 47.382211], [8.51006, 47.383143]]], "type": "MultiLineString"}, "id": "2926", "properties": {}, "type": "Feature"}, {"bbox": [8.519358, 47.331761, 8.521904, 47.33334], "geometry": {"coordinates": [[[8.519358, 47.332826], [8.519471, 47.332771], [8.519493, 47.332765], [8.519515, 47.33276], [8.519537, 47.332757], [8.51956, 47.332755], [8.519583, 47.332754], [8.519606, 47.332754], [8.519918, 47.332749], [8.519946, 47.332749], [8.519975, 47.332747], [8.520002, 47.332743], [8.52003, 47.332737], [8.520056, 47.33273], [8.520081, 47.332722], [8.520252, 47.33266], [8.520266, 47.332651], [8.520271, 47.332646], [8.520275, 47.33264], [8.520279, 47.332634], [8.520281, 47.332628], [8.520283, 47.332621], [8.520284, 47.332615], [8.520285, 47.332608], [8.520284, 47.332602], [8.520283, 47.332595], [8.520281, 47.332589], [8.520247, 47.332492], [8.520228, 47.332392], [8.520223, 47.332293], [8.520223, 47.332271], [8.52022, 47.33225], [8.520215, 47.332229], [8.520185, 47.33213], [8.520159, 47.332031], [8.520137, 47.331931], [8.520126, 47.331893], [8.52011, 47.331856], [8.520089, 47.33182], [8.520063, 47.331785], [8.520063, 47.331784], [8.520062, 47.331782], [8.520061, 47.331781], [8.520061, 47.33178], [8.52006, 47.331778], [8.52006, 47.331777], [8.52006, 47.331776], [8.520061, 47.331774], [8.520061, 47.331773], [8.520062, 47.331772], [8.520063, 47.33177], [8.520063, 47.331769], [8.520065, 47.331768], [8.520066, 47.331767], [8.520067, 47.331766], [8.520069, 47.331765], [8.52007, 47.331764], [8.520072, 47.331763], [8.520074, 47.331763], [8.520076, 47.331762], [8.520077, 47.331762], [8.520079, 47.331761], [8.520081, 47.331761], [8.520083, 47.331761], [8.520086, 47.331761], [8.520088, 47.331761], [8.52009, 47.331762], [8.520091, 47.331762], [8.520093, 47.331762], [8.520095, 47.331763], [8.520097, 47.331764], [8.520147, 47.331788], [8.520195, 47.331815], [8.52024, 47.331843], [8.520398, 47.331948], [8.520425, 47.331967], [8.52045, 47.331987], [8.520474, 47.332008], [8.520517, 47.332048], [8.520563, 47.332085], [8.520611, 47.332122], [8.520845, 47.33229], [8.520933, 47.332367], [8.520957, 47.332392], [8.520984, 47.332416], [8.521013, 47.332438], [8.521033, 47.332454], [8.521051, 47.332471], [8.521067, 47.332488], [8.52108, 47.332507], [8.521158, 47.332633], [8.521167, 47.332645], [8.521176, 47.332658], [8.521186, 47.332671], [8.521213, 47.332707], [8.521235, 47.332746], [8.521252, 47.332785], [8.521272, 47.332835], [8.521295, 47.332885], [8.52132, 47.332934], [8.521403, 47.333071], [8.521497, 47.333203], [8.521603, 47.333331], [8.521604, 47.333333], [8.521606, 47.333334], [8.521607, 47.333335], [8.521609, 47.333336], [8.521611, 47.333337], [8.521613, 47.333338], [8.521615, 47.333339], [8.521617, 47.333339], [8.52162, 47.33334], [8.521622, 47.33334], [8.521624, 47.33334], [8.521627, 47.33334], [8.521629, 47.33334], [8.521631, 47.33334], [8.521634, 47.333339], [8.521636, 47.333339], [8.521638, 47.333338], [8.52164, 47.333337], [8.521642, 47.333337], [8.521644, 47.333336], [8.521646, 47.333334], [8.521647, 47.333333], [8.521649, 47.333332], [8.52165, 47.333331], [8.521651, 47.333329], [8.521652, 47.333328], [8.521652, 47.333326], [8.521653, 47.333325], [8.521653, 47.333323], [8.521653, 47.333321], [8.521649, 47.333221], [8.521634, 47.33316], [8.521634, 47.333159], [8.521634, 47.333157], [8.521634, 47.333156], [8.521634, 47.333155], [8.521635, 47.333153], [8.521635, 47.333152], [8.521636, 47.33315], [8.521637, 47.333149], [8.521638, 47.333148], [8.52164, 47.333147], [8.521641, 47.333146], [8.521643, 47.333145], [8.521644, 47.333144], [8.521646, 47.333143], [8.521648, 47.333142], [8.52165, 47.333142], [8.521652, 47.333142], [8.521654, 47.333141], [8.521656, 47.333141], [8.521658, 47.333141], [8.521661, 47.333141], [8.521663, 47.333141], [8.521665, 47.333142], [8.521667, 47.333142], [8.521669, 47.333143], [8.521671, 47.333143], [8.521672, 47.333144], [8.521674, 47.333145], [8.521676, 47.333146], [8.521677, 47.333147], [8.521678, 47.333148], [8.52169, 47.333161], [8.52178, 47.333264], [8.52179, 47.333274], [8.521802, 47.333284], [8.521815, 47.333293], [8.521829, 47.333302], [8.521844, 47.333309], [8.52186, 47.333316], [8.521877, 47.333321], [8.521904, 47.333329]]], "type": "MultiLineString"}, "id": "2929", "properties": {}, "type": "Feature"}, {"bbox": [8.506326, 47.405649, 8.509795, 47.406801], "geometry": {"coordinates": [[[8.506326, 47.406801], [8.506421, 47.406772], [8.506775, 47.406666], [8.5071, 47.406559], [8.508161, 47.406205], [8.509514, 47.405755], [8.509795, 47.405649]]], "type": "MultiLineString"}, "id": "2930", "properties": {}, "type": "Feature"}, {"bbox": [8.530241, 47.419957, 8.530292, 47.420188], "geometry": {"coordinates": [[[8.530292, 47.419957], [8.53029, 47.420007], [8.530286, 47.420057], [8.530277, 47.420107], [8.530269, 47.420135], [8.530257, 47.420162], [8.530241, 47.420188]]], "type": "MultiLineString"}, "id": "2932", "properties": {}, "type": "Feature"}, {"bbox": [8.496813, 47.39952, 8.499164, 47.401627], "geometry": {"coordinates": [[[8.496813, 47.39952], [8.496845, 47.399612], [8.497003, 47.39993], [8.497048, 47.400061], [8.497186, 47.40033], [8.497478, 47.400724], [8.497677, 47.40069], [8.497956, 47.401122], [8.498233, 47.401219], [8.498295, 47.401238], [8.498499, 47.40133], [8.49855, 47.401361], [8.498646, 47.401428], [8.498748, 47.40149], [8.498856, 47.401547], [8.498913, 47.401571], [8.498973, 47.401591], [8.499035, 47.401607], [8.499099, 47.401619], [8.499164, 47.401627]]], "type": "MultiLineString"}, "id": "2933", "properties": {}, "type": "Feature"}, {"bbox": [8.532851, 47.339057, 8.53576, 47.340189], "geometry": {"coordinates": [[[8.53576, 47.339261], [8.535025, 47.339057], [8.53495, 47.339065], [8.534735, 47.339206], [8.533807, 47.339829], [8.533467, 47.340061], [8.533409, 47.340087], [8.533054, 47.34011], [8.532851, 47.340189]]], "type": "MultiLineString"}, "id": "2934", "properties": {}, "type": "Feature"}, {"bbox": [8.511957, 47.412709, 8.512443, 47.414905], "geometry": {"coordinates": [[[8.512443, 47.414905], [8.51237, 47.414774], [8.512254, 47.414583], [8.512096, 47.414228], [8.512028, 47.414071], [8.511979, 47.41394], [8.511966, 47.413871], [8.511957, 47.413828], [8.511968, 47.413739], [8.512007, 47.413564], [8.512011, 47.413546], [8.512049, 47.413374], [8.512049, 47.413359], [8.51205, 47.41334], [8.512056, 47.413175], [8.512029, 47.412756], [8.512029, 47.412749], [8.512027, 47.412743], [8.512025, 47.412737], [8.512023, 47.412731], [8.512019, 47.412725], [8.512015, 47.41272], [8.512009, 47.412714], [8.512004, 47.412709]]], "type": "MultiLineString"}, "id": "2935", "properties": {}, "type": "Feature"}, {"bbox": [8.499859, 47.402897, 8.503484, 47.40549], "geometry": {"coordinates": [[[8.499859, 47.402897], [8.4999, 47.403], [8.500035, 47.403269], [8.500058, 47.403322], [8.500081, 47.403374], [8.500105, 47.403427], [8.500107, 47.403484], [8.500116, 47.403541], [8.500131, 47.403597], [8.500142, 47.40363], [8.500156, 47.403663], [8.500174, 47.403694], [8.500209, 47.40375], [8.500215, 47.40376], [8.500223, 47.403771], [8.500231, 47.40378], [8.500241, 47.40379], [8.500284, 47.403835], [8.500325, 47.403875], [8.500365, 47.403916], [8.500404, 47.403958], [8.500538, 47.404099], [8.50064, 47.404207], [8.500681, 47.404245], [8.500736, 47.404294], [8.500817, 47.404354], [8.500901, 47.404411], [8.500988, 47.404466], [8.501045, 47.404501], [8.501106, 47.404533], [8.50117, 47.404561], [8.501324, 47.404613], [8.501454, 47.404669], [8.501571, 47.404732], [8.501596, 47.404746], [8.501622, 47.404758], [8.50165, 47.404769], [8.501859, 47.404855], [8.501946, 47.404897], [8.501965, 47.404908], [8.501982, 47.404919], [8.501998, 47.404932], [8.502048, 47.404972], [8.502116, 47.405021], [8.502138, 47.405036], [8.502162, 47.405052], [8.502186, 47.405066], [8.502374, 47.405171], [8.502441, 47.405204], [8.502513, 47.405233], [8.502588, 47.405257], [8.502955, 47.405362], [8.503298, 47.405462], [8.503359, 47.405475], [8.503421, 47.405484], [8.503484, 47.40549]]], "type": "MultiLineString"}, "id": "2939", "properties": {}, "type": "Feature"}, {"bbox": [8.488037, 47.407871, 8.494677, 47.410105], "geometry": {"coordinates": [[[8.494677, 47.407871], [8.494457, 47.407942], [8.494291, 47.408001], [8.493937, 47.408124], [8.493578, 47.408245], [8.49322, 47.408356], [8.492843, 47.408452], [8.49247, 47.408541], [8.492284, 47.408578], [8.492083, 47.408612], [8.491696, 47.408682], [8.49131, 47.408758], [8.491149, 47.408793], [8.490993, 47.408837], [8.490843, 47.408888], [8.490699, 47.408948], [8.490553, 47.409017], [8.490398, 47.409104], [8.490316, 47.409142], [8.490126, 47.409206], [8.490044, 47.409242], [8.489976, 47.409287], [8.489909, 47.40933], [8.489822, 47.409384], [8.489472, 47.409514], [8.489228, 47.409614], [8.489077, 47.409694], [8.488958, 47.409764], [8.488819, 47.40983], [8.488472, 47.409965], [8.488143, 47.410082], [8.488073, 47.410097], [8.488037, 47.410105]]], "type": "MultiLineString"}, "id": "2942", "properties": {}, "type": "Feature"}, {"bbox": [8.492121, 47.364959, 8.494099, 47.365391], "geometry": {"coordinates": [[[8.494099, 47.365031], [8.494019, 47.365021], [8.493997, 47.365007], [8.493973, 47.364996], [8.493948, 47.364985], [8.493922, 47.364977], [8.493894, 47.36497], [8.493866, 47.364964], [8.493837, 47.364961], [8.493808, 47.364959], [8.493779, 47.364959], [8.493749, 47.364961], [8.493721, 47.364964], [8.493692, 47.364969], [8.493369, 47.365012], [8.493063, 47.36498], [8.492708, 47.365102], [8.49252, 47.365206], [8.492121, 47.365391]]], "type": "MultiLineString"}, "id": "2948", "properties": {}, "type": "Feature"}, {"bbox": [8.568024, 47.416543, 8.569522, 47.417133], "geometry": {"coordinates": [[[8.568024, 47.417133], [8.568079, 47.41698], [8.568084, 47.416958], [8.568091, 47.416936], [8.568101, 47.416914], [8.568114, 47.416893], [8.568129, 47.416873], [8.568148, 47.416855], [8.568168, 47.416837], [8.568191, 47.416821], [8.568217, 47.416806], [8.568724, 47.416572], [8.568749, 47.416563], [8.568776, 47.416556], [8.568803, 47.41655], [8.568831, 47.416546], [8.568859, 47.416544], [8.568887, 47.416543], [8.568915, 47.416544], [8.568944, 47.416546], [8.568971, 47.416551], [8.568998, 47.416556], [8.569025, 47.416564], [8.56905, 47.416573], [8.569074, 47.416583], [8.569096, 47.416595], [8.569454, 47.416798], [8.569469, 47.416811], [8.569483, 47.416824], [8.569494, 47.416839], [8.569504, 47.416854], [8.569512, 47.41687], [8.569517, 47.416886], [8.569521, 47.416902], [8.569522, 47.416919], [8.569522, 47.416935], [8.569519, 47.416952], [8.569514, 47.416968], [8.569506, 47.416984]]], "type": "MultiLineString"}, "id": "2949", "properties": {}, "type": "Feature"}, {"bbox": [8.534851, 47.342395, 8.535275, 47.342867], "geometry": {"coordinates": [[[8.534851, 47.342867], [8.534896, 47.342848], [8.534942, 47.342826], [8.534984, 47.342802], [8.535023, 47.342775], [8.535059, 47.342745], [8.535091, 47.342714], [8.535119, 47.342682], [8.535143, 47.342647], [8.535149, 47.342639], [8.53527, 47.342432], [8.535275, 47.342395]]], "type": "MultiLineString"}, "id": "2950", "properties": {}, "type": "Feature"}, {"bbox": [8.543842, 47.372311, 8.545705, 47.372488], "geometry": {"coordinates": [[[8.543842, 47.372311], [8.544091, 47.372321], [8.544142, 47.372326], [8.544232, 47.372338], [8.544275, 47.372345], [8.544533, 47.372395], [8.544727, 47.372424], [8.544803, 47.372434], [8.544896, 47.372445], [8.545238, 47.372488], [8.545492, 47.372488], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "2951", "properties": {}, "type": "Feature"}, {"bbox": [8.536374, 47.413668, 8.537874, 47.413752], "geometry": {"coordinates": [[[8.537874, 47.413668], [8.536374, 47.413752]]], "type": "MultiLineString"}, "id": "2952", "properties": {}, "type": "Feature"}, {"bbox": [8.495011, 47.367865, 8.496409, 47.368185], "geometry": {"coordinates": [[[8.495041, 47.367865], [8.49503, 47.367884], [8.495022, 47.367903], [8.495015, 47.367923], [8.495012, 47.367943], [8.495011, 47.367963], [8.495012, 47.367983], [8.495016, 47.368003], [8.495023, 47.368023], [8.495032, 47.368042], [8.495044, 47.36806], [8.495058, 47.368078], [8.495086, 47.368098], [8.495117, 47.368116], [8.49515, 47.368132], [8.495185, 47.368146], [8.495221, 47.368158], [8.495259, 47.368168], [8.495298, 47.368176], [8.495337, 47.368181], [8.495378, 47.368184], [8.495418, 47.368185], [8.495459, 47.368184], [8.495499, 47.36818], [8.495538, 47.368173], [8.495577, 47.368165], [8.495677, 47.368145], [8.49578, 47.368131], [8.495883, 47.368122], [8.495988, 47.36812], [8.496409, 47.368148]]], "type": "MultiLineString"}, "id": "2953", "properties": {}, "type": "Feature"}, {"bbox": [8.475233, 47.413151, 8.482677, 47.414505], "geometry": {"coordinates": [[[8.482677, 47.41415], [8.482431, 47.414073], [8.481677, 47.413889], [8.481373, 47.413823], [8.481165, 47.413803], [8.481155, 47.413804], [8.481144, 47.413806], [8.481134, 47.413809], [8.481125, 47.413812], [8.481115, 47.413815], [8.481106, 47.413819], [8.481087, 47.41383], [8.48107, 47.413841], [8.481053, 47.413854], [8.481039, 47.413867], [8.481026, 47.413882], [8.481015, 47.413897], [8.481006, 47.413912], [8.480698, 47.414439], [8.480692, 47.41445], [8.480687, 47.414461], [8.480683, 47.414472], [8.480681, 47.414483], [8.48068, 47.414494], [8.480681, 47.414505], [8.480552, 47.414471], [8.480423, 47.414435], [8.480413, 47.41444], [8.480403, 47.414445], [8.480392, 47.414448], [8.48038, 47.414451], [8.480368, 47.414454], [8.480356, 47.414455], [8.480344, 47.414456], [8.480332, 47.414456], [8.48032, 47.414456], [8.480272, 47.414449], [8.480225, 47.414439], [8.480179, 47.414427], [8.479629, 47.414259], [8.479612, 47.414253], [8.479595, 47.414247], [8.47958, 47.414239], [8.479565, 47.414231], [8.479551, 47.414222], [8.479539, 47.414212], [8.479528, 47.414201], [8.479519, 47.41419], [8.479511, 47.414178], [8.479367, 47.4139], [8.4794, 47.413847], [8.479204, 47.413785], [8.479048, 47.413759], [8.478871, 47.413701], [8.478766, 47.413678], [8.478721, 47.413665], [8.478667, 47.413651], [8.478613, 47.413641], [8.478557, 47.413635], [8.4785, 47.413632], [8.478443, 47.413632], [8.478387, 47.413636], [8.478331, 47.413643], [8.478276, 47.413654], [8.478223, 47.413668], [8.478172, 47.413685], [8.478124, 47.413705], [8.477635, 47.413545], [8.477621, 47.41353], [8.477393, 47.413482], [8.477334, 47.41347], [8.476838, 47.41335], [8.476569, 47.413305], [8.476551, 47.413337], [8.476009, 47.413245], [8.475768, 47.41321], [8.475496, 47.413181], [8.475246, 47.413151], [8.475233, 47.41321]]], "type": "MultiLineString"}, "id": "2957", "properties": {}, "type": "Feature"}, {"bbox": [8.566827, 47.399842, 8.571367, 47.402268], "geometry": {"coordinates": [[[8.566827, 47.402268], [8.566948, 47.402215], [8.567324, 47.402104], [8.567923, 47.401877], [8.5687, 47.401567], [8.569279, 47.401261], [8.569398, 47.401178], [8.569706, 47.400969], [8.570204, 47.400594], [8.570418, 47.40045], [8.570616, 47.400288], [8.570627, 47.400279], [8.57064, 47.40027], [8.570653, 47.400262], [8.570692, 47.40024], [8.570708, 47.40023], [8.57073, 47.400217], [8.570932, 47.4001], [8.571367, 47.399842]]], "type": "MultiLineString"}, "id": "2958", "properties": {}, "type": "Feature"}, {"bbox": [8.599132, 47.358803, 8.602469, 47.359326], "geometry": {"coordinates": [[[8.599132, 47.358803], [8.599194, 47.358812], [8.599279, 47.358824], [8.599458, 47.358824], [8.599484, 47.358826], [8.599588, 47.358835], [8.599718, 47.358856], [8.600272, 47.35897], [8.600463, 47.359004], [8.600654, 47.359036], [8.600845, 47.359066], [8.600954, 47.359083], [8.601062, 47.3591], [8.601171, 47.359118], [8.601245, 47.35913], [8.60132, 47.359141], [8.601395, 47.359153], [8.601432, 47.359159], [8.601468, 47.359166], [8.601504, 47.359173], [8.601573, 47.359189], [8.601643, 47.359203], [8.601713, 47.359216], [8.601793, 47.35923], [8.601873, 47.359245], [8.601953, 47.359259], [8.601991, 47.359266], [8.602029, 47.359272], [8.602068, 47.359277], [8.60212, 47.359284], [8.602172, 47.359292], [8.602224, 47.359301], [8.602255, 47.359306], [8.602287, 47.35931], [8.602319, 47.359312], [8.602469, 47.359326]]], "type": "MultiLineString"}, "id": "2963", "properties": {}, "type": "Feature"}, {"bbox": [8.508331, 47.363976, 8.510024, 47.364718], "geometry": {"coordinates": [[[8.508344, 47.364718], [8.508331, 47.3646], [8.508466, 47.364589], [8.508404, 47.364366], [8.508478, 47.364308], [8.508791, 47.364245], [8.508743, 47.364011], [8.508983, 47.363976], [8.509178, 47.364054], [8.510024, 47.364396]]], "type": "MultiLineString"}, "id": "2969", "properties": {}, "type": "Feature"}, {"bbox": [8.524459, 47.39416, 8.525158, 47.394942], "geometry": {"coordinates": [[[8.525158, 47.39416], [8.524941, 47.394235], [8.524916, 47.394246], [8.524893, 47.394258], [8.524872, 47.394271], [8.524852, 47.394286], [8.524834, 47.394301], [8.524819, 47.394318], [8.524806, 47.394336], [8.524702, 47.394499], [8.524459, 47.394942]]], "type": "MultiLineString"}, "id": "2987", "properties": {}, "type": "Feature"}, {"bbox": [8.572431, 47.404327, 8.57365, 47.404379], "geometry": {"coordinates": [[[8.572431, 47.404379], [8.572451, 47.404374], [8.572472, 47.40437], [8.572492, 47.404366], [8.572516, 47.404361], [8.572541, 47.404356], [8.572565, 47.404352], [8.572611, 47.404346], [8.572658, 47.404341], [8.572705, 47.404336], [8.572788, 47.404331], [8.572872, 47.404328], [8.572956, 47.404327], [8.572956, 47.404327], [8.57365, 47.404344]]], "type": "MultiLineString"}, "id": "2988", "properties": {}, "type": "Feature"}, {"bbox": [8.518701, 47.323913, 8.520864, 47.33266], "geometry": {"coordinates": [[[8.520252, 47.33266], [8.520225, 47.33263], [8.520193, 47.332595], [8.520143, 47.332538], [8.519929, 47.332297], [8.519844, 47.332184], [8.519756, 47.332054], [8.519681, 47.331924], [8.51962, 47.331808], [8.519561, 47.331668], [8.519526, 47.331557], [8.519484, 47.331487], [8.519477, 47.331477], [8.519468, 47.331467], [8.519458, 47.331458], [8.519447, 47.331449], [8.519435, 47.331441], [8.519349, 47.331388], [8.519339, 47.33138], [8.519329, 47.331373], [8.51932, 47.331365], [8.519312, 47.331356], [8.519306, 47.331347], [8.519087, 47.331028], [8.519028, 47.330932], [8.51898, 47.330833], [8.518946, 47.330731], [8.518923, 47.330628], [8.518901, 47.330483], [8.51889, 47.330425], [8.518875, 47.330368], [8.518857, 47.330311], [8.518735, 47.329964], [8.518712, 47.329878], [8.518701, 47.32979], [8.518702, 47.329701], [8.518728, 47.32943], [8.518733, 47.329394], [8.518741, 47.329359], [8.518753, 47.329324], [8.518791, 47.329222], [8.518818, 47.329148], [8.518896, 47.328978], [8.519132, 47.328541], [8.519232, 47.328355], [8.519443, 47.328026], [8.519557, 47.32783], [8.519654, 47.32763], [8.519732, 47.327426], [8.519758, 47.327331], [8.519773, 47.327234], [8.519775, 47.327137], [8.519775, 47.327137], [8.519774, 47.327083], [8.519773, 47.327045], [8.519745, 47.326859], [8.5197, 47.326673], [8.519696, 47.32641], [8.519707, 47.32633], [8.519716, 47.326267], [8.519763, 47.326074], [8.519818, 47.325947], [8.52, 47.325731], [8.520074, 47.325653], [8.520196, 47.325503], [8.520805, 47.324604], [8.520813, 47.324589], [8.52082, 47.324573], [8.520827, 47.324556], [8.520836, 47.324531], [8.520844, 47.324506], [8.52085, 47.32448], [8.520857, 47.324345], [8.520864, 47.323913]]], "type": "MultiLineString"}, "id": "2990", "properties": {}, "type": "Feature"}, {"bbox": [8.550363, 47.420935, 8.554326, 47.421908], "geometry": {"coordinates": [[[8.554326, 47.420935], [8.554255, 47.420953], [8.554184, 47.420969], [8.554112, 47.420984], [8.554015, 47.421004], [8.553916, 47.42102], [8.553816, 47.421031], [8.553786, 47.421035], [8.553757, 47.42104], [8.55373, 47.421047], [8.553702, 47.421056], [8.553677, 47.421066], [8.553652, 47.421077], [8.553444, 47.421163], [8.553393, 47.421168], [8.553268, 47.421151], [8.55301, 47.421265], [8.552941, 47.421297], [8.552868, 47.421324], [8.552791, 47.421346], [8.552712, 47.421364], [8.552631, 47.421377], [8.552549, 47.421386], [8.552198, 47.421419], [8.552049, 47.421434], [8.551901, 47.421452], [8.551754, 47.421475], [8.551373, 47.421553], [8.551005, 47.421653], [8.550651, 47.421775], [8.550363, 47.421908]]], "type": "MultiLineString"}, "id": "2991", "properties": {}, "type": "Feature"}, {"bbox": [8.611851, 47.362435, 8.613923, 47.367829], "geometry": {"coordinates": [[[8.612477, 47.362435], [8.612444, 47.36262], [8.612389, 47.362821], [8.612305, 47.363018], [8.612193, 47.363209], [8.612051, 47.363431], [8.61194, 47.363661], [8.611862, 47.363897], [8.611851, 47.363981], [8.611851, 47.364066], [8.611863, 47.36415], [8.611886, 47.364233], [8.61192, 47.364314], [8.611964, 47.364392], [8.612175, 47.36528], [8.612209, 47.3655], [8.612228, 47.366116], [8.612252, 47.36617], [8.612276, 47.366192], [8.612302, 47.366212], [8.612331, 47.366231], [8.612362, 47.366248], [8.612396, 47.366262], [8.612439, 47.366279], [8.612484, 47.366294], [8.612529, 47.366308], [8.612611, 47.366329], [8.612694, 47.366347], [8.612779, 47.366362], [8.612864, 47.366374], [8.612949, 47.366383], [8.613036, 47.366389], [8.61315, 47.366392], [8.613285, 47.36643], [8.613308, 47.366439], [8.613332, 47.366447], [8.613356, 47.366455], [8.613404, 47.366472], [8.61345, 47.366492], [8.613493, 47.366514], [8.613576, 47.36656], [8.61366, 47.366605], [8.613744, 47.36665], [8.613783, 47.366672], [8.613821, 47.366694], [8.613858, 47.366717], [8.613873, 47.366728], [8.613886, 47.36674], [8.613897, 47.366753], [8.613903, 47.36676], [8.613907, 47.366767], [8.613911, 47.366774], [8.613917, 47.366785], [8.613921, 47.366797], [8.613923, 47.366808], [8.613923, 47.366821], [8.613922, 47.366833], [8.61392, 47.366845], [8.613917, 47.366859], [8.613914, 47.366872], [8.61391, 47.366885], [8.613901, 47.366919], [8.61389, 47.366952], [8.613878, 47.366986], [8.613864, 47.367021], [8.613848, 47.367057], [8.613832, 47.367092], [8.613703, 47.367353], [8.613584, 47.367634], [8.613567, 47.367686], [8.613558, 47.367738], [8.613557, 47.367791], [8.61353, 47.367829]]], "type": "MultiLineString"}, "id": "2992", "properties": {}, "type": "Feature"}, {"bbox": [8.520215, 47.339041, 8.520804, 47.341126], "geometry": {"coordinates": [[[8.520288, 47.341126], [8.520546, 47.341126], [8.520555, 47.341009], [8.520589, 47.340455], [8.520598, 47.340294], [8.520587, 47.339803], [8.520804, 47.339801], [8.520803, 47.339621], [8.520572, 47.339623], [8.520518, 47.339041], [8.520387, 47.339043], [8.520258, 47.339044], [8.52027, 47.339555], [8.520215, 47.339555], [8.520228, 47.340204], [8.520386, 47.340202], [8.520403, 47.341036], [8.520284, 47.341037], [8.520288, 47.341126]]], "type": "MultiLineString"}, "id": "2993", "properties": {}, "type": "Feature"}, {"bbox": [8.565621, 47.383589, 8.569778, 47.389715], "geometry": {"coordinates": [[[8.569233, 47.383589], [8.569228, 47.383592], [8.569223, 47.383596], [8.569218, 47.3836], [8.569214, 47.383604], [8.569211, 47.383608], [8.569208, 47.383613], [8.569205, 47.383618], [8.569204, 47.383622], [8.569203, 47.383627], [8.569202, 47.383632], [8.569202, 47.383637], [8.569203, 47.383642], [8.569204, 47.383647], [8.569231, 47.383711], [8.569264, 47.383774], [8.569304, 47.383834], [8.569355, 47.383897], [8.569414, 47.383957], [8.56948, 47.384013], [8.569554, 47.384076], [8.56962, 47.384144], [8.569677, 47.384215], [8.569724, 47.384289], [8.569746, 47.384334], [8.569763, 47.38438], [8.569773, 47.384427], [8.569778, 47.384475], [8.569777, 47.384522], [8.569769, 47.384572], [8.569754, 47.384622], [8.569733, 47.38467], [8.569706, 47.384717], [8.569673, 47.384762], [8.569673, 47.384762], [8.569088, 47.385437], [8.569017, 47.385517], [8.568944, 47.385594], [8.568867, 47.385671], [8.568649, 47.385885], [8.568518, 47.386008], [8.56849, 47.386035], [8.568464, 47.386062], [8.56844, 47.38609], [8.568403, 47.386137], [8.56837, 47.386186], [8.568341, 47.386237], [8.568317, 47.386288], [8.568147, 47.38669], [8.568067, 47.386863], [8.567974, 47.387033], [8.567868, 47.387199], [8.567784, 47.387317], [8.567695, 47.387432], [8.5676, 47.387546], [8.567169, 47.388039], [8.567066, 47.388153], [8.566958, 47.388265], [8.566845, 47.388375], [8.566619, 47.388589], [8.566518, 47.388688], [8.566422, 47.388789], [8.566331, 47.388892], [8.566115, 47.389145], [8.565705, 47.389635], [8.565621, 47.389715]]], "type": "MultiLineString"}, "id": "2994", "properties": {}, "type": "Feature"}, {"bbox": [8.529356, 47.351973, 8.53032, 47.351982], "geometry": {"coordinates": [[[8.53032, 47.351975], [8.529568, 47.351973], [8.529356, 47.351982]]], "type": "MultiLineString"}, "id": "2995", "properties": {}, "type": "Feature"}, {"bbox": [8.511855, 47.408593, 8.520194, 47.409834], "geometry": {"coordinates": [[[8.511855, 47.409463], [8.511936, 47.409426], [8.512011, 47.409384], [8.512079, 47.409337], [8.512141, 47.409286], [8.512183, 47.409243], [8.512232, 47.409203], [8.512285, 47.409165], [8.512343, 47.409132], [8.512406, 47.409102], [8.512472, 47.409076], [8.512541, 47.409054], [8.512613, 47.409037], [8.512688, 47.409024], [8.512704, 47.409021], [8.513689, 47.408883], [8.513703, 47.408881], [8.513842, 47.408857], [8.513979, 47.408828], [8.514112, 47.408793], [8.514381, 47.408708], [8.514565, 47.408662], [8.514753, 47.408622], [8.514879, 47.408601], [8.514966, 47.408593], [8.515054, 47.408593], [8.515139, 47.408603], [8.51523, 47.408622], [8.515319, 47.408649], [8.515411, 47.408685], [8.515565, 47.408763], [8.515632, 47.408803], [8.515686, 47.40885], [8.515727, 47.408904], [8.515759, 47.40896], [8.515786, 47.409019], [8.515824, 47.409118], [8.515858, 47.409183], [8.515905, 47.409245], [8.515958, 47.409292], [8.515993, 47.409309], [8.516029, 47.409324], [8.516067, 47.409337], [8.516107, 47.409347], [8.516148, 47.409355], [8.51619, 47.409361], [8.516608, 47.409392], [8.516643, 47.409397], [8.516675, 47.409401], [8.516726, 47.409411], [8.517002, 47.409525], [8.517062, 47.409549], [8.517129, 47.409584], [8.517302, 47.409696], [8.517325, 47.409711], [8.517396, 47.409752], [8.517478, 47.409786], [8.517525, 47.409799], [8.517566, 47.40981], [8.51766, 47.409823], [8.517793, 47.409834], [8.517929, 47.409833], [8.518084, 47.409825], [8.518216, 47.409808], [8.518345, 47.409782], [8.518468, 47.409744], [8.518765, 47.409646], [8.518891, 47.409596], [8.519067, 47.409516], [8.519147, 47.409487], [8.519283, 47.409453], [8.51939, 47.409418], [8.519505, 47.409372], [8.519611, 47.409317], [8.519741, 47.409237], [8.519875, 47.409143], [8.519924, 47.409097], [8.52, 47.408996], [8.520095, 47.408906], [8.520194, 47.408747]]], "type": "MultiLineString"}, "id": "2996", "properties": {}, "type": "Feature"}, {"bbox": [8.468281, 47.375912, 8.472159, 47.381764], "geometry": {"coordinates": [[[8.472159, 47.381764], [8.472116, 47.381746], [8.471603, 47.381514], [8.471456, 47.381446], [8.470867, 47.381234], [8.470769, 47.381196], [8.470676, 47.381152], [8.470589, 47.381103], [8.470507, 47.38105], [8.470064, 47.380737], [8.469664, 47.38044], [8.4696, 47.380388], [8.469542, 47.380333], [8.469492, 47.380274], [8.469449, 47.380212], [8.469414, 47.380149], [8.469387, 47.380083], [8.469339, 47.379945], [8.46923, 47.379632], [8.469174, 47.379494], [8.469101, 47.37936], [8.469014, 47.379229], [8.468912, 47.379104], [8.468893, 47.379082], [8.468877, 47.37906], [8.468861, 47.379037], [8.468842, 47.379002], [8.468826, 47.378967], [8.468813, 47.378931], [8.468703, 47.378548], [8.468528, 47.378041], [8.4685, 47.377966], [8.468469, 47.377892], [8.468434, 47.377818], [8.468314, 47.377581], [8.468298, 47.377544], [8.468287, 47.377507], [8.468282, 47.377469], [8.468281, 47.377431], [8.468286, 47.377393], [8.468296, 47.377355], [8.468311, 47.377319], [8.468331, 47.377283], [8.468493, 47.377029], [8.468529, 47.376977], [8.468573, 47.376928], [8.468623, 47.376881], [8.468834, 47.376701], [8.469241, 47.376324], [8.469291, 47.37628], [8.469344, 47.376237], [8.469399, 47.376195], [8.469763, 47.375936], [8.469861, 47.375912]]], "type": "MultiLineString"}, "id": "2997", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386157, 8.514492, 47.386925], "geometry": {"coordinates": [[[8.514492, 47.386157], [8.514064, 47.386275], [8.513335, 47.386477], [8.513133, 47.386543], [8.512938, 47.386617], [8.512751, 47.386701], [8.51262, 47.386768], [8.512499, 47.386843], [8.512388, 47.386925]]], "type": "MultiLineString"}, "id": "2998", "properties": {}, "type": "Feature"}, {"bbox": [8.572614, 47.411182, 8.572732, 47.4117], "geometry": {"coordinates": [[[8.572614, 47.411182], [8.572732, 47.411478], [8.572719, 47.411552], [8.572704, 47.411626], [8.572687, 47.4117]]], "type": "MultiLineString"}, "id": "3000", "properties": {}, "type": "Feature"}, {"bbox": [8.593569, 47.374773, 8.596799, 47.37888], "geometry": {"coordinates": [[[8.593569, 47.37888], [8.594384, 47.378596], [8.594459, 47.378569], [8.594532, 47.378539], [8.594602, 47.378507], [8.595097, 47.378269], [8.595135, 47.378249], [8.595171, 47.378227], [8.595204, 47.378203], [8.595233, 47.378178], [8.59526, 47.37815], [8.595283, 47.378122], [8.59543, 47.377921], [8.595447, 47.3779], [8.595466, 47.377881], [8.595488, 47.377862], [8.595513, 47.377845], [8.595539, 47.37783], [8.595704, 47.377742], [8.59579, 47.377699], [8.595881, 47.377662], [8.595976, 47.37763], [8.596074, 47.377604], [8.596176, 47.377583], [8.596279, 47.377568], [8.596292, 47.377566], [8.596305, 47.377564], [8.596318, 47.37756], [8.59633, 47.377556], [8.596341, 47.377552], [8.596394, 47.377528], [8.596408, 47.377522], [8.596422, 47.377518], [8.596438, 47.377514], [8.596453, 47.377511], [8.596462, 47.37751], [8.59647, 47.377508], [8.596478, 47.377505], [8.596486, 47.377502], [8.596493, 47.377499], [8.5965, 47.377495], [8.596506, 47.377491], [8.596511, 47.377486], [8.596516, 47.377481], [8.596521, 47.377476], [8.596524, 47.377471], [8.596527, 47.377465], [8.596549, 47.377417], [8.596554, 47.377402], [8.596558, 47.377386], [8.59656, 47.377371], [8.59656, 47.377355], [8.596557, 47.37734], [8.596543, 47.377272], [8.596521, 47.377108], [8.59652, 47.376943], [8.596541, 47.376778], [8.596682, 47.376054], [8.596684, 47.376036], [8.596685, 47.376018], [8.596682, 47.376], [8.596678, 47.375983], [8.596659, 47.375922], [8.596673, 47.375903], [8.596684, 47.375884], [8.596693, 47.375864], [8.5967, 47.375843], [8.596704, 47.375823], [8.596706, 47.375802], [8.596717, 47.375454], [8.596724, 47.375336], [8.596739, 47.375219], [8.596762, 47.375102], [8.596777, 47.375027], [8.596787, 47.374951], [8.596794, 47.374876], [8.596799, 47.374773]]], "type": "MultiLineString"}, "id": "3002", "properties": {}, "type": "Feature"}, {"bbox": [8.578883, 47.38454, 8.580378, 47.385845], "geometry": {"coordinates": [[[8.578883, 47.385845], [8.578955, 47.385786], [8.579156, 47.38559], [8.579201, 47.385543], [8.579252, 47.385501], [8.57931, 47.385461], [8.57931, 47.385461], [8.579311, 47.385461], [8.579343, 47.385444], [8.579378, 47.385429], [8.579414, 47.385415], [8.579452, 47.385404], [8.579503, 47.385388], [8.579551, 47.385368], [8.579596, 47.385346], [8.579638, 47.385321], [8.579677, 47.385293], [8.579712, 47.385263], [8.580348, 47.384645], [8.580349, 47.384645], [8.580356, 47.384637], [8.580362, 47.384629], [8.580368, 47.38462], [8.580372, 47.384612], [8.580375, 47.384603], [8.580377, 47.384594], [8.580378, 47.384585], [8.580377, 47.384575], [8.580376, 47.384566], [8.580373, 47.384557], [8.58037, 47.384548], [8.580365, 47.38454]]], "type": "MultiLineString"}, "id": "3003", "properties": {}, "type": "Feature"}, {"bbox": [8.543801, 47.372062, 8.545287, 47.372233], "geometry": {"coordinates": [[[8.543801, 47.372073], [8.543834, 47.372062], [8.54416, 47.372084], [8.544212, 47.372126], [8.544394, 47.37214], [8.545146, 47.372233], [8.545237, 47.37212], [8.545287, 47.372101]]], "type": "MultiLineString"}, "id": "3004", "properties": {}, "type": "Feature"}, {"bbox": [8.534602, 47.384278, 8.538439, 47.386596], "geometry": {"coordinates": [[[8.538439, 47.384278], [8.538213, 47.384331], [8.537343, 47.384768], [8.536978, 47.384957], [8.536768, 47.385052], [8.536718, 47.385099], [8.536249, 47.385331], [8.536112, 47.385391], [8.53585, 47.385499], [8.535699, 47.385626], [8.535438, 47.385832], [8.53536, 47.385915], [8.535115, 47.386087], [8.534999, 47.386179], [8.534666, 47.386375], [8.534651, 47.386389], [8.534638, 47.386405], [8.534626, 47.386421], [8.534617, 47.386438], [8.53461, 47.386455], [8.534605, 47.386473], [8.534603, 47.386491], [8.534602, 47.386509], [8.534604, 47.386527], [8.534608, 47.386545], [8.534614, 47.386562], [8.534623, 47.386579], [8.534633, 47.386596]]], "type": "MultiLineString"}, "id": "3005", "properties": {}, "type": "Feature"}, {"bbox": [8.520336, 47.35967, 8.521703, 47.361263], "geometry": {"coordinates": [[[8.521703, 47.361263], [8.521574, 47.361246], [8.520769, 47.360907], [8.520706, 47.360879], [8.520646, 47.360847], [8.52059, 47.360811], [8.520539, 47.360773], [8.520493, 47.360731], [8.520453, 47.360688], [8.520418, 47.360642], [8.520389, 47.360594], [8.520366, 47.360544], [8.520349, 47.360494], [8.520339, 47.360443], [8.520336, 47.360391], [8.520339, 47.360339], [8.520348, 47.360288], [8.520633, 47.35967]]], "type": "MultiLineString"}, "id": "3006", "properties": {}, "type": "Feature"}, {"bbox": [8.536249, 47.337883, 8.538223, 47.33881], "geometry": {"coordinates": [[[8.538223, 47.33881], [8.538014, 47.338585], [8.538006, 47.338569], [8.538, 47.338552], [8.537996, 47.338535], [8.537995, 47.338518], [8.537996, 47.338501], [8.537999, 47.338484], [8.538004, 47.338468], [8.538012, 47.338452], [8.538104, 47.338219], [8.538142, 47.338078], [8.537964, 47.338021], [8.537945, 47.338018], [8.537927, 47.338017], [8.537908, 47.338017], [8.537889, 47.338018], [8.53787, 47.33802], [8.537852, 47.338023], [8.537835, 47.338027], [8.537817, 47.338033], [8.537801, 47.338039], [8.537786, 47.338047], [8.537771, 47.338055], [8.537743, 47.338073], [8.537713, 47.338089], [8.537682, 47.338103], [8.537648, 47.338115], [8.537613, 47.338126], [8.537592, 47.338131], [8.53757, 47.338136], [8.537547, 47.338139], [8.537525, 47.338141], [8.537502, 47.338141], [8.537479, 47.33814], [8.537457, 47.338138], [8.537434, 47.338134], [8.537376, 47.338124], [8.537232, 47.338089], [8.537144, 47.338065], [8.536249, 47.337883]]], "type": "MultiLineString"}, "id": "3009", "properties": {}, "type": "Feature"}, {"bbox": [8.493829, 47.402358, 8.494191, 47.403057], "geometry": {"coordinates": [[[8.493829, 47.402358], [8.493855, 47.402414], [8.493994, 47.402764], [8.494095, 47.402983], [8.494102, 47.402995], [8.49411, 47.403007], [8.494119, 47.403018], [8.49413, 47.403029], [8.494191, 47.403057]]], "type": "MultiLineString"}, "id": "3010", "properties": {}, "type": "Feature"}, {"bbox": [8.518927, 47.365864, 8.519822, 47.366443], "geometry": {"coordinates": [[[8.519822, 47.365864], [8.519726, 47.36588], [8.519522, 47.365899], [8.519505, 47.3659], [8.519484, 47.365907], [8.519474, 47.36592], [8.519403, 47.366125], [8.519379, 47.366195], [8.519329, 47.366341], [8.519272, 47.366432], [8.519161, 47.366391], [8.519126, 47.366443], [8.51902, 47.366406], [8.518927, 47.366387]]], "type": "MultiLineString"}, "id": "3011", "properties": {}, "type": "Feature"}, {"bbox": [8.494724, 47.423586, 8.495979, 47.423735], "geometry": {"coordinates": [[[8.494724, 47.423586], [8.494757, 47.423597], [8.49479, 47.423607], [8.494825, 47.423615], [8.494861, 47.423621], [8.495232, 47.423664], [8.495605, 47.423702], [8.495979, 47.423735], [8.495979, 47.423735]]], "type": "MultiLineString"}, "id": "3015", "properties": {}, "type": "Feature"}, {"bbox": [8.541948, 47.425809, 8.542575, 47.426408], "geometry": {"coordinates": [[[8.541948, 47.426408], [8.541949, 47.426403], [8.541951, 47.426391], [8.541955, 47.42638], [8.54196, 47.426369], [8.541967, 47.426358], [8.541975, 47.426348], [8.541984, 47.426339], [8.541995, 47.426329], [8.5422, 47.426162], [8.542394, 47.425988], [8.542575, 47.425809]]], "type": "MultiLineString"}, "id": "3019", "properties": {}, "type": "Feature"}, {"bbox": [8.488837, 47.377791, 8.489223, 47.378688], "geometry": {"coordinates": [[[8.488971, 47.377791], [8.488975, 47.377827], [8.488976, 47.377833], [8.488976, 47.37784], [8.488976, 47.377846], [8.488975, 47.377851], [8.488974, 47.377857], [8.488972, 47.377862], [8.488958, 47.377884], [8.488952, 47.37789], [8.488946, 47.377895], [8.48894, 47.3779], [8.488933, 47.377906], [8.488926, 47.377911], [8.488919, 47.377916], [8.488883, 47.377936], [8.488879, 47.377938], [8.488876, 47.377941], [8.488872, 47.377944], [8.48887, 47.377946], [8.488868, 47.377948], [8.488867, 47.37795], [8.488861, 47.377957], [8.488856, 47.377964], [8.488852, 47.377971], [8.488846, 47.37798], [8.488842, 47.377989], [8.488839, 47.377999], [8.488837, 47.378008], [8.488837, 47.378018], [8.488837, 47.378027], [8.488839, 47.378037], [8.488841, 47.378049], [8.488843, 47.378062], [8.488844, 47.378075], [8.488845, 47.378087], [8.488845, 47.378099], [8.488846, 47.378111], [8.488845, 47.378194], [8.488846, 47.378211], [8.488847, 47.378228], [8.488849, 47.378245], [8.488851, 47.378261], [8.488854, 47.378276], [8.488858, 47.378291], [8.488858, 47.378292], [8.488858, 47.378292], [8.48886, 47.378298], [8.488863, 47.378305], [8.488865, 47.378311], [8.488868, 47.378318], [8.488872, 47.378325], [8.488875, 47.378331], [8.488875, 47.378332], [8.488876, 47.378333], [8.488883, 47.378344], [8.488891, 47.378355], [8.488899, 47.378365], [8.488903, 47.378371], [8.488907, 47.378376], [8.488911, 47.378381], [8.488912, 47.378381], [8.488912, 47.378382], [8.488916, 47.378387], [8.488921, 47.378392], [8.488926, 47.378397], [8.489152, 47.378635], [8.489182, 47.378664], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "3020", "properties": {}, "type": "Feature"}, {"bbox": [8.532264, 47.423463, 8.53357, 47.425836], "geometry": {"coordinates": [[[8.533545, 47.423463], [8.53357, 47.423478], [8.533416, 47.423581], [8.533369, 47.423619], [8.533335, 47.423661], [8.533306, 47.423707], [8.533258, 47.423768], [8.5332, 47.423826], [8.533151, 47.423867], [8.533094, 47.423902], [8.533023, 47.423939], [8.532956, 47.423979], [8.532895, 47.424033], [8.532857, 47.424086], [8.532723, 47.424296], [8.532706, 47.424343], [8.532703, 47.424386], [8.532714, 47.424432], [8.532739, 47.42449], [8.532746, 47.424549], [8.532744, 47.424598], [8.532736, 47.424666], [8.532731, 47.424783], [8.532715, 47.424839], [8.532687, 47.424889], [8.532626, 47.424988], [8.532602, 47.42506], [8.532598, 47.425073], [8.532518, 47.425191], [8.532494, 47.425238], [8.532482, 47.425276], [8.532485, 47.425326], [8.532485, 47.425374], [8.532466, 47.425448], [8.532426, 47.425512], [8.532347, 47.425602], [8.532289, 47.425684], [8.532271, 47.425731], [8.532266, 47.425769], [8.532264, 47.425836]]], "type": "MultiLineString"}, "id": "3021", "properties": {}, "type": "Feature"}, {"bbox": [8.486795, 47.369769, 8.487655, 47.370921], "geometry": {"coordinates": [[[8.487079, 47.370921], [8.487, 47.370873], [8.486929, 47.370823], [8.48685, 47.370767], [8.486831, 47.370753], [8.486823, 47.370748], [8.486817, 47.370741], [8.486811, 47.370735], [8.486806, 47.370728], [8.486802, 47.370721], [8.486799, 47.370713], [8.486796, 47.370705], [8.486795, 47.370698], [8.486795, 47.37069], [8.486796, 47.370682], [8.486798, 47.370675], [8.486801, 47.370667], [8.486805, 47.37066], [8.48681, 47.370653], [8.486816, 47.370647], [8.486823, 47.37064], [8.486831, 47.370633], [8.486868, 47.370602], [8.487044, 47.370453], [8.487123, 47.370386], [8.487191, 47.370325], [8.487193, 47.370323], [8.487307, 47.370221], [8.487416, 47.370123], [8.487504, 47.370017], [8.487541, 47.369958], [8.487609, 47.36985], [8.487624, 47.369813], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "3022", "properties": {}, "type": "Feature"}, {"bbox": [8.539595, 47.372053, 8.539662, 47.372081], "geometry": {"coordinates": [[[8.539662, 47.372081], [8.539595, 47.372053]]], "type": "MultiLineString"}, "id": "3023", "properties": {}, "type": "Feature"}, {"bbox": [8.522919, 47.371351, 8.524477, 47.372199], "geometry": {"coordinates": [[[8.524477, 47.371351], [8.522919, 47.372199]]], "type": "MultiLineString"}, "id": "3024", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.384949, 8.527054, 47.385143], "geometry": {"coordinates": [[[8.527054, 47.384949], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "3026", "properties": {}, "type": "Feature"}, {"bbox": [8.559282, 47.402268, 8.566827, 47.40323], "geometry": {"coordinates": [[[8.559282, 47.40323], [8.559364, 47.403146], [8.559474, 47.403091], [8.559583, 47.403047], [8.559594, 47.403043], [8.559605, 47.403039], [8.559617, 47.403035], [8.559631, 47.40303], [8.559646, 47.403026], [8.559661, 47.403021], [8.559693, 47.403012], [8.559725, 47.403005], [8.559758, 47.403], [8.559781, 47.402997], [8.559803, 47.402995], [8.559826, 47.402995], [8.559849, 47.402996], [8.560078, 47.403013], [8.560613, 47.403058], [8.561153, 47.403044], [8.561828, 47.403014], [8.562497, 47.402979], [8.562814, 47.402957], [8.563237, 47.402926], [8.563281, 47.402923], [8.563326, 47.40292], [8.563371, 47.402918], [8.563577, 47.402906], [8.563629, 47.402903], [8.563681, 47.402899], [8.563734, 47.402895], [8.563777, 47.402891], [8.563821, 47.402886], [8.563865, 47.402882], [8.564396, 47.402819], [8.564974, 47.402734], [8.565478, 47.40264], [8.565723, 47.402587], [8.566036, 47.402521], [8.566138, 47.402492], [8.566406, 47.402409], [8.566827, 47.402268]]], "type": "MultiLineString"}, "id": "3038", "properties": {}, "type": "Feature"}, {"bbox": [8.505726, 47.424184, 8.506101, 47.425778], "geometry": {"coordinates": [[[8.505726, 47.424184], [8.505792, 47.424227], [8.506042, 47.424667], [8.506101, 47.425029], [8.506031, 47.425184], [8.505962, 47.425345], [8.505932, 47.425473], [8.505933, 47.425715], [8.505893, 47.425778]]], "type": "MultiLineString"}, "id": "3039", "properties": {}, "type": "Feature"}, {"bbox": [8.478139, 47.404254, 8.481464, 47.404761], "geometry": {"coordinates": [[[8.481464, 47.404289], [8.481385, 47.40427], [8.481353, 47.404262], [8.481257, 47.404254], [8.4807, 47.404349], [8.480567, 47.404371], [8.480218, 47.404429], [8.479522, 47.404545], [8.478826, 47.404661], [8.478294, 47.40475], [8.478256, 47.404756], [8.478217, 47.404759], [8.478178, 47.404761], [8.478139, 47.40476]]], "type": "MultiLineString"}, "id": "3040", "properties": {}, "type": "Feature"}, {"bbox": [8.48864, 47.373047, 8.492281, 47.375021], "geometry": {"coordinates": [[[8.492281, 47.375021], [8.492258, 47.374895], [8.492152, 47.374645], [8.49211, 47.374435], [8.491991, 47.374177], [8.491893, 47.374154], [8.491777, 47.374107], [8.491585, 47.373822], [8.491442, 47.373591], [8.491296, 47.373481], [8.49055, 47.373652], [8.490404, 47.373671], [8.489879, 47.373665], [8.48977, 47.373661], [8.489591, 47.37365], [8.489392, 47.373656], [8.48864, 47.373047]]], "type": "MultiLineString"}, "id": "3041", "properties": {}, "type": "Feature"}, {"bbox": [8.459472, 47.374652, 8.470215, 47.381189], "geometry": {"coordinates": [[[8.459868, 47.381189], [8.459678, 47.380987], [8.459637, 47.380937], [8.459603, 47.380884], [8.459577, 47.380829], [8.459513, 47.380665], [8.459487, 47.38058], [8.459473, 47.380493], [8.459472, 47.380406], [8.459487, 47.380173], [8.459524, 47.379965], [8.459527, 47.379952], [8.459532, 47.379939], [8.459538, 47.379926], [8.459546, 47.379913], [8.459555, 47.379901], [8.459566, 47.37989], [8.459577, 47.379879], [8.459607, 47.379852], [8.459632, 47.379823], [8.459654, 47.379793], [8.459952, 47.379323], [8.460001, 47.379254], [8.46006, 47.379188], [8.460128, 47.379127], [8.460205, 47.379071], [8.460674, 47.378756], [8.460816, 47.378666], [8.460964, 47.37858], [8.461118, 47.378501], [8.462172, 47.377982], [8.462549, 47.37778], [8.4629, 47.377558], [8.463222, 47.377316], [8.463833, 47.376818], [8.464578, 47.376135], [8.465088, 47.375639], [8.46516, 47.375575], [8.465239, 47.375516], [8.465326, 47.375463], [8.465419, 47.375414], [8.465518, 47.375371], [8.465623, 47.375335], [8.465731, 47.375305], [8.466162, 47.3752], [8.466777, 47.375042], [8.466884, 47.375012], [8.466987, 47.374976], [8.467086, 47.374936], [8.467541, 47.374734], [8.467576, 47.37472], [8.467613, 47.374708], [8.467651, 47.374699], [8.467691, 47.374692], [8.467731, 47.374687], [8.467772, 47.374685], [8.467813, 47.374685], [8.467854, 47.374688], [8.467894, 47.374693], [8.467933, 47.374701], [8.467971, 47.374711], [8.468616, 47.374904], [8.468719, 47.374932], [8.468824, 47.374954], [8.468932, 47.37497], [8.469042, 47.37498], [8.469152, 47.374985], [8.469188, 47.374984], [8.469224, 47.374982], [8.46926, 47.374977], [8.469295, 47.374971], [8.469329, 47.374962], [8.469397, 47.374941], [8.469462, 47.374916], [8.469523, 47.374886], [8.46958, 47.374853], [8.469633, 47.374817], [8.469748, 47.374729], [8.46977, 47.374714], [8.469793, 47.374701], [8.469817, 47.374689], [8.469844, 47.374678], [8.469871, 47.374669], [8.469899, 47.374662], [8.469929, 47.374657], [8.469959, 47.374653], [8.469978, 47.374652], [8.469998, 47.374652], [8.470018, 47.374653], [8.470037, 47.374655], [8.470056, 47.374658], [8.470075, 47.374663], [8.470093, 47.374668], [8.47011, 47.374675], [8.470126, 47.374683], [8.470141, 47.374691], [8.470155, 47.3747], [8.470168, 47.374711], [8.470179, 47.374722], [8.470189, 47.374733], [8.470198, 47.374745], [8.470205, 47.374758], [8.47021, 47.374771], [8.470213, 47.374784], [8.470215, 47.374797], [8.470215, 47.374811], [8.470212, 47.374835], [8.470207, 47.374858], [8.470198, 47.374881], [8.470186, 47.374904], [8.470172, 47.374926], [8.470154, 47.374947], [8.470135, 47.374967], [8.469891, 47.375191], [8.469875, 47.375208], [8.469861, 47.375225], [8.469849, 47.375243], [8.46984, 47.375261], [8.469833, 47.37528], [8.469829, 47.3753], [8.469827, 47.375319], [8.469828, 47.375339], [8.469864, 47.375668], [8.469861, 47.375912]]], "type": "MultiLineString"}, "id": "3042", "properties": {}, "type": "Feature"}, {"bbox": [8.46929, 47.389182, 8.470303, 47.389876], "geometry": {"coordinates": [[[8.470303, 47.389182], [8.470264, 47.389318], [8.470257, 47.389334], [8.470249, 47.38935], [8.470238, 47.389366], [8.470225, 47.389381], [8.470211, 47.389395], [8.470195, 47.389408], [8.470177, 47.38942], [8.470158, 47.389432], [8.470138, 47.389442], [8.469518, 47.389717], [8.46929, 47.389876]]], "type": "MultiLineString"}, "id": "3043", "properties": {}, "type": "Feature"}, {"bbox": [8.568918, 47.365571, 8.569465, 47.366405], "geometry": {"coordinates": [[[8.569151, 47.365571], [8.568989, 47.365744], [8.568971, 47.365763], [8.568955, 47.365783], [8.568942, 47.365804], [8.568932, 47.365826], [8.568924, 47.365848], [8.56892, 47.365871], [8.568918, 47.365893], [8.568919, 47.365916], [8.568923, 47.365939], [8.56893, 47.365961], [8.56894, 47.365983], [8.568953, 47.366004], [8.568968, 47.366025], [8.569294, 47.36634], [8.569465, 47.366405]]], "type": "MultiLineString"}, "id": "3044", "properties": {}, "type": "Feature"}, {"bbox": [8.553173, 47.388611, 8.555822, 47.390016], "geometry": {"coordinates": [[[8.553173, 47.390016], [8.553207, 47.389954], [8.553222, 47.38992], [8.553232, 47.389886], [8.553237, 47.389852], [8.553246, 47.389734], [8.553256, 47.389661], [8.553273, 47.389588], [8.553299, 47.389517], [8.553351, 47.389392], [8.553357, 47.38938], [8.553364, 47.389368], [8.553373, 47.389357], [8.553383, 47.389346], [8.553395, 47.389337], [8.553408, 47.389327], [8.553422, 47.389319], [8.553437, 47.389311], [8.553454, 47.389305], [8.55347, 47.389299], [8.553488, 47.389295], [8.553506, 47.389291], [8.553525, 47.389289], [8.553543, 47.389288], [8.553562, 47.389288], [8.553581, 47.389289], [8.553692, 47.389298], [8.553708, 47.389299], [8.553725, 47.389299], [8.553741, 47.389298], [8.553757, 47.389296], [8.553773, 47.389293], [8.553788, 47.389289], [8.553803, 47.389284], [8.553817, 47.389279], [8.554057, 47.389173], [8.554381, 47.389065], [8.554454, 47.389042], [8.554528, 47.389023], [8.554604, 47.389005], [8.554883, 47.388949], [8.555168, 47.388871], [8.555253, 47.388844], [8.555334, 47.388812], [8.55541, 47.388775], [8.555617, 47.388663], [8.555631, 47.388656], [8.555647, 47.38865], [8.555663, 47.388644], [8.55568, 47.38864], [8.555697, 47.388636], [8.555822, 47.388611]]], "type": "MultiLineString"}, "id": "3045", "properties": {}, "type": "Feature"}, {"bbox": [8.579387, 47.406027, 8.581742, 47.407438], "geometry": {"coordinates": [[[8.579387, 47.407438], [8.579527, 47.407373], [8.580927, 47.406723], [8.581034, 47.406671], [8.581134, 47.406613], [8.581226, 47.406549], [8.581309, 47.40648], [8.581384, 47.406407], [8.581742, 47.406027]]], "type": "MultiLineString"}, "id": "3046", "properties": {}, "type": "Feature"}, {"bbox": [8.524917, 47.428173, 8.52548, 47.431207], "geometry": {"coordinates": [[[8.524967, 47.428173], [8.524955, 47.428192], [8.524946, 47.428211], [8.52494, 47.428231], [8.524922, 47.428324], [8.524917, 47.428417], [8.524925, 47.42851], [8.524944, 47.428669], [8.524956, 47.428734], [8.524967, 47.428799], [8.524986, 47.428872], [8.525012, 47.428944], [8.525043, 47.429014], [8.525165, 47.429256], [8.525203, 47.429341], [8.525235, 47.429426], [8.52526, 47.429512], [8.525268, 47.429554], [8.525272, 47.429596], [8.525273, 47.429638], [8.525263, 47.429875], [8.525258, 47.429941], [8.52525, 47.430008], [8.525238, 47.430074], [8.525223, 47.430165], [8.525215, 47.430256], [8.525215, 47.430347], [8.525224, 47.430583], [8.525224, 47.430583], [8.525229, 47.430664], [8.525245, 47.430745], [8.525271, 47.430824], [8.525307, 47.430902], [8.525307, 47.430902], [8.525441, 47.431149], [8.52548, 47.431207]]], "type": "MultiLineString"}, "id": "3047", "properties": {}, "type": "Feature"}, {"bbox": [8.488101, 47.407362, 8.489962, 47.407716], "geometry": {"coordinates": [[[8.489962, 47.407432], [8.489899, 47.40739], [8.489885, 47.407383], [8.489871, 47.407377], [8.489856, 47.407372], [8.48984, 47.407368], [8.489824, 47.407365], [8.489807, 47.407363], [8.489791, 47.407362], [8.489774, 47.407362], [8.488833, 47.407388], [8.488791, 47.407391], [8.488749, 47.407396], [8.488708, 47.407403], [8.488668, 47.407413], [8.48863, 47.407426], [8.488593, 47.407441], [8.488101, 47.407716]]], "type": "MultiLineString"}, "id": "3048", "properties": {}, "type": "Feature"}, {"bbox": [8.482097, 47.40326, 8.486517, 47.407476], "geometry": {"coordinates": [[[8.482097, 47.40326], [8.482185, 47.403475], [8.482193, 47.403495], [8.482198, 47.403516], [8.4822, 47.403537], [8.482215, 47.403763], [8.482216, 47.403773], [8.482217, 47.403783], [8.482219, 47.403793], [8.482222, 47.403803], [8.482226, 47.403813], [8.48223, 47.403822], [8.482301, 47.403956], [8.482309, 47.403969], [8.482324, 47.403994], [8.48244, 47.404179], [8.482465, 47.404221], [8.482495, 47.404264], [8.482531, 47.404306], [8.482573, 47.404345], [8.482589, 47.404358], [8.482607, 47.404369], [8.482626, 47.40438], [8.482646, 47.404389], [8.482668, 47.404398], [8.48269, 47.404405], [8.482764, 47.404425], [8.48284, 47.404444], [8.482917, 47.40446], [8.483201, 47.404515], [8.483259, 47.404527], [8.483287, 47.404532], [8.483315, 47.404536], [8.483343, 47.404538], [8.483372, 47.404538], [8.483467, 47.404538], [8.483474, 47.404539], [8.483481, 47.404539], [8.483489, 47.404541], [8.483496, 47.404542], [8.483503, 47.404544], [8.483509, 47.404547], [8.483515, 47.404549], [8.483521, 47.404553], [8.483526, 47.404556], [8.483531, 47.40456], [8.483536, 47.404564], [8.48354, 47.404568], [8.483543, 47.404573], [8.48357, 47.4046], [8.483595, 47.404629], [8.483615, 47.404658], [8.483655, 47.404717], [8.483696, 47.404787], [8.483808, 47.404882], [8.483843, 47.404902], [8.48388, 47.40492], [8.483919, 47.404936], [8.483961, 47.404949], [8.484003, 47.40496], [8.484047, 47.404969], [8.484093, 47.404978], [8.484137, 47.40499], [8.484179, 47.405004], [8.484219, 47.405022], [8.484257, 47.405041], [8.484291, 47.405063], [8.484354, 47.405109], [8.48442, 47.405152], [8.484489, 47.405193], [8.484547, 47.405231], [8.484652, 47.405273], [8.484671, 47.40528], [8.484688, 47.405288], [8.484704, 47.405297], [8.484719, 47.405307], [8.484733, 47.405318], [8.484745, 47.40533], [8.485196, 47.405804], [8.485217, 47.405822], [8.4852, 47.405875], [8.485188, 47.405921], [8.485217, 47.40598], [8.485252, 47.406027], [8.485292, 47.406073], [8.485335, 47.406118], [8.485489, 47.406266], [8.485635, 47.406432], [8.485775, 47.406593], [8.485838, 47.406685], [8.485893, 47.406791], [8.485955, 47.406982], [8.485981, 47.407022], [8.486019, 47.407054], [8.486123, 47.407111], [8.486188, 47.407155], [8.4863, 47.407256], [8.486382, 47.407339], [8.486459, 47.407428], [8.486517, 47.407476]]], "type": "MultiLineString"}, "id": "3051", "properties": {}, "type": "Feature"}, {"bbox": [8.519488, 47.392028, 8.523523, 47.393449], "geometry": {"coordinates": [[[8.519488, 47.393262], [8.519587, 47.393449], [8.520034, 47.393282], [8.521072, 47.392909], [8.521442, 47.392778], [8.522215, 47.392519], [8.522157, 47.392422], [8.523344, 47.392028], [8.523438, 47.392147], [8.523523, 47.392119]]], "type": "MultiLineString"}, "id": "3053", "properties": {}, "type": "Feature"}, {"bbox": [8.54074, 47.372329, 8.541692, 47.372929], "geometry": {"coordinates": [[[8.541692, 47.372929], [8.541662, 47.372818], [8.541619, 47.372709], [8.541562, 47.372603], [8.541545, 47.372577], [8.541524, 47.372552], [8.541501, 47.372528], [8.541474, 47.372506], [8.541445, 47.372486], [8.541413, 47.372467], [8.541379, 47.37245], [8.541343, 47.372435], [8.541305, 47.372423], [8.541266, 47.372412], [8.541226, 47.372404], [8.541185, 47.372399], [8.54074, 47.372329]]], "type": "MultiLineString"}, "id": "3055", "properties": {}, "type": "Feature"}, {"bbox": [8.507276, 47.412318, 8.509713, 47.413374], "geometry": {"coordinates": [[[8.509713, 47.412318], [8.508966, 47.412353], [8.508936, 47.412358], [8.508907, 47.412365], [8.508879, 47.412373], [8.508853, 47.412383], [8.508827, 47.412395], [8.508804, 47.412409], [8.508782, 47.412423], [8.508763, 47.412439], [8.508745, 47.412456], [8.508317, 47.412814], [8.508052, 47.412699], [8.507276, 47.413374]]], "type": "MultiLineString"}, "id": "3056", "properties": {}, "type": "Feature"}, {"bbox": [8.523722, 47.353421, 8.525166, 47.360273], "geometry": {"coordinates": [[[8.523722, 47.360273], [8.523783, 47.359942], [8.52385, 47.359632], [8.5241, 47.358878], [8.524289, 47.358316], [8.524577, 47.357457], [8.524643, 47.357231], [8.524646, 47.357219], [8.524696, 47.357003], [8.524733, 47.356769], [8.52475, 47.356537], [8.524763, 47.35623], [8.524783, 47.355775], [8.524798, 47.355569], [8.524827, 47.355367], [8.524873, 47.35512], [8.524982, 47.354529], [8.525071, 47.354045], [8.525111, 47.353822], [8.525121, 47.353717], [8.525112, 47.353605], [8.525114, 47.353523], [8.525166, 47.353421]]], "type": "MultiLineString"}, "id": "3057", "properties": {}, "type": "Feature"}, {"bbox": [8.520882, 47.385086, 8.531212, 47.388306], "geometry": {"coordinates": [[[8.531212, 47.388104], [8.530815, 47.388185], [8.530409, 47.388245], [8.529998, 47.388283], [8.529613, 47.388306], [8.529227, 47.388306], [8.528843, 47.388284], [8.528462, 47.38824], [8.528023, 47.388156], [8.527596, 47.388044], [8.527186, 47.387907], [8.525165, 47.38724], [8.523559, 47.386707], [8.523027, 47.386533], [8.522668, 47.386395], [8.52233, 47.386233], [8.522017, 47.38605], [8.521798, 47.385893], [8.5216, 47.385724], [8.521424, 47.385543], [8.521303, 47.385396], [8.521196, 47.385243], [8.521102, 47.385086], [8.520882, 47.385161]]], "type": "MultiLineString"}, "id": "3058", "properties": {}, "type": "Feature"}, {"bbox": [8.54054, 47.373382, 8.540735, 47.373986], "geometry": {"coordinates": [[[8.540725, 47.373382], [8.540735, 47.373643], [8.54054, 47.373845], [8.540549, 47.373986]]], "type": "MultiLineString"}, "id": "3059", "properties": {}, "type": "Feature"}, {"bbox": [8.52372, 47.329211, 8.524948, 47.332966], "geometry": {"coordinates": [[[8.52386, 47.332966], [8.523846, 47.332772], [8.523811, 47.332182], [8.523812, 47.331864], [8.523809, 47.33182], [8.5238, 47.331777], [8.523784, 47.331734], [8.523763, 47.331693], [8.523746, 47.33166], [8.523734, 47.331626], [8.523726, 47.331592], [8.523723, 47.331557], [8.52372, 47.331395], [8.523734, 47.331], [8.523752, 47.330603], [8.523755, 47.330573], [8.523762, 47.330544], [8.523773, 47.330516], [8.523787, 47.330488], [8.523805, 47.330461], [8.523827, 47.330436], [8.523852, 47.330412], [8.52388, 47.330389], [8.523911, 47.330369], [8.523944, 47.33035], [8.524026, 47.330305], [8.524128, 47.330258], [8.524143, 47.330251], [8.524143, 47.330251], [8.524162, 47.330244], [8.524182, 47.330237], [8.524204, 47.330232], [8.524225, 47.330228], [8.524247, 47.330225], [8.524757, 47.330184], [8.524774, 47.330182], [8.524792, 47.330179], [8.524808, 47.330175], [8.524825, 47.33017], [8.52484, 47.330164], [8.524855, 47.330157], [8.524868, 47.330149], [8.524881, 47.33014], [8.524892, 47.330131], [8.524902, 47.330121], [8.524911, 47.33011], [8.524923, 47.330093], [8.524933, 47.330074], [8.52494, 47.330055], [8.524945, 47.330036], [8.524948, 47.330016], [8.524948, 47.329997], [8.524946, 47.329977], [8.524945, 47.329969], [8.524893, 47.329751], [8.524795, 47.32946], [8.524728, 47.329278], [8.524713, 47.329211]]], "type": "MultiLineString"}, "id": "3060", "properties": {}, "type": "Feature"}, {"bbox": [8.532647, 47.397787, 8.533568, 47.398645], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.533434, 47.397822], [8.533297, 47.397849], [8.533156, 47.397867], [8.532911, 47.397883], [8.532886, 47.397888], [8.53286, 47.397895], [8.532836, 47.397903], [8.532813, 47.397912], [8.532792, 47.397923], [8.532772, 47.397935], [8.532753, 47.397948], [8.532736, 47.397962], [8.532721, 47.397977], [8.532708, 47.397993], [8.532697, 47.39801], [8.532647, 47.39843], [8.532652, 47.398451], [8.53266, 47.398472], [8.532671, 47.398492], [8.532684, 47.398511], [8.532699, 47.39853], [8.532717, 47.398547], [8.532737, 47.398564], [8.532759, 47.398579], [8.532782, 47.398593], [8.532808, 47.398605], [8.532835, 47.398616], [8.532863, 47.398625], [8.532892, 47.398633], [8.532922, 47.398639], [8.532953, 47.398643], [8.532984, 47.398645], [8.533018, 47.398641], [8.533052, 47.398634], [8.533085, 47.398625], [8.533116, 47.398615], [8.533146, 47.398602], [8.533173, 47.398588], [8.533199, 47.398572], [8.533223, 47.398554], [8.533244, 47.398535], [8.533263, 47.398515], [8.533279, 47.398494]]], "type": "MultiLineString"}, "id": "3061", "properties": {}, "type": "Feature"}, {"bbox": [8.518063, 47.394137, 8.518783, 47.39461], "geometry": {"coordinates": [[[8.518081, 47.394137], [8.518115, 47.394252], [8.518138, 47.394349], [8.518063, 47.394571], [8.518074, 47.394601], [8.51812, 47.394608], [8.518341, 47.394608], [8.518562, 47.394609], [8.518783, 47.39461]]], "type": "MultiLineString"}, "id": "3062", "properties": {}, "type": "Feature"}, {"bbox": [8.579839, 47.366943, 8.594858, 47.371634], "geometry": {"coordinates": [[[8.579839, 47.366943], [8.579871, 47.366958], [8.579903, 47.366971], [8.579938, 47.366983], [8.580145, 47.367046], [8.580385, 47.367125], [8.580708, 47.367225], [8.580814, 47.367252], [8.580922, 47.367274], [8.581033, 47.367292], [8.581294, 47.367336], [8.581412, 47.367359], [8.581529, 47.367384], [8.581645, 47.367411], [8.581817, 47.367445], [8.581916, 47.367458], [8.582015, 47.367468], [8.582114, 47.367476], [8.582157, 47.367482], [8.582199, 47.36749], [8.582239, 47.3675], [8.582278, 47.367513], [8.582315, 47.367529], [8.58235, 47.367546], [8.582382, 47.367566], [8.582437, 47.367602], [8.582488, 47.367641], [8.582535, 47.367681], [8.582577, 47.367729], [8.582617, 47.367778], [8.582655, 47.367828], [8.582701, 47.36789], [8.582746, 47.367952], [8.582789, 47.368015], [8.582984, 47.368324], [8.583006, 47.368353], [8.583031, 47.368381], [8.58306, 47.368408], [8.583211, 47.368528], [8.583268, 47.368571], [8.58333, 47.36861], [8.583396, 47.368646], [8.583503, 47.368698], [8.583606, 47.368752], [8.583705, 47.36881], [8.583859, 47.368916], [8.583937, 47.368972], [8.584186, 47.369142], [8.584203, 47.369151], [8.584221, 47.369159], [8.58424, 47.369166], [8.584259, 47.369172], [8.584298, 47.369184], [8.584336, 47.369198], [8.584372, 47.369214], [8.584401, 47.36923], [8.584429, 47.369247], [8.584454, 47.369266], [8.584476, 47.369286], [8.584495, 47.369308], [8.584512, 47.36933], [8.584558, 47.369411], [8.584597, 47.369493], [8.584628, 47.369577], [8.58468, 47.369746], [8.584687, 47.369759], [8.584695, 47.369771], [8.584705, 47.369783], [8.584717, 47.369794], [8.58473, 47.369804], [8.584744, 47.369813], [8.584759, 47.369822], [8.584775, 47.36983], [8.584792, 47.369836], [8.584811, 47.369842], [8.584829, 47.369846], [8.584848, 47.36985], [8.584868, 47.369852], [8.584888, 47.369853], [8.585216, 47.369847], [8.585544, 47.369836], [8.585872, 47.36982], [8.585934, 47.369819], [8.585996, 47.369821], [8.586057, 47.369827], [8.586445, 47.369881], [8.587, 47.369971], [8.587063, 47.369987], [8.588254, 47.370183], [8.588453, 47.370216], [8.589542, 47.370393], [8.589963, 47.370464], [8.59004, 47.370478], [8.590117, 47.370491], [8.590194, 47.370506], [8.590233, 47.370513], [8.590272, 47.370519], [8.590311, 47.370525], [8.590405, 47.370537], [8.5905, 47.370546], [8.590596, 47.370552], [8.590731, 47.37056], [8.590865, 47.370575], [8.590997, 47.370596], [8.591138, 47.370618], [8.591282, 47.370632], [8.591427, 47.370638], [8.591777, 47.370642], [8.591827, 47.370644], [8.591876, 47.370649], [8.591924, 47.370656], [8.591972, 47.370667], [8.592018, 47.37068], [8.592376, 47.370792], [8.592563, 47.370846], [8.592638, 47.370864], [8.592716, 47.370877], [8.592795, 47.370886], [8.59286, 47.370892], [8.592924, 47.370902], [8.592987, 47.370915], [8.593047, 47.370933], [8.593105, 47.370953], [8.593403, 47.371069], [8.593474, 47.371094], [8.593547, 47.371115], [8.593622, 47.371131], [8.593786, 47.371162], [8.593821, 47.37117], [8.593856, 47.37118], [8.593889, 47.371192], [8.593921, 47.371206], [8.593951, 47.371221], [8.594047, 47.37128], [8.5941, 47.371309], [8.594157, 47.371335], [8.594218, 47.371357], [8.594281, 47.371376], [8.594482, 47.371426], [8.594515, 47.371436], [8.594547, 47.371447], [8.594577, 47.371461], [8.594605, 47.371477], [8.594858, 47.371634]]], "type": "MultiLineString"}, "id": "3067", "properties": {}, "type": "Feature"}, {"bbox": [8.516865, 47.373937, 8.517302, 47.374913], "geometry": {"coordinates": [[[8.516865, 47.374872], [8.516874, 47.374898], [8.516989, 47.374913], [8.517302, 47.374654], [8.517291, 47.37462], [8.517283, 47.37457], [8.517035, 47.37443], [8.517166, 47.373962], [8.517146, 47.373937]]], "type": "MultiLineString"}, "id": "3075", "properties": {}, "type": "Feature"}, {"bbox": [8.557834, 47.39131, 8.560564, 47.392206], "geometry": {"coordinates": [[[8.557834, 47.391521], [8.557837, 47.391531], [8.557841, 47.39154], [8.557846, 47.391548], [8.557852, 47.391557], [8.557859, 47.391565], [8.557867, 47.391572], [8.557877, 47.391579], [8.557887, 47.391585], [8.557898, 47.391591], [8.55791, 47.391596], [8.557922, 47.3916], [8.557963, 47.391612], [8.557989, 47.391619], [8.558015, 47.391625], [8.558042, 47.391629], [8.55807, 47.391631], [8.558098, 47.391632], [8.558334, 47.391635], [8.558458, 47.39164], [8.55858, 47.391652], [8.558701, 47.391671], [8.558974, 47.391724], [8.559014, 47.391731], [8.559054, 47.391735], [8.559095, 47.391737], [8.559136, 47.391737], [8.559177, 47.391734], [8.559217, 47.391729], [8.559256, 47.391722], [8.559295, 47.391713], [8.559588, 47.391634], [8.55965, 47.391615], [8.559709, 47.391593], [8.559765, 47.391568], [8.559996, 47.391454], [8.560066, 47.391422], [8.56014, 47.391394], [8.560218, 47.391369], [8.560426, 47.39131], [8.560464, 47.391412], [8.560556, 47.39179], [8.560562, 47.391827], [8.560564, 47.391865], [8.56056, 47.391903], [8.560551, 47.39194], [8.560491, 47.392138], [8.560487, 47.392155], [8.560486, 47.392172], [8.560487, 47.392189], [8.56049, 47.392206]]], "type": "MultiLineString"}, "id": "3076", "properties": {}, "type": "Feature"}, {"bbox": [8.544817, 47.376812, 8.545318, 47.377751], "geometry": {"coordinates": [[[8.544817, 47.377751], [8.544945, 47.377747], [8.544966, 47.377745], [8.544986, 47.377742], [8.545006, 47.377738], [8.545025, 47.377732], [8.545044, 47.377726], [8.545061, 47.377718], [8.545078, 47.377709], [8.545094, 47.3777], [8.545108, 47.377689], [8.545121, 47.377678], [8.545132, 47.377666], [8.545142, 47.377654], [8.545151, 47.377641], [8.545157, 47.377627], [8.545162, 47.377613], [8.545193, 47.377492], [8.545216, 47.377369], [8.545231, 47.377246], [8.545245, 47.3771], [8.545274, 47.376955], [8.545318, 47.376812]]], "type": "MultiLineString"}, "id": "3079", "properties": {}, "type": "Feature"}, {"bbox": [8.517063, 47.385389, 8.517307, 47.385503], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.517222, 47.385463], [8.517063, 47.385503]]], "type": "MultiLineString"}, "id": "3083", "properties": {}, "type": "Feature"}, {"bbox": [8.469861, 47.375912, 8.472898, 47.381882], "geometry": {"coordinates": [[[8.469861, 47.375912], [8.469986, 47.376054], [8.470002, 47.376076], [8.470016, 47.376098], [8.470027, 47.376121], [8.470036, 47.376145], [8.470041, 47.376169], [8.470098, 47.376511], [8.470097, 47.377011], [8.470102, 47.37709], [8.470117, 47.377168], [8.470142, 47.377244], [8.470178, 47.377319], [8.470421, 47.377765], [8.470439, 47.3778], [8.470462, 47.377842], [8.470485, 47.377883], [8.47051, 47.377924], [8.470683, 47.378197], [8.470704, 47.378233], [8.47072, 47.37827], [8.470732, 47.378308], [8.47074, 47.378347], [8.470743, 47.378386], [8.470748, 47.37863], [8.47077, 47.378833], [8.470762, 47.378929], [8.470791, 47.378972], [8.470813, 47.379017], [8.470831, 47.379063], [8.470842, 47.379109], [8.470858, 47.379203], [8.470872, 47.379213], [8.470885, 47.379223], [8.470892, 47.379291], [8.470894, 47.379313], [8.470895, 47.379334], [8.470896, 47.379355], [8.470897, 47.379388], [8.470901, 47.379431], [8.470912, 47.379474], [8.470929, 47.379516], [8.471015, 47.379692], [8.47109, 47.379828], [8.471128, 47.379903], [8.471149, 47.379948], [8.471175, 47.379991], [8.471205, 47.380033], [8.47133, 47.380195], [8.471365, 47.380244], [8.471397, 47.380295], [8.471425, 47.380346], [8.471477, 47.380451], [8.471523, 47.380531], [8.471579, 47.380609], [8.471644, 47.380683], [8.471718, 47.380753], [8.471778, 47.380801], [8.471844, 47.380846], [8.471915, 47.380888], [8.471991, 47.380925], [8.472136, 47.380995], [8.472383, 47.38113], [8.472487, 47.381191], [8.472584, 47.381258], [8.472672, 47.38133], [8.472751, 47.381406], [8.472898, 47.38156], [8.472889, 47.381566], [8.47287, 47.381579], [8.472852, 47.381593], [8.472837, 47.381608], [8.472823, 47.381624], [8.472754, 47.381714], [8.472586, 47.381882]]], "type": "MultiLineString"}, "id": "3084", "properties": {}, "type": "Feature"}, {"bbox": [8.542833, 47.371788, 8.543842, 47.37234], "geometry": {"coordinates": [[[8.542833, 47.371788], [8.5431, 47.37181], [8.543574, 47.371848], [8.543797, 47.371873], [8.543801, 47.372073], [8.543801, 47.372094], [8.543842, 47.372311], [8.543842, 47.37234]]], "type": "MultiLineString"}, "id": "3085", "properties": {}, "type": "Feature"}, {"bbox": [8.476629, 47.360726, 8.481114, 47.3628], "geometry": {"coordinates": [[[8.478151, 47.360806], [8.478143, 47.360813], [8.478135, 47.36082], [8.478126, 47.360827], [8.478116, 47.360833], [8.478105, 47.360839], [8.478093, 47.360843], [8.478081, 47.360847], [8.478069, 47.360851], [8.478056, 47.360853], [8.478043, 47.360855], [8.477944, 47.360867], [8.477924, 47.360868], [8.477903, 47.360869], [8.477882, 47.360869], [8.477862, 47.360867], [8.477841, 47.360864], [8.477822, 47.36086], [8.477802, 47.360855], [8.477784, 47.360848], [8.477766, 47.360841], [8.477749, 47.360833], [8.477672, 47.360795], [8.477591, 47.360763], [8.477505, 47.360736], [8.477489, 47.360732], [8.477472, 47.360729], [8.477455, 47.360727], [8.477437, 47.360726], [8.47742, 47.360726], [8.477403, 47.360727], [8.477385, 47.360729], [8.477368, 47.360732], [8.477352, 47.360736], [8.477336, 47.360741], [8.477321, 47.360746], [8.477286, 47.360762], [8.477254, 47.36078], [8.477225, 47.3608], [8.477098, 47.360899], [8.476977, 47.361002], [8.476865, 47.361108], [8.476812, 47.361166], [8.476767, 47.361227], [8.476731, 47.361291], [8.476703, 47.361356], [8.476684, 47.361423], [8.476654, 47.361566], [8.476631, 47.36173], [8.476629, 47.361895], [8.476648, 47.362059], [8.476719, 47.362441], [8.476725, 47.362465], [8.476735, 47.36249], [8.476747, 47.362514], [8.476763, 47.362536], [8.476782, 47.362558], [8.476804, 47.362579], [8.476823, 47.362594], [8.476843, 47.362608], [8.476866, 47.36262], [8.47689, 47.362632], [8.476916, 47.362641], [8.476942, 47.36265], [8.47697, 47.362656], [8.476998, 47.362662], [8.477027, 47.362665], [8.477056, 47.362667], [8.477085, 47.362667], [8.477114, 47.362665], [8.477143, 47.362662], [8.477171, 47.362657], [8.477199, 47.36265], [8.477225, 47.362642], [8.477251, 47.362632], [8.477275, 47.362621], [8.477298, 47.362609], [8.477319, 47.362595], [8.477338, 47.36258], [8.477355, 47.362564], [8.477413, 47.362505], [8.477437, 47.362482], [8.477463, 47.362462], [8.477493, 47.362443], [8.477524, 47.362426], [8.477558, 47.362411], [8.477594, 47.362397], [8.477631, 47.362387], [8.47767, 47.362378], [8.477709, 47.362372], [8.477749, 47.362368], [8.478264, 47.362337], [8.4783, 47.362335], [8.478336, 47.362336], [8.478372, 47.362339], [8.478407, 47.362344], [8.478442, 47.362351], [8.478475, 47.362361], [8.478508, 47.362372], [8.478736, 47.362458], [8.479041, 47.362587], [8.479108, 47.362613], [8.479178, 47.362634], [8.47925, 47.362651], [8.479572, 47.362715], [8.479929, 47.362792], [8.47995, 47.362796], [8.479972, 47.362799], [8.479993, 47.3628], [8.480015, 47.3628], [8.480037, 47.362799], [8.480058, 47.362796], [8.480079, 47.362792], [8.4801, 47.362787], [8.48012, 47.362781], [8.480138, 47.362773], [8.480156, 47.362765], [8.480173, 47.362755], [8.480188, 47.362745], [8.480202, 47.362733], [8.480214, 47.362721], [8.480225, 47.362708], [8.480233, 47.362694], [8.480241, 47.362681], [8.480246, 47.362666], [8.480249, 47.362652], [8.480251, 47.362637], [8.48025, 47.362622], [8.480216, 47.362258], [8.480216, 47.362241], [8.480217, 47.362225], [8.480221, 47.362208], [8.480227, 47.362192], [8.480235, 47.362176], [8.480245, 47.362161], [8.480257, 47.362146], [8.48027, 47.362132], [8.480286, 47.362119], [8.480303, 47.362107], [8.480321, 47.362096], [8.480341, 47.362086], [8.480362, 47.362078], [8.480384, 47.36207], [8.480407, 47.362064], [8.480431, 47.36206], [8.480455, 47.362056], [8.480479, 47.362055], [8.480739, 47.362043], [8.480769, 47.362041], [8.480798, 47.362037], [8.480827, 47.362031], [8.480855, 47.362024], [8.480882, 47.362015], [8.480908, 47.362004], [8.480932, 47.361992], [8.480955, 47.361978], [8.480976, 47.361964], [8.480994, 47.361948], [8.481011, 47.361931], [8.481025, 47.361913], [8.481037, 47.361894], [8.481047, 47.361875], [8.481054, 47.361855], [8.481059, 47.361835], [8.481114, 47.361483]]], "type": "MultiLineString"}, "id": "3086", "properties": {}, "type": "Feature"}, {"bbox": [8.485915, 47.387236, 8.486307, 47.387865], "geometry": {"coordinates": [[[8.485955, 47.387865], [8.485915, 47.387762], [8.486128, 47.387716], [8.486071, 47.387592], [8.486289, 47.387546], [8.486168, 47.387295], [8.486307, 47.387266], [8.48629, 47.387236]]], "type": "MultiLineString"}, "id": "3087", "properties": {}, "type": "Feature"}, {"bbox": [8.537819, 47.376269, 8.538554, 47.376532], "geometry": {"coordinates": [[[8.537819, 47.37648], [8.537943, 47.376424], [8.538082, 47.376362], [8.538106, 47.37635], [8.538281, 47.376532], [8.538554, 47.376466], [8.538453, 47.376269]]], "type": "MultiLineString"}, "id": "3088", "properties": {}, "type": "Feature"}, {"bbox": [8.524242, 47.329752, 8.526331, 47.333864], "geometry": {"coordinates": [[[8.524242, 47.333864], [8.524343, 47.333786], [8.524596, 47.333573], [8.524842, 47.333363], [8.525694, 47.332704], [8.525875, 47.332303], [8.526046, 47.331943], [8.526164, 47.331669], [8.526281, 47.331412], [8.526328, 47.331257], [8.526331, 47.331206], [8.526318, 47.330999], [8.526279, 47.330555], [8.526271, 47.330462], [8.526239, 47.330132], [8.526198, 47.329752]]], "type": "MultiLineString"}, "id": "3089", "properties": {}, "type": "Feature"}, {"bbox": [8.548833, 47.407452, 8.549097, 47.4088], "geometry": {"coordinates": [[[8.548833, 47.407452], [8.548868, 47.407566], [8.549071, 47.40818], [8.549088, 47.408272], [8.548956, 47.408522], [8.549097, 47.4088]]], "type": "MultiLineString"}, "id": "3095", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.359599, 8.564974, 47.360521], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.561287, 47.360442], [8.561517, 47.360242], [8.5617, 47.360093], [8.561806, 47.36009], [8.561912, 47.360081], [8.562016, 47.360065], [8.562117, 47.360042], [8.562178, 47.360028], [8.562237, 47.360011], [8.562293, 47.359991], [8.562347, 47.359967], [8.562397, 47.359941], [8.562444, 47.359911], [8.562488, 47.35988], [8.562527, 47.359845], [8.562561, 47.359809], [8.562588, 47.359784], [8.562617, 47.359762], [8.56265, 47.359741], [8.562685, 47.359722], [8.562722, 47.359705], [8.562761, 47.359691], [8.562802, 47.359678], [8.562844, 47.359669], [8.562887, 47.359661], [8.563316, 47.359609], [8.563424, 47.359609], [8.563531, 47.359615], [8.563637, 47.359627], [8.563741, 47.359646], [8.563829, 47.35966], [8.563917, 47.359668], [8.564007, 47.359671], [8.564096, 47.359669], [8.564185, 47.35966], [8.564272, 47.359647], [8.564416, 47.359623], [8.564562, 47.359607], [8.56471, 47.359599], [8.564858, 47.3596], [8.564888, 47.359604], [8.564917, 47.359609], [8.564946, 47.359615], [8.564974, 47.359624]]], "type": "MultiLineString"}, "id": "3096", "properties": {}, "type": "Feature"}, {"bbox": [8.513823, 47.368469, 8.514664, 47.369006], "geometry": {"coordinates": [[[8.514664, 47.369006], [8.513823, 47.368469]]], "type": "MultiLineString"}, "id": "3098", "properties": {}, "type": "Feature"}, {"bbox": [8.535799, 47.331558, 8.537758, 47.333283], "geometry": {"coordinates": [[[8.535841, 47.333283], [8.535799, 47.333262], [8.53589, 47.333144], [8.536373, 47.332754], [8.536794, 47.332497], [8.537083, 47.332258], [8.537169, 47.332099], [8.537387, 47.331925], [8.537539, 47.331778], [8.537758, 47.331558]]], "type": "MultiLineString"}, "id": "3100", "properties": {}, "type": "Feature"}, {"bbox": [8.576719, 47.406134, 8.577652, 47.406668], "geometry": {"coordinates": [[[8.577652, 47.406312], [8.577467, 47.406134], [8.576719, 47.406478], [8.576895, 47.406668]]], "type": "MultiLineString"}, "id": "3101", "properties": {}, "type": "Feature"}, {"bbox": [8.558736, 47.41307, 8.566837, 47.413297], "geometry": {"coordinates": [[[8.558736, 47.41307], [8.55978, 47.413073], [8.561159, 47.413085], [8.562107, 47.413094], [8.563172, 47.413105], [8.563231, 47.413114], [8.564639, 47.413152], [8.565441, 47.413169], [8.566341, 47.41317], [8.56647, 47.413167], [8.566517, 47.413171], [8.566563, 47.413177], [8.566608, 47.413187], [8.566652, 47.413199], [8.566694, 47.413214], [8.566734, 47.413231], [8.566771, 47.413251], [8.566806, 47.413272], [8.566837, 47.413297]]], "type": "MultiLineString"}, "id": "3102", "properties": {}, "type": "Feature"}, {"bbox": [8.479036, 47.381036, 8.483256, 47.383671], "geometry": {"coordinates": [[[8.483256, 47.383671], [8.482921, 47.383265], [8.482406, 47.382967], [8.482349, 47.382914], [8.482142, 47.382723], [8.481619, 47.382342], [8.481045, 47.381973], [8.480973, 47.381939], [8.480486, 47.381632], [8.480303, 47.381529], [8.480236, 47.381532], [8.480157, 47.38153], [8.479958, 47.381429], [8.479871, 47.381427], [8.479638, 47.381352], [8.479036, 47.381036]]], "type": "MultiLineString"}, "id": "3109", "properties": {}, "type": "Feature"}, {"bbox": [8.524155, 47.387052, 8.525438, 47.387496], "geometry": {"coordinates": [[[8.525438, 47.387496], [8.525348, 47.387457], [8.525092, 47.387365], [8.524155, 47.387052]]], "type": "MultiLineString"}, "id": "3112", "properties": {}, "type": "Feature"}, {"bbox": [8.562067, 47.384242, 8.564042, 47.386983], "geometry": {"coordinates": [[[8.564042, 47.384242], [8.563972, 47.384298], [8.563793, 47.384423], [8.563261, 47.38476], [8.563158, 47.384831], [8.563065, 47.384908], [8.562983, 47.38499], [8.562911, 47.385077], [8.562851, 47.385167], [8.562628, 47.38555], [8.562197, 47.386324], [8.56219, 47.386337], [8.562167, 47.38638], [8.562128, 47.386458], [8.562097, 47.386537], [8.562075, 47.386618], [8.562068, 47.386665], [8.562067, 47.386712], [8.562073, 47.386759], [8.562084, 47.386806], [8.562102, 47.386852], [8.562118, 47.38688], [8.562137, 47.386908], [8.56216, 47.386934], [8.562185, 47.386959], [8.562214, 47.386983]]], "type": "MultiLineString"}, "id": "3116", "properties": {}, "type": "Feature"}, {"bbox": [8.510588, 47.343992, 8.512646, 47.348528], "geometry": {"coordinates": [[[8.510588, 47.343992], [8.511022, 47.344093], [8.511082, 47.344109], [8.511141, 47.34413], [8.511196, 47.344153], [8.511248, 47.34418], [8.511492, 47.34432], [8.511507, 47.344328], [8.511523, 47.344335], [8.51154, 47.344341], [8.511558, 47.344346], [8.511576, 47.34435], [8.511595, 47.344353], [8.511614, 47.344355], [8.511633, 47.344356], [8.511653, 47.344356], [8.511826, 47.344348], [8.511861, 47.344348], [8.511896, 47.34435], [8.51193, 47.344354], [8.511963, 47.34436], [8.511996, 47.344367], [8.512027, 47.344377], [8.512058, 47.344389], [8.512086, 47.344403], [8.512168, 47.344446], [8.512237, 47.344479], [8.512308, 47.34451], [8.512383, 47.344537], [8.512537, 47.344589], [8.512554, 47.344596], [8.51257, 47.344603], [8.512585, 47.344611], [8.512599, 47.344621], [8.512612, 47.344631], [8.512624, 47.344641], [8.512634, 47.344653], [8.512643, 47.344665], [8.512646, 47.34467], [8.512588, 47.345796], [8.512582, 47.345863], [8.512568, 47.34593], [8.512548, 47.345996], [8.512548, 47.345996], [8.512118, 47.347206], [8.512098, 47.347268], [8.512084, 47.347331], [8.512074, 47.347395], [8.512042, 47.347652], [8.512005, 47.34797], [8.511968, 47.348293], [8.511966, 47.348351], [8.511972, 47.348392], [8.511982, 47.348434], [8.511997, 47.348474], [8.511997, 47.348474], [8.51202, 47.348528]]], "type": "MultiLineString"}, "id": "3117", "properties": {}, "type": "Feature"}, {"bbox": [8.539191, 47.370092, 8.539534, 47.370312], "geometry": {"coordinates": [[[8.539191, 47.370092], [8.539326, 47.370107], [8.539233, 47.370274], [8.539494, 47.370312], [8.539534, 47.370274]]], "type": "MultiLineString"}, "id": "3118", "properties": {}, "type": "Feature"}, {"bbox": [8.504539, 47.417339, 8.505445, 47.417995], "geometry": {"coordinates": [[[8.505445, 47.417995], [8.505431, 47.417891], [8.505164, 47.41775], [8.504887, 47.417618], [8.504602, 47.417495], [8.504546, 47.417443], [8.504539, 47.417339]]], "type": "MultiLineString"}, "id": "3119", "properties": {}, "type": "Feature"}, {"bbox": [8.571907, 47.404493, 8.572711, 47.404935], "geometry": {"coordinates": [[[8.571907, 47.404493], [8.572038, 47.404603], [8.572179, 47.404714], [8.572248, 47.404935], [8.572502, 47.404792], [8.572608, 47.404732], [8.572711, 47.404717]]], "type": "MultiLineString"}, "id": "3123", "properties": {}, "type": "Feature"}, {"bbox": [8.565404, 47.373445, 8.565646, 47.373688], "geometry": {"coordinates": [[[8.565638, 47.373445], [8.565639, 47.373447], [8.565643, 47.373455], [8.565645, 47.373464], [8.565646, 47.373473], [8.565646, 47.373481], [8.565645, 47.37349], [8.565643, 47.373499], [8.56564, 47.373507], [8.565635, 47.373515], [8.56563, 47.373523], [8.565623, 47.373531], [8.565616, 47.373538], [8.565608, 47.373545], [8.565404, 47.373688]]], "type": "MultiLineString"}, "id": "3126", "properties": {}, "type": "Feature"}, {"bbox": [8.520156, 47.344017, 8.52116, 47.346133], "geometry": {"coordinates": [[[8.52116, 47.346133], [8.521134, 47.34612], [8.521068, 47.346028], [8.520943, 47.345979], [8.520887, 47.345853], [8.520887, 47.345853], [8.520885, 47.345849], [8.520883, 47.345845], [8.520882, 47.345842], [8.520882, 47.345838], [8.520882, 47.345834], [8.520882, 47.34583], [8.520883, 47.345826], [8.520884, 47.345822], [8.520886, 47.345819], [8.520889, 47.345815], [8.520891, 47.345812], [8.520941, 47.345769], [8.520944, 47.345766], [8.520947, 47.345763], [8.520949, 47.345761], [8.520951, 47.345758], [8.520953, 47.345754], [8.520955, 47.345751], [8.520955, 47.345748], [8.520956, 47.345745], [8.520956, 47.345741], [8.520956, 47.345738], [8.520955, 47.345735], [8.520954, 47.345732], [8.520952, 47.345728], [8.52095, 47.345725], [8.520948, 47.345722], [8.520883, 47.34564], [8.520741, 47.345498], [8.520727, 47.345481], [8.520716, 47.345463], [8.520707, 47.345445], [8.520701, 47.345426], [8.520697, 47.345406], [8.520697, 47.345406], [8.520649, 47.345096], [8.520649, 47.345096], [8.520638, 47.34504], [8.52063, 47.344983], [8.520626, 47.344925], [8.520626, 47.344925], [8.520626, 47.344925], [8.520626, 47.344856], [8.520624, 47.344787], [8.520618, 47.344718], [8.520614, 47.344643], [8.520618, 47.344567], [8.520631, 47.344493], [8.520631, 47.344493], [8.520631, 47.344493], [8.520632, 47.344487], [8.520632, 47.344482], [8.520631, 47.344477], [8.52063, 47.344472], [8.520628, 47.344467], [8.520626, 47.344462], [8.520622, 47.344458], [8.520619, 47.344453], [8.520614, 47.344449], [8.520609, 47.344445], [8.520609, 47.344445], [8.520513, 47.344368], [8.520513, 47.344368], [8.520493, 47.344352], [8.520476, 47.344335], [8.52046, 47.344317], [8.520447, 47.344299], [8.520436, 47.34428], [8.520436, 47.34428], [8.520367, 47.344139], [8.520367, 47.344139], [8.520359, 47.344125], [8.520349, 47.344112], [8.520337, 47.344099], [8.520323, 47.344087], [8.520309, 47.344076], [8.520292, 47.344066], [8.520275, 47.344056], [8.520257, 47.344048], [8.520237, 47.344041], [8.520237, 47.344041], [8.520175, 47.344024], [8.520156, 47.344017]]], "type": "MultiLineString"}, "id": "3127", "properties": {}, "type": "Feature"}, {"bbox": [8.584814, 47.377483, 8.588679, 47.380701], "geometry": {"coordinates": [[[8.585051, 47.377483], [8.585068, 47.377607], [8.5851, 47.377694], [8.585122, 47.377783], [8.585132, 47.377873], [8.585132, 47.377963], [8.58512, 47.378053], [8.585098, 47.378142], [8.585065, 47.37823], [8.585022, 47.378315], [8.584868, 47.378582], [8.584846, 47.378626], [8.58483, 47.378671], [8.584819, 47.378716], [8.584814, 47.378763], [8.584816, 47.378809], [8.58484, 47.379064], [8.584842, 47.379097], [8.58484, 47.37913], [8.584836, 47.379163], [8.584832, 47.379199], [8.584832, 47.379234], [8.584836, 47.379269], [8.584845, 47.379304], [8.584857, 47.379339], [8.585222, 47.380191], [8.585251, 47.380249], [8.585287, 47.380304], [8.58533, 47.380358], [8.58538, 47.380408], [8.585437, 47.380455], [8.585499, 47.380499], [8.585567, 47.380539], [8.585699, 47.38061], [8.585741, 47.380631], [8.585786, 47.380649], [8.585833, 47.380665], [8.585882, 47.380678], [8.585929, 47.380687], [8.585977, 47.380694], [8.586026, 47.380698], [8.586101, 47.380701], [8.586176, 47.380698], [8.58625, 47.380692], [8.586323, 47.38068], [8.586531, 47.380641], [8.586632, 47.380619], [8.58673, 47.38059], [8.586824, 47.380555], [8.586912, 47.380514], [8.586994, 47.380468], [8.587341, 47.380254], [8.587493, 47.380142], [8.587543, 47.380104], [8.587592, 47.380065], [8.587638, 47.380026], [8.587771, 47.379899], [8.587886, 47.379764], [8.587983, 47.379623], [8.588061, 47.379477], [8.588175, 47.379227], [8.588201, 47.379177], [8.588233, 47.379129], [8.588271, 47.379082], [8.588314, 47.379038], [8.588362, 47.378996], [8.588679, 47.378739]]], "type": "MultiLineString"}, "id": "3128", "properties": {}, "type": "Feature"}, {"bbox": [8.558883, 47.364189, 8.55933, 47.364757], "geometry": {"coordinates": [[[8.558883, 47.364757], [8.55906, 47.364504], [8.55933, 47.364189]]], "type": "MultiLineString"}, "id": "3130", "properties": {}, "type": "Feature"}, {"bbox": [8.538617, 47.371538, 8.540553, 47.37275], "geometry": {"coordinates": [[[8.540553, 47.371561], [8.540282, 47.371538], [8.540255, 47.371584], [8.540074, 47.371785], [8.539998, 47.371836], [8.539902, 47.371931], [8.539827, 47.372005], [8.539662, 47.372081], [8.539433, 47.372161], [8.539195, 47.372227], [8.538948, 47.372278], [8.538696, 47.372313], [8.538683, 47.372313], [8.538623, 47.372682], [8.538617, 47.37275]]], "type": "MultiLineString"}, "id": "3131", "properties": {}, "type": "Feature"}, {"bbox": [8.538816, 47.420158, 8.54047, 47.420468], "geometry": {"coordinates": [[[8.538816, 47.420158], [8.538973, 47.42019], [8.53926, 47.420264], [8.539604, 47.420352], [8.539657, 47.420364], [8.539658, 47.420362], [8.54025, 47.420444], [8.54047, 47.420468]]], "type": "MultiLineString"}, "id": "3134", "properties": {}, "type": "Feature"}, {"bbox": [8.555767, 47.384336, 8.556905, 47.384503], "geometry": {"coordinates": [[[8.555767, 47.384336], [8.555877, 47.384381], [8.555993, 47.38442], [8.556113, 47.384452], [8.556237, 47.384476], [8.556363, 47.384493], [8.556491, 47.384502], [8.55662, 47.384503], [8.556715, 47.384499], [8.556811, 47.384492], [8.556905, 47.384484]]], "type": "MultiLineString"}, "id": "3135", "properties": {}, "type": "Feature"}, {"bbox": [8.574737, 47.405311, 8.575044, 47.405434], "geometry": {"coordinates": [[[8.574737, 47.405434], [8.575044, 47.405311]]], "type": "MultiLineString"}, "id": "3136", "properties": {}, "type": "Feature"}, {"bbox": [8.543815, 47.370364, 8.544419, 47.370653], "geometry": {"coordinates": [[[8.543815, 47.370364], [8.543837, 47.370367], [8.54382, 47.370403], [8.543991, 47.370425], [8.544003, 47.370396], [8.54405, 47.370399], [8.544037, 47.370463], [8.544319, 47.370486], [8.544306, 47.370518], [8.544293, 47.37055], [8.544388, 47.370609], [8.544379, 47.370649], [8.544419, 47.370653]]], "type": "MultiLineString"}, "id": "3139", "properties": {}, "type": "Feature"}, {"bbox": [8.476143, 47.384152, 8.477238, 47.384845], "geometry": {"coordinates": [[[8.477238, 47.384845], [8.47701, 47.384735], [8.47679, 47.384619], [8.476578, 47.384495], [8.476453, 47.38442], [8.476338, 47.384337], [8.476234, 47.384247], [8.476143, 47.384152]]], "type": "MultiLineString"}, "id": "3141", "properties": {}, "type": "Feature"}, {"bbox": [8.533002, 47.416359, 8.533366, 47.419718], "geometry": {"coordinates": [[[8.533273, 47.416359], [8.533055, 47.417213], [8.533002, 47.417388], [8.533359, 47.417455], [8.533363, 47.417477], [8.533366, 47.417589], [8.533357, 47.417911], [8.533338, 47.418467], [8.533324, 47.418582], [8.533324, 47.418583], [8.533318, 47.418639], [8.533313, 47.418695], [8.533309, 47.418752], [8.533304, 47.418808], [8.5333, 47.418864], [8.533299, 47.418919], [8.53329, 47.418983], [8.533283, 47.419046], [8.533277, 47.41911], [8.533266, 47.419199], [8.533254, 47.419286], [8.533235, 47.419442], [8.533226, 47.419528], [8.533217, 47.419617], [8.533219, 47.419718]]], "type": "MultiLineString"}, "id": "3142", "properties": {}, "type": "Feature"}, {"bbox": [8.555104, 47.367273, 8.555691, 47.367558], "geometry": {"coordinates": [[[8.555104, 47.367468], [8.555272, 47.367548], [8.555278, 47.367551], [8.555284, 47.367553], [8.55529, 47.367555], [8.555297, 47.367556], [8.555304, 47.367557], [8.55531, 47.367558], [8.555317, 47.367558], [8.555324, 47.367558], [8.555331, 47.367558], [8.555338, 47.367557], [8.555345, 47.367556], [8.555351, 47.367554], [8.555357, 47.367552], [8.555363, 47.36755], [8.555369, 47.367547], [8.555374, 47.367544], [8.555379, 47.367541], [8.555384, 47.367537], [8.555691, 47.367273]]], "type": "MultiLineString"}, "id": "3144", "properties": {}, "type": "Feature"}, {"bbox": [8.47479, 47.409989, 8.479637, 47.413156], "geometry": {"coordinates": [[[8.479637, 47.409989], [8.47955, 47.410008], [8.479541, 47.41001], [8.479532, 47.410013], [8.479524, 47.410016], [8.479517, 47.41002], [8.479509, 47.410024], [8.479503, 47.410028], [8.479497, 47.410033], [8.479492, 47.410038], [8.479487, 47.410044], [8.479483, 47.41005], [8.47948, 47.410056], [8.479478, 47.410062], [8.479485, 47.410134], [8.479484, 47.410205], [8.479473, 47.410277], [8.479454, 47.410347], [8.479425, 47.410416], [8.479388, 47.410484], [8.479343, 47.410548], [8.479289, 47.41061], [8.479228, 47.410669], [8.479159, 47.410724], [8.478837, 47.410951], [8.478167, 47.411376], [8.478096, 47.411436], [8.47799, 47.411585], [8.477649, 47.411814], [8.47693, 47.412306], [8.476807, 47.412375], [8.476675, 47.412435], [8.476535, 47.412487], [8.476388, 47.41253], [8.475203, 47.412799], [8.475163, 47.412807], [8.475124, 47.412817], [8.475087, 47.41283], [8.475051, 47.412845], [8.475018, 47.412861], [8.474986, 47.41288], [8.474957, 47.4129], [8.474931, 47.412922], [8.474907, 47.412945], [8.474886, 47.41297], [8.47479, 47.413156]]], "type": "MultiLineString"}, "id": "3145", "properties": {}, "type": "Feature"}, {"bbox": [8.553879, 47.409431, 8.555781, 47.409461], "geometry": {"coordinates": [[[8.553879, 47.409431], [8.555781, 47.409461]]], "type": "MultiLineString"}, "id": "3146", "properties": {}, "type": "Feature"}, {"bbox": [8.490406, 47.405426, 8.490539, 47.40567], "geometry": {"coordinates": [[[8.490406, 47.405426], [8.490517, 47.405616], [8.490526, 47.405634], [8.490534, 47.405652], [8.490539, 47.40567]]], "type": "MultiLineString"}, "id": "3147", "properties": {}, "type": "Feature"}, {"bbox": [8.548528, 47.416792, 8.549781, 47.418724], "geometry": {"coordinates": [[[8.549156, 47.416792], [8.549287, 47.416999], [8.54952, 47.41738], [8.549747, 47.417683], [8.549763, 47.417724], [8.549774, 47.417765], [8.54978, 47.417808], [8.549781, 47.41785], [8.549776, 47.417892], [8.549766, 47.417934], [8.549751, 47.417975], [8.549731, 47.418016], [8.549706, 47.418054], [8.549676, 47.418092], [8.549579, 47.4182], [8.549469, 47.418302], [8.549347, 47.418398], [8.549213, 47.418486], [8.549068, 47.418565], [8.548913, 47.418636], [8.548826, 47.41867], [8.548698, 47.418724], [8.548528, 47.418457]]], "type": "MultiLineString"}, "id": "3149", "properties": {}, "type": "Feature"}, {"bbox": [8.533615, 47.389298, 8.53444, 47.389765], "geometry": {"coordinates": [[[8.533615, 47.389298], [8.53444, 47.389765]]], "type": "MultiLineString"}, "id": "3150", "properties": {}, "type": "Feature"}, {"bbox": [8.520592, 47.340197, 8.52294, 47.343883], "geometry": {"coordinates": [[[8.520592, 47.343883], [8.520705, 47.343707], [8.520905, 47.343488], [8.521034, 47.34331], [8.521369, 47.342933], [8.521397, 47.342906], [8.521434, 47.34287], [8.521469, 47.342834], [8.521504, 47.342798], [8.521562, 47.342719], [8.521615, 47.342639], [8.521663, 47.342557], [8.521707, 47.342491], [8.521764, 47.342424], [8.521824, 47.342358], [8.521887, 47.342293], [8.521957, 47.342212], [8.522021, 47.342128], [8.52208, 47.342042], [8.522122, 47.341969], [8.522163, 47.341895], [8.522201, 47.34182], [8.522403, 47.341466], [8.522543, 47.341288], [8.5227, 47.341106], [8.52274, 47.340933], [8.522741, 47.3409], [8.522774, 47.340678], [8.522775, 47.340456], [8.522777, 47.340433], [8.522782, 47.340409], [8.52279, 47.340386], [8.522801, 47.340363], [8.522815, 47.340341], [8.522832, 47.34032], [8.522852, 47.3403], [8.52294, 47.340197]]], "type": "MultiLineString"}, "id": "3151", "properties": {}, "type": "Feature"}, {"bbox": [8.520969, 47.412849, 8.521443, 47.413314], "geometry": {"coordinates": [[[8.521443, 47.413314], [8.521338, 47.41321], [8.521209, 47.41309], [8.520969, 47.412849]]], "type": "MultiLineString"}, "id": "3152", "properties": {}, "type": "Feature"}, {"bbox": [8.480418, 47.376427, 8.481236, 47.376786], "geometry": {"coordinates": [[[8.481236, 47.376786], [8.480524, 47.37646], [8.480418, 47.376427]]], "type": "MultiLineString"}, "id": "3153", "properties": {}, "type": "Feature"}, {"bbox": [8.54415, 47.379937, 8.545861, 47.38081], "geometry": {"coordinates": [[[8.54415, 47.379937], [8.544169, 47.379949], [8.544185, 47.379962], [8.5442, 47.379976], [8.544213, 47.379991], [8.544224, 47.380007], [8.544233, 47.380023], [8.54424, 47.38004], [8.544244, 47.380057], [8.544247, 47.380075], [8.544247, 47.380092], [8.544228, 47.380253], [8.544227, 47.380267], [8.544228, 47.38028], [8.544231, 47.380293], [8.544235, 47.380306], [8.544241, 47.380319], [8.544248, 47.380332], [8.544257, 47.380343], [8.544268, 47.380355], [8.54428, 47.380365], [8.544294, 47.380375], [8.544308, 47.380384], [8.544324, 47.380392], [8.544341, 47.380399], [8.544358, 47.380405], [8.544775, 47.380521], [8.545081, 47.380604], [8.545149, 47.380609], [8.545224, 47.380601], [8.545861, 47.38081]]], "type": "MultiLineString"}, "id": "3154", "properties": {}, "type": "Feature"}, {"bbox": [8.508344, 47.363116, 8.517161, 47.364718], "geometry": {"coordinates": [[[8.517161, 47.363116], [8.516932, 47.363204], [8.516748, 47.363272], [8.516584, 47.363328], [8.516202, 47.363439], [8.51581, 47.363529], [8.515408, 47.363598], [8.51172, 47.364159], [8.511656, 47.364156], [8.511575, 47.364153], [8.510024, 47.364396], [8.509733, 47.364463], [8.508652, 47.364621], [8.508403, 47.364644], [8.508344, 47.364718]]], "type": "MultiLineString"}, "id": "3156", "properties": {}, "type": "Feature"}, {"bbox": [8.548716, 47.403315, 8.55055, 47.403831], "geometry": {"coordinates": [[[8.55055, 47.403315], [8.549554, 47.403392], [8.549354, 47.403451], [8.549014, 47.403592], [8.548716, 47.403831]]], "type": "MultiLineString"}, "id": "3157", "properties": {}, "type": "Feature"}, {"bbox": [8.541847, 47.371779, 8.542691, 47.371978], "geometry": {"coordinates": [[[8.541851, 47.37187], [8.541847, 47.371967], [8.542506, 47.371978], [8.542507, 47.371858], [8.542523, 47.371857], [8.54252, 47.371826], [8.542679, 47.371827], [8.542691, 47.371779]]], "type": "MultiLineString"}, "id": "3163", "properties": {}, "type": "Feature"}, {"bbox": [8.53193, 47.370127, 8.535852, 47.376071], "geometry": {"coordinates": [[[8.534353, 47.370127], [8.534066, 47.370174], [8.533856, 47.370252], [8.533689, 47.37027], [8.533375, 47.370398], [8.532911, 47.370525], [8.532687, 47.370573], [8.532216, 47.370631], [8.53193, 47.370664], [8.531957, 47.370784], [8.532565, 47.371433], [8.532806, 47.371583], [8.533027, 47.371675], [8.533327, 47.371962], [8.533404, 47.372067], [8.533554, 47.372409], [8.533549, 47.372611], [8.53358, 47.372635], [8.533559, 47.373077], [8.533534, 47.373125], [8.533541, 47.373745], [8.53362, 47.373777], [8.533637, 47.373803], [8.534841, 47.374297], [8.535052, 47.374403], [8.535029, 47.374476], [8.5351, 47.374467], [8.535248, 47.374623], [8.535601, 47.375456], [8.535773, 47.375865], [8.535829, 47.37588], [8.535852, 47.375931], [8.535733, 47.376071]]], "type": "MultiLineString"}, "id": "3164", "properties": {}, "type": "Feature"}, {"bbox": [8.484657, 47.410186, 8.48478, 47.410969], "geometry": {"coordinates": [[[8.484764, 47.410186], [8.484765, 47.410191], [8.484764, 47.410202], [8.484763, 47.410212], [8.48476, 47.410223], [8.484719, 47.410334], [8.484706, 47.41037], [8.484697, 47.410407], [8.484692, 47.410445], [8.484658, 47.410763], [8.484657, 47.410776], [8.484657, 47.41079], [8.484659, 47.410803], [8.484662, 47.410816], [8.484667, 47.410829], [8.484674, 47.410842], [8.484697, 47.41087], [8.48478, 47.410969]]], "type": "MultiLineString"}, "id": "3165", "properties": {}, "type": "Feature"}, {"bbox": [8.539967, 47.371069, 8.541023, 47.371806], "geometry": {"coordinates": [[[8.540947, 47.371755], [8.540971, 47.371753], [8.540985, 47.37148], [8.540986, 47.371456], [8.540942, 47.371447], [8.540899, 47.371432], [8.540989, 47.371276], [8.541023, 47.371204], [8.540915, 47.37119], [8.540902, 47.371223], [8.540865, 47.371224], [8.540864, 47.371247], [8.540815, 47.371244], [8.540818, 47.371217], [8.540695, 47.371198], [8.540678, 47.371233], [8.54054, 47.371219], [8.540546, 47.371179], [8.540441, 47.371168], [8.540449, 47.371102], [8.540297, 47.371069], [8.54018, 47.371212], [8.540046, 47.371187], [8.540012, 47.371233], [8.539967, 47.371293], [8.540012, 47.371304], [8.539971, 47.371364], [8.540064, 47.371385], [8.54, 47.371466], [8.540045, 47.37148], [8.540104, 47.371377], [8.540302, 47.371421], [8.540311, 47.371404], [8.540424, 47.371414], [8.540436, 47.371328], [8.540506, 47.371339], [8.5405, 47.371373], [8.540543, 47.371391], [8.54051, 47.371536], [8.540556, 47.371545], [8.540553, 47.371561], [8.540519, 47.371724], [8.540355, 47.371707], [8.540324, 47.371704], [8.540305, 47.371763], [8.540401, 47.371778], [8.540416, 47.371784], [8.54043, 47.37179], [8.540515, 47.371804], [8.540529, 47.371806], [8.540548, 47.371724], [8.540908, 47.371756], [8.540947, 47.371755]]], "type": "MultiLineString"}, "id": "3173", "properties": {}, "type": "Feature"}, {"bbox": [8.515057, 47.387467, 8.51578, 47.388747], "geometry": {"coordinates": [[[8.51578, 47.388747], [8.515692, 47.388557], [8.515601, 47.388428], [8.515502, 47.388302], [8.515393, 47.388179], [8.515379, 47.388163], [8.515368, 47.388146], [8.515358, 47.388128], [8.515351, 47.388109], [8.515346, 47.388091], [8.515343, 47.388072], [8.515343, 47.388053], [8.515345, 47.388034], [8.51535, 47.388015], [8.515357, 47.387997], [8.515366, 47.387979], [8.515377, 47.387962], [8.515385, 47.387949], [8.515391, 47.387935], [8.515395, 47.387921], [8.515398, 47.387907], [8.515399, 47.387894], [8.515398, 47.387881], [8.515396, 47.387867], [8.515392, 47.387855], [8.515386, 47.387842], [8.515379, 47.38783], [8.51537, 47.387818], [8.51536, 47.387807], [8.515253, 47.3877], [8.515057, 47.387467]]], "type": "MultiLineString"}, "id": "3174", "properties": {}, "type": "Feature"}, {"bbox": [8.522796, 47.40317, 8.527785, 47.4036], "geometry": {"coordinates": [[[8.527785, 47.4036], [8.527771, 47.403598], [8.527756, 47.403595], [8.527743, 47.403591], [8.527729, 47.403586], [8.527717, 47.40358], [8.527705, 47.403574], [8.527694, 47.403567], [8.527684, 47.40356], [8.527675, 47.403552], [8.527663, 47.403539], [8.527652, 47.403527], [8.527641, 47.403514], [8.527618, 47.403482], [8.527598, 47.403448], [8.527583, 47.403414], [8.527557, 47.403345], [8.527531, 47.403275], [8.527507, 47.403206], [8.527449, 47.403171], [8.527425, 47.40317], [8.527402, 47.40317], [8.527379, 47.403172], [8.527356, 47.403175], [8.527334, 47.403179], [8.527175, 47.403215], [8.527017, 47.403253], [8.526862, 47.403294], [8.526848, 47.403298], [8.526833, 47.403301], [8.526818, 47.403302], [8.526803, 47.403303], [8.526334, 47.403323], [8.52633, 47.403323], [8.526325, 47.403322], [8.526321, 47.403322], [8.526316, 47.403321], [8.526312, 47.40332], [8.526308, 47.403319], [8.526304, 47.403318], [8.52625, 47.403296], [8.526238, 47.403291], [8.526224, 47.403287], [8.52621, 47.403284], [8.526196, 47.403282], [8.526181, 47.403281], [8.526167, 47.403281], [8.526152, 47.403281], [8.526138, 47.403283], [8.526116, 47.403285], [8.526093, 47.403286], [8.52607, 47.403285], [8.526048, 47.403283], [8.525909, 47.403266], [8.525875, 47.40326], [8.525841, 47.403253], [8.525808, 47.403244], [8.525777, 47.403233], [8.525762, 47.403228], [8.525747, 47.403224], [8.525732, 47.40322], [8.525716, 47.403218], [8.5257, 47.403216], [8.525684, 47.403216], [8.525667, 47.403216], [8.525477, 47.403226], [8.525442, 47.403228], [8.525407, 47.403231], [8.525361, 47.403236], [8.525315, 47.403243], [8.52527, 47.403251], [8.525197, 47.403267], [8.525153, 47.403274], [8.525108, 47.403279], [8.525062, 47.403281], [8.525017, 47.40328], [8.524972, 47.403276], [8.524855, 47.403262], [8.524816, 47.403258], [8.524776, 47.403256], [8.524737, 47.403255], [8.524567, 47.403256], [8.524547, 47.403255], [8.524527, 47.403253], [8.524507, 47.403249], [8.524487, 47.403245], [8.524469, 47.403239], [8.524451, 47.403233], [8.524433, 47.403225], [8.524409, 47.403216], [8.524384, 47.403207], [8.524357, 47.4032], [8.52433, 47.403195], [8.524302, 47.403192], [8.52421, 47.403185], [8.524118, 47.403182], [8.524026, 47.403183], [8.523306, 47.403198], [8.523135, 47.403206], [8.522965, 47.40322], [8.522796, 47.403242]]], "type": "MultiLineString"}, "id": "3178", "properties": {}, "type": "Feature"}, {"bbox": [8.567451, 47.411945, 8.567924, 47.412331], "geometry": {"coordinates": [[[8.567451, 47.411945], [8.567578, 47.412054], [8.567627, 47.412097], [8.567924, 47.412331]]], "type": "MultiLineString"}, "id": "3179", "properties": {}, "type": "Feature"}, {"bbox": [8.50778, 47.408439, 8.508599, 47.408701], "geometry": {"coordinates": [[[8.50778, 47.408666], [8.508032, 47.408582], [8.50812, 47.408701], [8.508402, 47.408609], [8.508455, 47.408683], [8.508599, 47.408636], [8.508458, 47.408439], [8.508032, 47.408582]]], "type": "MultiLineString"}, "id": "3180", "properties": {}, "type": "Feature"}, {"bbox": [8.603012, 47.365091, 8.612209, 47.365985], "geometry": {"coordinates": [[[8.603012, 47.365365], [8.603182, 47.365233], [8.603213, 47.365213], [8.603246, 47.365194], [8.603281, 47.365177], [8.603318, 47.365163], [8.603358, 47.365151], [8.603398, 47.365141], [8.60344, 47.365134], [8.603649, 47.365096], [8.603712, 47.365092], [8.603775, 47.365091], [8.603838, 47.365094], [8.6039, 47.365101], [8.603962, 47.365111], [8.604022, 47.365125], [8.604491, 47.365218], [8.604629, 47.365244], [8.604771, 47.365262], [8.604914, 47.365272], [8.605085, 47.365288], [8.605174, 47.365296], [8.605263, 47.365302], [8.605352, 47.365306], [8.605405, 47.365308], [8.605457, 47.365312], [8.605509, 47.365318], [8.605569, 47.365326], [8.605628, 47.365337], [8.605687, 47.365351], [8.605861, 47.365419], [8.606227, 47.365581], [8.606472, 47.365673], [8.607278, 47.365924], [8.607505, 47.365965], [8.607859, 47.365981], [8.609464, 47.365985], [8.609718, 47.365967], [8.61014, 47.365899], [8.611836, 47.365551], [8.612209, 47.3655]]], "type": "MultiLineString"}, "id": "3181", "properties": {}, "type": "Feature"}, {"bbox": [8.5052, 47.370157, 8.505397, 47.371637], "geometry": {"coordinates": [[[8.5052, 47.371637], [8.505231, 47.371443], [8.505239, 47.371398], [8.505252, 47.371355], [8.505272, 47.371312], [8.505288, 47.371259], [8.505298, 47.371205], [8.5053, 47.371151], [8.505294, 47.371097], [8.505271, 47.370942], [8.505268, 47.370892], [8.505269, 47.370843], [8.505274, 47.370794], [8.505312, 47.370617], [8.505244, 47.370555], [8.505245, 47.37054], [8.505264, 47.370454], [8.505343, 47.370392], [8.505388, 47.370206], [8.505397, 47.370157]]], "type": "MultiLineString"}, "id": "3184", "properties": {}, "type": "Feature"}, {"bbox": [8.516138, 47.398893, 8.517471, 47.399496], "geometry": {"coordinates": [[[8.517451, 47.399496], [8.517456, 47.399491], [8.517461, 47.399485], [8.517464, 47.399479], [8.517467, 47.399473], [8.517469, 47.399467], [8.517471, 47.399461], [8.517471, 47.399455], [8.517471, 47.399449], [8.51747, 47.399443], [8.517469, 47.399437], [8.517466, 47.399431], [8.517463, 47.399425], [8.517459, 47.399419], [8.517454, 47.399414], [8.517449, 47.399409], [8.517386, 47.399356], [8.517317, 47.399308], [8.517241, 47.399263], [8.517161, 47.399222], [8.517076, 47.399186], [8.516988, 47.399155], [8.516138, 47.398893]]], "type": "MultiLineString"}, "id": "3185", "properties": {}, "type": "Feature"}, {"bbox": [8.561521, 47.373509, 8.563846, 47.375496], "geometry": {"coordinates": [[[8.561521, 47.373509], [8.561554, 47.373609], [8.561947, 47.374007], [8.562426, 47.37454], [8.562596, 47.374631], [8.563175, 47.37503], [8.563611, 47.375331], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "3188", "properties": {}, "type": "Feature"}, {"bbox": [8.490912, 47.427205, 8.496232, 47.429076], "geometry": {"coordinates": [[[8.496232, 47.427205], [8.496149, 47.427217], [8.495826, 47.427263], [8.495713, 47.427282], [8.495602, 47.427308], [8.495494, 47.427339], [8.495412, 47.427368], [8.49533, 47.427398], [8.495251, 47.42743], [8.494729, 47.427649], [8.494359, 47.427815], [8.493908, 47.428011], [8.493751, 47.428074], [8.493586, 47.428127], [8.493415, 47.42817], [8.492996, 47.428263], [8.492996, 47.428263], [8.492946, 47.428275], [8.492897, 47.428291], [8.492851, 47.428309], [8.492807, 47.42833], [8.492766, 47.428354], [8.492729, 47.42838], [8.492694, 47.428408], [8.492694, 47.428408], [8.492573, 47.428517], [8.492458, 47.428641], [8.492439, 47.42866], [8.492418, 47.428677], [8.492394, 47.428693], [8.492369, 47.428708], [8.492342, 47.428721], [8.492313, 47.428732], [8.492282, 47.428741], [8.49215, 47.428777], [8.492069, 47.4288], [8.491983, 47.428824], [8.491898, 47.428852], [8.491815, 47.428881], [8.491612, 47.428956], [8.491479, 47.428997], [8.491361, 47.429029], [8.491238, 47.429055], [8.491114, 47.429075], [8.491046, 47.429076], [8.490979, 47.429074], [8.490912, 47.429068]]], "type": "MultiLineString"}, "id": "3190", "properties": {}, "type": "Feature"}, {"bbox": [8.547195, 47.366025, 8.547208, 47.366072], "geometry": {"coordinates": [[[8.547195, 47.366072], [8.547208, 47.366025]]], "type": "MultiLineString"}, "id": "3191", "properties": {}, "type": "Feature"}, {"bbox": [8.568024, 47.416984, 8.569506, 47.417133], "geometry": {"coordinates": [[[8.568024, 47.417133], [8.569274, 47.417085], [8.569298, 47.417084], [8.569322, 47.417081], [8.569345, 47.417077], [8.569368, 47.417071], [8.56939, 47.417064], [8.569411, 47.417056], [8.56943, 47.417047], [8.569449, 47.417036], [8.569466, 47.417024], [8.569481, 47.417012], [8.569495, 47.416998], [8.569506, 47.416984]]], "type": "MultiLineString"}, "id": "3192", "properties": {}, "type": "Feature"}, {"bbox": [8.570302, 47.367546, 8.57727, 47.369674], "geometry": {"coordinates": [[[8.57727, 47.369508], [8.577258, 47.369503], [8.577246, 47.3695], [8.577233, 47.369497], [8.57722, 47.369494], [8.577207, 47.369493], [8.577194, 47.369492], [8.57718, 47.369492], [8.577167, 47.369493], [8.577154, 47.369495], [8.577141, 47.369497], [8.577128, 47.3695], [8.577116, 47.369504], [8.577104, 47.369509], [8.577093, 47.369514], [8.577083, 47.36952], [8.577074, 47.369527], [8.576942, 47.369638], [8.576932, 47.369645], [8.576922, 47.369651], [8.576911, 47.369657], [8.576899, 47.369661], [8.576887, 47.369665], [8.576874, 47.369669], [8.57686, 47.369671], [8.576847, 47.369673], [8.576833, 47.369674], [8.576819, 47.369674], [8.576806, 47.369673], [8.576792, 47.369671], [8.576779, 47.369669], [8.576766, 47.369666], [8.576753, 47.369662], [8.57654, 47.369592], [8.576139, 47.36948], [8.575942, 47.369422], [8.575754, 47.369351], [8.575577, 47.369268], [8.575359, 47.369151], [8.575136, 47.369021], [8.574979, 47.368943], [8.574815, 47.368872], [8.574645, 47.368808], [8.574091, 47.368629], [8.573969, 47.368584], [8.57385, 47.368535], [8.573735, 47.368482], [8.573221, 47.368244], [8.57305, 47.368172], [8.572869, 47.368111], [8.572679, 47.368063], [8.572572, 47.368037], [8.572463, 47.368013], [8.572354, 47.36799], [8.571854, 47.367901], [8.571573, 47.36784], [8.571297, 47.36777], [8.571026, 47.36769], [8.570612, 47.367561], [8.570587, 47.367555], [8.570561, 47.36755], [8.570535, 47.367547], [8.570508, 47.367546], [8.570481, 47.367547], [8.570455, 47.367549], [8.570429, 47.367552], [8.570403, 47.367557], [8.570378, 47.367564], [8.570354, 47.367572], [8.570348, 47.367574], [8.570342, 47.367577], [8.570337, 47.367579], [8.570332, 47.367583], [8.570328, 47.367586], [8.570324, 47.36759], [8.57032, 47.367594], [8.570302, 47.367619]]], "type": "MultiLineString"}, "id": "3193", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.371288, 8.541909, 47.371585], "geometry": {"coordinates": [[[8.541909, 47.371533], [8.541883, 47.371529], [8.541903, 47.371306], [8.541866, 47.371304], [8.541557, 47.371291], [8.5415, 47.371288], [8.541501, 47.371294], [8.541502, 47.371301], [8.541503, 47.371307], [8.541505, 47.371355], [8.5415, 47.371402], [8.54149, 47.37145], [8.541472, 47.371496], [8.541449, 47.371541], [8.54142, 47.371585]]], "type": "MultiLineString"}, "id": "3201", "properties": {}, "type": "Feature"}, {"bbox": [8.521316, 47.325008, 8.52506, 47.335374], "geometry": {"coordinates": [[[8.52506, 47.335374], [8.524798, 47.335298], [8.523625, 47.334925], [8.522958, 47.33471], [8.522958, 47.33471], [8.522947, 47.334706], [8.522936, 47.334702], [8.522927, 47.334696], [8.522917, 47.33469], [8.522909, 47.334684], [8.522902, 47.334677], [8.522895, 47.33467], [8.52289, 47.334662], [8.522885, 47.334654], [8.522882, 47.334646], [8.522879, 47.334638], [8.522878, 47.334629], [8.522874, 47.334558], [8.522874, 47.334534], [8.522877, 47.334509], [8.522883, 47.334485], [8.522891, 47.334461], [8.522903, 47.334438], [8.522913, 47.334421], [8.522926, 47.334406], [8.522941, 47.334391], [8.522941, 47.334391], [8.522956, 47.334379], [8.522973, 47.334368], [8.522992, 47.334358], [8.523011, 47.334349], [8.523032, 47.334342], [8.523053, 47.334335], [8.523332, 47.334265], [8.523396, 47.334247], [8.52346, 47.334229], [8.523522, 47.334208], [8.523856, 47.334095], [8.523903, 47.334078], [8.523949, 47.334059], [8.523993, 47.334038], [8.523993, 47.334038], [8.523993, 47.334038], [8.524039, 47.334013], [8.524083, 47.333985], [8.524123, 47.333956], [8.524123, 47.333956], [8.524172, 47.333919], [8.524242, 47.333864], [8.524184, 47.333782], [8.524169, 47.33375], [8.524097, 47.333572], [8.523889, 47.333053], [8.52386, 47.332966], [8.523852, 47.332945], [8.523803, 47.332843], [8.523761, 47.332791], [8.523659, 47.33269], [8.523488, 47.332607], [8.523301, 47.332541], [8.523248, 47.332529], [8.523155, 47.332489], [8.523075, 47.332433], [8.522922, 47.332283], [8.522823, 47.332137], [8.522785, 47.332071], [8.522727, 47.332014], [8.522706, 47.331996], [8.522405, 47.331743], [8.522139, 47.331491], [8.522029, 47.331234], [8.52202, 47.331019], [8.522034, 47.3308], [8.521983, 47.330616], [8.521869, 47.330458], [8.521857, 47.330447], [8.521599, 47.33022], [8.521397, 47.329982], [8.521316, 47.329732], [8.521355, 47.329461], [8.521387, 47.329199], [8.521328, 47.328925], [8.521318, 47.328882], [8.521341, 47.328664], [8.521342, 47.328654], [8.521364, 47.328525], [8.521389, 47.328381], [8.521411, 47.32809], [8.521411, 47.328081], [8.521537, 47.327783], [8.521597, 47.327487], [8.521607, 47.327405], [8.521633, 47.327183], [8.52163, 47.327059], [8.521616, 47.326989], [8.521609, 47.32696], [8.521579, 47.326889], [8.521562, 47.326727], [8.521581, 47.326554], [8.521617, 47.326281], [8.52164, 47.32599], [8.521647, 47.325965], [8.521697, 47.3258], [8.521956, 47.325395], [8.522057, 47.325289], [8.522069, 47.325277], [8.522219, 47.325188], [8.522434, 47.325109], [8.522668, 47.325069], [8.52282, 47.325039], [8.522872, 47.325029], [8.522979, 47.325008], [8.523033, 47.32501], [8.523055, 47.325011], [8.523305, 47.325021], [8.523335, 47.325025], [8.523603, 47.325062]]], "type": "MultiLineString"}, "id": "3202", "properties": {}, "type": "Feature"}, {"bbox": [8.483509, 47.379512, 8.486707, 47.380885], "geometry": {"coordinates": [[[8.486707, 47.379512], [8.486278, 47.379627], [8.486022, 47.379721], [8.484449, 47.380555], [8.483848, 47.380873], [8.483509, 47.380885]]], "type": "MultiLineString"}, "id": "3203", "properties": {}, "type": "Feature"}, {"bbox": [8.540357, 47.413964, 8.541135, 47.414308], "geometry": {"coordinates": [[[8.540659, 47.414308], [8.541135, 47.414284], [8.54113, 47.414226], [8.54081, 47.414169], [8.540653, 47.414126], [8.54042, 47.414059], [8.540414, 47.413986], [8.540357, 47.413964]]], "type": "MultiLineString"}, "id": "3204", "properties": {}, "type": "Feature"}, {"bbox": [8.539868, 47.412532, 8.539887, 47.412559], "geometry": {"coordinates": [[[8.539868, 47.412559], [8.539887, 47.412532]]], "type": "MultiLineString"}, "id": "3206", "properties": {}, "type": "Feature"}, {"bbox": [8.513604, 47.404236, 8.515084, 47.407217], "geometry": {"coordinates": [[[8.514523, 47.404236], [8.514562, 47.404295], [8.514597, 47.404356], [8.514626, 47.404417], [8.514659, 47.404539], [8.514681, 47.404662], [8.514691, 47.404786], [8.514694, 47.404838], [8.514698, 47.404889], [8.514706, 47.404941], [8.514777, 47.405196], [8.514826, 47.405273], [8.514883, 47.405348], [8.514949, 47.40542], [8.514975, 47.405449], [8.514997, 47.40548], [8.515016, 47.405512], [8.51503, 47.405545], [8.51504, 47.405579], [8.515062, 47.405664], [8.515076, 47.40575], [8.515084, 47.405836], [8.515081, 47.40612], [8.515062, 47.406251], [8.515064, 47.406475], [8.515057, 47.406509], [8.515046, 47.406543], [8.51503, 47.406576], [8.51501, 47.406608], [8.514987, 47.406639], [8.514959, 47.406668], [8.514928, 47.406696], [8.514804, 47.4068], [8.514666, 47.406895], [8.514516, 47.406981], [8.514457, 47.407013], [8.514313, 47.40707], [8.514172, 47.407097], [8.513723, 47.407194], [8.513604, 47.407217]]], "type": "MultiLineString"}, "id": "3207", "properties": {}, "type": "Feature"}, {"bbox": [8.544214, 47.387586, 8.544368, 47.387959], "geometry": {"coordinates": [[[8.544368, 47.387586], [8.544287, 47.387873], [8.544214, 47.387959]]], "type": "MultiLineString"}, "id": "3214", "properties": {}, "type": "Feature"}, {"bbox": [8.481691, 47.397474, 8.482188, 47.398157], "geometry": {"coordinates": [[[8.482072, 47.397474], [8.48195, 47.397667], [8.481875, 47.397729], [8.481809, 47.397796], [8.481751, 47.397866], [8.481702, 47.397939], [8.481697, 47.397954], [8.481693, 47.397968], [8.481691, 47.397983], [8.481692, 47.397998], [8.481694, 47.398013], [8.481698, 47.398027], [8.481704, 47.398041], [8.481711, 47.398055], [8.481721, 47.398069], [8.481732, 47.398081], [8.481745, 47.398093], [8.481759, 47.398105], [8.481775, 47.398115], [8.481792, 47.398124], [8.48181, 47.398133], [8.481829, 47.39814], [8.481849, 47.398146], [8.48187, 47.39815], [8.481891, 47.398154], [8.481913, 47.398156], [8.481935, 47.398157], [8.481956, 47.398157], [8.481978, 47.398155], [8.482, 47.398152], [8.48202, 47.398148], [8.482041, 47.398142], [8.48206, 47.398136], [8.482079, 47.398128], [8.482096, 47.398119], [8.482113, 47.398109], [8.482128, 47.398099], [8.482141, 47.398087], [8.482153, 47.398074], [8.482163, 47.398061], [8.482172, 47.398048], [8.482179, 47.398034], [8.482184, 47.398019], [8.482187, 47.398004], [8.482188, 47.39799], [8.482187, 47.397975], [8.482184, 47.39796], [8.48218, 47.397946], [8.482173, 47.397931], [8.482035, 47.397675], [8.482072, 47.397474]]], "type": "MultiLineString"}, "id": "3216", "properties": {}, "type": "Feature"}, {"bbox": [8.547212, 47.406544, 8.54799, 47.406713], "geometry": {"coordinates": [[[8.54799, 47.406713], [8.547682, 47.406544], [8.547443, 47.406588], [8.547212, 47.406554]]], "type": "MultiLineString"}, "id": "3217", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.390475, 8.523011, 47.390845], "geometry": {"coordinates": [[[8.523011, 47.390475], [8.522767, 47.390612], [8.522636, 47.390675], [8.522498, 47.39073], [8.522353, 47.390777], [8.522202, 47.390815], [8.522048, 47.390845]]], "type": "MultiLineString"}, "id": "3218", "properties": {}, "type": "Feature"}, {"bbox": [8.47943, 47.412695, 8.482453, 47.413731], "geometry": {"coordinates": [[[8.482453, 47.413719], [8.48226, 47.413731], [8.482146, 47.413658], [8.48213, 47.413466], [8.482075, 47.413435], [8.48178, 47.413435], [8.481733, 47.413409], [8.481508, 47.413235], [8.481376, 47.413223], [8.48132, 47.41312], [8.481182, 47.413043], [8.481108, 47.413017], [8.480931, 47.413098], [8.480729, 47.413084], [8.480484, 47.413078], [8.480215, 47.413009], [8.479926, 47.412938], [8.479579, 47.412849], [8.479574, 47.41278], [8.47943, 47.412695]]], "type": "MultiLineString"}, "id": "3220", "properties": {}, "type": "Feature"}, {"bbox": [8.479733, 47.411418, 8.480574, 47.412432], "geometry": {"coordinates": [[[8.480362, 47.412418], [8.480286, 47.412431], [8.480282, 47.412432], [8.480278, 47.412432], [8.480274, 47.412432], [8.48027, 47.412432], [8.480267, 47.412431], [8.480263, 47.41243], [8.480259, 47.412429], [8.480255, 47.412428], [8.480252, 47.412427], [8.480249, 47.412425], [8.480245, 47.412424], [8.480243, 47.412422], [8.480075, 47.412178], [8.479906, 47.411934], [8.479736, 47.411691], [8.479735, 47.411689], [8.479734, 47.411687], [8.479734, 47.411685], [8.479733, 47.411683], [8.479733, 47.411681], [8.479734, 47.411679], [8.479734, 47.411677], [8.479735, 47.411675], [8.479736, 47.411673], [8.479737, 47.411671], [8.479739, 47.411669], [8.47974, 47.411668], [8.479742, 47.411666], [8.479744, 47.411665], [8.479746, 47.411663], [8.479749, 47.411662], [8.479751, 47.411661], [8.479754, 47.41166], [8.479757, 47.411659], [8.480574, 47.411418]]], "type": "MultiLineString"}, "id": "3224", "properties": {}, "type": "Feature"}, {"bbox": [8.569884, 47.349878, 8.571697, 47.350065], "geometry": {"coordinates": [[[8.569884, 47.349987], [8.570115, 47.350053], [8.570183, 47.350061], [8.570251, 47.350065], [8.57032, 47.350064], [8.570389, 47.35006], [8.570456, 47.350051], [8.570556, 47.350012], [8.570652, 47.349969], [8.570745, 47.349924], [8.570784, 47.34991], [8.570825, 47.349899], [8.570867, 47.34989], [8.57091, 47.349883], [8.570953, 47.34988], [8.570997, 47.349878], [8.571041, 47.34988], [8.571085, 47.349884], [8.571128, 47.34989], [8.57117, 47.3499], [8.571348, 47.349951], [8.571523, 47.350004], [8.571697, 47.350061]]], "type": "MultiLineString"}, "id": "3225", "properties": {}, "type": "Feature"}, {"bbox": [8.480574, 47.411188, 8.483549, 47.411495], "geometry": {"coordinates": [[[8.480574, 47.411418], [8.481463, 47.411373], [8.481541, 47.411367], [8.481619, 47.411358], [8.481696, 47.411349], [8.481929, 47.411305], [8.48216, 47.411257], [8.482389, 47.411205], [8.482473, 47.411194], [8.482557, 47.411188], [8.482643, 47.411188], [8.482737, 47.411192], [8.482831, 47.411197], [8.482925, 47.411201], [8.482965, 47.411205], [8.483005, 47.411211], [8.483044, 47.41122], [8.483081, 47.411231], [8.483117, 47.411244], [8.483151, 47.411259], [8.483183, 47.411276], [8.483429, 47.411442], [8.483456, 47.411458], [8.483485, 47.411472], [8.483516, 47.411484], [8.483549, 47.411495]]], "type": "MultiLineString"}, "id": "3227", "properties": {}, "type": "Feature"}, {"bbox": [8.472737, 47.389678, 8.473817, 47.390382], "geometry": {"coordinates": [[[8.473817, 47.390382], [8.473768, 47.39034], [8.473714, 47.390302], [8.473655, 47.390266], [8.473593, 47.390234], [8.473526, 47.390205], [8.473457, 47.390181], [8.473367, 47.390144], [8.47328, 47.390105], [8.473195, 47.390063], [8.473146, 47.390035], [8.473096, 47.390008], [8.473045, 47.38998], [8.472983, 47.389942], [8.472926, 47.3899], [8.472876, 47.389855], [8.472832, 47.389806], [8.472737, 47.389678]]], "type": "MultiLineString"}, "id": "3228", "properties": {}, "type": "Feature"}, {"bbox": [8.595601, 47.365485, 8.598892, 47.365644], "geometry": {"coordinates": [[[8.595601, 47.365485], [8.595658, 47.365486], [8.595715, 47.365491], [8.59577, 47.365497], [8.595824, 47.365505], [8.595878, 47.365512], [8.595932, 47.365518], [8.596003, 47.365526], [8.596075, 47.365535], [8.596146, 47.365544], [8.596242, 47.365556], [8.596339, 47.365567], [8.596435, 47.365578], [8.596451, 47.365579], [8.596468, 47.365581], [8.596484, 47.365582], [8.596509, 47.365585], [8.596534, 47.365587], [8.596559, 47.365588], [8.596578, 47.36559], [8.596597, 47.365593], [8.596616, 47.365596], [8.596641, 47.3656], [8.596666, 47.365603], [8.596691, 47.365605], [8.59671, 47.365606], [8.596729, 47.365607], [8.596747, 47.365608], [8.596774, 47.36561], [8.596801, 47.365611], [8.596828, 47.365613], [8.596918, 47.365619], [8.597008, 47.365625], [8.597098, 47.36563], [8.597184, 47.365634], [8.597269, 47.365638], [8.597355, 47.365641], [8.597405, 47.365643], [8.597454, 47.365644], [8.597504, 47.365644], [8.597504, 47.365644], [8.5978, 47.365643], [8.597882, 47.365641], [8.597964, 47.365638], [8.598045, 47.365633], [8.598105, 47.365629], [8.598164, 47.365625], [8.598224, 47.365621], [8.598256, 47.365619], [8.598288, 47.365618], [8.59832, 47.365617], [8.598363, 47.365616], [8.598407, 47.365615], [8.59845, 47.365614], [8.598471, 47.365614], [8.598491, 47.365615], [8.598512, 47.365616], [8.598544, 47.365618], [8.598578, 47.365619], [8.598611, 47.365618], [8.598621, 47.365618], [8.598631, 47.365619], [8.598641, 47.36562], [8.598892, 47.365641]]], "type": "MultiLineString"}, "id": "3232", "properties": {}, "type": "Feature"}, {"bbox": [8.483994, 47.371609, 8.485674, 47.371988], "geometry": {"coordinates": [[[8.483994, 47.371988], [8.484148, 47.371987], [8.484617, 47.371956], [8.485513, 47.371625], [8.485674, 47.371609]]], "type": "MultiLineString"}, "id": "3233", "properties": {}, "type": "Feature"}, {"bbox": [8.524003, 47.335374, 8.52506, 47.335894], "geometry": {"coordinates": [[[8.52506, 47.335374], [8.524911, 47.335453], [8.524687, 47.335538], [8.524419, 47.335715], [8.524257, 47.335805], [8.524003, 47.335894]]], "type": "MultiLineString"}, "id": "3234", "properties": {}, "type": "Feature"}, {"bbox": [8.524967, 47.427267, 8.530679, 47.428173], "geometry": {"coordinates": [[[8.530679, 47.428096], [8.53067, 47.427833], [8.530652, 47.42771], [8.530646, 47.427697], [8.530638, 47.427684], [8.530628, 47.427672], [8.530617, 47.42766], [8.530604, 47.42765], [8.53059, 47.427639], [8.530575, 47.42763], [8.530558, 47.427622], [8.530541, 47.427615], [8.530523, 47.427609], [8.530504, 47.427604], [8.530484, 47.427601], [8.530088, 47.427576], [8.530019, 47.427571], [8.52995, 47.427564], [8.529881, 47.427553], [8.529528, 47.427486], [8.529176, 47.427414], [8.528826, 47.427338], [8.528698, 47.427313], [8.528567, 47.427297], [8.528434, 47.42729], [8.527929, 47.427303], [8.527769, 47.427303], [8.52761, 47.427298], [8.527452, 47.427289], [8.527451, 47.427289], [8.527184, 47.427274], [8.526965, 47.427267], [8.526746, 47.427269], [8.526527, 47.427281], [8.526439, 47.42729], [8.526351, 47.427305], [8.526266, 47.427324], [8.526184, 47.427348], [8.526105, 47.427376], [8.526029, 47.427409], [8.525923, 47.427462], [8.525823, 47.427521], [8.52573, 47.427585], [8.52513, 47.428027], [8.525013, 47.42812], [8.524996, 47.428137], [8.52498, 47.428154], [8.524967, 47.428173]]], "type": "MultiLineString"}, "id": "3236", "properties": {}, "type": "Feature"}, {"bbox": [8.511701, 47.423793, 8.516978, 47.42549], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.51689, 47.423852], [8.516633, 47.423952], [8.516357, 47.424051], [8.516076, 47.424153], [8.515566, 47.424327], [8.515342, 47.424394], [8.515036, 47.424472], [8.514847, 47.424516], [8.514402, 47.424604], [8.513936, 47.424726], [8.513716, 47.424787], [8.513499, 47.424853], [8.513285, 47.424924], [8.512995, 47.425033], [8.512925, 47.425059], [8.512523, 47.42521], [8.512115, 47.425354], [8.511701, 47.42549]]], "type": "MultiLineString"}, "id": "3237", "properties": {}, "type": "Feature"}, {"bbox": [8.532558, 47.394232, 8.533031, 47.394609], "geometry": {"coordinates": [[[8.532558, 47.394232], [8.532614, 47.394322], [8.532648, 47.394374], [8.532673, 47.394406], [8.532703, 47.394437], [8.532736, 47.394466], [8.532773, 47.394493], [8.532813, 47.394517], [8.532857, 47.39454], [8.532902, 47.394559], [8.53295, 47.394576], [8.533031, 47.394609]]], "type": "MultiLineString"}, "id": "3239", "properties": {}, "type": "Feature"}, {"bbox": [8.538417, 47.36908, 8.539477, 47.36932], "geometry": {"coordinates": [[[8.538417, 47.36932], [8.538717, 47.36908], [8.538782, 47.369109], [8.53885, 47.369133], [8.538922, 47.369154], [8.538996, 47.369169], [8.539301, 47.369209], [8.539477, 47.369206]]], "type": "MultiLineString"}, "id": "3240", "properties": {}, "type": "Feature"}, {"bbox": [8.558896, 47.392813, 8.564621, 47.395301], "geometry": {"coordinates": [[[8.563228, 47.392813], [8.563208, 47.392822], [8.563188, 47.39283], [8.563166, 47.392836], [8.563144, 47.392842], [8.563121, 47.392846], [8.563092, 47.392851], [8.563063, 47.392858], [8.563036, 47.392867], [8.56301, 47.392877], [8.562836, 47.392956], [8.562771, 47.392984], [8.562704, 47.393011], [8.562635, 47.393035], [8.562154, 47.393192], [8.562144, 47.393196], [8.562093, 47.393211], [8.562042, 47.393225], [8.561989, 47.393237], [8.561717, 47.393294], [8.560776, 47.393482], [8.559883, 47.393664], [8.559695, 47.393703], [8.559389, 47.393767], [8.559035, 47.393848], [8.558997, 47.393856], [8.558959, 47.393863], [8.55892, 47.393868], [8.558941, 47.393966], [8.558951, 47.394003], [8.558967, 47.39404], [8.558988, 47.394076], [8.559071, 47.3942], [8.55909, 47.394232], [8.559104, 47.394264], [8.559115, 47.394297], [8.559121, 47.39433], [8.559123, 47.394364], [8.559121, 47.394398], [8.559114, 47.394432], [8.559103, 47.394465], [8.558913, 47.394947], [8.558904, 47.394976], [8.558898, 47.395006], [8.558896, 47.395035], [8.558899, 47.395065], [8.558905, 47.395095], [8.558915, 47.395124], [8.558929, 47.395152], [8.55894, 47.395171], [8.558954, 47.395188], [8.55897, 47.395205], [8.558989, 47.395221], [8.559009, 47.395235], [8.559031, 47.395249], [8.559054, 47.395261], [8.559079, 47.395271], [8.559105, 47.39528], [8.559133, 47.395288], [8.559161, 47.395294], [8.559189, 47.395298], [8.559219, 47.3953], [8.559248, 47.395301], [8.559277, 47.3953], [8.560338, 47.395234], [8.560425, 47.395226], [8.560511, 47.395214], [8.560595, 47.395197], [8.560677, 47.395175], [8.560756, 47.395149], [8.56101, 47.395057], [8.561126, 47.395017], [8.561243, 47.394979], [8.561361, 47.394943], [8.561634, 47.394865], [8.561832, 47.394805], [8.562026, 47.394739], [8.562215, 47.394668], [8.563419, 47.394188], [8.563658, 47.394093], [8.563834, 47.39402], [8.564008, 47.393943], [8.564177, 47.393863], [8.564621, 47.393647]]], "type": "MultiLineString"}, "id": "3249", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.365661, 8.548492, 47.36629], "geometry": {"coordinates": [[[8.547307, 47.365661], [8.547513, 47.365792], [8.547755, 47.365927], [8.548096, 47.36613], [8.548274, 47.36625], [8.548288, 47.366258], [8.548304, 47.366266], [8.548321, 47.366273], [8.548339, 47.366279], [8.548357, 47.366283], [8.548376, 47.366287], [8.548396, 47.366289], [8.548415, 47.36629], [8.548435, 47.36629], [8.548454, 47.366289], [8.548474, 47.366286], [8.548492, 47.366283]]], "type": "MultiLineString"}, "id": "3250", "properties": {}, "type": "Feature"}, {"bbox": [8.544513, 47.369827, 8.547003, 47.370781], "geometry": {"coordinates": [[[8.544513, 47.369827], [8.544846, 47.37011], [8.544866, 47.370127], [8.545037, 47.370206], [8.545692, 47.370418], [8.5459, 47.370507], [8.546681, 47.370733], [8.546842, 47.37078], [8.547003, 47.370781]]], "type": "MultiLineString"}, "id": "3251", "properties": {}, "type": "Feature"}, {"bbox": [8.543837, 47.37011, 8.544846, 47.370367], "geometry": {"coordinates": [[[8.544846, 47.37011], [8.544819, 47.370156], [8.544758, 47.370113], [8.544414, 47.370338], [8.544145, 47.370176], [8.544065, 47.370209], [8.544075, 47.370223], [8.543949, 47.370289], [8.543936, 47.370278], [8.543854, 47.37031], [8.543837, 47.370367]]], "type": "MultiLineString"}, "id": "3254", "properties": {}, "type": "Feature"}, {"bbox": [8.541851, 47.371469, 8.542833, 47.37187], "geometry": {"coordinates": [[[8.542833, 47.371788], [8.542691, 47.371779], [8.542713, 47.371686], [8.542527, 47.371664], [8.542539, 47.371624], [8.542388, 47.37162], [8.542386, 47.371548], [8.542096, 47.371545], [8.542087, 47.371471], [8.54192, 47.371469], [8.541909, 47.371533], [8.541899, 47.371596], [8.542038, 47.371607], [8.542013, 47.37177], [8.54187, 47.371764], [8.541854, 47.371773], [8.541851, 47.37187]]], "type": "MultiLineString"}, "id": "3263", "properties": {}, "type": "Feature"}, {"bbox": [8.517738, 47.41052, 8.521169, 47.412037], "geometry": {"coordinates": [[[8.517738, 47.412037], [8.517955, 47.411958], [8.518303, 47.411827], [8.518569, 47.411724], [8.518933, 47.411569], [8.519539, 47.411276], [8.521067, 47.410539], [8.521075, 47.410535], [8.521082, 47.410531], [8.521091, 47.410528], [8.521099, 47.410526], [8.521108, 47.410523], [8.521117, 47.410522], [8.521126, 47.410521], [8.521136, 47.41052], [8.521145, 47.41052], [8.521155, 47.410521], [8.521164, 47.410522], [8.521169, 47.410523]]], "type": "MultiLineString"}, "id": "3264", "properties": {}, "type": "Feature"}, {"bbox": [8.526025, 47.409676, 8.526336, 47.409919], "geometry": {"coordinates": [[[8.526336, 47.409919], [8.526105, 47.40973], [8.526025, 47.409676]]], "type": "MultiLineString"}, "id": "3266", "properties": {}, "type": "Feature"}, {"bbox": [8.577688, 47.401629, 8.578298, 47.40192], "geometry": {"coordinates": [[[8.577688, 47.40192], [8.577816, 47.401864], [8.578298, 47.401629]]], "type": "MultiLineString"}, "id": "3267", "properties": {}, "type": "Feature"}, {"bbox": [8.484449, 47.380555, 8.484645, 47.380943], "geometry": {"coordinates": [[[8.484645, 47.380943], [8.484635, 47.380917], [8.484609, 47.380873], [8.484584, 47.380829], [8.484558, 47.380785], [8.484524, 47.380707], [8.484488, 47.380631], [8.484449, 47.380555]]], "type": "MultiLineString"}, "id": "3268", "properties": {}, "type": "Feature"}, {"bbox": [8.523731, 47.399226, 8.524539, 47.402202], "geometry": {"coordinates": [[[8.524322, 47.399226], [8.524381, 47.399395], [8.524437, 47.399689], [8.524499, 47.399817], [8.524539, 47.400051], [8.524514, 47.400191], [8.524458, 47.400339], [8.524333, 47.400581], [8.524264, 47.400774], [8.524219, 47.40087], [8.524194, 47.400927], [8.524186, 47.400957], [8.524174, 47.401032], [8.524171, 47.40108], [8.524174, 47.401128], [8.524184, 47.401176], [8.524223, 47.40131], [8.524237, 47.40137], [8.524243, 47.401432], [8.524241, 47.401493], [8.524232, 47.401554], [8.524216, 47.401615], [8.524192, 47.401674], [8.524161, 47.401732], [8.524123, 47.401787], [8.523999, 47.401949], [8.523979, 47.401972], [8.523957, 47.401994], [8.523932, 47.402014], [8.523904, 47.402033], [8.523873, 47.402049], [8.523839, 47.402066], [8.523804, 47.402082], [8.523767, 47.402097], [8.523762, 47.4021], [8.523757, 47.402102], [8.523752, 47.402105], [8.523748, 47.402108], [8.523744, 47.402112], [8.523741, 47.402115], [8.523738, 47.402119], [8.523736, 47.402123], [8.523734, 47.402127], [8.523732, 47.402131], [8.523732, 47.402135], [8.523731, 47.40214], [8.523732, 47.402144], [8.523732, 47.402148], [8.523734, 47.402152], [8.523736, 47.402156], [8.523738, 47.40216], [8.523766, 47.402202]]], "type": "MultiLineString"}, "id": "3271", "properties": {}, "type": "Feature"}, {"bbox": [8.531561, 47.366027, 8.532479, 47.366727], "geometry": {"coordinates": [[[8.532479, 47.366027], [8.532349, 47.366127], [8.532104, 47.366419], [8.53204, 47.366463], [8.531913, 47.366612], [8.531872, 47.366655], [8.531795, 47.366727], [8.531561, 47.366725]]], "type": "MultiLineString"}, "id": "3272", "properties": {}, "type": "Feature"}, {"bbox": [8.589244, 47.400718, 8.592402, 47.405435], "geometry": {"coordinates": [[[8.589244, 47.400718], [8.589326, 47.4008], [8.58936, 47.400838], [8.58938, 47.40088], [8.589389, 47.400913], [8.589396, 47.400941], [8.589657, 47.401354], [8.589972, 47.401837], [8.590306, 47.402375], [8.590528, 47.402718], [8.590555, 47.402769], [8.590746, 47.403084], [8.59127, 47.403916], [8.591716, 47.404626], [8.591772, 47.404701], [8.59183, 47.404774], [8.591892, 47.404847], [8.592018, 47.404834], [8.592039, 47.404831], [8.59206, 47.40483], [8.592082, 47.404829], [8.592104, 47.40483], [8.592125, 47.404833], [8.592146, 47.404836], [8.592167, 47.404841], [8.592187, 47.404846], [8.592206, 47.404853], [8.592224, 47.404861], [8.592241, 47.404871], [8.592257, 47.404881], [8.592271, 47.404892], [8.592284, 47.404903], [8.592324, 47.404945], [8.592358, 47.404989], [8.592386, 47.405034], [8.592392, 47.405047], [8.592397, 47.40506], [8.5924, 47.405073], [8.592402, 47.405087], [8.592402, 47.4051], [8.5924, 47.405113], [8.592396, 47.405127], [8.59239, 47.405139], [8.592383, 47.405152], [8.592377, 47.40516], [8.592371, 47.405168], [8.592363, 47.405176], [8.592212, 47.405324], [8.592287, 47.405435]]], "type": "MultiLineString"}, "id": "3273", "properties": {}, "type": "Feature"}, {"bbox": [8.498081, 47.402085, 8.498684, 47.402693], "geometry": {"coordinates": [[[8.498684, 47.402085], [8.498672, 47.402095], [8.498662, 47.402107], [8.498653, 47.402118], [8.498645, 47.402131], [8.498639, 47.402143], [8.498635, 47.402156], [8.498632, 47.40217], [8.498611, 47.402302], [8.498611, 47.402307], [8.498611, 47.402311], [8.49861, 47.402316], [8.498608, 47.402321], [8.498606, 47.402326], [8.498603, 47.402331], [8.4986, 47.402335], [8.498596, 47.402339], [8.498591, 47.402343], [8.498586, 47.402347], [8.498581, 47.40235], [8.498575, 47.402353], [8.498569, 47.402356], [8.498562, 47.402358], [8.498556, 47.40236], [8.498549, 47.402362], [8.498406, 47.402392], [8.498392, 47.402395], [8.498379, 47.402399], [8.498366, 47.402403], [8.498354, 47.402409], [8.498342, 47.402415], [8.498332, 47.402422], [8.498322, 47.402429], [8.498169, 47.402584], [8.498136, 47.402619], [8.498107, 47.402655], [8.498081, 47.402693]]], "type": "MultiLineString"}, "id": "3276", "properties": {}, "type": "Feature"}, {"bbox": [8.509307, 47.408515, 8.510025, 47.409119], "geometry": {"coordinates": [[[8.509307, 47.408515], [8.509447, 47.408605], [8.50979, 47.408869], [8.509866, 47.408924], [8.510025, 47.409119]]], "type": "MultiLineString"}, "id": "3277", "properties": {}, "type": "Feature"}, {"bbox": [8.582731, 47.382201, 8.584779, 47.383704], "geometry": {"coordinates": [[[8.584779, 47.382251], [8.584682, 47.382265], [8.584551, 47.382229], [8.584502, 47.382217], [8.584451, 47.382209], [8.5844, 47.382203], [8.584348, 47.382201], [8.584296, 47.382202], [8.584244, 47.382205], [8.584193, 47.382213], [8.584144, 47.382223], [8.584095, 47.382236], [8.584049, 47.382252], [8.583657, 47.382404], [8.583253, 47.382552], [8.582923, 47.382681], [8.582895, 47.382694], [8.582868, 47.382708], [8.582843, 47.382723], [8.582821, 47.38274], [8.5828, 47.382758], [8.582782, 47.382777], [8.582767, 47.382797], [8.582754, 47.382818], [8.582744, 47.38284], [8.582737, 47.382862], [8.582732, 47.382885], [8.582731, 47.382908], [8.582733, 47.38293], [8.582737, 47.382953], [8.582744, 47.382975], [8.582754, 47.382997], [8.582767, 47.383018], [8.582783, 47.383038], [8.582966, 47.383253], [8.582979, 47.383267], [8.582995, 47.383281], [8.583012, 47.383294], [8.583031, 47.383306], [8.583052, 47.383317], [8.583073, 47.383327], [8.583096, 47.383335], [8.58323, 47.38338], [8.583355, 47.383424], [8.583477, 47.383471], [8.583597, 47.38352], [8.583908, 47.383654], [8.583939, 47.383666], [8.583973, 47.383676], [8.584007, 47.383684], [8.584042, 47.383691], [8.584078, 47.383695], [8.584198, 47.383704]]], "type": "MultiLineString"}, "id": "3278", "properties": {}, "type": "Feature"}, {"bbox": [8.512646, 47.34467, 8.517983, 47.353227], "geometry": {"coordinates": [[[8.517983, 47.353227], [8.517894, 47.353066], [8.517841, 47.353002], [8.517794, 47.352936], [8.517752, 47.352869], [8.517699, 47.352775], [8.517649, 47.35268], [8.5176, 47.352585], [8.517567, 47.352527], [8.517527, 47.352471], [8.517479, 47.352417], [8.517425, 47.352366], [8.517365, 47.352319], [8.516634, 47.351735], [8.516583, 47.351697], [8.516527, 47.351662], [8.516467, 47.35163], [8.516403, 47.351602], [8.516403, 47.351602], [8.516402, 47.351602], [8.516372, 47.351591], [8.516343, 47.351578], [8.516316, 47.351563], [8.516291, 47.351547], [8.516268, 47.35153], [8.516268, 47.35153], [8.516268, 47.35153], [8.516215, 47.351483], [8.51617, 47.351433], [8.516131, 47.35138], [8.5161, 47.351324], [8.5161, 47.351324], [8.515987, 47.351154], [8.51598, 47.351137], [8.515974, 47.351119], [8.515972, 47.3511], [8.515972, 47.351082], [8.516105, 47.350399], [8.516108, 47.350384], [8.516109, 47.350369], [8.516108, 47.350353], [8.516105, 47.350338], [8.5161, 47.350323], [8.516093, 47.350308], [8.516085, 47.350294], [8.516084, 47.350293], [8.516084, 47.350293], [8.516043, 47.350241], [8.516001, 47.350189], [8.515959, 47.350137], [8.515647, 47.349566], [8.515627, 47.349532], [8.515439, 47.349201], [8.515401, 47.349131], [8.515385, 47.349101], [8.515361, 47.349059], [8.515322, 47.348983], [8.515284, 47.348906], [8.51525, 47.348829], [8.515227, 47.348774], [8.515084, 47.348417], [8.51506, 47.348345], [8.515046, 47.348273], [8.515041, 47.3482], [8.515042, 47.347975], [8.51504, 47.347949], [8.515035, 47.347924], [8.515027, 47.347899], [8.515016, 47.347875], [8.515002, 47.347851], [8.514985, 47.347829], [8.514965, 47.347807], [8.514943, 47.347787], [8.514787, 47.347658], [8.514777, 47.347649], [8.514769, 47.34764], [8.514761, 47.34763], [8.514756, 47.34762], [8.514751, 47.347609], [8.514748, 47.347598], [8.514746, 47.347587], [8.514746, 47.347576], [8.514747, 47.347565], [8.51475, 47.347554], [8.514754, 47.347544], [8.514759, 47.347533], [8.514766, 47.347523], [8.514774, 47.347514], [8.514783, 47.347504], [8.514794, 47.347496], [8.514926, 47.347399], [8.514935, 47.347391], [8.514944, 47.347383], [8.514952, 47.347374], [8.514958, 47.347365], [8.514963, 47.347355], [8.514967, 47.347346], [8.51497, 47.347336], [8.514971, 47.347326], [8.514972, 47.347316], [8.51497, 47.347306], [8.514968, 47.347296], [8.514965, 47.347286], [8.51496, 47.347276], [8.514954, 47.347267], [8.514947, 47.347258], [8.514939, 47.34725], [8.514929, 47.347242], [8.514919, 47.347235], [8.514908, 47.347228], [8.514419, 47.346956], [8.514348, 47.346914], [8.514284, 47.346866], [8.514225, 47.346816], [8.514174, 47.346761], [8.51413, 47.346704], [8.514023, 47.346548], [8.513986, 47.34649], [8.513936, 47.346414], [8.513922, 47.346401], [8.513866, 47.346346], [8.513816, 47.346288], [8.513773, 47.346228], [8.513705, 47.346124], [8.513641, 47.346018], [8.513582, 47.345911], [8.513428, 47.345617], [8.513278, 47.345372], [8.513278, 47.345372], [8.513278, 47.345372], [8.513251, 47.345334], [8.513219, 47.345299], [8.513182, 47.345265], [8.51314, 47.345234], [8.513095, 47.345206], [8.512973, 47.345137], [8.512959, 47.345129], [8.512946, 47.345119], [8.512935, 47.345109], [8.512925, 47.345099], [8.512917, 47.345087], [8.512696, 47.344746], [8.512646, 47.34467]]], "type": "MultiLineString"}, "id": "3281", "properties": {}, "type": "Feature"}, {"bbox": [8.546729, 47.372075, 8.547325, 47.372926], "geometry": {"coordinates": [[[8.546883, 47.372885], [8.547078, 47.372926], [8.547325, 47.372301], [8.547324, 47.372153], [8.546976, 47.372075], [8.546729, 47.372207], [8.546959, 47.372555], [8.54689, 47.372572]]], "type": "MultiLineString"}, "id": "3286", "properties": {}, "type": "Feature"}, {"bbox": [8.484926, 47.386266, 8.485576, 47.387068], "geometry": {"coordinates": [[[8.484926, 47.386266], [8.485365, 47.386664], [8.485576, 47.387068]]], "type": "MultiLineString"}, "id": "3289", "properties": {}, "type": "Feature"}, {"bbox": [8.504709, 47.346206, 8.509313, 47.351929], "geometry": {"coordinates": [[[8.504806, 47.351929], [8.504894, 47.351726], [8.504896, 47.351724], [8.5049, 47.351719], [8.504903, 47.351713], [8.504906, 47.351707], [8.504908, 47.351701], [8.50491, 47.351694], [8.50491, 47.351688], [8.50491, 47.351688], [8.50491, 47.351687], [8.504907, 47.351655], [8.5049, 47.351624], [8.50489, 47.351593], [8.50489, 47.351592], [8.504831, 47.351453], [8.504746, 47.351368], [8.504735, 47.351355], [8.504726, 47.351341], [8.504719, 47.351327], [8.504713, 47.351308], [8.50471, 47.351289], [8.504709, 47.351269], [8.504711, 47.35125], [8.504715, 47.351231], [8.504721, 47.351212], [8.50473, 47.351193], [8.504766, 47.351131], [8.504805, 47.35107], [8.504846, 47.35101], [8.504977, 47.350817], [8.505024, 47.350753], [8.505075, 47.35069], [8.505131, 47.350629], [8.505139, 47.350621], [8.505164, 47.350599], [8.505192, 47.350579], [8.505222, 47.350561], [8.505255, 47.350544], [8.50529, 47.35053], [8.505326, 47.350517], [8.505671, 47.350416], [8.505691, 47.350409], [8.50571, 47.350401], [8.505729, 47.350392], [8.505746, 47.350382], [8.505761, 47.350371], [8.505775, 47.350359], [8.505936, 47.350222], [8.505937, 47.350222], [8.505955, 47.350203], [8.50597, 47.350184], [8.505983, 47.350164], [8.505994, 47.350143], [8.506193, 47.349691], [8.506207, 47.34966], [8.506163, 47.349525], [8.506157, 47.349478], [8.506157, 47.349431], [8.506165, 47.349384], [8.506178, 47.349338], [8.506199, 47.349293], [8.506232, 47.34923], [8.506248, 47.349202], [8.506269, 47.349175], [8.506292, 47.34915], [8.50632, 47.349126], [8.50655, 47.348941], [8.50657, 47.348924], [8.506587, 47.348905], [8.506602, 47.348886], [8.506614, 47.348865], [8.506623, 47.348844], [8.506629, 47.348822], [8.506633, 47.348801], [8.506643, 47.348679], [8.506652, 47.34862], [8.506667, 47.348562], [8.506689, 47.348505], [8.50681, 47.348241], [8.506827, 47.348205], [8.506847, 47.348171], [8.506868, 47.348137], [8.506898, 47.348093], [8.506935, 47.348034], [8.506968, 47.347974], [8.506996, 47.347912], [8.507063, 47.347751], [8.507103, 47.347639], [8.507112, 47.347619], [8.507124, 47.3476], [8.507138, 47.347581], [8.507154, 47.347563], [8.507173, 47.347547], [8.507262, 47.347476], [8.507298, 47.347444], [8.50733, 47.347411], [8.507357, 47.347376], [8.50738, 47.347339], [8.507397, 47.347301], [8.507439, 47.347195], [8.507445, 47.347176], [8.507449, 47.347157], [8.50745, 47.347137], [8.507448, 47.347118], [8.507444, 47.347099], [8.507437, 47.34708], [8.507428, 47.347062], [8.507417, 47.347044], [8.507323, 47.346916], [8.507307, 47.346891], [8.507294, 47.346866], [8.507285, 47.34684], [8.507279, 47.346814], [8.507276, 47.346787], [8.507278, 47.34676], [8.507282, 47.346734], [8.50729, 47.346708], [8.507384, 47.346694], [8.507445, 47.346684], [8.507506, 47.346672], [8.507566, 47.346659], [8.50824, 47.346499], [8.508923, 47.346334], [8.50897, 47.346321], [8.509017, 47.346308], [8.509062, 47.346293], [8.509313, 47.346206]]], "type": "MultiLineString"}, "id": "3290", "properties": {}, "type": "Feature"}, {"bbox": [8.531052, 47.421916, 8.533545, 47.423463], "geometry": {"coordinates": [[[8.531052, 47.421916], [8.531149, 47.422043], [8.531171, 47.422083], [8.531189, 47.422124], [8.531203, 47.422165], [8.531219, 47.422239], [8.531224, 47.422313], [8.531219, 47.422387], [8.531192, 47.42256], [8.531178, 47.422635], [8.531158, 47.422708], [8.531131, 47.422782], [8.531126, 47.422801], [8.531124, 47.42282], [8.531125, 47.422839], [8.531128, 47.422859], [8.531134, 47.422877], [8.531142, 47.422896], [8.531152, 47.422914], [8.531184, 47.422948], [8.531219, 47.42298], [8.531259, 47.42301], [8.531302, 47.423037], [8.531348, 47.423062], [8.531348, 47.423062], [8.531395, 47.42308], [8.531445, 47.423097], [8.531495, 47.42311], [8.531678, 47.423148], [8.531702, 47.423152], [8.531725, 47.423158], [8.531748, 47.423165], [8.531769, 47.423174], [8.531769, 47.423174], [8.531798, 47.423186], [8.531828, 47.423197], [8.53186, 47.423206], [8.531892, 47.423213], [8.531925, 47.423218], [8.531959, 47.423222], [8.532038, 47.423232], [8.532117, 47.423244], [8.532194, 47.423258], [8.532257, 47.423265], [8.532319, 47.423271], [8.532382, 47.423275], [8.532423, 47.42328], [8.532463, 47.423286], [8.532503, 47.423294], [8.532564, 47.423308], [8.532626, 47.423321], [8.532688, 47.423331], [8.532746, 47.423337], [8.532805, 47.423342], [8.532864, 47.423345], [8.532934, 47.423359], [8.533002, 47.423377], [8.533068, 47.423397], [8.533085, 47.423402], [8.533103, 47.423405], [8.533122, 47.423407], [8.53314, 47.423408], [8.533159, 47.423408], [8.533177, 47.423407], [8.533224, 47.423406], [8.53327, 47.423408], [8.533317, 47.423412], [8.533362, 47.42342], [8.533374, 47.423422], [8.533386, 47.423425], [8.533398, 47.423428], [8.533545, 47.423463]]], "type": "MultiLineString"}, "id": "3292", "properties": {}, "type": "Feature"}, {"bbox": [8.5515, 47.417203, 8.553042, 47.41863], "geometry": {"coordinates": [[[8.551886, 47.417203], [8.5515, 47.417377], [8.552305, 47.418259], [8.55265, 47.41863], [8.553042, 47.418485]]], "type": "MultiLineString"}, "id": "3293", "properties": {}, "type": "Feature"}, {"bbox": [8.510588, 47.340599, 8.513482, 47.352667], "geometry": {"coordinates": [[[8.511914, 47.352667], [8.511919, 47.352628], [8.51196, 47.352343], [8.511999, 47.352079], [8.512015, 47.352025], [8.512037, 47.351973], [8.512066, 47.351922], [8.512102, 47.351874], [8.512144, 47.351827], [8.512192, 47.351784], [8.512246, 47.351743], [8.512304, 47.351706], [8.512368, 47.351673], [8.512435, 47.351643], [8.513171, 47.351308], [8.513225, 47.351276], [8.513274, 47.35124], [8.513319, 47.351202], [8.513359, 47.351162], [8.513394, 47.351119], [8.513424, 47.351074], [8.513447, 47.351028], [8.513465, 47.350981], [8.513476, 47.350932], [8.513482, 47.350884], [8.513481, 47.350835], [8.513465, 47.350776], [8.51344, 47.350718], [8.513407, 47.350663], [8.513367, 47.350609], [8.513319, 47.350559], [8.512823, 47.350053], [8.512673, 47.349899], [8.512607, 47.349828], [8.512551, 47.349754], [8.512505, 47.349676], [8.51247, 47.349596], [8.51231, 47.349198], [8.512291, 47.349153], [8.51202, 47.348528], [8.511996, 47.348481], [8.511965, 47.348436], [8.511928, 47.348394], [8.511885, 47.348354], [8.51179, 47.348274], [8.511734, 47.348221], [8.511685, 47.348165], [8.511646, 47.348105], [8.511566, 47.347969], [8.511545, 47.347936], [8.511521, 47.347905], [8.511494, 47.347874], [8.511235, 47.347603], [8.511222, 47.347589], [8.51121, 47.347574], [8.511199, 47.347559], [8.511182, 47.347529], [8.511169, 47.347499], [8.51116, 47.347468], [8.511157, 47.347447], [8.511156, 47.347427], [8.511156, 47.347406], [8.511171, 47.347171], [8.51123, 47.346701], [8.511267, 47.346373], [8.511321, 47.345971], [8.511325, 47.345925], [8.511324, 47.34588], [8.511318, 47.345834], [8.511305, 47.345789], [8.511305, 47.345789], [8.510842, 47.344524], [8.510816, 47.344451], [8.510785, 47.344379], [8.510751, 47.344308], [8.51075, 47.344308], [8.51075, 47.344307], [8.510718, 47.344255], [8.510684, 47.344202], [8.51065, 47.34415], [8.510615, 47.344089], [8.510604, 47.34407], [8.510596, 47.344051], [8.510591, 47.344031], [8.510588, 47.344011], [8.510588, 47.343992], [8.510591, 47.343969], [8.510597, 47.343947], [8.510606, 47.343925], [8.51062, 47.3439], [8.510637, 47.343876], [8.510657, 47.343853], [8.51068, 47.343831], [8.510987, 47.343621], [8.51101, 47.343604], [8.511031, 47.343586], [8.511049, 47.343566], [8.511065, 47.343546], [8.511078, 47.343525], [8.511381, 47.342977], [8.511547, 47.342679], [8.511655, 47.34247], [8.511747, 47.342257], [8.511822, 47.342041], [8.511867, 47.341939], [8.51192, 47.341839], [8.511982, 47.341741], [8.511994, 47.341724], [8.512009, 47.341704], [8.51219, 47.341449], [8.512235, 47.341391], [8.512285, 47.341325], [8.51233, 47.341275], [8.512403, 47.341198], [8.512521, 47.341071], [8.512613, 47.340981], [8.512632, 47.340955], [8.512739, 47.340807], [8.512816, 47.340681], [8.512856, 47.340599]]], "type": "MultiLineString"}, "id": "3297", "properties": {}, "type": "Feature"}, {"bbox": [8.536276, 47.377556, 8.536592, 47.377944], "geometry": {"coordinates": [[[8.536276, 47.377556], [8.536592, 47.377944]]], "type": "MultiLineString"}, "id": "3300", "properties": {}, "type": "Feature"}, {"bbox": [8.579266, 47.367251, 8.599604, 47.374595], "geometry": {"coordinates": [[[8.579742, 47.374595], [8.579559, 47.374402], [8.579331, 47.374164], [8.579266, 47.374059], [8.579278, 47.373946], [8.579405, 47.373655], [8.579435, 47.373588], [8.579595, 47.373233], [8.579615, 47.373194], [8.57964, 47.373156], [8.579669, 47.37312], [8.580137, 47.372648], [8.580192, 47.372585], [8.580243, 47.372522], [8.580291, 47.372457], [8.580714, 47.371844], [8.58099, 47.37153], [8.581293, 47.3712], [8.581481, 47.370992], [8.58166, 47.370808], [8.581719, 47.370751], [8.581876, 47.370629], [8.581972, 47.370556], [8.582058, 47.370479], [8.582136, 47.370397], [8.58222, 47.370305], [8.58231, 47.370215], [8.582406, 47.370128], [8.582481, 47.37007], [8.582556, 47.370012], [8.582632, 47.369954], [8.58272, 47.369885], [8.582798, 47.369812], [8.582868, 47.369734], [8.582928, 47.369653], [8.582977, 47.369569], [8.582996, 47.369543], [8.583018, 47.369518], [8.583043, 47.369495], [8.583072, 47.369474], [8.583103, 47.369454], [8.583379, 47.369329], [8.583553, 47.369252], [8.583609, 47.369224], [8.583661, 47.369194], [8.58371, 47.36916], [8.583754, 47.369124], [8.583794, 47.369086], [8.583821, 47.369058], [8.583851, 47.369031], [8.583883, 47.369006], [8.583937, 47.368972], [8.583982, 47.368945], [8.584031, 47.36892], [8.584083, 47.368899], [8.584138, 47.368881], [8.584194, 47.368866], [8.584279, 47.368843], [8.584361, 47.368816], [8.584439, 47.368784], [8.584513, 47.368748], [8.585145, 47.368414], [8.58559, 47.368178], [8.585701, 47.368126], [8.585818, 47.36808], [8.585941, 47.368043], [8.586068, 47.368012], [8.586199, 47.36799], [8.586935, 47.367885], [8.587041, 47.367876], [8.587147, 47.367873], [8.587253, 47.367876], [8.587358, 47.367885], [8.587461, 47.367901], [8.587623, 47.367922], [8.587786, 47.367937], [8.587951, 47.367946], [8.588832, 47.367966], [8.589837, 47.367987], [8.589967, 47.367991], [8.590098, 47.36799], [8.590228, 47.367983], [8.590373, 47.367973], [8.591747, 47.36771], [8.592038, 47.367663], [8.592462, 47.367621], [8.592614, 47.367601], [8.592715, 47.367583], [8.592813, 47.36756], [8.592908, 47.367532], [8.593, 47.367498], [8.593259, 47.367371], [8.593307, 47.367347], [8.593359, 47.367326], [8.593412, 47.367307], [8.593491, 47.367286], [8.593573, 47.367269], [8.593657, 47.367259], [8.59377, 47.367251], [8.593884, 47.367251], [8.593997, 47.367258], [8.594092, 47.367268], [8.594186, 47.367277], [8.594281, 47.367287], [8.594371, 47.367299], [8.59446, 47.367316], [8.594546, 47.367338], [8.595229, 47.367532], [8.595296, 47.367551], [8.595362, 47.367569], [8.595428, 47.367589], [8.595428, 47.367589], [8.595428, 47.367589], [8.595526, 47.367621], [8.595622, 47.367656], [8.595715, 47.367694], [8.595927, 47.367791], [8.596005, 47.36783], [8.596086, 47.367865], [8.59617, 47.367898], [8.596209, 47.367912], [8.59625, 47.367925], [8.596291, 47.367935], [8.596326, 47.367943], [8.596359, 47.367949], [8.596392, 47.367956], [8.596426, 47.367962], [8.596459, 47.367968], [8.596492, 47.367973], [8.596525, 47.367979], [8.597445, 47.368108], [8.597536, 47.368123], [8.597627, 47.36814], [8.597717, 47.368157], [8.597817, 47.368179], [8.597916, 47.368203], [8.598015, 47.368228], [8.598015, 47.368228], [8.598052, 47.368238], [8.59912, 47.368545], [8.599213, 47.368575], [8.599302, 47.36861], [8.599386, 47.368649], [8.599466, 47.368693], [8.59954, 47.368741], [8.599604, 47.368786]]], "type": "MultiLineString"}, "id": "3301", "properties": {}, "type": "Feature"}, {"bbox": [8.532453, 47.337715, 8.534581, 47.34071], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.53254, 47.340599], [8.532851, 47.340189], [8.532864, 47.340128], [8.532969, 47.339854], [8.533285, 47.339352], [8.533484, 47.338919], [8.533662, 47.338666], [8.534158, 47.338157], [8.534559, 47.337787], [8.534581, 47.337715]]], "type": "MultiLineString"}, "id": "3303", "properties": {}, "type": "Feature"}, {"bbox": [8.540961, 47.372128, 8.541363, 47.372273], "geometry": {"coordinates": [[[8.541363, 47.372273], [8.541043, 47.372241], [8.540989, 47.372157], [8.540961, 47.372128]]], "type": "MultiLineString"}, "id": "3306", "properties": {}, "type": "Feature"}, {"bbox": [8.507589, 47.397638, 8.508116, 47.3981], "geometry": {"coordinates": [[[8.507589, 47.397638], [8.507689, 47.397702], [8.508116, 47.3981]]], "type": "MultiLineString"}, "id": "3308", "properties": {}, "type": "Feature"}, {"bbox": [8.53775, 47.412926, 8.538275, 47.416931], "geometry": {"coordinates": [[[8.53775, 47.412926], [8.537874, 47.413668], [8.537893, 47.413786], [8.537966, 47.414378], [8.53802, 47.414821], [8.538022, 47.414839], [8.53805, 47.415064], [8.538074, 47.415263], [8.538107, 47.41553], [8.538152, 47.415913], [8.538218, 47.416462], [8.538275, 47.416931]]], "type": "MultiLineString"}, "id": "3309", "properties": {}, "type": "Feature"}, {"bbox": [8.487015, 47.352622, 8.488552, 47.353951], "geometry": {"coordinates": [[[8.488552, 47.352864], [8.488532, 47.352873], [8.48851, 47.352881], [8.488488, 47.352887], [8.488465, 47.352892], [8.488442, 47.352895], [8.488418, 47.352898], [8.488394, 47.352898], [8.48837, 47.352898], [8.488346, 47.352896], [8.488322, 47.352893], [8.488299, 47.352888], [8.488277, 47.352882], [8.488256, 47.352874], [8.488235, 47.352866], [8.488216, 47.352856], [8.488198, 47.352845], [8.488181, 47.352833], [8.488166, 47.352821], [8.488153, 47.352807], [8.488141, 47.352793], [8.488131, 47.352778], [8.488011, 47.352622], [8.487991, 47.352627], [8.487972, 47.352634], [8.487954, 47.352642], [8.487937, 47.352651], [8.487921, 47.352661], [8.487906, 47.352672], [8.487894, 47.352683], [8.487882, 47.352696], [8.487873, 47.352709], [8.487866, 47.35273], [8.487861, 47.352752], [8.487859, 47.352774], [8.48786, 47.352796], [8.487864, 47.352817], [8.48787, 47.352839], [8.487877, 47.352862], [8.487887, 47.352884], [8.4879, 47.352906], [8.487907, 47.352923], [8.487912, 47.352939], [8.487915, 47.352956], [8.487915, 47.352973], [8.487914, 47.352989], [8.48791, 47.353005], [8.487904, 47.35302], [8.487897, 47.353035], [8.487779, 47.353197], [8.487563, 47.353493], [8.487509, 47.353562], [8.487399, 47.353695], [8.487291, 47.353811], [8.487261, 47.353834], [8.487229, 47.353855], [8.487194, 47.353876], [8.487161, 47.353893], [8.487126, 47.353908], [8.487089, 47.353922], [8.487015, 47.353951]]], "type": "MultiLineString"}, "id": "3314", "properties": {}, "type": "Feature"}, {"bbox": [8.602469, 47.354253, 8.624578, 47.360272], "geometry": {"coordinates": [[[8.602469, 47.359326], [8.602749, 47.359359], [8.603537, 47.359496], [8.60385, 47.359554], [8.604445, 47.359698], [8.604747, 47.35976], [8.604891, 47.359794], [8.604927, 47.359802], [8.604963, 47.35981], [8.604999, 47.359818], [8.605118, 47.359844], [8.605238, 47.359869], [8.605358, 47.359892], [8.605411, 47.359903], [8.605464, 47.359913], [8.605516, 47.359924], [8.605577, 47.359934], [8.605638, 47.359943], [8.6057, 47.359948], [8.60583, 47.359956], [8.60596, 47.359962], [8.606091, 47.359966], [8.606166, 47.35997], [8.606241, 47.359977], [8.606315, 47.359987], [8.60646, 47.360012], [8.606604, 47.360039], [8.606748, 47.360067], [8.606831, 47.360084], [8.606914, 47.3601], [8.606998, 47.360116], [8.60707, 47.360128], [8.607143, 47.36014], [8.607215, 47.360152], [8.607325, 47.360166], [8.607434, 47.360178], [8.607545, 47.360187], [8.607545, 47.360187], [8.608125, 47.360228], [8.608126, 47.360228], [8.608629, 47.360255], [8.609058, 47.360272], [8.609311, 47.360271], [8.610004, 47.360236], [8.610234, 47.360221], [8.610259, 47.360218], [8.61031, 47.360211], [8.610513, 47.360187], [8.61087, 47.360126], [8.61112, 47.360084], [8.611329, 47.360045], [8.61142, 47.360028], [8.611457, 47.360012], [8.612159, 47.359883], [8.612668, 47.359732], [8.612864, 47.359629], [8.612955, 47.359593], [8.613155, 47.359552], [8.613809, 47.359454], [8.614086, 47.3594], [8.614389, 47.359324], [8.614541, 47.359262], [8.614706, 47.359133], [8.614859, 47.359012], [8.615168, 47.358813], [8.615323, 47.358745], [8.615811, 47.358593], [8.615956, 47.358522], [8.616171, 47.358423], [8.616214, 47.358402], [8.616254, 47.35838], [8.616291, 47.358355], [8.616325, 47.358329], [8.616448, 47.358246], [8.616466, 47.358234], [8.616485, 47.358224], [8.616505, 47.358214], [8.616527, 47.358206], [8.616549, 47.3582], [8.616573, 47.358194], [8.616597, 47.35819], [8.616621, 47.358188], [8.616897, 47.358162], [8.616939, 47.35816], [8.616981, 47.358155], [8.617023, 47.358148], [8.617063, 47.358138], [8.617102, 47.358126], [8.61714, 47.358112], [8.617176, 47.358097], [8.617209, 47.358079], [8.617341, 47.358003], [8.617484, 47.357935], [8.617719, 47.357834], [8.618019, 47.357752], [8.618175, 47.357743], [8.618441, 47.357691], [8.618525, 47.357661], [8.618792, 47.357559], [8.618886, 47.357521], [8.618906, 47.357513], [8.618972, 47.357489], [8.619039, 47.357467], [8.619108, 47.357448], [8.619178, 47.357432], [8.61925, 47.357418], [8.619323, 47.357408], [8.619584, 47.357375], [8.619985, 47.357316], [8.619985, 47.357316], [8.620023, 47.357309], [8.620059, 47.3573], [8.620095, 47.357289], [8.620128, 47.357276], [8.620194, 47.357245], [8.620255, 47.357211], [8.620312, 47.357173], [8.620364, 47.357132], [8.620411, 47.357089], [8.62043, 47.357067], [8.620446, 47.357044], [8.62046, 47.35702], [8.620469, 47.356996], [8.620476, 47.356971], [8.620479, 47.356946], [8.620479, 47.35692], [8.620473, 47.356834], [8.620459, 47.356641], [8.620458, 47.356611], [8.620458, 47.35658], [8.62046, 47.35655], [8.62046, 47.356545], [8.620461, 47.35654], [8.620461, 47.356535], [8.620468, 47.356494], [8.62048, 47.356454], [8.620499, 47.356415], [8.620522, 47.356377], [8.62057, 47.356312], [8.62062, 47.356247], [8.620672, 47.356183], [8.62073, 47.35612], [8.620794, 47.35606], [8.620865, 47.356003], [8.62092, 47.355962], [8.620974, 47.35592], [8.621026, 47.355877], [8.621075, 47.355837], [8.621123, 47.355798], [8.621172, 47.355758], [8.621209, 47.355728], [8.621244, 47.355697], [8.621278, 47.355666], [8.621305, 47.355643], [8.621333, 47.355621], [8.621364, 47.355601], [8.621431, 47.355563], [8.621501, 47.355528], [8.621575, 47.355497], [8.62163, 47.355475], [8.621685, 47.355454], [8.62174, 47.355433], [8.621793, 47.355411], [8.621844, 47.355386], [8.621893, 47.35536], [8.621942, 47.355331], [8.621989, 47.355301], [8.622035, 47.35527], [8.62205, 47.35526], [8.622065, 47.355251], [8.622081, 47.355241], [8.622108, 47.355227], [8.622145, 47.355208], [8.622185, 47.355191], [8.622226, 47.355176], [8.622297, 47.355151], [8.622367, 47.355126], [8.622437, 47.3551], [8.622561, 47.355054], [8.622685, 47.355008], [8.622811, 47.354964], [8.622953, 47.354914], [8.623093, 47.354861], [8.623231, 47.354805], [8.6233, 47.354777], [8.623369, 47.35475], [8.623439, 47.354723], [8.623601, 47.354661], [8.623629, 47.35465], [8.623655, 47.354638], [8.62368, 47.354624], [8.623745, 47.354586], [8.623811, 47.354548], [8.623877, 47.354511], [8.623951, 47.354469], [8.624026, 47.354427], [8.6241, 47.354385], [8.624195, 47.354327], [8.624218, 47.354319], [8.624242, 47.354312], [8.624267, 47.354307], [8.624293, 47.354303], [8.624319, 47.354301], [8.624358, 47.354299], [8.624396, 47.354295], [8.624435, 47.35429], [8.624484, 47.354281], [8.624532, 47.354268], [8.624578, 47.354253]]], "type": "MultiLineString"}, "id": "3317", "properties": {}, "type": "Feature"}, {"bbox": [8.505215, 47.406709, 8.506406, 47.407492], "geometry": {"coordinates": [[[8.505517, 47.406709], [8.505586, 47.406804], [8.505448, 47.406848], [8.505496, 47.406856], [8.505543, 47.406866], [8.505589, 47.406879], [8.505598, 47.406882], [8.505606, 47.406886], [8.505613, 47.40689], [8.505621, 47.406895], [8.505627, 47.4069], [8.505633, 47.406906], [8.505638, 47.406912], [8.505642, 47.406918], [8.505645, 47.406924], [8.505648, 47.406931], [8.505649, 47.406937], [8.50565, 47.406944], [8.50565, 47.406951], [8.505649, 47.406958], [8.505647, 47.406964], [8.505644, 47.406971], [8.505641, 47.406977], [8.505636, 47.406983], [8.505631, 47.406989], [8.505625, 47.406995], [8.505619, 47.407], [8.505612, 47.407004], [8.505604, 47.407009], [8.505596, 47.407012], [8.505587, 47.407016], [8.505578, 47.407018], [8.505568, 47.407021], [8.505558, 47.407022], [8.505547, 47.407024], [8.505536, 47.407025], [8.505524, 47.407025], [8.505513, 47.407025], [8.505501, 47.407024], [8.505479, 47.407023], [8.505458, 47.407023], [8.505436, 47.407023], [8.505416, 47.407024], [8.505396, 47.407027], [8.505376, 47.407031], [8.505357, 47.407035], [8.505339, 47.407041], [8.505322, 47.407049], [8.505305, 47.407057], [8.50529, 47.407066], [8.505285, 47.407069], [8.505281, 47.407073], [8.505278, 47.407078], [8.505275, 47.407082], [8.505273, 47.407087], [8.505271, 47.407091], [8.50527, 47.407096], [8.505269, 47.407101], [8.505269, 47.407106], [8.50527, 47.40711], [8.505271, 47.407115], [8.505273, 47.40712], [8.505275, 47.407124], [8.505278, 47.407129], [8.505282, 47.407133], [8.505304, 47.407164], [8.505328, 47.407195], [8.505353, 47.407225], [8.50536, 47.407239], [8.505366, 47.407252], [8.505369, 47.407267], [8.505371, 47.407281], [8.50537, 47.407295], [8.505368, 47.407309], [8.505367, 47.407316], [8.505364, 47.407323], [8.505361, 47.407329], [8.505357, 47.407335], [8.505353, 47.407341], [8.505347, 47.407347], [8.505341, 47.407352], [8.505335, 47.407357], [8.505327, 47.407362], [8.505319, 47.407366], [8.505311, 47.40737], [8.505302, 47.407373], [8.505293, 47.407375], [8.505283, 47.407377], [8.505274, 47.407379], [8.505264, 47.40738], [8.505254, 47.40738], [8.505244, 47.40738], [8.505234, 47.407379], [8.505224, 47.407377], [8.505215, 47.407375], [8.505298, 47.407492], [8.50552, 47.40742], [8.50565, 47.407376], [8.505626, 47.407368], [8.505603, 47.407358], [8.505581, 47.407346], [8.505561, 47.407334], [8.505543, 47.40732], [8.505526, 47.407305], [8.505511, 47.407289], [8.505498, 47.407273], [8.505488, 47.407256], [8.505479, 47.407238], [8.505473, 47.40722], [8.505471, 47.407213], [8.50547, 47.407207], [8.50547, 47.4072], [8.505471, 47.407194], [8.505472, 47.407187], [8.505475, 47.407181], [8.505478, 47.407175], [8.505482, 47.407169], [8.505487, 47.407163], [8.505492, 47.407157], [8.505498, 47.407152], [8.505505, 47.407148], [8.505513, 47.407143], [8.50552, 47.40714], [8.505529, 47.407136], [8.505538, 47.407133], [8.505547, 47.407131], [8.505556, 47.407129], [8.505565, 47.407128], [8.505575, 47.407127], [8.505585, 47.407127], [8.505594, 47.407128], [8.505604, 47.407129], [8.505613, 47.40713], [8.505623, 47.407133], [8.505631, 47.407135], [8.50564, 47.407139], [8.505659, 47.407147], [8.505678, 47.407156], [8.505698, 47.407163], [8.505708, 47.407166], [8.505718, 47.407168], [8.505728, 47.407169], [8.505739, 47.40717], [8.505749, 47.407171], [8.50576, 47.40717], [8.505771, 47.407169], [8.505781, 47.407167], [8.505791, 47.407165], [8.505801, 47.407162], [8.50581, 47.407159], [8.505837, 47.407147], [8.505865, 47.407136], [8.505894, 47.407128], [8.505924, 47.407121], [8.505955, 47.407116], [8.505987, 47.407113], [8.506019, 47.407112], [8.506029, 47.407112], [8.506038, 47.407112], [8.506048, 47.407114], [8.506058, 47.407116], [8.506067, 47.407118], [8.506076, 47.407121], [8.506084, 47.407124], [8.506092, 47.407128], [8.506099, 47.407133], [8.506106, 47.407137], [8.506113, 47.407143], [8.506118, 47.407148], [8.506123, 47.407154], [8.506127, 47.40716], [8.50613, 47.407166], [8.506133, 47.407173], [8.506134, 47.407179], [8.506135, 47.407186], [8.506135, 47.407193], [8.506134, 47.407199], [8.506132, 47.407206], [8.50613, 47.407213], [8.506406, 47.407121], [8.506326, 47.407009], [8.506254, 47.407063], [8.506146, 47.407062], [8.506133, 47.407056], [8.506121, 47.407051], [8.506109, 47.407045], [8.506092, 47.407034], [8.506076, 47.407022], [8.506062, 47.40701], [8.50605, 47.406997], [8.50604, 47.406983], [8.506031, 47.406968], [8.506024, 47.406953], [8.50602, 47.406938], [8.506017, 47.406922], [8.506017, 47.406917], [8.506016, 47.406912], [8.506015, 47.406907], [8.506013, 47.406902], [8.506011, 47.406897], [8.506007, 47.406892], [8.506004, 47.406888], [8.505999, 47.406883], [8.505994, 47.406879], [8.505989, 47.406876], [8.505983, 47.406872], [8.505977, 47.40687], [8.505971, 47.406867], [8.505964, 47.406865], [8.505957, 47.406863], [8.505949, 47.406862], [8.505942, 47.406861], [8.505934, 47.40686], [8.505927, 47.40686], [8.505919, 47.406861], [8.505912, 47.406861], [8.505897, 47.406866], [8.505882, 47.40687], [8.505867, 47.406873], [8.505851, 47.406875], [8.505835, 47.406877], [8.505819, 47.406877], [8.505803, 47.406876], [8.505793, 47.406877], [8.505782, 47.406876], [8.505772, 47.406875], [8.505762, 47.406874], [8.505752, 47.406872], [8.505742, 47.406869], [8.505733, 47.406866], [8.505724, 47.406862], [8.505716, 47.406858], [8.505708, 47.406853], [8.505701, 47.406848], [8.505695, 47.406842], [8.505689, 47.406836], [8.505685, 47.40683], [8.505681, 47.406823], [8.505677, 47.406817], [8.505675, 47.40681], [8.505674, 47.406803], [8.505674, 47.406796], [8.505674, 47.406789], [8.505676, 47.406782], [8.505678, 47.406775], [8.505586, 47.406804]]], "type": "MultiLineString"}, "id": "3318", "properties": {}, "type": "Feature"}, {"bbox": [8.542822, 47.373549, 8.543695, 47.373577], "geometry": {"coordinates": [[[8.542822, 47.373577], [8.543695, 47.373549]]], "type": "MultiLineString"}, "id": "3319", "properties": {}, "type": "Feature"}, {"bbox": [8.533856, 47.412114, 8.534067, 47.413144], "geometry": {"coordinates": [[[8.533856, 47.413144], [8.533916, 47.412912], [8.533972, 47.412618], [8.534067, 47.412114]]], "type": "MultiLineString"}, "id": "3320", "properties": {}, "type": "Feature"}, {"bbox": [8.462792, 47.387695, 8.46804, 47.38901], "geometry": {"coordinates": [[[8.46804, 47.38901], [8.467977, 47.388998], [8.467913, 47.388988], [8.46785, 47.388978], [8.467763, 47.38896], [8.467679, 47.388937], [8.467598, 47.388908], [8.467392, 47.388821], [8.467272, 47.388778], [8.467219, 47.38876], [8.467165, 47.388741], [8.467111, 47.388722], [8.46702, 47.388692], [8.466927, 47.388665], [8.466833, 47.388639], [8.46673, 47.388611], [8.466628, 47.388583], [8.466526, 47.388554], [8.466526, 47.388554], [8.466526, 47.388554], [8.466315, 47.388493], [8.466103, 47.388434], [8.46589, 47.388377], [8.465836, 47.388363], [8.465783, 47.388347], [8.465731, 47.388331], [8.46564, 47.388302], [8.465548, 47.388276], [8.465454, 47.388251], [8.465346, 47.388227], [8.465236, 47.388207], [8.465124, 47.388192], [8.465098, 47.388189], [8.465072, 47.388186], [8.465046, 47.388184], [8.464905, 47.388169], [8.464764, 47.388153], [8.464623, 47.388137], [8.464578, 47.388131], [8.464534, 47.388127], [8.464489, 47.388124], [8.464415, 47.38812], [8.464342, 47.388113], [8.464269, 47.388106], [8.464202, 47.388098], [8.464135, 47.38809], [8.464069, 47.388082], [8.464065, 47.388081], [8.464061, 47.38808], [8.464058, 47.38808], [8.463945, 47.388062], [8.463591, 47.388005], [8.463289, 47.387959], [8.463209, 47.387945], [8.463132, 47.387925], [8.463057, 47.387901], [8.462986, 47.387873], [8.462919, 47.38784], [8.462856, 47.387803], [8.462844, 47.387795], [8.462832, 47.387785], [8.462822, 47.387775], [8.462814, 47.387765], [8.462807, 47.387754], [8.462801, 47.387742], [8.462796, 47.387731], [8.462794, 47.387719], [8.462792, 47.387707], [8.462793, 47.387695]]], "type": "MultiLineString"}, "id": "3325", "properties": {}, "type": "Feature"}, {"bbox": [8.49949, 47.380658, 8.500634, 47.381148], "geometry": {"coordinates": [[[8.500634, 47.380658], [8.49949, 47.381148]]], "type": "MultiLineString"}, "id": "3334", "properties": {}, "type": "Feature"}, {"bbox": [8.551467, 47.401894, 8.551626, 47.401981], "geometry": {"coordinates": [[[8.551467, 47.401981], [8.551491, 47.401975], [8.551626, 47.401894]]], "type": "MultiLineString"}, "id": "3336", "properties": {}, "type": "Feature"}, {"bbox": [8.572782, 47.404068, 8.573182, 47.40416], "geometry": {"coordinates": [[[8.572782, 47.40416], [8.573181, 47.404068], [8.573182, 47.404068]]], "type": "MultiLineString"}, "id": "3337", "properties": {}, "type": "Feature"}, {"bbox": [8.578298, 47.399893, 8.582872, 47.401629], "geometry": {"coordinates": [[[8.578298, 47.401629], [8.578299, 47.401629], [8.578603, 47.401468], [8.578881, 47.401346], [8.579235, 47.401228], [8.579499, 47.401179], [8.579965, 47.401045], [8.581041, 47.400732], [8.581308, 47.400643], [8.581334, 47.400634], [8.582206, 47.40027], [8.582299, 47.400219], [8.582493, 47.400113], [8.582684, 47.400004], [8.582872, 47.399893]]], "type": "MultiLineString"}, "id": "3339", "properties": {}, "type": "Feature"}, {"bbox": [8.570295, 47.368856, 8.570557, 47.370112], "geometry": {"coordinates": [[[8.570435, 47.368856], [8.570433, 47.368863], [8.570432, 47.368871], [8.570431, 47.368879], [8.570431, 47.368885], [8.570431, 47.368891], [8.570431, 47.368897], [8.570452, 47.369163], [8.570451, 47.369169], [8.57045, 47.369174], [8.570448, 47.36918], [8.570445, 47.369185], [8.570442, 47.36919], [8.570438, 47.369195], [8.570433, 47.3692], [8.570428, 47.369205], [8.570422, 47.369209], [8.570416, 47.369213], [8.570409, 47.369216], [8.570402, 47.369219], [8.570395, 47.369222], [8.570389, 47.369225], [8.570383, 47.369228], [8.570378, 47.369232], [8.570373, 47.369236], [8.570369, 47.36924], [8.570365, 47.369245], [8.570362, 47.369249], [8.570359, 47.369254], [8.570357, 47.369259], [8.570356, 47.369264], [8.570355, 47.369269], [8.570355, 47.369274], [8.570355, 47.369298], [8.570351, 47.369321], [8.570344, 47.369343], [8.570335, 47.369366], [8.570324, 47.369388], [8.570309, 47.369409], [8.570304, 47.369417], [8.5703, 47.369426], [8.570297, 47.369436], [8.570295, 47.369445], [8.570295, 47.369454], [8.570296, 47.369464], [8.570298, 47.369473], [8.570301, 47.369482], [8.570306, 47.369491], [8.570312, 47.3695], [8.570319, 47.369508], [8.570326, 47.369515], [8.570335, 47.369523], [8.570358, 47.369565], [8.570353, 47.36961], [8.570316, 47.369704], [8.570313, 47.369719], [8.570312, 47.369735], [8.570312, 47.36975], [8.570315, 47.369766], [8.57032, 47.369781], [8.570326, 47.369796], [8.570335, 47.369811], [8.570346, 47.369825], [8.570358, 47.369838], [8.570372, 47.36985], [8.570384, 47.369863], [8.570394, 47.369876], [8.570403, 47.36989], [8.570534, 47.370096], [8.570536, 47.370099], [8.570538, 47.370101], [8.57054, 47.370103], [8.570543, 47.370105], [8.570546, 47.370107], [8.57055, 47.370109], [8.570553, 47.37011], [8.570557, 47.370112]]], "type": "MultiLineString"}, "id": "3347", "properties": {}, "type": "Feature"}, {"bbox": [8.500511, 47.361637, 8.503118, 47.36282], "geometry": {"coordinates": [[[8.503118, 47.361637], [8.502925, 47.361795], [8.502737, 47.36194], [8.502541, 47.36208], [8.502335, 47.362214], [8.502107, 47.362347], [8.501861, 47.362464], [8.5016, 47.362565], [8.501325, 47.362648], [8.50104, 47.362713], [8.500511, 47.36282]]], "type": "MultiLineString"}, "id": "3355", "properties": {}, "type": "Feature"}, {"bbox": [8.575791, 47.358729, 8.576305, 47.359842], "geometry": {"coordinates": [[[8.575938, 47.358729], [8.57587, 47.358901], [8.575805, 47.359073], [8.575795, 47.359125], [8.575791, 47.359178], [8.575795, 47.35923], [8.575806, 47.359282], [8.575824, 47.359333], [8.575848, 47.359383], [8.575869, 47.359407], [8.575893, 47.359429], [8.575919, 47.35945], [8.575949, 47.359469], [8.57598, 47.359487], [8.576014, 47.359502], [8.576305, 47.359598], [8.576138, 47.359842]]], "type": "MultiLineString"}, "id": "3358", "properties": {}, "type": "Feature"}, {"bbox": [8.582983, 47.389279, 8.586206, 47.392786], "geometry": {"coordinates": [[[8.582983, 47.389279], [8.58309, 47.389354], [8.583137, 47.389387], [8.583166, 47.389408], [8.583193, 47.389431], [8.583217, 47.389455], [8.583237, 47.389481], [8.583253, 47.389508], [8.583266, 47.389536], [8.583704, 47.390601], [8.583896, 47.391068], [8.584053, 47.391407], [8.584127, 47.391557], [8.584246, 47.391745], [8.584332, 47.391868], [8.58435, 47.391897], [8.584372, 47.391925], [8.584397, 47.391952], [8.584426, 47.391976], [8.584457, 47.392], [8.584492, 47.392021], [8.584529, 47.39204], [8.584654, 47.392102], [8.584831, 47.39219], [8.58542, 47.392488], [8.585753, 47.392643], [8.585775, 47.392652], [8.586206, 47.392786]]], "type": "MultiLineString"}, "id": "3359", "properties": {}, "type": "Feature"}, {"bbox": [8.479805, 47.410455, 8.480574, 47.411418], "geometry": {"coordinates": [[[8.480574, 47.411418], [8.480435, 47.411207], [8.480387, 47.411125], [8.480345, 47.411041], [8.480311, 47.410956], [8.480269, 47.410872], [8.480216, 47.410792], [8.480153, 47.410715], [8.480079, 47.410642], [8.479996, 47.410574], [8.479905, 47.410512], [8.479805, 47.410455]]], "type": "MultiLineString"}, "id": "3388", "properties": {}, "type": "Feature"}, {"bbox": [8.504597, 47.39733, 8.505226, 47.397857], "geometry": {"coordinates": [[[8.504597, 47.39733], [8.504882, 47.397573], [8.505181, 47.397811], [8.505197, 47.397826], [8.505212, 47.397842], [8.505226, 47.397857]]], "type": "MultiLineString"}, "id": "3389", "properties": {}, "type": "Feature"}, {"bbox": [8.505119, 47.394043, 8.505301, 47.394632], "geometry": {"coordinates": [[[8.505301, 47.394632], [8.505119, 47.394126], [8.505119, 47.394115], [8.50512, 47.394104], [8.505122, 47.394093], [8.505125, 47.394083], [8.505131, 47.394072], [8.505137, 47.394062], [8.505145, 47.394052], [8.505154, 47.394043]]], "type": "MultiLineString"}, "id": "3390", "properties": {}, "type": "Feature"}, {"bbox": [8.589513, 47.383721, 8.590674, 47.386704], "geometry": {"coordinates": [[[8.589513, 47.383721], [8.589575, 47.383842], [8.589658, 47.384002], [8.589714, 47.384136], [8.589769, 47.384269], [8.589824, 47.384403], [8.589889, 47.384555], [8.589953, 47.384707], [8.590017, 47.384859], [8.590073, 47.384993], [8.590127, 47.385127], [8.59018, 47.385261], [8.590219, 47.385386], [8.59026, 47.385509], [8.590305, 47.385633], [8.59035, 47.38576], [8.590395, 47.385887], [8.59044, 47.386014], [8.590478, 47.386124], [8.59052, 47.386234], [8.590566, 47.386344], [8.590615, 47.386462], [8.590651, 47.386582], [8.590674, 47.386704]]], "type": "MultiLineString"}, "id": "3391", "properties": {}, "type": "Feature"}, {"bbox": [8.476063, 47.381272, 8.477202, 47.382082], "geometry": {"coordinates": [[[8.476063, 47.382082], [8.476434, 47.381838], [8.476799, 47.38159], [8.477157, 47.381337], [8.477166, 47.381331], [8.477173, 47.381325], [8.47718, 47.381318], [8.477186, 47.381311], [8.477191, 47.381304], [8.477195, 47.381296], [8.477198, 47.381288], [8.4772, 47.38128], [8.477202, 47.381272]]], "type": "MultiLineString"}, "id": "3392", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.357782, 8.594282, 47.35958], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593427, 47.359313], [8.593462, 47.359108], [8.593496, 47.359001], [8.593616, 47.358761], [8.593815, 47.35832], [8.593854, 47.358247], [8.593901, 47.358175], [8.593954, 47.358106], [8.593994, 47.358066], [8.594036, 47.358027], [8.594082, 47.35799], [8.594126, 47.357957], [8.594167, 47.357922], [8.594205, 47.357885], [8.594232, 47.357851], [8.594258, 47.357817], [8.594282, 47.357782]]], "type": "MultiLineString"}, "id": "3393", "properties": {}, "type": "Feature"}, {"bbox": [8.571072, 47.41145, 8.572687, 47.4117], "geometry": {"coordinates": [[[8.571072, 47.41145], [8.571307, 47.41147], [8.571763, 47.411512], [8.571841, 47.41152], [8.571958, 47.411529], [8.572077, 47.411535], [8.572293, 47.411532], [8.572316, 47.41153], [8.572338, 47.41153], [8.572361, 47.411532], [8.572384, 47.411534], [8.572406, 47.411538], [8.572427, 47.411543], [8.572448, 47.41155], [8.572468, 47.411557], [8.572487, 47.411566], [8.572505, 47.411576], [8.572521, 47.411586], [8.572537, 47.411598], [8.572687, 47.4117]]], "type": "MultiLineString"}, "id": "3394", "properties": {}, "type": "Feature"}, {"bbox": [8.508364, 47.424794, 8.508732, 47.425937], "geometry": {"coordinates": [[[8.50871, 47.424794], [8.508722, 47.424853], [8.508729, 47.424912], [8.508732, 47.424972], [8.508711, 47.425123], [8.508689, 47.425275], [8.508666, 47.425426], [8.508649, 47.425489], [8.508625, 47.425551], [8.508592, 47.425612], [8.508553, 47.42567], [8.508506, 47.425726], [8.508452, 47.425779], [8.508392, 47.425828], [8.508384, 47.425841], [8.508376, 47.425854], [8.508371, 47.425868], [8.508367, 47.425881], [8.508365, 47.425895], [8.508364, 47.425909], [8.508366, 47.425923], [8.508369, 47.425937]]], "type": "MultiLineString"}, "id": "3395", "properties": {}, "type": "Feature"}, {"bbox": [8.477084, 47.407616, 8.47799, 47.407939], "geometry": {"coordinates": [[[8.47799, 47.407881], [8.47798, 47.407877], [8.47797, 47.407875], [8.47796, 47.407873], [8.477949, 47.407872], [8.477939, 47.407871], [8.477928, 47.407871], [8.477917, 47.407871], [8.477907, 47.407873], [8.477867, 47.407887], [8.477829, 47.407904], [8.477794, 47.407923], [8.477787, 47.407926], [8.47778, 47.40793], [8.477773, 47.407932], [8.477765, 47.407934], [8.477758, 47.407936], [8.477749, 47.407937], [8.477741, 47.407938], [8.477733, 47.407939], [8.477725, 47.407938], [8.477716, 47.407938], [8.477708, 47.407937], [8.4777, 47.407935], [8.477692, 47.407933], [8.477685, 47.407931], [8.477678, 47.407928], [8.477671, 47.407924], [8.477665, 47.407921], [8.477659, 47.407916], [8.477654, 47.407912], [8.477649, 47.407907], [8.477645, 47.407902], [8.477642, 47.407897], [8.477639, 47.407892], [8.477637, 47.407886], [8.477636, 47.407881], [8.477635, 47.407875], [8.477635, 47.407869], [8.477636, 47.407864], [8.477644, 47.407837], [8.477654, 47.40781], [8.477666, 47.407784], [8.477672, 47.407772], [8.477676, 47.40776], [8.477679, 47.407748], [8.47768, 47.407736], [8.477679, 47.407723], [8.477677, 47.407711], [8.477673, 47.407699], [8.477668, 47.407687], [8.477662, 47.40768], [8.477655, 47.407674], [8.477648, 47.407669], [8.477639, 47.407663], [8.47763, 47.407659], [8.477621, 47.407654], [8.477611, 47.407651], [8.4776, 47.407648], [8.477589, 47.407646], [8.477578, 47.407644], [8.477567, 47.407643], [8.477555, 47.407643], [8.477202, 47.407671], [8.477191, 47.407671], [8.47718, 47.40767], [8.477169, 47.407668], [8.477159, 47.407666], [8.477149, 47.407663], [8.477139, 47.40766], [8.47713, 47.407656], [8.477121, 47.407652], [8.477113, 47.407647], [8.477106, 47.407641], [8.477099, 47.407635], [8.477093, 47.407629], [8.477088, 47.407623], [8.477084, 47.407616]]], "type": "MultiLineString"}, "id": "3396", "properties": {}, "type": "Feature"}, {"bbox": [8.590258, 47.368885, 8.59885, 47.372495], "geometry": {"coordinates": [[[8.590258, 47.372495], [8.59033, 47.372447], [8.590579, 47.372338], [8.590592, 47.372332], [8.590605, 47.372325], [8.590617, 47.372317], [8.590627, 47.372309], [8.590637, 47.3723], [8.590645, 47.37229], [8.590652, 47.37228], [8.590658, 47.37227], [8.590662, 47.372259], [8.590666, 47.372248], [8.590667, 47.372237], [8.590668, 47.372226], [8.590667, 47.372215], [8.590664, 47.372204], [8.590661, 47.372193], [8.590698, 47.372119], [8.590726, 47.37207], [8.590759, 47.372023], [8.590799, 47.371978], [8.590843, 47.371936], [8.590893, 47.371896], [8.590947, 47.371858], [8.591407, 47.371568], [8.591461, 47.371537], [8.591518, 47.371508], [8.591579, 47.371484], [8.591642, 47.371462], [8.591708, 47.371445], [8.591776, 47.371431], [8.591845, 47.371421], [8.593472, 47.371234], [8.593613, 47.371222], [8.593754, 47.371217], [8.593896, 47.371219], [8.593951, 47.371221], [8.594702, 47.371253], [8.594926, 47.371258], [8.595149, 47.371256], [8.595373, 47.371246], [8.596398, 47.371182], [8.596444, 47.371178], [8.596491, 47.371173], [8.596537, 47.371167], [8.596593, 47.371158], [8.596647, 47.371146], [8.596701, 47.371134], [8.598089, 47.370771], [8.59814, 47.370755], [8.598189, 47.370737], [8.598236, 47.370715], [8.598279, 47.370691], [8.598319, 47.370664], [8.598355, 47.370635], [8.598387, 47.370604], [8.598414, 47.37057], [8.598579, 47.370348], [8.598745, 47.370099], [8.598782, 47.370036], [8.598812, 47.369971], [8.598834, 47.369905], [8.598848, 47.369838], [8.59885, 47.369812], [8.598849, 47.369787], [8.598844, 47.369762], [8.598836, 47.369737], [8.598825, 47.369713], [8.59881, 47.36969], [8.598792, 47.369667], [8.598772, 47.369646], [8.598724, 47.369606], [8.598671, 47.369568], [8.598613, 47.369535], [8.598551, 47.369505], [8.598485, 47.369479], [8.598415, 47.369457], [8.598297, 47.369425], [8.598096, 47.369373], [8.597892, 47.369326], [8.597685, 47.369286], [8.596881, 47.369141], [8.596678, 47.369101], [8.596477, 47.369058], [8.596278, 47.369009], [8.595795, 47.368885]]], "type": "MultiLineString"}, "id": "3398", "properties": {}, "type": "Feature"}, {"bbox": [8.544419, 47.370156, 8.54488, 47.370656], "geometry": {"coordinates": [[[8.544419, 47.370653], [8.544459, 47.370656], [8.544514, 47.370485], [8.544521, 47.37045], [8.544533, 47.370415], [8.544549, 47.370381], [8.544569, 47.370348], [8.544593, 47.370317], [8.544621, 47.370286], [8.544799, 47.370204], [8.544844, 47.370211], [8.54488, 47.370199], [8.544819, 47.370156]]], "type": "MultiLineString"}, "id": "3400", "properties": {}, "type": "Feature"}, {"bbox": [8.501752, 47.41312, 8.50404, 47.417857], "geometry": {"coordinates": [[[8.50404, 47.417857], [8.50402, 47.417816], [8.503971, 47.417771], [8.50388, 47.417711], [8.503596, 47.417586], [8.503282, 47.417361], [8.503344, 47.417248], [8.503462, 47.417004], [8.50347, 47.416934], [8.503432, 47.416871], [8.503295, 47.416712], [8.50309, 47.416534], [8.50287, 47.416367], [8.502767, 47.416259], [8.502598, 47.415975], [8.502552, 47.415873], [8.502489, 47.415787], [8.502309, 47.415495], [8.502252, 47.415325], [8.502181, 47.415045], [8.502077, 47.414858], [8.501876, 47.414362], [8.501814, 47.414162], [8.501797, 47.413926], [8.501752, 47.413634], [8.501754, 47.413506], [8.501809, 47.413381], [8.501806, 47.413267], [8.501922, 47.413139], [8.501972, 47.41312]]], "type": "MultiLineString"}, "id": "3419", "properties": {}, "type": "Feature"}, {"bbox": [8.604747, 47.358325, 8.619717, 47.359999], "geometry": {"coordinates": [[[8.604747, 47.35976], [8.604847, 47.359676], [8.604862, 47.359665], [8.604879, 47.359654], [8.604897, 47.359645], [8.604929, 47.359628], [8.60496, 47.359611], [8.604991, 47.359593], [8.605054, 47.359556], [8.605119, 47.359523], [8.605188, 47.359491], [8.605269, 47.359459], [8.605354, 47.359432], [8.605443, 47.35941], [8.605515, 47.359395], [8.605587, 47.359381], [8.605659, 47.359367], [8.605699, 47.35936], [8.60574, 47.359353], [8.60578, 47.359347], [8.605903, 47.359329], [8.606027, 47.359311], [8.60615, 47.359292], [8.606315, 47.359267], [8.60648, 47.35924], [8.606645, 47.359213], [8.606818, 47.359184], [8.606991, 47.359157], [8.607165, 47.359131], [8.607165, 47.359131], [8.607165, 47.359131], [8.607271, 47.359117], [8.607376, 47.359101], [8.607481, 47.359084], [8.607562, 47.35907], [8.607642, 47.359054], [8.607722, 47.359037], [8.607813, 47.359017], [8.607904, 47.359], [8.607997, 47.358983], [8.608092, 47.358969], [8.608189, 47.358957], [8.608286, 47.358949], [8.608368, 47.358944], [8.60845, 47.35894], [8.608532, 47.358937], [8.608623, 47.358934], [8.608714, 47.358929], [8.608804, 47.358923], [8.60894, 47.358912], [8.609075, 47.358902], [8.60921, 47.358892], [8.609279, 47.358887], [8.609348, 47.35888], [8.609416, 47.35887], [8.609485, 47.358861], [8.609553, 47.358851], [8.609622, 47.358841], [8.609678, 47.358832], [8.609734, 47.35882], [8.609788, 47.358805], [8.609898, 47.358775], [8.609952, 47.358759], [8.610008, 47.358747], [8.610065, 47.358738], [8.610122, 47.358732], [8.610181, 47.358729], [8.610411, 47.35871], [8.610538, 47.358709], [8.610664, 47.358714], [8.610789, 47.358723], [8.610952, 47.358727], [8.611116, 47.358719], [8.611277, 47.358701], [8.611541, 47.358666], [8.611599, 47.358656], [8.611655, 47.358643], [8.61171, 47.358627], [8.611762, 47.358608], [8.611812, 47.358587], [8.611901, 47.358553], [8.611991, 47.358521], [8.612083, 47.358492], [8.612167, 47.358474], [8.612253, 47.358461], [8.61234, 47.358452], [8.612428, 47.358448], [8.612516, 47.358449], [8.612565, 47.358451], [8.612614, 47.358451], [8.612663, 47.358451], [8.612714, 47.35845], [8.612766, 47.358448], [8.612817, 47.358444], [8.612876, 47.358438], [8.612934, 47.358429], [8.612992, 47.358419], [8.612992, 47.358419], [8.613163, 47.358386], [8.613351, 47.358353], [8.613351, 47.358353], [8.61341, 47.358344], [8.613469, 47.358337], [8.613528, 47.358331], [8.613548, 47.35833], [8.613568, 47.358328], [8.613588, 47.358327], [8.613668, 47.358325], [8.613748, 47.358326], [8.613828, 47.358331], [8.613828, 47.358331], [8.614018, 47.358346], [8.614061, 47.358351], [8.614196, 47.358366], [8.614346, 47.358397], [8.614395, 47.358406], [8.614444, 47.358413], [8.614494, 47.358418], [8.614545, 47.358421], [8.614595, 47.358421], [8.614645, 47.358419], [8.614646, 47.358419], [8.614936, 47.358405], [8.615047, 47.358403], [8.615158, 47.358408], [8.615269, 47.358419], [8.615956, 47.358522], [8.616098, 47.35864], [8.616117, 47.358655], [8.616136, 47.358671], [8.616155, 47.358686], [8.616156, 47.358687], [8.6165, 47.35901], [8.617207, 47.359718], [8.617242, 47.359753], [8.617278, 47.359787], [8.617315, 47.359821], [8.617353, 47.359851], [8.617394, 47.359879], [8.617438, 47.359905], [8.617486, 47.359927], [8.617536, 47.359947], [8.617589, 47.359964], [8.617642, 47.359977], [8.617698, 47.359988], [8.617754, 47.359995], [8.617811, 47.359998], [8.617868, 47.359999], [8.618, 47.359992], [8.61813, 47.359979], [8.618259, 47.35996], [8.618342, 47.359944], [8.618423, 47.359922], [8.618502, 47.359897], [8.618577, 47.359867], [8.618648, 47.359833], [8.618777, 47.359771], [8.618912, 47.359715], [8.619052, 47.359665], [8.619213, 47.359612], [8.619373, 47.359558], [8.619533, 47.359503], [8.61955, 47.359497], [8.619568, 47.359492], [8.619587, 47.359488], [8.619717, 47.359462]]], "type": "MultiLineString"}, "id": "3423", "properties": {}, "type": "Feature"}, {"bbox": [8.557666, 47.384317, 8.560818, 47.386425], "geometry": {"coordinates": [[[8.557666, 47.384317], [8.557723, 47.384343], [8.557807, 47.384381], [8.557901, 47.384451], [8.558537, 47.384937], [8.558636, 47.38501], [8.559577, 47.385701], [8.560021, 47.385996], [8.560241, 47.386139], [8.560523, 47.386296], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "3425", "properties": {}, "type": "Feature"}, {"bbox": [8.538961, 47.402677, 8.539851, 47.403066], "geometry": {"coordinates": [[[8.539851, 47.402677], [8.53983, 47.402694], [8.539741, 47.402767], [8.539703, 47.402799], [8.539701, 47.4028], [8.539698, 47.402802], [8.539696, 47.402803], [8.539693, 47.402804], [8.53969, 47.402805], [8.539688, 47.402806], [8.539685, 47.402806], [8.539682, 47.402807], [8.539679, 47.402807], [8.539676, 47.402807], [8.539673, 47.402807], [8.53967, 47.402807], [8.539667, 47.402807], [8.53937, 47.402767], [8.539287, 47.402757], [8.539277, 47.402756], [8.539267, 47.402755], [8.539257, 47.402755], [8.539247, 47.402756], [8.539237, 47.402757], [8.539227, 47.402759], [8.539218, 47.402761], [8.539206, 47.402765], [8.539194, 47.40277], [8.539184, 47.402775], [8.539174, 47.402781], [8.539165, 47.402787], [8.539156, 47.402794], [8.539149, 47.402802], [8.539143, 47.40281], [8.539084, 47.402896], [8.539023, 47.402981], [8.538961, 47.403066]]], "type": "MultiLineString"}, "id": "3437", "properties": {}, "type": "Feature"}, {"bbox": [8.527901, 47.426658, 8.535054, 47.4324], "geometry": {"coordinates": [[[8.535054, 47.426658], [8.534878, 47.426722], [8.534, 47.427037], [8.534, 47.427037], [8.534, 47.427037], [8.533872, 47.427093], [8.533747, 47.427151], [8.533625, 47.427212], [8.533575, 47.427239], [8.533525, 47.427266], [8.533476, 47.427293], [8.533368, 47.427351], [8.53326, 47.427408], [8.533151, 47.427464], [8.532996, 47.427543], [8.532838, 47.427619], [8.532677, 47.427692], [8.532629, 47.427712], [8.53258, 47.42773], [8.532529, 47.427747], [8.531766, 47.428013], [8.531672, 47.428039], [8.531576, 47.42806], [8.531477, 47.428074], [8.531376, 47.428083], [8.531376, 47.428083], [8.531376, 47.428083], [8.531261, 47.428091], [8.531145, 47.428096], [8.531029, 47.428099], [8.530679, 47.428096], [8.530594, 47.428095], [8.530511, 47.428095], [8.530429, 47.428098], [8.530347, 47.428103], [8.530132, 47.428132], [8.530077, 47.42814], [8.530025, 47.428153], [8.529974, 47.428169], [8.529925, 47.428188], [8.5299, 47.428199], [8.529876, 47.428212], [8.529853, 47.428225], [8.529219, 47.428607], [8.528848, 47.428866], [8.52839, 47.429234], [8.528066, 47.429514], [8.528027, 47.42955], [8.527994, 47.429589], [8.527965, 47.429629], [8.527941, 47.429671], [8.527923, 47.429713], [8.52791, 47.429757], [8.527903, 47.429802], [8.527901, 47.429846], [8.527905, 47.429891], [8.527926, 47.430031], [8.527969, 47.430294], [8.528119, 47.4311], [8.528141, 47.431215], [8.52864, 47.4324]]], "type": "MultiLineString"}, "id": "3439", "properties": {}, "type": "Feature"}, {"bbox": [8.547492, 47.365792, 8.547513, 47.365829], "geometry": {"coordinates": [[[8.547513, 47.365792], [8.547492, 47.365829]]], "type": "MultiLineString"}, "id": "3440", "properties": {}, "type": "Feature"}, {"bbox": [8.543843, 47.367959, 8.545325, 47.369268], "geometry": {"coordinates": [[[8.545325, 47.367959], [8.545073, 47.368196], [8.544858, 47.368386], [8.544737, 47.36851], [8.54466, 47.368593], [8.544393, 47.368831], [8.544198, 47.36896], [8.544084, 47.369061], [8.543923, 47.369199], [8.543843, 47.369268]]], "type": "MultiLineString"}, "id": "3441", "properties": {}, "type": "Feature"}, {"bbox": [8.505718, 47.401846, 8.5073, 47.402768], "geometry": {"coordinates": [[[8.505718, 47.401846], [8.505775, 47.401881], [8.506394, 47.402163], [8.50649, 47.402106], [8.506485, 47.402158], [8.506485, 47.402171], [8.506487, 47.402184], [8.506491, 47.402197], [8.506496, 47.40221], [8.50652, 47.402256], [8.506583, 47.402366], [8.506588, 47.402376], [8.506591, 47.402387], [8.506593, 47.402398], [8.506593, 47.402409], [8.506592, 47.40242], [8.506565, 47.402533], [8.506565, 47.402534], [8.506565, 47.402536], [8.506565, 47.402537], [8.506566, 47.402539], [8.506566, 47.40254], [8.506567, 47.402541], [8.506568, 47.402543], [8.506569, 47.402544], [8.506571, 47.402545], [8.506572, 47.402546], [8.506574, 47.402547], [8.506576, 47.402548], [8.506577, 47.402549], [8.506579, 47.402549], [8.506581, 47.40255], [8.506583, 47.40255], [8.506586, 47.402551], [8.506588, 47.402551], [8.50659, 47.402551], [8.506592, 47.402551], [8.506594, 47.40255], [8.506596, 47.40255], [8.506598, 47.40255], [8.506693, 47.402528], [8.506714, 47.402535], [8.506764, 47.402554], [8.507169, 47.402716], [8.5073, 47.402768]]], "type": "MultiLineString"}, "id": "3452", "properties": {}, "type": "Feature"}, {"bbox": [8.537743, 47.373876, 8.538049, 47.374685], "geometry": {"coordinates": [[[8.538049, 47.373876], [8.537983, 47.374035], [8.537743, 47.374685]]], "type": "MultiLineString"}, "id": "3453", "properties": {}, "type": "Feature"}, {"bbox": [8.537369, 47.408883, 8.538233, 47.409405], "geometry": {"coordinates": [[[8.537369, 47.40896], [8.537683, 47.408885], [8.537694, 47.408883], [8.537705, 47.408883], [8.537716, 47.408883], [8.537726, 47.408883], [8.537737, 47.408885], [8.537748, 47.408887], [8.537758, 47.408889], [8.537768, 47.408893], [8.537778, 47.408896], [8.537786, 47.408901], [8.537795, 47.408906], [8.537802, 47.408911], [8.537809, 47.408917], [8.537816, 47.408923], [8.537821, 47.408929], [8.538129, 47.40937], [8.538233, 47.409405]]], "type": "MultiLineString"}, "id": "3467", "properties": {}, "type": "Feature"}, {"bbox": [8.591631, 47.406006, 8.597235, 47.40656], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.591912, 47.406524], [8.591967, 47.406535], [8.59256, 47.40649], [8.593677, 47.406379], [8.595715, 47.406165], [8.595735, 47.406164], [8.595755, 47.406161], [8.595775, 47.406158], [8.595794, 47.406153], [8.595812, 47.406146], [8.595829, 47.406139], [8.595846, 47.406131], [8.595861, 47.406122], [8.595875, 47.406112], [8.596055, 47.406129], [8.597235, 47.406006]]], "type": "MultiLineString"}, "id": "3468", "properties": {}, "type": "Feature"}, {"bbox": [8.540661, 47.405542, 8.541269, 47.406404], "geometry": {"coordinates": [[[8.540698, 47.405542], [8.54069, 47.40555], [8.540682, 47.405559], [8.540676, 47.405568], [8.54067, 47.405577], [8.540666, 47.405587], [8.540663, 47.405597], [8.540662, 47.405607], [8.540661, 47.405617], [8.540662, 47.405627], [8.540665, 47.405637], [8.540735, 47.405715], [8.540799, 47.405797], [8.540856, 47.40588], [8.540933, 47.406009], [8.541074, 47.406202], [8.541219, 47.406367], [8.541269, 47.406404]]], "type": "MultiLineString"}, "id": "3469", "properties": {}, "type": "Feature"}, {"bbox": [8.550457, 47.427521, 8.550835, 47.428243], "geometry": {"coordinates": [[[8.550814, 47.427521], [8.550835, 47.42764], [8.5507, 47.428015], [8.550692, 47.428034], [8.550682, 47.428051], [8.55067, 47.428069], [8.550656, 47.428085], [8.550639, 47.4281], [8.550457, 47.428243]]], "type": "MultiLineString"}, "id": "3470", "properties": {}, "type": "Feature"}, {"bbox": [8.514711, 47.42518, 8.517218, 47.426204], "geometry": {"coordinates": [[[8.517216, 47.425237], [8.517217, 47.425231], [8.517218, 47.425224], [8.517218, 47.425218], [8.517217, 47.425211], [8.517215, 47.425205], [8.517213, 47.425198], [8.51721, 47.425192], [8.517207, 47.42519], [8.517203, 47.425188], [8.5172, 47.425186], [8.517196, 47.425184], [8.517192, 47.425183], [8.517188, 47.425182], [8.517184, 47.425181], [8.517179, 47.42518], [8.517175, 47.42518], [8.517171, 47.42518], [8.517166, 47.42518], [8.517162, 47.42518], [8.517157, 47.425181], [8.516634, 47.425224], [8.516484, 47.425242], [8.516338, 47.425268], [8.516195, 47.425303], [8.516058, 47.425347], [8.515891, 47.425412], [8.51573, 47.425484], [8.515577, 47.425563], [8.515422, 47.425652], [8.515278, 47.425748], [8.515144, 47.42585], [8.515001, 47.425969], [8.514857, 47.426087], [8.514711, 47.426204]]], "type": "MultiLineString"}, "id": "3471", "properties": {}, "type": "Feature"}, {"bbox": [8.588413, 47.382455, 8.591864, 47.382719], "geometry": {"coordinates": [[[8.588413, 47.382492], [8.58848, 47.3825], [8.588547, 47.382508], [8.588614, 47.382514], [8.588676, 47.382524], [8.588736, 47.382537], [8.588794, 47.382553], [8.588849, 47.382567], [8.588906, 47.382578], [8.588963, 47.382585], [8.589022, 47.382589], [8.589081, 47.38259], [8.589472, 47.382576], [8.590162, 47.382536], [8.590477, 47.382513], [8.591041, 47.382476], [8.591393, 47.382456], [8.591411, 47.382455], [8.591429, 47.382455], [8.591447, 47.382457], [8.591464, 47.382459], [8.591482, 47.382463], [8.591498, 47.382467], [8.591514, 47.382473], [8.59153, 47.382479], [8.591544, 47.382487], [8.591557, 47.382495], [8.59157, 47.382504], [8.591581, 47.382513], [8.591864, 47.382719]]], "type": "MultiLineString"}, "id": "3472", "properties": {}, "type": "Feature"}, {"bbox": [8.545772, 47.420897, 8.546108, 47.421682], "geometry": {"coordinates": [[[8.546108, 47.420897], [8.545967, 47.421243], [8.545775, 47.421608], [8.545773, 47.421618], [8.545772, 47.421627], [8.545772, 47.421637], [8.545774, 47.421646], [8.545777, 47.421656], [8.545781, 47.421665], [8.545786, 47.421674], [8.545792, 47.421682]]], "type": "MultiLineString"}, "id": "3473", "properties": {}, "type": "Feature"}, {"bbox": [8.571958, 47.413339, 8.572267, 47.413738], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.572247, 47.413382], [8.572155, 47.413339], [8.572044, 47.413353], [8.571982, 47.413417], [8.571958, 47.413738]]], "type": "MultiLineString"}, "id": "3474", "properties": {}, "type": "Feature"}, {"bbox": [8.529425, 47.34559, 8.530341, 47.345705], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529514, 47.345633], [8.529868, 47.345698], [8.529914, 47.345703], [8.529961, 47.345705], [8.530008, 47.345703], [8.530055, 47.345699], [8.530101, 47.345693], [8.530146, 47.345683], [8.530189, 47.345671], [8.530231, 47.345656], [8.53027, 47.345638], [8.530307, 47.345619], [8.530341, 47.345597]]], "type": "MultiLineString"}, "id": "3476", "properties": {}, "type": "Feature"}, {"bbox": [8.536021, 47.340516, 8.537323, 47.341287], "geometry": {"coordinates": [[[8.537323, 47.34061], [8.537006, 47.340516], [8.536948, 47.340521], [8.536591, 47.340902], [8.536097, 47.341287], [8.536021, 47.341271]]], "type": "MultiLineString"}, "id": "3484", "properties": {}, "type": "Feature"}, {"bbox": [8.518519, 47.412849, 8.520969, 47.413656], "geometry": {"coordinates": [[[8.520969, 47.412849], [8.520758, 47.41296], [8.520544, 47.41307], [8.520327, 47.413177], [8.51979, 47.413454], [8.51975, 47.413473], [8.519707, 47.413489], [8.519662, 47.413503], [8.519615, 47.413513], [8.519567, 47.413521], [8.519518, 47.413526], [8.518879, 47.413557], [8.518519, 47.413656]]], "type": "MultiLineString"}, "id": "3485", "properties": {}, "type": "Feature"}, {"bbox": [8.509561, 47.396852, 8.510472, 47.398055], "geometry": {"coordinates": [[[8.509561, 47.396852], [8.50974, 47.397128], [8.509912, 47.397076], [8.510084, 47.397386], [8.510183, 47.39756], [8.510472, 47.398055]]], "type": "MultiLineString"}, "id": "3486", "properties": {}, "type": "Feature"}, {"bbox": [8.505763, 47.402535, 8.506714, 47.403859], "geometry": {"coordinates": [[[8.506714, 47.402535], [8.506585, 47.402697], [8.506301, 47.403006], [8.506253, 47.403061], [8.506209, 47.403118], [8.506169, 47.403176], [8.50607, 47.403399], [8.505808, 47.403713], [8.505794, 47.403733], [8.505783, 47.403753], [8.505774, 47.403773], [8.505768, 47.403794], [8.505764, 47.403816], [8.505763, 47.403837], [8.505765, 47.403859]]], "type": "MultiLineString"}, "id": "3487", "properties": {}, "type": "Feature"}, {"bbox": [8.496797, 47.345478, 8.504505, 47.350896], "geometry": {"coordinates": [[[8.496807, 47.346287], [8.496797, 47.346262], [8.497033, 47.346007], [8.497331, 47.345812], [8.49777, 47.345652], [8.49794, 47.345566], [8.498122, 47.345511], [8.498716, 47.345478], [8.499035, 47.345582], [8.499231, 47.345667], [8.499307, 47.345704], [8.499857, 47.345802], [8.500068, 47.34579], [8.500189, 47.345869], [8.500255, 47.345955], [8.500253, 47.346062], [8.500386, 47.34615], [8.500585, 47.346208], [8.500721, 47.346228], [8.500788, 47.346305], [8.500809, 47.34635], [8.500966, 47.346401], [8.500997, 47.346444], [8.501086, 47.346404], [8.501151, 47.346352], [8.501123, 47.346489], [8.501141, 47.346546], [8.50118, 47.346637], [8.501271, 47.34675], [8.501291, 47.346833], [8.501558, 47.346951], [8.501588, 47.347093], [8.501853, 47.347209], [8.501879, 47.347239], [8.501835, 47.347286], [8.501987, 47.347608], [8.502042, 47.347749], [8.502145, 47.347825], [8.502286, 47.347884], [8.50248, 47.348062], [8.502626, 47.348171], [8.502692, 47.34826], [8.502793, 47.348308], [8.502863, 47.348373], [8.502923, 47.348414], [8.503029, 47.348522], [8.503142, 47.348618], [8.503116, 47.3487], [8.503135, 47.34871], [8.503363, 47.348653], [8.503404, 47.348743], [8.503396, 47.348845], [8.503361, 47.348976], [8.503288, 47.349101], [8.503235, 47.349139], [8.503124, 47.349127], [8.503163, 47.349195], [8.503298, 47.34926], [8.503299, 47.349262], [8.5033, 47.349263], [8.503301, 47.349265], [8.503302, 47.349267], [8.503303, 47.349269], [8.503303, 47.34927], [8.503303, 47.349272], [8.503303, 47.349274], [8.503303, 47.349276], [8.503302, 47.349278], [8.503302, 47.349279], [8.503301, 47.349281], [8.503299, 47.349283], [8.503298, 47.349284], [8.503296, 47.349286], [8.503294, 47.349287], [8.503293, 47.349288], [8.50329, 47.349289], [8.503288, 47.34929], [8.503286, 47.349291], [8.503283, 47.349292], [8.503281, 47.349292], [8.503278, 47.349293], [8.503276, 47.349293], [8.503273, 47.349293], [8.50327, 47.349293], [8.503268, 47.349293], [8.503265, 47.349292], [8.503262, 47.349292], [8.503117, 47.349247], [8.502959, 47.349144], [8.502963, 47.349247], [8.503014, 47.349301], [8.503141, 47.349379], [8.503402, 47.34961], [8.503553, 47.349702], [8.503649, 47.349735], [8.503765, 47.349714], [8.503886, 47.349617], [8.50392, 47.349601], [8.503903, 47.349774], [8.503895, 47.349821], [8.503853, 47.349884], [8.503807, 47.349935], [8.503827, 47.349951], [8.503981, 47.349918], [8.504244, 47.349708], [8.504223, 47.350015], [8.50448, 47.349866], [8.504505, 47.350037], [8.504431, 47.350107], [8.504117, 47.35033], [8.504037, 47.3504], [8.503986, 47.350436], [8.503902, 47.350497], [8.503812, 47.350544], [8.50373, 47.350597], [8.503656, 47.350655], [8.503481, 47.350818], [8.503435, 47.350896]]], "type": "MultiLineString"}, "id": "3488", "properties": {}, "type": "Feature"}, {"bbox": [8.547491, 47.41081, 8.548198, 47.411727], "geometry": {"coordinates": [[[8.547491, 47.41081], [8.547582, 47.410868], [8.547665, 47.410931], [8.54774, 47.410998], [8.547805, 47.41107], [8.547861, 47.411145], [8.547907, 47.411224], [8.547877, 47.411236], [8.547849, 47.41125], [8.547823, 47.411266], [8.5478, 47.411283], [8.547778, 47.411301], [8.547759, 47.411321], [8.547743, 47.411342], [8.547729, 47.411363], [8.547718, 47.411385], [8.54771, 47.411408], [8.547705, 47.411431], [8.547703, 47.411455], [8.547704, 47.411478], [8.547708, 47.411502], [8.547715, 47.411525], [8.547725, 47.411547], [8.547738, 47.411569], [8.547754, 47.41159], [8.547772, 47.41161], [8.547793, 47.411629], [8.547816, 47.411646], [8.547841, 47.411662], [8.547868, 47.411677], [8.547897, 47.41169], [8.547928, 47.411701], [8.54796, 47.41171], [8.547993, 47.411717], [8.548027, 47.411722], [8.548061, 47.411725], [8.548095, 47.411727], [8.54813, 47.411726], [8.548164, 47.411723], [8.548198, 47.411718]]], "type": "MultiLineString"}, "id": "3493", "properties": {}, "type": "Feature"}, {"bbox": [8.485408, 47.413077, 8.488141, 47.416196], "geometry": {"coordinates": [[[8.488141, 47.413437], [8.486824, 47.413083], [8.486815, 47.41308], [8.486806, 47.413079], [8.486796, 47.413078], [8.486786, 47.413077], [8.486776, 47.413077], [8.486766, 47.413078], [8.486756, 47.413079], [8.486747, 47.413081], [8.486738, 47.413083], [8.486729, 47.413086], [8.48672, 47.413089], [8.486712, 47.413093], [8.486704, 47.413098], [8.486697, 47.413102], [8.486691, 47.413108], [8.486685, 47.413113], [8.48668, 47.413119], [8.486676, 47.413125], [8.486475, 47.413454], [8.486146, 47.413992], [8.485724, 47.414702], [8.485426, 47.415196], [8.485418, 47.41521], [8.485413, 47.415224], [8.485409, 47.415239], [8.485408, 47.415253], [8.485408, 47.415268], [8.48541, 47.415282], [8.485414, 47.415297], [8.48542, 47.415311], [8.485427, 47.415324], [8.485767, 47.415862], [8.485783, 47.415885], [8.485802, 47.415907], [8.485823, 47.415928], [8.485847, 47.415947], [8.485874, 47.415965], [8.485902, 47.415981], [8.485932, 47.415996], [8.485964, 47.416009], [8.486468, 47.416196]]], "type": "MultiLineString"}, "id": "3494", "properties": {}, "type": "Feature"}, {"bbox": [8.536281, 47.37588, 8.536558, 47.37662], "geometry": {"coordinates": [[[8.536533, 47.37662], [8.536558, 47.376543], [8.536411, 47.376284], [8.536356, 47.376186], [8.536296, 47.376079], [8.536289, 47.376066], [8.536285, 47.376052], [8.536282, 47.376037], [8.536281, 47.376023], [8.536282, 47.376009], [8.536285, 47.375995], [8.536289, 47.375981], [8.536296, 47.375967], [8.536303, 47.375954], [8.536313, 47.375941], [8.536324, 47.375929], [8.536337, 47.375917], [8.536351, 47.375907], [8.536366, 47.375897], [8.536382, 47.375888], [8.5364, 47.37588]]], "type": "MultiLineString"}, "id": "3495", "properties": {}, "type": "Feature"}, {"bbox": [8.57365, 47.404344, 8.574669, 47.404443], "geometry": {"coordinates": [[[8.57365, 47.404344], [8.573927, 47.404375], [8.574204, 47.404408], [8.57448, 47.404443], [8.574669, 47.404414]]], "type": "MultiLineString"}, "id": "3496", "properties": {}, "type": "Feature"}, {"bbox": [8.573598, 47.394272, 8.579171, 47.39829], "geometry": {"coordinates": [[[8.573598, 47.39829], [8.573736, 47.398099], [8.573789, 47.398031], [8.573851, 47.397966], [8.573919, 47.397905], [8.574197, 47.397672], [8.57425, 47.397628], [8.574385, 47.397515], [8.574426, 47.397478], [8.574462, 47.397438], [8.574493, 47.397397], [8.574519, 47.397354], [8.57454, 47.39731], [8.574587, 47.397189], [8.574619, 47.397118], [8.574656, 47.397048], [8.574699, 47.39698], [8.574872, 47.396728], [8.574946, 47.396632], [8.575032, 47.396541], [8.575131, 47.396456], [8.57524, 47.396377], [8.575359, 47.396306], [8.575488, 47.396242], [8.575994, 47.396014], [8.57629, 47.395891], [8.576599, 47.395784], [8.576919, 47.395693], [8.57748, 47.395549], [8.577512, 47.39554], [8.577567, 47.395522], [8.577619, 47.395501], [8.577668, 47.395477], [8.577714, 47.39545], [8.577757, 47.395421], [8.578844, 47.394604], [8.578896, 47.394563], [8.578943, 47.39452], [8.578987, 47.394475], [8.579125, 47.394322], [8.579171, 47.394272]]], "type": "MultiLineString"}, "id": "3497", "properties": {}, "type": "Feature"}, {"bbox": [8.560449, 47.371063, 8.568148, 47.375509], "geometry": {"coordinates": [[[8.560449, 47.371063], [8.560776, 47.3711], [8.560882, 47.371167], [8.56094, 47.371212], [8.561081, 47.371283], [8.561366, 47.371399], [8.561467, 47.371453], [8.561558, 47.371516], [8.561777, 47.371627], [8.561864, 47.371713], [8.561881, 47.371737], [8.56195, 47.371796], [8.56212, 47.371954], [8.562233, 47.372036], [8.562565, 47.372151], [8.562822, 47.372289], [8.562962, 47.372409], [8.563141, 47.372481], [8.563233, 47.372419], [8.563224, 47.37238], [8.563291, 47.372346], [8.563397, 47.372418], [8.563559, 47.372536], [8.563772, 47.372717], [8.563794, 47.372769], [8.563829, 47.372792], [8.564131, 47.372976], [8.564167, 47.372997], [8.564207, 47.373014], [8.564248, 47.373029], [8.564299, 47.373046], [8.564348, 47.373065], [8.564396, 47.373085], [8.564584, 47.373173], [8.564605, 47.373184], [8.564625, 47.373195], [8.564643, 47.373208], [8.564659, 47.373222], [8.564832, 47.37338], [8.564868, 47.373411], [8.564905, 47.37344], [8.564945, 47.373469], [8.565096, 47.37357], [8.565125, 47.373588], [8.565157, 47.373604], [8.565191, 47.373619], [8.565226, 47.373631], [8.565263, 47.373641], [8.565301, 47.373649], [8.56532, 47.373653], [8.565338, 47.373658], [8.565356, 47.373664], [8.565373, 47.373671], [8.565389, 47.373679], [8.565404, 47.373688], [8.565473, 47.373762], [8.56552, 47.373864], [8.565575, 47.374032], [8.565581, 47.374045], [8.565587, 47.374058], [8.565596, 47.37407], [8.565606, 47.374081], [8.565618, 47.374092], [8.565631, 47.374103], [8.565645, 47.374112], [8.565727, 47.374161], [8.565748, 47.374175], [8.565767, 47.374191], [8.565784, 47.374207], [8.565799, 47.374224], [8.565837, 47.374275], [8.565848, 47.374288], [8.56586, 47.3743], [8.565874, 47.374311], [8.56589, 47.374322], [8.565907, 47.374331], [8.565925, 47.37434], [8.566106, 47.374415], [8.566232, 47.374477], [8.566248, 47.374485], [8.566263, 47.374495], [8.566276, 47.374505], [8.566289, 47.374516], [8.566299, 47.374527], [8.566329, 47.374562], [8.566347, 47.374585], [8.566361, 47.374609], [8.566373, 47.374634], [8.566382, 47.374659], [8.566387, 47.374685], [8.566389, 47.374711], [8.566387, 47.374737], [8.566383, 47.374763], [8.566375, 47.374789], [8.566351, 47.374849], [8.56635, 47.374854], [8.566349, 47.37486], [8.566349, 47.374865], [8.566349, 47.37487], [8.56635, 47.374876], [8.566352, 47.374881], [8.566355, 47.374886], [8.566358, 47.374891], [8.566362, 47.374895], [8.566366, 47.3749], [8.566371, 47.374904], [8.566377, 47.374908], [8.566383, 47.374911], [8.566389, 47.374914], [8.566396, 47.374917], [8.566403, 47.374919], [8.566627, 47.374981], [8.56672, 47.375013], [8.566814, 47.37502], [8.567021, 47.3751], [8.567214, 47.37522], [8.567332, 47.375305], [8.567495, 47.375455], [8.567594, 47.375509], [8.567705, 47.375501], [8.567844, 47.37549], [8.567861, 47.375489], [8.567878, 47.375487], [8.567894, 47.375484], [8.56791, 47.37548], [8.567925, 47.375475], [8.56794, 47.375469], [8.567954, 47.375463], [8.567967, 47.375455], [8.567979, 47.375447], [8.56799, 47.375439], [8.568, 47.375429], [8.568008, 47.375419], [8.568015, 47.375409], [8.568021, 47.375398], [8.568026, 47.375387], [8.568029, 47.375376], [8.568031, 47.375364], [8.568031, 47.375353], [8.56803, 47.375341], [8.56811, 47.375345], [8.568148, 47.375352]]], "type": "MultiLineString"}, "id": "3513", "properties": {}, "type": "Feature"}, {"bbox": [8.507106, 47.411014, 8.507908, 47.411677], "geometry": {"coordinates": [[[8.507908, 47.411677], [8.507201, 47.411278], [8.507182, 47.411264], [8.507165, 47.411249], [8.50715, 47.411233], [8.507137, 47.411216], [8.507126, 47.411198], [8.507118, 47.41118], [8.507112, 47.411161], [8.507108, 47.411143], [8.507106, 47.411124], [8.507107, 47.411105], [8.507111, 47.411086], [8.507116, 47.411067], [8.507124, 47.411049], [8.507135, 47.411031], [8.507147, 47.411014]]], "type": "MultiLineString"}, "id": "3517", "properties": {}, "type": "Feature"}, {"bbox": [8.469444, 47.415177, 8.474252, 47.416368], "geometry": {"coordinates": [[[8.474252, 47.415191], [8.474124, 47.415184], [8.473994, 47.415177], [8.471672, 47.415405], [8.471523, 47.415423], [8.471168, 47.415459], [8.471122, 47.415466], [8.471078, 47.415475], [8.471035, 47.415487], [8.470994, 47.415502], [8.470955, 47.415519], [8.470918, 47.415538], [8.470884, 47.415559], [8.470853, 47.415583], [8.470825, 47.415608], [8.4708, 47.415635], [8.470779, 47.415663], [8.470762, 47.415692], [8.470748, 47.415722], [8.470739, 47.415753], [8.470734, 47.415785], [8.470732, 47.415816], [8.470733, 47.415838], [8.470769, 47.416027], [8.470777, 47.416049], [8.470781, 47.416072], [8.470784, 47.416095], [8.470783, 47.416118], [8.470779, 47.416141], [8.470772, 47.416164], [8.470763, 47.416186], [8.47075, 47.416208], [8.470735, 47.416228], [8.470718, 47.416248], [8.470698, 47.416267], [8.470675, 47.416284], [8.470651, 47.4163], [8.470625, 47.416315], [8.470596, 47.416328], [8.470567, 47.416339], [8.470536, 47.416349], [8.470504, 47.416356], [8.470471, 47.416362], [8.470437, 47.416366], [8.470403, 47.416368], [8.470369, 47.416368], [8.470335, 47.416366], [8.470302, 47.416362], [8.470269, 47.416356], [8.470237, 47.416348], [8.470206, 47.416338], [8.470192, 47.416334], [8.469536, 47.416122], [8.469444, 47.416092]]], "type": "MultiLineString"}, "id": "3518", "properties": {}, "type": "Feature"}, {"bbox": [8.515992, 47.377124, 8.516031, 47.37713], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.516031, 47.37713]]], "type": "MultiLineString"}, "id": "3519", "properties": {}, "type": "Feature"}, {"bbox": [8.54991, 47.415835, 8.550943, 47.41629], "geometry": {"coordinates": [[[8.54991, 47.41629], [8.550943, 47.415835]]], "type": "MultiLineString"}, "id": "3520", "properties": {}, "type": "Feature"}, {"bbox": [8.547811, 47.384421, 8.548898, 47.384797], "geometry": {"coordinates": [[[8.548376, 47.384797], [8.548898, 47.384759], [8.548886, 47.384723], [8.548869, 47.384688], [8.548848, 47.384654], [8.548823, 47.384622], [8.548793, 47.384591], [8.548759, 47.384562], [8.548722, 47.384535], [8.548681, 47.384511], [8.548637, 47.384489], [8.54859, 47.38447], [8.548542, 47.384454], [8.548491, 47.384441], [8.548438, 47.384431], [8.548385, 47.384425], [8.548331, 47.384421], [8.548154, 47.384445], [8.54798, 47.384479], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "3521", "properties": {}, "type": "Feature"}, {"bbox": [8.585487, 47.40334, 8.585712, 47.40391], "geometry": {"coordinates": [[[8.585712, 47.40334], [8.585706, 47.403427], [8.585687, 47.403512], [8.585657, 47.403597], [8.585614, 47.403678], [8.585573, 47.403724], [8.585532, 47.40377], [8.585491, 47.403817], [8.585489, 47.403823], [8.585488, 47.403829], [8.585487, 47.403835], [8.585488, 47.403841], [8.585489, 47.403847], [8.585491, 47.403853], [8.585493, 47.403859], [8.585497, 47.403865], [8.585501, 47.403871], [8.585506, 47.403876], [8.585512, 47.403881], [8.585518, 47.403885], [8.585525, 47.40389], [8.585532, 47.403893], [8.58554, 47.403897], [8.585548, 47.403899], [8.585577, 47.40391]]], "type": "MultiLineString"}, "id": "3522", "properties": {}, "type": "Feature"}, {"bbox": [8.580778, 47.363974, 8.587881, 47.365954], "geometry": {"coordinates": [[[8.580778, 47.365954], [8.580915, 47.365929], [8.580985, 47.365899], [8.581125, 47.365841], [8.581272, 47.36579], [8.581425, 47.365747], [8.581425, 47.365747], [8.581425, 47.365747], [8.581528, 47.365723], [8.581633, 47.365704], [8.58174, 47.365691], [8.58174, 47.365691], [8.58174, 47.365691], [8.581825, 47.365684], [8.581911, 47.365683], [8.581997, 47.365688], [8.581998, 47.365688], [8.581999, 47.365688], [8.58217, 47.365688], [8.582341, 47.365679], [8.58251, 47.365661], [8.58255, 47.365656], [8.582589, 47.365648], [8.582626, 47.365638], [8.582663, 47.365627], [8.582698, 47.365613], [8.582731, 47.365597], [8.582731, 47.365597], [8.582731, 47.365597], [8.58279, 47.36556], [8.582844, 47.365521], [8.582891, 47.365477], [8.582933, 47.365431], [8.582933, 47.365431], [8.582933, 47.365431], [8.582977, 47.365373], [8.583026, 47.365318], [8.58308, 47.365264], [8.583157, 47.365196], [8.583233, 47.365128], [8.583309, 47.365059], [8.583426, 47.36496], [8.583546, 47.364862], [8.583668, 47.364766], [8.583826, 47.364646], [8.58399, 47.36453], [8.584158, 47.364416], [8.584262, 47.364349], [8.584367, 47.364281], [8.584471, 47.364214], [8.584471, 47.364214], [8.584471, 47.364214], [8.584554, 47.364162], [8.584642, 47.364115], [8.584735, 47.364071], [8.584735, 47.364071], [8.584735, 47.364071], [8.584871, 47.364009], [8.584896, 47.364], [8.584922, 47.363992], [8.584948, 47.363985], [8.584976, 47.36398], [8.585004, 47.363977], [8.585032, 47.363975], [8.58506, 47.363974], [8.585089, 47.363976], [8.585117, 47.363979], [8.585144, 47.363983], [8.585231, 47.363999], [8.585316, 47.36402], [8.585398, 47.364046], [8.585476, 47.364076], [8.585551, 47.364111], [8.585621, 47.364149], [8.585695, 47.3642], [8.586536, 47.364774], [8.587094, 47.365123], [8.58737, 47.365321], [8.587807, 47.365491], [8.587827, 47.3655], [8.587847, 47.36551], [8.587865, 47.365521], [8.587881, 47.365534]]], "type": "MultiLineString"}, "id": "3523", "properties": {}, "type": "Feature"}, {"bbox": [8.544624, 47.370733, 8.546681, 47.371825], "geometry": {"coordinates": [[[8.546681, 47.370733], [8.546405, 47.370801], [8.545842, 47.371071], [8.545488, 47.371297], [8.545156, 47.371526], [8.5449, 47.371579], [8.544714, 47.371755], [8.544624, 47.371825]]], "type": "MultiLineString"}, "id": "3524", "properties": {}, "type": "Feature"}, {"bbox": [8.537221, 47.414835, 8.538748, 47.415295], "geometry": {"coordinates": [[[8.537221, 47.415295], [8.537979, 47.41525], [8.537926, 47.414842], [8.538022, 47.414839], [8.538097, 47.414835], [8.538144, 47.41524], [8.538748, 47.415205]]], "type": "MultiLineString"}, "id": "3525", "properties": {}, "type": "Feature"}, {"bbox": [8.515385, 47.341875, 8.518323, 47.349101], "geometry": {"coordinates": [[[8.515385, 47.349101], [8.515427, 47.348984], [8.515446, 47.348912], [8.515456, 47.348882], [8.515471, 47.348851], [8.515489, 47.348822], [8.51552, 47.34878], [8.515554, 47.348739], [8.515592, 47.3487], [8.515736, 47.34856], [8.515785, 47.348506], [8.515828, 47.34845], [8.515862, 47.348392], [8.515888, 47.348331], [8.515907, 47.348269], [8.515907, 47.348269], [8.515996, 47.347881], [8.515997, 47.347875], [8.515998, 47.347872], [8.515999, 47.347868], [8.516041, 47.347631], [8.51611, 47.347373], [8.516147, 47.347286], [8.51619, 47.347199], [8.516239, 47.347114], [8.516239, 47.347113], [8.516239, 47.347113], [8.516406, 47.34686], [8.516441, 47.346806], [8.516472, 47.346751], [8.516499, 47.346696], [8.516591, 47.346474], [8.516599, 47.346442], [8.516602, 47.346409], [8.5166, 47.346376], [8.516595, 47.346343], [8.51659, 47.346249], [8.516591, 47.346203], [8.516595, 47.346157], [8.516601, 47.346111], [8.516605, 47.346092], [8.516609, 47.346072], [8.516614, 47.346053], [8.516642, 47.345928], [8.516654, 47.345871], [8.516663, 47.345814], [8.516667, 47.345757], [8.516667, 47.345756], [8.516667, 47.345756], [8.516676, 47.34558], [8.516681, 47.345545], [8.51669, 47.345511], [8.516705, 47.345477], [8.516723, 47.345444], [8.516746, 47.345413], [8.516773, 47.345383], [8.516773, 47.345382], [8.516956, 47.345199], [8.517028, 47.345199], [8.517137, 47.345204], [8.517196, 47.345206], [8.517256, 47.345205], [8.517316, 47.345202], [8.51751, 47.34519], [8.517554, 47.345186], [8.517597, 47.345179], [8.517639, 47.345169], [8.517654, 47.345164], [8.517668, 47.345159], [8.517682, 47.345152], [8.517694, 47.345145], [8.517706, 47.345137], [8.517716, 47.345128], [8.517726, 47.345119], [8.517734, 47.345109], [8.51774, 47.345099], [8.517794, 47.345005], [8.517932, 47.344701], [8.518039, 47.344467], [8.518067, 47.344403], [8.518178, 47.344163], [8.518278, 47.343877], [8.518309, 47.34373], [8.518323, 47.343522], [8.518323, 47.343458], [8.518298, 47.34313], [8.518266, 47.342909], [8.518253, 47.342861], [8.518226, 47.342807], [8.517994, 47.342462], [8.51797, 47.342421], [8.517936, 47.342354], [8.517671, 47.341875]]], "type": "MultiLineString"}, "id": "3526", "properties": {}, "type": "Feature"}, {"bbox": [8.541502, 47.382698, 8.541806, 47.382717], "geometry": {"coordinates": [[[8.541502, 47.382717], [8.54179, 47.382698], [8.541806, 47.382699]]], "type": "MultiLineString"}, "id": "3527", "properties": {}, "type": "Feature"}, {"bbox": [8.478132, 47.360655, 8.484383, 47.36212], "geometry": {"coordinates": [[[8.478132, 47.360655], [8.478141, 47.360759], [8.478151, 47.360806], [8.478163, 47.360839], [8.478178, 47.360871], [8.478198, 47.360902], [8.478222, 47.360931], [8.478249, 47.360959], [8.478326, 47.361032], [8.478369, 47.361069], [8.478418, 47.361103], [8.47847, 47.361134], [8.478527, 47.361162], [8.478586, 47.361187], [8.478649, 47.361207], [8.478715, 47.361224], [8.478782, 47.361237], [8.478851, 47.361245], [8.479716, 47.361324], [8.48086, 47.361455], [8.481114, 47.361483], [8.482302, 47.361616], [8.483882, 47.361802], [8.483935, 47.36181], [8.483985, 47.361821], [8.484035, 47.361835], [8.484082, 47.361852], [8.484127, 47.361872], [8.484169, 47.361894], [8.484208, 47.361919], [8.484244, 47.361945], [8.484276, 47.361974], [8.484305, 47.362005], [8.484329, 47.362038], [8.484383, 47.36212]]], "type": "MultiLineString"}, "id": "3552", "properties": {}, "type": "Feature"}, {"bbox": [8.523047, 47.392247, 8.523959, 47.392766], "geometry": {"coordinates": [[[8.523937, 47.392247], [8.523946, 47.392264], [8.523952, 47.392281], [8.523957, 47.392299], [8.523959, 47.392317], [8.523959, 47.392335], [8.523956, 47.392353], [8.523951, 47.39237], [8.523944, 47.392388], [8.523935, 47.392404], [8.523924, 47.392421], [8.52391, 47.392436], [8.523895, 47.392451], [8.523878, 47.392464], [8.523859, 47.392477], [8.523838, 47.392488], [8.523816, 47.392498], [8.523793, 47.392507], [8.523244, 47.392678], [8.523191, 47.392696], [8.523141, 47.392717], [8.523093, 47.39274], [8.523047, 47.392766]]], "type": "MultiLineString"}, "id": "3553", "properties": {}, "type": "Feature"}, {"bbox": [8.570462, 47.402825, 8.571655, 47.403701], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571655, 47.403272], [8.5712, 47.403035], [8.570787, 47.40284], [8.570462, 47.402825]]], "type": "MultiLineString"}, "id": "3558", "properties": {}, "type": "Feature"}, {"bbox": [8.48991, 47.388671, 8.490566, 47.390347], "geometry": {"coordinates": [[[8.490566, 47.390347], [8.490476, 47.390072], [8.49, 47.388853], [8.48991, 47.388671]]], "type": "MultiLineString"}, "id": "3560", "properties": {}, "type": "Feature"}, {"bbox": [8.611457, 47.360012, 8.619235, 47.361193], "geometry": {"coordinates": [[[8.611457, 47.360012], [8.611557, 47.360205], [8.6119, 47.360641], [8.612037, 47.360799], [8.612037, 47.360799], [8.612059, 47.360821], [8.612084, 47.360843], [8.612112, 47.360863], [8.612142, 47.360881], [8.612174, 47.360897], [8.612208, 47.360912], [8.612244, 47.360924], [8.612282, 47.360934], [8.61232, 47.360942], [8.612359, 47.360948], [8.612399, 47.360951], [8.61244, 47.360952], [8.61248, 47.360951], [8.61252, 47.360947], [8.61252, 47.360947], [8.612865, 47.360903], [8.61297, 47.360891], [8.613075, 47.360876], [8.61318, 47.360859], [8.6132, 47.360856], [8.613553, 47.360782], [8.614063, 47.360669], [8.614338, 47.360614], [8.614411, 47.360602], [8.614485, 47.360593], [8.614559, 47.360587], [8.614634, 47.360585], [8.614709, 47.360586], [8.614784, 47.360591], [8.615631, 47.360662], [8.615777, 47.360665], [8.615847, 47.360663], [8.615917, 47.36066], [8.615987, 47.360656], [8.616014, 47.360654], [8.616041, 47.360651], [8.616069, 47.360648], [8.616069, 47.360648], [8.616624, 47.360589], [8.616703, 47.360583], [8.616783, 47.360581], [8.616863, 47.360584], [8.616942, 47.360591], [8.61702, 47.360602], [8.617096, 47.360618], [8.617401, 47.360691], [8.618177, 47.3609], [8.618335, 47.360949], [8.618707, 47.361076], [8.618777, 47.361099], [8.618849, 47.361118], [8.618923, 47.361132], [8.618998, 47.361143], [8.619235, 47.361193]]], "type": "MultiLineString"}, "id": "3561", "properties": {}, "type": "Feature"}, {"bbox": [8.535464, 47.340354, 8.536293, 47.342078], "geometry": {"coordinates": [[[8.535464, 47.342078], [8.535547, 47.342021], [8.536021, 47.341271], [8.536293, 47.340354]]], "type": "MultiLineString"}, "id": "3563", "properties": {}, "type": "Feature"}, {"bbox": [8.547552, 47.370685, 8.547799, 47.370888], "geometry": {"coordinates": [[[8.547623, 47.370799], [8.547701, 47.370888], [8.547765, 47.370867], [8.547799, 47.370853], [8.547646, 47.370685], [8.547552, 47.370722], [8.547623, 47.370799]]], "type": "MultiLineString"}, "id": "3565", "properties": {}, "type": "Feature"}, {"bbox": [8.474218, 47.377507, 8.479128, 47.38127], "geometry": {"coordinates": [[[8.479128, 47.377507], [8.478621, 47.377907], [8.477988, 47.378365], [8.47798, 47.378387], [8.477951, 47.378421], [8.477726, 47.378589], [8.477696, 47.378613], [8.477664, 47.378637], [8.477632, 47.378661], [8.477583, 47.378697], [8.477535, 47.378735], [8.477488, 47.378773], [8.477449, 47.378806], [8.477408, 47.378839], [8.477367, 47.378871], [8.477091, 47.379082], [8.476778, 47.379329], [8.476778, 47.379329], [8.476764, 47.379341], [8.47675, 47.379352], [8.476737, 47.379364], [8.476725, 47.379376], [8.476712, 47.379388], [8.476701, 47.379401], [8.47666, 47.379446], [8.476577, 47.379539], [8.476577, 47.379539], [8.476564, 47.379553], [8.47655, 47.379567], [8.476535, 47.37958], [8.476519, 47.379593], [8.476503, 47.379606], [8.476486, 47.379618], [8.476486, 47.379618], [8.476328, 47.379725], [8.476311, 47.379736], [8.476294, 47.379746], [8.476275, 47.379756], [8.476275, 47.379756], [8.476275, 47.379756], [8.476256, 47.379764], [8.476236, 47.379772], [8.476215, 47.379779], [8.476041, 47.379835], [8.476041, 47.379835], [8.476015, 47.379843], [8.47599, 47.379853], [8.475966, 47.379864], [8.475942, 47.379876], [8.47592, 47.379889], [8.475899, 47.379902], [8.475899, 47.379902], [8.475502, 47.380175], [8.475032, 47.380538], [8.474553, 47.380909], [8.474503, 47.380949], [8.474456, 47.380991], [8.474411, 47.381034], [8.474369, 47.381079], [8.474329, 47.381124], [8.474293, 47.381171], [8.474218, 47.38127]]], "type": "MultiLineString"}, "id": "3566", "properties": {}, "type": "Feature"}, {"bbox": [8.526352, 47.407896, 8.528816, 47.409232], "geometry": {"coordinates": [[[8.528816, 47.409232], [8.528749, 47.409151], [8.528646, 47.409027], [8.528496, 47.40886], [8.52755, 47.40841], [8.52665, 47.407997], [8.526524, 47.407956], [8.526352, 47.407896]]], "type": "MultiLineString"}, "id": "3567", "properties": {}, "type": "Feature"}, {"bbox": [8.542577, 47.411871, 8.544284, 47.412512], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.542738, 47.411918], [8.542686, 47.4119], [8.542632, 47.411884], [8.542577, 47.411871]]], "type": "MultiLineString"}, "id": "3568", "properties": {}, "type": "Feature"}, {"bbox": [8.511656, 47.362907, 8.512189, 47.364156], "geometry": {"coordinates": [[[8.512189, 47.362907], [8.512153, 47.362969], [8.512003, 47.363236], [8.511924, 47.363402], [8.511805, 47.363575], [8.5118, 47.363582], [8.511796, 47.363588], [8.511793, 47.363595], [8.511791, 47.363602], [8.51179, 47.363609], [8.51179, 47.363616], [8.51179, 47.363623], [8.511794, 47.363641], [8.5118, 47.363659], [8.511808, 47.363676], [8.511826, 47.363701], [8.511894, 47.363778], [8.511898, 47.363786], [8.511902, 47.363795], [8.511904, 47.363803], [8.511905, 47.363812], [8.511905, 47.363821], [8.511904, 47.36383], [8.511902, 47.363839], [8.511898, 47.363847], [8.511894, 47.363855], [8.511869, 47.363912], [8.511848, 47.363951], [8.511822, 47.363989], [8.511791, 47.364026], [8.511688, 47.364122], [8.511656, 47.364156]]], "type": "MultiLineString"}, "id": "3571", "properties": {}, "type": "Feature"}, {"bbox": [8.567231, 47.366542, 8.568708, 47.367614], "geometry": {"coordinates": [[[8.568708, 47.366643], [8.568558, 47.366542], [8.568531, 47.366557], [8.568492, 47.366549], [8.567823, 47.366994], [8.567757, 47.36702], [8.567694, 47.36705], [8.567636, 47.367083], [8.567582, 47.367119], [8.567532, 47.367159], [8.567488, 47.367201], [8.56745, 47.367246], [8.567417, 47.367293], [8.567392, 47.367328], [8.56737, 47.367364], [8.567351, 47.367401], [8.567231, 47.367614]]], "type": "MultiLineString"}, "id": "3573", "properties": {}, "type": "Feature"}, {"bbox": [8.494099, 47.365007, 8.497519, 47.365087], "geometry": {"coordinates": [[[8.497519, 47.365014], [8.497243, 47.365014], [8.496916, 47.365064], [8.49656, 47.365087], [8.496385, 47.365081], [8.496206, 47.365022], [8.496101, 47.365007], [8.495861, 47.365007], [8.495765, 47.365007], [8.495021, 47.365014], [8.494759, 47.365024], [8.494497, 47.365045], [8.4943, 47.365068], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "3574", "properties": {}, "type": "Feature"}, {"bbox": [8.492498, 47.403788, 8.493906, 47.404682], "geometry": {"coordinates": [[[8.492833, 47.404682], [8.492814, 47.404672], [8.492797, 47.40466], [8.492782, 47.404648], [8.492767, 47.404635], [8.492755, 47.404622], [8.492744, 47.404607], [8.492506, 47.40427], [8.492502, 47.404262], [8.4925, 47.404255], [8.492498, 47.404247], [8.492498, 47.40424], [8.492498, 47.404232], [8.492499, 47.404224], [8.492502, 47.404217], [8.492505, 47.40421], [8.49251, 47.404203], [8.492515, 47.404196], [8.492521, 47.404189], [8.492528, 47.404183], [8.492535, 47.404178], [8.492543, 47.404173], [8.492552, 47.404168], [8.492562, 47.404164], [8.492572, 47.40416], [8.492668, 47.404128], [8.492678, 47.404125], [8.492688, 47.404123], [8.492699, 47.404121], [8.49271, 47.40412], [8.492721, 47.40412], [8.492732, 47.40412], [8.492743, 47.404121], [8.492751, 47.404121], [8.492758, 47.404121], [8.492766, 47.40412], [8.492773, 47.404119], [8.49278, 47.404118], [8.492787, 47.404116], [8.492794, 47.404113], [8.4938, 47.40379], [8.49381, 47.403789], [8.493819, 47.403788], [8.493829, 47.403788], [8.493838, 47.403788], [8.493848, 47.403789], [8.493857, 47.40379], [8.493866, 47.403792], [8.493875, 47.403795], [8.493884, 47.403798], [8.493892, 47.403801], [8.493899, 47.403805], [8.493906, 47.403809]]], "type": "MultiLineString"}, "id": "3578", "properties": {}, "type": "Feature"}, {"bbox": [8.493674, 47.385789, 8.496012, 47.38651], "geometry": {"coordinates": [[[8.493674, 47.38651], [8.4937, 47.386497], [8.493726, 47.386485], [8.493752, 47.386473], [8.494024, 47.386393], [8.494294, 47.386309], [8.494562, 47.386222], [8.495912, 47.385806], [8.495945, 47.385799], [8.495978, 47.385793], [8.496012, 47.385789]]], "type": "MultiLineString"}, "id": "3579", "properties": {}, "type": "Feature"}, {"bbox": [8.583794, 47.404408, 8.585505, 47.404843], "geometry": {"coordinates": [[[8.583794, 47.404408], [8.583999, 47.404447], [8.585435, 47.404772], [8.585443, 47.404773], [8.58545, 47.404775], [8.585458, 47.404778], [8.585465, 47.404781], [8.585471, 47.404784], [8.585477, 47.404788], [8.585483, 47.404792], [8.585488, 47.404796], [8.585492, 47.404801], [8.585496, 47.404806], [8.585499, 47.404811], [8.585502, 47.404816], [8.585503, 47.404821], [8.585505, 47.404827], [8.585505, 47.404832], [8.585505, 47.404838], [8.585503, 47.404843]]], "type": "MultiLineString"}, "id": "3580", "properties": {}, "type": "Feature"}, {"bbox": [8.58702, 47.358245, 8.588, 47.359702], "geometry": {"coordinates": [[[8.587914, 47.358245], [8.587926, 47.35825], [8.587938, 47.358257], [8.587949, 47.358264], [8.58796, 47.358272], [8.587969, 47.35828], [8.587977, 47.358289], [8.587984, 47.358298], [8.587989, 47.358308], [8.587994, 47.358317], [8.587997, 47.358328], [8.587999, 47.358338], [8.588, 47.358348], [8.58737, 47.359231], [8.587273, 47.359313], [8.587036, 47.35965], [8.58702, 47.359702]]], "type": "MultiLineString"}, "id": "3581", "properties": {}, "type": "Feature"}, {"bbox": [8.563114, 47.361332, 8.563443, 47.362086], "geometry": {"coordinates": [[[8.563443, 47.361332], [8.563406, 47.361448], [8.563196, 47.361969], [8.563114, 47.362086]]], "type": "MultiLineString"}, "id": "3583", "properties": {}, "type": "Feature"}, {"bbox": [8.559245, 47.402064, 8.56268, 47.402979], "geometry": {"coordinates": [[[8.56268, 47.402064], [8.562671, 47.402073], [8.562649, 47.402097], [8.562624, 47.40212], [8.562596, 47.402141], [8.562566, 47.40216], [8.562533, 47.402177], [8.562416, 47.402227], [8.562294, 47.402271], [8.562167, 47.402309], [8.561775, 47.402412], [8.561698, 47.40243], [8.561618, 47.402443], [8.561538, 47.402452], [8.56114, 47.402486], [8.56076, 47.402533], [8.560375, 47.402596], [8.560302, 47.402607], [8.560229, 47.402617], [8.560155, 47.402626], [8.560064, 47.402638], [8.559975, 47.402656], [8.559888, 47.402679], [8.559804, 47.402706], [8.559724, 47.402737], [8.559648, 47.402773], [8.559245, 47.402979]]], "type": "MultiLineString"}, "id": "3584", "properties": {}, "type": "Feature"}, {"bbox": [8.538016, 47.366469, 8.538202, 47.366555], "geometry": {"coordinates": [[[8.538016, 47.366469], [8.53815, 47.366536], [8.538202, 47.366555]]], "type": "MultiLineString"}, "id": "3596", "properties": {}, "type": "Feature"}, {"bbox": [8.527621, 47.358588, 8.53128, 47.359487], "geometry": {"coordinates": [[[8.527621, 47.358588], [8.527683, 47.358609], [8.527964, 47.358709], [8.528412, 47.358867], [8.528704, 47.359029], [8.528926, 47.359171], [8.528973, 47.359197], [8.529022, 47.35922], [8.529074, 47.35924], [8.529129, 47.359257], [8.529186, 47.359271], [8.529244, 47.359282], [8.529776, 47.359274], [8.530314, 47.359266], [8.53128, 47.359487]]], "type": "MultiLineString"}, "id": "3597", "properties": {}, "type": "Feature"}, {"bbox": [8.529123, 47.424816, 8.533611, 47.425891], "geometry": {"coordinates": [[[8.533611, 47.425857], [8.533572, 47.425854], [8.533559, 47.425853], [8.533546, 47.425853], [8.533533, 47.425854], [8.53352, 47.425856], [8.533507, 47.425858], [8.533495, 47.425862], [8.533454, 47.425874], [8.533433, 47.42588], [8.53341, 47.425885], [8.533388, 47.425888], [8.533365, 47.42589], [8.533342, 47.425891], [8.533319, 47.42589], [8.533296, 47.425888], [8.533273, 47.425885], [8.533251, 47.42588], [8.533229, 47.425874], [8.533145, 47.425849], [8.533117, 47.425841], [8.533089, 47.425835], [8.53306, 47.425831], [8.533031, 47.425828], [8.533001, 47.425827], [8.532972, 47.425828], [8.532942, 47.42583], [8.532913, 47.425834], [8.532797, 47.425854], [8.532756, 47.42586], [8.532714, 47.425863], [8.532672, 47.425865], [8.53263, 47.425864], [8.532401, 47.425854], [8.532362, 47.425851], [8.532324, 47.425846], [8.532286, 47.42584], [8.532264, 47.425836], [8.53194, 47.425776], [8.5319, 47.42577], [8.531859, 47.425766], [8.531818, 47.425766], [8.531779, 47.425766], [8.531739, 47.425766], [8.5317, 47.425764], [8.531347, 47.42574], [8.531318, 47.425739], [8.531289, 47.42574], [8.531261, 47.425743], [8.531156, 47.425758], [8.531128, 47.425761], [8.5311, 47.425763], [8.531072, 47.425763], [8.531043, 47.425762], [8.530878, 47.425751], [8.530871, 47.42575], [8.530865, 47.42575], [8.530858, 47.425751], [8.530851, 47.425752], [8.530845, 47.425753], [8.530839, 47.425754], [8.530833, 47.425756], [8.530827, 47.425759], [8.530821, 47.425761], [8.530811, 47.425766], [8.5308, 47.42577], [8.530789, 47.425774], [8.530777, 47.425776], [8.530765, 47.425779], [8.530753, 47.42578], [8.530741, 47.425781], [8.530728, 47.42578], [8.529859, 47.425748], [8.529853, 47.425747], [8.529846, 47.425747], [8.52984, 47.425745], [8.529833, 47.425744], [8.529827, 47.425742], [8.529821, 47.42574], [8.529816, 47.425737], [8.529811, 47.425734], [8.529806, 47.425731], [8.529802, 47.425727], [8.529724, 47.425659], [8.529708, 47.425645], [8.52969, 47.425631], [8.529672, 47.425617], [8.529662, 47.42561], [8.529653, 47.425602], [8.529645, 47.425593], [8.529639, 47.425584], [8.529634, 47.425575], [8.52963, 47.425565], [8.529621, 47.425544], [8.52961, 47.425524], [8.529597, 47.425505], [8.529581, 47.425487], [8.529563, 47.425469], [8.529523, 47.425438], [8.529481, 47.425409], [8.529434, 47.425382], [8.529304, 47.425314], [8.52929, 47.425305], [8.529276, 47.425296], [8.529263, 47.425286], [8.529252, 47.425275], [8.529236, 47.425261], [8.529218, 47.425247], [8.529198, 47.425234], [8.529192, 47.425231], [8.529186, 47.425226], [8.529181, 47.425222], [8.529177, 47.425217], [8.529173, 47.425212], [8.52917, 47.425207], [8.529168, 47.425202], [8.529166, 47.425196], [8.529166, 47.425191], [8.529165, 47.425185], [8.52917, 47.425043], [8.52917, 47.425034], [8.529168, 47.425024], [8.529165, 47.425014], [8.52916, 47.425005], [8.529154, 47.424996], [8.529143, 47.424978], [8.529135, 47.42496], [8.529128, 47.424942], [8.529125, 47.424923], [8.529123, 47.424904], [8.529125, 47.424885], [8.529129, 47.424866], [8.529135, 47.424848], [8.529148, 47.424816]]], "type": "MultiLineString"}, "id": "3598", "properties": {}, "type": "Feature"}, {"bbox": [8.531048, 47.349876, 8.534313, 47.350274], "geometry": {"coordinates": [[[8.534313, 47.350274], [8.533131, 47.350182], [8.532235, 47.350121], [8.531969, 47.350096], [8.531943, 47.350069], [8.53129, 47.350022], [8.531148, 47.350003], [8.531143, 47.350003], [8.531137, 47.350002], [8.531131, 47.350002], [8.531125, 47.350001], [8.53112, 47.349999], [8.531115, 47.349997], [8.53111, 47.349995], [8.531105, 47.349993], [8.531101, 47.34999], [8.531097, 47.349988], [8.531093, 47.349985], [8.53109, 47.349981], [8.531087, 47.349978], [8.531084, 47.349974], [8.531082, 47.34997], [8.531081, 47.349967], [8.53108, 47.349963], [8.531079, 47.349959], [8.531079, 47.349955], [8.531091, 47.349924], [8.531092, 47.34992], [8.531092, 47.349917], [8.531092, 47.349913], [8.531091, 47.349909], [8.531089, 47.349905], [8.531087, 47.349902], [8.531085, 47.349898], [8.531082, 47.349895], [8.531079, 47.349892], [8.531076, 47.349889], [8.531072, 47.349886], [8.531068, 47.349883], [8.531063, 47.349881], [8.531058, 47.349879], [8.531053, 47.349878], [8.531048, 47.349876]]], "type": "MultiLineString"}, "id": "3599", "properties": {}, "type": "Feature"}, {"bbox": [8.568864, 47.365014, 8.569026, 47.365573], "geometry": {"coordinates": [[[8.569026, 47.365014], [8.568864, 47.365076], [8.56895, 47.36523], [8.568917, 47.365414], [8.568909, 47.365573]]], "type": "MultiLineString"}, "id": "3603", "properties": {}, "type": "Feature"}, {"bbox": [8.605861, 47.363698, 8.61645, 47.3677], "geometry": {"coordinates": [[[8.605861, 47.365419], [8.606132, 47.36523], [8.606202, 47.365188], [8.606269, 47.365143], [8.606333, 47.365096], [8.606417, 47.365034], [8.606505, 47.364975], [8.606596, 47.364918], [8.606665, 47.364877], [8.606735, 47.364837], [8.606807, 47.364798], [8.60686, 47.36477], [8.606912, 47.36474], [8.606962, 47.36471], [8.606998, 47.364686], [8.607033, 47.364662], [8.607065, 47.364637], [8.607122, 47.364587], [8.607175, 47.364536], [8.607223, 47.364482], [8.607264, 47.364434], [8.607308, 47.364388], [8.607355, 47.364343], [8.607395, 47.364306], [8.607435, 47.36427], [8.607476, 47.364233], [8.607491, 47.364219], [8.607503, 47.364204], [8.607514, 47.364189], [8.607523, 47.364172], [8.607529, 47.364156], [8.607541, 47.364119], [8.607552, 47.364081], [8.607562, 47.364043], [8.607573, 47.364], [8.607585, 47.363957], [8.607598, 47.363914], [8.607606, 47.363891], [8.607617, 47.363869], [8.607631, 47.363847], [8.607647, 47.363826], [8.607667, 47.363807], [8.607688, 47.363788], [8.607712, 47.363771], [8.607739, 47.363756], [8.607778, 47.36374], [8.607819, 47.363727], [8.607861, 47.363716], [8.607904, 47.363708], [8.607949, 47.363702], [8.607994, 47.363699], [8.608039, 47.363698], [8.608084, 47.3637], [8.608183, 47.363712], [8.608279, 47.36373], [8.608373, 47.363754], [8.608462, 47.363784], [8.608516, 47.363805], [8.608569, 47.363828], [8.608619, 47.363852], [8.608718, 47.363902], [8.608818, 47.363951], [8.608918, 47.364], [8.60899, 47.364032], [8.609066, 47.36406], [8.609144, 47.364085], [8.609186, 47.364095], [8.609228, 47.364104], [8.60927, 47.364112], [8.609374, 47.364127], [8.60948, 47.364137], [8.609586, 47.364144], [8.609621, 47.364146], [8.609657, 47.364148], [8.609693, 47.364152], [8.609789, 47.364159], [8.609887, 47.364162], [8.609984, 47.364161], [8.609984, 47.364161], [8.609984, 47.364161], [8.610089, 47.364159], [8.610193, 47.364156], [8.610298, 47.364152], [8.610328, 47.364151], [8.610359, 47.364152], [8.610389, 47.364155], [8.610418, 47.36416], [8.610476, 47.364172], [8.610534, 47.364185], [8.61059, 47.3642], [8.610664, 47.36422], [8.610739, 47.36424], [8.610813, 47.36426], [8.610885, 47.364277], [8.610959, 47.364292], [8.611034, 47.364303], [8.611164, 47.364321], [8.611294, 47.364339], [8.611424, 47.364357], [8.611498, 47.364366], [8.611572, 47.364372], [8.611646, 47.364377], [8.611734, 47.364381], [8.611821, 47.364385], [8.611909, 47.36439], [8.611964, 47.364392], [8.612098, 47.364411], [8.612313, 47.364452], [8.612599, 47.364536], [8.613048, 47.364677], [8.613923, 47.364924], [8.614828, 47.36523], [8.614951, 47.36526], [8.615143, 47.365281], [8.615514, 47.365321], [8.616282, 47.365471], [8.616376, 47.365525], [8.616436, 47.365587], [8.61645, 47.365721], [8.616409, 47.365958], [8.616354, 47.366076], [8.616293, 47.366199], [8.616192, 47.366369], [8.616149, 47.3665], [8.616192, 47.366889], [8.616183, 47.366999], [8.616138, 47.36709], [8.616054, 47.36719], [8.615764, 47.367441], [8.61553, 47.3677]]], "type": "MultiLineString"}, "id": "3607", "properties": {}, "type": "Feature"}, {"bbox": [8.525586, 47.342265, 8.526126, 47.342613], "geometry": {"coordinates": [[[8.525586, 47.342265], [8.525645, 47.342331], [8.52608, 47.342546], [8.526126, 47.342613]]], "type": "MultiLineString"}, "id": "3608", "properties": {}, "type": "Feature"}, {"bbox": [8.508783, 47.407863, 8.509994, 47.409564], "geometry": {"coordinates": [[[8.508783, 47.407863], [8.50895, 47.407923], [8.50912, 47.408148], [8.509326, 47.408435], [8.509307, 47.408515], [8.509319, 47.408647], [8.509325, 47.408929], [8.509574, 47.409269], [8.509759, 47.409528], [8.509854, 47.409564], [8.509994, 47.409516]]], "type": "MultiLineString"}, "id": "3612", "properties": {}, "type": "Feature"}, {"bbox": [8.4959, 47.413502, 8.49809, 47.414233], "geometry": {"coordinates": [[[8.4959, 47.414178], [8.496053, 47.414233], [8.496339, 47.414151], [8.496351, 47.414147], [8.496916, 47.413986], [8.497785, 47.41376], [8.497814, 47.413751], [8.497842, 47.413741], [8.497868, 47.413729], [8.497876, 47.413724], [8.497901, 47.41371], [8.497924, 47.413693], [8.497944, 47.413675], [8.497962, 47.413656], [8.49809, 47.413502]]], "type": "MultiLineString"}, "id": "3613", "properties": {}, "type": "Feature"}, {"bbox": [8.486915, 47.378688, 8.489223, 47.380001], "geometry": {"coordinates": [[[8.489223, 47.378688], [8.489015, 47.378789], [8.487123, 47.379897], [8.486915, 47.380001]]], "type": "MultiLineString"}, "id": "3619", "properties": {}, "type": "Feature"}, {"bbox": [8.509039, 47.371721, 8.509233, 47.372109], "geometry": {"coordinates": [[[8.509091, 47.371721], [8.509043, 47.371874], [8.50904, 47.371883], [8.509039, 47.371892], [8.509039, 47.371901], [8.50904, 47.371911], [8.509042, 47.37192], [8.509046, 47.371932], [8.509052, 47.371943], [8.50906, 47.371954], [8.509069, 47.371965], [8.509117, 47.37202], [8.509143, 47.372042], [8.509233, 47.372109]]], "type": "MultiLineString"}, "id": "3622", "properties": {}, "type": "Feature"}, {"bbox": [8.495096, 47.368234, 8.495614, 47.369169], "geometry": {"coordinates": [[[8.495097, 47.369169], [8.495096, 47.369137], [8.495098, 47.369105], [8.495105, 47.369074], [8.495116, 47.369043], [8.495131, 47.369012], [8.495151, 47.368983], [8.495174, 47.368955], [8.4952, 47.368929], [8.49523, 47.368904], [8.495336, 47.368842], [8.495448, 47.368786], [8.495566, 47.368736], [8.495573, 47.368733], [8.495579, 47.368731], [8.495585, 47.368728], [8.49559, 47.368724], [8.495595, 47.36872], [8.4956, 47.368717], [8.495603, 47.368712], [8.495607, 47.368708], [8.49561, 47.368703], [8.495612, 47.368698], [8.495613, 47.368694], [8.495614, 47.368689], [8.495614, 47.368684], [8.495614, 47.368679], [8.495613, 47.368674], [8.495611, 47.368669], [8.495609, 47.368664], [8.495606, 47.36866], [8.495602, 47.368655], [8.495598, 47.368651], [8.495512, 47.368547], [8.49543, 47.368441], [8.495352, 47.368334], [8.495326, 47.368306], [8.495296, 47.36828], [8.495262, 47.368256], [8.495226, 47.368234]]], "type": "MultiLineString"}, "id": "3628", "properties": {}, "type": "Feature"}, {"bbox": [8.50508, 47.372552, 8.50591, 47.373096], "geometry": {"coordinates": [[[8.50508, 47.372552], [8.50519, 47.372645], [8.505415, 47.372834], [8.505551, 47.372945], [8.505583, 47.372967], [8.505618, 47.372987], [8.505655, 47.373006], [8.505694, 47.373022], [8.505734, 47.373036], [8.505766, 47.373042], [8.505797, 47.373049], [8.505827, 47.373059], [8.505856, 47.373069], [8.505884, 47.373082], [8.50591, 47.373096]]], "type": "MultiLineString"}, "id": "3629", "properties": {}, "type": "Feature"}, {"bbox": [8.533261, 47.383431, 8.534952, 47.384474], "geometry": {"coordinates": [[[8.533261, 47.383431], [8.533658, 47.383668], [8.534015, 47.383892], [8.53418, 47.383993], [8.534952, 47.384474]]], "type": "MultiLineString"}, "id": "3633", "properties": {}, "type": "Feature"}, {"bbox": [8.564974, 47.357963, 8.572543, 47.359706], "geometry": {"coordinates": [[[8.564974, 47.359624], [8.565097, 47.359622], [8.565219, 47.359627], [8.565341, 47.359639], [8.565461, 47.359658], [8.565527, 47.359677], [8.565594, 47.359691], [8.565664, 47.3597], [8.565734, 47.359706], [8.565772, 47.359702], [8.56581, 47.359696], [8.565847, 47.359689], [8.565882, 47.359678], [8.565916, 47.359666], [8.56604, 47.359622], [8.566146, 47.359578], [8.566262, 47.359516], [8.566114, 47.359388], [8.566102, 47.359372], [8.566357, 47.359153], [8.566507, 47.359029], [8.566643, 47.358917], [8.566662, 47.358901], [8.566684, 47.358885], [8.566707, 47.358872], [8.566733, 47.358859], [8.566759, 47.358849], [8.56683, 47.358813], [8.566895, 47.358774], [8.566954, 47.35873], [8.567051, 47.358643], [8.567065, 47.358625], [8.567081, 47.358607], [8.5671, 47.358591], [8.56712, 47.358576], [8.567143, 47.358562], [8.567167, 47.358549], [8.567192, 47.358537], [8.567219, 47.358528], [8.567247, 47.358519], [8.567276, 47.358513], [8.567306, 47.358508], [8.567336, 47.358505], [8.567367, 47.358504], [8.567406, 47.358506], [8.567445, 47.358511], [8.567483, 47.358518], [8.56752, 47.358528], [8.567555, 47.358539], [8.567768, 47.358592], [8.567782, 47.358594], [8.567796, 47.358598], [8.56781, 47.358602], [8.567823, 47.358607], [8.567835, 47.358612], [8.567847, 47.358618], [8.567858, 47.358625], [8.567868, 47.358633], [8.567877, 47.358641], [8.567885, 47.358649], [8.56794, 47.358703], [8.567949, 47.358712], [8.56796, 47.358721], [8.567971, 47.358729], [8.567984, 47.358736], [8.567998, 47.358742], [8.568012, 47.358748], [8.568027, 47.358753], [8.568042, 47.358757], [8.568058, 47.35876], [8.568074, 47.358762], [8.568379, 47.358796], [8.568462, 47.358795], [8.568604, 47.358799], [8.568991, 47.358745], [8.569262, 47.358695], [8.569503, 47.358647], [8.569563, 47.358614], [8.569608, 47.358578], [8.569694, 47.358466], [8.56967, 47.358347], [8.569854, 47.35832], [8.569873, 47.358312], [8.569864, 47.358158], [8.56986, 47.358095], [8.569859, 47.358085], [8.569859, 47.358075], [8.56986, 47.358065], [8.569863, 47.358055], [8.569867, 47.358045], [8.569872, 47.358036], [8.569878, 47.358026], [8.569886, 47.358018], [8.569894, 47.358009], [8.569903, 47.358002], [8.569914, 47.357994], [8.569925, 47.357988], [8.569937, 47.357982], [8.56995, 47.357977], [8.569963, 47.357972], [8.569977, 47.357969], [8.569992, 47.357966], [8.570006, 47.357964], [8.570021, 47.357963], [8.570036, 47.357963], [8.570051, 47.357963], [8.570065, 47.357965], [8.57008, 47.357967], [8.570094, 47.35797], [8.570108, 47.357974], [8.57018, 47.358], [8.570254, 47.358024], [8.570329, 47.358046], [8.570381, 47.35806], [8.570435, 47.358072], [8.570491, 47.35808], [8.570547, 47.358086], [8.570603, 47.358088], [8.571107, 47.358115], [8.571313, 47.358083], [8.571446, 47.35807], [8.571486, 47.358076], [8.571882, 47.358132], [8.57236, 47.358167], [8.572421, 47.358177], [8.572543, 47.357974]]], "type": "MultiLineString"}, "id": "3634", "properties": {}, "type": "Feature"}, {"bbox": [8.540464, 47.406599, 8.540912, 47.407547], "geometry": {"coordinates": [[[8.540464, 47.407547], [8.540496, 47.407512], [8.540523, 47.407477], [8.540546, 47.40744], [8.540564, 47.407401], [8.540577, 47.407362], [8.540586, 47.407323], [8.540592, 47.407197], [8.540601, 47.407072], [8.540612, 47.406947], [8.540622, 47.406907], [8.540637, 47.406868], [8.540656, 47.40683], [8.54068, 47.406792], [8.540783, 47.406689], [8.540912, 47.406599]]], "type": "MultiLineString"}, "id": "3635", "properties": {}, "type": "Feature"}, {"bbox": [8.540756, 47.424702, 8.541688, 47.425679], "geometry": {"coordinates": [[[8.540756, 47.424702], [8.540943, 47.424897], [8.541, 47.424953], [8.541061, 47.425007], [8.541125, 47.425058], [8.541201, 47.425125], [8.541272, 47.425194], [8.54134, 47.425265], [8.541372, 47.425291], [8.541407, 47.425316], [8.541445, 47.425337], [8.541486, 47.425357], [8.541529, 47.425374], [8.541541, 47.425379], [8.541553, 47.425386], [8.541563, 47.425393], [8.541572, 47.425401], [8.541581, 47.425409], [8.541588, 47.425418], [8.541594, 47.425427], [8.541599, 47.425437], [8.541603, 47.425446], [8.541606, 47.425456], [8.541688, 47.425679]]], "type": "MultiLineString"}, "id": "3636", "properties": {}, "type": "Feature"}, {"bbox": [8.569341, 47.347771, 8.571133, 47.34827], "geometry": {"coordinates": [[[8.571133, 47.348154], [8.570725, 47.348043], [8.570317, 47.347932], [8.569909, 47.347821], [8.569722, 47.347774], [8.569713, 47.347772], [8.569704, 47.347771], [8.569695, 47.347771], [8.569686, 47.347771], [8.569677, 47.347772], [8.569668, 47.347773], [8.569659, 47.347774], [8.569651, 47.347777], [8.569643, 47.347779], [8.569635, 47.347783], [8.569627, 47.347786], [8.569621, 47.34779], [8.569614, 47.347795], [8.569609, 47.347799], [8.569603, 47.347804], [8.569599, 47.34781], [8.569595, 47.347815], [8.569592, 47.347821], [8.569341, 47.34827]]], "type": "MultiLineString"}, "id": "3637", "properties": {}, "type": "Feature"}, {"bbox": [8.577279, 47.384704, 8.582983, 47.389279], "geometry": {"coordinates": [[[8.577279, 47.384704], [8.57744, 47.384795], [8.577596, 47.38489], [8.577747, 47.384988], [8.577782, 47.385013], [8.577813, 47.38504], [8.57784, 47.385068], [8.577864, 47.385099], [8.577883, 47.38513], [8.577897, 47.385163], [8.577958, 47.385282], [8.578033, 47.38532], [8.578291, 47.385429], [8.578594, 47.385558], [8.57868, 47.385623], [8.578757, 47.385693], [8.578825, 47.385767], [8.578883, 47.385845], [8.579208, 47.386243], [8.579222, 47.386269], [8.579271, 47.3864], [8.57928, 47.386431], [8.579294, 47.38649], [8.579314, 47.386548], [8.579342, 47.386605], [8.579376, 47.38666], [8.579418, 47.386712], [8.579466, 47.386762], [8.579751, 47.387082], [8.579867, 47.387151], [8.579991, 47.387213], [8.580122, 47.387268], [8.580514, 47.387365], [8.581141, 47.387519], [8.581275, 47.387549], [8.581406, 47.387585], [8.581534, 47.387625], [8.581697, 47.38768], [8.581856, 47.387739], [8.582011, 47.387802], [8.582052, 47.387833], [8.582089, 47.387866], [8.582122, 47.387901], [8.582151, 47.387938], [8.582174, 47.387976], [8.58258, 47.388627], [8.582777, 47.38897], [8.582927, 47.389232], [8.582983, 47.389279]]], "type": "MultiLineString"}, "id": "3638", "properties": {}, "type": "Feature"}, {"bbox": [8.498822, 47.370118, 8.50019, 47.372831], "geometry": {"coordinates": [[[8.499926, 47.372831], [8.500157, 47.372462], [8.50017, 47.372438], [8.50018, 47.372413], [8.500187, 47.372388], [8.50019, 47.372362], [8.50019, 47.372337], [8.500187, 47.372311], [8.50018, 47.372286], [8.50017, 47.372261], [8.500157, 47.372237], [8.500141, 47.372214], [8.500122, 47.372191], [8.5001, 47.37217], [8.500075, 47.372151], [8.500048, 47.372133], [8.500018, 47.372117], [8.499987, 47.372103], [8.499953, 47.37209], [8.499472, 47.371953], [8.499435, 47.371942], [8.4994, 47.371929], [8.499367, 47.371914], [8.499335, 47.371897], [8.499306, 47.371879], [8.499279, 47.371859], [8.499255, 47.371837], [8.499233, 47.371814], [8.499215, 47.37179], [8.499199, 47.371765], [8.499187, 47.371739], [8.499178, 47.371713], [8.499172, 47.371686], [8.49917, 47.371659], [8.499107, 47.371187], [8.498937, 47.371021], [8.498822, 47.370118]]], "type": "MultiLineString"}, "id": "3639", "properties": {}, "type": "Feature"}, {"bbox": [8.604747, 47.35976, 8.612524, 47.362012], "geometry": {"coordinates": [[[8.604747, 47.35976], [8.604855, 47.359901], [8.604863, 47.359909], [8.60487, 47.359917], [8.604878, 47.359925], [8.604918, 47.359963], [8.604958, 47.360002], [8.604998, 47.36004], [8.604999, 47.36004], [8.605045, 47.360079], [8.60506, 47.360092], [8.605076, 47.360104], [8.605091, 47.360115], [8.605125, 47.360138], [8.60516, 47.36016], [8.605196, 47.36018], [8.605257, 47.360212], [8.605298, 47.360234], [8.605361, 47.360269], [8.605426, 47.360302], [8.605492, 47.360334], [8.605492, 47.360335], [8.605493, 47.360335], [8.605499, 47.360337], [8.605505, 47.36034], [8.605512, 47.360343], [8.605587, 47.360375], [8.605664, 47.360405], [8.605743, 47.360434], [8.605743, 47.360434], [8.605743, 47.360434], [8.606105, 47.360561], [8.60616, 47.36058], [8.60634, 47.360643], [8.60634, 47.360643], [8.606429, 47.360672], [8.60652, 47.360697], [8.606612, 47.36072], [8.606705, 47.36074], [8.6068, 47.360757], [8.606895, 47.36077], [8.607145, 47.360801], [8.607361, 47.360834], [8.607526, 47.360866], [8.607526, 47.360866], [8.607654, 47.360889], [8.607784, 47.360908], [8.607915, 47.360924], [8.607954, 47.360929], [8.607993, 47.360932], [8.608032, 47.360936], [8.608125, 47.360943], [8.608218, 47.360948], [8.608311, 47.360951], [8.608845, 47.360966], [8.608884, 47.360967], [8.608965, 47.360972], [8.609044, 47.360982], [8.609122, 47.360997], [8.60939, 47.361057], [8.609427, 47.361066], [8.609504, 47.361083], [8.609578, 47.361099], [8.609653, 47.361115], [8.609727, 47.361131], [8.60982, 47.361152], [8.609913, 47.361175], [8.610006, 47.361198], [8.610127, 47.361229], [8.610249, 47.361259], [8.61037, 47.36129], [8.610449, 47.361311], [8.610528, 47.361333], [8.610605, 47.361356], [8.61069, 47.361385], [8.610771, 47.361417], [8.610849, 47.361453], [8.610914, 47.361485], [8.610979, 47.361517], [8.611044, 47.36155], [8.611127, 47.361591], [8.61121, 47.361633], [8.611291, 47.361676], [8.611387, 47.361726], [8.611483, 47.361775], [8.611579, 47.361825], [8.611593, 47.361832], [8.611607, 47.361839], [8.611621, 47.361846], [8.611656, 47.361863], [8.611663, 47.361866], [8.611682, 47.361875], [8.611701, 47.361884], [8.611719, 47.361893], [8.611772, 47.361915], [8.611827, 47.361935], [8.611885, 47.361951], [8.611944, 47.361964], [8.611987, 47.361972], [8.612032, 47.361978], [8.612076, 47.361984], [8.612123, 47.361989], [8.61217, 47.361993], [8.612217, 47.361996], [8.612244, 47.361998], [8.612272, 47.362001], [8.6123, 47.362003], [8.612524, 47.362012]]], "type": "MultiLineString"}, "id": "3640", "properties": {}, "type": "Feature"}, {"bbox": [8.520969, 47.411228, 8.522442, 47.412849], "geometry": {"coordinates": [[[8.522442, 47.411228], [8.521915, 47.411533], [8.521543, 47.411888], [8.521898, 47.412109], [8.52167, 47.41228], [8.521329, 47.412482], [8.521071, 47.412686], [8.520969, 47.412849]]], "type": "MultiLineString"}, "id": "3641", "properties": {}, "type": "Feature"}, {"bbox": [8.468505, 47.366195, 8.473068, 47.367042], "geometry": {"coordinates": [[[8.468505, 47.367042], [8.468512, 47.367037], [8.468519, 47.367033], [8.468526, 47.36703], [8.468534, 47.367026], [8.468584, 47.367018], [8.468606, 47.367017], [8.468628, 47.367017], [8.46865, 47.367018], [8.468701, 47.367022], [8.468751, 47.367025], [8.468802, 47.367027], [8.468849, 47.367028], [8.468896, 47.367028], [8.468943, 47.367027], [8.468984, 47.367026], [8.469025, 47.367025], [8.469066, 47.367025], [8.469066, 47.367025], [8.469149, 47.367027], [8.469231, 47.36703], [8.469313, 47.367035], [8.469417, 47.367041], [8.469521, 47.367042], [8.469626, 47.367039], [8.469695, 47.367035], [8.469764, 47.36703], [8.469834, 47.367024], [8.469871, 47.367021], [8.469908, 47.367017], [8.469945, 47.367013], [8.470021, 47.367003], [8.470098, 47.366994], [8.470175, 47.366985], [8.470274, 47.366973], [8.470374, 47.366961], [8.470473, 47.366948], [8.470509, 47.366943], [8.470545, 47.36694], [8.470581, 47.366937], [8.470608, 47.366935], [8.470635, 47.366934], [8.470663, 47.366933], [8.470702, 47.366931], [8.470741, 47.366929], [8.47078, 47.366927], [8.470942, 47.366917], [8.470994, 47.366914], [8.471046, 47.366911], [8.471098, 47.366908], [8.471146, 47.366905], [8.471194, 47.366899], [8.471242, 47.366891], [8.471296, 47.36688], [8.471351, 47.36687], [8.471406, 47.366861], [8.471498, 47.366844], [8.47159, 47.366826], [8.471681, 47.366807], [8.471755, 47.366788], [8.471826, 47.366765], [8.471895, 47.366738], [8.471959, 47.366707], [8.472031, 47.36667], [8.472103, 47.366633], [8.472176, 47.366596], [8.472264, 47.366552], [8.472352, 47.366509], [8.472442, 47.366467], [8.472527, 47.366426], [8.472612, 47.366385], [8.472697, 47.366344], [8.472762, 47.366313], [8.47283, 47.366285], [8.4729, 47.36626], [8.472934, 47.366249], [8.472969, 47.366238], [8.473004, 47.366227], [8.473018, 47.366222], [8.473032, 47.366217], [8.473045, 47.36621], [8.473057, 47.366203], [8.473068, 47.366195]]], "type": "MultiLineString"}, "id": "3644", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.368758, 8.54396, 47.368821], "geometry": {"coordinates": [[[8.543839, 47.368758], [8.54396, 47.368821]]], "type": "MultiLineString"}, "id": "3645", "properties": {}, "type": "Feature"}, {"bbox": [8.589438, 47.375922, 8.596659, 47.37896], "geometry": {"coordinates": [[[8.589438, 47.378939], [8.589476, 47.378946], [8.589532, 47.378954], [8.589588, 47.378959], [8.589644, 47.37896], [8.589701, 47.378959], [8.589757, 47.378954], [8.589813, 47.378946], [8.589867, 47.378935], [8.58991, 47.378924], [8.589952, 47.378911], [8.589993, 47.378896], [8.590708, 47.378609], [8.591445, 47.378323], [8.592018, 47.378101], [8.592921, 47.377748], [8.593213, 47.377633], [8.594032, 47.377317], [8.594442, 47.377158], [8.595394, 47.376789], [8.595435, 47.376771], [8.595475, 47.376751], [8.595512, 47.37673], [8.595546, 47.376706], [8.596218, 47.376202], [8.596271, 47.376165], [8.596326, 47.376129], [8.596385, 47.376096], [8.596563, 47.375999], [8.596585, 47.375986], [8.596607, 47.375971], [8.596626, 47.375956], [8.596644, 47.375939], [8.596659, 47.375922]]], "type": "MultiLineString"}, "id": "3646", "properties": {}, "type": "Feature"}, {"bbox": [8.5269, 47.378193, 8.527155, 47.378403], "geometry": {"coordinates": [[[8.5269, 47.378279], [8.52696, 47.378245], [8.527051, 47.378403], [8.527155, 47.378355], [8.52706, 47.378193], [8.52696, 47.378245]]], "type": "MultiLineString"}, "id": "3647", "properties": {}, "type": "Feature"}, {"bbox": [8.548732, 47.410416, 8.550047, 47.410551], "geometry": {"coordinates": [[[8.548732, 47.410416], [8.549768, 47.410524], [8.549861, 47.410533], [8.549954, 47.410542], [8.550047, 47.410551]]], "type": "MultiLineString"}, "id": "3648", "properties": {}, "type": "Feature"}, {"bbox": [8.483968, 47.367834, 8.486763, 47.37353], "geometry": {"coordinates": [[[8.484318, 47.37353], [8.48421, 47.373453], [8.48419, 47.373442], [8.484172, 47.373429], [8.484155, 47.373415], [8.484141, 47.373401], [8.484128, 47.373386], [8.484117, 47.373369], [8.484108, 47.373353], [8.484102, 47.373336], [8.484097, 47.373318], [8.483993, 47.372924], [8.483981, 47.372867], [8.483972, 47.37281], [8.483968, 47.372752], [8.483977, 47.372121], [8.483977, 47.372076], [8.483982, 47.372032], [8.483994, 47.371988], [8.484055, 47.371894], [8.484128, 47.371804], [8.484212, 47.371719], [8.484305, 47.371638], [8.484382, 47.371527], [8.484446, 47.371413], [8.484495, 47.371295], [8.484529, 47.371175], [8.484548, 47.371054], [8.484561, 47.370946], [8.484567, 47.370838], [8.484565, 47.37073], [8.48456, 47.370696], [8.484554, 47.370663], [8.484546, 47.37063], [8.484531, 47.370573], [8.484525, 47.370515], [8.484526, 47.370457], [8.484534, 47.370399], [8.484551, 47.370342], [8.484575, 47.370286], [8.484661, 47.370184], [8.484757, 47.370085], [8.484861, 47.36999], [8.48508, 47.369783], [8.485279, 47.369567], [8.485457, 47.369343], [8.485509, 47.369214], [8.48557, 47.36906], [8.485556, 47.368998], [8.485478, 47.368858], [8.485473, 47.368848], [8.485469, 47.368837], [8.485467, 47.368827], [8.485466, 47.368816], [8.485467, 47.368805], [8.485468, 47.368795], [8.485472, 47.368784], [8.485476, 47.368774], [8.485482, 47.368764], [8.485485, 47.36876], [8.485717, 47.368639], [8.485731, 47.368632], [8.485745, 47.368624], [8.485758, 47.368616], [8.485759, 47.368616], [8.485778, 47.368604], [8.485925, 47.368491], [8.486763, 47.367834]]], "type": "MultiLineString"}, "id": "3649", "properties": {}, "type": "Feature"}, {"bbox": [8.519087, 47.379729, 8.519155, 47.379764], "geometry": {"coordinates": [[[8.519087, 47.379764], [8.519155, 47.379729]]], "type": "MultiLineString"}, "id": "3653", "properties": {}, "type": "Feature"}, {"bbox": [8.56625, 47.363846, 8.566723, 47.364435], "geometry": {"coordinates": [[[8.566709, 47.364106], [8.566716, 47.364089], [8.566721, 47.364071], [8.566723, 47.364054], [8.566723, 47.364036], [8.56672, 47.364018], [8.566716, 47.364001], [8.566709, 47.363984], [8.5667, 47.363967], [8.566689, 47.363951], [8.566675, 47.363936], [8.56666, 47.363922], [8.566643, 47.363908], [8.566625, 47.363896], [8.566605, 47.363885], [8.566583, 47.363875], [8.56656, 47.363866], [8.566537, 47.363859], [8.566512, 47.363853], [8.566487, 47.363848], [8.566461, 47.363846], [8.566442, 47.363847], [8.566423, 47.363849], [8.566404, 47.363853], [8.566386, 47.363857], [8.566369, 47.363863], [8.566352, 47.36387], [8.566337, 47.363877], [8.566322, 47.363886], [8.566308, 47.363895], [8.566296, 47.363905], [8.566285, 47.363916], [8.566275, 47.363927], [8.566267, 47.363939], [8.56626, 47.363951], [8.566255, 47.363964], [8.566252, 47.363977], [8.56625, 47.36399], [8.56625, 47.364003], [8.566252, 47.364016], [8.566255, 47.364029], [8.566259, 47.364042], [8.566266, 47.364054], [8.566295, 47.36409], [8.566329, 47.364125], [8.566367, 47.364157], [8.56641, 47.364187], [8.566428, 47.364203], [8.566444, 47.364221], [8.566458, 47.364238], [8.56647, 47.364257], [8.566479, 47.364276], [8.566486, 47.364296], [8.56649, 47.364316], [8.566492, 47.364336], [8.566491, 47.364356], [8.566488, 47.364377], [8.566482, 47.364396], [8.566474, 47.364416], [8.566464, 47.364435]]], "type": "MultiLineString"}, "id": "3654", "properties": {}, "type": "Feature"}, {"bbox": [8.533607, 47.394573, 8.536224, 47.3965], "geometry": {"coordinates": [[[8.536224, 47.394573], [8.535382, 47.39514], [8.534463, 47.395763], [8.534143, 47.395989], [8.533856, 47.396236], [8.533607, 47.3965]]], "type": "MultiLineString"}, "id": "3655", "properties": {}, "type": "Feature"}, {"bbox": [8.474314, 47.382754, 8.474651, 47.383159], "geometry": {"coordinates": [[[8.474318, 47.382891], [8.474316, 47.382881], [8.474314, 47.382871], [8.474314, 47.382861], [8.474316, 47.382852], [8.474318, 47.382842], [8.474322, 47.382832], [8.474327, 47.382823], [8.474333, 47.382814], [8.474341, 47.382806], [8.474349, 47.382798], [8.474359, 47.38279], [8.474369, 47.382783], [8.47438, 47.382777], [8.474392, 47.382771], [8.474405, 47.382766], [8.474418, 47.382762], [8.474432, 47.382759], [8.474446, 47.382757], [8.47446, 47.382755], [8.474475, 47.382754], [8.474489, 47.382754], [8.474504, 47.382755], [8.474518, 47.382757], [8.474532, 47.38276], [8.474546, 47.382763], [8.474559, 47.382768], [8.474571, 47.382773], [8.474583, 47.382778], [8.474594, 47.382785], [8.474604, 47.382792], [8.474613, 47.3828], [8.474622, 47.382808], [8.474634, 47.382834], [8.474643, 47.382861], [8.474649, 47.382888], [8.474651, 47.382915], [8.47465, 47.382943], [8.474645, 47.38297], [8.474637, 47.382997], [8.474626, 47.383024], [8.474618, 47.383046], [8.474614, 47.383069], [8.474612, 47.383091], [8.474613, 47.383114], [8.474618, 47.383137], [8.474625, 47.383159]]], "type": "MultiLineString"}, "id": "3656", "properties": {}, "type": "Feature"}, {"bbox": [8.496008, 47.405484, 8.503484, 47.408823], "geometry": {"coordinates": [[[8.503484, 47.40549], [8.503291, 47.405484], [8.503099, 47.405489], [8.502908, 47.405506], [8.50272, 47.405535], [8.502536, 47.405574], [8.502358, 47.405624], [8.502188, 47.405684], [8.500942, 47.406212], [8.500785, 47.406291], [8.50062, 47.406361], [8.500448, 47.406423], [8.500063, 47.406535], [8.499675, 47.406642], [8.499284, 47.406743], [8.49909, 47.406797], [8.498903, 47.406861], [8.498724, 47.406935], [8.498555, 47.407019], [8.498199, 47.4072], [8.497862, 47.407397], [8.497547, 47.40761], [8.497448, 47.407685], [8.497217, 47.40793], [8.496953, 47.40816], [8.49666, 47.408372], [8.496443, 47.408522], [8.496226, 47.408673], [8.496008, 47.408823]]], "type": "MultiLineString"}, "id": "3657", "properties": {}, "type": "Feature"}, {"bbox": [8.581493, 47.392857, 8.582719, 47.394991], "geometry": {"coordinates": [[[8.582719, 47.394991], [8.582669, 47.394849], [8.582632, 47.394713], [8.582614, 47.394666], [8.58259, 47.394621], [8.582561, 47.394577], [8.582528, 47.394539], [8.582375, 47.394365], [8.582302, 47.394259], [8.582296, 47.39425], [8.582296, 47.39425], [8.582287, 47.394237], [8.582278, 47.394223], [8.582271, 47.394209], [8.582264, 47.394195], [8.582258, 47.394181], [8.582254, 47.394166], [8.58221, 47.394016], [8.582129, 47.393807], [8.582129, 47.393807], [8.582121, 47.393791], [8.582112, 47.393776], [8.582101, 47.393762], [8.582088, 47.393748], [8.582073, 47.393734], [8.582056, 47.393722], [8.582037, 47.39371], [8.582017, 47.3937], [8.58187, 47.393615], [8.58187, 47.393615], [8.581858, 47.393607], [8.581848, 47.393599], [8.581838, 47.393591], [8.581829, 47.393581], [8.581822, 47.393572], [8.581816, 47.393562], [8.581811, 47.393551], [8.581807, 47.393541], [8.581805, 47.39353], [8.581804, 47.393519], [8.581803, 47.393492], [8.581802, 47.393465], [8.581799, 47.393438], [8.581796, 47.393412], [8.581792, 47.393385], [8.581787, 47.393359], [8.581787, 47.393359], [8.581771, 47.393288], [8.581771, 47.393288], [8.581768, 47.393276], [8.581767, 47.393264], [8.581766, 47.393252], [8.581766, 47.393239], [8.581767, 47.393226], [8.581769, 47.393213], [8.581786, 47.393159], [8.581787, 47.393154], [8.581788, 47.393149], [8.581789, 47.393144], [8.581789, 47.393138], [8.581788, 47.393133], [8.581786, 47.393128], [8.581784, 47.393123], [8.581782, 47.393119], [8.581778, 47.393114], [8.581774, 47.39311], [8.58177, 47.393106], [8.581585, 47.392909], [8.581575, 47.392899], [8.581564, 47.39289], [8.581552, 47.392882], [8.581539, 47.392874], [8.581524, 47.392868], [8.581509, 47.392862], [8.581493, 47.392857]]], "type": "MultiLineString"}, "id": "3660", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.371529, 8.541883, 47.371595], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541444, 47.371593], [8.54145, 47.371588], [8.541457, 47.371583], [8.541465, 47.371579], [8.541473, 47.371575], [8.541482, 47.371571], [8.541491, 47.371569], [8.541501, 47.371566], [8.54151, 47.371564], [8.54152, 47.371563], [8.54153, 47.371563], [8.54154, 47.371563], [8.54155, 47.371563], [8.541571, 47.371565], [8.541651, 47.371571], [8.541877, 47.371595], [8.541883, 47.371529]]], "type": "MultiLineString"}, "id": "3661", "properties": {}, "type": "Feature"}, {"bbox": [8.480421, 47.390095, 8.480605, 47.390336], "geometry": {"coordinates": [[[8.480605, 47.390336], [8.480541, 47.39027], [8.480421, 47.390095]]], "type": "MultiLineString"}, "id": "3662", "properties": {}, "type": "Feature"}, {"bbox": [8.48669, 47.407398, 8.489379, 47.408169], "geometry": {"coordinates": [[[8.48669, 47.407398], [8.486879, 47.407481], [8.48692, 47.407492], [8.487034, 47.407518], [8.487474, 47.407629], [8.487743, 47.407679], [8.487872, 47.407697], [8.488101, 47.407716], [8.488161, 47.407721], [8.488219, 47.407729], [8.488276, 47.40774], [8.488332, 47.407755], [8.488386, 47.407773], [8.488437, 47.407795], [8.488501, 47.407823], [8.488562, 47.407855], [8.488618, 47.407891], [8.488669, 47.40793], [8.488715, 47.407971], [8.488803, 47.408056], [8.488828, 47.408077], [8.488856, 47.408097], [8.488886, 47.408115], [8.488918, 47.408132], [8.488951, 47.408146], [8.488987, 47.408159], [8.489024, 47.408169], [8.489036, 47.408169], [8.489049, 47.408168], [8.489061, 47.408167], [8.489073, 47.408165], [8.489085, 47.408162], [8.489096, 47.408159], [8.489107, 47.408154], [8.489118, 47.40815], [8.489127, 47.408144], [8.489136, 47.408139], [8.489145, 47.408132], [8.489275, 47.408029], [8.489379, 47.408038]]], "type": "MultiLineString"}, "id": "3665", "properties": {}, "type": "Feature"}, {"bbox": [8.546681, 47.369428, 8.547244, 47.370733], "geometry": {"coordinates": [[[8.546681, 47.370733], [8.546759, 47.370578], [8.54707, 47.369923], [8.547079, 47.369912], [8.547086, 47.369901], [8.547092, 47.369889], [8.547096, 47.369877], [8.547099, 47.369864], [8.5471, 47.369852], [8.5471, 47.369839], [8.547098, 47.369826], [8.547094, 47.369814], [8.547062, 47.369666], [8.547244, 47.369428]]], "type": "MultiLineString"}, "id": "3666", "properties": {}, "type": "Feature"}, {"bbox": [8.563243, 47.393619, 8.563456, 47.39563], "geometry": {"coordinates": [[[8.563252, 47.393619], [8.563284, 47.3937], [8.563297, 47.393732], [8.563313, 47.393763], [8.563332, 47.393793], [8.563434, 47.393952], [8.563442, 47.393965], [8.563448, 47.393979], [8.563453, 47.393994], [8.563455, 47.394008], [8.563456, 47.394023], [8.563455, 47.394037], [8.563452, 47.394052], [8.563419, 47.394175], [8.563419, 47.394188], [8.563419, 47.394201], [8.563412, 47.394226], [8.563392, 47.39434], [8.563357, 47.394416], [8.563353, 47.394449], [8.563349, 47.394481], [8.563394, 47.39466], [8.563325, 47.395115], [8.563247, 47.395602], [8.563243, 47.39563]]], "type": "MultiLineString"}, "id": "3669", "properties": {}, "type": "Feature"}, {"bbox": [8.492086, 47.42681, 8.496791, 47.427656], "geometry": {"coordinates": [[[8.496791, 47.426955], [8.496573, 47.426931], [8.496183, 47.426894], [8.495749, 47.426856], [8.495472, 47.426834], [8.49502, 47.42681], [8.494363, 47.426819], [8.494319, 47.42682], [8.494274, 47.426824], [8.494231, 47.42683], [8.494188, 47.426839], [8.494147, 47.426851], [8.494107, 47.426865], [8.49407, 47.426882], [8.493301, 47.4273], [8.493104, 47.427397], [8.492731, 47.427541], [8.492449, 47.427626], [8.492086, 47.427656]]], "type": "MultiLineString"}, "id": "3671", "properties": {}, "type": "Feature"}, {"bbox": [8.538729, 47.371552, 8.53975, 47.372053], "geometry": {"coordinates": [[[8.539595, 47.372053], [8.53975, 47.372008], [8.539592, 47.371962], [8.539146, 47.371816], [8.539255, 47.371654], [8.539116, 47.371611], [8.538758, 47.371552], [8.538729, 47.371599]]], "type": "MultiLineString"}, "id": "3672", "properties": {}, "type": "Feature"}, {"bbox": [8.486906, 47.375661, 8.487562, 47.37741], "geometry": {"coordinates": [[[8.487562, 47.375661], [8.487156, 47.376629], [8.487132, 47.376719], [8.487251, 47.376811], [8.486906, 47.37741]]], "type": "MultiLineString"}, "id": "3673", "properties": {}, "type": "Feature"}, {"bbox": [8.570094, 47.413273, 8.573881, 47.419205], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.572348, 47.413394], [8.572441, 47.41336], [8.573127, 47.413273], [8.573413, 47.413285], [8.573566, 47.413319], [8.573675, 47.413365], [8.573768, 47.413438], [8.57382, 47.413505], [8.573851, 47.4136], [8.573863, 47.41373], [8.573881, 47.413892], [8.573879, 47.414018], [8.573867, 47.414147], [8.573822, 47.414288], [8.573735, 47.414397], [8.573591, 47.414516], [8.573284, 47.414695], [8.57285, 47.414912], [8.572575, 47.415043], [8.57219, 47.415223], [8.572184, 47.415226], [8.572178, 47.415229], [8.572172, 47.415233], [8.572168, 47.415237], [8.572163, 47.415242], [8.572159, 47.415246], [8.571987, 47.415474], [8.571982, 47.415482], [8.571978, 47.41549], [8.571974, 47.415498], [8.571972, 47.415507], [8.571971, 47.415515], [8.57197, 47.415524], [8.571971, 47.415532], [8.572009, 47.415777], [8.572114, 47.416346], [8.572237, 47.416701], [8.572245, 47.416726], [8.572261, 47.416814], [8.572288, 47.41697], [8.572299, 47.417127], [8.572295, 47.417284], [8.57229, 47.417327], [8.57228, 47.41737], [8.572266, 47.417412], [8.572173, 47.417661], [8.572101, 47.417841], [8.572068, 47.417914], [8.572026, 47.417986], [8.571975, 47.418055], [8.571916, 47.418121], [8.571867, 47.418161], [8.571814, 47.418198], [8.571756, 47.418232], [8.571694, 47.418262], [8.571629, 47.418289], [8.571532, 47.418324], [8.571433, 47.418354], [8.571331, 47.418381], [8.57122, 47.418405], [8.571108, 47.418428], [8.570996, 47.418449], [8.570765, 47.418483], [8.57066, 47.4185], [8.570307, 47.418571], [8.5703, 47.418572], [8.570295, 47.418573], [8.570289, 47.418575], [8.570284, 47.418577], [8.570278, 47.41858], [8.570274, 47.418583], [8.570269, 47.418586], [8.570265, 47.418589], [8.570262, 47.418593], [8.570259, 47.418597], [8.570256, 47.418601], [8.570254, 47.418605], [8.570253, 47.418609], [8.570252, 47.418613], [8.570252, 47.418617], [8.570252, 47.418622], [8.570253, 47.418626], [8.570254, 47.41863], [8.570366, 47.41901], [8.570369, 47.419021], [8.57037, 47.419033], [8.57037, 47.419044], [8.570368, 47.419055], [8.570365, 47.419067], [8.570312, 47.419115], [8.570238, 47.419143], [8.570166, 47.419174], [8.570094, 47.419205]]], "type": "MultiLineString"}, "id": "3674", "properties": {}, "type": "Feature"}, {"bbox": [8.523093, 47.355272, 8.524193, 47.360066], "geometry": {"coordinates": [[[8.523093, 47.360066], [8.523227, 47.359637], [8.52328, 47.359416], [8.523577, 47.358491], [8.523632, 47.358316], [8.523924, 47.357398], [8.524048, 47.357002], [8.524121, 47.356587], [8.524138, 47.356436], [8.524117, 47.356261], [8.524115, 47.35616], [8.524141, 47.355876], [8.524191, 47.355387], [8.524192, 47.355383], [8.524193, 47.355378], [8.524193, 47.355373], [8.524192, 47.355369], [8.524191, 47.355364], [8.52419, 47.355359], [8.524187, 47.355355], [8.524184, 47.35535], [8.524181, 47.355346], [8.524177, 47.355342], [8.524173, 47.355339], [8.524168, 47.355335], [8.524163, 47.355332], [8.524157, 47.355329], [8.524151, 47.355327], [8.524145, 47.355325], [8.524138, 47.355323], [8.524131, 47.355322], [8.524125, 47.355321], [8.523951, 47.355272]]], "type": "MultiLineString"}, "id": "3675", "properties": {}, "type": "Feature"}, {"bbox": [8.571882, 47.360214, 8.572891, 47.3609], "geometry": {"coordinates": [[[8.571882, 47.3609], [8.571894, 47.360809], [8.572101, 47.360483], [8.572128, 47.360447], [8.572159, 47.360413], [8.572194, 47.360382], [8.572234, 47.360352], [8.572277, 47.360325], [8.572323, 47.3603], [8.572373, 47.360278], [8.572424, 47.360259], [8.572479, 47.360243], [8.572535, 47.360231], [8.572592, 47.360222], [8.572891, 47.360214]]], "type": "MultiLineString"}, "id": "3676", "properties": {}, "type": "Feature"}, {"bbox": [8.590219, 47.365068, 8.602161, 47.370458], "geometry": {"coordinates": [[[8.590219, 47.365068], [8.590554, 47.365114], [8.590922, 47.365136], [8.591287, 47.365176], [8.591647, 47.365235], [8.59196, 47.365333], [8.592264, 47.365442], [8.59256, 47.365562], [8.592783, 47.365628], [8.593622, 47.365755], [8.594292, 47.365896], [8.59468, 47.366031], [8.595406, 47.366322], [8.596458, 47.366705], [8.597319, 47.367058], [8.59801, 47.367446], [8.598416, 47.367701], [8.599122, 47.368165], [8.599138, 47.368173], [8.599154, 47.36818], [8.599172, 47.368186], [8.59919, 47.36819], [8.599208, 47.368194], [8.599227, 47.368196], [8.599418, 47.36823], [8.599608, 47.368264], [8.599798, 47.3683], [8.599864, 47.36834], [8.600183, 47.368436], [8.600477, 47.368541], [8.600573, 47.368576], [8.600666, 47.368614], [8.600755, 47.368656], [8.60085, 47.368703], [8.600947, 47.368747], [8.601047, 47.36879], [8.601483, 47.368968], [8.601558, 47.369002], [8.601629, 47.369041], [8.601694, 47.369084], [8.601753, 47.36913], [8.601806, 47.36918], [8.601852, 47.369233], [8.601891, 47.369289], [8.601922, 47.369347], [8.601945, 47.369406], [8.602109, 47.369909], [8.602131, 47.369989], [8.602145, 47.370069], [8.602152, 47.370149], [8.602161, 47.370379], [8.602154, 47.370458]]], "type": "MultiLineString"}, "id": "3677", "properties": {}, "type": "Feature"}, {"bbox": [8.507528, 47.395435, 8.508653, 47.397127], "geometry": {"coordinates": [[[8.507528, 47.395435], [8.507755, 47.395835], [8.507878, 47.396045], [8.508037, 47.396335], [8.508214, 47.396566], [8.508254, 47.396603], [8.508463, 47.396859], [8.508653, 47.397127]]], "type": "MultiLineString"}, "id": "3678", "properties": {}, "type": "Feature"}, {"bbox": [8.5231, 47.416887, 8.536288, 47.41843], "geometry": {"coordinates": [[[8.536288, 47.41843], [8.536173, 47.41825], [8.534985, 47.417744], [8.53339, 47.417452], [8.532996, 47.417377], [8.531737, 47.417164], [8.530927, 47.417029], [8.529469, 47.416904], [8.528124, 47.416887], [8.527399, 47.416919], [8.52605, 47.417024], [8.52398, 47.417177], [8.5231, 47.417237]]], "type": "MultiLineString"}, "id": "3680", "properties": {}, "type": "Feature"}, {"bbox": [8.544055, 47.40978, 8.544775, 47.410595], "geometry": {"coordinates": [[[8.544775, 47.40978], [8.544729, 47.409863], [8.544456, 47.409797], [8.544391, 47.409914], [8.544436, 47.409925], [8.54439, 47.410009], [8.544386, 47.410008], [8.544374, 47.41003], [8.544376, 47.41003], [8.544374, 47.410034], [8.544234, 47.41028], [8.544235, 47.41028], [8.544232, 47.410285], [8.54423, 47.410284], [8.54422, 47.410304], [8.544218, 47.410304], [8.544184, 47.410365], [8.544187, 47.410366], [8.544176, 47.410386], [8.544131, 47.410375], [8.544055, 47.410506], [8.544203, 47.410553], [8.544265, 47.410568], [8.544267, 47.410569], [8.544265, 47.410573], [8.544337, 47.410595]]], "type": "MultiLineString"}, "id": "3681", "properties": {}, "type": "Feature"}, {"bbox": [8.523557, 47.417399, 8.533602, 47.420115], "geometry": {"coordinates": [[[8.533602, 47.419757], [8.533391, 47.419832], [8.533081, 47.419928], [8.532907, 47.419954], [8.532401, 47.420025], [8.53202, 47.420063], [8.531713, 47.420082], [8.531414, 47.420093], [8.531064, 47.420105], [8.530744, 47.420115], [8.530659, 47.420115], [8.530574, 47.420084], [8.530485, 47.420048], [8.530398, 47.420009], [8.530314, 47.419968], [8.530292, 47.419957], [8.530242, 47.419934], [8.530206, 47.419921], [8.53017, 47.419909], [8.530134, 47.419898], [8.530096, 47.419888], [8.530058, 47.41988], [8.53002, 47.419873], [8.529864, 47.419853], [8.529707, 47.419836], [8.529549, 47.419823], [8.529373, 47.419813], [8.529196, 47.419805], [8.52902, 47.419798], [8.528895, 47.419798], [8.52877, 47.419797], [8.528645, 47.419795], [8.528552, 47.419795], [8.52846, 47.419796], [8.528367, 47.419798], [8.528367, 47.419798], [8.528238, 47.4198], [8.528109, 47.419802], [8.527979, 47.419802], [8.527979, 47.419802], [8.527979, 47.419802], [8.527793, 47.4198], [8.527607, 47.419798], [8.527421, 47.419795], [8.527344, 47.419794], [8.527266, 47.419793], [8.527189, 47.41979], [8.527084, 47.419786], [8.52698, 47.419781], [8.526876, 47.419775], [8.526775, 47.419769], [8.526674, 47.419762], [8.526573, 47.419753], [8.526498, 47.419747], [8.526423, 47.419739], [8.526349, 47.41973], [8.526348, 47.41973], [8.526348, 47.41973], [8.526305, 47.419724], [8.526261, 47.419716], [8.526218, 47.419708], [8.526129, 47.419691], [8.526041, 47.41967], [8.525955, 47.419646], [8.525955, 47.419646], [8.525954, 47.419646], [8.525946, 47.419643], [8.525938, 47.41964], [8.525929, 47.419637], [8.525914, 47.419631], [8.5259, 47.419625], [8.525885, 47.419619], [8.525756, 47.419559], [8.525671, 47.419524], [8.525585, 47.41949], [8.525498, 47.419458], [8.525498, 47.419458], [8.525498, 47.419458], [8.525407, 47.419422], [8.525316, 47.419386], [8.525226, 47.41935], [8.524769, 47.41918], [8.524309, 47.419014], [8.52375, 47.418612], [8.52359, 47.418422], [8.523557, 47.418207], [8.523714, 47.417775], [8.523854, 47.417499], [8.523887, 47.417399]]], "type": "MultiLineString"}, "id": "3682", "properties": {}, "type": "Feature"}, {"bbox": [8.572354, 47.366469, 8.57523, 47.36799], "geometry": {"coordinates": [[[8.57523, 47.366469], [8.57485, 47.366612], [8.574433, 47.366795], [8.573819, 47.367085], [8.57366, 47.367164], [8.573499, 47.36724], [8.573334, 47.367314], [8.572923, 47.367493], [8.572874, 47.367517], [8.572829, 47.367544], [8.572787, 47.367572], [8.572749, 47.367604], [8.572714, 47.367637], [8.572354, 47.36799]]], "type": "MultiLineString"}, "id": "3683", "properties": {}, "type": "Feature"}, {"bbox": [8.587419, 47.383587, 8.588231, 47.387542], "geometry": {"coordinates": [[[8.587616, 47.383587], [8.587547, 47.383849], [8.58743, 47.384584], [8.587419, 47.384659], [8.587419, 47.384736], [8.587428, 47.384812], [8.587447, 47.384887], [8.587475, 47.38496], [8.587567, 47.385181], [8.587619, 47.385317], [8.587665, 47.385476], [8.587829, 47.386513], [8.58803, 47.387261], [8.588045, 47.387319], [8.588069, 47.387375], [8.5881, 47.387429], [8.588139, 47.387481], [8.588159, 47.387498], [8.588181, 47.387515], [8.588205, 47.387529], [8.588231, 47.387542]]], "type": "MultiLineString"}, "id": "3684", "properties": {}, "type": "Feature"}, {"bbox": [8.536738, 47.395744, 8.537782, 47.39667], "geometry": {"coordinates": [[[8.536738, 47.395744], [8.536842, 47.395811], [8.537782, 47.39667]]], "type": "MultiLineString"}, "id": "3686", "properties": {}, "type": "Feature"}, {"bbox": [8.554188, 47.383414, 8.555916, 47.383733], "geometry": {"coordinates": [[[8.554188, 47.383475], [8.555093, 47.383733], [8.555165, 47.383731], [8.555261, 47.383634], [8.555327, 47.383616], [8.555371, 47.383599], [8.555451, 47.383433], [8.555509, 47.383414], [8.555576, 47.383424], [8.555916, 47.383641]]], "type": "MultiLineString"}, "id": "3687", "properties": {}, "type": "Feature"}, {"bbox": [8.532507, 47.414205, 8.535346, 47.414362], "geometry": {"coordinates": [[[8.535346, 47.414205], [8.532507, 47.414362]]], "type": "MultiLineString"}, "id": "3688", "properties": {}, "type": "Feature"}, {"bbox": [8.542871, 47.392128, 8.54318, 47.392262], "geometry": {"coordinates": [[[8.54318, 47.392128], [8.542871, 47.392262]]], "type": "MultiLineString"}, "id": "3689", "properties": {}, "type": "Feature"}, {"bbox": [8.484549, 47.375386, 8.486241, 47.376278], "geometry": {"coordinates": [[[8.484549, 47.375386], [8.484672, 47.375522], [8.48485, 47.375645], [8.485835, 47.376141], [8.486087, 47.376222], [8.486128, 47.376233], [8.486168, 47.376245], [8.486205, 47.37626], [8.486241, 47.376278]]], "type": "MultiLineString"}, "id": "3692", "properties": {}, "type": "Feature"}, {"bbox": [8.517553, 47.386648, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518527, 47.387011], [8.518312, 47.386902], [8.51823, 47.386864], [8.518146, 47.386828], [8.518059, 47.386794], [8.517963, 47.38676], [8.517865, 47.386729], [8.517765, 47.386701], [8.517553, 47.386648]]], "type": "MultiLineString"}, "id": "3693", "properties": {}, "type": "Feature"}, {"bbox": [8.517164, 47.356453, 8.517956, 47.358537], "geometry": {"coordinates": [[[8.517956, 47.358537], [8.517652, 47.358052], [8.517249, 47.357448], [8.517164, 47.357132], [8.517376, 47.356735], [8.517557, 47.356669], [8.517549, 47.356645], [8.517477, 47.3566], [8.517467, 47.356467], [8.517496, 47.356453], [8.517521, 47.35646], [8.517619, 47.356545], [8.517848, 47.35663], [8.517883, 47.356599]]], "type": "MultiLineString"}, "id": "3709", "properties": {}, "type": "Feature"}, {"bbox": [8.531911, 47.363744, 8.532024, 47.364624], "geometry": {"coordinates": [[[8.53193, 47.364624], [8.53195, 47.364607], [8.531969, 47.36459], [8.531985, 47.364571], [8.531998, 47.364552], [8.532009, 47.364532], [8.532017, 47.364511], [8.532022, 47.36449], [8.532024, 47.364469], [8.532024, 47.364447], [8.53202, 47.364426], [8.531915, 47.363956], [8.531912, 47.363933], [8.531911, 47.36391], [8.531914, 47.363887], [8.53192, 47.363865], [8.531928, 47.363843], [8.53194, 47.363821], [8.531954, 47.3638], [8.53197, 47.36378], [8.53199, 47.363761], [8.532011, 47.363744]]], "type": "MultiLineString"}, "id": "3710", "properties": {}, "type": "Feature"}, {"bbox": [8.503063, 47.398268, 8.504171, 47.398839], "geometry": {"coordinates": [[[8.503063, 47.398268], [8.50328, 47.398353], [8.503407, 47.398388], [8.503547, 47.398435], [8.503807, 47.398579], [8.504154, 47.398764], [8.504171, 47.398839]]], "type": "MultiLineString"}, "id": "3711", "properties": {}, "type": "Feature"}, {"bbox": [8.507322, 47.351889, 8.507994, 47.3525], "geometry": {"coordinates": [[[8.507571, 47.352425], [8.507533, 47.352408], [8.507498, 47.352389], [8.507465, 47.352368], [8.507435, 47.352345], [8.507408, 47.352321], [8.507385, 47.352295], [8.507365, 47.352268], [8.507349, 47.352239], [8.507336, 47.35221], [8.507327, 47.35218], [8.507323, 47.352155], [8.507322, 47.35213], [8.507324, 47.352105], [8.507329, 47.352081], [8.507337, 47.352057], [8.507349, 47.352033], [8.507363, 47.35201], [8.50738, 47.351988], [8.507401, 47.351967], [8.507423, 47.351948], [8.507448, 47.35193], [8.507476, 47.351913], [8.507495, 47.351906], [8.507515, 47.3519], [8.507536, 47.351896], [8.507557, 47.351892], [8.507578, 47.35189], [8.5076, 47.351889], [8.507622, 47.35189], [8.507644, 47.351892], [8.507665, 47.351895], [8.507686, 47.351899], [8.507706, 47.351905], [8.507725, 47.351912], [8.507743, 47.35192], [8.507761, 47.351929], [8.507777, 47.351939], [8.507791, 47.35195], [8.507804, 47.351962], [8.507816, 47.351974], [8.507826, 47.351987], [8.507834, 47.352001], [8.50784, 47.352015], [8.507844, 47.35203], [8.507846, 47.352061], [8.507845, 47.352092], [8.507839, 47.352123], [8.507829, 47.352153], [8.507816, 47.352183], [8.507806, 47.352202], [8.507798, 47.352221], [8.507793, 47.35224], [8.50779, 47.35226], [8.507791, 47.35228], [8.507794, 47.3523], [8.507799, 47.352319], [8.507807, 47.352338], [8.507818, 47.352357], [8.507831, 47.352374], [8.507865, 47.35241], [8.507904, 47.352442], [8.507947, 47.352473], [8.507994, 47.3525]]], "type": "MultiLineString"}, "id": "3713", "properties": {}, "type": "Feature"}, {"bbox": [8.537, 47.43057, 8.537148, 47.431436], "geometry": {"coordinates": [[[8.537, 47.43057], [8.537013, 47.430744], [8.537148, 47.43112], [8.537122, 47.431436]]], "type": "MultiLineString"}, "id": "3716", "properties": {}, "type": "Feature"}, {"bbox": [8.483471, 47.404859, 8.484197, 47.405857], "geometry": {"coordinates": [[[8.483634, 47.405857], [8.483664, 47.405841], [8.483847, 47.40578], [8.483988, 47.405748], [8.484024, 47.40573], [8.484111, 47.405673], [8.484121, 47.405666], [8.48413, 47.405659], [8.484138, 47.405651], [8.484145, 47.405643], [8.484152, 47.405634], [8.48419, 47.405565], [8.484194, 47.405555], [8.484196, 47.405545], [8.484197, 47.405536], [8.484196, 47.405526], [8.484195, 47.405516], [8.484192, 47.405506], [8.484187, 47.405496], [8.484182, 47.405487], [8.484176, 47.405478], [8.484168, 47.40547], [8.484099, 47.405396], [8.484087, 47.405377], [8.484078, 47.405357], [8.484072, 47.405337], [8.484069, 47.405316], [8.484068, 47.405299], [8.484065, 47.405283], [8.484059, 47.405266], [8.484052, 47.40525], [8.484042, 47.405235], [8.48403, 47.40522], [8.484016, 47.405206], [8.484001, 47.405193], [8.483984, 47.405181], [8.483965, 47.405171], [8.483945, 47.405161], [8.483924, 47.405152], [8.483795, 47.405091], [8.483676, 47.405021], [8.483568, 47.404944], [8.483471, 47.404859]]], "type": "MultiLineString"}, "id": "3717", "properties": {}, "type": "Feature"}, {"bbox": [8.559211, 47.369412, 8.561466, 47.370599], "geometry": {"coordinates": [[[8.559211, 47.370412], [8.559291, 47.370444], [8.559845, 47.370599], [8.559898, 47.370564], [8.560091, 47.370368], [8.560368, 47.370086], [8.560533, 47.369935], [8.560716, 47.369795], [8.560917, 47.369665], [8.561132, 47.369548], [8.561466, 47.369412]]], "type": "MultiLineString"}, "id": "3719", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.358094, 8.595404, 47.35958], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593471, 47.359492], [8.593512, 47.35944], [8.593656, 47.359337], [8.59374, 47.359284], [8.594, 47.358977], [8.594028, 47.358948], [8.594134, 47.358859], [8.594291, 47.358764], [8.594369, 47.358741], [8.594579, 47.358683], [8.594765, 47.358628], [8.594822, 47.358608], [8.594876, 47.358583], [8.594928, 47.358556], [8.594975, 47.358526], [8.595019, 47.358494], [8.595059, 47.358459], [8.595094, 47.358422], [8.595124, 47.358383], [8.595149, 47.358342], [8.595172, 47.358314], [8.595198, 47.358287], [8.595227, 47.358262], [8.595404, 47.358094]]], "type": "MultiLineString"}, "id": "3721", "properties": {}, "type": "Feature"}, {"bbox": [8.465041, 47.379945, 8.469339, 47.382109], "geometry": {"coordinates": [[[8.469339, 47.379945], [8.469273, 47.379977], [8.46921, 47.380011], [8.469152, 47.38005], [8.46914, 47.380059], [8.469128, 47.380068], [8.469117, 47.380077], [8.469097, 47.380097], [8.469079, 47.380118], [8.469063, 47.380139], [8.469051, 47.380162], [8.469042, 47.380185], [8.469029, 47.380217], [8.469011, 47.380248], [8.46899, 47.380277], [8.468965, 47.380305], [8.468942, 47.380325], [8.468917, 47.380344], [8.468889, 47.380361], [8.468859, 47.380375], [8.468809, 47.380396], [8.468755, 47.380413], [8.4687, 47.380428], [8.468639, 47.380441], [8.468578, 47.380455], [8.468517, 47.38047], [8.468474, 47.380481], [8.468433, 47.380495], [8.468394, 47.380511], [8.468249, 47.380575], [8.468104, 47.38064], [8.467959, 47.380705], [8.467839, 47.380762], [8.467721, 47.38082], [8.467606, 47.380882], [8.467493, 47.380944], [8.467379, 47.381007], [8.467264, 47.381068], [8.467125, 47.381146], [8.466989, 47.381226], [8.466857, 47.381308], [8.466721, 47.381393], [8.466584, 47.381477], [8.466445, 47.38156], [8.46635, 47.381614], [8.466253, 47.381665], [8.466153, 47.381715], [8.466066, 47.381756], [8.465977, 47.381795], [8.465885, 47.381831], [8.465837, 47.381849], [8.46579, 47.381868], [8.465742, 47.381888], [8.465681, 47.381913], [8.46562, 47.381937], [8.465558, 47.381962], [8.465392, 47.382022], [8.465219, 47.382071], [8.465041, 47.382109]]], "type": "MultiLineString"}, "id": "3729", "properties": {}, "type": "Feature"}, {"bbox": [8.520318, 47.340456, 8.522775, 47.343904], "geometry": {"coordinates": [[[8.520318, 47.343904], [8.520325, 47.343852], [8.52034, 47.343801], [8.52036, 47.343751], [8.520387, 47.343702], [8.52042, 47.343655], [8.520459, 47.34361], [8.520504, 47.343568], [8.520783, 47.343382], [8.520794, 47.343374], [8.520803, 47.343366], [8.520811, 47.343357], [8.520818, 47.343348], [8.520824, 47.343338], [8.520828, 47.343328], [8.520832, 47.343318], [8.520833, 47.343308], [8.520834, 47.343297], [8.520833, 47.343287], [8.520831, 47.343276], [8.520827, 47.343266], [8.520822, 47.34317], [8.520821, 47.343158], [8.520822, 47.343146], [8.520824, 47.343134], [8.520827, 47.343123], [8.520832, 47.343111], [8.520838, 47.3431], [8.520845, 47.34309], [8.520854, 47.34308], [8.520864, 47.34307], [8.521038, 47.342934], [8.5212, 47.342791], [8.521349, 47.342641], [8.521488, 47.342488], [8.521614, 47.342329], [8.521728, 47.342166], [8.521839, 47.341995], [8.521939, 47.341821], [8.522028, 47.341644], [8.522158, 47.341352], [8.522165, 47.341336], [8.522174, 47.341321], [8.522185, 47.341307], [8.522197, 47.341293], [8.522211, 47.341279], [8.522227, 47.341267], [8.522303, 47.341229], [8.522339, 47.341211], [8.522372, 47.341191], [8.522402, 47.341168], [8.522429, 47.341144], [8.522453, 47.341119], [8.522474, 47.341092], [8.52249, 47.341064], [8.522503, 47.341035], [8.522775, 47.340456]]], "type": "MultiLineString"}, "id": "3730", "properties": {}, "type": "Feature"}, {"bbox": [8.510965, 47.352999, 8.511813, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511808, 47.353378], [8.511801, 47.353355], [8.511791, 47.353333], [8.511778, 47.353312], [8.511762, 47.353291], [8.511744, 47.353272], [8.511723, 47.353254], [8.511699, 47.353237], [8.511674, 47.353221], [8.511647, 47.353208], [8.51125, 47.353021], [8.511234, 47.353015], [8.511217, 47.353009], [8.511199, 47.353005], [8.511182, 47.353002], [8.511163, 47.353], [8.511145, 47.352999], [8.511126, 47.352999], [8.511108, 47.353], [8.511089, 47.353002], [8.511071, 47.353005], [8.511054, 47.353009], [8.511037, 47.353014], [8.51102, 47.35302], [8.511005, 47.353027], [8.510991, 47.353035], [8.510977, 47.353044], [8.510965, 47.353053]]], "type": "MultiLineString"}, "id": "3731", "properties": {}, "type": "Feature"}, {"bbox": [8.585254, 47.365595, 8.589935, 47.366761], "geometry": {"coordinates": [[[8.585254, 47.365595], [8.585323, 47.365622], [8.585857, 47.365732], [8.587369, 47.366102], [8.588623, 47.366425], [8.589935, 47.366761]]], "type": "MultiLineString"}, "id": "3732", "properties": {}, "type": "Feature"}, {"bbox": [8.551688, 47.419583, 8.555739, 47.420677], "geometry": {"coordinates": [[[8.551688, 47.420677], [8.552511, 47.420529], [8.552675, 47.420497], [8.552775, 47.420478], [8.552877, 47.420464], [8.552981, 47.420457], [8.553085, 47.420456], [8.553189, 47.420454], [8.553292, 47.420445], [8.553394, 47.42043], [8.553493, 47.420408], [8.55391, 47.420313], [8.55412, 47.420249], [8.55432, 47.420171], [8.554508, 47.420081], [8.554653, 47.420027], [8.555084, 47.419852], [8.555525, 47.419677], [8.555739, 47.419583]]], "type": "MultiLineString"}, "id": "3733", "properties": {}, "type": "Feature"}, {"bbox": [8.507325, 47.407618, 8.508783, 47.40823], "geometry": {"coordinates": [[[8.507325, 47.408189], [8.507585, 47.408098], [8.507682, 47.40823], [8.508783, 47.407863], [8.508602, 47.407618], [8.507504, 47.40799], [8.507585, 47.408098]]], "type": "MultiLineString"}, "id": "3734", "properties": {}, "type": "Feature"}, {"bbox": [8.504911, 47.409065, 8.50633, 47.409562], "geometry": {"coordinates": [[[8.50633, 47.409065], [8.505229, 47.409431], [8.505202, 47.409454], [8.50507, 47.409498], [8.504911, 47.409562]]], "type": "MultiLineString"}, "id": "3735", "properties": {}, "type": "Feature"}, {"bbox": [8.566004, 47.383058, 8.569233, 47.383605], "geometry": {"coordinates": [[[8.566004, 47.383058], [8.566121, 47.383123], [8.566354, 47.383135], [8.566838, 47.38315], [8.567873, 47.383188], [8.567973, 47.383194], [8.568072, 47.383207], [8.568168, 47.383226], [8.568262, 47.38325], [8.568352, 47.38328], [8.568437, 47.383315], [8.568647, 47.383411], [8.568676, 47.383424], [8.568706, 47.383436], [8.568737, 47.383448], [8.569111, 47.383595], [8.569119, 47.383598], [8.569127, 47.3836], [8.569136, 47.383602], [8.569145, 47.383603], [8.569154, 47.383604], [8.569163, 47.383605], [8.569172, 47.383604], [8.569181, 47.383604], [8.56919, 47.383603], [8.569199, 47.383601], [8.569208, 47.383599], [8.569216, 47.383596], [8.569224, 47.383593], [8.569233, 47.383589]]], "type": "MultiLineString"}, "id": "3736", "properties": {}, "type": "Feature"}, {"bbox": [8.585089, 47.373666, 8.597714, 47.376085], "geometry": {"coordinates": [[[8.585089, 47.375683], [8.586179, 47.375833], [8.587257, 47.375986], [8.587331, 47.375995], [8.587878, 47.376066], [8.588015, 47.376079], [8.588154, 47.376085], [8.588292, 47.376083], [8.58843, 47.376073], [8.589249, 47.37599], [8.589358, 47.375981], [8.589467, 47.375979], [8.589576, 47.375982], [8.589866, 47.375997], [8.589973, 47.376001], [8.590081, 47.376004], [8.590189, 47.376004], [8.590342, 47.376004], [8.590396, 47.376003], [8.59045, 47.376002], [8.590504, 47.376001], [8.5908, 47.375986], [8.591094, 47.375959], [8.591384, 47.375919], [8.591905, 47.375836], [8.591966, 47.375826], [8.592026, 47.375815], [8.592086, 47.375804], [8.59214, 47.375794], [8.592194, 47.375782], [8.592248, 47.375771], [8.592523, 47.375711], [8.592726, 47.375672], [8.592933, 47.375644], [8.593143, 47.375628], [8.593517, 47.375608], [8.59393, 47.375573], [8.594338, 47.375513], [8.594735, 47.375429], [8.59512, 47.375321], [8.595222, 47.375289], [8.596644, 47.374838], [8.596698, 47.374819], [8.59675, 47.374798], [8.596799, 47.374773], [8.59685, 47.374743], [8.596897, 47.37471], [8.59694, 47.374674], [8.597155, 47.374476], [8.597236, 47.374396], [8.597312, 47.374313], [8.59738, 47.374228], [8.59755, 47.374001], [8.597599, 47.37393], [8.59764, 47.373856], [8.597672, 47.37378], [8.597714, 47.373666]]], "type": "MultiLineString"}, "id": "3737", "properties": {}, "type": "Feature"}, {"bbox": [8.544333, 47.380882, 8.544979, 47.382079], "geometry": {"coordinates": [[[8.544979, 47.380882], [8.544837, 47.381058], [8.544652, 47.381417], [8.544504, 47.381753], [8.544333, 47.382079]]], "type": "MultiLineString"}, "id": "3745", "properties": {}, "type": "Feature"}, {"bbox": [8.543443, 47.37078, 8.543723, 47.370974], "geometry": {"coordinates": [[[8.543443, 47.370783], [8.543723, 47.37078], [8.543691, 47.370974]]], "type": "MultiLineString"}, "id": "3746", "properties": {}, "type": "Feature"}, {"bbox": [8.492259, 47.401285, 8.492447, 47.401915], "geometry": {"coordinates": [[[8.492259, 47.401285], [8.492286, 47.401369], [8.492356, 47.401564], [8.492447, 47.401915]]], "type": "MultiLineString"}, "id": "3751", "properties": {}, "type": "Feature"}, {"bbox": [8.492332, 47.402611, 8.492565, 47.403539], "geometry": {"coordinates": [[[8.492332, 47.402611], [8.492334, 47.402702], [8.492344, 47.402876], [8.492382, 47.4032], [8.492385, 47.403222], [8.49239, 47.403244], [8.492398, 47.403265], [8.492526, 47.403483], [8.492565, 47.403539]]], "type": "MultiLineString"}, "id": "3752", "properties": {}, "type": "Feature"}, {"bbox": [8.575497, 47.388299, 8.57691, 47.389016], "geometry": {"coordinates": [[[8.575497, 47.388335], [8.575506, 47.388329], [8.575516, 47.388323], [8.575527, 47.388317], [8.575538, 47.388313], [8.57555, 47.388309], [8.575562, 47.388305], [8.575575, 47.388303], [8.575588, 47.388301], [8.575601, 47.3883], [8.575614, 47.388299], [8.575627, 47.3883], [8.57564, 47.388301], [8.575653, 47.388303], [8.575666, 47.388306], [8.575678, 47.38831], [8.57569, 47.388314], [8.575701, 47.388319], [8.575711, 47.388324], [8.575721, 47.388331], [8.57573, 47.388337], [8.575738, 47.388345], [8.575745, 47.388352], [8.575751, 47.38836], [8.575755, 47.388369], [8.575759, 47.388377], [8.575762, 47.388386], [8.57576, 47.388703], [8.57576, 47.388714], [8.575762, 47.388726], [8.575764, 47.388737], [8.575769, 47.388748], [8.575774, 47.388759], [8.575781, 47.388769], [8.57579, 47.388779], [8.575799, 47.388789], [8.57581, 47.388798], [8.575822, 47.388806], [8.575834, 47.388813], [8.575848, 47.38882], [8.575862, 47.388826], [8.575877, 47.388831], [8.575893, 47.388835], [8.575909, 47.388839], [8.576243, 47.388898], [8.576577, 47.388957], [8.57691, 47.389016]]], "type": "MultiLineString"}, "id": "3756", "properties": {}, "type": "Feature"}, {"bbox": [8.577313, 47.360232, 8.577655, 47.360937], "geometry": {"coordinates": [[[8.57757, 47.360937], [8.577328, 47.360703], [8.577323, 47.360696], [8.577319, 47.360688], [8.577316, 47.36068], [8.577314, 47.360672], [8.577313, 47.360664], [8.577314, 47.360656], [8.577315, 47.360648], [8.577317, 47.36064], [8.57732, 47.360632], [8.577324, 47.360625], [8.57733, 47.360617], [8.577655, 47.360232]]], "type": "MultiLineString"}, "id": "3757", "properties": {}, "type": "Feature"}, {"bbox": [8.540834, 47.425679, 8.541688, 47.42582], "geometry": {"coordinates": [[[8.541688, 47.425679], [8.541535, 47.425723], [8.541378, 47.425758], [8.541217, 47.425785], [8.541021, 47.425804], [8.540834, 47.42582]]], "type": "MultiLineString"}, "id": "3758", "properties": {}, "type": "Feature"}, {"bbox": [8.545162, 47.412614, 8.546223, 47.413015], "geometry": {"coordinates": [[[8.546223, 47.412924], [8.546114, 47.413015], [8.545842, 47.412892], [8.54555, 47.412759], [8.545162, 47.412614]]], "type": "MultiLineString"}, "id": "3759", "properties": {}, "type": "Feature"}, {"bbox": [8.564783, 47.408767, 8.565678, 47.409124], "geometry": {"coordinates": [[[8.565678, 47.409124], [8.56553, 47.409082], [8.56511, 47.408916], [8.565055, 47.408888], [8.564861, 47.408801], [8.564783, 47.408767]]], "type": "MultiLineString"}, "id": "3761", "properties": {}, "type": "Feature"}, {"bbox": [8.5869, 47.359702, 8.58702, 47.36072], "geometry": {"coordinates": [[[8.58702, 47.359702], [8.586969, 47.359987], [8.58692, 47.360329], [8.586907, 47.3604], [8.586923, 47.360471], [8.586927, 47.360555], [8.586919, 47.360638], [8.5869, 47.36072]]], "type": "MultiLineString"}, "id": "3762", "properties": {}, "type": "Feature"}, {"bbox": [8.48844, 47.384597, 8.489148, 47.384971], "geometry": {"coordinates": [[[8.48844, 47.384971], [8.488453, 47.384956], [8.488464, 47.384941], [8.488474, 47.384926], [8.488509, 47.384855], [8.488512, 47.384848], [8.488515, 47.384842], [8.488519, 47.384836], [8.488524, 47.38483], [8.488529, 47.384825], [8.488536, 47.38482], [8.488542, 47.384815], [8.48855, 47.384811], [8.488558, 47.384807], [8.488566, 47.384804], [8.488575, 47.384801], [8.488895, 47.384731], [8.488908, 47.384727], [8.48892, 47.384723], [8.488932, 47.384718], [8.488943, 47.384712], [8.488954, 47.384706], [8.488963, 47.384699], [8.488971, 47.384691], [8.488979, 47.384683], [8.488985, 47.384672], [8.488994, 47.384662], [8.489003, 47.384651], [8.489014, 47.384642], [8.489025, 47.384633], [8.489038, 47.384625], [8.489052, 47.384618], [8.489148, 47.384597]]], "type": "MultiLineString"}, "id": "3763", "properties": {}, "type": "Feature"}, {"bbox": [8.481904, 47.384529, 8.482355, 47.385164], "geometry": {"coordinates": [[[8.481904, 47.385164], [8.481948, 47.385039], [8.482005, 47.384917], [8.482073, 47.384797], [8.482105, 47.384746], [8.482143, 47.384697], [8.482188, 47.38465], [8.482238, 47.384607], [8.482294, 47.384566], [8.482355, 47.384529]]], "type": "MultiLineString"}, "id": "3766", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.39073, 8.522946, 47.391122], "geometry": {"coordinates": [[[8.522048, 47.390845], [8.522148, 47.390854], [8.522585, 47.39074], [8.522608, 47.390736], [8.522632, 47.390732], [8.522656, 47.390731], [8.52268, 47.39073], [8.522704, 47.390731], [8.522727, 47.390734], [8.522751, 47.390738], [8.522773, 47.390743], [8.522795, 47.39075], [8.522816, 47.390758], [8.522836, 47.390767], [8.522855, 47.390777], [8.522872, 47.390789], [8.522888, 47.390801], [8.522902, 47.390814], [8.522914, 47.390829], [8.522924, 47.390843], [8.522932, 47.390859], [8.522939, 47.390874], [8.522944, 47.390896], [8.522946, 47.390917], [8.522946, 47.390939], [8.522942, 47.39096], [8.522936, 47.390981], [8.522927, 47.391002], [8.522915, 47.391022], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "3770", "properties": {}, "type": "Feature"}, {"bbox": [8.519485, 47.398405, 8.531896, 47.400006], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531698, 47.399116], [8.531614, 47.399022], [8.531249, 47.398612], [8.531151, 47.398568], [8.530329, 47.398423], [8.529936, 47.398405], [8.529542, 47.398411], [8.529151, 47.398442], [8.528765, 47.398497], [8.527218, 47.398751], [8.526665, 47.398817], [8.526398, 47.398855], [8.526135, 47.398905], [8.525878, 47.398968], [8.525712, 47.399012], [8.525542, 47.399046], [8.525368, 47.399071], [8.525192, 47.399085], [8.524896, 47.399113], [8.524605, 47.39916], [8.524322, 47.399226], [8.524037, 47.399285], [8.523759, 47.399358], [8.523489, 47.399444], [8.523293, 47.39951], [8.523093, 47.39957], [8.522889, 47.399622], [8.522216, 47.399758], [8.521529, 47.399852], [8.520831, 47.399904], [8.520599, 47.39992], [8.520369, 47.399942], [8.52014, 47.39997], [8.519923, 47.399993], [8.519704, 47.400005], [8.519485, 47.400006]]], "type": "MultiLineString"}, "id": "3771", "properties": {}, "type": "Feature"}, {"bbox": [8.508404, 47.408609, 8.511588, 47.409542], "geometry": {"coordinates": [[[8.508404, 47.409542], [8.50851, 47.409508], [8.509243, 47.409264], [8.509307, 47.409355], [8.509574, 47.409269], [8.510025, 47.409119], [8.510216, 47.409054], [8.510408, 47.40899], [8.510728, 47.408885], [8.511326, 47.408695], [8.511588, 47.408609]]], "type": "MultiLineString"}, "id": "3772", "properties": {}, "type": "Feature"}, {"bbox": [8.488264, 47.417082, 8.489984, 47.420378], "geometry": {"coordinates": [[[8.488264, 47.420378], [8.488284, 47.419914], [8.488288, 47.419877], [8.488298, 47.419841], [8.488313, 47.419806], [8.488474, 47.419484], [8.488697, 47.418927], [8.488823, 47.418729], [8.48904, 47.418316], [8.489065, 47.418274], [8.489094, 47.418234], [8.489129, 47.418196], [8.489167, 47.418159], [8.48921, 47.418125], [8.489626, 47.417818], [8.48965, 47.417798], [8.489672, 47.417776], [8.489692, 47.417754], [8.489708, 47.41773], [8.489722, 47.417705], [8.489733, 47.41768], [8.489846, 47.417367], [8.489984, 47.417082]]], "type": "MultiLineString"}, "id": "3773", "properties": {}, "type": "Feature"}, {"bbox": [8.463046, 47.379001, 8.468861, 47.382206], "geometry": {"coordinates": [[[8.468861, 47.379037], [8.468771, 47.379017], [8.468734, 47.37901], [8.468697, 47.379005], [8.46866, 47.379002], [8.468622, 47.379001], [8.468585, 47.379003], [8.468547, 47.379006], [8.468511, 47.379012], [8.468475, 47.37902], [8.46844, 47.37903], [8.468344, 47.379063], [8.468251, 47.379101], [8.468162, 47.379143], [8.467983, 47.379231], [8.467802, 47.379317], [8.467619, 47.3794], [8.467499, 47.379453], [8.467377, 47.379505], [8.467254, 47.379555], [8.467039, 47.379641], [8.466825, 47.379728], [8.466611, 47.379816], [8.466485, 47.379869], [8.466359, 47.379924], [8.466234, 47.379979], [8.466013, 47.380083], [8.465798, 47.380192], [8.46559, 47.380307], [8.465405, 47.380412], [8.46522, 47.380518], [8.465036, 47.380624], [8.464838, 47.380738], [8.464641, 47.380852], [8.464444, 47.380967], [8.464341, 47.381031], [8.464242, 47.381097], [8.464148, 47.381167], [8.46405, 47.381241], [8.463948, 47.381314], [8.463843, 47.381384], [8.463791, 47.381419], [8.463741, 47.381455], [8.463693, 47.381492], [8.4633, 47.381806], [8.463263, 47.381838], [8.463231, 47.381872], [8.463204, 47.381908], [8.463182, 47.381946], [8.463046, 47.382206]]], "type": "MultiLineString"}, "id": "3774", "properties": {}, "type": "Feature"}, {"bbox": [8.532325, 47.395343, 8.533522, 47.39568], "geometry": {"coordinates": [[[8.532325, 47.395343], [8.532905, 47.395587], [8.533522, 47.39568]]], "type": "MultiLineString"}, "id": "3775", "properties": {}, "type": "Feature"}, {"bbox": [8.519971, 47.336977, 8.521637, 47.342477], "geometry": {"coordinates": [[[8.519971, 47.342477], [8.520593, 47.342469], [8.52145, 47.340599], [8.521614, 47.340302], [8.521637, 47.340206], [8.521637, 47.340046], [8.521563, 47.339784], [8.521508, 47.339706], [8.52138, 47.339448], [8.521292, 47.339371], [8.521352, 47.339161], [8.52134, 47.339053], [8.521296, 47.338949], [8.521233, 47.338866], [8.520958, 47.33798], [8.520871, 47.337767], [8.520764, 47.337522], [8.520685, 47.337324], [8.520627, 47.337124], [8.520582, 47.336977]]], "type": "MultiLineString"}, "id": "3776", "properties": {}, "type": "Feature"}, {"bbox": [8.528032, 47.357396, 8.529392, 47.357482], "geometry": {"coordinates": [[[8.529392, 47.357435], [8.528834, 47.357396], [8.528659, 47.35742], [8.528203, 47.3574], [8.528032, 47.357482]]], "type": "MultiLineString"}, "id": "3777", "properties": {}, "type": "Feature"}, {"bbox": [8.576606, 47.367253, 8.57906, 47.373984], "geometry": {"coordinates": [[[8.579, 47.367253], [8.578988, 47.367271], [8.578979, 47.367289], [8.578972, 47.367307], [8.578968, 47.367326], [8.578965, 47.367346], [8.578966, 47.367365], [8.578978, 47.367536], [8.579029, 47.368043], [8.579024, 47.368142], [8.579055, 47.368502], [8.579058, 47.368555], [8.57906, 47.368609], [8.57906, 47.368662], [8.579041, 47.368802], [8.579011, 47.368941], [8.578969, 47.369078], [8.578651, 47.3698], [8.57841, 47.370333], [8.578351, 47.370468], [8.578296, 47.370604], [8.578245, 47.370741], [8.578236, 47.370772], [8.57823, 47.370803], [8.578225, 47.370835], [8.578223, 47.370856], [8.578222, 47.370877], [8.578222, 47.370898], [8.578221, 47.370966], [8.578211, 47.371035], [8.578193, 47.371103], [8.578166, 47.37117], [8.57812, 47.371278], [8.578073, 47.371387], [8.578025, 47.371495], [8.577987, 47.371609], [8.577957, 47.371724], [8.577936, 47.37184], [8.577917, 47.37194], [8.577895, 47.37204], [8.577869, 47.372139], [8.577846, 47.372207], [8.57782, 47.372274], [8.577791, 47.372341], [8.577747, 47.372411], [8.577696, 47.37248], [8.57764, 47.372546], [8.577533, 47.372651], [8.577422, 47.372753], [8.577307, 47.372854], [8.577139, 47.373018], [8.577055, 47.373115], [8.576986, 47.373217], [8.57693, 47.373323], [8.576889, 47.373432], [8.576792, 47.373691], [8.576695, 47.373973], [8.576606, 47.373984]]], "type": "MultiLineString"}, "id": "3778", "properties": {}, "type": "Feature"}, {"bbox": [8.487855, 47.391012, 8.489299, 47.391531], "geometry": {"coordinates": [[[8.488771, 47.391012], [8.487855, 47.391255], [8.48802, 47.391531], [8.489299, 47.391177]]], "type": "MultiLineString"}, "id": "3779", "properties": {}, "type": "Feature"}, {"bbox": [8.532193, 47.3981, 8.532456, 47.398612], "geometry": {"coordinates": [[[8.532456, 47.3981], [8.532316, 47.398373], [8.532193, 47.398612]]], "type": "MultiLineString"}, "id": "3780", "properties": {}, "type": "Feature"}, {"bbox": [8.560818, 47.386425, 8.569085, 47.391729], "geometry": {"coordinates": [[[8.560818, 47.386425], [8.560948, 47.386481], [8.560962, 47.386488], [8.560962, 47.386488], [8.561172, 47.38658], [8.561385, 47.386668], [8.561601, 47.386752], [8.562033, 47.386915], [8.562214, 47.386983], [8.562266, 47.387002], [8.562278, 47.387007], [8.562291, 47.387012], [8.562304, 47.387017], [8.562431, 47.387069], [8.562555, 47.387126], [8.562674, 47.387186], [8.562791, 47.38725], [8.562905, 47.387315], [8.563016, 47.387383], [8.563128, 47.387457], [8.563231, 47.387538], [8.563325, 47.387623], [8.563742, 47.388053], [8.563806, 47.388129], [8.563876, 47.388268], [8.563902, 47.388319], [8.56392, 47.388355], [8.564132, 47.388727], [8.564962, 47.389333], [8.565362, 47.389623], [8.565385, 47.389639], [8.565411, 47.389653], [8.565438, 47.389666], [8.565466, 47.389677], [8.565496, 47.389687], [8.565497, 47.389687], [8.565517, 47.389692], [8.565621, 47.389715], [8.565779, 47.389802], [8.5666, 47.39017], [8.5666, 47.39017], [8.566674, 47.390206], [8.566743, 47.390247], [8.566806, 47.390292], [8.566862, 47.390341], [8.566911, 47.390393], [8.567359, 47.390923], [8.567378, 47.390943], [8.567398, 47.390963], [8.56742, 47.390983], [8.567464, 47.391015], [8.567512, 47.391044], [8.567565, 47.39107], [8.568202, 47.391348], [8.568983, 47.391688], [8.569085, 47.391729]]], "type": "MultiLineString"}, "id": "3786", "properties": {}, "type": "Feature"}, {"bbox": [8.599097, 47.362975, 8.601774, 47.363756], "geometry": {"coordinates": [[[8.599097, 47.363756], [8.599224, 47.363632], [8.599418, 47.363488], [8.599427, 47.363483], [8.59955, 47.363405], [8.59967, 47.363324], [8.599786, 47.363242], [8.599847, 47.363202], [8.599911, 47.363164], [8.59998, 47.363131], [8.600043, 47.363105], [8.600109, 47.363082], [8.600177, 47.363063], [8.600234, 47.363049], [8.60029, 47.363035], [8.600347, 47.363021], [8.600409, 47.363007], [8.600473, 47.362996], [8.600538, 47.362989], [8.600591, 47.362985], [8.600643, 47.36298], [8.600696, 47.362975], [8.600818, 47.362976], [8.600844, 47.36298], [8.60087, 47.362986], [8.600895, 47.362993], [8.600917, 47.363], [8.600938, 47.363009], [8.600958, 47.363018], [8.600977, 47.363029], [8.600995, 47.363041], [8.601071, 47.363095], [8.60115, 47.363147], [8.601231, 47.363198], [8.601277, 47.363224], [8.601327, 47.363247], [8.601379, 47.363266], [8.601434, 47.363283], [8.601547, 47.363312], [8.60166, 47.363341], [8.601774, 47.36337]]], "type": "MultiLineString"}, "id": "3788", "properties": {}, "type": "Feature"}, {"bbox": [8.562432, 47.407123, 8.564824, 47.408457], "geometry": {"coordinates": [[[8.562432, 47.407123], [8.562588, 47.407201], [8.563423, 47.407635], [8.563498, 47.4077], [8.563916, 47.407926], [8.564185, 47.408131], [8.564436, 47.408268], [8.564657, 47.408398], [8.564824, 47.408457]]], "type": "MultiLineString"}, "id": "3789", "properties": {}, "type": "Feature"}, {"bbox": [8.491257, 47.406486, 8.503866, 47.413093], "geometry": {"coordinates": [[[8.491257, 47.411852], [8.491386, 47.411944], [8.491488, 47.412003], [8.491582, 47.412068], [8.491669, 47.412137], [8.491713, 47.412179], [8.491751, 47.412222], [8.491784, 47.412268], [8.491811, 47.412316], [8.491881, 47.412458], [8.491896, 47.412484], [8.491913, 47.412509], [8.491935, 47.412533], [8.491959, 47.412556], [8.491985, 47.412576], [8.492078, 47.412642], [8.492117, 47.412668], [8.49216, 47.412692], [8.492206, 47.412713], [8.492477, 47.412827], [8.492492, 47.412833], [8.492622, 47.412888], [8.492973, 47.413035], [8.493004, 47.413048], [8.493051, 47.413067], [8.493067, 47.413073], [8.493091, 47.41308], [8.493116, 47.413086], [8.493141, 47.41309], [8.493167, 47.413092], [8.493193, 47.413093], [8.493219, 47.413092], [8.495012, 47.412975], [8.495219, 47.412962], [8.495366, 47.412948], [8.495616, 47.412914], [8.495644, 47.412907], [8.495672, 47.412899], [8.495699, 47.41289], [8.495725, 47.412879], [8.495749, 47.412867], [8.495771, 47.412853], [8.496418, 47.412374], [8.496813, 47.412087], [8.497129, 47.411823], [8.497173, 47.411786], [8.497215, 47.411747], [8.497255, 47.411707], [8.497499, 47.411454], [8.497531, 47.41142], [8.497669, 47.411282], [8.497713, 47.41124], [8.497762, 47.4112], [8.497814, 47.411162], [8.498092, 47.410954], [8.498131, 47.410924], [8.498168, 47.410892], [8.498202, 47.410859], [8.498626, 47.41043], [8.498664, 47.410392], [8.498704, 47.410354], [8.498746, 47.410317], [8.499131, 47.409986], [8.499373, 47.409774], [8.499411, 47.409743], [8.499454, 47.409714], [8.499501, 47.409687], [8.499501, 47.409687], [8.49991, 47.409475], [8.499986, 47.409442], [8.500079, 47.409403], [8.500664, 47.409175], [8.501329, 47.408929], [8.501921, 47.408748], [8.501928, 47.408746], [8.501935, 47.408744], [8.501942, 47.408741], [8.501948, 47.408737], [8.501954, 47.408734], [8.50196, 47.40873]], [[8.503866, 47.406506], [8.503564, 47.406486], [8.503458, 47.40651], [8.503252, 47.407011], [8.50314, 47.407041], [8.502492, 47.407255], [8.502492, 47.407255], [8.50245, 47.407269], [8.502409, 47.407283], [8.502368, 47.407298], [8.502335, 47.407312], [8.502304, 47.407329], [8.502275, 47.407346], [8.502248, 47.407366], [8.502224, 47.407387], [8.502224, 47.407387], [8.502224, 47.407387], [8.502195, 47.407415], [8.502171, 47.407445], [8.502152, 47.407476], [8.502139, 47.407503], [8.502129, 47.407531], [8.502122, 47.407559], [8.502122, 47.407559], [8.502066, 47.407788], [8.502066, 47.407788], [8.502051, 47.407852], [8.502042, 47.407916], [8.502038, 47.40798], [8.502038, 47.408212], [8.502011, 47.40843], [8.502005, 47.408636], [8.501979, 47.408705], [8.50196, 47.40873]]], "type": "MultiLineString"}, "id": "3799", "properties": {}, "type": "Feature"}, {"bbox": [8.486921, 47.382572, 8.488084, 47.384793], "geometry": {"coordinates": [[[8.487428, 47.384793], [8.488058, 47.384576], [8.488062, 47.384574], [8.488066, 47.384571], [8.48807, 47.384569], [8.488073, 47.384566], [8.488076, 47.384563], [8.488078, 47.38456], [8.48808, 47.384556], [8.488082, 47.384553], [8.488083, 47.384549], [8.488083, 47.384546], [8.488084, 47.384542], [8.488083, 47.384538], [8.488083, 47.384535], [8.488081, 47.384531], [8.48808, 47.384528], [8.48805, 47.384461], [8.48802, 47.384394], [8.48799, 47.384327], [8.487977, 47.38431], [8.487962, 47.384294], [8.487945, 47.384279], [8.487926, 47.384265], [8.487918, 47.384257], [8.487912, 47.384249], [8.487906, 47.384241], [8.487901, 47.384232], [8.487898, 47.384223], [8.487896, 47.384214], [8.487886, 47.384184], [8.487873, 47.384154], [8.487857, 47.384125], [8.487842, 47.384098], [8.487826, 47.38407], [8.487811, 47.384043], [8.487783, 47.383997], [8.487759, 47.38395], [8.487739, 47.383902], [8.487712, 47.383851], [8.48769, 47.383799], [8.487672, 47.383747], [8.487612, 47.383608], [8.487554, 47.383469], [8.487497, 47.38333], [8.487388, 47.383119], [8.487361, 47.383078], [8.48733, 47.383037], [8.487297, 47.382998], [8.486921, 47.382572]]], "type": "MultiLineString"}, "id": "3804", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.385367, 8.497921, 47.386044], "geometry": {"coordinates": [[[8.497351, 47.385367], [8.497414, 47.385408], [8.497455, 47.385396], [8.497489, 47.385447], [8.497493, 47.385453], [8.497497, 47.38546], [8.497499, 47.385467], [8.497501, 47.385473], [8.497501, 47.38548], [8.497501, 47.385487], [8.4975, 47.385494], [8.497501, 47.385516], [8.497504, 47.385537], [8.497511, 47.385559], [8.49752, 47.385579], [8.497539, 47.3856], [8.497555, 47.385621], [8.497568, 47.385643], [8.497579, 47.385666], [8.497586, 47.38569], [8.497591, 47.385713], [8.497595, 47.385723], [8.4976, 47.385733], [8.497606, 47.385742], [8.497613, 47.38575], [8.497622, 47.385759], [8.497631, 47.385766], [8.497642, 47.385773], [8.497653, 47.38578], [8.497665, 47.385786], [8.497678, 47.385791], [8.497703, 47.385802], [8.497725, 47.385815], [8.497746, 47.385829], [8.497765, 47.385844], [8.497921, 47.386044]]], "type": "MultiLineString"}, "id": "3805", "properties": {}, "type": "Feature"}, {"bbox": [8.468501, 47.391117, 8.469398, 47.391539], "geometry": {"coordinates": [[[8.469398, 47.391287], [8.469371, 47.391284], [8.469343, 47.391279], [8.469317, 47.391273], [8.469291, 47.391265], [8.469267, 47.391256], [8.469049, 47.391136], [8.469044, 47.391133], [8.469039, 47.39113], [8.469033, 47.391127], [8.469027, 47.391124], [8.469021, 47.391122], [8.469015, 47.39112], [8.469008, 47.391118], [8.469001, 47.391117], [8.468994, 47.391117], [8.468987, 47.391117], [8.46898, 47.391117], [8.468972, 47.391118], [8.468966, 47.391119], [8.468959, 47.39112], [8.468952, 47.391122], [8.468946, 47.391124], [8.46894, 47.391127], [8.468789, 47.391262], [8.468643, 47.391399], [8.468501, 47.391539]]], "type": "MultiLineString"}, "id": "3806", "properties": {}, "type": "Feature"}, {"bbox": [8.481531, 47.411683, 8.486027, 47.420213], "geometry": {"coordinates": [[[8.486027, 47.411683], [8.485967, 47.411752], [8.485934, 47.411792], [8.485906, 47.411834], [8.485882, 47.411877], [8.485861, 47.411938], [8.485857, 47.412246], [8.485866, 47.412678], [8.485874, 47.412956], [8.485863, 47.413088], [8.485837, 47.413219], [8.485794, 47.413348], [8.485737, 47.413474], [8.485664, 47.413596], [8.485592, 47.413676], [8.485529, 47.413758], [8.485474, 47.413844], [8.485411, 47.413936], [8.485337, 47.414024], [8.485253, 47.414107], [8.485158, 47.414185], [8.485054, 47.414258], [8.484981, 47.414296], [8.484912, 47.414338], [8.48485, 47.414384], [8.484502, 47.41472], [8.484478, 47.414745], [8.484458, 47.414772], [8.484441, 47.4148], [8.484427, 47.414829], [8.484418, 47.414859], [8.484411, 47.414889], [8.484409, 47.414919], [8.484411, 47.41495], [8.484428, 47.415158], [8.484418, 47.415366], [8.484379, 47.415573], [8.484365, 47.415621], [8.484356, 47.41567], [8.484353, 47.415719], [8.484356, 47.415768], [8.484365, 47.415817], [8.48438, 47.415865], [8.484401, 47.415912], [8.484427, 47.415957], [8.484459, 47.416001], [8.484542, 47.416131], [8.48455, 47.416144], [8.484557, 47.416157], [8.484561, 47.41617], [8.484564, 47.416183], [8.484566, 47.416197], [8.484565, 47.416211], [8.484563, 47.416224], [8.484563, 47.416229], [8.484563, 47.416234], [8.484562, 47.416238], [8.484561, 47.416243], [8.484558, 47.416247], [8.484556, 47.416251], [8.484553, 47.416255], [8.484549, 47.416259], [8.484545, 47.416263], [8.484541, 47.416266], [8.484355, 47.416416], [8.484186, 47.416565], [8.483815, 47.416936], [8.483447, 47.41731], [8.483292, 47.417474], [8.483129, 47.417647], [8.483003, 47.417825], [8.482824, 47.418126], [8.482803, 47.41816], [8.482768, 47.418207], [8.482656, 47.418346], [8.482596, 47.418425], [8.482509, 47.418564], [8.482285, 47.419043], [8.482239, 47.419135], [8.482187, 47.419226], [8.482127, 47.419315], [8.482004, 47.419485], [8.481814, 47.419783], [8.481666, 47.419977], [8.481656, 47.419989], [8.481565, 47.42009], [8.481555, 47.420103], [8.481547, 47.420116], [8.48154, 47.420129], [8.481535, 47.420143], [8.481532, 47.420157], [8.481531, 47.420171], [8.481532, 47.420185], [8.481535, 47.420199], [8.48154, 47.420213]]], "type": "MultiLineString"}, "id": "3810", "properties": {}, "type": "Feature"}, {"bbox": [8.504122, 47.405792, 8.504217, 47.406132], "geometry": {"coordinates": [[[8.504122, 47.405792], [8.504131, 47.4058], [8.504153, 47.405825], [8.504173, 47.405851], [8.504189, 47.405878], [8.504201, 47.405905], [8.50421, 47.405934], [8.504215, 47.405962], [8.504217, 47.405991], [8.504215, 47.40602], [8.504209, 47.406049], [8.5042, 47.406077], [8.504187, 47.406105], [8.504171, 47.406132]]], "type": "MultiLineString"}, "id": "3813", "properties": {}, "type": "Feature"}, {"bbox": [8.51898, 47.34339, 8.520061, 47.34436], "geometry": {"coordinates": [[[8.520061, 47.34436], [8.519695, 47.344344], [8.519636, 47.344341], [8.519578, 47.344334], [8.51952, 47.344324], [8.519465, 47.344311], [8.519411, 47.344294], [8.519359, 47.344274], [8.519311, 47.344251], [8.519265, 47.344225], [8.519223, 47.344197], [8.519185, 47.344166], [8.519152, 47.344132], [8.519123, 47.344097], [8.519098, 47.344061], [8.519079, 47.344023], [8.519064, 47.343983], [8.519057, 47.343961], [8.519053, 47.343938], [8.519051, 47.343915], [8.519052, 47.343892], [8.519056, 47.343869], [8.519099, 47.343585], [8.519102, 47.343568], [8.519102, 47.34355], [8.5191, 47.343533], [8.519096, 47.343516], [8.51909, 47.343499], [8.519082, 47.343482], [8.51898, 47.34339]]], "type": "MultiLineString"}, "id": "3814", "properties": {}, "type": "Feature"}, {"bbox": [8.50988, 47.378062, 8.510786, 47.378224], "geometry": {"coordinates": [[[8.510786, 47.378062], [8.51071, 47.378088], [8.510633, 47.378111], [8.510554, 47.378132], [8.510333, 47.378175], [8.510108, 47.378206], [8.50988, 47.378224]]], "type": "MultiLineString"}, "id": "3815", "properties": {}, "type": "Feature"}, {"bbox": [8.533259, 47.412491, 8.533598, 47.413094], "geometry": {"coordinates": [[[8.533283, 47.412491], [8.533372, 47.412506], [8.533259, 47.413034], [8.533275, 47.413063], [8.533299, 47.413083], [8.533326, 47.413094], [8.533598, 47.413081]]], "type": "MultiLineString"}, "id": "3821", "properties": {}, "type": "Feature"}, {"bbox": [8.489762, 47.391991, 8.491386, 47.392675], "geometry": {"coordinates": [[[8.491386, 47.392308], [8.49135, 47.392303], [8.491315, 47.392295], [8.491282, 47.392286], [8.49125, 47.392273], [8.491224, 47.392262], [8.4912, 47.392249], [8.491177, 47.392234], [8.491157, 47.392219], [8.491138, 47.392202], [8.491045, 47.392092], [8.491033, 47.392078], [8.49102, 47.392064], [8.491005, 47.392052], [8.490989, 47.39204], [8.490971, 47.39203], [8.490952, 47.392021], [8.490932, 47.392012], [8.490911, 47.392005], [8.490889, 47.392], [8.490866, 47.391996], [8.490843, 47.391993], [8.490819, 47.391991], [8.490796, 47.391991], [8.490772, 47.391993], [8.490749, 47.391996], [8.490726, 47.392], [8.490704, 47.392006], [8.48993, 47.392213], [8.489907, 47.392222], [8.489885, 47.392231], [8.489864, 47.392242], [8.489845, 47.392254], [8.489828, 47.392268], [8.489812, 47.392282], [8.489798, 47.392297], [8.489786, 47.392313], [8.489777, 47.39233], [8.48977, 47.392347], [8.489765, 47.392364], [8.489762, 47.392382], [8.489762, 47.3924], [8.489764, 47.392418], [8.489768, 47.392435], [8.489775, 47.392453], [8.489784, 47.392469], [8.489861, 47.392595], [8.489874, 47.392607], [8.489889, 47.39262], [8.489906, 47.392631], [8.489923, 47.392641], [8.489943, 47.392649], [8.489963, 47.392657], [8.489984, 47.392663], [8.490006, 47.392668], [8.490029, 47.392672], [8.490051, 47.392674], [8.490074, 47.392675], [8.490097, 47.392674], [8.49012, 47.392672], [8.490142, 47.392669], [8.490164, 47.392664], [8.490185, 47.392658], [8.491016, 47.39243], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "3822", "properties": {}, "type": "Feature"}, {"bbox": [8.549602, 47.421543, 8.550043, 47.422127], "geometry": {"coordinates": [[[8.550012, 47.421543], [8.550021, 47.421554], [8.550029, 47.421565], [8.550034, 47.421577], [8.550039, 47.421589], [8.550042, 47.421601], [8.550043, 47.421614], [8.550043, 47.421626], [8.550041, 47.421639], [8.550037, 47.421651], [8.550032, 47.421663], [8.550025, 47.421675], [8.550017, 47.421686], [8.550007, 47.421696], [8.549997, 47.421707], [8.549984, 47.421716], [8.549971, 47.421725], [8.549666, 47.421855], [8.549652, 47.421865], [8.54964, 47.421877], [8.54963, 47.421889], [8.549621, 47.421902], [8.549614, 47.421915], [8.549608, 47.421929], [8.549605, 47.421942], [8.549603, 47.421957], [8.549602, 47.421971], [8.549604, 47.421985], [8.549608, 47.421999], [8.549613, 47.422012], [8.54962, 47.422025], [8.549628, 47.422038], [8.549639, 47.422051], [8.54965, 47.422062], [8.549664, 47.422073], [8.549678, 47.422083], [8.549694, 47.422092], [8.549711, 47.4221], [8.549729, 47.422108], [8.549747, 47.422114], [8.549767, 47.422119], [8.549787, 47.422123], [8.549807, 47.422125], [8.549828, 47.422127], [8.549849, 47.422127], [8.549869, 47.422126], [8.54989, 47.422123], [8.54991, 47.42212], [8.54993, 47.422115], [8.549949, 47.42211]]], "type": "MultiLineString"}, "id": "3824", "properties": {}, "type": "Feature"}, {"bbox": [8.554258, 47.402995, 8.554686, 47.404002], "geometry": {"coordinates": [[[8.554686, 47.402995], [8.554598, 47.403142], [8.554379, 47.403529], [8.554363, 47.403556], [8.554258, 47.403728], [8.554342, 47.404002]]], "type": "MultiLineString"}, "id": "3826", "properties": {}, "type": "Feature"}, {"bbox": [8.543997, 47.375542, 8.545192, 47.375716], "geometry": {"coordinates": [[[8.543997, 47.375551], [8.544083, 47.375542], [8.544597, 47.375552], [8.545192, 47.375716]]], "type": "MultiLineString"}, "id": "3827", "properties": {}, "type": "Feature"}, {"bbox": [8.543797, 47.371873, 8.544414, 47.37214], "geometry": {"coordinates": [[[8.543797, 47.371873], [8.543876, 47.371892], [8.54402, 47.3719], [8.544363, 47.37194], [8.544356, 47.372023], [8.544414, 47.372032], [8.544394, 47.37214]]], "type": "MultiLineString"}, "id": "3829", "properties": {}, "type": "Feature"}, {"bbox": [8.605956, 47.357149, 8.609898, 47.358775], "geometry": {"coordinates": [[[8.605956, 47.357149], [8.606059, 47.357223], [8.606379, 47.357405], [8.606457, 47.35742], [8.606524, 47.357427], [8.606585, 47.357438], [8.607422, 47.357554], [8.607527, 47.357574], [8.607664, 47.357618], [8.609287, 47.358099], [8.609338, 47.358118], [8.609387, 47.358138], [8.609434, 47.358162], [8.609477, 47.358188], [8.609516, 47.358217], [8.609552, 47.358248], [8.609584, 47.358281], [8.609612, 47.358315], [8.609635, 47.358351], [8.609898, 47.358775]]], "type": "MultiLineString"}, "id": "3830", "properties": {}, "type": "Feature"}, {"bbox": [8.515582, 47.323576, 8.518764, 47.324115], "geometry": {"coordinates": [[[8.515582, 47.323724], [8.515678, 47.323699], [8.515716, 47.323689], [8.515733, 47.323684], [8.515752, 47.323681], [8.51577, 47.323679], [8.515794, 47.323679], [8.515818, 47.32368], [8.515842, 47.323683], [8.515906, 47.323694], [8.51611, 47.323745], [8.5165, 47.323826], [8.516549, 47.323835], [8.516509, 47.324049], [8.516535, 47.324049], [8.51666, 47.323739], [8.517463, 47.324115], [8.517466, 47.324011], [8.517522, 47.3239], [8.517549, 47.323805], [8.517563, 47.323651], [8.517615, 47.323576], [8.517725, 47.323614], [8.517847, 47.323728], [8.518086, 47.323772], [8.518262, 47.32384], [8.518484, 47.323969], [8.518526, 47.323905], [8.518653, 47.323928], [8.518764, 47.323947]]], "type": "MultiLineString"}, "id": "3832", "properties": {}, "type": "Feature"}, {"bbox": [8.500105, 47.40334, 8.500984, 47.403465], "geometry": {"coordinates": [[[8.500105, 47.403427], [8.500116, 47.403434], [8.500127, 47.403441], [8.50014, 47.403446], [8.500153, 47.403452], [8.500166, 47.403456], [8.50018, 47.403459], [8.500195, 47.403462], [8.500209, 47.403464], [8.500224, 47.403465], [8.500239, 47.403465], [8.500254, 47.403464], [8.500269, 47.403463], [8.500984, 47.40334]]], "type": "MultiLineString"}, "id": "3834", "properties": {}, "type": "Feature"}, {"bbox": [8.60255, 47.352557, 8.604157, 47.353958], "geometry": {"coordinates": [[[8.602552, 47.352557], [8.60255, 47.352604], [8.602552, 47.35265], [8.60256, 47.352696], [8.602574, 47.352722], [8.602591, 47.352747], [8.602611, 47.35277], [8.602634, 47.352793], [8.602659, 47.352814], [8.602683, 47.352851], [8.602701, 47.352889], [8.602713, 47.352928], [8.60272, 47.352968], [8.602722, 47.353008], [8.602718, 47.353059], [8.602716, 47.353109], [8.602713, 47.35316], [8.602713, 47.353212], [8.60272, 47.353263], [8.602733, 47.353315], [8.602752, 47.353365], [8.602778, 47.353413], [8.602794, 47.353445], [8.602814, 47.353475], [8.602838, 47.353504], [8.602866, 47.353531], [8.602897, 47.353557], [8.602931, 47.35358], [8.602968, 47.353602], [8.603076, 47.353645], [8.603186, 47.353686], [8.603297, 47.353723], [8.603584, 47.353801], [8.60387, 47.35388], [8.604157, 47.353958]]], "type": "MultiLineString"}, "id": "3835", "properties": {}, "type": "Feature"}, {"bbox": [8.54934, 47.387696, 8.551977, 47.388168], "geometry": {"coordinates": [[[8.54934, 47.387721], [8.54937, 47.387723], [8.549385, 47.387696], [8.549457, 47.387705], [8.549498, 47.387764], [8.549584, 47.387698], [8.549642, 47.387771], [8.549721, 47.38771], [8.549786, 47.387782], [8.549868, 47.387717], [8.549931, 47.38779], [8.550016, 47.387726], [8.550054, 47.387811], [8.550133, 47.387817], [8.55017, 47.387838], [8.550207, 47.387907], [8.550303, 47.387853], [8.55034, 47.387932], [8.55044, 47.38788], [8.550479, 47.387957], [8.550575, 47.387907], [8.550618, 47.387983], [8.55072, 47.387934], [8.550753, 47.388009], [8.550865, 47.387959], [8.550902, 47.388035], [8.551018, 47.38799], [8.551041, 47.388062], [8.551137, 47.388012], [8.551191, 47.388065], [8.551276, 47.3881], [8.551361, 47.388124], [8.551977, 47.388168]]], "type": "MultiLineString"}, "id": "3838", "properties": {}, "type": "Feature"}, {"bbox": [8.554503, 47.416953, 8.555477, 47.418232], "geometry": {"coordinates": [[[8.554752, 47.416953], [8.555462, 47.417714], [8.555467, 47.417721], [8.555471, 47.417728], [8.555474, 47.417736], [8.555476, 47.417744], [8.555477, 47.417752], [8.555477, 47.41776], [8.555476, 47.417768], [8.555474, 47.417776], [8.555471, 47.417784], [8.555468, 47.417791], [8.555463, 47.417798], [8.555457, 47.417805], [8.555451, 47.417812], [8.555443, 47.417818], [8.555435, 47.417824], [8.555045, 47.417997], [8.554917, 47.418101], [8.554691, 47.418185], [8.554503, 47.418232]]], "type": "MultiLineString"}, "id": "3839", "properties": {}, "type": "Feature"}, {"bbox": [8.523142, 47.360273, 8.523722, 47.362935], "geometry": {"coordinates": [[[8.523146, 47.362935], [8.523142, 47.362865], [8.523164, 47.362507], [8.523218, 47.36202], [8.52342, 47.361104], [8.523541, 47.360579], [8.523605, 47.360431], [8.523722, 47.360273]]], "type": "MultiLineString"}, "id": "3840", "properties": {}, "type": "Feature"}, {"bbox": [8.582299, 47.400219, 8.582686, 47.400588], "geometry": {"coordinates": [[[8.582642, 47.400588], [8.582686, 47.400525], [8.582586, 47.400422], [8.582546, 47.400434], [8.582517, 47.400387], [8.582498, 47.400392], [8.582472, 47.400353], [8.582455, 47.400356], [8.58243, 47.400319], [8.582372, 47.400333], [8.582299, 47.400219]]], "type": "MultiLineString"}, "id": "3843", "properties": {}, "type": "Feature"}, {"bbox": [8.500191, 47.404965, 8.502116, 47.405636], "geometry": {"coordinates": [[[8.502116, 47.405021], [8.502083, 47.405004], [8.502049, 47.404989], [8.502013, 47.404976], [8.501975, 47.404966], [8.501957, 47.404965], [8.50194, 47.404965], [8.501922, 47.404966], [8.501905, 47.404968], [8.501888, 47.404971], [8.501872, 47.404975], [8.501856, 47.40498], [8.501841, 47.404987], [8.501464, 47.40514], [8.501431, 47.405155], [8.501399, 47.405171], [8.501368, 47.405188], [8.501318, 47.405214], [8.501264, 47.405238], [8.501208, 47.40526], [8.500191, 47.405636]]], "type": "MultiLineString"}, "id": "3845", "properties": {}, "type": "Feature"}, {"bbox": [8.509511, 47.419836, 8.510615, 47.420064], "geometry": {"coordinates": [[[8.509511, 47.419989], [8.509633, 47.42002], [8.509658, 47.420025], [8.509682, 47.420028], [8.509707, 47.420029], [8.509732, 47.420029], [8.509757, 47.420028], [8.509782, 47.420025], [8.509806, 47.420021], [8.50983, 47.420015], [8.510186, 47.419864], [8.510199, 47.419858], [8.510212, 47.419852], [8.510226, 47.419847], [8.51024, 47.419843], [8.510255, 47.41984], [8.510271, 47.419838], [8.510286, 47.419837], [8.510302, 47.419836], [8.510317, 47.419837], [8.510333, 47.419838], [8.510348, 47.41984], [8.510363, 47.419843], [8.510377, 47.419847], [8.510391, 47.419852], [8.510404, 47.419858], [8.510417, 47.419864], [8.510615, 47.420064]]], "type": "MultiLineString"}, "id": "3846", "properties": {}, "type": "Feature"}, {"bbox": [8.567563, 47.413154, 8.57245, 47.413317], "geometry": {"coordinates": [[[8.567563, 47.413287], [8.567607, 47.413271], [8.567654, 47.413258], [8.567702, 47.413247], [8.567842, 47.413231], [8.567982, 47.413215], [8.568122, 47.413199], [8.568182, 47.413182], [8.568243, 47.413169], [8.568306, 47.413159], [8.56837, 47.413154], [8.568822, 47.413157], [8.569274, 47.413161], [8.569725, 47.413164], [8.57024, 47.413174], [8.570754, 47.413181], [8.571269, 47.413186], [8.571511, 47.41323], [8.571754, 47.413274], [8.571997, 47.413317], [8.572032, 47.413309], [8.572068, 47.413303], [8.572105, 47.4133], [8.572142, 47.413298], [8.572179, 47.413299], [8.572215, 47.413302], [8.57245, 47.413305]]], "type": "MultiLineString"}, "id": "3847", "properties": {}, "type": "Feature"}, {"bbox": [8.573075, 47.401611, 8.573904, 47.40344], "geometry": {"coordinates": [[[8.573904, 47.40344], [8.573878, 47.403435], [8.573854, 47.403429], [8.57383, 47.403422], [8.573807, 47.403413], [8.573786, 47.403402], [8.573766, 47.403391], [8.573747, 47.403378], [8.573731, 47.403364], [8.573688, 47.403297], [8.573453, 47.402874], [8.573459, 47.402685], [8.573248, 47.402518], [8.57322, 47.402459], [8.573194, 47.402383], [8.573175, 47.402253], [8.573148, 47.402112], [8.573122, 47.401764], [8.573115, 47.401668], [8.573075, 47.401611]]], "type": "MultiLineString"}, "id": "3848", "properties": {}, "type": "Feature"}, {"bbox": [8.51057, 47.398307, 8.512775, 47.40207], "geometry": {"coordinates": [[[8.511983, 47.398307], [8.511809, 47.39858], [8.511776, 47.398665], [8.511755, 47.398711], [8.51173, 47.39876], [8.511521, 47.399038], [8.511512, 47.39905], [8.511502, 47.399061], [8.51149, 47.399071], [8.511477, 47.399081], [8.511463, 47.39909], [8.511448, 47.399099], [8.511092, 47.399258], [8.511087, 47.399452]], [[8.51057, 47.399725], [8.510642, 47.399774], [8.510645, 47.399775], [8.510647, 47.399776], [8.51065, 47.399777], [8.510653, 47.399777], [8.510656, 47.399777], [8.51066, 47.399778], [8.510663, 47.399778], [8.510666, 47.399777], [8.510669, 47.399777], [8.510672, 47.399776], [8.510675, 47.399776], [8.510678, 47.399775], [8.51068, 47.399774], [8.510683, 47.399773], [8.510833, 47.399704], [8.510987, 47.399638], [8.511144, 47.399576], [8.511147, 47.399575], [8.51115, 47.399574], [8.511153, 47.399573], [8.511157, 47.399573], [8.51116, 47.399572], [8.511164, 47.399572], [8.511167, 47.399572], [8.511171, 47.399573], [8.511174, 47.399573], [8.511178, 47.399574], [8.511181, 47.399575], [8.511184, 47.399576], [8.511187, 47.399577], [8.51119, 47.399578], [8.511192, 47.39958], [8.511195, 47.399582], [8.511197, 47.399584], [8.511199, 47.399586], [8.511201, 47.399588], [8.511354, 47.399749], [8.511427, 47.399869], [8.511528, 47.400093], [8.511612, 47.400186], [8.511705, 47.400277], [8.51182, 47.400377], [8.511941, 47.400509], [8.51224, 47.400805], [8.512257, 47.400824], [8.512287, 47.400857], [8.512403, 47.401032], [8.512417, 47.401047], [8.512619, 47.401342], [8.512728, 47.401551], [8.512749, 47.401607], [8.512757, 47.401633], [8.512761, 47.40166], [8.512762, 47.401686], [8.512745, 47.401976], [8.512775, 47.40207]]], "type": "MultiLineString"}, "id": "3850", "properties": {}, "type": "Feature"}, {"bbox": [8.521839, 47.410267, 8.523258, 47.410952], "geometry": {"coordinates": [[[8.523258, 47.410547], [8.523216, 47.410519], [8.522929, 47.410295], [8.522866, 47.410267], [8.522736, 47.410347], [8.521839, 47.410952]]], "type": "MultiLineString"}, "id": "3852", "properties": {}, "type": "Feature"}, {"bbox": [8.532833, 47.347353, 8.53332, 47.348925], "geometry": {"coordinates": [[[8.532833, 47.347353], [8.533245, 47.347401], [8.5333, 47.34748], [8.53332, 47.347726], [8.533261, 47.348083], [8.533236, 47.348157], [8.533206, 47.348365], [8.533186, 47.348498], [8.533176, 47.348631], [8.533175, 47.348765], [8.533176, 47.348781], [8.533179, 47.348797], [8.533185, 47.348812], [8.533192, 47.348828], [8.533202, 47.348842], [8.533213, 47.348856], [8.533226, 47.34887], [8.533292, 47.348925]]], "type": "MultiLineString"}, "id": "3853", "properties": {}, "type": "Feature"}, {"bbox": [8.500784, 47.361976, 8.503727, 47.363316], "geometry": {"coordinates": [[[8.503727, 47.361976], [8.503586, 47.36211], [8.503334, 47.362319], [8.503159, 47.362454], [8.50291, 47.36261], [8.502642, 47.362751], [8.502358, 47.362877], [8.502059, 47.362986], [8.501986, 47.363013], [8.501707, 47.363099], [8.501421, 47.363176], [8.50113, 47.363243], [8.500784, 47.363316]]], "type": "MultiLineString"}, "id": "3858", "properties": {}, "type": "Feature"}, {"bbox": [8.47929, 47.360328, 8.480317, 47.360657], "geometry": {"coordinates": [[[8.480317, 47.360328], [8.480268, 47.360336], [8.48022, 47.360347], [8.480174, 47.36036], [8.480129, 47.360375], [8.479804, 47.36048], [8.47929, 47.360657]]], "type": "MultiLineString"}, "id": "3863", "properties": {}, "type": "Feature"}, {"bbox": [8.538202, 47.334114, 8.539006, 47.334758], "geometry": {"coordinates": [[[8.539006, 47.334525], [8.538995, 47.334522], [8.538984, 47.334519], [8.538973, 47.334517], [8.538962, 47.334516], [8.538951, 47.334515], [8.538939, 47.334515], [8.538928, 47.334516], [8.538916, 47.334517], [8.538905, 47.334519], [8.538895, 47.334521], [8.538884, 47.334524], [8.538874, 47.334528], [8.538864, 47.334532], [8.538817, 47.334556], [8.538704, 47.334647], [8.538577, 47.334732], [8.538571, 47.334736], [8.538566, 47.33474], [8.538559, 47.334744], [8.538553, 47.334747], [8.538546, 47.33475], [8.538538, 47.334752], [8.538531, 47.334754], [8.538523, 47.334756], [8.538515, 47.334757], [8.538506, 47.334758], [8.538498, 47.334758], [8.53849, 47.334758], [8.538482, 47.334757], [8.538474, 47.334756], [8.538466, 47.334754], [8.538458, 47.334752], [8.538452, 47.334749], [8.538445, 47.334745], [8.53844, 47.334742], [8.538434, 47.334738], [8.53843, 47.334734], [8.538425, 47.334729], [8.538422, 47.334724], [8.538419, 47.334719], [8.538417, 47.334714], [8.538415, 47.334709], [8.538414, 47.334704], [8.538414, 47.334698], [8.538414, 47.334693], [8.538415, 47.334688], [8.538417, 47.334683], [8.538419, 47.334677], [8.538422, 47.334673], [8.538426, 47.334668], [8.53845, 47.334619], [8.538466, 47.334537], [8.538479, 47.334496], [8.538497, 47.334456], [8.53852, 47.334418], [8.538548, 47.334381], [8.538581, 47.334346], [8.538695, 47.334221], [8.538701, 47.334218], [8.538706, 47.334215], [8.538712, 47.334211], [8.538716, 47.334207], [8.53872, 47.334203], [8.538724, 47.334198], [8.538727, 47.334193], [8.538729, 47.334189], [8.538731, 47.334184], [8.538732, 47.334178], [8.538732, 47.334173], [8.538732, 47.334168], [8.538731, 47.334163], [8.538729, 47.334158], [8.538727, 47.334153], [8.538724, 47.334149], [8.538721, 47.334144], [8.538717, 47.33414], [8.538713, 47.334136], [8.538708, 47.334132], [8.538702, 47.334128], [8.538696, 47.334125], [8.53869, 47.334122], [8.538684, 47.33412], [8.538677, 47.334118], [8.53867, 47.334116], [8.538662, 47.334115], [8.538655, 47.334114], [8.538647, 47.334114], [8.53864, 47.334114], [8.538632, 47.334114], [8.538625, 47.334115], [8.538618, 47.334117], [8.538611, 47.334119], [8.538604, 47.334121], [8.538598, 47.334123], [8.538592, 47.334126], [8.538586, 47.33413], [8.538581, 47.334133], [8.538576, 47.334137], [8.538572, 47.334141], [8.538263, 47.334343], [8.538202, 47.334341]]], "type": "MultiLineString"}, "id": "3864", "properties": {}, "type": "Feature"}, {"bbox": [8.534294, 47.403729, 8.535254, 47.404896], "geometry": {"coordinates": [[[8.534294, 47.403729], [8.534357, 47.403796], [8.534425, 47.40386], [8.534499, 47.403921], [8.53451, 47.403928], [8.534521, 47.403934], [8.534533, 47.40394], [8.534546, 47.403945], [8.534559, 47.403949], [8.534573, 47.403952], [8.534587, 47.403954], [8.534601, 47.403956], [8.534615, 47.403956], [8.53463, 47.403956], [8.534644, 47.403955], [8.53472, 47.403934], [8.534728, 47.403933], [8.534735, 47.403932], [8.534743, 47.403932], [8.534751, 47.403933], [8.534758, 47.403934], [8.534766, 47.403935], [8.534773, 47.403936], [8.53478, 47.403939], [8.534787, 47.403941], [8.534793, 47.403944], [8.534799, 47.403947], [8.534804, 47.403951], [8.534809, 47.403955], [8.534814, 47.403959], [8.534818, 47.403963], [8.534821, 47.403968], [8.535241, 47.404686], [8.535245, 47.404692], [8.535249, 47.404698], [8.535251, 47.404705], [8.535253, 47.404711], [8.535254, 47.404718], [8.535254, 47.404724], [8.535253, 47.404731], [8.535251, 47.404737], [8.535249, 47.404744], [8.535246, 47.40475], [8.535241, 47.404756], [8.535237, 47.404761], [8.535231, 47.404767], [8.535225, 47.404772], [8.535218, 47.404776], [8.535211, 47.404781], [8.535172, 47.404791], [8.535134, 47.404803], [8.535099, 47.404818], [8.535065, 47.404834], [8.535034, 47.404853], [8.535006, 47.404874], [8.53498, 47.404896]]], "type": "MultiLineString"}, "id": "3865", "properties": {}, "type": "Feature"}, {"bbox": [8.478207, 47.382621, 8.479404, 47.382931], "geometry": {"coordinates": [[[8.478207, 47.382931], [8.478226, 47.382922], [8.478243, 47.382911], [8.478259, 47.3829], [8.478345, 47.382835], [8.478363, 47.382824], [8.478382, 47.382814], [8.478403, 47.382806], [8.478424, 47.382798], [8.478447, 47.382792], [8.47847, 47.382787], [8.478493, 47.382784], [8.478517, 47.382782], [8.479098, 47.382733], [8.479128, 47.38273], [8.479158, 47.382725], [8.479187, 47.382719], [8.479215, 47.38271], [8.479242, 47.3827], [8.479404, 47.382621]]], "type": "MultiLineString"}, "id": "3867", "properties": {}, "type": "Feature"}, {"bbox": [8.494636, 47.403656, 8.495609, 47.404466], "geometry": {"coordinates": [[[8.494636, 47.403656], [8.49468, 47.403682], [8.494843, 47.403922], [8.494871, 47.403948], [8.494908, 47.403983], [8.495075, 47.404277], [8.495095, 47.404325], [8.495118, 47.404379], [8.495192, 47.404428], [8.495609, 47.404466]]], "type": "MultiLineString"}, "id": "3868", "properties": {}, "type": "Feature"}, {"bbox": [8.572466, 47.4117, 8.572705, 47.412872], "geometry": {"coordinates": [[[8.572687, 47.4117], [8.572649, 47.411784], [8.572614, 47.411869], [8.572581, 47.411954], [8.572576, 47.411974], [8.572573, 47.411995], [8.572573, 47.412015], [8.572576, 47.412035], [8.572581, 47.412055], [8.572589, 47.412075], [8.5726, 47.412094], [8.572612, 47.412113], [8.572671, 47.41217], [8.57268, 47.412182], [8.572689, 47.412195], [8.572695, 47.412208], [8.5727, 47.412221], [8.572703, 47.412235], [8.572705, 47.412249], [8.572704, 47.412263], [8.572702, 47.412276], [8.572697, 47.41229], [8.572576, 47.412523], [8.572533, 47.412608], [8.5725, 47.412694], [8.572477, 47.412783], [8.572466, 47.412872]]], "type": "MultiLineString"}, "id": "3869", "properties": {}, "type": "Feature"}, {"bbox": [8.574065, 47.372378, 8.574289, 47.372719], "geometry": {"coordinates": [[[8.574289, 47.372378], [8.574264, 47.372452], [8.574229, 47.372523], [8.574183, 47.372592], [8.574129, 47.372658], [8.574065, 47.372719]]], "type": "MultiLineString"}, "id": "3870", "properties": {}, "type": "Feature"}, {"bbox": [8.530486, 47.357296, 8.53217, 47.359487], "geometry": {"coordinates": [[[8.53128, 47.359487], [8.531241, 47.35943], [8.531141, 47.35928], [8.53108, 47.359201], [8.530997, 47.359086], [8.530922, 47.358969], [8.530857, 47.35885], [8.530816, 47.358762], [8.5307, 47.358493], [8.530683, 47.358456], [8.530661, 47.358421], [8.530635, 47.358387], [8.530605, 47.358355], [8.530572, 47.358327], [8.530537, 47.358301], [8.530499, 47.358277], [8.530486, 47.358232], [8.530609, 47.358234], [8.530626, 47.358234], [8.530644, 47.358232], [8.530661, 47.358229], [8.530678, 47.358226], [8.530694, 47.358221], [8.53071, 47.358215], [8.530725, 47.358209], [8.530739, 47.358202], [8.530767, 47.358184], [8.530793, 47.358164], [8.530817, 47.358143], [8.530838, 47.35812], [8.530877, 47.358072], [8.530919, 47.358025], [8.530965, 47.35798], [8.531009, 47.357942], [8.531055, 47.357905], [8.531104, 47.35787], [8.531162, 47.357833], [8.53122, 47.357797], [8.531279, 47.357762], [8.531315, 47.357739], [8.531347, 47.357713], [8.531375, 47.357686], [8.5314, 47.357657], [8.531421, 47.357627], [8.531437, 47.357596], [8.531449, 47.357563], [8.53149, 47.357449], [8.531497, 47.357431], [8.531507, 47.357414], [8.531519, 47.357397], [8.531534, 47.357381], [8.53155, 47.357366], [8.531568, 47.357352], [8.531589, 47.357339], [8.53161, 47.357328], [8.531634, 47.357318], [8.531658, 47.357309], [8.531684, 47.357302], [8.531698, 47.357299], [8.531713, 47.357297], [8.531727, 47.357296], [8.531742, 47.357296], [8.531757, 47.357297], [8.531772, 47.357299], [8.531786, 47.357301], [8.5318, 47.357305], [8.531814, 47.357309], [8.531827, 47.357314], [8.531839, 47.35732], [8.53185, 47.357327], [8.53186, 47.357334], [8.53187, 47.357342], [8.531888, 47.357362], [8.531904, 47.357384], [8.531916, 47.357406], [8.531926, 47.357429], [8.531933, 47.357453], [8.531936, 47.357477], [8.531937, 47.357501], [8.531931, 47.357542], [8.531921, 47.357583], [8.531907, 47.357623], [8.531882, 47.357724], [8.531878, 47.357762], [8.531879, 47.3578], [8.531884, 47.357837], [8.531889, 47.357853], [8.531895, 47.357868], [8.531904, 47.357883], [8.531914, 47.357898], [8.531926, 47.357911], [8.53194, 47.357924], [8.531955, 47.357936], [8.531966, 47.357942], [8.531977, 47.357948], [8.531988, 47.357953], [8.532, 47.357957], [8.532013, 47.35796], [8.532026, 47.357963], [8.532039, 47.357965], [8.532053, 47.357966], [8.532067, 47.357966], [8.53217, 47.357966]]], "type": "MultiLineString"}, "id": "3872", "properties": {}, "type": "Feature"}, {"bbox": [8.533939, 47.399239, 8.536125, 47.400329], "geometry": {"coordinates": [[[8.533939, 47.399359], [8.534287, 47.39925], [8.53452, 47.399239], [8.534868, 47.399321], [8.535003, 47.399415], [8.53509, 47.399486], [8.535179, 47.399615], [8.535389, 47.399956], [8.535792, 47.400144], [8.536125, 47.400329]]], "type": "MultiLineString"}, "id": "3873", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.427205, 8.496232, 47.431128], "geometry": {"coordinates": [[[8.496232, 47.427205], [8.496124, 47.427317], [8.495995, 47.42743], [8.495884, 47.427507], [8.495771, 47.427583], [8.495655, 47.427656], [8.495583, 47.427705], [8.495518, 47.427759], [8.495461, 47.427816], [8.495412, 47.427876], [8.495395, 47.427894], [8.49538, 47.427912], [8.495368, 47.427931], [8.495358, 47.427951], [8.495351, 47.427971], [8.495346, 47.427991], [8.495345, 47.428012], [8.495346, 47.428033], [8.495349, 47.428054], [8.495356, 47.428074], [8.495365, 47.428094], [8.495377, 47.428113], [8.495391, 47.428131], [8.495407, 47.428149], [8.495426, 47.428165], [8.495447, 47.428181], [8.49547, 47.428195], [8.495494, 47.428207], [8.495519, 47.42822], [8.495542, 47.428235], [8.495563, 47.42825], [8.495581, 47.428267], [8.495598, 47.428285], [8.495613, 47.428304], [8.495625, 47.428324], [8.495634, 47.428344], [8.495641, 47.428365], [8.495645, 47.428386], [8.495243, 47.429037], [8.495037, 47.429355], [8.494802, 47.429583], [8.494226, 47.42992], [8.493809, 47.430175], [8.49331, 47.430511], [8.493236, 47.430597], [8.493166, 47.430685], [8.4931, 47.430775], [8.49308, 47.430803], [8.493064, 47.430833], [8.493052, 47.430863], [8.493044, 47.430895], [8.492992, 47.431053], [8.492955, 47.431128]]], "type": "MultiLineString"}, "id": "3874", "properties": {}, "type": "Feature"}, {"bbox": [8.58492, 47.401238, 8.586164, 47.401734], "geometry": {"coordinates": [[[8.586164, 47.401734], [8.58611, 47.401634], [8.586046, 47.401537], [8.585971, 47.401444], [8.585935, 47.401405], [8.585885, 47.401411], [8.585838, 47.401376], [8.585787, 47.401345], [8.585733, 47.401316], [8.585675, 47.401291], [8.585627, 47.401274], [8.585578, 47.401261], [8.585527, 47.401251], [8.585474, 47.401243], [8.585421, 47.401239], [8.585368, 47.401238], [8.585315, 47.401241], [8.585238, 47.40125], [8.585164, 47.401264], [8.585091, 47.401283], [8.585021, 47.401306], [8.584987, 47.401316], [8.58492, 47.401312]]], "type": "MultiLineString"}, "id": "3877", "properties": {}, "type": "Feature"}, {"bbox": [8.506996, 47.417154, 8.508057, 47.417509], "geometry": {"coordinates": [[[8.508057, 47.417509], [8.507976, 47.417447], [8.507895, 47.417386], [8.507813, 47.417325], [8.507776, 47.417303], [8.507736, 47.417283], [8.507694, 47.417266], [8.507649, 47.417252], [8.507603, 47.417241], [8.507545, 47.417228], [8.507486, 47.417217], [8.507427, 47.417205], [8.507369, 47.417192], [8.507313, 47.417175], [8.50726, 47.417156], [8.50725, 47.417155], [8.507241, 47.417154], [8.507232, 47.417154], [8.507223, 47.417155], [8.507213, 47.417156], [8.507204, 47.417157], [8.507196, 47.41716], [8.507187, 47.417162], [8.507179, 47.417166], [8.507137, 47.417189], [8.507092, 47.417211], [8.507045, 47.41723], [8.506996, 47.417246]]], "type": "MultiLineString"}, "id": "3878", "properties": {}, "type": "Feature"}, {"bbox": [8.514446, 47.357296, 8.517249, 47.357637], "geometry": {"coordinates": [[[8.517249, 47.357448], [8.517043, 47.357511], [8.516773, 47.357474], [8.516747, 47.357468], [8.516722, 47.357461], [8.516698, 47.357452], [8.516675, 47.357442], [8.516653, 47.357431], [8.516601, 47.357407], [8.516573, 47.357395], [8.516543, 47.357384], [8.516512, 47.357375], [8.516242, 47.357316], [8.516186, 47.357306], [8.516129, 47.357299], [8.516071, 47.357296], [8.516013, 47.357297], [8.515956, 47.357301], [8.515899, 47.357308], [8.515888, 47.35731], [8.515877, 47.357311], [8.515866, 47.357314], [8.515855, 47.357317], [8.515845, 47.357321], [8.515836, 47.357325], [8.515827, 47.35733], [8.515818, 47.357335], [8.515811, 47.357341], [8.515804, 47.357347], [8.515756, 47.357394], [8.515706, 47.357439], [8.515656, 47.357484], [8.515633, 47.357505], [8.515607, 47.357524], [8.51558, 47.357543], [8.515551, 47.35756], [8.515521, 47.357575], [8.515488, 47.357588], [8.515454, 47.357598], [8.515437, 47.357603], [8.51542, 47.357607], [8.515402, 47.35761], [8.515384, 47.357612], [8.515366, 47.357612], [8.515347, 47.357612], [8.515329, 47.35761], [8.515311, 47.357607], [8.515294, 47.357603], [8.515277, 47.357598], [8.515261, 47.357593], [8.515246, 47.357586], [8.515232, 47.357578], [8.515218, 47.357569], [8.515104, 47.357492], [8.515078, 47.357475], [8.515051, 47.35746], [8.515022, 47.357446], [8.514991, 47.357434], [8.514959, 47.357424], [8.514735, 47.357368], [8.514672, 47.357349], [8.514651, 47.357379], [8.51459, 47.357504], [8.514446, 47.357637]]], "type": "MultiLineString"}, "id": "3879", "properties": {}, "type": "Feature"}, {"bbox": [8.589657, 47.400796, 8.591367, 47.401354], "geometry": {"coordinates": [[[8.591367, 47.400796], [8.590645, 47.401033], [8.590022, 47.401236], [8.590015, 47.401237], [8.590008, 47.401239], [8.590001, 47.401239], [8.589993, 47.40124], [8.589986, 47.40124], [8.589979, 47.401239], [8.589972, 47.401238], [8.589965, 47.401237], [8.589959, 47.401237], [8.589953, 47.401238], [8.589947, 47.401239], [8.589942, 47.40124], [8.589936, 47.401242], [8.589931, 47.401244], [8.589926, 47.401246], [8.589922, 47.401248], [8.589918, 47.401251], [8.589914, 47.401254], [8.58991, 47.401257], [8.589909, 47.401261], [8.589907, 47.401264], [8.589905, 47.401267], [8.589902, 47.40127], [8.589899, 47.401273], [8.589895, 47.401276], [8.589892, 47.401278], [8.589887, 47.401281], [8.589883, 47.401283], [8.589879, 47.401285], [8.589657, 47.401354]]], "type": "MultiLineString"}, "id": "3881", "properties": {}, "type": "Feature"}, {"bbox": [8.53114, 47.423969, 8.53117, 47.42492], "geometry": {"coordinates": [[[8.53114, 47.423969], [8.53117, 47.424341], [8.531162, 47.424526], [8.531158, 47.424601], [8.531151, 47.424744], [8.531157, 47.424842], [8.53117, 47.42492]]], "type": "MultiLineString"}, "id": "3890", "properties": {}, "type": "Feature"}, {"bbox": [8.545814, 47.3652, 8.547904, 47.36675], "geometry": {"coordinates": [[[8.547904, 47.3652], [8.547463, 47.365552], [8.547307, 47.365661], [8.54711, 47.365799], [8.546983, 47.365887], [8.546914, 47.365942], [8.546656, 47.366147], [8.546268, 47.366461], [8.546168, 47.366542], [8.546058, 47.366618], [8.54594, 47.366687], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3891", "properties": {}, "type": "Feature"}, {"bbox": [8.504171, 47.398839, 8.504938, 47.399463], "geometry": {"coordinates": [[[8.504171, 47.398839], [8.504175, 47.398905], [8.504322, 47.398997], [8.504644, 47.399223], [8.504822, 47.399374], [8.504938, 47.399463]]], "type": "MultiLineString"}, "id": "3893", "properties": {}, "type": "Feature"}, {"bbox": [8.510001, 47.378062, 8.510786, 47.378415], "geometry": {"coordinates": [[[8.510786, 47.378062], [8.510732, 47.3781], [8.510675, 47.378136], [8.510616, 47.37817], [8.510458, 47.378245], [8.510294, 47.378314], [8.510125, 47.378377], [8.510084, 47.37839], [8.510042, 47.378403], [8.510001, 47.378415]]], "type": "MultiLineString"}, "id": "3894", "properties": {}, "type": "Feature"}, {"bbox": [8.583904, 47.377025, 8.589438, 47.378939], "geometry": {"coordinates": [[[8.583904, 47.377081], [8.584054, 47.377046], [8.584105, 47.377036], [8.584158, 47.377029], [8.58421, 47.377025], [8.584263, 47.377025], [8.584316, 47.377027], [8.584369, 47.377032], [8.58442, 47.377041], [8.584471, 47.377052], [8.58452, 47.377066], [8.584567, 47.377083], [8.584611, 47.377103], [8.584653, 47.377125], [8.584692, 47.377149], [8.584728, 47.377176], [8.58476, 47.377204], [8.584919, 47.377358], [8.584945, 47.377382], [8.584963, 47.377398], [8.584983, 47.377413], [8.585006, 47.377427], [8.58503, 47.377439], [8.585055, 47.37745], [8.585082, 47.377459], [8.58511, 47.377466], [8.585312, 47.377513], [8.585426, 47.377536], [8.585543, 47.377554], [8.585661, 47.377565], [8.585843, 47.37758], [8.586025, 47.377598], [8.586207, 47.37762], [8.58629, 47.377628], [8.586375, 47.377631], [8.586459, 47.377629], [8.586709, 47.377617], [8.586773, 47.377615], [8.586838, 47.377617], [8.586902, 47.377622], [8.587015, 47.377679], [8.587418, 47.37798], [8.587763, 47.378274], [8.587811, 47.37831], [8.587863, 47.378344], [8.587919, 47.378374], [8.588679, 47.378739], [8.588789, 47.378792], [8.588847, 47.378818], [8.588909, 47.378839], [8.588973, 47.378857], [8.589039, 47.378871], [8.589438, 47.378939]]], "type": "MultiLineString"}, "id": "3897", "properties": {}, "type": "Feature"}, {"bbox": [8.590965, 47.374033, 8.592086, 47.375804], "geometry": {"coordinates": [[[8.590965, 47.374033], [8.590986, 47.374055], [8.591149, 47.374224], [8.591169, 47.374256], [8.591192, 47.374291], [8.591345, 47.374456], [8.591533, 47.374754], [8.591637, 47.37497], [8.591831, 47.375327], [8.592073, 47.37578], [8.592086, 47.375804]]], "type": "MultiLineString"}, "id": "3898", "properties": {}, "type": "Feature"}, {"bbox": [8.570478, 47.391748, 8.574073, 47.392983], "geometry": {"coordinates": [[[8.570478, 47.392983], [8.57049, 47.392976], [8.570502, 47.39297], [8.570516, 47.392964], [8.57053, 47.392959], [8.570545, 47.392956], [8.570784, 47.392903], [8.570835, 47.39289], [8.570884, 47.392874], [8.570931, 47.392855], [8.570975, 47.392834], [8.571016, 47.39281], [8.571054, 47.392783], [8.571089, 47.392755], [8.571119, 47.392724], [8.571146, 47.392692], [8.571168, 47.392658], [8.571317, 47.392399], [8.571339, 47.392367], [8.571364, 47.392336], [8.571393, 47.392307], [8.571426, 47.39228], [8.571462, 47.392255], [8.571502, 47.392233], [8.571544, 47.392212], [8.571589, 47.392195], [8.571636, 47.39218], [8.571685, 47.392168], [8.571735, 47.39216], [8.571787, 47.392154], [8.571838, 47.392151], [8.57189, 47.392152], [8.572412, 47.392175], [8.572473, 47.392175], [8.572533, 47.392173], [8.572593, 47.392167], [8.572653, 47.392158], [8.572711, 47.392145], [8.572767, 47.39213], [8.572821, 47.392111], [8.572873, 47.392089], [8.573511, 47.391795], [8.573541, 47.391783], [8.573573, 47.391772], [8.573605, 47.391763], [8.573639, 47.391756], [8.573674, 47.391752], [8.573709, 47.391749], [8.573744, 47.391748], [8.573779, 47.391749], [8.573814, 47.391753], [8.573848, 47.391758], [8.573882, 47.391766], [8.573914, 47.391775], [8.573945, 47.391787], [8.573975, 47.3918], [8.574003, 47.391815], [8.574028, 47.391831], [8.574052, 47.391849], [8.574073, 47.391868]]], "type": "MultiLineString"}, "id": "3899", "properties": {}, "type": "Feature"}, {"bbox": [8.509307, 47.408359, 8.510624, 47.409058], "geometry": {"coordinates": [[[8.509307, 47.408515], [8.509457, 47.408532], [8.509503, 47.408592], [8.509804, 47.408828], [8.509886, 47.408836], [8.510047, 47.409058], [8.510378, 47.408948], [8.510624, 47.408867], [8.510318, 47.408441], [8.510096, 47.408513], [8.509982, 47.408359], [8.509457, 47.408532]]], "type": "MultiLineString"}, "id": "3900", "properties": {}, "type": "Feature"}, {"bbox": [8.535261, 47.375463, 8.535793, 47.376071], "geometry": {"coordinates": [[[8.535733, 47.376071], [8.535738, 47.375964], [8.535793, 47.375951], [8.535585, 47.375463], [8.535261, 47.375611], [8.535447, 47.375749]]], "type": "MultiLineString"}, "id": "3902", "properties": {}, "type": "Feature"}, {"bbox": [8.502142, 47.398579, 8.503807, 47.399259], "geometry": {"coordinates": [[[8.503807, 47.398579], [8.503726, 47.398643], [8.503677, 47.398677], [8.503625, 47.3987], [8.503505, 47.398743], [8.503319, 47.398776], [8.503195, 47.398804], [8.503064, 47.398834], [8.502699, 47.398943], [8.502255, 47.39912], [8.502239, 47.399133], [8.502142, 47.399259]]], "type": "MultiLineString"}, "id": "3903", "properties": {}, "type": "Feature"}, {"bbox": [8.541839, 47.393867, 8.543254, 47.394077], "geometry": {"coordinates": [[[8.541839, 47.394077], [8.541841, 47.394055], [8.541847, 47.394034], [8.541855, 47.394013], [8.541866, 47.393992], [8.541879, 47.393972], [8.541895, 47.393953], [8.541913, 47.393935], [8.541934, 47.393919], [8.542096, 47.393899], [8.542246, 47.393895], [8.542496, 47.393888], [8.542689, 47.393875], [8.543126, 47.393867], [8.543254, 47.39387]]], "type": "MultiLineString"}, "id": "3904", "properties": {}, "type": "Feature"}, {"bbox": [8.543741, 47.372656, 8.543773, 47.373103], "geometry": {"coordinates": [[[8.543773, 47.372656], [8.543741, 47.372851], [8.543746, 47.372948], [8.543758, 47.373103]]], "type": "MultiLineString"}, "id": "3908", "properties": {}, "type": "Feature"}, {"bbox": [8.530993, 47.391439, 8.531922, 47.391815], "geometry": {"coordinates": [[[8.530993, 47.391439], [8.531396, 47.391657], [8.531577, 47.391584], [8.531903, 47.391767], [8.531922, 47.391815]]], "type": "MultiLineString"}, "id": "3910", "properties": {}, "type": "Feature"}, {"bbox": [8.581947, 47.35204, 8.582183, 47.3528], "geometry": {"coordinates": [[[8.581947, 47.35204], [8.582173, 47.352301], [8.582176, 47.352305], [8.582179, 47.352309], [8.582181, 47.352313], [8.582182, 47.352317], [8.582183, 47.352321], [8.582183, 47.352325], [8.582183, 47.35233], [8.582182, 47.352334], [8.582181, 47.352338], [8.582179, 47.352342], [8.582176, 47.352346], [8.582173, 47.35235], [8.58217, 47.352353], [8.582166, 47.352357], [8.582119, 47.352416], [8.582075, 47.352475], [8.582034, 47.352536], [8.582027, 47.352546], [8.582021, 47.352556], [8.582017, 47.352566], [8.582014, 47.352577], [8.582013, 47.352588], [8.582013, 47.352598], [8.582014, 47.352609], [8.582017, 47.35262], [8.582021, 47.35263], [8.582026, 47.35264], [8.582033, 47.35265], [8.582075, 47.3527], [8.582118, 47.35275], [8.582162, 47.3528]]], "type": "MultiLineString"}, "id": "3913", "properties": {}, "type": "Feature"}, {"bbox": [8.55654, 47.399716, 8.559285, 47.403078], "geometry": {"coordinates": [[[8.556578, 47.399716], [8.556545, 47.399802], [8.556541, 47.399823], [8.55654, 47.399844], [8.556541, 47.399865], [8.556546, 47.399886], [8.556553, 47.399906], [8.556562, 47.399926], [8.556575, 47.399945], [8.55659, 47.399964], [8.556607, 47.399981], [8.556836, 47.40019], [8.556956, 47.400304], [8.557066, 47.400422], [8.557169, 47.400544], [8.557233, 47.400628], [8.557294, 47.400714], [8.557351, 47.400801], [8.557351, 47.400801], [8.557351, 47.400801], [8.557384, 47.400867], [8.55741, 47.400935], [8.557428, 47.401003], [8.557428, 47.401003], [8.557428, 47.401004], [8.557437, 47.401085], [8.557442, 47.401167], [8.557441, 47.401249], [8.557441, 47.40125], [8.557441, 47.40125], [8.557439, 47.401341], [8.557445, 47.401432], [8.55746, 47.401522], [8.55748, 47.401576], [8.557506, 47.401629], [8.557538, 47.401681], [8.557629, 47.401804], [8.557725, 47.401925], [8.557826, 47.402044], [8.557827, 47.402044], [8.557827, 47.402044], [8.557915, 47.402148], [8.558017, 47.402247], [8.558131, 47.402338], [8.558311, 47.402442], [8.558498, 47.40254], [8.558691, 47.402632], [8.558784, 47.402671], [8.558872, 47.402716], [8.558954, 47.402766], [8.55903, 47.40282], [8.559099, 47.402878], [8.55916, 47.40294], [8.55916, 47.40294], [8.559285, 47.403078]]], "type": "MultiLineString"}, "id": "3916", "properties": {}, "type": "Feature"}, {"bbox": [8.465177, 47.390483, 8.467512, 47.391314], "geometry": {"coordinates": [[[8.467512, 47.390483], [8.467455, 47.390518], [8.467394, 47.390551], [8.467331, 47.390582], [8.467121, 47.390663], [8.466935, 47.390732], [8.466757, 47.390809], [8.466587, 47.390896], [8.466458, 47.390964], [8.466331, 47.391033], [8.466204, 47.391103], [8.466177, 47.391116], [8.466149, 47.391126], [8.466119, 47.391136], [8.466088, 47.391143], [8.466056, 47.391149], [8.466024, 47.391152], [8.465991, 47.391154], [8.465958, 47.391154], [8.465926, 47.391152], [8.465668, 47.391118], [8.465654, 47.391116], [8.46564, 47.391114], [8.465625, 47.391113], [8.465611, 47.391113], [8.465597, 47.391113], [8.465582, 47.391115], [8.465568, 47.391117], [8.465555, 47.39112], [8.465541, 47.391124], [8.465529, 47.391129], [8.465517, 47.391134], [8.465505, 47.39114], [8.465177, 47.391314]]], "type": "MultiLineString"}, "id": "3917", "properties": {}, "type": "Feature"}, {"bbox": [8.549212, 47.426401, 8.550822, 47.427521], "geometry": {"coordinates": [[[8.549212, 47.42642], [8.549692, 47.426403], [8.549715, 47.426402], [8.549738, 47.426401], [8.549761, 47.426402], [8.549783, 47.426404], [8.549806, 47.426407], [8.549828, 47.426411], [8.549849, 47.426417], [8.54987, 47.426424], [8.550032, 47.426457], [8.550195, 47.426491], [8.550357, 47.426524], [8.550449, 47.426536], [8.550542, 47.426546], [8.550635, 47.426555], [8.550644, 47.426555], [8.550653, 47.426557], [8.550661, 47.426558], [8.55067, 47.42656], [8.550678, 47.426563], [8.550686, 47.426566], [8.550693, 47.42657], [8.5507, 47.426574], [8.550706, 47.426578], [8.550711, 47.426583], [8.550716, 47.426588], [8.550721, 47.426594], [8.550724, 47.426599], [8.550727, 47.426605], [8.550729, 47.426611], [8.550747, 47.426689], [8.550768, 47.426767], [8.550789, 47.426844], [8.550796, 47.426871], [8.550799, 47.426899], [8.550798, 47.426926], [8.550806, 47.427105], [8.550814, 47.427283], [8.550822, 47.427462], [8.550814, 47.427521]]], "type": "MultiLineString"}, "id": "3918", "properties": {}, "type": "Feature"}, {"bbox": [8.566278, 47.413297, 8.566938, 47.416339], "geometry": {"coordinates": [[[8.566837, 47.413297], [8.566814, 47.413354], [8.566798, 47.413412], [8.566789, 47.413471], [8.566788, 47.41353], [8.566794, 47.413589], [8.566807, 47.413648], [8.566827, 47.413705], [8.566897, 47.413861], [8.566913, 47.413889], [8.566925, 47.413918], [8.566934, 47.413947], [8.566938, 47.413977], [8.566938, 47.414007], [8.566934, 47.414037], [8.566924, 47.414352], [8.56689, 47.414514], [8.566841, 47.414675], [8.566778, 47.414833], [8.566741, 47.414889], [8.566699, 47.414944], [8.566652, 47.414997], [8.566525, 47.415158], [8.566422, 47.415326], [8.566342, 47.415499], [8.566287, 47.415677], [8.566278, 47.415804], [8.566284, 47.415932], [8.566303, 47.416059], [8.56632, 47.416152], [8.566333, 47.416245], [8.566342, 47.416339]]], "type": "MultiLineString"}, "id": "3919", "properties": {}, "type": "Feature"}, {"bbox": [8.490401, 47.428275, 8.491, 47.429068], "geometry": {"coordinates": [[[8.490401, 47.428275], [8.49047, 47.428332], [8.490552, 47.428435], [8.490635, 47.428538], [8.490719, 47.428641], [8.490812, 47.428749], [8.490901, 47.428859], [8.490986, 47.42897], [8.49099, 47.428975], [8.490993, 47.42898], [8.490996, 47.428985], [8.490998, 47.42899], [8.490999, 47.428996], [8.491, 47.429001], [8.491, 47.429007], [8.490999, 47.429012], [8.490998, 47.429018], [8.490996, 47.429023], [8.490993, 47.429028], [8.49099, 47.429033], [8.490986, 47.429038], [8.490981, 47.429043], [8.490976, 47.429047], [8.49097, 47.429051], [8.490964, 47.429054], [8.490958, 47.429058], [8.490951, 47.42906], [8.490944, 47.429063], [8.490936, 47.429065], [8.490928, 47.429067], [8.490921, 47.429068], [8.490912, 47.429068]]], "type": "MultiLineString"}, "id": "3920", "properties": {}, "type": "Feature"}, {"bbox": [8.468394, 47.364934, 8.469044, 47.365558], "geometry": {"coordinates": [[[8.469044, 47.365558], [8.46901, 47.365514], [8.468974, 47.365471], [8.468934, 47.36543], [8.468835, 47.365332], [8.468733, 47.365235], [8.468629, 47.36514], [8.468553, 47.36507], [8.468474, 47.365002], [8.468394, 47.364934]]], "type": "MultiLineString"}, "id": "3921", "properties": {}, "type": "Feature"}, {"bbox": [8.486443, 47.37822, 8.487959, 47.378954], "geometry": {"coordinates": [[[8.487959, 47.378234], [8.487929, 47.378227], [8.487898, 47.378223], [8.487866, 47.378221], [8.487834, 47.37822], [8.487802, 47.378222], [8.487771, 47.378226], [8.487449, 47.37833], [8.487442, 47.378335], [8.487435, 47.37834], [8.487429, 47.378346], [8.487424, 47.378352], [8.487419, 47.378358], [8.487415, 47.378364], [8.487412, 47.378371], [8.48741, 47.378377], [8.487409, 47.378384], [8.487408, 47.378391], [8.487409, 47.378398], [8.48741, 47.378405], [8.487412, 47.378412], [8.487412, 47.378424], [8.487409, 47.378437], [8.487405, 47.378449], [8.487399, 47.378461], [8.487392, 47.378473], [8.487383, 47.378484], [8.487373, 47.378494], [8.487361, 47.378504], [8.486677, 47.378922], [8.486658, 47.37893], [8.486638, 47.378937], [8.486617, 47.378943], [8.486596, 47.378948], [8.486574, 47.378951], [8.486552, 47.378953], [8.48653, 47.378954], [8.486508, 47.378953], [8.486486, 47.378951], [8.486464, 47.378948], [8.486443, 47.378944]]], "type": "MultiLineString"}, "id": "3923", "properties": {}, "type": "Feature"}, {"bbox": [8.514069, 47.390646, 8.514215, 47.391563], "geometry": {"coordinates": [[[8.514215, 47.391563], [8.514145, 47.391495], [8.514126, 47.391476], [8.51411, 47.391456], [8.514096, 47.391436], [8.514085, 47.391414], [8.514077, 47.391392], [8.514071, 47.391369], [8.514069, 47.391347], [8.514072, 47.391113], [8.514088, 47.390879], [8.514116, 47.390646]]], "type": "MultiLineString"}, "id": "3924", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.329829, 8.5327, 47.331233], "geometry": {"coordinates": [[[8.532676, 47.331233], [8.5327, 47.330346], [8.532697, 47.329829]]], "type": "MultiLineString"}, "id": "3925", "properties": {}, "type": "Feature"}, {"bbox": [8.475169, 47.37537, 8.481142, 47.376393], "geometry": {"coordinates": [[[8.481142, 47.375507], [8.481113, 47.375518], [8.481082, 47.375527], [8.481051, 47.375534], [8.481019, 47.375539], [8.480986, 47.375542], [8.480952, 47.375543], [8.480919, 47.375542], [8.480886, 47.375539], [8.480854, 47.375534], [8.480822, 47.375527], [8.480792, 47.375518], [8.480763, 47.375507], [8.480639, 47.375458], [8.480512, 47.375414], [8.480383, 47.375373], [8.480373, 47.375372], [8.480363, 47.37537], [8.480352, 47.37537], [8.480342, 47.37537], [8.480332, 47.375371], [8.480322, 47.375372], [8.480312, 47.375374], [8.480303, 47.375376], [8.480266, 47.375397], [8.480231, 47.375419], [8.480197, 47.375441], [8.479876, 47.375673], [8.479851, 47.37569], [8.479826, 47.375707], [8.479801, 47.375724], [8.479475, 47.375928], [8.47946, 47.375938], [8.479445, 47.375946], [8.479428, 47.375954], [8.47941, 47.37596], [8.479392, 47.375965], [8.479373, 47.37597], [8.479353, 47.375973], [8.479333, 47.375975], [8.479313, 47.375975], [8.479293, 47.375975], [8.479257, 47.375978], [8.479221, 47.375983], [8.479186, 47.37599], [8.479152, 47.376], [8.47912, 47.376011], [8.479089, 47.376025], [8.478903, 47.376116], [8.478714, 47.376205], [8.478523, 47.376291], [8.478449, 47.376323], [8.478372, 47.376352], [8.478293, 47.376378], [8.478273, 47.376383], [8.478252, 47.376387], [8.478231, 47.37639], [8.478209, 47.376392], [8.478187, 47.376393], [8.478165, 47.376392], [8.478144, 47.37639], [8.478123, 47.376387], [8.478102, 47.376382], [8.478082, 47.376377], [8.478051, 47.376368], [8.478019, 47.376362], [8.477986, 47.376357], [8.477953, 47.376354], [8.47792, 47.376353], [8.477887, 47.376355], [8.477854, 47.376358], [8.477821, 47.376363], [8.477775, 47.376373], [8.477728, 47.376381], [8.47768, 47.376385], [8.477632, 47.376387], [8.477584, 47.376387], [8.477536, 47.376383], [8.47743, 47.376374], [8.477326, 47.37636], [8.477224, 47.376341], [8.47696, 47.376289], [8.476921, 47.376281], [8.476884, 47.37627], [8.476848, 47.376257], [8.476814, 47.376242], [8.476783, 47.376225], [8.476696, 47.376187], [8.476605, 47.376154], [8.47651, 47.376127], [8.476194, 47.376006], [8.476091, 47.375973], [8.475987, 47.375942], [8.475881, 47.375914], [8.475837, 47.375901], [8.475795, 47.375886], [8.475754, 47.375869], [8.475716, 47.37585], [8.475571, 47.375773], [8.475552, 47.375765], [8.475531, 47.375757], [8.47551, 47.375751], [8.475488, 47.375745], [8.475464, 47.375741], [8.475441, 47.375737], [8.475417, 47.375732], [8.475357, 47.375716], [8.475298, 47.375697], [8.475241, 47.375675], [8.475218, 47.375668], [8.475194, 47.375662], [8.475169, 47.375657]]], "type": "MultiLineString"}, "id": "3927", "properties": {}, "type": "Feature"}, {"bbox": [8.491209, 47.376274, 8.492842, 47.377206], "geometry": {"coordinates": [[[8.492842, 47.377206], [8.492789, 47.377164], [8.492734, 47.377122], [8.492679, 47.377081], [8.492663, 47.377067], [8.492645, 47.377054], [8.492625, 47.377043], [8.49225, 47.376828], [8.491875, 47.376614], [8.491499, 47.3764], [8.491479, 47.376388], [8.491458, 47.376377], [8.491437, 47.376366], [8.491361, 47.376335], [8.491285, 47.376304], [8.491209, 47.376274]]], "type": "MultiLineString"}, "id": "3928", "properties": {}, "type": "Feature"}, {"bbox": [8.502253, 47.374458, 8.503084, 47.374798], "geometry": {"coordinates": [[[8.502253, 47.374458], [8.502376, 47.374529], [8.502415, 47.374551], [8.502501, 47.374605], [8.502592, 47.374655], [8.502688, 47.3747], [8.502711, 47.37471], [8.502736, 47.374717], [8.502761, 47.374724], [8.502787, 47.374728], [8.502814, 47.374732], [8.502841, 47.374733], [8.502868, 47.374733], [8.50296, 47.374734], [8.503084, 47.374798]]], "type": "MultiLineString"}, "id": "3929", "properties": {}, "type": "Feature"}, {"bbox": [8.492003, 47.383351, 8.493198, 47.384548], "geometry": {"coordinates": [[[8.493198, 47.384548], [8.493173, 47.384535], [8.49315, 47.384521], [8.493129, 47.384506], [8.49311, 47.384489], [8.492003, 47.38338], [8.49202, 47.383351]]], "type": "MultiLineString"}, "id": "3930", "properties": {}, "type": "Feature"}, {"bbox": [8.493623, 47.396982, 8.495169, 47.397624], "geometry": {"coordinates": [[[8.495169, 47.397592], [8.495088, 47.397607], [8.495005, 47.397618], [8.494921, 47.397623], [8.494837, 47.397624], [8.494753, 47.397619], [8.49467, 47.39761], [8.494589, 47.397595], [8.49451, 47.397576], [8.494433, 47.397553], [8.49436, 47.397525], [8.49429, 47.397492], [8.494226, 47.397456], [8.494165, 47.397416], [8.494111, 47.397373], [8.494062, 47.397326], [8.493991, 47.397248], [8.493911, 47.397175], [8.493823, 47.397105], [8.493726, 47.397041], [8.493623, 47.396982]]], "type": "MultiLineString"}, "id": "3931", "properties": {}, "type": "Feature"}, {"bbox": [8.493744, 47.409579, 8.500943, 47.416546], "geometry": {"coordinates": [[[8.500943, 47.416546], [8.50091, 47.416474], [8.500886, 47.416398], [8.500871, 47.416322], [8.500831, 47.416008], [8.500812, 47.415733], [8.5008, 47.415631], [8.500784, 47.415542], [8.500692, 47.415457], [8.500601, 47.415411], [8.499912, 47.415067], [8.499267, 47.414778], [8.499212, 47.414751], [8.499159, 47.414722], [8.499109, 47.41469], [8.498739, 47.41444], [8.498709, 47.414417], [8.498682, 47.414393], [8.498659, 47.414367], [8.498574, 47.414259], [8.498522, 47.414193], [8.498327, 47.413927], [8.498321, 47.41392], [8.498164, 47.413649], [8.49809, 47.413502], [8.498031, 47.413383], [8.497799, 47.41298], [8.497718, 47.412857], [8.49762, 47.412739], [8.497507, 47.412628], [8.497287, 47.412441], [8.497056, 47.412261], [8.496813, 47.412087], [8.49676, 47.412036], [8.496693, 47.41196], [8.49662, 47.411871], [8.496555, 47.411779], [8.496497, 47.411685], [8.496375, 47.41147], [8.496344, 47.411421], [8.496307, 47.411375], [8.496264, 47.41133], [8.49625, 47.411317], [8.496235, 47.411304], [8.496219, 47.411292], [8.496056, 47.411161], [8.496039, 47.411147], [8.495329, 47.410558], [8.495294, 47.410531], [8.495256, 47.410506], [8.495214, 47.410484], [8.49517, 47.410464], [8.495123, 47.410446], [8.495075, 47.410432], [8.495025, 47.41042], [8.494967, 47.410409], [8.49488, 47.410391], [8.494843, 47.410383], [8.494806, 47.410372], [8.494771, 47.410359], [8.494738, 47.410344], [8.494707, 47.410328], [8.494678, 47.41031], [8.494651, 47.41029], [8.494031, 47.40979], [8.493802, 47.409613], [8.493744, 47.409579]]], "type": "MultiLineString"}, "id": "3933", "properties": {}, "type": "Feature"}, {"bbox": [8.509316, 47.405446, 8.513604, 47.407217], "geometry": {"coordinates": [[[8.509316, 47.40545], [8.509362, 47.405448], [8.509407, 47.405447], [8.509453, 47.405446], [8.509518, 47.405449], [8.509583, 47.405452], [8.509648, 47.405458], [8.509838, 47.405481], [8.510024, 47.405515], [8.510206, 47.40556], [8.510381, 47.405615], [8.510464, 47.405644], [8.510547, 47.405675], [8.510628, 47.405707], [8.510765, 47.405767], [8.510897, 47.405832], [8.511025, 47.405901], [8.511348, 47.406085], [8.511393, 47.406111], [8.51151, 47.406166], [8.511603, 47.406188], [8.511696, 47.40621], [8.511789, 47.406231], [8.511826, 47.406237], [8.511891, 47.406248], [8.512439, 47.406345], [8.512531, 47.406363], [8.512622, 47.406384], [8.512711, 47.406408], [8.51279, 47.40643], [8.51287, 47.406449], [8.512952, 47.406465], [8.513199, 47.406511], [8.513209, 47.406513], [8.513304, 47.40654], [8.513325, 47.406547], [8.513344, 47.406554], [8.513363, 47.406563], [8.51338, 47.406573], [8.513396, 47.406584], [8.51341, 47.406596], [8.513422, 47.406609], [8.513433, 47.406623], [8.513442, 47.406637], [8.513449, 47.406651], [8.513479, 47.406713], [8.513497, 47.406755], [8.513512, 47.406798], [8.513523, 47.406842], [8.513604, 47.407217]]], "type": "MultiLineString"}, "id": "3934", "properties": {}, "type": "Feature"}, {"bbox": [8.514281, 47.373981, 8.5148, 47.374361], "geometry": {"coordinates": [[[8.5148, 47.373999], [8.514789, 47.373994], [8.514777, 47.37399], [8.514765, 47.373987], [8.514753, 47.373984], [8.51474, 47.373982], [8.514727, 47.373981], [8.514714, 47.373981], [8.514701, 47.373981], [8.514689, 47.373983], [8.514676, 47.373984], [8.514281, 47.374252], [8.514471, 47.374361]]], "type": "MultiLineString"}, "id": "3935", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386348, 8.515057, 47.387467], "geometry": {"coordinates": [[[8.515057, 47.387467], [8.514166, 47.386396], [8.514157, 47.386388], [8.514147, 47.386381], [8.514137, 47.386374], [8.514126, 47.386369], [8.514114, 47.386363], [8.514101, 47.386359], [8.514088, 47.386355], [8.514075, 47.386352], [8.514061, 47.38635], [8.514047, 47.386348], [8.514033, 47.386348], [8.514018, 47.386348], [8.514004, 47.386349], [8.51399, 47.386351], [8.513977, 47.386353], [8.513757, 47.386405], [8.51361, 47.386445], [8.513466, 47.38649], [8.513324, 47.386539], [8.513134, 47.386603], [8.512948, 47.386674], [8.512767, 47.38675], [8.512388, 47.386925]]], "type": "MultiLineString"}, "id": "3941", "properties": {}, "type": "Feature"}, {"bbox": [8.528745, 47.393206, 8.529165, 47.393364], "geometry": {"coordinates": [[[8.528746, 47.393206], [8.528745, 47.393208], [8.528745, 47.393211], [8.528745, 47.393214], [8.528745, 47.393217], [8.528745, 47.39322], [8.528746, 47.393222], [8.528748, 47.393225], [8.528749, 47.393228], [8.528751, 47.39323], [8.528753, 47.393232], [8.528756, 47.393235], [8.528759, 47.393237], [8.528762, 47.393238], [8.528794, 47.393257], [8.528828, 47.393274], [8.528864, 47.39329], [8.528946, 47.393319], [8.529031, 47.393344], [8.52912, 47.393363], [8.529128, 47.393364], [8.529135, 47.393364], [8.529143, 47.393364], [8.529151, 47.393363], [8.529158, 47.393362], [8.529165, 47.393361]]], "type": "MultiLineString"}, "id": "3942", "properties": {}, "type": "Feature"}, {"bbox": [8.543387, 47.375421, 8.543942, 47.375497], "geometry": {"coordinates": [[[8.543387, 47.375497], [8.543942, 47.375421]]], "type": "MultiLineString"}, "id": "3945", "properties": {}, "type": "Feature"}, {"bbox": [8.571197, 47.39165, 8.576068, 47.39581], "geometry": {"coordinates": [[[8.576068, 47.39165], [8.575968, 47.391713], [8.575749, 47.391853], [8.575601, 47.391947], [8.575554, 47.39198], [8.575512, 47.392015], [8.575476, 47.392053], [8.575444, 47.392092], [8.575418, 47.392134], [8.575397, 47.392177], [8.575383, 47.392221], [8.575335, 47.392408], [8.575326, 47.39246], [8.575324, 47.392513], [8.57533, 47.392566], [8.575416, 47.393003], [8.575422, 47.393048], [8.575422, 47.393093], [8.575417, 47.393137], [8.575407, 47.393181], [8.575391, 47.393225], [8.57537, 47.393267], [8.575174, 47.393603], [8.575134, 47.393669], [8.575094, 47.393735], [8.575053, 47.393801], [8.575029, 47.393846], [8.575011, 47.393892], [8.574999, 47.393939], [8.574993, 47.393987], [8.57499, 47.394051], [8.574926, 47.394087], [8.574918, 47.394093], [8.574909, 47.3941], [8.574901, 47.394106], [8.574901, 47.394107], [8.574879, 47.394125], [8.574879, 47.394125], [8.57487, 47.394133], [8.574861, 47.394142], [8.574852, 47.394151], [8.574852, 47.394151], [8.574852, 47.394151], [8.574831, 47.394173], [8.574807, 47.394195], [8.574782, 47.394215], [8.574725, 47.394255], [8.574664, 47.394293], [8.5746, 47.394328], [8.57449, 47.39438], [8.574373, 47.394426], [8.57425, 47.394464], [8.574249, 47.394464], [8.573932, 47.394568], [8.573775, 47.394606], [8.573615, 47.394639], [8.573452, 47.394665], [8.573388, 47.39468], [8.573326, 47.394699], [8.573266, 47.394721], [8.57321, 47.394747], [8.573157, 47.394776], [8.572921, 47.394909], [8.572921, 47.394909], [8.572853, 47.394947], [8.572781, 47.39498], [8.572705, 47.395009], [8.572649, 47.39503], [8.572597, 47.395055], [8.572549, 47.395083], [8.572494, 47.39511], [8.571954, 47.395371], [8.571694, 47.395521], [8.571474, 47.395649], [8.571197, 47.39581]]], "type": "MultiLineString"}, "id": "3946", "properties": {}, "type": "Feature"}, {"bbox": [8.540929, 47.396857, 8.541544, 47.397239], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.541036, 47.396895], [8.541138, 47.396939], [8.541234, 47.396989], [8.541323, 47.397045], [8.541405, 47.397105], [8.541479, 47.39717], [8.541544, 47.397239]]], "type": "MultiLineString"}, "id": "3947", "properties": {}, "type": "Feature"}, {"bbox": [8.544523, 47.374247, 8.544691, 47.376764], "geometry": {"coordinates": [[[8.544691, 47.374247], [8.544665, 47.374604], [8.54465, 47.374804], [8.544648, 47.374837], [8.544646, 47.374891], [8.544597, 47.375552], [8.544563, 47.376009], [8.544561, 47.376035], [8.544539, 47.376336], [8.544523, 47.376764]]], "type": "MultiLineString"}, "id": "3948", "properties": {}, "type": "Feature"}, {"bbox": [8.496673, 47.40655, 8.497379, 47.40687], "geometry": {"coordinates": [[[8.496673, 47.40687], [8.496743, 47.40686], [8.497279, 47.40658], [8.497297, 47.406572], [8.497317, 47.406565], [8.497337, 47.406559], [8.497358, 47.406554], [8.497379, 47.40655]]], "type": "MultiLineString"}, "id": "3949", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.374817, 8.543993, 47.374938], "geometry": {"coordinates": [[[8.543839, 47.374883], [8.543875, 47.374931], [8.543993, 47.374938], [8.543993, 47.374859], [8.543933, 47.374832], [8.543882, 47.374817], [8.543839, 47.374883]]], "type": "MultiLineString"}, "id": "3950", "properties": {}, "type": "Feature"}, {"bbox": [8.541269, 47.405894, 8.542079, 47.406404], "geometry": {"coordinates": [[[8.541269, 47.406404], [8.541305, 47.40638], [8.541341, 47.406356], [8.541377, 47.406332], [8.541497, 47.406267], [8.541615, 47.406201], [8.541731, 47.406132], [8.541782, 47.406091], [8.541829, 47.406046], [8.541869, 47.406], [8.541904, 47.405951], [8.54193, 47.405937], [8.541958, 47.405925], [8.541986, 47.405915], [8.542016, 47.405906], [8.542047, 47.405899], [8.542079, 47.405894]]], "type": "MultiLineString"}, "id": "3953", "properties": {}, "type": "Feature"}, {"bbox": [8.573708, 47.398888, 8.576936, 47.402251], "geometry": {"coordinates": [[[8.573708, 47.398888], [8.573886, 47.398919], [8.57393, 47.398927], [8.573973, 47.398938], [8.574015, 47.39895], [8.574046, 47.39896], [8.574076, 47.398973], [8.574104, 47.398987], [8.57413, 47.399003], [8.574155, 47.39902], [8.574394, 47.399202], [8.574475, 47.399262], [8.574557, 47.39932], [8.574642, 47.399377], [8.574784, 47.39947], [8.574803, 47.399484], [8.57482, 47.399499], [8.574836, 47.399515], [8.57485, 47.399531], [8.574861, 47.399549], [8.574871, 47.399567], [8.574878, 47.399585], [8.574882, 47.399604], [8.574905, 47.39972], [8.574921, 47.39979], [8.574943, 47.399861], [8.57497, 47.39993], [8.574976, 47.399941], [8.574983, 47.399953], [8.574991, 47.399964], [8.575028, 47.400004], [8.575067, 47.400044], [8.575109, 47.400082], [8.575294, 47.400245], [8.575423, 47.400367], [8.575447, 47.40039], [8.575468, 47.400415], [8.575487, 47.400441], [8.57554, 47.400536], [8.575921, 47.401082], [8.576664, 47.401886], [8.576936, 47.402251]]], "type": "MultiLineString"}, "id": "3954", "properties": {}, "type": "Feature"}, {"bbox": [8.578247, 47.387519, 8.581141, 47.390184], "geometry": {"coordinates": [[[8.578247, 47.390184], [8.57853, 47.390031], [8.578622, 47.389962], [8.5787, 47.389891], [8.578905, 47.389643], [8.579496, 47.38893], [8.579761, 47.388612], [8.579938, 47.388432], [8.580137, 47.388261], [8.580355, 47.388103], [8.580592, 47.387957], [8.580886, 47.387782], [8.580949, 47.387736], [8.581007, 47.387686], [8.581058, 47.387633], [8.581103, 47.387577], [8.581141, 47.387519]]], "type": "MultiLineString"}, "id": "3968", "properties": {}, "type": "Feature"}, {"bbox": [8.573761, 47.386406, 8.575471, 47.388093], "geometry": {"coordinates": [[[8.57546, 47.386406], [8.575467, 47.386437], [8.575471, 47.386468], [8.575471, 47.3865], [8.575467, 47.386531], [8.575459, 47.386562], [8.575447, 47.386593], [8.575431, 47.386622], [8.575412, 47.386651], [8.575389, 47.386678], [8.575363, 47.386704], [8.575333, 47.386728], [8.575301, 47.386751], [8.575055, 47.386918], [8.575021, 47.386947], [8.574992, 47.386977], [8.574967, 47.387009], [8.574946, 47.387042], [8.57493, 47.387077], [8.57492, 47.387113], [8.574818, 47.387507], [8.57468, 47.387582], [8.574537, 47.387651], [8.574388, 47.387716], [8.57432, 47.387753], [8.574258, 47.387795], [8.5742, 47.38784], [8.574149, 47.387888], [8.574127, 47.387911], [8.574102, 47.387933], [8.574074, 47.387953], [8.574044, 47.387971], [8.574012, 47.387988], [8.573761, 47.388093]]], "type": "MultiLineString"}, "id": "3970", "properties": {}, "type": "Feature"}, {"bbox": [8.504597, 47.396907, 8.505448, 47.39733], "geometry": {"coordinates": [[[8.505448, 47.396907], [8.505358, 47.396941], [8.50527, 47.396975], [8.505182, 47.397011], [8.505112, 47.397051], [8.505041, 47.397091], [8.504972, 47.397132], [8.504597, 47.39733]]], "type": "MultiLineString"}, "id": "3971", "properties": {}, "type": "Feature"}, {"bbox": [8.551574, 47.375628, 8.553135, 47.376383], "geometry": {"coordinates": [[[8.553135, 47.375628], [8.553013, 47.375703], [8.552187, 47.376287], [8.552122, 47.376309], [8.552051, 47.376307], [8.551992, 47.376293], [8.551935, 47.376276], [8.55188, 47.376257], [8.551867, 47.376254], [8.551853, 47.376251], [8.55184, 47.37625], [8.551826, 47.376249], [8.551812, 47.376249], [8.551799, 47.37625], [8.551785, 47.376252], [8.551772, 47.376255], [8.551759, 47.376258], [8.551707, 47.376285], [8.551659, 47.376315], [8.551614, 47.376348], [8.551574, 47.376383]]], "type": "MultiLineString"}, "id": "3973", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.416689, 8.528491, 47.418268], "geometry": {"coordinates": [[[8.528055, 47.416689], [8.528132, 47.417005], [8.528467, 47.418182], [8.528491, 47.418268]]], "type": "MultiLineString"}, "id": "3974", "properties": {}, "type": "Feature"}, {"bbox": [8.555781, 47.409461, 8.558815, 47.409513], "geometry": {"coordinates": [[[8.555781, 47.409461], [8.557739, 47.409492], [8.558043, 47.409497], [8.558055, 47.409501], [8.558752, 47.409513], [8.558815, 47.409502]]], "type": "MultiLineString"}, "id": "3976", "properties": {}, "type": "Feature"}, {"bbox": [8.485438, 47.353951, 8.487015, 47.354451], "geometry": {"coordinates": [[[8.487015, 47.353951], [8.486624, 47.354098], [8.486435, 47.354164], [8.485888, 47.354365], [8.485719, 47.354425], [8.485683, 47.354434], [8.485645, 47.354441], [8.485607, 47.354445], [8.485438, 47.354451]]], "type": "MultiLineString"}, "id": "3978", "properties": {}, "type": "Feature"}, {"bbox": [8.474478, 47.413155, 8.47479, 47.413876], "geometry": {"coordinates": [[[8.47479, 47.413156], [8.474737, 47.413155], [8.474685, 47.413157], [8.474634, 47.413162], [8.474631, 47.413163], [8.474628, 47.413163], [8.474626, 47.413164], [8.474623, 47.413165], [8.474621, 47.413166], [8.474619, 47.413167], [8.474616, 47.413168], [8.474615, 47.41317], [8.474613, 47.413171], [8.474611, 47.413173], [8.47461, 47.413175], [8.474609, 47.413176], [8.474608, 47.413178], [8.474608, 47.41318], [8.474607, 47.413182], [8.474607, 47.413184], [8.474561, 47.413414], [8.474518, 47.413645], [8.474478, 47.413876]]], "type": "MultiLineString"}, "id": "3980", "properties": {}, "type": "Feature"}, {"bbox": [8.564775, 47.409124, 8.565678, 47.410192], "geometry": {"coordinates": [[[8.564775, 47.410192], [8.564826, 47.410134], [8.565269, 47.409619], [8.565281, 47.409607], [8.565295, 47.409596], [8.565311, 47.409585], [8.565328, 47.409575], [8.565346, 47.409567], [8.565365, 47.40956], [8.565385, 47.409554], [8.565406, 47.409549], [8.565427, 47.409545], [8.565608, 47.409331], [8.565678, 47.409124]]], "type": "MultiLineString"}, "id": "3981", "properties": {}, "type": "Feature"}, {"bbox": [8.517133, 47.425237, 8.518699, 47.428181], "geometry": {"coordinates": [[[8.517216, 47.425237], [8.517155, 47.425472], [8.517144, 47.425518], [8.517137, 47.425565], [8.517133, 47.425612], [8.517134, 47.425659], [8.517144, 47.425874], [8.517151, 47.425947], [8.517164, 47.42602], [8.517182, 47.426092], [8.517207, 47.426164], [8.517292, 47.426389], [8.517321, 47.426475], [8.517342, 47.426566], [8.517364, 47.426683], [8.517364, 47.426698], [8.517375, 47.426723], [8.517389, 47.426748], [8.517406, 47.426771], [8.517426, 47.426794], [8.517449, 47.426815], [8.517474, 47.426835], [8.517502, 47.426853], [8.517532, 47.426869], [8.517564, 47.426884], [8.517598, 47.426896], [8.517634, 47.426907], [8.51767, 47.426915], [8.518117, 47.427075], [8.518165, 47.427097], [8.518209, 47.427121], [8.51825, 47.427148], [8.518288, 47.427178], [8.518321, 47.427209], [8.51835, 47.427243], [8.518374, 47.427278], [8.518393, 47.427315], [8.518407, 47.427352], [8.518573, 47.427863], [8.518699, 47.428181]]], "type": "MultiLineString"}, "id": "3982", "properties": {}, "type": "Feature"}, {"bbox": [8.473349, 47.414471, 8.475206, 47.414666], "geometry": {"coordinates": [[[8.475206, 47.414666], [8.474918, 47.414516], [8.474907, 47.414511], [8.474897, 47.414507], [8.474886, 47.414502], [8.474886, 47.414502], [8.474886, 47.414502], [8.474858, 47.414492], [8.474828, 47.414484], [8.474797, 47.414477], [8.474771, 47.414474], [8.474745, 47.414472], [8.474718, 47.414471], [8.474692, 47.414471], [8.474665, 47.414474], [8.474192, 47.414524], [8.474028, 47.414542], [8.473952, 47.41455], [8.473402, 47.414609], [8.473349, 47.414615]]], "type": "MultiLineString"}, "id": "3984", "properties": {}, "type": "Feature"}, {"bbox": [8.570022, 47.376153, 8.574224, 47.377605], "geometry": {"coordinates": [[[8.570022, 47.376153], [8.570223, 47.376393], [8.570237, 47.376408], [8.570253, 47.376422], [8.570271, 47.376435], [8.570291, 47.376447], [8.570313, 47.376458], [8.570335, 47.376468], [8.570359, 47.376475], [8.57046, 47.376505], [8.570477, 47.37651], [8.570494, 47.376517], [8.570509, 47.376524], [8.570524, 47.376532], [8.570537, 47.376541], [8.570674, 47.37664], [8.570677, 47.376643], [8.57068, 47.376645], [8.570682, 47.376648], [8.570684, 47.376651], [8.570686, 47.376654], [8.570687, 47.376657], [8.570688, 47.37666], [8.570688, 47.376663], [8.570688, 47.376667], [8.570688, 47.37667], [8.570687, 47.376673], [8.570661, 47.376752], [8.570659, 47.376761], [8.570658, 47.37677], [8.570658, 47.376779], [8.570659, 47.376788], [8.570662, 47.376797], [8.570665, 47.376806], [8.57067, 47.376814], [8.570676, 47.376822], [8.570682, 47.37683], [8.570705, 47.376852], [8.57073, 47.376872], [8.570758, 47.376891], [8.570788, 47.376908], [8.570806, 47.376916], [8.570824, 47.376924], [8.570844, 47.37693], [8.570864, 47.376934], [8.570884, 47.376938], [8.570905, 47.37694], [8.57105, 47.376952], [8.571148, 47.376957], [8.571509, 47.376974], [8.571767, 47.376987], [8.571801, 47.376988], [8.571943, 47.377], [8.572181, 47.377021], [8.572555, 47.377053], [8.572594, 47.377057], [8.572632, 47.377064], [8.57267, 47.377073], [8.572706, 47.377084], [8.572809, 47.377118], [8.572889, 47.377131], [8.57294, 47.377132], [8.572949, 47.377131], [8.572958, 47.377131], [8.572967, 47.377129], [8.572976, 47.377128], [8.572984, 47.377125], [8.572992, 47.377123], [8.573, 47.37712], [8.573053, 47.377096], [8.573059, 47.377093], [8.573066, 47.377091], [8.573073, 47.377089], [8.57308, 47.377087], [8.573087, 47.377086], [8.573095, 47.377086], [8.573102, 47.377085], [8.57311, 47.377086], [8.57317, 47.377089], [8.573283, 47.377103], [8.57339, 47.377125], [8.573418, 47.377129], [8.573447, 47.377133], [8.573475, 47.377134], [8.573504, 47.377134], [8.573534, 47.377134], [8.573537, 47.377134], [8.573539, 47.377134], [8.573542, 47.377135], [8.573545, 47.377135], [8.573547, 47.377136], [8.57355, 47.377137], [8.573552, 47.377138], [8.573555, 47.377139], [8.573557, 47.37714], [8.573559, 47.377142], [8.57356, 47.377143], [8.573562, 47.377145], [8.573563, 47.377147], [8.573564, 47.377148], [8.573565, 47.37715], [8.573566, 47.377152], [8.57358, 47.377207], [8.573581, 47.377213], [8.573582, 47.37722], [8.573581, 47.377227], [8.57358, 47.377234], [8.573579, 47.377241], [8.573571, 47.377265], [8.573569, 47.377269], [8.573569, 47.377274], [8.573569, 47.377279], [8.573569, 47.377283], [8.57357, 47.377288], [8.573572, 47.377292], [8.573574, 47.377296], [8.573577, 47.377301], [8.57358, 47.377305], [8.573584, 47.377308], [8.573588, 47.377312], [8.573593, 47.377315], [8.573598, 47.377318], [8.573603, 47.377321], [8.573609, 47.377323], [8.573615, 47.377326], [8.573684, 47.377347], [8.573697, 47.377351], [8.57371, 47.377354], [8.573724, 47.377355], [8.573738, 47.377357], [8.573752, 47.377357], [8.573766, 47.377356], [8.57378, 47.377355], [8.57387, 47.377342], [8.573892, 47.37734], [8.573914, 47.377338], [8.573936, 47.377339], [8.573957, 47.37734], [8.573979, 47.377343], [8.574065, 47.377356], [8.574098, 47.377362], [8.57413, 47.37737], [8.57416, 47.37738], [8.574224, 47.377403], [8.574153, 47.377525], [8.574158, 47.377605]]], "type": "MultiLineString"}, "id": "3990", "properties": {}, "type": "Feature"}, {"bbox": [8.580386, 47.406833, 8.592263, 47.409686], "geometry": {"coordinates": [[[8.580386, 47.409686], [8.580526, 47.409653], [8.580583, 47.409642], [8.58061, 47.409627], [8.580639, 47.409614], [8.580669, 47.409603], [8.580701, 47.409593], [8.580734, 47.409586], [8.580768, 47.40958], [8.580802, 47.409577], [8.580837, 47.409575], [8.582576, 47.409181], [8.58367, 47.408928], [8.584018, 47.408846], [8.584175, 47.408788], [8.584251, 47.408786], [8.585503, 47.408509], [8.587156, 47.40813], [8.587284, 47.408105], [8.587409, 47.408073], [8.58753, 47.408034], [8.587645, 47.407987], [8.587754, 47.407935], [8.587856, 47.407876], [8.587951, 47.407812], [8.58823, 47.407614], [8.588244, 47.407608], [8.588257, 47.407601], [8.58827, 47.407593], [8.588281, 47.407584], [8.588291, 47.407575], [8.5883, 47.407565], [8.588308, 47.407555], [8.588314, 47.407545], [8.588319, 47.407534], [8.588323, 47.407522], [8.588325, 47.407511], [8.588326, 47.4075], [8.588325, 47.407488], [8.588323, 47.407477], [8.58832, 47.407466], [8.588315, 47.407455], [8.588372, 47.407369], [8.588578, 47.407226], [8.58866, 47.407188], [8.588746, 47.407154], [8.588836, 47.407126], [8.588929, 47.407104], [8.589025, 47.407087], [8.589123, 47.407076], [8.591283, 47.406851], [8.591512, 47.406839], [8.591742, 47.406833], [8.591972, 47.406833], [8.592263, 47.407162]]], "type": "MultiLineString"}, "id": "3991", "properties": {}, "type": "Feature"}, {"bbox": [8.572466, 47.412872, 8.573701, 47.413011], "geometry": {"coordinates": [[[8.572466, 47.412872], [8.572474, 47.412876], [8.572483, 47.412879], [8.572493, 47.412882], [8.572503, 47.412884], [8.572534, 47.412893], [8.572564, 47.412904], [8.572593, 47.412917], [8.57262, 47.412931], [8.572645, 47.412947], [8.572662, 47.412958], [8.572682, 47.412968], [8.572702, 47.412977], [8.572724, 47.412984], [8.572746, 47.41299], [8.572769, 47.412994], [8.572793, 47.412997], [8.572816, 47.412999], [8.57284, 47.412999], [8.573701, 47.413011]]], "type": "MultiLineString"}, "id": "3992", "properties": {}, "type": "Feature"}, {"bbox": [8.467266, 47.390483, 8.467512, 47.390694], "geometry": {"coordinates": [[[8.467512, 47.390483], [8.4674, 47.390565], [8.467266, 47.390694]]], "type": "MultiLineString"}, "id": "3994", "properties": {}, "type": "Feature"}, {"bbox": [8.573523, 47.410549, 8.576669, 47.4113], "geometry": {"coordinates": [[[8.573523, 47.4113], [8.573739, 47.41123], [8.573984, 47.411169], [8.574231, 47.41111], [8.574479, 47.411054], [8.574687, 47.411022], [8.574889, 47.410977], [8.575085, 47.410919], [8.57519, 47.410886], [8.576244, 47.410643], [8.576669, 47.410549]]], "type": "MultiLineString"}, "id": "3995", "properties": {}, "type": "Feature"}, {"bbox": [8.490333, 47.3506, 8.490709, 47.350685], "geometry": {"coordinates": [[[8.490333, 47.3506], [8.490399, 47.350639], [8.490413, 47.350648], [8.490427, 47.350656], [8.490443, 47.350663], [8.49046, 47.350669], [8.490477, 47.350675], [8.490495, 47.350679], [8.490514, 47.350682], [8.490533, 47.350684], [8.490552, 47.350685], [8.490571, 47.350685], [8.49059, 47.350684], [8.490609, 47.350682], [8.490627, 47.350679], [8.490645, 47.350674], [8.490662, 47.350669], [8.490679, 47.350662], [8.490695, 47.350655], [8.490709, 47.350646]]], "type": "MultiLineString"}, "id": "3996", "properties": {}, "type": "Feature"}, {"bbox": [8.496799, 47.423467, 8.499862, 47.424215], "geometry": {"coordinates": [[[8.499862, 47.423467], [8.498893, 47.423723], [8.49831, 47.423877], [8.49745, 47.424095], [8.497445, 47.424095], [8.497436, 47.424096], [8.497427, 47.424097], [8.497418, 47.424097], [8.497407, 47.424097], [8.497397, 47.424097], [8.497387, 47.424096], [8.497314, 47.424089], [8.497303, 47.424088], [8.497292, 47.424088], [8.497281, 47.424087], [8.497269, 47.424086], [8.497257, 47.424085], [8.497246, 47.424085], [8.497239, 47.424085], [8.497232, 47.424085], [8.497225, 47.424085], [8.497219, 47.424085], [8.497214, 47.424086], [8.497208, 47.424087], [8.497197, 47.424089], [8.497185, 47.424091], [8.497174, 47.424093], [8.49716, 47.424095], [8.497146, 47.424098], [8.497132, 47.424101], [8.496984, 47.424139], [8.496954, 47.424149], [8.496924, 47.42416], [8.496894, 47.424171], [8.496866, 47.424184], [8.496799, 47.424215]]], "type": "MultiLineString"}, "id": "4000", "properties": {}, "type": "Feature"}, {"bbox": [8.554172, 47.422652, 8.55591, 47.422912], "geometry": {"coordinates": [[[8.554172, 47.422799], [8.554344, 47.422884], [8.554383, 47.422895], [8.554424, 47.422903], [8.554465, 47.422908], [8.554506, 47.422911], [8.554548, 47.422912], [8.55459, 47.42291], [8.554631, 47.422905], [8.554672, 47.422898], [8.5553, 47.422743], [8.555315, 47.422739], [8.55533, 47.422735], [8.555345, 47.422731], [8.555361, 47.422729], [8.555377, 47.422728], [8.555394, 47.422728], [8.55541, 47.422728], [8.555426, 47.42273], [8.555442, 47.422733], [8.555457, 47.422736], [8.555472, 47.42274], [8.555486, 47.422746], [8.5555, 47.422752], [8.555512, 47.422758], [8.555531, 47.422763], [8.55555, 47.422766], [8.555569, 47.422768], [8.555588, 47.422769], [8.555608, 47.422769], [8.555627, 47.422768], [8.555646, 47.422765], [8.555664, 47.422761], [8.555683, 47.422756], [8.5557, 47.42275], [8.555716, 47.422743], [8.555732, 47.422736], [8.555746, 47.422727], [8.555759, 47.422717], [8.55591, 47.422652]]], "type": "MultiLineString"}, "id": "4001", "properties": {}, "type": "Feature"}, {"bbox": [8.578076, 47.381435, 8.581215, 47.382228], "geometry": {"coordinates": [[[8.578076, 47.381435], [8.578128, 47.381455], [8.578378, 47.381507], [8.57863, 47.381554], [8.578885, 47.381595], [8.57912, 47.381641], [8.579348, 47.381702], [8.579567, 47.381776], [8.579813, 47.381868], [8.580057, 47.381961], [8.580301, 47.382056], [8.580401, 47.382103], [8.580503, 47.382147], [8.580607, 47.382189], [8.580652, 47.382203], [8.580698, 47.382214], [8.580746, 47.382221], [8.580794, 47.382226], [8.580843, 47.382228], [8.580892, 47.382227], [8.580941, 47.382223], [8.580988, 47.382216], [8.581015, 47.382209], [8.581041, 47.382201], [8.581066, 47.382191], [8.58109, 47.382179], [8.581112, 47.382167], [8.581132, 47.382153], [8.58115, 47.382137], [8.581167, 47.382121], [8.581181, 47.382104], [8.581193, 47.382086], [8.581203, 47.382068], [8.58121, 47.382049], [8.581215, 47.38203]]], "type": "MultiLineString"}, "id": "4002", "properties": {}, "type": "Feature"}, {"bbox": [8.580266, 47.355832, 8.582338, 47.357136], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580278, 47.35713], [8.58029, 47.357126], [8.580303, 47.357122], [8.580316, 47.357119], [8.58033, 47.357117], [8.580344, 47.357116], [8.580472, 47.357112], [8.5806, 47.357114], [8.580728, 47.357119], [8.580775, 47.357119], [8.580822, 47.357116], [8.580868, 47.357112], [8.580953, 47.357101], [8.581037, 47.357089], [8.581121, 47.357076], [8.581145, 47.357072], [8.581168, 47.357066], [8.581191, 47.357059], [8.581212, 47.35705], [8.581232, 47.357041], [8.581251, 47.35703], [8.581268, 47.357018], [8.581284, 47.357005], [8.58136, 47.356922], [8.581438, 47.35684], [8.581519, 47.356759], [8.58162, 47.356636], [8.581724, 47.356514], [8.581832, 47.356393], [8.582231, 47.356043], [8.582272, 47.355999], [8.582296, 47.355959], [8.582315, 47.355917], [8.582329, 47.355875], [8.582338, 47.355832]]], "type": "MultiLineString"}, "id": "4003", "properties": {}, "type": "Feature"}, {"bbox": [8.500528, 47.370573, 8.501963, 47.370661], "geometry": {"coordinates": [[[8.501963, 47.370573], [8.501873, 47.37059], [8.501815, 47.370601], [8.501444, 47.370621], [8.501178, 47.370634], [8.500528, 47.370661]]], "type": "MultiLineString"}, "id": "4005", "properties": {}, "type": "Feature"}, {"bbox": [8.503447, 47.394298, 8.503861, 47.394909], "geometry": {"coordinates": [[[8.503861, 47.394909], [8.50382, 47.394879], [8.503778, 47.39485], [8.503735, 47.394821], [8.503697, 47.394793], [8.503663, 47.394763], [8.503633, 47.394731], [8.503607, 47.394697], [8.503586, 47.394662], [8.503545, 47.394587], [8.503502, 47.394514], [8.503457, 47.39444], [8.503454, 47.394437], [8.503452, 47.394433], [8.50345, 47.394429], [8.503448, 47.394425], [8.503447, 47.394421], [8.503447, 47.394416], [8.503447, 47.394412], [8.503447, 47.394408], [8.503448, 47.394404], [8.50345, 47.3944], [8.503452, 47.394396], [8.503455, 47.394392], [8.503458, 47.394389], [8.503461, 47.394385], [8.503465, 47.394382], [8.50347, 47.394379], [8.503474, 47.394376], [8.503479, 47.394374], [8.503519, 47.394354], [8.50356, 47.394336], [8.503604, 47.39432], [8.50365, 47.394308], [8.503698, 47.394298]]], "type": "MultiLineString"}, "id": "4007", "properties": {}, "type": "Feature"}, {"bbox": [8.553642, 47.424368, 8.555284, 47.425992], "geometry": {"coordinates": [[[8.553642, 47.424368], [8.554107, 47.424831], [8.554265, 47.425013], [8.554427, 47.425172], [8.555284, 47.425992]]], "type": "MultiLineString"}, "id": "4010", "properties": {}, "type": "Feature"}, {"bbox": [8.53299, 47.372319, 8.53359, 47.372893], "geometry": {"coordinates": [[[8.53359, 47.372893], [8.533515, 47.372773], [8.533501, 47.372757], [8.533485, 47.372742], [8.533467, 47.372729], [8.533447, 47.372716], [8.533336, 47.372647], [8.533316, 47.372635], [8.533298, 47.372622], [8.533281, 47.372608], [8.533267, 47.372593], [8.533254, 47.372578], [8.533244, 47.372561], [8.533228, 47.372538], [8.533209, 47.372517], [8.533188, 47.372496], [8.533164, 47.372477], [8.533138, 47.372459], [8.53311, 47.372442], [8.533081, 47.372421], [8.533054, 47.372397], [8.533029, 47.372372], [8.533008, 47.372346], [8.53299, 47.372319]]], "type": "MultiLineString"}, "id": "4011", "properties": {}, "type": "Feature"}, {"bbox": [8.489526, 47.370567, 8.490955, 47.371267], "geometry": {"coordinates": [[[8.489533, 47.370567], [8.48953, 47.370574], [8.489527, 47.370581], [8.489526, 47.370588], [8.489526, 47.370595], [8.489526, 47.370602], [8.489528, 47.370609], [8.48953, 47.370616], [8.489533, 47.370623], [8.489537, 47.370629], [8.489542, 47.370636], [8.489548, 47.370641], [8.489554, 47.370647], [8.489561, 47.370652], [8.48959, 47.370666], [8.48962, 47.370679], [8.489651, 47.37069], [8.489684, 47.370699], [8.489766, 47.370726], [8.489848, 47.370754], [8.489929, 47.370783], [8.490074, 47.370832], [8.490222, 47.370877], [8.490373, 47.370918], [8.490514, 47.370957], [8.490656, 47.370995], [8.490798, 47.371033], [8.490814, 47.37104], [8.490828, 47.371047], [8.490842, 47.371055], [8.490855, 47.371064], [8.490866, 47.371073], [8.490876, 47.371084], [8.490885, 47.371095], [8.490892, 47.371106], [8.490897, 47.371118], [8.490919, 47.371167], [8.490938, 47.371217], [8.490955, 47.371267]]], "type": "MultiLineString"}, "id": "4012", "properties": {}, "type": "Feature"}, {"bbox": [8.499149, 47.373948, 8.499892, 47.375044], "geometry": {"coordinates": [[[8.499149, 47.373948], [8.499204, 47.37413], [8.499265, 47.37431], [8.499334, 47.37449], [8.499505, 47.374681], [8.499691, 47.374866], [8.499892, 47.375044]]], "type": "MultiLineString"}, "id": "4013", "properties": {}, "type": "Feature"}, {"bbox": [8.511671, 47.380886, 8.512488, 47.381631], "geometry": {"coordinates": [[[8.511671, 47.380886], [8.512013, 47.381293], [8.512016, 47.381297], [8.512019, 47.3813], [8.512022, 47.381303], [8.512026, 47.381306], [8.51203, 47.381308], [8.512035, 47.381311], [8.51204, 47.381313], [8.512045, 47.381315], [8.51205, 47.381316], [8.512055, 47.381317], [8.512061, 47.381318], [8.512066, 47.381319], [8.512072, 47.381319], [8.512078, 47.381319], [8.512084, 47.381319], [8.512089, 47.381319], [8.512095, 47.38132], [8.512101, 47.381321], [8.512106, 47.381322], [8.512111, 47.381324], [8.512117, 47.381326], [8.512121, 47.381328], [8.512126, 47.381331], [8.51213, 47.381334], [8.512133, 47.381337], [8.512382, 47.381586], [8.51239, 47.381594], [8.5124, 47.381601], [8.512411, 47.381608], [8.512422, 47.381613], [8.512434, 47.381619], [8.512447, 47.381623], [8.51246, 47.381626], [8.512474, 47.381629], [8.512488, 47.381631]]], "type": "MultiLineString"}, "id": "4014", "properties": {}, "type": "Feature"}, {"bbox": [8.467512, 47.390483, 8.468501, 47.391539], "geometry": {"coordinates": [[[8.468501, 47.391539], [8.467879, 47.39081], [8.467875, 47.390804], [8.467872, 47.390799], [8.46787, 47.390793], [8.467868, 47.390786], [8.467867, 47.39078], [8.467857, 47.390711], [8.467855, 47.390705], [8.467853, 47.390699], [8.467849, 47.390694], [8.467845, 47.390689], [8.467841, 47.390684], [8.467835, 47.390679], [8.467829, 47.390674], [8.467722, 47.390612], [8.467616, 47.390548], [8.467512, 47.390483]]], "type": "MultiLineString"}, "id": "4015", "properties": {}, "type": "Feature"}, {"bbox": [8.477822, 47.407881, 8.478855, 47.40942], "geometry": {"coordinates": [[[8.478855, 47.40942], [8.478662, 47.409315], [8.478473, 47.409207], [8.478287, 47.409096], [8.478184, 47.409016], [8.478092, 47.40893], [8.478011, 47.408838], [8.477943, 47.408743], [8.477887, 47.408643], [8.477844, 47.408541], [8.477827, 47.408445], [8.477822, 47.408348], [8.47783, 47.408251], [8.477851, 47.408155], [8.477885, 47.408061], [8.477932, 47.407969], [8.47799, 47.407881]]], "type": "MultiLineString"}, "id": "4016", "properties": {}, "type": "Feature"}, {"bbox": [8.59428, 47.36064, 8.597784, 47.362219], "geometry": {"coordinates": [[[8.59428, 47.360645], [8.5944, 47.36064], [8.594449, 47.360641], [8.594497, 47.360643], [8.594546, 47.360645], [8.594561, 47.360646], [8.594576, 47.360648], [8.59459, 47.360651], [8.594604, 47.360654], [8.594618, 47.360659], [8.594631, 47.360664], [8.594643, 47.36067], [8.594688, 47.360694], [8.594731, 47.360719], [8.594773, 47.360745], [8.59479, 47.360756], [8.594805, 47.360767], [8.59482, 47.36078], [8.594853, 47.36081], [8.594887, 47.36084], [8.594922, 47.360869], [8.594941, 47.360883], [8.594962, 47.360895], [8.594984, 47.360907], [8.595009, 47.360916], [8.595084, 47.360952], [8.595084, 47.360952], [8.595132, 47.360976], [8.595177, 47.361001], [8.595221, 47.361028], [8.59523, 47.361034], [8.595237, 47.361041], [8.595245, 47.361048], [8.595251, 47.361055], [8.595256, 47.361062], [8.595284, 47.361117], [8.595307, 47.36117], [8.595334, 47.361222], [8.595366, 47.361274], [8.595375, 47.361286], [8.595386, 47.361297], [8.595398, 47.361307], [8.595411, 47.361317], [8.595425, 47.361326], [8.595441, 47.361334], [8.595462, 47.361344], [8.595483, 47.361354], [8.595503, 47.361364], [8.595533, 47.36138], [8.595562, 47.361397], [8.595589, 47.361414], [8.595616, 47.361433], [8.595641, 47.361452], [8.595664, 47.361472], [8.595701, 47.361502], [8.595742, 47.361529], [8.595786, 47.361554], [8.595819, 47.361571], [8.595852, 47.361587], [8.595885, 47.361604], [8.595897, 47.36161], [8.59591, 47.361616], [8.595924, 47.361621], [8.595943, 47.361627], [8.595963, 47.361633], [8.595983, 47.361638], [8.596042, 47.36166], [8.596055, 47.361663], [8.596068, 47.361665], [8.596082, 47.361666], [8.596097, 47.361668], [8.596112, 47.36167], [8.596127, 47.361674], [8.596141, 47.361678], [8.596155, 47.361683], [8.596168, 47.361688], [8.5962, 47.361702], [8.596233, 47.361714], [8.596267, 47.361724], [8.596286, 47.361728], [8.596305, 47.361731], [8.596325, 47.361734], [8.596346, 47.361735], [8.596366, 47.361735], [8.596386, 47.361733], [8.596401, 47.361732], [8.596415, 47.361732], [8.59643, 47.361733], [8.596444, 47.361735], [8.596458, 47.361737], [8.596472, 47.361741], [8.596485, 47.361745], [8.596507, 47.361752], [8.59653, 47.361757], [8.596554, 47.361761], [8.596568, 47.361763], [8.596582, 47.361764], [8.596596, 47.361765], [8.596625, 47.361767], [8.596654, 47.361767], [8.596683, 47.361767], [8.596683, 47.361767], [8.596716, 47.361768], [8.596748, 47.361771], [8.59678, 47.361776], [8.596811, 47.361782], [8.596887, 47.361799], [8.59689, 47.3618], [8.596894, 47.361801], [8.596897, 47.361802], [8.5969, 47.361804], [8.596903, 47.361806], [8.596906, 47.361807], [8.596909, 47.361809], [8.596911, 47.361811], [8.596913, 47.361814], [8.596913, 47.361814], [8.596943, 47.361861], [8.59705, 47.361984], [8.597126, 47.362026], [8.597212, 47.362048], [8.597273, 47.362063], [8.59736, 47.36214], [8.597421, 47.362219], [8.597516, 47.362193], [8.597784, 47.362195]]], "type": "MultiLineString"}, "id": "4017", "properties": {}, "type": "Feature"}, {"bbox": [8.495402, 47.358817, 8.497438, 47.361995], "geometry": {"coordinates": [[[8.497438, 47.358817], [8.497394, 47.358824], [8.497323, 47.358834], [8.497167, 47.358896], [8.496986, 47.359098], [8.496783, 47.359337], [8.496643, 47.359521], [8.496518, 47.359629], [8.496305, 47.359766], [8.496258, 47.359817], [8.496207, 47.359871], [8.495986, 47.360195], [8.495727, 47.360914], [8.495493, 47.361539], [8.495424, 47.361915], [8.495402, 47.361995]]], "type": "MultiLineString"}, "id": "4020", "properties": {}, "type": "Feature"}, {"bbox": [8.509623, 47.410121, 8.510813, 47.411662], "geometry": {"coordinates": [[[8.509888, 47.410121], [8.509967, 47.410237], [8.510069, 47.410283], [8.510747, 47.410269], [8.510752, 47.410268], [8.510756, 47.410268], [8.510761, 47.410268], [8.510766, 47.410269], [8.510771, 47.410269], [8.510776, 47.41027], [8.51078, 47.410272], [8.510785, 47.410273], [8.510789, 47.410275], [8.510793, 47.410277], [8.510797, 47.410279], [8.5108, 47.410282], [8.510803, 47.410285], [8.510806, 47.410287], [8.510808, 47.41029], [8.51081, 47.410294], [8.510811, 47.410297], [8.510812, 47.4103], [8.510813, 47.410303], [8.510813, 47.410307], [8.510812, 47.41031], [8.510812, 47.410313], [8.510811, 47.410317], [8.510809, 47.41032], [8.510807, 47.410323], [8.510805, 47.410326], [8.510802, 47.410329], [8.510799, 47.410331], [8.510479, 47.410585], [8.510436, 47.41068], [8.510618, 47.410935], [8.510641, 47.411008], [8.510642, 47.411011], [8.510642, 47.411015], [8.510641, 47.411018], [8.510641, 47.411021], [8.510639, 47.411024], [8.510638, 47.411028], [8.510636, 47.411031], [8.510633, 47.411033], [8.51063, 47.411036], [8.510627, 47.411039], [8.510624, 47.411041], [8.51062, 47.411043], [8.510616, 47.411045], [8.510612, 47.411047], [8.510608, 47.411048], [8.510472, 47.4111], [8.510443, 47.411131], [8.510447, 47.411169], [8.510449, 47.411197], [8.51045, 47.411227], [8.51045, 47.411235], [8.510449, 47.411244], [8.510447, 47.411252], [8.510444, 47.411261], [8.51044, 47.411269], [8.510434, 47.411277], [8.510428, 47.411284], [8.510421, 47.411291], [8.510412, 47.411298], [8.510403, 47.411304], [8.510055, 47.411411], [8.509918, 47.411435], [8.509664, 47.411433], [8.50966, 47.411434], [8.509655, 47.411435], [8.509651, 47.411436], [8.509647, 47.411438], [8.509644, 47.411439], [8.50964, 47.411441], [8.509637, 47.411443], [8.509634, 47.411445], [8.509631, 47.411448], [8.509629, 47.41145], [8.509627, 47.411453], [8.509625, 47.411455], [8.509624, 47.411458], [8.509623, 47.411461], [8.509623, 47.411464], [8.509623, 47.411467], [8.509623, 47.41147], [8.509623, 47.411473], [8.509624, 47.411476], [8.509626, 47.411479], [8.509628, 47.411482], [8.50963, 47.411484], [8.509658, 47.411532], [8.509701, 47.411662]]], "type": "MultiLineString"}, "id": "4022", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.340471, 8.515962, 47.340687], "geometry": {"coordinates": [[[8.515962, 47.340687], [8.515604, 47.340663], [8.512856, 47.340599], [8.512736, 47.340602], [8.512278, 47.340589], [8.51175, 47.340583], [8.511534, 47.340576], [8.511319, 47.340559], [8.511105, 47.340533], [8.510851, 47.340496], [8.510734, 47.340482], [8.510615, 47.340473], [8.510495, 47.340471], [8.51006, 47.340474]]], "type": "MultiLineString"}, "id": "4029", "properties": {}, "type": "Feature"}, {"bbox": [8.5052, 47.371637, 8.505799, 47.372173], "geometry": {"coordinates": [[[8.505799, 47.372173], [8.50568, 47.372069], [8.505637, 47.372032], [8.505598, 47.371993], [8.505565, 47.371951], [8.505484, 47.371834], [8.505466, 47.371812], [8.505445, 47.37179], [8.505423, 47.371769], [8.505391, 47.371744], [8.505356, 47.37172], [8.505318, 47.371699], [8.5052, 47.371637]]], "type": "MultiLineString"}, "id": "4041", "properties": {}, "type": "Feature"}, {"bbox": [8.573443, 47.388093, 8.575497, 47.389006], "geometry": {"coordinates": [[[8.573761, 47.388093], [8.573732, 47.388228], [8.573687, 47.388361], [8.573625, 47.388491], [8.573548, 47.388617], [8.573456, 47.388738], [8.573449, 47.388758], [8.573445, 47.388779], [8.573443, 47.3888], [8.573444, 47.388821], [8.573448, 47.388842], [8.573455, 47.388862], [8.573464, 47.388882], [8.573476, 47.388902], [8.57349, 47.38892], [8.573514, 47.388937], [8.57354, 47.388952], [8.573568, 47.388965], [8.573597, 47.388977], [8.573628, 47.388986], [8.57366, 47.388994], [8.573693, 47.389], [8.573726, 47.389004], [8.57376, 47.389006], [8.573794, 47.389006], [8.573828, 47.389003], [8.573862, 47.388999], [8.573895, 47.388993], [8.574109, 47.388958], [8.574319, 47.388912], [8.574524, 47.388855], [8.574714, 47.388782], [8.574895, 47.388699], [8.575067, 47.388607], [8.575227, 47.388506], [8.575497, 47.388335]]], "type": "MultiLineString"}, "id": "4043", "properties": {}, "type": "Feature"}, {"bbox": [8.514418, 47.322981, 8.514586, 47.323374], "geometry": {"coordinates": [[[8.514586, 47.323374], [8.514566, 47.323367], [8.514556, 47.323356], [8.514547, 47.323345], [8.514539, 47.323333], [8.514533, 47.32332], [8.514528, 47.323308], [8.514525, 47.323295], [8.514524, 47.323282], [8.514524, 47.323269], [8.514526, 47.323256], [8.514529, 47.323243], [8.514534, 47.32323], [8.514529, 47.323186], [8.514518, 47.323143], [8.514501, 47.3231], [8.514479, 47.323059], [8.514451, 47.323019], [8.514418, 47.322981]]], "type": "MultiLineString"}, "id": "4044", "properties": {}, "type": "Feature"}, {"bbox": [8.510577, 47.383266, 8.511549, 47.383661], "geometry": {"coordinates": [[[8.510577, 47.383626], [8.510608, 47.383637], [8.51064, 47.383646], [8.510673, 47.383655], [8.51068, 47.383657], [8.510687, 47.383659], [8.510694, 47.38366], [8.510701, 47.383661], [8.510709, 47.383661], [8.510716, 47.383661], [8.510723, 47.383661], [8.510731, 47.38366], [8.510738, 47.383659], [8.510745, 47.383657], [8.510752, 47.383655], [8.510758, 47.383652], [8.510764, 47.383649], [8.51077, 47.383646], [8.511549, 47.383266]]], "type": "MultiLineString"}, "id": "4047", "properties": {}, "type": "Feature"}, {"bbox": [8.567924, 47.411446, 8.571072, 47.412941], "geometry": {"coordinates": [[[8.567924, 47.412331], [8.568134, 47.412496], [8.568394, 47.412701], [8.568435, 47.412735], [8.56848, 47.412767], [8.568529, 47.412795], [8.568582, 47.41282], [8.568638, 47.412842], [8.568697, 47.41286], [8.568758, 47.412875], [8.568817, 47.41289], [8.568935, 47.412909], [8.569054, 47.412921], [8.569174, 47.412928], [8.570032, 47.41294], [8.570047, 47.412941], [8.570061, 47.412941], [8.570075, 47.41294], [8.57009, 47.412938], [8.570104, 47.412936], [8.570117, 47.412932], [8.57013, 47.412928], [8.570143, 47.412923], [8.570155, 47.412918], [8.570166, 47.412911], [8.570176, 47.412904], [8.570185, 47.412897], [8.570193, 47.412889], [8.5702, 47.41288], [8.57045, 47.412471], [8.570612, 47.412178], [8.570707, 47.411765], [8.570742, 47.411606], [8.570745, 47.41159], [8.570749, 47.411575], [8.570756, 47.411561], [8.570764, 47.411547], [8.570775, 47.411533], [8.570787, 47.41152], [8.5708, 47.411508], [8.570816, 47.411496], [8.570832, 47.411486], [8.57085, 47.411477], [8.570869, 47.411469], [8.57089, 47.411462], [8.570911, 47.411456], [8.570932, 47.411452], [8.570954, 47.411449], [8.570977, 47.411447], [8.570999, 47.411446], [8.571032, 47.411447], [8.571072, 47.41145]]], "type": "MultiLineString"}, "id": "4048", "properties": {}, "type": "Feature"}, {"bbox": [8.486241, 47.376278, 8.48662, 47.376852], "geometry": {"coordinates": [[[8.486241, 47.376278], [8.486284, 47.376302], [8.486324, 47.376329], [8.48636, 47.376358], [8.486391, 47.376389], [8.486418, 47.376423], [8.486428, 47.376474], [8.486436, 47.376526], [8.486442, 47.376577], [8.486445, 47.376593], [8.486449, 47.376608], [8.486456, 47.376623], [8.486464, 47.376637], [8.486474, 47.376651], [8.486486, 47.376665], [8.48653, 47.376728], [8.486574, 47.37679], [8.48662, 47.376852]]], "type": "MultiLineString"}, "id": "4050", "properties": {}, "type": "Feature"}, {"bbox": [8.495757, 47.422636, 8.496118, 47.423735], "geometry": {"coordinates": [[[8.495979, 47.423735], [8.495975, 47.423687], [8.49603, 47.423389], [8.496006, 47.423379], [8.496023, 47.423302], [8.496095, 47.423265], [8.496118, 47.423151], [8.496105, 47.423024], [8.496054, 47.422959], [8.495835, 47.422866], [8.495797, 47.422839], [8.495779, 47.422695], [8.495757, 47.422636]]], "type": "MultiLineString"}, "id": "4053", "properties": {}, "type": "Feature"}, {"bbox": [8.553558, 47.402067, 8.557342, 47.403296], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553597, 47.402093], [8.553667, 47.402137], [8.55373, 47.40217], [8.553795, 47.402201], [8.553863, 47.402229], [8.554063, 47.402307], [8.554262, 47.402386], [8.554459, 47.402466], [8.554596, 47.402522], [8.554739, 47.40257], [8.554887, 47.40261], [8.555072, 47.402655], [8.555256, 47.402701], [8.555439, 47.40275], [8.555687, 47.40281], [8.55581, 47.40284], [8.556041, 47.402899], [8.556338, 47.402988], [8.556625, 47.403094], [8.556989, 47.403197], [8.557342, 47.403296]]], "type": "MultiLineString"}, "id": "4054", "properties": {}, "type": "Feature"}, {"bbox": [8.575044, 47.405311, 8.576059, 47.406302], "geometry": {"coordinates": [[[8.575044, 47.405311], [8.576013, 47.406257], [8.576059, 47.406302]]], "type": "MultiLineString"}, "id": "4055", "properties": {}, "type": "Feature"}, {"bbox": [8.498666, 47.375044, 8.499892, 47.375716], "geometry": {"coordinates": [[[8.499892, 47.375044], [8.499485, 47.375269], [8.499076, 47.375493], [8.498666, 47.375716]]], "type": "MultiLineString"}, "id": "4056", "properties": {}, "type": "Feature"}, {"bbox": [8.572614, 47.410337, 8.576357, 47.411182], "geometry": {"coordinates": [[[8.572614, 47.411182], [8.572687, 47.411155], [8.57286, 47.411149], [8.573077, 47.411109], [8.573807, 47.41094], [8.574975, 47.410675], [8.576285, 47.410373], [8.576302, 47.410368], [8.576317, 47.410361], [8.576331, 47.410354], [8.576345, 47.410346], [8.576357, 47.410337]]], "type": "MultiLineString"}, "id": "4057", "properties": {}, "type": "Feature"}, {"bbox": [8.516709, 47.33633, 8.517548, 47.336615], "geometry": {"coordinates": [[[8.517548, 47.33638], [8.517517, 47.336361], [8.517504, 47.336354], [8.51749, 47.336348], [8.517476, 47.336343], [8.51746, 47.336338], [8.517445, 47.336335], [8.517429, 47.336332], [8.517412, 47.336331], [8.517396, 47.33633], [8.517379, 47.33633], [8.517363, 47.336332], [8.517347, 47.336334], [8.517331, 47.336337], [8.517315, 47.336341], [8.517301, 47.336346], [8.51693, 47.336515], [8.516709, 47.336615]]], "type": "MultiLineString"}, "id": "4058", "properties": {}, "type": "Feature"}, {"bbox": [8.476241, 47.373969, 8.478494, 47.375322], "geometry": {"coordinates": [[[8.476241, 47.373969], [8.476263, 47.374004], [8.47629, 47.374038], [8.47632, 47.37407], [8.476355, 47.3741], [8.476419, 47.374143], [8.476489, 47.374182], [8.476563, 47.374216], [8.476936, 47.374375], [8.477309, 47.374534], [8.477681, 47.374694], [8.477717, 47.374716], [8.477751, 47.37474], [8.477782, 47.374766], [8.477855, 47.374825], [8.477928, 47.374884], [8.478002, 47.374943], [8.478083, 47.375012], [8.478169, 47.375078], [8.478259, 47.375142], [8.478331, 47.375206], [8.478409, 47.375266], [8.478494, 47.375322]]], "type": "MultiLineString"}, "id": "4059", "properties": {}, "type": "Feature"}, {"bbox": [8.509778, 47.352956, 8.510668, 47.354405], "geometry": {"coordinates": [[[8.509778, 47.354405], [8.509835, 47.354355], [8.509914, 47.354316], [8.510039, 47.354292], [8.51005, 47.35429], [8.510061, 47.354287], [8.510071, 47.354283], [8.510081, 47.354279], [8.510091, 47.354275], [8.5101, 47.35427], [8.510108, 47.354264], [8.510115, 47.354258], [8.510122, 47.354251], [8.510127, 47.354245], [8.510132, 47.354237], [8.510262, 47.35399], [8.510256, 47.353952], [8.510322, 47.353838], [8.510355, 47.353773], [8.510406, 47.353671], [8.51041, 47.353651], [8.510424, 47.353591], [8.510427, 47.35356], [8.510434, 47.353529], [8.510445, 47.353499], [8.510461, 47.35347], [8.510668, 47.35309], [8.510547, 47.352956]]], "type": "MultiLineString"}, "id": "4060", "properties": {}, "type": "Feature"}, {"bbox": [8.493952, 47.388332, 8.497856, 47.389947], "geometry": {"coordinates": [[[8.493952, 47.389947], [8.495873, 47.389392], [8.497856, 47.388763], [8.497658, 47.388463], [8.497518, 47.388389], [8.497368, 47.388332]]], "type": "MultiLineString"}, "id": "4063", "properties": {}, "type": "Feature"}, {"bbox": [8.528432, 47.38236, 8.528946, 47.382934], "geometry": {"coordinates": [[[8.528432, 47.38236], [8.528546, 47.38251], [8.528878, 47.382918], [8.528946, 47.382934]]], "type": "MultiLineString"}, "id": "4065", "properties": {}, "type": "Feature"}, {"bbox": [8.51196, 47.352343, 8.519291, 47.356952], "geometry": {"coordinates": [[[8.519291, 47.356952], [8.518381, 47.356825], [8.518257, 47.356792], [8.518065, 47.356704], [8.517883, 47.356599], [8.517796, 47.356523], [8.517745, 47.35646], [8.517676, 47.356378], [8.517607, 47.356284], [8.517519, 47.356166], [8.517469, 47.356102], [8.517427, 47.355821], [8.517408, 47.355424], [8.517312, 47.355199], [8.517063, 47.354965], [8.516608, 47.354801], [8.516579, 47.354796], [8.516551, 47.35479], [8.516524, 47.354782], [8.516498, 47.354773], [8.516473, 47.354762], [8.516449, 47.35475], [8.516427, 47.354736], [8.516407, 47.354722], [8.516389, 47.354706], [8.516373, 47.354689], [8.516359, 47.354671], [8.516348, 47.354652], [8.516339, 47.354633], [8.516332, 47.354614], [8.516328, 47.354594], [8.516325, 47.35455], [8.516316, 47.354507], [8.516302, 47.354465], [8.516282, 47.354423], [8.516257, 47.354383], [8.516227, 47.354344], [8.516192, 47.354308], [8.516153, 47.354274], [8.51572, 47.353913], [8.515301, 47.353545], [8.514897, 47.353169], [8.514882, 47.353153], [8.514866, 47.353138], [8.514848, 47.353124], [8.514828, 47.353112], [8.514806, 47.3531], [8.514783, 47.35309], [8.514759, 47.353081], [8.514733, 47.353074], [8.514707, 47.353068], [8.51468, 47.353063], [8.514653, 47.353061], [8.514626, 47.35306], [8.514373, 47.353034], [8.514122, 47.353005], [8.513871, 47.352972], [8.513715, 47.352965], [8.51356, 47.352958], [8.513404, 47.352949], [8.513332, 47.35294], [8.513262, 47.352927], [8.513193, 47.35291], [8.513127, 47.352888], [8.512952, 47.35281], [8.512787, 47.352722], [8.512634, 47.352624], [8.512495, 47.352517], [8.512465, 47.352493], [8.512433, 47.352471], [8.512397, 47.352451], [8.51236, 47.352433], [8.51232, 47.352417], [8.512278, 47.352403], [8.512235, 47.352392], [8.512144, 47.352374], [8.512052, 47.352358], [8.51196, 47.352343]]], "type": "MultiLineString"}, "id": "4067", "properties": {}, "type": "Feature"}, {"bbox": [8.499951, 47.40526, 8.500448, 47.406423], "geometry": {"coordinates": [[[8.499951, 47.40526], [8.49996, 47.405265], [8.499969, 47.405271], [8.499977, 47.405277], [8.499985, 47.405284], [8.499991, 47.405291], [8.499997, 47.405298], [8.500002, 47.405306], [8.500063, 47.405416], [8.500126, 47.405526], [8.500191, 47.405636], [8.499994, 47.40571], [8.499992, 47.40571], [8.499991, 47.40571], [8.49999, 47.405711], [8.499988, 47.405712], [8.499987, 47.405712], [8.499986, 47.405713], [8.499985, 47.405714], [8.499985, 47.405715], [8.499984, 47.405716], [8.499983, 47.405717], [8.499983, 47.405718], [8.499983, 47.405719], [8.499982, 47.40572], [8.499982, 47.405721], [8.499982, 47.405722], [8.499983, 47.405723], [8.499983, 47.405724], [8.499983, 47.405725], [8.499984, 47.405726], [8.499985, 47.405727], [8.500233, 47.40612], [8.500448, 47.406423]]], "type": "MultiLineString"}, "id": "4068", "properties": {}, "type": "Feature"}, {"bbox": [8.522791, 47.380054, 8.524083, 47.380404], "geometry": {"coordinates": [[[8.522791, 47.380054], [8.52294, 47.38017], [8.522965, 47.380182], [8.522991, 47.380193], [8.523019, 47.380203], [8.523048, 47.38021], [8.523078, 47.380216], [8.524083, 47.380404]]], "type": "MultiLineString"}, "id": "4069", "properties": {}, "type": "Feature"}, {"bbox": [8.513749, 47.338909, 8.517174, 47.343508], "geometry": {"coordinates": [[[8.517174, 47.342956], [8.516971, 47.343407], [8.516921, 47.343467], [8.516878, 47.343497], [8.516798, 47.343508], [8.516732, 47.343501], [8.516706, 47.343469], [8.516676, 47.343422], [8.516663, 47.34336], [8.516726, 47.342511], [8.516742, 47.341704], [8.516746, 47.341655], [8.516745, 47.341606], [8.516737, 47.341557], [8.516724, 47.341509], [8.516705, 47.341462], [8.516681, 47.341416], [8.516651, 47.341371], [8.516383, 47.341068], [8.515962, 47.340687], [8.514993, 47.339879], [8.513749, 47.338909]]], "type": "MultiLineString"}, "id": "4070", "properties": {}, "type": "Feature"}, {"bbox": [8.543031, 47.370721, 8.543322, 47.37103], "geometry": {"coordinates": [[[8.543031, 47.370721], [8.543227, 47.370731], [8.543278, 47.370791], [8.543243, 47.370801], [8.543209, 47.370972], [8.543201, 47.371017], [8.543271, 47.37103], [8.543322, 47.371019]]], "type": "MultiLineString"}, "id": "4071", "properties": {}, "type": "Feature"}, {"bbox": [8.53317, 47.411726, 8.533441, 47.413182], "geometry": {"coordinates": [[[8.533441, 47.411726], [8.533411, 47.411884], [8.533283, 47.412491], [8.533214, 47.412834], [8.53317, 47.41308], [8.533181, 47.413182]]], "type": "MultiLineString"}, "id": "4072", "properties": {}, "type": "Feature"}, {"bbox": [8.460131, 47.375893, 8.469861, 47.381373], "geometry": {"coordinates": [[[8.469861, 47.375912], [8.469618, 47.375901], [8.469363, 47.375893], [8.468938, 47.375893], [8.468903, 47.375894], [8.468867, 47.375898], [8.468833, 47.375903], [8.468799, 47.37591], [8.468766, 47.37592], [8.468735, 47.375931], [8.468705, 47.375944], [8.468677, 47.375959], [8.468651, 47.375975], [8.468485, 47.376091], [8.468452, 47.376113], [8.468416, 47.376132], [8.468379, 47.376149], [8.468339, 47.376164], [8.468297, 47.376177], [8.467959, 47.376269], [8.467682, 47.376361], [8.467576, 47.376394], [8.467468, 47.376424], [8.467359, 47.376452], [8.466897, 47.376559], [8.4668, 47.376585], [8.466707, 47.376617], [8.466619, 47.376655], [8.466537, 47.376698], [8.46646, 47.376746], [8.466391, 47.376799], [8.466081, 47.37706], [8.465956, 47.377156], [8.46582, 47.377245], [8.465674, 47.377326], [8.465214, 47.377561], [8.465039, 47.377655], [8.464872, 47.377757], [8.464713, 47.377864], [8.464008, 47.378366], [8.463977, 47.378388], [8.463945, 47.378408], [8.463912, 47.378428], [8.463561, 47.378633], [8.463161, 47.37889], [8.463091, 47.37894], [8.463028, 47.378993], [8.462974, 47.379051], [8.462927, 47.379111], [8.46289, 47.379175], [8.462704, 47.379535], [8.462669, 47.379595], [8.462627, 47.379653], [8.462577, 47.379708], [8.462521, 47.37976], [8.462459, 47.379809], [8.462391, 47.379853], [8.462317, 47.379894], [8.461736, 47.38019], [8.460807, 47.380635], [8.46073, 47.380675], [8.460658, 47.38072], [8.460591, 47.380769], [8.460531, 47.380821], [8.460478, 47.380876], [8.460308, 47.381071], [8.460269, 47.38112], [8.460234, 47.381171], [8.460205, 47.381224], [8.460131, 47.381373]]], "type": "MultiLineString"}, "id": "4077", "properties": {}, "type": "Feature"}, {"bbox": [8.530538, 47.38332, 8.530808, 47.383513], "geometry": {"coordinates": [[[8.530538, 47.38332], [8.530711, 47.383513], [8.530808, 47.383441]]], "type": "MultiLineString"}, "id": "4079", "properties": {}, "type": "Feature"}, {"bbox": [8.524083, 47.387052, 8.524155, 47.387085], "geometry": {"coordinates": [[[8.524155, 47.387052], [8.524083, 47.387085]]], "type": "MultiLineString"}, "id": "4080", "properties": {}, "type": "Feature"}, {"bbox": [8.537323, 47.340597, 8.538785, 47.340897], "geometry": {"coordinates": [[[8.538785, 47.340897], [8.538182, 47.340773], [8.537428, 47.340597], [8.537323, 47.34061]]], "type": "MultiLineString"}, "id": "4081", "properties": {}, "type": "Feature"}, {"bbox": [8.530426, 47.38331, 8.530538, 47.38332], "geometry": {"coordinates": [[[8.530426, 47.38331], [8.530538, 47.38332]]], "type": "MultiLineString"}, "id": "4083", "properties": {}, "type": "Feature"}, {"bbox": [8.54185, 47.373858, 8.54195, 47.373897], "geometry": {"coordinates": [[[8.54185, 47.373858], [8.54195, 47.373897]]], "type": "MultiLineString"}, "id": "4085", "properties": {}, "type": "Feature"}, {"bbox": [8.52239, 47.390475, 8.523011, 47.39067], "geometry": {"coordinates": [[[8.52239, 47.390627], [8.522405, 47.390636], [8.522421, 47.390644], [8.522437, 47.390651], [8.522455, 47.390657], [8.522473, 47.390662], [8.522492, 47.390666], [8.522511, 47.390668], [8.522531, 47.39067], [8.52255, 47.39067], [8.52257, 47.39067], [8.522589, 47.390668], [8.522608, 47.390664], [8.522627, 47.39066], [8.522645, 47.390655], [8.522662, 47.390648], [8.522679, 47.390641], [8.522944, 47.390495], [8.523011, 47.390475]]], "type": "MultiLineString"}, "id": "4086", "properties": {}, "type": "Feature"}, {"bbox": [8.475352, 47.391626, 8.476858, 47.391857], "geometry": {"coordinates": [[[8.475352, 47.391857], [8.475848, 47.391768], [8.476181, 47.391709], [8.476518, 47.391662], [8.476858, 47.391626]]], "type": "MultiLineString"}, "id": "4087", "properties": {}, "type": "Feature"}, {"bbox": [8.517335, 47.385416, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518803, 47.387087], [8.518716, 47.387034], [8.518637, 47.386976], [8.518567, 47.386912], [8.518467, 47.386787], [8.51786, 47.386167], [8.517499, 47.385793], [8.517454, 47.385745], [8.517416, 47.385694], [8.517385, 47.385641], [8.517361, 47.385586], [8.517344, 47.38553], [8.517336, 47.385473], [8.517335, 47.385416]]], "type": "MultiLineString"}, "id": "4088", "properties": {}, "type": "Feature"}, {"bbox": [8.559887, 47.405, 8.56975, 47.409977], "geometry": {"coordinates": [[[8.559887, 47.405138], [8.560924, 47.405], [8.561268, 47.405107], [8.56162, 47.405199], [8.561981, 47.405276], [8.562334, 47.405355], [8.562677, 47.405454], [8.563007, 47.405572], [8.563321, 47.405708], [8.563618, 47.40586], [8.564904, 47.406612], [8.565334, 47.406878], [8.565754, 47.407153], [8.566161, 47.407436], [8.566479, 47.407675], [8.566781, 47.407924], [8.567067, 47.408181], [8.567931, 47.408944], [8.568377, 47.409299], [8.568841, 47.409643], [8.56932, 47.409977], [8.56975, 47.409937]]], "type": "MultiLineString"}, "id": "4089", "properties": {}, "type": "Feature"}, {"bbox": [8.503831, 47.365991, 8.504205, 47.368268], "geometry": {"coordinates": [[[8.504073, 47.365991], [8.504053, 47.366039], [8.504017, 47.366125], [8.503922, 47.36653], [8.503831, 47.366929], [8.503867, 47.367027], [8.503977, 47.367072], [8.504098, 47.367089], [8.50411, 47.367091], [8.504121, 47.367093], [8.504131, 47.367096], [8.504142, 47.3671], [8.504151, 47.367105], [8.50416, 47.36711], [8.504169, 47.367115], [8.504177, 47.367121], [8.504183, 47.367128], [8.504189, 47.367135], [8.504195, 47.367142], [8.504199, 47.367149], [8.504202, 47.367157], [8.504204, 47.367165], [8.504205, 47.367173], [8.504205, 47.36718], [8.504204, 47.367188], [8.504169, 47.367402], [8.504141, 47.367515], [8.504131, 47.367556], [8.504128, 47.367576], [8.504099, 47.367796], [8.504071, 47.367905], [8.504059, 47.367932], [8.50407, 47.368176], [8.504074, 47.368268]]], "type": "MultiLineString"}, "id": "4090", "properties": {}, "type": "Feature"}, {"bbox": [8.511196, 47.354393, 8.512843, 47.35496], "geometry": {"coordinates": [[[8.512843, 47.354393], [8.512727, 47.354421], [8.512539, 47.354466], [8.512253, 47.35453], [8.512225, 47.354575], [8.512091, 47.354792], [8.511986, 47.35496], [8.511578, 47.354843], [8.511666, 47.354684], [8.511678, 47.35467], [8.511667, 47.354662], [8.511328, 47.354579], [8.511196, 47.354546]]], "type": "MultiLineString"}, "id": "4091", "properties": {}, "type": "Feature"}, {"bbox": [8.487575, 47.376937, 8.488339, 47.378398], "geometry": {"coordinates": [[[8.488294, 47.378398], [8.48831, 47.378369], [8.488322, 47.37834], [8.488331, 47.37831], [8.488337, 47.37828], [8.488339, 47.378262], [8.488338, 47.378245], [8.488336, 47.378227], [8.488331, 47.37821], [8.488324, 47.378193], [8.488315, 47.378177], [8.488304, 47.378161], [8.488291, 47.378146], [8.488276, 47.378132], [8.48826, 47.378118], [8.488241, 47.378106], [8.488164, 47.378082], [8.488088, 47.378055], [8.488014, 47.378027], [8.487993, 47.378018], [8.487973, 47.378008], [8.487955, 47.377997], [8.487938, 47.377985], [8.487922, 47.377972], [8.487909, 47.377958], [8.487897, 47.377943], [8.487887, 47.377928], [8.487879, 47.377912], [8.487873, 47.377895], [8.487871, 47.37788], [8.487872, 47.377865], [8.487874, 47.377849], [8.487879, 47.377834], [8.487885, 47.37782], [8.487918, 47.377764], [8.487943, 47.377706], [8.48796, 47.377647], [8.487961, 47.377638], [8.487961, 47.377629], [8.48796, 47.37762], [8.487958, 47.377611], [8.487955, 47.377602], [8.48795, 47.377593], [8.487944, 47.377585], [8.487938, 47.377577], [8.48793, 47.37757], [8.487921, 47.377563], [8.487912, 47.377556], [8.487901, 47.37755], [8.48789, 47.377545], [8.487879, 47.377541], [8.487794, 47.377495], [8.487714, 47.377446], [8.487639, 47.377393], [8.487623, 47.377377], [8.48761, 47.377361], [8.487598, 47.377344], [8.487589, 47.377327], [8.487582, 47.377309], [8.487577, 47.377291], [8.487575, 47.377272], [8.487581, 47.377214], [8.487595, 47.377157], [8.487615, 47.3771], [8.487626, 47.377082], [8.48764, 47.377064], [8.487657, 47.377048], [8.487675, 47.377032], [8.487696, 47.377018], [8.487746, 47.376997], [8.487797, 47.376976], [8.487848, 47.376956], [8.48786, 47.376951], [8.487871, 47.376947], [8.487884, 47.376943], [8.487896, 47.376941], [8.487909, 47.376939], [8.487923, 47.376938], [8.487936, 47.376937], [8.487949, 47.376938], [8.487962, 47.376939], [8.487975, 47.376941], [8.488154, 47.377002], [8.48817, 47.377008], [8.488186, 47.377012], [8.488203, 47.377015], [8.48822, 47.377018], [8.488238, 47.377019], [8.488255, 47.377019], [8.488273, 47.377018]]], "type": "MultiLineString"}, "id": "4092", "properties": {}, "type": "Feature"}, {"bbox": [8.602844, 47.361243, 8.612522, 47.362201], "geometry": {"coordinates": [[[8.602844, 47.361413], [8.602948, 47.36132], [8.603117, 47.361288], [8.603261, 47.361264], [8.603314, 47.361256], [8.603369, 47.36125], [8.603424, 47.361246], [8.603424, 47.361246], [8.603464, 47.361245], [8.603504, 47.361244], [8.603544, 47.361243], [8.603566, 47.361243], [8.603588, 47.361244], [8.60361, 47.361245], [8.60367, 47.361251], [8.603729, 47.361258], [8.603789, 47.361267], [8.603911, 47.361286], [8.604032, 47.361307], [8.604153, 47.361331], [8.60422, 47.361343], [8.604289, 47.361353], [8.604358, 47.361361], [8.604403, 47.361364], [8.604448, 47.361366], [8.604493, 47.361367], [8.604493, 47.361367], [8.604542, 47.361369], [8.60459, 47.361373], [8.604638, 47.36138], [8.604719, 47.361398], [8.6048, 47.361416], [8.604881, 47.361433], [8.604958, 47.361452], [8.605035, 47.36147], [8.605113, 47.361486], [8.605215, 47.361506], [8.605317, 47.361524], [8.60542, 47.361542], [8.605647, 47.361583], [8.605875, 47.36162], [8.606105, 47.361654], [8.606275, 47.361678], [8.606445, 47.361703], [8.606615, 47.36173], [8.606768, 47.361752], [8.606921, 47.361773], [8.607074, 47.361794], [8.607186, 47.361807], [8.607298, 47.36182], [8.60741, 47.361832], [8.607506, 47.361841], [8.607602, 47.361849], [8.607699, 47.361855], [8.607801, 47.361861], [8.607903, 47.361867], [8.608004, 47.361872], [8.608096, 47.361876], [8.608187, 47.361879], [8.608278, 47.361882], [8.60835, 47.361883], [8.608422, 47.361887], [8.608493, 47.361894], [8.608557, 47.361898], [8.608621, 47.361903], [8.608685, 47.361909], [8.60887, 47.361923], [8.609034, 47.361936], [8.609123, 47.36194], [8.609143, 47.361942], [8.609163, 47.361942], [8.609183, 47.361941], [8.609324, 47.36194], [8.609464, 47.361939], [8.609605, 47.361936], [8.610075, 47.361941], [8.610125, 47.361942], [8.610176, 47.361947], [8.610225, 47.361953], [8.610292, 47.361962], [8.610359, 47.361971], [8.610426, 47.36198], [8.610586, 47.362], [8.610746, 47.36202], [8.610906, 47.362039], [8.610949, 47.362045], [8.610993, 47.36205], [8.611037, 47.362051], [8.611142, 47.362055], [8.611247, 47.362059], [8.611353, 47.362062], [8.611451, 47.362067], [8.611548, 47.362076], [8.611644, 47.362089], [8.611746, 47.362105], [8.611847, 47.362122], [8.611949, 47.362138], [8.612044, 47.362152], [8.612139, 47.362165], [8.612235, 47.362175], [8.612294, 47.362183], [8.612353, 47.362187], [8.612412, 47.362189], [8.612491, 47.362196], [8.612522, 47.362201]]], "type": "MultiLineString"}, "id": "4093", "properties": {}, "type": "Feature"}, {"bbox": [8.548231, 47.422073, 8.550501, 47.424133], "geometry": {"coordinates": [[[8.549001, 47.424097], [8.548913, 47.42413], [8.548896, 47.424132], [8.548878, 47.424133], [8.548861, 47.424132], [8.548843, 47.424131], [8.548826, 47.424129], [8.54881, 47.424125], [8.548793, 47.424121], [8.54834, 47.423986], [8.548338, 47.423985], [8.548335, 47.423984], [8.548332, 47.423983], [8.54833, 47.423981], [8.548328, 47.423979], [8.548326, 47.423978], [8.548325, 47.423976], [8.548323, 47.423974], [8.548322, 47.423972], [8.548321, 47.42397], [8.548321, 47.423967], [8.54832, 47.423965], [8.54832, 47.423963], [8.548321, 47.423961], [8.548321, 47.423959], [8.548322, 47.423957], [8.548323, 47.423955], [8.548325, 47.423953], [8.5485, 47.423693], [8.548231, 47.423294], [8.548339, 47.423264], [8.548426, 47.42324], [8.548363, 47.423148], [8.54841, 47.423134], [8.548416, 47.423148], [8.548452, 47.423139], [8.548459, 47.423153], [8.54863, 47.423104], [8.548772, 47.423057], [8.549115, 47.422877], [8.549382, 47.422636], [8.549749, 47.422454], [8.550012, 47.422282], [8.550384, 47.422122], [8.550501, 47.422073]]], "type": "MultiLineString"}, "id": "4094", "properties": {}, "type": "Feature"}, {"bbox": [8.473998, 47.375657, 8.475169, 47.377299], "geometry": {"coordinates": [[[8.475169, 47.375657], [8.475165, 47.375676], [8.47516, 47.375695], [8.475153, 47.375713], [8.475095, 47.375934], [8.475057, 47.376157], [8.475038, 47.376381], [8.475033, 47.376483], [8.475014, 47.376585], [8.474981, 47.376685], [8.474934, 47.376782], [8.474893, 47.376861], [8.474849, 47.376939], [8.474803, 47.377016], [8.474766, 47.377064], [8.474724, 47.377111], [8.474678, 47.377156], [8.474576, 47.377192], [8.474473, 47.377226], [8.474369, 47.377258], [8.47431, 47.377272], [8.474249, 47.377283], [8.474188, 47.37729], [8.47415, 47.377296], [8.474112, 47.377298], [8.474074, 47.377299], [8.474036, 47.377297], [8.473998, 47.377293]]], "type": "MultiLineString"}, "id": "4095", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.376998, 8.541764, 47.378523], "geometry": {"coordinates": [[[8.541439, 47.376998], [8.541508, 47.377056], [8.541568, 47.377119], [8.541619, 47.377184], [8.541661, 47.377253], [8.541693, 47.377324], [8.541727, 47.377413], [8.54175, 47.377502], [8.541763, 47.377593], [8.541764, 47.377685], [8.541755, 47.377776], [8.541736, 47.377866], [8.541632, 47.378086], [8.541525, 47.378305], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "4096", "properties": {}, "type": "Feature"}, {"bbox": [8.612522, 47.362201, 8.614507, 47.362625], "geometry": {"coordinates": [[[8.612522, 47.362201], [8.612551, 47.362207], [8.612611, 47.362211], [8.612663, 47.362212], [8.612714, 47.362214], [8.612765, 47.362219], [8.612944, 47.362237], [8.613124, 47.362255], [8.613303, 47.362274], [8.613523, 47.362297], [8.613742, 47.362324], [8.613961, 47.362353], [8.614039, 47.362362], [8.614116, 47.362375], [8.61419, 47.362393], [8.614262, 47.362415], [8.614331, 47.362442], [8.614396, 47.362472], [8.614457, 47.362506], [8.614507, 47.36257], [8.614494, 47.362625]]], "type": "MultiLineString"}, "id": "4098", "properties": {}, "type": "Feature"}, {"bbox": [8.528012, 47.363529, 8.528288, 47.363635], "geometry": {"coordinates": [[[8.528012, 47.363635], [8.528283, 47.363534], [8.528288, 47.363529]]], "type": "MultiLineString"}, "id": "4104", "properties": {}, "type": "Feature"}, {"bbox": [8.474384, 47.390752, 8.475352, 47.391857], "geometry": {"coordinates": [[[8.475352, 47.391857], [8.474809, 47.391315], [8.474465, 47.390944], [8.474455, 47.390931], [8.474447, 47.390918], [8.474441, 47.390905], [8.474436, 47.390891], [8.474434, 47.390877], [8.474433, 47.390863], [8.474434, 47.390849], [8.474437, 47.390835], [8.474442, 47.390821], [8.474449, 47.390808], [8.474471, 47.390775], [8.474384, 47.390752]]], "type": "MultiLineString"}, "id": "4120", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.373858, 8.54185, 47.374224], "geometry": {"coordinates": [[[8.54185, 47.373858], [8.541803, 47.373928], [8.541717, 47.374105], [8.54168, 47.374224], [8.541582, 47.374209], [8.541349, 47.374076]]], "type": "MultiLineString"}, "id": "4121", "properties": {}, "type": "Feature"}, {"bbox": [8.523099, 47.386753, 8.524155, 47.387052], "geometry": {"coordinates": [[[8.524155, 47.387052], [8.523294, 47.386764], [8.523277, 47.38676], [8.523259, 47.386757], [8.523241, 47.386754], [8.523222, 47.386753], [8.523203, 47.386753], [8.523185, 47.386755], [8.523167, 47.386757], [8.523149, 47.38676], [8.523131, 47.386765], [8.523115, 47.38677], [8.523099, 47.386777]]], "type": "MultiLineString"}, "id": "4122", "properties": {}, "type": "Feature"}, {"bbox": [8.512003, 47.428102, 8.518699, 47.428384], "geometry": {"coordinates": [[[8.518699, 47.428181], [8.517915, 47.428201], [8.517907, 47.42837], [8.514039, 47.428384], [8.51377, 47.428369], [8.513504, 47.428342], [8.51324, 47.428302], [8.513076, 47.428274], [8.512912, 47.428247], [8.512747, 47.428222], [8.51259, 47.428199], [8.512432, 47.428183], [8.512272, 47.428174], [8.51223, 47.428171], [8.512189, 47.428166], [8.512149, 47.428158], [8.512109, 47.428147], [8.512072, 47.428134], [8.512036, 47.428119], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "4127", "properties": {}, "type": "Feature"}, {"bbox": [8.48008, 47.385146, 8.481337, 47.385688], "geometry": {"coordinates": [[[8.48008, 47.385688], [8.480137, 47.385646], [8.480197, 47.385606], [8.480261, 47.385569], [8.480299, 47.385551], [8.480337, 47.385533], [8.480375, 47.385515], [8.480881, 47.385307], [8.480939, 47.385282], [8.481, 47.385259], [8.481062, 47.385239], [8.481157, 47.385213], [8.481249, 47.385182], [8.481337, 47.385146]]], "type": "MultiLineString"}, "id": "4128", "properties": {}, "type": "Feature"}, {"bbox": [8.481261, 47.417647, 8.483129, 47.417784], "geometry": {"coordinates": [[[8.483129, 47.417647], [8.483032, 47.417759], [8.483026, 47.417764], [8.483019, 47.417768], [8.483012, 47.417772], [8.483005, 47.417775], [8.482997, 47.417778], [8.482989, 47.41778], [8.48298, 47.417782], [8.482971, 47.417783], [8.482963, 47.417784], [8.482954, 47.417784], [8.482945, 47.417784], [8.482936, 47.417783], [8.481261, 47.417698]]], "type": "MultiLineString"}, "id": "4130", "properties": {}, "type": "Feature"}, {"bbox": [8.525259, 47.349538, 8.526569, 47.351051], "geometry": {"coordinates": [[[8.526569, 47.351051], [8.526555, 47.350996], [8.526172, 47.350493], [8.525475, 47.349851], [8.525408, 47.34971], [8.525259, 47.349552], [8.525267, 47.349538]]], "type": "MultiLineString"}, "id": "4131", "properties": {}, "type": "Feature"}, {"bbox": [8.584198, 47.383253, 8.586298, 47.383707], "geometry": {"coordinates": [[[8.584198, 47.383704], [8.584214, 47.383706], [8.58423, 47.383707], [8.584246, 47.383706], [8.584262, 47.383705], [8.584277, 47.383703], [8.584293, 47.3837], [8.584307, 47.383696], [8.586181, 47.383264], [8.586298, 47.383253]]], "type": "MultiLineString"}, "id": "4132", "properties": {}, "type": "Feature"}, {"bbox": [8.476517, 47.416864, 8.477899, 47.417092], "geometry": {"coordinates": [[[8.476517, 47.416865], [8.476567, 47.416864], [8.476617, 47.416866], [8.476666, 47.416871], [8.477292, 47.416951], [8.477344, 47.416958], [8.477396, 47.416966], [8.477447, 47.416974], [8.477601, 47.417], [8.477641, 47.417007], [8.477679, 47.417016], [8.477717, 47.417027], [8.477753, 47.417039], [8.477899, 47.417092]]], "type": "MultiLineString"}, "id": "4133", "properties": {}, "type": "Feature"}, {"bbox": [8.486679, 47.402687, 8.487835, 47.403201], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.487828, 47.402699], [8.487832, 47.402711], [8.487834, 47.402723], [8.487835, 47.402736], [8.487818, 47.40275], [8.486952, 47.403071], [8.486937, 47.403078], [8.486923, 47.403084], [8.486908, 47.403091], [8.486679, 47.403201]]], "type": "MultiLineString"}, "id": "4135", "properties": {}, "type": "Feature"}, {"bbox": [8.539474, 47.407107, 8.540464, 47.407597], "geometry": {"coordinates": [[[8.539474, 47.407597], [8.539571, 47.407432], [8.539672, 47.407269], [8.539776, 47.407107], [8.539882, 47.40714], [8.539987, 47.407173], [8.540091, 47.407208], [8.540123, 47.407222], [8.540152, 47.407239], [8.54018, 47.407257], [8.540205, 47.407276], [8.540227, 47.407297], [8.540247, 47.407319], [8.540273, 47.407363], [8.540301, 47.407407], [8.54033, 47.40745], [8.54037, 47.407485], [8.540415, 47.407518], [8.540464, 47.407547]]], "type": "MultiLineString"}, "id": "4136", "properties": {}, "type": "Feature"}, {"bbox": [8.564824, 47.407865, 8.565258, 47.408457], "geometry": {"coordinates": [[[8.564824, 47.408457], [8.564959, 47.408256], [8.565104, 47.408059], [8.565258, 47.407865]]], "type": "MultiLineString"}, "id": "4137", "properties": {}, "type": "Feature"}, {"bbox": [8.565993, 47.367607, 8.567231, 47.368332], "geometry": {"coordinates": [[[8.567231, 47.367614], [8.567189, 47.367607], [8.567075, 47.367725], [8.566948, 47.367838], [8.566807, 47.367942], [8.566654, 47.368038], [8.566572, 47.368082], [8.566487, 47.368122], [8.566397, 47.368158], [8.56606, 47.36829], [8.566047, 47.368295], [8.566034, 47.368301], [8.566022, 47.368308], [8.566012, 47.368315], [8.566002, 47.368323], [8.565993, 47.368332]]], "type": "MultiLineString"}, "id": "4138", "properties": {}, "type": "Feature"}, {"bbox": [8.542444, 47.39852, 8.571178, 47.40679], "geometry": {"coordinates": [[[8.542444, 47.39852], [8.54281, 47.399024], [8.543043, 47.399159], [8.543292, 47.399281], [8.543555, 47.399388], [8.54383, 47.399481], [8.544115, 47.399558], [8.545654, 47.399793], [8.546025, 47.399842], [8.546388, 47.399912], [8.546741, 47.400002], [8.547082, 47.400111], [8.547776, 47.400369], [8.548505, 47.400579], [8.54926, 47.400739], [8.549683, 47.400836], [8.550092, 47.400958], [8.550483, 47.401104], [8.550853, 47.401273], [8.551432, 47.401544], [8.552012, 47.401815], [8.552593, 47.402084], [8.553251, 47.40239], [8.553935, 47.402668], [8.554643, 47.402918], [8.555792, 47.403265], [8.556949, 47.403599], [8.558115, 47.40392], [8.558833, 47.404084], [8.559528, 47.404289], [8.560195, 47.404533], [8.560831, 47.404814], [8.561529, 47.405045], [8.56222, 47.405286], [8.562903, 47.405538], [8.563402, 47.405774], [8.563892, 47.406018], [8.564373, 47.406272], [8.564578, 47.406382], [8.564796, 47.40648], [8.565025, 47.406566], [8.565263, 47.406639], [8.56551, 47.406698], [8.565763, 47.406743], [8.56602, 47.406773], [8.566281, 47.40679], [8.56648, 47.406787], [8.566679, 47.406773], [8.566875, 47.406749], [8.567067, 47.406713], [8.567255, 47.406667], [8.567436, 47.40661], [8.56761, 47.406544], [8.567776, 47.406468], [8.569381, 47.40583], [8.57032, 47.405472], [8.57056, 47.40536], [8.570785, 47.405234], [8.570991, 47.405095], [8.571178, 47.404943]]], "type": "MultiLineString"}, "id": "4139", "properties": {}, "type": "Feature"}, {"bbox": [8.546314, 47.425197, 8.546838, 47.425332], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.54649, 47.425201], [8.546548, 47.425208], [8.546605, 47.425218], [8.54666, 47.425232], [8.546724, 47.425261], [8.546783, 47.425295], [8.546838, 47.425332]]], "type": "MultiLineString"}, "id": "4146", "properties": {}, "type": "Feature"}, {"bbox": [8.459072, 47.383156, 8.462439, 47.384411], "geometry": {"coordinates": [[[8.462439, 47.383156], [8.462367, 47.383184], [8.462286, 47.383218], [8.462209, 47.383257], [8.462137, 47.383299], [8.46189, 47.383454], [8.461768, 47.383527], [8.461641, 47.383596], [8.461509, 47.383661], [8.461018, 47.383888], [8.460914, 47.383935], [8.460808, 47.38398], [8.4607, 47.384022], [8.460404, 47.384135], [8.460324, 47.384163], [8.46024, 47.384187], [8.460153, 47.384206], [8.460065, 47.38422], [8.459883, 47.384245], [8.459812, 47.384255], [8.459741, 47.384266], [8.459671, 47.384278], [8.459359, 47.384334], [8.459072, 47.384411]]], "type": "MultiLineString"}, "id": "4147", "properties": {}, "type": "Feature"}, {"bbox": [8.459868, 47.381189, 8.473208, 47.382306], "geometry": {"coordinates": [[[8.473208, 47.382049], [8.473116, 47.382014], [8.472586, 47.381882], [8.472312, 47.381813], [8.472259, 47.381799], [8.472209, 47.381783], [8.472159, 47.381764], [8.471939, 47.381754], [8.471133, 47.381718], [8.470972, 47.381714], [8.47081, 47.381717], [8.470649, 47.381726], [8.470502, 47.381742], [8.470358, 47.381768], [8.470219, 47.381802], [8.470085, 47.381846], [8.469629, 47.382013], [8.469519, 47.382049], [8.469403, 47.382078], [8.469284, 47.3821], [8.469163, 47.382115], [8.468719, 47.382155], [8.468611, 47.382162], [8.468503, 47.382165], [8.468394, 47.382163], [8.468057, 47.38215], [8.467782, 47.382148], [8.467508, 47.382164], [8.467238, 47.382197], [8.466655, 47.382287], [8.466552, 47.3823], [8.466448, 47.382306], [8.466343, 47.382306], [8.466238, 47.382299], [8.466135, 47.382286], [8.465041, 47.382109], [8.465035, 47.382108], [8.464921, 47.382094], [8.464806, 47.382085], [8.46469, 47.382084], [8.464574, 47.38209], [8.46446, 47.382102], [8.464328, 47.38212], [8.463833, 47.382188], [8.46364, 47.382209], [8.463445, 47.382219], [8.463249, 47.382218], [8.463055, 47.382207], [8.463046, 47.382206], [8.462293, 47.382141], [8.461322, 47.382068], [8.461292, 47.382065], [8.461262, 47.382062], [8.461232, 47.382058], [8.46115, 47.382043], [8.46107, 47.382023], [8.460994, 47.381998], [8.460921, 47.381968], [8.460696, 47.381867], [8.460617, 47.381827], [8.460543, 47.381783], [8.460475, 47.381735], [8.460413, 47.381682], [8.460358, 47.381627], [8.460131, 47.381373], [8.460097, 47.381336], [8.460081, 47.381318], [8.460062, 47.381302], [8.460041, 47.381288], [8.460018, 47.381274], [8.459993, 47.381262], [8.459967, 47.381251], [8.459948, 47.381243], [8.459929, 47.381234], [8.459912, 47.381224], [8.459896, 47.381213], [8.459881, 47.381201], [8.459868, 47.381189]]], "type": "MultiLineString"}, "id": "4151", "properties": {}, "type": "Feature"}, {"bbox": [8.500117, 47.422958, 8.502099, 47.423551], "geometry": {"coordinates": [[[8.502099, 47.422975], [8.501929, 47.423017], [8.501896, 47.422958], [8.500117, 47.423432], [8.50015, 47.423488], [8.500185, 47.423551], [8.501966, 47.423082], [8.501929, 47.423017]]], "type": "MultiLineString"}, "id": "4152", "properties": {}, "type": "Feature"}, {"bbox": [8.498875, 47.369166, 8.501606, 47.369698], "geometry": {"coordinates": [[[8.501606, 47.369654], [8.501281, 47.36969], [8.501172, 47.369697], [8.501062, 47.369698], [8.500952, 47.369692], [8.500843, 47.36968], [8.500736, 47.369661], [8.500633, 47.369636], [8.500533, 47.369605], [8.500437, 47.369568], [8.500328, 47.369515], [8.500213, 47.369468], [8.500093, 47.369428], [8.499968, 47.369394], [8.49991, 47.36938], [8.499212, 47.369234], [8.498875, 47.369166]]], "type": "MultiLineString"}, "id": "4153", "properties": {}, "type": "Feature"}, {"bbox": [8.540174, 47.371585, 8.54142, 47.372287], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541412, 47.371594], [8.54135, 47.371713], [8.541289, 47.371797], [8.541009, 47.37194], [8.54091, 47.371979], [8.540833, 47.372123], [8.540745, 47.37222], [8.540174, 47.372287]]], "type": "MultiLineString"}, "id": "4157", "properties": {}, "type": "Feature"}, {"bbox": [8.541072, 47.394669, 8.542069, 47.396633], "geometry": {"coordinates": [[[8.541072, 47.394669], [8.541129, 47.394706], [8.541182, 47.394746], [8.54123, 47.394788], [8.541273, 47.394833], [8.54131, 47.39488], [8.541341, 47.394929], [8.541542, 47.395396], [8.541996, 47.396452], [8.54202, 47.39651], [8.542069, 47.396633]]], "type": "MultiLineString"}, "id": "4158", "properties": {}, "type": "Feature"}, {"bbox": [8.505166, 47.364718, 8.508344, 47.364953], "geometry": {"coordinates": [[[8.508344, 47.364718], [8.508103, 47.36472], [8.50772, 47.364772], [8.50723, 47.36484], [8.506901, 47.364877], [8.506252, 47.364922], [8.505299, 47.364953], [8.505168, 47.36491], [8.505166, 47.36491]]], "type": "MultiLineString"}, "id": "4159", "properties": {}, "type": "Feature"}, {"bbox": [8.538372, 47.418388, 8.538432, 47.419042], "geometry": {"coordinates": [[[8.538372, 47.418388], [8.538372, 47.418388], [8.538392, 47.418655], [8.538432, 47.419042]]], "type": "MultiLineString"}, "id": "4162", "properties": {}, "type": "Feature"}, {"bbox": [8.541951, 47.417183, 8.542113, 47.418201], "geometry": {"coordinates": [[[8.541951, 47.417183], [8.542005, 47.417483], [8.542013, 47.417536], [8.542031, 47.417669], [8.542047, 47.417784], [8.542039, 47.41781], [8.542082, 47.418134], [8.542113, 47.418201]]], "type": "MultiLineString"}, "id": "4163", "properties": {}, "type": "Feature"}, {"bbox": [8.557807, 47.384056, 8.560415, 47.384381], "geometry": {"coordinates": [[[8.557807, 47.384381], [8.557868, 47.384362], [8.557926, 47.384339], [8.557982, 47.384313], [8.558034, 47.384284], [8.558082, 47.384253], [8.558126, 47.384218], [8.558259, 47.384124], [8.558282, 47.38411], [8.558307, 47.384098], [8.558334, 47.384087], [8.558362, 47.384077], [8.558391, 47.38407], [8.558421, 47.384063], [8.558451, 47.384059], [8.558482, 47.384056], [8.55852, 47.384066], [8.558703, 47.384108], [8.559451, 47.38425], [8.559581, 47.38427], [8.559712, 47.384283], [8.559845, 47.384287], [8.559977, 47.384283], [8.560109, 47.38427], [8.560192, 47.384266], [8.560415, 47.384316]]], "type": "MultiLineString"}, "id": "4164", "properties": {}, "type": "Feature"}, {"bbox": [8.54783, 47.367376, 8.549715, 47.369433], "geometry": {"coordinates": [[[8.549715, 47.367741], [8.54971, 47.367744], [8.549704, 47.367746], [8.549698, 47.367748], [8.549691, 47.367749], [8.549685, 47.36775], [8.549678, 47.367751], [8.549671, 47.367751], [8.549664, 47.367751], [8.549658, 47.36775], [8.549651, 47.367749], [8.549645, 47.367747], [8.549639, 47.367746], [8.549633, 47.367744], [8.549102, 47.367376], [8.548618, 47.367777], [8.548398, 47.368055], [8.548312, 47.368115], [8.547947, 47.368494], [8.547877, 47.368489], [8.54783, 47.368539], [8.54795, 47.368703], [8.548126, 47.368921], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "4165", "properties": {}, "type": "Feature"}, {"bbox": [8.57165, 47.360951, 8.57344, 47.362256], "geometry": {"coordinates": [[[8.57165, 47.360951], [8.571676, 47.36097], [8.571703, 47.360987], [8.571732, 47.361003], [8.571763, 47.361018], [8.571796, 47.36103], [8.572336, 47.361235], [8.572846, 47.361453], [8.572932, 47.361499], [8.573011, 47.361549], [8.573084, 47.361604], [8.573148, 47.361664], [8.573205, 47.361727], [8.573252, 47.361793], [8.573291, 47.361862], [8.57344, 47.362161], [8.573332, 47.362256]]], "type": "MultiLineString"}, "id": "4166", "properties": {}, "type": "Feature"}, {"bbox": [8.560924, 47.404901, 8.56975, 47.409937], "geometry": {"coordinates": [[[8.56975, 47.409937], [8.569137, 47.40957], [8.568581, 47.409163], [8.568088, 47.408719], [8.567497, 47.408232], [8.5669, 47.407749], [8.566295, 47.40727], [8.565412, 47.406749], [8.564521, 47.406235], [8.563621, 47.405728], [8.563217, 47.405535], [8.562793, 47.405365], [8.56235, 47.405217], [8.561909, 47.405105], [8.561466, 47.405], [8.561019, 47.404901], [8.560924, 47.405]]], "type": "MultiLineString"}, "id": "4167", "properties": {}, "type": "Feature"}, {"bbox": [8.451923, 47.380251, 8.459868, 47.381253], "geometry": {"coordinates": [[[8.459868, 47.381189], [8.459695, 47.381162], [8.459591, 47.381152], [8.459486, 47.381148], [8.459382, 47.381149], [8.459277, 47.381156], [8.459114, 47.381172], [8.458951, 47.38119], [8.458789, 47.38121], [8.458675, 47.381224], [8.458561, 47.381235], [8.458446, 47.381245], [8.4583, 47.381253], [8.458152, 47.381253], [8.458005, 47.381246], [8.457883, 47.381234], [8.457762, 47.381219], [8.457643, 47.381199], [8.457539, 47.381178], [8.457437, 47.381153], [8.457337, 47.381125], [8.457218, 47.38109], [8.457099, 47.381055], [8.45698, 47.381021], [8.456709, 47.380926], [8.456668, 47.380912], [8.456627, 47.380896], [8.456587, 47.38088], [8.456548, 47.380862], [8.45651, 47.380843], [8.456473, 47.380824], [8.456409, 47.380791], [8.456342, 47.380763], [8.456271, 47.380738], [8.456198, 47.380718], [8.456122, 47.380702], [8.455948, 47.380673], [8.455773, 47.380645], [8.455597, 47.38062], [8.455408, 47.380595], [8.455218, 47.380572], [8.455028, 47.380551], [8.455027, 47.380551], [8.454935, 47.380541], [8.454843, 47.380527], [8.454752, 47.380509], [8.454665, 47.380488], [8.454579, 47.380463], [8.454496, 47.380434], [8.454496, 47.380434], [8.454281, 47.380352], [8.454281, 47.380351], [8.454251, 47.38034], [8.454219, 47.38033], [8.454187, 47.380322], [8.454153, 47.380315], [8.454119, 47.380311], [8.454085, 47.380309], [8.454084, 47.380309], [8.454083, 47.380309], [8.453991, 47.380299], [8.453901, 47.380283], [8.453812, 47.380264], [8.453735, 47.380255], [8.453658, 47.380251], [8.45358, 47.380252], [8.453503, 47.380257], [8.453427, 47.380268], [8.453353, 47.380283], [8.453281, 47.380302], [8.453083, 47.380365], [8.452881, 47.38042], [8.452674, 47.380466], [8.452673, 47.380466], [8.452578, 47.380487], [8.45248, 47.380504], [8.452381, 47.380515], [8.452293, 47.380522], [8.452205, 47.380525], [8.452116, 47.380524], [8.451923, 47.380518]]], "type": "MultiLineString"}, "id": "4168", "properties": {}, "type": "Feature"}, {"bbox": [8.57861, 47.377046, 8.584054, 47.380826], "geometry": {"coordinates": [[[8.57861, 47.380826], [8.579012, 47.380692], [8.57968, 47.380443], [8.579844, 47.380385], [8.580012, 47.380329], [8.580181, 47.380277], [8.580557, 47.380168], [8.580717, 47.380116], [8.58087, 47.380054], [8.581014, 47.379984], [8.581149, 47.379905], [8.581287, 47.379817], [8.581674, 47.379571], [8.581987, 47.379352], [8.582093, 47.379271], [8.582189, 47.379185], [8.582274, 47.379093], [8.582348, 47.378998], [8.58241, 47.378898], [8.582533, 47.378675], [8.582566, 47.378623], [8.582604, 47.378573], [8.582648, 47.378525], [8.582698, 47.37848], [8.582752, 47.378438], [8.582812, 47.378398], [8.583074, 47.378239], [8.583184, 47.378178], [8.583301, 47.378124], [8.583425, 47.378077], [8.583643, 47.378003], [8.58369, 47.377986], [8.583734, 47.377966], [8.583776, 47.377943], [8.583814, 47.377917], [8.583849, 47.37789], [8.583881, 47.37786], [8.583908, 47.377829], [8.583931, 47.377796], [8.58395, 47.377762], [8.583966, 47.377725], [8.583987, 47.377668], [8.584001, 47.377609], [8.58401, 47.37755], [8.584054, 47.377046]]], "type": "MultiLineString"}, "id": "4172", "properties": {}, "type": "Feature"}, {"bbox": [8.475747, 47.384495, 8.476578, 47.384793], "geometry": {"coordinates": [[[8.476578, 47.384495], [8.475747, 47.384793]]], "type": "MultiLineString"}, "id": "4173", "properties": {}, "type": "Feature"}, {"bbox": [8.542162, 47.404991, 8.546572, 47.405357], "geometry": {"coordinates": [[[8.542162, 47.404991], [8.542336, 47.405032], [8.542509, 47.405075], [8.542681, 47.405119], [8.542798, 47.405136], [8.543449, 47.405292], [8.543652, 47.405326], [8.543858, 47.405348], [8.544067, 47.405357], [8.544276, 47.405353], [8.544483, 47.405336], [8.544988, 47.405275], [8.545505, 47.405227], [8.545898, 47.405207], [8.546034, 47.405204], [8.546342, 47.40521], [8.546454, 47.40522], [8.546572, 47.405245]]], "type": "MultiLineString"}, "id": "4182", "properties": {}, "type": "Feature"}, {"bbox": [8.567924, 47.411394, 8.571072, 47.412331], "geometry": {"coordinates": [[[8.567924, 47.412331], [8.568033, 47.412272], [8.568139, 47.412211], [8.568244, 47.412149], [8.56856, 47.412011], [8.568884, 47.411882], [8.569217, 47.411763], [8.569373, 47.411719], [8.569532, 47.411679], [8.569693, 47.411644], [8.56977, 47.411604], [8.570261, 47.411467], [8.570311, 47.411455], [8.57083, 47.411394], [8.571011, 47.41141], [8.571064, 47.411429], [8.571072, 47.41145]]], "type": "MultiLineString"}, "id": "4184", "properties": {}, "type": "Feature"}, {"bbox": [8.532179, 47.340658, 8.53293, 47.34296], "geometry": {"coordinates": [[[8.532881, 47.340658], [8.53293, 47.3407], [8.532886, 47.340883], [8.532846, 47.340902], [8.532805, 47.340911], [8.532596, 47.341677], [8.532602, 47.341678], [8.532608, 47.34168], [8.532614, 47.341682], [8.53262, 47.341685], [8.532625, 47.341688], [8.53263, 47.341691], [8.532634, 47.341694], [8.532638, 47.341698], [8.532642, 47.341702], [8.532645, 47.341706], [8.532648, 47.34171], [8.532629, 47.341783], [8.532616, 47.341834], [8.532606, 47.341852], [8.532598, 47.341864], [8.532582, 47.341962], [8.532592, 47.341985], [8.532581, 47.342023], [8.532573, 47.342034], [8.532537, 47.342031], [8.532535, 47.342045], [8.532536, 47.342078], [8.532537, 47.342093], [8.532535, 47.342108], [8.532532, 47.342123], [8.532526, 47.342138], [8.532519, 47.342152], [8.53251, 47.342166], [8.532499, 47.342179], [8.532486, 47.342191], [8.532472, 47.342203], [8.532457, 47.342213], [8.53244, 47.342223], [8.532422, 47.342232], [8.532402, 47.342239], [8.532382, 47.342246], [8.532233, 47.342292], [8.532226, 47.342295], [8.532219, 47.342298], [8.532212, 47.342302], [8.532206, 47.342306], [8.532201, 47.34231], [8.532196, 47.342315], [8.532191, 47.34232], [8.532187, 47.342325], [8.532184, 47.342331], [8.532182, 47.342336], [8.53218, 47.342342], [8.532179, 47.342348], [8.532179, 47.342354], [8.53218, 47.34236], [8.532181, 47.342365], [8.532183, 47.342371], [8.532186, 47.342377], [8.532189, 47.342382], [8.532193, 47.342387], [8.532198, 47.342392], [8.532203, 47.342397], [8.532209, 47.342401], [8.532216, 47.342405], [8.532223, 47.342408], [8.53223, 47.342411], [8.532238, 47.342414], [8.532284, 47.342426], [8.532332, 47.342435], [8.532382, 47.342441], [8.532431, 47.342444], [8.532621, 47.342455], [8.532636, 47.342456], [8.53265, 47.342458], [8.532664, 47.342461], [8.532678, 47.342465], [8.532691, 47.342469], [8.532703, 47.342474], [8.532715, 47.34248], [8.532726, 47.342486], [8.532736, 47.342493], [8.532745, 47.342501], [8.532753, 47.342509], [8.53276, 47.342518], [8.532766, 47.342527], [8.532771, 47.342536], [8.532775, 47.342546], [8.532777, 47.342556], [8.532778, 47.342565], [8.532778, 47.342575], [8.532777, 47.342585], [8.532774, 47.342595], [8.5327, 47.342828], [8.532691, 47.342851], [8.532681, 47.342874], [8.53267, 47.342896], [8.532667, 47.342903], [8.532665, 47.34291], [8.532661, 47.342917], [8.532656, 47.342923], [8.532651, 47.342929], [8.532645, 47.342935], [8.532638, 47.342941], [8.53263, 47.342946], [8.532622, 47.34295], [8.532613, 47.342954], [8.532604, 47.342957], [8.532595, 47.34296], [8.532535, 47.342956], [8.532477, 47.342948], [8.532419, 47.342936]]], "type": "MultiLineString"}, "id": "4186", "properties": {}, "type": "Feature"}, {"bbox": [8.477376, 47.40942, 8.478855, 47.411947], "geometry": {"coordinates": [[[8.477649, 47.411814], [8.477432, 47.411944], [8.477429, 47.411945], [8.477425, 47.411946], [8.477422, 47.411947], [8.477419, 47.411947], [8.477415, 47.411947], [8.477412, 47.411947], [8.477409, 47.411947], [8.477405, 47.411946], [8.477402, 47.411946], [8.477399, 47.411945], [8.477396, 47.411944], [8.477393, 47.411943], [8.47739, 47.411941], [8.477388, 47.41194], [8.477385, 47.411938], [8.477383, 47.411936], [8.477381, 47.411934], [8.47738, 47.411932], [8.477378, 47.41193], [8.477377, 47.411928], [8.477376, 47.411926], [8.477376, 47.411923], [8.477394, 47.411875], [8.477418, 47.411828], [8.477448, 47.411782], [8.477668, 47.411418], [8.477685, 47.411388], [8.477699, 47.411357], [8.477711, 47.411326], [8.477755, 47.411217], [8.477803, 47.411108], [8.477854, 47.411], [8.477871, 47.41097], [8.477884, 47.410938], [8.477892, 47.410906], [8.477897, 47.410874], [8.477896, 47.410842], [8.477891, 47.410809], [8.477837, 47.410631], [8.47781, 47.410567], [8.477783, 47.410502], [8.477757, 47.410438], [8.477702, 47.410322], [8.477645, 47.410206], [8.477586, 47.410091], [8.477584, 47.410086], [8.477583, 47.410081], [8.477583, 47.410075], [8.477583, 47.41007], [8.477585, 47.410065], [8.477587, 47.410059], [8.477589, 47.410054], [8.477592, 47.410049], [8.477596, 47.410045], [8.4776, 47.41004], [8.477605, 47.410036], [8.47761, 47.410032], [8.477616, 47.410028], [8.477622, 47.410025], [8.477777, 47.409956], [8.477929, 47.409885], [8.478078, 47.40981], [8.47825, 47.409725], [8.47842, 47.409638], [8.478588, 47.40955], [8.47868, 47.409509], [8.478769, 47.409466], [8.478855, 47.40942]]], "type": "MultiLineString"}, "id": "4187", "properties": {}, "type": "Feature"}, {"bbox": [8.591446, 47.357778, 8.594282, 47.358051], "geometry": {"coordinates": [[[8.591446, 47.35804], [8.591469, 47.358045], [8.591492, 47.358048], [8.591516, 47.35805], [8.591539, 47.358051], [8.591563, 47.35805], [8.591587, 47.358047], [8.591731, 47.358022], [8.591872, 47.357991], [8.59201, 47.357954], [8.592435, 47.357822], [8.592474, 47.357809], [8.592514, 47.357798], [8.592555, 47.35779], [8.592598, 47.357783], [8.59264, 47.357779], [8.592684, 47.357778], [8.592727, 47.357778], [8.593121, 47.357803], [8.593517, 47.35782], [8.593913, 47.357828], [8.593967, 47.357825], [8.594021, 47.357819], [8.594074, 47.357812], [8.594221, 47.357781], [8.594231, 47.35778], [8.594241, 47.357779], [8.594252, 47.357779], [8.594262, 47.357779], [8.594272, 47.35778], [8.594282, 47.357782]]], "type": "MultiLineString"}, "id": "4188", "properties": {}, "type": "Feature"}, {"bbox": [8.489882, 47.40567, 8.49054, 47.407097], "geometry": {"coordinates": [[[8.490539, 47.40567], [8.49054, 47.405691], [8.490538, 47.405712], [8.490533, 47.405733], [8.490526, 47.405753], [8.490516, 47.405773], [8.490504, 47.405792], [8.490489, 47.405811], [8.490473, 47.405828], [8.490454, 47.405845], [8.490433, 47.405861], [8.49041, 47.405875], [8.489992, 47.406107], [8.489975, 47.406114], [8.48996, 47.406123], [8.489945, 47.406132], [8.489932, 47.406142], [8.48992, 47.406153], [8.48991, 47.406164], [8.489901, 47.406177], [8.489894, 47.406189], [8.489888, 47.406202], [8.489885, 47.406215], [8.489882, 47.406229], [8.489882, 47.406242], [8.489883, 47.406256], [8.489886, 47.406269], [8.489891, 47.406282], [8.489949, 47.406418], [8.489957, 47.406431], [8.489966, 47.406445], [8.489976, 47.406458], [8.489986, 47.40647], [8.489997, 47.406482], [8.490008, 47.406494], [8.490236, 47.406678], [8.490248, 47.406689], [8.490259, 47.4067], [8.490268, 47.406712], [8.490276, 47.406725], [8.490282, 47.406738], [8.490286, 47.406751], [8.490289, 47.406764], [8.490289, 47.406778], [8.490289, 47.406791], [8.490286, 47.406805], [8.490281, 47.406818], [8.490211, 47.407002], [8.49021, 47.407005], [8.490209, 47.407009], [8.490209, 47.407012], [8.49021, 47.407016], [8.49021, 47.407019], [8.490212, 47.407022], [8.490224, 47.407038], [8.490274, 47.407071], [8.490336, 47.407097]]], "type": "MultiLineString"}, "id": "4193", "properties": {}, "type": "Feature"}, {"bbox": [8.516013, 47.399163, 8.517451, 47.399496], "geometry": {"coordinates": [[[8.517451, 47.399496], [8.517321, 47.399478], [8.516936, 47.399427], [8.516837, 47.399412], [8.516741, 47.399391], [8.516648, 47.399365], [8.516013, 47.399163]]], "type": "MultiLineString"}, "id": "4194", "properties": {}, "type": "Feature"}, {"bbox": [8.572105, 47.380994, 8.573731, 47.383623], "geometry": {"coordinates": [[[8.572105, 47.380994], [8.572222, 47.381035], [8.572449, 47.381132], [8.572433, 47.381175], [8.572796, 47.381332], [8.572827, 47.381326], [8.573313, 47.381541], [8.573306, 47.381622], [8.573731, 47.382524], [8.573679, 47.382597], [8.573246, 47.383015], [8.573686, 47.383225], [8.573464, 47.383442], [8.573523, 47.383471], [8.573373, 47.383623]]], "type": "MultiLineString"}, "id": "4196", "properties": {}, "type": "Feature"}, {"bbox": [8.48959, 47.394288, 8.489887, 47.395018], "geometry": {"coordinates": [[[8.48959, 47.394288], [8.489615, 47.394413], [8.489649, 47.394538], [8.489693, 47.394661], [8.48975, 47.394759], [8.489807, 47.394857], [8.489865, 47.394955], [8.489873, 47.394975], [8.489881, 47.394996], [8.489887, 47.395018]]], "type": "MultiLineString"}, "id": "4197", "properties": {}, "type": "Feature"}, {"bbox": [8.489924, 47.411165, 8.490524, 47.411872], "geometry": {"coordinates": [[[8.489924, 47.411165], [8.489963, 47.411172], [8.490001, 47.411181], [8.490038, 47.411193], [8.490073, 47.411206], [8.490106, 47.411221], [8.490257, 47.411298], [8.490286, 47.411314], [8.490312, 47.411331], [8.490336, 47.41135], [8.490358, 47.41137], [8.490377, 47.411391], [8.490394, 47.411414], [8.490407, 47.411437], [8.490418, 47.411461], [8.490426, 47.411485], [8.490524, 47.411872]]], "type": "MultiLineString"}, "id": "4200", "properties": {}, "type": "Feature"}, {"bbox": [8.573345, 47.389279, 8.583005, 47.39901], "geometry": {"coordinates": [[[8.573345, 47.39901], [8.573361, 47.398955], [8.57358, 47.398349], [8.573598, 47.39829], [8.573612, 47.398236], [8.573623, 47.398181], [8.57363, 47.398126], [8.573636, 47.398099], [8.573645, 47.398073], [8.573658, 47.398048], [8.573658, 47.398048], [8.573883, 47.397675], [8.573984, 47.397483], [8.574058, 47.397286], [8.574104, 47.397084], [8.574143, 47.396832], [8.574152, 47.396792], [8.574166, 47.396752], [8.574186, 47.396713], [8.57421, 47.396676], [8.574238, 47.396641], [8.574272, 47.396607], [8.574778, 47.396139], [8.574837, 47.396083], [8.574895, 47.396027], [8.574951, 47.395969], [8.575024, 47.39589], [8.575095, 47.39581], [8.575163, 47.395729], [8.575503, 47.395307], [8.575786, 47.39496], [8.576231, 47.394413], [8.576338, 47.394313], [8.576921, 47.393803], [8.576981, 47.393751], [8.576981, 47.39375], [8.577346, 47.393425], [8.577716, 47.393103], [8.578091, 47.392783], [8.578091, 47.392783], [8.578092, 47.392783], [8.57854, 47.39238], [8.578993, 47.391981], [8.579451, 47.391583], [8.579451, 47.391583], [8.57965, 47.391422], [8.579675, 47.391403], [8.579703, 47.391386], [8.579733, 47.39137], [8.579765, 47.391356], [8.579799, 47.391344], [8.580121, 47.391241], [8.580172, 47.391223], [8.580222, 47.391202], [8.580269, 47.391178], [8.580312, 47.391152], [8.580353, 47.391123], [8.580389, 47.391092], [8.580422, 47.39106], [8.580451, 47.391025], [8.580451, 47.391025], [8.580518, 47.390937], [8.580623, 47.390772], [8.580638, 47.39075], [8.580654, 47.390729], [8.580671, 47.390708], [8.580705, 47.390669], [8.580723, 47.390651], [8.580759, 47.390619], [8.580799, 47.390587], [8.580841, 47.390558], [8.581262, 47.390298], [8.5813, 47.390276], [8.581338, 47.390253], [8.581376, 47.390231], [8.581382, 47.390228], [8.581383, 47.390228], [8.581419, 47.390208], [8.581456, 47.390188], [8.581493, 47.390168], [8.581659, 47.390088], [8.581833, 47.390016], [8.582015, 47.389953], [8.582511, 47.389809], [8.582576, 47.389789], [8.582638, 47.389766], [8.582697, 47.389739], [8.582752, 47.389708], [8.582803, 47.389675], [8.582849, 47.389639], [8.582891, 47.3896], [8.582928, 47.389558], [8.582959, 47.389515], [8.582961, 47.389512], [8.582961, 47.389512], [8.582969, 47.389499], [8.582977, 47.389485], [8.582984, 47.389471], [8.582995, 47.389444], [8.583001, 47.389417], [8.583005, 47.389389], [8.583005, 47.389361], [8.583001, 47.389333], [8.582994, 47.389306], [8.582983, 47.389279]]], "type": "MultiLineString"}, "id": "4201", "properties": {}, "type": "Feature"}, {"bbox": [8.547859, 47.406829, 8.547996, 47.407073], "geometry": {"coordinates": [[[8.547859, 47.406829], [8.547996, 47.407073]]], "type": "MultiLineString"}, "id": "4202", "properties": {}, "type": "Feature"}, {"bbox": [8.547907, 47.411015, 8.549203, 47.411253], "geometry": {"coordinates": [[[8.549203, 47.411156], [8.548865, 47.411253], [8.548707, 47.411015], [8.548116, 47.411176], [8.547907, 47.411224]]], "type": "MultiLineString"}, "id": "4205", "properties": {}, "type": "Feature"}, {"bbox": [8.473541, 47.415191, 8.476517, 47.416865], "geometry": {"coordinates": [[[8.474252, 47.415191], [8.474184, 47.415262], [8.473916, 47.415566], [8.473555, 47.416042], [8.473547, 47.416064], [8.473543, 47.416087], [8.473541, 47.416109], [8.473542, 47.416132], [8.473546, 47.416154], [8.473553, 47.416177], [8.473562, 47.416198], [8.473574, 47.416219], [8.473589, 47.41624], [8.473607, 47.416259], [8.473626, 47.416277], [8.473648, 47.416294], [8.473672, 47.41631], [8.473698, 47.416324], [8.473726, 47.416337], [8.473755, 47.416348], [8.473786, 47.416357], [8.473817, 47.416365], [8.47385, 47.41637], [8.473883, 47.416374], [8.473916, 47.416376], [8.473949, 47.416375], [8.473982, 47.416373], [8.474015, 47.416369], [8.474047, 47.416363], [8.474079, 47.416355], [8.474109, 47.416346], [8.474605, 47.416141], [8.474757, 47.416112], [8.474867, 47.416104], [8.474979, 47.416104], [8.475089, 47.416112], [8.475167, 47.416127], [8.475242, 47.416147], [8.475315, 47.416171], [8.475384, 47.416198], [8.475451, 47.41623], [8.4758, 47.416446], [8.476156, 47.416658], [8.476517, 47.416865]]], "type": "MultiLineString"}, "id": "4208", "properties": {}, "type": "Feature"}, {"bbox": [8.577824, 47.390418, 8.580705, 47.39099], "geometry": {"coordinates": [[[8.577824, 47.390418], [8.577931, 47.390469], [8.578034, 47.390514], [8.578142, 47.390554], [8.578255, 47.390589], [8.578499, 47.390656], [8.578902, 47.390776], [8.579526, 47.390965], [8.579564, 47.390975], [8.579603, 47.390983], [8.579642, 47.390988], [8.579683, 47.39099], [8.579723, 47.39099], [8.579763, 47.390988], [8.579801, 47.390983], [8.579839, 47.390977], [8.579875, 47.390968], [8.57991, 47.390957], [8.580116, 47.390885], [8.580705, 47.390669]]], "type": "MultiLineString"}, "id": "4213", "properties": {}, "type": "Feature"}, {"bbox": [8.559416, 47.376258, 8.559913, 47.376583], "geometry": {"coordinates": [[[8.559894, 47.376258], [8.559909, 47.37641], [8.559912, 47.376422], [8.559913, 47.376435], [8.559913, 47.376447], [8.559911, 47.37646], [8.559908, 47.376472], [8.559903, 47.376484], [8.559896, 47.376496], [8.559888, 47.376507], [8.559879, 47.376518], [8.559868, 47.376528], [8.559856, 47.376537], [8.559843, 47.376546], [8.559829, 47.376554], [8.559814, 47.376561], [8.559798, 47.376567], [8.559781, 47.376573], [8.559764, 47.376577], [8.559746, 47.37658], [8.559728, 47.376582], [8.559709, 47.376583], [8.559691, 47.376583], [8.559673, 47.376582], [8.559654, 47.37658], [8.559637, 47.376577], [8.559619, 47.376572], [8.559603, 47.376567], [8.559416, 47.3765]]], "type": "MultiLineString"}, "id": "4220", "properties": {}, "type": "Feature"}, {"bbox": [8.520631, 47.335929, 8.524807, 47.337577], "geometry": {"coordinates": [[[8.524807, 47.337577], [8.523909, 47.337269], [8.523641, 47.337183], [8.523317, 47.337075], [8.522641, 47.336855], [8.522508, 47.336808], [8.522302, 47.336718], [8.521837, 47.336507], [8.52181, 47.336494], [8.521785, 47.336479], [8.521761, 47.336463], [8.521738, 47.336445], [8.521717, 47.336426], [8.521699, 47.336406], [8.521702, 47.336483], [8.521687, 47.336487], [8.521674, 47.336487], [8.52166, 47.336487], [8.521647, 47.336485], [8.521634, 47.336483], [8.521622, 47.336481], [8.521609, 47.336477], [8.521599, 47.336473], [8.521588, 47.336468], [8.521579, 47.336463], [8.52157, 47.336458], [8.521562, 47.336452], [8.521554, 47.336445], [8.521467, 47.336355], [8.521467, 47.336355], [8.521453, 47.33634], [8.52144, 47.336324], [8.52143, 47.336308], [8.521421, 47.336292], [8.521415, 47.336274], [8.52141, 47.336257], [8.521405, 47.336126], [8.521382, 47.336095], [8.521332, 47.336104], [8.521284, 47.336146], [8.521242, 47.336191], [8.521205, 47.336239], [8.521175, 47.336288], [8.521174, 47.336289], [8.521174, 47.33629], [8.521174, 47.33629], [8.521174, 47.336291], [8.521173, 47.336291], [8.521173, 47.336292], [8.521173, 47.336292], [8.521172, 47.336293], [8.521172, 47.336293], [8.521171, 47.336294], [8.521171, 47.336294], [8.52117, 47.336294], [8.521169, 47.336295], [8.521169, 47.336295], [8.521168, 47.336295], [8.521167, 47.336295], [8.521166, 47.336295], [8.521166, 47.336296], [8.521165, 47.336296], [8.521164, 47.336296], [8.521163, 47.336295], [8.521162, 47.336295], [8.521162, 47.336295], [8.521161, 47.336295], [8.52116, 47.336295], [8.521159, 47.336294], [8.521159, 47.336294], [8.521158, 47.336294], [8.521158, 47.336293], [8.521157, 47.336293], [8.521157, 47.336292], [8.521156, 47.336292], [8.521156, 47.336292], [8.521156, 47.336291], [8.521156, 47.33629], [8.521155, 47.33629], [8.520998, 47.335943], [8.520997, 47.335941], [8.520997, 47.33594], [8.520996, 47.335939], [8.520995, 47.335938], [8.520995, 47.335936], [8.520993, 47.335935], [8.520992, 47.335934], [8.520991, 47.335933], [8.520989, 47.335932], [8.520988, 47.335932], [8.520986, 47.335931], [8.520984, 47.33593], [8.520983, 47.33593], [8.520981, 47.335929], [8.520979, 47.335929], [8.520977, 47.335929], [8.520975, 47.335929], [8.520973, 47.335929], [8.520971, 47.335929], [8.520969, 47.33593], [8.520967, 47.33593], [8.520965, 47.335931], [8.520964, 47.335931], [8.520962, 47.335932], [8.520961, 47.335933], [8.520959, 47.335934], [8.520958, 47.335935], [8.520957, 47.335936], [8.520956, 47.335937], [8.520955, 47.335938], [8.520954, 47.335939], [8.520954, 47.335941], [8.520953, 47.335942], [8.520953, 47.335943], [8.520953, 47.335945], [8.520953, 47.335946], [8.520953, 47.335947], [8.520954, 47.335949], [8.520941, 47.33598], [8.520925, 47.336011], [8.520904, 47.336041], [8.52088, 47.336069], [8.520852, 47.336096], [8.520821, 47.336121], [8.520787, 47.336144], [8.520749, 47.336165], [8.520631, 47.336176]]], "type": "MultiLineString"}, "id": "4221", "properties": {}, "type": "Feature"}, {"bbox": [8.57546, 47.385282, 8.577958, 47.38647], "geometry": {"coordinates": [[[8.57546, 47.386406], [8.57555, 47.386426], [8.575576, 47.386437], [8.575604, 47.386447], [8.575634, 47.386455], [8.575664, 47.386462], [8.575695, 47.386466], [8.575726, 47.386469], [8.575757, 47.38647], [8.575789, 47.386469], [8.57582, 47.386467], [8.576084, 47.386443], [8.576111, 47.386441], [8.576138, 47.386438], [8.576164, 47.386432], [8.576189, 47.386426], [8.576213, 47.386417], [8.576236, 47.386408], [8.576258, 47.386397], [8.576279, 47.386385], [8.576509, 47.386252], [8.576737, 47.386117], [8.576964, 47.385981], [8.577039, 47.385932], [8.577112, 47.385882], [8.577181, 47.385829], [8.577444, 47.385649], [8.577703, 47.385467], [8.577958, 47.385282]]], "type": "MultiLineString"}, "id": "4222", "properties": {}, "type": "Feature"}, {"bbox": [8.529776, 47.359274, 8.530766, 47.360833], "geometry": {"coordinates": [[[8.529776, 47.359274], [8.52978, 47.359313], [8.529787, 47.359371], [8.529788, 47.359374], [8.52979, 47.359377], [8.529792, 47.359379], [8.529795, 47.359382], [8.529797, 47.359384], [8.5298, 47.359386], [8.529804, 47.359388], [8.529807, 47.35939], [8.529811, 47.359392], [8.529815, 47.359393], [8.52982, 47.359394], [8.529824, 47.359395], [8.529828, 47.359396], [8.529833, 47.359396], [8.529837, 47.359396], [8.529842, 47.359396], [8.529846, 47.359396], [8.529851, 47.359395], [8.529855, 47.359394], [8.529859, 47.359393], [8.529863, 47.359392], [8.529867, 47.35939], [8.52987, 47.359388], [8.529874, 47.359386], [8.529877, 47.359384], [8.529879, 47.359381], [8.52989, 47.359376], [8.529901, 47.359371], [8.529913, 47.359367], [8.529925, 47.359364], [8.529937, 47.359361], [8.52995, 47.35936], [8.529963, 47.359358], [8.529976, 47.359358], [8.529989, 47.359358], [8.530002, 47.359359], [8.530028, 47.359361], [8.530053, 47.359365], [8.530078, 47.35937], [8.530102, 47.359377], [8.530125, 47.359386], [8.530299, 47.359397], [8.530323, 47.3594], [8.530346, 47.359404], [8.530369, 47.359409], [8.530391, 47.359415], [8.530499, 47.359448], [8.530517, 47.359453], [8.530527, 47.359457], [8.530536, 47.359462], [8.530545, 47.359467], [8.530552, 47.359473], [8.530559, 47.359479], [8.530566, 47.359486], [8.530571, 47.359493], [8.530575, 47.3595], [8.530579, 47.359507], [8.530581, 47.359515], [8.530583, 47.359523], [8.530583, 47.35953], [8.530583, 47.359538], [8.530581, 47.359546], [8.530579, 47.359554], [8.530426, 47.359954], [8.530424, 47.359962], [8.530423, 47.359969], [8.530422, 47.359977], [8.530423, 47.359985], [8.530425, 47.359993], [8.530427, 47.36], [8.530431, 47.360008], [8.530435, 47.360015], [8.530441, 47.360022], [8.530447, 47.360029], [8.530454, 47.360035], [8.530462, 47.36004], [8.53047, 47.360046], [8.53048, 47.36005], [8.530489, 47.360055], [8.5305, 47.360058], [8.53051, 47.360061], [8.530521, 47.360064], [8.530685, 47.360082], [8.530693, 47.360084], [8.530702, 47.360085], [8.530709, 47.360088], [8.530717, 47.36009], [8.530724, 47.360093], [8.530731, 47.360097], [8.530737, 47.360101], [8.530743, 47.360105], [8.530748, 47.36011], [8.530753, 47.360115], [8.530757, 47.36012], [8.53076, 47.360125], [8.530763, 47.360131], [8.530764, 47.360136], [8.530765, 47.360142], [8.530766, 47.360148], [8.530541, 47.360814], [8.530358, 47.360833]]], "type": "MultiLineString"}, "id": "4223", "properties": {}, "type": "Feature"}, {"bbox": [8.54005, 47.427231, 8.541742, 47.427334], "geometry": {"coordinates": [[[8.54005, 47.427231], [8.540329, 47.427246], [8.540428, 47.427256], [8.540528, 47.427259], [8.540628, 47.427257], [8.540727, 47.427247], [8.540812, 47.427241], [8.540898, 47.427238], [8.540984, 47.42724], [8.541069, 47.427247], [8.541603, 47.427333], [8.541649, 47.427334], [8.541696, 47.427334], [8.541742, 47.427333]]], "type": "MultiLineString"}, "id": "4226", "properties": {}, "type": "Feature"}, {"bbox": [8.478855, 47.40942, 8.479637, 47.410006], "geometry": {"coordinates": [[[8.479637, 47.409989], [8.479605, 47.409995], [8.479572, 47.41], [8.479539, 47.410004], [8.479533, 47.410005], [8.479526, 47.410006], [8.479519, 47.410006], [8.479513, 47.410006], [8.479506, 47.410005], [8.479499, 47.410004], [8.479493, 47.410003], [8.479487, 47.410001], [8.479481, 47.409999], [8.479475, 47.409996], [8.47947, 47.409993], [8.479465, 47.40999], [8.479461, 47.409987], [8.479457, 47.409983], [8.479453, 47.409979], [8.47945, 47.409975], [8.479393, 47.409861], [8.479321, 47.409751], [8.479232, 47.409646], [8.479115, 47.409564], [8.478989, 47.409489], [8.478855, 47.40942]]], "type": "MultiLineString"}, "id": "4227", "properties": {}, "type": "Feature"}, {"bbox": [8.587418, 47.399868, 8.588326, 47.401152], "geometry": {"coordinates": [[[8.587513, 47.399868], [8.587573, 47.39996], [8.587481, 47.399988], [8.587418, 47.400102], [8.587618, 47.40016], [8.587739, 47.400353], [8.587754, 47.40036], [8.58796, 47.400648], [8.588018, 47.400659], [8.588326, 47.401152]]], "type": "MultiLineString"}, "id": "4228", "properties": {}, "type": "Feature"}, {"bbox": [8.562229, 47.349912, 8.562888, 47.350716], "geometry": {"coordinates": [[[8.562229, 47.349912], [8.562256, 47.349933], [8.562284, 47.349953], [8.562313, 47.349972], [8.562812, 47.35014], [8.562824, 47.350147], [8.562836, 47.350155], [8.562847, 47.350163], [8.562856, 47.350172], [8.562865, 47.350181], [8.562872, 47.350191], [8.562878, 47.350201], [8.562883, 47.350211], [8.562886, 47.350222], [8.562888, 47.350233], [8.562888, 47.350244], [8.562887, 47.350255], [8.562885, 47.350266], [8.562881, 47.350276], [8.562784, 47.350425], [8.562681, 47.350571], [8.562572, 47.350716]]], "type": "MultiLineString"}, "id": "4229", "properties": {}, "type": "Feature"}, {"bbox": [8.53905, 47.428932, 8.541022, 47.429957], "geometry": {"coordinates": [[[8.53905, 47.429957], [8.539054, 47.429918], [8.53906, 47.429879], [8.539066, 47.42984], [8.539072, 47.429831], [8.539079, 47.429823], [8.539088, 47.429815], [8.539097, 47.429808], [8.539107, 47.429801], [8.539118, 47.429795], [8.53913, 47.429789], [8.539142, 47.429784], [8.539155, 47.42978], [8.539169, 47.429776], [8.539183, 47.429774], [8.539197, 47.429772], [8.539211, 47.429771], [8.539225, 47.429771], [8.539334, 47.429788], [8.53936, 47.42979], [8.539386, 47.429791], [8.539412, 47.429791], [8.539438, 47.429789], [8.539463, 47.429785], [8.539488, 47.42978], [8.539512, 47.429773], [8.539535, 47.429765], [8.539557, 47.429755], [8.540045, 47.429481], [8.540533, 47.429206], [8.541022, 47.428932]]], "type": "MultiLineString"}, "id": "4231", "properties": {}, "type": "Feature"}, {"bbox": [8.57406, 47.403246, 8.575013, 47.403961], "geometry": {"coordinates": [[[8.574944, 47.403246], [8.575013, 47.403376], [8.574764, 47.403457], [8.574899, 47.40354], [8.574828, 47.403715], [8.574791, 47.40373], [8.574495, 47.403708], [8.574172, 47.403784], [8.57406, 47.403801], [8.574095, 47.403836], [8.574206, 47.403884], [8.574257, 47.403888], [8.574236, 47.403951], [8.574182, 47.403961]]], "type": "MultiLineString"}, "id": "4232", "properties": {}, "type": "Feature"}, {"bbox": [8.547553, 47.428243, 8.55061, 47.430553], "geometry": {"coordinates": [[[8.550457, 47.428243], [8.550466, 47.428258], [8.550474, 47.428273], [8.55048, 47.428289], [8.550557, 47.428471], [8.550558, 47.428476], [8.550559, 47.428482], [8.550559, 47.428487], [8.550558, 47.428492], [8.550556, 47.428497], [8.550554, 47.428502], [8.550551, 47.428507], [8.550547, 47.428512], [8.550543, 47.428516], [8.550258, 47.428768], [8.55024, 47.428809], [8.550264, 47.428848], [8.550574, 47.429177], [8.550582, 47.429184], [8.550589, 47.429191], [8.550595, 47.429198], [8.5506, 47.429206], [8.550604, 47.429214], [8.550608, 47.429222], [8.55061, 47.42923], [8.55061, 47.429238], [8.55061, 47.429247], [8.550609, 47.429255], [8.550607, 47.429263], [8.550603, 47.429272], [8.550599, 47.429279], [8.550593, 47.429287], [8.550587, 47.429294], [8.55058, 47.429301], [8.550375, 47.429429], [8.55015, 47.42948], [8.549853, 47.42961], [8.549829, 47.429618], [8.549803, 47.429625], [8.549778, 47.42963], [8.549751, 47.429634], [8.549724, 47.429636], [8.549697, 47.429636], [8.549636, 47.429632], [8.549575, 47.429629], [8.549514, 47.429627], [8.5495, 47.429627], [8.549485, 47.429628], [8.549471, 47.42963], [8.549457, 47.429633], [8.549444, 47.429637], [8.549431, 47.429642], [8.549419, 47.429647], [8.549008, 47.42981], [8.548999, 47.429814], [8.54899, 47.429818], [8.548982, 47.429824], [8.548974, 47.429829], [8.548968, 47.429835], [8.548962, 47.429841], [8.548956, 47.429848], [8.548952, 47.429855], [8.548863, 47.429972], [8.548856, 47.429982], [8.548849, 47.429991], [8.54884, 47.43], [8.548831, 47.430008], [8.54882, 47.430016], [8.548808, 47.430023], [8.548796, 47.43003], [8.548783, 47.430036], [8.547937, 47.430442], [8.547813, 47.430486], [8.547685, 47.430523], [8.547553, 47.430553]]], "type": "MultiLineString"}, "id": "4233", "properties": {}, "type": "Feature"}, {"bbox": [8.540362, 47.418774, 8.541441, 47.41962], "geometry": {"coordinates": [[[8.540362, 47.418774], [8.540412, 47.418843], [8.540463, 47.418912], [8.540513, 47.41898], [8.540546, 47.419037], [8.54058, 47.419094], [8.540617, 47.419149], [8.540621, 47.41916], [8.540626, 47.41917], [8.540633, 47.41918], [8.540641, 47.419189], [8.54065, 47.419198], [8.54066, 47.419206], [8.540671, 47.419213], [8.540683, 47.419221], [8.540696, 47.419227], [8.540709, 47.419232], [8.540782, 47.419269], [8.540852, 47.419307], [8.54092, 47.419348], [8.540953, 47.419369], [8.540985, 47.419392], [8.541016, 47.419416], [8.541064, 47.419452], [8.541115, 47.419487], [8.541167, 47.41952], [8.541207, 47.419544], [8.541249, 47.419566], [8.541292, 47.419588], [8.541311, 47.419596], [8.541331, 47.419603], [8.541352, 47.419609], [8.541374, 47.419613], [8.541396, 47.419617], [8.541418, 47.419619], [8.541441, 47.41962]]], "type": "MultiLineString"}, "id": "4234", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.374745, 8.489052, 47.375749], "geometry": {"coordinates": [[[8.489052, 47.374745], [8.488952, 47.374856], [8.488938, 47.374869], [8.488923, 47.37488], [8.488907, 47.374891], [8.488888, 47.374901], [8.488869, 47.374909], [8.488504, 47.375056], [8.488481, 47.375066], [8.48846, 47.375077], [8.48844, 47.375089], [8.488421, 47.375103], [8.488405, 47.375117], [8.48839, 47.375133], [8.488378, 47.375149], [8.488367, 47.375166], [8.488359, 47.375184], [8.488353, 47.375202], [8.48835, 47.37522], [8.488331, 47.375339], [8.488311, 47.375458], [8.48829, 47.375578], [8.488268, 47.375615], [8.488241, 47.375652], [8.48821, 47.375686], [8.488174, 47.375719], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "4235", "properties": {}, "type": "Feature"}, {"bbox": [8.531614, 47.398586, 8.532193, 47.399022], "geometry": {"coordinates": [[[8.531614, 47.399022], [8.531654, 47.398992], [8.531691, 47.398959], [8.531723, 47.398924], [8.53175, 47.398888], [8.531776, 47.398831], [8.531796, 47.398773], [8.531809, 47.398714], [8.531817, 47.3987], [8.531827, 47.398685], [8.531838, 47.398672], [8.531851, 47.398659], [8.531865, 47.398646], [8.531894, 47.398628], [8.531925, 47.398611], [8.531956, 47.398596], [8.531972, 47.398592], [8.531987, 47.398589], [8.532003, 47.398587], [8.53202, 47.398586], [8.532036, 47.398586], [8.532052, 47.398586], [8.532068, 47.398588], [8.53211, 47.398597], [8.532151, 47.398605], [8.532193, 47.398612]]], "type": "MultiLineString"}, "id": "4236", "properties": {}, "type": "Feature"}, {"bbox": [8.512925, 47.425059, 8.514711, 47.426204], "geometry": {"coordinates": [[[8.512925, 47.425059], [8.51295, 47.425086], [8.512978, 47.425113], [8.513006, 47.425139], [8.513266, 47.425355], [8.51329, 47.425373], [8.513315, 47.425391], [8.513343, 47.425407], [8.513373, 47.425421], [8.513479, 47.425476], [8.513585, 47.425531], [8.51369, 47.425587], [8.513838, 47.425673], [8.513984, 47.425762], [8.514127, 47.425851], [8.514711, 47.426204]]], "type": "MultiLineString"}, "id": "4237", "properties": {}, "type": "Feature"}, {"bbox": [8.517213, 47.425237, 8.525215, 47.42589], "geometry": {"coordinates": [[[8.525215, 47.425762], [8.524384, 47.425783], [8.523554, 47.425806], [8.522724, 47.42583], [8.52207, 47.42585], [8.521416, 47.425869], [8.520762, 47.425887], [8.520547, 47.42589], [8.520333, 47.42588], [8.520121, 47.425857], [8.519913, 47.425822], [8.518557, 47.425525], [8.517669, 47.425336], [8.517573, 47.425322], [8.517476, 47.425313], [8.517378, 47.42531], [8.51728, 47.425313], [8.517273, 47.425312], [8.517267, 47.425311], [8.51726, 47.42531], [8.517254, 47.425308], [8.517248, 47.425306], [8.517242, 47.425303], [8.517237, 47.425301], [8.517232, 47.425297], [8.517227, 47.425294], [8.517223, 47.425287], [8.517219, 47.425281], [8.517216, 47.425274], [8.517214, 47.425266], [8.517213, 47.425259], [8.517213, 47.425252], [8.517214, 47.425245], [8.517216, 47.425237]]], "type": "MultiLineString"}, "id": "4238", "properties": {}, "type": "Feature"}, {"bbox": [8.503228, 47.36306, 8.503781, 47.363304], "geometry": {"coordinates": [[[8.503228, 47.36306], [8.503243, 47.363065], [8.503708, 47.363271], [8.503781, 47.363304]]], "type": "MultiLineString"}, "id": "4239", "properties": {}, "type": "Feature"}, {"bbox": [8.478947, 47.414211, 8.479346, 47.414951], "geometry": {"coordinates": [[[8.479346, 47.414211], [8.479326, 47.414267], [8.479312, 47.414329], [8.479207, 47.414477], [8.479096, 47.414556], [8.479021, 47.414632], [8.478954, 47.41492], [8.478947, 47.414951]]], "type": "MultiLineString"}, "id": "4240", "properties": {}, "type": "Feature"}, {"bbox": [8.522055, 47.361877, 8.522512, 47.361935], "geometry": {"coordinates": [[[8.522512, 47.36192], [8.522061, 47.361877], [8.522055, 47.361935]]], "type": "MultiLineString"}, "id": "4243", "properties": {}, "type": "Feature"}, {"bbox": [8.511394, 47.391646, 8.51166, 47.392099], "geometry": {"coordinates": [[[8.511394, 47.391646], [8.511402, 47.391651], [8.511409, 47.391656], [8.511415, 47.391662], [8.511421, 47.391668], [8.511425, 47.391674], [8.511429, 47.391681], [8.51148, 47.391772], [8.511604, 47.392], [8.51166, 47.392099]]], "type": "MultiLineString"}, "id": "4244", "properties": {}, "type": "Feature"}, {"bbox": [8.503484, 47.400509, 8.511941, 47.40549], "geometry": {"coordinates": [[[8.503484, 47.40549], [8.50355, 47.405432], [8.503622, 47.405376], [8.503697, 47.405324], [8.503967, 47.405145], [8.50438, 47.404859], [8.504498, 47.404777], [8.504702, 47.404583], [8.504832, 47.404438], [8.504896, 47.404376], [8.505079, 47.404228], [8.505232, 47.404079], [8.505645, 47.403878], [8.505658, 47.403873], [8.505672, 47.403868], [8.505687, 47.403865], [8.505702, 47.403862], [8.505718, 47.40386], [8.505734, 47.403858], [8.505749, 47.403858], [8.505765, 47.403859], [8.505886, 47.403868], [8.506007, 47.403879], [8.506127, 47.403891], [8.506323, 47.403941], [8.506336, 47.403945], [8.506349, 47.403949], [8.506363, 47.403952], [8.506378, 47.403954], [8.506392, 47.403955], [8.506407, 47.403955], [8.506422, 47.403955], [8.506436, 47.403954], [8.506451, 47.403952], [8.506465, 47.403949], [8.506478, 47.403945], [8.506491, 47.403941], [8.506509, 47.403934], [8.506526, 47.403927], [8.506541, 47.403918], [8.506556, 47.403909], [8.506569, 47.403899], [8.506581, 47.403888], [8.506592, 47.403876], [8.506601, 47.403864], [8.506817, 47.403579], [8.506852, 47.403541], [8.506887, 47.403504], [8.507067, 47.403321], [8.507119, 47.403271], [8.507176, 47.403223], [8.507238, 47.403178], [8.507519, 47.402987], [8.507836, 47.402762], [8.50814, 47.402513], [8.508277, 47.402408], [8.508388, 47.402332], [8.508601, 47.402204], [8.508811, 47.402122], [8.509002, 47.402064], [8.509142, 47.402024], [8.509229, 47.401989], [8.509426, 47.401883], [8.509712, 47.401689], [8.509851, 47.401602], [8.509993, 47.401523], [8.510141, 47.401446], [8.510354, 47.401348], [8.510678, 47.40119], [8.510998, 47.401023], [8.511272, 47.400877], [8.511556, 47.40072], [8.511778, 47.400595], [8.511941, 47.400509]]], "type": "MultiLineString"}, "id": "4251", "properties": {}, "type": "Feature"}, {"bbox": [8.516956, 47.342956, 8.517347, 47.345199], "geometry": {"coordinates": [[[8.516956, 47.345199], [8.51701, 47.345133], [8.517036, 47.345086], [8.51705, 47.345057], [8.51706, 47.345026], [8.517065, 47.344995], [8.517067, 47.344964], [8.517065, 47.344932], [8.517023, 47.34463], [8.517019, 47.344586], [8.51702, 47.344541], [8.517025, 47.344497], [8.517047, 47.344369], [8.517057, 47.344325], [8.517087, 47.344195], [8.517094, 47.344175], [8.517153, 47.344003], [8.517155, 47.343995], [8.517157, 47.343988], [8.51716, 47.34398], [8.517164, 47.343967], [8.517168, 47.343953], [8.517171, 47.343939], [8.517206, 47.343797], [8.517216, 47.343758], [8.517223, 47.343734], [8.517232, 47.34371], [8.517242, 47.343686], [8.517314, 47.34354], [8.517329, 47.343506], [8.517339, 47.343471], [8.517345, 47.343436], [8.517347, 47.343401], [8.517345, 47.343366], [8.517338, 47.343331], [8.517327, 47.343297], [8.517327, 47.343297], [8.517207, 47.342978], [8.517174, 47.342956]]], "type": "MultiLineString"}, "id": "4252", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.390475, 8.523011, 47.391122], "geometry": {"coordinates": [[[8.523011, 47.390475], [8.522987, 47.390522], [8.522969, 47.39057], [8.522957, 47.390618], [8.522951, 47.390668], [8.522952, 47.390717], [8.522955, 47.390776], [8.522961, 47.390835], [8.522969, 47.390894], [8.52297, 47.390915], [8.522968, 47.390936], [8.522964, 47.390957], [8.522958, 47.390977], [8.522949, 47.390998], [8.522937, 47.391017], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "4255", "properties": {}, "type": "Feature"}, {"bbox": [8.565181, 47.380814, 8.568768, 47.382086], "geometry": {"coordinates": [[[8.568768, 47.380814], [8.568701, 47.380877], [8.568059, 47.381098], [8.567836, 47.381177], [8.56762, 47.381251], [8.566443, 47.381654], [8.566113, 47.381769], [8.566014, 47.381801], [8.565181, 47.382086]]], "type": "MultiLineString"}, "id": "4256", "properties": {}, "type": "Feature"}, {"bbox": [8.543721, 47.400933, 8.544315, 47.401207], "geometry": {"coordinates": [[[8.543721, 47.401079], [8.543722, 47.401072], [8.543724, 47.401065], [8.543726, 47.401058], [8.54373, 47.401051], [8.543734, 47.401044], [8.543739, 47.401038], [8.543745, 47.401032], [8.543752, 47.401027], [8.54376, 47.401022], [8.543768, 47.401018], [8.543776, 47.401014], [8.543853, 47.400986], [8.54393, 47.400959], [8.544007, 47.400933], [8.544018, 47.400936], [8.544028, 47.40094], [8.544038, 47.400945], [8.544047, 47.40095], [8.544055, 47.400956], [8.544063, 47.400962], [8.544069, 47.400969], [8.544315, 47.401207]]], "type": "MultiLineString"}, "id": "4258", "properties": {}, "type": "Feature"}, {"bbox": [8.473208, 47.38127, 8.474218, 47.382049], "geometry": {"coordinates": [[[8.474218, 47.38127], [8.474031, 47.381516], [8.473969, 47.381577], [8.4739, 47.381635], [8.473826, 47.381689], [8.473664, 47.381786], [8.473504, 47.381885], [8.473347, 47.381985], [8.473303, 47.382009], [8.473256, 47.38203], [8.473208, 47.382049]]], "type": "MultiLineString"}, "id": "4259", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.387265, 8.523357, 47.388509], "geometry": {"coordinates": [[[8.523357, 47.388509], [8.5233, 47.388454], [8.522118, 47.387333], [8.522048, 47.387265]]], "type": "MultiLineString"}, "id": "4261", "properties": {}, "type": "Feature"}, {"bbox": [8.498351, 47.365608, 8.499608, 47.366964], "geometry": {"coordinates": [[[8.499608, 47.366964], [8.499443, 47.366926], [8.498419, 47.36669], [8.498412, 47.366689], [8.498404, 47.366687], [8.498397, 47.366685], [8.498391, 47.366682], [8.498384, 47.366679], [8.498379, 47.366676], [8.498373, 47.366672], [8.498368, 47.366668], [8.498364, 47.366664], [8.49836, 47.366659], [8.498357, 47.366654], [8.498354, 47.366649], [8.498353, 47.366644], [8.498351, 47.366639], [8.498351, 47.366634], [8.498351, 47.366629], [8.498352, 47.366623], [8.498353, 47.366618], [8.498356, 47.366613], [8.498358, 47.366608], [8.498362, 47.366604], [8.498545, 47.366234], [8.498657, 47.366011], [8.498853, 47.365608]]], "type": "MultiLineString"}, "id": "4262", "properties": {}, "type": "Feature"}, {"bbox": [8.512958, 47.331466, 8.513246, 47.332223], "geometry": {"coordinates": [[[8.512958, 47.331466], [8.513027, 47.33151], [8.513037, 47.331518], [8.513046, 47.331527], [8.513054, 47.331536], [8.51306, 47.331546], [8.513065, 47.331556], [8.513104, 47.331638], [8.51315, 47.331719], [8.513204, 47.331797], [8.513246, 47.331848], [8.513104, 47.331887], [8.513105, 47.331971], [8.512975, 47.332001], [8.512982, 47.332223]]], "type": "MultiLineString"}, "id": "4263", "properties": {}, "type": "Feature"}, {"bbox": [8.574038, 47.379303, 8.578076, 47.381435], "geometry": {"coordinates": [[[8.574039, 47.379303], [8.574038, 47.379307], [8.574038, 47.379312], [8.574038, 47.379317], [8.574039, 47.379321], [8.574041, 47.379326], [8.574043, 47.37933], [8.574046, 47.379335], [8.574049, 47.379339], [8.574053, 47.379343], [8.574057, 47.379346], [8.574062, 47.37935], [8.574067, 47.379353], [8.574073, 47.379356], [8.574078, 47.379358], [8.574628, 47.37957], [8.574671, 47.379592], [8.574712, 47.379616], [8.57475, 47.379642], [8.574785, 47.37967], [8.574816, 47.379701], [8.574843, 47.379733], [8.574867, 47.379766], [8.574886, 47.3798], [8.574932, 47.379876], [8.574983, 47.37995], [8.575038, 47.380022], [8.575127, 47.380097], [8.575224, 47.380167], [8.575328, 47.380233], [8.575432, 47.380282], [8.57554, 47.380327], [8.575653, 47.380367], [8.575802, 47.380425], [8.575949, 47.380484], [8.576095, 47.380546], [8.576353, 47.380677], [8.576612, 47.380809], [8.57687, 47.380941], [8.576976, 47.380995], [8.577079, 47.381051], [8.577179, 47.38111], [8.577258, 47.381156], [8.577343, 47.381197], [8.577431, 47.381234], [8.578076, 47.381435]]], "type": "MultiLineString"}, "id": "4264", "properties": {}, "type": "Feature"}, {"bbox": [8.496467, 47.379634, 8.498511, 47.38032], "geometry": {"coordinates": [[[8.496467, 47.38032], [8.49649, 47.380316], [8.496513, 47.38031], [8.496535, 47.380304], [8.496556, 47.380296], [8.497738, 47.379648], [8.497751, 47.379644], [8.497764, 47.37964], [8.497778, 47.379638], [8.497792, 47.379636], [8.497806, 47.379635], [8.49782, 47.379634], [8.497834, 47.379635], [8.497848, 47.379636], [8.497862, 47.379638], [8.497875, 47.379641], [8.497888, 47.379645], [8.498097, 47.379799], [8.498305, 47.379953], [8.498511, 47.380109]]], "type": "MultiLineString"}, "id": "4265", "properties": {}, "type": "Feature"}, {"bbox": [8.489438, 47.377215, 8.490657, 47.377702], "geometry": {"coordinates": [[[8.489438, 47.377569], [8.489478, 47.377593], [8.48952, 47.377615], [8.489564, 47.377636], [8.489577, 47.377642], [8.489591, 47.377646], [8.489605, 47.377651], [8.48962, 47.377654], [8.489635, 47.377657], [8.489651, 47.377658], [8.489761, 47.377673], [8.489872, 47.377687], [8.489983, 47.3777], [8.48999, 47.377701], [8.489998, 47.377702], [8.490006, 47.377702], [8.490014, 47.377702], [8.490021, 47.377701], [8.490029, 47.3777], [8.490036, 47.377698], [8.490044, 47.377696], [8.490283, 47.377559], [8.490291, 47.377553], [8.490299, 47.377547], [8.490306, 47.377541], [8.490312, 47.377535], [8.490318, 47.377528], [8.490322, 47.377521], [8.490453, 47.377319], [8.490462, 47.377308], [8.490471, 47.377297], [8.490482, 47.377287], [8.490494, 47.377278], [8.490514, 47.377265], [8.490534, 47.377252], [8.490554, 47.37724], [8.490569, 47.377233], [8.490586, 47.377228], [8.490603, 47.377223], [8.49062, 47.377219], [8.490638, 47.377217], [8.490657, 47.377215]]], "type": "MultiLineString"}, "id": "4266", "properties": {}, "type": "Feature"}, {"bbox": [8.496289, 47.369768, 8.498513, 47.371544], "geometry": {"coordinates": [[[8.497845, 47.371544], [8.497843, 47.37153], [8.497843, 47.371515], [8.497845, 47.371501], [8.497848, 47.371487], [8.497854, 47.371473], [8.497861, 47.37146], [8.497871, 47.371447], [8.497881, 47.371434], [8.497894, 47.371423], [8.497908, 47.371412], [8.49847, 47.371314], [8.498475, 47.371313], [8.49848, 47.371311], [8.498485, 47.371309], [8.49849, 47.371307], [8.498494, 47.371304], [8.498498, 47.371301], [8.498501, 47.371298], [8.498504, 47.371295], [8.498507, 47.371291], [8.498509, 47.371288], [8.498511, 47.371284], [8.498512, 47.37128], [8.498513, 47.371276], [8.498513, 47.371272], [8.498512, 47.371268], [8.498511, 47.371265], [8.498482, 47.371186], [8.498448, 47.371109], [8.49841, 47.371033], [8.49803, 47.370475], [8.49802, 47.370463], [8.498009, 47.370453], [8.497996, 47.370443], [8.497981, 47.370434], [8.497966, 47.370426], [8.497949, 47.370419], [8.497932, 47.370414], [8.497914, 47.370409], [8.497896, 47.370405], [8.497273, 47.370422], [8.496994, 47.370441], [8.496988, 47.370441], [8.496982, 47.370441], [8.496976, 47.37044], [8.49697, 47.370439], [8.496965, 47.370437], [8.496959, 47.370435], [8.496954, 47.370433], [8.496949, 47.37043], [8.496944, 47.370428], [8.49694, 47.370425], [8.496936, 47.370421], [8.496933, 47.370416], [8.496928, 47.370411], [8.496924, 47.370407], [8.496918, 47.370402], [8.496912, 47.370398], [8.496906, 47.370395], [8.496899, 47.370392], [8.496892, 47.370389], [8.496884, 47.370386], [8.496876, 47.370384], [8.496868, 47.370383], [8.49686, 47.370382], [8.496852, 47.37038], [8.496845, 47.370378], [8.496838, 47.370375], [8.496831, 47.370372], [8.496825, 47.370368], [8.496819, 47.370364], [8.496814, 47.37036], [8.49681, 47.370356], [8.496806, 47.370351], [8.496391, 47.369934], [8.496363, 47.369903], [8.496338, 47.369871], [8.496318, 47.369838], [8.496301, 47.369803], [8.496289, 47.369768]]], "type": "MultiLineString"}, "id": "4267", "properties": {}, "type": "Feature"}, {"bbox": [8.502645, 47.357276, 8.505326, 47.358344], "geometry": {"coordinates": [[[8.505326, 47.358344], [8.505304, 47.358324], [8.504972, 47.358174], [8.504922, 47.358141], [8.504608, 47.357994], [8.504049, 47.357779], [8.50298, 47.357402], [8.502666, 47.357283], [8.502645, 47.357276]]], "type": "MultiLineString"}, "id": "4268", "properties": {}, "type": "Feature"}, {"bbox": [8.529844, 47.398634, 8.530049, 47.39892], "geometry": {"coordinates": [[[8.530049, 47.398634], [8.530046, 47.39864], [8.530042, 47.398645], [8.530038, 47.398651], [8.530032, 47.398656], [8.530026, 47.39866], [8.53002, 47.398664], [8.530013, 47.398668], [8.529997, 47.398675], [8.52998, 47.39868], [8.529963, 47.398685], [8.529944, 47.398689], [8.529926, 47.398691], [8.52986, 47.398726], [8.529844, 47.398781], [8.529874, 47.398877], [8.529877, 47.39891], [8.529878, 47.39892]]], "type": "MultiLineString"}, "id": "4270", "properties": {}, "type": "Feature"}, {"bbox": [8.568938, 47.395808, 8.570557, 47.397621], "geometry": {"coordinates": [[[8.568938, 47.395808], [8.569055, 47.39592], [8.569093, 47.395972], [8.569133, 47.396023], [8.569175, 47.396073], [8.569175, 47.396074], [8.569176, 47.396075], [8.569273, 47.396138], [8.569376, 47.396196], [8.569485, 47.396249], [8.569523, 47.396272], [8.569558, 47.396297], [8.56959, 47.396323], [8.56994, 47.396691], [8.569956, 47.39671], [8.569969, 47.396729], [8.56998, 47.396749], [8.569988, 47.39677], [8.569993, 47.396791], [8.569995, 47.396812], [8.569998, 47.396902], [8.569998, 47.396902], [8.570001, 47.39693], [8.570007, 47.396958], [8.570017, 47.396986], [8.570029, 47.397013], [8.570045, 47.397039], [8.570046, 47.39704], [8.570161, 47.397159], [8.570298, 47.397301], [8.570557, 47.397621]]], "type": "MultiLineString"}, "id": "4271", "properties": {}, "type": "Feature"}, {"bbox": [8.492612, 47.38079, 8.494496, 47.381668], "geometry": {"coordinates": [[[8.494496, 47.381377], [8.493874, 47.381668], [8.492904, 47.38079], [8.492612, 47.380922]]], "type": "MultiLineString"}, "id": "4272", "properties": {}, "type": "Feature"}, {"bbox": [8.530035, 47.398634, 8.531767, 47.399574], "geometry": {"coordinates": [[[8.531767, 47.399496], [8.531647, 47.399556], [8.531637, 47.39956], [8.531627, 47.399564], [8.531616, 47.399568], [8.531605, 47.39957], [8.531594, 47.399573], [8.531582, 47.399574], [8.53157, 47.399574], [8.531558, 47.399574], [8.531547, 47.399574], [8.531535, 47.399572], [8.531524, 47.39957], [8.531513, 47.399567], [8.531502, 47.399564], [8.531306, 47.399486], [8.531074, 47.399414], [8.531049, 47.399405], [8.531026, 47.399396], [8.531004, 47.399385], [8.530984, 47.399373], [8.530965, 47.399359], [8.530948, 47.399345], [8.530933, 47.399329], [8.53092, 47.399313], [8.530909, 47.399296], [8.530892, 47.399281], [8.530874, 47.399267], [8.530854, 47.399255], [8.530832, 47.399243], [8.530809, 47.399234], [8.530784, 47.399225], [8.530759, 47.399218], [8.530751, 47.399216], [8.530744, 47.399213], [8.530737, 47.39921], [8.530731, 47.399206], [8.530725, 47.399203], [8.530719, 47.399198], [8.530714, 47.399194], [8.53071, 47.399189], [8.530707, 47.399184], [8.530704, 47.399179], [8.53066, 47.399056], [8.530476, 47.398952], [8.530082, 47.398807], [8.530072, 47.398799], [8.530063, 47.39879], [8.530055, 47.398781], [8.530048, 47.398771], [8.530043, 47.398762], [8.530039, 47.398751], [8.530036, 47.398741], [8.530035, 47.39873], [8.530035, 47.39872], [8.530049, 47.398634]]], "type": "MultiLineString"}, "id": "4273", "properties": {}, "type": "Feature"}, {"bbox": [8.561053, 47.413876, 8.5611, 47.414226], "geometry": {"coordinates": [[[8.5611, 47.413876], [8.561062, 47.413931], [8.561053, 47.414226]]], "type": "MultiLineString"}, "id": "4274", "properties": {}, "type": "Feature"}, {"bbox": [8.515619, 47.363487, 8.51704, 47.364068], "geometry": {"coordinates": [[[8.51704, 47.363487], [8.51702, 47.363499], [8.516999, 47.363511], [8.516976, 47.363521], [8.516952, 47.363529], [8.516927, 47.363536], [8.516901, 47.363542], [8.516875, 47.363546], [8.516848, 47.363548], [8.516821, 47.363548], [8.516368, 47.363559], [8.516083, 47.363602], [8.515619, 47.364068]]], "type": "MultiLineString"}, "id": "4276", "properties": {}, "type": "Feature"}, {"bbox": [8.527292, 47.42398, 8.536487, 47.426204], "geometry": {"coordinates": [[[8.527292, 47.42398], [8.527319, 47.424027], [8.527321, 47.42403], [8.527323, 47.424032], [8.527326, 47.424035], [8.527329, 47.424037], [8.527332, 47.42404], [8.527336, 47.424042], [8.527339, 47.424044], [8.527343, 47.424045], [8.527348, 47.424047], [8.527352, 47.424048], [8.527357, 47.424048], [8.527589, 47.424083], [8.527653, 47.424092], [8.527717, 47.424101], [8.527781, 47.424108], [8.527844, 47.424117], [8.527905, 47.424127], [8.527965, 47.424141], [8.52819, 47.424195], [8.528257, 47.424222], [8.528277, 47.42423], [8.528296, 47.42424], [8.528314, 47.424251], [8.528329, 47.424263], [8.528352, 47.42428], [8.528377, 47.424296], [8.528404, 47.42431], [8.528564, 47.424386], [8.528599, 47.424403], [8.528634, 47.424422], [8.528667, 47.424441], [8.528873, 47.424562], [8.528905, 47.424582], [8.528934, 47.424604], [8.528959, 47.424629], [8.528982, 47.424654], [8.529078, 47.42478], [8.529102, 47.424791], [8.529126, 47.424803], [8.529148, 47.424816], [8.529212, 47.424857], [8.529245, 47.424879], [8.52928, 47.424898], [8.529318, 47.424916], [8.529357, 47.424932], [8.529399, 47.424945], [8.529441, 47.424956], [8.529556, 47.424979], [8.529673, 47.424996], [8.529792, 47.425006], [8.529912, 47.425011], [8.530379, 47.425016], [8.530551, 47.425012], [8.53072, 47.424997], [8.530887, 47.42497], [8.53106, 47.424935], [8.531096, 47.424929], [8.531133, 47.424924], [8.53117, 47.42492], [8.531239, 47.424917], [8.531307, 47.424919], [8.531375, 47.424925], [8.531732, 47.42497], [8.531796, 47.424978], [8.531859, 47.424984], [8.531923, 47.42499], [8.532383, 47.425023], [8.53245, 47.42503], [8.532515, 47.42504], [8.53258, 47.425054], [8.532602, 47.42506], [8.532989, 47.425154], [8.533064, 47.425174], [8.533135, 47.425199], [8.533204, 47.425228], [8.533269, 47.42526], [8.533293, 47.425275], [8.533316, 47.425291], [8.533337, 47.425308], [8.533355, 47.425327], [8.533371, 47.425346], [8.533385, 47.425367], [8.533396, 47.425388], [8.533404, 47.42541], [8.53341, 47.425432], [8.533456, 47.425684], [8.533462, 47.425705], [8.53347, 47.425726], [8.533481, 47.425747], [8.533494, 47.425766], [8.53351, 47.425785], [8.533528, 47.425803], [8.533549, 47.42582], [8.533571, 47.425835], [8.533595, 47.425849], [8.533622, 47.425862], [8.533649, 47.425873], [8.533678, 47.425882], [8.533708, 47.42589], [8.533739, 47.425896], [8.533771, 47.4259], [8.533802, 47.425902], [8.534303, 47.425919], [8.535621, 47.425972], [8.536349, 47.426005], [8.536487, 47.426204]]], "type": "MultiLineString"}, "id": "4298", "properties": {}, "type": "Feature"}, {"bbox": [8.495946, 47.362301, 8.497004, 47.362641], "geometry": {"coordinates": [[[8.497004, 47.362641], [8.496811, 47.362508], [8.496774, 47.362482], [8.496735, 47.362458], [8.496693, 47.362436], [8.496648, 47.362417], [8.496601, 47.362401], [8.496552, 47.362388], [8.496502, 47.362377], [8.49645, 47.362369], [8.496398, 47.362364], [8.496345, 47.362362], [8.496292, 47.362364], [8.49624, 47.362368], [8.496188, 47.362375], [8.496137, 47.362386], [8.496088, 47.362399], [8.495998, 47.362338], [8.495946, 47.362301]]], "type": "MultiLineString"}, "id": "4299", "properties": {}, "type": "Feature"}, {"bbox": [8.509142, 47.401888, 8.515553, 47.403956], "geometry": {"coordinates": [[[8.509142, 47.402024], [8.509281, 47.402009], [8.509564, 47.401976], [8.509992, 47.401945], [8.510384, 47.401931], [8.510584, 47.401933], [8.510927, 47.401891], [8.511078, 47.401889], [8.511165, 47.401888], [8.511215, 47.401891], [8.511368, 47.401898], [8.511487, 47.401911], [8.511665, 47.401942], [8.511916, 47.401995], [8.512163, 47.40202], [8.512317, 47.402028], [8.51245, 47.402028], [8.512553, 47.402041], [8.512775, 47.40207], [8.513431, 47.402275], [8.513481, 47.402296], [8.51352, 47.402327], [8.513738, 47.402563], [8.513747, 47.402627], [8.513701, 47.40268], [8.513571, 47.402813], [8.51357, 47.402813], [8.513558, 47.402826], [8.513547, 47.402839], [8.513538, 47.402853], [8.513531, 47.402868], [8.513526, 47.402883], [8.513522, 47.402898], [8.513521, 47.402913], [8.513521, 47.402929], [8.513524, 47.402944], [8.513529, 47.402959], [8.513535, 47.402974], [8.513543, 47.402988], [8.513554, 47.403002], [8.513566, 47.403015], [8.51358, 47.403028], [8.513595, 47.403039], [8.513612, 47.40305], [8.51363, 47.40306], [8.513649, 47.403068], [8.513669, 47.403075], [8.51367, 47.403075], [8.514113, 47.403258], [8.514612, 47.403397], [8.514677, 47.403415], [8.514738, 47.403438], [8.514797, 47.403464], [8.514851, 47.403494], [8.514896, 47.403523], [8.514936, 47.403555], [8.514973, 47.403589], [8.515005, 47.403625], [8.515032, 47.403663], [8.515059, 47.403698], [8.515091, 47.403731], [8.515126, 47.403762], [8.515165, 47.403791], [8.515207, 47.403818], [8.515251, 47.403842], [8.515299, 47.403864], [8.515349, 47.403883], [8.515553, 47.403956]]], "type": "MultiLineString"}, "id": "4304", "properties": {}, "type": "Feature"}, {"bbox": [8.559241, 47.397621, 8.570557, 47.40323], "geometry": {"coordinates": [[[8.559282, 47.40323], [8.559316, 47.403134], [8.559285, 47.403078], [8.559267, 47.403046], [8.559254, 47.403013], [8.559245, 47.402979], [8.559243, 47.402962], [8.559241, 47.402936], [8.559243, 47.402911], [8.559247, 47.402886], [8.559255, 47.402861], [8.559266, 47.402837], [8.559279, 47.402814], [8.559296, 47.402791], [8.559315, 47.40277], [8.559337, 47.402749], [8.559361, 47.40273], [8.559388, 47.402712], [8.559417, 47.402696], [8.559447, 47.402682], [8.559479, 47.402669], [8.560092, 47.402453], [8.56084, 47.402224], [8.561322, 47.402089], [8.561417, 47.402065], [8.561514, 47.402045], [8.561613, 47.402028], [8.562066, 47.401963], [8.562132, 47.401952], [8.562196, 47.401939], [8.562259, 47.401923], [8.562308, 47.401909], [8.562336, 47.4019], [8.562364, 47.40189], [8.562391, 47.40188], [8.562417, 47.40187], [8.562442, 47.40186], [8.562467, 47.401849], [8.562968, 47.401624], [8.562983, 47.401617], [8.563953, 47.401179], [8.564108, 47.401102], [8.564252, 47.401015], [8.564383, 47.40092], [8.564473, 47.400848], [8.564629, 47.40073], [8.564796, 47.400619], [8.564972, 47.400514], [8.565997, 47.399941], [8.566164, 47.399839], [8.56632, 47.399729], [8.566463, 47.399611], [8.567013, 47.399122], [8.567558, 47.398652], [8.567597, 47.398621], [8.56764, 47.398592], [8.567686, 47.398566], [8.567735, 47.398543], [8.567787, 47.398522], [8.567841, 47.398504], [8.567898, 47.39849], [8.567955, 47.398479], [8.568014, 47.398471], [8.568074, 47.398467], [8.568552, 47.398444], [8.568632, 47.398438], [8.56871, 47.398428], [8.568787, 47.398413], [8.568861, 47.398393], [8.568933, 47.398369], [8.569002, 47.398341], [8.569066, 47.398309], [8.569502, 47.398075], [8.56963, 47.398012], [8.569766, 47.397955], [8.569907, 47.397907], [8.570064, 47.397853], [8.570214, 47.397792], [8.570357, 47.397724], [8.570557, 47.397621]]], "type": "MultiLineString"}, "id": "4305", "properties": {}, "type": "Feature"}, {"bbox": [8.492612, 47.380922, 8.493011, 47.382345], "geometry": {"coordinates": [[[8.492612, 47.380922], [8.492705, 47.381005], [8.492787, 47.381094], [8.492856, 47.381188], [8.492914, 47.381285], [8.492958, 47.381385], [8.492989, 47.381488], [8.493007, 47.381592], [8.493011, 47.381696], [8.492953, 47.382345]]], "type": "MultiLineString"}, "id": "4307", "properties": {}, "type": "Feature"}, {"bbox": [8.484926, 47.386223, 8.485769, 47.387068], "geometry": {"coordinates": [[[8.485576, 47.387068], [8.485769, 47.387029], [8.485169, 47.386223], [8.484926, 47.386266]]], "type": "MultiLineString"}, "id": "4308", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.377944, 8.536592, 47.37801], "geometry": {"coordinates": [[[8.536485, 47.37801], [8.536592, 47.377944]]], "type": "MultiLineString"}, "id": "4310", "properties": {}, "type": "Feature"}, {"bbox": [8.543682, 47.42075, 8.545211, 47.42248], "geometry": {"coordinates": [[[8.544307, 47.42248], [8.544322, 47.422463], [8.544335, 47.422444], [8.544346, 47.422425], [8.544353, 47.422406], [8.544358, 47.422386], [8.544361, 47.422366], [8.544344, 47.422344], [8.544326, 47.422323], [8.544306, 47.422303], [8.544293, 47.422278], [8.544169, 47.422179], [8.544053, 47.422065], [8.544047, 47.422057], [8.544043, 47.42205], [8.54404, 47.422042], [8.544038, 47.422035], [8.544036, 47.422027], [8.544036, 47.422019], [8.544037, 47.422011], [8.544039, 47.422003], [8.544041, 47.421995], [8.544045, 47.421988], [8.54405, 47.42198], [8.544056, 47.421973], [8.544071, 47.421959], [8.544088, 47.421946], [8.544106, 47.421933], [8.544127, 47.421922], [8.544148, 47.421912], [8.54417, 47.421903], [8.544194, 47.421896], [8.544218, 47.42189], [8.544418, 47.421849], [8.544503, 47.421829], [8.544585, 47.421804], [8.544663, 47.421773], [8.544721, 47.421747], [8.544778, 47.42172], [8.544835, 47.421693], [8.54519, 47.421532], [8.545193, 47.421532], [8.545195, 47.421531], [8.545198, 47.421529], [8.5452, 47.421528], [8.545202, 47.421527], [8.545204, 47.421525], [8.545206, 47.421523], [8.545208, 47.421521], [8.545209, 47.42152], [8.54521, 47.421518], [8.545211, 47.421516], [8.545211, 47.421513], [8.545211, 47.421511], [8.545211, 47.421509], [8.545211, 47.421507], [8.545211, 47.421505], [8.54521, 47.421503], [8.545209, 47.421501], [8.545207, 47.421499], [8.545206, 47.421498], [8.545204, 47.421496], [8.545202, 47.421494], [8.5452, 47.421493], [8.545197, 47.421492], [8.545195, 47.42149], [8.545192, 47.421489], [8.545189, 47.421489], [8.545186, 47.421488], [8.545183, 47.421487], [8.544654, 47.421516], [8.544638, 47.421515], [8.544623, 47.421513], [8.544608, 47.42151], [8.544593, 47.421506], [8.544579, 47.421501], [8.544565, 47.421496], [8.544552, 47.42149], [8.54454, 47.421483], [8.544521, 47.421461], [8.544499, 47.42144], [8.544474, 47.421421], [8.544447, 47.421403], [8.544417, 47.421387], [8.544386, 47.421373], [8.544353, 47.421361], [8.544216, 47.421242], [8.54412, 47.421149], [8.543836, 47.420954], [8.543697, 47.420858], [8.543694, 47.420854], [8.543691, 47.420849], [8.543689, 47.420845], [8.543687, 47.42084], [8.543686, 47.420836], [8.543685, 47.420831], [8.543685, 47.420826], [8.543699, 47.420778], [8.543695, 47.420768], [8.543689, 47.420759], [8.543682, 47.42075]]], "type": "MultiLineString"}, "id": "4312", "properties": {}, "type": "Feature"}, {"bbox": [8.532126, 47.398612, 8.532193, 47.398824], "geometry": {"coordinates": [[[8.532193, 47.398612], [8.532129, 47.398739], [8.532126, 47.398824]]], "type": "MultiLineString"}, "id": "4313", "properties": {}, "type": "Feature"}, {"bbox": [8.545474, 47.401451, 8.545841, 47.40161], "geometry": {"coordinates": [[[8.545474, 47.40161], [8.545491, 47.40161], [8.545508, 47.401608], [8.545525, 47.401606], [8.545541, 47.401602], [8.545557, 47.401598], [8.545572, 47.401593], [8.545586, 47.401587], [8.5456, 47.40158], [8.545613, 47.401572], [8.545841, 47.401451]]], "type": "MultiLineString"}, "id": "4314", "properties": {}, "type": "Feature"}, {"bbox": [8.505851, 47.404316, 8.509316, 47.405509], "geometry": {"coordinates": [[[8.505851, 47.404316], [8.506002, 47.404402], [8.506064, 47.404428], [8.506198, 47.404479], [8.506338, 47.404523], [8.506482, 47.404559], [8.506636, 47.404594], [8.507096, 47.404697], [8.507282, 47.404745], [8.507319, 47.404755], [8.507355, 47.404766], [8.507391, 47.404778], [8.507471, 47.40481], [8.507546, 47.404845], [8.507617, 47.404886], [8.507682, 47.40493], [8.507704, 47.404947], [8.507725, 47.404965], [8.507745, 47.404983], [8.507751, 47.404989], [8.507757, 47.404995], [8.507762, 47.405], [8.507982, 47.405228], [8.508037, 47.40528], [8.5081, 47.405328], [8.508169, 47.405371], [8.508214, 47.405395], [8.508261, 47.405417], [8.50831, 47.405438], [8.50831, 47.405438], [8.50831, 47.405438], [8.508371, 47.405459], [8.508435, 47.405477], [8.5085, 47.405491], [8.508567, 47.405501], [8.508634, 47.405507], [8.508702, 47.405509], [8.508769, 47.405506], [8.508836, 47.4055], [8.508938, 47.405485], [8.50904, 47.405472], [8.509143, 47.405461], [8.509201, 47.405456], [8.509258, 47.405452], [8.509316, 47.40545]]], "type": "MultiLineString"}, "id": "4328", "properties": {}, "type": "Feature"}, {"bbox": [8.474677, 47.387866, 8.477299, 47.38988], "geometry": {"coordinates": [[[8.477299, 47.38988], [8.477208, 47.389801], [8.47656, 47.38928], [8.476387, 47.389355], [8.476292, 47.389273], [8.476274, 47.389261], [8.476255, 47.38925], [8.476234, 47.38924], [8.476212, 47.389231], [8.476189, 47.389224], [8.476165, 47.389218], [8.476141, 47.389213], [8.476116, 47.38921], [8.476091, 47.389209], [8.476065, 47.389209], [8.47604, 47.389211], [8.476025, 47.389213], [8.47601, 47.389215], [8.475995, 47.389215], [8.47598, 47.389215], [8.475965, 47.389214], [8.47595, 47.389212], [8.475935, 47.389209], [8.475921, 47.389205], [8.475908, 47.3892], [8.475895, 47.389195], [8.475883, 47.389189], [8.475871, 47.389182], [8.475659, 47.389037], [8.475517, 47.388914], [8.475424, 47.388809], [8.47546, 47.38873], [8.475472, 47.388666], [8.475275, 47.388469], [8.475222, 47.388371], [8.47521, 47.388311], [8.475144, 47.388228], [8.474868, 47.387989], [8.474758, 47.387916], [8.474677, 47.387866]]], "type": "MultiLineString"}, "id": "4329", "properties": {}, "type": "Feature"}, {"bbox": [8.47438, 47.38837, 8.475222, 47.388754], "geometry": {"coordinates": [[[8.475222, 47.38837], [8.4752, 47.38837], [8.475177, 47.388371], [8.475156, 47.388374], [8.475134, 47.388377], [8.475113, 47.388382], [8.475093, 47.388389], [8.475074, 47.388396], [8.475056, 47.388405], [8.475039, 47.388415], [8.475023, 47.388425], [8.475009, 47.388437], [8.474968, 47.388484], [8.474921, 47.388529], [8.474869, 47.388571], [8.474811, 47.388609], [8.474748, 47.388644], [8.474681, 47.388675], [8.47461, 47.388701], [8.474536, 47.388724], [8.474459, 47.388741], [8.47438, 47.388754]]], "type": "MultiLineString"}, "id": "4330", "properties": {}, "type": "Feature"}, {"bbox": [8.497205, 47.358416, 8.497867, 47.35852], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497292, 47.358422], [8.497412, 47.358416], [8.497728, 47.358453], [8.497867, 47.35852]]], "type": "MultiLineString"}, "id": "4333", "properties": {}, "type": "Feature"}, {"bbox": [8.508916, 47.407465, 8.511179, 47.408589], "geometry": {"coordinates": [[[8.508916, 47.408589], [8.509229, 47.408487], [8.509307, 47.408515], [8.509378, 47.408506], [8.510341, 47.408183], [8.510432, 47.408306], [8.511019, 47.408112], [8.510966, 47.408043], [8.510804, 47.408036], [8.510543, 47.407682], [8.510929, 47.40755], [8.511179, 47.407465]]], "type": "MultiLineString"}, "id": "4334", "properties": {}, "type": "Feature"}, {"bbox": [8.50878, 47.420619, 8.509362, 47.421323], "geometry": {"coordinates": [[[8.50878, 47.420619], [8.50923, 47.421099], [8.509326, 47.421241], [8.509339, 47.421268], [8.509351, 47.421295], [8.509362, 47.421323]]], "type": "MultiLineString"}, "id": "4339", "properties": {}, "type": "Feature"}, {"bbox": [8.539879, 47.366428, 8.540541, 47.367108], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540192, 47.366745], [8.540149, 47.36676], [8.539882, 47.367054], [8.539881, 47.367057], [8.53988, 47.367059], [8.539879, 47.367062], [8.539879, 47.367064], [8.539879, 47.367067], [8.53988, 47.367069], [8.539881, 47.367072], [8.539882, 47.367074], [8.539883, 47.367076], [8.539885, 47.367079], [8.539887, 47.367081], [8.539889, 47.367083], [8.539891, 47.367085], [8.539894, 47.367086], [8.539897, 47.367088], [8.5399, 47.367089], [8.539903, 47.36709], [8.539907, 47.367091], [8.53991, 47.367092], [8.539914, 47.367093], [8.539986, 47.367108]]], "type": "MultiLineString"}, "id": "4340", "properties": {}, "type": "Feature"}, {"bbox": [8.584047, 47.35444, 8.59269, 47.355505], "geometry": {"coordinates": [[[8.59269, 47.354936], [8.591848, 47.355224], [8.590939, 47.35546], [8.590641, 47.355496], [8.590206, 47.355505], [8.590078, 47.355467], [8.589296, 47.355185], [8.58865, 47.354799], [8.588371, 47.354658], [8.588096, 47.354578], [8.587708, 47.354545], [8.5871, 47.354532], [8.586538, 47.35452], [8.586383, 47.354495], [8.586145, 47.354465], [8.584964, 47.35444], [8.584568, 47.354447], [8.58415, 47.35447], [8.584047, 47.354584]]], "type": "MultiLineString"}, "id": "4342", "properties": {}, "type": "Feature"}, {"bbox": [8.524339, 47.363021, 8.525772, 47.363887], "geometry": {"coordinates": [[[8.525772, 47.36332], [8.525742, 47.363328], [8.525712, 47.363338], [8.525684, 47.36335], [8.525658, 47.363364], [8.525634, 47.363379], [8.525612, 47.363396], [8.525592, 47.363414], [8.525574, 47.363433], [8.525493, 47.363527], [8.525401, 47.363616], [8.525298, 47.3637], [8.525141, 47.363854], [8.525134, 47.36386], [8.525126, 47.363865], [8.525117, 47.36387], [8.525107, 47.363874], [8.525097, 47.363878], [8.525087, 47.363881], [8.525076, 47.363883], [8.525065, 47.363885], [8.525054, 47.363886], [8.525042, 47.363887], [8.525031, 47.363886], [8.52502, 47.363886], [8.525008, 47.363884], [8.524998, 47.363882], [8.524987, 47.363879], [8.524977, 47.363876], [8.524967, 47.363872], [8.524958, 47.363867], [8.524949, 47.363862], [8.524941, 47.363856], [8.524934, 47.36385], [8.524928, 47.363844], [8.524923, 47.363837], [8.524918, 47.36383], [8.524914, 47.363823], [8.524911, 47.363815], [8.52491, 47.363808], [8.524909, 47.3638], [8.524909, 47.363792], [8.52491, 47.363785], [8.524912, 47.363777], [8.524916, 47.36377], [8.52492, 47.363762], [8.524925, 47.363755], [8.52493, 47.363749], [8.525312, 47.363421], [8.525326, 47.363402], [8.525337, 47.363383], [8.525346, 47.363364], [8.525353, 47.363344], [8.525356, 47.363323], [8.525358, 47.363303], [8.525356, 47.363282], [8.525352, 47.363262], [8.525346, 47.363242], [8.525336, 47.363222], [8.525325, 47.363203], [8.52531, 47.363185], [8.525294, 47.363168], [8.525275, 47.363152], [8.525255, 47.363137], [8.525232, 47.363123], [8.525208, 47.363111], [8.525183, 47.3631], [8.525156, 47.36309], [8.525104, 47.363071], [8.525049, 47.363055], [8.524993, 47.363042], [8.524935, 47.363033], [8.524877, 47.363027], [8.524817, 47.363024], [8.524762, 47.363021], [8.524706, 47.363021], [8.524651, 47.363025], [8.524596, 47.363031], [8.524542, 47.363041], [8.52449, 47.363055], [8.52447, 47.363061], [8.524451, 47.363068], [8.524434, 47.363076], [8.524417, 47.363085], [8.524402, 47.363096], [8.524388, 47.363107], [8.524376, 47.363119], [8.524365, 47.363132], [8.524356, 47.363145], [8.524349, 47.363159], [8.524344, 47.363173], [8.52434, 47.363188], [8.524339, 47.363202], [8.524339, 47.363217], [8.524345, 47.363362]]], "type": "MultiLineString"}, "id": "4345", "properties": {}, "type": "Feature"}, {"bbox": [8.531253, 47.342936, 8.532419, 47.344085], "geometry": {"coordinates": [[[8.531253, 47.344085], [8.531303, 47.343817], [8.53168, 47.34378], [8.531788, 47.343721], [8.531882, 47.343649], [8.531973, 47.343536], [8.532091, 47.343376], [8.532163, 47.343331], [8.532419, 47.342936]]], "type": "MultiLineString"}, "id": "4347", "properties": {}, "type": "Feature"}, {"bbox": [8.543946, 47.371519, 8.545705, 47.372467], "geometry": {"coordinates": [[[8.543946, 47.371519], [8.543948, 47.371556], [8.544321, 47.371688], [8.544624, 47.371825], [8.544776, 47.371907], [8.544939, 47.371981], [8.545109, 47.372046], [8.545287, 47.372101], [8.545378, 47.372174], [8.545683, 47.372372], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "4349", "properties": {}, "type": "Feature"}, {"bbox": [8.540526, 47.366286, 8.542389, 47.366751], "geometry": {"coordinates": [[[8.542389, 47.366751], [8.542216, 47.36672], [8.542044, 47.366683], [8.541876, 47.366641], [8.541539, 47.366555], [8.541197, 47.366481], [8.540849, 47.366419], [8.540796, 47.366409], [8.540744, 47.366396], [8.540695, 47.36638], [8.540648, 47.366361], [8.540604, 47.366339], [8.540563, 47.366314], [8.540526, 47.366286]]], "type": "MultiLineString"}, "id": "4350", "properties": {}, "type": "Feature"}, {"bbox": [8.512118, 47.42252, 8.513703, 47.423912], "geometry": {"coordinates": [[[8.513703, 47.423912], [8.513694, 47.423898], [8.513686, 47.423883], [8.513681, 47.423867], [8.513678, 47.423852], [8.513676, 47.423836], [8.513692, 47.42366], [8.51369, 47.423646], [8.513687, 47.423632], [8.513682, 47.423618], [8.513675, 47.423605], [8.513666, 47.423592], [8.513656, 47.42358], [8.513644, 47.423568], [8.513601, 47.423536], [8.513593, 47.42353], [8.513587, 47.423524], [8.513582, 47.423517], [8.513577, 47.42351], [8.513573, 47.423503], [8.513571, 47.423496], [8.513569, 47.423488], [8.513568, 47.42348], [8.513565, 47.423472], [8.513561, 47.423465], [8.513557, 47.423457], [8.513552, 47.42345], [8.513546, 47.423444], [8.513539, 47.423437], [8.513531, 47.423431], [8.51348, 47.423394], [8.51343, 47.423356], [8.513379, 47.423319], [8.513274, 47.423283], [8.513263, 47.423281], [8.513252, 47.423278], [8.513242, 47.423274], [8.513233, 47.42327], [8.513223, 47.423266], [8.513215, 47.42326], [8.513207, 47.423255], [8.5132, 47.423249], [8.5129, 47.423028], [8.512382, 47.42282], [8.512118, 47.42252]]], "type": "MultiLineString"}, "id": "4353", "properties": {}, "type": "Feature"}, {"bbox": [8.596403, 47.355598, 8.597344, 47.356321], "geometry": {"coordinates": [[[8.596403, 47.355598], [8.596465, 47.355622], [8.596526, 47.355646], [8.596587, 47.35567], [8.596661, 47.355698], [8.596734, 47.355728], [8.596805, 47.355761], [8.596856, 47.355797], [8.596901, 47.355835], [8.596942, 47.355877], [8.596977, 47.35592], [8.597013, 47.355987], [8.597047, 47.356055], [8.597078, 47.356124], [8.597088, 47.356141], [8.5971, 47.356158], [8.597115, 47.356174], [8.597131, 47.356189], [8.59715, 47.356203], [8.59717, 47.356216], [8.597227, 47.356252], [8.597285, 47.356286], [8.597344, 47.356321]]], "type": "MultiLineString"}, "id": "4354", "properties": {}, "type": "Feature"}, {"bbox": [8.520808, 47.423852, 8.521211, 47.424881], "geometry": {"coordinates": [[[8.520808, 47.423852], [8.520813, 47.424204], [8.521198, 47.424214], [8.521194, 47.424557], [8.521211, 47.42459], [8.5212, 47.424881]]], "type": "MultiLineString"}, "id": "4355", "properties": {}, "type": "Feature"}, {"bbox": [8.503073, 47.373816, 8.507853, 47.3778], "geometry": {"coordinates": [[[8.503073, 47.373816], [8.50309, 47.373864], [8.50313, 47.37394], [8.503364, 47.374106], [8.503559, 47.374291], [8.503669, 47.374417], [8.503788, 47.374552], [8.50389, 47.374674], [8.504006, 47.374814], [8.504148, 47.37495], [8.504155, 47.374952], [8.504162, 47.374955], [8.50417, 47.374957], [8.504177, 47.374958], [8.504185, 47.374959], [8.504193, 47.37496], [8.504201, 47.37496], [8.504209, 47.37496], [8.504217, 47.374959], [8.504225, 47.374958], [8.504232, 47.374956], [8.504239, 47.374954], [8.504246, 47.374952], [8.504253, 47.374949], [8.504259, 47.374945], [8.504443, 47.374867], [8.504454, 47.374866], [8.504464, 47.374864], [8.504475, 47.374864], [8.504486, 47.374864], [8.504497, 47.374865], [8.504508, 47.374866], [8.504518, 47.374868], [8.504528, 47.374871], [8.504538, 47.374875], [8.504547, 47.374878], [8.504556, 47.374883], [8.504564, 47.374888], [8.504572, 47.374893], [8.504667, 47.374963], [8.505159, 47.375323], [8.506035, 47.376031], [8.505894, 47.376113], [8.505923, 47.376137], [8.50595, 47.376171], [8.506359, 47.3765], [8.506767, 47.376829], [8.506829, 47.376878], [8.506895, 47.376932], [8.506951, 47.376993], [8.50701, 47.377025], [8.507174, 47.37717], [8.507194, 47.3772], [8.507219, 47.377229], [8.507247, 47.377256], [8.507278, 47.377281], [8.507602, 47.37757], [8.50768, 47.377633], [8.507853, 47.3778]]], "type": "MultiLineString"}, "id": "4356", "properties": {}, "type": "Feature"}, {"bbox": [8.488018, 47.409579, 8.493744, 47.412252], "geometry": {"coordinates": [[[8.493744, 47.409579], [8.492991, 47.410152], [8.492703, 47.410365], [8.491717, 47.41143], [8.491453, 47.411733], [8.491436, 47.411752], [8.491416, 47.411771], [8.491394, 47.411788], [8.49137, 47.411804], [8.491344, 47.411818], [8.491316, 47.411831], [8.491287, 47.411843], [8.491257, 47.411852], [8.490524, 47.411872], [8.490331, 47.41189], [8.490141, 47.411921], [8.489957, 47.411964], [8.489664, 47.412053], [8.489617, 47.412066], [8.48957, 47.412077], [8.489522, 47.412086], [8.489169, 47.412144], [8.488722, 47.412232], [8.488693, 47.412237], [8.488665, 47.412241], [8.488635, 47.412243], [8.488635, 47.412243], [8.488492, 47.412252], [8.488462, 47.412252], [8.488432, 47.412251], [8.488402, 47.412249], [8.488373, 47.412244], [8.488344, 47.412238], [8.488316, 47.41223], [8.488289, 47.41222], [8.488263, 47.412208], [8.488239, 47.412195], [8.488115, 47.412102], [8.488093, 47.412082], [8.488073, 47.41206], [8.488056, 47.412038], [8.488042, 47.412014], [8.488032, 47.41199], [8.488025, 47.411965], [8.488021, 47.41194], [8.488021, 47.41194], [8.488021, 47.41194], [8.488018, 47.411876], [8.488021, 47.411811], [8.488032, 47.411747], [8.488032, 47.411747], [8.488045, 47.411687], [8.488079, 47.411575], [8.488114, 47.411464], [8.48815, 47.411352], [8.48815, 47.411352], [8.488212, 47.411129], [8.488264, 47.410784], [8.488266, 47.41074]]], "type": "MultiLineString"}, "id": "4364", "properties": {}, "type": "Feature"}, {"bbox": [8.539102, 47.421348, 8.540506, 47.42152], "geometry": {"coordinates": [[[8.539102, 47.421359], [8.539288, 47.421348], [8.539401, 47.421348], [8.539508, 47.421359], [8.53965, 47.42139], [8.53967, 47.421396], [8.539874, 47.421469], [8.53992, 47.421476], [8.540033, 47.421473], [8.540144, 47.421473], [8.54044, 47.421495], [8.540506, 47.42152]]], "type": "MultiLineString"}, "id": "4368", "properties": {}, "type": "Feature"}, {"bbox": [8.554078, 47.366518, 8.555247, 47.366822], "geometry": {"coordinates": [[[8.554078, 47.366518], [8.554469, 47.366609], [8.554659, 47.36664], [8.554752, 47.366657], [8.554843, 47.36668], [8.554929, 47.366708], [8.555013, 47.36674], [8.555094, 47.366774], [8.555173, 47.36681], [8.555182, 47.366813], [8.555193, 47.366816], [8.555203, 47.366819], [8.555214, 47.36682], [8.555225, 47.366822], [8.555236, 47.366822], [8.555247, 47.366822]]], "type": "MultiLineString"}, "id": "4371", "properties": {}, "type": "Feature"}, {"bbox": [8.549156, 47.41738, 8.54952, 47.417484], "geometry": {"coordinates": [[[8.549156, 47.417484], [8.54952, 47.41738]]], "type": "MultiLineString"}, "id": "4373", "properties": {}, "type": "Feature"}, {"bbox": [8.485114, 47.377523, 8.486915, 47.380001], "geometry": {"coordinates": [[[8.486915, 47.380001], [8.486707, 47.379512], [8.486443, 47.378944], [8.486338, 47.378735], [8.486203, 47.378535], [8.486039, 47.378345], [8.485849, 47.378162], [8.485482, 47.37788], [8.485181, 47.377584], [8.485114, 47.377523]]], "type": "MultiLineString"}, "id": "4374", "properties": {}, "type": "Feature"}, {"bbox": [8.513433, 47.38108, 8.513971, 47.381459], "geometry": {"coordinates": [[[8.513971, 47.381254], [8.513932, 47.381272], [8.513927, 47.381267], [8.513922, 47.381261], [8.513919, 47.381255], [8.513916, 47.381249], [8.513914, 47.381243], [8.513912, 47.381237], [8.513912, 47.38123], [8.513912, 47.381224], [8.513952, 47.38108], [8.513433, 47.381309], [8.513581, 47.381459]]], "type": "MultiLineString"}, "id": "4375", "properties": {}, "type": "Feature"}, {"bbox": [8.482682, 47.419864, 8.491315, 47.422131], "geometry": {"coordinates": [[[8.491315, 47.419864], [8.491111, 47.419976], [8.490572, 47.420153], [8.490459, 47.420192], [8.490349, 47.420235], [8.490243, 47.420282], [8.489197, 47.420765], [8.488597, 47.421057], [8.488238, 47.421221], [8.488217, 47.42123], [8.487814, 47.421413], [8.487513, 47.421539], [8.487474, 47.421555], [8.487432, 47.421567], [8.48739, 47.421578], [8.487346, 47.421586], [8.487301, 47.421591], [8.487256, 47.421594], [8.48721, 47.421594], [8.487165, 47.421592], [8.486171, 47.42151], [8.486065, 47.421505], [8.48596, 47.421505], [8.485855, 47.421512], [8.485751, 47.421524], [8.485223, 47.421605], [8.485091, 47.421626], [8.484959, 47.421647], [8.484828, 47.42167], [8.484459, 47.421736], [8.484319, 47.421764], [8.484181, 47.421796], [8.484045, 47.421834], [8.483101, 47.422112], [8.483075, 47.422119], [8.483048, 47.422124], [8.48302, 47.422128], [8.482993, 47.42213], [8.482964, 47.422131], [8.482936, 47.42213], [8.482909, 47.422127], [8.482881, 47.422123], [8.482854, 47.422117], [8.482828, 47.42211], [8.482809, 47.422103], [8.48279, 47.422095], [8.482772, 47.422085], [8.482756, 47.422075], [8.482741, 47.422064], [8.482727, 47.422052], [8.482715, 47.422039], [8.482705, 47.422026], [8.482697, 47.422012], [8.48269, 47.421997], [8.482685, 47.421982], [8.482683, 47.421967], [8.482682, 47.421952], [8.482683, 47.421937], [8.482686, 47.421922], [8.482691, 47.421907], [8.482698, 47.421893], [8.482707, 47.421879], [8.482718, 47.421866], [8.48273, 47.421853], [8.482744, 47.421841], [8.482759, 47.42183], [8.482776, 47.42182], [8.483061, 47.421663], [8.484592, 47.420759], [8.484851, 47.420573], [8.485146, 47.42034]]], "type": "MultiLineString"}, "id": "4378", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.370302, 8.541908, 47.370329], "geometry": {"coordinates": [[[8.541908, 47.370329], [8.541252, 47.370316], [8.541163, 47.370302]]], "type": "MultiLineString"}, "id": "4379", "properties": {}, "type": "Feature"}, {"bbox": [8.573761, 47.363095, 8.575197, 47.365306], "geometry": {"coordinates": [[[8.573761, 47.363095], [8.57385, 47.363211], [8.573943, 47.363325], [8.574038, 47.363438], [8.574086, 47.363494], [8.574127, 47.363553], [8.57416, 47.363614], [8.574184, 47.363677], [8.574306, 47.364008], [8.574345, 47.364072], [8.574386, 47.364136], [8.57443, 47.364199], [8.574449, 47.364222], [8.574472, 47.364242], [8.574491, 47.364261], [8.574575, 47.36438], [8.574655, 47.364501], [8.574729, 47.364623], [8.574856, 47.364849], [8.575038, 47.365114], [8.575197, 47.365306]]], "type": "MultiLineString"}, "id": "4381", "properties": {}, "type": "Feature"}, {"bbox": [8.531677, 47.430697, 8.537391, 47.431816], "geometry": {"coordinates": [[[8.537391, 47.430697], [8.537013, 47.430744], [8.536198, 47.430884], [8.535372, 47.431108], [8.533279, 47.431626], [8.53311, 47.43166], [8.531743, 47.431816], [8.531677, 47.431685]]], "type": "MultiLineString"}, "id": "4383", "properties": {}, "type": "Feature"}, {"bbox": [8.540288, 47.368538, 8.54063, 47.368767], "geometry": {"coordinates": [[[8.540288, 47.368729], [8.540564, 47.368767], [8.54063, 47.368538]]], "type": "MultiLineString"}, "id": "4384", "properties": {}, "type": "Feature"}, {"bbox": [8.571637, 47.388345, 8.573244, 47.390996], "geometry": {"coordinates": [[[8.573244, 47.388345], [8.573242, 47.388462], [8.573227, 47.388626], [8.57319, 47.388789], [8.57313, 47.388948], [8.573049, 47.389103], [8.572946, 47.389252], [8.572823, 47.389394], [8.572616, 47.389608], [8.571985, 47.390292], [8.571679, 47.390655], [8.571667, 47.390672], [8.571657, 47.390689], [8.571648, 47.390706], [8.571642, 47.390724], [8.571639, 47.390742], [8.571637, 47.390761], [8.571638, 47.390779], [8.571641, 47.390797], [8.571646, 47.390815], [8.571653, 47.390833], [8.571689, 47.390907], [8.571767, 47.390996]]], "type": "MultiLineString"}, "id": "4385", "properties": {}, "type": "Feature"}, {"bbox": [8.557226, 47.383244, 8.557666, 47.384317], "geometry": {"coordinates": [[[8.557226, 47.383244], [8.557346, 47.383324], [8.557373, 47.383361], [8.55741, 47.383681], [8.557419, 47.383746], [8.557434, 47.38381], [8.557455, 47.383874], [8.557617, 47.384261], [8.557666, 47.384317]]], "type": "MultiLineString"}, "id": "4386", "properties": {}, "type": "Feature"}, {"bbox": [8.519975, 47.343829, 8.521807, 47.346928], "geometry": {"coordinates": [[[8.521807, 47.346928], [8.521798, 47.346919], [8.521788, 47.34691], [8.521777, 47.346902], [8.521764, 47.346894], [8.521759, 47.34689], [8.521755, 47.346885], [8.521751, 47.34688], [8.521748, 47.346875], [8.521745, 47.34687], [8.521743, 47.346865], [8.521742, 47.346859], [8.521742, 47.346854], [8.521742, 47.346848], [8.521743, 47.346843], [8.521777, 47.346773], [8.521779, 47.346768], [8.52178, 47.346764], [8.521781, 47.346759], [8.521781, 47.346755], [8.521781, 47.346751], [8.52178, 47.346746], [8.521778, 47.346742], [8.521776, 47.346737], [8.521774, 47.346733], [8.521771, 47.346729], [8.521767, 47.346726], [8.521763, 47.346722], [8.521759, 47.346719], [8.521754, 47.346716], [8.521652, 47.346664], [8.521612, 47.346651], [8.521571, 47.346638], [8.52153, 47.346626], [8.521461, 47.34661], [8.521391, 47.346594], [8.521321, 47.34658], [8.521285, 47.346574], [8.52125, 47.346565], [8.521217, 47.346554], [8.521185, 47.346541], [8.521155, 47.346526], [8.521127, 47.346509], [8.521101, 47.34649], [8.520617, 47.346031], [8.520518, 47.345931], [8.520349, 47.345774], [8.520186, 47.345671], [8.520148, 47.345561], [8.520002, 47.345062], [8.519994, 47.345032], [8.519988, 47.345003], [8.519982, 47.344974], [8.519975, 47.344909], [8.519975, 47.344845], [8.519982, 47.34478], [8.520044, 47.344416], [8.520061, 47.34436], [8.520096, 47.344276], [8.520156, 47.344017], [8.520161, 47.344005], [8.520167, 47.343993], [8.520175, 47.343981], [8.520184, 47.34397], [8.520194, 47.343959], [8.520206, 47.343949], [8.520219, 47.34394], [8.520233, 47.343932], [8.520249, 47.343924], [8.520265, 47.343918], [8.520282, 47.343912], [8.520299, 47.343908], [8.520318, 47.343904], [8.520592, 47.343883], [8.521232, 47.343829]]], "type": "MultiLineString"}, "id": "4387", "properties": {}, "type": "Feature"}, {"bbox": [8.545108, 47.373527, 8.546186, 47.373907], "geometry": {"coordinates": [[[8.545108, 47.373527], [8.545732, 47.373742], [8.546186, 47.373907]]], "type": "MultiLineString"}, "id": "4388", "properties": {}, "type": "Feature"}, {"bbox": [8.577044, 47.384704, 8.577288, 47.384804], "geometry": {"coordinates": [[[8.577279, 47.384704], [8.577282, 47.38471], [8.577285, 47.384716], [8.577287, 47.384722], [8.577288, 47.384728], [8.577288, 47.384734], [8.577287, 47.384741], [8.577286, 47.384747], [8.577284, 47.384753], [8.577281, 47.384759], [8.577277, 47.384764], [8.577272, 47.38477], [8.577267, 47.384775], [8.577262, 47.38478], [8.577255, 47.384784], [8.577248, 47.384788], [8.577241, 47.384792], [8.577233, 47.384795], [8.577225, 47.384798], [8.577216, 47.3848], [8.577208, 47.384802], [8.577199, 47.384803], [8.57719, 47.384804], [8.57718, 47.384804], [8.577171, 47.384804], [8.577162, 47.384803], [8.577153, 47.384801], [8.577145, 47.384799], [8.577136, 47.384797], [8.577128, 47.384794], [8.577121, 47.38479], [8.577114, 47.384786], [8.577044, 47.38473]]], "type": "MultiLineString"}, "id": "4389", "properties": {}, "type": "Feature"}, {"bbox": [8.525215, 47.425713, 8.536487, 47.426204], "geometry": {"coordinates": [[[8.536487, 47.426204], [8.536342, 47.426139], [8.536158, 47.426121], [8.535973, 47.426107], [8.535788, 47.426098], [8.533523, 47.425992], [8.532272, 47.425943], [8.530397, 47.425853], [8.529802, 47.425823], [8.529207, 47.425797], [8.528611, 47.425775], [8.528138, 47.425757], [8.527664, 47.425738], [8.527191, 47.425717], [8.526955, 47.425713], [8.526719, 47.425714], [8.526483, 47.42572], [8.52606, 47.425733], [8.525638, 47.425747], [8.525215, 47.425762]]], "type": "MultiLineString"}, "id": "4390", "properties": {}, "type": "Feature"}, {"bbox": [8.585503, 47.404843, 8.586074, 47.405738], "geometry": {"coordinates": [[[8.585503, 47.404843], [8.585503, 47.40485], [8.585504, 47.404857], [8.585505, 47.404865], [8.585508, 47.404871], [8.585511, 47.404878], [8.585515, 47.404885], [8.58552, 47.404891], [8.585526, 47.404897], [8.585532, 47.404902], [8.58554, 47.404907], [8.585548, 47.404912], [8.585556, 47.404916], [8.585565, 47.40492], [8.585574, 47.404923], [8.585584, 47.404925], [8.585594, 47.404927], [8.585605, 47.404929], [8.585615, 47.404929], [8.585625, 47.404929], [8.585871, 47.404914], [8.585957, 47.404934], [8.585992, 47.404957], [8.586038, 47.405201], [8.586027, 47.405297], [8.586074, 47.405583], [8.586074, 47.405604], [8.586072, 47.405624], [8.586066, 47.405645], [8.586059, 47.405664], [8.586049, 47.405684], [8.586036, 47.405703], [8.586022, 47.405721], [8.586005, 47.405738]]], "type": "MultiLineString"}, "id": "4392", "properties": {}, "type": "Feature"}, {"bbox": [8.561937, 47.369665, 8.562734, 47.370056], "geometry": {"coordinates": [[[8.561937, 47.369839], [8.562155, 47.369695], [8.562161, 47.36969], [8.562168, 47.369685], [8.562175, 47.369681], [8.562183, 47.369677], [8.562192, 47.369674], [8.562201, 47.369671], [8.56221, 47.369669], [8.562219, 47.369667], [8.562229, 47.369666], [8.562239, 47.369665], [8.562248, 47.369665], [8.562258, 47.369666], [8.562268, 47.369667], [8.562277, 47.369669], [8.562286, 47.369671], [8.562295, 47.369674], [8.562303, 47.369678], [8.562311, 47.369682], [8.562688, 47.369905], [8.562697, 47.369911], [8.562705, 47.369918], [8.562713, 47.369925], [8.562719, 47.369932], [8.562724, 47.36994], [8.562729, 47.369948], [8.562732, 47.369956], [8.562734, 47.369989], [8.562734, 47.370023], [8.562733, 47.370056]]], "type": "MultiLineString"}, "id": "4394", "properties": {}, "type": "Feature"}, {"bbox": [8.568593, 47.351978, 8.569503, 47.353651], "geometry": {"coordinates": [[[8.569503, 47.351978], [8.569427, 47.352022], [8.569354, 47.352068], [8.569284, 47.352116], [8.568913, 47.352392], [8.568898, 47.352403], [8.568884, 47.352416], [8.568872, 47.352429], [8.568861, 47.352442], [8.568852, 47.352456], [8.568845, 47.352471], [8.568839, 47.352486], [8.568836, 47.352501], [8.568834, 47.352517], [8.568593, 47.353651]]], "type": "MultiLineString"}, "id": "4397", "properties": {}, "type": "Feature"}, {"bbox": [8.509421, 47.352891, 8.510172, 47.354262], "geometry": {"coordinates": [[[8.509421, 47.354262], [8.509473, 47.354172], [8.509559, 47.354043], [8.509593, 47.353992], [8.509647, 47.353911], [8.509675, 47.353863], [8.509791, 47.353672], [8.509827, 47.353598], [8.509874, 47.353514], [8.509902, 47.353461], [8.509984, 47.353246], [8.510017, 47.353173], [8.510129, 47.352969], [8.510172, 47.352891]]], "type": "MultiLineString"}, "id": "4398", "properties": {}, "type": "Feature"}, {"bbox": [8.566898, 47.34712, 8.567654, 47.347742], "geometry": {"coordinates": [[[8.566898, 47.34712], [8.567634, 47.347424], [8.567639, 47.347431], [8.567644, 47.347438], [8.567648, 47.347446], [8.567651, 47.347453], [8.567653, 47.347461], [8.567654, 47.347468], [8.567654, 47.347476], [8.567653, 47.347484], [8.567651, 47.347492], [8.567648, 47.347499], [8.567643, 47.347506], [8.567639, 47.347513], [8.567633, 47.34752], [8.567626, 47.347526], [8.567618, 47.347532], [8.567428, 47.347742]]], "type": "MultiLineString"}, "id": "4399", "properties": {}, "type": "Feature"}, {"bbox": [8.572734, 47.40731, 8.574132, 47.407457], "geometry": {"coordinates": [[[8.572734, 47.40731], [8.573629, 47.407414], [8.573679, 47.407432], [8.573896, 47.407457], [8.574132, 47.407394]]], "type": "MultiLineString"}, "id": "4400", "properties": {}, "type": "Feature"}, {"bbox": [8.498749, 47.420838, 8.499922, 47.421091], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.498785, 47.421085], [8.49882, 47.421077], [8.498855, 47.421068], [8.499304, 47.420842], [8.499489, 47.420995], [8.499495, 47.420999], [8.499501, 47.421002], [8.499507, 47.421005], [8.499514, 47.421008], [8.499521, 47.42101], [8.499528, 47.421012], [8.499536, 47.421013], [8.499544, 47.421014], [8.499552, 47.421014], [8.499559, 47.421014], [8.499567, 47.421014], [8.499575, 47.421013], [8.499583, 47.421012], [8.49959, 47.42101], [8.499597, 47.421008], [8.499706, 47.420951], [8.499814, 47.420895], [8.499922, 47.420838]]], "type": "MultiLineString"}, "id": "4401", "properties": {}, "type": "Feature"}, {"bbox": [8.545841, 47.401451, 8.546362, 47.402034], "geometry": {"coordinates": [[[8.545841, 47.401451], [8.546362, 47.401877], [8.546115, 47.402026], [8.5461, 47.402029], [8.546085, 47.402032], [8.546069, 47.402034], [8.546053, 47.402034], [8.546037, 47.402034], [8.546021, 47.402033], [8.546006, 47.40203], [8.54599, 47.402027], [8.545976, 47.402023], [8.545961, 47.402018]]], "type": "MultiLineString"}, "id": "4403", "properties": {}, "type": "Feature"}, {"bbox": [8.583285, 47.4017, 8.584581, 47.402081], "geometry": {"coordinates": [[[8.583285, 47.401995], [8.583371, 47.401976], [8.583691, 47.401902], [8.583824, 47.401859], [8.583934, 47.401821], [8.584035, 47.401785], [8.584261, 47.401703], [8.584289, 47.4017], [8.584311, 47.401711], [8.584489, 47.401901], [8.584511, 47.40194], [8.584567, 47.402041], [8.584581, 47.402081]]], "type": "MultiLineString"}, "id": "4404", "properties": {}, "type": "Feature"}, {"bbox": [8.542169, 47.392003, 8.542871, 47.392509], "geometry": {"coordinates": [[[8.542871, 47.392262], [8.542608, 47.392003], [8.542512, 47.392041], [8.542169, 47.39232], [8.542359, 47.392509]]], "type": "MultiLineString"}, "id": "4405", "properties": {}, "type": "Feature"}, {"bbox": [8.548124, 47.401628, 8.549771, 47.401863], "geometry": {"coordinates": [[[8.548124, 47.401704], [8.548312, 47.40174], [8.548494, 47.401751], [8.548611, 47.401733], [8.548667, 47.401724], [8.548794, 47.401711], [8.548994, 47.401704], [8.549006, 47.401702], [8.549018, 47.401699], [8.549029, 47.401695], [8.549039, 47.40169], [8.549049, 47.401685], [8.549058, 47.40168], [8.549067, 47.401674], [8.549075, 47.401667], [8.549082, 47.40166], [8.549088, 47.401653], [8.549093, 47.401645], [8.549115, 47.401639], [8.549137, 47.401634], [8.54916, 47.40163], [8.549442, 47.401628], [8.54953, 47.401642], [8.549754, 47.401841], [8.549771, 47.401863]]], "type": "MultiLineString"}, "id": "4406", "properties": {}, "type": "Feature"}, {"bbox": [8.574245, 47.37319, 8.57498, 47.373501], "geometry": {"coordinates": [[[8.57498, 47.37319], [8.574946, 47.373203], [8.574913, 47.373219], [8.574882, 47.373236], [8.574854, 47.373255], [8.574828, 47.373275], [8.574805, 47.373297], [8.574784, 47.373321], [8.574766, 47.373345], [8.574752, 47.37337], [8.574741, 47.373396], [8.574732, 47.373423], [8.574726, 47.373433], [8.574718, 47.373442], [8.574708, 47.373452], [8.574698, 47.37346], [8.574686, 47.373468], [8.574674, 47.373475], [8.57466, 47.373481], [8.574646, 47.373487], [8.574631, 47.373492], [8.574616, 47.373495], [8.5746, 47.373498], [8.574584, 47.3735], [8.574568, 47.373501], [8.574551, 47.373501], [8.574535, 47.3735], [8.574519, 47.373498], [8.574503, 47.373495], [8.574481, 47.373488], [8.574458, 47.373483], [8.574434, 47.373479], [8.57441, 47.373477], [8.574385, 47.373476], [8.574361, 47.373476], [8.574336, 47.373478], [8.574313, 47.373482], [8.574289, 47.373487], [8.574267, 47.373493], [8.574245, 47.373501]]], "type": "MultiLineString"}, "id": "4408", "properties": {}, "type": "Feature"}, {"bbox": [8.47798, 47.378387, 8.479467, 47.379383], "geometry": {"coordinates": [[[8.479467, 47.379383], [8.479451, 47.379374], [8.479437, 47.379365], [8.479423, 47.379354], [8.479411, 47.379343], [8.479401, 47.379332], [8.479392, 47.37932], [8.479325, 47.379175], [8.479298, 47.379142], [8.479266, 47.379111], [8.479231, 47.379081], [8.479192, 47.379054], [8.47915, 47.379029], [8.479054, 47.378978], [8.478958, 47.378926], [8.478862, 47.378874], [8.478569, 47.378711], [8.478275, 47.378548], [8.47798, 47.378387]]], "type": "MultiLineString"}, "id": "4409", "properties": {}, "type": "Feature"}, {"bbox": [8.4808, 47.379242, 8.481931, 47.380286], "geometry": {"coordinates": [[[8.4808, 47.380286], [8.481265, 47.379933], [8.481442, 47.379806], [8.48161, 47.379672], [8.481768, 47.379534], [8.481821, 47.379485], [8.481874, 47.379436], [8.481926, 47.379387], [8.481928, 47.379383], [8.481929, 47.37938], [8.48193, 47.379376], [8.481931, 47.379372], [8.481931, 47.379368], [8.48193, 47.379364], [8.481929, 47.37936], [8.481928, 47.379356], [8.481926, 47.379352], [8.481923, 47.379349], [8.48192, 47.379346], [8.481916, 47.379342], [8.481913, 47.379339], [8.481896, 47.379323], [8.481877, 47.379308], [8.481856, 47.379294], [8.481833, 47.379282], [8.481809, 47.379271], [8.481784, 47.379261], [8.481757, 47.379253], [8.48173, 47.379247], [8.481702, 47.379242]]], "type": "MultiLineString"}, "id": "4410", "properties": {}, "type": "Feature"}, {"bbox": [8.496801, 47.402181, 8.498103, 47.403053], "geometry": {"coordinates": [[[8.498081, 47.402693], [8.498102, 47.402736], [8.498102, 47.402738], [8.498103, 47.40274], [8.498103, 47.402741], [8.498102, 47.402743], [8.498102, 47.402745], [8.498101, 47.402747], [8.4981, 47.402749], [8.498099, 47.40275], [8.498098, 47.402752], [8.498097, 47.402753], [8.498095, 47.402755], [8.498093, 47.402756], [8.498091, 47.402757], [8.498089, 47.402758], [8.497454, 47.402999], [8.497431, 47.403005], [8.497406, 47.403011], [8.497382, 47.403015], [8.497356, 47.403017], [8.497343, 47.403018], [8.497329, 47.40302], [8.497316, 47.403023], [8.497304, 47.403026], [8.497293, 47.40303], [8.497282, 47.403034], [8.49724, 47.403051], [8.497239, 47.403052], [8.497238, 47.403052], [8.497237, 47.403052], [8.497236, 47.403053], [8.497235, 47.403053], [8.497233, 47.403053], [8.497232, 47.403053], [8.497231, 47.403053], [8.49723, 47.403053], [8.497228, 47.403052], [8.497227, 47.403052], [8.497226, 47.403052], [8.497225, 47.403051], [8.497224, 47.403051], [8.497223, 47.40305], [8.497222, 47.40305], [8.497221, 47.403049], [8.49722, 47.403049], [8.49722, 47.403048], [8.497219, 47.403047], [8.497219, 47.403046], [8.497068, 47.40287], [8.497065, 47.402868], [8.497062, 47.402865], [8.497058, 47.402862], [8.497054, 47.40286], [8.497052, 47.402859], [8.49705, 47.402858], [8.497048, 47.402857], [8.497046, 47.402855], [8.497045, 47.402854], [8.497043, 47.402852], [8.497042, 47.40285], [8.496943, 47.40263], [8.496942, 47.402629], [8.496941, 47.402628], [8.496939, 47.402627], [8.496938, 47.402626], [8.496937, 47.402625], [8.496935, 47.402624], [8.496933, 47.402624], [8.496931, 47.402623], [8.49693, 47.402622], [8.496928, 47.402622], [8.496926, 47.402622], [8.496924, 47.402622], [8.496922, 47.402621], [8.49692, 47.402621], [8.496918, 47.402622], [8.496886, 47.402627], [8.496884, 47.402627], [8.496882, 47.402627], [8.496881, 47.402627], [8.496879, 47.402627], [8.496877, 47.402627], [8.496876, 47.402626], [8.496874, 47.402626], [8.496873, 47.402625], [8.496871, 47.402625], [8.49687, 47.402624], [8.496869, 47.402623], [8.496868, 47.402622], [8.496867, 47.402621], [8.496866, 47.40262], [8.496865, 47.402619], [8.496865, 47.402618], [8.496809, 47.402528], [8.496806, 47.402521], [8.496803, 47.402514], [8.496802, 47.402507], [8.496801, 47.402499], [8.496801, 47.402309], [8.496805, 47.402289], [8.496811, 47.402269], [8.49682, 47.40225], [8.496831, 47.402232], [8.496845, 47.402214], [8.496861, 47.402197], [8.496879, 47.402181]]], "type": "MultiLineString"}, "id": "4412", "properties": {}, "type": "Feature"}, {"bbox": [8.539794, 47.406237, 8.540912, 47.406602], "geometry": {"coordinates": [[[8.539794, 47.406237], [8.540269, 47.406477], [8.540294, 47.406487], [8.540321, 47.406495], [8.540349, 47.406501], [8.540378, 47.406506], [8.540432, 47.406509], [8.540486, 47.406515], [8.540538, 47.406524], [8.540638, 47.406544], [8.540737, 47.406567], [8.540834, 47.406591], [8.54084, 47.406594], [8.540847, 47.406596], [8.540854, 47.406598], [8.540861, 47.4066], [8.540868, 47.406601], [8.540875, 47.406602], [8.540883, 47.406602], [8.54089, 47.406602], [8.540897, 47.406602], [8.540905, 47.406601], [8.540912, 47.406599]]], "type": "MultiLineString"}, "id": "4413", "properties": {}, "type": "Feature"}, {"bbox": [8.497857, 47.402026, 8.498275, 47.402967], "geometry": {"coordinates": [[[8.497857, 47.402026], [8.497857, 47.402087], [8.497887, 47.402206], [8.497995, 47.402562], [8.498022, 47.402606], [8.498051, 47.40265], [8.498081, 47.402693], [8.498171, 47.402829], [8.498275, 47.402967]]], "type": "MultiLineString"}, "id": "4419", "properties": {}, "type": "Feature"}, {"bbox": [8.54396, 47.368709, 8.544325, 47.36896], "geometry": {"coordinates": [[[8.544198, 47.36896], [8.544161, 47.36894], [8.544325, 47.368827], [8.544096, 47.368709], [8.54396, 47.368821]]], "type": "MultiLineString"}, "id": "4421", "properties": {}, "type": "Feature"}, {"bbox": [8.54091, 47.371755, 8.540947, 47.371979], "geometry": {"coordinates": [[[8.540947, 47.371755], [8.540931, 47.371829], [8.540919, 47.371904], [8.54091, 47.371979]]], "type": "MultiLineString"}, "id": "4422", "properties": {}, "type": "Feature"}, {"bbox": [8.500367, 47.381829, 8.500602, 47.38202], "geometry": {"coordinates": [[[8.500602, 47.38202], [8.50042, 47.381849], [8.500367, 47.381829]]], "type": "MultiLineString"}, "id": "4425", "properties": {}, "type": "Feature"}, {"bbox": [8.586943, 47.39895, 8.58759, 47.39942], "geometry": {"coordinates": [[[8.586943, 47.39942], [8.587559, 47.39931], [8.587563, 47.399309], [8.587566, 47.399308], [8.58757, 47.399306], [8.587573, 47.399304], [8.587576, 47.399302], [8.587579, 47.3993], [8.587582, 47.399297], [8.587584, 47.399295], [8.587586, 47.399292], [8.587587, 47.399289], [8.587589, 47.399287], [8.587589, 47.399284], [8.58759, 47.399281], [8.58759, 47.399278], [8.587529, 47.399042], [8.587505, 47.398992], [8.587466, 47.39895]]], "type": "MultiLineString"}, "id": "4429", "properties": {}, "type": "Feature"}, {"bbox": [8.477157, 47.380556, 8.477403, 47.381272], "geometry": {"coordinates": [[[8.477202, 47.381272], [8.477181, 47.381114], [8.477166, 47.380956], [8.477157, 47.380797], [8.477159, 47.380739], [8.477165, 47.380682], [8.477175, 47.380625], [8.477181, 47.380616], [8.477188, 47.380608], [8.477197, 47.380601], [8.477206, 47.380594], [8.477216, 47.380588], [8.477227, 47.380582], [8.477238, 47.380577], [8.47725, 47.380573], [8.477263, 47.380569], [8.477276, 47.380567], [8.477289, 47.380565], [8.477303, 47.380564], [8.477317, 47.380563], [8.477403, 47.380556]]], "type": "MultiLineString"}, "id": "4433", "properties": {}, "type": "Feature"}, {"bbox": [8.59461, 47.357117, 8.595343, 47.357417], "geometry": {"coordinates": [[[8.595343, 47.35714], [8.595326, 47.357145], [8.595309, 47.357149], [8.595291, 47.357152], [8.595274, 47.357154], [8.595256, 47.357154], [8.595147, 47.357144], [8.595039, 47.357132], [8.594932, 47.357118], [8.594922, 47.357117], [8.594912, 47.357117], [8.594903, 47.357117], [8.594893, 47.357118], [8.594883, 47.357119], [8.594874, 47.357121], [8.594864, 47.357124], [8.594856, 47.357127], [8.594847, 47.357131], [8.594839, 47.357135], [8.594832, 47.357139], [8.594825, 47.357144], [8.594819, 47.357149], [8.594814, 47.357155], [8.594681, 47.357305], [8.59461, 47.357417]]], "type": "MultiLineString"}, "id": "4434", "properties": {}, "type": "Feature"}, {"bbox": [8.48803, 47.421988, 8.493074, 47.423043], "geometry": {"coordinates": [[[8.493074, 47.423043], [8.493026, 47.422918], [8.49302, 47.422907], [8.493013, 47.422896], [8.493005, 47.422886], [8.492995, 47.422876], [8.492984, 47.422867], [8.492972, 47.422858], [8.492959, 47.422851], [8.492944, 47.422844], [8.492929, 47.422838], [8.492914, 47.422832], [8.492897, 47.422828], [8.492881, 47.422825], [8.492671, 47.422782], [8.492634, 47.422768], [8.4926, 47.422752], [8.492567, 47.422734], [8.492537, 47.422714], [8.49251, 47.422692], [8.491763, 47.42201], [8.491754, 47.422005], [8.491744, 47.422001], [8.491734, 47.421997], [8.491724, 47.421994], [8.491713, 47.421992], [8.491702, 47.42199], [8.491691, 47.421988], [8.49168, 47.421988], [8.491668, 47.421988], [8.491657, 47.421989], [8.491646, 47.42199], [8.491635, 47.421992], [8.491624, 47.421994], [8.491226, 47.422075], [8.491164, 47.422085], [8.491101, 47.422093], [8.491037, 47.422097], [8.490973, 47.422097], [8.490909, 47.422094], [8.490669, 47.422081], [8.490429, 47.422068], [8.490188, 47.422056], [8.490109, 47.42205], [8.49003, 47.422047], [8.489951, 47.422047], [8.489602, 47.42206], [8.489254, 47.422075], [8.488907, 47.422094], [8.488815, 47.422098], [8.488723, 47.422101], [8.488631, 47.422103], [8.488182, 47.422092], [8.488161, 47.42209], [8.488141, 47.422088], [8.488121, 47.422084], [8.488101, 47.42208], [8.488082, 47.422074], [8.488064, 47.422067], [8.488047, 47.422059], [8.48803, 47.42205]]], "type": "MultiLineString"}, "id": "4435", "properties": {}, "type": "Feature"}, {"bbox": [8.511179, 47.399732, 8.529955, 47.408749], "geometry": {"coordinates": [[[8.529955, 47.399732], [8.529771, 47.400478], [8.529744, 47.400598], [8.529726, 47.400718], [8.529714, 47.400839], [8.529704, 47.400935], [8.529684, 47.40103], [8.529657, 47.401125], [8.529653, 47.401134], [8.529602, 47.401257], [8.529536, 47.401377], [8.529455, 47.401492], [8.529361, 47.401603], [8.529321, 47.401646], [8.529284, 47.401686], [8.528712, 47.402297], [8.528605, 47.402426], [8.528517, 47.402562], [8.52845, 47.402702], [8.528358, 47.402907], [8.528245, 47.403106], [8.528113, 47.4033], [8.527999, 47.40344], [8.527999, 47.40344], [8.527961, 47.403483], [8.527919, 47.403524], [8.527873, 47.403563], [8.527785, 47.4036], [8.527722, 47.403659], [8.527681, 47.403678], [8.52764, 47.403696], [8.527597, 47.403713], [8.527238, 47.403846], [8.526784, 47.404014], [8.526566, 47.4041], [8.526355, 47.404192], [8.526151, 47.404292], [8.525721, 47.404511], [8.525663, 47.404543], [8.525608, 47.404578], [8.525556, 47.404614], [8.525498, 47.404663], [8.525446, 47.404714], [8.525399, 47.404768], [8.525359, 47.404825], [8.525333, 47.404865], [8.525304, 47.404905], [8.525275, 47.404945], [8.525246, 47.404979], [8.525211, 47.40502], [8.525174, 47.405061], [8.525135, 47.4051], [8.524954, 47.405272], [8.524666, 47.405549], [8.524547, 47.405669], [8.524201, 47.406044], [8.523941, 47.406323], [8.523409, 47.406841], [8.52338, 47.406871], [8.523263, 47.407026], [8.523194, 47.407108], [8.523114, 47.40718], [8.522911, 47.407341], [8.522848, 47.407392], [8.522747, 47.407466], [8.52253, 47.407603], [8.522421, 47.407687], [8.522315, 47.407774], [8.52219, 47.407849], [8.521937, 47.407988], [8.521778, 47.408075], [8.521479, 47.408238], [8.521367, 47.4083], [8.521103, 47.408456], [8.520762, 47.408655], [8.520744, 47.408662], [8.520679, 47.408687], [8.520604, 47.408707], [8.520507, 47.408727], [8.520507, 47.408727], [8.520443, 47.408736], [8.520378, 47.408744], [8.520313, 47.408749], [8.520273, 47.408749], [8.520233, 47.408748], [8.520194, 47.408747], [8.520105, 47.408738], [8.520018, 47.408725], [8.519933, 47.408708], [8.519894, 47.4087], [8.519783, 47.408677], [8.519372, 47.408609], [8.519034, 47.408548], [8.518985, 47.408541], [8.518935, 47.408537], [8.518885, 47.408535], [8.518835, 47.408536], [8.518785, 47.408541], [8.518736, 47.408548], [8.518625, 47.408567], [8.51857, 47.408577], [8.518214, 47.40864], [8.517896, 47.408676], [8.517802, 47.408682], [8.517706, 47.408677], [8.517614, 47.408665], [8.517054, 47.408562], [8.516927, 47.408533], [8.516803, 47.408498], [8.516698, 47.408457], [8.516634, 47.408434], [8.516394, 47.408348], [8.515899, 47.408184], [8.515625, 47.408076], [8.515075, 47.407858], [8.514934, 47.407808], [8.514786, 47.407768], [8.514633, 47.407738], [8.514633, 47.407738], [8.514495, 47.407714], [8.514326, 47.40769], [8.514238, 47.407673], [8.514151, 47.407649], [8.514068, 47.407616], [8.513814, 47.407497], [8.513752, 47.407462], [8.513697, 47.407421], [8.513652, 47.407373], [8.513609, 47.407297], [8.513603, 47.407287], [8.513596, 47.407246], [8.513604, 47.407217], [8.513427, 47.407222], [8.513193, 47.407239], [8.512959, 47.407258], [8.512725, 47.407281], [8.512725, 47.407281], [8.512499, 47.407305], [8.512287, 47.407325], [8.512074, 47.407348], [8.511862, 47.407373], [8.511456, 47.407432], [8.511179, 47.407465]]], "type": "MultiLineString"}, "id": "4437", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.395753, 8.574951, 47.397621], "geometry": {"coordinates": [[[8.570557, 47.397621], [8.570911, 47.397439], [8.571449, 47.397142], [8.571516, 47.397101], [8.571577, 47.397057], [8.571632, 47.397009], [8.571681, 47.396958], [8.571723, 47.396905], [8.571803, 47.39679], [8.571911, 47.396635], [8.571938, 47.396601], [8.571968, 47.396569], [8.572002, 47.396538], [8.57204, 47.396509], [8.572082, 47.396483], [8.572126, 47.396459], [8.572173, 47.396438], [8.572223, 47.396419], [8.572275, 47.396404], [8.572771, 47.39627], [8.572857, 47.396246], [8.572942, 47.39622], [8.573026, 47.396194], [8.573072, 47.396179], [8.573118, 47.396164], [8.573164, 47.396148], [8.573931, 47.395879], [8.574202, 47.395797], [8.574332, 47.395768], [8.574467, 47.395757], [8.574467, 47.395757], [8.574688, 47.395753], [8.574708, 47.395755], [8.574728, 47.395757], [8.574747, 47.395761], [8.574766, 47.395766], [8.574784, 47.395772], [8.574809, 47.395783], [8.574832, 47.395795], [8.574854, 47.395808], [8.574873, 47.395823], [8.574891, 47.395839], [8.574907, 47.395855], [8.57492, 47.395873], [8.574931, 47.395891], [8.57494, 47.39591], [8.574946, 47.39593], [8.57495, 47.395949], [8.574951, 47.395969]]], "type": "MultiLineString"}, "id": "4438", "properties": {}, "type": "Feature"}, {"bbox": [8.530502, 47.401958, 8.533544, 47.40306], "geometry": {"coordinates": [[[8.533544, 47.401958], [8.533543, 47.40198], [8.533539, 47.402001], [8.533533, 47.402023], [8.533523, 47.402044], [8.533511, 47.402064], [8.533497, 47.402084], [8.53348, 47.402104], [8.533461, 47.402123], [8.533439, 47.402142], [8.533415, 47.402159], [8.53339, 47.402175], [8.532848, 47.402494], [8.532709, 47.402566], [8.532565, 47.402632], [8.532414, 47.40269], [8.532071, 47.402833], [8.531958, 47.402878], [8.531842, 47.40292], [8.531711, 47.40295], [8.531576, 47.402972], [8.531438, 47.402986], [8.531163, 47.403006], [8.530887, 47.403027], [8.530612, 47.40305], [8.530576, 47.403054], [8.530539, 47.403057], [8.530502, 47.40306]]], "type": "MultiLineString"}, "id": "4446", "properties": {}, "type": "Feature"}, {"bbox": [8.505396, 47.368952, 8.505925, 47.369389], "geometry": {"coordinates": [[[8.505925, 47.369389], [8.505523, 47.369313], [8.505503, 47.369301], [8.505483, 47.369289], [8.505466, 47.369275], [8.50545, 47.369261], [8.505436, 47.369246], [8.505424, 47.36923], [8.505414, 47.369213], [8.505406, 47.369196], [8.505401, 47.369178], [8.505397, 47.36916], [8.505396, 47.369142], [8.505397, 47.369124], [8.5054, 47.369106], [8.505406, 47.369089], [8.505414, 47.369071], [8.505423, 47.369055], [8.505435, 47.369039], [8.505449, 47.369023], [8.50546, 47.369013], [8.505472, 47.369002], [8.505485, 47.368993], [8.505499, 47.368985], [8.505515, 47.368977], [8.505531, 47.36897], [8.505548, 47.368965], [8.505566, 47.36896], [8.505584, 47.368956], [8.505603, 47.368954], [8.505621, 47.368952], [8.50564, 47.368952], [8.505659, 47.368952], [8.505678, 47.368954], [8.505697, 47.368957], [8.505715, 47.368961], [8.505732, 47.368966], [8.505749, 47.368973], [8.505765, 47.36898], [8.50578, 47.368988], [8.505794, 47.368996], [8.505807, 47.369006], [8.505818, 47.369016], [8.505828, 47.369027], [8.505837, 47.369039], [8.505844, 47.369051], [8.50585, 47.369063], [8.505854, 47.369076], [8.505856, 47.369089], [8.505857, 47.369102], [8.505847, 47.369141], [8.505842, 47.369182], [8.505841, 47.369222], [8.505846, 47.369262], [8.505852, 47.369285], [8.505861, 47.369308], [8.505872, 47.369329], [8.505887, 47.36935], [8.505905, 47.36937], [8.505925, 47.369389]]], "type": "MultiLineString"}, "id": "4454", "properties": {}, "type": "Feature"}, {"bbox": [8.53334, 47.394164, 8.534685, 47.394711], "geometry": {"coordinates": [[[8.53334, 47.394164], [8.53397, 47.39442], [8.534685, 47.394711]]], "type": "MultiLineString"}, "id": "4456", "properties": {}, "type": "Feature"}, {"bbox": [8.544393, 47.368831, 8.544933, 47.369139], "geometry": {"coordinates": [[[8.544393, 47.368831], [8.544933, 47.369139]]], "type": "MultiLineString"}, "id": "4457", "properties": {}, "type": "Feature"}, {"bbox": [8.534951, 47.411606, 8.537817, 47.411838], "geometry": {"coordinates": [[[8.537817, 47.411803], [8.537489, 47.411838], [8.536617, 47.411756], [8.534951, 47.411606]]], "type": "MultiLineString"}, "id": "4458", "properties": {}, "type": "Feature"}, {"bbox": [8.517398, 47.348981, 8.523797, 47.352207], "geometry": {"coordinates": [[[8.523797, 47.352207], [8.523453, 47.352077], [8.523206, 47.351993], [8.522569, 47.35178], [8.521643, 47.351468], [8.520465, 47.35107], [8.519139, 47.35062], [8.51866, 47.350459], [8.51858, 47.350389], [8.517898, 47.349944], [8.517798, 47.349867], [8.517722, 47.349794], [8.517676, 47.349741], [8.517638, 47.349683], [8.517587, 47.349602], [8.517533, 47.349498], [8.517501, 47.349406], [8.517467, 47.349304], [8.517441, 47.349209], [8.51743, 47.349121], [8.517398, 47.348981]]], "type": "MultiLineString"}, "id": "4459", "properties": {}, "type": "Feature"}, {"bbox": [8.584924, 47.356475, 8.586229, 47.356963], "geometry": {"coordinates": [[[8.584924, 47.356475], [8.585405, 47.356672], [8.58554, 47.356734], [8.585795, 47.35679], [8.58584, 47.3568], [8.585894, 47.35681], [8.586186, 47.35694], [8.586229, 47.356963]]], "type": "MultiLineString"}, "id": "4462", "properties": {}, "type": "Feature"}, {"bbox": [8.529236, 47.348519, 8.53154, 47.348606], "geometry": {"coordinates": [[[8.53154, 47.348519], [8.53128, 47.348537], [8.531122, 47.348559], [8.530895, 47.348574], [8.530812, 47.348575], [8.530143, 47.348569], [8.529948, 47.348571], [8.529236, 47.348606]]], "type": "MultiLineString"}, "id": "4463", "properties": {}, "type": "Feature"}, {"bbox": [8.543475, 47.369628, 8.544535, 47.370463], "geometry": {"coordinates": [[[8.543815, 47.370364], [8.543829, 47.370325], [8.543637, 47.37015], [8.543633, 47.370131], [8.544161, 47.369877], [8.544262, 47.369906], [8.544351, 47.369969], [8.544491, 47.369898], [8.544513, 47.369827], [8.544535, 47.369756], [8.544492, 47.369688], [8.544462, 47.369628], [8.544413, 47.369669], [8.544319, 47.369715], [8.544222, 47.369649], [8.543763, 47.369968], [8.543745, 47.36998], [8.543718, 47.369981], [8.543585, 47.369944], [8.543475, 47.370206], [8.543586, 47.370251], [8.543553, 47.370338], [8.543564, 47.370427], [8.543715, 47.370422], [8.543778, 47.370463], [8.543815, 47.370364]]], "type": "MultiLineString"}, "id": "4465", "properties": {}, "type": "Feature"}, {"bbox": [8.506615, 47.4035, 8.515553, 47.404299], "geometry": {"coordinates": [[[8.506615, 47.4035], [8.506817, 47.403579], [8.506941, 47.403626], [8.507095, 47.403687], [8.507208, 47.403725], [8.507329, 47.403746], [8.507457, 47.403749], [8.507794, 47.403736], [8.508133, 47.403717], [8.508191, 47.403713], [8.508387, 47.403706], [8.508586, 47.403705], [8.508786, 47.403712], [8.50923, 47.40374], [8.509239, 47.403741], [8.509245, 47.403742], [8.509494, 47.403762], [8.509754, 47.403792], [8.510238, 47.403859], [8.510613, 47.403903], [8.510628, 47.403904], [8.510815, 47.40392], [8.51101, 47.403932], [8.511207, 47.403937], [8.511405, 47.403949], [8.511601, 47.403967], [8.511797, 47.403991], [8.51224, 47.404056], [8.512563, 47.404129], [8.512903, 47.404199], [8.51316, 47.404242], [8.513426, 47.404268], [8.513501, 47.404273], [8.513577, 47.404278], [8.513724, 47.404287], [8.513903, 47.404298], [8.514009, 47.404299], [8.514117, 47.404285], [8.514122, 47.404284], [8.514306, 47.404251], [8.514339, 47.404245], [8.514459, 47.404237], [8.514523, 47.404236], [8.51488, 47.40419], [8.514894, 47.404189], [8.514985, 47.404172], [8.515111, 47.404139], [8.515177, 47.404121], [8.515194, 47.404115], [8.515321, 47.404069], [8.515531, 47.403965], [8.515553, 47.403956]]], "type": "MultiLineString"}, "id": "4466", "properties": {}, "type": "Feature"}, {"bbox": [8.560088, 47.350387, 8.560988, 47.351252], "geometry": {"coordinates": [[[8.560088, 47.351252], [8.560227, 47.351052], [8.560274, 47.350994], [8.560323, 47.350937], [8.560373, 47.35088], [8.560391, 47.35086], [8.560412, 47.35084], [8.560435, 47.350822], [8.56046, 47.350805], [8.560487, 47.350789], [8.560516, 47.350775], [8.560546, 47.350763], [8.560578, 47.350753], [8.560611, 47.350744], [8.560645, 47.350738], [8.56068, 47.350733], [8.560799, 47.350719], [8.560819, 47.350715], [8.560839, 47.350709], [8.560859, 47.350703], [8.560877, 47.350696], [8.560894, 47.350687], [8.560911, 47.350678], [8.560926, 47.350667], [8.560939, 47.350656], [8.560951, 47.350644], [8.560962, 47.350631], [8.560971, 47.350618], [8.560978, 47.350604], [8.560983, 47.35059], [8.560987, 47.350576], [8.560988, 47.350561], [8.560988, 47.350547], [8.560986, 47.350532], [8.560983, 47.350518], [8.560977, 47.350504], [8.56097, 47.35049], [8.560961, 47.350477], [8.56095, 47.350465], [8.560938, 47.350453], [8.560924, 47.350441], [8.560909, 47.350431], [8.560892, 47.350422], [8.560875, 47.350413], [8.560856, 47.350406], [8.560837, 47.3504], [8.560817, 47.350395], [8.560796, 47.350391], [8.560775, 47.350388], [8.560754, 47.350387], [8.560733, 47.350387], [8.560711, 47.350388], [8.56069, 47.35039], [8.560669, 47.350394], [8.560649, 47.350399], [8.56063, 47.350405], [8.560611, 47.350412], [8.560593, 47.35042], [8.560577, 47.350429], [8.560561, 47.350439], [8.560547, 47.35045], [8.560535, 47.350462], [8.560389, 47.35064], [8.560271, 47.350827], [8.560182, 47.351021], [8.560088, 47.351252]]], "type": "MultiLineString"}, "id": "4470", "properties": {}, "type": "Feature"}, {"bbox": [8.481873, 47.374761, 8.482878, 47.375545], "geometry": {"coordinates": [[[8.482878, 47.375545], [8.482811, 47.375507], [8.48274, 47.375474], [8.482665, 47.375445], [8.482586, 47.37542], [8.482434, 47.375376], [8.482428, 47.375375], [8.482422, 47.375373], [8.482417, 47.375372], [8.482411, 47.375369], [8.482406, 47.375367], [8.482402, 47.375364], [8.482397, 47.375361], [8.482393, 47.375358], [8.48239, 47.375354], [8.482387, 47.375351], [8.482384, 47.375347], [8.482383, 47.375343], [8.482381, 47.37534], [8.48238, 47.375336], [8.48238, 47.375332], [8.48238, 47.375328], [8.482407, 47.375261], [8.482413, 47.375246], [8.482417, 47.37523], [8.48242, 47.375214], [8.482431, 47.375153], [8.482442, 47.375091], [8.48245, 47.37503], [8.48245, 47.375024], [8.482449, 47.375018], [8.482448, 47.375012], [8.482445, 47.375006], [8.482442, 47.375], [8.482438, 47.374994], [8.482434, 47.374989], [8.482428, 47.374984], [8.482422, 47.374979], [8.482416, 47.374975], [8.482408, 47.374971], [8.482401, 47.374968], [8.481873, 47.374761]]], "type": "MultiLineString"}, "id": "4471", "properties": {}, "type": "Feature"}, {"bbox": [8.565871, 47.348567, 8.566393, 47.349763], "geometry": {"coordinates": [[[8.565871, 47.349763], [8.565905, 47.349679], [8.565948, 47.349598], [8.565998, 47.349518], [8.566374, 47.348942], [8.56638, 47.348933], [8.566385, 47.348924], [8.566389, 47.348915], [8.566392, 47.348906], [8.566393, 47.348896], [8.566393, 47.348886], [8.566392, 47.348877], [8.56639, 47.348867], [8.566386, 47.348858], [8.566381, 47.348849], [8.566375, 47.34884], [8.566368, 47.348832], [8.56636, 47.348824], [8.566351, 47.348817], [8.566341, 47.34881], [8.56633, 47.348805], [8.56632, 47.3488], [8.566311, 47.348794], [8.566302, 47.348788], [8.566294, 47.348781], [8.566288, 47.348773], [8.566282, 47.348765], [8.566277, 47.348757], [8.566273, 47.348749], [8.56627, 47.34874], [8.566269, 47.348732], [8.566268, 47.348723], [8.566269, 47.348714], [8.566271, 47.348705], [8.566273, 47.348697], [8.566384, 47.348567]]], "type": "MultiLineString"}, "id": "4473", "properties": {}, "type": "Feature"}, {"bbox": [8.545143, 47.424094, 8.546314, 47.425197], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546307, 47.42519], [8.546301, 47.425183], [8.546296, 47.425176], [8.546292, 47.425168], [8.546289, 47.425161], [8.546267, 47.425018], [8.546263, 47.425001], [8.546257, 47.424984], [8.546249, 47.424968], [8.546238, 47.424952], [8.546226, 47.424937], [8.546039, 47.424654], [8.546018, 47.42464], [8.545994, 47.424627], [8.54597, 47.424617], [8.545943, 47.424607], [8.545916, 47.4246], [8.545888, 47.424594], [8.545859, 47.424589], [8.545829, 47.424587], [8.5458, 47.424587], [8.545715, 47.424608], [8.545447, 47.424632], [8.545372, 47.424515], [8.545319, 47.424523], [8.545184, 47.424314], [8.545275, 47.424286], [8.545143, 47.424094]]], "type": "MultiLineString"}, "id": "4474", "properties": {}, "type": "Feature"}, {"bbox": [8.580193, 47.40656, 8.591631, 47.40949], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.591427, 47.406587], [8.591346, 47.406601], [8.591329, 47.406609], [8.591311, 47.406616], [8.591292, 47.406622], [8.591273, 47.406627], [8.591253, 47.406631], [8.591233, 47.406634], [8.591212, 47.406636], [8.591191, 47.406636], [8.590284, 47.406731], [8.588983, 47.406866], [8.588876, 47.40688], [8.588773, 47.406901], [8.588672, 47.406929], [8.588523, 47.406986], [8.588383, 47.407052], [8.588253, 47.407127], [8.588134, 47.407211], [8.588075, 47.407261], [8.588016, 47.40731], [8.587955, 47.407359], [8.58784, 47.407418], [8.587809, 47.407458], [8.587813, 47.407464], [8.587816, 47.40747], [8.587819, 47.407477], [8.587821, 47.407483], [8.587822, 47.40749], [8.587822, 47.407497], [8.587821, 47.407504], [8.587819, 47.40751], [8.587817, 47.407517], [8.587814, 47.407523], [8.58781, 47.407529], [8.587771, 47.407578], [8.587726, 47.407625], [8.587674, 47.407668], [8.587617, 47.407707], [8.587554, 47.407743], [8.587487, 47.407775], [8.587396, 47.407814], [8.587301, 47.407849], [8.587202, 47.407878], [8.586872, 47.407956], [8.585638, 47.408233], [8.584304, 47.408544], [8.582631, 47.408926], [8.580824, 47.409342], [8.580408, 47.409436], [8.580366, 47.409452], [8.580193, 47.40949]]], "type": "MultiLineString"}, "id": "4476", "properties": {}, "type": "Feature"}, {"bbox": [8.490952, 47.372265, 8.492161, 47.37316], "geometry": {"coordinates": [[[8.490952, 47.372265], [8.490977, 47.372277], [8.491002, 47.372289], [8.491026, 47.372301], [8.491182, 47.372388], [8.491341, 47.372473], [8.491503, 47.372555], [8.491544, 47.372573], [8.491583, 47.372593], [8.491618, 47.372616], [8.49165, 47.372641], [8.491688, 47.372684], [8.491726, 47.372726], [8.491764, 47.372768], [8.491894, 47.3729], [8.492026, 47.373031], [8.492161, 47.37316]]], "type": "MultiLineString"}, "id": "4477", "properties": {}, "type": "Feature"}, {"bbox": [8.498374, 47.420404, 8.498766, 47.421091], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.49876, 47.421039], [8.498766, 47.420988], [8.498766, 47.420936], [8.498759, 47.420884], [8.498747, 47.420832], [8.498635, 47.420685], [8.498511, 47.420542], [8.498374, 47.420404]]], "type": "MultiLineString"}, "id": "4481", "properties": {}, "type": "Feature"}, {"bbox": [8.543928, 47.430553, 8.547553, 47.431194], "geometry": {"coordinates": [[[8.547553, 47.430553], [8.547446, 47.430586], [8.547343, 47.430626], [8.547246, 47.430672], [8.54714, 47.430726], [8.547032, 47.430778], [8.54692, 47.430828], [8.546836, 47.430865], [8.54675, 47.430902], [8.546664, 47.430938], [8.546622, 47.430954], [8.546578, 47.430969], [8.546534, 47.430982], [8.546225, 47.43108], [8.546214, 47.431083], [8.546202, 47.431085], [8.54619, 47.431087], [8.546179, 47.431088], [8.546167, 47.431088], [8.546155, 47.431087], [8.546143, 47.431086], [8.546131, 47.431084], [8.54612, 47.431081], [8.54577, 47.430992], [8.545681, 47.430991], [8.54417, 47.431194], [8.54412, 47.431193], [8.54407, 47.431189], [8.544021, 47.431181], [8.543974, 47.431171], [8.543928, 47.431157]]], "type": "MultiLineString"}, "id": "4482", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.423024, 8.541857, 47.42424], "geometry": {"coordinates": [[[8.540226, 47.42424], [8.540291, 47.424206], [8.541111, 47.423827], [8.541114, 47.423826], [8.541117, 47.423824], [8.54112, 47.423821], [8.541122, 47.423819], [8.541124, 47.423817], [8.541125, 47.423814], [8.541126, 47.423812], [8.541127, 47.423809], [8.541128, 47.423806], [8.541128, 47.423804], [8.541128, 47.423801], [8.541083, 47.423711], [8.541043, 47.423619], [8.541009, 47.423527], [8.541008, 47.423525], [8.541007, 47.423522], [8.541006, 47.42352], [8.541006, 47.423517], [8.541006, 47.423515], [8.541007, 47.423512], [8.541007, 47.42351], [8.541009, 47.423507], [8.54101, 47.423505], [8.541012, 47.423502], [8.541014, 47.4235], [8.541016, 47.423498], [8.541018, 47.423496], [8.541021, 47.423495], [8.541024, 47.423493], [8.541027, 47.423491], [8.54103, 47.42349], [8.541603, 47.423263], [8.541659, 47.423236], [8.541711, 47.423207], [8.54176, 47.423175], [8.541776, 47.423144], [8.541794, 47.423113], [8.541811, 47.423082], [8.541825, 47.423062], [8.541841, 47.423043], [8.541857, 47.423024]]], "type": "MultiLineString"}, "id": "4483", "properties": {}, "type": "Feature"}, {"bbox": [8.497519, 47.363765, 8.498538, 47.365014], "geometry": {"coordinates": [[[8.498445, 47.363765], [8.498303, 47.363883], [8.498295, 47.36389], [8.498288, 47.363898], [8.498283, 47.363906], [8.498278, 47.363914], [8.498274, 47.363922], [8.498272, 47.363931], [8.49827, 47.36394], [8.49827, 47.363949], [8.498271, 47.363958], [8.498273, 47.363967], [8.498276, 47.363975], [8.49828, 47.363984], [8.498285, 47.363992], [8.498291, 47.364], [8.498298, 47.364007], [8.498306, 47.364014], [8.498315, 47.364021], [8.498503, 47.364135], [8.49851, 47.364139], [8.498515, 47.364143], [8.49852, 47.364147], [8.498525, 47.364152], [8.498529, 47.364157], [8.498532, 47.364162], [8.498535, 47.364167], [8.498537, 47.364173], [8.498538, 47.364179], [8.498538, 47.364184], [8.498538, 47.36419], [8.498537, 47.364196], [8.498535, 47.364201], [8.498532, 47.364206], [8.498529, 47.364212], [8.498525, 47.364217], [8.49852, 47.364221], [8.498515, 47.364226], [8.498426, 47.36431], [8.497796, 47.364793], [8.497542, 47.364882], [8.497523, 47.364894], [8.497519, 47.365014]]], "type": "MultiLineString"}, "id": "4484", "properties": {}, "type": "Feature"}, {"bbox": [8.49412, 47.362301, 8.495946, 47.363848], "geometry": {"coordinates": [[[8.495946, 47.362301], [8.49593, 47.362316], [8.495894, 47.362353], [8.495887, 47.362358], [8.495881, 47.362363], [8.495876, 47.362369], [8.495871, 47.362375], [8.495867, 47.362382], [8.495865, 47.362386], [8.495862, 47.36239], [8.495858, 47.362394], [8.495854, 47.362398], [8.49585, 47.362402], [8.495845, 47.362405], [8.495839, 47.36241], [8.495833, 47.362415], [8.495827, 47.362421], [8.495823, 47.362427], [8.495819, 47.362433], [8.495794, 47.36246], [8.49574, 47.362486], [8.495715, 47.362498], [8.495689, 47.36251], [8.495663, 47.362522], [8.495613, 47.362552], [8.495563, 47.362582], [8.495511, 47.362611], [8.495459, 47.362638], [8.495339, 47.362704], [8.495301, 47.362727], [8.495263, 47.36275], [8.495227, 47.362774], [8.495194, 47.362796], [8.495162, 47.362818], [8.495131, 47.362841], [8.495059, 47.362893], [8.494987, 47.362946], [8.494915, 47.362999], [8.494908, 47.363007], [8.494901, 47.363015], [8.494896, 47.363024], [8.494892, 47.363033], [8.494889, 47.363042], [8.494888, 47.363051], [8.494887, 47.363061], [8.494888, 47.36307], [8.49489, 47.36308], [8.494893, 47.363089], [8.4949, 47.363107], [8.49491, 47.363124], [8.494921, 47.363141], [8.494935, 47.363157], [8.494951, 47.363173], [8.494979, 47.363196], [8.495009, 47.363218], [8.49504, 47.363239], [8.494877, 47.363376], [8.494802, 47.363431], [8.494522, 47.363592], [8.4945, 47.363606], [8.494437, 47.363663], [8.494428, 47.363671], [8.494418, 47.363677], [8.494407, 47.363683], [8.494396, 47.363689], [8.494384, 47.363694], [8.49431, 47.363718], [8.494271, 47.363736], [8.494208, 47.363789], [8.494163, 47.363839], [8.49412, 47.363848]]], "type": "MultiLineString"}, "id": "4485", "properties": {}, "type": "Feature"}, {"bbox": [8.531848, 47.337091, 8.532364, 47.337541], "geometry": {"coordinates": [[[8.532364, 47.337541], [8.532276, 47.337521], [8.531933, 47.337442], [8.531924, 47.33744], [8.531915, 47.337437], [8.531906, 47.337434], [8.531898, 47.33743], [8.53189, 47.337426], [8.531883, 47.337421], [8.531877, 47.337416], [8.531871, 47.337411], [8.531866, 47.337405], [8.531862, 47.337399], [8.531858, 47.337393], [8.531855, 47.337386], [8.531854, 47.33738], [8.531853, 47.337373], [8.531852, 47.337366], [8.531848, 47.337223], [8.531881, 47.337091]]], "type": "MultiLineString"}, "id": "4486", "properties": {}, "type": "Feature"}, {"bbox": [8.572687, 47.411388, 8.573165, 47.4117], "geometry": {"coordinates": [[[8.572687, 47.4117], [8.572701, 47.411662], [8.572719, 47.411626], [8.572741, 47.411591], [8.572768, 47.411557], [8.572799, 47.411524], [8.572834, 47.411494], [8.572872, 47.411465], [8.572914, 47.411439], [8.572959, 47.411415], [8.573089, 47.411388], [8.573165, 47.41139]]], "type": "MultiLineString"}, "id": "4487", "properties": {}, "type": "Feature"}, {"bbox": [8.591265, 47.370916, 8.600248, 47.372476], "geometry": {"coordinates": [[[8.591265, 47.372476], [8.591285, 47.372431], [8.591574, 47.372139], [8.591593, 47.372122], [8.591614, 47.372106], [8.591637, 47.372091], [8.591662, 47.372078], [8.591689, 47.372066], [8.591717, 47.372056], [8.592091, 47.371939], [8.59214, 47.371925], [8.59219, 47.371915], [8.592242, 47.371907], [8.592295, 47.371902], [8.592605, 47.371884], [8.592656, 47.371879], [8.592706, 47.371872], [8.592755, 47.371862], [8.592803, 47.371849], [8.592849, 47.371834], [8.593079, 47.371749], [8.59312, 47.371736], [8.593162, 47.371725], [8.593205, 47.371717], [8.59325, 47.371712], [8.593295, 47.371709], [8.593629, 47.371699], [8.593667, 47.371699], [8.593704, 47.371702], [8.593741, 47.371707], [8.593823, 47.371721], [8.593848, 47.371725], [8.593873, 47.371728], [8.593898, 47.37173], [8.593934, 47.371732], [8.593971, 47.371732], [8.594007, 47.371729], [8.59441, 47.371697], [8.594491, 47.371688], [8.594571, 47.371674], [8.594649, 47.371657], [8.594689, 47.371648], [8.594731, 47.371641], [8.594773, 47.371636], [8.594815, 47.371634], [8.594858, 47.371634], [8.594875, 47.371635], [8.594892, 47.371636], [8.594909, 47.371638], [8.595056, 47.371652], [8.595144, 47.371659], [8.595232, 47.371664], [8.595321, 47.371667], [8.595673, 47.371673], [8.595789, 47.371674], [8.595906, 47.371674], [8.596023, 47.371672], [8.596665, 47.371656], [8.596676, 47.371643], [8.596687, 47.37163], [8.596841, 47.371594], [8.596869, 47.371588], [8.596898, 47.371584], [8.596927, 47.371582], [8.596956, 47.371582], [8.596986, 47.371583], [8.597015, 47.371586], [8.597143, 47.371604], [8.597182, 47.371609], [8.597222, 47.371611], [8.597262, 47.371611], [8.597301, 47.371609], [8.597341, 47.371604], [8.597379, 47.371597], [8.597416, 47.371588], [8.597443, 47.371582], [8.597469, 47.371577], [8.597497, 47.371574], [8.597525, 47.371573], [8.597579, 47.371571], [8.597632, 47.371566], [8.597686, 47.37156], [8.597875, 47.371532], [8.597956, 47.371519], [8.598036, 47.371503], [8.598114, 47.371483], [8.598219, 47.371455], [8.598282, 47.371439], [8.598345, 47.371424], [8.598408, 47.371412], [8.598533, 47.371388], [8.598586, 47.371377], [8.598638, 47.371363], [8.598688, 47.371346], [8.598717, 47.371335], [8.5992, 47.371169], [8.59929, 47.371142], [8.599382, 47.371119], [8.599477, 47.371102], [8.599573, 47.371091], [8.599638, 47.371083], [8.599702, 47.371072], [8.599764, 47.371057], [8.599823, 47.371038], [8.600105, 47.370941], [8.600132, 47.370932], [8.60016, 47.370926], [8.600189, 47.370921], [8.600219, 47.370917], [8.600248, 47.370916]]], "type": "MultiLineString"}, "id": "4491", "properties": {}, "type": "Feature"}, {"bbox": [8.542781, 47.37009, 8.543312, 47.374355], "geometry": {"coordinates": [[[8.543312, 47.37009], [8.543191, 47.370315], [8.543151, 47.370399], [8.543114, 47.370484], [8.543081, 47.370569], [8.543063, 47.370619], [8.543046, 47.37067], [8.543031, 47.370721], [8.543016, 47.370773], [8.543003, 47.370824], [8.542991, 47.370875], [8.542931, 47.371181], [8.542904, 47.371322], [8.542889, 47.3714], [8.542876, 47.371477], [8.542863, 47.371555], [8.542852, 47.371633], [8.542842, 47.371711], [8.542833, 47.371788], [8.542831, 47.371808], [8.542829, 47.371827], [8.542827, 47.371846], [8.54281, 47.372133], [8.54279, 47.372474], [8.542781, 47.372622], [8.542783, 47.37279], [8.542785, 47.372923], [8.542789, 47.373178], [8.54279, 47.373232], [8.542793, 47.373299], [8.542798, 47.373365], [8.542804, 47.373431], [8.542809, 47.37348], [8.542815, 47.373529], [8.542822, 47.373577], [8.542833, 47.373646], [8.542845, 47.373714], [8.542859, 47.373782], [8.542863, 47.373797], [8.542866, 47.373812], [8.54287, 47.373826], [8.542903, 47.373917], [8.54295, 47.374048], [8.542965, 47.374106], [8.543025, 47.374355]]], "type": "MultiLineString"}, "id": "4499", "properties": {}, "type": "Feature"}, {"bbox": [8.505582, 47.416259, 8.506538, 47.416497], "geometry": {"coordinates": [[[8.506538, 47.416369], [8.506515, 47.416363], [8.506492, 47.416358], [8.506468, 47.416354], [8.506444, 47.416352], [8.50642, 47.416351], [8.506396, 47.416351], [8.506371, 47.416353], [8.50618, 47.416393], [8.505993, 47.416439], [8.505808, 47.416492], [8.5058, 47.416494], [8.505793, 47.416495], [8.505785, 47.416497], [8.505777, 47.416497], [8.505768, 47.416497], [8.50576, 47.416497], [8.505752, 47.416496], [8.505744, 47.416495], [8.505737, 47.416493], [8.505729, 47.416491], [8.505722, 47.416488], [8.505715, 47.416485], [8.505709, 47.416482], [8.505703, 47.416478], [8.505658, 47.416406], [8.505618, 47.416333], [8.505582, 47.416259]]], "type": "MultiLineString"}, "id": "4502", "properties": {}, "type": "Feature"}, {"bbox": [8.47799, 47.406695, 8.481077, 47.407881], "geometry": {"coordinates": [[[8.47799, 47.407881], [8.478059, 47.4078], [8.478139, 47.407724], [8.478229, 47.407653], [8.478327, 47.407588], [8.478434, 47.40753], [8.478549, 47.407478], [8.47867, 47.407434], [8.478815, 47.407389], [8.478964, 47.407349], [8.479116, 47.407316], [8.479296, 47.407269], [8.479477, 47.407223], [8.479657, 47.407177], [8.4798, 47.407136], [8.479943, 47.407097], [8.480088, 47.407061], [8.480222, 47.407019], [8.480355, 47.406974], [8.480487, 47.406929], [8.480688, 47.40685], [8.481077, 47.406695]]], "type": "MultiLineString"}, "id": "4503", "properties": {}, "type": "Feature"}, {"bbox": [8.515568, 47.42907, 8.519068, 47.429494], "geometry": {"coordinates": [[[8.519068, 47.42907], [8.517013, 47.429076], [8.517004, 47.429078], [8.516996, 47.42908], [8.516988, 47.429083], [8.51698, 47.429086], [8.516972, 47.42909], [8.516965, 47.429094], [8.516959, 47.429099], [8.516953, 47.429104], [8.516948, 47.429109], [8.516944, 47.429114], [8.516941, 47.42912], [8.516938, 47.429126], [8.516936, 47.429132], [8.516935, 47.429138], [8.516934, 47.429145], [8.516931, 47.429413], [8.516928, 47.429422], [8.516924, 47.42943], [8.516919, 47.429438], [8.516913, 47.429446], [8.516906, 47.429453], [8.516898, 47.42946], [8.516889, 47.429466], [8.51688, 47.429472], [8.51687, 47.429477], [8.516859, 47.429482], [8.516847, 47.429485], [8.516836, 47.429489], [8.516823, 47.429491], [8.516811, 47.429493], [8.516798, 47.429494], [8.516785, 47.429494], [8.515568, 47.429489]]], "type": "MultiLineString"}, "id": "4505", "properties": {}, "type": "Feature"}, {"bbox": [8.546609, 47.41996, 8.547581, 47.420305], "geometry": {"coordinates": [[[8.546609, 47.41996], [8.547391, 47.4203], [8.547405, 47.420302], [8.547419, 47.420304], [8.547434, 47.420305], [8.547448, 47.420305], [8.547463, 47.420304], [8.547477, 47.420302], [8.547491, 47.420299], [8.547505, 47.420296], [8.547518, 47.420291], [8.54753, 47.420286], [8.547542, 47.420281], [8.547553, 47.420274], [8.547563, 47.420267], [8.547572, 47.420259], [8.547581, 47.420251]]], "type": "MultiLineString"}, "id": "4506", "properties": {}, "type": "Feature"}, {"bbox": [8.586239, 47.406817, 8.588811, 47.40742], "geometry": {"coordinates": [[[8.586239, 47.407087], [8.586394, 47.407109], [8.586545, 47.407139], [8.586693, 47.407178], [8.586836, 47.407224], [8.586973, 47.407278], [8.58754, 47.407417], [8.587568, 47.407419], [8.587596, 47.40742], [8.587624, 47.407419], [8.587652, 47.407416], [8.58768, 47.407412], [8.587706, 47.407406], [8.587732, 47.407399], [8.587757, 47.40739], [8.587781, 47.407379], [8.587803, 47.407367], [8.587913, 47.407264], [8.588037, 47.407168], [8.588172, 47.40708], [8.588318, 47.407], [8.588474, 47.406929], [8.588639, 47.406868], [8.588811, 47.406817]]], "type": "MultiLineString"}, "id": "4507", "properties": {}, "type": "Feature"}, {"bbox": [8.499816, 47.361458, 8.502794, 47.362917], "geometry": {"coordinates": [[[8.502794, 47.361458], [8.502747, 47.361497], [8.502406, 47.36178], [8.502361, 47.361816], [8.502339, 47.361831], [8.502318, 47.361847], [8.502296, 47.361862], [8.502253, 47.361891], [8.50219, 47.361933], [8.502104, 47.361985], [8.502046, 47.362018], [8.501987, 47.362049], [8.501925, 47.362079], [8.501748, 47.36216], [8.501684, 47.362187], [8.501619, 47.362214], [8.501553, 47.36224], [8.501422, 47.362286], [8.501288, 47.362329], [8.501151, 47.36237], [8.501057, 47.362394], [8.500962, 47.362418], [8.500866, 47.36244], [8.500746, 47.362468], [8.50042, 47.362555], [8.500343, 47.362576], [8.499843, 47.362899], [8.499816, 47.362917]]], "type": "MultiLineString"}, "id": "4508", "properties": {}, "type": "Feature"}, {"bbox": [8.514108, 47.331906, 8.515218, 47.332186], "geometry": {"coordinates": [[[8.514108, 47.332127], [8.514165, 47.33211], [8.514181, 47.332116], [8.514219, 47.332181], [8.514231, 47.332186], [8.51433, 47.332165], [8.514372, 47.332156], [8.514414, 47.332146], [8.514456, 47.332136], [8.51466, 47.332078], [8.514699, 47.332068], [8.514739, 47.332059], [8.51478, 47.332052], [8.515132, 47.331998], [8.51514, 47.331996], [8.515149, 47.331994], [8.515157, 47.331991], [8.515164, 47.331988], [8.515172, 47.331985], [8.515179, 47.331981], [8.515185, 47.331977], [8.515191, 47.331972], [8.515196, 47.331968], [8.515202, 47.331962], [8.515206, 47.331955], [8.515209, 47.331949], [8.515212, 47.331942], [8.515218, 47.331915], [8.515213, 47.331906]]], "type": "MultiLineString"}, "id": "4509", "properties": {}, "type": "Feature"}, {"bbox": [8.562586, 47.414255, 8.56307, 47.41532], "geometry": {"coordinates": [[[8.56307, 47.414255], [8.563068, 47.414394], [8.563051, 47.414532], [8.563017, 47.414669], [8.562969, 47.414804], [8.562934, 47.414874], [8.562899, 47.414944], [8.562865, 47.415014], [8.562775, 47.415117], [8.562682, 47.415219], [8.562586, 47.41532]]], "type": "MultiLineString"}, "id": "4510", "properties": {}, "type": "Feature"}, {"bbox": [8.505559, 47.398184, 8.505857, 47.398541], "geometry": {"coordinates": [[[8.505566, 47.398184], [8.50556, 47.398206], [8.50556, 47.398208], [8.505559, 47.398211], [8.505559, 47.398213], [8.50556, 47.398215], [8.50556, 47.398218], [8.505561, 47.39822], [8.505562, 47.398222], [8.505564, 47.398224], [8.50566, 47.39833], [8.505758, 47.398436], [8.505857, 47.398541]]], "type": "MultiLineString"}, "id": "4513", "properties": {}, "type": "Feature"}, {"bbox": [8.522294, 47.362963, 8.527918, 47.369145], "geometry": {"coordinates": [[[8.527918, 47.369145], [8.527873, 47.368989], [8.52771, 47.368854], [8.526833, 47.368281], [8.526134, 47.367821], [8.525404, 47.367344], [8.524415, 47.366658], [8.524167, 47.366457], [8.523925, 47.366248], [8.52381, 47.36621], [8.523779, 47.366187], [8.523414, 47.36586], [8.523372, 47.365822], [8.523371, 47.365766], [8.52322, 47.365548], [8.523166, 47.365417], [8.523163, 47.365375], [8.522969, 47.365072], [8.522812, 47.364775], [8.522738, 47.364595], [8.522682, 47.364435], [8.522548, 47.363958], [8.522499, 47.363682], [8.522472, 47.363428], [8.52245, 47.363304], [8.522294, 47.362963]]], "type": "MultiLineString"}, "id": "4514", "properties": {}, "type": "Feature"}, {"bbox": [8.485049, 47.402742, 8.485836, 47.403912], "geometry": {"coordinates": [[[8.485836, 47.403885], [8.485597, 47.403911], [8.485584, 47.403912], [8.485572, 47.403912], [8.48556, 47.403911], [8.485548, 47.403909], [8.485536, 47.403907], [8.485524, 47.403904], [8.485513, 47.4039], [8.485503, 47.403896], [8.485493, 47.403891], [8.485483, 47.403886], [8.485475, 47.403879], [8.485467, 47.403873], [8.485304, 47.4037], [8.485222, 47.403629], [8.485139, 47.403559], [8.485053, 47.403491], [8.485052, 47.403489], [8.485051, 47.403487], [8.48505, 47.403486], [8.485049, 47.403484], [8.485049, 47.403482], [8.485049, 47.40348], [8.485049, 47.403478], [8.485049, 47.403477], [8.48505, 47.403475], [8.48505, 47.403473], [8.485051, 47.403471], [8.485052, 47.40347], [8.485054, 47.403468], [8.485055, 47.403467], [8.485057, 47.403465], [8.485216, 47.403313], [8.485239, 47.403292], [8.485263, 47.403272], [8.485289, 47.403252], [8.485575, 47.403017], [8.485575, 47.403017], [8.485576, 47.403016], [8.485577, 47.403015], [8.485577, 47.403014], [8.485577, 47.403013], [8.485577, 47.403012], [8.485577, 47.403012], [8.485577, 47.403011], [8.485577, 47.40301], [8.485577, 47.403009], [8.485576, 47.403008], [8.485576, 47.403007], [8.485575, 47.403006], [8.485574, 47.403006], [8.485574, 47.403005], [8.485573, 47.403004], [8.485572, 47.403004], [8.485571, 47.403003], [8.485569, 47.403003], [8.485568, 47.403002], [8.485567, 47.403002], [8.485566, 47.403002], [8.485564, 47.403002], [8.485563, 47.403002], [8.485562, 47.403002], [8.48556, 47.403002], [8.485559, 47.403002], [8.485558, 47.403002], [8.485339, 47.403076], [8.485338, 47.403076], [8.485337, 47.403076], [8.485336, 47.403076], [8.485335, 47.403076], [8.485334, 47.403076], [8.485333, 47.403076], [8.485332, 47.403075], [8.485331, 47.403075], [8.48533, 47.403075], [8.485329, 47.403074], [8.485328, 47.403074], [8.485328, 47.403073], [8.485327, 47.403073], [8.485326, 47.403072], [8.485326, 47.403072], [8.485325, 47.403071], [8.485325, 47.403071], [8.485325, 47.40307], [8.485325, 47.403069], [8.485324, 47.403069], [8.485324, 47.403068], [8.485325, 47.403067], [8.485325, 47.403067], [8.485325, 47.403066], [8.485325, 47.403065], [8.485326, 47.403065], [8.485376, 47.403032], [8.485378, 47.403031], [8.485379, 47.40303], [8.48538, 47.403029], [8.485382, 47.403028], [8.485383, 47.403027], [8.485384, 47.403026], [8.485384, 47.403024], [8.485385, 47.403023], [8.485385, 47.403022], [8.485385, 47.40302], [8.485385, 47.403019], [8.485385, 47.403017], [8.485346, 47.402857], [8.485345, 47.402853], [8.485345, 47.402849], [8.485345, 47.402844], [8.485346, 47.40284], [8.485347, 47.402836], [8.485349, 47.402831], [8.485351, 47.402827], [8.485354, 47.402823], [8.485358, 47.40282], [8.485363, 47.402811], [8.485366, 47.402803], [8.485369, 47.402794], [8.485371, 47.402786], [8.485371, 47.402777], [8.485371, 47.402768], [8.485369, 47.402759], [8.485366, 47.402751], [8.485362, 47.402742]]], "type": "MultiLineString"}, "id": "4516", "properties": {}, "type": "Feature"}, {"bbox": [8.552605, 47.392982, 8.571109, 47.398671], "geometry": {"coordinates": [[[8.552605, 47.395493], [8.552721, 47.395568], [8.552882, 47.395598], [8.553123, 47.395644], [8.554398, 47.395884], [8.554446, 47.395894], [8.554492, 47.395907], [8.554537, 47.395923], [8.55458, 47.395941], [8.55462, 47.395961], [8.554658, 47.395983], [8.554693, 47.396008], [8.554725, 47.396034], [8.554933, 47.39622], [8.555892, 47.397112], [8.556423, 47.397617], [8.556714, 47.397883], [8.556752, 47.397915], [8.556794, 47.397945], [8.556839, 47.397972], [8.556887, 47.397996], [8.556939, 47.398018], [8.556993, 47.398036], [8.557048, 47.398051], [8.558186, 47.398325], [8.559327, 47.39862], [8.559428, 47.398642], [8.559532, 47.398658], [8.559637, 47.398668], [8.559743, 47.398671], [8.559849, 47.398667], [8.559954, 47.398657], [8.560058, 47.39864], [8.560159, 47.398617], [8.560256, 47.398588], [8.561146, 47.398286], [8.561708, 47.398073], [8.562078, 47.397928], [8.562115, 47.397913], [8.562152, 47.397898], [8.562188, 47.397883], [8.562246, 47.397859], [8.562284, 47.397842], [8.562359, 47.397808], [8.562433, 47.397774], [8.562506, 47.397738], [8.563396, 47.397294], [8.564288, 47.396854], [8.565345, 47.396338], [8.565999, 47.395999], [8.566091, 47.39595], [8.56618, 47.395898], [8.566266, 47.395844], [8.567077, 47.395313], [8.56719, 47.39524], [8.567209, 47.395228], [8.567247, 47.3952], [8.570019, 47.393145], [8.570063, 47.393115], [8.57011, 47.393088], [8.57016, 47.393063], [8.570213, 47.393042], [8.570268, 47.393023], [8.570326, 47.393007], [8.570385, 47.392995], [8.570416, 47.39299], [8.570447, 47.392986], [8.570478, 47.392983], [8.570527, 47.392982], [8.570576, 47.392983], [8.570625, 47.392987], [8.570674, 47.392994], [8.570721, 47.393004], [8.570766, 47.393016], [8.57081, 47.393031], [8.570852, 47.393049], [8.570892, 47.393069], [8.570929, 47.393091], [8.570963, 47.393116], [8.570993, 47.393142], [8.57102, 47.39317], [8.571044, 47.393199], [8.571063, 47.39323], [8.571082, 47.393267], [8.571096, 47.393305], [8.571105, 47.393344], [8.571109, 47.393383], [8.571108, 47.393423], [8.571102, 47.393462], [8.571092, 47.3935], [8.571092, 47.3935], [8.57082, 47.394272], [8.57082, 47.394272], [8.570811, 47.394291], [8.570801, 47.394311], [8.570788, 47.394329], [8.570772, 47.394347], [8.570755, 47.394364], [8.570613, 47.394488], [8.570545, 47.394551], [8.570533, 47.394564], [8.570523, 47.394577], [8.570515, 47.39459], [8.570508, 47.394604], [8.570503, 47.394618], [8.5705, 47.394633], [8.570499, 47.394648], [8.5705, 47.394663], [8.570503, 47.394677], [8.570508, 47.394691], [8.570514, 47.394705], [8.570589, 47.394841]]], "type": "MultiLineString"}, "id": "4517", "properties": {}, "type": "Feature"}, {"bbox": [8.449228, 47.379966, 8.451923, 47.380518], "geometry": {"coordinates": [[[8.451923, 47.380518], [8.451729, 47.380512], [8.451689, 47.38051], [8.45165, 47.380505], [8.451611, 47.380499], [8.451574, 47.38049], [8.451538, 47.380479], [8.45133, 47.380409], [8.451289, 47.380397], [8.451247, 47.380386], [8.451204, 47.380378], [8.451085, 47.380359], [8.451043, 47.380351], [8.451002, 47.380341], [8.450962, 47.38033], [8.450699, 47.380247], [8.450664, 47.380236], [8.45063, 47.380224], [8.450596, 47.380211], [8.450479, 47.380164], [8.450435, 47.380148], [8.45039, 47.380134], [8.450343, 47.380123], [8.450295, 47.380115], [8.450246, 47.38011], [8.450197, 47.380107], [8.450029, 47.380102], [8.449981, 47.380102], [8.449933, 47.380105], [8.449886, 47.380111], [8.449857, 47.380115], [8.449827, 47.380117], [8.449797, 47.380117], [8.44941, 47.38011], [8.449395, 47.380109], [8.449381, 47.380108], [8.449367, 47.380106], [8.449354, 47.380102], [8.449341, 47.380098], [8.449328, 47.380094], [8.449316, 47.380088], [8.449305, 47.380082], [8.449295, 47.380075], [8.449286, 47.380068], [8.449278, 47.38006], [8.449271, 47.380051], [8.449264, 47.380043], [8.44926, 47.380033], [8.449228, 47.379966]]], "type": "MultiLineString"}, "id": "4523", "properties": {}, "type": "Feature"}, {"bbox": [8.588086, 47.365547, 8.590993, 47.369318], "geometry": {"coordinates": [[[8.588094, 47.365547], [8.588086, 47.365594], [8.588249, 47.365628], [8.588995, 47.365786], [8.589209, 47.365841], [8.589233, 47.36585], [8.589363, 47.365919], [8.589659, 47.366153], [8.589771, 47.366369], [8.589859, 47.366571], [8.589918, 47.366712], [8.589935, 47.366761], [8.590016, 47.366995], [8.590102, 47.36726], [8.590212, 47.36758], [8.590315, 47.367864], [8.590373, 47.367973], [8.590668, 47.368292], [8.59074, 47.368376], [8.5908, 47.368463], [8.590847, 47.368554], [8.590892, 47.368667], [8.590935, 47.36878], [8.590975, 47.368894], [8.590987, 47.36894], [8.590993, 47.368986], [8.590992, 47.369032], [8.590985, 47.369078], [8.590972, 47.369124], [8.59096, 47.369158], [8.590952, 47.369193], [8.590948, 47.369228], [8.590946, 47.369238], [8.590943, 47.369248], [8.590939, 47.369257], [8.590933, 47.369267], [8.590927, 47.369276], [8.590919, 47.369284], [8.59091, 47.369292], [8.5909, 47.3693], [8.590889, 47.369306], [8.590877, 47.369313], [8.590865, 47.369318]]], "type": "MultiLineString"}, "id": "4524", "properties": {}, "type": "Feature"}, {"bbox": [8.595477, 47.358432, 8.595765, 47.358989], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595561, 47.358494], [8.595687, 47.358551], [8.595702, 47.35856], [8.595715, 47.35857], [8.595727, 47.358581], [8.595738, 47.358593], [8.595746, 47.358605], [8.595754, 47.358618], [8.595759, 47.358631], [8.595763, 47.358645], [8.595765, 47.358658], [8.595765, 47.358672], [8.595764, 47.358686], [8.595761, 47.358699], [8.595756, 47.358713], [8.595749, 47.358725], [8.595741, 47.358738], [8.595595, 47.358989]]], "type": "MultiLineString"}, "id": "4525", "properties": {}, "type": "Feature"}, {"bbox": [8.56286, 47.354942, 8.563198, 47.355217], "geometry": {"coordinates": [[[8.563196, 47.355217], [8.563198, 47.355213], [8.562964, 47.355154], [8.563018, 47.355023], [8.563008, 47.355002], [8.56286, 47.354942]]], "type": "MultiLineString"}, "id": "4528", "properties": {}, "type": "Feature"}, {"bbox": [8.523411, 47.370704, 8.523673, 47.371039], "geometry": {"coordinates": [[[8.52367, 47.370704], [8.523672, 47.370709], [8.523673, 47.370715], [8.523673, 47.370721], [8.523673, 47.370727], [8.523671, 47.370733], [8.52367, 47.370739], [8.523667, 47.370744], [8.523664, 47.37075], [8.52366, 47.370755], [8.523655, 47.37076], [8.52349, 47.370944], [8.523411, 47.371039]]], "type": "MultiLineString"}, "id": "4536", "properties": {}, "type": "Feature"}, {"bbox": [8.543265, 47.410932, 8.545573, 47.411625], "geometry": {"coordinates": [[[8.543265, 47.410932], [8.543323, 47.410957], [8.543382, 47.410981], [8.543441, 47.411004], [8.544285, 47.411274], [8.545126, 47.411584], [8.545161, 47.411596], [8.545197, 47.411606], [8.545234, 47.411614], [8.545272, 47.41162], [8.545311, 47.411624], [8.54535, 47.411625], [8.545389, 47.411624], [8.545427, 47.411621], [8.545465, 47.411615], [8.545502, 47.411607], [8.545539, 47.411597], [8.545573, 47.411585]]], "type": "MultiLineString"}, "id": "4544", "properties": {}, "type": "Feature"}, {"bbox": [8.50159, 47.427234, 8.506445, 47.434636], "geometry": {"coordinates": [[[8.506445, 47.427234], [8.506313, 47.427393], [8.50628, 47.427434], [8.506249, 47.427475], [8.506218, 47.427516], [8.506112, 47.42768], [8.506011, 47.427845], [8.505916, 47.428011], [8.505623, 47.428526], [8.505429, 47.428863], [8.505366, 47.42896], [8.50529, 47.429053], [8.505202, 47.42914], [8.505101, 47.429222], [8.50499, 47.429296], [8.504599, 47.429543], [8.504178, 47.429845], [8.504001, 47.42996], [8.503819, 47.430071], [8.503632, 47.430179], [8.503486, 47.430264], [8.50335, 47.430357], [8.503226, 47.430458], [8.503114, 47.430565], [8.502994, 47.430714], [8.502889, 47.430868], [8.502799, 47.431026], [8.502741, 47.431159], [8.502676, 47.43129], [8.502603, 47.431419], [8.502233, 47.43189], [8.502016, 47.432202], [8.501697, 47.432638], [8.501659, 47.432696], [8.501628, 47.432755], [8.501606, 47.432817], [8.501593, 47.432879], [8.50159, 47.433029], [8.501597, 47.433179], [8.501613, 47.433329], [8.501668, 47.433682], [8.50174, 47.43413], [8.501749, 47.434171], [8.501762, 47.43421], [8.501778, 47.43425], [8.501964, 47.434636]]], "type": "MultiLineString"}, "id": "4545", "properties": {}, "type": "Feature"}, {"bbox": [8.530922, 47.352331, 8.532311, 47.355719], "geometry": {"coordinates": [[[8.532311, 47.355719], [8.532192, 47.355583], [8.532169, 47.35539], [8.532167, 47.355375], [8.532137, 47.355017], [8.532133, 47.355002], [8.532126, 47.354926], [8.532116, 47.354874], [8.531891, 47.354091], [8.531811, 47.353841], [8.531737, 47.353682], [8.531561, 47.353368], [8.531271, 47.352884], [8.531078, 47.352574], [8.530952, 47.352372], [8.530922, 47.352331]]], "type": "MultiLineString"}, "id": "4547", "properties": {}, "type": "Feature"}, {"bbox": [8.539276, 47.377135, 8.540511, 47.377415], "geometry": {"coordinates": [[[8.539276, 47.377415], [8.540016, 47.377233], [8.540511, 47.377135]]], "type": "MultiLineString"}, "id": "4550", "properties": {}, "type": "Feature"}, {"bbox": [8.49717, 47.409839, 8.498202, 47.410859], "geometry": {"coordinates": [[[8.498202, 47.410859], [8.498123, 47.410802], [8.497976, 47.410671], [8.497849, 47.410531], [8.497741, 47.410383], [8.497724, 47.410355], [8.497702, 47.410328], [8.497677, 47.410302], [8.497648, 47.410278], [8.497495, 47.410164], [8.497349, 47.410045], [8.497209, 47.409924], [8.4972, 47.409915], [8.497192, 47.409906], [8.497185, 47.409897], [8.49718, 47.409887], [8.497176, 47.409877], [8.49717, 47.409839]]], "type": "MultiLineString"}, "id": "4551", "properties": {}, "type": "Feature"}, {"bbox": [8.503063, 47.39733, 8.504597, 47.398268], "geometry": {"coordinates": [[[8.504597, 47.39733], [8.50422, 47.397528], [8.504194, 47.397547], [8.504171, 47.397566], [8.50415, 47.397587], [8.504122, 47.397607], [8.504092, 47.397626], [8.504061, 47.397643], [8.503308, 47.398039], [8.503278, 47.398052], [8.503249, 47.398068], [8.503222, 47.398084], [8.503198, 47.398103], [8.503176, 47.398122], [8.503156, 47.398143], [8.503063, 47.398268]]], "type": "MultiLineString"}, "id": "4552", "properties": {}, "type": "Feature"}, {"bbox": [8.531645, 47.333733, 8.532323, 47.335362], "geometry": {"coordinates": [[[8.531645, 47.335349], [8.531655, 47.335353], [8.531665, 47.335356], [8.531676, 47.335359], [8.531687, 47.33536], [8.531698, 47.335362], [8.531709, 47.335362], [8.53172, 47.335362], [8.531731, 47.335361], [8.531742, 47.33536], [8.531753, 47.335358], [8.531764, 47.335355], [8.531774, 47.335352], [8.53203, 47.335097], [8.532186, 47.334759], [8.532189, 47.334691], [8.532203, 47.334399], [8.532211, 47.334219], [8.532217, 47.334043], [8.532216, 47.333793], [8.532221, 47.333785], [8.532226, 47.333778], [8.532233, 47.333771], [8.53224, 47.333765], [8.532249, 47.333759], [8.532258, 47.333753], [8.532267, 47.333748], [8.532277, 47.333744], [8.532288, 47.33374], [8.532299, 47.333737], [8.532311, 47.333735], [8.532323, 47.333733]]], "type": "MultiLineString"}, "id": "4553", "properties": {}, "type": "Feature"}, {"bbox": [8.582461, 47.401437, 8.582814, 47.402173], "geometry": {"coordinates": [[[8.582507, 47.402173], [8.582468, 47.4021], [8.582464, 47.402091], [8.582462, 47.402083], [8.582461, 47.402074], [8.582461, 47.402066], [8.582463, 47.402058], [8.582465, 47.402049], [8.582469, 47.402041], [8.582474, 47.402033], [8.582479, 47.402026], [8.582486, 47.402019], [8.582493, 47.402012], [8.582502, 47.402006], [8.582511, 47.402], [8.58252, 47.401995], [8.582531, 47.40199], [8.582542, 47.401986], [8.582737, 47.401914], [8.582807, 47.401888], [8.582814, 47.401862], [8.582739, 47.401761], [8.582661, 47.401634], [8.58254, 47.401437]]], "type": "MultiLineString"}, "id": "4554", "properties": {}, "type": "Feature"}, {"bbox": [8.575695, 47.374605, 8.575921, 47.375187], "geometry": {"coordinates": [[[8.57592, 47.374605], [8.575921, 47.374657], [8.575906, 47.374728], [8.575884, 47.374797], [8.575856, 47.374866], [8.575808, 47.374974], [8.575754, 47.375081], [8.575695, 47.375187]]], "type": "MultiLineString"}, "id": "4555", "properties": {}, "type": "Feature"}, {"bbox": [8.524977, 47.407465, 8.526352, 47.407896], "geometry": {"coordinates": [[[8.526352, 47.407896], [8.526313, 47.407896], [8.526274, 47.407893], [8.526236, 47.407888], [8.526199, 47.40788], [8.526161, 47.407859], [8.526125, 47.407838], [8.526089, 47.407816], [8.526055, 47.407803], [8.526021, 47.40779], [8.525987, 47.407778], [8.524977, 47.407465]]], "type": "MultiLineString"}, "id": "4556", "properties": {}, "type": "Feature"}, {"bbox": [8.47347, 47.392262, 8.474035, 47.393207], "geometry": {"coordinates": [[[8.474035, 47.393207], [8.474007, 47.393185], [8.473983, 47.393163], [8.473961, 47.393139], [8.473942, 47.393114], [8.473795, 47.392914], [8.473646, 47.392715], [8.473494, 47.392516], [8.473487, 47.392507], [8.473481, 47.392497], [8.473476, 47.392487], [8.473473, 47.392476], [8.473471, 47.392466], [8.47347, 47.392455], [8.47347, 47.392444], [8.473472, 47.392434], [8.473475, 47.392423], [8.473479, 47.392413], [8.473485, 47.392403], [8.473492, 47.392393], [8.473559, 47.392352], [8.473623, 47.392309], [8.473683, 47.392262]]], "type": "MultiLineString"}, "id": "4557", "properties": {}, "type": "Feature"}, {"bbox": [8.489898, 47.429061, 8.490912, 47.429272], "geometry": {"coordinates": [[[8.490912, 47.429068], [8.490889, 47.429064], [8.490865, 47.429062], [8.490841, 47.429061], [8.490817, 47.429061], [8.490793, 47.429062], [8.490769, 47.429065], [8.490746, 47.429069], [8.490723, 47.429074], [8.489898, 47.429272]]], "type": "MultiLineString"}, "id": "4558", "properties": {}, "type": "Feature"}, {"bbox": [8.530403, 47.389107, 8.531273, 47.389708], "geometry": {"coordinates": [[[8.531273, 47.389708], [8.531266, 47.389696], [8.531258, 47.389684], [8.531248, 47.389673], [8.531236, 47.389662], [8.531166, 47.389606], [8.531092, 47.389551], [8.531016, 47.389498], [8.53097, 47.389468], [8.530923, 47.389441], [8.530873, 47.389415], [8.530822, 47.389387], [8.530772, 47.389358], [8.530724, 47.389328], [8.530611, 47.389259], [8.530504, 47.389185], [8.530403, 47.389107]]], "type": "MultiLineString"}, "id": "4559", "properties": {}, "type": "Feature"}, {"bbox": [8.587711, 47.396752, 8.588827, 47.396921], "geometry": {"coordinates": [[[8.587711, 47.396752], [8.587808, 47.396772], [8.588355, 47.396849], [8.588395, 47.396854], [8.588445, 47.396845], [8.588658, 47.396797], [8.588668, 47.396795], [8.588677, 47.396793], [8.588688, 47.396792], [8.588698, 47.396792], [8.588708, 47.396792], [8.588718, 47.396793], [8.588728, 47.396795], [8.588737, 47.396797], [8.588747, 47.3968], [8.588756, 47.396803], [8.588764, 47.396807], [8.588772, 47.396811], [8.58878, 47.396816], [8.588787, 47.396821], [8.588793, 47.396826], [8.588798, 47.396832], [8.588803, 47.396838], [8.588811, 47.396851], [8.588817, 47.396865], [8.588822, 47.396878], [8.588825, 47.396892], [8.588827, 47.396907], [8.588826, 47.396921]]], "type": "MultiLineString"}, "id": "4560", "properties": {}, "type": "Feature"}, {"bbox": [8.510364, 47.32465, 8.510741, 47.325229], "geometry": {"coordinates": [[[8.510403, 47.32465], [8.510418, 47.324685], [8.510429, 47.324712], [8.510401, 47.32492], [8.51039, 47.324969], [8.510376, 47.32504], [8.510364, 47.325162], [8.510383, 47.325201], [8.510438, 47.325214], [8.510741, 47.325229]]], "type": "MultiLineString"}, "id": "4561", "properties": {}, "type": "Feature"}, {"bbox": [8.531699, 47.401156, 8.533544, 47.402018], "geometry": {"coordinates": [[[8.533544, 47.401958], [8.533521, 47.401971], [8.533496, 47.401982], [8.53347, 47.401992], [8.533443, 47.402], [8.533414, 47.402006], [8.533385, 47.402011], [8.533362, 47.402014], [8.533339, 47.402016], [8.533315, 47.402018], [8.53331, 47.402018], [8.533305, 47.402018], [8.5333, 47.402018], [8.533296, 47.402018], [8.533291, 47.402017], [8.533286, 47.402016], [8.533281, 47.402014], [8.533277, 47.402013], [8.532991, 47.401881], [8.5327, 47.401753], [8.532405, 47.40163], [8.532181, 47.401536], [8.531957, 47.401444], [8.531732, 47.401352], [8.531782, 47.401257], [8.531782, 47.401247], [8.53178, 47.401237], [8.531777, 47.401227], [8.531773, 47.401217], [8.531767, 47.401208], [8.531761, 47.401199], [8.531753, 47.40119], [8.531744, 47.401182], [8.531734, 47.401175], [8.531723, 47.401168], [8.531711, 47.401162], [8.531699, 47.401156]]], "type": "MultiLineString"}, "id": "4562", "properties": {}, "type": "Feature"}, {"bbox": [8.585658, 47.354829, 8.587097, 47.355114], "geometry": {"coordinates": [[[8.587097, 47.354878], [8.58708, 47.354867], [8.587062, 47.354858], [8.587042, 47.35485], [8.587022, 47.354844], [8.587001, 47.354838], [8.586979, 47.354834], [8.586957, 47.354831], [8.586934, 47.354829], [8.586912, 47.354829], [8.586889, 47.35483], [8.586867, 47.354832], [8.586559, 47.354893], [8.586253, 47.354958], [8.58595, 47.355029], [8.585658, 47.355114]]], "type": "MultiLineString"}, "id": "4563", "properties": {}, "type": "Feature"}, {"bbox": [8.55962, 47.413781, 8.560045, 47.414161], "geometry": {"coordinates": [[[8.559675, 47.413901], [8.559701, 47.413903], [8.55962, 47.414156], [8.560033, 47.414161], [8.560045, 47.413802], [8.559806, 47.413782], [8.559801, 47.413781], [8.559795, 47.413781], [8.559789, 47.413781], [8.559783, 47.413782], [8.559777, 47.413782], [8.559772, 47.413784], [8.559766, 47.413785], [8.559761, 47.413787], [8.559756, 47.413789], [8.559751, 47.413791], [8.559747, 47.413794], [8.559743, 47.413797], [8.559739, 47.4138], [8.559736, 47.413803], [8.559733, 47.413807], [8.559731, 47.413811], [8.559729, 47.413814], [8.559728, 47.413818], [8.559701, 47.413903]]], "type": "MultiLineString"}, "id": "4564", "properties": {}, "type": "Feature"}, {"bbox": [8.530466, 47.39414, 8.53156, 47.395689], "geometry": {"coordinates": [[[8.530489, 47.39414], [8.530466, 47.394158], [8.530652, 47.394406], [8.530883, 47.394678], [8.531247, 47.395094], [8.531465, 47.395353], [8.531483, 47.395501], [8.53156, 47.395689]]], "type": "MultiLineString"}, "id": "4565", "properties": {}, "type": "Feature"}, {"bbox": [8.501185, 47.410712, 8.506275, 47.415674], "geometry": {"coordinates": [[[8.501185, 47.410712], [8.501583, 47.410779], [8.501681, 47.410814], [8.501817, 47.410884], [8.501818, 47.410884], [8.50192, 47.410946], [8.502013, 47.411015], [8.502096, 47.411089], [8.502169, 47.411168], [8.50217, 47.411169], [8.502197, 47.411215], [8.502227, 47.411265], [8.502444, 47.411607], [8.502445, 47.411609], [8.502448, 47.411631], [8.502448, 47.411653], [8.502445, 47.411676], [8.50244, 47.411698], [8.502431, 47.41172], [8.50242, 47.411741], [8.502406, 47.411761], [8.502406, 47.411762], [8.502406, 47.411762], [8.502387, 47.411784], [8.502372, 47.411808], [8.50236, 47.411833], [8.502351, 47.411858], [8.502346, 47.411883], [8.502344, 47.411909], [8.502346, 47.411934], [8.502351, 47.41196], [8.502351, 47.41196], [8.502372, 47.41204], [8.502393, 47.412122], [8.502403, 47.412205], [8.502401, 47.412289], [8.502387, 47.412372], [8.502386, 47.412373], [8.502126, 47.412758], [8.502074, 47.412883], [8.501972, 47.41312], [8.501955, 47.413189], [8.501921, 47.413324], [8.501914, 47.413356], [8.501913, 47.413388], [8.501915, 47.41342], [8.501922, 47.413451], [8.501933, 47.413483], [8.501949, 47.413513], [8.501968, 47.413542], [8.501992, 47.41357], [8.50201, 47.413588], [8.502031, 47.413604], [8.502054, 47.413618], [8.502078, 47.413632], [8.502105, 47.413643], [8.502133, 47.413654], [8.502162, 47.413662], [8.502205, 47.413676], [8.502245, 47.413692], [8.502284, 47.413711], [8.50232, 47.413732], [8.502353, 47.413755], [8.502733, 47.414123], [8.50315, 47.414531], [8.503269, 47.414708], [8.503304, 47.414752], [8.503335, 47.414797], [8.50336, 47.414844], [8.503379, 47.414893], [8.503392, 47.414942], [8.5034, 47.414991], [8.503407, 47.415139], [8.503412, 47.415163], [8.50342, 47.415187], [8.503431, 47.41521], [8.503445, 47.415233], [8.503461, 47.415255], [8.503481, 47.415276], [8.503502, 47.415295], [8.503527, 47.415314], [8.503553, 47.41533], [8.504106, 47.415634], [8.504129, 47.415644], [8.504154, 47.415653], [8.504179, 47.41566], [8.504205, 47.415666], [8.504232, 47.41567], [8.504259, 47.415673], [8.504286, 47.415674], [8.504314, 47.415674], [8.504341, 47.415671], [8.504368, 47.415668], [8.504394, 47.415663], [8.504749, 47.415536], [8.505261, 47.415252], [8.50528, 47.415242], [8.505981, 47.41493], [8.506029, 47.414921], [8.506077, 47.414914], [8.506127, 47.414911], [8.506177, 47.414911], [8.506226, 47.414914], [8.506275, 47.41492]]], "type": "MultiLineString"}, "id": "4568", "properties": {}, "type": "Feature"}, {"bbox": [8.568742, 47.416438, 8.573563, 47.416995], "geometry": {"coordinates": [[[8.568742, 47.416438], [8.56924, 47.416922], [8.569359, 47.416967], [8.569506, 47.416984], [8.569578, 47.416995], [8.569861, 47.416988], [8.570128, 47.416972], [8.570364, 47.416942], [8.571234, 47.416815], [8.571506, 47.416775], [8.57174, 47.416744], [8.572237, 47.416701], [8.572268, 47.41664], [8.573563, 47.416625]]], "type": "MultiLineString"}, "id": "4570", "properties": {}, "type": "Feature"}, {"bbox": [8.484615, 47.377024, 8.485114, 47.377523], "geometry": {"coordinates": [[[8.485114, 47.377523], [8.48488, 47.377278], [8.484658, 47.3771], [8.484615, 47.377028], [8.484616, 47.377024]]], "type": "MultiLineString"}, "id": "4571", "properties": {}, "type": "Feature"}, {"bbox": [8.576669, 47.409686, 8.580386, 47.410549], "geometry": {"coordinates": [[[8.576669, 47.410549], [8.576735, 47.410535], [8.576799, 47.410517], [8.576861, 47.410496], [8.576875, 47.410485], [8.576891, 47.410476], [8.576908, 47.410467], [8.576926, 47.41046], [8.576945, 47.410453], [8.576964, 47.410448], [8.576984, 47.410444], [8.577005, 47.410441], [8.577026, 47.410439], [8.57708, 47.410436], [8.577133, 47.41043], [8.577185, 47.410421], [8.577236, 47.410409], [8.578045, 47.410231], [8.578095, 47.410226], [8.578143, 47.410218], [8.57819, 47.410206], [8.579142, 47.409973], [8.579441, 47.409906], [8.579466, 47.409899], [8.579493, 47.409894], [8.57952, 47.40989], [8.579547, 47.409887], [8.579575, 47.409886], [8.579602, 47.409883], [8.579629, 47.409879], [8.579699, 47.409865], [8.579766, 47.409848], [8.579831, 47.409827], [8.579883, 47.409809], [8.579936, 47.409793], [8.57999, 47.409781], [8.580087, 47.409756], [8.580185, 47.409733], [8.580283, 47.409711], [8.580386, 47.409686]]], "type": "MultiLineString"}, "id": "4572", "properties": {}, "type": "Feature"}, {"bbox": [8.57676, 47.408662, 8.577111, 47.408757], "geometry": {"coordinates": [[[8.577111, 47.408662], [8.57676, 47.408757]]], "type": "MultiLineString"}, "id": "4573", "properties": {}, "type": "Feature"}, {"bbox": [8.543678, 47.373102, 8.543987, 47.373481], "geometry": {"coordinates": [[[8.543951, 47.373435], [8.543923, 47.3734], [8.543957, 47.373159], [8.543981, 47.373138], [8.543987, 47.37311], [8.543758, 47.373103], [8.543691, 47.373102], [8.543686, 47.373209], [8.543678, 47.373297], [8.543733, 47.373401], [8.543812, 47.373481], [8.543923, 47.373473], [8.543951, 47.373435]]], "type": "MultiLineString"}, "id": "4577", "properties": {}, "type": "Feature"}, {"bbox": [8.532521, 47.329715, 8.532697, 47.329829], "geometry": {"coordinates": [[[8.532697, 47.329829], [8.532647, 47.329805], [8.532601, 47.329778], [8.532559, 47.329748], [8.532521, 47.329715]]], "type": "MultiLineString"}, "id": "4581", "properties": {}, "type": "Feature"}, {"bbox": [8.509898, 47.325014, 8.512181, 47.326247], "geometry": {"coordinates": [[[8.512181, 47.325014], [8.51213, 47.32505], [8.512048, 47.325109], [8.511923, 47.325285], [8.511821, 47.325392], [8.511686, 47.325489], [8.511532, 47.325582], [8.51139, 47.325674], [8.511318, 47.325699], [8.511292, 47.325702], [8.511263, 47.325708], [8.511187, 47.325716], [8.511111, 47.325721], [8.511035, 47.325724], [8.51078, 47.325726], [8.510732, 47.325728], [8.510685, 47.325733], [8.510639, 47.325741], [8.510594, 47.325752], [8.510551, 47.325765], [8.51051, 47.325781], [8.510471, 47.3258], [8.510435, 47.325821], [8.510402, 47.325844], [8.510368, 47.325873], [8.510334, 47.325901], [8.510302, 47.325931], [8.510276, 47.325954], [8.510251, 47.325977], [8.510227, 47.326001], [8.510192, 47.326032], [8.510158, 47.326063], [8.510122, 47.326093], [8.510088, 47.326122], [8.510053, 47.32615], [8.510017, 47.326178], [8.509917, 47.326236], [8.509898, 47.326247]]], "type": "MultiLineString"}, "id": "4582", "properties": {}, "type": "Feature"}, {"bbox": [8.544988, 47.405275, 8.545231, 47.405681], "geometry": {"coordinates": [[[8.544988, 47.405275], [8.544996, 47.405311], [8.545064, 47.40546], [8.54521, 47.405666], [8.545231, 47.405681]]], "type": "MultiLineString"}, "id": "4583", "properties": {}, "type": "Feature"}, {"bbox": [8.553308, 47.419436, 8.553916, 47.420313], "geometry": {"coordinates": [[[8.553916, 47.419436], [8.55372, 47.419497], [8.553525, 47.41956], [8.553333, 47.419626], [8.55333, 47.419627], [8.553327, 47.419628], [8.553324, 47.419629], [8.553322, 47.41963], [8.553319, 47.419632], [8.553317, 47.419634], [8.553315, 47.419635], [8.553313, 47.419637], [8.553312, 47.419639], [8.55331, 47.419641], [8.553309, 47.419643], [8.553309, 47.419645], [8.553308, 47.419648], [8.553308, 47.41965], [8.553308, 47.419652], [8.553309, 47.419654], [8.553309, 47.419656], [8.55331, 47.419658], [8.553312, 47.41966], [8.553313, 47.419662], [8.553315, 47.419664], [8.55391, 47.420313]]], "type": "MultiLineString"}, "id": "4584", "properties": {}, "type": "Feature"}, {"bbox": [8.477403, 47.379383, 8.479467, 47.380556], "geometry": {"coordinates": [[[8.477403, 47.380556], [8.477594, 47.380542], [8.477616, 47.380539], [8.477638, 47.380536], [8.477659, 47.38053], [8.47768, 47.380524], [8.477699, 47.380516], [8.477718, 47.380508], [8.478249, 47.380253], [8.478274, 47.380241], [8.478298, 47.380228], [8.478319, 47.380214], [8.478339, 47.380198], [8.478357, 47.380181], [8.478497, 47.380047], [8.478637, 47.379914], [8.478777, 47.37978], [8.478793, 47.379761], [8.478812, 47.379743], [8.478832, 47.379726], [8.478855, 47.379711], [8.47888, 47.379697], [8.478906, 47.379684], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4585", "properties": {}, "type": "Feature"}, {"bbox": [8.54614, 47.366644, 8.547546, 47.367906], "geometry": {"coordinates": [[[8.547546, 47.366644], [8.547443, 47.366719], [8.547347, 47.366798], [8.54726, 47.366881], [8.547196, 47.366943], [8.547133, 47.367005], [8.54707, 47.367067], [8.54688, 47.367257], [8.546793, 47.367333], [8.546706, 47.367414], [8.546639, 47.367474], [8.546568, 47.367532], [8.546496, 47.367589], [8.546471, 47.367611], [8.54614, 47.367906]]], "type": "MultiLineString"}, "id": "4586", "properties": {}, "type": "Feature"}, {"bbox": [8.571249, 47.381487, 8.571743, 47.382091], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571541, 47.381516], [8.571538, 47.381545], [8.571531, 47.381574], [8.571521, 47.381602], [8.571506, 47.381629], [8.571488, 47.381656], [8.571467, 47.381681], [8.571442, 47.381705], [8.571414, 47.381727], [8.571302, 47.381823], [8.57129, 47.381834], [8.571279, 47.381847], [8.57127, 47.381859], [8.571262, 47.381873], [8.571256, 47.381886], [8.571252, 47.3819], [8.571249, 47.381915], [8.571249, 47.381929], [8.57125, 47.381943], [8.571253, 47.381957], [8.571258, 47.381971], [8.571264, 47.381985], [8.571272, 47.381998], [8.571282, 47.38201], [8.571293, 47.382022], [8.571306, 47.382034], [8.57132, 47.382044], [8.571336, 47.382054], [8.571352, 47.382063], [8.57137, 47.38207], [8.571389, 47.382077], [8.571409, 47.382082], [8.57143, 47.382087], [8.571451, 47.382089], [8.571473, 47.382091], [8.571494, 47.382091], [8.571516, 47.382091], [8.571538, 47.382088], [8.571559, 47.382085], [8.571579, 47.38208], [8.571599, 47.382075], [8.571619, 47.382068], [8.571637, 47.38206], [8.571654, 47.38205], [8.57167, 47.38204], [8.571684, 47.382029], [8.571697, 47.382018], [8.571709, 47.382005], [8.571719, 47.381992], [8.571727, 47.381978], [8.571734, 47.381964], [8.571739, 47.38195], [8.571742, 47.381935], [8.571743, 47.381921], [8.571742, 47.381906], [8.57154, 47.381487]]], "type": "MultiLineString"}, "id": "4587", "properties": {}, "type": "Feature"}, {"bbox": [8.470285, 47.377293, 8.474415, 47.379268], "geometry": {"coordinates": [[[8.470285, 47.379268], [8.470444, 47.379262], [8.470462, 47.379261], [8.47048, 47.379259], [8.470498, 47.379257], [8.470872, 47.379213], [8.471053, 47.379192], [8.471195, 47.379172], [8.471336, 47.379147], [8.471474, 47.379117], [8.471595, 47.379084], [8.471711, 47.379043], [8.471821, 47.378995], [8.471924, 47.378941], [8.472019, 47.378881], [8.472306, 47.37868], [8.472386, 47.378629], [8.472472, 47.378582], [8.472562, 47.378539], [8.473068, 47.378322], [8.473149, 47.37829], [8.473235, 47.378263], [8.473323, 47.37824], [8.473414, 47.378223], [8.473504, 47.378205], [8.47359, 47.378183], [8.473674, 47.378156], [8.473928, 47.378065], [8.474203, 47.377981], [8.474231, 47.377971], [8.474258, 47.37796], [8.474283, 47.377947], [8.474307, 47.377932], [8.474329, 47.377917], [8.474348, 47.3779], [8.474365, 47.377882], [8.47438, 47.377863], [8.474392, 47.377843], [8.474402, 47.377823], [8.474409, 47.377802], [8.474413, 47.37778], [8.474415, 47.377759], [8.474414, 47.377738], [8.47441, 47.377716], [8.474403, 47.377695], [8.474394, 47.377675], [8.474371, 47.377636], [8.474343, 47.377598], [8.47431, 47.377562], [8.474274, 47.377527], [8.473998, 47.377293]]], "type": "MultiLineString"}, "id": "4588", "properties": {}, "type": "Feature"}, {"bbox": [8.513107, 47.394196, 8.513345, 47.3947], "geometry": {"coordinates": [[[8.513107, 47.394196], [8.513126, 47.394233], [8.513339, 47.394675], [8.513345, 47.3947]]], "type": "MultiLineString"}, "id": "4589", "properties": {}, "type": "Feature"}, {"bbox": [8.524695, 47.422954, 8.535359, 47.424131], "geometry": {"coordinates": [[[8.535359, 47.422954], [8.535113, 47.423032], [8.534722, 47.423149], [8.534374, 47.423262], [8.534019, 47.423362], [8.533656, 47.42345], [8.533619, 47.423454], [8.533582, 47.423458], [8.533545, 47.423463], [8.533321, 47.423497], [8.533101, 47.42354], [8.532885, 47.423591], [8.532225, 47.423773], [8.531576, 47.423909], [8.531231, 47.423964], [8.53114, 47.423969], [8.5307, 47.423989], [8.530283, 47.423989], [8.528901, 47.423943], [8.528186, 47.423936], [8.527693, 47.423961], [8.527311, 47.423978], [8.527292, 47.42398], [8.527208, 47.423986], [8.526993, 47.424003], [8.525844, 47.424131], [8.525197, 47.424075], [8.525062, 47.424034], [8.524848, 47.423972], [8.524695, 47.42395]]], "type": "MultiLineString"}, "id": "4591", "properties": {}, "type": "Feature"}, {"bbox": [8.561255, 47.373777, 8.563426, 47.37537], "geometry": {"coordinates": [[[8.561255, 47.37537], [8.561684, 47.37497], [8.56177, 47.374901], [8.561864, 47.374837], [8.561967, 47.374779], [8.562426, 47.37454], [8.562535, 47.374479], [8.563312, 47.37385], [8.563426, 47.373777]]], "type": "MultiLineString"}, "id": "4592", "properties": {}, "type": "Feature"}, {"bbox": [8.488178, 47.350565, 8.490053, 47.352864], "geometry": {"coordinates": [[[8.490053, 47.350565], [8.489874, 47.350685], [8.489852, 47.350714], [8.489829, 47.350742], [8.489804, 47.350769], [8.489675, 47.350871], [8.489552, 47.350976], [8.489434, 47.351084], [8.489252, 47.351278], [8.489054, 47.351466], [8.48884, 47.351645], [8.48879, 47.351683], [8.488735, 47.351718], [8.488676, 47.35175], [8.488613, 47.351778], [8.488547, 47.351803], [8.488478, 47.351823], [8.488406, 47.351839], [8.488333, 47.351851], [8.488316, 47.351854], [8.4883, 47.351858], [8.488285, 47.351863], [8.48827, 47.35187], [8.488256, 47.351876], [8.488242, 47.351884], [8.48823, 47.351893], [8.488219, 47.351902], [8.488209, 47.351912], [8.488201, 47.351922], [8.488193, 47.351933], [8.488187, 47.351944], [8.488183, 47.351955], [8.48818, 47.351967], [8.488179, 47.351979], [8.488178, 47.35199], [8.48818, 47.352002], [8.488183, 47.352014], [8.488187, 47.352025], [8.488193, 47.352036], [8.4882, 47.352047], [8.488209, 47.352057], [8.488447, 47.352409], [8.488632, 47.352662], [8.488641, 47.352675], [8.488647, 47.352689], [8.488652, 47.352703], [8.488655, 47.352717], [8.488656, 47.352731], [8.488655, 47.352745], [8.488652, 47.35276], [8.488647, 47.352773], [8.488641, 47.352787], [8.488633, 47.3528], [8.488623, 47.352813], [8.488612, 47.352825], [8.488599, 47.352836], [8.488584, 47.352846], [8.488569, 47.352856], [8.488552, 47.352864]]], "type": "MultiLineString"}, "id": "4594", "properties": {}, "type": "Feature"}, {"bbox": [8.540942, 47.370651, 8.541124, 47.371447], "geometry": {"coordinates": [[[8.541055, 47.370651], [8.541124, 47.37094], [8.541037, 47.371205], [8.541003, 47.371298], [8.540942, 47.371447]]], "type": "MultiLineString"}, "id": "4595", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.359699, 8.596046, 47.359903], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.594618, 47.359883], [8.594666, 47.359886], [8.594714, 47.359887], [8.594762, 47.359884], [8.59481, 47.359879], [8.594857, 47.359872], [8.594903, 47.359861], [8.594934, 47.359815], [8.594964, 47.359768], [8.594991, 47.359721], [8.594996, 47.359717], [8.595002, 47.359713], [8.595008, 47.35971], [8.595015, 47.359707], [8.595022, 47.359705], [8.595029, 47.359703], [8.595036, 47.359701], [8.595044, 47.3597], [8.595052, 47.359699], [8.59506, 47.359699], [8.595067, 47.359699], [8.595075, 47.3597], [8.59527, 47.359744], [8.595416, 47.359706], [8.595974, 47.359889], [8.595988, 47.359894], [8.596002, 47.359897], [8.596016, 47.3599], [8.596031, 47.359902], [8.596046, 47.359903]]], "type": "MultiLineString"}, "id": "4596", "properties": {}, "type": "Feature"}, {"bbox": [8.548372, 47.405902, 8.550399, 47.406527], "geometry": {"coordinates": [[[8.548372, 47.405902], [8.548612, 47.406023], [8.548729, 47.406088], [8.548859, 47.406164], [8.548999, 47.406231], [8.549148, 47.40629], [8.549303, 47.406339], [8.549465, 47.406378], [8.549533, 47.406391], [8.549623, 47.406409], [8.550196, 47.406527], [8.550399, 47.406507]]], "type": "MultiLineString"}, "id": "4597", "properties": {}, "type": "Feature"}, {"bbox": [8.570269, 47.370112, 8.571089, 47.370981], "geometry": {"coordinates": [[[8.570557, 47.370112], [8.570495, 47.370151], [8.570431, 47.370188], [8.570363, 47.370222], [8.570339, 47.370246], [8.570318, 47.370272], [8.570301, 47.370299], [8.570288, 47.370327], [8.570278, 47.370355], [8.570272, 47.370384], [8.57027, 47.370414], [8.570269, 47.370462], [8.570276, 47.37051], [8.570288, 47.370557], [8.570307, 47.370604], [8.570314, 47.370613], [8.570322, 47.370622], [8.570332, 47.37063], [8.570342, 47.370638], [8.570354, 47.370645], [8.570366, 47.370651], [8.570379, 47.370657], [8.570393, 47.370662], [8.570407, 47.370666], [8.570935, 47.370833], [8.570967, 47.370846], [8.570998, 47.370861], [8.571026, 47.370877], [8.571053, 47.370894], [8.571077, 47.370913], [8.571081, 47.370919], [8.571084, 47.370925], [8.571087, 47.370931], [8.571088, 47.370938], [8.571089, 47.370944], [8.571089, 47.37095], [8.571088, 47.370957], [8.571087, 47.370963], [8.571084, 47.370969], [8.571081, 47.370975], [8.571077, 47.370981]]], "type": "MultiLineString"}, "id": "4598", "properties": {}, "type": "Feature"}, {"bbox": [8.54345, 47.417233, 8.544106, 47.417786], "geometry": {"coordinates": [[[8.544106, 47.417233], [8.544093, 47.417233], [8.544081, 47.417234], [8.544068, 47.417235], [8.544056, 47.417237], [8.544044, 47.41724], [8.544033, 47.417244], [8.544022, 47.417248], [8.544011, 47.417253], [8.544002, 47.417259], [8.543993, 47.417265], [8.543985, 47.417271], [8.543977, 47.417279], [8.543971, 47.417286], [8.543966, 47.417294], [8.543961, 47.417302], [8.543964, 47.417606], [8.543963, 47.417621], [8.543961, 47.417636], [8.543956, 47.417651], [8.54395, 47.417666], [8.543942, 47.41768], [8.543932, 47.417694], [8.54392, 47.417707], [8.543907, 47.41772], [8.543892, 47.417731], [8.543876, 47.417742], [8.543858, 47.417752], [8.543839, 47.41776], [8.54382, 47.417768], [8.543799, 47.417774], [8.543778, 47.417779], [8.543756, 47.417783], [8.543733, 47.417785], [8.543711, 47.417786], [8.54345, 47.417776]]], "type": "MultiLineString"}, "id": "4599", "properties": {}, "type": "Feature"}, {"bbox": [8.524999, 47.364365, 8.527794, 47.367413], "geometry": {"coordinates": [[[8.527794, 47.366886], [8.527756, 47.366993], [8.527734, 47.367055], [8.527667, 47.367349], [8.527665, 47.367356], [8.527663, 47.367362], [8.527659, 47.367369], [8.527654, 47.367375], [8.527649, 47.36738], [8.527643, 47.367386], [8.527637, 47.367391], [8.527629, 47.367395], [8.527621, 47.367399], [8.527613, 47.367403], [8.527604, 47.367406], [8.527595, 47.367409], [8.527586, 47.367411], [8.527576, 47.367412], [8.527566, 47.367413], [8.527556, 47.367413], [8.527523, 47.367407], [8.52749, 47.3674], [8.527458, 47.367391], [8.527155, 47.367302], [8.527016, 47.367259], [8.526879, 47.367214], [8.526744, 47.367167], [8.526619, 47.36712], [8.526496, 47.367071], [8.526376, 47.36702], [8.526096, 47.366888], [8.525837, 47.366738], [8.525601, 47.366571], [8.525404, 47.366412], [8.525334, 47.366279], [8.524999, 47.366014], [8.525016, 47.365901], [8.525375, 47.364365]]], "type": "MultiLineString"}, "id": "4600", "properties": {}, "type": "Feature"}, {"bbox": [8.485704, 47.382327, 8.486178, 47.382781], "geometry": {"coordinates": [[[8.48613, 47.382781], [8.486143, 47.382766], [8.486154, 47.382751], [8.486162, 47.382736], [8.486169, 47.38272], [8.486174, 47.382703], [8.486177, 47.382687], [8.486178, 47.38267], [8.486038, 47.382435], [8.486032, 47.382429], [8.486025, 47.382424], [8.486018, 47.38242], [8.48601, 47.382416], [8.486001, 47.382412], [8.485992, 47.382409], [8.485983, 47.382407], [8.485973, 47.382405], [8.485882, 47.382382], [8.485792, 47.382356], [8.485704, 47.382327]]], "type": "MultiLineString"}, "id": "4601", "properties": {}, "type": "Feature"}, {"bbox": [8.576153, 47.348787, 8.576238, 47.349445], "geometry": {"coordinates": [[[8.576153, 47.349445], [8.57623, 47.349142], [8.576238, 47.349041], [8.576225, 47.348787]]], "type": "MultiLineString"}, "id": "4609", "properties": {}, "type": "Feature"}, {"bbox": [8.495954, 47.425929, 8.496499, 47.426193], "geometry": {"coordinates": [[[8.496499, 47.425929], [8.496177, 47.426175], [8.496169, 47.42618], [8.496161, 47.426183], [8.496152, 47.426186], [8.496143, 47.426189], [8.496133, 47.426191], [8.496124, 47.426192], [8.496114, 47.426193], [8.496104, 47.426193], [8.496094, 47.426193], [8.496084, 47.426192], [8.496074, 47.426191], [8.496065, 47.426189], [8.496056, 47.426186], [8.496047, 47.426183], [8.496038, 47.42618], [8.49603, 47.426176], [8.496023, 47.426171], [8.496016, 47.426166], [8.49601, 47.426161], [8.496004, 47.426156], [8.496, 47.42615], [8.495996, 47.426144], [8.495992, 47.426137], [8.495954, 47.426047]]], "type": "MultiLineString"}, "id": "4610", "properties": {}, "type": "Feature"}, {"bbox": [8.534781, 47.331327, 8.537301, 47.333036], "geometry": {"coordinates": [[[8.534781, 47.333036], [8.535073, 47.332988], [8.535121, 47.332978], [8.535167, 47.332965], [8.535212, 47.33295], [8.535255, 47.332932], [8.535295, 47.332912], [8.535846, 47.332528], [8.535937, 47.332455], [8.537246, 47.331371], [8.537301, 47.331327]]], "type": "MultiLineString"}, "id": "4611", "properties": {}, "type": "Feature"}, {"bbox": [8.530538, 47.383268, 8.530808, 47.383441], "geometry": {"coordinates": [[[8.530808, 47.383441], [8.530625, 47.383268], [8.530538, 47.38332]]], "type": "MultiLineString"}, "id": "4617", "properties": {}, "type": "Feature"}, {"bbox": [8.50393, 47.41718, 8.504401, 47.417821], "geometry": {"coordinates": [[[8.504241, 47.417821], [8.504273, 47.417801], [8.504304, 47.417782], [8.504336, 47.417763], [8.504346, 47.417759], [8.504355, 47.417754], [8.504363, 47.417749], [8.504371, 47.417744], [8.504378, 47.417738], [8.504384, 47.417731], [8.504389, 47.417725], [8.504393, 47.417718], [8.504397, 47.417711], [8.504399, 47.417703], [8.504401, 47.417696], [8.504401, 47.417688], [8.5044, 47.41768], [8.504387, 47.41766], [8.50437, 47.417641], [8.504351, 47.417623], [8.50433, 47.417606], [8.504307, 47.417591], [8.504281, 47.417577], [8.504254, 47.417564], [8.504242, 47.417559], [8.50423, 47.417553], [8.50422, 47.417546], [8.50421, 47.417539], [8.504201, 47.417531], [8.504193, 47.417523], [8.504186, 47.417515], [8.504181, 47.417506], [8.504176, 47.417496], [8.504173, 47.417487], [8.504171, 47.417477], [8.50417, 47.417467], [8.504149, 47.417357], [8.504141, 47.417336], [8.50413, 47.417316], [8.504117, 47.417296], [8.504101, 47.417278], [8.504083, 47.41726], [8.504062, 47.417244], [8.50404, 47.417228], [8.50393, 47.41718]]], "type": "MultiLineString"}, "id": "4618", "properties": {}, "type": "Feature"}, {"bbox": [8.475615, 47.385252, 8.477807, 47.386039], "geometry": {"coordinates": [[[8.475615, 47.386039], [8.475631, 47.386029], [8.475648, 47.38602], [8.475665, 47.386012], [8.476704, 47.385687], [8.47675, 47.385672], [8.476794, 47.385656], [8.476836, 47.385637], [8.477103, 47.38552], [8.477373, 47.385406], [8.477646, 47.385294], [8.477699, 47.385279], [8.477752, 47.385264], [8.477807, 47.385252]]], "type": "MultiLineString"}, "id": "4619", "properties": {}, "type": "Feature"}, {"bbox": [8.570218, 47.406552, 8.570617, 47.407168], "geometry": {"coordinates": [[[8.570218, 47.406552], [8.570282, 47.406625], [8.570362, 47.406715], [8.570435, 47.406809], [8.570502, 47.406904], [8.570544, 47.406967], [8.570577, 47.407032], [8.570601, 47.4071], [8.570617, 47.407168]]], "type": "MultiLineString"}, "id": "4620", "properties": {}, "type": "Feature"}, {"bbox": [8.516545, 47.332763, 8.517416, 47.333698], "geometry": {"coordinates": [[[8.516545, 47.332763], [8.516592, 47.332775], [8.516606, 47.33278], [8.51662, 47.332785], [8.516633, 47.332791], [8.516645, 47.332798], [8.516656, 47.332806], [8.516666, 47.332814], [8.516674, 47.332823], [8.516806, 47.332948], [8.51684, 47.332975], [8.516876, 47.333], [8.516916, 47.333023], [8.516959, 47.333043], [8.517163, 47.333129], [8.517195, 47.333142], [8.517224, 47.333157], [8.517252, 47.333174], [8.517277, 47.333192], [8.517299, 47.333212], [8.517349, 47.333258], [8.517368, 47.333278], [8.517385, 47.333299], [8.517398, 47.333321], [8.517408, 47.333343], [8.517413, 47.333357], [8.517415, 47.333371], [8.517416, 47.333385], [8.517415, 47.333399], [8.517413, 47.333413], [8.517409, 47.333426], [8.517403, 47.33344], [8.517396, 47.333453], [8.517247, 47.333672], [8.517229, 47.333698]]], "type": "MultiLineString"}, "id": "4621", "properties": {}, "type": "Feature"}, {"bbox": [8.477899, 47.417092, 8.482596, 47.418708], "geometry": {"coordinates": [[[8.477899, 47.417092], [8.478177, 47.417191], [8.478254, 47.417222], [8.478327, 47.417259], [8.478394, 47.417299], [8.478455, 47.417344], [8.47851, 47.417392], [8.478639, 47.417524], [8.478756, 47.41766], [8.47886, 47.417801], [8.478917, 47.417878], [8.478976, 47.417954], [8.479036, 47.418029], [8.479122, 47.418124], [8.479213, 47.418217], [8.47931, 47.418308], [8.479354, 47.418363], [8.479399, 47.418418], [8.479446, 47.418472], [8.479469, 47.418492], [8.479495, 47.418512], [8.479523, 47.418529], [8.479553, 47.418545], [8.479585, 47.418559], [8.479618, 47.418572], [8.479653, 47.418582], [8.480124, 47.418676], [8.480268, 47.418694], [8.480414, 47.418705], [8.48056, 47.418708], [8.480706, 47.418702], [8.48089, 47.418693], [8.481072, 47.418672], [8.481251, 47.418639], [8.481423, 47.418595], [8.482035, 47.418433], [8.482053, 47.418428], [8.482072, 47.418425], [8.482091, 47.418422], [8.482111, 47.418421], [8.48213, 47.418421], [8.48215, 47.418422], [8.482169, 47.418424], [8.482188, 47.418427], [8.482261, 47.418445], [8.482336, 47.418458], [8.482412, 47.418468], [8.482441, 47.418467], [8.482469, 47.418464], [8.482496, 47.41846], [8.482523, 47.418453], [8.482549, 47.418445], [8.482573, 47.418436], [8.482596, 47.418425]]], "type": "MultiLineString"}, "id": "4622", "properties": {}, "type": "Feature"}, {"bbox": [8.489729, 47.390626, 8.491974, 47.391153], "geometry": {"coordinates": [[[8.491974, 47.390626], [8.490142, 47.391132], [8.490115, 47.391139], [8.490088, 47.391145], [8.490059, 47.391149], [8.490031, 47.391152], [8.490002, 47.391153], [8.489973, 47.391152], [8.489945, 47.39115], [8.489917, 47.391145], [8.489889, 47.39114], [8.489863, 47.391133], [8.489837, 47.391124], [8.489812, 47.391114], [8.489789, 47.391102], [8.489767, 47.391089], [8.489747, 47.391075], [8.489729, 47.39106]]], "type": "MultiLineString"}, "id": "4628", "properties": {}, "type": "Feature"}, {"bbox": [8.55383, 47.383818, 8.555851, 47.385469], "geometry": {"coordinates": [[[8.55383, 47.383818], [8.554677, 47.384364], [8.554872, 47.384506], [8.555257, 47.384782], [8.555344, 47.384842], [8.555566, 47.385007], [8.555621, 47.385049], [8.555671, 47.385093], [8.555714, 47.38514], [8.555751, 47.38519], [8.555782, 47.385241], [8.555806, 47.385295], [8.555823, 47.385349], [8.555851, 47.385469]]], "type": "MultiLineString"}, "id": "4629", "properties": {}, "type": "Feature"}, {"bbox": [8.468038, 47.391539, 8.468501, 47.392423], "geometry": {"coordinates": [[[8.468501, 47.391539], [8.468449, 47.391586], [8.468265, 47.391705], [8.468107, 47.391767], [8.468093, 47.391778], [8.468081, 47.391789], [8.46807, 47.391801], [8.46806, 47.391813], [8.468053, 47.391826], [8.468047, 47.39184], [8.468042, 47.391853], [8.468039, 47.391867], [8.468038, 47.391881], [8.468039, 47.391895], [8.468042, 47.391909], [8.468178, 47.392393], [8.468204, 47.392423]]], "type": "MultiLineString"}, "id": "4636", "properties": {}, "type": "Feature"}, {"bbox": [8.556768, 47.381399, 8.559779, 47.383235], "geometry": {"coordinates": [[[8.556768, 47.381401], [8.556797, 47.381399], [8.556827, 47.381399], [8.556857, 47.381401], [8.556886, 47.381404], [8.556915, 47.381409], [8.556943, 47.381416], [8.55697, 47.381424], [8.556996, 47.381434], [8.557021, 47.381445], [8.557044, 47.381458], [8.557066, 47.381472], [8.557085, 47.381487], [8.557103, 47.381503], [8.557138, 47.381554], [8.557179, 47.381604], [8.557227, 47.381651], [8.55728, 47.381694], [8.557338, 47.381735], [8.557401, 47.381772], [8.557567, 47.381852], [8.557623, 47.381885], [8.558098, 47.38211], [8.558155, 47.382168], [8.558323, 47.382318], [8.558393, 47.382356], [8.558482, 47.382383], [8.558559, 47.382441], [8.558886, 47.382663], [8.558946, 47.38269], [8.559035, 47.382722], [8.559095, 47.382803], [8.559649, 47.38321], [8.559675, 47.38323], [8.559779, 47.383235]]], "type": "MultiLineString"}, "id": "4637", "properties": {}, "type": "Feature"}, {"bbox": [8.494309, 47.404992, 8.495397, 47.405314], "geometry": {"coordinates": [[[8.495397, 47.404992], [8.495351, 47.404996], [8.495304, 47.405002], [8.495259, 47.405011], [8.494309, 47.405314]]], "type": "MultiLineString"}, "id": "4638", "properties": {}, "type": "Feature"}, {"bbox": [8.553442, 47.397452, 8.55501, 47.397964], "geometry": {"coordinates": [[[8.553442, 47.39746], [8.553977, 47.397452], [8.554307, 47.397513], [8.554754, 47.397697], [8.55501, 47.397964]]], "type": "MultiLineString"}, "id": "4639", "properties": {}, "type": "Feature"}, {"bbox": [8.51101, 47.421535, 8.514424, 47.42191], "geometry": {"coordinates": [[[8.51101, 47.421535], [8.511032, 47.421563], [8.511057, 47.42159], [8.511086, 47.421616], [8.511118, 47.421639], [8.511511, 47.421889], [8.511519, 47.421894], [8.511526, 47.421898], [8.511534, 47.421901], [8.511543, 47.421904], [8.511552, 47.421906], [8.511561, 47.421908], [8.51157, 47.421909], [8.511579, 47.42191], [8.511589, 47.42191], [8.511598, 47.421909], [8.511608, 47.421908], [8.511617, 47.421906], [8.511626, 47.421904], [8.511634, 47.421901], [8.511643, 47.421898], [8.51165, 47.421894], [8.511679, 47.421876], [8.511708, 47.421859], [8.511739, 47.421842], [8.511877, 47.421776], [8.512023, 47.421719], [8.512177, 47.421671], [8.512336, 47.421633], [8.512447, 47.421621], [8.512559, 47.421616], [8.512671, 47.421619], [8.512782, 47.421629], [8.512847, 47.421645], [8.512909, 47.421666], [8.512968, 47.421689], [8.513025, 47.421716], [8.513093, 47.421742], [8.513165, 47.421763], [8.513239, 47.42178], [8.513315, 47.421792], [8.513392, 47.421799], [8.51347, 47.421802], [8.513563, 47.421798], [8.513656, 47.421795], [8.51375, 47.421792], [8.513918, 47.421793], [8.514086, 47.421797], [8.514254, 47.421803], [8.514297, 47.421806], [8.514339, 47.421807], [8.514382, 47.421806], [8.514424, 47.421801]]], "type": "MultiLineString"}, "id": "4640", "properties": {}, "type": "Feature"}, {"bbox": [8.503334, 47.393853, 8.503698, 47.394298], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.503511, 47.394293], [8.503502, 47.394293], [8.503494, 47.394292], [8.503485, 47.394291], [8.503477, 47.394289], [8.503469, 47.394287], [8.503461, 47.394284], [8.503453, 47.394281], [8.503446, 47.394277], [8.50344, 47.394273], [8.503434, 47.394269], [8.503429, 47.394264], [8.503424, 47.394259], [8.50342, 47.394254], [8.503417, 47.394248], [8.503414, 47.394242], [8.503412, 47.394236], [8.503419, 47.39418], [8.503421, 47.394124], [8.503419, 47.394068], [8.5034, 47.393995], [8.503372, 47.393923], [8.503334, 47.393853]]], "type": "MultiLineString"}, "id": "4641", "properties": {}, "type": "Feature"}, {"bbox": [8.502321, 47.36306, 8.503228, 47.364355], "geometry": {"coordinates": [[[8.503228, 47.36306], [8.503202, 47.36309], [8.502795, 47.363514], [8.502582, 47.363764], [8.502321, 47.364068], [8.502322, 47.364342], [8.502348, 47.364349], [8.502766, 47.36435], [8.502792, 47.364351], [8.502882, 47.364355]]], "type": "MultiLineString"}, "id": "4642", "properties": {}, "type": "Feature"}, {"bbox": [8.573214, 47.372719, 8.574065, 47.373042], "geometry": {"coordinates": [[[8.574065, 47.372719], [8.573965, 47.37282], [8.573853, 47.372914], [8.57373, 47.373002], [8.573712, 47.373011], [8.573692, 47.373019], [8.573672, 47.373027], [8.573651, 47.373032], [8.573629, 47.373037], [8.573606, 47.37304], [8.573584, 47.373042], [8.573561, 47.373042], [8.573538, 47.373041], [8.573515, 47.373038], [8.573493, 47.373035], [8.573401, 47.373004], [8.573308, 47.372975], [8.573214, 47.372948]]], "type": "MultiLineString"}, "id": "4644", "properties": {}, "type": "Feature"}, {"bbox": [8.523011, 47.389695, 8.524063, 47.390475], "geometry": {"coordinates": [[[8.524063, 47.389695], [8.52406, 47.389698], [8.523385, 47.390189], [8.523011, 47.390475]]], "type": "MultiLineString"}, "id": "4653", "properties": {}, "type": "Feature"}, {"bbox": [8.514357, 47.367533, 8.515503, 47.36806], "geometry": {"coordinates": [[[8.515503, 47.367533], [8.515451, 47.367567], [8.51524, 47.367704], [8.515176, 47.367742], [8.514835, 47.367915], [8.514636, 47.368043], [8.514629, 47.368047], [8.514621, 47.36805], [8.514614, 47.368053], [8.514605, 47.368056], [8.514597, 47.368057], [8.514589, 47.368059], [8.51458, 47.368059], [8.514571, 47.36806], [8.514562, 47.368059], [8.514554, 47.368059], [8.514545, 47.368057], [8.514537, 47.368055], [8.514529, 47.368053], [8.514521, 47.36805], [8.514513, 47.368047], [8.514448, 47.368016], [8.514357, 47.367973]]], "type": "MultiLineString"}, "id": "4657", "properties": {}, "type": "Feature"}, {"bbox": [8.465178, 47.398289, 8.465219, 47.3983], "geometry": {"coordinates": [[[8.465219, 47.398289], [8.465178, 47.3983]]], "type": "MultiLineString"}, "id": "4658", "properties": {}, "type": "Feature"}, {"bbox": [8.509638, 47.412706, 8.512004, 47.413834], "geometry": {"coordinates": [[[8.512004, 47.412709], [8.511991, 47.412708], [8.511978, 47.412707], [8.511965, 47.412706], [8.511952, 47.412707], [8.51194, 47.412708], [8.511476, 47.412819], [8.511426, 47.412846], [8.51141, 47.412855], [8.511298, 47.412917], [8.511267, 47.412958], [8.511216, 47.413026], [8.510927, 47.413408], [8.510467, 47.413466], [8.510404, 47.413492], [8.510029, 47.413812], [8.510002, 47.413834], [8.509963, 47.413813], [8.509906, 47.413781], [8.509892, 47.413773], [8.509717, 47.413677], [8.509638, 47.413655]]], "type": "MultiLineString"}, "id": "4659", "properties": {}, "type": "Feature"}, {"bbox": [8.546108, 47.420839, 8.546806, 47.420987], "geometry": {"coordinates": [[[8.546806, 47.42092], [8.546796, 47.420923], [8.546787, 47.420926], [8.546777, 47.420928], [8.546767, 47.420929], [8.546757, 47.42093], [8.546747, 47.42093], [8.546736, 47.420929], [8.546726, 47.420928], [8.546716, 47.420926], [8.546707, 47.420924], [8.546697, 47.420921], [8.546688, 47.420918], [8.54668, 47.420914], [8.546673, 47.42091], [8.546665, 47.420907], [8.546657, 47.420904], [8.546648, 47.420901], [8.546639, 47.420899], [8.54663, 47.420898], [8.546621, 47.420897], [8.546612, 47.420896], [8.546603, 47.420896], [8.546593, 47.420897], [8.546584, 47.420898], [8.546575, 47.4209], [8.546567, 47.420902], [8.546558, 47.420905], [8.54655, 47.420908], [8.54654, 47.420911], [8.546529, 47.420913], [8.546518, 47.420915], [8.546506, 47.420916], [8.546495, 47.420916], [8.54649, 47.420916], [8.546485, 47.420917], [8.546481, 47.420918], [8.546476, 47.42092], [8.546472, 47.420921], [8.546468, 47.420923], [8.546464, 47.420925], [8.54646, 47.420927], [8.546345, 47.420987], [8.546344, 47.420987], [8.546343, 47.420987], [8.546342, 47.420987], [8.546341, 47.420987], [8.54634, 47.420987], [8.546339, 47.420987], [8.546338, 47.420987], [8.546337, 47.420987], [8.546336, 47.420986], [8.546335, 47.420986], [8.546334, 47.420985], [8.546334, 47.420985], [8.546333, 47.420984], [8.546332, 47.420984], [8.546332, 47.420983], [8.546331, 47.420983], [8.546331, 47.420982], [8.546331, 47.420981], [8.546331, 47.420981], [8.54633, 47.42098], [8.54633, 47.420979], [8.546331, 47.420979], [8.546331, 47.420978], [8.546331, 47.420977], [8.546331, 47.420977], [8.546332, 47.420976], [8.546341, 47.420922], [8.546343, 47.420914], [8.546344, 47.420906], [8.546344, 47.420897], [8.546337, 47.420853], [8.546336, 47.420852], [8.546336, 47.420851], [8.546336, 47.420851], [8.546336, 47.42085], [8.546336, 47.42085], [8.546335, 47.420849], [8.546335, 47.420849], [8.546334, 47.420849], [8.546334, 47.420848], [8.546333, 47.420848], [8.546332, 47.420848], [8.546332, 47.420847], [8.546331, 47.420847], [8.54633, 47.420847], [8.546329, 47.420847], [8.546329, 47.420847], [8.546328, 47.420847], [8.546327, 47.420847], [8.546326, 47.420847], [8.546325, 47.420847], [8.546325, 47.420847], [8.546324, 47.420847], [8.546323, 47.420847], [8.546242, 47.420884], [8.546231, 47.420887], [8.54622, 47.42089], [8.546209, 47.420891], [8.546207, 47.420892], [8.546206, 47.420892], [8.546204, 47.420891], [8.546202, 47.420891], [8.546201, 47.420891], [8.546199, 47.420891], [8.546198, 47.42089], [8.546197, 47.42089], [8.546195, 47.420889], [8.546194, 47.420888], [8.546193, 47.420887], [8.546192, 47.420887], [8.546191, 47.420886], [8.54619, 47.420885], [8.54619, 47.420884], [8.546189, 47.420883], [8.546189, 47.420882], [8.546188, 47.420881], [8.546188, 47.42088], [8.546188, 47.420879], [8.546187, 47.420871], [8.546185, 47.420862], [8.546182, 47.420854], [8.546178, 47.420846], [8.546178, 47.420845], [8.546178, 47.420844], [8.546177, 47.420844], [8.546177, 47.420843], [8.546176, 47.420842], [8.546175, 47.420842], [8.546174, 47.420841], [8.546174, 47.420841], [8.546173, 47.42084], [8.546172, 47.42084], [8.546171, 47.420839], [8.546169, 47.420839], [8.546168, 47.420839], [8.546167, 47.420839], [8.546166, 47.420839], [8.546165, 47.420839], [8.546164, 47.420839], [8.546163, 47.420839], [8.546161, 47.420839], [8.54616, 47.420839], [8.546159, 47.420839], [8.546158, 47.42084], [8.546157, 47.42084], [8.546156, 47.420841], [8.546155, 47.420841], [8.546108, 47.420897]]], "type": "MultiLineString"}, "id": "4660", "properties": {}, "type": "Feature"}, {"bbox": [8.479467, 47.37863, 8.480984, 47.379501], "geometry": {"coordinates": [[[8.480984, 47.37863], [8.480969, 47.378634], [8.480955, 47.378637], [8.48094, 47.378639], [8.480935, 47.378639], [8.48093, 47.37864], [8.480926, 47.378641], [8.480922, 47.378642], [8.480917, 47.378644], [8.480913, 47.378646], [8.48091, 47.378648], [8.480906, 47.37865], [8.480903, 47.378652], [8.480901, 47.378655], [8.480898, 47.378658], [8.480202, 47.379293], [8.480166, 47.379324], [8.480128, 47.379353], [8.480086, 47.379379], [8.480041, 47.379403], [8.479994, 47.379425], [8.479815, 47.379491], [8.479803, 47.379495], [8.479791, 47.379497], [8.479779, 47.379499], [8.479767, 47.3795], [8.479754, 47.379501], [8.479742, 47.379501], [8.47973, 47.3795], [8.479717, 47.379498], [8.479705, 47.379495], [8.479694, 47.379492], [8.479683, 47.379488], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4662", "properties": {}, "type": "Feature"}, {"bbox": [8.482175, 47.390976, 8.483488, 47.391326], "geometry": {"coordinates": [[[8.482175, 47.390976], [8.482353, 47.391281], [8.482357, 47.391286], [8.482362, 47.391292], [8.482368, 47.391297], [8.482374, 47.391302], [8.48238, 47.391307], [8.482388, 47.391311], [8.482395, 47.391314], [8.482404, 47.391318], [8.482412, 47.39132], [8.482421, 47.391323], [8.48243, 47.391324], [8.482439, 47.391325], [8.482449, 47.391326], [8.482458, 47.391326], [8.482468, 47.391326], [8.482477, 47.391324], [8.482486, 47.391323], [8.482986, 47.391185], [8.48303, 47.391163], [8.483074, 47.39114], [8.483118, 47.391118], [8.483154, 47.391104], [8.483192, 47.391091], [8.48323, 47.39108], [8.483317, 47.391052], [8.483403, 47.391023], [8.483488, 47.390993]]], "type": "MultiLineString"}, "id": "4663", "properties": {}, "type": "Feature"}, {"bbox": [8.478151, 47.360657, 8.47929, 47.360903], "geometry": {"coordinates": [[[8.47929, 47.360657], [8.479001, 47.360756], [8.478546, 47.36089], [8.478527, 47.360895], [8.478507, 47.360899], [8.478487, 47.360902], [8.478467, 47.360903], [8.478447, 47.360903], [8.478426, 47.360902], [8.478406, 47.360899], [8.478387, 47.360895], [8.478368, 47.36089], [8.478349, 47.360884], [8.478232, 47.360841], [8.478151, 47.360806]]], "type": "MultiLineString"}, "id": "4664", "properties": {}, "type": "Feature"}, {"bbox": [8.554853, 47.36691, 8.555794, 47.367468], "geometry": {"coordinates": [[[8.555744, 47.367302], [8.555691, 47.367273], [8.555777, 47.367199], [8.555781, 47.367195], [8.555785, 47.367191], [8.555788, 47.367186], [8.555791, 47.367182], [8.555792, 47.367177], [8.555794, 47.367172], [8.555794, 47.367167], [8.555794, 47.367162], [8.555794, 47.367157], [8.555792, 47.367152], [8.55579, 47.367147], [8.555788, 47.367142], [8.555784, 47.367138], [8.55578, 47.367133], [8.555776, 47.367129], [8.555771, 47.367126], [8.555765, 47.367122], [8.555759, 47.367119], [8.555337, 47.366919], [8.555275, 47.36691], [8.555268, 47.366911], [8.555261, 47.366913], [8.555255, 47.366914], [8.555248, 47.366917], [8.555242, 47.366919], [8.555237, 47.366922], [8.555231, 47.366926], [8.555227, 47.366929], [8.555222, 47.366933], [8.554868, 47.367287], [8.554864, 47.367291], [8.554861, 47.367295], [8.554858, 47.3673], [8.554856, 47.367304], [8.554855, 47.367309], [8.554854, 47.367314], [8.554853, 47.367319], [8.554854, 47.367323], [8.554855, 47.367328], [8.554856, 47.367333], [8.554858, 47.367337], [8.554861, 47.367342], [8.554864, 47.367346], [8.554868, 47.36735], [8.554872, 47.367354], [8.554877, 47.367358], [8.554882, 47.367361], [8.554888, 47.367364], [8.555104, 47.367468]]], "type": "MultiLineString"}, "id": "4665", "properties": {}, "type": "Feature"}, {"bbox": [8.511966, 47.412268, 8.51487, 47.413871], "geometry": {"coordinates": [[[8.51487, 47.412268], [8.514774, 47.412394], [8.514589, 47.412574], [8.514381, 47.412742], [8.514152, 47.412896], [8.513904, 47.413036], [8.513638, 47.413161], [8.513358, 47.413269], [8.513064, 47.413361], [8.51276, 47.413434], [8.512447, 47.413488], [8.512442, 47.413561], [8.512442, 47.413575], [8.51244, 47.413589], [8.512436, 47.413603], [8.512431, 47.413617], [8.512423, 47.41363], [8.512414, 47.413643], [8.512404, 47.413655], [8.512391, 47.413666], [8.512378, 47.413677], [8.512363, 47.413687], [8.512347, 47.413696], [8.51233, 47.413704], [8.511966, 47.413871]]], "type": "MultiLineString"}, "id": "4669", "properties": {}, "type": "Feature"}, {"bbox": [8.492991, 47.410152, 8.499577, 47.419298], "geometry": {"coordinates": [[[8.499577, 47.419298], [8.499569, 47.419294], [8.499449, 47.419246], [8.499324, 47.419205], [8.499194, 47.419172], [8.49906, 47.419146], [8.498923, 47.419129], [8.498664, 47.419097], [8.49841, 47.419047], [8.498165, 47.418981], [8.497903, 47.418906], [8.497864, 47.418894], [8.497827, 47.418881], [8.497792, 47.418865], [8.497759, 47.418848], [8.497727, 47.418828], [8.497699, 47.418807], [8.497673, 47.418785], [8.496693, 47.417965], [8.496504, 47.417807], [8.496311, 47.417651], [8.496115, 47.417497], [8.49608, 47.417468], [8.49605, 47.417437], [8.496024, 47.417404], [8.495973, 47.417308], [8.495899, 47.417122], [8.49587, 47.417048], [8.495743, 47.416728], [8.495714, 47.416639], [8.495693, 47.416548], [8.495681, 47.416457], [8.495647, 47.41618], [8.495645, 47.416157], [8.495643, 47.416133], [8.495642, 47.416109], [8.495641, 47.416077], [8.495642, 47.416044], [8.495644, 47.416012], [8.49569, 47.415776], [8.495713, 47.415662], [8.495741, 47.415548], [8.495773, 47.415435], [8.495813, 47.415299], [8.495848, 47.415163], [8.495879, 47.415027], [8.495899, 47.414929], [8.495915, 47.41483], [8.495926, 47.414732], [8.495932, 47.414645], [8.495934, 47.414557], [8.495931, 47.41447], [8.495931, 47.414382], [8.495923, 47.414294], [8.495907, 47.414207], [8.495905, 47.414197], [8.495903, 47.414187], [8.4959, 47.414178], [8.495887, 47.414143], [8.495869, 47.414109], [8.495848, 47.414076], [8.495822, 47.414044], [8.495758, 47.41396], [8.495695, 47.413875], [8.495633, 47.413789], [8.495579, 47.413706], [8.49553, 47.413622], [8.495486, 47.413536], [8.495392, 47.413346], [8.495303, 47.413155], [8.495219, 47.412962], [8.495157, 47.412827], [8.495092, 47.412692], [8.495023, 47.412557], [8.494972, 47.412464], [8.494916, 47.412372], [8.494855, 47.412282], [8.494798, 47.412208], [8.494734, 47.412137], [8.494666, 47.412068], [8.494422, 47.411843], [8.494308, 47.411728], [8.4942, 47.411611], [8.494098, 47.411492], [8.493706, 47.411013], [8.493103, 47.410282], [8.492991, 47.410152]]], "type": "MultiLineString"}, "id": "4671", "properties": {}, "type": "Feature"}, {"bbox": [8.548196, 47.382407, 8.54893, 47.382497], "geometry": {"coordinates": [[[8.548196, 47.382407], [8.548296, 47.382413], [8.548884, 47.382483], [8.54893, 47.382497]]], "type": "MultiLineString"}, "id": "4672", "properties": {}, "type": "Feature"}, {"bbox": [8.523817, 47.337825, 8.524804, 47.33821], "geometry": {"coordinates": [[[8.524804, 47.33821], [8.524315, 47.338205], [8.524146, 47.338195], [8.52398, 47.338175], [8.523817, 47.338145], [8.523844, 47.337825]]], "type": "MultiLineString"}, "id": "4673", "properties": {}, "type": "Feature"}, {"bbox": [8.479168, 47.41554, 8.480136, 47.415889], "geometry": {"coordinates": [[[8.479168, 47.415889], [8.479596, 47.415886], [8.47959, 47.415701], [8.479717, 47.415615], [8.480017, 47.415612], [8.480136, 47.41554]]], "type": "MultiLineString"}, "id": "4675", "properties": {}, "type": "Feature"}, {"bbox": [8.576919, 47.384517, 8.577044, 47.38473], "geometry": {"coordinates": [[[8.577044, 47.38473], [8.577025, 47.384714], [8.577007, 47.384697], [8.576992, 47.384679], [8.576979, 47.38466], [8.576968, 47.384641], [8.57696, 47.384621], [8.576957, 47.384599], [8.576952, 47.384578], [8.576944, 47.384557], [8.576933, 47.384536], [8.576919, 47.384517]]], "type": "MultiLineString"}, "id": "4676", "properties": {}, "type": "Feature"}, {"bbox": [8.512181, 47.330738, 8.513044, 47.331585], "geometry": {"coordinates": [[[8.512673, 47.331585], [8.512648, 47.331552], [8.512618, 47.331514], [8.512596, 47.331488], [8.51258, 47.33147], [8.512566, 47.33145], [8.512554, 47.33143], [8.512544, 47.331413], [8.512536, 47.331396], [8.512529, 47.331379], [8.512501, 47.331306], [8.512498, 47.331296], [8.512493, 47.331285], [8.512487, 47.331275], [8.51248, 47.331266], [8.512472, 47.331257], [8.512462, 47.331248], [8.512452, 47.331241], [8.512441, 47.331235], [8.512429, 47.331229], [8.512416, 47.331224], [8.512402, 47.331221], [8.512383, 47.331216], [8.512363, 47.331212], [8.512343, 47.33121], [8.512332, 47.331209], [8.512322, 47.331208], [8.512312, 47.331205], [8.512302, 47.331202], [8.512293, 47.331199], [8.512284, 47.331195], [8.512276, 47.331191], [8.512268, 47.331186], [8.512239, 47.331098], [8.51221, 47.331092], [8.512184, 47.331071], [8.512181, 47.330874], [8.512237, 47.330854], [8.512283, 47.330817], [8.512282, 47.33075], [8.512299, 47.330746], [8.51267, 47.330747], [8.512718, 47.330746], [8.512957, 47.33074], [8.513044, 47.330738]]], "type": "MultiLineString"}, "id": "4677", "properties": {}, "type": "Feature"}, {"bbox": [8.484874, 47.381601, 8.485704, 47.382327], "geometry": {"coordinates": [[[8.485704, 47.382327], [8.485682, 47.382317], [8.485662, 47.382307], [8.485643, 47.382295], [8.485625, 47.382281], [8.485581, 47.382238], [8.485535, 47.382196], [8.485488, 47.382154], [8.485481, 47.382148], [8.485472, 47.382142], [8.485463, 47.382136], [8.485453, 47.382131], [8.485443, 47.382127], [8.485432, 47.382124], [8.485365, 47.382098], [8.485357, 47.382094], [8.485349, 47.382091], [8.485342, 47.382086], [8.485335, 47.382082], [8.485329, 47.382077], [8.485324, 47.382071], [8.485243, 47.381992], [8.485164, 47.381913], [8.485086, 47.381832], [8.485049, 47.381781], [8.485013, 47.381729], [8.484978, 47.381677], [8.484965, 47.381662], [8.48495, 47.381648], [8.484933, 47.381634], [8.484915, 47.381622], [8.484895, 47.381611], [8.484874, 47.381601]]], "type": "MultiLineString"}, "id": "4678", "properties": {}, "type": "Feature"}, {"bbox": [8.590258, 47.372485, 8.591234, 47.373974], "geometry": {"coordinates": [[[8.590258, 47.372495], [8.590307, 47.372489], [8.590356, 47.372486], [8.590406, 47.372485], [8.590455, 47.372487], [8.590504, 47.372493], [8.590552, 47.3725], [8.590599, 47.372511], [8.590677, 47.372707], [8.590684, 47.372754], [8.590691, 47.3728], [8.590696, 47.372847], [8.590713, 47.372901], [8.590738, 47.372953], [8.59077, 47.373004], [8.590811, 47.373081], [8.590848, 47.373159], [8.590879, 47.373237], [8.590892, 47.373284], [8.59091, 47.373329], [8.590934, 47.373373], [8.590963, 47.373415], [8.590997, 47.373456], [8.591037, 47.373494], [8.591073, 47.373531], [8.591108, 47.373568], [8.591142, 47.373605], [8.591171, 47.373644], [8.591195, 47.373685], [8.591214, 47.373727], [8.591228, 47.37377], [8.591234, 47.373827], [8.591234, 47.373884], [8.591227, 47.373941], [8.591225, 47.37395], [8.591221, 47.373958], [8.591216, 47.373966], [8.591209, 47.373974]]], "type": "MultiLineString"}, "id": "4679", "properties": {}, "type": "Feature"}, {"bbox": [8.483322, 47.412128, 8.48401, 47.412501], "geometry": {"coordinates": [[[8.483779, 47.412501], [8.483725, 47.412499], [8.483671, 47.412494], [8.483619, 47.412486], [8.483567, 47.412475], [8.483517, 47.412461], [8.48347, 47.412444], [8.483424, 47.412424], [8.483382, 47.412402], [8.48337, 47.412394], [8.48336, 47.412385], [8.483351, 47.412376], [8.483343, 47.412367], [8.483336, 47.412357], [8.48333, 47.412346], [8.483326, 47.412336], [8.483323, 47.412325], [8.483322, 47.412314], [8.483322, 47.412303], [8.483324, 47.412292], [8.483326, 47.412281], [8.483331, 47.412271], [8.483336, 47.41226], [8.483343, 47.41225], [8.483351, 47.412241], [8.483361, 47.412232], [8.483371, 47.412224], [8.483383, 47.412216], [8.483395, 47.412209], [8.483408, 47.412203], [8.483432, 47.412195], [8.483456, 47.412188], [8.483481, 47.412183], [8.483506, 47.412179], [8.483871, 47.412144], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "4680", "properties": {}, "type": "Feature"}, {"bbox": [8.467599, 47.402561, 8.474729, 47.40303], "geometry": {"coordinates": [[[8.474729, 47.40303], [8.474458, 47.402951], [8.474177, 47.402889], [8.47389, 47.402843], [8.473598, 47.402816], [8.473303, 47.402806], [8.473008, 47.402814], [8.47279, 47.402828], [8.472572, 47.40283], [8.472353, 47.40282], [8.472137, 47.402797], [8.471924, 47.402763], [8.471311, 47.402668], [8.471153, 47.402649], [8.470994, 47.40264], [8.470833, 47.40264], [8.470439, 47.402649], [8.470301, 47.40264], [8.470163, 47.402624], [8.470028, 47.402603], [8.469867, 47.40258], [8.469704, 47.402566], [8.46954, 47.402561], [8.469375, 47.402566], [8.469146, 47.402571], [8.468917, 47.402575], [8.468687, 47.402577], [8.468323, 47.40259], [8.46796, 47.402614], [8.467599, 47.402649]]], "type": "MultiLineString"}, "id": "4685", "properties": {}, "type": "Feature"}, {"bbox": [8.505448, 47.396335, 8.508037, 47.397112], "geometry": {"coordinates": [[[8.508037, 47.396335], [8.507834, 47.396385], [8.507036, 47.39659], [8.506712, 47.396683], [8.506705, 47.396685], [8.506698, 47.396687], [8.506691, 47.396688], [8.506684, 47.396689], [8.50668, 47.396689], [8.506675, 47.396689], [8.506671, 47.39669], [8.506666, 47.396691], [8.506662, 47.396693], [8.506658, 47.396694], [8.506654, 47.396696], [8.506516, 47.396765], [8.506378, 47.396833], [8.506238, 47.3969], [8.506237, 47.396901], [8.506236, 47.396901], [8.506235, 47.396901], [8.506234, 47.396902], [8.506233, 47.396902], [8.506231, 47.396902], [8.50623, 47.396902], [8.506229, 47.396902], [8.506228, 47.396902], [8.506226, 47.396902], [8.506225, 47.396902], [8.506224, 47.396902], [8.506223, 47.396901], [8.506222, 47.396901], [8.506221, 47.3969], [8.50622, 47.3969], [8.506219, 47.396899], [8.506211, 47.396892], [8.50621, 47.396891], [8.506209, 47.396891], [8.506208, 47.39689], [8.506207, 47.39689], [8.506206, 47.396889], [8.506205, 47.396889], [8.506204, 47.396888], [8.506202, 47.396888], [8.506201, 47.396888], [8.5062, 47.396888], [8.506199, 47.396888], [8.506197, 47.396888], [8.506196, 47.396888], [8.506195, 47.396888], [8.506193, 47.396888], [8.506192, 47.396889], [8.50582, 47.397066], [8.505813, 47.397069], [8.505805, 47.397072], [8.505797, 47.397075], [8.505789, 47.397077], [8.505656, 47.397111], [8.505654, 47.397111], [8.505653, 47.397112], [8.505651, 47.397112], [8.50565, 47.397112], [8.505648, 47.397112], [8.505647, 47.397112], [8.505646, 47.397112], [8.505644, 47.397112], [8.505643, 47.397111], [8.505641, 47.397111], [8.50564, 47.397111], [8.505639, 47.39711], [8.505638, 47.397109], [8.505636, 47.397109], [8.505635, 47.397108], [8.505634, 47.397107], [8.505634, 47.397107], [8.505633, 47.397106], [8.505448, 47.396907]]], "type": "MultiLineString"}, "id": "4687", "properties": {}, "type": "Feature"}, {"bbox": [8.500517, 47.37309, 8.501151, 47.373373], "geometry": {"coordinates": [[[8.500517, 47.373209], [8.500622, 47.37317], [8.500727, 47.373131], [8.500834, 47.373094], [8.500844, 47.373092], [8.500854, 47.373091], [8.500864, 47.37309], [8.500874, 47.37309], [8.500885, 47.37309], [8.500895, 47.373091], [8.500905, 47.373093], [8.500914, 47.373095], [8.500924, 47.373098], [8.500933, 47.373101], [8.500941, 47.373105], [8.50095, 47.373109], [8.500957, 47.373114], [8.500964, 47.373119], [8.50097, 47.373125], [8.500976, 47.37313], [8.50098, 47.373137], [8.501151, 47.373373]]], "type": "MultiLineString"}, "id": "4690", "properties": {}, "type": "Feature"}, {"bbox": [8.546463, 47.425332, 8.546838, 47.426417], "geometry": {"coordinates": [[[8.546838, 47.425332], [8.546835, 47.425358], [8.546828, 47.425385], [8.546819, 47.425411], [8.546807, 47.425437], [8.54678, 47.425492], [8.546758, 47.425547], [8.54674, 47.425604], [8.546564, 47.426135], [8.546463, 47.426417]]], "type": "MultiLineString"}, "id": "4691", "properties": {}, "type": "Feature"}, {"bbox": [8.525194, 47.425633, 8.525215, 47.425762], "geometry": {"coordinates": [[[8.525194, 47.425633], [8.525204, 47.425676], [8.525211, 47.425719], [8.525215, 47.425762]]], "type": "MultiLineString"}, "id": "4693", "properties": {}, "type": "Feature"}, {"bbox": [8.500308, 47.419046, 8.501593, 47.419692], "geometry": {"coordinates": [[[8.500308, 47.419692], [8.500348, 47.419685], [8.500388, 47.419677], [8.500427, 47.419667], [8.500839, 47.41948], [8.501228, 47.419273], [8.501593, 47.419046]]], "type": "MultiLineString"}, "id": "4694", "properties": {}, "type": "Feature"}, {"bbox": [8.496161, 47.362641, 8.497004, 47.362817], "geometry": {"coordinates": [[[8.497004, 47.362641], [8.496564, 47.362667], [8.496409, 47.362678], [8.496378, 47.362688], [8.496348, 47.362699], [8.496319, 47.362711], [8.496292, 47.362726], [8.496267, 47.362741], [8.496212, 47.362778], [8.496161, 47.362817]]], "type": "MultiLineString"}, "id": "4695", "properties": {}, "type": "Feature"}, {"bbox": [8.480538, 47.373279, 8.48103, 47.373745], "geometry": {"coordinates": [[[8.48059, 47.373279], [8.48054, 47.373349], [8.480538, 47.373359], [8.480538, 47.373369], [8.48054, 47.373379], [8.480542, 47.373389], [8.480546, 47.373398], [8.480551, 47.373408], [8.480557, 47.373417], [8.480565, 47.373425], [8.480574, 47.373433], [8.480583, 47.373441], [8.480594, 47.373448], [8.48103, 47.373745]]], "type": "MultiLineString"}, "id": "4696", "properties": {}, "type": "Feature"}, {"bbox": [8.615877, 47.353963, 8.623683, 47.354428], "geometry": {"coordinates": [[[8.615877, 47.354376], [8.616069, 47.354387], [8.616113, 47.354388], [8.616157, 47.354388], [8.616201, 47.354384], [8.616244, 47.354378], [8.616287, 47.35437], [8.616328, 47.35436], [8.616368, 47.354347], [8.616406, 47.354332], [8.616442, 47.354315], [8.61678, 47.354215], [8.616903, 47.354186], [8.617029, 47.354166], [8.617158, 47.354155], [8.617242, 47.354156], [8.617326, 47.354161], [8.617408, 47.354171], [8.617539, 47.354196], [8.617673, 47.354213], [8.617808, 47.354221], [8.617944, 47.354222], [8.618033, 47.354218], [8.618121, 47.35422], [8.618209, 47.354226], [8.618296, 47.354237], [8.618382, 47.354254], [8.618465, 47.354274], [8.618545, 47.3543], [8.618916, 47.3544], [8.618987, 47.354413], [8.619059, 47.354423], [8.619132, 47.354427], [8.619176, 47.354428], [8.61922, 47.354425], [8.619263, 47.35442], [8.619306, 47.354412], [8.619347, 47.354402], [8.619445, 47.354373], [8.619543, 47.354344], [8.619641, 47.354314], [8.61973, 47.354288], [8.619821, 47.354264], [8.619912, 47.354241], [8.620005, 47.354218], [8.620097, 47.354194], [8.620189, 47.354168], [8.62027, 47.354146], [8.620352, 47.354127], [8.620436, 47.354109], [8.620482, 47.3541], [8.620528, 47.35409], [8.620573, 47.354078], [8.620722, 47.354052], [8.620866, 47.354039], [8.621011, 47.354027], [8.621156, 47.354016], [8.621361, 47.354002], [8.621567, 47.353989], [8.621772, 47.353979], [8.621881, 47.353974], [8.62199, 47.353969], [8.622099, 47.353965], [8.622161, 47.353963], [8.622223, 47.353964], [8.622286, 47.353966], [8.622406, 47.353973], [8.622527, 47.35398], [8.622648, 47.353989], [8.622703, 47.353995], [8.622757, 47.354004], [8.62281, 47.354016], [8.622924, 47.354046], [8.623037, 47.354076], [8.623151, 47.354107], [8.623238, 47.354132], [8.623323, 47.354159], [8.623408, 47.354188], [8.623472, 47.354209], [8.623538, 47.354228], [8.623605, 47.354244], [8.623683, 47.354268]]], "type": "MultiLineString"}, "id": "4697", "properties": {}, "type": "Feature"}, {"bbox": [8.474757, 47.415778, 8.476853, 47.416112], "geometry": {"coordinates": [[[8.476853, 47.415779], [8.476489, 47.415778], [8.476109, 47.415798], [8.475733, 47.415838], [8.475489, 47.415877], [8.475251, 47.415928], [8.47502, 47.415992], [8.474796, 47.416068], [8.474789, 47.416073], [8.474782, 47.416077], [8.474776, 47.416082], [8.474771, 47.416088], [8.474766, 47.416093], [8.474762, 47.416099], [8.474759, 47.416105], [8.474757, 47.416112]]], "type": "MultiLineString"}, "id": "4698", "properties": {}, "type": "Feature"}, {"bbox": [8.515398, 47.386648, 8.517559, 47.387907], "geometry": {"coordinates": [[[8.517553, 47.386648], [8.517554, 47.386681], [8.517559, 47.386809], [8.517559, 47.386821], [8.517558, 47.386832], [8.517555, 47.386843], [8.517551, 47.386854], [8.517545, 47.38686], [8.517538, 47.386866], [8.51753, 47.386872], [8.517522, 47.386877], [8.517513, 47.386882], [8.517504, 47.386886], [8.517431, 47.386916], [8.51684, 47.387181], [8.51664, 47.387313], [8.516615, 47.387331], [8.516584, 47.387354], [8.516488, 47.38742], [8.51558, 47.387826], [8.515398, 47.387907]]], "type": "MultiLineString"}, "id": "4703", "properties": {}, "type": "Feature"}, {"bbox": [8.545002, 47.365766, 8.547042, 47.366623], "geometry": {"coordinates": [[[8.545002, 47.366345], [8.545261, 47.366311], [8.545271, 47.366329], [8.545283, 47.366345], [8.545297, 47.366361], [8.545312, 47.366376], [8.54533, 47.36639], [8.54535, 47.366403], [8.545371, 47.366414], [8.545393, 47.366425], [8.545831, 47.366615], [8.545836, 47.366617], [8.545841, 47.366619], [8.545847, 47.36662], [8.545852, 47.366621], [8.545858, 47.366622], [8.545864, 47.366623], [8.545869, 47.366623], [8.545876, 47.366623], [8.545882, 47.366622], [8.545888, 47.366622], [8.545894, 47.36662], [8.545899, 47.366619], [8.545905, 47.366617], [8.54591, 47.366615], [8.545915, 47.366613], [8.54592, 47.36661], [8.545985, 47.366571], [8.546054, 47.366524], [8.54612, 47.366476], [8.546184, 47.366426], [8.546213, 47.366403], [8.546242, 47.366381], [8.546272, 47.366358], [8.546803, 47.365937], [8.546879, 47.365878], [8.546959, 47.36582], [8.547042, 47.365766]]], "type": "MultiLineString"}, "id": "4704", "properties": {}, "type": "Feature"}, {"bbox": [8.474887, 47.364946, 8.480724, 47.365974], "geometry": {"coordinates": [[[8.474887, 47.365974], [8.475022, 47.365961], [8.475155, 47.36594], [8.475285, 47.36591], [8.47541, 47.365872], [8.475906, 47.365699], [8.476509, 47.365497], [8.476857, 47.36539], [8.477216, 47.365302], [8.477583, 47.365231], [8.477788, 47.365195], [8.477882, 47.365186], [8.477975, 47.365176], [8.478068, 47.365166], [8.478159, 47.365156], [8.478252, 47.365148], [8.478344, 47.365142], [8.478432, 47.365135], [8.478519, 47.365122], [8.478603, 47.365104], [8.478753, 47.36509], [8.47877, 47.36509], [8.478788, 47.365089], [8.478805, 47.365087], [8.478821, 47.365083], [8.478838, 47.365079], [8.478953, 47.365046], [8.47907, 47.365016], [8.479189, 47.364989], [8.479197, 47.364987], [8.479205, 47.364985], [8.479213, 47.364984], [8.479322, 47.364964], [8.479433, 47.364951], [8.479546, 47.364946], [8.479627, 47.364947], [8.479708, 47.364954], [8.479787, 47.364965], [8.479887, 47.364983], [8.479986, 47.365], [8.480085, 47.365018], [8.480143, 47.36503], [8.4802, 47.365045], [8.480255, 47.365064], [8.480348, 47.365103], [8.480434, 47.365148], [8.480515, 47.365198], [8.480588, 47.365253], [8.480616, 47.365277], [8.48064, 47.365304], [8.480659, 47.365332], [8.480675, 47.365361], [8.480688, 47.365389], [8.480701, 47.365416], [8.480714, 47.365444], [8.480724, 47.365467]]], "type": "MultiLineString"}, "id": "4706", "properties": {}, "type": "Feature"}, {"bbox": [8.545097, 47.409859, 8.546052, 47.410116], "geometry": {"coordinates": [[[8.546052, 47.410116], [8.545967, 47.410073], [8.545097, 47.409859]]], "type": "MultiLineString"}, "id": "4707", "properties": {}, "type": "Feature"}, {"bbox": [8.489004, 47.408438, 8.49098, 47.410184], "geometry": {"coordinates": [[[8.489004, 47.408438], [8.489137, 47.408559], [8.489249, 47.408663], [8.489344, 47.408746], [8.489506, 47.408881], [8.489766, 47.409067], [8.489811, 47.409105], [8.48985, 47.409145], [8.489885, 47.409188], [8.489918, 47.409235], [8.48993, 47.409249], [8.489944, 47.409263], [8.489959, 47.409275], [8.489976, 47.409287], [8.489991, 47.409295], [8.490006, 47.409302], [8.490022, 47.409309], [8.490045, 47.409319], [8.490066, 47.40933], [8.490086, 47.409343], [8.490105, 47.409356], [8.490121, 47.409371], [8.490136, 47.409386], [8.490183, 47.40944], [8.490226, 47.409495], [8.490267, 47.409551], [8.49028, 47.409573], [8.49029, 47.409596], [8.490297, 47.409619], [8.490301, 47.409643], [8.490312, 47.409753], [8.490312, 47.409753], [8.490313, 47.409759], [8.490314, 47.409765], [8.490315, 47.409771], [8.490315, 47.409771], [8.490315, 47.409771], [8.49032, 47.409784], [8.490326, 47.409797], [8.490333, 47.40981], [8.490342, 47.409822], [8.490352, 47.409833], [8.490378, 47.409858], [8.490407, 47.409881], [8.490438, 47.409902], [8.490472, 47.409922], [8.490508, 47.40994], [8.490729, 47.41004], [8.490753, 47.410052], [8.490777, 47.410064], [8.490799, 47.410078], [8.490888, 47.410133], [8.49098, 47.410184]]], "type": "MultiLineString"}, "id": "4708", "properties": {}, "type": "Feature"}, {"bbox": [8.499803, 47.355605, 8.504139, 47.359798], "geometry": {"coordinates": [[[8.504139, 47.355605], [8.503888, 47.355891], [8.502896, 47.356993], [8.502742, 47.357168], [8.502645, 47.357276], [8.502401, 47.357526], [8.502389, 47.357598], [8.502091, 47.357893], [8.501949, 47.357987], [8.501591, 47.358363], [8.50157, 47.358432], [8.501094, 47.358857], [8.501023, 47.358854], [8.500986, 47.358872], [8.500387, 47.359399], [8.500004, 47.359627], [8.499901, 47.359677], [8.499803, 47.359798]]], "type": "MultiLineString"}, "id": "4709", "properties": {}, "type": "Feature"}, {"bbox": [8.508935, 47.368953, 8.510349, 47.369788], "geometry": {"coordinates": [[[8.510349, 47.369788], [8.510246, 47.36973], [8.509046, 47.369007], [8.508935, 47.368953]]], "type": "MultiLineString"}, "id": "4710", "properties": {}, "type": "Feature"}, {"bbox": [8.535198, 47.36853, 8.53722, 47.368911], "geometry": {"coordinates": [[[8.53722, 47.36853], [8.537213, 47.368549], [8.537203, 47.368567], [8.537191, 47.368585], [8.537176, 47.368602], [8.53716, 47.368618], [8.537142, 47.368633], [8.537121, 47.368646], [8.537099, 47.368659], [8.537076, 47.36867], [8.537051, 47.36868], [8.537025, 47.368688], [8.536853, 47.368732], [8.536676, 47.368764], [8.536495, 47.368785], [8.535366, 47.368871], [8.535322, 47.368877], [8.535279, 47.368886], [8.535237, 47.368897], [8.535198, 47.368911]]], "type": "MultiLineString"}, "id": "4711", "properties": {}, "type": "Feature"}, {"bbox": [8.562708, 47.356033, 8.566034, 47.356685], "geometry": {"coordinates": [[[8.562708, 47.356033], [8.562752, 47.356035], [8.562795, 47.356039], [8.562838, 47.356046], [8.562879, 47.356055], [8.56292, 47.356066], [8.562959, 47.356079], [8.562996, 47.356095], [8.563031, 47.356113], [8.563063, 47.356132], [8.563093, 47.356154], [8.563317, 47.356364], [8.563368, 47.356406], [8.563424, 47.356446], [8.563486, 47.356482], [8.563551, 47.356514], [8.563621, 47.356542], [8.563694, 47.356566], [8.56377, 47.356585], [8.563848, 47.356599], [8.563928, 47.356609], [8.564008, 47.356614], [8.564329, 47.356623], [8.56443, 47.356621], [8.564531, 47.356617], [8.564631, 47.356611], [8.564798, 47.356599], [8.564965, 47.356596], [8.565132, 47.356603], [8.565297, 47.356619], [8.565668, 47.356658], [8.566034, 47.356685]]], "type": "MultiLineString"}, "id": "4712", "properties": {}, "type": "Feature"}, {"bbox": [8.495083, 47.421091, 8.498749, 47.422102], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.498167, 47.421331], [8.497833, 47.421467], [8.497481, 47.42158], [8.497115, 47.421669], [8.496737, 47.421734], [8.496427, 47.421777], [8.496416, 47.421778], [8.496406, 47.42178], [8.496396, 47.421782], [8.496386, 47.421785], [8.496377, 47.421788], [8.496368, 47.421792], [8.49636, 47.421796], [8.496352, 47.421801], [8.496345, 47.421806], [8.496338, 47.421812], [8.496332, 47.421818], [8.496327, 47.421824], [8.496323, 47.421831], [8.49632, 47.421837], [8.496253, 47.421934], [8.496249, 47.42194], [8.496243, 47.421946], [8.496237, 47.421952], [8.496231, 47.421958], [8.496223, 47.421963], [8.496215, 47.421967], [8.496206, 47.421971], [8.496197, 47.421975], [8.496188, 47.421978], [8.496178, 47.42198], [8.496167, 47.421982], [8.496157, 47.421983], [8.495345, 47.422096], [8.49533, 47.422099], [8.495316, 47.422101], [8.495301, 47.422102], [8.495286, 47.422102], [8.495271, 47.422101], [8.495256, 47.422099], [8.495241, 47.422097], [8.495189, 47.422079], [8.495136, 47.422062], [8.495083, 47.422045]]], "type": "MultiLineString"}, "id": "4715", "properties": {}, "type": "Feature"}, {"bbox": [8.605507, 47.354268, 8.624195, 47.355703], "geometry": {"coordinates": [[[8.605507, 47.35544], [8.605677, 47.355434], [8.606213, 47.355399], [8.606851, 47.355359], [8.607831, 47.355217], [8.608038, 47.355211], [8.608326, 47.355236], [8.609118, 47.355222], [8.609252, 47.355219], [8.609384, 47.355207], [8.609515, 47.355187], [8.609643, 47.35516], [8.610383, 47.354996], [8.610439, 47.354984], [8.610497, 47.354975], [8.610555, 47.35497], [8.610614, 47.354968], [8.610673, 47.35497], [8.610732, 47.354975], [8.611185, 47.35503], [8.611939, 47.355148], [8.612429, 47.355238], [8.612848, 47.355345], [8.612991, 47.35538], [8.613137, 47.355408], [8.613285, 47.355429], [8.613563, 47.355456], [8.614903, 47.355454], [8.615792, 47.355437], [8.61583, 47.355437], [8.615867, 47.35544], [8.615905, 47.355445], [8.615941, 47.355453], [8.615976, 47.355462], [8.61601, 47.355474], [8.6162, 47.355565], [8.616228, 47.355576], [8.616257, 47.355586], [8.616287, 47.355594], [8.616318, 47.355601], [8.61635, 47.355606], [8.616382, 47.355609], [8.616415, 47.35561], [8.61678, 47.355617], [8.617214, 47.355662], [8.617426, 47.355677], [8.618011, 47.3557], [8.618325, 47.355703], [8.61869, 47.355692], [8.618781, 47.355649], [8.618824, 47.35563], [8.618853, 47.355616], [8.618911, 47.35559], [8.618967, 47.355563], [8.619021, 47.355534], [8.619075, 47.355504], [8.619126, 47.355472], [8.619176, 47.35544], [8.619274, 47.355374], [8.619455, 47.355261], [8.619475, 47.355249], [8.619494, 47.355237], [8.619514, 47.355225], [8.619589, 47.355184], [8.619666, 47.355145], [8.619745, 47.355108], [8.61982, 47.355077], [8.619898, 47.355051], [8.61998, 47.35503], [8.620034, 47.355018], [8.620089, 47.355007], [8.620144, 47.354996], [8.620206, 47.354983], [8.620266, 47.354969], [8.620326, 47.354954], [8.620403, 47.354933], [8.620479, 47.354911], [8.620554, 47.354888], [8.620664, 47.354855], [8.620776, 47.354824], [8.620888, 47.354794], [8.62093, 47.354783], [8.620973, 47.354773], [8.621016, 47.354763], [8.621051, 47.354753], [8.621087, 47.354743], [8.621121, 47.354731], [8.621201, 47.354699], [8.621281, 47.354666], [8.62136, 47.354633], [8.621422, 47.354608], [8.621487, 47.354587], [8.621555, 47.354571], [8.621636, 47.354555], [8.621717, 47.35454], [8.621798, 47.354527], [8.621889, 47.354515], [8.621981, 47.354505], [8.622073, 47.354496], [8.622073, 47.354496], [8.622302, 47.354471], [8.622659, 47.354452], [8.622779, 47.354444], [8.622899, 47.354432], [8.623017, 47.354415], [8.623017, 47.354415], [8.623017, 47.354415], [8.623084, 47.354404], [8.62315, 47.354391], [8.623216, 47.354378], [8.623319, 47.354355], [8.62342, 47.354329], [8.62352, 47.354301], [8.62354, 47.354295], [8.623561, 47.354291], [8.623582, 47.354286], [8.623683, 47.354268], [8.624174, 47.354301], [8.624195, 47.354327]]], "type": "MultiLineString"}, "id": "4717", "properties": {}, "type": "Feature"}, {"bbox": [8.531896, 47.399212, 8.532661, 47.399537], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531898, 47.399225], [8.531902, 47.399237], [8.531908, 47.39925], [8.531915, 47.399262], [8.531924, 47.399273], [8.531934, 47.399285], [8.531945, 47.399295], [8.531958, 47.399305], [8.531972, 47.399313], [8.531988, 47.399321], [8.532004, 47.399328], [8.532021, 47.399334], [8.532039, 47.399339], [8.532196, 47.39935], [8.532353, 47.399353], [8.532511, 47.399349], [8.532524, 47.399351], [8.532537, 47.399353], [8.53255, 47.399355], [8.532562, 47.399359], [8.532574, 47.399363], [8.532585, 47.399368], [8.532596, 47.399374], [8.532605, 47.39938], [8.532614, 47.399387], [8.532633, 47.399437], [8.532649, 47.399487], [8.532661, 47.399537]]], "type": "MultiLineString"}, "id": "4722", "properties": {}, "type": "Feature"}, {"bbox": [8.509362, 47.421323, 8.510096, 47.421894], "geometry": {"coordinates": [[[8.509362, 47.421323], [8.50937, 47.421345], [8.509378, 47.421367], [8.509384, 47.421389], [8.509408, 47.42144], [8.509439, 47.42149], [8.509476, 47.421537], [8.509519, 47.421582], [8.509568, 47.421624], [8.509637, 47.421686], [8.509711, 47.421745], [8.509791, 47.421801], [8.509888, 47.421839], [8.50999, 47.42187], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "4723", "properties": {}, "type": "Feature"}, {"bbox": [8.575044, 47.404625, 8.575601, 47.405311], "geometry": {"coordinates": [[[8.575044, 47.405311], [8.575126, 47.405279], [8.57523, 47.405217], [8.575263, 47.405205], [8.57528, 47.405197], [8.575296, 47.405189], [8.575311, 47.40518], [8.575325, 47.40517], [8.575337, 47.405159], [8.575347, 47.405147], [8.575356, 47.405135], [8.575363, 47.405122], [8.575537, 47.404775], [8.575601, 47.404625]]], "type": "MultiLineString"}, "id": "4725", "properties": {}, "type": "Feature"}, {"bbox": [8.488273, 47.376089, 8.488965, 47.377018], "geometry": {"coordinates": [[[8.488273, 47.377018], [8.488303, 47.376978], [8.488336, 47.376938], [8.488371, 47.3769], [8.488404, 47.376837], [8.488434, 47.376774], [8.488462, 47.37671], [8.488502, 47.376643], [8.488547, 47.376578], [8.488598, 47.376515], [8.488722, 47.376374], [8.488845, 47.376232], [8.488965, 47.376089]]], "type": "MultiLineString"}, "id": "4726", "properties": {}, "type": "Feature"}, {"bbox": [8.543562, 47.392389, 8.54393, 47.392547], "geometry": {"coordinates": [[[8.543562, 47.392547], [8.54388, 47.392412], [8.543889, 47.392409], [8.543897, 47.392405], [8.543906, 47.392401], [8.543914, 47.392397], [8.543922, 47.392393], [8.54393, 47.392389]]], "type": "MultiLineString"}, "id": "4728", "properties": {}, "type": "Feature"}, {"bbox": [8.529948, 47.408821, 8.530238, 47.409488], "geometry": {"coordinates": [[[8.530144, 47.409488], [8.530161, 47.409481], [8.530177, 47.409474], [8.530192, 47.409465], [8.530206, 47.409455], [8.530218, 47.409444], [8.530229, 47.409433], [8.530238, 47.409421], [8.530173, 47.40925], [8.530041, 47.409079], [8.530048, 47.409026], [8.529951, 47.4089], [8.529949, 47.408892], [8.529948, 47.408884], [8.529948, 47.408876], [8.529949, 47.408867], [8.529951, 47.408859], [8.529953, 47.408851], [8.529957, 47.408843], [8.529962, 47.408835], [8.529968, 47.408828], [8.529974, 47.408821]]], "type": "MultiLineString"}, "id": "4731", "properties": {}, "type": "Feature"}, {"bbox": [8.510879, 47.423321, 8.51267, 47.42437], "geometry": {"coordinates": [[[8.510879, 47.423321], [8.510916, 47.423361], [8.510957, 47.423398], [8.511003, 47.423433], [8.511052, 47.423465], [8.511105, 47.423495], [8.512297, 47.423534], [8.512395, 47.423535], [8.512493, 47.42354], [8.51259, 47.423547], [8.512659, 47.423594], [8.51267, 47.42366], [8.51262, 47.423718], [8.512593, 47.423735], [8.512568, 47.423754], [8.512545, 47.423774], [8.512538, 47.423898], [8.512665, 47.423903], [8.512651, 47.424058], [8.512644, 47.424214], [8.512645, 47.42437]]], "type": "MultiLineString"}, "id": "4732", "properties": {}, "type": "Feature"}, {"bbox": [8.573472, 47.364862, 8.579, 47.367253], "geometry": {"coordinates": [[[8.573472, 47.364862], [8.574214, 47.364952], [8.574768, 47.365068], [8.574922, 47.365133], [8.575197, 47.365306], [8.575849, 47.365756], [8.575944, 47.365821], [8.576031, 47.365891], [8.576109, 47.365965], [8.576552, 47.366326], [8.576634, 47.366387], [8.576724, 47.366444], [8.576821, 47.366495], [8.576924, 47.36654], [8.577032, 47.366579], [8.577144, 47.366612], [8.57726, 47.366637], [8.577493, 47.366665], [8.577721, 47.366707], [8.577942, 47.366763], [8.578154, 47.366832], [8.578357, 47.366914], [8.578547, 47.367009], [8.579, 47.367253]]], "type": "MultiLineString"}, "id": "4733", "properties": {}, "type": "Feature"}, {"bbox": [8.516616, 47.373931, 8.517146, 47.374872], "geometry": {"coordinates": [[[8.517146, 47.373937], [8.516963, 47.373931], [8.516955, 47.373931], [8.516948, 47.373931], [8.51694, 47.373932], [8.516933, 47.373933], [8.516926, 47.373935], [8.516919, 47.373937], [8.516913, 47.37394], [8.516907, 47.373942], [8.516901, 47.373946], [8.516895, 47.373949], [8.51689, 47.373953], [8.51663, 47.374165], [8.516627, 47.374168], [8.516624, 47.37417], [8.516622, 47.374173], [8.51662, 47.374177], [8.516618, 47.37418], [8.516617, 47.374183], [8.516617, 47.374187], [8.516616, 47.37419], [8.516617, 47.374194], [8.516617, 47.374197], [8.516618, 47.3742], [8.51662, 47.374204], [8.516622, 47.374207], [8.516624, 47.37421], [8.516626, 47.374213], [8.516629, 47.374216], [8.516633, 47.374218], [8.516636, 47.37422], [8.516845, 47.374337], [8.516898, 47.374367], [8.516938, 47.374423], [8.516836, 47.374784], [8.516865, 47.374872]]], "type": "MultiLineString"}, "id": "4735", "properties": {}, "type": "Feature"}, {"bbox": [8.541742, 47.427333, 8.542771, 47.427915], "geometry": {"coordinates": [[[8.541742, 47.427333], [8.542062, 47.427561], [8.542344, 47.427657], [8.542771, 47.427915]]], "type": "MultiLineString"}, "id": "4736", "properties": {}, "type": "Feature"}, {"bbox": [8.537996, 47.376152, 8.538718, 47.37635], "geometry": {"coordinates": [[[8.538718, 47.376208], [8.538631, 47.376227], [8.53847, 47.376265], [8.538453, 47.376269], [8.538395, 47.376152], [8.537996, 47.376241], [8.538106, 47.37635]]], "type": "MultiLineString"}, "id": "4737", "properties": {}, "type": "Feature"}, {"bbox": [8.533598, 47.413081, 8.533606, 47.413158], "geometry": {"coordinates": [[[8.533606, 47.413158], [8.533598, 47.413081]]], "type": "MultiLineString"}, "id": "4738", "properties": {}, "type": "Feature"}, {"bbox": [8.520387, 47.339025, 8.520387, 47.339043], "geometry": {"coordinates": [[[8.520387, 47.339025], [8.520387, 47.339043]]], "type": "MultiLineString"}, "id": "4739", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.413137, 8.55323, 47.4144], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.552884, 47.414306], [8.553042, 47.41431], [8.55321, 47.413983], [8.55323, 47.413137], [8.553075, 47.413138]]], "type": "MultiLineString"}, "id": "4740", "properties": {}, "type": "Feature"}, {"bbox": [8.576007, 47.397749, 8.578854, 47.400455], "geometry": {"coordinates": [[[8.576007, 47.39792], [8.576461, 47.397816], [8.576551, 47.397797], [8.576643, 47.397783], [8.576737, 47.397775], [8.576831, 47.397772], [8.576925, 47.397775], [8.577019, 47.397784], [8.577123, 47.397795], [8.577228, 47.3978], [8.577333, 47.397799], [8.577438, 47.397792], [8.577524, 47.39778], [8.577611, 47.397769], [8.577698, 47.397758], [8.577745, 47.397752], [8.577794, 47.397749], [8.577843, 47.39775], [8.577891, 47.397753], [8.577922, 47.397764], [8.577952, 47.397777], [8.57798, 47.397792], [8.578006, 47.397808], [8.578029, 47.397826], [8.578091, 47.397892], [8.578144, 47.397961], [8.578191, 47.398033], [8.578209, 47.398061], [8.578223, 47.39809], [8.578233, 47.39812], [8.578239, 47.39815], [8.578241, 47.398181], [8.578239, 47.398211], [8.578241, 47.398275], [8.578241, 47.398339], [8.578241, 47.398403], [8.578241, 47.398436], [8.578245, 47.398469], [8.578253, 47.398502], [8.578265, 47.398535], [8.57828, 47.398566], [8.578299, 47.398597], [8.578344, 47.398663], [8.578387, 47.398729], [8.578426, 47.398796], [8.57844, 47.398836], [8.578449, 47.398876], [8.578451, 47.398917], [8.578449, 47.398958], [8.57844, 47.398998], [8.578426, 47.399038], [8.578359, 47.399149], [8.578307, 47.399264], [8.578271, 47.399381], [8.578264, 47.399413], [8.578261, 47.399445], [8.578262, 47.399476], [8.578267, 47.399508], [8.578276, 47.399539], [8.578289, 47.39957], [8.578306, 47.399599], [8.578326, 47.399628], [8.578382, 47.399691], [8.578437, 47.399754], [8.578491, 47.399817], [8.578547, 47.399879], [8.5786, 47.399943], [8.578648, 47.400008], [8.578735, 47.400166], [8.578768, 47.400268], [8.578801, 47.400388], [8.57881, 47.400416], [8.578854, 47.400455]]], "type": "MultiLineString"}, "id": "4742", "properties": {}, "type": "Feature"}, {"bbox": [8.48712, 47.403458, 8.487958, 47.403903], "geometry": {"coordinates": [[[8.487871, 47.403458], [8.487935, 47.403588], [8.487953, 47.403629], [8.487956, 47.403637], [8.487957, 47.403644], [8.487958, 47.403651], [8.487958, 47.403658], [8.487956, 47.403666], [8.487954, 47.403673], [8.487951, 47.40368], [8.487947, 47.403687], [8.487942, 47.403693], [8.487937, 47.4037], [8.487931, 47.403706], [8.487923, 47.403711], [8.487916, 47.403716], [8.487907, 47.403721], [8.487899, 47.403725], [8.487889, 47.403729], [8.487879, 47.403732], [8.487869, 47.403735], [8.48712, 47.403903]]], "type": "MultiLineString"}, "id": "4743", "properties": {}, "type": "Feature"}, {"bbox": [8.497493, 47.422004, 8.498577, 47.423305], "geometry": {"coordinates": [[[8.497872, 47.423305], [8.497853, 47.423284], [8.497834, 47.423262], [8.497817, 47.42324], [8.497702, 47.423061], [8.497595, 47.422878], [8.497498, 47.422694], [8.497495, 47.422686], [8.497494, 47.422678], [8.497493, 47.42267], [8.497494, 47.422662], [8.497495, 47.422654], [8.497498, 47.422646], [8.497501, 47.422639], [8.497505, 47.422631], [8.497511, 47.422624], [8.497517, 47.422618], [8.497524, 47.422611], [8.497532, 47.422605], [8.49754, 47.4226], [8.498522, 47.422271], [8.498529, 47.422269], [8.498535, 47.422267], [8.498541, 47.422264], [8.498547, 47.422261], [8.498553, 47.422258], [8.498558, 47.422254], [8.498562, 47.42225], [8.498566, 47.422246], [8.498569, 47.422241], [8.498572, 47.422237], [8.498574, 47.422232], [8.498576, 47.422227], [8.498577, 47.422222], [8.498577, 47.422217], [8.498577, 47.422212], [8.498576, 47.422207], [8.498575, 47.422202], [8.498572, 47.422197], [8.49857, 47.422193], [8.498543, 47.422154], [8.498516, 47.422115], [8.498487, 47.422077], [8.498472, 47.422054], [8.49846, 47.422029], [8.498451, 47.422004]]], "type": "MultiLineString"}, "id": "4744", "properties": {}, "type": "Feature"}, {"bbox": [8.530516, 47.410172, 8.531351, 47.410416], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.530521, 47.410414], [8.530526, 47.410412], [8.53053, 47.41041], [8.530534, 47.410408], [8.530538, 47.410406], [8.530541, 47.410403], [8.530544, 47.4104], [8.530547, 47.410397], [8.530549, 47.410394], [8.530551, 47.41039], [8.530552, 47.410387], [8.530553, 47.410383], [8.530556, 47.41038], [8.530559, 47.410377], [8.530562, 47.410375], [8.530566, 47.410372], [8.53057, 47.41037], [8.530574, 47.410368], [8.530578, 47.410366], [8.530583, 47.410364], [8.530588, 47.410363], [8.530593, 47.410362], [8.531273, 47.410249], [8.531283, 47.410246], [8.531293, 47.410242], [8.531302, 47.410238], [8.53131, 47.410233], [8.531318, 47.410227], [8.531325, 47.410221], [8.531331, 47.410215], [8.531337, 47.410208], [8.531341, 47.410201], [8.531345, 47.410194], [8.531348, 47.410187], [8.53135, 47.410179], [8.531351, 47.410172]]], "type": "MultiLineString"}, "id": "4746", "properties": {}, "type": "Feature"}, {"bbox": [8.522741, 47.42484, 8.525194, 47.425708], "geometry": {"coordinates": [[[8.522768, 47.42484], [8.522754, 47.424887], [8.522741, 47.4251], [8.522801, 47.425134], [8.522789, 47.425155], [8.522775, 47.425185], [8.522784, 47.425638], [8.522788, 47.425646], [8.522793, 47.425653], [8.522798, 47.425661], [8.522805, 47.425668], [8.522812, 47.425674], [8.52282, 47.42568], [8.522829, 47.425686], [8.522838, 47.425691], [8.522849, 47.425695], [8.522859, 47.425699], [8.52287, 47.425702], [8.522882, 47.425705], [8.522894, 47.425707], [8.522906, 47.425708], [8.522918, 47.425708], [8.52293, 47.425708], [8.525106, 47.425644], [8.525194, 47.425633]]], "type": "MultiLineString"}, "id": "4747", "properties": {}, "type": "Feature"}, {"bbox": [8.511643, 47.414894, 8.512443, 47.415165], "geometry": {"coordinates": [[[8.512443, 47.414905], [8.512436, 47.414902], [8.512429, 47.4149], [8.512422, 47.414897], [8.512414, 47.414896], [8.512406, 47.414895], [8.512398, 47.414894], [8.51239, 47.414894], [8.512383, 47.414894], [8.512375, 47.414895], [8.511874, 47.415102], [8.511732, 47.415162], [8.511717, 47.415142], [8.511693, 47.415152], [8.511665, 47.415165], [8.511643, 47.415141]]], "type": "MultiLineString"}, "id": "4748", "properties": {}, "type": "Feature"}, {"bbox": [8.527207, 47.343645, 8.527551, 47.34406], "geometry": {"coordinates": [[[8.527207, 47.343645], [8.527408, 47.343758], [8.527425, 47.34377], [8.52744, 47.343783], [8.527454, 47.343796], [8.527466, 47.343811], [8.527476, 47.343826], [8.527484, 47.343841], [8.52749, 47.343857], [8.527551, 47.34406]]], "type": "MultiLineString"}, "id": "4749", "properties": {}, "type": "Feature"}, {"bbox": [8.499147, 47.350407, 8.502484, 47.355917], "geometry": {"coordinates": [[[8.500087, 47.355917], [8.499986, 47.355857], [8.499773, 47.355742], [8.49973, 47.355717], [8.499691, 47.355689], [8.499655, 47.35566], [8.499624, 47.355628], [8.499282, 47.355254], [8.499211, 47.355176], [8.499193, 47.355155], [8.499178, 47.355132], [8.499166, 47.355109], [8.499156, 47.355085], [8.49915, 47.355061], [8.499147, 47.355036], [8.499147, 47.355011], [8.49915, 47.354987], [8.499156, 47.354962], [8.499166, 47.354938], [8.499178, 47.354915], [8.499193, 47.354892], [8.499211, 47.354871], [8.499847, 47.354172], [8.499928, 47.354075], [8.499998, 47.35404], [8.50005, 47.354012], [8.500099, 47.353982], [8.500143, 47.353948], [8.500182, 47.353912], [8.500217, 47.353874], [8.500246, 47.353834], [8.50027, 47.353792], [8.500289, 47.353749], [8.500302, 47.353705], [8.500309, 47.353661], [8.50031, 47.353616], [8.500305, 47.353571], [8.500295, 47.353527], [8.500278, 47.353484], [8.500109, 47.353106], [8.499993, 47.352855], [8.499972, 47.3528], [8.499958, 47.352744], [8.499951, 47.352687], [8.499952, 47.35263], [8.499961, 47.352573], [8.499971, 47.352536], [8.499985, 47.352498], [8.500002, 47.352462], [8.500056, 47.352354], [8.500084, 47.352308], [8.500117, 47.352263], [8.500157, 47.352221], [8.500202, 47.352181], [8.500252, 47.352144], [8.500334, 47.352088], [8.50035, 47.352079], [8.500367, 47.35207], [8.500385, 47.352062], [8.500405, 47.352056], [8.500424, 47.35205], [8.500445, 47.352046], [8.500466, 47.352043], [8.500487, 47.352042], [8.500509, 47.352041], [8.50053, 47.352042], [8.500551, 47.352045], [8.500572, 47.352048], [8.500592, 47.352053], [8.500791, 47.352107], [8.500851, 47.352121], [8.500912, 47.352132], [8.500975, 47.352139], [8.501038, 47.352142], [8.501101, 47.352142], [8.501165, 47.352138], [8.501262, 47.352126], [8.501357, 47.352107], [8.501449, 47.352083], [8.501537, 47.352053], [8.501621, 47.352017], [8.501642, 47.352007], [8.501715, 47.351968], [8.501782, 47.351926], [8.501844, 47.351879], [8.502162, 47.351611], [8.502191, 47.351585], [8.502216, 47.351557], [8.502238, 47.351527], [8.502255, 47.351497], [8.502269, 47.351466], [8.502278, 47.351433], [8.502284, 47.351401], [8.502285, 47.351368], [8.502282, 47.351335], [8.502275, 47.351303], [8.502263, 47.351271], [8.502248, 47.35124], [8.501903, 47.350634], [8.501896, 47.35062], [8.501891, 47.350606], [8.501888, 47.350592], [8.501886, 47.350577], [8.501887, 47.350563], [8.501889, 47.350549], [8.501893, 47.350535], [8.501899, 47.350521], [8.501906, 47.350507], [8.501916, 47.350494], [8.501926, 47.350482], [8.501939, 47.35047], [8.501953, 47.350459], [8.501968, 47.350449], [8.501984, 47.35044], [8.502001, 47.350432], [8.50202, 47.350425], [8.502039, 47.350419], [8.502059, 47.350414], [8.50208, 47.350411], [8.5021, 47.350408], [8.502122, 47.350407], [8.502143, 47.350407], [8.502164, 47.350408], [8.502185, 47.350411], [8.502205, 47.350414], [8.502236, 47.350422], [8.502265, 47.350431], [8.502294, 47.350443], [8.50232, 47.350456], [8.502345, 47.35047], [8.502368, 47.350486], [8.502388, 47.350503], [8.502407, 47.350522], [8.502422, 47.350541], [8.502435, 47.350562], [8.502446, 47.350583], [8.502453, 47.350604], [8.502458, 47.350626], [8.502484, 47.350744]]], "type": "MultiLineString"}, "id": "4753", "properties": {}, "type": "Feature"}, {"bbox": [8.506879, 47.42681, 8.511233, 47.427779], "geometry": {"coordinates": [[[8.506879, 47.42681], [8.507132, 47.426923], [8.507144, 47.426927], [8.507155, 47.426931], [8.507166, 47.426936], [8.507175, 47.426942], [8.507185, 47.426948], [8.507193, 47.426955], [8.5072, 47.426962], [8.507206, 47.42697], [8.507211, 47.426978], [8.507216, 47.426986], [8.507219, 47.426994], [8.507221, 47.427003], [8.507222, 47.427012], [8.507221, 47.42702], [8.50722, 47.427029], [8.507217, 47.427038], [8.507213, 47.427046], [8.507209, 47.427054], [8.507203, 47.427062], [8.507196, 47.427069], [8.507081, 47.427187], [8.507053, 47.427288], [8.507094, 47.427387], [8.507194, 47.427464], [8.507286, 47.427509], [8.507383, 47.427548], [8.507485, 47.427582], [8.50759, 47.427611], [8.50814, 47.427751], [8.50824, 47.427766], [8.508341, 47.427775], [8.508442, 47.427779], [8.508544, 47.427777], [8.508645, 47.427769], [8.508745, 47.427756], [8.509113, 47.427686], [8.509484, 47.427629], [8.50986, 47.427583], [8.510021, 47.427575], [8.510182, 47.427571], [8.510343, 47.427573], [8.510481, 47.427568], [8.510618, 47.427555], [8.510752, 47.427533], [8.511233, 47.427424]]], "type": "MultiLineString"}, "id": "4754", "properties": {}, "type": "Feature"}, {"bbox": [8.548504, 47.386938, 8.549304, 47.387256], "geometry": {"coordinates": [[[8.548504, 47.387109], [8.54863, 47.387094], [8.548638, 47.387092], [8.548647, 47.38709], [8.548655, 47.387087], [8.548663, 47.387083], [8.548671, 47.38708], [8.548678, 47.387075], [8.548684, 47.38707], [8.54869, 47.387065], [8.548694, 47.38706], [8.548699, 47.387054], [8.548702, 47.387048], [8.548705, 47.387042], [8.548707, 47.387036], [8.548708, 47.38703], [8.548708, 47.387023], [8.548707, 47.387016], [8.548708, 47.38701], [8.548709, 47.387003], [8.548711, 47.386996], [8.548714, 47.38699], [8.548717, 47.386983], [8.548722, 47.386977], [8.548727, 47.386972], [8.548733, 47.386966], [8.54874, 47.386961], [8.548747, 47.386957], [8.548755, 47.386952], [8.548764, 47.386949], [8.548772, 47.386946], [8.548782, 47.386943], [8.548791, 47.386941], [8.548801, 47.38694], [8.548811, 47.386939], [8.548821, 47.386938], [8.549014, 47.386953], [8.549025, 47.386957], [8.549035, 47.386961], [8.549045, 47.386966], [8.549054, 47.386971], [8.549062, 47.386977], [8.54907, 47.386983], [8.549076, 47.386989], [8.549082, 47.386996], [8.549087, 47.387004], [8.549092, 47.387011], [8.549095, 47.387019], [8.549097, 47.387027], [8.549098, 47.387035], [8.549083, 47.387133], [8.549082, 47.387136], [8.549082, 47.387138], [8.549082, 47.387141], [8.549082, 47.387143], [8.549083, 47.387146], [8.549084, 47.387148], [8.549085, 47.387151], [8.549087, 47.387153], [8.549089, 47.387155], [8.549091, 47.387157], [8.549093, 47.387159], [8.549096, 47.387161], [8.549099, 47.387163], [8.549102, 47.387164], [8.549105, 47.387166], [8.549109, 47.387167], [8.549112, 47.387168], [8.549116, 47.387168], [8.549119, 47.387169], [8.549217, 47.387178], [8.549226, 47.387179], [8.549234, 47.387181], [8.549243, 47.387183], [8.549251, 47.387185], [8.549258, 47.387188], [8.549266, 47.387192], [8.549272, 47.387196], [8.549279, 47.3872], [8.549284, 47.387205], [8.549289, 47.38721], [8.549294, 47.387215], [8.549297, 47.387221], [8.5493, 47.387226], [8.549302, 47.387232], [8.549304, 47.387238], [8.549304, 47.387244], [8.549304, 47.38725], [8.549303, 47.387256]]], "type": "MultiLineString"}, "id": "4756", "properties": {}, "type": "Feature"}, {"bbox": [8.590123, 47.356192, 8.590347, 47.356929], "geometry": {"coordinates": [[[8.590305, 47.356929], [8.590288, 47.356927], [8.590272, 47.356924], [8.590256, 47.35692], [8.590241, 47.356915], [8.590226, 47.35691], [8.590213, 47.356903], [8.5902, 47.356896], [8.590188, 47.356888], [8.590177, 47.356879], [8.590155, 47.356665], [8.590183, 47.356577], [8.590123, 47.356263], [8.590209, 47.356254], [8.590231, 47.356249], [8.590253, 47.356242], [8.590274, 47.356234], [8.590294, 47.356225], [8.590313, 47.356215], [8.59033, 47.356204], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "4757", "properties": {}, "type": "Feature"}, {"bbox": [8.564974, 47.359624, 8.565457, 47.359843], "geometry": {"coordinates": [[[8.564974, 47.359624], [8.565, 47.359634], [8.565025, 47.359645], [8.565049, 47.359658], [8.56507, 47.359673], [8.565158, 47.359724], [8.565252, 47.35977], [8.565352, 47.35981], [8.565457, 47.359843]]], "type": "MultiLineString"}, "id": "4758", "properties": {}, "type": "Feature"}, {"bbox": [8.54393, 47.392244, 8.544043, 47.392389], "geometry": {"coordinates": [[[8.54393, 47.392389], [8.54395, 47.392376], [8.543968, 47.392362], [8.543985, 47.392347], [8.544, 47.392332], [8.544013, 47.392315], [8.544024, 47.392298], [8.544032, 47.392281], [8.544039, 47.392262], [8.544043, 47.392244]]], "type": "MultiLineString"}, "id": "4759", "properties": {}, "type": "Feature"}, {"bbox": [8.507443, 47.398955, 8.507708, 47.399254], "geometry": {"coordinates": [[[8.507443, 47.398955], [8.507524, 47.398989], [8.5076, 47.399029], [8.50767, 47.399072], [8.507673, 47.399076], [8.507675, 47.399079], [8.507677, 47.399082], [8.507679, 47.399086], [8.50768, 47.39909], [8.50768, 47.399093], [8.50768, 47.399097], [8.50768, 47.399101], [8.507679, 47.399104], [8.507677, 47.399108], [8.507676, 47.399111], [8.507673, 47.399115], [8.507671, 47.399118], [8.507668, 47.399121], [8.507664, 47.399124], [8.50759, 47.399205], [8.507588, 47.399208], [8.507587, 47.399211], [8.507586, 47.399214], [8.507585, 47.399217], [8.507585, 47.39922], [8.507586, 47.399223], [8.507586, 47.399226], [8.507588, 47.399229], [8.507589, 47.399232], [8.507591, 47.399235], [8.507593, 47.399238], [8.507596, 47.39924], [8.507599, 47.399243], [8.507602, 47.399245], [8.507606, 47.399247], [8.507609, 47.399249], [8.507613, 47.39925], [8.507618, 47.399252], [8.507622, 47.399253], [8.507626, 47.399254], [8.507631, 47.399254], [8.50764, 47.399254], [8.507649, 47.399254], [8.507658, 47.399254], [8.507667, 47.399252], [8.507676, 47.399251], [8.507684, 47.399249], [8.507692, 47.399246], [8.5077, 47.399243], [8.507708, 47.39924]]], "type": "MultiLineString"}, "id": "4767", "properties": {}, "type": "Feature"}, {"bbox": [8.476517, 47.416865, 8.482596, 47.419646], "geometry": {"coordinates": [[[8.476517, 47.416865], [8.477043, 47.417173], [8.477051, 47.417178], [8.477145, 47.417263], [8.477323, 47.417506], [8.477376, 47.41758], [8.477501, 47.417673], [8.477611, 47.417768], [8.477905, 47.417925], [8.47807, 47.41804], [8.478268, 47.418177], [8.478481, 47.418387], [8.47871, 47.418572], [8.478891, 47.41872], [8.478991, 47.418794], [8.479059, 47.418835], [8.479559, 47.419134], [8.479682, 47.419214], [8.47982, 47.419304], [8.48002, 47.419434], [8.480039, 47.419445], [8.480217, 47.419543], [8.480262, 47.419568], [8.480296, 47.419585], [8.480333, 47.419601], [8.480372, 47.419614], [8.480412, 47.419625], [8.480453, 47.419634], [8.480496, 47.41964], [8.480539, 47.419644], [8.480582, 47.419646], [8.480625, 47.419644], [8.480693, 47.419639], [8.48076, 47.41963], [8.480826, 47.419617], [8.48089, 47.4196], [8.480902, 47.419597], [8.480914, 47.419593], [8.480926, 47.419589], [8.480986, 47.419568], [8.481044, 47.419543], [8.481098, 47.419515], [8.481149, 47.419484], [8.481196, 47.41945], [8.481478, 47.419233], [8.481995, 47.418809], [8.482329, 47.418561], [8.482596, 47.418425]]], "type": "MultiLineString"}, "id": "4769", "properties": {}, "type": "Feature"}, {"bbox": [8.517238, 47.393375, 8.518081, 47.394137], "geometry": {"coordinates": [[[8.518081, 47.394137], [8.518062, 47.394128], [8.518044, 47.394117], [8.518027, 47.394105], [8.518013, 47.394092], [8.517981, 47.394035], [8.517941, 47.393981], [8.517895, 47.393929], [8.517842, 47.39388], [8.517783, 47.393835], [8.51773, 47.3938], [8.517677, 47.393765], [8.517623, 47.393731], [8.517579, 47.3937], [8.517538, 47.393667], [8.517501, 47.393632], [8.517413, 47.393547], [8.517325, 47.393461], [8.517238, 47.393375]]], "type": "MultiLineString"}, "id": "4770", "properties": {}, "type": "Feature"}, {"bbox": [8.55383, 47.416953, 8.554752, 47.417498], "geometry": {"coordinates": [[[8.553833, 47.417498], [8.55383, 47.41742], [8.553836, 47.41741], [8.553843, 47.4174], [8.553851, 47.417391], [8.55386, 47.417382], [8.55387, 47.417373], [8.553882, 47.417365], [8.553894, 47.417358], [8.553908, 47.417352], [8.553921, 47.417346], [8.554561, 47.417076], [8.554581, 47.417069], [8.5546, 47.41706], [8.554618, 47.41705], [8.554634, 47.417039], [8.554649, 47.417027], [8.554752, 47.416953]]], "type": "MultiLineString"}, "id": "4771", "properties": {}, "type": "Feature"}, {"bbox": [8.509362, 47.419886, 8.51318, 47.421323], "geometry": {"coordinates": [[[8.51318, 47.419895], [8.513134, 47.419886], [8.513089, 47.419896], [8.51275, 47.420035], [8.512411, 47.420173], [8.512072, 47.420311], [8.511711, 47.420325], [8.511291, 47.420483], [8.511279, 47.420487], [8.511267, 47.420491], [8.511255, 47.420494], [8.511242, 47.420496], [8.511229, 47.420497], [8.511216, 47.420498], [8.511203, 47.420498], [8.51119, 47.420497], [8.511177, 47.420495], [8.511164, 47.420493], [8.511152, 47.420489], [8.51114, 47.420486], [8.511129, 47.420481], [8.511118, 47.420476], [8.511056, 47.420445], [8.511045, 47.42044], [8.511033, 47.420436], [8.51102, 47.420432], [8.511008, 47.42043], [8.510995, 47.420428], [8.510981, 47.420427], [8.510968, 47.420426], [8.510955, 47.420426], [8.510941, 47.420427], [8.510928, 47.420429], [8.510915, 47.420432], [8.510903, 47.420435], [8.510891, 47.420439], [8.509475, 47.420992], [8.509463, 47.420998], [8.509451, 47.421004], [8.509441, 47.421012], [8.509431, 47.421019], [8.509422, 47.421028], [8.509415, 47.421037], [8.509409, 47.421046], [8.509404, 47.421056], [8.5094, 47.421066], [8.509397, 47.421076], [8.509396, 47.421086], [8.509401, 47.42131], [8.509377, 47.42132], [8.509362, 47.421323]]], "type": "MultiLineString"}, "id": "4772", "properties": {}, "type": "Feature"}, {"bbox": [8.510373, 47.350053, 8.512823, 47.352956], "geometry": {"coordinates": [[[8.510547, 47.352956], [8.510554, 47.352688], [8.510583, 47.352662], [8.510608, 47.352634], [8.51063, 47.352605], [8.510648, 47.352574], [8.510662, 47.352543], [8.510672, 47.352511], [8.510679, 47.352478], [8.51075, 47.352024], [8.510753, 47.351964], [8.510748, 47.351903], [8.510735, 47.351843], [8.510714, 47.351784], [8.510618, 47.351665], [8.510601, 47.351645], [8.510587, 47.351624], [8.510576, 47.351602], [8.510567, 47.35158], [8.510562, 47.351557], [8.510559, 47.351533], [8.51056, 47.35151], [8.510563, 47.351487], [8.51057, 47.351464], [8.510582, 47.351398], [8.510583, 47.351382], [8.510581, 47.351366], [8.510578, 47.35135], [8.510572, 47.351335], [8.510564, 47.351319], [8.510554, 47.351305], [8.510455, 47.351191], [8.510373, 47.351143], [8.510438, 47.351104], [8.511451, 47.350653], [8.512602, 47.350149], [8.512772, 47.350075], [8.512823, 47.350053]]], "type": "MultiLineString"}, "id": "4773", "properties": {}, "type": "Feature"}, {"bbox": [8.49214, 47.358436, 8.497205, 47.363589], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497078, 47.358455], [8.496846, 47.35847], [8.496795, 47.358595], [8.496787, 47.358641], [8.496775, 47.358687], [8.496761, 47.358733], [8.496741, 47.358782], [8.496716, 47.358831], [8.496685, 47.358877], [8.496649, 47.358922], [8.496628, 47.358944], [8.496607, 47.358967], [8.496584, 47.358988], [8.496139, 47.359403], [8.495841, 47.359697], [8.495709, 47.359813], [8.495677, 47.359838], [8.495643, 47.359862], [8.495606, 47.359884], [8.495567, 47.359904], [8.495453, 47.359957], [8.495408, 47.35998], [8.495367, 47.360005], [8.495329, 47.360033], [8.495295, 47.360063], [8.495265, 47.360095], [8.495239, 47.360128], [8.49513, 47.360284], [8.495107, 47.360314], [8.495081, 47.360343], [8.495051, 47.360369], [8.495018, 47.360394], [8.494981, 47.360417], [8.494942, 47.360438], [8.494802, 47.360507], [8.494749, 47.360535], [8.494699, 47.360566], [8.494654, 47.360601], [8.494613, 47.360637], [8.494577, 47.360676], [8.494546, 47.360717], [8.494478, 47.360817], [8.494441, 47.360869], [8.494399, 47.360919], [8.494353, 47.360968], [8.493787, 47.361536], [8.493674, 47.361652], [8.493647, 47.361678], [8.493616, 47.361701], [8.493583, 47.361723], [8.493548, 47.361743], [8.49351, 47.361761], [8.49347, 47.361777], [8.493428, 47.36179], [8.493404, 47.361798], [8.493381, 47.361807], [8.493359, 47.361817], [8.493339, 47.361828], [8.49332, 47.36184], [8.493303, 47.361854], [8.493287, 47.361868], [8.493251, 47.361901], [8.493212, 47.361932], [8.493169, 47.36196], [8.493124, 47.361987], [8.493093, 47.362003], [8.492865, 47.362124], [8.49285, 47.362132], [8.492836, 47.362142], [8.492824, 47.362152], [8.492813, 47.362163], [8.492804, 47.362174], [8.492796, 47.362186], [8.492789, 47.362198], [8.492784, 47.362211], [8.492781, 47.362224], [8.492779, 47.362237], [8.492777, 47.362287], [8.492775, 47.362321], [8.492775, 47.362357], [8.492779, 47.362393], [8.492788, 47.362429], [8.492802, 47.362464], [8.4929, 47.362682], [8.492909, 47.362706], [8.492915, 47.362731], [8.492918, 47.362755], [8.492918, 47.36278], [8.492914, 47.362805], [8.492908, 47.36283], [8.492867, 47.362951], [8.492846, 47.363002], [8.492819, 47.363052], [8.492786, 47.3631], [8.492747, 47.363147], [8.492703, 47.36319], [8.492653, 47.363232], [8.492598, 47.36327], [8.492338, 47.363436], [8.492268, 47.363484], [8.492201, 47.363535], [8.49214, 47.363589]]], "type": "MultiLineString"}, "id": "4775", "properties": {}, "type": "Feature"}, {"bbox": [8.466388, 47.366529, 8.472294, 47.369454], "geometry": {"coordinates": [[[8.472277, 47.369454], [8.472294, 47.36941], [8.47229, 47.369394], [8.472285, 47.369379], [8.472277, 47.369363], [8.472267, 47.369349], [8.472256, 47.369334], [8.472242, 47.369321], [8.472227, 47.369308], [8.472211, 47.369297], [8.472193, 47.369286], [8.472174, 47.369276], [8.472154, 47.369268], [8.472132, 47.36926], [8.47211, 47.369254], [8.472087, 47.36925], [8.472064, 47.369246], [8.47204, 47.369244], [8.472016, 47.369244], [8.471993, 47.369245], [8.471969, 47.369247], [8.471946, 47.36925], [8.471923, 47.369255], [8.471821, 47.369277], [8.471717, 47.369294], [8.471612, 47.369306], [8.471543, 47.369309], [8.471474, 47.369309], [8.471406, 47.369306], [8.471338, 47.369298], [8.471219, 47.369282], [8.4711, 47.369266], [8.470982, 47.369249], [8.470835, 47.369229], [8.470689, 47.369211], [8.470542, 47.369194], [8.470428, 47.369179], [8.470316, 47.369156], [8.470208, 47.369126], [8.47013, 47.369101], [8.470052, 47.369076], [8.469975, 47.369049], [8.469865, 47.369009], [8.469757, 47.368968], [8.469649, 47.368927], [8.469473, 47.368858], [8.469297, 47.368788], [8.469123, 47.368717], [8.469023, 47.368676], [8.468924, 47.368635], [8.468824, 47.368594], [8.468746, 47.368561], [8.46867, 47.368526], [8.468596, 47.36849], [8.468508, 47.368444], [8.468424, 47.368395], [8.468342, 47.368345], [8.468243, 47.368282], [8.468142, 47.36822], [8.468039, 47.368159], [8.467993, 47.368134], [8.467944, 47.368112], [8.467892, 47.368094], [8.467831, 47.368076], [8.467769, 47.368061], [8.467706, 47.368049], [8.467657, 47.368041], [8.467609, 47.368033], [8.46756, 47.368026], [8.467499, 47.368017], [8.467439, 47.368007], [8.467378, 47.367997], [8.467331, 47.367988], [8.467284, 47.367978], [8.467237, 47.367967], [8.467193, 47.367956], [8.46715, 47.367943], [8.467108, 47.367929], [8.466666, 47.367766], [8.466614, 47.367741], [8.466567, 47.367713], [8.466523, 47.367683], [8.466495, 47.367661], [8.46647, 47.367638], [8.466448, 47.367613], [8.46643, 47.367588], [8.466414, 47.367561], [8.466402, 47.367533], [8.466394, 47.367505], [8.466389, 47.367477], [8.466388, 47.367433], [8.466393, 47.36739], [8.466403, 47.367347], [8.466419, 47.367305], [8.46644, 47.367264], [8.466466, 47.367224], [8.466896, 47.366644], [8.466904, 47.366632], [8.466911, 47.36662], [8.466916, 47.366607], [8.466919, 47.366594], [8.466921, 47.366581], [8.466921, 47.366568], [8.466919, 47.366554], [8.466916, 47.366541], [8.466911, 47.366529]]], "type": "MultiLineString"}, "id": "4777", "properties": {}, "type": "Feature"}, {"bbox": [8.487509, 47.415539, 8.489092, 47.417654], "geometry": {"coordinates": [[[8.489092, 47.415539], [8.48878, 47.41589], [8.488748, 47.415922], [8.488711, 47.415953], [8.488671, 47.41598], [8.488627, 47.416005], [8.487993, 47.416331], [8.48791, 47.416377], [8.487834, 47.416428], [8.487765, 47.416483], [8.487704, 47.416543], [8.48765, 47.416605], [8.487605, 47.416671], [8.487558, 47.416748], [8.487539, 47.416784], [8.487524, 47.416822], [8.487514, 47.41686], [8.487509, 47.416899], [8.48751, 47.416938], [8.487515, 47.416977], [8.487526, 47.417015], [8.487541, 47.417053], [8.487792, 47.41757], [8.487862, 47.417654]]], "type": "MultiLineString"}, "id": "4778", "properties": {}, "type": "Feature"}, {"bbox": [8.560546, 47.349636, 8.56142, 47.350311], "geometry": {"coordinates": [[[8.561239, 47.349659], [8.561245, 47.349655], [8.561252, 47.349651], [8.56126, 47.349647], [8.561268, 47.349644], [8.561276, 47.349642], [8.561285, 47.349639], [8.561294, 47.349638], [8.561303, 47.349637], [8.561312, 47.349636], [8.561321, 47.349637], [8.561331, 47.349637], [8.56134, 47.349638], [8.561348, 47.34964], [8.561357, 47.349642], [8.561365, 47.349645], [8.561373, 47.349648], [8.561381, 47.349652], [8.561388, 47.349656], [8.561394, 47.349661], [8.5614, 47.349666], [8.561405, 47.349671], [8.561409, 47.349676], [8.561413, 47.349682], [8.561416, 47.349688], [8.561418, 47.349694], [8.561419, 47.3497], [8.56142, 47.349706], [8.56142, 47.349713], [8.561419, 47.349719], [8.561417, 47.349725], [8.561414, 47.349731], [8.561411, 47.349737], [8.561061, 47.350132], [8.561035, 47.350152], [8.561007, 47.350169], [8.560976, 47.350185], [8.560943, 47.350199], [8.560909, 47.350211], [8.560873, 47.350221], [8.560836, 47.350229], [8.560798, 47.350234], [8.56076, 47.350238], [8.560732, 47.35024], [8.560706, 47.350244], [8.56068, 47.350249], [8.560654, 47.350256], [8.56063, 47.350264], [8.560607, 47.350274], [8.560585, 47.350285], [8.560565, 47.350297], [8.560546, 47.350311]]], "type": "MultiLineString"}, "id": "4779", "properties": {}, "type": "Feature"}, {"bbox": [8.492253, 47.36595, 8.492861, 47.366712], "geometry": {"coordinates": [[[8.492861, 47.366712], [8.492693, 47.366623], [8.492393, 47.366557], [8.492338, 47.366525], [8.492362, 47.366478], [8.492576, 47.366357], [8.492583, 47.366352], [8.49259, 47.366346], [8.492596, 47.36634], [8.492602, 47.366333], [8.492606, 47.366327], [8.49261, 47.36632], [8.492612, 47.366313], [8.492614, 47.366306], [8.492615, 47.366298], [8.492615, 47.366291], [8.492614, 47.366284], [8.492613, 47.366277], [8.49261, 47.36627], [8.492606, 47.366263], [8.492602, 47.366256], [8.492597, 47.36625], [8.492591, 47.366243], [8.492253, 47.36595]]], "type": "MultiLineString"}, "id": "4780", "properties": {}, "type": "Feature"}, {"bbox": [8.575544, 47.370651, 8.587307, 47.372734], "geometry": {"coordinates": [[[8.575544, 47.371736], [8.575622, 47.371721], [8.575767, 47.37162], [8.575827, 47.371582], [8.57589, 47.371547], [8.575958, 47.371516], [8.576029, 47.371489], [8.576088, 47.371468], [8.57615, 47.37145], [8.576214, 47.371435], [8.57628, 47.371424], [8.576346, 47.371417], [8.576414, 47.371414], [8.576498, 47.371408], [8.576582, 47.371397], [8.576663, 47.371381], [8.576742, 47.37136], [8.576849, 47.371326], [8.576954, 47.37129], [8.577059, 47.371253], [8.577234, 47.371191], [8.577407, 47.371127], [8.57758, 47.371063], [8.57776, 47.370992], [8.577941, 47.370923], [8.578123, 47.370856], [8.578225, 47.370835], [8.578365, 47.370805], [8.578622, 47.370744], [8.578676, 47.370735], [8.57873, 47.370729], [8.578785, 47.370726], [8.579094, 47.370711], [8.579405, 47.370703], [8.579715, 47.370704], [8.579777, 47.370702], [8.579838, 47.370698], [8.579899, 47.37069], [8.580092, 47.370663], [8.580132, 47.370657], [8.580172, 47.370653], [8.580213, 47.370651], [8.580253, 47.370652], [8.580294, 47.370656], [8.580463, 47.370674], [8.580586, 47.370683], [8.580709, 47.370689], [8.580833, 47.370689], [8.580986, 47.370695], [8.581138, 47.370702], [8.58129, 47.370712], [8.581397, 47.370721], [8.581504, 47.370731], [8.58161, 47.370741], [8.581719, 47.370751], [8.581873, 47.370781], [8.582002, 47.370805], [8.582133, 47.370826], [8.582264, 47.370842], [8.58234, 47.370846], [8.582416, 47.370846], [8.582491, 47.370842], [8.582566, 47.370833], [8.582627, 47.370826], [8.582688, 47.370822], [8.58275, 47.370821], [8.582837, 47.370822], [8.582923, 47.370828], [8.583009, 47.370837], [8.58336, 47.370878], [8.583429, 47.370888], [8.583496, 47.370902], [8.583562, 47.370921], [8.583615, 47.37094], [8.58367, 47.370956], [8.583728, 47.370968], [8.583786, 47.370977], [8.583846, 47.370983], [8.583906, 47.370984], [8.584068, 47.370997], [8.584229, 47.371018], [8.584387, 47.371047], [8.584461, 47.371063], [8.584538, 47.371076], [8.584616, 47.371084], [8.584694, 47.371088], [8.584773, 47.371087], [8.584851, 47.371082], [8.584929, 47.371072], [8.585005, 47.371058], [8.585217, 47.371037], [8.585254, 47.371033], [8.585291, 47.371031], [8.585328, 47.371032], [8.585365, 47.371034], [8.585402, 47.371038], [8.585438, 47.371045], [8.585474, 47.371053], [8.585508, 47.371064], [8.58554, 47.371076], [8.585728, 47.371161], [8.585786, 47.371189], [8.586205, 47.371432], [8.586541, 47.371647], [8.586611, 47.371696], [8.586674, 47.37175], [8.586729, 47.371807], [8.586775, 47.371868], [8.586813, 47.371931], [8.586966, 47.372223], [8.587001, 47.372289], [8.587038, 47.372354], [8.587078, 47.372419], [8.587093, 47.372443], [8.587217, 47.372636], [8.587307, 47.372734]]], "type": "MultiLineString"}, "id": "4781", "properties": {}, "type": "Feature"}, {"bbox": [8.519068, 47.42907, 8.519955, 47.431656], "geometry": {"coordinates": [[[8.519068, 47.42907], [8.519089, 47.429131], [8.519106, 47.429194], [8.519119, 47.429257], [8.519116, 47.429325], [8.51911, 47.429393], [8.5191, 47.429461], [8.519081, 47.429645], [8.519076, 47.429696], [8.519079, 47.429746], [8.519088, 47.429796], [8.519104, 47.429845], [8.519126, 47.429893], [8.519155, 47.42994], [8.51919, 47.429984], [8.519231, 47.430026], [8.519322, 47.430104], [8.519403, 47.430187], [8.519473, 47.430274], [8.519532, 47.430365], [8.519579, 47.43046], [8.519613, 47.430556], [8.51967, 47.430749], [8.519927, 47.431481], [8.519948, 47.43154], [8.519955, 47.431572], [8.519955, 47.431587], [8.519953, 47.431656]]], "type": "MultiLineString"}, "id": "4783", "properties": {}, "type": "Feature"}, {"bbox": [8.594282, 47.357778, 8.595392, 47.357968], "geometry": {"coordinates": [[[8.594282, 47.357782], [8.595073, 47.357947], [8.595273, 47.357967], [8.595279, 47.357968], [8.595286, 47.357968], [8.595293, 47.357967], [8.595299, 47.357967], [8.595306, 47.357965], [8.595312, 47.357964], [8.595318, 47.357962], [8.595324, 47.35796], [8.595329, 47.357957], [8.595334, 47.357954], [8.595339, 47.357951], [8.595343, 47.357948], [8.595347, 47.357944], [8.595351, 47.35794], [8.595354, 47.357936], [8.595356, 47.357932], [8.595392, 47.357778]]], "type": "MultiLineString"}, "id": "4784", "properties": {}, "type": "Feature"}, {"bbox": [8.50127, 47.419662, 8.502252, 47.420588], "geometry": {"coordinates": [[[8.50127, 47.420588], [8.501533, 47.420482], [8.501664, 47.420342], [8.501748, 47.420297], [8.501886, 47.420244], [8.502028, 47.420195], [8.502172, 47.42015], [8.502185, 47.420144], [8.502197, 47.420138], [8.502209, 47.420131], [8.502219, 47.420123], [8.502229, 47.420115], [8.502252, 47.420079], [8.502241, 47.420042], [8.501972, 47.419785], [8.501834, 47.419662]]], "type": "MultiLineString"}, "id": "4785", "properties": {}, "type": "Feature"}, {"bbox": [8.599177, 47.357257, 8.599763, 47.357848], "geometry": {"coordinates": [[[8.599177, 47.357257], [8.599181, 47.357268], [8.599187, 47.357279], [8.599194, 47.357289], [8.599202, 47.357299], [8.599211, 47.357308], [8.599394, 47.357488], [8.599578, 47.357668], [8.599763, 47.357848]]], "type": "MultiLineString"}, "id": "4787", "properties": {}, "type": "Feature"}, {"bbox": [8.491006, 47.423217, 8.491919, 47.423878], "geometry": {"coordinates": [[[8.491913, 47.423217], [8.491919, 47.423261], [8.491919, 47.423304], [8.491913, 47.423348], [8.491904, 47.423374], [8.491892, 47.423399], [8.491877, 47.423424], [8.491859, 47.423447], [8.491838, 47.42347], [8.491814, 47.423491], [8.491788, 47.423511], [8.491759, 47.423529], [8.491728, 47.423546], [8.491006, 47.423878]]], "type": "MultiLineString"}, "id": "4788", "properties": {}, "type": "Feature"}, {"bbox": [8.553596, 47.382033, 8.554929, 47.382285], "geometry": {"coordinates": [[[8.553596, 47.382033], [8.55377, 47.382192], [8.553866, 47.382228], [8.553962, 47.382276], [8.55402, 47.382279], [8.554298, 47.382249], [8.55447, 47.382186], [8.554697, 47.382202], [8.554929, 47.382285]]], "type": "MultiLineString"}, "id": "4790", "properties": {}, "type": "Feature"}, {"bbox": [8.526887, 47.396126, 8.528025, 47.397778], "geometry": {"coordinates": [[[8.526887, 47.396126], [8.526922, 47.396256], [8.52693, 47.396292], [8.527073, 47.3966], [8.527281, 47.397071], [8.52737, 47.397301], [8.527429, 47.397343], [8.52756, 47.397484], [8.527817, 47.397662], [8.528025, 47.397778]]], "type": "MultiLineString"}, "id": "4792", "properties": {}, "type": "Feature"}, {"bbox": [8.562224, 47.361275, 8.562816, 47.361854], "geometry": {"coordinates": [[[8.562816, 47.361275], [8.562788, 47.361448], [8.562763, 47.36162], [8.562741, 47.361793], [8.56274, 47.361799], [8.562737, 47.361805], [8.562734, 47.361811], [8.56273, 47.361816], [8.562726, 47.361821], [8.562721, 47.361826], [8.562715, 47.361831], [8.562709, 47.361835], [8.562702, 47.361839], [8.562695, 47.361843], [8.562688, 47.361846], [8.56268, 47.361848], [8.562671, 47.36185], [8.562663, 47.361852], [8.562654, 47.361853], [8.562645, 47.361854], [8.562637, 47.361854], [8.562628, 47.361854], [8.562619, 47.361853], [8.562487, 47.361835], [8.562356, 47.361817], [8.562224, 47.361798]]], "type": "MultiLineString"}, "id": "4794", "properties": {}, "type": "Feature"}, {"bbox": [8.51318, 47.419895, 8.513978, 47.420235], "geometry": {"coordinates": [[[8.513978, 47.420235], [8.513302, 47.419969], [8.513274, 47.419957], [8.513248, 47.419944], [8.513223, 47.419929], [8.5132, 47.419913], [8.51318, 47.419895]]], "type": "MultiLineString"}, "id": "4795", "properties": {}, "type": "Feature"}, {"bbox": [8.580004, 47.407941, 8.580329, 47.40858], "geometry": {"coordinates": [[[8.580054, 47.407941], [8.580329, 47.40847], [8.580017, 47.408553], [8.580015, 47.408554], [8.580013, 47.408556], [8.580011, 47.408557], [8.580009, 47.408559], [8.580008, 47.408561], [8.580007, 47.408563], [8.580006, 47.408565], [8.580005, 47.408567], [8.580004, 47.408569], [8.580004, 47.408571], [8.580004, 47.408574], [8.580005, 47.408576], [8.580005, 47.408578], [8.580006, 47.40858]]], "type": "MultiLineString"}, "id": "4796", "properties": {}, "type": "Feature"}, {"bbox": [8.565678, 47.408675, 8.566125, 47.409124], "geometry": {"coordinates": [[[8.565678, 47.409124], [8.565696, 47.409089], [8.565718, 47.409056], [8.565744, 47.409024], [8.565773, 47.408994], [8.565814, 47.408957], [8.565849, 47.408918], [8.565881, 47.408877], [8.56589, 47.408841], [8.565904, 47.408822], [8.565919, 47.408803], [8.565937, 47.408785], [8.565957, 47.408768], [8.565979, 47.408752], [8.566007, 47.408733], [8.566037, 47.408716], [8.56607, 47.4087], [8.566094, 47.408689], [8.566125, 47.408675]]], "type": "MultiLineString"}, "id": "4797", "properties": {}, "type": "Feature"}, {"bbox": [8.544043, 47.391051, 8.544872, 47.39227], "geometry": {"coordinates": [[[8.544043, 47.392244], [8.544612, 47.39227], [8.544659, 47.392249], [8.544691, 47.391953], [8.544718, 47.391685], [8.54474, 47.391558], [8.544758, 47.391486], [8.544772, 47.391432], [8.544872, 47.391123], [8.544806, 47.391087], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "4798", "properties": {}, "type": "Feature"}, {"bbox": [8.477514, 47.389853, 8.478276, 47.390912], "geometry": {"coordinates": [[[8.477514, 47.389855], [8.477526, 47.389853], [8.477537, 47.389853], [8.477549, 47.389853], [8.477561, 47.389854], [8.477573, 47.389856], [8.477584, 47.389858], [8.477595, 47.389861], [8.477606, 47.389865], [8.477616, 47.389869], [8.477625, 47.389874], [8.477634, 47.389879], [8.477642, 47.389885], [8.47765, 47.389891], [8.477696, 47.390088], [8.477698, 47.390099], [8.477701, 47.390109], [8.477706, 47.39012], [8.477773, 47.390267], [8.477778, 47.390277], [8.477783, 47.390288], [8.477789, 47.390298], [8.477983, 47.390509], [8.477992, 47.390518], [8.478, 47.390528], [8.478006, 47.390537], [8.478011, 47.390547], [8.47811, 47.390724], [8.478117, 47.390735], [8.478125, 47.390747], [8.478133, 47.390758], [8.478276, 47.390912]]], "type": "MultiLineString"}, "id": "4800", "properties": {}, "type": "Feature"}, {"bbox": [8.506402, 47.380654, 8.506931, 47.381345], "geometry": {"coordinates": [[[8.506931, 47.381345], [8.506785, 47.381184], [8.506776, 47.381172], [8.506768, 47.38116], [8.506762, 47.381147], [8.506757, 47.381135], [8.50673, 47.381024], [8.506727, 47.381006], [8.50672, 47.380989], [8.506712, 47.380972], [8.506702, 47.380955], [8.506689, 47.380939], [8.506675, 47.380924], [8.506402, 47.380654]]], "type": "MultiLineString"}, "id": "4801", "properties": {}, "type": "Feature"}, {"bbox": [8.499892, 47.375044, 8.500753, 47.375773], "geometry": {"coordinates": [[[8.499892, 47.375044], [8.500171, 47.375292], [8.500458, 47.375535], [8.500753, 47.375773]]], "type": "MultiLineString"}, "id": "4804", "properties": {}, "type": "Feature"}, {"bbox": [8.581532, 47.402173, 8.582507, 47.402308], "geometry": {"coordinates": [[[8.581532, 47.402301], [8.581793, 47.402308], [8.581967, 47.402301], [8.582109, 47.402267], [8.582507, 47.402173]]], "type": "MultiLineString"}, "id": "4806", "properties": {}, "type": "Feature"}, {"bbox": [8.534232, 47.382682, 8.535056, 47.383121], "geometry": {"coordinates": [[[8.534232, 47.382682], [8.534261, 47.382684], [8.534289, 47.382688], [8.534317, 47.382694], [8.534344, 47.382701], [8.534369, 47.38271], [8.534394, 47.38272], [8.534595, 47.382845], [8.534797, 47.38297], [8.534998, 47.383094], [8.535016, 47.383104], [8.535036, 47.383113], [8.535056, 47.383121]]], "type": "MultiLineString"}, "id": "4807", "properties": {}, "type": "Feature"}, {"bbox": [8.574171, 47.358167, 8.575745, 47.358407], "geometry": {"coordinates": [[[8.574171, 47.358327], [8.57436, 47.358303], [8.574406, 47.358294], [8.5747, 47.358206], [8.574725, 47.3582], [8.574799, 47.358186], [8.57485, 47.358177], [8.574901, 47.35817], [8.574954, 47.358167], [8.575006, 47.358167], [8.575058, 47.35817], [8.57511, 47.358175], [8.575161, 47.358184], [8.57521, 47.358196], [8.575258, 47.35821], [8.575304, 47.358228], [8.575418, 47.358269], [8.575652, 47.358358], [8.575698, 47.358379], [8.575745, 47.358407]]], "type": "MultiLineString"}, "id": "4808", "properties": {}, "type": "Feature"}, {"bbox": [8.549427, 47.378011, 8.551193, 47.379114], "geometry": {"coordinates": [[[8.55119, 47.378011], [8.551193, 47.378038], [8.551193, 47.378065], [8.55119, 47.378092], [8.551184, 47.378119], [8.551174, 47.378145], [8.551161, 47.378171], [8.551144, 47.378195], [8.551125, 47.378219], [8.551103, 47.378242], [8.551078, 47.378263], [8.55001, 47.379096], [8.550005, 47.379099], [8.55, 47.379102], [8.549994, 47.379105], [8.549988, 47.379107], [8.549982, 47.379109], [8.549976, 47.379111], [8.549969, 47.379112], [8.549962, 47.379113], [8.549955, 47.379114], [8.549948, 47.379114], [8.549941, 47.379114], [8.549934, 47.379113], [8.549928, 47.379112], [8.549921, 47.37911], [8.549915, 47.379108], [8.549909, 47.379106], [8.549903, 47.379103], [8.549427, 47.378821]]], "type": "MultiLineString"}, "id": "4809", "properties": {}, "type": "Feature"}, {"bbox": [8.514422, 47.374271, 8.514896, 47.374438], "geometry": {"coordinates": [[[8.514422, 47.374398], [8.514471, 47.374361], [8.514602, 47.374432], [8.514605, 47.374434], [8.514608, 47.374435], [8.514612, 47.374436], [8.514616, 47.374437], [8.514619, 47.374437], [8.514623, 47.374438], [8.514627, 47.374438], [8.514631, 47.374438], [8.514635, 47.374437], [8.514638, 47.374437], [8.514642, 47.374436], [8.514646, 47.374435], [8.514649, 47.374434], [8.514652, 47.374432], [8.514655, 47.374431], [8.514658, 47.374429], [8.514896, 47.374271]]], "type": "MultiLineString"}, "id": "4810", "properties": {}, "type": "Feature"}, {"bbox": [8.595097, 47.396664, 8.596576, 47.397759], "geometry": {"coordinates": [[[8.595097, 47.397122], [8.595256, 47.397063], [8.595433, 47.397274], [8.595461, 47.397301], [8.595492, 47.397326], [8.595526, 47.39735], [8.596015, 47.39769], [8.596037, 47.397704], [8.596061, 47.397717], [8.596086, 47.397729], [8.596113, 47.397739], [8.596141, 47.397747], [8.59617, 47.397754], [8.596192, 47.397757], [8.596214, 47.397759], [8.596237, 47.397759], [8.596259, 47.397758], [8.596281, 47.397755], [8.596303, 47.397752], [8.596324, 47.397747], [8.596345, 47.397741], [8.596365, 47.397733], [8.596383, 47.397725], [8.596401, 47.397715], [8.596417, 47.397705], [8.596432, 47.397693], [8.596446, 47.397681], [8.5965, 47.3976], [8.596576, 47.397406], [8.596537, 47.397331], [8.596452, 47.397149], [8.596404, 47.397001], [8.596387, 47.396908], [8.596379, 47.396813], [8.596381, 47.396677], [8.596381, 47.396664], [8.596166, 47.396733], [8.595637, 47.396921], [8.595256, 47.397063]]], "type": "MultiLineString"}, "id": "4811", "properties": {}, "type": "Feature"}, {"bbox": [8.519235, 47.366432, 8.519958, 47.366569], "geometry": {"coordinates": [[[8.519958, 47.366529], [8.519904, 47.366539], [8.519596, 47.366569], [8.519327, 47.366554], [8.519324, 47.366512], [8.519235, 47.36648], [8.519272, 47.366432]]], "type": "MultiLineString"}, "id": "4812", "properties": {}, "type": "Feature"}, {"bbox": [8.539534, 47.370274, 8.541209, 47.370651], "geometry": {"coordinates": [[[8.541209, 47.370563], [8.541055, 47.370651], [8.540855, 47.370647], [8.540656, 47.370631], [8.540459, 47.370603], [8.540267, 47.370564], [8.540081, 47.370513], [8.539534, 47.370274]]], "type": "MultiLineString"}, "id": "4814", "properties": {}, "type": "Feature"}, {"bbox": [8.513481, 47.350835, 8.520833, 47.356319], "geometry": {"coordinates": [[[8.520833, 47.356319], [8.520803, 47.35619], [8.520765, 47.356095], [8.520732, 47.356014], [8.520717, 47.355976], [8.520692, 47.355911], [8.520669, 47.355847], [8.520649, 47.355781], [8.520346, 47.354769], [8.52015, 47.354118], [8.520143, 47.354097], [8.520132, 47.354077], [8.520119, 47.354057], [8.520104, 47.354038], [8.520086, 47.35402], [8.520066, 47.354003], [8.520044, 47.353988], [8.52002, 47.353974], [8.519994, 47.353961], [8.519898, 47.35392], [8.5198, 47.353883], [8.519699, 47.353849], [8.519208, 47.353694], [8.519147, 47.353674], [8.519012, 47.353628], [8.518882, 47.353577], [8.518756, 47.353521], [8.518279, 47.353293], [8.518245, 47.353278], [8.518209, 47.353266], [8.518171, 47.353255], [8.518132, 47.353246], [8.518093, 47.35324], [8.517983, 47.353227], [8.517521, 47.353169], [8.517349, 47.353141], [8.517182, 47.353103], [8.517021, 47.353055], [8.516868, 47.352996], [8.516723, 47.352928], [8.516588, 47.352851], [8.516356, 47.352705], [8.516295, 47.352669], [8.516231, 47.352635], [8.516164, 47.352603], [8.516164, 47.352603], [8.516141, 47.352593], [8.516141, 47.352593], [8.516053, 47.352558], [8.515962, 47.352528], [8.515868, 47.352502], [8.515364, 47.352375], [8.515152, 47.352316], [8.514949, 47.352245], [8.514755, 47.352162], [8.51417, 47.351891], [8.514082, 47.351847], [8.514, 47.351797], [8.513925, 47.351743], [8.513856, 47.351684], [8.513796, 47.351622], [8.513743, 47.351557], [8.513699, 47.351488], [8.513664, 47.351418], [8.513638, 47.351345], [8.51354, 47.351014], [8.513481, 47.350835]]], "type": "MultiLineString"}, "id": "4815", "properties": {}, "type": "Feature"}, {"bbox": [8.596697, 47.351524, 8.601412, 47.356774], "geometry": {"coordinates": [[[8.596697, 47.356774], [8.596773, 47.356709], [8.596853, 47.356647], [8.596936, 47.356587], [8.597067, 47.356495], [8.597203, 47.356406], [8.597344, 47.356321], [8.59791, 47.355914], [8.598622, 47.355125], [8.598809, 47.354878], [8.599228, 47.354326], [8.599355, 47.354146], [8.599348, 47.354078], [8.599342, 47.354011], [8.599551, 47.35388], [8.599674, 47.353682], [8.599711, 47.353511], [8.599713, 47.353169], [8.599736, 47.353028], [8.599772, 47.352909], [8.600041, 47.352598], [8.600392, 47.352219], [8.600675, 47.352034], [8.600943, 47.351838], [8.601032, 47.351766], [8.601412, 47.351524]]], "type": "MultiLineString"}, "id": "4823", "properties": {}, "type": "Feature"}, {"bbox": [8.521937, 47.406307, 8.525124, 47.408033], "geometry": {"coordinates": [[[8.525124, 47.406307], [8.525099, 47.406364], [8.524994, 47.406697], [8.524964, 47.406772], [8.524964, 47.406773], [8.524964, 47.406773], [8.524923, 47.406854], [8.524875, 47.406934], [8.52482, 47.407011], [8.52482, 47.407011], [8.52482, 47.407011], [8.524774, 47.407072], [8.524724, 47.407132], [8.524671, 47.407191], [8.524671, 47.407191], [8.524671, 47.407191], [8.524626, 47.407239], [8.524579, 47.407286], [8.52453, 47.407331], [8.524447, 47.407397], [8.524359, 47.40746], [8.524266, 47.40752], [8.524266, 47.40752], [8.524266, 47.40752], [8.524175, 47.407573], [8.524078, 47.407622], [8.523977, 47.407665], [8.52388, 47.407699], [8.52378, 47.40773], [8.523678, 47.407757], [8.523678, 47.407757], [8.523257, 47.407865], [8.523088, 47.407914], [8.523068, 47.407921], [8.522848, 47.407988], [8.522808, 47.408002], [8.522765, 47.408013], [8.522722, 47.408022], [8.522677, 47.408028], [8.522632, 47.408032], [8.522586, 47.408033], [8.52254, 47.408032], [8.522108, 47.408011], [8.521937, 47.407988]]], "type": "MultiLineString"}, "id": "4824", "properties": {}, "type": "Feature"}, {"bbox": [8.568413, 47.353651, 8.570041, 47.355534], "geometry": {"coordinates": [[[8.568593, 47.353651], [8.568418, 47.354334], [8.568413, 47.354403], [8.568413, 47.354473], [8.568421, 47.354542], [8.568457, 47.354741], [8.568468, 47.354784], [8.568484, 47.354827], [8.568505, 47.354869], [8.568532, 47.35491], [8.568563, 47.354949], [8.568599, 47.354986], [8.568639, 47.355021], [8.568749, 47.3551], [8.568861, 47.355177], [8.568977, 47.355252], [8.569118, 47.355327], [8.569269, 47.355394], [8.569427, 47.355451], [8.569593, 47.355498], [8.569764, 47.355534], [8.569772, 47.355534], [8.56978, 47.355534], [8.569788, 47.355533], [8.569796, 47.355532], [8.569803, 47.35553], [8.569811, 47.355527], [8.569818, 47.355525], [8.569824, 47.355522], [8.56983, 47.355518], [8.569836, 47.355514], [8.569841, 47.35551], [8.569846, 47.355506], [8.56985, 47.355501], [8.569853, 47.355496], [8.569856, 47.355491], [8.569858, 47.355486], [8.569859, 47.35548], [8.56986, 47.355475], [8.570041, 47.354718]]], "type": "MultiLineString"}, "id": "4829", "properties": {}, "type": "Feature"}, {"bbox": [8.494449, 47.378057, 8.496582, 47.37874], "geometry": {"coordinates": [[[8.496582, 47.378541], [8.49657, 47.378539], [8.496557, 47.378536], [8.496545, 47.378533], [8.496533, 47.378528], [8.496523, 47.378523], [8.496512, 47.378518], [8.496503, 47.378511], [8.496494, 47.378505], [8.496486, 47.378497], [8.49631, 47.378358], [8.496293, 47.378347], [8.496275, 47.378338], [8.496256, 47.378329], [8.496235, 47.378322], [8.496214, 47.378316], [8.496192, 47.378311], [8.49617, 47.378308], [8.496147, 47.378306], [8.496101, 47.378308], [8.496055, 47.378307], [8.496009, 47.378303], [8.495963, 47.378296], [8.495919, 47.378286], [8.495861, 47.378266], [8.495806, 47.378243], [8.495754, 47.378217], [8.495705, 47.378187], [8.495661, 47.378155], [8.495621, 47.37812], [8.49561, 47.37811], [8.495597, 47.3781], [8.495583, 47.378092], [8.495567, 47.378084], [8.495551, 47.378077], [8.495534, 47.378071], [8.495517, 47.378066], [8.495499, 47.378062], [8.49548, 47.378059], [8.495461, 47.378057], [8.495442, 47.378057], [8.495423, 47.378057], [8.495404, 47.378059], [8.495385, 47.378061], [8.495367, 47.378065], [8.495349, 47.37807], [8.495332, 47.378076], [8.495316, 47.378082], [8.495301, 47.37809], [8.495286, 47.378099], [8.495273, 47.378108], [8.495261, 47.378118], [8.495195, 47.378174], [8.495123, 47.378226], [8.495044, 47.378273], [8.494959, 47.378315], [8.49492, 47.378329], [8.494883, 47.378345], [8.494848, 47.378363], [8.494815, 47.378383], [8.494786, 47.378406], [8.49476, 47.37843], [8.494737, 47.378455], [8.494717, 47.378482], [8.494663, 47.378552], [8.494599, 47.378619], [8.494528, 47.378682], [8.494449, 47.37874]]], "type": "MultiLineString"}, "id": "4830", "properties": {}, "type": "Feature"}, {"bbox": [8.535634, 47.343962, 8.537067, 47.34534], "geometry": {"coordinates": [[[8.535634, 47.345287], [8.536069, 47.345335], [8.536088, 47.345281], [8.536157, 47.345263], [8.53663, 47.34534], [8.536791, 47.344951], [8.536802, 47.344944], [8.536812, 47.344936], [8.53682, 47.344928], [8.536828, 47.344919], [8.536835, 47.344909], [8.53684, 47.3449], [8.537066, 47.344322], [8.537067, 47.344319], [8.537067, 47.344316], [8.537067, 47.344313], [8.537066, 47.344311], [8.537065, 47.344308], [8.537064, 47.344305], [8.537063, 47.344303], [8.537061, 47.3443], [8.537059, 47.344298], [8.537056, 47.344296], [8.537054, 47.344294], [8.537051, 47.344292], [8.537048, 47.34429], [8.537044, 47.344289], [8.536937, 47.34425], [8.536796, 47.344193], [8.536795, 47.344159], [8.53679, 47.344011], [8.536808, 47.343962]]], "type": "MultiLineString"}, "id": "4831", "properties": {}, "type": "Feature"}, {"bbox": [8.596003, 47.358139, 8.597044, 47.358406], "geometry": {"coordinates": [[[8.596003, 47.358139], [8.596004, 47.358151], [8.596008, 47.358169], [8.596015, 47.358187], [8.596023, 47.358204], [8.596033, 47.358221], [8.596046, 47.358237], [8.59606, 47.358252], [8.596076, 47.358266], [8.596095, 47.35828], [8.596114, 47.358292], [8.596167, 47.358318], [8.596222, 47.358341], [8.59628, 47.358361], [8.596341, 47.358377], [8.596403, 47.35839], [8.596466, 47.358399], [8.596531, 47.358405], [8.596596, 47.358406], [8.596661, 47.358404], [8.597044, 47.358406]]], "type": "MultiLineString"}, "id": "4833", "properties": {}, "type": "Feature"}, {"bbox": [8.507429, 47.398166, 8.509091, 47.398955], "geometry": {"coordinates": [[[8.507443, 47.398955], [8.507444, 47.398947], [8.507445, 47.398939], [8.507444, 47.398931], [8.507442, 47.398924], [8.507431, 47.398892], [8.50743, 47.398891], [8.50743, 47.39889], [8.507429, 47.398888], [8.507429, 47.398887], [8.50743, 47.398885], [8.50743, 47.398884], [8.50743, 47.398882], [8.507431, 47.398881], [8.507432, 47.398879], [8.507433, 47.398878], [8.507434, 47.398877], [8.507436, 47.398875], [8.507437, 47.398874], [8.507439, 47.398873], [8.50744, 47.398872], [8.507534, 47.398821], [8.507627, 47.39877], [8.507721, 47.39872], [8.507753, 47.398702], [8.507786, 47.398685], [8.507819, 47.398668], [8.507883, 47.398636], [8.507949, 47.398604], [8.508016, 47.398573], [8.508072, 47.39855], [8.508129, 47.398527], [8.508186, 47.398504], [8.508284, 47.398467], [8.508382, 47.398429], [8.508479, 47.398391], [8.508519, 47.398376], [8.50856, 47.398361], [8.508601, 47.398347], [8.508804, 47.398281], [8.508822, 47.398274], [8.508839, 47.398268], [8.508856, 47.398261], [8.508935, 47.39823], [8.509013, 47.398198], [8.509091, 47.398166]]], "type": "MultiLineString"}, "id": "4835", "properties": {}, "type": "Feature"}, {"bbox": [8.479467, 47.379383, 8.4808, 47.380286], "geometry": {"coordinates": [[[8.4808, 47.380286], [8.480796, 47.380282], [8.480794, 47.380277], [8.480791, 47.380272], [8.48079, 47.380267], [8.480789, 47.380261], [8.480789, 47.380256], [8.480777, 47.38011], [8.480749, 47.380038], [8.480669, 47.379941], [8.479737, 47.379528], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4836", "properties": {}, "type": "Feature"}, {"bbox": [8.482559, 47.375545, 8.482878, 47.375989], "geometry": {"coordinates": [[[8.482878, 47.375545], [8.482769, 47.375679], [8.482665, 47.375815], [8.482566, 47.375952], [8.482563, 47.375957], [8.482561, 47.375961], [8.48256, 47.375966], [8.482559, 47.37597], [8.482559, 47.375975], [8.482559, 47.37598], [8.48256, 47.375985], [8.482562, 47.375989]]], "type": "MultiLineString"}, "id": "4840", "properties": {}, "type": "Feature"}, {"bbox": [8.494113, 47.371544, 8.497845, 47.372504], "geometry": {"coordinates": [[[8.494113, 47.372504], [8.494126, 47.372498], [8.494139, 47.372493], [8.494153, 47.372488], [8.494168, 47.372485], [8.494183, 47.372483], [8.494198, 47.372481], [8.494214, 47.37248], [8.494229, 47.372481], [8.494238, 47.372481], [8.494247, 47.37248], [8.494256, 47.372479], [8.494265, 47.372478], [8.494274, 47.372476], [8.494282, 47.372473], [8.49429, 47.37247], [8.494297, 47.372467], [8.494305, 47.372463], [8.494311, 47.372459], [8.494501, 47.372308], [8.494525, 47.37229], [8.494552, 47.372273], [8.494582, 47.372258], [8.495032, 47.372036], [8.495048, 47.372028], [8.495065, 47.372021], [8.495083, 47.372015], [8.495101, 47.37201], [8.49512, 47.372005], [8.495537, 47.371931], [8.495954, 47.371856], [8.496371, 47.37178], [8.49638, 47.371778], [8.496389, 47.371777], [8.496397, 47.371774], [8.496406, 47.371771], [8.496414, 47.371768], [8.496421, 47.371764], [8.496428, 47.37176], [8.496434, 47.371755], [8.49644, 47.37175], [8.496445, 47.371744], [8.496451, 47.371738], [8.496457, 47.371731], [8.496465, 47.371725], [8.496473, 47.371719], [8.496482, 47.371714], [8.496491, 47.37171], [8.496501, 47.371706], [8.496512, 47.371702], [8.496523, 47.3717], [8.496534, 47.371697], [8.497845, 47.371544]]], "type": "MultiLineString"}, "id": "4841", "properties": {}, "type": "Feature"}, {"bbox": [8.470923, 47.389678, 8.472737, 47.39091], "geometry": {"coordinates": [[[8.472737, 47.389678], [8.47271, 47.389737], [8.472675, 47.389793], [8.472633, 47.389847], [8.472531, 47.389931], [8.472419, 47.390009], [8.472299, 47.390081], [8.472167, 47.390148], [8.471986, 47.390249], [8.471805, 47.39035], [8.471625, 47.390451], [8.471502, 47.390523], [8.47138, 47.390596], [8.47126, 47.390671], [8.471145, 47.390749], [8.471033, 47.390829], [8.470923, 47.39091]]], "type": "MultiLineString"}, "id": "4842", "properties": {}, "type": "Feature"}, {"bbox": [8.556053, 47.413945, 8.556659, 47.414508], "geometry": {"coordinates": [[[8.556641, 47.414508], [8.556659, 47.414028], [8.556656, 47.41402], [8.556651, 47.414012], [8.556646, 47.414005], [8.55664, 47.413997], [8.556632, 47.413991], [8.556624, 47.413984], [8.556616, 47.413978], [8.556606, 47.413973], [8.556596, 47.413968], [8.556585, 47.413963], [8.556574, 47.41396], [8.556562, 47.413957], [8.55655, 47.413955], [8.556538, 47.413953], [8.556526, 47.413952], [8.556513, 47.413952], [8.556053, 47.413945]]], "type": "MultiLineString"}, "id": "4843", "properties": {}, "type": "Feature"}, {"bbox": [8.487631, 47.372016, 8.488659, 47.373047], "geometry": {"coordinates": [[[8.48864, 47.373047], [8.488659, 47.37284], [8.488657, 47.372831], [8.488655, 47.372822], [8.488652, 47.372812], [8.488647, 47.372803], [8.488641, 47.372795], [8.488635, 47.372786], [8.488627, 47.372778], [8.488618, 47.372771], [8.488293, 47.37253], [8.488075, 47.372357], [8.487854, 47.372186], [8.487631, 47.372016]]], "type": "MultiLineString"}, "id": "4844", "properties": {}, "type": "Feature"}, {"bbox": [8.505331, 47.369326, 8.505552, 47.370157], "geometry": {"coordinates": [[[8.505397, 47.370157], [8.505331, 47.370111], [8.505335, 47.370072], [8.505336, 47.37006], [8.505338, 47.370049], [8.50534, 47.370038], [8.505351, 47.369995], [8.505363, 47.369952], [8.505376, 47.36991], [8.505392, 47.36986], [8.505423, 47.369753], [8.505434, 47.369725], [8.505447, 47.369696], [8.505462, 47.369668], [8.505479, 47.369637], [8.505479, 47.369637], [8.505503, 47.36959], [8.505524, 47.369542], [8.505542, 47.369493], [8.505552, 47.369462], [8.505407, 47.369326]]], "type": "MultiLineString"}, "id": "4845", "properties": {}, "type": "Feature"}, {"bbox": [8.571178, 47.404943, 8.572924, 47.406602], "geometry": {"coordinates": [[[8.571178, 47.404943], [8.571463, 47.405218], [8.571515, 47.405268], [8.571562, 47.40532], [8.571601, 47.405375], [8.571633, 47.405431], [8.571658, 47.40549], [8.571676, 47.40555], [8.571686, 47.40561], [8.571688, 47.405671], [8.571692, 47.405739], [8.571706, 47.405806], [8.571728, 47.405872], [8.571759, 47.405937], [8.571798, 47.405999], [8.571806, 47.406014], [8.571812, 47.40603], [8.571816, 47.406046], [8.571818, 47.406062], [8.571817, 47.406079], [8.571815, 47.406095], [8.57181, 47.406111], [8.571804, 47.406127], [8.571795, 47.406142], [8.571784, 47.406156], [8.571772, 47.40617], [8.571758, 47.406183], [8.571742, 47.406195], [8.571724, 47.406207], [8.5718, 47.40626], [8.572021, 47.406432], [8.572039, 47.406443], [8.572057, 47.406452], [8.572078, 47.40646], [8.572099, 47.406466], [8.57212, 47.406471], [8.572143, 47.406475], [8.572924, 47.406602]]], "type": "MultiLineString"}, "id": "4854", "properties": {}, "type": "Feature"}, {"bbox": [8.491322, 47.379122, 8.492122, 47.37965], "geometry": {"coordinates": [[[8.491322, 47.379122], [8.491322, 47.379129], [8.491323, 47.379135], [8.491325, 47.379142], [8.491327, 47.379148], [8.491331, 47.379155], [8.491335, 47.379161], [8.49134, 47.379167], [8.491346, 47.379172], [8.491352, 47.379177], [8.491594, 47.379336], [8.491637, 47.379362], [8.491683, 47.379385], [8.491732, 47.379405], [8.491866, 47.379484], [8.491996, 47.379565], [8.492122, 47.37965]]], "type": "MultiLineString"}, "id": "4856", "properties": {}, "type": "Feature"}, {"bbox": [8.4959, 47.414178, 8.498574, 47.416043], "geometry": {"coordinates": [[[8.4959, 47.414178], [8.496078, 47.414272], [8.496285, 47.414436], [8.49635, 47.414495], [8.496408, 47.414557], [8.496459, 47.414621], [8.496502, 47.414689], [8.496543, 47.414765], [8.49658, 47.414842], [8.496612, 47.41492], [8.496726, 47.415212], [8.496745, 47.415252], [8.496769, 47.415291], [8.496799, 47.415329], [8.496834, 47.415364], [8.497401, 47.415888], [8.497423, 47.415906], [8.497448, 47.415923], [8.497474, 47.415938], [8.497584, 47.415997], [8.497606, 47.416008], [8.497629, 47.416018], [8.497654, 47.416026], [8.49768, 47.416032], [8.497706, 47.416037], [8.497733, 47.416041], [8.49776, 47.416043], [8.497788, 47.416043], [8.497815, 47.416042], [8.497842, 47.416039], [8.497869, 47.416034], [8.497895, 47.416028], [8.49792, 47.416021], [8.498106, 47.415958], [8.498133, 47.415948], [8.49816, 47.415936], [8.498185, 47.415924], [8.498443, 47.415789], [8.498458, 47.415781], [8.498471, 47.415772], [8.498483, 47.415763], [8.498493, 47.415752], [8.498503, 47.415741], [8.498511, 47.41573], [8.498517, 47.415718], [8.498522, 47.415706], [8.498525, 47.415694], [8.498527, 47.415681], [8.498527, 47.415668], [8.49851, 47.415396], [8.49848, 47.415164], [8.498473, 47.41512], [8.498466, 47.415077], [8.498456, 47.415033], [8.498444, 47.414961], [8.498441, 47.414889], [8.498445, 47.414816], [8.498458, 47.414745], [8.498574, 47.414259]]], "type": "MultiLineString"}, "id": "4857", "properties": {}, "type": "Feature"}, {"bbox": [8.50751, 47.410319, 8.512995, 47.41126], "geometry": {"coordinates": [[[8.50751, 47.410912], [8.507545, 47.41095], [8.507585, 47.410985], [8.507629, 47.411018], [8.507678, 47.411047], [8.507928, 47.411184], [8.507969, 47.411203], [8.508013, 47.411219], [8.508058, 47.411233], [8.508105, 47.411244], [8.508153, 47.411252], [8.508201, 47.411257], [8.508251, 47.41126], [8.5083, 47.41126], [8.50835, 47.411258], [8.509168, 47.411251], [8.5101, 47.411237], [8.510218, 47.411232], [8.510335, 47.411218], [8.510449, 47.411197], [8.51048, 47.411189], [8.510511, 47.411182], [8.510541, 47.411173], [8.511259, 47.410938], [8.512046, 47.41068], [8.512404, 47.410517], [8.512995, 47.410319]]], "type": "MultiLineString"}, "id": "4858", "properties": {}, "type": "Feature"}, {"bbox": [8.562365, 47.404667, 8.564095, 47.405286], "geometry": {"coordinates": [[[8.564095, 47.405286], [8.563748, 47.405135], [8.563632, 47.405084], [8.563598, 47.405069], [8.563565, 47.405051], [8.563535, 47.405031], [8.563507, 47.40501], [8.563482, 47.404988], [8.563459, 47.404964], [8.563368, 47.40487], [8.563347, 47.404848], [8.563322, 47.404827], [8.563296, 47.404807], [8.563267, 47.404789], [8.563235, 47.404773], [8.563202, 47.404758], [8.563168, 47.404746], [8.56296, 47.404685], [8.56292, 47.404677], [8.562879, 47.404671], [8.562837, 47.404668], [8.562795, 47.404667], [8.562753, 47.404668], [8.562711, 47.404672], [8.562365, 47.404714]]], "type": "MultiLineString"}, "id": "4859", "properties": {}, "type": "Feature"}, {"bbox": [8.559666, 47.388319, 8.563902, 47.393703], "geometry": {"coordinates": [[[8.563902, 47.388319], [8.563821, 47.388391], [8.563289, 47.388814], [8.562348, 47.389531], [8.562325, 47.389555], [8.562305, 47.38958], [8.562288, 47.389606], [8.562274, 47.389633], [8.562264, 47.389661], [8.562257, 47.389689], [8.562254, 47.389718], [8.562244, 47.38972], [8.562234, 47.389722], [8.562224, 47.389725], [8.562215, 47.389728], [8.562206, 47.389732], [8.562198, 47.389736], [8.562191, 47.389741], [8.562184, 47.389746], [8.562177, 47.389752], [8.562172, 47.389758], [8.562167, 47.389764], [8.562163, 47.389771], [8.56216, 47.389778], [8.562158, 47.389785], [8.562081, 47.390142], [8.562075, 47.390178], [8.562074, 47.390215], [8.562077, 47.390252], [8.562084, 47.390288], [8.562096, 47.390324], [8.562175, 47.390522], [8.562248, 47.390717], [8.562259, 47.390751], [8.562265, 47.390785], [8.562266, 47.390819], [8.562263, 47.390853], [8.562256, 47.390887], [8.562242, 47.39093], [8.562222, 47.390972], [8.562197, 47.391012], [8.562168, 47.391052], [8.562134, 47.391089], [8.562095, 47.391125], [8.562053, 47.391158], [8.562045, 47.391164], [8.562039, 47.39117], [8.562033, 47.391176], [8.562028, 47.391183], [8.562024, 47.39119], [8.562021, 47.391197], [8.562019, 47.391205], [8.562018, 47.391212], [8.562017, 47.39122], [8.562018, 47.391227], [8.56202, 47.391234], [8.562022, 47.391242], [8.562079, 47.391379], [8.562083, 47.391391], [8.562086, 47.391402], [8.562087, 47.391414], [8.562087, 47.391426], [8.562085, 47.391438], [8.562082, 47.39145], [8.562077, 47.391461], [8.561957, 47.391718], [8.561929, 47.391769], [8.561893, 47.391819], [8.561851, 47.391866], [8.561578, 47.392137], [8.561568, 47.392147], [8.561556, 47.392156], [8.561543, 47.392164], [8.56153, 47.392171], [8.561515, 47.392178], [8.5615, 47.392183], [8.561484, 47.392188], [8.561468, 47.392192], [8.561451, 47.392195], [8.561433, 47.392197], [8.561416, 47.392198], [8.56049, 47.392206], [8.560438, 47.392219], [8.559992, 47.392504], [8.559794, 47.392656], [8.559794, 47.392656], [8.559778, 47.392669], [8.559764, 47.392684], [8.559752, 47.3927], [8.559741, 47.392716], [8.559733, 47.392732], [8.559726, 47.392749], [8.559726, 47.39275], [8.559666, 47.393051], [8.559677, 47.393252], [8.559695, 47.393703]]], "type": "MultiLineString"}, "id": "4860", "properties": {}, "type": "Feature"}, {"bbox": [8.543695, 47.373401, 8.54404, 47.376726], "geometry": {"coordinates": [[[8.543733, 47.373401], [8.543718, 47.373429], [8.543695, 47.373549], [8.543695, 47.373723], [8.543708, 47.373818], [8.543729, 47.373976], [8.543798, 47.374262], [8.543837, 47.374485], [8.543836, 47.374727], [8.543839, 47.374883], [8.543836, 47.374963], [8.543873, 47.375203], [8.543942, 47.375421], [8.543997, 47.375551], [8.544023, 47.375652], [8.544037, 47.375754], [8.54404, 47.375856], [8.54403, 47.375959], [8.54403, 47.37596], [8.543947, 47.376487], [8.54395, 47.376726]]], "type": "MultiLineString"}, "id": "4862", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.36675, 8.545814, 47.367078], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545676, 47.366795], [8.545535, 47.366834], [8.54539, 47.366867], [8.545116, 47.366916], [8.544839, 47.366955], [8.544559, 47.366985], [8.544508, 47.366993], [8.544459, 47.367005], [8.544411, 47.367019], [8.544366, 47.367036], [8.544322, 47.367056], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "4865", "properties": {}, "type": "Feature"}, {"bbox": [8.530812, 47.348575, 8.530979, 47.348861], "geometry": {"coordinates": [[[8.530979, 47.348861], [8.530937, 47.34871], [8.530903, 47.348613], [8.530899, 47.348608], [8.530895, 47.348603], [8.53089, 47.348599], [8.530885, 47.348595], [8.530879, 47.348591], [8.530873, 47.348587], [8.530866, 47.348584], [8.530859, 47.348581], [8.530852, 47.348579], [8.530844, 47.348577], [8.530836, 47.348576], [8.530828, 47.348575], [8.53082, 47.348575], [8.530812, 47.348575]]], "type": "MultiLineString"}, "id": "4867", "properties": {}, "type": "Feature"}, {"bbox": [8.48971, 47.377215, 8.490657, 47.378398], "geometry": {"coordinates": [[[8.490657, 47.377215], [8.490517, 47.377511], [8.490506, 47.377534], [8.490492, 47.377556], [8.490475, 47.377577], [8.490456, 47.377598], [8.490435, 47.377617], [8.490411, 47.377635], [8.490385, 47.377651], [8.490356, 47.377666], [8.490327, 47.37768], [8.490138, 47.377788], [8.490098, 47.377807], [8.490061, 47.377828], [8.490026, 47.377852], [8.489995, 47.377877], [8.489967, 47.377904], [8.489942, 47.377932], [8.489921, 47.377962], [8.489904, 47.377993], [8.48978, 47.378308], [8.489776, 47.378321], [8.48977, 47.378334], [8.489763, 47.378346], [8.489755, 47.378358], [8.489745, 47.37837], [8.489733, 47.378381], [8.48972, 47.378391], [8.48971, 47.378398]]], "type": "MultiLineString"}, "id": "4869", "properties": {}, "type": "Feature"}, {"bbox": [8.517451, 47.399496, 8.51763, 47.399698], "geometry": {"coordinates": [[[8.517624, 47.399698], [8.517628, 47.399683], [8.51763, 47.399668], [8.517629, 47.399653], [8.517627, 47.399638], [8.517623, 47.399623], [8.517617, 47.399609], [8.51761, 47.399594], [8.5176, 47.399581], [8.517589, 47.399568], [8.517576, 47.399555], [8.517562, 47.399544], [8.517546, 47.399533], [8.51753, 47.399524], [8.517511, 47.399515], [8.517492, 47.399507], [8.517472, 47.399501], [8.517451, 47.399496]]], "type": "MultiLineString"}, "id": "4870", "properties": {}, "type": "Feature"}, {"bbox": [8.546128, 47.427388, 8.547062, 47.427492], "geometry": {"coordinates": [[[8.547062, 47.427492], [8.547005, 47.427483], [8.546954, 47.427445], [8.546793, 47.427442], [8.546633, 47.42743], [8.546476, 47.427408], [8.546419, 47.427398], [8.546361, 47.427391], [8.546303, 47.427388], [8.546244, 47.427388], [8.546186, 47.42739], [8.546128, 47.427397]]], "type": "MultiLineString"}, "id": "4871", "properties": {}, "type": "Feature"}, {"bbox": [8.58492, 47.401312, 8.585319, 47.401937], "geometry": {"coordinates": [[[8.58492, 47.401312], [8.585319, 47.401937]]], "type": "MultiLineString"}, "id": "4872", "properties": {}, "type": "Feature"}, {"bbox": [8.520194, 47.407465, 8.524977, 47.409021], "geometry": {"coordinates": [[[8.524977, 47.407465], [8.524778, 47.40782], [8.524646, 47.408014], [8.52462, 47.408051], [8.524585, 47.408081], [8.524547, 47.40811], [8.523532, 47.408755], [8.523487, 47.40878], [8.52344, 47.408802], [8.523389, 47.408821], [8.523337, 47.408838], [8.523282, 47.408851], [8.523227, 47.40886], [8.523032, 47.408879], [8.522967, 47.408883], [8.522901, 47.408886], [8.522836, 47.408888], [8.522814, 47.408888], [8.522734, 47.408885], [8.522654, 47.408881], [8.522574, 47.408874], [8.522574, 47.408874], [8.522531, 47.40887], [8.522488, 47.408864], [8.522446, 47.408858], [8.522404, 47.408855], [8.522361, 47.408853], [8.522319, 47.408853], [8.522275, 47.408855], [8.522232, 47.40886], [8.522189, 47.408868], [8.522148, 47.408878], [8.522108, 47.40889], [8.52207, 47.408905], [8.522034, 47.408923], [8.522, 47.408942], [8.52197, 47.408964], [8.521947, 47.408976], [8.521923, 47.408987], [8.521897, 47.408996], [8.52187, 47.409004], [8.521843, 47.40901], [8.521814, 47.409014], [8.52176, 47.409019], [8.521706, 47.409021], [8.521651, 47.409019], [8.521597, 47.409014], [8.521544, 47.409005], [8.521544, 47.409005], [8.521543, 47.409005], [8.521456, 47.408988], [8.52137, 47.408969], [8.521285, 47.408948], [8.521204, 47.408926], [8.521124, 47.408904], [8.521043, 47.408882], [8.521042, 47.408882], [8.521042, 47.408882], [8.520949, 47.408863], [8.520854, 47.408851], [8.520758, 47.408844], [8.520661, 47.408842], [8.52066, 47.408842], [8.520444, 47.408861], [8.520419, 47.408863], [8.520395, 47.408862], [8.520371, 47.408861], [8.520347, 47.408858], [8.520324, 47.408853], [8.520302, 47.408847], [8.52028, 47.40884], [8.52026, 47.408831], [8.520212, 47.408795], [8.520194, 47.408747]]], "type": "MultiLineString"}, "id": "4875", "properties": {}, "type": "Feature"}, {"bbox": [8.528032, 47.357482, 8.528635, 47.358012], "geometry": {"coordinates": [[[8.528032, 47.357482], [8.52818, 47.35766], [8.528237, 47.357666], [8.528563, 47.357684], [8.528635, 47.357707], [8.528604, 47.358012]]], "type": "MultiLineString"}, "id": "4876", "properties": {}, "type": "Feature"}, {"bbox": [8.476183, 47.397322, 8.476448, 47.397837], "geometry": {"coordinates": [[[8.476448, 47.397837], [8.476411, 47.397825], [8.476377, 47.39781], [8.476344, 47.397794], [8.476314, 47.397775], [8.476286, 47.397755], [8.476261, 47.397733], [8.476239, 47.39771], [8.47622, 47.397686], [8.476204, 47.39766], [8.476192, 47.397634], [8.476186, 47.397613], [8.476183, 47.397591], [8.476183, 47.39757], [8.476185, 47.397549], [8.47619, 47.397528], [8.476198, 47.397507], [8.476208, 47.397487], [8.476221, 47.397467], [8.476236, 47.397448], [8.476268, 47.397419], [8.476304, 47.397391], [8.476343, 47.397366], [8.476385, 47.397343], [8.47643, 47.397322]]], "type": "MultiLineString"}, "id": "4877", "properties": {}, "type": "Feature"}, {"bbox": [8.575489, 47.388335, 8.575628, 47.390056], "geometry": {"coordinates": [[[8.575497, 47.388335], [8.575503, 47.388391], [8.575504, 47.388447], [8.575502, 47.388503], [8.575489, 47.388681], [8.575489, 47.388859], [8.575501, 47.389036], [8.575512, 47.389141], [8.575527, 47.389246], [8.575548, 47.38935], [8.575569, 47.389458], [8.575588, 47.389567], [8.575604, 47.389675], [8.575621, 47.389751], [8.575628, 47.389828], [8.575625, 47.389904], [8.575612, 47.389981], [8.57559, 47.390056]]], "type": "MultiLineString"}, "id": "4878", "properties": {}, "type": "Feature"}, {"bbox": [8.511016, 47.388599, 8.511017, 47.388601], "geometry": {"coordinates": [[[8.511016, 47.388601], [8.511017, 47.388599]]], "type": "MultiLineString"}, "id": "4879", "properties": {}, "type": "Feature"}, {"bbox": [8.50524, 47.39056, 8.505809, 47.391584], "geometry": {"coordinates": [[[8.505445, 47.391584], [8.505522, 47.391558], [8.505595, 47.391527], [8.505664, 47.391492], [8.505728, 47.391453], [8.505786, 47.39141], [8.505794, 47.3914], [8.505799, 47.39139], [8.505804, 47.391379], [8.505807, 47.391368], [8.505808, 47.391356], [8.505809, 47.391345], [8.505807, 47.391334], [8.505805, 47.391323], [8.505801, 47.391312], [8.505795, 47.391301], [8.505653, 47.39111], [8.505593, 47.39104], [8.505531, 47.390971], [8.505466, 47.390903], [8.505383, 47.390791], [8.505307, 47.390677], [8.50524, 47.39056]]], "type": "MultiLineString"}, "id": "4880", "properties": {}, "type": "Feature"}, {"bbox": [8.476658, 47.379446, 8.477403, 47.380556], "geometry": {"coordinates": [[[8.477403, 47.380556], [8.477399, 47.380541], [8.477394, 47.380527], [8.477386, 47.380513], [8.477377, 47.3805], [8.477366, 47.380487], [8.477353, 47.380475], [8.476699, 47.379944], [8.476689, 47.379933], [8.47668, 47.379922], [8.476672, 47.37991], [8.476666, 47.379897], [8.476662, 47.379885], [8.476659, 47.379872], [8.476658, 47.379859], [8.476659, 47.379846], [8.476661, 47.379833], [8.476742, 47.379593], [8.476744, 47.379583], [8.476744, 47.379572], [8.476744, 47.379561], [8.476741, 47.37955], [8.476738, 47.37954], [8.476733, 47.37953], [8.476727, 47.37952], [8.47672, 47.37951], [8.476711, 47.379501], [8.476694, 47.379483], [8.476677, 47.379465], [8.47666, 47.379446]]], "type": "MultiLineString"}, "id": "4882", "properties": {}, "type": "Feature"}, {"bbox": [8.568725, 47.402991, 8.569488, 47.403913], "geometry": {"coordinates": [[[8.569488, 47.403913], [8.569467, 47.403908], [8.569446, 47.403901], [8.569426, 47.403893], [8.569408, 47.403883], [8.569391, 47.403873], [8.569375, 47.403861], [8.569361, 47.403849], [8.569349, 47.403836], [8.569307, 47.403691], [8.569077, 47.403366], [8.568764, 47.403111], [8.568725, 47.402991]]], "type": "MultiLineString"}, "id": "4883", "properties": {}, "type": "Feature"}, {"bbox": [8.594233, 47.360645, 8.598449, 47.363229], "geometry": {"coordinates": [[[8.59428, 47.360645], [8.594257, 47.360725], [8.594242, 47.360806], [8.594233, 47.360887], [8.59424, 47.360899], [8.594249, 47.36091], [8.594258, 47.360921], [8.59427, 47.360931], [8.594282, 47.36094], [8.594295, 47.360949], [8.59431, 47.360957], [8.594326, 47.360963], [8.594802, 47.361193], [8.59481, 47.361196], [8.594818, 47.3612], [8.594825, 47.361205], [8.594831, 47.361209], [8.594837, 47.361215], [8.594842, 47.36122], [8.594847, 47.361226], [8.594851, 47.361232], [8.594854, 47.361238], [8.594856, 47.361244], [8.594857, 47.36125], [8.594859, 47.361256], [8.594861, 47.361262], [8.594864, 47.361267], [8.594868, 47.361273], [8.594872, 47.361278], [8.594877, 47.361282], [8.594883, 47.361287], [8.594889, 47.361291], [8.594895, 47.361295], [8.594903, 47.361298], [8.594997, 47.361342], [8.595006, 47.36135], [8.595015, 47.361358], [8.595023, 47.361366], [8.595029, 47.361375], [8.595034, 47.361384], [8.595038, 47.361393], [8.595041, 47.361403], [8.595042, 47.361413], [8.595042, 47.361422], [8.595045, 47.36153], [8.595046, 47.361539], [8.595047, 47.361547], [8.595049, 47.361555], [8.595053, 47.361563], [8.595058, 47.361571], [8.595063, 47.361578], [8.595069, 47.361585], [8.595077, 47.361592], [8.595085, 47.361598], [8.595094, 47.361604], [8.595103, 47.361609], [8.595114, 47.361614], [8.595124, 47.361618], [8.595136, 47.361621], [8.595941, 47.361878], [8.596253, 47.361979], [8.596523, 47.362071], [8.596802, 47.362152], [8.597086, 47.362222], [8.597096, 47.362226], [8.597105, 47.362231], [8.597114, 47.362236], [8.597122, 47.362242], [8.597129, 47.362248], [8.597135, 47.362255], [8.597141, 47.362262], [8.597185, 47.362458], [8.597187, 47.362466], [8.597189, 47.362474], [8.597192, 47.362482], [8.597196, 47.362489], [8.597202, 47.362497], [8.597208, 47.362504], [8.597215, 47.36251], [8.597222, 47.362517], [8.597231, 47.362522], [8.59724, 47.362528], [8.597327, 47.362555], [8.597352, 47.362563], [8.597377, 47.362573], [8.5974, 47.362583], [8.597455, 47.362615], [8.597506, 47.362649], [8.597552, 47.362687], [8.597592, 47.362727], [8.597627, 47.36277], [8.597689, 47.362905], [8.597694, 47.362917], [8.597702, 47.362929], [8.597711, 47.36294], [8.597721, 47.36295], [8.597733, 47.36296], [8.597746, 47.362968], [8.59776, 47.362976], [8.597775, 47.362984], [8.597827, 47.363009], [8.597881, 47.363033], [8.597937, 47.363055], [8.598, 47.363076], [8.598062, 47.363099], [8.598121, 47.363125], [8.598228, 47.363163], [8.598337, 47.363198], [8.598449, 47.363229]]], "type": "MultiLineString"}, "id": "4884", "properties": {}, "type": "Feature"}, {"bbox": [8.539774, 47.399577, 8.540917, 47.401133], "geometry": {"coordinates": [[[8.540917, 47.401088], [8.540804, 47.401102], [8.540691, 47.401117], [8.540579, 47.401133], [8.540494, 47.401082], [8.540404, 47.401037], [8.540309, 47.400996], [8.540209, 47.400961], [8.540105, 47.400932], [8.539999, 47.400908], [8.539953, 47.400892], [8.539909, 47.400874], [8.539866, 47.400856], [8.539852, 47.400847], [8.539838, 47.400837], [8.539826, 47.400827], [8.539815, 47.400816], [8.539806, 47.400805], [8.539798, 47.400793], [8.539791, 47.400781], [8.539786, 47.400768], [8.539783, 47.400755], [8.539781, 47.400742], [8.539776, 47.400716], [8.539774, 47.40069], [8.539774, 47.400664], [8.539774, 47.400652], [8.539775, 47.40064], [8.539777, 47.400628], [8.539781, 47.400617], [8.539786, 47.400606], [8.539793, 47.400595], [8.539801, 47.400585], [8.539811, 47.400575], [8.539923, 47.40046], [8.540037, 47.400345], [8.540153, 47.400231], [8.540355, 47.400013], [8.540556, 47.399795], [8.540757, 47.399577]]], "type": "MultiLineString"}, "id": "4885", "properties": {}, "type": "Feature"}, {"bbox": [8.599933, 47.360078, 8.60041, 47.360761], "geometry": {"coordinates": [[[8.600038, 47.360078], [8.599935, 47.360368], [8.599933, 47.360382], [8.599933, 47.360395], [8.599934, 47.360409], [8.599937, 47.360423], [8.599942, 47.360436], [8.599949, 47.360449], [8.599957, 47.360462], [8.599967, 47.360474], [8.599979, 47.360485], [8.599992, 47.360496], [8.600006, 47.360506], [8.600021, 47.360515], [8.600038, 47.360523], [8.600055, 47.36053], [8.600073, 47.360536], [8.600093, 47.36054], [8.600112, 47.360544], [8.600212, 47.360567], [8.600311, 47.360591], [8.60041, 47.360616], [8.60037, 47.360761]]], "type": "MultiLineString"}, "id": "4886", "properties": {}, "type": "Feature"}, {"bbox": [8.469507, 47.361353, 8.475601, 47.364213], "geometry": {"coordinates": [[[8.469507, 47.364213], [8.469614, 47.364188], [8.469682, 47.364171], [8.470606, 47.363932], [8.471218, 47.36382], [8.471842, 47.363745], [8.472473, 47.363707], [8.473712, 47.363705], [8.473906, 47.363693], [8.474099, 47.363669], [8.474288, 47.363635], [8.474472, 47.363589], [8.47465, 47.363533], [8.474819, 47.363467], [8.47498, 47.363391], [8.475131, 47.363307], [8.475271, 47.363213], [8.475398, 47.363112], [8.475512, 47.363004], [8.475538, 47.362971], [8.475559, 47.362937], [8.475576, 47.362901], [8.475589, 47.362865], [8.475597, 47.362828], [8.475601, 47.36279], [8.4756, 47.362753], [8.475594, 47.362721], [8.475584, 47.36269], [8.47557, 47.362659], [8.475553, 47.36263], [8.475279, 47.362211], [8.475217, 47.362123], [8.475148, 47.362039], [8.475071, 47.361957], [8.4747, 47.361589], [8.474655, 47.361548], [8.474604, 47.36151], [8.474549, 47.361476], [8.474489, 47.361444], [8.474425, 47.361417], [8.47437, 47.361398], [8.474312, 47.361382], [8.474253, 47.361369], [8.474192, 47.36136], [8.474131, 47.361355], [8.474068, 47.361353], [8.473988, 47.361355], [8.473909, 47.361361], [8.473831, 47.361372], [8.473754, 47.361388], [8.473679, 47.361407], [8.473607, 47.361431], [8.473538, 47.361459], [8.473487, 47.361484], [8.473438, 47.361512], [8.473394, 47.361542], [8.473353, 47.361575], [8.473316, 47.36161], [8.473283, 47.361647], [8.473256, 47.361685], [8.473232, 47.361725], [8.473099, 47.361988], [8.472892, 47.362372], [8.472872, 47.362404], [8.472849, 47.362434], [8.472821, 47.362463], [8.47279, 47.362491], [8.472756, 47.362516], [8.472718, 47.362539], [8.472678, 47.362559], [8.472635, 47.362578], [8.47259, 47.362593], [8.472543, 47.362606], [8.472494, 47.362616], [8.472445, 47.362623], [8.472394, 47.362627], [8.471448, 47.362673], [8.471351, 47.362675], [8.471254, 47.362672], [8.471158, 47.362662], [8.471064, 47.362647], [8.470972, 47.362627], [8.470882, 47.362602], [8.470796, 47.362571], [8.470317, 47.362382]]], "type": "MultiLineString"}, "id": "4888", "properties": {}, "type": "Feature"}, {"bbox": [8.536125, 47.400055, 8.536396, 47.400329], "geometry": {"coordinates": [[[8.536396, 47.400055], [8.536125, 47.400329]]], "type": "MultiLineString"}, "id": "4889", "properties": {}, "type": "Feature"}, {"bbox": [8.482874, 47.411852, 8.491257, 47.419877], "geometry": {"coordinates": [[[8.491257, 47.411852], [8.491237, 47.411961], [8.491149, 47.412076], [8.490796, 47.412575], [8.49067, 47.412733], [8.49065, 47.41276], [8.490634, 47.412788], [8.490622, 47.412816], [8.490613, 47.412846], [8.490608, 47.412875], [8.490566, 47.413237], [8.490487, 47.413877], [8.490408, 47.414435], [8.490366, 47.41471], [8.490296, 47.415077], [8.490155, 47.415732], [8.490125, 47.415833], [8.490081, 47.415932], [8.490022, 47.416028], [8.489565, 47.416673], [8.489552, 47.41669], [8.489537, 47.416707], [8.489522, 47.416724], [8.489506, 47.41674], [8.48949, 47.416754], [8.489473, 47.416769], [8.489431, 47.416799], [8.489386, 47.416826], [8.489337, 47.416851], [8.489285, 47.416872], [8.4887, 47.417087], [8.488425, 47.417193], [8.488363, 47.417219], [8.488304, 47.417248], [8.488248, 47.417281], [8.488197, 47.417317], [8.48815, 47.417355], [8.488108, 47.417396], [8.487862, 47.417654], [8.487609, 47.417972], [8.48749, 47.418108], [8.487356, 47.418238], [8.487207, 47.41836], [8.487045, 47.418474], [8.48658, 47.418777], [8.486512, 47.418815], [8.486375, 47.418891], [8.486227, 47.418974], [8.48614, 47.419018], [8.486047, 47.419057], [8.48595, 47.41909], [8.48585, 47.419118], [8.485403, 47.419224], [8.485107, 47.4193], [8.484535, 47.419446], [8.483947, 47.419592], [8.483353, 47.419735], [8.483085, 47.419812], [8.482874, 47.419877]]], "type": "MultiLineString"}, "id": "4891", "properties": {}, "type": "Feature"}, {"bbox": [8.555971, 47.40498, 8.557309, 47.405939], "geometry": {"coordinates": [[[8.555971, 47.40498], [8.556435, 47.405567], [8.556821, 47.405727], [8.557309, 47.405939]]], "type": "MultiLineString"}, "id": "4892", "properties": {}, "type": "Feature"}, {"bbox": [8.600845, 47.354852, 8.60116, 47.355126], "geometry": {"coordinates": [[[8.600845, 47.355126], [8.600852, 47.35512], [8.600859, 47.355114], [8.600864, 47.355107], [8.600869, 47.3551], [8.600873, 47.355093], [8.600876, 47.355085], [8.600878, 47.355077], [8.600879, 47.355069], [8.600883, 47.354992], [8.600934, 47.354906], [8.601048, 47.354855], [8.601056, 47.354853], [8.601063, 47.354852], [8.60107, 47.354852], [8.601078, 47.354852], [8.601085, 47.354852], [8.601092, 47.354853], [8.601099, 47.354854], [8.601106, 47.354856], [8.601113, 47.354858], [8.60112, 47.35486], [8.601126, 47.354863], [8.601132, 47.354866], [8.601137, 47.354869], [8.601142, 47.354873], [8.601146, 47.354877], [8.60115, 47.354882], [8.601153, 47.354886], [8.601156, 47.354891], [8.601158, 47.354896], [8.601159, 47.354901], [8.60116, 47.354906]]], "type": "MultiLineString"}, "id": "4893", "properties": {}, "type": "Feature"}, {"bbox": [8.568656, 47.373542, 8.57592, 47.374605], "geometry": {"coordinates": [[[8.568656, 47.373542], [8.568777, 47.373609], [8.568831, 47.373656], [8.568956, 47.373833], [8.568986, 47.37388], [8.56901, 47.373929], [8.569026, 47.373979], [8.56903, 47.373991], [8.569036, 47.374003], [8.569043, 47.374015], [8.569052, 47.374026], [8.569062, 47.374037], [8.569073, 47.374047], [8.569085, 47.374056], [8.569099, 47.374064], [8.569114, 47.374072], [8.569129, 47.374079], [8.569146, 47.374085], [8.569207, 47.374102], [8.569269, 47.374115], [8.569334, 47.374125], [8.569399, 47.374131], [8.569465, 47.374133], [8.569597, 47.374133], [8.569621, 47.374134], [8.569645, 47.374136], [8.569668, 47.37414], [8.569692, 47.374145], [8.569714, 47.374151], [8.569736, 47.374158], [8.569756, 47.374167], [8.569942, 47.374252], [8.569963, 47.37426], [8.569985, 47.374268], [8.570008, 47.374274], [8.570031, 47.374279], [8.570055, 47.374283], [8.57008, 47.374285], [8.570104, 47.374285], [8.570129, 47.374285], [8.57038, 47.374271], [8.570583, 47.374264], [8.570786, 47.374264], [8.570989, 47.374272], [8.571755, 47.374314], [8.571785, 47.374326], [8.571792, 47.374334], [8.5718, 47.374341], [8.571809, 47.374349], [8.571819, 47.374355], [8.571829, 47.374362], [8.57184, 47.374367], [8.571852, 47.374372], [8.571865, 47.374376], [8.571878, 47.374379], [8.571943, 47.374394], [8.572072, 47.37442], [8.572204, 47.374437], [8.572338, 47.374447], [8.572797, 47.374467], [8.572918, 47.374474], [8.573039, 47.374481], [8.573159, 47.374491], [8.573989, 47.374561], [8.574075, 47.374567], [8.574161, 47.374571], [8.574248, 47.374573], [8.574571, 47.374576], [8.575231, 47.374592], [8.57586, 47.374605], [8.57592, 47.374605]]], "type": "MultiLineString"}, "id": "4894", "properties": {}, "type": "Feature"}, {"bbox": [8.539387, 47.414948, 8.540744, 47.415022], "geometry": {"coordinates": [[[8.540744, 47.414948], [8.540439, 47.414966], [8.539387, 47.415022]]], "type": "MultiLineString"}, "id": "4895", "properties": {}, "type": "Feature"}, {"bbox": [8.48756, 47.36791, 8.490829, 47.369769], "geometry": {"coordinates": [[[8.490829, 47.36791], [8.490817, 47.36792], [8.490787, 47.36794], [8.490754, 47.367959], [8.49072, 47.367976], [8.490683, 47.36799], [8.490644, 47.368002], [8.490604, 47.368012], [8.490563, 47.36802], [8.490521, 47.368025], [8.4904, 47.368037], [8.490277, 47.368043], [8.490155, 47.368044], [8.490095, 47.368049], [8.490037, 47.368058], [8.48998, 47.36807], [8.489827, 47.368117], [8.489673, 47.368161], [8.489517, 47.368203], [8.489396, 47.368252], [8.489282, 47.368308], [8.489176, 47.36837], [8.489078, 47.368439], [8.488989, 47.368513], [8.48891, 47.368592], [8.48886, 47.368649], [8.48881, 47.368705], [8.488761, 47.368762], [8.488749, 47.368772], [8.488735, 47.368782], [8.48872, 47.368791], [8.488705, 47.368799], [8.488688, 47.368805], [8.48867, 47.368811], [8.488652, 47.368816], [8.488633, 47.368819], [8.488613, 47.368822], [8.488565, 47.368824], [8.488516, 47.368825], [8.488468, 47.368823], [8.488455, 47.368825], [8.488442, 47.368828], [8.488429, 47.368832], [8.488418, 47.368836], [8.488406, 47.368841], [8.488396, 47.368847], [8.488386, 47.368854], [8.488377, 47.368861], [8.488369, 47.368868], [8.488363, 47.368876], [8.488357, 47.368884], [8.488349, 47.368918], [8.488338, 47.368951], [8.488322, 47.368984], [8.488303, 47.369015], [8.488079, 47.369198], [8.487851, 47.369378], [8.48762, 47.369556], [8.487607, 47.369567], [8.487595, 47.36958], [8.487585, 47.369593], [8.487576, 47.369606], [8.487569, 47.36962], [8.487564, 47.369635], [8.487561, 47.369649], [8.48756, 47.369664], [8.48756, 47.369679], [8.487563, 47.369693], [8.487567, 47.369708], [8.487573, 47.369722], [8.48758, 47.369736], [8.487603, 47.369749], [8.487628, 47.36976], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "4897", "properties": {}, "type": "Feature"}, {"bbox": [8.579, 47.364989, 8.588936, 47.367253], "geometry": {"coordinates": [[[8.579, 47.367253], [8.579143, 47.367195], [8.579216, 47.367159], [8.579405, 47.367071], [8.579637, 47.366991], [8.579839, 47.366943], [8.579933, 47.36692], [8.580228, 47.366873], [8.581002, 47.366803], [8.581096, 47.366794], [8.58119, 47.366783], [8.581284, 47.366771], [8.581585, 47.366731], [8.581942, 47.366683], [8.582299, 47.366629], [8.582653, 47.366565], [8.583002, 47.366491], [8.583144, 47.366448], [8.583282, 47.3664], [8.583417, 47.366346], [8.584117, 47.36605], [8.584969, 47.365678], [8.584969, 47.365678], [8.585026, 47.365656], [8.585086, 47.365637], [8.585147, 47.36562], [8.585147, 47.36562], [8.585203, 47.365607], [8.585254, 47.365595], [8.585307, 47.365584], [8.585377, 47.36557], [8.585377, 47.36557], [8.585419, 47.365563], [8.585461, 47.365558], [8.585503, 47.365554], [8.585538, 47.365552], [8.586643, 47.365508], [8.587179, 47.365499], [8.587752, 47.365525], [8.587881, 47.365534], [8.588094, 47.365547], [8.588239, 47.36541], [8.588486, 47.365165], [8.588522, 47.365135], [8.588562, 47.365107], [8.588605, 47.365081], [8.588652, 47.365058], [8.588701, 47.365038], [8.588753, 47.365021], [8.588806, 47.365007], [8.588862, 47.364997], [8.588918, 47.36499], [8.588936, 47.364989]]], "type": "MultiLineString"}, "id": "4898", "properties": {}, "type": "Feature"}, {"bbox": [8.513511, 47.381272, 8.513956, 47.381623], "geometry": {"coordinates": [[[8.513511, 47.381491], [8.513581, 47.381459], [8.513742, 47.381623], [8.513831, 47.381579], [8.513732, 47.381476], [8.513794, 47.381449], [8.513774, 47.381429], [8.513772, 47.381427], [8.513771, 47.381426], [8.51377, 47.381424], [8.513769, 47.381423], [8.513768, 47.381421], [8.513767, 47.381419], [8.513767, 47.381417], [8.513767, 47.381416], [8.513767, 47.381414], [8.513768, 47.381412], [8.513768, 47.38141], [8.513769, 47.381409], [8.51377, 47.381407], [8.513771, 47.381405], [8.513773, 47.381404], [8.513774, 47.381403], [8.513776, 47.381401], [8.513778, 47.3814], [8.51378, 47.381399], [8.513783, 47.381398], [8.513935, 47.381329], [8.513956, 47.381288], [8.513947, 47.381283], [8.513939, 47.381278], [8.513932, 47.381272]]], "type": "MultiLineString"}, "id": "4901", "properties": {}, "type": "Feature"}, {"bbox": [8.575367, 47.380741, 8.578435, 47.382778], "geometry": {"coordinates": [[[8.578435, 47.380741], [8.578076, 47.381435], [8.577786, 47.381974], [8.577675, 47.382173], [8.577608, 47.382204], [8.577537, 47.382231], [8.577464, 47.382254], [8.577388, 47.382274], [8.577299, 47.382294], [8.576753, 47.382417], [8.576592, 47.382452], [8.57643, 47.382485], [8.576267, 47.382516], [8.575894, 47.382584], [8.575852, 47.382591], [8.57581, 47.382595], [8.575768, 47.382598], [8.575625, 47.382604], [8.575539, 47.382608], [8.575367, 47.382778]]], "type": "MultiLineString"}, "id": "4903", "properties": {}, "type": "Feature"}, {"bbox": [8.602552, 47.352557, 8.604621, 47.35367], "geometry": {"coordinates": [[[8.602552, 47.352557], [8.602613, 47.352585], [8.60267, 47.352615], [8.602723, 47.352649], [8.602771, 47.352686], [8.602814, 47.352726], [8.60292, 47.352864], [8.602949, 47.352907], [8.602973, 47.352951], [8.602991, 47.352996], [8.603003, 47.353043], [8.603009, 47.35309], [8.603009, 47.353137], [8.603003, 47.353183], [8.602991, 47.35323], [8.602974, 47.353275], [8.602971, 47.353294], [8.602971, 47.353314], [8.602974, 47.353333], [8.602979, 47.353352], [8.602987, 47.353371], [8.602997, 47.353389], [8.603009, 47.353407], [8.603024, 47.353424], [8.60304, 47.353439], [8.603059, 47.353454], [8.60308, 47.353467], [8.603102, 47.35348], [8.603218, 47.353533], [8.603233, 47.353538], [8.603247, 47.353541], [8.603263, 47.353544], [8.603277, 47.353546], [8.603292, 47.353546], [8.603307, 47.353546], [8.603321, 47.353545], [8.603336, 47.353543], [8.603839, 47.353466], [8.603873, 47.353463], [8.603909, 47.353463], [8.603944, 47.353464], [8.603978, 47.353468], [8.604012, 47.353474], [8.604045, 47.353481], [8.604077, 47.353491], [8.604621, 47.35367]]], "type": "MultiLineString"}, "id": "4905", "properties": {}, "type": "Feature"}, {"bbox": [8.565802, 47.356685, 8.566189, 47.358157], "geometry": {"coordinates": [[[8.566034, 47.356685], [8.565974, 47.356758], [8.565805, 47.357052], [8.565802, 47.357062], [8.565805, 47.357064], [8.565803, 47.357087], [8.565805, 47.357133], [8.565811, 47.357156], [8.565819, 47.357184], [8.565828, 47.357208], [8.565841, 47.357231], [8.565895, 47.357319], [8.565916, 47.35736], [8.56593, 47.357393], [8.565941, 47.357423], [8.565957, 47.357482], [8.565965, 47.357537], [8.565967, 47.357593], [8.565964, 47.35765], [8.565947, 47.357802], [8.565948, 47.357831], [8.565957, 47.357872], [8.565965, 47.35789], [8.565974, 47.357909], [8.566, 47.357945], [8.566106, 47.358065], [8.566189, 47.358157]]], "type": "MultiLineString"}, "id": "4906", "properties": {}, "type": "Feature"}, {"bbox": [8.567451, 47.411182, 8.572614, 47.411985], "geometry": {"coordinates": [[[8.567451, 47.411945], [8.567628, 47.41198], [8.567767, 47.411985], [8.567784, 47.411983], [8.5678, 47.411981], [8.567817, 47.411978], [8.567838, 47.411973], [8.56786, 47.411968], [8.56788, 47.411962], [8.568214, 47.411826], [8.568588, 47.411681], [8.568683, 47.411646], [8.56878, 47.411613], [8.568877, 47.411581], [8.56901, 47.411537], [8.569144, 47.411496], [8.569279, 47.411456], [8.569647, 47.411368], [8.57005, 47.41127], [8.570091, 47.41126], [8.570193, 47.411235], [8.570478, 47.411186], [8.570485, 47.411185], [8.570493, 47.411183], [8.570501, 47.411183], [8.570509, 47.411183], [8.570516, 47.411183], [8.570524, 47.411184], [8.570532, 47.411185], [8.570539, 47.411186], [8.570546, 47.411189], [8.570553, 47.411191], [8.57056, 47.411194], [8.570567, 47.411198], [8.570575, 47.411201], [8.570583, 47.411203], [8.570591, 47.411205], [8.5706, 47.411207], [8.570609, 47.411208], [8.570617, 47.411209], [8.570626, 47.411209], [8.570635, 47.411209], [8.57111, 47.411216], [8.571136, 47.41122], [8.571163, 47.411223], [8.571189, 47.411223], [8.571216, 47.411223], [8.571243, 47.41122], [8.571269, 47.411216], [8.571294, 47.411211], [8.571319, 47.411204], [8.571343, 47.411196], [8.572214, 47.411262], [8.572297, 47.411255], [8.57238, 47.411244], [8.57246, 47.411227], [8.572539, 47.411207], [8.572614, 47.411182]]], "type": "MultiLineString"}, "id": "4907", "properties": {}, "type": "Feature"}, {"bbox": [8.520767, 47.41414, 8.52437, 47.415047], "geometry": {"coordinates": [[[8.520767, 47.41488], [8.520842, 47.414882], [8.520917, 47.414887], [8.520991, 47.414895], [8.521571, 47.415034], [8.52162, 47.415041], [8.521669, 47.415045], [8.521718, 47.415047], [8.521767, 47.415045], [8.521816, 47.415041], [8.521865, 47.415034], [8.521912, 47.415025], [8.521958, 47.415012], [8.522002, 47.414998], [8.52208, 47.414965], [8.522162, 47.414937], [8.522246, 47.414913], [8.522521, 47.414845], [8.522577, 47.414828], [8.522632, 47.414809], [8.522684, 47.414788], [8.522814, 47.414736], [8.522944, 47.414684], [8.523073, 47.41463], [8.523086, 47.414626], [8.523099, 47.414622], [8.523112, 47.414618], [8.523125, 47.414616], [8.523137, 47.414614], [8.52315, 47.414611], [8.523161, 47.414607], [8.52437, 47.41414]]], "type": "MultiLineString"}, "id": "4908", "properties": {}, "type": "Feature"}, {"bbox": [8.543528, 47.375936, 8.54403, 47.37596], "geometry": {"coordinates": [[[8.54403, 47.37596], [8.544026, 47.375956], [8.544021, 47.375953], [8.544016, 47.375949], [8.54401, 47.375946], [8.544004, 47.375944], [8.543998, 47.375941], [8.543991, 47.375939], [8.543745, 47.375936], [8.543528, 47.375942]]], "type": "MultiLineString"}, "id": "4909", "properties": {}, "type": "Feature"}, {"bbox": [8.566632, 47.413287, 8.567563, 47.416283], "geometry": {"coordinates": [[[8.567563, 47.413287], [8.567472, 47.413481], [8.567392, 47.413677], [8.567322, 47.413875], [8.567313, 47.414028], [8.567306, 47.414182], [8.567302, 47.414335], [8.567288, 47.414462], [8.567258, 47.414588], [8.567213, 47.414712], [8.567153, 47.414832], [8.567078, 47.414949], [8.566987, 47.415067], [8.566897, 47.415186], [8.566808, 47.415305], [8.566747, 47.415402], [8.566699, 47.415501], [8.566664, 47.415603], [8.566641, 47.415707], [8.566632, 47.415812], [8.566636, 47.415917], [8.566654, 47.416011], [8.566683, 47.416104], [8.566724, 47.416195], [8.566776, 47.416283]]], "type": "MultiLineString"}, "id": "4910", "properties": {}, "type": "Feature"}, {"bbox": [8.561028, 47.414226, 8.561068, 47.414799], "geometry": {"coordinates": [[[8.561053, 47.414226], [8.561028, 47.414694], [8.561068, 47.414799]]], "type": "MultiLineString"}, "id": "4911", "properties": {}, "type": "Feature"}, {"bbox": [8.486039, 47.37741, 8.486906, 47.378345], "geometry": {"coordinates": [[[8.486906, 47.37741], [8.486824, 47.377555], [8.486731, 47.377697], [8.486624, 47.377835], [8.486567, 47.37789], [8.486506, 47.377945], [8.486441, 47.377997], [8.486306, 47.378112], [8.486171, 47.378228], [8.486039, 47.378345]]], "type": "MultiLineString"}, "id": "4912", "properties": {}, "type": "Feature"}, {"bbox": [8.542871, 47.392262, 8.54328, 47.392662], "geometry": {"coordinates": [[[8.54328, 47.392662], [8.542871, 47.392262]]], "type": "MultiLineString"}, "id": "4913", "properties": {}, "type": "Feature"}, {"bbox": [8.553292, 47.399202, 8.553571, 47.399567], "geometry": {"coordinates": [[[8.553292, 47.399202], [8.553299, 47.399212], [8.553299, 47.399215], [8.553297, 47.399216], [8.55347, 47.399447], [8.553571, 47.399567]]], "type": "MultiLineString"}, "id": "4914", "properties": {}, "type": "Feature"}, {"bbox": [8.472942, 47.376658, 8.473998, 47.377293], "geometry": {"coordinates": [[[8.473998, 47.377293], [8.473771, 47.37715], [8.47354, 47.377008], [8.473308, 47.376869], [8.473186, 47.376798], [8.473065, 47.376728], [8.472942, 47.376658]]], "type": "MultiLineString"}, "id": "4916", "properties": {}, "type": "Feature"}, {"bbox": [8.486203, 47.407795, 8.488437, 47.408606], "geometry": {"coordinates": [[[8.486203, 47.408605], [8.486254, 47.408606], [8.486304, 47.408604], [8.486355, 47.408599], [8.486404, 47.408591], [8.486453, 47.40858], [8.4865, 47.408567], [8.486542, 47.408552], [8.486582, 47.408535], [8.48662, 47.408515], [8.486655, 47.408493], [8.486687, 47.408469], [8.486754, 47.408436], [8.486825, 47.408406], [8.486899, 47.40838], [8.488437, 47.407795]]], "type": "MultiLineString"}, "id": "4917", "properties": {}, "type": "Feature"}, {"bbox": [8.573132, 47.368482, 8.573735, 47.369514], "geometry": {"coordinates": [[[8.573735, 47.368482], [8.573683, 47.368539], [8.573633, 47.368597], [8.573587, 47.368656], [8.573565, 47.368698], [8.573543, 47.36874], [8.573524, 47.368783], [8.573489, 47.368812], [8.573456, 47.368841], [8.573422, 47.36887], [8.573419, 47.368895], [8.573418, 47.368919], [8.573419, 47.368943], [8.573396, 47.36896], [8.573372, 47.368976], [8.573347, 47.368992], [8.573344, 47.369006], [8.573343, 47.36902], [8.573343, 47.369034], [8.573345, 47.369047], [8.573328, 47.36907], [8.573309, 47.369092], [8.573288, 47.369113], [8.573281, 47.369136], [8.573276, 47.369159], [8.573271, 47.369182], [8.573274, 47.369209], [8.573276, 47.369236], [8.573278, 47.369262], [8.573259, 47.36929], [8.573237, 47.369316], [8.573214, 47.369342], [8.573196, 47.36939], [8.573177, 47.369437], [8.573158, 47.369484], [8.57315, 47.369494], [8.573142, 47.369505], [8.573132, 47.369514]]], "type": "MultiLineString"}, "id": "4918", "properties": {}, "type": "Feature"}, {"bbox": [8.547917, 47.399061, 8.553571, 47.399567], "geometry": {"coordinates": [[[8.553571, 47.399567], [8.553383, 47.399472], [8.553238, 47.399381], [8.553086, 47.399293], [8.552929, 47.399211], [8.552848, 47.399176], [8.552763, 47.399146], [8.552674, 47.39912], [8.552582, 47.3991], [8.552488, 47.399086], [8.552392, 47.399077], [8.551236, 47.399061], [8.550903, 47.399145], [8.550835, 47.399208], [8.550768, 47.399271], [8.5507, 47.399333], [8.550668, 47.399357], [8.550632, 47.399379], [8.550594, 47.399398], [8.550553, 47.399415], [8.55051, 47.39943], [8.550466, 47.399442], [8.55042, 47.399451], [8.550373, 47.399458], [8.550326, 47.399462], [8.550278, 47.399463], [8.55023, 47.399461], [8.550183, 47.399456], [8.550136, 47.399448], [8.550091, 47.399438], [8.550022, 47.399423], [8.549954, 47.399408], [8.549885, 47.399392], [8.549197, 47.399554], [8.549158, 47.399559], [8.549118, 47.399562], [8.549079, 47.399562], [8.549039, 47.399561], [8.549, 47.399557], [8.548962, 47.39955], [8.548924, 47.399541], [8.548888, 47.399531], [8.548853, 47.399518], [8.548821, 47.399503], [8.54879, 47.399486], [8.548761, 47.399467], [8.548735, 47.399447], [8.548712, 47.399425], [8.548691, 47.399402], [8.548674, 47.399378], [8.548656, 47.399362], [8.548636, 47.399347], [8.548615, 47.399333], [8.548592, 47.39932], [8.548567, 47.399309], [8.548541, 47.399299], [8.548514, 47.399291], [8.548017, 47.399161], [8.547917, 47.39922]]], "type": "MultiLineString"}, "id": "4919", "properties": {}, "type": "Feature"}, {"bbox": [8.543225, 47.384011, 8.543693, 47.384614], "geometry": {"coordinates": [[[8.543225, 47.384011], [8.543289, 47.384059], [8.543454, 47.3841], [8.543507, 47.38415], [8.543693, 47.384614]]], "type": "MultiLineString"}, "id": "4921", "properties": {}, "type": "Feature"}, {"bbox": [8.493987, 47.388574, 8.494281, 47.389249], "geometry": {"coordinates": [[[8.494281, 47.389249], [8.494267, 47.389233], [8.494256, 47.389217], [8.494246, 47.3892], [8.494239, 47.389183], [8.494157, 47.38898], [8.494073, 47.388777], [8.493987, 47.388574]]], "type": "MultiLineString"}, "id": "4922", "properties": {}, "type": "Feature"}, {"bbox": [8.474218, 47.38127, 8.476063, 47.382082], "geometry": {"coordinates": [[[8.476063, 47.382082], [8.475096, 47.381452], [8.475072, 47.381434], [8.475046, 47.381418], [8.475018, 47.381403], [8.474988, 47.38139], [8.474956, 47.38138], [8.47471, 47.381345], [8.474464, 47.381308], [8.474218, 47.38127]]], "type": "MultiLineString"}, "id": "4923", "properties": {}, "type": "Feature"}, {"bbox": [8.53857, 47.369488, 8.539393, 47.370092], "geometry": {"coordinates": [[[8.539393, 47.369604], [8.539349, 47.369616], [8.539304, 47.369625], [8.539258, 47.369632], [8.539211, 47.369635], [8.539164, 47.369636], [8.539117, 47.369634], [8.53907, 47.369629], [8.539024, 47.369621], [8.53898, 47.36961], [8.538844, 47.369572], [8.53871, 47.369531], [8.538578, 47.369488], [8.538573, 47.369507], [8.53857, 47.369526], [8.53857, 47.369545], [8.538572, 47.369564], [8.538576, 47.369583], [8.538583, 47.369601], [8.538592, 47.369619], [8.538604, 47.369636], [8.538617, 47.369653], [8.538633, 47.369669], [8.538651, 47.369684], [8.53867, 47.369698], [8.538691, 47.36971], [8.538714, 47.369721], [8.538738, 47.369731], [8.538763, 47.36974], [8.539007, 47.369811], [8.539029, 47.369819], [8.53905, 47.369829], [8.539069, 47.36984], [8.539087, 47.369852], [8.539104, 47.369865], [8.539119, 47.369879], [8.539131, 47.369893], [8.539142, 47.369909], [8.539152, 47.369925], [8.539158, 47.369941], [8.539163, 47.369958], [8.539191, 47.370092]]], "type": "MultiLineString"}, "id": "4935", "properties": {}, "type": "Feature"}, {"bbox": [8.541432, 47.412507, 8.541977, 47.413178], "geometry": {"coordinates": [[[8.541977, 47.412507], [8.541432, 47.413178]]], "type": "MultiLineString"}, "id": "4937", "properties": {}, "type": "Feature"}, {"bbox": [8.546606, 47.427988, 8.550061, 47.430553], "geometry": {"coordinates": [[[8.550061, 47.427988], [8.549864, 47.428038], [8.549122, 47.428124], [8.5491, 47.428128], [8.549078, 47.428134], [8.549058, 47.42814], [8.549038, 47.428148], [8.54902, 47.428158], [8.549003, 47.428168], [8.548987, 47.428179], [8.548964, 47.428204], [8.548944, 47.428231], [8.548927, 47.428258], [8.548914, 47.428287], [8.548908, 47.428623], [8.54891, 47.428631], [8.54891, 47.428639], [8.548909, 47.428647], [8.548907, 47.428655], [8.548905, 47.428663], [8.548901, 47.428671], [8.548896, 47.428678], [8.54889, 47.428685], [8.548884, 47.428692], [8.548877, 47.428698], [8.548868, 47.428704], [8.548859, 47.428709], [8.54885, 47.428714], [8.54884, 47.428718], [8.548829, 47.428722], [8.548818, 47.428725], [8.548807, 47.428727], [8.548795, 47.428728], [8.548784, 47.428729], [8.548772, 47.42873], [8.54876, 47.428729], [8.548711, 47.428719], [8.548662, 47.428706], [8.548615, 47.428692], [8.548403, 47.428576], [8.548396, 47.428573], [8.548387, 47.42857], [8.548379, 47.428568], [8.54837, 47.428567], [8.548361, 47.428565], [8.548352, 47.428565], [8.548343, 47.428565], [8.548334, 47.428566], [8.548325, 47.428567], [8.548316, 47.428569], [8.548308, 47.428571], [8.5483, 47.428574], [8.548292, 47.428577], [8.548285, 47.42858], [8.548278, 47.428585], [8.548272, 47.428589], [8.548266, 47.428594], [8.548261, 47.428599], [8.548257, 47.428604], [8.548253, 47.42861], [8.548079, 47.428827], [8.548071, 47.428838], [8.548062, 47.428849], [8.548052, 47.42886], [8.54804, 47.428869], [8.548027, 47.428878], [8.548013, 47.428887], [8.547997, 47.428894], [8.547981, 47.4289], [8.547897, 47.428929], [8.546643, 47.429451], [8.546638, 47.429452], [8.546633, 47.429454], [8.546629, 47.429457], [8.546625, 47.429459], [8.546621, 47.429462], [8.546617, 47.429465], [8.546614, 47.429468], [8.546612, 47.429472], [8.54661, 47.429475], [8.546608, 47.429479], [8.546607, 47.429482], [8.546606, 47.429486], [8.546606, 47.42949], [8.546606, 47.429494], [8.546607, 47.429498], [8.546608, 47.429501], [8.54661, 47.429505], [8.546613, 47.429508], [8.546615, 47.429512], [8.54683, 47.429749], [8.547533, 47.430525], [8.547541, 47.430534], [8.547547, 47.430543], [8.547553, 47.430553]]], "type": "MultiLineString"}, "id": "4938", "properties": {}, "type": "Feature"}, {"bbox": [8.511992, 47.426204, 8.514711, 47.428102], "geometry": {"coordinates": [[[8.514711, 47.426204], [8.513659, 47.427086], [8.513578, 47.427172], [8.513509, 47.427264], [8.513453, 47.427359], [8.513412, 47.427458], [8.51332, 47.427702], [8.513262, 47.427786], [8.513159, 47.427846], [8.51303, 47.427874], [8.512349, 47.427951], [8.512324, 47.427952], [8.512298, 47.42795], [8.512272, 47.427947], [8.512247, 47.427943], [8.512223, 47.427936], [8.51221, 47.427932], [8.512197, 47.427928], [8.512183, 47.427926], [8.512169, 47.427924], [8.512155, 47.427923], [8.51214, 47.427923], [8.512126, 47.427923], [8.512112, 47.427925], [8.512098, 47.427927], [8.512084, 47.42793], [8.512071, 47.427934], [8.512058, 47.427939], [8.512044, 47.42795], [8.512032, 47.427962], [8.512021, 47.427974], [8.512011, 47.427987], [8.512004, 47.428001], [8.511998, 47.428015], [8.511994, 47.428029], [8.511992, 47.428044], [8.511992, 47.428059], [8.511994, 47.428073], [8.511997, 47.428087], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "4939", "properties": {}, "type": "Feature"}, {"bbox": [8.522889, 47.393232, 8.524424, 47.394237], "geometry": {"coordinates": [[[8.524424, 47.393232], [8.52342, 47.393477], [8.523354, 47.393492], [8.52329, 47.393511], [8.523229, 47.393534], [8.523171, 47.393561], [8.523117, 47.393592], [8.522947, 47.393714], [8.522934, 47.393724], [8.522923, 47.393734], [8.522914, 47.393745], [8.522906, 47.393757], [8.522899, 47.393769], [8.522894, 47.393782], [8.522891, 47.393795], [8.522889, 47.393808], [8.522889, 47.393821], [8.522891, 47.393833], [8.522894, 47.393846], [8.522899, 47.393859], [8.522905, 47.393871], [8.523043, 47.394102], [8.523151, 47.394237]]], "type": "MultiLineString"}, "id": "4940", "properties": {}, "type": "Feature"}, {"bbox": [8.52313, 47.362935, 8.528831, 47.368682], "geometry": {"coordinates": [[[8.528831, 47.368682], [8.528512, 47.368651], [8.528256, 47.368483], [8.528125, 47.368479], [8.528047, 47.368378], [8.526104, 47.367111], [8.524948, 47.366343], [8.52487, 47.366273], [8.524794, 47.366202], [8.52472, 47.366129], [8.524358, 47.365792], [8.524036, 47.365435], [8.523758, 47.365063], [8.523524, 47.364676], [8.523336, 47.364278], [8.523236, 47.364141], [8.523199, 47.363932], [8.52313, 47.363536], [8.523174, 47.363412], [8.523146, 47.362935]]], "type": "MultiLineString"}, "id": "4941", "properties": {}, "type": "Feature"}, {"bbox": [8.499862, 47.421367, 8.507494, 47.423467], "geometry": {"coordinates": [[[8.507494, 47.421367], [8.506025, 47.421764], [8.504658, 47.422133], [8.503347, 47.422487], [8.503144, 47.422541], [8.503122, 47.422547], [8.503101, 47.422555], [8.50308, 47.422564], [8.503061, 47.422574], [8.503044, 47.422586], [8.503028, 47.422598], [8.503015, 47.422609], [8.503, 47.42262], [8.502984, 47.422629], [8.502967, 47.422638], [8.502949, 47.422645], [8.50293, 47.422652], [8.502911, 47.422657], [8.502048, 47.422887], [8.50008, 47.423409], [8.499862, 47.423467]]], "type": "MultiLineString"}, "id": "4942", "properties": {}, "type": "Feature"}, {"bbox": [8.574171, 47.358327, 8.576178, 47.35877], "geometry": {"coordinates": [[[8.574171, 47.358327], [8.57423, 47.358457], [8.574238, 47.358472], [8.574248, 47.358487], [8.57426, 47.358501], [8.574273, 47.358515], [8.574288, 47.358528], [8.574304, 47.358539], [8.574322, 47.35855], [8.574338, 47.358559], [8.574355, 47.358568], [8.574372, 47.358577], [8.574372, 47.358577], [8.574372, 47.358577], [8.574418, 47.358601], [8.574462, 47.358626], [8.574505, 47.358652], [8.574507, 47.358654], [8.57451, 47.358656], [8.574512, 47.358658], [8.574514, 47.35866], [8.574983, 47.358638], [8.575178, 47.358706], [8.575202, 47.358713], [8.575442, 47.358766], [8.57549, 47.358669], [8.575637, 47.358674], [8.575938, 47.358729], [8.576078, 47.35877], [8.576178, 47.358764]]], "type": "MultiLineString"}, "id": "4943", "properties": {}, "type": "Feature"}, {"bbox": [8.529267, 47.362251, 8.531046, 47.36241], "geometry": {"coordinates": [[[8.531046, 47.36241], [8.530484, 47.362384], [8.53046, 47.362384], [8.530437, 47.362381], [8.530413, 47.362378], [8.530391, 47.362373], [8.530369, 47.362366], [8.530348, 47.362359], [8.530328, 47.36235], [8.53031, 47.36234], [8.530292, 47.362329], [8.530272, 47.362315], [8.53025, 47.362302], [8.530226, 47.36229], [8.530201, 47.36228], [8.530174, 47.362271], [8.530147, 47.362264], [8.530119, 47.362258], [8.530091, 47.362254], [8.530062, 47.362252], [8.530032, 47.362251], [8.529267, 47.362261]]], "type": "MultiLineString"}, "id": "4944", "properties": {}, "type": "Feature"}, {"bbox": [8.539535, 47.373037, 8.541692, 47.373425], "geometry": {"coordinates": [[[8.541692, 47.373037], [8.541653, 47.373079], [8.54161, 47.373119], [8.541561, 47.373156], [8.541508, 47.373191], [8.541451, 47.373222], [8.54139, 47.373249], [8.540925, 47.373412], [8.540759, 47.373425], [8.540725, 47.373382], [8.540604, 47.373383], [8.540484, 47.373377], [8.540365, 47.373364], [8.540248, 47.373343], [8.540058, 47.373286], [8.539875, 47.373219], [8.5397, 47.373143], [8.539535, 47.373058]]], "type": "MultiLineString"}, "id": "4945", "properties": {}, "type": "Feature"}, {"bbox": [8.542931, 47.371181, 8.543946, 47.371519], "geometry": {"coordinates": [[[8.542931, 47.371181], [8.543104, 47.371213], [8.543608, 47.371356], [8.543936, 47.371479], [8.543946, 47.371519]]], "type": "MultiLineString"}, "id": "4947", "properties": {}, "type": "Feature"}, {"bbox": [8.505073, 47.323611, 8.507222, 47.32515], "geometry": {"coordinates": [[[8.507222, 47.32473], [8.506007, 47.325103], [8.505968, 47.325118], [8.505927, 47.325129], [8.505885, 47.325138], [8.505842, 47.325145], [8.505798, 47.325149], [8.505754, 47.32515], [8.50571, 47.325149], [8.505666, 47.325145], [8.505623, 47.325138], [8.505581, 47.325129], [8.50554, 47.325117], [8.505501, 47.325103], [8.505465, 47.325087], [8.505413, 47.325067], [8.505365, 47.325044], [8.505319, 47.325018], [8.505276, 47.32499], [8.505237, 47.32496], [8.5052, 47.324929], [8.505168, 47.324895], [8.505139, 47.32486], [8.505116, 47.324823], [8.505098, 47.324785], [8.505084, 47.324746], [8.505076, 47.324706], [8.505073, 47.324666], [8.505076, 47.324626], [8.505084, 47.324586], [8.505319, 47.323696], [8.505364, 47.323611]]], "type": "MultiLineString"}, "id": "4948", "properties": {}, "type": "Feature"}, {"bbox": [8.523017, 47.416403, 8.525443, 47.417024], "geometry": {"coordinates": [[[8.525414, 47.416403], [8.525443, 47.416592], [8.525194, 47.416899], [8.524386, 47.416942], [8.52433, 47.416944], [8.524308, 47.416948], [8.524285, 47.416952], [8.524262, 47.416955], [8.524239, 47.416956], [8.524072, 47.416968], [8.523334, 47.417013], [8.523288, 47.417016], [8.523243, 47.417016], [8.523198, 47.417014], [8.523168, 47.417011], [8.523137, 47.41701], [8.523107, 47.41701], [8.523076, 47.417013], [8.523046, 47.417017], [8.523017, 47.417024]]], "type": "MultiLineString"}, "id": "4949", "properties": {}, "type": "Feature"}, {"bbox": [8.587078, 47.370183, 8.588254, 47.372419], "geometry": {"coordinates": [[[8.587078, 47.372419], [8.587159, 47.372207], [8.587286, 47.37193], [8.587381, 47.371743], [8.587494, 47.37156], [8.587622, 47.371383], [8.587817, 47.371135], [8.587941, 47.370958], [8.588041, 47.370775], [8.588118, 47.370587], [8.588254, 47.370183]]], "type": "MultiLineString"}, "id": "4950", "properties": {}, "type": "Feature"}, {"bbox": [8.478632, 47.37073, 8.484565, 47.372591], "geometry": {"coordinates": [[[8.478678, 47.372591], [8.478665, 47.372571], [8.478651, 47.372552], [8.478635, 47.372533], [8.478633, 47.372529], [8.478632, 47.372525], [8.478632, 47.37252], [8.478632, 47.372516], [8.478632, 47.372512], [8.478633, 47.372507], [8.478635, 47.372503], [8.478637, 47.372499], [8.47864, 47.372495], [8.478643, 47.372491], [8.478647, 47.372487], [8.478651, 47.372484], [8.478656, 47.372481], [8.478661, 47.372478], [8.478666, 47.372476], [8.478672, 47.372473], [8.478678, 47.372472], [8.478684, 47.37247], [8.47869, 47.372469], [8.478697, 47.372468], [8.479354, 47.372419], [8.479435, 47.372409], [8.479515, 47.372394], [8.479592, 47.372375], [8.479667, 47.372351], [8.479739, 47.372323], [8.479807, 47.372292], [8.479871, 47.372256], [8.479931, 47.372217], [8.479985, 47.372175], [8.480034, 47.37213], [8.480463, 47.371631], [8.480587, 47.371496], [8.48072, 47.371366], [8.480861, 47.37124], [8.480895, 47.37123], [8.48093, 47.371222], [8.480965, 47.371216], [8.481002, 47.371213], [8.481208, 47.371195], [8.481328, 47.371201], [8.481446, 47.371214], [8.481562, 47.371235], [8.481645, 47.371246], [8.481729, 47.371251], [8.481813, 47.371251], [8.482731, 47.37122], [8.482861, 47.371209], [8.482989, 47.37119], [8.483114, 47.371163], [8.483235, 47.371129], [8.483377, 47.371077], [8.483522, 47.371029], [8.483668, 47.370983], [8.484399, 47.37077], [8.484454, 47.370755], [8.484509, 47.370742], [8.484565, 47.37073]]], "type": "MultiLineString"}, "id": "4955", "properties": {}, "type": "Feature"}, {"bbox": [8.474847, 47.374155, 8.475476, 47.375657], "geometry": {"coordinates": [[[8.475476, 47.374155], [8.475476, 47.374185], [8.475473, 47.374215], [8.475468, 47.374245], [8.475407, 47.374449], [8.475372, 47.374524], [8.475329, 47.374596], [8.475279, 47.374666], [8.475175, 47.374772], [8.475073, 47.374879], [8.474973, 47.374987], [8.474929, 47.375047], [8.474887, 47.375107], [8.474848, 47.375169], [8.474847, 47.375183], [8.474848, 47.375196], [8.474851, 47.37521], [8.474855, 47.375223], [8.474862, 47.375236], [8.474869, 47.375249], [8.474879, 47.375261], [8.474969, 47.375375], [8.47506, 47.37549], [8.475151, 47.375604], [8.475169, 47.375657]]], "type": "MultiLineString"}, "id": "4956", "properties": {}, "type": "Feature"}, {"bbox": [8.514351, 47.332492, 8.515712, 47.33278], "geometry": {"coordinates": [[[8.514351, 47.332671], [8.514412, 47.332659], [8.514552, 47.332633], [8.514569, 47.33263], [8.51461, 47.332627], [8.514645, 47.332627], [8.514772, 47.332625], [8.514784, 47.332597], [8.514827, 47.332573], [8.514928, 47.332561], [8.515033, 47.332547], [8.515429, 47.332495], [8.515445, 47.332493], [8.515461, 47.332492], [8.515478, 47.332492], [8.515494, 47.332493], [8.51551, 47.332496], [8.515525, 47.332499], [8.51554, 47.332503], [8.515555, 47.332508], [8.515569, 47.332513], [8.515582, 47.33252], [8.515594, 47.332527], [8.515605, 47.332535], [8.515712, 47.33278]]], "type": "MultiLineString"}, "id": "4957", "properties": {}, "type": "Feature"}, {"bbox": [8.578603, 47.399409, 8.582137, 47.401468], "geometry": {"coordinates": [[[8.578603, 47.401468], [8.578852, 47.401201], [8.579061, 47.40108], [8.579363, 47.400903], [8.579641, 47.400759], [8.579957, 47.400643], [8.580328, 47.400478], [8.580824, 47.400193], [8.581361, 47.399852], [8.581915, 47.399547], [8.582137, 47.399409]]], "type": "MultiLineString"}, "id": "4958", "properties": {}, "type": "Feature"}, {"bbox": [8.545243, 47.365316, 8.545761, 47.366311], "geometry": {"coordinates": [[[8.545761, 47.365316], [8.545472, 47.365806], [8.545271, 47.366147], [8.545261, 47.366165], [8.545253, 47.366184], [8.545247, 47.366203], [8.545243, 47.366225], [8.545243, 47.366247], [8.545246, 47.366268], [8.545252, 47.36629], [8.545261, 47.366311]]], "type": "MultiLineString"}, "id": "4963", "properties": {}, "type": "Feature"}, {"bbox": [8.544462, 47.368154, 8.545951, 47.369628], "geometry": {"coordinates": [[[8.545951, 47.368154], [8.54592, 47.368195], [8.545754, 47.368452], [8.545602, 47.368628], [8.545414, 47.368811], [8.545304, 47.368891], [8.544933, 47.369139], [8.544705, 47.36933], [8.544673, 47.369365], [8.544462, 47.369628]]], "type": "MultiLineString"}, "id": "4972", "properties": {}, "type": "Feature"}, {"bbox": [8.523146, 47.361038, 8.525091, 47.362935], "geometry": {"coordinates": [[[8.523146, 47.362935], [8.523218, 47.362915], [8.523269, 47.362868], [8.523342, 47.362854], [8.523352, 47.36285], [8.523361, 47.362846], [8.52337, 47.362841], [8.523378, 47.362836], [8.523386, 47.36283], [8.523392, 47.362824], [8.523398, 47.362817], [8.523404, 47.36281], [8.523408, 47.362803], [8.523411, 47.362796], [8.523413, 47.362788], [8.523441, 47.36266], [8.523472, 47.362589], [8.523488, 47.362528], [8.523509, 47.362473], [8.523535, 47.362434], [8.52359, 47.362386], [8.523658, 47.362349], [8.523738, 47.362321], [8.523768, 47.362317], [8.523947, 47.362333], [8.523956, 47.362333], [8.523965, 47.362333], [8.523973, 47.362333], [8.523982, 47.362332], [8.523991, 47.36233], [8.523999, 47.362328], [8.524007, 47.362326], [8.524015, 47.362323], [8.524022, 47.36232], [8.524029, 47.362316], [8.524076, 47.362288], [8.524107, 47.362264], [8.524124, 47.362243], [8.524139, 47.362222], [8.524151, 47.3622], [8.524182, 47.362138], [8.52421, 47.362077], [8.524235, 47.362014], [8.524309, 47.361771], [8.524365, 47.361639], [8.524389, 47.361604], [8.524489, 47.361487], [8.524536, 47.361434], [8.524586, 47.361382], [8.524638, 47.361332], [8.524705, 47.361268], [8.524727, 47.361247], [8.52478, 47.361205], [8.524802, 47.361191], [8.524888, 47.361145], [8.524919, 47.361134], [8.524944, 47.36112], [8.524974, 47.361103], [8.525091, 47.361038]]], "type": "MultiLineString"}, "id": "4974", "properties": {}, "type": "Feature"}, {"bbox": [8.486363, 47.381555, 8.487665, 47.382034], "geometry": {"coordinates": [[[8.487665, 47.381555], [8.487608, 47.38156], [8.486976, 47.381788], [8.486363, 47.382034]]], "type": "MultiLineString"}, "id": "4976", "properties": {}, "type": "Feature"}, {"bbox": [8.512856, 47.33633, 8.514263, 47.340599], "geometry": {"coordinates": [[[8.514263, 47.33633], [8.514197, 47.336369], [8.514137, 47.336412], [8.514081, 47.336458], [8.514032, 47.336507], [8.513989, 47.336559], [8.513953, 47.336613], [8.513923, 47.336669], [8.513901, 47.336726], [8.513885, 47.336785], [8.513877, 47.336844], [8.513877, 47.336903], [8.513914, 47.337165], [8.513988, 47.3376], [8.51403, 47.337811], [8.514032, 47.337818], [8.514045, 47.337879], [8.51405, 47.337942], [8.514046, 47.338004], [8.514034, 47.338066], [8.514013, 47.338126], [8.513985, 47.338185], [8.513948, 47.338243], [8.513904, 47.338297], [8.513845, 47.338394], [8.513798, 47.338494], [8.513765, 47.338596], [8.513746, 47.3387], [8.513741, 47.338804], [8.513749, 47.338909], [8.513601, 47.339106], [8.51356, 47.339191], [8.513484, 47.339348], [8.513313, 47.339687], [8.513101, 47.340114], [8.512902, 47.340507], [8.512856, 47.340599]]], "type": "MultiLineString"}, "id": "4978", "properties": {}, "type": "Feature"}, {"bbox": [8.4849, 47.417173, 8.485107, 47.4193], "geometry": {"coordinates": [[[8.4849, 47.417173], [8.484916, 47.41749], [8.484915, 47.417932], [8.484934, 47.418202], [8.484953, 47.418335], [8.485016, 47.418773], [8.485107, 47.4193]]], "type": "MultiLineString"}, "id": "4982", "properties": {}, "type": "Feature"}, {"bbox": [8.549859, 47.414813, 8.553916, 47.419436], "geometry": {"coordinates": [[[8.549859, 47.414813], [8.55005, 47.414995], [8.550943, 47.415835], [8.551092, 47.415976], [8.551223, 47.416125], [8.551335, 47.416282], [8.551427, 47.416444], [8.551472, 47.416587], [8.551534, 47.416727], [8.551614, 47.416863], [8.551709, 47.416994], [8.551886, 47.417203], [8.552669, 47.418054], [8.553042, 47.418485], [8.553333, 47.418802], [8.553625, 47.419119], [8.553916, 47.419436]]], "type": "MultiLineString"}, "id": "4983", "properties": {}, "type": "Feature"}, {"bbox": [8.582944, 47.394918, 8.590498, 47.406379], "geometry": {"coordinates": [[[8.58888, 47.406379], [8.588937, 47.4062], [8.588964, 47.406114], [8.589255, 47.405511], [8.589506, 47.405014], [8.590162, 47.4037], [8.590498, 47.403035], [8.590491, 47.402985], [8.590484, 47.402935], [8.590424, 47.402851], [8.589626, 47.401583], [8.58929, 47.40103], [8.589117, 47.400788], [8.589028, 47.400617], [8.588953, 47.400507], [8.588806, 47.400397], [8.588737, 47.400291], [8.588695, 47.400244], [8.588627, 47.400184], [8.588482, 47.3999], [8.588475, 47.399845], [8.588529, 47.399811], [8.588507, 47.399707], [8.588493, 47.399628], [8.588418, 47.399511], [8.588161, 47.399269], [8.588013, 47.399142], [8.587849, 47.398935], [8.58785, 47.398823], [8.587891, 47.398707], [8.587888, 47.39861], [8.587914, 47.398433], [8.587856, 47.398301], [8.587746, 47.398198], [8.587666, 47.398099], [8.587572, 47.398058], [8.587418, 47.398042], [8.587252, 47.398016], [8.587051, 47.397973], [8.586844, 47.397914], [8.586727, 47.397846], [8.586564, 47.397848], [8.586357, 47.397819], [8.586187, 47.397798], [8.585942, 47.397705], [8.585885, 47.397684], [8.585764, 47.397628], [8.585421, 47.397456], [8.585362, 47.397424], [8.585294, 47.397387], [8.585173, 47.397334], [8.585068, 47.397293], [8.584848, 47.397181], [8.58469, 47.397086], [8.584553, 47.396982], [8.584495, 47.396935], [8.584408, 47.396863], [8.584147, 47.396654], [8.584013, 47.396538], [8.583962, 47.396489], [8.583912, 47.39644], [8.583864, 47.396389], [8.583598, 47.396115], [8.583552, 47.396064], [8.58349, 47.395987], [8.583438, 47.395928], [8.583378, 47.395872], [8.583311, 47.39582], [8.583098, 47.395668], [8.58307, 47.395647], [8.583044, 47.395623], [8.583022, 47.395598], [8.583003, 47.395572], [8.582987, 47.395545], [8.582975, 47.395517], [8.582967, 47.395489], [8.582962, 47.39546], [8.58296, 47.395431], [8.58296, 47.395431], [8.58295, 47.39516], [8.582944, 47.394918]]], "type": "MultiLineString"}, "id": "4986", "properties": {}, "type": "Feature"}, {"bbox": [8.538481, 47.377415, 8.539276, 47.377625], "geometry": {"coordinates": [[[8.538481, 47.377625], [8.539027, 47.377476], [8.539276, 47.377415]]], "type": "MultiLineString"}, "id": "4998", "properties": {}, "type": "Feature"}, {"bbox": [8.54005, 47.42582, 8.540834, 47.427231], "geometry": {"coordinates": [[[8.54005, 47.427231], [8.540087, 47.427147], [8.540226, 47.426968], [8.540256, 47.426962], [8.540286, 47.426954], [8.540314, 47.426944], [8.540341, 47.426932], [8.540366, 47.426918], [8.540417, 47.426854], [8.540458, 47.426787], [8.540491, 47.426718], [8.540517, 47.42664], [8.540533, 47.426561], [8.540538, 47.426481], [8.540543, 47.426426], [8.540548, 47.426372], [8.540553, 47.426318], [8.54057, 47.426267], [8.540586, 47.426217], [8.540603, 47.426166], [8.540628, 47.426118], [8.540655, 47.42607], [8.540684, 47.426023], [8.540732, 47.425955], [8.540782, 47.425887], [8.540834, 47.42582]]], "type": "MultiLineString"}, "id": "5005", "properties": {}, "type": "Feature"}, {"bbox": [8.609922, 47.35691, 8.617341, 47.358003], "geometry": {"coordinates": [[[8.609922, 47.35691], [8.609973, 47.356915], [8.610024, 47.356921], [8.610074, 47.356929], [8.61015, 47.356942], [8.610227, 47.356949], [8.610305, 47.356952], [8.610383, 47.35695], [8.61046, 47.356943], [8.610565, 47.356937], [8.610669, 47.356936], [8.610773, 47.356942], [8.610876, 47.356955], [8.610977, 47.356973], [8.611694, 47.357054], [8.61244, 47.357061], [8.613071, 47.357008], [8.613861, 47.35705], [8.615215, 47.357292], [8.615885, 47.357436], [8.616617, 47.357785], [8.616664, 47.357809], [8.616715, 47.35783], [8.616768, 47.357849], [8.616822, 47.357864], [8.616879, 47.357876], [8.617267, 47.357964], [8.617341, 47.358003]]], "type": "MultiLineString"}, "id": "5006", "properties": {}, "type": "Feature"}, {"bbox": [8.53678, 47.428013, 8.540578, 47.42884], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.536805, 47.428767], [8.536832, 47.428783], [8.53686, 47.428796], [8.536891, 47.428808], [8.536923, 47.428819], [8.536955, 47.428827], [8.536989, 47.428833], [8.537024, 47.428838], [8.537059, 47.42884], [8.537094, 47.42884], [8.538672, 47.428729], [8.538971, 47.428565], [8.539532, 47.42824], [8.53976, 47.428099], [8.539934, 47.428013], [8.540033, 47.428026], [8.540578, 47.428479]]], "type": "MultiLineString"}, "id": "5007", "properties": {}, "type": "Feature"}, {"bbox": [8.513466, 47.358367, 8.515424, 47.359344], "geometry": {"coordinates": [[[8.515424, 47.358367], [8.515378, 47.35843], [8.51536, 47.358454], [8.515189, 47.358717], [8.515178, 47.358736], [8.515164, 47.358755], [8.515148, 47.358773], [8.515129, 47.358789], [8.515108, 47.358805], [8.514703, 47.359047], [8.51469, 47.359058], [8.514123, 47.358946], [8.514106, 47.358993], [8.514101, 47.359006], [8.514093, 47.359019], [8.514084, 47.359032], [8.514074, 47.359044], [8.514062, 47.359055], [8.514048, 47.359066], [8.514033, 47.359076], [8.514018, 47.359084], [8.514, 47.359092], [8.513982, 47.359099], [8.513964, 47.359105], [8.513944, 47.359109], [8.513924, 47.359113], [8.513904, 47.359115], [8.513883, 47.359116], [8.513765, 47.359119], [8.513742, 47.359121], [8.51372, 47.359124], [8.513698, 47.359129], [8.513677, 47.359135], [8.513656, 47.359142], [8.513637, 47.35915], [8.513618, 47.35916], [8.513601, 47.35917], [8.513586, 47.359181], [8.513571, 47.359194], [8.513559, 47.359207], [8.513548, 47.359221], [8.513539, 47.359235], [8.513532, 47.35925], [8.513466, 47.359344]]], "type": "MultiLineString"}, "id": "5008", "properties": {}, "type": "Feature"}, {"bbox": [8.500483, 47.382708, 8.500719, 47.382734], "geometry": {"coordinates": [[[8.500719, 47.382734], [8.500715, 47.382732], [8.500693, 47.382725], [8.500671, 47.382719], [8.500648, 47.382714], [8.500625, 47.382711], [8.500601, 47.382709], [8.500577, 47.382708], [8.500553, 47.382709], [8.500529, 47.382711], [8.500506, 47.382715], [8.500483, 47.38272]]], "type": "MultiLineString"}, "id": "5014", "properties": {}, "type": "Feature"}, {"bbox": [8.558801, 47.409951, 8.5612, 47.410083], "geometry": {"coordinates": [[[8.558801, 47.409997], [8.559106, 47.409977], [8.559412, 47.409962], [8.559719, 47.409951], [8.559899, 47.409951], [8.560079, 47.409954], [8.56026, 47.409958], [8.560577, 47.409986], [8.560891, 47.410028], [8.5612, 47.410083]]], "type": "MultiLineString"}, "id": "5017", "properties": {}, "type": "Feature"}, {"bbox": [8.572889, 47.372592, 8.574065, 47.372719], "geometry": {"coordinates": [[[8.574065, 47.372719], [8.573959, 47.372671], [8.573845, 47.372631], [8.573727, 47.372598], [8.573642, 47.372592], [8.573556, 47.372592], [8.573471, 47.372598], [8.573387, 47.372608], [8.57322, 47.372635], [8.573054, 47.372664], [8.572889, 47.372696]]], "type": "MultiLineString"}, "id": "5018", "properties": {}, "type": "Feature"}, {"bbox": [8.505364, 47.322025, 8.507881, 47.323611], "geometry": {"coordinates": [[[8.505364, 47.323611], [8.50542, 47.323524], [8.50551, 47.323377], [8.505518, 47.323346], [8.505522, 47.323339], [8.505528, 47.323333], [8.505535, 47.323327], [8.505542, 47.323321], [8.50555, 47.323316], [8.505558, 47.323311], [8.505567, 47.323307], [8.505577, 47.323304], [8.505587, 47.3233], [8.505597, 47.323298], [8.505608, 47.323296], [8.505619, 47.323295], [8.50563, 47.323294], [8.505641, 47.323294], [8.505652, 47.323295], [8.505663, 47.323296], [8.505673, 47.323298], [8.505885, 47.323326], [8.505894, 47.323327], [8.505903, 47.323326], [8.505912, 47.323325], [8.505921, 47.323324], [8.50593, 47.323322], [8.505938, 47.32332], [8.505946, 47.323317], [8.505954, 47.323313], [8.505961, 47.323309], [8.505968, 47.323305], [8.505974, 47.3233], [8.50598, 47.323296], [8.505984, 47.32329], [8.505989, 47.323285], [8.505992, 47.323279], [8.505995, 47.323273], [8.506031, 47.323188], [8.50604, 47.323175], [8.506051, 47.323162], [8.506064, 47.32315], [8.506077, 47.323139], [8.506092, 47.323128], [8.506741, 47.322714], [8.507121, 47.322475], [8.507403, 47.322297], [8.507747, 47.322086], [8.507881, 47.322025]]], "type": "MultiLineString"}, "id": "5019", "properties": {}, "type": "Feature"}, {"bbox": [8.465374, 47.366404, 8.479649, 47.372591], "geometry": {"coordinates": [[[8.478678, 47.372591], [8.478586, 47.372496], [8.478523, 47.372427], [8.478467, 47.372354], [8.478418, 47.37228], [8.478406, 47.372255], [8.478397, 47.372229], [8.478392, 47.372204], [8.478389, 47.372177], [8.47839, 47.372151], [8.478394, 47.372125], [8.478401, 47.372099], [8.478411, 47.372074], [8.478425, 47.37205], [8.478441, 47.372026], [8.478633, 47.371852], [8.478816, 47.371673], [8.47899, 47.37149], [8.479194, 47.371057], [8.479172, 47.370716], [8.479242, 47.370556], [8.479284, 47.370505], [8.479332, 47.370457], [8.479387, 47.370412], [8.479447, 47.370371], [8.479512, 47.370333], [8.479582, 47.370299], [8.479649, 47.37019], [8.479532, 47.370009], [8.479492, 47.369848], [8.479402, 47.369661], [8.479292, 47.36955], [8.479237, 47.369495], [8.479142, 47.369424], [8.479136, 47.369385], [8.47912, 47.36937], [8.479106, 47.369354], [8.479094, 47.369338], [8.479084, 47.36932], [8.479077, 47.369303], [8.479072, 47.369284], [8.479069, 47.369266], [8.478864, 47.369331], [8.478629, 47.369417], [8.478551, 47.369443], [8.478469, 47.369463], [8.478385, 47.369479], [8.477262, 47.369651], [8.477232, 47.369654], [8.477202, 47.369656], [8.477171, 47.369656], [8.477141, 47.369655], [8.477111, 47.369652], [8.477081, 47.369647], [8.477052, 47.36964], [8.477024, 47.369631], [8.476997, 47.369621], [8.476694, 47.369497], [8.476644, 47.369478], [8.476593, 47.369463], [8.476539, 47.36945], [8.476484, 47.369441], [8.476429, 47.369435], [8.476372, 47.369433], [8.476316, 47.369433], [8.47626, 47.369437], [8.476204, 47.369445], [8.47615, 47.369455], [8.476097, 47.369469], [8.476067, 47.369479], [8.476038, 47.369491], [8.476011, 47.369504], [8.475985, 47.369519], [8.475962, 47.369535], [8.475941, 47.369553], [8.475922, 47.369572], [8.475732, 47.369781], [8.47571, 47.369803], [8.475685, 47.369824], [8.475657, 47.369843], [8.475627, 47.369861], [8.475595, 47.369876], [8.475561, 47.36989], [8.475525, 47.369901], [8.475488, 47.36991], [8.47523, 47.369964], [8.474544, 47.370091], [8.474435, 47.37011], [8.474324, 47.370125], [8.474213, 47.370138], [8.473893, 47.370168], [8.473677, 47.370183], [8.473459, 47.370187], [8.473242, 47.370179], [8.472464, 47.370132], [8.472378, 47.370127], [8.472292, 47.370122], [8.472206, 47.370117], [8.471544, 47.370083], [8.471441, 47.370076], [8.471339, 47.370067], [8.471237, 47.370057], [8.471129, 47.370044], [8.471006, 47.370028], [8.470884, 47.370009], [8.470763, 47.369987], [8.470532, 47.369942], [8.470194, 47.369872], [8.470079, 47.369859], [8.47001, 47.369852], [8.469991, 47.369849], [8.469972, 47.369845], [8.469953, 47.36984], [8.469935, 47.369834], [8.469576, 47.369701], [8.4695, 47.369673], [8.469426, 47.369643], [8.469354, 47.369612], [8.468919, 47.369421], [8.46859, 47.369282], [8.468551, 47.369265], [8.468512, 47.369248], [8.468473, 47.36923], [8.468212, 47.36911], [8.467816, 47.368944], [8.467662, 47.36888], [8.467506, 47.368817], [8.46735, 47.368756], [8.467072, 47.36865], [8.466669, 47.368485], [8.46642, 47.368378], [8.466262, 47.368302], [8.466116, 47.368217], [8.465983, 47.368122], [8.465912, 47.368065], [8.465898, 47.368054], [8.465884, 47.368043], [8.465871, 47.368032], [8.465857, 47.368019], [8.465844, 47.368007], [8.46583, 47.367995], [8.465713, 47.367878], [8.465612, 47.367754], [8.465528, 47.367624], [8.46547, 47.367508], [8.465426, 47.36739], [8.465396, 47.36727], [8.465389, 47.367227], [8.465378, 47.367144], [8.465374, 47.36706], [8.465379, 47.366977], [8.465386, 47.366914], [8.465403, 47.366823], [8.465432, 47.366733], [8.465471, 47.366645], [8.465505, 47.366563], [8.465565, 47.366445], [8.465568, 47.36644], [8.465571, 47.366434], [8.465573, 47.366428], [8.465574, 47.366422], [8.465575, 47.366416], [8.465575, 47.36641], [8.465574, 47.366404]]], "type": "MultiLineString"}, "id": "5020", "properties": {}, "type": "Feature"}, {"bbox": [8.521616, 47.326989, 8.522785, 47.332071], "geometry": {"coordinates": [[[8.522785, 47.332071], [8.522711, 47.331719], [8.522707, 47.331449], [8.522708, 47.331193], [8.522699, 47.330965], [8.522673, 47.330735], [8.522664, 47.330648], [8.522654, 47.33056], [8.522635, 47.330385], [8.522602, 47.330121], [8.522609, 47.32986], [8.522573, 47.329602], [8.522538, 47.329339], [8.522503, 47.329079], [8.522448, 47.328809], [8.522414, 47.328724], [8.522382, 47.328642], [8.522348, 47.328557], [8.522307, 47.328422], [8.522266, 47.328291], [8.5222, 47.328007], [8.522127, 47.327728], [8.521991, 47.32744], [8.521886, 47.327296], [8.521786, 47.327159], [8.521705, 47.327049], [8.521616, 47.326989]]], "type": "MultiLineString"}, "id": "5022", "properties": {}, "type": "Feature"}, {"bbox": [8.504034, 47.43194, 8.510321, 47.433911], "geometry": {"coordinates": [[[8.504034, 47.433911], [8.504178, 47.433812], [8.504646, 47.433669], [8.505179, 47.433521], [8.506434, 47.433147], [8.510038, 47.432057], [8.510103, 47.432036], [8.510166, 47.432012], [8.510226, 47.431985], [8.510321, 47.43194]]], "type": "MultiLineString"}, "id": "5023", "properties": {}, "type": "Feature"}, {"bbox": [8.572901, 47.352413, 8.576318, 47.353017], "geometry": {"coordinates": [[[8.572901, 47.353017], [8.573002, 47.35288], [8.573005, 47.352877], [8.573008, 47.352874], [8.573011, 47.352871], [8.573015, 47.352868], [8.573019, 47.352866], [8.573024, 47.352864], [8.573028, 47.352862], [8.573033, 47.35286], [8.573039, 47.352859], [8.573044, 47.352858], [8.573049, 47.352857], [8.573055, 47.352857], [8.57306, 47.352857], [8.573066, 47.352857], [8.573071, 47.352857], [8.573117, 47.352865], [8.573638, 47.352954], [8.573737, 47.352965], [8.574073, 47.352992], [8.574091, 47.352993], [8.574109, 47.352993], [8.574127, 47.352992], [8.574145, 47.35299], [8.574163, 47.352987], [8.57418, 47.352983], [8.574196, 47.352977], [8.574212, 47.352971], [8.574227, 47.352964], [8.574241, 47.352955], [8.574334, 47.352893], [8.574417, 47.35281], [8.574485, 47.352731], [8.574555, 47.352676], [8.574647, 47.3526], [8.574747, 47.352484], [8.574855, 47.352418], [8.575, 47.352413], [8.575283, 47.352471], [8.575425, 47.352521], [8.575745, 47.35257], [8.576008, 47.35259], [8.576318, 47.352644]]], "type": "MultiLineString"}, "id": "5024", "properties": {}, "type": "Feature"}, {"bbox": [8.541474, 47.405894, 8.542079, 47.406704], "geometry": {"coordinates": [[[8.542079, 47.405894], [8.542025, 47.405977], [8.541807, 47.406298], [8.541664, 47.406467], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "5027", "properties": {}, "type": "Feature"}, {"bbox": [8.586839, 47.397659, 8.588245, 47.397856], "geometry": {"coordinates": [[[8.588245, 47.397659], [8.588072, 47.397763], [8.587465, 47.397856], [8.587201, 47.397797], [8.587011, 47.397788], [8.586921, 47.397783], [8.586893, 47.397794], [8.586839, 47.397758]]], "type": "MultiLineString"}, "id": "5028", "properties": {}, "type": "Feature"}, {"bbox": [8.516795, 47.36191, 8.517341, 47.363146], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517341, 47.363107], [8.517333, 47.363075], [8.517322, 47.363044], [8.517307, 47.363013], [8.517176, 47.362798], [8.517148, 47.362744], [8.517127, 47.362688], [8.517113, 47.362631], [8.517009, 47.362218], [8.51699, 47.362151], [8.516965, 47.362084], [8.516934, 47.362019], [8.516923, 47.362002], [8.51691, 47.361986], [8.516895, 47.36197], [8.516878, 47.361956], [8.516859, 47.361943], [8.516839, 47.36193], [8.516818, 47.361919], [8.516795, 47.36191]]], "type": "MultiLineString"}, "id": "5029", "properties": {}, "type": "Feature"}, {"bbox": [8.582507, 47.401995, 8.583285, 47.402173], "geometry": {"coordinates": [[[8.582507, 47.402173], [8.58268, 47.402133], [8.582803, 47.402103], [8.582852, 47.402092], [8.583036, 47.402075], [8.583165, 47.402032], [8.583285, 47.401995]]], "type": "MultiLineString"}, "id": "5030", "properties": {}, "type": "Feature"}, {"bbox": [8.49837, 47.427128, 8.505623, 47.428526], "geometry": {"coordinates": [[[8.505623, 47.428526], [8.505418, 47.428452], [8.505217, 47.428405], [8.505019, 47.428355], [8.504822, 47.428301], [8.504139, 47.428107], [8.504013, 47.428073], [8.503768, 47.428015], [8.503672, 47.427995], [8.503575, 47.427979], [8.503477, 47.427969], [8.503298, 47.427955], [8.503048, 47.427929], [8.502803, 47.427888], [8.502564, 47.427833], [8.502423, 47.427796], [8.502286, 47.427762], [8.502147, 47.42773], [8.502007, 47.427701], [8.501813, 47.427663], [8.501561, 47.42761], [8.501165, 47.427532], [8.500926, 47.427489], [8.500853, 47.427478], [8.500779, 47.427469], [8.500704, 47.427464], [8.500549, 47.427454], [8.500486, 47.42745], [8.500424, 47.427443], [8.500363, 47.427435], [8.49964, 47.427321], [8.499269, 47.427259], [8.498955, 47.427207], [8.498574, 47.427151], [8.49837, 47.427128]]], "type": "MultiLineString"}, "id": "5032", "properties": {}, "type": "Feature"}, {"bbox": [8.525158, 47.393814, 8.52646, 47.39416], "geometry": {"coordinates": [[[8.52646, 47.393814], [8.525986, 47.393945], [8.525906, 47.393966], [8.525824, 47.393987], [8.525743, 47.394006], [8.525405, 47.39409], [8.525158, 47.39416]]], "type": "MultiLineString"}, "id": "5034", "properties": {}, "type": "Feature"}, {"bbox": [8.521647, 47.325965, 8.524713, 47.329211], "geometry": {"coordinates": [[[8.524713, 47.329211], [8.524572, 47.329204], [8.524358, 47.329203], [8.524228, 47.329179], [8.524128, 47.329131], [8.52387, 47.328943], [8.523797, 47.32888], [8.523723, 47.328817], [8.523608, 47.328689], [8.523553, 47.32861], [8.523497, 47.328529], [8.523441, 47.328449], [8.523402, 47.328392], [8.523293, 47.328186], [8.523177, 47.327915], [8.522997, 47.327636], [8.52282, 47.327361], [8.522735, 47.327221], [8.52273, 47.327212], [8.522652, 47.327074], [8.522509, 47.326798], [8.522412, 47.326651], [8.522316, 47.326506], [8.522097, 47.326344], [8.521884, 47.326177], [8.521647, 47.325965]]], "type": "MultiLineString"}, "id": "5037", "properties": {}, "type": "Feature"}, {"bbox": [8.538481, 47.376864, 8.541137, 47.377625], "geometry": {"coordinates": [[[8.540511, 47.377135], [8.540973, 47.377043], [8.541084, 47.377147], [8.541137, 47.377139], [8.541084, 47.376967], [8.540292, 47.377088], [8.540187, 47.376942], [8.539949, 47.376989], [8.539849, 47.376864], [8.539883, 47.376994], [8.538786, 47.37727], [8.538899, 47.37746], [8.538481, 47.377625]]], "type": "MultiLineString"}, "id": "5038", "properties": {}, "type": "Feature"}, {"bbox": [8.517015, 47.398324, 8.51935, 47.399366], "geometry": {"coordinates": [[[8.51935, 47.399366], [8.519148, 47.399334], [8.518648, 47.39924], [8.517976, 47.399076], [8.517664, 47.399015], [8.517151, 47.398845], [8.517045, 47.398836], [8.517015, 47.398824], [8.5171, 47.398683], [8.517077, 47.398655], [8.517163, 47.398521], [8.517156, 47.398497], [8.517196, 47.398433], [8.517097, 47.398402], [8.517091, 47.398399], [8.517086, 47.398396], [8.517081, 47.398393], [8.517076, 47.398389], [8.517073, 47.398386], [8.517069, 47.398382], [8.517066, 47.398377], [8.517064, 47.398373], [8.517062, 47.398369], [8.517061, 47.398364], [8.51706, 47.398359], [8.51706, 47.398355], [8.517061, 47.39835], [8.517062, 47.398345], [8.517064, 47.398341], [8.517066, 47.398337], [8.517069, 47.398332], [8.517072, 47.398328], [8.517076, 47.398324]]], "type": "MultiLineString"}, "id": "5042", "properties": {}, "type": "Feature"}, {"bbox": [8.481386, 47.415751, 8.4831, 47.416792], "geometry": {"coordinates": [[[8.4831, 47.416792], [8.482055, 47.416736], [8.48205, 47.416736], [8.482045, 47.416735], [8.48204, 47.416734], [8.482036, 47.416733], [8.482031, 47.416732], [8.482027, 47.416731], [8.482022, 47.416729], [8.482018, 47.416727], [8.482015, 47.416724], [8.482011, 47.416722], [8.482008, 47.416719], [8.482006, 47.416716], [8.482003, 47.416713], [8.482001, 47.41671], [8.482, 47.416707], [8.481998, 47.416704], [8.481998, 47.4167], [8.481997, 47.416697], [8.481997, 47.416694], [8.481997, 47.416397], [8.481999, 47.416384], [8.482003, 47.416371], [8.482009, 47.416359], [8.482016, 47.416346], [8.482024, 47.416335], [8.482236, 47.416082], [8.482241, 47.416077], [8.482245, 47.416072], [8.482248, 47.416066], [8.48225, 47.416061], [8.482252, 47.416055], [8.482253, 47.41605], [8.482253, 47.416044], [8.482253, 47.416038], [8.482252, 47.416032], [8.48225, 47.416027], [8.482248, 47.416021], [8.482056, 47.415947], [8.481863, 47.415874], [8.48167, 47.415801], [8.481578, 47.415779], [8.481483, 47.415762], [8.481386, 47.415751]]], "type": "MultiLineString"}, "id": "5043", "properties": {}, "type": "Feature"}, {"bbox": [8.488413, 47.376258, 8.489319, 47.377661], "geometry": {"coordinates": [[[8.488413, 47.377661], [8.488434, 47.377641], [8.488453, 47.377619], [8.48847, 47.377596], [8.488495, 47.377552], [8.488518, 47.377507], [8.488537, 47.377461], [8.488564, 47.377388], [8.488593, 47.377316], [8.488621, 47.377243], [8.488623, 47.377238], [8.488626, 47.377233], [8.488629, 47.377228], [8.488633, 47.377223], [8.488637, 47.377219], [8.488642, 47.377214], [8.488647, 47.377211], [8.488653, 47.377207], [8.488659, 47.377204], [8.48873, 47.37718], [8.488803, 47.377158], [8.488877, 47.377139], [8.488886, 47.377136], [8.488895, 47.377132], [8.488903, 47.377129], [8.488911, 47.377124], [8.488918, 47.377119], [8.488925, 47.377114], [8.488931, 47.377109], [8.488936, 47.377103], [8.48894, 47.377097], [8.488977, 47.377022], [8.489015, 47.376948], [8.489053, 47.376874], [8.489072, 47.376848], [8.489108, 47.37681], [8.489116, 47.376799], [8.489124, 47.376789], [8.489131, 47.376777], [8.489149, 47.376748], [8.489165, 47.376719], [8.48918, 47.376689], [8.489185, 47.376678], [8.489189, 47.376667], [8.489191, 47.376655], [8.489192, 47.376644], [8.489191, 47.376632], [8.489188, 47.376621], [8.489171, 47.376581], [8.489151, 47.376542], [8.489131, 47.376503], [8.489128, 47.376494], [8.489126, 47.376486], [8.489125, 47.376477], [8.489125, 47.376468], [8.489133, 47.376442], [8.489138, 47.37643], [8.489145, 47.376419], [8.489154, 47.376408], [8.48919, 47.376376], [8.489225, 47.376343], [8.48926, 47.37631], [8.489319, 47.376258]]], "type": "MultiLineString"}, "id": "5046", "properties": {}, "type": "Feature"}, {"bbox": [8.481483, 47.372567, 8.483968, 47.373294], "geometry": {"coordinates": [[[8.483968, 47.372752], [8.483793, 47.372748], [8.483777, 47.372749], [8.483761, 47.372749], [8.483745, 47.372748], [8.483729, 47.372746], [8.483713, 47.372743], [8.483423, 47.372715], [8.483134, 47.372686], [8.482844, 47.372658], [8.482612, 47.372638], [8.482381, 47.372619], [8.482149, 47.372601], [8.482081, 47.372591], [8.482014, 47.37258], [8.481947, 47.372569], [8.481941, 47.372568], [8.481936, 47.372567], [8.48193, 47.372567], [8.481924, 47.372567], [8.481919, 47.372567], [8.481913, 47.372567], [8.481908, 47.372568], [8.481902, 47.37257], [8.481897, 47.372571], [8.481892, 47.372573], [8.481888, 47.372575], [8.481883, 47.372577], [8.481879, 47.37258], [8.481844, 47.372604], [8.481831, 47.372612], [8.481819, 47.372621], [8.481808, 47.372631], [8.481798, 47.372641], [8.481789, 47.372651], [8.481782, 47.372663], [8.481717, 47.372769], [8.481658, 47.372878], [8.481604, 47.372987], [8.481576, 47.37305], [8.481544, 47.373111], [8.48151, 47.373172], [8.481501, 47.373186], [8.481494, 47.373201], [8.481488, 47.373216], [8.481485, 47.373231], [8.481483, 47.373247], [8.481483, 47.373262], [8.481503, 47.373294]]], "type": "MultiLineString"}, "id": "5047", "properties": {}, "type": "Feature"}, {"bbox": [8.539783, 47.407844, 8.540417, 47.408029], "geometry": {"coordinates": [[[8.539783, 47.408029], [8.540235, 47.407876], [8.540279, 47.407864], [8.540324, 47.407855], [8.54037, 47.407848], [8.540417, 47.407844]]], "type": "MultiLineString"}, "id": "5048", "properties": {}, "type": "Feature"}, {"bbox": [8.477202, 47.381272, 8.478525, 47.381598], "geometry": {"coordinates": [[[8.478525, 47.381598], [8.477605, 47.381545], [8.477588, 47.381543], [8.477572, 47.381541], [8.477556, 47.381537], [8.477541, 47.381533], [8.477526, 47.381527], [8.477512, 47.381521], [8.477499, 47.381514], [8.477487, 47.381506], [8.477476, 47.381497], [8.477447, 47.381474], [8.477418, 47.38145], [8.477389, 47.381425], [8.477353, 47.381387], [8.477317, 47.381348], [8.477281, 47.381309], [8.477275, 47.381303], [8.477268, 47.381298], [8.47726, 47.381292], [8.477251, 47.381288], [8.477242, 47.381283], [8.477233, 47.38128], [8.477223, 47.381277], [8.477212, 47.381274], [8.477202, 47.381272]]], "type": "MultiLineString"}, "id": "5049", "properties": {}, "type": "Feature"}, {"bbox": [8.600838, 47.361189, 8.60161, 47.361656], "geometry": {"coordinates": [[[8.600917, 47.361189], [8.600838, 47.361511], [8.600839, 47.361517], [8.60084, 47.361523], [8.600842, 47.361529], [8.600845, 47.361535], [8.600849, 47.361541], [8.600853, 47.361546], [8.600858, 47.361551], [8.600864, 47.361556], [8.60087, 47.361561], [8.600877, 47.361565], [8.600885, 47.361569], [8.600892, 47.361572], [8.600901, 47.361575], [8.600909, 47.361577], [8.600918, 47.361579], [8.600927, 47.36158], [8.60161, 47.361656]]], "type": "MultiLineString"}, "id": "5050", "properties": {}, "type": "Feature"}, {"bbox": [8.591132, 47.373974, 8.591209, 47.374256], "geometry": {"coordinates": [[[8.591209, 47.373974], [8.591206, 47.373981], [8.591204, 47.373988], [8.591203, 47.373996], [8.591203, 47.374003], [8.591204, 47.374011], [8.591206, 47.374018], [8.591206, 47.374025], [8.591205, 47.374032], [8.591204, 47.374039], [8.591201, 47.374045], [8.591198, 47.374052], [8.591193, 47.374058], [8.591135, 47.374157], [8.591134, 47.374161], [8.591133, 47.374164], [8.591132, 47.374168], [8.591132, 47.374171], [8.591132, 47.374175], [8.591133, 47.374178], [8.591134, 47.374182], [8.591136, 47.374185], [8.591138, 47.374188], [8.591145, 47.374196], [8.591152, 47.374204], [8.591158, 47.374212], [8.591162, 47.37422], [8.591165, 47.374229], [8.591168, 47.374238], [8.591169, 47.374247], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "5051", "properties": {}, "type": "Feature"}, {"bbox": [8.533787, 47.398183, 8.535014, 47.399359], "geometry": {"coordinates": [[[8.535014, 47.398183], [8.53494, 47.39828], [8.534854, 47.398285], [8.534668, 47.398352], [8.534582, 47.398432], [8.534475, 47.39858], [8.534244, 47.39883], [8.534001, 47.398934], [8.533881, 47.399005], [8.533821, 47.399064], [8.533787, 47.399157], [8.533888, 47.399283], [8.533939, 47.399359]]], "type": "MultiLineString"}, "id": "5054", "properties": {}, "type": "Feature"}, {"bbox": [8.550262, 47.399313, 8.553269, 47.401401], "geometry": {"coordinates": [[[8.550262, 47.40055], [8.55047, 47.400684], [8.550689, 47.400809], [8.550918, 47.400925], [8.55123, 47.40108], [8.551539, 47.401238], [8.551847, 47.401397], [8.551856, 47.401399], [8.551866, 47.4014], [8.551876, 47.401401], [8.551886, 47.401401], [8.551896, 47.401401], [8.551906, 47.4014], [8.551916, 47.401398], [8.551926, 47.401396], [8.551935, 47.401394], [8.551944, 47.40139], [8.551953, 47.401387], [8.551961, 47.401382], [8.551968, 47.401378], [8.551975, 47.401373], [8.551981, 47.401367], [8.552349, 47.401036], [8.552714, 47.400703], [8.553076, 47.400368], [8.553141, 47.400325], [8.553201, 47.400279], [8.553257, 47.40023], [8.553262, 47.400221], [8.553266, 47.400211], [8.553268, 47.4002], [8.553269, 47.40019], [8.553269, 47.40018], [8.553268, 47.40017], [8.553265, 47.40016], [8.553261, 47.40015], [8.553256, 47.40014], [8.553249, 47.400131], [8.553241, 47.400122], [8.553233, 47.400114], [8.553223, 47.400106], [8.553212, 47.400099], [8.5532, 47.400092], [8.553188, 47.400086], [8.55305, 47.400041], [8.552919, 47.399986], [8.552797, 47.399923], [8.552593, 47.399807], [8.552383, 47.399696], [8.552169, 47.399589], [8.552115, 47.399569], [8.552061, 47.39955], [8.552006, 47.399533], [8.551605, 47.399331], [8.551597, 47.399327], [8.551587, 47.399323], [8.551578, 47.39932], [8.551568, 47.399318], [8.551557, 47.399316], [8.551547, 47.399314], [8.551536, 47.399314], [8.551526, 47.399313], [8.551515, 47.399314], [8.551185, 47.399353]]], "type": "MultiLineString"}, "id": "5055", "properties": {}, "type": "Feature"}, {"bbox": [8.525739, 47.407109, 8.526659, 47.407429], "geometry": {"coordinates": [[[8.526659, 47.407267], [8.526608, 47.407259], [8.526557, 47.407248], [8.526508, 47.407235], [8.526351, 47.407194], [8.526194, 47.407153], [8.526036, 47.407113], [8.526029, 47.407112], [8.526022, 47.40711], [8.526014, 47.40711], [8.526006, 47.407109], [8.525999, 47.407109], [8.525991, 47.40711], [8.525984, 47.407111], [8.525977, 47.407112], [8.52597, 47.407114], [8.525963, 47.407116], [8.525956, 47.407119], [8.52595, 47.407122], [8.525944, 47.407125], [8.525939, 47.407129], [8.525934, 47.407133], [8.52593, 47.407137], [8.525926, 47.407141], [8.525923, 47.407146], [8.525864, 47.407241], [8.525803, 47.407336], [8.525739, 47.407429]]], "type": "MultiLineString"}, "id": "5056", "properties": {}, "type": "Feature"}, {"bbox": [8.551292, 47.39134, 8.551726, 47.392985], "geometry": {"coordinates": [[[8.551292, 47.392985], [8.551303, 47.392957], [8.55131, 47.392928], [8.551313, 47.392899], [8.551313, 47.39287], [8.551303, 47.392435], [8.551328, 47.392365], [8.551363, 47.392297], [8.551407, 47.392231], [8.55146, 47.392168], [8.551509, 47.392104], [8.551548, 47.392037], [8.551578, 47.391967], [8.551598, 47.391896], [8.551608, 47.391824], [8.551656, 47.391574], [8.551673, 47.391484], [8.551701, 47.391396], [8.551726, 47.39134]]], "type": "MultiLineString"}, "id": "5058", "properties": {}, "type": "Feature"}, {"bbox": [8.551726, 47.389677, 8.55253, 47.39134], "geometry": {"coordinates": [[[8.551726, 47.39134], [8.551739, 47.39131], [8.551789, 47.391226], [8.551849, 47.391145], [8.551919, 47.391069], [8.551998, 47.390996], [8.55244, 47.390681], [8.552455, 47.390671], [8.55247, 47.390661], [8.552483, 47.39065], [8.552495, 47.390638], [8.552505, 47.390626], [8.552514, 47.390613], [8.552521, 47.3906], [8.552526, 47.390586], [8.552529, 47.390572], [8.55253, 47.390557], [8.55253, 47.390543], [8.552528, 47.390529], [8.552524, 47.390515], [8.552453, 47.390344], [8.55243, 47.390277], [8.552415, 47.390209], [8.552407, 47.390141], [8.552409, 47.390072], [8.552418, 47.390004], [8.552435, 47.389937], [8.55245, 47.389834], [8.552459, 47.389731], [8.552459, 47.389677]]], "type": "MultiLineString"}, "id": "5060", "properties": {}, "type": "Feature"}, {"bbox": [8.497839, 47.384029, 8.498144, 47.384338], "geometry": {"coordinates": [[[8.498144, 47.384338], [8.497839, 47.384029]]], "type": "MultiLineString"}, "id": "5062", "properties": {}, "type": "Feature"}, {"bbox": [8.54859, 47.364351, 8.550094, 47.364841], "geometry": {"coordinates": [[[8.54859, 47.364439], [8.548745, 47.364466], [8.54945, 47.364754], [8.549669, 47.364841], [8.550094, 47.364351]]], "type": "MultiLineString"}, "id": "5064", "properties": {}, "type": "Feature"}, {"bbox": [8.517589, 47.366595, 8.518543, 47.366904], "geometry": {"coordinates": [[[8.518543, 47.366904], [8.518098, 47.366767], [8.518017, 47.366741], [8.517884, 47.366695], [8.517729, 47.366643], [8.517589, 47.366595]]], "type": "MultiLineString"}, "id": "5065", "properties": {}, "type": "Feature"}, {"bbox": [8.512005, 47.343508, 8.516798, 47.34797], "geometry": {"coordinates": [[[8.512005, 47.34797], [8.51201, 47.347939], [8.51202, 47.347909], [8.512033, 47.347879], [8.512051, 47.34785], [8.512072, 47.347823], [8.512096, 47.347796], [8.512124, 47.347772], [8.512154, 47.347749], [8.512348, 47.347616], [8.5128, 47.347327], [8.513088, 47.347125], [8.513405, 47.346884], [8.513734, 47.346672], [8.513895, 47.346564], [8.513934, 47.346538], [8.513986, 47.34649], [8.514079, 47.346418], [8.514126, 47.346379], [8.514169, 47.346338], [8.514208, 47.346296], [8.514285, 47.346201], [8.514354, 47.346102], [8.514413, 47.346002], [8.514492, 47.345853], [8.514545, 47.345748], [8.514572, 47.345681], [8.514585, 47.345633], [8.514863, 47.345088], [8.514865, 47.345063], [8.514859, 47.345021], [8.514816, 47.344955], [8.514622, 47.34479], [8.514572, 47.344739], [8.514534, 47.344688], [8.5145, 47.344637], [8.514462, 47.34457], [8.514435, 47.344495], [8.514416, 47.34442], [8.514405, 47.344363], [8.514408, 47.344299], [8.514421, 47.344215], [8.514461, 47.344127], [8.514536, 47.344013], [8.514599, 47.343947], [8.514666, 47.3439], [8.514733, 47.34386], [8.514798, 47.343834], [8.51487, 47.343821], [8.514974, 47.343815], [8.515278, 47.343809], [8.515359, 47.343802], [8.515432, 47.343791], [8.515503, 47.343773], [8.515591, 47.34376], [8.515688, 47.343756], [8.515784, 47.343761], [8.51609, 47.343698], [8.516487, 47.34367], [8.516736, 47.343576], [8.516798, 47.343508]]], "type": "MultiLineString"}, "id": "5074", "properties": {}, "type": "Feature"}, {"bbox": [8.54279, 47.372466, 8.543773, 47.372656], "geometry": {"coordinates": [[[8.54279, 47.372474], [8.542901, 47.372466], [8.542881, 47.37251], [8.543082, 47.372506], [8.543078, 47.372525], [8.543165, 47.372542], [8.543467, 47.37257], [8.543536, 47.372626], [8.543773, 47.372656]]], "type": "MultiLineString"}, "id": "5075", "properties": {}, "type": "Feature"}, {"bbox": [8.582711, 47.377725, 8.584019, 47.380851], "geometry": {"coordinates": [[[8.582711, 47.380851], [8.582791, 47.380751], [8.582895, 47.380566], [8.582923, 47.380522], [8.582957, 47.38048], [8.582997, 47.380441], [8.583043, 47.380404], [8.583171, 47.380311], [8.583234, 47.380259], [8.583289, 47.380205], [8.583336, 47.380146], [8.583375, 47.380086], [8.583526, 47.379815], [8.583562, 47.379742], [8.583588, 47.379667], [8.583604, 47.379591], [8.58361, 47.379514], [8.583614, 47.379247], [8.583586, 47.378964], [8.583583, 47.378884], [8.583591, 47.378804], [8.58361, 47.378725], [8.583639, 47.378648], [8.583678, 47.378572], [8.583728, 47.3785], [8.583927, 47.378239], [8.583959, 47.378191], [8.583984, 47.378142], [8.584003, 47.378092], [8.584014, 47.37804], [8.584019, 47.377988], [8.584017, 47.377936], [8.584007, 47.377885], [8.583966, 47.377725]]], "type": "MultiLineString"}, "id": "5076", "properties": {}, "type": "Feature"}, {"bbox": [8.534216, 47.380438, 8.534438, 47.380571], "geometry": {"coordinates": [[[8.534216, 47.380438], [8.534236, 47.380474], [8.53439, 47.380571], [8.534438, 47.380561]]], "type": "MultiLineString"}, "id": "5078", "properties": {}, "type": "Feature"}, {"bbox": [8.534133, 47.380278, 8.534219, 47.380438], "geometry": {"coordinates": [[[8.534219, 47.380278], [8.534133, 47.380296], [8.534216, 47.380438]]], "type": "MultiLineString"}, "id": "5080", "properties": {}, "type": "Feature"}, {"bbox": [8.55174, 47.394652, 8.552016, 47.394938], "geometry": {"coordinates": [[[8.55174, 47.394938], [8.551835, 47.394891], [8.551892, 47.394838], [8.551906, 47.394811], [8.551894, 47.394708], [8.551996, 47.394652], [8.552016, 47.39467]]], "type": "MultiLineString"}, "id": "5081", "properties": {}, "type": "Feature"}, {"bbox": [8.491185, 47.392401, 8.491226, 47.392468], "geometry": {"coordinates": [[[8.491226, 47.392468], [8.491185, 47.392401]]], "type": "MultiLineString"}, "id": "5083", "properties": {}, "type": "Feature"}, {"bbox": [8.530472, 47.338646, 8.530488, 47.338724], "geometry": {"coordinates": [[[8.530488, 47.338724], [8.530472, 47.338646]]], "type": "MultiLineString"}, "id": "5084", "properties": {}, "type": "Feature"}, {"bbox": [8.517384, 47.347835, 8.521, 47.349769], "geometry": {"coordinates": [[[8.521, 47.349769], [8.52079, 47.349629], [8.520732, 47.34959], [8.520688, 47.34955], [8.520646, 47.349509], [8.520601, 47.349454], [8.520557, 47.34939], [8.520522, 47.349323], [8.520465, 47.349126], [8.520441, 47.349062], [8.520406, 47.349003], [8.520372, 47.348953], [8.520319, 47.348895], [8.520239, 47.348828], [8.520135, 47.348756], [8.520032, 47.348698], [8.519923, 47.348653], [8.519819, 47.348617], [8.519516, 47.348534], [8.519436, 47.348507], [8.519341, 47.348467], [8.519276, 47.348432], [8.519216, 47.348388], [8.519165, 47.348345], [8.519113, 47.34829], [8.519012, 47.348141], [8.518983, 47.348101], [8.518948, 47.348064], [8.518904, 47.348032], [8.51886, 47.348006], [8.51879, 47.347985], [8.518302, 47.347876], [8.518168, 47.347852], [8.518066, 47.347839], [8.517969, 47.347835], [8.517885, 47.34784], [8.517792, 47.347861], [8.517713, 47.347895], [8.517611, 47.347971], [8.517555, 47.348024], [8.517525, 47.348151], [8.517505, 47.348224], [8.517443, 47.348415], [8.517392, 47.348588], [8.517384, 47.348715], [8.517398, 47.348981]]], "type": "MultiLineString"}, "id": "5085", "properties": {}, "type": "Feature"}, {"bbox": [8.58085, 47.379817, 8.581287, 47.381118], "geometry": {"coordinates": [[[8.58085, 47.381118], [8.580919, 47.381074], [8.58093, 47.381034], [8.580936, 47.38101], [8.58094, 47.380986], [8.580943, 47.380963], [8.580949, 47.380923], [8.580957, 47.380884], [8.580968, 47.380845], [8.581072, 47.380529], [8.581256, 47.380027], [8.581264, 47.380004], [8.581269, 47.379981], [8.581273, 47.379957], [8.581287, 47.379817]]], "type": "MultiLineString"}, "id": "5087", "properties": {}, "type": "Feature"}, {"bbox": [8.540602, 47.369743, 8.540786, 47.369883], "geometry": {"coordinates": [[[8.540602, 47.369743], [8.540786, 47.369883]]], "type": "MultiLineString"}, "id": "5088", "properties": {}, "type": "Feature"}, {"bbox": [8.489804, 47.3506, 8.490333, 47.350769], "geometry": {"coordinates": [[[8.489804, 47.350769], [8.489815, 47.35076], [8.489827, 47.350751], [8.48984, 47.350743], [8.489854, 47.350736], [8.489868, 47.35073], [8.489884, 47.350725], [8.4899, 47.35072], [8.489916, 47.350717], [8.490055, 47.350677], [8.490194, 47.350638], [8.490333, 47.3506]]], "type": "MultiLineString"}, "id": "5089", "properties": {}, "type": "Feature"}, {"bbox": [8.51211, 47.418291, 8.51318, 47.419895], "geometry": {"coordinates": [[[8.51211, 47.418395], [8.512123, 47.418411], [8.512435, 47.418291], [8.512444, 47.418301], [8.512672, 47.418536], [8.51283, 47.418464], [8.512992, 47.418618], [8.512679, 47.418927], [8.51267, 47.418951], [8.51274, 47.419091], [8.512659, 47.419126], [8.512873, 47.419372], [8.513057, 47.419593], [8.513019, 47.419608], [8.513057, 47.419662], [8.51316, 47.41986], [8.51318, 47.419895]]], "type": "MultiLineString"}, "id": "5091", "properties": {}, "type": "Feature"}, {"bbox": [8.553128, 47.400985, 8.554969, 47.402067], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553507, 47.402058], [8.553453, 47.402052], [8.553355, 47.402042], [8.55329, 47.402013], [8.553197, 47.40195], [8.55315, 47.401901], [8.553128, 47.401852], [8.553131, 47.401801], [8.553162, 47.401752], [8.553197, 47.401718], [8.55323, 47.401703], [8.5533, 47.401693], [8.553403, 47.401691], [8.553523, 47.401669], [8.553573, 47.401638], [8.55361, 47.401584], [8.553711, 47.401447], [8.553701, 47.401412], [8.553717, 47.40135], [8.554002, 47.401271], [8.55416, 47.401265], [8.554187, 47.401229], [8.554208, 47.401208], [8.554241, 47.401189], [8.5544, 47.401111], [8.554473, 47.401103], [8.554529, 47.401112], [8.554591, 47.401107], [8.55468, 47.401088], [8.554727, 47.401066], [8.55483, 47.401044], [8.554969, 47.400985]]], "type": "MultiLineString"}, "id": "5092", "properties": {}, "type": "Feature"}, {"bbox": [8.48295, 47.374692, 8.483351, 47.375083], "geometry": {"coordinates": [[[8.483351, 47.374692], [8.483244, 47.374781], [8.483125, 47.374862], [8.482995, 47.374935], [8.482988, 47.374939], [8.482982, 47.374942], [8.482976, 47.374946], [8.48297, 47.374951], [8.482966, 47.374955], [8.482961, 47.37496], [8.482958, 47.374965], [8.482955, 47.374971], [8.482953, 47.374976], [8.482951, 47.374982], [8.48295, 47.374987], [8.48295, 47.374993], [8.482951, 47.374999], [8.482952, 47.375004], [8.482955, 47.37501], [8.482958, 47.375015], [8.482961, 47.37502], [8.482965, 47.375025], [8.48297, 47.37503], [8.482975, 47.375034], [8.483002, 47.375048], [8.48303, 47.375059], [8.483059, 47.375069], [8.48309, 47.375077], [8.483122, 47.375083]]], "type": "MultiLineString"}, "id": "5093", "properties": {}, "type": "Feature"}, {"bbox": [8.497095, 47.403574, 8.497982, 47.403771], "geometry": {"coordinates": [[[8.497095, 47.403609], [8.497225, 47.403576], [8.497236, 47.403575], [8.497246, 47.403574], [8.497257, 47.403574], [8.497267, 47.403574], [8.497277, 47.403575], [8.497288, 47.403577], [8.497297, 47.403579], [8.497307, 47.403582], [8.497316, 47.403586], [8.497325, 47.40359], [8.497333, 47.403594], [8.497341, 47.403599], [8.497348, 47.403604], [8.497354, 47.40361], [8.49736, 47.403616], [8.497367, 47.403625], [8.497376, 47.403633], [8.497386, 47.403641], [8.497397, 47.403649], [8.497409, 47.403655], [8.497422, 47.403661], [8.497436, 47.403666], [8.49745, 47.40367], [8.497464, 47.403674], [8.497479, 47.403676], [8.497494, 47.403678], [8.49751, 47.403678], [8.497525, 47.403678], [8.49754, 47.403677], [8.497556, 47.403675], [8.49757, 47.403671], [8.497585, 47.403667], [8.497598, 47.403663], [8.497745, 47.403618], [8.497757, 47.403615], [8.497768, 47.403612], [8.49778, 47.403611], [8.497792, 47.40361], [8.497805, 47.403609], [8.497817, 47.40361], [8.497829, 47.403611], [8.497841, 47.403613], [8.497852, 47.403616], [8.497863, 47.403619], [8.497874, 47.403623], [8.497884, 47.403628], [8.497893, 47.403633], [8.497902, 47.403639], [8.49791, 47.403645], [8.497917, 47.403652], [8.497924, 47.403659], [8.497929, 47.403666], [8.497933, 47.403674], [8.497936, 47.403682], [8.497982, 47.403771]]], "type": "MultiLineString"}, "id": "5095", "properties": {}, "type": "Feature"}, {"bbox": [8.502284, 47.365799, 8.503768, 47.367957], "geometry": {"coordinates": [[[8.503709, 47.365799], [8.503768, 47.365889], [8.50376, 47.365895], [8.503732, 47.365918], [8.503703, 47.365943], [8.503554, 47.36599], [8.503158, 47.365944], [8.503143, 47.365941], [8.503128, 47.36594], [8.503112, 47.365939], [8.503097, 47.36594], [8.503082, 47.365942], [8.503067, 47.365944], [8.503052, 47.365947], [8.503042, 47.365954], [8.503032, 47.365961], [8.503024, 47.365969], [8.503016, 47.365978], [8.50301, 47.365987], [8.503005, 47.365996], [8.503001, 47.366005], [8.50289, 47.366287], [8.502889, 47.366483], [8.502787, 47.366595], [8.502715, 47.366902], [8.50268, 47.367021], [8.502615, 47.367245], [8.502413, 47.367562], [8.502284, 47.367907], [8.502353, 47.367957]]], "type": "MultiLineString"}, "id": "5096", "properties": {}, "type": "Feature"}, {"bbox": [8.474625, 47.382082, 8.476063, 47.383159], "geometry": {"coordinates": [[[8.474625, 47.383159], [8.47465, 47.383151], [8.474674, 47.383141], [8.474697, 47.38313], [8.474743, 47.383101], [8.474786, 47.383069], [8.474825, 47.383036], [8.474847, 47.383015], [8.474866, 47.382993], [8.474882, 47.38297], [8.474901, 47.382949], [8.474921, 47.38293], [8.474945, 47.382912], [8.475888, 47.382245], [8.475945, 47.38219], [8.476004, 47.382136], [8.476063, 47.382082]]], "type": "MultiLineString"}, "id": "5097", "properties": {}, "type": "Feature"}, {"bbox": [8.526569, 47.35036, 8.527766, 47.351051], "geometry": {"coordinates": [[[8.527766, 47.350397], [8.527679, 47.350382], [8.52755, 47.35036], [8.527475, 47.350365], [8.527461, 47.350367], [8.527448, 47.350369], [8.527436, 47.350373], [8.527423, 47.350377], [8.527418, 47.350379], [8.527413, 47.350381], [8.527408, 47.350384], [8.527404, 47.350387], [8.5274, 47.35039], [8.527397, 47.350393], [8.527394, 47.350397], [8.527391, 47.350401], [8.527389, 47.350405], [8.527292, 47.350581], [8.527234, 47.350638], [8.527215, 47.350655], [8.527194, 47.350672], [8.527172, 47.350688], [8.526869, 47.350871], [8.526779, 47.350895], [8.526672, 47.351029], [8.526569, 47.351051]]], "type": "MultiLineString"}, "id": "5098", "properties": {}, "type": "Feature"}, {"bbox": [8.52429, 47.42391, 8.525194, 47.425633], "geometry": {"coordinates": [[[8.5243, 47.42391], [8.52429, 47.424021], [8.524292, 47.424132], [8.524307, 47.424243], [8.524338, 47.424341], [8.524375, 47.424437], [8.524419, 47.424533], [8.524542, 47.424705], [8.524668, 47.424877], [8.524797, 47.425048], [8.524931, 47.425222], [8.525058, 47.425398], [8.525177, 47.425577], [8.525183, 47.425596], [8.525189, 47.425615], [8.525194, 47.425633]]], "type": "MultiLineString"}, "id": "5099", "properties": {}, "type": "Feature"}, {"bbox": [8.551987, 47.390612, 8.573616, 47.397106], "geometry": {"coordinates": [[[8.551987, 47.393174], [8.552032, 47.393185], [8.552049, 47.393188], [8.552946, 47.393315], [8.553041, 47.393332], [8.553073, 47.393343], [8.553106, 47.393363], [8.553136, 47.393384], [8.553164, 47.393407], [8.553188, 47.393431], [8.553209, 47.393457], [8.553226, 47.393484], [8.55324, 47.393512], [8.553249, 47.393541], [8.553292, 47.393703], [8.553309, 47.393733], [8.553329, 47.393762], [8.553353, 47.393789], [8.55338, 47.393815], [8.55341, 47.393839], [8.553442, 47.393862], [8.553566, 47.393919], [8.554484, 47.394251], [8.554491, 47.394254], [8.554707, 47.394354], [8.555362, 47.394682], [8.555412, 47.394704], [8.555464, 47.394723], [8.555518, 47.394739], [8.555574, 47.394751], [8.555632, 47.39476], [8.555691, 47.394765], [8.556156, 47.394792], [8.556223, 47.394793], [8.556291, 47.394791], [8.556359, 47.394785], [8.556425, 47.394775], [8.556749, 47.394714], [8.556803, 47.394706], [8.556858, 47.394701], [8.556913, 47.394699], [8.556968, 47.394701], [8.557022, 47.394706], [8.557122, 47.394718], [8.557153, 47.394723], [8.557183, 47.39473], [8.557212, 47.394738], [8.55724, 47.394748], [8.557267, 47.394759], [8.557292, 47.394772], [8.557315, 47.394787], [8.557336, 47.394802], [8.557356, 47.394819], [8.557373, 47.394837], [8.557388, 47.394856], [8.5574, 47.394876], [8.55741, 47.394896], [8.557418, 47.394917], [8.557422, 47.394938], [8.557424, 47.394959], [8.557424, 47.394981], [8.557421, 47.395002], [8.557415, 47.395023], [8.557406, 47.395044], [8.557395, 47.395064], [8.557254, 47.395288], [8.557238, 47.395316], [8.557226, 47.395344], [8.557218, 47.395373], [8.557213, 47.395402], [8.557212, 47.395432], [8.557214, 47.395461], [8.55722, 47.395491], [8.55723, 47.395519], [8.557243, 47.395548], [8.55726, 47.395575], [8.557279, 47.395601], [8.557303, 47.395626], [8.557571, 47.395893], [8.558298, 47.396589], [8.558704, 47.396971], [8.558731, 47.396994], [8.55876, 47.397015], [8.558793, 47.397035], [8.558828, 47.397052], [8.558865, 47.397067], [8.558904, 47.39708], [8.558945, 47.39709], [8.558986, 47.397098], [8.559029, 47.397103], [8.559072, 47.397106], [8.559115, 47.397106], [8.559158, 47.397103], [8.559201, 47.397098], [8.559723, 47.397016], [8.560536, 47.396863], [8.560665, 47.396834], [8.560788, 47.396798], [8.560907, 47.396754], [8.561019, 47.396703], [8.561319, 47.396551], [8.562035, 47.39621], [8.563243, 47.39563], [8.565155, 47.394711], [8.565364, 47.394602], [8.565559, 47.394481], [8.565738, 47.39435], [8.566455, 47.393781], [8.568364, 47.392266], [8.568923, 47.391821], [8.568933, 47.391812], [8.568945, 47.391804], [8.568956, 47.391796], [8.568996, 47.391771], [8.569039, 47.391748], [8.569085, 47.391729], [8.569153, 47.391707], [8.57071, 47.391284], [8.571767, 47.390996], [8.572245, 47.390867], [8.573158, 47.390629], [8.57319, 47.390622], [8.573223, 47.390616], [8.573256, 47.390613], [8.57329, 47.390612], [8.573324, 47.390612], [8.573357, 47.390615], [8.57339, 47.39062], [8.573422, 47.390626], [8.57349, 47.390642], [8.573525, 47.390657], [8.573558, 47.390675], [8.573589, 47.390694], [8.573616, 47.390716]]], "type": "MultiLineString"}, "id": "5100", "properties": {}, "type": "Feature"}, {"bbox": [8.504839, 47.408468, 8.505743, 47.409466], "geometry": {"coordinates": [[[8.505374, 47.408468], [8.505703, 47.408917], [8.505715, 47.408934], [8.505725, 47.408951], [8.505733, 47.40897], [8.505739, 47.408989], [8.505742, 47.409008], [8.505743, 47.409027], [8.505741, 47.409046], [8.505737, 47.409065], [8.505731, 47.409083], [8.505722, 47.409101], [8.505711, 47.409119], [8.505697, 47.409136], [8.505682, 47.409152], [8.505665, 47.409167], [8.505645, 47.409181], [8.505624, 47.409194], [8.505602, 47.409205], [8.505578, 47.409215], [8.505553, 47.409224], [8.505087, 47.409383], [8.504839, 47.409466]]], "type": "MultiLineString"}, "id": "5102", "properties": {}, "type": "Feature"}, {"bbox": [8.602271, 47.365042, 8.608067, 47.367554], "geometry": {"coordinates": [[[8.602271, 47.365042], [8.602378, 47.365143], [8.602525, 47.365218], [8.602586, 47.365255], [8.602726, 47.365301], [8.603012, 47.365365], [8.603287, 47.365482], [8.603568, 47.365641], [8.603985, 47.365897], [8.604296, 47.366055], [8.604805, 47.366526], [8.605297, 47.36694], [8.605376, 47.366992], [8.605462, 47.36704], [8.605553, 47.367082], [8.605649, 47.36712], [8.60575, 47.367152], [8.605854, 47.367177], [8.607642, 47.367454], [8.608067, 47.367554]]], "type": "MultiLineString"}, "id": "5103", "properties": {}, "type": "Feature"}, {"bbox": [8.448293, 47.37935, 8.459546, 47.379988], "geometry": {"coordinates": [[[8.459546, 47.379913], [8.459471, 47.379872], [8.459441, 47.379857], [8.459398, 47.379836], [8.459352, 47.379818], [8.459304, 47.379803], [8.459254, 47.37979], [8.459203, 47.379781], [8.459151, 47.379774], [8.459098, 47.379771], [8.459045, 47.379771], [8.458658, 47.379781], [8.458503, 47.379783], [8.458348, 47.379781], [8.458194, 47.379776], [8.457891, 47.379761], [8.457722, 47.379749], [8.457554, 47.379728], [8.457389, 47.379699], [8.456969, 47.379613], [8.456638, 47.37955], [8.456305, 47.379493], [8.45597, 47.379443], [8.45575, 47.379416], [8.455529, 47.379393], [8.455306, 47.379376], [8.45506, 47.379363], [8.454814, 47.379354], [8.454568, 47.37935], [8.454448, 47.379352], [8.454329, 47.379359], [8.45421, 47.379371], [8.453921, 47.379397], [8.453629, 47.379408], [8.453337, 47.379401], [8.452838, 47.379376], [8.452718, 47.379371], [8.452598, 47.379368], [8.452477, 47.379367], [8.451826, 47.379365], [8.451691, 47.379369], [8.451558, 47.379382], [8.451428, 47.379404], [8.451301, 47.379435], [8.450478, 47.379662], [8.449484, 47.379921], [8.4494, 47.379941], [8.449315, 47.379956], [8.449228, 47.379966], [8.449135, 47.379972], [8.448746, 47.379987], [8.44868, 47.379988], [8.448614, 47.379984], [8.448549, 47.379977], [8.448485, 47.379965], [8.448423, 47.37995], [8.448363, 47.379931], [8.448293, 47.379903]]], "type": "MultiLineString"}, "id": "5104", "properties": {}, "type": "Feature"}, {"bbox": [8.506152, 47.371975, 8.509233, 47.372673], "geometry": {"coordinates": [[[8.509233, 47.372109], [8.509214, 47.372114], [8.509168, 47.372124], [8.508892, 47.37231], [8.508827, 47.372341], [8.50866, 47.372237], [8.508456, 47.372091], [8.508275, 47.371975], [8.508155, 47.372014], [8.506837, 47.372673], [8.506601, 47.372483], [8.506577, 47.372457], [8.506287, 47.372226], [8.506166, 47.372137], [8.506164, 47.372136], [8.506163, 47.372135], [8.506161, 47.372133], [8.50616, 47.372132], [8.506159, 47.37213], [8.506158, 47.372129], [8.506158, 47.372127], [8.506157, 47.372126], [8.506157, 47.372124], [8.506157, 47.372123], [8.506157, 47.372121], [8.506157, 47.37212], [8.506158, 47.372118], [8.506159, 47.372117], [8.50616, 47.372115], [8.506161, 47.372114], [8.506162, 47.372113], [8.506163, 47.372111], [8.506165, 47.37211], [8.506167, 47.372109], [8.506169, 47.372108], [8.506246, 47.372067], [8.506152, 47.371986]]], "type": "MultiLineString"}, "id": "5107", "properties": {}, "type": "Feature"}, {"bbox": [8.503347, 47.371637, 8.5052, 47.372581], "geometry": {"coordinates": [[[8.5052, 47.371637], [8.505102, 47.371699], [8.504998, 47.371754], [8.504918, 47.371802], [8.504838, 47.371846], [8.504744, 47.371909], [8.504384, 47.3721], [8.504037, 47.372283], [8.503495, 47.372557], [8.503446, 47.372565], [8.503347, 47.372581]]], "type": "MultiLineString"}, "id": "5108", "properties": {}, "type": "Feature"}, {"bbox": [8.504237, 47.412071, 8.506182, 47.412667], "geometry": {"coordinates": [[[8.506182, 47.412667], [8.504932, 47.412412], [8.504799, 47.412374], [8.504672, 47.412327], [8.504551, 47.412274], [8.504438, 47.412213], [8.504333, 47.412145], [8.504237, 47.412071]]], "type": "MultiLineString"}, "id": "5109", "properties": {}, "type": "Feature"}, {"bbox": [8.512004, 47.411765, 8.513053, 47.412709], "geometry": {"coordinates": [[[8.513053, 47.411765], [8.513049, 47.41178], [8.513044, 47.411794], [8.513036, 47.411808], [8.513027, 47.411822], [8.513016, 47.411835], [8.513003, 47.411847], [8.512989, 47.411858], [8.512974, 47.411869], [8.512957, 47.411879], [8.512939, 47.411887], [8.51292, 47.411895], [8.512901, 47.411901], [8.51288, 47.411907], [8.512859, 47.411911], [8.512838, 47.411914], [8.512816, 47.411915], [8.51207, 47.411923], [8.512058, 47.412077], [8.512055, 47.412231], [8.51206, 47.412385], [8.512052, 47.412472], [8.512045, 47.41256], [8.512038, 47.412647], [8.512034, 47.41266], [8.512029, 47.412673], [8.512022, 47.412686], [8.512013, 47.412698], [8.512004, 47.412709]]], "type": "MultiLineString"}, "id": "5110", "properties": {}, "type": "Feature"}, {"bbox": [8.506714, 47.401686, 8.507527, 47.402535], "geometry": {"coordinates": [[[8.506714, 47.402535], [8.506743, 47.402496], [8.506767, 47.402456], [8.506786, 47.402414], [8.506799, 47.402371], [8.506813, 47.402336], [8.50683, 47.402301], [8.506852, 47.402268], [8.506911, 47.402188], [8.506958, 47.402133], [8.507012, 47.402083], [8.507073, 47.402035], [8.50714, 47.401992], [8.507212, 47.401954], [8.507245, 47.401934], [8.507275, 47.401912], [8.507301, 47.401889], [8.507527, 47.401686]]], "type": "MultiLineString"}, "id": "5111", "properties": {}, "type": "Feature"}, {"bbox": [8.517451, 47.339424, 8.517764, 47.340293], "geometry": {"coordinates": [[[8.517545, 47.339424], [8.517527, 47.339436], [8.51751, 47.33945], [8.517495, 47.339464], [8.517482, 47.339479], [8.517472, 47.339495], [8.517463, 47.339512], [8.517451, 47.339563], [8.517464, 47.33983], [8.517467, 47.33985], [8.517472, 47.33987], [8.51748, 47.33989], [8.517764, 47.340293]]], "type": "MultiLineString"}, "id": "5112", "properties": {}, "type": "Feature"}, {"bbox": [8.492862, 47.369976, 8.493689, 47.371037], "geometry": {"coordinates": [[[8.493689, 47.371037], [8.4935, 47.370863], [8.493316, 47.370687], [8.493138, 47.370508], [8.493134, 47.370498], [8.493131, 47.370487], [8.493129, 47.370476], [8.493129, 47.370465], [8.49313, 47.370454], [8.493133, 47.370443], [8.493136, 47.370432], [8.493141, 47.370422], [8.493148, 47.370412], [8.493155, 47.370402], [8.493161, 47.370393], [8.493165, 47.370383], [8.493168, 47.370373], [8.49317, 47.370362], [8.493171, 47.370352], [8.49317, 47.370341], [8.493168, 47.370331], [8.493165, 47.370321], [8.49316, 47.370311], [8.493143, 47.370282], [8.493124, 47.370253], [8.493102, 47.370226], [8.492862, 47.369976]]], "type": "MultiLineString"}, "id": "5113", "properties": {}, "type": "Feature"}, {"bbox": [8.501336, 47.371387, 8.502287, 47.371487], "geometry": {"coordinates": [[[8.502287, 47.371387], [8.502199, 47.371405], [8.502149, 47.371415], [8.502109, 47.371422], [8.502069, 47.371427], [8.502029, 47.37143], [8.501855, 47.37144], [8.501336, 47.371487]]], "type": "MultiLineString"}, "id": "5114", "properties": {}, "type": "Feature"}, {"bbox": [8.587307, 47.371753, 8.589901, 47.372734], "geometry": {"coordinates": [[[8.587307, 47.372734], [8.587351, 47.372695], [8.587394, 47.372656], [8.587435, 47.372616], [8.587514, 47.372543], [8.587582, 47.372464], [8.58764, 47.372382], [8.587734, 47.372232], [8.587824, 47.37208], [8.58791, 47.371927], [8.587925, 47.371904], [8.587943, 47.371883], [8.587963, 47.371862], [8.587986, 47.371843], [8.588012, 47.371825], [8.588039, 47.371809], [8.588069, 47.371794], [8.588101, 47.371782], [8.588134, 47.371772], [8.588168, 47.371763], [8.588204, 47.371757], [8.58824, 47.371753], [8.588793, 47.371801], [8.589347, 47.371848], [8.589901, 47.371893]]], "type": "MultiLineString"}, "id": "5115", "properties": {}, "type": "Feature"}, {"bbox": [8.514492, 47.385389, 8.517307, 47.386157], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.517109, 47.385465], [8.516082, 47.385728], [8.514828, 47.386065], [8.514492, 47.386157]]], "type": "MultiLineString"}, "id": "5119", "properties": {}, "type": "Feature"}, {"bbox": [8.514445, 47.386142, 8.515399, 47.387342], "geometry": {"coordinates": [[[8.515266, 47.386229], [8.515201, 47.38615], [8.515011, 47.386142], [8.51482, 47.386147], [8.514631, 47.386164], [8.514445, 47.386193], [8.515399, 47.387342]]], "type": "MultiLineString"}, "id": "5120", "properties": {}, "type": "Feature"}, {"bbox": [8.545629, 47.365279, 8.545761, 47.365316], "geometry": {"coordinates": [[[8.545629, 47.365279], [8.545761, 47.365316]]], "type": "MultiLineString"}, "id": "5121", "properties": {}, "type": "Feature"}, {"bbox": [8.54936, 47.386308, 8.550208, 47.390067], "geometry": {"coordinates": [[[8.550208, 47.386308], [8.550208, 47.386338], [8.55019, 47.386417], [8.550176, 47.386465], [8.550156, 47.386513], [8.55013, 47.386559], [8.550099, 47.386603], [8.550063, 47.386646], [8.550021, 47.386686], [8.549975, 47.386724], [8.549924, 47.386759], [8.549894, 47.386784], [8.549868, 47.38681], [8.549846, 47.386838], [8.549827, 47.386866], [8.549812, 47.386896], [8.5498, 47.386927], [8.549793, 47.386958], [8.54979, 47.38699], [8.549791, 47.387022], [8.549796, 47.387053], [8.549806, 47.387084], [8.549819, 47.387114], [8.549836, 47.387144], [8.549857, 47.387172], [8.549881, 47.387199], [8.549909, 47.387225], [8.54994, 47.387248], [8.549988, 47.387287], [8.550032, 47.387329], [8.550069, 47.387373], [8.550101, 47.387419], [8.550127, 47.387466], [8.550147, 47.387515], [8.550161, 47.387565], [8.550168, 47.387616], [8.550169, 47.387667], [8.550163, 47.387717], [8.550151, 47.387768], [8.550133, 47.387817], [8.55005, 47.388095], [8.549945, 47.388369], [8.549817, 47.388639], [8.54975, 47.388743], [8.549698, 47.388851], [8.54966, 47.388962], [8.549638, 47.389074], [8.54963, 47.389187], [8.549622, 47.38936], [8.549593, 47.389532], [8.549542, 47.389701], [8.549471, 47.389867], [8.54936, 47.390067]]], "type": "MultiLineString"}, "id": "5128", "properties": {}, "type": "Feature"}, {"bbox": [8.5612, 47.410083, 8.563371, 47.410267], "geometry": {"coordinates": [[[8.5612, 47.410083], [8.562062, 47.410202], [8.562355, 47.410234], [8.56265, 47.410256], [8.562946, 47.410267], [8.563008, 47.410265], [8.56307, 47.410259], [8.563131, 47.410249], [8.56319, 47.410237], [8.563247, 47.410221], [8.563303, 47.410202], [8.563319, 47.410197], [8.563336, 47.410194], [8.563353, 47.410192], [8.563371, 47.410191]]], "type": "MultiLineString"}, "id": "5131", "properties": {}, "type": "Feature"}, {"bbox": [8.543254, 47.393535, 8.544457, 47.39387], "geometry": {"coordinates": [[[8.543254, 47.39387], [8.543286, 47.393864], [8.543319, 47.393859], [8.543351, 47.393856], [8.543445, 47.393846], [8.543615, 47.393844], [8.543701, 47.393846], [8.543787, 47.393842], [8.543873, 47.393832], [8.543956, 47.393818], [8.543964, 47.393815], [8.543972, 47.393812], [8.54398, 47.393809], [8.543987, 47.393805], [8.543994, 47.393801], [8.543999, 47.393796], [8.544005, 47.393791], [8.544009, 47.393786], [8.544013, 47.39378], [8.544032, 47.393768], [8.544051, 47.393755], [8.544071, 47.393743], [8.544457, 47.393535]]], "type": "MultiLineString"}, "id": "5132", "properties": {}, "type": "Feature"}, {"bbox": [8.590078, 47.355467, 8.590354, 47.356192], "geometry": {"coordinates": [[[8.590078, 47.355467], [8.590094, 47.355474], [8.59011, 47.355483], [8.590124, 47.355492], [8.590137, 47.355502], [8.590149, 47.355513], [8.590159, 47.355525], [8.590168, 47.355537], [8.590175, 47.35555], [8.59018, 47.35559], [8.590211, 47.355681], [8.590333, 47.355869], [8.590354, 47.356086], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "5133", "properties": {}, "type": "Feature"}, {"bbox": [8.530077, 47.360833, 8.530358, 47.361564], "geometry": {"coordinates": [[[8.530358, 47.360833], [8.530244, 47.361116], [8.530245, 47.361248], [8.530239, 47.361386], [8.530232, 47.361428], [8.530219, 47.361469], [8.5302, 47.36151], [8.530195, 47.361517], [8.53019, 47.361523], [8.530183, 47.36153], [8.530176, 47.361536], [8.530168, 47.361541], [8.530159, 47.361546], [8.53015, 47.36155], [8.53014, 47.361554], [8.53013, 47.361557], [8.530119, 47.36156], [8.530108, 47.361562], [8.530077, 47.361564]]], "type": "MultiLineString"}, "id": "5134", "properties": {}, "type": "Feature"}, {"bbox": [8.542305, 47.423082, 8.543107, 47.423453], "geometry": {"coordinates": [[[8.542305, 47.423082], [8.542439, 47.423104], [8.54257, 47.423134], [8.542696, 47.423173], [8.542728, 47.423189], [8.542758, 47.423207], [8.542786, 47.423227], [8.542892, 47.423303], [8.542999, 47.423378], [8.543107, 47.423453]]], "type": "MultiLineString"}, "id": "5135", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.412231, 8.542205, 47.412507], "geometry": {"coordinates": [[[8.542205, 47.412231], [8.541977, 47.412507]]], "type": "MultiLineString"}, "id": "5143", "properties": {}, "type": "Feature"}, {"bbox": [8.563172, 47.411969, 8.563229, 47.413105], "geometry": {"coordinates": [[[8.563229, 47.411969], [8.563209, 47.412154], [8.563178, 47.412934], [8.563172, 47.413105]]], "type": "MultiLineString"}, "id": "5145", "properties": {}, "type": "Feature"}, {"bbox": [8.54777, 47.366361, 8.548314, 47.366502], "geometry": {"coordinates": [[[8.548314, 47.366361], [8.548128, 47.366441], [8.548094, 47.366447], [8.54806, 47.366451], [8.548025, 47.366453], [8.547991, 47.366452], [8.547956, 47.36645], [8.547928, 47.366447], [8.5479, 47.366443], [8.547872, 47.366438], [8.54777, 47.366502]]], "type": "MultiLineString"}, "id": "5158", "properties": {}, "type": "Feature"}, {"bbox": [8.512283, 47.359928, 8.514335, 47.360932], "geometry": {"coordinates": [[[8.514335, 47.360474], [8.513984, 47.360932], [8.512283, 47.36041], [8.512653, 47.359928]]], "type": "MultiLineString"}, "id": "5168", "properties": {}, "type": "Feature"}, {"bbox": [8.498489, 47.402761, 8.499673, 47.402978], "geometry": {"coordinates": [[[8.499673, 47.402761], [8.499503, 47.402815], [8.499039, 47.40293], [8.49896, 47.402949], [8.49876, 47.402978], [8.498489, 47.402792]]], "type": "MultiLineString"}, "id": "5169", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.379424, 8.545566, 47.380521], "geometry": {"coordinates": [[[8.545566, 47.379424], [8.545155, 47.379963], [8.545128, 47.380021], [8.544848, 47.380456], [8.544775, 47.380521]]], "type": "MultiLineString"}, "id": "5174", "properties": {}, "type": "Feature"}, {"bbox": [8.568593, 47.353651, 8.569649, 47.353767], "geometry": {"coordinates": [[[8.568593, 47.353651], [8.568618, 47.353658], [8.568644, 47.353663], [8.568671, 47.353667], [8.568997, 47.3537], [8.569323, 47.353733], [8.569649, 47.353767]]], "type": "MultiLineString"}, "id": "5175", "properties": {}, "type": "Feature"}, {"bbox": [8.547059, 47.370799, 8.547623, 47.370924], "geometry": {"coordinates": [[[8.547623, 47.370799], [8.54731, 47.370858], [8.547059, 47.370924]]], "type": "MultiLineString"}, "id": "5176", "properties": {}, "type": "Feature"}, {"bbox": [8.583176, 47.359614, 8.584984, 47.35974], "geometry": {"coordinates": [[[8.583176, 47.359614], [8.583522, 47.35974], [8.584984, 47.359727]]], "type": "MultiLineString"}, "id": "5179", "properties": {}, "type": "Feature"}, {"bbox": [8.50962, 47.388601, 8.511016, 47.390207], "geometry": {"coordinates": [[[8.510029, 47.390207], [8.509734, 47.38977], [8.50964, 47.389554], [8.509631, 47.389534], [8.509624, 47.389514], [8.509621, 47.389493], [8.50962, 47.389472], [8.509621, 47.389452], [8.509626, 47.389431], [8.509632, 47.389411], [8.509642, 47.389391], [8.509654, 47.389372], [8.509668, 47.389353], [8.509685, 47.389336], [8.509704, 47.389319], [8.509725, 47.389304], [8.509748, 47.38929], [8.509843, 47.389249], [8.509943, 47.389212], [8.510046, 47.389181], [8.51052, 47.389044], [8.510575, 47.389024], [8.510627, 47.389002], [8.510676, 47.388976], [8.510721, 47.388948], [8.510763, 47.388917], [8.5108, 47.388883], [8.510832, 47.388848], [8.510859, 47.38881], [8.511016, 47.388601]]], "type": "MultiLineString"}, "id": "5183", "properties": {}, "type": "Feature"}, {"bbox": [8.494899, 47.374855, 8.496076, 47.375321], "geometry": {"coordinates": [[[8.494899, 47.375321], [8.494998, 47.375281], [8.495597, 47.375024], [8.495644, 47.375026], [8.496076, 47.374855]]], "type": "MultiLineString"}, "id": "5187", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_d3b5e793a24586dd4abb3bd4b047998c_add({"bbox": [8.448293, 47.321997, 8.624578, 47.434636], "features": [{"bbox": [8.532577, 47.412827, 8.533152, 47.412876], "geometry": {"coordinates": [[[8.532577, 47.412829], [8.533142, 47.412876], [8.533152, 47.412827]]], "type": "MultiLineString"}, "id": "1", "properties": {}, "type": "Feature"}, {"bbox": [8.543837, 47.374485, 8.544665, 47.374604], "geometry": {"coordinates": [[[8.543837, 47.374485], [8.544665, 47.374604]]], "type": "MultiLineString"}, "id": "5", "properties": {}, "type": "Feature"}, {"bbox": [8.541209, 47.370563, 8.541881, 47.370639], "geometry": {"coordinates": [[[8.541881, 47.370639], [8.541296, 47.370568], [8.541209, 47.370563]]], "type": "MultiLineString"}, "id": "9", "properties": {}, "type": "Feature"}, {"bbox": [8.501706, 47.397164, 8.501995, 47.39748], "geometry": {"coordinates": [[[8.501706, 47.397164], [8.501995, 47.39748]]], "type": "MultiLineString"}, "id": "16", "properties": {}, "type": "Feature"}, {"bbox": [8.527873, 47.393296, 8.528327, 47.39385], "geometry": {"coordinates": [[[8.527873, 47.393296], [8.527925, 47.39336], [8.528327, 47.39385]]], "type": "MultiLineString"}, "id": "19", "properties": {}, "type": "Feature"}, {"bbox": [8.511984, 47.378623, 8.513415, 47.379239], "geometry": {"coordinates": [[[8.513415, 47.378623], [8.511984, 47.379239]]], "type": "MultiLineString"}, "id": "21", "properties": {}, "type": "Feature"}, {"bbox": [8.536573, 47.394811, 8.537319, 47.395433], "geometry": {"coordinates": [[[8.536573, 47.394811], [8.537319, 47.395433]]], "type": "MultiLineString"}, "id": "24", "properties": {}, "type": "Feature"}, {"bbox": [8.542352, 47.389479, 8.543263, 47.390012], "geometry": {"coordinates": [[[8.543263, 47.389479], [8.542352, 47.390012]]], "type": "MultiLineString"}, "id": "25", "properties": {}, "type": "Feature"}, {"bbox": [8.482142, 47.381751, 8.483071, 47.382723], "geometry": {"coordinates": [[[8.483071, 47.381751], [8.482219, 47.382656], [8.482142, 47.382723]]], "type": "MultiLineString"}, "id": "26", "properties": {}, "type": "Feature"}, {"bbox": [8.550837, 47.420621, 8.550895, 47.420814], "geometry": {"coordinates": [[[8.550837, 47.420621], [8.550888, 47.42075], [8.550895, 47.420814]]], "type": "MultiLineString"}, "id": "27", "properties": {}, "type": "Feature"}, {"bbox": [8.533441, 47.41146, 8.533492, 47.411726], "geometry": {"coordinates": [[[8.533492, 47.41146], [8.533441, 47.411726]]], "type": "MultiLineString"}, "id": "28", "properties": {}, "type": "Feature"}, {"bbox": [8.522748, 47.39664, 8.522895, 47.396988], "geometry": {"coordinates": [[[8.522895, 47.39664], [8.522808, 47.396832], [8.522748, 47.396988]]], "type": "MultiLineString"}, "id": "30", "properties": {}, "type": "Feature"}, {"bbox": [8.537918, 47.374671, 8.538566, 47.375913], "geometry": {"coordinates": [[[8.537918, 47.374671], [8.538296, 47.375415], [8.538522, 47.375829], [8.538566, 47.375913]]], "type": "MultiLineString"}, "id": "31", "properties": {}, "type": "Feature"}, {"bbox": [8.59043, 47.400018, 8.591483, 47.401341], "geometry": {"coordinates": [[[8.590931, 47.400018], [8.591065, 47.400282], [8.591367, 47.400796], [8.591483, 47.400991], [8.59043, 47.401341]]], "type": "MultiLineString"}, "id": "34", "properties": {}, "type": "Feature"}, {"bbox": [8.517249, 47.357448, 8.517781, 47.357527], "geometry": {"coordinates": [[[8.517781, 47.357527], [8.517697, 47.357509], [8.517249, 47.357448]]], "type": "MultiLineString"}, "id": "35", "properties": {}, "type": "Feature"}, {"bbox": [8.540659, 47.414308, 8.540744, 47.414948], "geometry": {"coordinates": [[[8.540659, 47.414308], [8.540744, 47.414948]]], "type": "MultiLineString"}, "id": "36", "properties": {}, "type": "Feature"}, {"bbox": [8.54312, 47.374727, 8.543836, 47.374743], "geometry": {"coordinates": [[[8.54312, 47.374743], [8.543836, 47.374727]]], "type": "MultiLineString"}, "id": "39", "properties": {}, "type": "Feature"}, {"bbox": [8.552453, 47.390338, 8.557834, 47.39182], "geometry": {"coordinates": [[[8.552453, 47.390344], [8.552491, 47.390338], [8.552515, 47.390354], [8.55256, 47.390403], [8.552599, 47.390455], [8.55263, 47.390509], [8.55263, 47.390509], [8.55263, 47.390509], [8.55264, 47.390537], [8.552646, 47.390565], [8.552649, 47.390593], [8.552649, 47.390594], [8.552657, 47.390883], [8.552657, 47.390883], [8.552655, 47.390919], [8.552648, 47.390954], [8.552638, 47.390989], [8.552623, 47.391023], [8.552604, 47.391056], [8.552558, 47.391128], [8.552534, 47.391172], [8.552515, 47.391216], [8.552502, 47.391262], [8.552495, 47.391308], [8.552485, 47.391397], [8.552485, 47.391409], [8.552486, 47.39142], [8.552488, 47.391431], [8.552492, 47.391442], [8.552497, 47.391452], [8.552504, 47.391463], [8.552513, 47.391475], [8.552524, 47.391486], [8.552537, 47.391497], [8.552548, 47.391505], [8.55256, 47.391512], [8.552573, 47.391518], [8.552587, 47.391524], [8.552627, 47.39154], [8.552669, 47.391554], [8.552713, 47.391565], [8.552758, 47.391573], [8.553774, 47.391727], [8.553871, 47.391738], [8.553968, 47.391745], [8.554066, 47.391746], [8.554164, 47.391741], [8.554261, 47.391731], [8.554553, 47.391692], [8.554591, 47.391688], [8.554629, 47.391684], [8.554667, 47.391682], [8.554709, 47.391679], [8.55475, 47.391673], [8.554791, 47.391666], [8.554842, 47.391656], [8.554894, 47.391649], [8.554947, 47.391646], [8.555, 47.391645], [8.555053, 47.391648], [8.555337, 47.39167], [8.555368, 47.391674], [8.555399, 47.391679], [8.555429, 47.391686], [8.555457, 47.391696], [8.555485, 47.391706], [8.55551, 47.391719], [8.555519, 47.391724], [8.555527, 47.391729], [8.555534, 47.391735], [8.55554, 47.391741], [8.555546, 47.391748], [8.55555, 47.391755], [8.555554, 47.391762], [8.555557, 47.391769], [8.555559, 47.391776], [8.55556, 47.391781], [8.555561, 47.391785], [8.555563, 47.391789], [8.555566, 47.391793], [8.555569, 47.391796], [8.555573, 47.3918], [8.555577, 47.391803], [8.555581, 47.391806], [8.555586, 47.391809], [8.555591, 47.391811], [8.555596, 47.391814], [8.555602, 47.391815], [8.555607, 47.391817], [8.555613, 47.391818], [8.555619, 47.391819], [8.555626, 47.39182], [8.555632, 47.39182], [8.555674, 47.391819], [8.555715, 47.391817], [8.555756, 47.391812], [8.555797, 47.391804], [8.55595, 47.391766], [8.556098, 47.391719], [8.556239, 47.391664], [8.556372, 47.3916], [8.556496, 47.391528], [8.556611, 47.39145], [8.556723, 47.391366], [8.556738, 47.391356], [8.556753, 47.391347], [8.55677, 47.391339], [8.556787, 47.391333], [8.556826, 47.39132], [8.556828, 47.391319], [8.55683, 47.391318], [8.556832, 47.391318], [8.556834, 47.391318], [8.556836, 47.391318], [8.556838, 47.391318], [8.556841, 47.391318], [8.556843, 47.391318], [8.556845, 47.391319], [8.556847, 47.391319], [8.556849, 47.39132], [8.556851, 47.39132], [8.556852, 47.391321], [8.556854, 47.391322], [8.556856, 47.391323], [8.556857, 47.391325], [8.556858, 47.391326], [8.556859, 47.391327], [8.55686, 47.391328], [8.556861, 47.39133], [8.556862, 47.391331], [8.556862, 47.391333], [8.556862, 47.391334], [8.556862, 47.391336], [8.556862, 47.391337], [8.556862, 47.391339], [8.556861, 47.39134], [8.55686, 47.391341], [8.556859, 47.391343], [8.556858, 47.391344], [8.556848, 47.391356], [8.55684, 47.391368], [8.556833, 47.391381], [8.556827, 47.391394], [8.556824, 47.391407], [8.556821, 47.391421], [8.556821, 47.391434], [8.556822, 47.391448], [8.556822, 47.391448], [8.556823, 47.391449], [8.556823, 47.39145], [8.556824, 47.391451], [8.556824, 47.391452], [8.556825, 47.391453], [8.556826, 47.391453], [8.556827, 47.391454], [8.556828, 47.391455], [8.556829, 47.391455], [8.55683, 47.391456], [8.556831, 47.391456], [8.556832, 47.391456], [8.556833, 47.391457], [8.556835, 47.391457], [8.556836, 47.391457], [8.556837, 47.391457], [8.556839, 47.391457], [8.55684, 47.391457], [8.556841, 47.391457], [8.556843, 47.391457], [8.556844, 47.391456], [8.556845, 47.391456], [8.556846, 47.391455], [8.556847, 47.391455], [8.556992, 47.391376], [8.556993, 47.391376], [8.556994, 47.391375], [8.556995, 47.391375], [8.556996, 47.391374], [8.556998, 47.391374], [8.556999, 47.391374], [8.557, 47.391374], [8.557002, 47.391374], [8.557003, 47.391374], [8.557004, 47.391374], [8.557006, 47.391374], [8.557007, 47.391375], [8.557008, 47.391375], [8.557009, 47.391375], [8.55701, 47.391376], [8.557011, 47.391376], [8.557012, 47.391377], [8.557013, 47.391378], [8.557014, 47.391378], [8.557015, 47.391379], [8.557015, 47.39138], [8.557016, 47.391381], [8.557016, 47.391382], [8.557017, 47.391382], [8.557017, 47.391383], [8.557017, 47.391384], [8.557017, 47.391385], [8.557017, 47.391386], [8.557002, 47.391445], [8.557, 47.391456], [8.556999, 47.391467], [8.557, 47.391478], [8.557003, 47.391489], [8.557003, 47.391491], [8.557004, 47.391492], [8.557005, 47.391494], [8.557006, 47.391495], [8.557007, 47.391496], [8.557009, 47.391497], [8.55701, 47.391498], [8.557012, 47.3915], [8.557014, 47.3915], [8.557016, 47.391501], [8.557018, 47.391502], [8.55702, 47.391503], [8.557022, 47.391503], [8.557024, 47.391503], [8.557026, 47.391503], [8.557029, 47.391503], [8.557031, 47.391503], [8.557033, 47.391503], [8.557035, 47.391503], [8.557038, 47.391502], [8.55704, 47.391502], [8.557042, 47.391501], [8.557044, 47.3915], [8.557045, 47.391499], [8.55721, 47.391402], [8.557212, 47.391401], [8.557214, 47.3914], [8.557216, 47.3914], [8.557219, 47.391399], [8.557221, 47.391398], [8.557224, 47.391398], [8.557226, 47.391398], [8.557229, 47.391398], [8.557231, 47.391398], [8.557234, 47.391398], [8.557236, 47.391398], [8.557239, 47.391399], [8.557241, 47.391399], [8.557244, 47.3914], [8.557246, 47.391401], [8.557248, 47.391402], [8.55725, 47.391403], [8.557251, 47.391404], [8.557253, 47.391406], [8.557254, 47.391407], [8.557256, 47.391409], [8.557257, 47.39141], [8.557257, 47.391412], [8.557258, 47.391414], [8.557258, 47.391416], [8.557258, 47.391417], [8.557258, 47.391419], [8.557248, 47.39151], [8.557247, 47.391514], [8.557248, 47.391518], [8.557248, 47.391522], [8.55725, 47.391526], [8.557252, 47.39153], [8.557254, 47.391533], [8.557257, 47.391537], [8.55726, 47.39154], [8.557264, 47.391543], [8.557268, 47.391546], [8.557273, 47.391549], [8.557277, 47.391551], [8.557283, 47.391553], [8.557288, 47.391555], [8.557294, 47.391557], [8.557299, 47.391558], [8.557305, 47.391558], [8.557311, 47.391559], [8.557519, 47.391565], [8.557578, 47.391565], [8.557637, 47.391561], [8.557695, 47.391553], [8.557752, 47.391542], [8.557834, 47.391521]]], "type": "MultiLineString"}, "id": "40", "properties": {}, "type": "Feature"}, {"bbox": [8.586201, 47.40025, 8.587026, 47.401521], "geometry": {"coordinates": [[[8.586201, 47.40025], [8.586309, 47.400395], [8.587026, 47.401521]]], "type": "MultiLineString"}, "id": "43", "properties": {}, "type": "Feature"}, {"bbox": [8.519899, 47.341126, 8.520288, 47.341127], "geometry": {"coordinates": [[[8.519899, 47.341127], [8.520288, 47.341126]]], "type": "MultiLineString"}, "id": "44", "properties": {}, "type": "Feature"}, {"bbox": [8.53412, 47.380155, 8.534219, 47.380278], "geometry": {"coordinates": [[[8.53412, 47.380155], [8.534219, 47.380278]]], "type": "MultiLineString"}, "id": "45", "properties": {}, "type": "Feature"}, {"bbox": [8.545595, 47.378443, 8.546397, 47.378681], "geometry": {"coordinates": [[[8.545595, 47.378443], [8.545774, 47.378448], [8.546054, 47.378536], [8.546039, 47.378568], [8.546397, 47.378681]]], "type": "MultiLineString"}, "id": "46", "properties": {}, "type": "Feature"}, {"bbox": [8.536802, 47.373089, 8.538278, 47.373127], "geometry": {"coordinates": [[[8.538278, 47.373107], [8.537032, 47.373089], [8.536802, 47.373127]]], "type": "MultiLineString"}, "id": "47", "properties": {}, "type": "Feature"}, {"bbox": [8.537235, 47.396944, 8.537829, 47.397405], "geometry": {"coordinates": [[[8.537235, 47.396944], [8.53752, 47.397198], [8.537616, 47.397272], [8.537719, 47.397341], [8.537829, 47.397405]]], "type": "MultiLineString"}, "id": "48", "properties": {}, "type": "Feature"}, {"bbox": [8.534002, 47.373711, 8.534169, 47.373789], "geometry": {"coordinates": [[[8.534169, 47.373711], [8.534002, 47.373789]]], "type": "MultiLineString"}, "id": "50", "properties": {}, "type": "Feature"}, {"bbox": [8.544858, 47.368386, 8.545602, 47.368628], "geometry": {"coordinates": [[[8.544858, 47.368386], [8.545602, 47.368628]]], "type": "MultiLineString"}, "id": "60", "properties": {}, "type": "Feature"}, {"bbox": [8.556317, 47.37307, 8.556924, 47.373591], "geometry": {"coordinates": [[[8.556924, 47.37307], [8.556317, 47.373591]]], "type": "MultiLineString"}, "id": "63", "properties": {}, "type": "Feature"}, {"bbox": [8.544578, 47.410737, 8.544599, 47.41077], "geometry": {"coordinates": [[[8.544599, 47.410737], [8.544578, 47.41077]]], "type": "MultiLineString"}, "id": "71", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.368729, 8.540288, 47.368912], "geometry": {"coordinates": [[[8.540226, 47.368912], [8.540288, 47.368729]]], "type": "MultiLineString"}, "id": "72", "properties": {}, "type": "Feature"}, {"bbox": [8.54542, 47.409288, 8.546368, 47.40946], "geometry": {"coordinates": [[[8.546368, 47.40946], [8.545871, 47.409394], [8.54542, 47.409288]]], "type": "MultiLineString"}, "id": "78", "properties": {}, "type": "Feature"}, {"bbox": [8.514896, 47.374159, 8.51506, 47.374307], "geometry": {"coordinates": [[[8.514951, 47.374307], [8.514896, 47.374271], [8.51506, 47.374162], [8.515054, 47.374159]]], "type": "MultiLineString"}, "id": "84", "properties": {}, "type": "Feature"}, {"bbox": [8.544333, 47.382079, 8.544897, 47.382191], "geometry": {"coordinates": [[[8.544333, 47.382079], [8.544897, 47.382191]]], "type": "MultiLineString"}, "id": "88", "properties": {}, "type": "Feature"}, {"bbox": [8.554275, 47.363348, 8.554721, 47.363352], "geometry": {"coordinates": [[[8.554275, 47.363352], [8.554721, 47.363348]]], "type": "MultiLineString"}, "id": "90", "properties": {}, "type": "Feature"}, {"bbox": [8.488913, 47.397581, 8.489216, 47.398163], "geometry": {"coordinates": [[[8.488913, 47.397581], [8.489216, 47.398163]]], "type": "MultiLineString"}, "id": "92", "properties": {}, "type": "Feature"}, {"bbox": [8.57442, 47.35866, 8.593096, 47.364553], "geometry": {"coordinates": [[[8.574514, 47.35866], [8.574515, 47.358662], [8.574517, 47.358664], [8.574518, 47.358666], [8.574529, 47.358698], [8.574536, 47.358731], [8.57454, 47.358764], [8.574539, 47.358797], [8.574534, 47.35883], [8.574525, 47.358871], [8.574516, 47.358911], [8.574507, 47.358952], [8.574489, 47.359031], [8.574466, 47.359109], [8.57444, 47.359187], [8.57444, 47.359187], [8.57444, 47.359187], [8.574434, 47.359204], [8.574429, 47.359221], [8.574425, 47.359238], [8.574423, 47.359247], [8.574421, 47.359256], [8.57442, 47.359265], [8.57442, 47.359271], [8.57442, 47.359278], [8.574421, 47.359284], [8.574423, 47.35929], [8.574426, 47.359295], [8.57443, 47.359301], [8.574434, 47.359306], [8.574443, 47.359315], [8.574452, 47.359322], [8.574462, 47.359329], [8.574473, 47.359336], [8.574485, 47.359342], [8.574495, 47.359346], [8.574504, 47.359351], [8.574512, 47.359357], [8.57452, 47.359363], [8.574576, 47.35941], [8.574633, 47.359457], [8.57469, 47.359503], [8.57469, 47.359503], [8.57469, 47.359503], [8.574758, 47.359561], [8.574826, 47.359619], [8.574893, 47.359677], [8.574905, 47.359688], [8.574915, 47.359699], [8.574923, 47.35971], [8.574931, 47.359723], [8.574967, 47.359795], [8.575, 47.359868], [8.57503, 47.359942], [8.57504, 47.359976], [8.575046, 47.360011], [8.575048, 47.360046], [8.575046, 47.360082], [8.575037, 47.36015], [8.57503, 47.360219], [8.575023, 47.360287], [8.575019, 47.360342], [8.575017, 47.360396], [8.575016, 47.360451], [8.575017, 47.36048], [8.575021, 47.360508], [8.575027, 47.360537], [8.575027, 47.360537], [8.575027, 47.360537], [8.575033, 47.36056], [8.57504, 47.360582], [8.575047, 47.360604], [8.575055, 47.360627], [8.575064, 47.360651], [8.575071, 47.360675], [8.575076, 47.360687], [8.575083, 47.360698], [8.575091, 47.360709], [8.575101, 47.36072], [8.575112, 47.360729], [8.575124, 47.360738], [8.575138, 47.360747], [8.575138, 47.360747], [8.575402, 47.360896], [8.575413, 47.360901], [8.575424, 47.360906], [8.575435, 47.36091], [8.575447, 47.360913], [8.575469, 47.360916], [8.575491, 47.360918], [8.575514, 47.36092], [8.575533, 47.360921], [8.575552, 47.360924], [8.57557, 47.360928], [8.575588, 47.360933], [8.575605, 47.360939], [8.575621, 47.360947], [8.575635, 47.360957], [8.575649, 47.360967], [8.575661, 47.360978], [8.575672, 47.360989], [8.575681, 47.361001], [8.575689, 47.361014], [8.575695, 47.361027], [8.575699, 47.36104], [8.575717, 47.361089], [8.575731, 47.361139], [8.575741, 47.361189], [8.575748, 47.361268], [8.575744, 47.361347], [8.575729, 47.361426], [8.575713, 47.361488], [8.575695, 47.361551], [8.575678, 47.361613], [8.57563, 47.361765], [8.575573, 47.361915], [8.575506, 47.362063], [8.575496, 47.362084], [8.575486, 47.362105], [8.575475, 47.362125], [8.575443, 47.362196], [8.575409, 47.362267], [8.575375, 47.362338], [8.575346, 47.362405], [8.575322, 47.362474], [8.575306, 47.362543], [8.575285, 47.36265], [8.575282, 47.362661], [8.575278, 47.362671], [8.575272, 47.362681], [8.575266, 47.362691], [8.575258, 47.3627], [8.57525, 47.362709], [8.57523, 47.362726], [8.575211, 47.362743], [8.575193, 47.362761], [8.57511, 47.362864], [8.575096, 47.362881], [8.575085, 47.362899], [8.575075, 47.362918], [8.57506, 47.362942], [8.575056, 47.362946], [8.575051, 47.36295], [8.575046, 47.362955], [8.575041, 47.362958], [8.575034, 47.362962], [8.575028, 47.362965], [8.575028, 47.362965], [8.575013, 47.362972], [8.574886, 47.363032], [8.57482, 47.363063], [8.57482, 47.363063], [8.574817, 47.363064], [8.574813, 47.363066], [8.57481, 47.363068], [8.574808, 47.363071], [8.574805, 47.363073], [8.574803, 47.363076], [8.574802, 47.363078], [8.5748, 47.363081], [8.574799, 47.363084], [8.574799, 47.363087], [8.574798, 47.36309], [8.574798, 47.363092], [8.574799, 47.363095], [8.5748, 47.363098], [8.574835, 47.363202], [8.574835, 47.363202], [8.574857, 47.363271], [8.574877, 47.363341], [8.574894, 47.363411], [8.574894, 47.363412], [8.574894, 47.363412], [8.5749, 47.363436], [8.574904, 47.36346], [8.574908, 47.363485], [8.574907, 47.363499], [8.574905, 47.363514], [8.574901, 47.363529], [8.574896, 47.363543], [8.574888, 47.363557], [8.574886, 47.363561], [8.574883, 47.363565], [8.57488, 47.363569], [8.574877, 47.363573], [8.574874, 47.363577], [8.574872, 47.363582], [8.574871, 47.363586], [8.57487, 47.363591], [8.57487, 47.363595], [8.57487, 47.3636], [8.574872, 47.363605], [8.574873, 47.363609], [8.574875, 47.363613], [8.574878, 47.363618], [8.57489, 47.36363], [8.57508, 47.363884], [8.575105, 47.363928], [8.575112, 47.363955], [8.575123, 47.363981], [8.575136, 47.364007], [8.575153, 47.364032], [8.575173, 47.364055], [8.575184, 47.364072], [8.575198, 47.364088], [8.575214, 47.364104], [8.575231, 47.364118], [8.575251, 47.364131], [8.575271, 47.364143], [8.575294, 47.364154], [8.575317, 47.364164], [8.575411, 47.364203], [8.575509, 47.364238], [8.575611, 47.364268], [8.575621, 47.364271], [8.575632, 47.364273], [8.575644, 47.364275], [8.575655, 47.364276], [8.575667, 47.364277], [8.575678, 47.364277], [8.57569, 47.364276], [8.575701, 47.364274], [8.575712, 47.364272], [8.575723, 47.364269], [8.575943, 47.364206], [8.575972, 47.364232], [8.576004, 47.364258], [8.576038, 47.364281], [8.576056, 47.364295], [8.576073, 47.364309], [8.576088, 47.364324], [8.5761, 47.36434], [8.576111, 47.364357], [8.576136, 47.364396], [8.576167, 47.364435], [8.576201, 47.364471], [8.576215, 47.364482], [8.576231, 47.364492], [8.576249, 47.364501], [8.576267, 47.364509], [8.576286, 47.364516], [8.576306, 47.364521], [8.576327, 47.364526], [8.576349, 47.364529], [8.57637, 47.364531], [8.576421, 47.364539], [8.576472, 47.364545], [8.576523, 47.364548], [8.576612, 47.364548], [8.5767, 47.364545], [8.576788, 47.364539], [8.576929, 47.364529], [8.576953, 47.364527], [8.576977, 47.364527], [8.577002, 47.364527], [8.57703, 47.364529], [8.577058, 47.364532], [8.577086, 47.364537], [8.577184, 47.36455], [8.577189, 47.364551], [8.577194, 47.364552], [8.5772, 47.364553], [8.577205, 47.364553], [8.57721, 47.364553], [8.577216, 47.364552], [8.577221, 47.364552], [8.577226, 47.364551], [8.577231, 47.364549], [8.577236, 47.364548], [8.577241, 47.364546], [8.577245, 47.364543], [8.577249, 47.364541], [8.577252, 47.364538], [8.577256, 47.364535], [8.577267, 47.364526], [8.577279, 47.364518], [8.577293, 47.364511], [8.577309, 47.364503], [8.577325, 47.364496], [8.577343, 47.36449], [8.577404, 47.364484], [8.577464, 47.364479], [8.577525, 47.364475], [8.577547, 47.364476], [8.57757, 47.364476], [8.577592, 47.364475], [8.577614, 47.364473], [8.577636, 47.364469], [8.577657, 47.364464], [8.577677, 47.364458], [8.577697, 47.364451], [8.577763, 47.364428], [8.577828, 47.364403], [8.577891, 47.364376], [8.577929, 47.364358], [8.577969, 47.364342], [8.578011, 47.364329], [8.578055, 47.364318], [8.578099, 47.364311], [8.578145, 47.364305], [8.578191, 47.364303], [8.578222, 47.364301], [8.578252, 47.364296], [8.578281, 47.364291], [8.57831, 47.364283], [8.578447, 47.364249], [8.57847, 47.364242], [8.578492, 47.364234], [8.578513, 47.364225], [8.578532, 47.364216], [8.578551, 47.364207], [8.578569, 47.364198], [8.578583, 47.364191], [8.578598, 47.364185], [8.578613, 47.36418], [8.578628, 47.364176], [8.578644, 47.364172], [8.57866, 47.36417], [8.578677, 47.364168], [8.578694, 47.364167], [8.57871, 47.364167], [8.578727, 47.364169], [8.578743, 47.364171], [8.578769, 47.364175], [8.578794, 47.364181], [8.578818, 47.364187], [8.578833, 47.364191], [8.578849, 47.364194], [8.578864, 47.364196], [8.578871, 47.364196], [8.578878, 47.364196], [8.578885, 47.364196], [8.578892, 47.364196], [8.578899, 47.364194], [8.578906, 47.364193], [8.578912, 47.364191], [8.578919, 47.364189], [8.578925, 47.364186], [8.57893, 47.364183], [8.57898, 47.364155], [8.57901, 47.364138], [8.579016, 47.364134], [8.579022, 47.364129], [8.579027, 47.364124], [8.579031, 47.36412], [8.579033, 47.364116], [8.579036, 47.364112], [8.579045, 47.364093], [8.579047, 47.364088], [8.579048, 47.364083], [8.579049, 47.364078], [8.579049, 47.364073], [8.579049, 47.364068], [8.579048, 47.364063], [8.579046, 47.364057], [8.579043, 47.364052], [8.57904, 47.364047], [8.57903, 47.364031], [8.579023, 47.364014], [8.579017, 47.363996], [8.579014, 47.363979], [8.57901, 47.363959], [8.579006, 47.36394], [8.579, 47.36392], [8.578999, 47.363917], [8.578998, 47.363915], [8.578996, 47.363912], [8.578994, 47.36391], [8.578992, 47.363907], [8.578989, 47.363905], [8.578986, 47.363903], [8.578983, 47.363901], [8.57893, 47.36387], [8.578916, 47.363861], [8.578902, 47.363853], [8.578888, 47.363844], [8.578879, 47.363837], [8.578872, 47.36383], [8.578865, 47.363823], [8.578859, 47.363815], [8.578855, 47.363806], [8.578782, 47.363651], [8.57878, 47.363648], [8.578779, 47.363644], [8.578779, 47.363641], [8.578779, 47.363638], [8.578781, 47.363444], [8.578781, 47.363426], [8.578781, 47.363421], [8.578781, 47.363416], [8.578782, 47.363411], [8.578784, 47.363406], [8.578786, 47.363401], [8.578789, 47.363397], [8.578792, 47.363392], [8.578796, 47.363388], [8.578801, 47.363384], [8.578832, 47.363355], [8.578874, 47.363317], [8.578919, 47.363282], [8.578967, 47.363249], [8.578986, 47.363234], [8.579004, 47.363218], [8.579019, 47.363201], [8.579031, 47.363183], [8.579033, 47.36318], [8.579035, 47.363177], [8.579036, 47.363175], [8.579036, 47.363172], [8.579036, 47.363169], [8.579036, 47.363166], [8.579036, 47.363163], [8.579035, 47.36316], [8.579034, 47.363157], [8.579032, 47.363154], [8.57903, 47.363151], [8.579027, 47.363149], [8.579025, 47.363146], [8.579019, 47.363141], [8.579014, 47.363135], [8.57901, 47.363128], [8.579007, 47.363122], [8.579004, 47.363115], [8.579003, 47.363108], [8.579002, 47.363101], [8.579001, 47.363074], [8.579, 47.363047], [8.578999, 47.36302], [8.578997, 47.36298], [8.579, 47.36294], [8.579007, 47.3629], [8.579016, 47.36287], [8.579028, 47.36284], [8.579044, 47.362812], [8.579063, 47.362784], [8.579093, 47.362746], [8.579125, 47.36271], [8.57916, 47.362675], [8.57918, 47.362657], [8.579202, 47.362641], [8.579226, 47.362626], [8.579252, 47.362612], [8.579279, 47.3626], [8.579308, 47.36259], [8.579335, 47.36258], [8.57936, 47.362568], [8.579383, 47.362555], [8.579404, 47.362541], [8.579557, 47.362436], [8.579591, 47.362418], [8.579617, 47.362405], [8.579664, 47.362377], [8.579679, 47.362369], [8.579694, 47.362362], [8.579711, 47.362356], [8.579728, 47.362351], [8.57974, 47.362348], [8.579752, 47.362344], [8.579764, 47.362339], [8.57993, 47.362262], [8.579942, 47.362257], [8.579955, 47.362253], [8.579968, 47.362249], [8.579981, 47.362247], [8.579995, 47.362245], [8.580008, 47.362244], [8.580022, 47.362244], [8.580096, 47.362246], [8.58017, 47.36225], [8.580244, 47.362256], [8.580362, 47.362268], [8.58038, 47.36227], [8.580397, 47.362271], [8.580415, 47.362272], [8.580501, 47.362274], [8.580587, 47.362275], [8.580673, 47.362276], [8.58088, 47.362276], [8.580901, 47.362276], [8.580922, 47.362274], [8.580943, 47.362271], [8.580963, 47.362267], [8.580982, 47.362261], [8.581001, 47.362254], [8.581034, 47.362242], [8.581067, 47.362229], [8.5811, 47.362217], [8.581107, 47.362215], [8.581115, 47.362213], [8.581124, 47.362211], [8.581132, 47.36221], [8.581141, 47.36221], [8.581149, 47.36221], [8.581158, 47.36221], [8.581166, 47.362211], [8.581174, 47.362213], [8.581182, 47.362214], [8.58119, 47.362217], [8.581198, 47.36222], [8.581205, 47.362223], [8.581211, 47.362227], [8.58123, 47.362239], [8.581247, 47.362252], [8.581262, 47.362266], [8.581276, 47.362281], [8.581287, 47.362297], [8.581309, 47.362332], [8.581317, 47.362342], [8.581326, 47.362351], [8.581336, 47.36236], [8.581348, 47.362368], [8.58136, 47.362375], [8.581375, 47.362383], [8.581391, 47.36239], [8.581408, 47.362396], [8.581425, 47.362401], [8.581444, 47.362404], [8.581462, 47.362407], [8.581481, 47.362408], [8.5815, 47.362408], [8.581519, 47.362407], [8.581526, 47.362407], [8.581533, 47.362407], [8.58154, 47.362408], [8.581546, 47.362409], [8.581553, 47.362411], [8.581559, 47.362412], [8.581566, 47.362415], [8.581572, 47.362417], [8.581577, 47.36242], [8.581607, 47.362436], [8.581621, 47.362444], [8.581637, 47.362451], [8.581653, 47.362456], [8.58167, 47.362461], [8.581688, 47.362465], [8.581706, 47.362468], [8.581737, 47.362471], [8.581768, 47.362473], [8.581799, 47.362472], [8.58183, 47.36247], [8.581839, 47.362469], [8.581848, 47.362469], [8.581857, 47.36247], [8.581867, 47.362471], [8.581875, 47.362472], [8.581884, 47.362474], [8.581893, 47.362476], [8.581901, 47.362479], [8.581932, 47.362492], [8.58194, 47.362495], [8.581947, 47.362497], [8.581956, 47.362499], [8.581964, 47.362501], [8.581973, 47.362502], [8.581991, 47.362503], [8.582009, 47.362505], [8.582027, 47.362508], [8.58206, 47.362512], [8.582093, 47.362515], [8.582127, 47.362516], [8.58216, 47.362514], [8.582194, 47.362511], [8.582226, 47.362506], [8.582258, 47.362498], [8.582289, 47.362489], [8.582318, 47.362478], [8.582346, 47.362465], [8.58235, 47.362463], [8.582354, 47.362461], [8.582358, 47.362458], [8.582362, 47.362455], [8.582366, 47.362453], [8.582371, 47.362451], [8.582375, 47.362449], [8.582381, 47.362447], [8.582386, 47.362446], [8.582391, 47.362445], [8.582397, 47.362444], [8.582402, 47.362444], [8.582411, 47.362443], [8.58242, 47.362442], [8.582428, 47.36244], [8.582437, 47.362437], [8.582445, 47.362435], [8.582452, 47.362431], [8.58246, 47.362428], [8.582467, 47.362424], [8.582474, 47.36242], [8.58248, 47.362416], [8.582489, 47.362412], [8.582498, 47.362408], [8.582507, 47.362405], [8.582517, 47.362402], [8.582527, 47.3624], [8.582537, 47.362398], [8.582547, 47.362397], [8.582554, 47.362397], [8.582561, 47.362397], [8.582568, 47.362398], [8.582575, 47.362399], [8.582582, 47.3624], [8.582588, 47.362402], [8.582594, 47.362404], [8.5826, 47.362407], [8.582606, 47.36241], [8.582611, 47.362413], [8.582718, 47.362483], [8.582721, 47.362485], [8.582723, 47.362486], [8.582726, 47.362487], [8.582729, 47.362488], [8.582732, 47.362489], [8.582735, 47.36249], [8.582738, 47.36249], [8.582741, 47.362491], [8.582745, 47.362491], [8.582824, 47.36249], [8.582899, 47.362487], [8.583375, 47.36247], [8.583501, 47.362456], [8.58355, 47.362479], [8.583588, 47.362504], [8.583614, 47.362521], [8.583642, 47.362537], [8.583672, 47.362551], [8.583683, 47.362555], [8.583694, 47.362558], [8.583706, 47.362561], [8.583718, 47.362563], [8.58373, 47.362564], [8.583743, 47.362565], [8.583755, 47.362565], [8.583767, 47.362564], [8.583779, 47.362562], [8.583791, 47.36256], [8.583803, 47.362556], [8.583814, 47.362553], [8.583878, 47.362528], [8.583899, 47.362521], [8.583921, 47.362515], [8.583944, 47.36251], [8.583966, 47.362506], [8.58399, 47.362504], [8.584013, 47.362503], [8.584037, 47.362504], [8.58406, 47.362506], [8.584083, 47.362509], [8.584106, 47.362513], [8.58422, 47.362539], [8.584278, 47.36255], [8.584336, 47.362557], [8.584396, 47.362561], [8.584455, 47.36256], [8.584515, 47.362556], [8.584531, 47.362554], [8.584548, 47.362553], [8.584564, 47.362552], [8.584581, 47.362553], [8.584597, 47.362555], [8.584614, 47.362557], [8.58463, 47.362561], [8.584645, 47.362565], [8.58466, 47.36257], [8.584674, 47.362576], [8.584687, 47.362583], [8.5847, 47.36259], [8.584708, 47.362597], [8.584716, 47.362604], [8.584723, 47.362611], [8.584728, 47.362619], [8.584733, 47.362627], [8.584737, 47.362635], [8.58474, 47.362644], [8.584742, 47.362652], [8.584742, 47.362661], [8.584742, 47.36267], [8.58474, 47.362678], [8.584984, 47.362663], [8.58515, 47.36265], [8.585201, 47.362645], [8.58525, 47.362636], [8.585299, 47.362624], [8.585337, 47.362612], [8.585364, 47.362599], [8.58541, 47.362582], [8.585458, 47.362567], [8.585506, 47.362554], [8.585512, 47.362552], [8.585517, 47.36255], [8.585522, 47.362548], [8.585558, 47.362537], [8.585594, 47.362528], [8.585631, 47.36252], [8.58566, 47.362515], [8.585689, 47.36251], [8.585718, 47.362507], [8.585744, 47.362505], [8.585771, 47.362502], [8.585797, 47.362499], [8.585834, 47.362494], [8.58587, 47.362488], [8.585907, 47.362481], [8.585937, 47.362476], [8.585967, 47.362474], [8.585998, 47.362473], [8.586028, 47.362473], [8.586059, 47.362476], [8.586089, 47.36248], [8.586099, 47.362482], [8.586109, 47.362484], [8.586119, 47.362485], [8.58613, 47.362485], [8.58614, 47.362485], [8.586151, 47.362484], [8.586161, 47.362482], [8.586299, 47.362451], [8.586324, 47.362445], [8.586351, 47.362442], [8.586377, 47.36244], [8.586404, 47.362439], [8.586455, 47.362442], [8.586507, 47.362444], [8.586558, 47.362447], [8.586589, 47.362449], [8.586619, 47.362451], [8.586649, 47.362452], [8.586666, 47.362453], [8.586683, 47.362452], [8.586699, 47.362451], [8.586715, 47.362448], [8.586731, 47.362445], [8.586746, 47.36244], [8.586754, 47.362437], [8.586762, 47.362436], [8.586771, 47.362434], [8.586779, 47.362433], [8.586788, 47.362433], [8.586797, 47.362433], [8.586805, 47.362433], [8.586814, 47.362434], [8.586822, 47.362436], [8.586831, 47.362438], [8.586864, 47.362447], [8.586898, 47.362456], [8.586931, 47.362466], [8.586966, 47.362476], [8.587, 47.362487], [8.587034, 47.362498], [8.587048, 47.362502], [8.587063, 47.362506], [8.587078, 47.362508], [8.587093, 47.36251], [8.587108, 47.36251], [8.587146, 47.36251], [8.587184, 47.362511], [8.587221, 47.362512], [8.587234, 47.362513], [8.587246, 47.362514], [8.587258, 47.362516], [8.58727, 47.362519], [8.587281, 47.362522], [8.587309, 47.362531], [8.587337, 47.362537], [8.587367, 47.362542], [8.587396, 47.362545], [8.587427, 47.362547], [8.587427, 47.362547], [8.587427, 47.362547], [8.587439, 47.362548], [8.587452, 47.362549], [8.587464, 47.362551], [8.587476, 47.362554], [8.587487, 47.362558], [8.587514, 47.362566], [8.587541, 47.362573], [8.58757, 47.362578], [8.587601, 47.362584], [8.587632, 47.36259], [8.587663, 47.362597], [8.587717, 47.362612], [8.587822, 47.362659], [8.587854, 47.362672], [8.587888, 47.362682], [8.587924, 47.362691], [8.58799, 47.362703], [8.588057, 47.362715], [8.588124, 47.362727], [8.58817, 47.362738], [8.588215, 47.362752], [8.588258, 47.362768], [8.588268, 47.362773], [8.58828, 47.362778], [8.588291, 47.362781], [8.588304, 47.362784], [8.588316, 47.362786], [8.588329, 47.362788], [8.588342, 47.362789], [8.588355, 47.362789], [8.588391, 47.362788], [8.588426, 47.362787], [8.588462, 47.362786], [8.588692, 47.362781], [8.588751, 47.362781], [8.588778, 47.362782], [8.588806, 47.362784], [8.588833, 47.362786], [8.588846, 47.362787], [8.588859, 47.362787], [8.588871, 47.362786], [8.588884, 47.362785], [8.588981, 47.362749], [8.589069, 47.362704], [8.589119, 47.36269], [8.58917, 47.36268], [8.589222, 47.362672], [8.589239, 47.36267], [8.589255, 47.36267], [8.589272, 47.36267], [8.589288, 47.362672], [8.589304, 47.362674], [8.58932, 47.362678], [8.589363, 47.362689], [8.589408, 47.362699], [8.589452, 47.362708], [8.589486, 47.362713], [8.589521, 47.362718], [8.589556, 47.362721], [8.58957, 47.362722], [8.589585, 47.362722], [8.5896, 47.362721], [8.589614, 47.362719], [8.589628, 47.362716], [8.589641, 47.362712], [8.589654, 47.362708], [8.589667, 47.362702], [8.589804, 47.362654], [8.589846, 47.362643], [8.589887, 47.362632], [8.589928, 47.362621], [8.589938, 47.362618], [8.589948, 47.362616], [8.589958, 47.362615], [8.589969, 47.362615], [8.589979, 47.362615], [8.589989, 47.362615], [8.59, 47.362617], [8.59001, 47.362619], [8.590019, 47.362621], [8.590029, 47.362624], [8.59008, 47.362645], [8.590129, 47.362667], [8.590176, 47.362691], [8.590207, 47.362706], [8.59024, 47.362719], [8.590274, 47.36273], [8.590291, 47.362735], [8.590307, 47.362738], [8.590324, 47.36274], [8.590354, 47.362743], [8.590384, 47.362748], [8.590412, 47.362756], [8.590441, 47.362764], [8.590469, 47.362773], [8.590497, 47.362781], [8.590511, 47.362785], [8.590526, 47.362788], [8.590541, 47.362791], [8.590556, 47.362792], [8.590571, 47.362793], [8.590587, 47.362792], [8.590602, 47.362791], [8.590617, 47.362789], [8.590647, 47.362785], [8.590678, 47.362781], [8.590709, 47.362779], [8.59071, 47.362779], [8.59071, 47.362779], [8.59072, 47.362778], [8.59073, 47.362777], [8.59074, 47.362774], [8.59075, 47.362772], [8.590759, 47.362769], [8.590831, 47.362742], [8.590903, 47.362716], [8.590976, 47.362691], [8.590992, 47.362686], [8.591009, 47.362682], [8.591026, 47.362679], [8.591044, 47.362677], [8.591061, 47.362677], [8.591061, 47.362677], [8.5911, 47.362677], [8.591139, 47.362678], [8.591177, 47.362679], [8.591177, 47.362679], [8.591177, 47.362679], [8.591181, 47.362679], [8.591186, 47.362679], [8.59119, 47.362679], [8.591367, 47.362659], [8.591387, 47.362656], [8.591407, 47.362653], [8.591428, 47.362649], [8.591453, 47.362645], [8.591478, 47.362641], [8.591502, 47.362636], [8.591547, 47.362625], [8.591591, 47.362614], [8.591634, 47.3626], [8.591662, 47.36259], [8.59169, 47.362578], [8.591715, 47.362565], [8.591719, 47.362564], [8.591722, 47.362562], [8.591725, 47.362561], [8.591729, 47.36256], [8.591732, 47.362559], [8.591736, 47.362559], [8.59174, 47.362559], [8.591744, 47.362559], [8.591748, 47.362559], [8.591751, 47.362559], [8.591755, 47.36256], [8.591759, 47.362561], [8.591762, 47.362562], [8.591766, 47.362563], [8.591769, 47.362564], [8.591772, 47.362566], [8.591775, 47.362568], [8.591777, 47.362569], [8.59178, 47.362572], [8.591782, 47.362574], [8.591783, 47.362576], [8.591785, 47.362578], [8.591789, 47.362586], [8.591794, 47.362593], [8.591801, 47.362599], [8.591807, 47.362606], [8.591815, 47.362611], [8.591824, 47.362617], [8.591829, 47.36262], [8.591835, 47.362622], [8.591841, 47.362625], [8.591847, 47.362627], [8.591854, 47.362628], [8.591861, 47.362629], [8.591915, 47.362637], [8.591968, 47.362645], [8.592022, 47.362652], [8.592006, 47.362664], [8.591985, 47.362678], [8.591962, 47.362691], [8.591938, 47.362702], [8.591912, 47.362712], [8.591884, 47.36272], [8.591887, 47.362729], [8.591891, 47.362738], [8.591896, 47.362747], [8.591902, 47.362755], [8.591909, 47.362763], [8.591917, 47.362771], [8.591926, 47.362778], [8.591936, 47.362784], [8.591946, 47.36279], [8.591958, 47.362795], [8.59197, 47.3628], [8.591982, 47.362804], [8.592007, 47.3628], [8.592032, 47.362795], [8.592056, 47.362788], [8.592078, 47.36278], [8.5921, 47.36277], [8.59212, 47.362759], [8.592138, 47.362747], [8.592155, 47.362734], [8.59217, 47.362719], [8.592182, 47.362707], [8.592195, 47.362696], [8.592209, 47.362686], [8.592225, 47.362676], [8.592241, 47.362668], [8.59225, 47.362664], [8.592259, 47.362662], [8.592269, 47.362659], [8.592278, 47.362658], [8.592285, 47.362657], [8.592292, 47.362657], [8.592299, 47.362657], [8.592306, 47.362657], [8.592313, 47.362658], [8.59232, 47.362659], [8.592327, 47.362661], [8.592404, 47.362685], [8.592477, 47.362714], [8.592547, 47.362746], [8.592636, 47.362767], [8.592748, 47.362765], [8.592866, 47.362738], [8.592983, 47.362681], [8.593096, 47.362684]]], "type": "MultiLineString"}, "id": "94", "properties": {}, "type": "Feature"}, {"bbox": [8.49798, 47.401361, 8.49855, 47.40153], "geometry": {"coordinates": [[[8.49798, 47.40153], [8.49855, 47.401361]]], "type": "MultiLineString"}, "id": "95", "properties": {}, "type": "Feature"}, {"bbox": [8.553232, 47.402067, 8.553558, 47.402414], "geometry": {"coordinates": [[[8.553232, 47.402414], [8.553558, 47.402067]]], "type": "MultiLineString"}, "id": "98", "properties": {}, "type": "Feature"}, {"bbox": [8.517861, 47.34072, 8.518881, 47.34086], "geometry": {"coordinates": [[[8.518881, 47.34072], [8.518273, 47.340729], [8.517861, 47.34086]]], "type": "MultiLineString"}, "id": "99", "properties": {}, "type": "Feature"}, {"bbox": [8.53652, 47.414939, 8.537221, 47.415332], "geometry": {"coordinates": [[[8.53652, 47.414944], [8.536612, 47.414939], [8.536666, 47.415332], [8.537221, 47.415295]]], "type": "MultiLineString"}, "id": "104", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.371435, 8.544714, 47.371755], "geometry": {"coordinates": [[[8.544033, 47.371435], [8.544098, 47.371473], [8.544442, 47.371612], [8.544714, 47.371755]]], "type": "MultiLineString"}, "id": "107", "properties": {}, "type": "Feature"}, {"bbox": [8.5611, 47.413085, 8.561159, 47.413876], "geometry": {"coordinates": [[[8.561159, 47.413085], [8.561134, 47.413826], [8.5611, 47.413876]]], "type": "MultiLineString"}, "id": "109", "properties": {}, "type": "Feature"}, {"bbox": [8.533152, 47.411421, 8.53343, 47.412827], "geometry": {"coordinates": [[[8.533152, 47.412827], [8.533264, 47.412261], [8.533352, 47.41181], [8.53343, 47.411446], [8.533255, 47.411421]]], "type": "MultiLineString"}, "id": "110", "properties": {}, "type": "Feature"}, {"bbox": [8.477724, 47.3919, 8.478753, 47.393265], "geometry": {"coordinates": [[[8.477724, 47.3919], [8.47807, 47.392175], [8.478753, 47.393265]]], "type": "MultiLineString"}, "id": "111", "properties": {}, "type": "Feature"}, {"bbox": [8.596215, 47.353516, 8.596593, 47.353804], "geometry": {"coordinates": [[[8.596593, 47.353804], [8.596215, 47.353516]]], "type": "MultiLineString"}, "id": "117", "properties": {}, "type": "Feature"}, {"bbox": [8.509883, 47.377844, 8.510184, 47.378077], "geometry": {"coordinates": [[[8.510184, 47.378077], [8.510059, 47.377976], [8.509997, 47.37793], [8.509883, 47.377844]]], "type": "MultiLineString"}, "id": "118", "properties": {}, "type": "Feature"}, {"bbox": [8.502047, 47.41778, 8.502745, 47.418174], "geometry": {"coordinates": [[[8.502745, 47.41778], [8.502607, 47.417868], [8.502047, 47.418174]]], "type": "MultiLineString"}, "id": "120", "properties": {}, "type": "Feature"}, {"bbox": [8.543951, 47.373435, 8.544951, 47.373728], "geometry": {"coordinates": [[[8.543951, 47.373435], [8.544802, 47.373683], [8.544951, 47.373728]]], "type": "MultiLineString"}, "id": "123", "properties": {}, "type": "Feature"}, {"bbox": [8.550205, 47.386041, 8.550241, 47.386308], "geometry": {"coordinates": [[[8.550241, 47.386041], [8.550205, 47.386166], [8.550208, 47.386308]]], "type": "MultiLineString"}, "id": "124", "properties": {}, "type": "Feature"}, {"bbox": [8.546953, 47.407362, 8.546961, 47.407664], "geometry": {"coordinates": [[[8.546953, 47.407664], [8.546961, 47.407362]]], "type": "MultiLineString"}, "id": "125", "properties": {}, "type": "Feature"}, {"bbox": [8.542804, 47.373429, 8.543718, 47.373431], "geometry": {"coordinates": [[[8.542804, 47.373431], [8.543718, 47.373429]]], "type": "MultiLineString"}, "id": "126", "properties": {}, "type": "Feature"}, {"bbox": [8.508202, 47.380761, 8.508269, 47.380795], "geometry": {"coordinates": [[[8.508202, 47.380795], [8.508269, 47.380761]]], "type": "MultiLineString"}, "id": "127", "properties": {}, "type": "Feature"}, {"bbox": [8.466945, 47.40119, 8.468036, 47.401467], "geometry": {"coordinates": [[[8.466945, 47.401467], [8.468036, 47.40119]]], "type": "MultiLineString"}, "id": "128", "properties": {}, "type": "Feature"}, {"bbox": [8.503814, 47.407126, 8.506552, 47.408052], "geometry": {"coordinates": [[[8.506552, 47.407126], [8.506136, 47.407281], [8.505559, 47.407472], [8.505245, 47.407577], [8.503814, 47.408052]]], "type": "MultiLineString"}, "id": "129", "properties": {}, "type": "Feature"}, {"bbox": [8.499915, 47.423488, 8.50015, 47.423556], "geometry": {"coordinates": [[[8.50015, 47.423488], [8.499915, 47.423556]]], "type": "MultiLineString"}, "id": "131", "properties": {}, "type": "Feature"}, {"bbox": [8.54137, 47.370877, 8.541557, 47.371291], "geometry": {"coordinates": [[[8.54137, 47.370877], [8.541539, 47.37118], [8.541557, 47.371291]]], "type": "MultiLineString"}, "id": "133", "properties": {}, "type": "Feature"}, {"bbox": [8.545091, 47.407152, 8.545845, 47.408244], "geometry": {"coordinates": [[[8.545091, 47.407152], [8.545139, 47.407228], [8.545503, 47.407746], [8.545845, 47.408244]]], "type": "MultiLineString"}, "id": "135", "properties": {}, "type": "Feature"}, {"bbox": [8.549202, 47.359518, 8.549788, 47.359618], "geometry": {"coordinates": [[[8.549202, 47.359518], [8.549622, 47.359618], [8.54967, 47.359596], [8.549788, 47.359601]]], "type": "MultiLineString"}, "id": "137", "properties": {}, "type": "Feature"}, {"bbox": [8.530771, 47.414788, 8.531899, 47.414936], "geometry": {"coordinates": [[[8.530771, 47.414936], [8.531899, 47.414788]]], "type": "MultiLineString"}, "id": "138", "properties": {}, "type": "Feature"}, {"bbox": [8.517174, 47.341875, 8.517671, 47.342956], "geometry": {"coordinates": [[[8.517671, 47.341875], [8.517174, 47.342956]]], "type": "MultiLineString"}, "id": "140", "properties": {}, "type": "Feature"}, {"bbox": [8.564725, 47.360386, 8.564758, 47.360957], "geometry": {"coordinates": [[[8.564725, 47.360386], [8.564758, 47.360957]]], "type": "MultiLineString"}, "id": "141", "properties": {}, "type": "Feature"}, {"bbox": [8.516994, 47.38907, 8.518036, 47.390012], "geometry": {"coordinates": [[[8.517514, 47.390012], [8.517497, 47.389984], [8.518036, 47.389804], [8.517493, 47.38907], [8.516994, 47.389235]]], "type": "MultiLineString"}, "id": "142", "properties": {}, "type": "Feature"}, {"bbox": [8.546452, 47.363848, 8.546711, 47.363915], "geometry": {"coordinates": [[[8.546452, 47.363848], [8.546711, 47.363915]]], "type": "MultiLineString"}, "id": "146", "properties": {}, "type": "Feature"}, {"bbox": [8.502517, 47.400235, 8.50285, 47.400638], "geometry": {"coordinates": [[[8.502517, 47.400235], [8.502682, 47.400455], [8.50285, 47.400638]]], "type": "MultiLineString"}, "id": "147", "properties": {}, "type": "Feature"}, {"bbox": [8.524473, 47.395122, 8.52485, 47.395737], "geometry": {"coordinates": [[[8.524473, 47.395122], [8.524517, 47.39518], [8.52482, 47.395686], [8.52485, 47.395737]]], "type": "MultiLineString"}, "id": "150", "properties": {}, "type": "Feature"}, {"bbox": [8.524077, 47.377857, 8.525193, 47.378304], "geometry": {"coordinates": [[[8.525193, 47.377857], [8.524077, 47.378304]]], "type": "MultiLineString"}, "id": "151", "properties": {}, "type": "Feature"}, {"bbox": [8.555994, 47.370514, 8.556882, 47.371332], "geometry": {"coordinates": [[[8.555994, 47.371332], [8.556106, 47.371201], [8.556882, 47.370514]]], "type": "MultiLineString"}, "id": "156", "properties": {}, "type": "Feature"}, {"bbox": [8.486847, 47.352864, 8.490289, 47.358444], "geometry": {"coordinates": [[[8.486847, 47.358444], [8.486877, 47.35842], [8.487366, 47.358112], [8.487398, 47.358092], [8.487428, 47.358069], [8.487456, 47.358046], [8.4875, 47.358006], [8.48752, 47.357989], [8.487543, 47.357973], [8.487567, 47.357959], [8.487609, 47.357935], [8.487643, 47.357907], [8.487709, 47.357827], [8.487716, 47.35782], [8.487725, 47.357812], [8.487734, 47.357806], [8.487743, 47.3578], [8.487754, 47.357794], [8.487765, 47.357789], [8.487777, 47.357785], [8.48779, 47.357782], [8.487802, 47.357779], [8.487815, 47.357777], [8.488079, 47.357745], [8.488118, 47.357742], [8.488125, 47.357741], [8.488131, 47.357741], [8.488137, 47.35774], [8.488142, 47.357738], [8.488148, 47.357737], [8.488153, 47.357734], [8.488183, 47.357723], [8.488212, 47.357712], [8.488241, 47.3577], [8.48827, 47.357688], [8.488297, 47.357674], [8.488323, 47.357659], [8.488343, 47.357648], [8.488363, 47.357639], [8.488385, 47.35763], [8.488408, 47.357623], [8.488432, 47.357618], [8.488456, 47.357613], [8.488481, 47.357611], [8.488506, 47.357609], [8.488531, 47.35761], [8.488556, 47.357611], [8.488581, 47.357614], [8.488604, 47.357617], [8.488628, 47.357619], [8.488651, 47.357619], [8.488675, 47.357618], [8.488699, 47.357615], [8.488722, 47.357611], [8.488744, 47.357606], [8.488766, 47.357599], [8.48886, 47.357567], [8.488866, 47.357575], [8.488868, 47.357576], [8.488869, 47.357578], [8.488871, 47.357579], [8.488872, 47.35758], [8.488874, 47.357581], [8.488876, 47.357582], [8.488879, 47.357583], [8.488881, 47.357584], [8.488883, 47.357585], [8.488886, 47.357585], [8.488888, 47.357585], [8.488891, 47.357586], [8.488893, 47.357586], [8.488896, 47.357585], [8.488898, 47.357585], [8.488901, 47.357585], [8.488903, 47.357584], [8.488905, 47.357583], [8.488907, 47.357583], [8.48891, 47.357582], [8.488911, 47.35758], [8.488913, 47.357579], [8.488915, 47.357578], [8.488916, 47.357577], [8.488918, 47.357575], [8.488919, 47.357574], [8.48892, 47.357572], [8.48892, 47.35757], [8.488921, 47.357569], [8.488921, 47.357565], [8.488923, 47.357562], [8.488924, 47.357559], [8.488926, 47.357556], [8.488929, 47.357553], [8.488931, 47.357551], [8.488935, 47.357548], [8.488938, 47.357546], [8.488942, 47.357544], [8.488945, 47.357542], [8.489035, 47.357504], [8.489046, 47.357499], [8.489057, 47.357496], [8.489069, 47.357493], [8.489082, 47.357491], [8.489094, 47.357489], [8.489107, 47.357488], [8.48912, 47.357488], [8.489133, 47.357489], [8.489145, 47.357491], [8.489157, 47.357493], [8.489169, 47.357496], [8.489181, 47.3575], [8.489318, 47.357548], [8.489333, 47.357553], [8.489348, 47.357557], [8.489363, 47.357559], [8.489379, 47.357561], [8.489395, 47.357562], [8.489411, 47.357562], [8.489427, 47.357561], [8.489443, 47.357558], [8.489709, 47.357513], [8.489714, 47.357512], [8.489719, 47.357511], [8.489725, 47.357509], [8.489729, 47.357507], [8.489734, 47.357504], [8.489738, 47.357502], [8.489742, 47.357499], [8.489746, 47.357496], [8.489749, 47.357492], [8.489751, 47.357489], [8.489753, 47.357485], [8.489755, 47.357482], [8.489756, 47.357478], [8.489757, 47.357474], [8.489768, 47.35735], [8.489769, 47.357345], [8.48977, 47.35734], [8.489772, 47.357335], [8.489775, 47.35733], [8.489778, 47.357325], [8.489782, 47.357321], [8.489786, 47.357316], [8.489791, 47.357312], [8.489968, 47.357178], [8.490062, 47.357097], [8.490175, 47.356975], [8.490284, 47.356857], [8.490285, 47.356855], [8.490287, 47.356853], [8.490288, 47.356851], [8.490289, 47.356848], [8.490289, 47.356846], [8.490289, 47.356844], [8.490289, 47.356841], [8.490289, 47.356839], [8.490288, 47.356837], [8.490287, 47.356835], [8.490286, 47.356832], [8.490284, 47.35683], [8.490232, 47.356768], [8.490228, 47.356764], [8.490223, 47.35676], [8.490218, 47.356756], [8.490213, 47.356752], [8.490207, 47.356749], [8.490201, 47.356746], [8.490195, 47.356744], [8.490043, 47.35666], [8.489951, 47.356544], [8.489927, 47.35649], [8.489918, 47.356474], [8.489908, 47.356459], [8.489897, 47.356444], [8.489883, 47.35643], [8.489868, 47.356416], [8.489846, 47.356397], [8.489827, 47.356376], [8.48981, 47.356353], [8.489796, 47.35633], [8.489786, 47.356307], [8.489778, 47.356282], [8.489751, 47.356173], [8.489748, 47.356065], [8.489747, 47.356053], [8.489744, 47.356041], [8.48974, 47.35603], [8.489735, 47.356019], [8.489688, 47.355935], [8.489684, 47.355926], [8.48968, 47.355916], [8.489678, 47.355906], [8.489678, 47.355896], [8.489679, 47.355886], [8.489681, 47.355876], [8.489703, 47.3558], [8.489775, 47.355584], [8.48978, 47.355572], [8.489787, 47.35556], [8.489795, 47.355548], [8.489799, 47.355543], [8.489802, 47.355537], [8.489805, 47.355532], [8.489807, 47.355526], [8.489808, 47.35552], [8.489808, 47.355514], [8.489808, 47.355508], [8.489807, 47.355502], [8.489766, 47.355324], [8.489762, 47.355313], [8.489758, 47.355302], [8.489751, 47.355291], [8.489744, 47.35528], [8.489711, 47.355241], [8.489703, 47.35523], [8.489696, 47.355219], [8.489691, 47.355207], [8.489687, 47.355194], [8.48968, 47.355163], [8.489678, 47.355153], [8.489678, 47.355143], [8.489679, 47.355133], [8.489681, 47.355124], [8.489684, 47.355114], [8.489689, 47.355105], [8.489736, 47.355025], [8.489751, 47.354995], [8.489763, 47.354963], [8.48977, 47.354932], [8.489772, 47.3549], [8.489774, 47.35476], [8.489776, 47.35473], [8.489781, 47.354701], [8.48979, 47.354672], [8.48981, 47.354615], [8.489819, 47.354585], [8.489825, 47.354555], [8.489827, 47.354525], [8.489833, 47.354322], [8.489831, 47.354295], [8.489827, 47.354268], [8.489819, 47.354241], [8.489807, 47.354215], [8.489784, 47.354172], [8.489778, 47.354159], [8.489774, 47.354146], [8.489771, 47.354133], [8.489766, 47.354108], [8.489759, 47.354083], [8.489751, 47.354059], [8.489733, 47.354012], [8.489724, 47.353991], [8.489712, 47.353971], [8.489698, 47.353951], [8.489682, 47.353932], [8.489642, 47.353889], [8.489618, 47.353846], [8.48956, 47.353569], [8.489526, 47.353435], [8.489518, 47.353417], [8.489508, 47.353399], [8.489495, 47.353382], [8.489481, 47.353366], [8.489465, 47.353351], [8.489446, 47.353336], [8.489426, 47.353323], [8.489405, 47.353311], [8.489394, 47.353303], [8.489127, 47.353166], [8.488552, 47.352864]]], "type": "MultiLineString"}, "id": "157", "properties": {}, "type": "Feature"}, {"bbox": [8.542079, 47.405652, 8.542832, 47.405894], "geometry": {"coordinates": [[[8.542832, 47.405652], [8.542079, 47.405894]]], "type": "MultiLineString"}, "id": "159", "properties": {}, "type": "Feature"}, {"bbox": [8.526379, 47.384933, 8.526738, 47.385143], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526379, 47.384933]]], "type": "MultiLineString"}, "id": "161", "properties": {}, "type": "Feature"}, {"bbox": [8.570588, 47.405267, 8.570717, 47.405449], "geometry": {"coordinates": [[[8.570588, 47.405267], [8.570717, 47.405449]]], "type": "MultiLineString"}, "id": "162", "properties": {}, "type": "Feature"}, {"bbox": [8.500538, 47.337617, 8.511381, 47.343329], "geometry": {"coordinates": [[[8.511381, 47.342977], [8.510859, 47.342798], [8.510797, 47.342775], [8.510737, 47.34275], [8.510679, 47.342722], [8.510112, 47.342434], [8.50994, 47.34236], [8.509922, 47.342352], [8.509902, 47.342346], [8.509882, 47.342341], [8.509861, 47.342337], [8.50984, 47.342335], [8.509819, 47.342333], [8.509798, 47.342333], [8.509776, 47.342335], [8.509755, 47.342337], [8.509734, 47.342341], [8.509714, 47.342346], [8.509695, 47.342352], [8.509676, 47.342359], [8.509334, 47.342503], [8.509314, 47.342513], [8.509296, 47.342523], [8.509278, 47.342535], [8.509263, 47.342547], [8.509249, 47.342561], [8.509236, 47.342575], [8.509226, 47.34259], [8.509218, 47.342605], [8.509211, 47.342621], [8.509207, 47.342637], [8.509205, 47.342654], [8.509205, 47.34267], [8.509207, 47.342686], [8.509215, 47.342742], [8.509217, 47.342798], [8.509212, 47.342853], [8.509184, 47.343042], [8.509181, 47.343054], [8.509177, 47.343066], [8.509172, 47.343078], [8.509164, 47.343089], [8.509156, 47.3431], [8.509146, 47.343111], [8.509135, 47.343121], [8.508901, 47.34331], [8.508896, 47.343314], [8.508891, 47.343317], [8.508886, 47.343319], [8.50888, 47.343322], [8.508875, 47.343324], [8.508869, 47.343326], [8.508862, 47.343327], [8.508856, 47.343328], [8.508849, 47.343329], [8.508843, 47.343329], [8.508836, 47.343329], [8.508829, 47.343328], [8.508823, 47.343327], [8.508817, 47.343326], [8.508811, 47.343324], [8.508805, 47.343322], [8.508799, 47.343319], [8.508794, 47.343317], [8.508789, 47.343314], [8.508785, 47.34331], [8.508781, 47.343307], [8.508777, 47.343303], [8.508774, 47.343299], [8.508772, 47.343295], [8.50877, 47.343291], [8.508768, 47.343286], [8.508767, 47.343282], [8.508767, 47.343277], [8.508767, 47.343273], [8.508768, 47.343268], [8.50877, 47.343264], [8.508772, 47.34326], [8.508774, 47.343256], [8.508777, 47.343252], [8.508781, 47.343248], [8.508785, 47.343244], [8.508862, 47.343181], [8.508874, 47.34317], [8.508885, 47.343159], [8.508894, 47.343147], [8.508902, 47.343134], [8.508908, 47.343121], [8.508913, 47.343108], [8.508916, 47.343095], [8.508917, 47.343081], [8.508917, 47.343067], [8.508915, 47.343054], [8.508911, 47.343041], [8.508823, 47.342783], [8.508673, 47.342517], [8.508661, 47.342498], [8.508646, 47.34248], [8.508629, 47.342462], [8.50861, 47.342446], [8.508589, 47.342431], [8.508566, 47.342417], [8.508542, 47.342405], [8.508495, 47.342381], [8.508451, 47.342353], [8.508412, 47.342323], [8.508283, 47.342213], [8.508264, 47.342195], [8.508247, 47.342176], [8.508232, 47.342157], [8.50822, 47.342136], [8.508211, 47.342115], [8.508204, 47.342093], [8.508199, 47.342071], [8.508198, 47.342049], [8.508199, 47.342026], [8.508203, 47.342004], [8.508266, 47.341739], [8.50827, 47.34172], [8.508271, 47.341701], [8.508269, 47.341682], [8.508269, 47.341678], [8.508267, 47.341674], [8.508265, 47.34167], [8.508263, 47.341666], [8.50826, 47.341662], [8.508257, 47.341659], [8.508253, 47.341656], [8.508249, 47.341653], [8.508245, 47.34165], [8.50824, 47.341647], [8.508235, 47.341645], [8.508229, 47.341643], [8.508223, 47.341642], [8.508218, 47.341641], [8.508212, 47.34164], [8.508206, 47.341639], [8.5082, 47.341639], [8.508194, 47.34164], [8.508188, 47.34164], [8.508182, 47.341641], [8.508176, 47.341643], [8.508171, 47.341644], [8.508165, 47.341646], [8.50816, 47.341649], [8.508142, 47.341659], [8.508125, 47.341671], [8.50811, 47.341684], [8.508096, 47.341697], [8.50807, 47.341728], [8.508045, 47.341759], [8.508021, 47.34179], [8.507965, 47.341861], [8.507901, 47.341929], [8.507831, 47.341994], [8.507711, 47.342099], [8.507702, 47.342108], [8.507693, 47.342118], [8.507687, 47.342128], [8.507681, 47.342138], [8.507677, 47.342149], [8.507674, 47.34216], [8.507673, 47.342171], [8.507673, 47.342182], [8.507675, 47.342193], [8.507678, 47.342204], [8.507682, 47.342214], [8.507688, 47.342225], [8.507695, 47.342234], [8.507704, 47.342244], [8.507714, 47.342253], [8.507724, 47.342261], [8.508109, 47.342528], [8.508116, 47.342534], [8.508123, 47.34254], [8.508129, 47.342547], [8.508134, 47.342554], [8.508138, 47.342561], [8.508141, 47.342568], [8.508144, 47.342576], [8.508145, 47.342584], [8.508145, 47.342591], [8.508144, 47.342599], [8.508143, 47.342607], [8.50814, 47.342614], [8.508136, 47.342621], [8.508131, 47.342628], [8.508126, 47.342635], [8.508119, 47.342642], [8.507877, 47.34286], [8.50786, 47.342877], [8.507845, 47.342896], [8.507833, 47.342915], [8.507823, 47.342935], [8.507804, 47.342985], [8.507802, 47.34299], [8.507799, 47.342994], [8.507795, 47.342999], [8.507791, 47.343003], [8.507787, 47.343007], [8.507782, 47.343011], [8.507776, 47.343014], [8.507771, 47.343017], [8.507764, 47.34302], [8.507758, 47.343022], [8.507751, 47.343024], [8.507744, 47.343026], [8.507737, 47.343027], [8.507729, 47.343028], [8.507722, 47.343028], [8.507715, 47.343028], [8.507707, 47.343027], [8.5077, 47.343026], [8.507693, 47.343025], [8.507686, 47.343023], [8.507679, 47.343021], [8.507673, 47.343018], [8.507667, 47.343015], [8.507661, 47.343012], [8.507656, 47.343008], [8.507652, 47.343004], [8.507648, 47.343], [8.507644, 47.342995], [8.507641, 47.342991], [8.507639, 47.342986], [8.507637, 47.342981], [8.507636, 47.342976], [8.507635, 47.342971], [8.507635, 47.342966], [8.507636, 47.342961], [8.507638, 47.342956], [8.50764, 47.342951], [8.507642, 47.342947], [8.507646, 47.342942], [8.507815, 47.34273], [8.507857, 47.342653], [8.507861, 47.342645], [8.507864, 47.342636], [8.507865, 47.342628], [8.507866, 47.342619], [8.507866, 47.34261], [8.507864, 47.342601], [8.507862, 47.342593], [8.507858, 47.342584], [8.507853, 47.342576], [8.507848, 47.342568], [8.507841, 47.342561], [8.507833, 47.342554], [8.507825, 47.342547], [8.507815, 47.342541], [8.507805, 47.342536], [8.507795, 47.342531], [8.507603, 47.342451], [8.507564, 47.342434], [8.507527, 47.342414], [8.507494, 47.342392], [8.507463, 47.342368], [8.507435, 47.342342], [8.50741, 47.342315], [8.507334, 47.342224], [8.507312, 47.3422], [8.507288, 47.342177], [8.50726, 47.342157], [8.50723, 47.342138], [8.507198, 47.34212], [8.507083, 47.342064], [8.507045, 47.342043], [8.50701, 47.342021], [8.506978, 47.341996], [8.50695, 47.34197], [8.506925, 47.341942], [8.506904, 47.341912], [8.506886, 47.341881], [8.506873, 47.34185], [8.506864, 47.341818], [8.506859, 47.341785], [8.506829, 47.341401], [8.506829, 47.341388], [8.50683, 47.341376], [8.506833, 47.341363], [8.506838, 47.341351], [8.506844, 47.341339], [8.50686, 47.341311], [8.506872, 47.341282], [8.506879, 47.341252], [8.506884, 47.341222], [8.506884, 47.341218], [8.506883, 47.341214], [8.506882, 47.341211], [8.506881, 47.341207], [8.506879, 47.341203], [8.506877, 47.3412], [8.506874, 47.341197], [8.506871, 47.341194], [8.506867, 47.341191], [8.506864, 47.341188], [8.506859, 47.341186], [8.506855, 47.341183], [8.50685, 47.341181], [8.506845, 47.34118], [8.50684, 47.341178], [8.506835, 47.341177], [8.50683, 47.341177], [8.506824, 47.341176], [8.506819, 47.341176], [8.506813, 47.341176], [8.506808, 47.341177], [8.506802, 47.341178], [8.506797, 47.341179], [8.506792, 47.341181], [8.506787, 47.341182], [8.506783, 47.341184], [8.506778, 47.341187], [8.506774, 47.341189], [8.506771, 47.341192], [8.506767, 47.341195], [8.506733, 47.341232], [8.506704, 47.341271], [8.50668, 47.341311], [8.506615, 47.341436], [8.506514, 47.341582], [8.506427, 47.341684], [8.506421, 47.341692], [8.506416, 47.341701], [8.506413, 47.341709], [8.50641, 47.341718], [8.506409, 47.341727], [8.506409, 47.341736], [8.50641, 47.341745], [8.506412, 47.341754], [8.506415, 47.341762], [8.506443, 47.341823], [8.506447, 47.341833], [8.50645, 47.341843], [8.506452, 47.341853], [8.506452, 47.341863], [8.506451, 47.341873], [8.506449, 47.341883], [8.506445, 47.341893], [8.506441, 47.341903], [8.506439, 47.341906], [8.506437, 47.341909], [8.506434, 47.341912], [8.506431, 47.341914], [8.506428, 47.341917], [8.506424, 47.341919], [8.506421, 47.341921], [8.506416, 47.341922], [8.506412, 47.341924], [8.506408, 47.341925], [8.506403, 47.341926], [8.506399, 47.341927], [8.506394, 47.341927], [8.506389, 47.341927], [8.506384, 47.341927], [8.50638, 47.341926], [8.506375, 47.341925], [8.506371, 47.341924], [8.506366, 47.341923], [8.506362, 47.341921], [8.506358, 47.34192], [8.506355, 47.341918], [8.506351, 47.341915], [8.506348, 47.341913], [8.506317, 47.341882], [8.506289, 47.34185], [8.506266, 47.341817], [8.506247, 47.341782], [8.506233, 47.341746], [8.506224, 47.34171], [8.506219, 47.341673], [8.506215, 47.34164], [8.506206, 47.341608], [8.506193, 47.341577], [8.506176, 47.341547], [8.50616, 47.341518], [8.506148, 47.341488], [8.50614, 47.341457], [8.506136, 47.341426], [8.506136, 47.341395], [8.50614, 47.341364], [8.506216, 47.340992], [8.506219, 47.34098], [8.506224, 47.340968], [8.50623, 47.340957], [8.506237, 47.340946], [8.506247, 47.340936], [8.506257, 47.340926], [8.506269, 47.340917], [8.506282, 47.340909], [8.506296, 47.340902], [8.50631, 47.340895], [8.506326, 47.34089], [8.506793, 47.340741], [8.5068, 47.340738], [8.506807, 47.340735], [8.506813, 47.340732], [8.506819, 47.340728], [8.506825, 47.340724], [8.50683, 47.34072], [8.506834, 47.340715], [8.506838, 47.34071], [8.506841, 47.340705], [8.506844, 47.3407], [8.506846, 47.340695], [8.506847, 47.340689], [8.506847, 47.340684], [8.506847, 47.340678], [8.506846, 47.340673], [8.506844, 47.340667], [8.506842, 47.340662], [8.506839, 47.340657], [8.506836, 47.340652], [8.506832, 47.340647], [8.506827, 47.340643], [8.506822, 47.340639], [8.506816, 47.340635], [8.506809, 47.340631], [8.506471, 47.340456], [8.506447, 47.340443], [8.506426, 47.340428], [8.506406, 47.340412], [8.506389, 47.340396], [8.506373, 47.340378], [8.50636, 47.34036], [8.506349, 47.34034], [8.506341, 47.340321], [8.506335, 47.3403], [8.506331, 47.34028], [8.506331, 47.340259], [8.506332, 47.340239], [8.506337, 47.340219], [8.506344, 47.340199], [8.506353, 47.340179], [8.506407, 47.340081], [8.506417, 47.34006], [8.506424, 47.340038], [8.506428, 47.340016], [8.50643, 47.339994], [8.506428, 47.339972], [8.506423, 47.33995], [8.506368, 47.339752], [8.506362, 47.339723], [8.506358, 47.339695], [8.506356, 47.339667], [8.506355, 47.339583], [8.506353, 47.339565], [8.506349, 47.339548], [8.506343, 47.339531], [8.506335, 47.339514], [8.506324, 47.339498], [8.506311, 47.339483], [8.50623, 47.339398], [8.506202, 47.339366], [8.506179, 47.339333], [8.506159, 47.339299], [8.506144, 47.339264], [8.506134, 47.339228], [8.506127, 47.339192], [8.506125, 47.339155], [8.506128, 47.339119], [8.506136, 47.339052], [8.506143, 47.339016], [8.506155, 47.338979], [8.506172, 47.338944], [8.506193, 47.33891], [8.506219, 47.338877], [8.506248, 47.338846], [8.50643, 47.338673], [8.506434, 47.338669], [8.506437, 47.338665], [8.50644, 47.338661], [8.506442, 47.338656], [8.506444, 47.338652], [8.506444, 47.338647], [8.506445, 47.338642], [8.506444, 47.338637], [8.506443, 47.338633], [8.506442, 47.338628], [8.50644, 47.338624], [8.506437, 47.338619], [8.506434, 47.338615], [8.50643, 47.338611], [8.506426, 47.338607], [8.506421, 47.338604], [8.506415, 47.338601], [8.50641, 47.338598], [8.506404, 47.338596], [8.506398, 47.338594], [8.506391, 47.338592], [8.506384, 47.338591], [8.506378, 47.33859], [8.506371, 47.338589], [8.506364, 47.338589], [8.506358, 47.338589], [8.506351, 47.33859], [8.506345, 47.338591], [8.506338, 47.338593], [8.506332, 47.338595], [8.506326, 47.338597], [8.506321, 47.338599], [8.506315, 47.338602], [8.506201, 47.338669], [8.506133, 47.338716], [8.506095, 47.338741], [8.506054, 47.338764], [8.506012, 47.338785], [8.5058, 47.338884], [8.505784, 47.338892], [8.505769, 47.338901], [8.505755, 47.338911], [8.505743, 47.338921], [8.505733, 47.338933], [8.505723, 47.338945], [8.505716, 47.338957], [8.50571, 47.33897], [8.505706, 47.338983], [8.505703, 47.338996], [8.505683, 47.339162], [8.50568, 47.339176], [8.505676, 47.339189], [8.50567, 47.339201], [8.505662, 47.339214], [8.505653, 47.339225], [8.505599, 47.339286], [8.50559, 47.339297], [8.505583, 47.339307], [8.505578, 47.339318], [8.505574, 47.33933], [8.505571, 47.339341], [8.505569, 47.339353], [8.505569, 47.339364], [8.505571, 47.339376], [8.505574, 47.339387], [8.505578, 47.339399], [8.505584, 47.33941], [8.505643, 47.339509], [8.505648, 47.339519], [8.505651, 47.339529], [8.505654, 47.339538], [8.505654, 47.339548], [8.505654, 47.339558], [8.505652, 47.339568], [8.505649, 47.339578], [8.505581, 47.339747], [8.505577, 47.339756], [8.505571, 47.339765], [8.505565, 47.339774], [8.505557, 47.339782], [8.505549, 47.339789], [8.505539, 47.339797], [8.505529, 47.339803], [8.505517, 47.339809], [8.505505, 47.339815], [8.505493, 47.339819], [8.50548, 47.339823], [8.505452, 47.339831], [8.505426, 47.339841], [8.505401, 47.339852], [8.505378, 47.339864], [8.505356, 47.339878], [8.505336, 47.339893], [8.505318, 47.339909], [8.505302, 47.339926], [8.505288, 47.339944], [8.505277, 47.339963], [8.505268, 47.339982], [8.505262, 47.340002], [8.505258, 47.340022], [8.505256, 47.340042], [8.505257, 47.340063], [8.505275, 47.340212], [8.505277, 47.340254], [8.505275, 47.340296], [8.505267, 47.340337], [8.505254, 47.340378], [8.505236, 47.340418], [8.505213, 47.340457], [8.505185, 47.340494], [8.505153, 47.34053], [8.505145, 47.340538], [8.505135, 47.340546], [8.505124, 47.340553], [8.505112, 47.340559], [8.5051, 47.340565], [8.505086, 47.34057], [8.505073, 47.340574], [8.505059, 47.340577], [8.505044, 47.340579], [8.505029, 47.340581], [8.505014, 47.340581], [8.504999, 47.340581], [8.504985, 47.34058], [8.50497, 47.340577], [8.504956, 47.340574], [8.504942, 47.340571], [8.504929, 47.340566], [8.504916, 47.34056], [8.504904, 47.340554], [8.504893, 47.340547], [8.504883, 47.34054], [8.504874, 47.340532], [8.504866, 47.340523], [8.504859, 47.340514], [8.504853, 47.340505], [8.504849, 47.340495], [8.504846, 47.340485], [8.504844, 47.340475], [8.504844, 47.340465], [8.504844, 47.340455], [8.504847, 47.340445], [8.50485, 47.340435], [8.504855, 47.340425], [8.504861, 47.340416], [8.504868, 47.340407], [8.504971, 47.340291], [8.504977, 47.340282], [8.504983, 47.340274], [8.504988, 47.340264], [8.504991, 47.340255], [8.504993, 47.340245], [8.504994, 47.340236], [8.504994, 47.340226], [8.504992, 47.340216], [8.50499, 47.340207], [8.504986, 47.340197], [8.504981, 47.340188], [8.504974, 47.340179], [8.504967, 47.340171], [8.504959, 47.340163], [8.504949, 47.340156], [8.504939, 47.340149], [8.504804, 47.340067], [8.504787, 47.340056], [8.504771, 47.340043], [8.504757, 47.34003], [8.504745, 47.340016], [8.504734, 47.340001], [8.504726, 47.339985], [8.50472, 47.339969], [8.504653, 47.339765], [8.504642, 47.339736], [8.504627, 47.339709], [8.504609, 47.339682], [8.504587, 47.339657], [8.504577, 47.339647], [8.504475, 47.339545], [8.504455, 47.339523], [8.504438, 47.3395], [8.504424, 47.339477], [8.504414, 47.339452], [8.504406, 47.339427], [8.504402, 47.339402], [8.504402, 47.339376], [8.504404, 47.339351], [8.50441, 47.339326], [8.50442, 47.339301], [8.504432, 47.339277], [8.504448, 47.339254], [8.504523, 47.339155], [8.504527, 47.339148], [8.504531, 47.339141], [8.504534, 47.339134], [8.504536, 47.339127], [8.504537, 47.339119], [8.504537, 47.339112], [8.504535, 47.339104], [8.504533, 47.339097], [8.504531, 47.33909], [8.504527, 47.339083], [8.504522, 47.339076], [8.504516, 47.33907], [8.50451, 47.339064], [8.504503, 47.339058], [8.504495, 47.339053], [8.504486, 47.339049], [8.504477, 47.339044], [8.504468, 47.339041], [8.504458, 47.339038], [8.504448, 47.339035], [8.504437, 47.339034], [8.504426, 47.339032], [8.504415, 47.339032], [8.504404, 47.339032], [8.504393, 47.339033], [8.504383, 47.339034], [8.504372, 47.339036], [8.504362, 47.339039], [8.504352, 47.339042], [8.504343, 47.339046], [8.504334, 47.339051], [8.504326, 47.339056], [8.504319, 47.339061], [8.504312, 47.339067], [8.504221, 47.339153], [8.503894, 47.3395], [8.503889, 47.339505], [8.503884, 47.33951], [8.503878, 47.339514], [8.503871, 47.339517], [8.503864, 47.339521], [8.503857, 47.339524], [8.503849, 47.339526], [8.503841, 47.339528], [8.503833, 47.33953], [8.503824, 47.339531], [8.503816, 47.339531], [8.503807, 47.339531], [8.503798, 47.339531], [8.50379, 47.33953], [8.503782, 47.339529], [8.503774, 47.339527], [8.503766, 47.339524], [8.503758, 47.339521], [8.503751, 47.339518], [8.503744, 47.339514], [8.503738, 47.33951], [8.503733, 47.339506], [8.503728, 47.339501], [8.503723, 47.339496], [8.503719, 47.339491], [8.503716, 47.339486], [8.503714, 47.33948], [8.503712, 47.339474], [8.503711, 47.339468], [8.503705, 47.339404], [8.503701, 47.339313], [8.503707, 47.339222], [8.503724, 47.339132], [8.503751, 47.339043], [8.503833, 47.338817], [8.503983, 47.338465], [8.503996, 47.338438], [8.504013, 47.338412], [8.504033, 47.338387], [8.504055, 47.338364], [8.504081, 47.338341], [8.504109, 47.338321], [8.50414, 47.338302], [8.504173, 47.338284], [8.504208, 47.338269], [8.504328, 47.338221], [8.504346, 47.338213], [8.504363, 47.338204], [8.504378, 47.338194], [8.504393, 47.338183], [8.504405, 47.338172], [8.504416, 47.338159], [8.504426, 47.338146], [8.504433, 47.338132], [8.504439, 47.338118], [8.504443, 47.338104], [8.504445, 47.338089], [8.504444, 47.338075], [8.504438, 47.337979], [8.504437, 47.337949], [8.504441, 47.337918], [8.504448, 47.337888], [8.504458, 47.337858], [8.504473, 47.337829], [8.50449, 47.337801], [8.504545, 47.337721], [8.504549, 47.337715], [8.504552, 47.337709], [8.504554, 47.337703], [8.504555, 47.337697], [8.504556, 47.337691], [8.504555, 47.337684], [8.504554, 47.337678], [8.504552, 47.337672], [8.50455, 47.337666], [8.504546, 47.33766], [8.504542, 47.337654], [8.504537, 47.337649], [8.504531, 47.337644], [8.504525, 47.337639], [8.504518, 47.337635], [8.504511, 47.337631], [8.504503, 47.337627], [8.504494, 47.337624], [8.504486, 47.337622], [8.504477, 47.33762], [8.504468, 47.337619], [8.504459, 47.337618], [8.504449, 47.337617], [8.50444, 47.337618], [8.504431, 47.337618], [8.504421, 47.33762], [8.504413, 47.337622], [8.504404, 47.337624], [8.504396, 47.337627], [8.504388, 47.33763], [8.50438, 47.337634], [8.504373, 47.337639], [8.504367, 47.337643], [8.50425, 47.337737], [8.504129, 47.337861], [8.504115, 47.337877], [8.504102, 47.337894], [8.504092, 47.337912], [8.504082, 47.337931], [8.504069, 47.337949], [8.504054, 47.337966], [8.504037, 47.337982], [8.504018, 47.337997], [8.503997, 47.338011], [8.50385, 47.338097], [8.503822, 47.338113], [8.503791, 47.338126], [8.503758, 47.338138], [8.503724, 47.338148], [8.503689, 47.338155], [8.503653, 47.338161], [8.503617, 47.338164], [8.503334, 47.338179], [8.503268, 47.338184], [8.503202, 47.338194], [8.503138, 47.338207], [8.503076, 47.338223], [8.503016, 47.338244], [8.502959, 47.338267], [8.502905, 47.338294], [8.502743, 47.338381], [8.502658, 47.338427], [8.502361, 47.338614], [8.502331, 47.338631], [8.502299, 47.338647], [8.502265, 47.338661], [8.50223, 47.338673], [8.502063, 47.338725], [8.502049, 47.338729], [8.502036, 47.338735], [8.502024, 47.338741], [8.502013, 47.338748], [8.502003, 47.338755], [8.501993, 47.338764], [8.501985, 47.338772], [8.501978, 47.338781], [8.501972, 47.338791], [8.501967, 47.338801], [8.501964, 47.338811], [8.501892, 47.339072], [8.501877, 47.339116], [8.501856, 47.339159], [8.50183, 47.339201], [8.501628, 47.339487], [8.50161, 47.339509], [8.50159, 47.33953], [8.501566, 47.33955], [8.50154, 47.339569], [8.501512, 47.339585], [8.50149, 47.339597], [8.501466, 47.339606], [8.501441, 47.339615], [8.501415, 47.339622], [8.501388, 47.339627], [8.50136, 47.339631], [8.501332, 47.339633], [8.501305, 47.339633], [8.501277, 47.339632], [8.501249, 47.339629], [8.501222, 47.339625], [8.501195, 47.339619], [8.50117, 47.339611], [8.501145, 47.339602], [8.501122, 47.339591], [8.5011, 47.339579], [8.50108, 47.339566], [8.501061, 47.339552], [8.501044, 47.339537], [8.50103, 47.339521], [8.501017, 47.339504], [8.501007, 47.339486], [8.500999, 47.339468], [8.500993, 47.339449], [8.50099, 47.33943], [8.500973, 47.339272], [8.500965, 47.339226], [8.500952, 47.339181], [8.500933, 47.339137], [8.500908, 47.339094], [8.500822, 47.338962], [8.500796, 47.338916], [8.500775, 47.338869], [8.50076, 47.338821], [8.500738, 47.33873], [8.500619, 47.33832], [8.500562, 47.33815], [8.500538, 47.338098]]], "type": "MultiLineString"}, "id": "165", "properties": {}, "type": "Feature"}, {"bbox": [8.537073, 47.397405, 8.537829, 47.397951], "geometry": {"coordinates": [[[8.537829, 47.397405], [8.537073, 47.397951]]], "type": "MultiLineString"}, "id": "167", "properties": {}, "type": "Feature"}, {"bbox": [8.532453, 47.340658, 8.532881, 47.34071], "geometry": {"coordinates": [[[8.532881, 47.340658], [8.532453, 47.34071]]], "type": "MultiLineString"}, "id": "168", "properties": {}, "type": "Feature"}, {"bbox": [8.588578, 47.359076, 8.589072, 47.359809], "geometry": {"coordinates": [[[8.588578, 47.359809], [8.589072, 47.359076]]], "type": "MultiLineString"}, "id": "171", "properties": {}, "type": "Feature"}, {"bbox": [8.546656, 47.366147, 8.547546, 47.366644], "geometry": {"coordinates": [[[8.546656, 47.366147], [8.546724, 47.366192], [8.547427, 47.366634], [8.547546, 47.366644]]], "type": "MultiLineString"}, "id": "173", "properties": {}, "type": "Feature"}, {"bbox": [8.488164, 47.353166, 8.489737, 47.357567], "geometry": {"coordinates": [[[8.48886, 47.357567], [8.488853, 47.357551], [8.488852, 47.357547], [8.488851, 47.357543], [8.48885, 47.357539], [8.48885, 47.357535], [8.488851, 47.357532], [8.488852, 47.357528], [8.488854, 47.357524], [8.488856, 47.357521], [8.488858, 47.357517], [8.488861, 47.357514], [8.488864, 47.357511], [8.488868, 47.357508], [8.488872, 47.357505], [8.488877, 47.357503], [8.488881, 47.3575], [8.488937, 47.357481], [8.488947, 47.357478], [8.488956, 47.357473], [8.488964, 47.357469], [8.488972, 47.357464], [8.48898, 47.357458], [8.488986, 47.357452], [8.488992, 47.357446], [8.488997, 47.357439], [8.489001, 47.357432], [8.489004, 47.357425], [8.489006, 47.357418], [8.489008, 47.357411], [8.489008, 47.357403], [8.489008, 47.357396], [8.489006, 47.357367], [8.489008, 47.357338], [8.489013, 47.357309], [8.489022, 47.35728], [8.489034, 47.357252], [8.48907, 47.357179], [8.489077, 47.357169], [8.489085, 47.357159], [8.489094, 47.357149], [8.489105, 47.35714], [8.489111, 47.357137], [8.489118, 47.357133], [8.489123, 47.357129], [8.489128, 47.357125], [8.489133, 47.35712], [8.489136, 47.357115], [8.489146, 47.357096], [8.489154, 47.357076], [8.489158, 47.357055], [8.489161, 47.357035], [8.48916, 47.357014], [8.489157, 47.356994], [8.489152, 47.356974], [8.489143, 47.356954], [8.489133, 47.356935], [8.489077, 47.356844], [8.489047, 47.356803], [8.489012, 47.356763], [8.488971, 47.356726], [8.48884, 47.35662], [8.488822, 47.356604], [8.488806, 47.356588], [8.488792, 47.35657], [8.488779, 47.356546], [8.48877, 47.356524], [8.48876, 47.356502], [8.488748, 47.356481], [8.488738, 47.356463], [8.488726, 47.356446], [8.488713, 47.356429], [8.488697, 47.356409], [8.48868, 47.35639], [8.488663, 47.35637], [8.488656, 47.356362], [8.488648, 47.356355], [8.488639, 47.356348], [8.488629, 47.356341], [8.488619, 47.356335], [8.488608, 47.35633], [8.488596, 47.356326], [8.488559, 47.356311], [8.488589, 47.35626], [8.488625, 47.356211], [8.488663, 47.356162], [8.488704, 47.356114], [8.488707, 47.356109], [8.48871, 47.356105], [8.488712, 47.356101], [8.488713, 47.356096], [8.488714, 47.356091], [8.488715, 47.356087], [8.488714, 47.356082], [8.488713, 47.356077], [8.488712, 47.356073], [8.48871, 47.356068], [8.488707, 47.356064], [8.488704, 47.35606], [8.4887, 47.356056], [8.488696, 47.356052], [8.488688, 47.356045], [8.488679, 47.356038], [8.488671, 47.356031], [8.488665, 47.356025], [8.48866, 47.356018], [8.488655, 47.356011], [8.488652, 47.356004], [8.488649, 47.355997], [8.488647, 47.355989], [8.488647, 47.355981], [8.488647, 47.355974], [8.488648, 47.355966], [8.48865, 47.355959], [8.488653, 47.355951], [8.488656, 47.355946], [8.488658, 47.35594], [8.488659, 47.355934], [8.488659, 47.355927], [8.488658, 47.355921], [8.488657, 47.355915], [8.488655, 47.355909], [8.488627, 47.355883], [8.488625, 47.355881], [8.488622, 47.355879], [8.48862, 47.355877], [8.488619, 47.355875], [8.488617, 47.355873], [8.488616, 47.355871], [8.488615, 47.355868], [8.488614, 47.355866], [8.488614, 47.355863], [8.488614, 47.355861], [8.488615, 47.355858], [8.488615, 47.355856], [8.488616, 47.355854], [8.488617, 47.355851], [8.488619, 47.355849], [8.488621, 47.355847], [8.488623, 47.355845], [8.488685, 47.355827], [8.488688, 47.355805], [8.488689, 47.355784], [8.488687, 47.355762], [8.488682, 47.355741], [8.488675, 47.35572], [8.488665, 47.355699], [8.488652, 47.35568], [8.488636, 47.355661], [8.488619, 47.355643], [8.488599, 47.355626], [8.488577, 47.35561], [8.488552, 47.355593], [8.48853, 47.355575], [8.48851, 47.355555], [8.488493, 47.355535], [8.488478, 47.355513], [8.488452, 47.355472], [8.488426, 47.355431], [8.488399, 47.355389], [8.488374, 47.355352], [8.488347, 47.355316], [8.488319, 47.355279], [8.488316, 47.355277], [8.488313, 47.355274], [8.48831, 47.355271], [8.488306, 47.355269], [8.488302, 47.355267], [8.488243, 47.355256], [8.488202, 47.355225], [8.488189, 47.355205], [8.488177, 47.355185], [8.488166, 47.355165], [8.488165, 47.355162], [8.488164, 47.35516], [8.488164, 47.355158], [8.488164, 47.355155], [8.488164, 47.355153], [8.488164, 47.35515], [8.488165, 47.355148], [8.488166, 47.355146], [8.488168, 47.355144], [8.48817, 47.355142], [8.488172, 47.35514], [8.488174, 47.355138], [8.488176, 47.355136], [8.488179, 47.355134], [8.488182, 47.355133], [8.488185, 47.355132], [8.488188, 47.355131], [8.488192, 47.355129], [8.488196, 47.355128], [8.488199, 47.355126], [8.488203, 47.355124], [8.488206, 47.355122], [8.488209, 47.35512], [8.488211, 47.355117], [8.488213, 47.355114], [8.488215, 47.355112], [8.488216, 47.355109], [8.488217, 47.355106], [8.488218, 47.355103], [8.488218, 47.3551], [8.488218, 47.355089], [8.488219, 47.355078], [8.48822, 47.355067], [8.48822, 47.355065], [8.488219, 47.355063], [8.488219, 47.35506], [8.488218, 47.355058], [8.488217, 47.355056], [8.488215, 47.355053], [8.488214, 47.355051], [8.488212, 47.355049], [8.488209, 47.355047], [8.488207, 47.355045], [8.488204, 47.355044], [8.488202, 47.355042], [8.488199, 47.355041], [8.488196, 47.35504], [8.488194, 47.355039], [8.488192, 47.355038], [8.48819, 47.355036], [8.488188, 47.355035], [8.488187, 47.355033], [8.488186, 47.355032], [8.488185, 47.35503], [8.488184, 47.355028], [8.488183, 47.355026], [8.488183, 47.355024], [8.488183, 47.355022], [8.488183, 47.355021], [8.488183, 47.355019], [8.488184, 47.355017], [8.488185, 47.355015], [8.488186, 47.355013], [8.488187, 47.355012], [8.488189, 47.35501], [8.48819, 47.355009], [8.488192, 47.355007], [8.488194, 47.355006], [8.488197, 47.355005], [8.488199, 47.355004], [8.488201, 47.355003], [8.488204, 47.355002], [8.488207, 47.355002], [8.488209, 47.355001], [8.488212, 47.355001], [8.488215, 47.355001], [8.488218, 47.355001], [8.48822, 47.355002], [8.488226, 47.355002], [8.488231, 47.355002], [8.488236, 47.355002], [8.488241, 47.355002], [8.488246, 47.355001], [8.488251, 47.355], [8.488256, 47.354999], [8.488261, 47.354997], [8.488266, 47.354996], [8.488293, 47.354985], [8.488322, 47.354976], [8.488352, 47.354968], [8.488382, 47.354962], [8.488398, 47.354959], [8.488414, 47.354956], [8.488428, 47.354951], [8.488443, 47.354945], [8.488456, 47.354939], [8.488468, 47.354931], [8.48848, 47.354923], [8.48849, 47.354915], [8.488499, 47.354905], [8.488507, 47.354895], [8.48851, 47.354891], [8.488514, 47.354887], [8.488519, 47.354884], [8.488523, 47.35488], [8.488529, 47.354877], [8.488535, 47.354874], [8.488541, 47.354872], [8.488547, 47.35487], [8.488554, 47.354868], [8.488566, 47.354866], [8.488578, 47.354865], [8.488591, 47.354864], [8.488603, 47.354864], [8.488616, 47.354865], [8.488628, 47.354867], [8.48864, 47.354869], [8.488643, 47.35487], [8.488647, 47.35487], [8.48865, 47.35487], [8.488654, 47.35487], [8.488657, 47.35487], [8.48866, 47.35487], [8.488663, 47.354869], [8.488667, 47.354868], [8.48867, 47.354867], [8.488673, 47.354866], [8.488675, 47.354865], [8.488678, 47.354864], [8.48868, 47.354862], [8.488683, 47.35486], [8.488685, 47.354858], [8.488686, 47.354857], [8.488688, 47.354854], [8.488689, 47.354852], [8.48869, 47.35485], [8.488691, 47.354848], [8.488691, 47.354846], [8.488691, 47.354843], [8.488692, 47.354817], [8.488696, 47.354792], [8.488702, 47.354766], [8.488705, 47.354755], [8.488706, 47.354743], [8.488706, 47.354732], [8.488704, 47.354721], [8.488701, 47.354709], [8.488696, 47.354698], [8.48869, 47.354688], [8.488682, 47.354677], [8.488673, 47.354668], [8.488663, 47.354659], [8.488652, 47.35465], [8.48864, 47.354642], [8.488636, 47.35464], [8.488633, 47.354638], [8.488631, 47.354635], [8.488628, 47.354632], [8.488626, 47.354629], [8.488624, 47.354626], [8.488623, 47.354623], [8.488622, 47.35462], [8.488621, 47.354617], [8.488621, 47.354614], [8.488622, 47.354611], [8.488622, 47.354608], [8.488624, 47.354604], [8.488625, 47.354601], [8.488627, 47.354598], [8.488629, 47.354596], [8.488632, 47.354593], [8.488635, 47.354591], [8.488638, 47.354588], [8.488642, 47.354586], [8.488646, 47.354584], [8.48865, 47.354583], [8.488654, 47.354581], [8.488658, 47.35458], [8.488663, 47.354579], [8.488668, 47.354579], [8.488683, 47.354578], [8.488698, 47.354578], [8.488713, 47.354579], [8.488728, 47.354581], [8.488742, 47.354584], [8.488757, 47.354588], [8.48877, 47.354592], [8.488783, 47.354597], [8.488837, 47.35462], [8.488892, 47.354641], [8.488949, 47.35466], [8.488957, 47.354662], [8.488965, 47.354664], [8.488973, 47.354665], [8.488981, 47.354666], [8.488989, 47.354666], [8.488998, 47.354666], [8.489006, 47.354665], [8.489014, 47.354664], [8.489022, 47.354663], [8.48903, 47.354661], [8.489037, 47.354658], [8.489044, 47.354655], [8.489074, 47.354642], [8.489103, 47.354627], [8.489132, 47.354612], [8.48914, 47.354609], [8.489148, 47.354605], [8.489157, 47.354603], [8.489166, 47.354601], [8.489175, 47.354599], [8.489185, 47.354598], [8.489194, 47.354598], [8.489204, 47.354598], [8.489253, 47.354599], [8.489301, 47.354597], [8.48935, 47.354592], [8.489375, 47.354588], [8.489399, 47.354583], [8.489422, 47.354576], [8.489445, 47.354568], [8.489466, 47.354558], [8.489487, 47.354548], [8.489505, 47.354536], [8.489522, 47.354523], [8.489538, 47.354509], [8.489587, 47.354464], [8.489641, 47.354422], [8.489698, 47.354382], [8.489706, 47.354376], [8.489713, 47.35437], [8.489719, 47.354364], [8.489724, 47.354357], [8.489729, 47.35435], [8.489732, 47.354343], [8.489735, 47.354335], [8.489736, 47.354328], [8.489737, 47.35432], [8.489736, 47.354312], [8.489735, 47.354305], [8.489732, 47.354297], [8.489729, 47.35429], [8.489724, 47.354283], [8.489719, 47.354276], [8.489712, 47.35427], [8.489582, 47.354149], [8.489566, 47.354139], [8.489552, 47.354128], [8.489539, 47.354117], [8.489527, 47.354104], [8.489518, 47.354091], [8.48951, 47.354077], [8.489503, 47.354063], [8.489499, 47.354049], [8.489497, 47.354035], [8.489496, 47.35402], [8.489497, 47.354005], [8.489496, 47.353989], [8.489496, 47.353973], [8.489499, 47.353957], [8.489504, 47.353941], [8.489505, 47.353937], [8.489505, 47.353934], [8.489505, 47.35393], [8.489505, 47.353926], [8.489504, 47.353923], [8.489503, 47.353919], [8.489502, 47.353916], [8.4895, 47.353912], [8.489497, 47.353909], [8.489494, 47.353906], [8.489491, 47.353903], [8.489488, 47.3539], [8.489484, 47.353898], [8.489446, 47.353853], [8.489439, 47.353832], [8.489431, 47.353811], [8.489422, 47.353791], [8.489417, 47.353781], [8.48941, 47.353772], [8.489403, 47.353764], [8.489394, 47.353755], [8.489384, 47.353748], [8.489373, 47.353741], [8.489361, 47.353735], [8.489349, 47.353729], [8.489336, 47.353725], [8.489322, 47.353721], [8.489313, 47.353719], [8.489304, 47.353715], [8.489296, 47.353712], [8.489288, 47.353708], [8.489281, 47.353703], [8.489274, 47.353699], [8.489268, 47.353693], [8.489263, 47.353688], [8.489258, 47.353682], [8.489254, 47.353676], [8.489251, 47.353669], [8.489249, 47.353663], [8.489248, 47.353656], [8.489247, 47.35365], [8.489248, 47.353643], [8.489249, 47.353636], [8.489251, 47.35363], [8.489254, 47.353624], [8.489258, 47.353617], [8.48927, 47.353598], [8.48928, 47.353577], [8.489287, 47.353556], [8.489292, 47.353535], [8.489294, 47.353521], [8.489296, 47.353506], [8.489298, 47.353491], [8.489299, 47.353489], [8.489298, 47.353486], [8.489298, 47.353484], [8.489297, 47.353481], [8.489296, 47.353479], [8.489295, 47.353477], [8.489293, 47.353474], [8.489291, 47.353472], [8.489289, 47.35347], [8.489287, 47.353468], [8.489284, 47.353467], [8.489281, 47.353465], [8.489274, 47.353461], [8.489268, 47.353457], [8.489262, 47.353452], [8.489256, 47.353447], [8.489252, 47.353441], [8.489248, 47.353436], [8.489246, 47.353432], [8.489245, 47.353429], [8.489244, 47.353425], [8.489243, 47.353422], [8.489243, 47.353418], [8.489244, 47.353414], [8.489245, 47.353411], [8.489246, 47.353407], [8.489247, 47.353405], [8.489247, 47.353404], [8.489247, 47.353402], [8.489247, 47.3534], [8.489247, 47.353398], [8.489247, 47.353396], [8.489246, 47.353394], [8.489245, 47.353392], [8.489244, 47.35339], [8.489242, 47.353389], [8.489241, 47.353387], [8.489239, 47.353386], [8.489237, 47.353384], [8.489188, 47.353355], [8.489183, 47.353346], [8.489179, 47.353337], [8.489175, 47.353328], [8.489173, 47.353321], [8.489172, 47.353313], [8.489172, 47.353305], [8.489173, 47.353297], [8.489175, 47.353289], [8.489178, 47.353281], [8.489182, 47.353274], [8.489187, 47.353267], [8.48919, 47.353263], [8.489192, 47.353259], [8.489194, 47.353256], [8.489195, 47.353252], [8.489195, 47.353248], [8.489196, 47.353244], [8.489195, 47.35324], [8.489194, 47.353236], [8.489193, 47.353232], [8.489191, 47.353229], [8.489189, 47.353225], [8.489186, 47.353222], [8.489183, 47.353218], [8.489127, 47.353166]]], "type": "MultiLineString"}, "id": "174", "properties": {}, "type": "Feature"}, {"bbox": [8.527616, 47.346027, 8.528777, 47.346571], "geometry": {"coordinates": [[[8.528777, 47.346571], [8.528637, 47.346495], [8.527616, 47.346027]]], "type": "MultiLineString"}, "id": "176", "properties": {}, "type": "Feature"}, {"bbox": [8.521929, 47.362486, 8.522294, 47.362963], "geometry": {"coordinates": [[[8.522294, 47.362963], [8.521929, 47.362486]]], "type": "MultiLineString"}, "id": "177", "properties": {}, "type": "Feature"}, {"bbox": [8.546024, 47.393921, 8.547212, 47.394011], "geometry": {"coordinates": [[[8.546024, 47.393973], [8.546652, 47.394011], [8.546879, 47.393948], [8.547035, 47.393921], [8.547212, 47.393938]]], "type": "MultiLineString"}, "id": "179", "properties": {}, "type": "Feature"}, {"bbox": [8.543187, 47.378636, 8.543573, 47.378662], "geometry": {"coordinates": [[[8.543187, 47.378636], [8.543573, 47.378662]]], "type": "MultiLineString"}, "id": "180", "properties": {}, "type": "Feature"}, {"bbox": [8.483788, 47.373838, 8.483938, 47.373943], "geometry": {"coordinates": [[[8.483788, 47.373943], [8.483938, 47.373838]]], "type": "MultiLineString"}, "id": "181", "properties": {}, "type": "Feature"}, {"bbox": [8.519334, 47.340674, 8.519876, 47.341249], "geometry": {"coordinates": [[[8.519876, 47.340674], [8.519643, 47.340752], [8.519334, 47.340757], [8.519371, 47.341249], [8.519673, 47.34124], [8.519643, 47.340752]]], "type": "MultiLineString"}, "id": "185", "properties": {}, "type": "Feature"}, {"bbox": [8.484575, 47.370286, 8.48518, 47.370987], "geometry": {"coordinates": [[[8.48518, 47.370987], [8.485117, 47.370909], [8.484847, 47.370622], [8.484575, 47.370286]]], "type": "MultiLineString"}, "id": "189", "properties": {}, "type": "Feature"}, {"bbox": [8.477226, 47.415354, 8.47726, 47.415801], "geometry": {"coordinates": [[[8.477226, 47.415354], [8.477246, 47.415436], [8.47726, 47.415567], [8.477249, 47.415801]]], "type": "MultiLineString"}, "id": "190", "properties": {}, "type": "Feature"}, {"bbox": [8.475309, 47.363622, 8.488603, 47.368431], "geometry": {"coordinates": [[[8.475309, 47.367762], [8.475319, 47.367777], [8.475331, 47.367792], [8.475345, 47.367805], [8.475361, 47.367818], [8.475378, 47.36783], [8.475397, 47.36784], [8.475417, 47.36785], [8.475438, 47.367858], [8.47546, 47.367865], [8.475483, 47.367871], [8.475516, 47.367879], [8.475549, 47.367889], [8.475579, 47.367901], [8.475608, 47.367915], [8.475635, 47.367931], [8.47566, 47.367948], [8.475683, 47.367967], [8.475684, 47.367967], [8.475684, 47.367968], [8.475713, 47.367997], [8.475742, 47.368027], [8.475771, 47.368056], [8.475786, 47.368071], [8.4758, 47.368085], [8.475814, 47.3681], [8.475819, 47.368104], [8.475823, 47.368109], [8.475827, 47.368113], [8.475827, 47.368113], [8.475846, 47.368133], [8.475846, 47.368133], [8.475862, 47.368151], [8.475878, 47.368169], [8.475894, 47.368187], [8.475902, 47.368196], [8.475911, 47.368205], [8.475919, 47.368214], [8.475957, 47.368249], [8.475997, 47.368282], [8.476042, 47.368313], [8.476075, 47.368334], [8.476112, 47.368352], [8.47615, 47.368369], [8.47619, 47.368383], [8.476231, 47.368395], [8.476281, 47.368407], [8.476332, 47.368416], [8.476384, 47.368422], [8.476437, 47.368426], [8.4765, 47.368428], [8.476563, 47.36843], [8.476627, 47.368431], [8.476693, 47.368431], [8.476759, 47.36843], [8.476824, 47.368428], [8.476901, 47.368424], [8.476978, 47.368417], [8.477054, 47.368409], [8.477136, 47.368397], [8.477217, 47.36838], [8.477295, 47.368358], [8.477355, 47.36834], [8.477416, 47.368322], [8.477477, 47.368304], [8.477557, 47.368281], [8.477638, 47.368258], [8.477719, 47.368235], [8.477779, 47.368216], [8.477838, 47.368194], [8.477895, 47.36817], [8.477988, 47.368128], [8.478081, 47.368084], [8.478173, 47.36804], [8.478245, 47.368005], [8.478318, 47.367971], [8.478391, 47.367938], [8.478502, 47.367886], [8.478611, 47.367833], [8.478718, 47.367778], [8.478771, 47.36775], [8.478825, 47.367723], [8.478879, 47.367696], [8.478904, 47.367682], [8.478927, 47.367667], [8.478948, 47.36765], [8.478967, 47.367632], [8.478984, 47.367614], [8.478998, 47.367594], [8.47901, 47.367574], [8.479029, 47.36754], [8.479053, 47.367507], [8.479081, 47.367476], [8.479113, 47.367447], [8.479149, 47.36742], [8.479304, 47.36731], [8.479454, 47.367198], [8.479601, 47.367083], [8.479792, 47.366933], [8.479991, 47.366788], [8.480196, 47.366647], [8.480258, 47.36661], [8.480324, 47.366576], [8.480395, 47.366547], [8.480469, 47.366522], [8.480534, 47.366503], [8.4806, 47.366487], [8.480668, 47.366473], [8.480765, 47.366454], [8.48086, 47.366431], [8.480953, 47.366405], [8.481029, 47.366383], [8.481105, 47.36636], [8.48118, 47.366337], [8.481225, 47.366322], [8.481268, 47.366303], [8.481309, 47.366282], [8.481346, 47.366259], [8.48138, 47.366233], [8.48141, 47.366205], [8.481479, 47.366136], [8.481547, 47.366067], [8.481616, 47.365998], [8.481711, 47.365908], [8.481812, 47.365822], [8.481919, 47.365739], [8.482073, 47.365623], [8.48222, 47.365504], [8.482362, 47.365381], [8.48241, 47.365341], [8.482462, 47.365304], [8.482519, 47.36527], [8.482561, 47.365249], [8.482606, 47.365229], [8.482652, 47.365212], [8.482701, 47.365198], [8.483237, 47.365057], [8.483277, 47.365048], [8.483318, 47.365042], [8.483359, 47.365038], [8.483401, 47.365036], [8.483443, 47.365037], [8.483485, 47.365041], [8.483526, 47.365047], [8.483596, 47.365062], [8.483663, 47.365081], [8.483728, 47.365104], [8.48379, 47.365131], [8.483847, 47.365162], [8.483887, 47.365188], [8.483924, 47.365215], [8.483958, 47.365245], [8.483987, 47.365277], [8.484166, 47.365487], [8.484183, 47.365505], [8.484202, 47.365523], [8.484224, 47.365539], [8.484247, 47.365554], [8.484273, 47.365568], [8.484299, 47.36558], [8.484328, 47.36559], [8.484357, 47.365599], [8.484388, 47.365607], [8.484419, 47.365612], [8.484451, 47.365616], [8.484483, 47.365617], [8.484555, 47.365617], [8.484626, 47.365614], [8.484697, 47.365607], [8.485201, 47.365544], [8.48527, 47.365534], [8.485339, 47.365522], [8.485407, 47.365508], [8.485927, 47.365392], [8.485988, 47.365376], [8.486046, 47.365356], [8.486102, 47.365333], [8.486154, 47.365306], [8.486202, 47.365276], [8.486246, 47.365243], [8.486585, 47.364963], [8.486665, 47.364901], [8.486749, 47.364842], [8.486839, 47.364787], [8.486923, 47.36474], [8.487053, 47.364673], [8.487187, 47.364609], [8.487325, 47.364549], [8.487356, 47.364538], [8.487389, 47.364528], [8.487423, 47.36452], [8.487458, 47.364515], [8.487493, 47.364511], [8.487529, 47.36451], [8.487929, 47.364505], [8.487929, 47.364505], [8.487959, 47.364504], [8.487988, 47.364501], [8.488017, 47.364497], [8.488045, 47.36449], [8.488073, 47.364482], [8.488099, 47.364473], [8.488124, 47.364462], [8.488148, 47.36445], [8.48817, 47.364436], [8.48819, 47.364421], [8.488208, 47.364405], [8.488224, 47.364388], [8.488238, 47.36437], [8.488249, 47.364351], [8.488309, 47.364243], [8.488319, 47.364227], [8.488332, 47.364211], [8.488346, 47.364196], [8.488363, 47.364183], [8.488381, 47.36417], [8.4884, 47.364158], [8.488417, 47.364148], [8.488433, 47.364138], [8.488447, 47.364126], [8.48846, 47.364113], [8.488471, 47.3641], [8.488481, 47.364087], [8.488489, 47.364072], [8.488495, 47.364058], [8.488499, 47.364043], [8.48854, 47.363857], [8.488551, 47.363816], [8.488565, 47.363775], [8.488582, 47.363735], [8.488593, 47.363707], [8.4886, 47.363678], [8.488603, 47.363649], [8.488603, 47.363622]]], "type": "MultiLineString"}, "id": "192", "properties": {}, "type": "Feature"}, {"bbox": [8.520342, 47.388023, 8.520493, 47.388338], "geometry": {"coordinates": [[[8.520398, 47.388023], [8.520488, 47.388105], [8.520342, 47.388177], [8.520493, 47.388338]]], "type": "MultiLineString"}, "id": "193", "properties": {}, "type": "Feature"}, {"bbox": [8.564824, 47.408457, 8.565001, 47.408513], "geometry": {"coordinates": [[[8.564824, 47.408457], [8.565001, 47.408513]]], "type": "MultiLineString"}, "id": "195", "properties": {}, "type": "Feature"}, {"bbox": [8.553916, 47.419436, 8.554508, 47.420081], "geometry": {"coordinates": [[[8.553916, 47.419436], [8.554508, 47.420081]]], "type": "MultiLineString"}, "id": "196", "properties": {}, "type": "Feature"}, {"bbox": [8.543105, 47.372696, 8.543516, 47.373048], "geometry": {"coordinates": [[[8.543114, 47.372932], [8.543105, 47.373042], [8.543461, 47.373043], [8.543498, 47.373048], [8.543499, 47.372961], [8.543486, 47.372941], [8.543449, 47.372919], [8.543442, 47.372851], [8.5435, 47.372841], [8.543516, 47.37272], [8.543181, 47.372696], [8.543153, 47.372803], [8.543114, 47.372932]]], "type": "MultiLineString"}, "id": "199", "properties": {}, "type": "Feature"}, {"bbox": [8.560056, 47.360056, 8.561517, 47.360242], "geometry": {"coordinates": [[[8.560056, 47.360114], [8.560136, 47.360073], [8.56051, 47.360056], [8.560568, 47.360056], [8.560625, 47.360059], [8.560682, 47.360067], [8.560737, 47.360077], [8.560791, 47.360092], [8.561397, 47.36022], [8.561517, 47.360242]]], "type": "MultiLineString"}, "id": "206", "properties": {}, "type": "Feature"}, {"bbox": [8.581691, 47.357651, 8.582542, 47.358321], "geometry": {"coordinates": [[[8.581691, 47.357651], [8.581717, 47.357686], [8.581994, 47.35786], [8.582377, 47.358054], [8.582541, 47.358177], [8.582541, 47.358291], [8.582542, 47.358321]]], "type": "MultiLineString"}, "id": "208", "properties": {}, "type": "Feature"}, {"bbox": [8.525821, 47.413187, 8.526776, 47.41352], "geometry": {"coordinates": [[[8.526776, 47.413187], [8.525821, 47.41352]]], "type": "MultiLineString"}, "id": "209", "properties": {}, "type": "Feature"}, {"bbox": [8.532061, 47.338521, 8.533662, 47.338666], "geometry": {"coordinates": [[[8.532061, 47.338521], [8.53317, 47.3386], [8.533662, 47.338666]]], "type": "MultiLineString"}, "id": "210", "properties": {}, "type": "Feature"}, {"bbox": [8.535764, 47.374103, 8.53634, 47.374405], "geometry": {"coordinates": [[[8.53634, 47.374103], [8.536235, 47.374165], [8.535764, 47.374405]]], "type": "MultiLineString"}, "id": "211", "properties": {}, "type": "Feature"}, {"bbox": [8.55998, 47.353611, 8.56169, 47.353982], "geometry": {"coordinates": [[[8.55998, 47.353982], [8.560013, 47.35389], [8.560032, 47.353802], [8.560063, 47.35363], [8.560462, 47.353618], [8.561101, 47.353611], [8.561155, 47.353613], [8.56169, 47.353713]]], "type": "MultiLineString"}, "id": "213", "properties": {}, "type": "Feature"}, {"bbox": [8.483188, 47.408676, 8.48508, 47.409581], "geometry": {"coordinates": [[[8.483188, 47.408676], [8.483431, 47.408919], [8.484006, 47.4091], [8.484043, 47.409093], [8.484261, 47.409167], [8.484751, 47.409376], [8.484924, 47.409376], [8.48508, 47.409581]]], "type": "MultiLineString"}, "id": "214", "properties": {}, "type": "Feature"}, {"bbox": [8.54403, 47.37596, 8.544563, 47.376009], "geometry": {"coordinates": [[[8.54403, 47.37596], [8.544563, 47.376009]]], "type": "MultiLineString"}, "id": "217", "properties": {}, "type": "Feature"}, {"bbox": [8.526752, 47.375738, 8.527497, 47.37655], "geometry": {"coordinates": [[[8.526752, 47.376523], [8.5268, 47.37655], [8.526927, 47.3765], [8.526804, 47.376375], [8.527409, 47.376101], [8.527497, 47.376065], [8.52715, 47.375844], [8.526929, 47.375746], [8.526915, 47.375743], [8.5269, 47.37574], [8.526886, 47.375739], [8.526871, 47.375738], [8.526856, 47.375739]]], "type": "MultiLineString"}, "id": "219", "properties": {}, "type": "Feature"}, {"bbox": [8.524694, 47.42382, 8.525058, 47.423949], "geometry": {"coordinates": [[[8.524694, 47.423949], [8.524889, 47.423861], [8.525058, 47.42382]]], "type": "MultiLineString"}, "id": "221", "properties": {}, "type": "Feature"}, {"bbox": [8.53144, 47.418311, 8.534038, 47.419757], "geometry": {"coordinates": [[[8.533602, 47.419757], [8.534038, 47.419125], [8.532609, 47.418672], [8.53144, 47.418311]]], "type": "MultiLineString"}, "id": "222", "properties": {}, "type": "Feature"}, {"bbox": [8.532971, 47.417452, 8.53339, 47.418109], "geometry": {"coordinates": [[[8.53339, 47.417452], [8.532971, 47.418067], [8.532982, 47.418109]]], "type": "MultiLineString"}, "id": "223", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.38359, 8.539735, 47.38385], "geometry": {"coordinates": [[[8.539243, 47.38359], [8.539429, 47.383714], [8.539648, 47.383793], [8.539735, 47.38385]]], "type": "MultiLineString"}, "id": "225", "properties": {}, "type": "Feature"}, {"bbox": [8.547652, 47.360063, 8.548039, 47.360141], "geometry": {"coordinates": [[[8.547652, 47.360063], [8.548039, 47.360141]]], "type": "MultiLineString"}, "id": "230", "properties": {}, "type": "Feature"}, {"bbox": [8.506025, 47.421764, 8.506079, 47.421856], "geometry": {"coordinates": [[[8.506079, 47.421856], [8.506025, 47.421764]]], "type": "MultiLineString"}, "id": "237", "properties": {}, "type": "Feature"}, {"bbox": [8.53216, 47.414362, 8.532507, 47.414446], "geometry": {"coordinates": [[[8.532507, 47.414362], [8.532391, 47.414369], [8.53216, 47.414446]]], "type": "MultiLineString"}, "id": "238", "properties": {}, "type": "Feature"}, {"bbox": [8.507387, 47.383798, 8.508539, 47.38426], "geometry": {"coordinates": [[[8.508539, 47.383798], [8.508381, 47.383859], [8.507855, 47.384084], [8.507492, 47.384238], [8.507387, 47.38426]]], "type": "MultiLineString"}, "id": "239", "properties": {}, "type": "Feature"}, {"bbox": [8.544004, 47.385795, 8.544212, 47.386434], "geometry": {"coordinates": [[[8.544212, 47.385795], [8.54419, 47.385856], [8.544004, 47.38639], [8.544021, 47.386434]]], "type": "MultiLineString"}, "id": "240", "properties": {}, "type": "Feature"}, {"bbox": [8.532337, 47.412829, 8.532577, 47.413235], "geometry": {"coordinates": [[[8.532337, 47.413235], [8.532475, 47.413116], [8.532577, 47.412829]]], "type": "MultiLineString"}, "id": "245", "properties": {}, "type": "Feature"}, {"bbox": [8.537085, 47.419071, 8.53712, 47.419424], "geometry": {"coordinates": [[[8.53712, 47.419424], [8.53709, 47.41919], [8.537085, 47.419071]]], "type": "MultiLineString"}, "id": "247", "properties": {}, "type": "Feature"}, {"bbox": [8.490657, 47.376951, 8.490781, 47.377215], "geometry": {"coordinates": [[[8.490781, 47.376951], [8.490657, 47.377215]]], "type": "MultiLineString"}, "id": "250", "properties": {}, "type": "Feature"}, {"bbox": [8.536921, 47.379839, 8.5376, 47.38002], "geometry": {"coordinates": [[[8.5376, 47.379839], [8.536921, 47.38002]]], "type": "MultiLineString"}, "id": "254", "properties": {}, "type": "Feature"}, {"bbox": [8.479677, 47.374397, 8.480959, 47.374617], "geometry": {"coordinates": [[[8.480959, 47.374617], [8.480725, 47.374592], [8.479813, 47.374459], [8.479677, 47.374397]]], "type": "MultiLineString"}, "id": "256", "properties": {}, "type": "Feature"}, {"bbox": [8.504001, 47.364569, 8.504601, 47.364583], "geometry": {"coordinates": [[[8.504001, 47.364569], [8.504601, 47.364583]]], "type": "MultiLineString"}, "id": "258", "properties": {}, "type": "Feature"}, {"bbox": [8.502482, 47.344268, 8.511199, 47.352536], "geometry": {"coordinates": [[[8.502904, 47.352536], [8.502899, 47.352348], [8.502898, 47.352314], [8.502901, 47.352279], [8.502908, 47.352245], [8.50302, 47.351789], [8.50303, 47.351728], [8.503033, 47.351668], [8.503027, 47.351607], [8.503013, 47.351548], [8.502991, 47.351489], [8.502962, 47.351432], [8.502925, 47.351377], [8.50288, 47.351324], [8.502583, 47.351008], [8.502554, 47.350974], [8.50253, 47.350938], [8.50251, 47.350901], [8.502496, 47.350862], [8.502486, 47.350823], [8.502482, 47.350784], [8.502484, 47.350744], [8.50249, 47.350706], [8.502501, 47.350668], [8.502517, 47.350632], [8.502537, 47.350596], [8.502562, 47.350562], [8.502621, 47.35049], [8.502683, 47.350444], [8.502712, 47.350424], [8.502744, 47.350405], [8.502778, 47.350388], [8.502814, 47.350374], [8.502852, 47.350362], [8.502892, 47.350352], [8.502932, 47.350344], [8.502973, 47.350339], [8.503015, 47.350337], [8.503025, 47.350337], [8.503034, 47.350337], [8.503043, 47.350337], [8.503154, 47.350341], [8.503264, 47.35035], [8.503373, 47.350365], [8.503711, 47.35042], [8.503802, 47.350432], [8.503894, 47.350437], [8.503986, 47.350436], [8.504064, 47.350431], [8.504141, 47.350421], [8.504217, 47.350407], [8.50429, 47.350389], [8.504361, 47.350366], [8.504429, 47.35034], [8.504494, 47.35031], [8.504554, 47.350276], [8.504597, 47.350248], [8.504636, 47.350218], [8.504671, 47.350185], [8.504702, 47.350151], [8.504728, 47.350114], [8.50475, 47.350077], [8.504766, 47.350038], [8.504807, 47.349935], [8.504852, 47.349833], [8.504902, 47.349732], [8.504997, 47.349549], [8.505291, 47.348871], [8.505307, 47.348826], [8.505318, 47.34878], [8.505324, 47.348733], [8.505324, 47.348687], [8.505318, 47.34864], [8.505256, 47.348309], [8.505253, 47.348282], [8.505253, 47.348255], [8.505257, 47.348227], [8.505264, 47.3482], [8.505275, 47.348174], [8.505289, 47.348148], [8.505306, 47.348123], [8.505327, 47.348099], [8.50535, 47.348077], [8.505376, 47.348056], [8.505405, 47.348037], [8.505437, 47.34802], [8.50547, 47.348004], [8.505505, 47.347991], [8.505542, 47.347979], [8.50558, 47.34797], [8.50562, 47.347964], [8.505872, 47.347928], [8.505906, 47.347922], [8.505939, 47.347915], [8.505972, 47.347905], [8.506002, 47.347893], [8.506031, 47.347879], [8.506058, 47.347864], [8.506083, 47.347847], [8.506106, 47.347828], [8.506126, 47.347808], [8.506143, 47.347788], [8.506186, 47.34773], [8.506199, 47.347712], [8.506208, 47.347693], [8.506216, 47.347673], [8.50622, 47.347654], [8.506222, 47.347634], [8.506221, 47.347613], [8.506218, 47.347593], [8.506212, 47.347574], [8.506204, 47.347555], [8.506193, 47.347536], [8.506179, 47.347518], [8.506163, 47.347501], [8.506145, 47.347485], [8.506125, 47.34747], [8.506103, 47.347457], [8.505988, 47.347392], [8.505972, 47.347381], [8.505956, 47.34737], [8.505942, 47.347358], [8.50593, 47.347345], [8.505919, 47.347331], [8.505911, 47.347317], [8.505904, 47.347302], [8.505899, 47.347287], [8.505896, 47.347271], [8.505882, 47.347156], [8.505881, 47.347134], [8.505882, 47.347111], [8.505886, 47.347089], [8.505894, 47.347068], [8.505904, 47.347047], [8.505916, 47.347026], [8.505931, 47.347006], [8.505949, 47.346988], [8.505969, 47.34697], [8.505991, 47.346954], [8.506015, 47.346939], [8.506041, 47.346925], [8.506294, 47.346805], [8.506317, 47.346793], [8.506339, 47.34678], [8.506359, 47.346766], [8.506377, 47.34675], [8.506393, 47.346734], [8.506407, 47.346716], [8.506418, 47.346698], [8.506428, 47.34668], [8.506435, 47.346661], [8.50644, 47.346641], [8.506442, 47.346621], [8.506442, 47.346602], [8.506425, 47.346364], [8.506425, 47.346341], [8.506428, 47.346318], [8.506434, 47.346295], [8.506443, 47.346272], [8.506455, 47.346251], [8.506469, 47.34623], [8.506487, 47.34621], [8.506506, 47.346191], [8.506528, 47.346173], [8.506635, 47.346096], [8.506672, 47.346066], [8.506704, 47.346035], [8.506732, 47.346001], [8.506754, 47.345966], [8.506772, 47.345929], [8.506847, 47.345747], [8.506888, 47.345612], [8.506891, 47.345599], [8.506892, 47.345585], [8.506892, 47.345571], [8.50689, 47.345558], [8.506887, 47.345545], [8.506881, 47.345531], [8.506874, 47.345519], [8.506866, 47.345506], [8.506856, 47.345495], [8.506845, 47.345484], [8.506832, 47.345473], [8.506818, 47.345463], [8.506803, 47.345455], [8.506787, 47.345447], [8.506769, 47.34544], [8.506751, 47.345434], [8.506733, 47.345429], [8.506714, 47.345425], [8.506378, 47.34537], [8.506109, 47.345308], [8.506097, 47.345305], [8.506086, 47.345301], [8.506075, 47.345297], [8.506065, 47.345292], [8.506055, 47.345286], [8.506047, 47.34528], [8.506039, 47.345273], [8.506032, 47.345266], [8.506026, 47.345258], [8.506022, 47.34525], [8.506018, 47.345242], [8.506015, 47.345234], [8.506014, 47.345225], [8.506017, 47.345216], [8.506018, 47.345207], [8.506018, 47.345198], [8.506014, 47.345159], [8.506014, 47.345159], [8.506012, 47.345148], [8.506009, 47.345138], [8.506005, 47.345127], [8.505999, 47.345117], [8.505992, 47.345108], [8.505984, 47.345098], [8.505975, 47.34509], [8.505966, 47.345077], [8.505958, 47.345064], [8.505952, 47.345051], [8.505948, 47.345037], [8.505946, 47.345023], [8.505945, 47.345009], [8.505946, 47.344995], [8.505949, 47.344981], [8.505954, 47.344968], [8.50596, 47.344954], [8.506021, 47.34485], [8.506048, 47.344809], [8.506079, 47.34477], [8.506115, 47.344732], [8.506155, 47.344697], [8.506199, 47.344664], [8.506465, 47.344482], [8.506533, 47.344439], [8.506607, 47.344401], [8.506685, 47.344366], [8.506767, 47.344337], [8.506853, 47.344313], [8.506941, 47.344293], [8.507032, 47.34428], [8.507124, 47.344271], [8.507216, 47.344268], [8.507309, 47.344271], [8.507401, 47.344279], [8.507492, 47.344292], [8.50758, 47.344311], [8.507666, 47.344335], [8.507749, 47.344364], [8.507876, 47.344414], [8.507997, 47.344467], [8.508111, 47.344527], [8.508216, 47.344593], [8.508311, 47.344667], [8.508395, 47.344745], [8.508469, 47.344829], [8.509034, 47.345547], [8.509075, 47.345605], [8.509109, 47.345664], [8.509136, 47.345725], [8.509156, 47.345787], [8.509224, 47.34605], [8.509234, 47.346081], [8.509247, 47.346112], [8.509264, 47.346141], [8.509285, 47.34617], [8.509313, 47.346206], [8.509456, 47.346386], [8.50949, 47.346425], [8.509528, 47.346461], [8.509571, 47.346495], [8.509619, 47.346526], [8.50967, 47.346554], [8.509724, 47.346579], [8.509897, 47.34665], [8.509954, 47.346675], [8.510006, 47.346704], [8.510055, 47.346736], [8.5101, 47.346771], [8.510296, 47.346938], [8.510457, 47.34707], [8.510625, 47.347197], [8.510801, 47.34732], [8.510891, 47.347377], [8.510986, 47.34743], [8.511086, 47.347478], [8.511112, 47.347491], [8.511137, 47.347506], [8.51116, 47.347523], [8.511181, 47.34754], [8.511199, 47.347559]]], "type": "MultiLineString"}, "id": "259", "properties": {}, "type": "Feature"}, {"bbox": [8.521807, 47.346928, 8.523546, 47.348425], "geometry": {"coordinates": [[[8.523546, 47.348425], [8.523388, 47.348321], [8.523252, 47.348254], [8.52314, 47.348191], [8.523047, 47.348108], [8.522774, 47.347808], [8.522608, 47.347609], [8.522366, 47.347413], [8.522304, 47.347349], [8.522028, 47.347106], [8.521838, 47.346972], [8.521831, 47.346966], [8.521824, 47.346959], [8.521818, 47.346951], [8.521814, 47.346944], [8.52181, 47.346936], [8.521807, 47.346928]]], "type": "MultiLineString"}, "id": "262", "properties": {}, "type": "Feature"}, {"bbox": [8.494849, 47.396436, 8.496708, 47.397204], "geometry": {"coordinates": [[[8.494849, 47.397204], [8.495743, 47.396834], [8.496708, 47.396436]]], "type": "MultiLineString"}, "id": "265", "properties": {}, "type": "Feature"}, {"bbox": [8.518881, 47.340674, 8.519876, 47.34072], "geometry": {"coordinates": [[[8.519876, 47.340674], [8.51916, 47.340715], [8.518881, 47.34072]]], "type": "MultiLineString"}, "id": "266", "properties": {}, "type": "Feature"}, {"bbox": [8.523147, 47.377125, 8.524676, 47.378677], "geometry": {"coordinates": [[[8.523147, 47.378677], [8.523147, 47.378513], [8.524676, 47.377891], [8.524051, 47.377125]]], "type": "MultiLineString"}, "id": "267", "properties": {}, "type": "Feature"}, {"bbox": [8.56133, 47.362504, 8.561757, 47.363018], "geometry": {"coordinates": [[[8.56133, 47.363018], [8.561704, 47.362564], [8.561757, 47.362504]]], "type": "MultiLineString"}, "id": "268", "properties": {}, "type": "Feature"}, {"bbox": [8.545073, 47.368196, 8.545754, 47.368452], "geometry": {"coordinates": [[[8.545073, 47.368196], [8.545754, 47.368452]]], "type": "MultiLineString"}, "id": "269", "properties": {}, "type": "Feature"}, {"bbox": [8.48971, 47.378398, 8.491322, 47.379122], "geometry": {"coordinates": [[[8.491322, 47.379122], [8.491133, 47.379037], [8.48971, 47.378398]]], "type": "MultiLineString"}, "id": "273", "properties": {}, "type": "Feature"}, {"bbox": [8.547164, 47.367672, 8.548022, 47.368391], "geometry": {"coordinates": [[[8.548022, 47.36771], [8.547874, 47.367672], [8.547407, 47.368152], [8.547455, 47.36818], [8.547258, 47.368323], [8.547164, 47.368391]]], "type": "MultiLineString"}, "id": "274", "properties": {}, "type": "Feature"}, {"bbox": [8.523277, 47.366343, 8.524948, 47.367437], "geometry": {"coordinates": [[[8.524948, 47.366343], [8.524447, 47.36664], [8.523547, 47.367166], [8.523492, 47.367222], [8.523382, 47.367336], [8.523277, 47.367437]]], "type": "MultiLineString"}, "id": "275", "properties": {}, "type": "Feature"}, {"bbox": [8.55794, 47.374888, 8.558454, 47.375389], "geometry": {"coordinates": [[[8.558454, 47.374888], [8.558407, 47.374933], [8.558296, 47.374993], [8.55799, 47.37526], [8.55794, 47.375389]]], "type": "MultiLineString"}, "id": "276", "properties": {}, "type": "Feature"}, {"bbox": [8.598247, 47.354277, 8.600228, 47.3555], "geometry": {"coordinates": [[[8.598247, 47.354277], [8.598422, 47.354553], [8.598444, 47.354596], [8.598724, 47.354691], [8.598727, 47.354793], [8.598804, 47.354851], [8.598809, 47.354878], [8.599177, 47.355009], [8.599206, 47.355039], [8.599198, 47.355063], [8.599164, 47.355103], [8.599158, 47.355132], [8.59918, 47.355163], [8.599501, 47.355376], [8.599538, 47.355384], [8.599579, 47.355374], [8.599762, 47.355267], [8.599791, 47.355261], [8.599823, 47.355272], [8.600001, 47.355391], [8.600067, 47.355413], [8.600189, 47.355471], [8.600228, 47.3555]]], "type": "MultiLineString"}, "id": "277", "properties": {}, "type": "Feature"}, {"bbox": [8.489223, 47.378398, 8.48971, 47.378688], "geometry": {"coordinates": [[[8.48971, 47.378398], [8.489301, 47.378629], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "278", "properties": {}, "type": "Feature"}, {"bbox": [8.532954, 47.411381, 8.533492, 47.41146], "geometry": {"coordinates": [[[8.533492, 47.41146], [8.533448, 47.411429], [8.533258, 47.411408], [8.532954, 47.411381]]], "type": "MultiLineString"}, "id": "280", "properties": {}, "type": "Feature"}, {"bbox": [8.52843, 47.374074, 8.528857, 47.374371], "geometry": {"coordinates": [[[8.52843, 47.374074], [8.528857, 47.374371]]], "type": "MultiLineString"}, "id": "281", "properties": {}, "type": "Feature"}, {"bbox": [8.533209, 47.397787, 8.533568, 47.398872], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.533449, 47.398018], [8.533353, 47.398254], [8.533279, 47.398494], [8.533249, 47.398619], [8.533226, 47.398746], [8.533209, 47.398872]]], "type": "MultiLineString"}, "id": "282", "properties": {}, "type": "Feature"}, {"bbox": [8.536753, 47.428751, 8.536903, 47.430189], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.536754, 47.428941], [8.536753, 47.429131], [8.536759, 47.429322], [8.536773, 47.429512], [8.536829, 47.429805], [8.536903, 47.430189]]], "type": "MultiLineString"}, "id": "284", "properties": {}, "type": "Feature"}, {"bbox": [8.502048, 47.422887, 8.502099, 47.422975], "geometry": {"coordinates": [[[8.502099, 47.422975], [8.502048, 47.422887]]], "type": "MultiLineString"}, "id": "285", "properties": {}, "type": "Feature"}, {"bbox": [8.524645, 47.396597, 8.525234, 47.397894], "geometry": {"coordinates": [[[8.524645, 47.396597], [8.524969, 47.397321], [8.525234, 47.397894]]], "type": "MultiLineString"}, "id": "287", "properties": {}, "type": "Feature"}, {"bbox": [8.552823, 47.387539, 8.561289, 47.389336], "geometry": {"coordinates": [[[8.552823, 47.387815], [8.552949, 47.387763], [8.553035, 47.387725], [8.553117, 47.387683], [8.553195, 47.387637], [8.553253, 47.387631], [8.553404, 47.387549], [8.553407, 47.387547], [8.55341, 47.387545], [8.553414, 47.387543], [8.553418, 47.387542], [8.553422, 47.387541], [8.553426, 47.38754], [8.55343, 47.387539], [8.553434, 47.387539], [8.553438, 47.387539], [8.553442, 47.387539], [8.553447, 47.387539], [8.553451, 47.38754], [8.553455, 47.38754], [8.553459, 47.387541], [8.553463, 47.387543], [8.553466, 47.387544], [8.55347, 47.387546], [8.553473, 47.387548], [8.553476, 47.38755], [8.553478, 47.387552], [8.55348, 47.387555], [8.553482, 47.387557], [8.553484, 47.38756], [8.553485, 47.387563], [8.553486, 47.387566], [8.553487, 47.387568], [8.553487, 47.387571], [8.553487, 47.387574], [8.553486, 47.387577], [8.553485, 47.38758], [8.553484, 47.387583], [8.553482, 47.387585], [8.55348, 47.387588], [8.553419, 47.387672], [8.55356, 47.387668], [8.553718, 47.387708], [8.554117, 47.387929], [8.554153, 47.387947], [8.554194, 47.387964], [8.554198, 47.387965], [8.554203, 47.387967], [8.554208, 47.387968], [8.554213, 47.387969], [8.554218, 47.38797], [8.554223, 47.387971], [8.554229, 47.387971], [8.554229, 47.387971], [8.554567, 47.387954], [8.554841, 47.387942], [8.55487, 47.387942], [8.5549, 47.387943], [8.554929, 47.387946], [8.554958, 47.387951], [8.554986, 47.387958], [8.555013, 47.387966], [8.555038, 47.387976], [8.555038, 47.387976], [8.555039, 47.387976], [8.555048, 47.387981], [8.555057, 47.387985], [8.555066, 47.387991], [8.555073, 47.387997], [8.55508, 47.388003], [8.555086, 47.388009], [8.555091, 47.388016], [8.555095, 47.388024], [8.555098, 47.388031], [8.5551, 47.388039], [8.555102, 47.388047], [8.555102, 47.388054], [8.555101, 47.388062], [8.555068, 47.388123], [8.555003, 47.388232], [8.555027, 47.388255], [8.555295, 47.388242], [8.555302, 47.388241], [8.555308, 47.38824], [8.555315, 47.388239], [8.55537, 47.388227], [8.555467, 47.388232], [8.555535, 47.388255], [8.555547, 47.38826], [8.555558, 47.388266], [8.555568, 47.388272], [8.555577, 47.388279], [8.555586, 47.388286], [8.555593, 47.388294], [8.5556, 47.388302], [8.555606, 47.38831], [8.55561, 47.388319], [8.55566, 47.388444], [8.55566, 47.388444], [8.555669, 47.388461], [8.555681, 47.388477], [8.555694, 47.388492], [8.555709, 47.388506], [8.555822, 47.388611], [8.555859, 47.388611], [8.555988, 47.388671], [8.556026, 47.388687], [8.556065, 47.3887], [8.556106, 47.388711], [8.556149, 47.388719], [8.556192, 47.388725], [8.556236, 47.388728], [8.55628, 47.388728], [8.556446, 47.388722], [8.55648, 47.388722], [8.556514, 47.388724], [8.556548, 47.388728], [8.556581, 47.388734], [8.556697, 47.388758], [8.55672, 47.388739], [8.556826, 47.388668], [8.556926, 47.388602], [8.556953, 47.388585], [8.556982, 47.38857], [8.557013, 47.388556], [8.557045, 47.388544], [8.557079, 47.388534], [8.557121, 47.388523], [8.557163, 47.38851], [8.557204, 47.388496], [8.557398, 47.388428], [8.557424, 47.388417], [8.557449, 47.388406], [8.557472, 47.388393], [8.557494, 47.388378], [8.557514, 47.388362], [8.557514, 47.388362], [8.557524, 47.388354], [8.557553, 47.388371], [8.557559, 47.388374], [8.557565, 47.388378], [8.557569, 47.388383], [8.557574, 47.388387], [8.557577, 47.388392], [8.55758, 47.388397], [8.557582, 47.388403], [8.557584, 47.388408], [8.557584, 47.388413], [8.557584, 47.388419], [8.557584, 47.388424], [8.557582, 47.38843], [8.55757, 47.388461], [8.557555, 47.388492], [8.557537, 47.388522], [8.557384, 47.388751], [8.557365, 47.388784], [8.557351, 47.388818], [8.557341, 47.388853], [8.557341, 47.388856], [8.55734, 47.388859], [8.55734, 47.388861], [8.557341, 47.388864], [8.557341, 47.388866], [8.557342, 47.388869], [8.557344, 47.388871], [8.557345, 47.388873], [8.557347, 47.388875], [8.557349, 47.388877], [8.557352, 47.388879], [8.557354, 47.388881], [8.557357, 47.388883], [8.55736, 47.388884], [8.557364, 47.388885], [8.557367, 47.388886], [8.55737, 47.388887], [8.557374, 47.388887], [8.557378, 47.388888], [8.557381, 47.388888], [8.557385, 47.388888], [8.557389, 47.388888], [8.557392, 47.388887], [8.557396, 47.388886], [8.557399, 47.388885], [8.557402, 47.388884], [8.557405, 47.388883], [8.557408, 47.388881], [8.557413, 47.388879], [8.557441, 47.388862], [8.557467, 47.388845], [8.557493, 47.388827], [8.557511, 47.388815], [8.557529, 47.388804], [8.557549, 47.388793], [8.557702, 47.38872], [8.557777, 47.388687], [8.557856, 47.38866], [8.557939, 47.388638], [8.557991, 47.388624], [8.558041, 47.388608], [8.558088, 47.388588], [8.558132, 47.388565], [8.558514, 47.38835], [8.558594, 47.388307], [8.558677, 47.388267], [8.558763, 47.388231], [8.559272, 47.388027], [8.55934, 47.388011], [8.559411, 47.388015], [8.559742, 47.388083], [8.559761, 47.388088], [8.55978, 47.388094], [8.559798, 47.388101], [8.559815, 47.388109], [8.559831, 47.388118], [8.559846, 47.388128], [8.559859, 47.388139], [8.560043, 47.388305], [8.560103, 47.388363], [8.560106, 47.388367], [8.56011, 47.38837], [8.560115, 47.388373], [8.56012, 47.388375], [8.560125, 47.388378], [8.56013, 47.38838], [8.560137, 47.388382], [8.560143, 47.388385], [8.560149, 47.388389], [8.560155, 47.388392], [8.56016, 47.388396], [8.560186, 47.388419], [8.560346, 47.388537], [8.560353, 47.388543], [8.56036, 47.388549], [8.560366, 47.388556], [8.560371, 47.388563], [8.560394, 47.388599], [8.5604, 47.388607], [8.560407, 47.388615], [8.560415, 47.388622], [8.56044, 47.388644], [8.560448, 47.38865], [8.560457, 47.388656], [8.560467, 47.388661], [8.560549, 47.3887], [8.560573, 47.388712], [8.560596, 47.388726], [8.560618, 47.38874], [8.560854, 47.388905], [8.560863, 47.388912], [8.560871, 47.38892], [8.560878, 47.388927], [8.560885, 47.388936], [8.560889, 47.388944], [8.560893, 47.388953], [8.560908, 47.388993], [8.560911, 47.388999], [8.560915, 47.389006], [8.560919, 47.389013], [8.560925, 47.389019], [8.560932, 47.389024], [8.560939, 47.389029], [8.560956, 47.389042], [8.560972, 47.389055], [8.560987, 47.389069], [8.560999, 47.389084], [8.561037, 47.389131], [8.561048, 47.389144], [8.56106, 47.389157], [8.561074, 47.389169], [8.561134, 47.389219], [8.561243, 47.389296], [8.561289, 47.389336]]], "type": "MultiLineString"}, "id": "294", "properties": {}, "type": "Feature"}, {"bbox": [8.531312, 47.34587, 8.532232, 47.346008], "geometry": {"coordinates": [[[8.532232, 47.346008], [8.532168, 47.346006], [8.531312, 47.34587]]], "type": "MultiLineString"}, "id": "296", "properties": {}, "type": "Feature"}, {"bbox": [8.512422, 47.386948, 8.514593, 47.389485], "geometry": {"coordinates": [[[8.513039, 47.389485], [8.513125, 47.38929], [8.513886, 47.389152], [8.514076, 47.389111], [8.514202, 47.389075], [8.51439, 47.389006], [8.514593, 47.388944], [8.513688, 47.388214], [8.513151, 47.387781], [8.512987, 47.387585], [8.512439, 47.386948], [8.512422, 47.386959]]], "type": "MultiLineString"}, "id": "297", "properties": {}, "type": "Feature"}, {"bbox": [8.54849, 47.369433, 8.548892, 47.370115], "geometry": {"coordinates": [[[8.54849, 47.369433], [8.548884, 47.369989], [8.548892, 47.370115]]], "type": "MultiLineString"}, "id": "298", "properties": {}, "type": "Feature"}, {"bbox": [8.506233, 47.419713, 8.506525, 47.419786], "geometry": {"coordinates": [[[8.506525, 47.419713], [8.506362, 47.41976], [8.506327, 47.419756], [8.506233, 47.419786]]], "type": "MultiLineString"}, "id": "300", "properties": {}, "type": "Feature"}, {"bbox": [8.466448, 47.399868, 8.469223, 47.400576], "geometry": {"coordinates": [[[8.466448, 47.400576], [8.469223, 47.399868]]], "type": "MultiLineString"}, "id": "301", "properties": {}, "type": "Feature"}, {"bbox": [8.510688, 47.3647, 8.512157, 47.366644], "geometry": {"coordinates": [[[8.510688, 47.366644], [8.510877, 47.366596], [8.512157, 47.366398], [8.512104, 47.366226], [8.511596, 47.3647]]], "type": "MultiLineString"}, "id": "302", "properties": {}, "type": "Feature"}, {"bbox": [8.587114, 47.355223, 8.587704, 47.355757], "geometry": {"coordinates": [[[8.587114, 47.355239], [8.587276, 47.355249], [8.587444, 47.355223], [8.587541, 47.355258], [8.587704, 47.355757]]], "type": "MultiLineString"}, "id": "304", "properties": {}, "type": "Feature"}, {"bbox": [8.480574, 47.411418, 8.481075, 47.412216], "geometry": {"coordinates": [[[8.481075, 47.412216], [8.480574, 47.411418]]], "type": "MultiLineString"}, "id": "308", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386925, 8.512422, 47.386959], "geometry": {"coordinates": [[[8.512388, 47.386925], [8.512422, 47.386959]]], "type": "MultiLineString"}, "id": "310", "properties": {}, "type": "Feature"}, {"bbox": [8.504658, 47.422133, 8.50472, 47.422239], "geometry": {"coordinates": [[[8.50472, 47.422239], [8.504658, 47.422133]]], "type": "MultiLineString"}, "id": "312", "properties": {}, "type": "Feature"}, {"bbox": [8.544166, 47.41318, 8.545397, 47.413241], "geometry": {"coordinates": [[[8.544166, 47.413241], [8.545397, 47.41318]]], "type": "MultiLineString"}, "id": "313", "properties": {}, "type": "Feature"}, {"bbox": [8.532609, 47.418109, 8.532982, 47.418672], "geometry": {"coordinates": [[[8.532982, 47.418109], [8.532609, 47.418672]]], "type": "MultiLineString"}, "id": "316", "properties": {}, "type": "Feature"}, {"bbox": [8.553645, 47.366418, 8.554078, 47.366518], "geometry": {"coordinates": [[[8.553645, 47.366418], [8.554078, 47.366518]]], "type": "MultiLineString"}, "id": "325", "properties": {}, "type": "Feature"}, {"bbox": [8.519079, 47.339002, 8.519829, 47.339174], "geometry": {"coordinates": [[[8.519829, 47.339002], [8.519079, 47.339174]]], "type": "MultiLineString"}, "id": "326", "properties": {}, "type": "Feature"}, {"bbox": [8.542281, 47.430787, 8.543024, 47.431113], "geometry": {"coordinates": [[[8.542281, 47.430787], [8.542527, 47.430898], [8.542774, 47.431007], [8.543024, 47.431113]]], "type": "MultiLineString"}, "id": "328", "properties": {}, "type": "Feature"}, {"bbox": [8.481096, 47.396647, 8.481654, 47.397585], "geometry": {"coordinates": [[[8.481654, 47.397585], [8.481096, 47.396647]]], "type": "MultiLineString"}, "id": "331", "properties": {}, "type": "Feature"}, {"bbox": [8.518181, 47.387797, 8.519338, 47.388317], "geometry": {"coordinates": [[[8.518181, 47.388317], [8.518556, 47.388133], [8.518942, 47.387959], [8.519338, 47.387797]]], "type": "MultiLineString"}, "id": "332", "properties": {}, "type": "Feature"}, {"bbox": [8.533892, 47.393371, 8.534295, 47.393549], "geometry": {"coordinates": [[[8.533892, 47.393371], [8.534295, 47.393549]]], "type": "MultiLineString"}, "id": "340", "properties": {}, "type": "Feature"}, {"bbox": [8.552787, 47.382413, 8.571845, 47.391253], "geometry": {"coordinates": [[[8.552825, 47.389011], [8.552836, 47.389034], [8.552844, 47.38906], [8.55285, 47.389087], [8.552853, 47.389114], [8.552852, 47.389141], [8.552848, 47.389168], [8.552793, 47.389425], [8.552788, 47.389462], [8.552787, 47.3895], [8.552792, 47.389537], [8.552802, 47.389573], [8.552817, 47.389609], [8.552897, 47.389774], [8.552919, 47.389812], [8.552945, 47.389848], [8.552977, 47.389883], [8.553013, 47.389915], [8.553053, 47.389945], [8.553097, 47.389973], [8.553173, 47.390016], [8.554156, 47.390572], [8.55418, 47.390586], [8.554202, 47.390603], [8.554222, 47.39062], [8.55424, 47.390639], [8.554255, 47.390659], [8.554268, 47.390679], [8.554277, 47.3907], [8.554284, 47.390722], [8.554289, 47.390744], [8.55429, 47.390766], [8.554288, 47.390788], [8.554284, 47.39081], [8.554277, 47.390832], [8.554267, 47.390853], [8.554161, 47.391046], [8.554152, 47.391065], [8.554146, 47.391084], [8.554141, 47.391103], [8.55414, 47.391123], [8.554182, 47.391207], [8.554295, 47.391253], [8.554424, 47.391238], [8.554509, 47.391171], [8.554644, 47.39093], [8.555077, 47.39028], [8.555087, 47.390264], [8.555094, 47.390247], [8.5551, 47.390229], [8.555102, 47.390212], [8.555103, 47.390194], [8.555101, 47.390176], [8.555097, 47.390159], [8.55509, 47.390142], [8.555081, 47.390125], [8.555037, 47.390051], [8.555025, 47.390029], [8.555016, 47.390006], [8.55501, 47.389983], [8.555008, 47.38996], [8.555008, 47.389937], [8.555011, 47.389913], [8.555018, 47.38989], [8.555027, 47.389868], [8.555244, 47.389419], [8.555258, 47.389394], [8.555275, 47.38937], [8.555295, 47.389346], [8.555318, 47.389324], [8.555343, 47.389303], [8.555371, 47.389284], [8.555401, 47.389266], [8.555428, 47.389253], [8.555455, 47.389241], [8.555484, 47.389231], [8.555591, 47.38919], [8.555692, 47.389145], [8.555788, 47.389093], [8.555948, 47.389], [8.556013, 47.388964], [8.556081, 47.38893], [8.556151, 47.388899], [8.556377, 47.388802], [8.556392, 47.388796], [8.556408, 47.388791], [8.556424, 47.388787], [8.556441, 47.388784], [8.556458, 47.388782], [8.556475, 47.388781], [8.556492, 47.388781], [8.55651, 47.388782], [8.556527, 47.388784], [8.556544, 47.388787], [8.55656, 47.388791], [8.556576, 47.388796], [8.556591, 47.388802], [8.556605, 47.388809], [8.556618, 47.388816], [8.556631, 47.388825], [8.556642, 47.388834], [8.556652, 47.388843], [8.556661, 47.388853], [8.556668, 47.388864], [8.556675, 47.388875], [8.556679, 47.388886], [8.556683, 47.388898], [8.556685, 47.388909], [8.556728, 47.389393], [8.556731, 47.389456], [8.556728, 47.389519], [8.556721, 47.389581], [8.556703, 47.389689], [8.556701, 47.389707], [8.556701, 47.389726], [8.556704, 47.389744], [8.556709, 47.389762], [8.556716, 47.38978], [8.556725, 47.389797], [8.556737, 47.389813], [8.55675, 47.389829], [8.556765, 47.389844], [8.556782, 47.389858], [8.556801, 47.389872], [8.556821, 47.389884], [8.557077, 47.390022], [8.557148, 47.390057], [8.557224, 47.390088], [8.557304, 47.390115], [8.557387, 47.390136], [8.557472, 47.390152], [8.55756, 47.390163], [8.557648, 47.390169], [8.557736, 47.39017], [8.557825, 47.390165], [8.557912, 47.390155], [8.557998, 47.39014], [8.558081, 47.390119], [8.558398, 47.390031], [8.558724, 47.38993], [8.559199, 47.389742], [8.559283, 47.389712], [8.559371, 47.389686], [8.559461, 47.389664], [8.560041, 47.389544], [8.560969, 47.389361], [8.561048, 47.389348], [8.561128, 47.389339], [8.561208, 47.389335], [8.561289, 47.389336], [8.56137, 47.389341], [8.561449, 47.38935], [8.561527, 47.389364], [8.561604, 47.389383], [8.561677, 47.389405], [8.561748, 47.389432], [8.561815, 47.389462], [8.561878, 47.389497], [8.562085, 47.389618], [8.562254, 47.389718], [8.562344, 47.389771], [8.562434, 47.38982], [8.56253, 47.389863], [8.562631, 47.389901], [8.562736, 47.389933], [8.562845, 47.389958], [8.562957, 47.389978], [8.56307, 47.389991], [8.563185, 47.389997], [8.5633, 47.389997], [8.563415, 47.38999], [8.563529, 47.389977], [8.56364, 47.389957], [8.564605, 47.389755], [8.564699, 47.389739], [8.564795, 47.389729], [8.564892, 47.389725], [8.565606, 47.389715], [8.565621, 47.389715], [8.565779, 47.389713], [8.565869, 47.389709], [8.565959, 47.389699], [8.566048, 47.389684], [8.566134, 47.389664], [8.567414, 47.389315], [8.567708, 47.389227], [8.567992, 47.389124], [8.568264, 47.389007], [8.568958, 47.388686], [8.57106, 47.387678], [8.571526, 47.387459], [8.571526, 47.387459], [8.571543, 47.387451], [8.571559, 47.387443], [8.571575, 47.387434], [8.571634, 47.387397], [8.571676, 47.387365], [8.571715, 47.38733], [8.571749, 47.387293], [8.571778, 47.387254], [8.571803, 47.387213], [8.571822, 47.387171], [8.571835, 47.387128], [8.571843, 47.387085], [8.571845, 47.387041], [8.571842, 47.386997], [8.571834, 47.386954], [8.571797, 47.386816], [8.571778, 47.38672], [8.571773, 47.386622], [8.571781, 47.386525], [8.571825, 47.386251], [8.571834, 47.38616], [8.571832, 47.386068], [8.571819, 47.385976], [8.571795, 47.385886], [8.571776, 47.385836], [8.57175, 47.385787], [8.571718, 47.38574], [8.571681, 47.385695], [8.571638, 47.385652], [8.57159, 47.385612], [8.571457, 47.38551], [8.571395, 47.385459], [8.571337, 47.385406], [8.571285, 47.38535], [8.571133, 47.385177], [8.571053, 47.385095], [8.570962, 47.385017], [8.570861, 47.384945], [8.570643, 47.384802], [8.570622, 47.384789], [8.570549, 47.384737], [8.570481, 47.384681], [8.57042, 47.384622], [8.570406, 47.384608], [8.570394, 47.384594], [8.570381, 47.38458], [8.570094, 47.384244], [8.570018, 47.384162], [8.569933, 47.384084], [8.56984, 47.38401], [8.569491, 47.383754], [8.569459, 47.383733], [8.569233, 47.383589], [8.569168, 47.383539], [8.569147, 47.383522], [8.569129, 47.383503], [8.569112, 47.383484], [8.569055, 47.383413], [8.568993, 47.383343], [8.568926, 47.383276], [8.568926, 47.383275], [8.568926, 47.383275], [8.568844, 47.383194], [8.56875, 47.383118], [8.568647, 47.383049], [8.568583, 47.383011], [8.568517, 47.382974], [8.568448, 47.382939], [8.567896, 47.382679], [8.567876, 47.382668], [8.567857, 47.382656], [8.56784, 47.382643], [8.567825, 47.382629], [8.567812, 47.382614], [8.567801, 47.382598], [8.567791, 47.382582], [8.567784, 47.382565], [8.56778, 47.382548], [8.567777, 47.38253], [8.567777, 47.382513], [8.567779, 47.382495], [8.567784, 47.382478], [8.56781, 47.382413]]], "type": "MultiLineString"}, "id": "342", "properties": {}, "type": "Feature"}, {"bbox": [8.504945, 47.354337, 8.506613, 47.354949], "geometry": {"coordinates": [[[8.506613, 47.354949], [8.506438, 47.354869], [8.504945, 47.354337]]], "type": "MultiLineString"}, "id": "345", "properties": {}, "type": "Feature"}, {"bbox": [8.570516, 47.409195, 8.570945, 47.410234], "geometry": {"coordinates": [[[8.570945, 47.409195], [8.570516, 47.410234]]], "type": "MultiLineString"}, "id": "349", "properties": {}, "type": "Feature"}, {"bbox": [8.57691, 47.389016, 8.578247, 47.390184], "geometry": {"coordinates": [[[8.57691, 47.389016], [8.577048, 47.389133], [8.578247, 47.390184]]], "type": "MultiLineString"}, "id": "351", "properties": {}, "type": "Feature"}, {"bbox": [8.563061, 47.362243, 8.563881, 47.362569], "geometry": {"coordinates": [[[8.563881, 47.362569], [8.563061, 47.362243]]], "type": "MultiLineString"}, "id": "352", "properties": {}, "type": "Feature"}, {"bbox": [8.526351, 47.342947, 8.526801, 47.343363], "geometry": {"coordinates": [[[8.526351, 47.343363], [8.526765, 47.342967], [8.526801, 47.342947]]], "type": "MultiLineString"}, "id": "360", "properties": {}, "type": "Feature"}, {"bbox": [8.542359, 47.392509, 8.54277, 47.392905], "geometry": {"coordinates": [[[8.542359, 47.392509], [8.54277, 47.392905]]], "type": "MultiLineString"}, "id": "361", "properties": {}, "type": "Feature"}, {"bbox": [8.53535, 47.423714, 8.53824, 47.424073], "geometry": {"coordinates": [[[8.53535, 47.423714], [8.536771, 47.423835], [8.537203, 47.423846], [8.537461, 47.42393], [8.53824, 47.424073]]], "type": "MultiLineString"}, "id": "362", "properties": {}, "type": "Feature"}, {"bbox": [8.545258, 47.419886, 8.545871, 47.420452], "geometry": {"coordinates": [[[8.545871, 47.419886], [8.545258, 47.420452]]], "type": "MultiLineString"}, "id": "364", "properties": {}, "type": "Feature"}, {"bbox": [8.546858, 47.428787, 8.547382, 47.429007], "geometry": {"coordinates": [[[8.546858, 47.429007], [8.547382, 47.428787]]], "type": "MultiLineString"}, "id": "365", "properties": {}, "type": "Feature"}, {"bbox": [8.500909, 47.363768, 8.501214, 47.364126], "geometry": {"coordinates": [[[8.501203, 47.364126], [8.501214, 47.364044], [8.501005, 47.363826], [8.500909, 47.363768]]], "type": "MultiLineString"}, "id": "367", "properties": {}, "type": "Feature"}, {"bbox": [8.520267, 47.388047, 8.520874, 47.388477], "geometry": {"coordinates": [[[8.520267, 47.388431], [8.520493, 47.388338], [8.520623, 47.388477], [8.520874, 47.388372], [8.520604, 47.388047], [8.520488, 47.388105]]], "type": "MultiLineString"}, "id": "373", "properties": {}, "type": "Feature"}, {"bbox": [8.551982, 47.369979, 8.552264, 47.370251], "geometry": {"coordinates": [[[8.552084, 47.370251], [8.552066, 47.370217], [8.551982, 47.370036], [8.552264, 47.369979]]], "type": "MultiLineString"}, "id": "374", "properties": {}, "type": "Feature"}, {"bbox": [8.518178, 47.380026, 8.518962, 47.380721], "geometry": {"coordinates": [[[8.518962, 47.380721], [8.518178, 47.380026]]], "type": "MultiLineString"}, "id": "375", "properties": {}, "type": "Feature"}, {"bbox": [8.540417, 47.407547, 8.540464, 47.407844], "geometry": {"coordinates": [[[8.540417, 47.407844], [8.540425, 47.407607], [8.540464, 47.407547]]], "type": "MultiLineString"}, "id": "376", "properties": {}, "type": "Feature"}, {"bbox": [8.495984, 47.380581, 8.497188, 47.381454], "geometry": {"coordinates": [[[8.495984, 47.380581], [8.496587, 47.38102], [8.497188, 47.381454]]], "type": "MultiLineString"}, "id": "379", "properties": {}, "type": "Feature"}, {"bbox": [8.535349, 47.382904, 8.536437, 47.383606], "geometry": {"coordinates": [[[8.535349, 47.382904], [8.53571, 47.383139], [8.536073, 47.383373], [8.536437, 47.383606]]], "type": "MultiLineString"}, "id": "380", "properties": {}, "type": "Feature"}, {"bbox": [8.517812, 47.388317, 8.518181, 47.38849], "geometry": {"coordinates": [[[8.518181, 47.388317], [8.518056, 47.388372], [8.517933, 47.38843], [8.517812, 47.38849]]], "type": "MultiLineString"}, "id": "381", "properties": {}, "type": "Feature"}, {"bbox": [8.526732, 47.409519, 8.527893, 47.410236], "geometry": {"coordinates": [[[8.526732, 47.410236], [8.52728, 47.409932], [8.527893, 47.409519]]], "type": "MultiLineString"}, "id": "382", "properties": {}, "type": "Feature"}, {"bbox": [8.537829, 47.397405, 8.538546, 47.397726], "geometry": {"coordinates": [[[8.537829, 47.397405], [8.538033, 47.397502], [8.538239, 47.397596], [8.538447, 47.397688], [8.538546, 47.397726]]], "type": "MultiLineString"}, "id": "383", "properties": {}, "type": "Feature"}, {"bbox": [8.540917, 47.400092, 8.541875, 47.401088], "geometry": {"coordinates": [[[8.541875, 47.400092], [8.54181, 47.400151], [8.540917, 47.401088]]], "type": "MultiLineString"}, "id": "385", "properties": {}, "type": "Feature"}, {"bbox": [8.49597, 47.381697, 8.498266, 47.382741], "geometry": {"coordinates": [[[8.49597, 47.382741], [8.498266, 47.381697]]], "type": "MultiLineString"}, "id": "386", "properties": {}, "type": "Feature"}, {"bbox": [8.577111, 47.408662, 8.577378, 47.409125], "geometry": {"coordinates": [[[8.577111, 47.408662], [8.577378, 47.409125]]], "type": "MultiLineString"}, "id": "390", "properties": {}, "type": "Feature"}, {"bbox": [8.494496, 47.381329, 8.494599, 47.381377], "geometry": {"coordinates": [[[8.494599, 47.381329], [8.494496, 47.381377]]], "type": "MultiLineString"}, "id": "396", "properties": {}, "type": "Feature"}, {"bbox": [8.483755, 47.386824, 8.483796, 47.386935], "geometry": {"coordinates": [[[8.483755, 47.386935], [8.483796, 47.386824]]], "type": "MultiLineString"}, "id": "397", "properties": {}, "type": "Feature"}, {"bbox": [8.543981, 47.373138, 8.545108, 47.373527], "geometry": {"coordinates": [[[8.543981, 47.373138], [8.544158, 47.373163], [8.544332, 47.373197], [8.544501, 47.373241], [8.544665, 47.373293], [8.544786, 47.373339], [8.544903, 47.373389], [8.545016, 47.373445], [8.545108, 47.373527]]], "type": "MultiLineString"}, "id": "402", "properties": {}, "type": "Feature"}, {"bbox": [8.545557, 47.417488, 8.545617, 47.417513], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545617, 47.417513]]], "type": "MultiLineString"}, "id": "405", "properties": {}, "type": "Feature"}, {"bbox": [8.526755, 47.394199, 8.526863, 47.394356], "geometry": {"coordinates": [[[8.526755, 47.394199], [8.526863, 47.394356]]], "type": "MultiLineString"}, "id": "409", "properties": {}, "type": "Feature"}, {"bbox": [8.50611, 47.40651, 8.506552, 47.407126], "geometry": {"coordinates": [[[8.50611, 47.40651], [8.506326, 47.406801], [8.506552, 47.407126]]], "type": "MultiLineString"}, "id": "410", "properties": {}, "type": "Feature"}, {"bbox": [8.542037, 47.418559, 8.542256, 47.419577], "geometry": {"coordinates": [[[8.542037, 47.418559], [8.542133, 47.418777], [8.542154, 47.418879], [8.542205, 47.419203], [8.542256, 47.419577]]], "type": "MultiLineString"}, "id": "411", "properties": {}, "type": "Feature"}, {"bbox": [8.529389, 47.372033, 8.529531, 47.372105], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529389, 47.372105]]], "type": "MultiLineString"}, "id": "412", "properties": {}, "type": "Feature"}, {"bbox": [8.546891, 47.401377, 8.548124, 47.401704], "geometry": {"coordinates": [[[8.548124, 47.401704], [8.547377, 47.40157], [8.547413, 47.401472], [8.546891, 47.401377]]], "type": "MultiLineString"}, "id": "413", "properties": {}, "type": "Feature"}, {"bbox": [8.540623, 47.41644, 8.540718, 47.417106], "geometry": {"coordinates": [[[8.540623, 47.41644], [8.540718, 47.417106]]], "type": "MultiLineString"}, "id": "414", "properties": {}, "type": "Feature"}, {"bbox": [8.555931, 47.355464, 8.556426, 47.355728], "geometry": {"coordinates": [[[8.555931, 47.355464], [8.556341, 47.355656], [8.556426, 47.355728]]], "type": "MultiLineString"}, "id": "415", "properties": {}, "type": "Feature"}, {"bbox": [8.477081, 47.389905, 8.477326, 47.390252], "geometry": {"coordinates": [[[8.477081, 47.389905], [8.477326, 47.390252]]], "type": "MultiLineString"}, "id": "418", "properties": {}, "type": "Feature"}, {"bbox": [8.522843, 47.389517, 8.523385, 47.390189], "geometry": {"coordinates": [[[8.523385, 47.390189], [8.522843, 47.389517]]], "type": "MultiLineString"}, "id": "420", "properties": {}, "type": "Feature"}, {"bbox": [8.540723, 47.373357, 8.540725, 47.373382], "geometry": {"coordinates": [[[8.540725, 47.373382], [8.540723, 47.373357]]], "type": "MultiLineString"}, "id": "422", "properties": {}, "type": "Feature"}, {"bbox": [8.541862, 47.369868, 8.54191, 47.371304], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.541884, 47.369954], [8.541908, 47.370329], [8.54191, 47.370444], [8.541881, 47.370639], [8.541875, 47.370818], [8.541882, 47.371029], [8.541866, 47.371304]]], "type": "MultiLineString"}, "id": "428", "properties": {}, "type": "Feature"}, {"bbox": [8.498487, 47.355102, 8.502567, 47.358013], "geometry": {"coordinates": [[[8.502567, 47.355102], [8.502237, 47.355155], [8.502158, 47.355163], [8.502119, 47.355164], [8.501928, 47.355191], [8.50177, 47.355219], [8.501752, 47.355223], [8.501622, 47.355263], [8.50158, 47.355277], [8.501462, 47.35532], [8.501441, 47.355328], [8.501175, 47.355436], [8.500723, 47.35563], [8.500129, 47.355882], [8.500087, 47.355917], [8.500047, 47.35598], [8.499776, 47.356468], [8.499649, 47.356685], [8.499392, 47.357061], [8.499094, 47.357423], [8.498758, 47.35777], [8.498575, 47.357936], [8.498487, 47.358013]]], "type": "MultiLineString"}, "id": "430", "properties": {}, "type": "Feature"}, {"bbox": [8.560577, 47.380167, 8.561243, 47.380681], "geometry": {"coordinates": [[[8.560577, 47.380167], [8.561063, 47.380543], [8.561243, 47.380681]]], "type": "MultiLineString"}, "id": "432", "properties": {}, "type": "Feature"}, {"bbox": [8.486132, 47.389747, 8.486861, 47.390902], "geometry": {"coordinates": [[[8.486764, 47.390902], [8.486132, 47.389897], [8.486693, 47.389747], [8.486861, 47.389774]]], "type": "MultiLineString"}, "id": "433", "properties": {}, "type": "Feature"}, {"bbox": [8.524401, 47.351756, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.525744, 47.351829], [8.524545, 47.351771], [8.524401, 47.351756]]], "type": "MultiLineString"}, "id": "436", "properties": {}, "type": "Feature"}, {"bbox": [8.515057, 47.387342, 8.515399, 47.387467], "geometry": {"coordinates": [[[8.515057, 47.387467], [8.515399, 47.387342]]], "type": "MultiLineString"}, "id": "437", "properties": {}, "type": "Feature"}, {"bbox": [8.534434, 47.376794, 8.535586, 47.377849], "geometry": {"coordinates": [[[8.534434, 47.376794], [8.535586, 47.377849]]], "type": "MultiLineString"}, "id": "438", "properties": {}, "type": "Feature"}, {"bbox": [8.534951, 47.41116, 8.535032, 47.411606], "geometry": {"coordinates": [[[8.535032, 47.41116], [8.534951, 47.411606]]], "type": "MultiLineString"}, "id": "446", "properties": {}, "type": "Feature"}, {"bbox": [8.545858, 47.375077, 8.547307, 47.375433], "geometry": {"coordinates": [[[8.545858, 47.375077], [8.546648, 47.375351], [8.546906, 47.375433], [8.547105, 47.375353], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "447", "properties": {}, "type": "Feature"}, {"bbox": [8.589148, 47.399316, 8.58984, 47.400407], "geometry": {"coordinates": [[[8.589148, 47.399316], [8.589221, 47.399441], [8.58984, 47.400407]]], "type": "MultiLineString"}, "id": "449", "properties": {}, "type": "Feature"}, {"bbox": [8.542789, 47.373165, 8.543686, 47.373209], "geometry": {"coordinates": [[[8.542789, 47.373178], [8.54295, 47.373165], [8.543686, 47.373209]]], "type": "MultiLineString"}, "id": "450", "properties": {}, "type": "Feature"}, {"bbox": [8.581382, 47.355431, 8.582338, 47.355832], "geometry": {"coordinates": [[[8.581382, 47.355431], [8.581435, 47.355439], [8.581822, 47.355612], [8.582038, 47.355749], [8.582338, 47.355832]]], "type": "MultiLineString"}, "id": "451", "properties": {}, "type": "Feature"}, {"bbox": [8.555063, 47.367468, 8.555104, 47.367506], "geometry": {"coordinates": [[[8.555063, 47.367506], [8.555104, 47.367468]]], "type": "MultiLineString"}, "id": "452", "properties": {}, "type": "Feature"}, {"bbox": [8.478217, 47.390298, 8.478633, 47.390769], "geometry": {"coordinates": [[[8.478633, 47.390769], [8.478217, 47.390298]]], "type": "MultiLineString"}, "id": "455", "properties": {}, "type": "Feature"}, {"bbox": [8.476068, 47.414098, 8.477112, 47.414408], "geometry": {"coordinates": [[[8.477112, 47.414396], [8.476328, 47.414408], [8.476315, 47.414126], [8.476144, 47.414106], [8.476068, 47.414098]]], "type": "MultiLineString"}, "id": "457", "properties": {}, "type": "Feature"}, {"bbox": [8.533202, 47.343038, 8.533998, 47.343412], "geometry": {"coordinates": [[[8.533998, 47.343412], [8.533761, 47.343288], [8.533525, 47.343164], [8.533363, 47.343129], [8.533202, 47.343038]]], "type": "MultiLineString"}, "id": "458", "properties": {}, "type": "Feature"}, {"bbox": [8.543088, 47.37181, 8.5431, 47.37245], "geometry": {"coordinates": [[[8.5431, 47.37181], [8.543088, 47.372133], [8.54309, 47.37245]]], "type": "MultiLineString"}, "id": "463", "properties": {}, "type": "Feature"}, {"bbox": [8.546182, 47.410197, 8.5467, 47.410217], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546355, 47.410197], [8.546528, 47.410203], [8.5467, 47.410217]]], "type": "MultiLineString"}, "id": "466", "properties": {}, "type": "Feature"}, {"bbox": [8.583434, 47.405168, 8.58516, 47.405535], "geometry": {"coordinates": [[[8.58516, 47.405535], [8.584946, 47.405512], [8.583872, 47.405273], [8.583434, 47.405168]]], "type": "MultiLineString"}, "id": "467", "properties": {}, "type": "Feature"}, {"bbox": [8.503738, 47.40332, 8.504188, 47.40355], "geometry": {"coordinates": [[[8.503738, 47.40355], [8.503753, 47.403542], [8.504188, 47.40332]]], "type": "MultiLineString"}, "id": "470", "properties": {}, "type": "Feature"}, {"bbox": [8.53972, 47.370084, 8.540263, 47.370242], "geometry": {"coordinates": [[[8.540263, 47.37012], [8.540051, 47.370242], [8.53972, 47.370084]]], "type": "MultiLineString"}, "id": "471", "properties": {}, "type": "Feature"}, {"bbox": [8.553671, 47.409431, 8.553879, 47.41072], "geometry": {"coordinates": [[[8.553879, 47.409431], [8.553761, 47.409484], [8.553721, 47.409622], [8.553686, 47.410381], [8.553671, 47.41072]]], "type": "MultiLineString"}, "id": "475", "properties": {}, "type": "Feature"}, {"bbox": [8.53949, 47.415774, 8.540529, 47.415834], "geometry": {"coordinates": [[[8.540529, 47.415774], [8.53949, 47.415834]]], "type": "MultiLineString"}, "id": "476", "properties": {}, "type": "Feature"}, {"bbox": [8.519458, 47.388441, 8.519695, 47.388618], "geometry": {"coordinates": [[[8.519458, 47.388618], [8.519695, 47.38856], [8.51961, 47.388441], [8.519495, 47.388472]]], "type": "MultiLineString"}, "id": "486", "properties": {}, "type": "Feature"}, {"bbox": [8.517671, 47.341603, 8.518374, 47.341875], "geometry": {"coordinates": [[[8.518374, 47.341603], [8.51776, 47.3418], [8.517671, 47.341875]]], "type": "MultiLineString"}, "id": "487", "properties": {}, "type": "Feature"}, {"bbox": [8.546883, 47.372555, 8.546959, 47.372885], "geometry": {"coordinates": [[[8.546959, 47.372555], [8.546883, 47.372885]]], "type": "MultiLineString"}, "id": "488", "properties": {}, "type": "Feature"}, {"bbox": [8.50096, 47.399722, 8.502517, 47.401442], "geometry": {"coordinates": [[[8.502197, 47.399722], [8.502241, 47.399798], [8.502281, 47.399864], [8.502517, 47.400235], [8.501744, 47.400725], [8.501163, 47.401049], [8.501093, 47.401117], [8.500986, 47.401243], [8.50096, 47.401327], [8.500978, 47.401346], [8.501041, 47.401442]]], "type": "MultiLineString"}, "id": "490", "properties": {}, "type": "Feature"}, {"bbox": [8.485555, 47.371471, 8.487816, 47.372573], "geometry": {"coordinates": [[[8.485555, 47.372573], [8.485656, 47.372542], [8.486593, 47.372129], [8.487035, 47.371898], [8.487816, 47.371471]]], "type": "MultiLineString"}, "id": "496", "properties": {}, "type": "Feature"}, {"bbox": [8.485074, 47.373936, 8.4862, 47.3744], "geometry": {"coordinates": [[[8.485074, 47.374397], [8.485167, 47.3744], [8.485224, 47.374373], [8.485561, 47.374208], [8.485554, 47.374192], [8.485767, 47.374091], [8.485799, 47.37406], [8.485792, 47.374026], [8.4862, 47.373936]]], "type": "MultiLineString"}, "id": "499", "properties": {}, "type": "Feature"}, {"bbox": [8.524804, 47.33821, 8.526983, 47.338267], "geometry": {"coordinates": [[[8.526983, 47.338252], [8.52682, 47.338267], [8.525918, 47.338239], [8.525804, 47.338222], [8.524804, 47.33821]]], "type": "MultiLineString"}, "id": "500", "properties": {}, "type": "Feature"}, {"bbox": [8.546463, 47.426417, 8.546903, 47.426546], "geometry": {"coordinates": [[[8.546903, 47.426546], [8.54676, 47.42652], [8.546463, 47.426417]]], "type": "MultiLineString"}, "id": "503", "properties": {}, "type": "Feature"}, {"bbox": [8.492476, 47.37499, 8.492739, 47.375751], "geometry": {"coordinates": [[[8.492739, 47.375751], [8.492476, 47.37499]]], "type": "MultiLineString"}, "id": "504", "properties": {}, "type": "Feature"}, {"bbox": [8.5386, 47.371573, 8.539595, 47.37213], "geometry": {"coordinates": [[[8.5386, 47.371573], [8.538729, 47.371599], [8.538708, 47.371661], [8.538892, 47.371689], [8.53904, 47.371735], [8.538964, 47.371875], [8.539076, 47.371899], [8.539253, 47.372003], [8.539369, 47.37213], [8.539595, 47.372053]]], "type": "MultiLineString"}, "id": "505", "properties": {}, "type": "Feature"}, {"bbox": [8.533327, 47.371787, 8.534156, 47.371962], "geometry": {"coordinates": [[[8.534156, 47.371787], [8.533525, 47.371885], [8.533327, 47.371962]]], "type": "MultiLineString"}, "id": "513", "properties": {}, "type": "Feature"}, {"bbox": [8.540224, 47.366428, 8.540541, 47.367239], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540224, 47.367239]]], "type": "MultiLineString"}, "id": "514", "properties": {}, "type": "Feature"}, {"bbox": [8.527735, 47.341533, 8.528195, 47.341951], "geometry": {"coordinates": [[[8.528195, 47.341533], [8.527735, 47.341951]]], "type": "MultiLineString"}, "id": "515", "properties": {}, "type": "Feature"}, {"bbox": [8.525603, 47.364079, 8.526559, 47.365493], "geometry": {"coordinates": [[[8.526332, 47.364221], [8.526252, 47.36416], [8.525911, 47.364079], [8.525697, 47.364989], [8.525603, 47.365389], [8.526559, 47.365493]]], "type": "MultiLineString"}, "id": "516", "properties": {}, "type": "Feature"}, {"bbox": [8.563172, 47.360567, 8.563318, 47.360973], "geometry": {"coordinates": [[[8.563172, 47.360567], [8.563318, 47.360973]]], "type": "MultiLineString"}, "id": "517", "properties": {}, "type": "Feature"}, {"bbox": [8.537393, 47.375246, 8.539012, 47.37563], "geometry": {"coordinates": [[[8.539012, 47.375246], [8.538296, 47.375415], [8.537558, 47.375592], [8.537393, 47.37563]]], "type": "MultiLineString"}, "id": "518", "properties": {}, "type": "Feature"}, {"bbox": [8.542783, 47.37279, 8.543741, 47.372851], "geometry": {"coordinates": [[[8.542783, 47.37279], [8.542903, 47.372796], [8.543133, 47.3728], [8.543153, 47.372803], [8.543356, 47.37283], [8.5435, 47.372841], [8.543741, 47.372851]]], "type": "MultiLineString"}, "id": "520", "properties": {}, "type": "Feature"}, {"bbox": [8.51916, 47.340715, 8.519334, 47.340757], "geometry": {"coordinates": [[[8.51916, 47.340715], [8.519334, 47.340757]]], "type": "MultiLineString"}, "id": "523", "properties": {}, "type": "Feature"}, {"bbox": [8.50552, 47.40742, 8.505559, 47.407472], "geometry": {"coordinates": [[[8.505559, 47.407472], [8.50552, 47.40742]]], "type": "MultiLineString"}, "id": "524", "properties": {}, "type": "Feature"}, {"bbox": [8.542121, 47.38135, 8.542719, 47.381575], "geometry": {"coordinates": [[[8.542121, 47.38135], [8.542617, 47.381545], [8.542719, 47.381575]]], "type": "MultiLineString"}, "id": "525", "properties": {}, "type": "Feature"}, {"bbox": [8.515621, 47.38618, 8.516584, 47.387354], "geometry": {"coordinates": [[[8.516584, 47.387354], [8.516569, 47.387335], [8.515621, 47.38618]]], "type": "MultiLineString"}, "id": "526", "properties": {}, "type": "Feature"}, {"bbox": [8.477393, 47.411814, 8.477649, 47.413605], "geometry": {"coordinates": [[[8.477649, 47.411814], [8.477626, 47.41202], [8.477496, 47.412864], [8.477559, 47.412872], [8.477534, 47.413069], [8.477465, 47.413064], [8.477424, 47.41333], [8.477393, 47.413482], [8.477449, 47.413605]]], "type": "MultiLineString"}, "id": "527", "properties": {}, "type": "Feature"}, {"bbox": [8.526064, 47.391279, 8.526591, 47.391948], "geometry": {"coordinates": [[[8.526064, 47.391279], [8.526148, 47.391382], [8.526256, 47.391513], [8.526292, 47.391562], [8.526591, 47.391948]]], "type": "MultiLineString"}, "id": "532", "properties": {}, "type": "Feature"}, {"bbox": [8.509092, 47.42423, 8.511388, 47.424888], "geometry": {"coordinates": [[[8.509092, 47.424637], [8.509267, 47.424888], [8.510294, 47.424576], [8.511388, 47.42423]]], "type": "MultiLineString"}, "id": "533", "properties": {}, "type": "Feature"}, {"bbox": [8.556668, 47.364103, 8.557706, 47.364409], "geometry": {"coordinates": [[[8.556668, 47.364103], [8.557531, 47.364357], [8.557706, 47.364409]]], "type": "MultiLineString"}, "id": "534", "properties": {}, "type": "Feature"}, {"bbox": [8.508697, 47.3539, 8.508742, 47.353972], "geometry": {"coordinates": [[[8.508742, 47.3539], [8.508697, 47.353972]]], "type": "MultiLineString"}, "id": "541", "properties": {}, "type": "Feature"}, {"bbox": [8.551475, 47.420316, 8.551688, 47.420677], "geometry": {"coordinates": [[[8.551475, 47.420316], [8.551584, 47.420412], [8.551628, 47.420489], [8.551688, 47.420677]]], "type": "MultiLineString"}, "id": "544", "properties": {}, "type": "Feature"}, {"bbox": [8.517099, 47.386163, 8.518126, 47.386532], "geometry": {"coordinates": [[[8.518126, 47.386209], [8.517923, 47.386163], [8.517099, 47.386532]]], "type": "MultiLineString"}, "id": "545", "properties": {}, "type": "Feature"}, {"bbox": [8.529853, 47.369225, 8.530657, 47.369654], "geometry": {"coordinates": [[[8.530657, 47.369654], [8.529853, 47.369225]]], "type": "MultiLineString"}, "id": "546", "properties": {}, "type": "Feature"}, {"bbox": [8.544026, 47.404506, 8.544483, 47.405336], "geometry": {"coordinates": [[[8.544026, 47.404506], [8.544288, 47.404951], [8.544483, 47.405336]]], "type": "MultiLineString"}, "id": "547", "properties": {}, "type": "Feature"}, {"bbox": [8.540961, 47.375903, 8.541702, 47.376189], "geometry": {"coordinates": [[[8.541044, 47.375903], [8.540961, 47.376102], [8.541641, 47.376189], [8.541702, 47.376]]], "type": "MultiLineString"}, "id": "549", "properties": {}, "type": "Feature"}, {"bbox": [8.511352, 47.395076, 8.511919, 47.39646], "geometry": {"coordinates": [[[8.511352, 47.395076], [8.511417, 47.395441], [8.511566, 47.395436], [8.511663, 47.395825], [8.511689, 47.395883], [8.511919, 47.39646]]], "type": "MultiLineString"}, "id": "550", "properties": {}, "type": "Feature"}, {"bbox": [8.51978, 47.345671, 8.520186, 47.345727], "geometry": {"coordinates": [[[8.520186, 47.345671], [8.51978, 47.345727]]], "type": "MultiLineString"}, "id": "552", "properties": {}, "type": "Feature"}, {"bbox": [8.54137, 47.370809, 8.541875, 47.370877], "geometry": {"coordinates": [[[8.541875, 47.370818], [8.541846, 47.370809], [8.541476, 47.370846], [8.54137, 47.370877]]], "type": "MultiLineString"}, "id": "553", "properties": {}, "type": "Feature"}, {"bbox": [8.544573, 47.372812, 8.545027, 47.372929], "geometry": {"coordinates": [[[8.545027, 47.372929], [8.544573, 47.372812]]], "type": "MultiLineString"}, "id": "554", "properties": {}, "type": "Feature"}, {"bbox": [8.484391, 47.390288, 8.485632, 47.391308], "geometry": {"coordinates": [[[8.484968, 47.391308], [8.485632, 47.391097], [8.48508, 47.390288], [8.484702, 47.390391], [8.484391, 47.390441]]], "type": "MultiLineString"}, "id": "555", "properties": {}, "type": "Feature"}, {"bbox": [8.527834, 47.356788, 8.527939, 47.35745], "geometry": {"coordinates": [[[8.527834, 47.35745], [8.527939, 47.356788]]], "type": "MultiLineString"}, "id": "556", "properties": {}, "type": "Feature"}, {"bbox": [8.522294, 47.362963, 8.523199, 47.363932], "geometry": {"coordinates": [[[8.523199, 47.363932], [8.522294, 47.362963]]], "type": "MultiLineString"}, "id": "558", "properties": {}, "type": "Feature"}, {"bbox": [8.539902, 47.371931, 8.54091, 47.371979], "geometry": {"coordinates": [[[8.54091, 47.371979], [8.540352, 47.371979], [8.540055, 47.371979], [8.539902, 47.371931]]], "type": "MultiLineString"}, "id": "559", "properties": {}, "type": "Feature"}, {"bbox": [8.548218, 47.364754, 8.54945, 47.36549], "geometry": {"coordinates": [[[8.548218, 47.36549], [8.548382, 47.36539], [8.548801, 47.365149], [8.54906, 47.365145], [8.549198, 47.365056], [8.54945, 47.364754]]], "type": "MultiLineString"}, "id": "562", "properties": {}, "type": "Feature"}, {"bbox": [8.546148, 47.379077, 8.546923, 47.379347], "geometry": {"coordinates": [[[8.546148, 47.379077], [8.546923, 47.379347]]], "type": "MultiLineString"}, "id": "563", "properties": {}, "type": "Feature"}, {"bbox": [8.508999, 47.381994, 8.509575, 47.382691], "geometry": {"coordinates": [[[8.509575, 47.382691], [8.509533, 47.38265], [8.508999, 47.381994]]], "type": "MultiLineString"}, "id": "565", "properties": {}, "type": "Feature"}, {"bbox": [8.56307, 47.413105, 8.563172, 47.414255], "geometry": {"coordinates": [[[8.563172, 47.413105], [8.563168, 47.413225], [8.563168, 47.413387], [8.563096, 47.413555], [8.563075, 47.41411], [8.563072, 47.414169], [8.56307, 47.414255]]], "type": "MultiLineString"}, "id": "566", "properties": {}, "type": "Feature"}, {"bbox": [8.504013, 47.400127, 8.50468, 47.40057], "geometry": {"coordinates": [[[8.504013, 47.400127], [8.504118, 47.40017], [8.504658, 47.400544], [8.50468, 47.40057]]], "type": "MultiLineString"}, "id": "567", "properties": {}, "type": "Feature"}, {"bbox": [8.567709, 47.380498, 8.568672, 47.382282], "geometry": {"coordinates": [[[8.567709, 47.380498], [8.56778, 47.380597], [8.567877, 47.380733], [8.567959, 47.380874], [8.568025, 47.381019], [8.568059, 47.381098], [8.568232, 47.381534], [8.568293, 47.381657], [8.568361, 47.38178], [8.568434, 47.3819], [8.568603, 47.382172], [8.568672, 47.382282]]], "type": "MultiLineString"}, "id": "568", "properties": {}, "type": "Feature"}, {"bbox": [8.548691, 47.372037, 8.549339, 47.372212], "geometry": {"coordinates": [[[8.549339, 47.372037], [8.549121, 47.372212], [8.548691, 47.372101]]], "type": "MultiLineString"}, "id": "570", "properties": {}, "type": "Feature"}, {"bbox": [8.521309, 47.389505, 8.52239, 47.390627], "geometry": {"coordinates": [[[8.521309, 47.389505], [8.521474, 47.389678], [8.52239, 47.390627]]], "type": "MultiLineString"}, "id": "571", "properties": {}, "type": "Feature"}, {"bbox": [8.516341, 47.336757, 8.516976, 47.337521], "geometry": {"coordinates": [[[8.516976, 47.337521], [8.516341, 47.337402], [8.516431, 47.336757]]], "type": "MultiLineString"}, "id": "572", "properties": {}, "type": "Feature"}, {"bbox": [8.582905, 47.403442, 8.584269, 47.406276], "geometry": {"coordinates": [[[8.584269, 47.403442], [8.584228, 47.403534], [8.583794, 47.404408], [8.583464, 47.405104], [8.583434, 47.405168], [8.583108, 47.4058], [8.582912, 47.406208], [8.582905, 47.406276]]], "type": "MultiLineString"}, "id": "573", "properties": {}, "type": "Feature"}, {"bbox": [8.535275, 47.342078, 8.535464, 47.342395], "geometry": {"coordinates": [[[8.535275, 47.342395], [8.535288, 47.342351], [8.535463, 47.342079], [8.535464, 47.342078]]], "type": "MultiLineString"}, "id": "574", "properties": {}, "type": "Feature"}, {"bbox": [8.546421, 47.422039, 8.547527, 47.423252], "geometry": {"coordinates": [[[8.546421, 47.422039], [8.547021, 47.422539], [8.547122, 47.422563], [8.547527, 47.422919], [8.547401, 47.422973], [8.547441, 47.423038], [8.547277, 47.423093], [8.547233, 47.42312], [8.547001, 47.423185], [8.547058, 47.423252]]], "type": "MultiLineString"}, "id": "576", "properties": {}, "type": "Feature"}, {"bbox": [8.545732, 47.372908, 8.546474, 47.373742], "geometry": {"coordinates": [[[8.546474, 47.372908], [8.546403, 47.372971], [8.546039, 47.373368], [8.545885, 47.373507], [8.545769, 47.373634], [8.545744, 47.373685], [8.545732, 47.373742]]], "type": "MultiLineString"}, "id": "577", "properties": {}, "type": "Feature"}, {"bbox": [8.544298, 47.410311, 8.544758, 47.410653], "geometry": {"coordinates": [[[8.544298, 47.410653], [8.544337, 47.410595], [8.544512, 47.410651], [8.544573, 47.410639], [8.544758, 47.410311]]], "type": "MultiLineString"}, "id": "578", "properties": {}, "type": "Feature"}, {"bbox": [8.544639, 47.408288, 8.545447, 47.409032], "geometry": {"coordinates": [[[8.544639, 47.408288], [8.544935, 47.408627], [8.545291, 47.409018], [8.545447, 47.409032]]], "type": "MultiLineString"}, "id": "579", "properties": {}, "type": "Feature"}, {"bbox": [8.510997, 47.408885, 8.511464, 47.409593], "geometry": {"coordinates": [[[8.511464, 47.409593], [8.511363, 47.409451], [8.511317, 47.409341], [8.511227, 47.409228], [8.511093, 47.409036], [8.510997, 47.408885]]], "type": "MultiLineString"}, "id": "582", "properties": {}, "type": "Feature"}, {"bbox": [8.543386, 47.383468, 8.544481, 47.383617], "geometry": {"coordinates": [[[8.543386, 47.383475], [8.543526, 47.383468], [8.544315, 47.383597], [8.544481, 47.383617]]], "type": "MultiLineString"}, "id": "583", "properties": {}, "type": "Feature"}, {"bbox": [8.520104, 47.35107, 8.520465, 47.351695], "geometry": {"coordinates": [[[8.520465, 47.35107], [8.520361, 47.351252], [8.520104, 47.351695]]], "type": "MultiLineString"}, "id": "584", "properties": {}, "type": "Feature"}, {"bbox": [8.515266, 47.386138, 8.515346, 47.386229], "geometry": {"coordinates": [[[8.515346, 47.386138], [8.515266, 47.386229]]], "type": "MultiLineString"}, "id": "585", "properties": {}, "type": "Feature"}, {"bbox": [8.485613, 47.387179, 8.485693, 47.38733], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.485693, 47.38733]]], "type": "MultiLineString"}, "id": "586", "properties": {}, "type": "Feature"}, {"bbox": [8.476755, 47.385672, 8.477517, 47.386407], "geometry": {"coordinates": [[[8.477073, 47.386407], [8.476755, 47.385937], [8.477517, 47.385672]]], "type": "MultiLineString"}, "id": "587", "properties": {}, "type": "Feature"}, {"bbox": [8.584919, 47.377358, 8.587638, 47.380026], "geometry": {"coordinates": [[[8.584919, 47.377358], [8.585051, 47.377483], [8.58585, 47.378289], [8.586517, 47.378937], [8.587638, 47.380026]]], "type": "MultiLineString"}, "id": "588", "properties": {}, "type": "Feature"}, {"bbox": [8.527201, 47.354525, 8.527303, 47.355112], "geometry": {"coordinates": [[[8.527201, 47.355112], [8.527303, 47.355042], [8.527303, 47.354764], [8.527303, 47.354525]]], "type": "MultiLineString"}, "id": "591", "properties": {}, "type": "Feature"}, {"bbox": [8.532278, 47.412803, 8.532577, 47.412829], "geometry": {"coordinates": [[[8.532278, 47.412803], [8.532317, 47.412805], [8.532577, 47.412829]]], "type": "MultiLineString"}, "id": "592", "properties": {}, "type": "Feature"}, {"bbox": [8.545153, 47.372467, 8.545705, 47.37286], "geometry": {"coordinates": [[[8.545153, 47.372783], [8.5454, 47.37286], [8.545512, 47.372699], [8.545592, 47.372527], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "593", "properties": {}, "type": "Feature"}, {"bbox": [8.487621, 47.402319, 8.487822, 47.402687], "geometry": {"coordinates": [[[8.487655, 47.402319], [8.487741, 47.402378], [8.487747, 47.402383], [8.487773, 47.402372], [8.48779, 47.402389], [8.487621, 47.402487], [8.487634, 47.402499], [8.487682, 47.402486], [8.487773, 47.402641], [8.487792, 47.402667], [8.487822, 47.402687]]], "type": "MultiLineString"}, "id": "594", "properties": {}, "type": "Feature"}, {"bbox": [8.541003, 47.371292, 8.541503, 47.371307], "geometry": {"coordinates": [[[8.541503, 47.371307], [8.541314, 47.371292], [8.541003, 47.371298]]], "type": "MultiLineString"}, "id": "595", "properties": {}, "type": "Feature"}, {"bbox": [8.518296, 47.333731, 8.51909, 47.334093], "geometry": {"coordinates": [[[8.51909, 47.333731], [8.518296, 47.334093]]], "type": "MultiLineString"}, "id": "598", "properties": {}, "type": "Feature"}, {"bbox": [8.543537, 47.378872, 8.544009, 47.378885], "geometry": {"coordinates": [[[8.543537, 47.378872], [8.544009, 47.378885]]], "type": "MultiLineString"}, "id": "600", "properties": {}, "type": "Feature"}, {"bbox": [8.519266, 47.387405, 8.520033, 47.388192], "geometry": {"coordinates": [[[8.519266, 47.387405], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "604", "properties": {}, "type": "Feature"}, {"bbox": [8.540833, 47.371993, 8.541455, 47.372128], "geometry": {"coordinates": [[[8.541455, 47.371993], [8.541314, 47.372015], [8.54097, 47.372106], [8.540961, 47.372128], [8.540833, 47.372123]]], "type": "MultiLineString"}, "id": "610", "properties": {}, "type": "Feature"}, {"bbox": [8.519518, 47.413526, 8.519698, 47.41395], "geometry": {"coordinates": [[[8.519698, 47.41395], [8.519578, 47.413694], [8.519581, 47.413654], [8.519518, 47.413526]]], "type": "MultiLineString"}, "id": "611", "properties": {}, "type": "Feature"}, {"bbox": [8.532927, 47.405078, 8.533464, 47.405639], "geometry": {"coordinates": [[[8.533464, 47.405078], [8.532927, 47.405639]]], "type": "MultiLineString"}, "id": "614", "properties": {}, "type": "Feature"}, {"bbox": [8.557342, 47.402877, 8.557417, 47.403296], "geometry": {"coordinates": [[[8.557342, 47.403296], [8.557363, 47.403156], [8.557388, 47.403017], [8.557417, 47.402877]]], "type": "MultiLineString"}, "id": "615", "properties": {}, "type": "Feature"}, {"bbox": [8.502118, 47.385724, 8.504581, 47.386472], "geometry": {"coordinates": [[[8.504581, 47.385724], [8.503354, 47.3861], [8.502118, 47.386472]]], "type": "MultiLineString"}, "id": "616", "properties": {}, "type": "Feature"}, {"bbox": [8.541628, 47.387706, 8.542108, 47.388476], "geometry": {"coordinates": [[[8.542108, 47.387706], [8.541648, 47.388363], [8.541628, 47.388476]]], "type": "MultiLineString"}, "id": "617", "properties": {}, "type": "Feature"}, {"bbox": [8.508571, 47.409473, 8.509273, 47.410405], "geometry": {"coordinates": [[[8.509021, 47.410405], [8.50913, 47.410277], [8.509273, 47.410228], [8.508723, 47.409473], [8.508571, 47.409521], [8.50913, 47.410277]]], "type": "MultiLineString"}, "id": "619", "properties": {}, "type": "Feature"}, {"bbox": [8.560818, 47.384269, 8.563865, 47.386425], "geometry": {"coordinates": [[[8.563865, 47.384269], [8.563073, 47.384743], [8.562355, 47.385203], [8.562124, 47.385369], [8.561705, 47.385713], [8.560904, 47.386394], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "621", "properties": {}, "type": "Feature"}, {"bbox": [8.538055, 47.428479, 8.540578, 47.42987], "geometry": {"coordinates": [[[8.538055, 47.42987], [8.539307, 47.429169], [8.540468, 47.428514], [8.540578, 47.428479]]], "type": "MultiLineString"}, "id": "623", "properties": {}, "type": "Feature"}, {"bbox": [8.529133, 47.359282, 8.529246, 47.360635], "geometry": {"coordinates": [[[8.529244, 47.359282], [8.529133, 47.359925], [8.529184, 47.359947], [8.529243, 47.360395], [8.529246, 47.360635]]], "type": "MultiLineString"}, "id": "624", "properties": {}, "type": "Feature"}, {"bbox": [8.477671, 47.382931, 8.478207, 47.383389], "geometry": {"coordinates": [[[8.477671, 47.383389], [8.477675, 47.383385], [8.477753, 47.383368], [8.47815, 47.382958], [8.478207, 47.382931]]], "type": "MultiLineString"}, "id": "626", "properties": {}, "type": "Feature"}, {"bbox": [8.548539, 47.414668, 8.551309, 47.415343], "geometry": {"coordinates": [[[8.548539, 47.415343], [8.54915, 47.415076], [8.549771, 47.414828], [8.549859, 47.414813], [8.550058, 47.414783], [8.551108, 47.414729], [8.551309, 47.414668]]], "type": "MultiLineString"}, "id": "628", "properties": {}, "type": "Feature"}, {"bbox": [8.539883, 47.370513, 8.540081, 47.37122], "geometry": {"coordinates": [[[8.540081, 47.370513], [8.539958, 47.370694], [8.54006, 47.37074], [8.539883, 47.371161], [8.53992, 47.37122]]], "type": "MultiLineString"}, "id": "629", "properties": {}, "type": "Feature"}, {"bbox": [8.514371, 47.417006, 8.51543, 47.418117], "geometry": {"coordinates": [[[8.514371, 47.417006], [8.51443, 47.417083], [8.515338, 47.418045], [8.51543, 47.418117]]], "type": "MultiLineString"}, "id": "630", "properties": {}, "type": "Feature"}, {"bbox": [8.544295, 47.368336, 8.54469, 47.368658], "geometry": {"coordinates": [[[8.544313, 47.368336], [8.544437, 47.368389], [8.544295, 47.368522], [8.544527, 47.368658], [8.54469, 47.368488]]], "type": "MultiLineString"}, "id": "632", "properties": {}, "type": "Feature"}, {"bbox": [8.57245, 47.412872, 8.572466, 47.413305], "geometry": {"coordinates": [[[8.572466, 47.412872], [8.57245, 47.413305]]], "type": "MultiLineString"}, "id": "644", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.385239, 8.497742, 47.385367], "geometry": {"coordinates": [[[8.497742, 47.385239], [8.497637, 47.385249], [8.497395, 47.385324], [8.497351, 47.385367]]], "type": "MultiLineString"}, "id": "658", "properties": {}, "type": "Feature"}, {"bbox": [8.557626, 47.404428, 8.557685, 47.404572], "geometry": {"coordinates": [[[8.557626, 47.404428], [8.557633, 47.404441], [8.557685, 47.404572]]], "type": "MultiLineString"}, "id": "659", "properties": {}, "type": "Feature"}, {"bbox": [8.528769, 47.372482, 8.528916, 47.372561], "geometry": {"coordinates": [[[8.528769, 47.372561], [8.528916, 47.372482]]], "type": "MultiLineString"}, "id": "662", "properties": {}, "type": "Feature"}, {"bbox": [8.506552, 47.407126, 8.507545, 47.408337], "geometry": {"coordinates": [[[8.506552, 47.407126], [8.506985, 47.407727], [8.507325, 47.408189], [8.507495, 47.408267], [8.507545, 47.408337]]], "type": "MultiLineString"}, "id": "663", "properties": {}, "type": "Feature"}, {"bbox": [8.513121, 47.420512, 8.513614, 47.420706], "geometry": {"coordinates": [[[8.513614, 47.420512], [8.513121, 47.420706]]], "type": "MultiLineString"}, "id": "667", "properties": {}, "type": "Feature"}, {"bbox": [8.540985, 47.37148, 8.54142, 47.371585], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541409, 47.371575], [8.541204, 47.371518], [8.540985, 47.37148]]], "type": "MultiLineString"}, "id": "670", "properties": {}, "type": "Feature"}, {"bbox": [8.517615, 47.364405, 8.518059, 47.365195], "geometry": {"coordinates": [[[8.518059, 47.364405], [8.517615, 47.365195]]], "type": "MultiLineString"}, "id": "672", "properties": {}, "type": "Feature"}, {"bbox": [8.488603, 47.361691, 8.49412, 47.363848], "geometry": {"coordinates": [[[8.49412, 47.363848], [8.494098, 47.363846], [8.494091, 47.363845], [8.494084, 47.363844], [8.494077, 47.363842], [8.49407, 47.36384], [8.494063, 47.363837], [8.494063, 47.363837], [8.493925, 47.363788], [8.493921, 47.363787], [8.493917, 47.363786], [8.493913, 47.363785], [8.493908, 47.363785], [8.493904, 47.363785], [8.4939, 47.363785], [8.493895, 47.363785], [8.493891, 47.363786], [8.493887, 47.363786], [8.493883, 47.363787], [8.493879, 47.363789], [8.493875, 47.36379], [8.493872, 47.363792], [8.493869, 47.363794], [8.493826, 47.363821], [8.493824, 47.363822], [8.493822, 47.363823], [8.49382, 47.363824], [8.493818, 47.363825], [8.493816, 47.363826], [8.493813, 47.363826], [8.493811, 47.363826], [8.493808, 47.363827], [8.493806, 47.363827], [8.493803, 47.363827], [8.493801, 47.363826], [8.493798, 47.363826], [8.493796, 47.363825], [8.493794, 47.363825], [8.493791, 47.363824], [8.493789, 47.363823], [8.493787, 47.363822], [8.493785, 47.363821], [8.493784, 47.363819], [8.493782, 47.363818], [8.493781, 47.363817], [8.49378, 47.363815], [8.493779, 47.363813], [8.493778, 47.363812], [8.493778, 47.36381], [8.493777, 47.363808], [8.493777, 47.363807], [8.493777, 47.363807], [8.493777, 47.363807], [8.493777, 47.363794], [8.493778, 47.363781], [8.493778, 47.363768], [8.49378, 47.363754], [8.493783, 47.36374], [8.493788, 47.363726], [8.493794, 47.363712], [8.493806, 47.363684], [8.493815, 47.363656], [8.493819, 47.363627], [8.493819, 47.363598], [8.493816, 47.363537], [8.493815, 47.363477], [8.493817, 47.363417], [8.493817, 47.363413], [8.493816, 47.363409], [8.493815, 47.363405], [8.493814, 47.363402], [8.493812, 47.363398], [8.493809, 47.363395], [8.493807, 47.363391], [8.493803, 47.363388], [8.493791, 47.363378], [8.493778, 47.363369], [8.493764, 47.36336], [8.493761, 47.363358], [8.493759, 47.363356], [8.493756, 47.363354], [8.493754, 47.363351], [8.493752, 47.363349], [8.493751, 47.363346], [8.49375, 47.363344], [8.493749, 47.363341], [8.493749, 47.363338], [8.493749, 47.363336], [8.493749, 47.363333], [8.493753, 47.363313], [8.493755, 47.363292], [8.493755, 47.363272], [8.493755, 47.363265], [8.493753, 47.363258], [8.493751, 47.363252], [8.493748, 47.363245], [8.493744, 47.363239], [8.49374, 47.363233], [8.493734, 47.363227], [8.493716, 47.36321], [8.493697, 47.363192], [8.493677, 47.363175], [8.493674, 47.363172], [8.493672, 47.363169], [8.49367, 47.363166], [8.493668, 47.363163], [8.493667, 47.36316], [8.493666, 47.363157], [8.493665, 47.363154], [8.493665, 47.363151], [8.493665, 47.363138], [8.493663, 47.363126], [8.49366, 47.363113], [8.493655, 47.363101], [8.493647, 47.363084], [8.493637, 47.363067], [8.493625, 47.363051], [8.493588, 47.363038], [8.493585, 47.363032], [8.493582, 47.363025], [8.49358, 47.363019], [8.493578, 47.363012], [8.493578, 47.363005], [8.493578, 47.362998], [8.49358, 47.362992], [8.493582, 47.362985], [8.493585, 47.362978], [8.493589, 47.362972], [8.493594, 47.362966], [8.4936, 47.36296], [8.493606, 47.362955], [8.493613, 47.36295], [8.49362, 47.362946], [8.493623, 47.362944], [8.493625, 47.362942], [8.493628, 47.36294], [8.49363, 47.362938], [8.493632, 47.362936], [8.493633, 47.362933], [8.493634, 47.362931], [8.493635, 47.362929], [8.493636, 47.362926], [8.493636, 47.362924], [8.493636, 47.362921], [8.493636, 47.362918], [8.493635, 47.362916], [8.493634, 47.362913], [8.493632, 47.362911], [8.493631, 47.362909], [8.493629, 47.362907], [8.493627, 47.362905], [8.493624, 47.362903], [8.493622, 47.362901], [8.493619, 47.362899], [8.493613, 47.362897], [8.493607, 47.362894], [8.4936, 47.362892], [8.493593, 47.362891], [8.493587, 47.36289], [8.49358, 47.362889], [8.493573, 47.362889], [8.493566, 47.362889], [8.493559, 47.36289], [8.493552, 47.362891], [8.493545, 47.362892], [8.493538, 47.362894], [8.493523, 47.362899], [8.493507, 47.362902], [8.493491, 47.362905], [8.493474, 47.362907], [8.493469, 47.362907], [8.493465, 47.362907], [8.49346, 47.362907], [8.493456, 47.362907], [8.493451, 47.362906], [8.493447, 47.362905], [8.493443, 47.362903], [8.493439, 47.362902], [8.493435, 47.3629], [8.493432, 47.362898], [8.493429, 47.362896], [8.493426, 47.362893], [8.493423, 47.362891], [8.49341, 47.362875], [8.493398, 47.362858], [8.493387, 47.362842], [8.493385, 47.362837], [8.493383, 47.362832], [8.493382, 47.362827], [8.493381, 47.362822], [8.493382, 47.362816], [8.493383, 47.362798], [8.493382, 47.362779], [8.49338, 47.36276], [8.493378, 47.362752], [8.493375, 47.362744], [8.493371, 47.362737], [8.493367, 47.362729], [8.493361, 47.362722], [8.493354, 47.362715], [8.493347, 47.362709], [8.493339, 47.362703], [8.49333, 47.362697], [8.493321, 47.362692], [8.493293, 47.36268], [8.493263, 47.362669], [8.493232, 47.36266], [8.493199, 47.362653], [8.493166, 47.362648], [8.493157, 47.362647], [8.493148, 47.362646], [8.493139, 47.362646], [8.49313, 47.362647], [8.493121, 47.362648], [8.493117, 47.362648], [8.493114, 47.362649], [8.49311, 47.362649], [8.493106, 47.362648], [8.493103, 47.362648], [8.493099, 47.362647], [8.493096, 47.362646], [8.493092, 47.362645], [8.493089, 47.362644], [8.493082, 47.36264], [8.493076, 47.362636], [8.493069, 47.362632], [8.493064, 47.362627], [8.493059, 47.362622], [8.493055, 47.362617], [8.493, 47.36254], [8.492996, 47.362533], [8.492992, 47.362526], [8.492989, 47.362519], [8.492987, 47.362511], [8.492987, 47.362503], [8.492987, 47.362496], [8.492988, 47.362488], [8.492993, 47.362468], [8.493001, 47.362449], [8.493011, 47.36243], [8.493013, 47.362427], [8.493014, 47.362424], [8.493015, 47.362421], [8.493015, 47.362418], [8.493016, 47.362415], [8.493015, 47.362412], [8.493013, 47.362403], [8.49301, 47.362395], [8.493006, 47.362386], [8.493, 47.362378], [8.492994, 47.362371], [8.492991, 47.362368], [8.492988, 47.362366], [8.492985, 47.362364], [8.492981, 47.362362], [8.492977, 47.36236], [8.492973, 47.362358], [8.492969, 47.362357], [8.492965, 47.362356], [8.49296, 47.362355], [8.492948, 47.362354], [8.492936, 47.362352], [8.492923, 47.362351], [8.492914, 47.36235], [8.492905, 47.362349], [8.492896, 47.362348], [8.492892, 47.362347], [8.492888, 47.362346], [8.492884, 47.362345], [8.49288, 47.362344], [8.492877, 47.362343], [8.492877, 47.362343], [8.492792, 47.362305], [8.492777, 47.362287], [8.492761, 47.362268], [8.492718, 47.362255], [8.492715, 47.362254], [8.492712, 47.362254], [8.492709, 47.362252], [8.492707, 47.362251], [8.492704, 47.36225], [8.492702, 47.362248], [8.4927, 47.362246], [8.492699, 47.362245], [8.492697, 47.362243], [8.492696, 47.362241], [8.492695, 47.362239], [8.492694, 47.362237], [8.492694, 47.362234], [8.492694, 47.362232], [8.492694, 47.36223], [8.492695, 47.362228], [8.492695, 47.362226], [8.492696, 47.362223], [8.492697, 47.36222], [8.492697, 47.362217], [8.492697, 47.362214], [8.492696, 47.362212], [8.492696, 47.362209], [8.492694, 47.362206], [8.492693, 47.362203], [8.492691, 47.362201], [8.492688, 47.362198], [8.492686, 47.362196], [8.492683, 47.362194], [8.49268, 47.362192], [8.492676, 47.36219], [8.492673, 47.362189], [8.49267, 47.362187], [8.492666, 47.362186], [8.492664, 47.362184], [8.492661, 47.362182], [8.492659, 47.36218], [8.492657, 47.362178], [8.492655, 47.362176], [8.492653, 47.362173], [8.492652, 47.362171], [8.492651, 47.362168], [8.492651, 47.362166], [8.49265, 47.362163], [8.49265, 47.362161], [8.492651, 47.362158], [8.492652, 47.362155], [8.492653, 47.362153], [8.492654, 47.362151], [8.492672, 47.362124], [8.492692, 47.362099], [8.492713, 47.362073], [8.492717, 47.362069], [8.49272, 47.362064], [8.492722, 47.362059], [8.492724, 47.362053], [8.492725, 47.362048], [8.492725, 47.362043], [8.492725, 47.362037], [8.492724, 47.362032], [8.492723, 47.362027], [8.49272, 47.362021], [8.492717, 47.362016], [8.492714, 47.362012], [8.49271, 47.362007], [8.492705, 47.362003], [8.4927, 47.361999], [8.492694, 47.361995], [8.492688, 47.361992], [8.492681, 47.361989], [8.492674, 47.361986], [8.492667, 47.361984], [8.492659, 47.361983], [8.492651, 47.361981], [8.492644, 47.361981], [8.492636, 47.36198], [8.492628, 47.36198], [8.49262, 47.361981], [8.492595, 47.361983], [8.492571, 47.361983], [8.492546, 47.361982], [8.492522, 47.361979], [8.492498, 47.361975], [8.492487, 47.361972], [8.492476, 47.361969], [8.492465, 47.361965], [8.492455, 47.36196], [8.492446, 47.361955], [8.492437, 47.361949], [8.49243, 47.361942], [8.492423, 47.361935], [8.492417, 47.361928], [8.492412, 47.36192], [8.492408, 47.361913], [8.492405, 47.361905], [8.492404, 47.361896], [8.492403, 47.361888], [8.492403, 47.361865], [8.492406, 47.361841], [8.49241, 47.361818], [8.492411, 47.361814], [8.492411, 47.361811], [8.492411, 47.361808], [8.49241, 47.361805], [8.492409, 47.361802], [8.492408, 47.361799], [8.492406, 47.361796], [8.492404, 47.361794], [8.492401, 47.361791], [8.492398, 47.361788], [8.492395, 47.361786], [8.492392, 47.361784], [8.492388, 47.361782], [8.492384, 47.36178], [8.49238, 47.361779], [8.492376, 47.361778], [8.492372, 47.361777], [8.492367, 47.361776], [8.49235, 47.361775], [8.492333, 47.361774], [8.492316, 47.361774], [8.492298, 47.361775], [8.492281, 47.361778], [8.492265, 47.361781], [8.492248, 47.361785], [8.492243, 47.361786], [8.492238, 47.361787], [8.492233, 47.361788], [8.492228, 47.361788], [8.492223, 47.361788], [8.492218, 47.361787], [8.492213, 47.361787], [8.492207, 47.361786], [8.492203, 47.361785], [8.492198, 47.361783], [8.492193, 47.361781], [8.492189, 47.361779], [8.492185, 47.361777], [8.492181, 47.361774], [8.49216, 47.361758], [8.492137, 47.361743], [8.492113, 47.361729], [8.49211, 47.361727], [8.492107, 47.361726], [8.492104, 47.361725], [8.4921, 47.361724], [8.492097, 47.361723], [8.492093, 47.361723], [8.49209, 47.361722], [8.492086, 47.361722], [8.492083, 47.361722], [8.492079, 47.361723], [8.492075, 47.361723], [8.492072, 47.361724], [8.492069, 47.361725], [8.492065, 47.361726], [8.492062, 47.361727], [8.49206, 47.361729], [8.492057, 47.36173], [8.492054, 47.361732], [8.492052, 47.361734], [8.49205, 47.361736], [8.492048, 47.361738], [8.492047, 47.36174], [8.492046, 47.361743], [8.492045, 47.361745], [8.492039, 47.361764], [8.49203, 47.361783], [8.492018, 47.361801], [8.492005, 47.361818], [8.491989, 47.361834], [8.491972, 47.361849], [8.491964, 47.361855], [8.491956, 47.36186], [8.491947, 47.361865], [8.491937, 47.361869], [8.491927, 47.361872], [8.491917, 47.361875], [8.491906, 47.361877], [8.491895, 47.361878], [8.491884, 47.361879], [8.491873, 47.361879], [8.491861, 47.361879], [8.49185, 47.361878], [8.49184, 47.361876], [8.491829, 47.361873], [8.491819, 47.36187], [8.491809, 47.361867], [8.4918, 47.361862], [8.491791, 47.361857], [8.491783, 47.361852], [8.491765, 47.361837], [8.491749, 47.361822], [8.491735, 47.361805], [8.491723, 47.361788], [8.491722, 47.361787], [8.491721, 47.361786], [8.49172, 47.361785], [8.491719, 47.361784], [8.491718, 47.361783], [8.491716, 47.361782], [8.491715, 47.361782], [8.491713, 47.361781], [8.491712, 47.36178], [8.49171, 47.36178], [8.491708, 47.36178], [8.491706, 47.36178], [8.491705, 47.361779], [8.491703, 47.361779], [8.491701, 47.36178], [8.491699, 47.36178], [8.491697, 47.36178], [8.491696, 47.361781], [8.491694, 47.361781], [8.491692, 47.361782], [8.491691, 47.361783], [8.49169, 47.361783], [8.491688, 47.361784], [8.491687, 47.361785], [8.491686, 47.361786], [8.491685, 47.361787], [8.491685, 47.361788], [8.491679, 47.361799], [8.491672, 47.361809], [8.491665, 47.361818], [8.491657, 47.361827], [8.491648, 47.361836], [8.491638, 47.361844], [8.491626, 47.361851], [8.491614, 47.361858], [8.491602, 47.361864], [8.491596, 47.361866], [8.49159, 47.361868], [8.491584, 47.361869], [8.491578, 47.36187], [8.491571, 47.361871], [8.491559, 47.361872], [8.491547, 47.361871], [8.491535, 47.361871], [8.491523, 47.361869], [8.491511, 47.361866], [8.4915, 47.361863], [8.491489, 47.361859], [8.491464, 47.361848], [8.49144, 47.361836], [8.491418, 47.361822], [8.491397, 47.361807], [8.49139, 47.3618], [8.491384, 47.361793], [8.491379, 47.361786], [8.491374, 47.361778], [8.491371, 47.36177], [8.491368, 47.36176], [8.491363, 47.361751], [8.491357, 47.361742], [8.49135, 47.361733], [8.491342, 47.361725], [8.491333, 47.361717], [8.491323, 47.36171], [8.491312, 47.361704], [8.491306, 47.361701], [8.4913, 47.361698], [8.491293, 47.361696], [8.491287, 47.361694], [8.49128, 47.361693], [8.491272, 47.361692], [8.491265, 47.361691], [8.491258, 47.361691], [8.491251, 47.361691], [8.491243, 47.361692], [8.491236, 47.361694], [8.491236, 47.361694], [8.491235, 47.361694], [8.491234, 47.361694], [8.491234, 47.361694], [8.491233, 47.361695], [8.491232, 47.361695], [8.491231, 47.361696], [8.491231, 47.361696], [8.49123, 47.361697], [8.49123, 47.361697], [8.491229, 47.361698], [8.491229, 47.361699], [8.491228, 47.361699], [8.491228, 47.3617], [8.491228, 47.361701], [8.491228, 47.361701], [8.491228, 47.361702], [8.491229, 47.361703], [8.491229, 47.361704], [8.491229, 47.361704], [8.49123, 47.361705], [8.49123, 47.361705], [8.491231, 47.361706], [8.491231, 47.361706], [8.491234, 47.361709], [8.491236, 47.361711], [8.491238, 47.361713], [8.49124, 47.361716], [8.491242, 47.361718], [8.491243, 47.361721], [8.491244, 47.361724], [8.491244, 47.361726], [8.491244, 47.361729], [8.491244, 47.361732], [8.491243, 47.361735], [8.491242, 47.361737], [8.49124, 47.36174], [8.491239, 47.361743], [8.491237, 47.361745], [8.491234, 47.361747], [8.491232, 47.361749], [8.491228, 47.361752], [8.491223, 47.361754], [8.491219, 47.361757], [8.491214, 47.361759], [8.491209, 47.36176], [8.491203, 47.361761], [8.491198, 47.361762], [8.491192, 47.361763], [8.491187, 47.361763], [8.491181, 47.361763], [8.491181, 47.361763], [8.491181, 47.361763], [8.491176, 47.361763], [8.491171, 47.361762], [8.491166, 47.361761], [8.491161, 47.36176], [8.491156, 47.361758], [8.491151, 47.361757], [8.491147, 47.361755], [8.491146, 47.361754], [8.491144, 47.361753], [8.491143, 47.361753], [8.491141, 47.361753], [8.49114, 47.361752], [8.491138, 47.361752], [8.491136, 47.361752], [8.491135, 47.361752], [8.491133, 47.361752], [8.491132, 47.361752], [8.49113, 47.361753], [8.491128, 47.361753], [8.491127, 47.361754], [8.491126, 47.361754], [8.491124, 47.361755], [8.491123, 47.361755], [8.491122, 47.361756], [8.491121, 47.361757], [8.49112, 47.361758], [8.491119, 47.361759], [8.491118, 47.36176], [8.491118, 47.361761], [8.491117, 47.361762], [8.491117, 47.361763], [8.491117, 47.361764], [8.491117, 47.361765], [8.491117, 47.361766], [8.491117, 47.361768], [8.491118, 47.361769], [8.491118, 47.36177], [8.491119, 47.361771], [8.49112, 47.361772], [8.491123, 47.361775], [8.491125, 47.361778], [8.491127, 47.361781], [8.491128, 47.361785], [8.491129, 47.361788], [8.491129, 47.361792], [8.491129, 47.361796], [8.491129, 47.361799], [8.491128, 47.361803], [8.491126, 47.361806], [8.491124, 47.361809], [8.491122, 47.361813], [8.491119, 47.361816], [8.491116, 47.361819], [8.491113, 47.361821], [8.491109, 47.361824], [8.491105, 47.361826], [8.491101, 47.361828], [8.491096, 47.36183], [8.491091, 47.361831], [8.491086, 47.361832], [8.49108, 47.361833], [8.491074, 47.361834], [8.491069, 47.361834], [8.491063, 47.361834], [8.491057, 47.361834], [8.491052, 47.361833], [8.491046, 47.361832], [8.491041, 47.36183], [8.491036, 47.361829], [8.491031, 47.361827], [8.491026, 47.361824], [8.491022, 47.361822], [8.491018, 47.361819], [8.491014, 47.361816], [8.491011, 47.361812], [8.491009, 47.361809], [8.490935, 47.361758], [8.490929, 47.361757], [8.490924, 47.361756], [8.490918, 47.361755], [8.490913, 47.361754], [8.490907, 47.361754], [8.490901, 47.361754], [8.490896, 47.361754], [8.49089, 47.361755], [8.490885, 47.361756], [8.490879, 47.361758], [8.490874, 47.36176], [8.490869, 47.361762], [8.490865, 47.361764], [8.490861, 47.361767], [8.490857, 47.36177], [8.490835, 47.361789], [8.490816, 47.361809], [8.4908, 47.36183], [8.490787, 47.361853], [8.490784, 47.361857], [8.490781, 47.361861], [8.490777, 47.361866], [8.490772, 47.36187], [8.490768, 47.361873], [8.490762, 47.361877], [8.490756, 47.36188], [8.49075, 47.361882], [8.490744, 47.361884], [8.490737, 47.361886], [8.49073, 47.361888], [8.490723, 47.361889], [8.490716, 47.361889], [8.490709, 47.36189], [8.490702, 47.361889], [8.490695, 47.361889], [8.490687, 47.361888], [8.490681, 47.361886], [8.49066, 47.36188], [8.49064, 47.361873], [8.490621, 47.361865], [8.490603, 47.361856], [8.490586, 47.361846], [8.490578, 47.361841], [8.49057, 47.361837], [8.490562, 47.361833], [8.490553, 47.36183], [8.490543, 47.361828], [8.490534, 47.361826], [8.490524, 47.361824], [8.490513, 47.361823], [8.490503, 47.361823], [8.490493, 47.361824], [8.490483, 47.361825], [8.490473, 47.361827], [8.490464, 47.361829], [8.490455, 47.361832], [8.490446, 47.361835], [8.490437, 47.361839], [8.490426, 47.361845], [8.490415, 47.361853], [8.490406, 47.36186], [8.490397, 47.361869], [8.49039, 47.361877], [8.490384, 47.361887], [8.490379, 47.361896], [8.490375, 47.361906], [8.490373, 47.361912], [8.490373, 47.361918], [8.490373, 47.361924], [8.490374, 47.36193], [8.490375, 47.361936], [8.490377, 47.361942], [8.49038, 47.361948], [8.490384, 47.361953], [8.490389, 47.361959], [8.490394, 47.361964], [8.4904, 47.361969], [8.490435, 47.361997], [8.490468, 47.362028], [8.490498, 47.36206], [8.490521, 47.362084], [8.490546, 47.362106], [8.490575, 47.362127], [8.490606, 47.362146], [8.490639, 47.362164], [8.490665, 47.362177], [8.490689, 47.362192], [8.49071, 47.362208], [8.490711, 47.362209], [8.490712, 47.36221], [8.490713, 47.362211], [8.490713, 47.362212], [8.490714, 47.362213], [8.490714, 47.362214], [8.490715, 47.362215], [8.490715, 47.362216], [8.490715, 47.362217], [8.490714, 47.362218], [8.490714, 47.362219], [8.490714, 47.36222], [8.490713, 47.362221], [8.490712, 47.362222], [8.490712, 47.362223], [8.490711, 47.362224], [8.49071, 47.362225], [8.490709, 47.362225], [8.490707, 47.362226], [8.490703, 47.362228], [8.490699, 47.362229], [8.490694, 47.362231], [8.490689, 47.362232], [8.490684, 47.362233], [8.490679, 47.362233], [8.490674, 47.362233], [8.490674, 47.362233], [8.490674, 47.362233], [8.490636, 47.362232], [8.490598, 47.362229], [8.49056, 47.362225], [8.49056, 47.362225], [8.490557, 47.362224], [8.490555, 47.362224], [8.490553, 47.362224], [8.490551, 47.362224], [8.490549, 47.362225], [8.490546, 47.362225], [8.490544, 47.362226], [8.490542, 47.362226], [8.49054, 47.362227], [8.490539, 47.362228], [8.490537, 47.362229], [8.490535, 47.36223], [8.490534, 47.362231], [8.490533, 47.362232], [8.490532, 47.362234], [8.490531, 47.362235], [8.49053, 47.362236], [8.490529, 47.362238], [8.490529, 47.362239], [8.490529, 47.362241], [8.490529, 47.362242], [8.490529, 47.362244], [8.490529, 47.362245], [8.49053, 47.362247], [8.490531, 47.362248], [8.490532, 47.36225], [8.490533, 47.362251], [8.490534, 47.362252], [8.490536, 47.362253], [8.490537, 47.362254], [8.490539, 47.362255], [8.490541, 47.362256], [8.490543, 47.362257], [8.490545, 47.362258], [8.490585, 47.362268], [8.490627, 47.362277], [8.490669, 47.362284], [8.490676, 47.362285], [8.490683, 47.362287], [8.49069, 47.362289], [8.490697, 47.362292], [8.490703, 47.362295], [8.490709, 47.362298], [8.490715, 47.362302], [8.49072, 47.362306], [8.490721, 47.362307], [8.490722, 47.362308], [8.490723, 47.362309], [8.490723, 47.362311], [8.490724, 47.362312], [8.490724, 47.362313], [8.490724, 47.362315], [8.490724, 47.362316], [8.490724, 47.362318], [8.490724, 47.362319], [8.490723, 47.36232], [8.490723, 47.362322], [8.490722, 47.362323], [8.490721, 47.362324], [8.490719, 47.362325], [8.490718, 47.362326], [8.490717, 47.362327], [8.490715, 47.362328], [8.490713, 47.362329], [8.490712, 47.36233], [8.49071, 47.36233], [8.490708, 47.362331], [8.490706, 47.362331], [8.490704, 47.362331], [8.490674, 47.362333], [8.490644, 47.362332], [8.490615, 47.36233], [8.490586, 47.362326], [8.490558, 47.36232], [8.490477, 47.3623], [8.490398, 47.362277], [8.49032, 47.362252], [8.490298, 47.362245], [8.490275, 47.362237], [8.490252, 47.362229], [8.490233, 47.362222], [8.490215, 47.362213], [8.490198, 47.362203], [8.490182, 47.362193], [8.490179, 47.36219], [8.490175, 47.362188], [8.49017, 47.362186], [8.490166, 47.362184], [8.490161, 47.362182], [8.490156, 47.362181], [8.490151, 47.36218], [8.490146, 47.362179], [8.490141, 47.362179], [8.490135, 47.362179], [8.49013, 47.362179], [8.490125, 47.362179], [8.49012, 47.36218], [8.490114, 47.362181], [8.49011, 47.362183], [8.490105, 47.362184], [8.4901, 47.362186], [8.490096, 47.362188], [8.490092, 47.362191], [8.490089, 47.362194], [8.490087, 47.362195], [8.490085, 47.362197], [8.490083, 47.362199], [8.490082, 47.362201], [8.490081, 47.362203], [8.49008, 47.362205], [8.49008, 47.362208], [8.49008, 47.36221], [8.49008, 47.362212], [8.49008, 47.362214], [8.490081, 47.362217], [8.490082, 47.362219], [8.490083, 47.362221], [8.490085, 47.362223], [8.490086, 47.362225], [8.490088, 47.362226], [8.490091, 47.362228], [8.490093, 47.36223], [8.490096, 47.362231], [8.490098, 47.362232], [8.490101, 47.362233], [8.490124, 47.362242], [8.490146, 47.362251], [8.490167, 47.362263], [8.490185, 47.362275], [8.490198, 47.362285], [8.490209, 47.362295], [8.490218, 47.362306], [8.490227, 47.362318], [8.490233, 47.36233], [8.490238, 47.362342], [8.490242, 47.362355], [8.490243, 47.362367], [8.490243, 47.362371], [8.490243, 47.362375], [8.490242, 47.362379], [8.49024, 47.362382], [8.490238, 47.362386], [8.490236, 47.362389], [8.490233, 47.362392], [8.49023, 47.362395], [8.490226, 47.362398], [8.490222, 47.362401], [8.490218, 47.362403], [8.490214, 47.362405], [8.490209, 47.362407], [8.490204, 47.362408], [8.490172, 47.362415], [8.49014, 47.362421], [8.490108, 47.362424], [8.490075, 47.362425], [8.490075, 47.362425], [8.490049, 47.362426], [8.490024, 47.362428], [8.489999, 47.362432], [8.489974, 47.362438], [8.489951, 47.362444], [8.489928, 47.362453], [8.489906, 47.362462], [8.489886, 47.362473], [8.489867, 47.362485], [8.48985, 47.362498], [8.489834, 47.362512], [8.489784, 47.36256], [8.489732, 47.362606], [8.489678, 47.362652], [8.489549, 47.362744], [8.489469, 47.362799], [8.489386, 47.362851], [8.4893, 47.362901], [8.489254, 47.362928], [8.489211, 47.362958], [8.48917, 47.362989], [8.48914, 47.363011], [8.489108, 47.363031], [8.489073, 47.36305], [8.488957, 47.363106], [8.488868, 47.363169], [8.488818, 47.363249], [8.48881, 47.36327], [8.488799, 47.363291], [8.488786, 47.36331], [8.488771, 47.363329], [8.488753, 47.363347], [8.488676, 47.363419], [8.48866, 47.363436], [8.488646, 47.363453], [8.488634, 47.363472], [8.488625, 47.36349], [8.488619, 47.36351], [8.488615, 47.363529], [8.488603, 47.363622]]], "type": "MultiLineString"}, "id": "673", "properties": {}, "type": "Feature"}, {"bbox": [8.509868, 47.407685, 8.510728, 47.408885], "geometry": {"coordinates": [[[8.510728, 47.408885], [8.510374, 47.408394], [8.510209, 47.408157], [8.509868, 47.407685]]], "type": "MultiLineString"}, "id": "674", "properties": {}, "type": "Feature"}, {"bbox": [8.486942, 47.401836, 8.487655, 47.402319], "geometry": {"coordinates": [[[8.486942, 47.401838], [8.487065, 47.401845], [8.487375, 47.401836], [8.48743, 47.401919], [8.487554, 47.402106], [8.487557, 47.402113], [8.48756, 47.402121], [8.487562, 47.402129], [8.487563, 47.402137], [8.487562, 47.402145], [8.487561, 47.402153], [8.487559, 47.40216], [8.487555, 47.402168], [8.487551, 47.402175], [8.487517, 47.402207], [8.487551, 47.402253], [8.487655, 47.402319]]], "type": "MultiLineString"}, "id": "675", "properties": {}, "type": "Feature"}, {"bbox": [8.523546, 47.348371, 8.523766, 47.348468], "geometry": {"coordinates": [[[8.523766, 47.348468], [8.52362, 47.348371], [8.523546, 47.348425]]], "type": "MultiLineString"}, "id": "678", "properties": {}, "type": "Feature"}, {"bbox": [8.559399, 47.413073, 8.559845, 47.414559], "geometry": {"coordinates": [[[8.55978, 47.413073], [8.559693, 47.413341], [8.559845, 47.413343], [8.559719, 47.413756], [8.559675, 47.413901], [8.559533, 47.41434], [8.559486, 47.414473], [8.559399, 47.414559]]], "type": "MultiLineString"}, "id": "679", "properties": {}, "type": "Feature"}, {"bbox": [8.56975, 47.409937, 8.57128, 47.410326], "geometry": {"coordinates": [[[8.56975, 47.409937], [8.569981, 47.410039], [8.570225, 47.410126], [8.570478, 47.410199], [8.57074, 47.410257], [8.571008, 47.410299], [8.57128, 47.410326]]], "type": "MultiLineString"}, "id": "680", "properties": {}, "type": "Feature"}, {"bbox": [8.518881, 47.34072, 8.519881, 47.340789], "geometry": {"coordinates": [[[8.519881, 47.340767], [8.51889, 47.340789], [8.518881, 47.34072]]], "type": "MultiLineString"}, "id": "682", "properties": {}, "type": "Feature"}, {"bbox": [8.544933, 47.369139, 8.54707, 47.369923], "geometry": {"coordinates": [[[8.544933, 47.369139], [8.545011, 47.36915], [8.545585, 47.369441], [8.545661, 47.369463], [8.546433, 47.369831], [8.546675, 47.369765], [8.546977, 47.369869], [8.54707, 47.369923]]], "type": "MultiLineString"}, "id": "683", "properties": {}, "type": "Feature"}, {"bbox": [8.495402, 47.361995, 8.495946, 47.362301], "geometry": {"coordinates": [[[8.495946, 47.362301], [8.495719, 47.36214], [8.495599, 47.362067], [8.495514, 47.36203], [8.495402, 47.361995]]], "type": "MultiLineString"}, "id": "694", "properties": {}, "type": "Feature"}, {"bbox": [8.526343, 47.38826, 8.527373, 47.389242], "geometry": {"coordinates": [[[8.526343, 47.38826], [8.526899, 47.389072], [8.52721, 47.38914], [8.527373, 47.389242]]], "type": "MultiLineString"}, "id": "695", "properties": {}, "type": "Feature"}, {"bbox": [8.523115, 47.358318, 8.523551, 47.358483], "geometry": {"coordinates": [[[8.523115, 47.358445], [8.523168, 47.358452], [8.523281, 47.358463], [8.523459, 47.35848], [8.523494, 47.358483], [8.523551, 47.358318]]], "type": "MultiLineString"}, "id": "698", "properties": {}, "type": "Feature"}, {"bbox": [8.515001, 47.359681, 8.516504, 47.359734], "geometry": {"coordinates": [[[8.515001, 47.359734], [8.516504, 47.359681]]], "type": "MultiLineString"}, "id": "708", "properties": {}, "type": "Feature"}, {"bbox": [8.469634, 47.39091, 8.470923, 47.391759], "geometry": {"coordinates": [[[8.470923, 47.39091], [8.470593, 47.391183], [8.470365, 47.391264], [8.469979, 47.391645], [8.469684, 47.391739], [8.469634, 47.391759]]], "type": "MultiLineString"}, "id": "712", "properties": {}, "type": "Feature"}, {"bbox": [8.502012, 47.372162, 8.502889, 47.372251], "geometry": {"coordinates": [[[8.502889, 47.372162], [8.502817, 47.372199], [8.50278, 47.372217], [8.502622, 47.372251], [8.502012, 47.372249]]], "type": "MultiLineString"}, "id": "713", "properties": {}, "type": "Feature"}, {"bbox": [8.505498, 47.408257, 8.506017, 47.408427], "geometry": {"coordinates": [[[8.505498, 47.408427], [8.506017, 47.408257]]], "type": "MultiLineString"}, "id": "714", "properties": {}, "type": "Feature"}, {"bbox": [8.516751, 47.414696, 8.517185, 47.415399], "geometry": {"coordinates": [[[8.516751, 47.414696], [8.516798, 47.414799], [8.517016, 47.4152], [8.517185, 47.415399]]], "type": "MultiLineString"}, "id": "715", "properties": {}, "type": "Feature"}, {"bbox": [8.544288, 47.404212, 8.54541, 47.404951], "geometry": {"coordinates": [[[8.545149, 47.404212], [8.54541, 47.404638], [8.544288, 47.404951]]], "type": "MultiLineString"}, "id": "716", "properties": {}, "type": "Feature"}, {"bbox": [8.544599, 47.410737, 8.544672, 47.410759], "geometry": {"coordinates": [[[8.544672, 47.410759], [8.544599, 47.410737]]], "type": "MultiLineString"}, "id": "719", "properties": {}, "type": "Feature"}, {"bbox": [8.510786, 47.42549, 8.511701, 47.425751], "geometry": {"coordinates": [[[8.511701, 47.42549], [8.511579, 47.42553], [8.511425, 47.42558], [8.511305, 47.425618], [8.511182, 47.425653], [8.511058, 47.425685], [8.510786, 47.425751]]], "type": "MultiLineString"}, "id": "721", "properties": {}, "type": "Feature"}, {"bbox": [8.580266, 47.357136, 8.581463, 47.35753], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580277, 47.357165], [8.580292, 47.357195], [8.58031, 47.357223], [8.580331, 47.35725], [8.58112, 47.357487], [8.581463, 47.35753]]], "type": "MultiLineString"}, "id": "722", "properties": {}, "type": "Feature"}, {"bbox": [8.57592, 47.374602, 8.576313, 47.374605], "geometry": {"coordinates": [[[8.57592, 47.374605], [8.576313, 47.374602]]], "type": "MultiLineString"}, "id": "727", "properties": {}, "type": "Feature"}, {"bbox": [8.546839, 47.385707, 8.54815, 47.38619], "geometry": {"coordinates": [[[8.546839, 47.385707], [8.547286, 47.38589], [8.547963, 47.386154], [8.54815, 47.38619]]], "type": "MultiLineString"}, "id": "728", "properties": {}, "type": "Feature"}, {"bbox": [8.510656, 47.407169, 8.510929, 47.40755], "geometry": {"coordinates": [[[8.510929, 47.40755], [8.510656, 47.407169]]], "type": "MultiLineString"}, "id": "731", "properties": {}, "type": "Feature"}, {"bbox": [8.583247, 47.399659, 8.583723, 47.40014], "geometry": {"coordinates": [[[8.583723, 47.40014], [8.583705, 47.400121], [8.583467, 47.39988], [8.583428, 47.39987], [8.583429, 47.399843], [8.583247, 47.399659]]], "type": "MultiLineString"}, "id": "734", "properties": {}, "type": "Feature"}, {"bbox": [8.527097, 47.412916, 8.52751, 47.413183], "geometry": {"coordinates": [[[8.527097, 47.412916], [8.527168, 47.412973], [8.52751, 47.413183]]], "type": "MultiLineString"}, "id": "738", "properties": {}, "type": "Feature"}, {"bbox": [8.583723, 47.399994, 8.584052, 47.40014], "geometry": {"coordinates": [[[8.583723, 47.40014], [8.584052, 47.399994]]], "type": "MultiLineString"}, "id": "741", "properties": {}, "type": "Feature"}, {"bbox": [8.545737, 47.427926, 8.546858, 47.429007], "geometry": {"coordinates": [[[8.545737, 47.427926], [8.545747, 47.427955], [8.545761, 47.427984], [8.545778, 47.428011], [8.5458, 47.428037], [8.545975, 47.428178], [8.546151, 47.428319], [8.546328, 47.428459], [8.546454, 47.428562], [8.546574, 47.428668], [8.546688, 47.428777], [8.546751, 47.428852], [8.546807, 47.428928], [8.546858, 47.429007]]], "type": "MultiLineString"}, "id": "742", "properties": {}, "type": "Feature"}, {"bbox": [8.576156, 47.407911, 8.576456, 47.408441], "geometry": {"coordinates": [[[8.576456, 47.408441], [8.576156, 47.407911]]], "type": "MultiLineString"}, "id": "744", "properties": {}, "type": "Feature"}, {"bbox": [8.507545, 47.408337, 8.509021, 47.410405], "geometry": {"coordinates": [[[8.507545, 47.408337], [8.50778, 47.408666], [8.508078, 47.409085], [8.508404, 47.409542], [8.509021, 47.410405]]], "type": "MultiLineString"}, "id": "752", "properties": {}, "type": "Feature"}, {"bbox": [8.539609, 47.374972, 8.53998, 47.375009], "geometry": {"coordinates": [[[8.539609, 47.375009], [8.53998, 47.374972]]], "type": "MultiLineString"}, "id": "759", "properties": {}, "type": "Feature"}, {"bbox": [8.54887, 47.362334, 8.550068, 47.362805], "geometry": {"coordinates": [[[8.54887, 47.362334], [8.550068, 47.362805]]], "type": "MultiLineString"}, "id": "760", "properties": {}, "type": "Feature"}, {"bbox": [8.534157, 47.342001, 8.535275, 47.342395], "geometry": {"coordinates": [[[8.535275, 47.342395], [8.534827, 47.342228], [8.534778, 47.342231], [8.534157, 47.342001]]], "type": "MultiLineString"}, "id": "761", "properties": {}, "type": "Feature"}, {"bbox": [8.544892, 47.367793, 8.54592, 47.368195], "geometry": {"coordinates": [[[8.544892, 47.367793], [8.545033, 47.367846], [8.545325, 47.367959], [8.54592, 47.368195]]], "type": "MultiLineString"}, "id": "764", "properties": {}, "type": "Feature"}, {"bbox": [8.510378, 47.408948, 8.510408, 47.40899], "geometry": {"coordinates": [[[8.510408, 47.40899], [8.510378, 47.408948]]], "type": "MultiLineString"}, "id": "765", "properties": {}, "type": "Feature"}, {"bbox": [8.597855, 47.364676, 8.5987, 47.364699], "geometry": {"coordinates": [[[8.597855, 47.364699], [8.5987, 47.364676]]], "type": "MultiLineString"}, "id": "766", "properties": {}, "type": "Feature"}, {"bbox": [8.510989, 47.397909, 8.511213, 47.398323], "geometry": {"coordinates": [[[8.510989, 47.397909], [8.511213, 47.398323]]], "type": "MultiLineString"}, "id": "767", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393195, 8.528746, 47.393206], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528746, 47.393206]]], "type": "MultiLineString"}, "id": "769", "properties": {}, "type": "Feature"}, {"bbox": [8.563799, 47.378805, 8.56479, 47.379824], "geometry": {"coordinates": [[[8.563799, 47.378805], [8.564091, 47.37922], [8.564138, 47.379285], [8.564204, 47.379376], [8.564303, 47.379494], [8.56433, 47.379522], [8.564443, 47.379632], [8.564508, 47.379693], [8.564551, 47.379731], [8.564625, 47.379774], [8.56479, 47.379824]]], "type": "MultiLineString"}, "id": "771", "properties": {}, "type": "Feature"}, {"bbox": [8.539475, 47.37641, 8.539609, 47.376442], "geometry": {"coordinates": [[[8.539609, 47.37641], [8.539475, 47.376442]]], "type": "MultiLineString"}, "id": "772", "properties": {}, "type": "Feature"}, {"bbox": [8.554421, 47.401186, 8.55517, 47.401731], "geometry": {"coordinates": [[[8.554421, 47.401731], [8.554521, 47.401657], [8.554664, 47.401528], [8.554781, 47.401446], [8.554935, 47.401343], [8.555056, 47.401243], [8.55517, 47.401186]]], "type": "MultiLineString"}, "id": "774", "properties": {}, "type": "Feature"}, {"bbox": [8.527303, 47.354764, 8.527693, 47.354768], "geometry": {"coordinates": [[[8.527303, 47.354764], [8.527693, 47.354768]]], "type": "MultiLineString"}, "id": "775", "properties": {}, "type": "Feature"}, {"bbox": [8.558566, 47.361979, 8.55882, 47.36246], "geometry": {"coordinates": [[[8.55882, 47.36246], [8.558695, 47.362367], [8.558566, 47.362259], [8.558745, 47.361979]]], "type": "MultiLineString"}, "id": "781", "properties": {}, "type": "Feature"}, {"bbox": [8.480698, 47.415978, 8.481362, 47.415999], "geometry": {"coordinates": [[[8.480698, 47.415981], [8.481076, 47.415978], [8.481151, 47.415986], [8.481275, 47.415985], [8.481362, 47.415999]]], "type": "MultiLineString"}, "id": "782", "properties": {}, "type": "Feature"}, {"bbox": [8.506771, 47.397168, 8.507117, 47.397501], "geometry": {"coordinates": [[[8.506771, 47.397168], [8.506823, 47.397236], [8.507117, 47.397501]]], "type": "MultiLineString"}, "id": "783", "properties": {}, "type": "Feature"}, {"bbox": [8.487825, 47.388778, 8.48803, 47.389351], "geometry": {"coordinates": [[[8.48803, 47.389351], [8.487825, 47.388778]]], "type": "MultiLineString"}, "id": "792", "properties": {}, "type": "Feature"}, {"bbox": [8.540463, 47.368237, 8.540969, 47.368585], "geometry": {"coordinates": [[[8.540969, 47.368585], [8.54063, 47.368538], [8.540707, 47.368268], [8.540463, 47.368237]]], "type": "MultiLineString"}, "id": "795", "properties": {}, "type": "Feature"}, {"bbox": [8.549471, 47.389867, 8.550882, 47.389882], "geometry": {"coordinates": [[[8.549471, 47.389867], [8.550882, 47.389882]]], "type": "MultiLineString"}, "id": "796", "properties": {}, "type": "Feature"}, {"bbox": [8.530922, 47.35216, 8.531994, 47.352331], "geometry": {"coordinates": [[[8.531994, 47.35216], [8.530922, 47.352331]]], "type": "MultiLineString"}, "id": "797", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.388393, 8.519495, 47.388618], "geometry": {"coordinates": [[[8.519442, 47.388393], [8.519495, 47.388472], [8.51938, 47.388502], [8.519458, 47.388618]]], "type": "MultiLineString"}, "id": "800", "properties": {}, "type": "Feature"}, {"bbox": [8.536929, 47.335408, 8.537148, 47.33561], "geometry": {"coordinates": [[[8.536929, 47.33561], [8.537046, 47.335512], [8.537148, 47.335408]]], "type": "MultiLineString"}, "id": "801", "properties": {}, "type": "Feature"}, {"bbox": [8.47537, 47.384152, 8.476143, 47.384547], "geometry": {"coordinates": [[[8.476143, 47.384152], [8.476042, 47.384218], [8.47537, 47.384547]]], "type": "MultiLineString"}, "id": "805", "properties": {}, "type": "Feature"}, {"bbox": [8.527662, 47.418077, 8.53144, 47.418311], "geometry": {"coordinates": [[[8.53144, 47.418311], [8.531394, 47.418243], [8.531069, 47.418144], [8.527662, 47.418077]]], "type": "MultiLineString"}, "id": "806", "properties": {}, "type": "Feature"}, {"bbox": [8.500651, 47.402063, 8.501561, 47.402873], "geometry": {"coordinates": [[[8.501561, 47.402063], [8.501511, 47.402115], [8.501091, 47.402496], [8.500911, 47.402697], [8.500849, 47.402719], [8.500796, 47.402777], [8.500651, 47.402873]]], "type": "MultiLineString"}, "id": "810", "properties": {}, "type": "Feature"}, {"bbox": [8.51066, 47.416794, 8.51211, 47.418395], "geometry": {"coordinates": [[[8.51066, 47.416794], [8.510756, 47.416916], [8.511531, 47.41768], [8.511603, 47.41776], [8.51211, 47.418395]]], "type": "MultiLineString"}, "id": "813", "properties": {}, "type": "Feature"}, {"bbox": [8.585792, 47.374111, 8.586659, 47.375253], "geometry": {"coordinates": [[[8.585792, 47.374111], [8.585836, 47.374137], [8.58588, 47.374164], [8.585922, 47.374191], [8.586158, 47.37451], [8.586383, 47.374832], [8.586598, 47.375157], [8.586618, 47.375189], [8.586639, 47.375221], [8.586659, 47.375253]]], "type": "MultiLineString"}, "id": "815", "properties": {}, "type": "Feature"}, {"bbox": [8.510049, 47.406536, 8.510801, 47.406971], "geometry": {"coordinates": [[[8.510049, 47.406715], [8.510213, 47.406948], [8.510431, 47.406875], [8.510499, 47.406971], [8.510728, 47.406899], [8.510801, 47.406874], [8.510564, 47.406536], [8.510495, 47.406559], [8.510049, 47.406715]]], "type": "MultiLineString"}, "id": "816", "properties": {}, "type": "Feature"}, {"bbox": [8.539474, 47.407597, 8.539783, 47.408029], "geometry": {"coordinates": [[[8.539474, 47.407597], [8.539783, 47.408029]]], "type": "MultiLineString"}, "id": "818", "properties": {}, "type": "Feature"}, {"bbox": [8.540513, 47.414976, 8.541865, 47.4164], "geometry": {"coordinates": [[[8.541865, 47.416254], [8.541678, 47.41626], [8.54152, 47.414976], [8.540513, 47.415037], [8.540676, 47.4164], [8.541689, 47.416337], [8.541678, 47.41626]]], "type": "MultiLineString"}, "id": "819", "properties": {}, "type": "Feature"}, {"bbox": [8.537934, 47.429987, 8.538568, 47.430545], "geometry": {"coordinates": [[[8.537934, 47.429987], [8.538029, 47.430194], [8.538177, 47.430197], [8.53819, 47.430229], [8.538336, 47.430268], [8.538524, 47.430429], [8.538568, 47.430545]]], "type": "MultiLineString"}, "id": "820", "properties": {}, "type": "Feature"}, {"bbox": [8.546969, 47.362987, 8.547173, 47.36304], "geometry": {"coordinates": [[[8.546969, 47.362987], [8.547173, 47.36304]]], "type": "MultiLineString"}, "id": "821", "properties": {}, "type": "Feature"}, {"bbox": [8.536288, 47.418388, 8.538372, 47.41843], "geometry": {"coordinates": [[[8.538372, 47.418388], [8.536288, 47.41843]]], "type": "MultiLineString"}, "id": "823", "properties": {}, "type": "Feature"}, {"bbox": [8.546179, 47.409267, 8.54651, 47.409987], "geometry": {"coordinates": [[[8.54651, 47.409267], [8.546394, 47.40938], [8.546368, 47.40946], [8.546338, 47.409555], [8.546294, 47.409628], [8.546179, 47.409987]]], "type": "MultiLineString"}, "id": "824", "properties": {}, "type": "Feature"}, {"bbox": [8.522186, 47.368368, 8.523134, 47.368875], "geometry": {"coordinates": [[[8.523134, 47.368875], [8.522186, 47.368368]]], "type": "MultiLineString"}, "id": "827", "properties": {}, "type": "Feature"}, {"bbox": [8.538294, 47.372712, 8.539535, 47.373058], "geometry": {"coordinates": [[[8.539535, 47.373058], [8.538999, 47.372848], [8.538875, 47.372809], [8.538747, 47.372776], [8.538617, 47.37275], [8.53851, 47.372733], [8.538403, 47.37272], [8.538294, 47.372712]]], "type": "MultiLineString"}, "id": "829", "properties": {}, "type": "Feature"}, {"bbox": [8.561035, 47.381097, 8.561513, 47.381467], "geometry": {"coordinates": [[[8.561513, 47.381467], [8.56108, 47.381141], [8.561035, 47.381097]]], "type": "MultiLineString"}, "id": "830", "properties": {}, "type": "Feature"}, {"bbox": [8.545231, 47.405681, 8.54572, 47.406362], "geometry": {"coordinates": [[[8.545231, 47.405681], [8.54526, 47.405698], [8.545548, 47.406109], [8.54572, 47.406362]]], "type": "MultiLineString"}, "id": "831", "properties": {}, "type": "Feature"}, {"bbox": [8.592312, 47.358461, 8.592566, 47.359173], "geometry": {"coordinates": [[[8.592312, 47.359173], [8.592402, 47.359042], [8.592411, 47.359025], [8.592419, 47.359008], [8.592424, 47.358991], [8.592428, 47.358973], [8.592566, 47.358461]]], "type": "MultiLineString"}, "id": "833", "properties": {}, "type": "Feature"}, {"bbox": [8.558736, 47.40739, 8.559523, 47.407413], "geometry": {"coordinates": [[[8.558736, 47.40739], [8.559295, 47.407407], [8.559523, 47.407413]]], "type": "MultiLineString"}, "id": "834", "properties": {}, "type": "Feature"}, {"bbox": [8.534931, 47.408585, 8.535695, 47.408999], "geometry": {"coordinates": [[[8.535695, 47.408585], [8.535103, 47.408754], [8.534931, 47.408808], [8.534994, 47.408999]]], "type": "MultiLineString"}, "id": "835", "properties": {}, "type": "Feature"}, {"bbox": [8.504952, 47.418233, 8.506106, 47.41862], "geometry": {"coordinates": [[[8.506106, 47.418233], [8.505817, 47.418303], [8.504952, 47.41862]]], "type": "MultiLineString"}, "id": "838", "properties": {}, "type": "Feature"}, {"bbox": [8.489224, 47.38695, 8.489281, 47.387126], "geometry": {"coordinates": [[[8.489281, 47.387126], [8.489224, 47.38695]]], "type": "MultiLineString"}, "id": "839", "properties": {}, "type": "Feature"}, {"bbox": [8.480204, 47.360299, 8.480317, 47.360328], "geometry": {"coordinates": [[[8.480317, 47.360328], [8.480204, 47.360299]]], "type": "MultiLineString"}, "id": "840", "properties": {}, "type": "Feature"}, {"bbox": [8.47929, 47.360561, 8.479329, 47.360657], "geometry": {"coordinates": [[[8.47929, 47.360657], [8.479303, 47.360625], [8.479316, 47.360593], [8.479329, 47.360561]]], "type": "MultiLineString"}, "id": "842", "properties": {}, "type": "Feature"}, {"bbox": [8.544645, 47.38884, 8.545593, 47.3896], "geometry": {"coordinates": [[[8.545593, 47.38884], [8.545497, 47.388894], [8.544959, 47.389275], [8.54504, 47.38932], [8.544645, 47.3896]]], "type": "MultiLineString"}, "id": "845", "properties": {}, "type": "Feature"}, {"bbox": [8.560386, 47.361603, 8.561212, 47.361856], "geometry": {"coordinates": [[[8.560386, 47.361856], [8.560536, 47.361835], [8.560682, 47.361806], [8.560824, 47.361767], [8.560961, 47.361721], [8.56109, 47.361666], [8.561212, 47.361603]]], "type": "MultiLineString"}, "id": "848", "properties": {}, "type": "Feature"}, {"bbox": [8.524083, 47.387085, 8.524434, 47.387314], "geometry": {"coordinates": [[[8.524198, 47.387314], [8.524434, 47.387201], [8.524083, 47.387085]]], "type": "MultiLineString"}, "id": "849", "properties": {}, "type": "Feature"}, {"bbox": [8.538549, 47.373931, 8.538842, 47.3743], "geometry": {"coordinates": [[[8.538842, 47.373931], [8.538549, 47.3743]]], "type": "MultiLineString"}, "id": "850", "properties": {}, "type": "Feature"}, {"bbox": [8.527942, 47.374254, 8.528676, 47.374829], "geometry": {"coordinates": [[[8.528634, 47.374385], [8.528676, 47.374354], [8.528498, 47.374254], [8.527942, 47.374764], [8.52807, 47.374829], [8.528634, 47.374385]]], "type": "MultiLineString"}, "id": "851", "properties": {}, "type": "Feature"}, {"bbox": [8.554078, 47.365919, 8.555785, 47.366518], "geometry": {"coordinates": [[[8.554078, 47.366518], [8.554286, 47.366311], [8.554593, 47.366122], [8.554883, 47.365919], [8.555604, 47.366227], [8.555661, 47.366251], [8.555722, 47.36627], [8.555785, 47.366285]]], "type": "MultiLineString"}, "id": "853", "properties": {}, "type": "Feature"}, {"bbox": [8.544823, 47.41724, 8.544928, 47.418043], "geometry": {"coordinates": [[[8.544823, 47.41724], [8.54486, 47.417576], [8.54489, 47.417767], [8.544912, 47.417991], [8.544915, 47.418009], [8.544921, 47.418026], [8.544928, 47.418043]]], "type": "MultiLineString"}, "id": "855", "properties": {}, "type": "Feature"}, {"bbox": [8.561384, 47.41626, 8.562263, 47.417983], "geometry": {"coordinates": [[[8.561384, 47.417983], [8.562263, 47.41626]]], "type": "MultiLineString"}, "id": "860", "properties": {}, "type": "Feature"}, {"bbox": [8.549147, 47.400012, 8.550262, 47.40055], "geometry": {"coordinates": [[[8.549147, 47.400012], [8.549231, 47.40004], [8.549316, 47.400069], [8.549402, 47.400096], [8.549708, 47.40023], [8.549996, 47.400382], [8.550262, 47.40055]]], "type": "MultiLineString"}, "id": "866", "properties": {}, "type": "Feature"}, {"bbox": [8.527868, 47.350028, 8.529276, 47.350488], "geometry": {"coordinates": [[[8.527868, 47.350028], [8.527952, 47.350029], [8.527999, 47.350033], [8.528128, 47.350055], [8.528359, 47.350113], [8.528614, 47.350221], [8.528662, 47.350241], [8.528741, 47.350261], [8.528805, 47.350278], [8.528975, 47.350301], [8.528921, 47.350488], [8.529194, 47.350485], [8.529276, 47.350484]]], "type": "MultiLineString"}, "id": "867", "properties": {}, "type": "Feature"}, {"bbox": [8.481904, 47.385164, 8.482561, 47.385218], "geometry": {"coordinates": [[[8.481904, 47.385164], [8.481998, 47.385175], [8.482092, 47.385189], [8.482186, 47.385205], [8.482248, 47.385213], [8.482311, 47.385217], [8.482374, 47.385218], [8.482437, 47.385215], [8.4825, 47.385208], [8.482561, 47.385197]]], "type": "MultiLineString"}, "id": "868", "properties": {}, "type": "Feature"}, {"bbox": [8.491296, 47.37316, 8.492161, 47.373481], "geometry": {"coordinates": [[[8.491296, 47.373481], [8.491298, 47.373474], [8.4913, 47.373468], [8.491303, 47.373462], [8.491307, 47.373456], [8.491312, 47.37345], [8.491317, 47.373444], [8.491323, 47.373439], [8.49138, 47.373401], [8.491442, 47.373367], [8.491508, 47.373336], [8.491577, 47.37331], [8.491672, 47.37328], [8.491769, 47.373254], [8.491867, 47.37323], [8.491966, 47.373208], [8.492063, 47.373185], [8.492161, 47.37316]]], "type": "MultiLineString"}, "id": "869", "properties": {}, "type": "Feature"}, {"bbox": [8.550818, 47.392402, 8.551303, 47.392435], "geometry": {"coordinates": [[[8.550818, 47.392402], [8.550822, 47.392406], [8.550827, 47.39241], [8.550832, 47.392413], [8.550838, 47.392416], [8.550844, 47.392419], [8.550851, 47.392422], [8.550857, 47.392424], [8.550864, 47.392425], [8.550872, 47.392427], [8.550879, 47.392428], [8.550887, 47.392428], [8.550894, 47.392428], [8.550901, 47.392427], [8.550909, 47.392426], [8.551303, 47.392435]]], "type": "MultiLineString"}, "id": "870", "properties": {}, "type": "Feature"}, {"bbox": [8.508243, 47.425937, 8.508428, 47.426671], "geometry": {"coordinates": [[[8.508369, 47.425937], [8.508428, 47.426236], [8.508426, 47.426263], [8.508421, 47.426291], [8.508413, 47.426318], [8.508361, 47.426437], [8.508304, 47.426554], [8.508243, 47.426671]]], "type": "MultiLineString"}, "id": "874", "properties": {}, "type": "Feature"}, {"bbox": [8.509233, 47.372109, 8.509729, 47.372469], "geometry": {"coordinates": [[[8.509233, 47.372109], [8.509638, 47.372411], [8.509729, 47.372469]]], "type": "MultiLineString"}, "id": "875", "properties": {}, "type": "Feature"}, {"bbox": [8.536487, 47.42582, 8.540834, 47.426204], "geometry": {"coordinates": [[[8.540834, 47.42582], [8.539263, 47.425948], [8.537052, 47.426131], [8.536487, 47.426204]]], "type": "MultiLineString"}, "id": "876", "properties": {}, "type": "Feature"}, {"bbox": [8.560355, 47.376183, 8.56118, 47.37672], "geometry": {"coordinates": [[[8.56118, 47.37672], [8.561036, 47.376554], [8.560877, 47.37638], [8.560665, 47.376208], [8.560573, 47.376183], [8.560442, 47.376237], [8.560355, 47.376288]]], "type": "MultiLineString"}, "id": "878", "properties": {}, "type": "Feature"}, {"bbox": [8.483397, 47.385577, 8.484808, 47.386824], "geometry": {"coordinates": [[[8.484808, 47.38616], [8.484614, 47.385787], [8.484244, 47.385577], [8.483397, 47.386594], [8.483796, 47.386824]]], "type": "MultiLineString"}, "id": "879", "properties": {}, "type": "Feature"}, {"bbox": [8.483796, 47.38616, 8.484808, 47.386824], "geometry": {"coordinates": [[[8.483796, 47.386824], [8.48401, 47.386633], [8.484146, 47.386647], [8.484808, 47.38616]]], "type": "MultiLineString"}, "id": "880", "properties": {}, "type": "Feature"}, {"bbox": [8.536126, 47.37738, 8.536651, 47.377944], "geometry": {"coordinates": [[[8.536592, 47.377944], [8.536651, 47.377923], [8.536181, 47.37738], [8.536126, 47.377399], [8.536276, 47.377556]]], "type": "MultiLineString"}, "id": "881", "properties": {}, "type": "Feature"}, {"bbox": [8.492907, 47.382345, 8.492953, 47.382514], "geometry": {"coordinates": [[[8.492907, 47.382514], [8.492953, 47.382345]]], "type": "MultiLineString"}, "id": "882", "properties": {}, "type": "Feature"}, {"bbox": [8.470389, 47.39272, 8.471037, 47.393063], "geometry": {"coordinates": [[[8.471037, 47.39272], [8.471026, 47.392736], [8.471012, 47.392752], [8.470997, 47.392766], [8.47098, 47.39278], [8.470961, 47.392792], [8.470941, 47.392804], [8.470389, 47.393063]]], "type": "MultiLineString"}, "id": "884", "properties": {}, "type": "Feature"}, {"bbox": [8.535599, 47.400329, 8.536125, 47.40087], "geometry": {"coordinates": [[[8.536125, 47.400329], [8.535599, 47.40087]]], "type": "MultiLineString"}, "id": "885", "properties": {}, "type": "Feature"}, {"bbox": [8.533544, 47.401291, 8.534443, 47.401958], "geometry": {"coordinates": [[[8.534443, 47.401291], [8.534287, 47.40133], [8.533949, 47.401602], [8.533686, 47.401806], [8.533633, 47.401854], [8.533586, 47.401905], [8.533544, 47.401958]]], "type": "MultiLineString"}, "id": "888", "properties": {}, "type": "Feature"}, {"bbox": [8.542915, 47.395716, 8.54349, 47.396076], "geometry": {"coordinates": [[[8.542915, 47.395803], [8.543342, 47.395716], [8.54349, 47.396076]]], "type": "MultiLineString"}, "id": "889", "properties": {}, "type": "Feature"}, {"bbox": [8.516576, 47.335573, 8.517726, 47.336228], "geometry": {"coordinates": [[[8.516612, 47.335573], [8.516618, 47.335609], [8.516632, 47.3357], [8.516576, 47.335911], [8.516648, 47.33592], [8.517219, 47.336082], [8.517683, 47.336216], [8.517726, 47.336228]]], "type": "MultiLineString"}, "id": "890", "properties": {}, "type": "Feature"}, {"bbox": [8.514116, 47.390646, 8.515808, 47.39129], "geometry": {"coordinates": [[[8.514116, 47.390646], [8.514239, 47.390703], [8.514367, 47.390753], [8.514499, 47.390798], [8.515645, 47.39111], [8.515673, 47.391125], [8.515699, 47.391141], [8.515722, 47.391159], [8.515743, 47.391179], [8.515762, 47.391199], [8.515778, 47.391221], [8.515791, 47.391243], [8.515801, 47.391266], [8.515808, 47.39129]]], "type": "MultiLineString"}, "id": "893", "properties": {}, "type": "Feature"}, {"bbox": [8.496794, 47.363597, 8.498445, 47.364532], "geometry": {"coordinates": [[[8.498445, 47.363765], [8.498159, 47.363606], [8.498144, 47.363602], [8.498129, 47.3636], [8.498114, 47.363598], [8.498099, 47.363597], [8.498084, 47.363598], [8.498068, 47.363599], [8.498053, 47.363601], [8.498039, 47.363604], [8.498025, 47.363608], [8.498011, 47.363612], [8.497998, 47.363618], [8.497986, 47.363624], [8.497974, 47.363631], [8.497964, 47.363639], [8.496794, 47.364532]]], "type": "MultiLineString"}, "id": "894", "properties": {}, "type": "Feature"}, {"bbox": [8.505226, 47.397857, 8.505566, 47.398184], "geometry": {"coordinates": [[[8.505226, 47.397857], [8.505236, 47.397867], [8.505247, 47.397876], [8.505257, 47.397886], [8.505358, 47.39798], [8.505459, 47.398075], [8.505561, 47.398169], [8.505562, 47.398172], [8.505564, 47.398174], [8.505565, 47.398177], [8.505566, 47.398179], [8.505566, 47.398182], [8.505566, 47.398184]]], "type": "MultiLineString"}, "id": "895", "properties": {}, "type": "Feature"}, {"bbox": [8.54042, 47.404682, 8.541238, 47.405263], "geometry": {"coordinates": [[[8.54042, 47.404682], [8.540587, 47.404788], [8.540756, 47.404893], [8.540925, 47.404997], [8.540992, 47.405009], [8.541002, 47.405009], [8.541012, 47.405009], [8.541023, 47.405011], [8.541033, 47.405012], [8.541042, 47.405015], [8.541052, 47.405018], [8.541061, 47.405021], [8.541069, 47.405025], [8.541077, 47.40503], [8.541084, 47.405035], [8.541238, 47.405263]]], "type": "MultiLineString"}, "id": "900", "properties": {}, "type": "Feature"}, {"bbox": [8.542066, 47.392509, 8.542359, 47.392664], "geometry": {"coordinates": [[[8.542359, 47.392509], [8.542066, 47.392664]]], "type": "MultiLineString"}, "id": "901", "properties": {}, "type": "Feature"}, {"bbox": [8.582891, 47.401335, 8.583285, 47.401995], "geometry": {"coordinates": [[[8.583285, 47.401995], [8.583108, 47.401783], [8.583011, 47.401542], [8.582891, 47.401335]]], "type": "MultiLineString"}, "id": "902", "properties": {}, "type": "Feature"}, {"bbox": [8.474711, 47.401934, 8.474736, 47.40303], "geometry": {"coordinates": [[[8.474729, 47.40303], [8.474736, 47.402665], [8.47473, 47.402299], [8.474711, 47.401934]]], "type": "MultiLineString"}, "id": "903", "properties": {}, "type": "Feature"}, {"bbox": [8.492953, 47.381377, 8.494665, 47.382345], "geometry": {"coordinates": [[[8.492953, 47.382345], [8.493231, 47.382252], [8.494665, 47.381553], [8.494496, 47.381377]]], "type": "MultiLineString"}, "id": "907", "properties": {}, "type": "Feature"}, {"bbox": [8.472737, 47.389278, 8.472752, 47.389678], "geometry": {"coordinates": [[[8.472746, 47.389278], [8.472749, 47.389366], [8.472751, 47.389454], [8.472752, 47.389542], [8.472749, 47.389587], [8.472744, 47.389633], [8.472737, 47.389678]]], "type": "MultiLineString"}, "id": "911", "properties": {}, "type": "Feature"}, {"bbox": [8.544043, 47.391051, 8.544156, 47.392244], "geometry": {"coordinates": [[[8.544043, 47.392244], [8.544075, 47.391926], [8.544129, 47.391401], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "913", "properties": {}, "type": "Feature"}, {"bbox": [8.58272, 47.399893, 8.583081, 47.400435], "geometry": {"coordinates": [[[8.583081, 47.400435], [8.583061, 47.400414], [8.58272, 47.400069], [8.582895, 47.399916], [8.582872, 47.399893]]], "type": "MultiLineString"}, "id": "914", "properties": {}, "type": "Feature"}, {"bbox": [8.514562, 47.324233, 8.515369, 47.324525], "geometry": {"coordinates": [[[8.514562, 47.324525], [8.514755, 47.324518], [8.514932, 47.324497], [8.515176, 47.324368], [8.515334, 47.32425], [8.515369, 47.324233]]], "type": "MultiLineString"}, "id": "915", "properties": {}, "type": "Feature"}, {"bbox": [8.534851, 47.375635, 8.535521, 47.376093], "geometry": {"coordinates": [[[8.535371, 47.375802], [8.535306, 47.375847], [8.535023, 47.375635], [8.534851, 47.375711], [8.53546, 47.376093], [8.535521, 47.376065]]], "type": "MultiLineString"}, "id": "916", "properties": {}, "type": "Feature"}, {"bbox": [8.530293, 47.338487, 8.530472, 47.338679], "geometry": {"coordinates": [[[8.530472, 47.338646], [8.530306, 47.338679], [8.530293, 47.338487]]], "type": "MultiLineString"}, "id": "920", "properties": {}, "type": "Feature"}, {"bbox": [8.505835, 47.426006, 8.506068, 47.426478], "geometry": {"coordinates": [[[8.506068, 47.426006], [8.505961, 47.426179], [8.505835, 47.426478]]], "type": "MultiLineString"}, "id": "922", "properties": {}, "type": "Feature"}, {"bbox": [8.538742, 47.415032, 8.539311, 47.41523], "geometry": {"coordinates": [[[8.538742, 47.41523], [8.538748, 47.415205], [8.539311, 47.415176], [8.539298, 47.415032]]], "type": "MultiLineString"}, "id": "923", "properties": {}, "type": "Feature"}, {"bbox": [8.545146, 47.427779, 8.545737, 47.427926], "geometry": {"coordinates": [[[8.545146, 47.427779], [8.545589, 47.427919], [8.545737, 47.427926]]], "type": "MultiLineString"}, "id": "927", "properties": {}, "type": "Feature"}, {"bbox": [8.535158, 47.386813, 8.536003, 47.386995], "geometry": {"coordinates": [[[8.535158, 47.386813], [8.535503, 47.386888], [8.536003, 47.386995]]], "type": "MultiLineString"}, "id": "931", "properties": {}, "type": "Feature"}, {"bbox": [8.533939, 47.399359, 8.534439, 47.40054], "geometry": {"coordinates": [[[8.533939, 47.399359], [8.533973, 47.399512], [8.534178, 47.399899], [8.534353, 47.400182], [8.534439, 47.40054]]], "type": "MultiLineString"}, "id": "933", "properties": {}, "type": "Feature"}, {"bbox": [8.556606, 47.384484, 8.55699, 47.385063], "geometry": {"coordinates": [[[8.556905, 47.384484], [8.55699, 47.384821], [8.556781, 47.384899], [8.556763, 47.384907], [8.556745, 47.384916], [8.55673, 47.384926], [8.556715, 47.384936], [8.556702, 47.384948], [8.556691, 47.38496], [8.556606, 47.385063]]], "type": "MultiLineString"}, "id": "934", "properties": {}, "type": "Feature"}, {"bbox": [8.4855, 47.38721, 8.48629, 47.38781], "geometry": {"coordinates": [[[8.48629, 47.387236], [8.486276, 47.38721], [8.485693, 47.38733], [8.485666, 47.387336], [8.485647, 47.387297], [8.4855, 47.387326], [8.485597, 47.387434], [8.48552, 47.387458], [8.485669, 47.38781], [8.485915, 47.387762]]], "type": "MultiLineString"}, "id": "937", "properties": {}, "type": "Feature"}, {"bbox": [8.529718, 47.373579, 8.529875, 47.373701], "geometry": {"coordinates": [[[8.529875, 47.373579], [8.529718, 47.373701]]], "type": "MultiLineString"}, "id": "938", "properties": {}, "type": "Feature"}, {"bbox": [8.525267, 47.349196, 8.525463, 47.349538], "geometry": {"coordinates": [[[8.525267, 47.349538], [8.525353, 47.349397], [8.525463, 47.349196]]], "type": "MultiLineString"}, "id": "942", "properties": {}, "type": "Feature"}, {"bbox": [8.538961, 47.403066, 8.540277, 47.40349], "geometry": {"coordinates": [[[8.538961, 47.403066], [8.539175, 47.403136], [8.53954, 47.403257], [8.539907, 47.403375], [8.540277, 47.40349]]], "type": "MultiLineString"}, "id": "943", "properties": {}, "type": "Feature"}, {"bbox": [8.544729, 47.409863, 8.544952, 47.41033], "geometry": {"coordinates": [[[8.544832, 47.41033], [8.544758, 47.410311], [8.544952, 47.409969], [8.544909, 47.409908], [8.544729, 47.409863]]], "type": "MultiLineString"}, "id": "946", "properties": {}, "type": "Feature"}, {"bbox": [8.540232, 47.411572, 8.540891, 47.412367], "geometry": {"coordinates": [[[8.540478, 47.412367], [8.540439, 47.412351], [8.540891, 47.411814], [8.540277, 47.411572], [8.540232, 47.411625]]], "type": "MultiLineString"}, "id": "949", "properties": {}, "type": "Feature"}, {"bbox": [8.516319, 47.389213, 8.516994, 47.389849], "geometry": {"coordinates": [[[8.516973, 47.389213], [8.516994, 47.389235], [8.516319, 47.389458], [8.516605, 47.389849]]], "type": "MultiLineString"}, "id": "950", "properties": {}, "type": "Feature"}, {"bbox": [8.524667, 47.395607, 8.526283, 47.396144], "geometry": {"coordinates": [[[8.526283, 47.395607], [8.526206, 47.395665], [8.526047, 47.395761], [8.525454, 47.395939], [8.525341, 47.395966], [8.524988, 47.39607], [8.524667, 47.396144]]], "type": "MultiLineString"}, "id": "951", "properties": {}, "type": "Feature"}, {"bbox": [8.535246, 47.340096, 8.536293, 47.340354], "geometry": {"coordinates": [[[8.536293, 47.340354], [8.535246, 47.340096]]], "type": "MultiLineString"}, "id": "954", "properties": {}, "type": "Feature"}, {"bbox": [8.539707, 47.401088, 8.540917, 47.402096], "geometry": {"coordinates": [[[8.540917, 47.401088], [8.540842, 47.401172], [8.540761, 47.401254], [8.540675, 47.401334], [8.54057, 47.401416], [8.540456, 47.401493], [8.540332, 47.401563], [8.540201, 47.401626], [8.540121, 47.401671], [8.540049, 47.401722], [8.539983, 47.401776], [8.539924, 47.401834], [8.539852, 47.401922], [8.53978, 47.402009], [8.539707, 47.402096]]], "type": "MultiLineString"}, "id": "956", "properties": {}, "type": "Feature"}, {"bbox": [8.521643, 47.350248, 8.522139, 47.351468], "geometry": {"coordinates": [[[8.522139, 47.350248], [8.521977, 47.350671], [8.521885, 47.350889], [8.521774, 47.351117], [8.52173, 47.351226], [8.521667, 47.351379], [8.521643, 47.351468]]], "type": "MultiLineString"}, "id": "957", "properties": {}, "type": "Feature"}, {"bbox": [8.589591, 47.402985, 8.590491, 47.403058], "geometry": {"coordinates": [[[8.589591, 47.403058], [8.590418, 47.402991], [8.590491, 47.402985]]], "type": "MultiLineString"}, "id": "958", "properties": {}, "type": "Feature"}, {"bbox": [8.531289, 47.384352, 8.531976, 47.384872], "geometry": {"coordinates": [[[8.531976, 47.384352], [8.531289, 47.384872]]], "type": "MultiLineString"}, "id": "959", "properties": {}, "type": "Feature"}, {"bbox": [8.54274, 47.403535, 8.543088, 47.404106], "geometry": {"coordinates": [[[8.54274, 47.403535], [8.542757, 47.403553], [8.542772, 47.403572], [8.542784, 47.403592], [8.543088, 47.404106]]], "type": "MultiLineString"}, "id": "965", "properties": {}, "type": "Feature"}, {"bbox": [8.506925, 47.392771, 8.507603, 47.393221], "geometry": {"coordinates": [[[8.506925, 47.392771], [8.507276, 47.39299], [8.507602, 47.39321], [8.507603, 47.393221]]], "type": "MultiLineString"}, "id": "966", "properties": {}, "type": "Feature"}, {"bbox": [8.516693, 47.377038, 8.516735, 47.377039], "geometry": {"coordinates": [[[8.516735, 47.377039], [8.516693, 47.377038]]], "type": "MultiLineString"}, "id": "968", "properties": {}, "type": "Feature"}, {"bbox": [8.53412, 47.380022, 8.534917, 47.380269], "geometry": {"coordinates": [[[8.534917, 47.380269], [8.534772, 47.380022], [8.53412, 47.380155]]], "type": "MultiLineString"}, "id": "972", "properties": {}, "type": "Feature"}, {"bbox": [8.534438, 47.380373, 8.53459, 47.380561], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.53459, 47.380529], [8.534492, 47.380373]]], "type": "MultiLineString"}, "id": "973", "properties": {}, "type": "Feature"}, {"bbox": [8.520014, 47.342955, 8.520133, 47.343283], "geometry": {"coordinates": [[[8.520014, 47.342955], [8.520133, 47.343283]]], "type": "MultiLineString"}, "id": "975", "properties": {}, "type": "Feature"}, {"bbox": [8.583247, 47.399487, 8.583524, 47.399659], "geometry": {"coordinates": [[[8.583247, 47.399659], [8.583341, 47.399603], [8.583434, 47.399546], [8.583524, 47.399487]]], "type": "MultiLineString"}, "id": "978", "properties": {}, "type": "Feature"}, {"bbox": [8.563371, 47.410191, 8.563551, 47.410261], "geometry": {"coordinates": [[[8.563371, 47.410191], [8.563551, 47.410261]]], "type": "MultiLineString"}, "id": "980", "properties": {}, "type": "Feature"}, {"bbox": [8.591483, 47.400991, 8.591776, 47.401487], "geometry": {"coordinates": [[[8.591483, 47.400991], [8.591776, 47.401487]]], "type": "MultiLineString"}, "id": "985", "properties": {}, "type": "Feature"}, {"bbox": [8.569334, 47.408824, 8.570013, 47.409435], "geometry": {"coordinates": [[[8.570013, 47.408824], [8.569528, 47.409313], [8.569468, 47.409357], [8.569403, 47.409398], [8.569334, 47.409435]]], "type": "MultiLineString"}, "id": "988", "properties": {}, "type": "Feature"}, {"bbox": [8.532996, 47.416359, 8.533273, 47.417377], "geometry": {"coordinates": [[[8.533273, 47.416359], [8.532996, 47.417377]]], "type": "MultiLineString"}, "id": "989", "properties": {}, "type": "Feature"}, {"bbox": [8.551417, 47.402813, 8.551728, 47.403436], "geometry": {"coordinates": [[[8.551417, 47.402813], [8.551484, 47.402886], [8.551728, 47.403436]]], "type": "MultiLineString"}, "id": "991", "properties": {}, "type": "Feature"}, {"bbox": [8.550262, 47.399747, 8.551007, 47.40055], "geometry": {"coordinates": [[[8.550262, 47.40055], [8.550704, 47.400153], [8.551007, 47.399873], [8.550756, 47.399747]]], "type": "MultiLineString"}, "id": "994", "properties": {}, "type": "Feature"}, {"bbox": [8.584751, 47.360719, 8.585079, 47.361919], "geometry": {"coordinates": [[[8.584751, 47.360719], [8.584777, 47.36073], [8.584805, 47.360739], [8.584833, 47.360747], [8.584863, 47.360752], [8.584935, 47.360762], [8.585008, 47.360773], [8.585079, 47.360787], [8.58491, 47.361919]]], "type": "MultiLineString"}, "id": "995", "properties": {}, "type": "Feature"}, {"bbox": [8.546838, 47.425332, 8.547469, 47.425877], "geometry": {"coordinates": [[[8.546838, 47.425332], [8.546941, 47.425397], [8.547041, 47.425465], [8.547136, 47.425535], [8.547253, 47.425647], [8.547364, 47.425761], [8.547469, 47.425877]]], "type": "MultiLineString"}, "id": "996", "properties": {}, "type": "Feature"}, {"bbox": [8.507117, 47.397501, 8.507383, 47.397741], "geometry": {"coordinates": [[[8.507117, 47.397501], [8.507383, 47.397741]]], "type": "MultiLineString"}, "id": "998", "properties": {}, "type": "Feature"}, {"bbox": [8.487959, 47.378234, 8.488294, 47.378398], "geometry": {"coordinates": [[[8.488294, 47.378398], [8.488047, 47.378271], [8.488019, 47.378257], [8.487989, 47.378245], [8.487959, 47.378234]]], "type": "MultiLineString"}, "id": "999", "properties": {}, "type": "Feature"}, {"bbox": [8.481075, 47.411495, 8.483549, 47.412216], "geometry": {"coordinates": [[[8.483549, 47.411495], [8.482127, 47.411906], [8.481918, 47.411972], [8.481075, 47.412216]]], "type": "MultiLineString"}, "id": "1000", "properties": {}, "type": "Feature"}, {"bbox": [8.583081, 47.40014, 8.583723, 47.400435], "geometry": {"coordinates": [[[8.583081, 47.400435], [8.583396, 47.40029], [8.583723, 47.40014]]], "type": "MultiLineString"}, "id": "1001", "properties": {}, "type": "Feature"}, {"bbox": [8.541269, 47.406404, 8.541474, 47.406704], "geometry": {"coordinates": [[[8.541269, 47.406404], [8.541336, 47.406493], [8.541429, 47.40662], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "1003", "properties": {}, "type": "Feature"}, {"bbox": [8.586103, 47.398881, 8.586488, 47.399625], "geometry": {"coordinates": [[[8.586103, 47.398881], [8.586139, 47.398904], [8.586307, 47.399163], [8.586362, 47.399213], [8.586424, 47.399364], [8.586434, 47.399458], [8.586488, 47.399625]]], "type": "MultiLineString"}, "id": "1010", "properties": {}, "type": "Feature"}, {"bbox": [8.58416, 47.400125, 8.584562, 47.400728], "geometry": {"coordinates": [[[8.584562, 47.400728], [8.584483, 47.400685], [8.584173, 47.400191], [8.58416, 47.400125]]], "type": "MultiLineString"}, "id": "1011", "properties": {}, "type": "Feature"}, {"bbox": [8.557293, 47.403296, 8.557342, 47.403548], "geometry": {"coordinates": [[[8.557293, 47.403548], [8.5573, 47.403532], [8.557309, 47.403517], [8.557318, 47.403502], [8.557326, 47.403433], [8.557334, 47.403365], [8.557342, 47.403296]]], "type": "MultiLineString"}, "id": "1013", "properties": {}, "type": "Feature"}, {"bbox": [8.51377, 47.326797, 8.515909, 47.327637], "geometry": {"coordinates": [[[8.51377, 47.326797], [8.513881, 47.326836], [8.514239, 47.326964], [8.514596, 47.327062], [8.514927, 47.327281], [8.515078, 47.327383], [8.515404, 47.327494], [8.515476, 47.327534], [8.515557, 47.327562], [8.515625, 47.327602], [8.515724, 47.327635], [8.51576, 47.327637], [8.515909, 47.327622]]], "type": "MultiLineString"}, "id": "1014", "properties": {}, "type": "Feature"}, {"bbox": [8.537743, 47.390189, 8.538228, 47.390447], "geometry": {"coordinates": [[[8.537743, 47.390189], [8.537842, 47.390193], [8.538058, 47.390323], [8.538114, 47.390375], [8.538228, 47.390447]]], "type": "MultiLineString"}, "id": "1016", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.384838, 8.526884, 47.385143], "geometry": {"coordinates": [[[8.526884, 47.384838], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "1029", "properties": {}, "type": "Feature"}, {"bbox": [8.539587, 47.411614, 8.540232, 47.412532], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.540232, 47.411625], [8.539587, 47.412412], [8.539887, 47.412532]]], "type": "MultiLineString"}, "id": "1030", "properties": {}, "type": "Feature"}, {"bbox": [8.515621, 47.38618, 8.517553, 47.386648], "geometry": {"coordinates": [[[8.517553, 47.386648], [8.517099, 47.386532], [8.516319, 47.386345], [8.515815, 47.386225], [8.515621, 47.38618]]], "type": "MultiLineString"}, "id": "1031", "properties": {}, "type": "Feature"}, {"bbox": [8.510665, 47.414228, 8.512096, 47.414837], "geometry": {"coordinates": [[[8.510665, 47.414837], [8.510719, 47.414831], [8.510787, 47.414819], [8.510853, 47.414802], [8.510917, 47.414782], [8.510977, 47.414758], [8.511034, 47.41473], [8.511837, 47.414294], [8.51196, 47.414235], [8.512096, 47.414228]]], "type": "MultiLineString"}, "id": "1032", "properties": {}, "type": "Feature"}, {"bbox": [8.539463, 47.413626, 8.540659, 47.41436], "geometry": {"coordinates": [[[8.540344, 47.413806], [8.540357, 47.413964], [8.539463, 47.413626], [8.539481, 47.413712], [8.53955, 47.414265], [8.539555, 47.414294], [8.539564, 47.41436], [8.540659, 47.414308]]], "type": "MultiLineString"}, "id": "1035", "properties": {}, "type": "Feature"}, {"bbox": [8.498749, 47.421091, 8.499251, 47.421665], "geometry": {"coordinates": [[[8.499251, 47.421665], [8.498749, 47.421091]]], "type": "MultiLineString"}, "id": "1036", "properties": {}, "type": "Feature"}, {"bbox": [8.543959, 47.384777, 8.545685, 47.385302], "geometry": {"coordinates": [[[8.543959, 47.385302], [8.544103, 47.38527], [8.544848, 47.385036], [8.545007, 47.384987], [8.545685, 47.384777]]], "type": "MultiLineString"}, "id": "1038", "properties": {}, "type": "Feature"}, {"bbox": [8.515244, 47.382034, 8.515259, 47.382147], "geometry": {"coordinates": [[[8.515259, 47.382034], [8.515244, 47.382147]]], "type": "MultiLineString"}, "id": "1042", "properties": {}, "type": "Feature"}, {"bbox": [8.53712, 47.37563, 8.537393, 47.375729], "geometry": {"coordinates": [[[8.537393, 47.37563], [8.53732, 47.375649], [8.53725, 47.375672], [8.537183, 47.375698], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "1046", "properties": {}, "type": "Feature"}, {"bbox": [8.582223, 47.358342, 8.584116, 47.361189], "geometry": {"coordinates": [[[8.584057, 47.358342], [8.584116, 47.358432], [8.584115, 47.358448], [8.583176, 47.359614], [8.582973, 47.359906], [8.582756, 47.360296], [8.582353, 47.360954], [8.582307, 47.361052], [8.582223, 47.361189]]], "type": "MultiLineString"}, "id": "1047", "properties": {}, "type": "Feature"}, {"bbox": [8.506384, 47.334842, 8.514263, 47.33894], "geometry": {"coordinates": [[[8.514263, 47.33633], [8.514232, 47.336322], [8.514201, 47.336312], [8.514172, 47.3363], [8.514145, 47.336287], [8.514119, 47.336272], [8.514095, 47.336255], [8.514074, 47.336238], [8.514055, 47.336219], [8.514038, 47.336199], [8.513647, 47.335712], [8.513516, 47.335551], [8.513418, 47.33543], [8.513326, 47.33534], [8.513064, 47.335133], [8.513064, 47.335133], [8.513049, 47.335122], [8.513035, 47.335111], [8.513021, 47.3351], [8.512956, 47.335052], [8.51289, 47.335006], [8.512821, 47.334961], [8.512776, 47.334933], [8.512727, 47.334908], [8.512674, 47.334886], [8.512619, 47.334868], [8.512562, 47.334853], [8.512503, 47.334842], [8.512498, 47.334844], [8.512493, 47.334847], [8.512488, 47.334849], [8.512484, 47.334852], [8.512481, 47.334855], [8.512477, 47.334858], [8.512474, 47.334862], [8.512472, 47.334865], [8.51247, 47.334869], [8.512469, 47.334873], [8.512468, 47.334877], [8.512467, 47.334881], [8.512467, 47.334885], [8.512468, 47.334889], [8.512469, 47.334893], [8.51247, 47.334896], [8.512472, 47.3349], [8.512475, 47.334904], [8.512478, 47.334907], [8.512481, 47.33491], [8.512511, 47.334936], [8.512542, 47.334961], [8.512575, 47.334985], [8.512575, 47.334985], [8.512581, 47.334991], [8.512588, 47.334996], [8.512593, 47.335002], [8.512593, 47.335002], [8.512593, 47.335002], [8.512599, 47.33501], [8.512604, 47.335018], [8.512608, 47.335026], [8.512611, 47.335034], [8.512613, 47.335043], [8.512614, 47.335051], [8.512614, 47.33506], [8.512614, 47.33506], [8.512611, 47.335077], [8.512606, 47.335094], [8.512599, 47.33511], [8.51259, 47.335126], [8.512578, 47.335141], [8.512493, 47.335241], [8.512488, 47.335247], [8.512484, 47.335254], [8.512481, 47.335261], [8.512478, 47.335268], [8.512477, 47.335275], [8.512476, 47.335282], [8.512477, 47.335289], [8.512478, 47.335296], [8.51248, 47.335303], [8.512483, 47.33531], [8.512487, 47.335316], [8.512491, 47.335323], [8.512497, 47.335329], [8.512503, 47.335334], [8.512509, 47.33534], [8.512558, 47.335375], [8.512566, 47.335381], [8.512573, 47.335388], [8.51258, 47.335395], [8.512585, 47.335403], [8.51259, 47.335411], [8.512593, 47.335419], [8.512596, 47.335427], [8.512597, 47.335436], [8.512598, 47.335444], [8.512597, 47.335453], [8.51258, 47.335574], [8.512578, 47.335583], [8.512575, 47.335592], [8.512571, 47.3356], [8.512566, 47.335609], [8.51256, 47.335617], [8.512553, 47.335624], [8.512545, 47.335632], [8.512536, 47.335638], [8.512526, 47.335645], [8.512516, 47.33565], [8.512505, 47.335655], [8.512493, 47.33566], [8.512481, 47.335663], [8.512459, 47.33567], [8.512438, 47.335678], [8.512419, 47.335687], [8.5124, 47.335698], [8.512384, 47.335709], [8.512368, 47.335721], [8.512355, 47.335734], [8.512343, 47.335749], [8.512333, 47.335763], [8.512325, 47.335778], [8.512312, 47.335811], [8.512304, 47.335844], [8.5123, 47.335878], [8.512301, 47.335911], [8.512306, 47.335945], [8.512315, 47.335978], [8.512358, 47.336103], [8.512362, 47.336116], [8.512364, 47.336129], [8.512364, 47.336143], [8.512363, 47.336156], [8.512359, 47.33617], [8.512354, 47.336183], [8.512348, 47.336196], [8.512339, 47.336208], [8.512272, 47.336297], [8.51225, 47.336329], [8.512233, 47.336362], [8.51222, 47.336396], [8.512212, 47.33643], [8.512208, 47.336465], [8.512208, 47.3365], [8.512214, 47.336535], [8.512223, 47.336569], [8.512238, 47.336603], [8.512256, 47.336636], [8.512262, 47.336646], [8.512267, 47.336657], [8.51227, 47.336668], [8.512272, 47.336679], [8.512272, 47.336691], [8.512271, 47.336702], [8.512269, 47.336713], [8.512265, 47.336724], [8.512259, 47.336735], [8.512253, 47.336745], [8.512241, 47.336763], [8.512232, 47.336781], [8.512226, 47.336799], [8.512222, 47.336818], [8.51222, 47.336837], [8.512221, 47.336856], [8.512225, 47.336875], [8.51223, 47.336893], [8.512239, 47.33692], [8.512244, 47.336947], [8.512245, 47.336974], [8.512243, 47.337001], [8.512237, 47.337028], [8.512215, 47.337105], [8.512212, 47.337113], [8.512208, 47.337121], [8.512203, 47.337129], [8.512197, 47.337137], [8.51219, 47.337144], [8.512182, 47.337151], [8.512173, 47.337158], [8.512164, 47.337164], [8.512153, 47.337169], [8.512142, 47.337174], [8.512131, 47.337177], [8.512119, 47.337181], [8.512052, 47.337197], [8.51203, 47.337201], [8.512008, 47.337205], [8.511986, 47.337206], [8.511964, 47.337207], [8.51195, 47.337207], [8.511935, 47.337208], [8.511921, 47.33721], [8.511908, 47.337213], [8.511895, 47.337216], [8.511882, 47.337221], [8.51187, 47.337226], [8.511858, 47.337231], [8.511847, 47.337238], [8.511837, 47.337244], [8.511828, 47.337252], [8.511812, 47.337266], [8.511794, 47.337278], [8.511774, 47.33729], [8.511753, 47.3373], [8.511731, 47.337309], [8.511707, 47.337317], [8.511606, 47.337347], [8.511595, 47.337351], [8.511585, 47.337355], [8.511575, 47.33736], [8.511565, 47.337366], [8.511557, 47.337371], [8.511549, 47.337378], [8.511496, 47.337424], [8.511418, 47.337484], [8.5114, 47.337498], [8.511396, 47.337501], [8.511393, 47.337505], [8.51139, 47.337509], [8.511387, 47.337513], [8.511385, 47.337517], [8.511383, 47.337521], [8.511382, 47.337526], [8.511382, 47.33753], [8.511382, 47.337534], [8.511383, 47.337539], [8.511408, 47.337619], [8.511444, 47.337698], [8.511491, 47.337774], [8.511541, 47.337847], [8.511566, 47.33788], [8.511595, 47.337911], [8.511627, 47.337941], [8.511678, 47.337985], [8.511856, 47.338164], [8.511863, 47.338172], [8.511869, 47.338181], [8.511875, 47.33819], [8.511879, 47.338199], [8.511882, 47.338209], [8.511883, 47.338219], [8.511884, 47.338228], [8.511883, 47.338238], [8.51188, 47.338248], [8.511877, 47.338257], [8.511872, 47.338267], [8.511867, 47.338275], [8.511828, 47.338324], [8.511783, 47.338369], [8.511732, 47.338412], [8.511676, 47.338452], [8.511616, 47.338488], [8.511551, 47.338521], [8.511524, 47.338531], [8.511472, 47.338551], [8.511418, 47.33857], [8.511362, 47.338586], [8.511352, 47.338588], [8.511343, 47.33859], [8.511333, 47.338591], [8.511323, 47.338592], [8.511313, 47.338592], [8.511303, 47.338591], [8.511293, 47.33859], [8.511283, 47.338588], [8.511274, 47.338585], [8.511264, 47.338582], [8.511256, 47.338579], [8.511248, 47.338575], [8.51124, 47.338571], [8.511233, 47.338566], [8.511226, 47.338561], [8.51122, 47.338555], [8.511215, 47.338549], [8.511169, 47.338489], [8.511159, 47.338477], [8.511147, 47.338466], [8.511135, 47.338456], [8.511121, 47.338446], [8.511106, 47.338438], [8.51109, 47.33843], [8.511073, 47.338423], [8.511055, 47.338418], [8.511036, 47.338413], [8.511017, 47.338409], [8.510998, 47.338407], [8.510895, 47.338397], [8.510885, 47.338396], [8.510876, 47.338394], [8.510867, 47.338392], [8.510859, 47.338389], [8.510851, 47.338386], [8.510843, 47.338382], [8.510835, 47.338378], [8.510829, 47.338374], [8.510823, 47.338369], [8.510817, 47.338364], [8.510784, 47.33833], [8.510773, 47.338319], [8.51076, 47.338309], [8.510746, 47.3383], [8.510732, 47.338291], [8.510716, 47.338284], [8.510699, 47.338277], [8.510682, 47.338271], [8.510603, 47.338247], [8.51058, 47.33824], [8.510558, 47.338231], [8.510538, 47.338221], [8.510519, 47.338209], [8.510501, 47.338197], [8.510485, 47.338184], [8.51038, 47.338089], [8.510374, 47.338083], [8.510367, 47.338079], [8.510359, 47.338074], [8.510351, 47.33807], [8.510343, 47.338067], [8.510334, 47.338064], [8.510324, 47.338062], [8.510315, 47.33806], [8.510182, 47.33804], [8.510148, 47.338034], [8.510115, 47.338026], [8.510084, 47.338016], [8.510054, 47.338004], [8.510025, 47.33799], [8.509916, 47.337933], [8.509898, 47.337924], [8.509879, 47.337917], [8.509858, 47.33791], [8.509838, 47.337905], [8.509816, 47.337901], [8.509794, 47.337899], [8.509772, 47.337898], [8.50975, 47.337898], [8.509728, 47.3379], [8.509706, 47.337903], [8.509685, 47.337908], [8.509553, 47.337939], [8.50953, 47.337946], [8.509507, 47.337954], [8.509486, 47.337963], [8.509465, 47.337973], [8.509447, 47.337985], [8.50943, 47.337998], [8.509414, 47.338011], [8.509401, 47.338026], [8.509389, 47.338041], [8.50938, 47.338057], [8.509373, 47.338074], [8.509367, 47.338091], [8.509364, 47.338108], [8.509364, 47.338125], [8.509363, 47.338145], [8.509359, 47.338166], [8.509353, 47.338186], [8.509344, 47.338206], [8.509335, 47.338226], [8.509329, 47.338246], [8.509325, 47.338267], [8.509324, 47.338289], [8.509324, 47.338342], [8.509324, 47.338347], [8.509323, 47.338351], [8.509322, 47.338356], [8.50932, 47.33836], [8.509318, 47.338364], [8.509315, 47.338368], [8.509311, 47.338372], [8.509307, 47.338376], [8.509303, 47.338379], [8.509298, 47.338382], [8.509293, 47.338385], [8.509288, 47.338388], [8.509282, 47.33839], [8.509276, 47.338392], [8.509206, 47.338412], [8.509199, 47.338414], [8.509192, 47.338417], [8.509186, 47.33842], [8.50918, 47.338423], [8.509175, 47.338427], [8.50917, 47.338431], [8.509165, 47.338435], [8.509162, 47.33844], [8.509158, 47.338444], [8.509156, 47.338449], [8.509154, 47.338454], [8.509152, 47.338459], [8.509151, 47.338464], [8.50914, 47.338597], [8.509139, 47.338601], [8.509138, 47.338605], [8.509136, 47.338609], [8.509134, 47.338613], [8.509131, 47.338617], [8.509128, 47.338621], [8.509125, 47.338624], [8.50912, 47.338627], [8.509116, 47.33863], [8.509111, 47.338633], [8.509106, 47.338635], [8.509101, 47.338637], [8.509095, 47.338639], [8.509089, 47.33864], [8.509083, 47.338641], [8.509077, 47.338642], [8.509071, 47.338642], [8.509065, 47.338642], [8.509059, 47.338642], [8.509052, 47.338641], [8.509047, 47.33864], [8.509041, 47.338638], [8.509035, 47.338636], [8.50902, 47.33863], [8.509002, 47.338624], [8.508883, 47.33858], [8.508869, 47.338575], [8.508855, 47.338571], [8.508841, 47.338569], [8.508826, 47.338567], [8.508811, 47.338566], [8.508796, 47.338565], [8.508781, 47.338566], [8.508767, 47.338568], [8.508752, 47.33857], [8.508738, 47.338574], [8.508724, 47.338578], [8.508523, 47.338648], [8.508498, 47.338657], [8.508474, 47.338668], [8.508452, 47.338681], [8.508431, 47.338694], [8.508412, 47.338709], [8.508395, 47.338725], [8.50838, 47.338742], [8.508367, 47.338759], [8.508356, 47.338778], [8.508348, 47.338797], [8.508342, 47.338816], [8.508323, 47.338894], [8.508322, 47.338898], [8.50832, 47.338903], [8.508317, 47.338907], [8.508314, 47.338912], [8.50831, 47.338916], [8.508306, 47.338919], [8.508302, 47.338923], [8.508296, 47.338926], [8.508291, 47.338929], [8.508285, 47.338932], [8.508279, 47.338934], [8.508273, 47.338936], [8.508266, 47.338938], [8.508259, 47.338939], [8.508252, 47.338939], [8.508245, 47.33894], [8.508238, 47.33894], [8.508238, 47.33894], [8.508083, 47.338932], [8.508061, 47.338931], [8.508039, 47.338928], [8.508018, 47.338923], [8.507997, 47.338918], [8.507977, 47.338911], [8.507958, 47.338903], [8.50794, 47.338894], [8.507923, 47.338884], [8.507908, 47.338873], [8.507777, 47.338771], [8.507744, 47.338748], [8.507707, 47.338726], [8.507668, 47.338707], [8.507533, 47.338648], [8.50751, 47.338639], [8.507486, 47.338632], [8.507461, 47.338625], [8.507435, 47.338621], [8.507408, 47.338618], [8.507382, 47.338616], [8.507355, 47.338615], [8.507329, 47.338612], [8.507303, 47.338607], [8.507278, 47.338602], [8.507254, 47.338595], [8.507231, 47.338586], [8.507208, 47.338576], [8.507187, 47.338565], [8.507174, 47.338558], [8.50716, 47.338552], [8.507145, 47.338547], [8.50713, 47.338542], [8.507114, 47.338539], [8.507098, 47.338536], [8.507081, 47.338535], [8.507065, 47.338534], [8.507048, 47.338534], [8.507031, 47.338536], [8.506894, 47.338551], [8.506849, 47.338554], [8.506803, 47.338555], [8.506757, 47.338552], [8.506658, 47.338542], [8.506629, 47.33854], [8.5066, 47.33854], [8.506571, 47.338542], [8.506542, 47.338545], [8.506514, 47.33855], [8.506384, 47.338591]]], "type": "MultiLineString"}, "id": "1049", "properties": {}, "type": "Feature"}, {"bbox": [8.527485, 47.38034, 8.527901, 47.380855], "geometry": {"coordinates": [[[8.527485, 47.38034], [8.527901, 47.380855]]], "type": "MultiLineString"}, "id": "1053", "properties": {}, "type": "Feature"}, {"bbox": [8.542785, 47.372923, 8.543746, 47.372948], "geometry": {"coordinates": [[[8.542785, 47.372923], [8.543114, 47.372932], [8.543486, 47.372941], [8.543746, 47.372948]]], "type": "MultiLineString"}, "id": "1054", "properties": {}, "type": "Feature"}, {"bbox": [8.596403, 47.355267, 8.596752, 47.355598], "geometry": {"coordinates": [[[8.596752, 47.355267], [8.596653, 47.355363], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "1056", "properties": {}, "type": "Feature"}, {"bbox": [8.552355, 47.40961, 8.553721, 47.410381], "geometry": {"coordinates": [[[8.553721, 47.409622], [8.552393, 47.40961], [8.552355, 47.41036], [8.553686, 47.410381]]], "type": "MultiLineString"}, "id": "1057", "properties": {}, "type": "Feature"}, {"bbox": [8.521491, 47.361585, 8.521588, 47.361785], "geometry": {"coordinates": [[[8.521588, 47.361585], [8.521569, 47.361648], [8.521491, 47.361785]]], "type": "MultiLineString"}, "id": "1058", "properties": {}, "type": "Feature"}, {"bbox": [8.539982, 47.369399, 8.540064, 47.369684], "geometry": {"coordinates": [[[8.539982, 47.369684], [8.540064, 47.369399]]], "type": "MultiLineString"}, "id": "1059", "properties": {}, "type": "Feature"}, {"bbox": [8.540303, 47.383074, 8.540981, 47.383318], "geometry": {"coordinates": [[[8.540303, 47.383074], [8.540981, 47.383318]]], "type": "MultiLineString"}, "id": "1061", "properties": {}, "type": "Feature"}, {"bbox": [8.530618, 47.417164, 8.531737, 47.418841], "geometry": {"coordinates": [[[8.531737, 47.417164], [8.531069, 47.418144], [8.530618, 47.418841]]], "type": "MultiLineString"}, "id": "1062", "properties": {}, "type": "Feature"}, {"bbox": [8.521549, 47.374472, 8.521827, 47.374725], "geometry": {"coordinates": [[[8.521549, 47.374472], [8.521641, 47.374573], [8.521795, 47.374701], [8.521827, 47.374725]]], "type": "MultiLineString"}, "id": "1064", "properties": {}, "type": "Feature"}, {"bbox": [8.537927, 47.381893, 8.538775, 47.382055], "geometry": {"coordinates": [[[8.537927, 47.381893], [8.538775, 47.382055]]], "type": "MultiLineString"}, "id": "1065", "properties": {}, "type": "Feature"}, {"bbox": [8.517557, 47.367483, 8.518007, 47.367648], "geometry": {"coordinates": [[[8.518007, 47.367648], [8.517942, 47.367633], [8.517578, 47.367507], [8.517557, 47.367483]]], "type": "MultiLineString"}, "id": "1066", "properties": {}, "type": "Feature"}, {"bbox": [8.5243, 47.42391, 8.524695, 47.42395], "geometry": {"coordinates": [[[8.524695, 47.42395], [8.524694, 47.423949], [8.524433, 47.423912], [8.5243, 47.42391]]], "type": "MultiLineString"}, "id": "1069", "properties": {}, "type": "Feature"}, {"bbox": [8.499433, 47.401222, 8.500631, 47.401612], "geometry": {"coordinates": [[[8.499433, 47.401222], [8.499606, 47.401314], [8.500134, 47.401412], [8.500516, 47.401544], [8.500631, 47.401612]]], "type": "MultiLineString"}, "id": "1077", "properties": {}, "type": "Feature"}, {"bbox": [8.587395, 47.357227, 8.587642, 47.358254], "geometry": {"coordinates": [[[8.587642, 47.358254], [8.587511, 47.357571], [8.587395, 47.357227]]], "type": "MultiLineString"}, "id": "1081", "properties": {}, "type": "Feature"}, {"bbox": [8.567443, 47.40429, 8.567555, 47.404875], "geometry": {"coordinates": [[[8.567443, 47.404875], [8.567506, 47.404682], [8.567523, 47.404563], [8.567555, 47.40429]]], "type": "MultiLineString"}, "id": "1082", "properties": {}, "type": "Feature"}, {"bbox": [8.545988, 47.393841, 8.546042, 47.394758], "geometry": {"coordinates": [[[8.546042, 47.393841], [8.546024, 47.393973], [8.545997, 47.394156], [8.545992, 47.394315], [8.545988, 47.394494], [8.545988, 47.394758]]], "type": "MultiLineString"}, "id": "1090", "properties": {}, "type": "Feature"}, {"bbox": [8.535306, 47.375847, 8.535606, 47.376133], "geometry": {"coordinates": [[[8.535606, 47.376133], [8.535521, 47.376065], [8.535568, 47.376043], [8.535306, 47.375847]]], "type": "MultiLineString"}, "id": "1091", "properties": {}, "type": "Feature"}, {"bbox": [8.498445, 47.363078, 8.49935, 47.363765], "geometry": {"coordinates": [[[8.49935, 47.363078], [8.499208, 47.363165], [8.498445, 47.363765]]], "type": "MultiLineString"}, "id": "1098", "properties": {}, "type": "Feature"}, {"bbox": [8.480437, 47.38773, 8.482373, 47.388478], "geometry": {"coordinates": [[[8.482373, 47.38773], [8.481541, 47.387999], [8.481367, 47.388064], [8.481194, 47.388129], [8.481021, 47.388194], [8.480817, 47.38828], [8.480622, 47.388374], [8.480437, 47.388478]]], "type": "MultiLineString"}, "id": "1099", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.370226, 8.514064, 47.370585], "geometry": {"coordinates": [[[8.514064, 47.370585], [8.51349, 47.3703], [8.513407, 47.370274], [8.513324, 47.37025], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "1102", "properties": {}, "type": "Feature"}, {"bbox": [8.565627, 47.365765, 8.567209, 47.36645], "geometry": {"coordinates": [[[8.565627, 47.365765], [8.566081, 47.36597], [8.566423, 47.366122], [8.5665, 47.366171], [8.566582, 47.366239], [8.566856, 47.366323], [8.567209, 47.36645]]], "type": "MultiLineString"}, "id": "1110", "properties": {}, "type": "Feature"}, {"bbox": [8.556447, 47.37579, 8.557144, 47.376733], "geometry": {"coordinates": [[[8.556904, 47.37579], [8.557144, 47.376037], [8.556447, 47.376451], [8.556776, 47.376733]]], "type": "MultiLineString"}, "id": "1113", "properties": {}, "type": "Feature"}, {"bbox": [8.532243, 47.389125, 8.533126, 47.389698], "geometry": {"coordinates": [[[8.532243, 47.389125], [8.532406, 47.389287], [8.533126, 47.389698]]], "type": "MultiLineString"}, "id": "1114", "properties": {}, "type": "Feature"}, {"bbox": [8.513185, 47.378347, 8.513415, 47.378623], "geometry": {"coordinates": [[[8.513185, 47.378347], [8.513415, 47.378623]]], "type": "MultiLineString"}, "id": "1115", "properties": {}, "type": "Feature"}, {"bbox": [8.555794, 47.35751, 8.556715, 47.357754], "geometry": {"coordinates": [[[8.555794, 47.357512], [8.555815, 47.35751], [8.556612, 47.357754], [8.556715, 47.357749]]], "type": "MultiLineString"}, "id": "1116", "properties": {}, "type": "Feature"}, {"bbox": [8.544284, 47.378922, 8.546576, 47.379783], "geometry": {"coordinates": [[[8.544284, 47.378922], [8.544451, 47.37899], [8.544518, 47.379017], [8.544777, 47.379123], [8.544911, 47.379194], [8.545019, 47.379236], [8.545566, 47.379424], [8.545869, 47.379528], [8.546576, 47.379783]]], "type": "MultiLineString"}, "id": "1117", "properties": {}, "type": "Feature"}, {"bbox": [8.522193, 47.398004, 8.522889, 47.399622], "geometry": {"coordinates": [[[8.522545, 47.398004], [8.522193, 47.398637], [8.522205, 47.398911], [8.522221, 47.399062], [8.522274, 47.399121], [8.522633, 47.399327], [8.522653, 47.39934], [8.522672, 47.399353], [8.522688, 47.399368], [8.522703, 47.399384], [8.522861, 47.399586], [8.522889, 47.399622]]], "type": "MultiLineString"}, "id": "1118", "properties": {}, "type": "Feature"}, {"bbox": [8.529897, 47.410987, 8.530175, 47.411675], "geometry": {"coordinates": [[[8.529897, 47.410987], [8.530175, 47.411675]]], "type": "MultiLineString"}, "id": "1119", "properties": {}, "type": "Feature"}, {"bbox": [8.476123, 47.386489, 8.476829, 47.386725], "geometry": {"coordinates": [[[8.476829, 47.386489], [8.476123, 47.386725]]], "type": "MultiLineString"}, "id": "1120", "properties": {}, "type": "Feature"}, {"bbox": [8.52472, 47.366017, 8.524938, 47.366133], "geometry": {"coordinates": [[[8.524935, 47.366017], [8.524938, 47.366051], [8.524786, 47.366133], [8.52472, 47.366129]]], "type": "MultiLineString"}, "id": "1121", "properties": {}, "type": "Feature"}, {"bbox": [8.546755, 47.373935, 8.547845, 47.374343], "geometry": {"coordinates": [[[8.546755, 47.373935], [8.547845, 47.374343]]], "type": "MultiLineString"}, "id": "1122", "properties": {}, "type": "Feature"}, {"bbox": [8.540725, 47.37222, 8.540745, 47.372654], "geometry": {"coordinates": [[[8.540725, 47.372654], [8.54074, 47.372329], [8.540745, 47.37222]]], "type": "MultiLineString"}, "id": "1123", "properties": {}, "type": "Feature"}, {"bbox": [8.49988, 47.380134, 8.502013, 47.381614], "geometry": {"coordinates": [[[8.502013, 47.381614], [8.500634, 47.380658], [8.49988, 47.380134]]], "type": "MultiLineString"}, "id": "1124", "properties": {}, "type": "Feature"}, {"bbox": [8.533372, 47.412065, 8.534032, 47.412618], "geometry": {"coordinates": [[[8.533972, 47.412618], [8.533918, 47.412614], [8.534032, 47.412115], [8.533472, 47.412065], [8.533372, 47.412506]]], "type": "MultiLineString"}, "id": "1125", "properties": {}, "type": "Feature"}, {"bbox": [8.542359, 47.392262, 8.542871, 47.392509], "geometry": {"coordinates": [[[8.542871, 47.392262], [8.542359, 47.392509]]], "type": "MultiLineString"}, "id": "1126", "properties": {}, "type": "Feature"}, {"bbox": [8.530468, 47.410416, 8.530595, 47.410862], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.53054, 47.41048], [8.530468, 47.410515], [8.530477, 47.410549], [8.530571, 47.410787], [8.530595, 47.410862]]], "type": "MultiLineString"}, "id": "1127", "properties": {}, "type": "Feature"}, {"bbox": [8.470303, 47.389182, 8.471296, 47.389885], "geometry": {"coordinates": [[[8.471296, 47.389885], [8.471008, 47.389615], [8.470987, 47.389592], [8.470969, 47.389569], [8.470952, 47.389545], [8.470759, 47.389261], [8.470755, 47.389256], [8.47075, 47.389252], [8.470744, 47.389248], [8.470738, 47.389244], [8.470731, 47.389241], [8.470724, 47.389238], [8.470717, 47.389235], [8.47071, 47.389233], [8.470702, 47.389232], [8.470694, 47.389231], [8.470686, 47.38923], [8.470677, 47.38923], [8.470669, 47.38923], [8.470545, 47.389222], [8.470423, 47.389206], [8.470303, 47.389182]]], "type": "MultiLineString"}, "id": "1128", "properties": {}, "type": "Feature"}, {"bbox": [8.572267, 47.413305, 8.57245, 47.413457], "geometry": {"coordinates": [[[8.57245, 47.413305], [8.572267, 47.413457]]], "type": "MultiLineString"}, "id": "1129", "properties": {}, "type": "Feature"}, {"bbox": [8.582581, 47.400588, 8.582916, 47.401207], "geometry": {"coordinates": [[[8.582916, 47.401207], [8.582581, 47.400677], [8.582642, 47.400588]]], "type": "MultiLineString"}, "id": "1136", "properties": {}, "type": "Feature"}, {"bbox": [8.572284, 47.409671, 8.572895, 47.409736], "geometry": {"coordinates": [[[8.572284, 47.409729], [8.572622, 47.409736], [8.572759, 47.409699], [8.572895, 47.409671]]], "type": "MultiLineString"}, "id": "1138", "properties": {}, "type": "Feature"}, {"bbox": [8.612477, 47.362201, 8.612522, 47.362435], "geometry": {"coordinates": [[[8.612477, 47.362435], [8.612522, 47.362201]]], "type": "MultiLineString"}, "id": "1139", "properties": {}, "type": "Feature"}, {"bbox": [8.487563, 47.372016, 8.48864, 47.373047], "geometry": {"coordinates": [[[8.48864, 47.373047], [8.487584, 47.372199], [8.487576, 47.372186], [8.48757, 47.372173], [8.487566, 47.372159], [8.487564, 47.372145], [8.487563, 47.372131], [8.487564, 47.372117], [8.487567, 47.372103], [8.487571, 47.372089], [8.487577, 47.372076], [8.487585, 47.372063], [8.487594, 47.37205], [8.487605, 47.372038], [8.487618, 47.372027], [8.487631, 47.372016]]], "type": "MultiLineString"}, "id": "1140", "properties": {}, "type": "Feature"}, {"bbox": [8.545773, 47.420821, 8.546108, 47.420912], "geometry": {"coordinates": [[[8.546108, 47.420897], [8.545925, 47.420821], [8.545901, 47.420847], [8.545874, 47.420872], [8.545843, 47.420895], [8.545837, 47.420898], [8.54583, 47.420902], [8.545822, 47.420904], [8.545815, 47.420907], [8.545807, 47.420909], [8.545799, 47.42091], [8.54579, 47.420911], [8.545782, 47.420912], [8.545773, 47.420912]]], "type": "MultiLineString"}, "id": "1141", "properties": {}, "type": "Feature"}, {"bbox": [8.540912, 47.406404, 8.541269, 47.406599], "geometry": {"coordinates": [[[8.540912, 47.406599], [8.54104, 47.406542], [8.541159, 47.406477], [8.541269, 47.406404]]], "type": "MultiLineString"}, "id": "1142", "properties": {}, "type": "Feature"}, {"bbox": [8.550721, 47.392844, 8.551292, 47.392989], "geometry": {"coordinates": [[[8.550721, 47.392844], [8.551083, 47.392965], [8.551185, 47.392989], [8.551292, 47.392985]]], "type": "MultiLineString"}, "id": "1146", "properties": {}, "type": "Feature"}, {"bbox": [8.510029, 47.390207, 8.511394, 47.391646], "geometry": {"coordinates": [[[8.510029, 47.390207], [8.510589, 47.390514], [8.510795, 47.39072], [8.511379, 47.391564], [8.511394, 47.391646]]], "type": "MultiLineString"}, "id": "1147", "properties": {}, "type": "Feature"}, {"bbox": [8.60225, 47.356441, 8.602959, 47.35677], "geometry": {"coordinates": [[[8.602959, 47.356441], [8.60225, 47.35677]]], "type": "MultiLineString"}, "id": "1148", "properties": {}, "type": "Feature"}, {"bbox": [8.515213, 47.331729, 8.516504, 47.331906], "geometry": {"coordinates": [[[8.515213, 47.331906], [8.515225, 47.331903], [8.515695, 47.331775], [8.515903, 47.331755], [8.516061, 47.331752], [8.516081, 47.331752], [8.516391, 47.331768], [8.516434, 47.331763], [8.516443, 47.331763], [8.516504, 47.331729]]], "type": "MultiLineString"}, "id": "1151", "properties": {}, "type": "Feature"}, {"bbox": [8.563371, 47.409549, 8.563857, 47.410191], "geometry": {"coordinates": [[[8.563371, 47.410191], [8.563526, 47.409974], [8.563688, 47.40976], [8.563857, 47.409549]]], "type": "MultiLineString"}, "id": "1152", "properties": {}, "type": "Feature"}, {"bbox": [8.583187, 47.401295, 8.58492, 47.40175], "geometry": {"coordinates": [[[8.58492, 47.401312], [8.584896, 47.401306], [8.584871, 47.401301], [8.584846, 47.401297], [8.58482, 47.401295], [8.584794, 47.401295], [8.584768, 47.401296], [8.584742, 47.401299], [8.584717, 47.401303], [8.584692, 47.401308], [8.583362, 47.401694], [8.583187, 47.40175]]], "type": "MultiLineString"}, "id": "1162", "properties": {}, "type": "Feature"}, {"bbox": [8.530794, 47.411506, 8.531459, 47.411991], "geometry": {"coordinates": [[[8.531459, 47.411991], [8.531432, 47.411983], [8.531009, 47.411851], [8.530813, 47.411539], [8.530794, 47.411506]]], "type": "MultiLineString"}, "id": "1170", "properties": {}, "type": "Feature"}, {"bbox": [8.535009, 47.332731, 8.539459, 47.334834], "geometry": {"coordinates": [[[8.535009, 47.334301], [8.535124, 47.334353], [8.535313, 47.334451], [8.53548, 47.334563], [8.53559, 47.334643], [8.535649, 47.33468], [8.535829, 47.334774], [8.535856, 47.334789], [8.535886, 47.334802], [8.535917, 47.334814], [8.535917, 47.334814], [8.535917, 47.334814], [8.535938, 47.33482], [8.535959, 47.334825], [8.535981, 47.334829], [8.536005, 47.334832], [8.53603, 47.334833], [8.536054, 47.334834], [8.536079, 47.334832], [8.536103, 47.334829], [8.536127, 47.334825], [8.536151, 47.33482], [8.536173, 47.334813], [8.536225, 47.334795], [8.536617, 47.334637], [8.536864, 47.334498], [8.537044, 47.334357], [8.537266, 47.334177], [8.537333, 47.334137], [8.537422, 47.334119], [8.537792, 47.334296], [8.53787, 47.334241], [8.538099, 47.334059], [8.538514, 47.333663], [8.538749, 47.333448], [8.539116, 47.333145], [8.539384, 47.332945], [8.539402, 47.332928], [8.539417, 47.332911], [8.53943, 47.332892], [8.539441, 47.332873], [8.53945, 47.332853], [8.539455, 47.332833], [8.539459, 47.332813], [8.539459, 47.332792], [8.539457, 47.332771], [8.539453, 47.332751], [8.539446, 47.332731]]], "type": "MultiLineString"}, "id": "1172", "properties": {}, "type": "Feature"}, {"bbox": [8.539609, 47.376056, 8.540898, 47.37641], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540852, 47.376096], [8.540658, 47.376163], [8.539609, 47.37641]]], "type": "MultiLineString"}, "id": "1173", "properties": {}, "type": "Feature"}, {"bbox": [8.527309, 47.351826, 8.528294, 47.351969], "geometry": {"coordinates": [[[8.528294, 47.351969], [8.527435, 47.351862], [8.527309, 47.351826]]], "type": "MultiLineString"}, "id": "1174", "properties": {}, "type": "Feature"}, {"bbox": [8.490192, 47.427939, 8.490401, 47.428275], "geometry": {"coordinates": [[[8.490192, 47.427939], [8.490401, 47.428275]]], "type": "MultiLineString"}, "id": "1175", "properties": {}, "type": "Feature"}, {"bbox": [8.4754, 47.413987, 8.475539, 47.414418], "geometry": {"coordinates": [[[8.475461, 47.413987], [8.475417, 47.414043], [8.4754, 47.414216], [8.475413, 47.414329], [8.475539, 47.414418]]], "type": "MultiLineString"}, "id": "1176", "properties": {}, "type": "Feature"}, {"bbox": [8.483323, 47.378743, 8.484371, 47.379409], "geometry": {"coordinates": [[[8.483323, 47.379404], [8.483358, 47.379408], [8.483393, 47.379409], [8.483428, 47.379409], [8.483463, 47.379406], [8.483497, 47.379401], [8.483531, 47.379394], [8.483564, 47.379385], [8.483595, 47.379374], [8.483625, 47.379361], [8.483653, 47.379347], [8.483679, 47.379331], [8.483703, 47.379313], [8.483724, 47.379294], [8.484371, 47.378743]]], "type": "MultiLineString"}, "id": "1180", "properties": {}, "type": "Feature"}, {"bbox": [8.528417, 47.390299, 8.529268, 47.39095], "geometry": {"coordinates": [[[8.528417, 47.390299], [8.528871, 47.39095], [8.529103, 47.390865], [8.529268, 47.390905]]], "type": "MultiLineString"}, "id": "1181", "properties": {}, "type": "Feature"}, {"bbox": [8.506985, 47.406715, 8.510049, 47.407727], "geometry": {"coordinates": [[[8.506985, 47.407727], [8.50882, 47.407121], [8.510049, 47.406715]]], "type": "MultiLineString"}, "id": "1191", "properties": {}, "type": "Feature"}, {"bbox": [8.571675, 47.357209, 8.572454, 47.357396], "geometry": {"coordinates": [[[8.571675, 47.357209], [8.572085, 47.357277], [8.572373, 47.357365], [8.572454, 47.357396]]], "type": "MultiLineString"}, "id": "1193", "properties": {}, "type": "Feature"}, {"bbox": [8.536302, 47.411756, 8.536617, 47.413011], "geometry": {"coordinates": [[[8.536617, 47.411756], [8.536419, 47.412805], [8.536302, 47.413011]]], "type": "MultiLineString"}, "id": "1194", "properties": {}, "type": "Feature"}, {"bbox": [8.524954, 47.391724, 8.525772, 47.391839], "geometry": {"coordinates": [[[8.524954, 47.391839], [8.525008, 47.391813], [8.525065, 47.391789], [8.525125, 47.391769], [8.525187, 47.391753], [8.525251, 47.39174], [8.525316, 47.391731], [8.525382, 47.391725], [8.525449, 47.391724], [8.525515, 47.391726], [8.525581, 47.391732], [8.525646, 47.391742], [8.52571, 47.391755], [8.525772, 47.391773]]], "type": "MultiLineString"}, "id": "1195", "properties": {}, "type": "Feature"}, {"bbox": [8.481153, 47.388271, 8.483143, 47.389024], "geometry": {"coordinates": [[[8.483143, 47.388271], [8.483064, 47.388319], [8.481153, 47.389024]]], "type": "MultiLineString"}, "id": "1196", "properties": {}, "type": "Feature"}, {"bbox": [8.560083, 47.390488, 8.560426, 47.39131], "geometry": {"coordinates": [[[8.560083, 47.390488], [8.560302, 47.390968], [8.560426, 47.39131]]], "type": "MultiLineString"}, "id": "1197", "properties": {}, "type": "Feature"}, {"bbox": [8.540857, 47.374428, 8.541552, 47.374933], "geometry": {"coordinates": [[[8.540857, 47.374933], [8.541552, 47.374846], [8.541447, 47.374428]]], "type": "MultiLineString"}, "id": "1198", "properties": {}, "type": "Feature"}, {"bbox": [8.519106, 47.387242, 8.519266, 47.387405], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.519266, 47.387405]]], "type": "MultiLineString"}, "id": "1207", "properties": {}, "type": "Feature"}, {"bbox": [8.533152, 47.412827, 8.533214, 47.412834], "geometry": {"coordinates": [[[8.533214, 47.412834], [8.533152, 47.412827]]], "type": "MultiLineString"}, "id": "1211", "properties": {}, "type": "Feature"}, {"bbox": [8.563857, 47.408457, 8.564824, 47.409549], "geometry": {"coordinates": [[[8.563857, 47.409549], [8.564193, 47.40919], [8.564516, 47.408826], [8.564824, 47.408457]]], "type": "MultiLineString"}, "id": "1214", "properties": {}, "type": "Feature"}, {"bbox": [8.552599, 47.370387, 8.553222, 47.370638], "geometry": {"coordinates": [[[8.552599, 47.370638], [8.552912, 47.37052], [8.553222, 47.370387]]], "type": "MultiLineString"}, "id": "1218", "properties": {}, "type": "Feature"}, {"bbox": [8.529428, 47.338277, 8.530072, 47.338288], "geometry": {"coordinates": [[[8.530072, 47.338277], [8.529428, 47.338288]]], "type": "MultiLineString"}, "id": "1219", "properties": {}, "type": "Feature"}, {"bbox": [8.538629, 47.385856, 8.539738, 47.386535], "geometry": {"coordinates": [[[8.538824, 47.385856], [8.538629, 47.386253], [8.5396, 47.386523], [8.539738, 47.386535]]], "type": "MultiLineString"}, "id": "1222", "properties": {}, "type": "Feature"}, {"bbox": [8.510915, 47.355088, 8.511734, 47.356596], "geometry": {"coordinates": [[[8.511734, 47.355088], [8.510915, 47.356596]]], "type": "MultiLineString"}, "id": "1223", "properties": {}, "type": "Feature"}, {"bbox": [8.547258, 47.368323, 8.54849, 47.369433], "geometry": {"coordinates": [[[8.547258, 47.368323], [8.547431, 47.368414], [8.547505, 47.368467], [8.547612, 47.368555], [8.547761, 47.368695], [8.547916, 47.368853], [8.548304, 47.369264], [8.548392, 47.369363], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "1225", "properties": {}, "type": "Feature"}, {"bbox": [8.578021, 47.361115, 8.578731, 47.361292], "geometry": {"coordinates": [[[8.578021, 47.361115], [8.578731, 47.361292]]], "type": "MultiLineString"}, "id": "1226", "properties": {}, "type": "Feature"}, {"bbox": [8.548236, 47.385521, 8.548446, 47.385761], "geometry": {"coordinates": [[[8.548236, 47.385521], [8.5483, 47.385584], [8.548446, 47.385761]]], "type": "MultiLineString"}, "id": "1227", "properties": {}, "type": "Feature"}, {"bbox": [8.544454, 47.418263, 8.547215, 47.418728], "geometry": {"coordinates": [[[8.547215, 47.418728], [8.547056, 47.418702], [8.545712, 47.418488], [8.54468, 47.41841], [8.544454, 47.418263]]], "type": "MultiLineString"}, "id": "1228", "properties": {}, "type": "Feature"}, {"bbox": [8.552837, 47.395412, 8.553123, 47.395644], "geometry": {"coordinates": [[[8.552837, 47.395412], [8.553123, 47.395644]]], "type": "MultiLineString"}, "id": "1229", "properties": {}, "type": "Feature"}, {"bbox": [8.526255, 47.393499, 8.526755, 47.394199], "geometry": {"coordinates": [[[8.526255, 47.393499], [8.526341, 47.393643], [8.52646, 47.393814], [8.526495, 47.393855], [8.526581, 47.393969], [8.526668, 47.394083], [8.526754, 47.394198], [8.526755, 47.394199]]], "type": "MultiLineString"}, "id": "1234", "properties": {}, "type": "Feature"}, {"bbox": [8.523797, 47.351753, 8.524103, 47.352207], "geometry": {"coordinates": [[[8.523797, 47.352207], [8.523887, 47.352087], [8.523941, 47.352038], [8.523989, 47.351985], [8.524029, 47.35193], [8.524062, 47.351873], [8.524087, 47.351814], [8.524103, 47.351753]]], "type": "MultiLineString"}, "id": "1235", "properties": {}, "type": "Feature"}, {"bbox": [8.545814, 47.366623, 8.545869, 47.36675], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545869, 47.366623]]], "type": "MultiLineString"}, "id": "1236", "properties": {}, "type": "Feature"}, {"bbox": [8.49718, 47.358436, 8.497438, 47.358817], "geometry": {"coordinates": [[[8.497438, 47.358817], [8.49737, 47.358753], [8.49718, 47.358505], [8.497205, 47.358436]]], "type": "MultiLineString"}, "id": "1237", "properties": {}, "type": "Feature"}, {"bbox": [8.575007, 47.383133, 8.577627, 47.38417], "geometry": {"coordinates": [[[8.575007, 47.383133], [8.575207, 47.383166], [8.575408, 47.383194], [8.575611, 47.383216], [8.575673, 47.383225], [8.575734, 47.383238], [8.575793, 47.383255], [8.575849, 47.383275], [8.576068, 47.383366], [8.57628, 47.383464], [8.576484, 47.383571], [8.577627, 47.38417]]], "type": "MultiLineString"}, "id": "1240", "properties": {}, "type": "Feature"}, {"bbox": [8.497519, 47.364966, 8.502663, 47.365081], "geometry": {"coordinates": [[[8.502663, 47.364966], [8.502549, 47.365013], [8.502351, 47.365017], [8.501292, 47.365027], [8.501026, 47.365027], [8.500602, 47.365025], [8.500059, 47.365073], [8.499632, 47.36508], [8.499623, 47.36508], [8.499613, 47.36508], [8.499604, 47.365081], [8.499594, 47.365081], [8.499585, 47.365081], [8.499575, 47.36508], [8.499042, 47.365079], [8.498462, 47.36507], [8.498094, 47.365016], [8.497519, 47.365014]]], "type": "MultiLineString"}, "id": "1241", "properties": {}, "type": "Feature"}, {"bbox": [8.540352, 47.371784, 8.540416, 47.371979], "geometry": {"coordinates": [[[8.540416, 47.371784], [8.540352, 47.371979]]], "type": "MultiLineString"}, "id": "1251", "properties": {}, "type": "Feature"}, {"bbox": [8.530868, 47.367445, 8.531706, 47.367726], "geometry": {"coordinates": [[[8.531706, 47.367726], [8.530868, 47.367445]]], "type": "MultiLineString"}, "id": "1252", "properties": {}, "type": "Feature"}, {"bbox": [8.532384, 47.345592, 8.533315, 47.345718], "geometry": {"coordinates": [[[8.533315, 47.345718], [8.532474, 47.345627], [8.532384, 47.345592]]], "type": "MultiLineString"}, "id": "1253", "properties": {}, "type": "Feature"}, {"bbox": [8.53992, 47.37122, 8.540012, 47.371233], "geometry": {"coordinates": [[[8.540012, 47.371233], [8.53992, 47.37122], [8.53992, 47.37122]]], "type": "MultiLineString"}, "id": "1269", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.370302, 8.54137, 47.370877], "geometry": {"coordinates": [[[8.541163, 47.370302], [8.541212, 47.370411], [8.541209, 47.370563], [8.541304, 47.37083], [8.54137, 47.370877]]], "type": "MultiLineString"}, "id": "1278", "properties": {}, "type": "Feature"}, {"bbox": [8.528566, 47.39794, 8.530329, 47.398423], "geometry": {"coordinates": [[[8.528566, 47.39794], [8.528605, 47.398003], [8.529125, 47.3981], [8.529525, 47.398178], [8.529825, 47.398251], [8.530182, 47.398359], [8.530329, 47.398423]]], "type": "MultiLineString"}, "id": "1283", "properties": {}, "type": "Feature"}, {"bbox": [8.565881, 47.351006, 8.56651, 47.351767], "geometry": {"coordinates": [[[8.565881, 47.351006], [8.565937, 47.351385], [8.565949, 47.351423], [8.565965, 47.35146], [8.565986, 47.351496], [8.566011, 47.351531], [8.56604, 47.351565], [8.566074, 47.351596], [8.566111, 47.351626], [8.566152, 47.351653], [8.566196, 47.351678], [8.566243, 47.3517], [8.566293, 47.35172], [8.566345, 47.351736], [8.566399, 47.351749], [8.566454, 47.35176], [8.56651, 47.351767]]], "type": "MultiLineString"}, "id": "1284", "properties": {}, "type": "Feature"}, {"bbox": [8.553161, 47.373955, 8.554025, 47.374369], "geometry": {"coordinates": [[[8.553161, 47.373955], [8.554025, 47.374369]]], "type": "MultiLineString"}, "id": "1285", "properties": {}, "type": "Feature"}, {"bbox": [8.540156, 47.369131, 8.540739, 47.369351], "geometry": {"coordinates": [[[8.540739, 47.369351], [8.540349, 47.369297], [8.540384, 47.369163], [8.540156, 47.369131]]], "type": "MultiLineString"}, "id": "1286", "properties": {}, "type": "Feature"}, {"bbox": [8.542119, 47.379644, 8.542623, 47.379724], "geometry": {"coordinates": [[[8.542119, 47.379644], [8.542623, 47.379724]]], "type": "MultiLineString"}, "id": "1289", "properties": {}, "type": "Feature"}, {"bbox": [8.561513, 47.381254, 8.56197, 47.381467], "geometry": {"coordinates": [[[8.561513, 47.381467], [8.56197, 47.381254]]], "type": "MultiLineString"}, "id": "1292", "properties": {}, "type": "Feature"}, {"bbox": [8.546914, 47.365942, 8.547872, 47.366438], "geometry": {"coordinates": [[[8.546914, 47.365942], [8.547195, 47.366072], [8.547712, 47.366368], [8.547762, 47.366395], [8.547816, 47.366418], [8.547872, 47.366438]]], "type": "MultiLineString"}, "id": "1294", "properties": {}, "type": "Feature"}, {"bbox": [8.546576, 47.379783, 8.54727, 47.37996], "geometry": {"coordinates": [[[8.546576, 47.379783], [8.546694, 47.379792], [8.547151, 47.379939], [8.54727, 47.37996]]], "type": "MultiLineString"}, "id": "1295", "properties": {}, "type": "Feature"}, {"bbox": [8.540623, 47.416362, 8.541838, 47.41644], "geometry": {"coordinates": [[[8.541838, 47.416362], [8.540623, 47.41644]]], "type": "MultiLineString"}, "id": "1298", "properties": {}, "type": "Feature"}, {"bbox": [8.492419, 47.405594, 8.492779, 47.406287], "geometry": {"coordinates": [[[8.492419, 47.405594], [8.492661, 47.405962], [8.492587, 47.405989], [8.492779, 47.406287]]], "type": "MultiLineString"}, "id": "1299", "properties": {}, "type": "Feature"}, {"bbox": [8.474388, 47.391857, 8.475352, 47.39214], "geometry": {"coordinates": [[[8.474388, 47.39214], [8.474703, 47.392039], [8.475101, 47.39193], [8.475352, 47.391857]]], "type": "MultiLineString"}, "id": "1300", "properties": {}, "type": "Feature"}, {"bbox": [8.542988, 47.41467, 8.545524, 47.414995], "geometry": {"coordinates": [[[8.545524, 47.414995], [8.544259, 47.414673], [8.544105, 47.41467], [8.542988, 47.414736]]], "type": "MultiLineString"}, "id": "1309", "properties": {}, "type": "Feature"}, {"bbox": [8.541333, 47.388427, 8.541628, 47.388476], "geometry": {"coordinates": [[[8.541333, 47.388427], [8.541628, 47.388476]]], "type": "MultiLineString"}, "id": "1316", "properties": {}, "type": "Feature"}, {"bbox": [8.545279, 47.369849, 8.545875, 47.37003], "geometry": {"coordinates": [[[8.545279, 47.369849], [8.545759, 47.37003], [8.545875, 47.3699]]], "type": "MultiLineString"}, "id": "1319", "properties": {}, "type": "Feature"}, {"bbox": [8.478188, 47.386826, 8.533735, 47.404268], "geometry": {"coordinates": [[[8.533735, 47.386826], [8.53347, 47.387029], [8.533171, 47.387241], [8.532859, 47.387445], [8.532533, 47.387639], [8.532294, 47.387762], [8.532041, 47.387871], [8.531775, 47.387965], [8.531498, 47.388043], [8.531212, 47.388104], [8.531039, 47.388157], [8.530889, 47.388217], [8.530699, 47.388263], [8.529811, 47.388837], [8.528967, 47.389398], [8.528742, 47.389518], [8.528691, 47.389572], [8.528522, 47.389662], [8.528405, 47.389792], [8.528315, 47.38986], [8.528195, 47.389834], [8.527997, 47.389946], [8.527801, 47.390008], [8.527665, 47.390093], [8.527648, 47.390102], [8.527592, 47.390136], [8.527265, 47.390299], [8.527202, 47.390352], [8.526864, 47.390529], [8.526618, 47.39063], [8.526349, 47.390761], [8.525842, 47.391008], [8.525325, 47.39124], [8.524761, 47.391459], [8.524192, 47.391644], [8.523871, 47.391731], [8.523788, 47.391763], [8.523363, 47.391874], [8.522893, 47.392036], [8.520599, 47.392506], [8.519302, 47.392843], [8.519215, 47.392894], [8.519079, 47.39291], [8.51801, 47.393189], [8.517238, 47.393375], [8.517108, 47.393407], [8.516979, 47.393439], [8.516851, 47.393472], [8.515996, 47.393773], [8.514804, 47.394245], [8.514196, 47.394516], [8.514189, 47.394553], [8.513441, 47.394701], [8.513345, 47.3947], [8.513036, 47.394714], [8.512424, 47.394805], [8.512104, 47.39481], [8.511803, 47.394833], [8.511378, 47.394917], [8.511281, 47.394916], [8.510508, 47.395025], [8.509943, 47.395096], [8.509344, 47.395124], [8.50871, 47.395205], [8.508309, 47.395226], [8.508278, 47.395133], [8.508181, 47.39511], [8.507116, 47.395181], [8.506399, 47.395217], [8.505524, 47.395254], [8.505348, 47.395263], [8.505062, 47.395317], [8.504644, 47.395394], [8.504591, 47.395426], [8.504328, 47.39557], [8.504328, 47.395573], [8.504328, 47.395576], [8.504328, 47.39558], [8.504327, 47.395583], [8.504326, 47.395586], [8.504324, 47.39559], [8.504322, 47.395593], [8.504319, 47.395596], [8.504317, 47.395598], [8.504313, 47.395601], [8.50431, 47.395603], [8.504306, 47.395605], [8.504302, 47.395607], [8.504298, 47.395609], [8.504293, 47.395611], [8.504289, 47.395612], [8.504284, 47.395613], [8.504279, 47.395613], [8.504274, 47.395614], [8.503999, 47.395634], [8.503877, 47.395677], [8.503664, 47.395766], [8.503298, 47.395935], [8.503007, 47.396098], [8.502579, 47.396395], [8.502145, 47.396762], [8.501706, 47.397164], [8.501266, 47.397535], [8.500906, 47.397813], [8.500512, 47.398069], [8.500087, 47.3983], [8.499634, 47.398507], [8.499157, 47.398686], [8.498659, 47.398836], [8.498144, 47.398957], [8.498095, 47.398969], [8.497712, 47.399029], [8.497412, 47.399093], [8.496739, 47.399184], [8.496374, 47.399263], [8.495426, 47.399382], [8.494717, 47.399452], [8.494541, 47.39948], [8.493983, 47.399546], [8.493074, 47.399649], [8.492692, 47.399687], [8.492306, 47.399701], [8.49192, 47.399691], [8.491537, 47.399658], [8.491405, 47.399651], [8.491272, 47.399651], [8.49114, 47.39966], [8.491009, 47.399676], [8.490881, 47.3997], [8.490756, 47.399731], [8.490636, 47.39977], [8.490521, 47.399815], [8.490239, 47.399929], [8.489966, 47.400052], [8.489702, 47.400185], [8.489461, 47.400299], [8.48855, 47.400732], [8.487968, 47.401064], [8.487358, 47.401422], [8.487101, 47.401515], [8.48692, 47.401627], [8.486789, 47.401696], [8.486647, 47.401746], [8.486464, 47.401798], [8.485735, 47.402053], [8.485032, 47.402317], [8.484125, 47.402665], [8.483296, 47.402967], [8.483088, 47.403031], [8.4829, 47.40308], [8.482849, 47.40309], [8.482798, 47.403098], [8.482745, 47.403102], [8.482693, 47.403103], [8.482657, 47.403104], [8.482623, 47.403107], [8.482588, 47.403112], [8.482583, 47.403113], [8.482378, 47.403146], [8.482364, 47.403149], [8.48235, 47.403152], [8.482336, 47.403156], [8.482326, 47.403158], [8.482317, 47.403161], [8.482308, 47.403164], [8.482175, 47.403218], [8.482097, 47.40326], [8.481962, 47.403334], [8.481925, 47.403351], [8.481921, 47.403352], [8.481917, 47.403354], [8.481912, 47.403356], [8.481909, 47.403358], [8.481905, 47.40336], [8.481902, 47.403363], [8.481899, 47.403365], [8.481897, 47.403368], [8.481895, 47.403371], [8.481893, 47.403374], [8.481891, 47.403377], [8.481891, 47.403381], [8.48189, 47.403385], [8.481889, 47.40339], [8.481887, 47.403394], [8.481884, 47.403399], [8.481881, 47.403403], [8.481878, 47.403407], [8.481874, 47.40341], [8.481869, 47.403414], [8.481864, 47.403417], [8.481859, 47.40342], [8.481853, 47.403422], [8.481821, 47.403436], [8.481647, 47.403515], [8.481587, 47.40355], [8.481584, 47.403551], [8.481499, 47.403602], [8.481469, 47.403622], [8.481469, 47.403622], [8.481416, 47.403649], [8.481416, 47.403649], [8.481287, 47.403698], [8.481214, 47.403735], [8.481198, 47.403743], [8.481178, 47.403754], [8.481157, 47.403763], [8.481134, 47.403771], [8.481111, 47.403778], [8.481087, 47.403783], [8.481072, 47.403786], [8.481056, 47.403789], [8.48104, 47.403791], [8.481026, 47.403793], [8.481012, 47.403796], [8.480999, 47.4038], [8.480969, 47.403807], [8.480939, 47.403815], [8.480909, 47.403824], [8.480864, 47.403838], [8.480819, 47.403854], [8.480776, 47.40387], [8.480649, 47.403916], [8.480638, 47.40392], [8.480612, 47.403937], [8.480611, 47.403937], [8.480611, 47.403937], [8.480604, 47.403942], [8.480596, 47.403945], [8.480589, 47.403949], [8.480588, 47.403949], [8.480459, 47.403994], [8.480307, 47.404031], [8.480239, 47.404045], [8.480171, 47.404057], [8.480102, 47.404067], [8.480066, 47.404072], [8.48003, 47.404075], [8.479994, 47.404078], [8.479896, 47.404086], [8.479791, 47.404094], [8.479724, 47.4041], [8.479656, 47.404108], [8.479588, 47.404117], [8.479588, 47.404117], [8.479382, 47.404145], [8.479256, 47.404163], [8.479199, 47.404172], [8.479143, 47.404183], [8.479088, 47.404197], [8.47907, 47.404202], [8.479052, 47.404206], [8.479033, 47.404208], [8.479015, 47.40421], [8.478996, 47.40421], [8.478875, 47.404211], [8.47878, 47.404225], [8.478602, 47.404262], [8.478458, 47.404267], [8.478427, 47.404268], [8.478396, 47.404267], [8.478365, 47.404265], [8.478188, 47.404246]]], "type": "MultiLineString"}, "id": "1321", "properties": {}, "type": "Feature"}, {"bbox": [8.537148, 47.335408, 8.53786, 47.335705], "geometry": {"coordinates": [[[8.53786, 47.335705], [8.537206, 47.335417], [8.537148, 47.335408]]], "type": "MultiLineString"}, "id": "1323", "properties": {}, "type": "Feature"}, {"bbox": [8.492214, 47.406496, 8.492747, 47.407233], "geometry": {"coordinates": [[[8.492214, 47.406496], [8.492454, 47.406799], [8.492478, 47.406993], [8.492747, 47.407233]]], "type": "MultiLineString"}, "id": "1324", "properties": {}, "type": "Feature"}, {"bbox": [8.545795, 47.366878, 8.546706, 47.367414], "geometry": {"coordinates": [[[8.545795, 47.366878], [8.546706, 47.367414]]], "type": "MultiLineString"}, "id": "1326", "properties": {}, "type": "Feature"}, {"bbox": [8.514665, 47.413967, 8.515102, 47.414519], "geometry": {"coordinates": [[[8.515102, 47.414519], [8.514877, 47.414131], [8.514665, 47.413967]]], "type": "MultiLineString"}, "id": "1328", "properties": {}, "type": "Feature"}, {"bbox": [8.547996, 47.407073, 8.548245, 47.407515], "geometry": {"coordinates": [[[8.547996, 47.407073], [8.548245, 47.407515]]], "type": "MultiLineString"}, "id": "1331", "properties": {}, "type": "Feature"}, {"bbox": [8.539662, 47.372081, 8.540174, 47.372287], "geometry": {"coordinates": [[[8.540174, 47.372287], [8.539662, 47.372081]]], "type": "MultiLineString"}, "id": "1338", "properties": {}, "type": "Feature"}, {"bbox": [8.519421, 47.393262, 8.519488, 47.393273], "geometry": {"coordinates": [[[8.519421, 47.393273], [8.519488, 47.393262]]], "type": "MultiLineString"}, "id": "1339", "properties": {}, "type": "Feature"}, {"bbox": [8.539477, 47.369205, 8.540064, 47.369399], "geometry": {"coordinates": [[[8.539477, 47.369206], [8.53963, 47.369205], [8.539885, 47.369249], [8.539841, 47.369371], [8.540064, 47.369399]]], "type": "MultiLineString"}, "id": "1340", "properties": {}, "type": "Feature"}, {"bbox": [8.520327, 47.413177, 8.520725, 47.413612], "geometry": {"coordinates": [[[8.520725, 47.413612], [8.520327, 47.413177]]], "type": "MultiLineString"}, "id": "1341", "properties": {}, "type": "Feature"}, {"bbox": [8.528862, 47.375893, 8.529474, 47.376353], "geometry": {"coordinates": [[[8.528862, 47.375893], [8.528973, 47.375943], [8.529474, 47.376353]]], "type": "MultiLineString"}, "id": "1342", "properties": {}, "type": "Feature"}, {"bbox": [8.516563, 47.389849, 8.517497, 47.390197], "geometry": {"coordinates": [[[8.516563, 47.389864], [8.516605, 47.389849], [8.516859, 47.390197], [8.517497, 47.389984]]], "type": "MultiLineString"}, "id": "1343", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506879, 47.42681], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506879, 47.42681]]], "type": "MultiLineString"}, "id": "1344", "properties": {}, "type": "Feature"}, {"bbox": [8.517037, 47.375264, 8.517432, 47.375562], "geometry": {"coordinates": [[[8.517432, 47.375264], [8.517037, 47.375562]]], "type": "MultiLineString"}, "id": "1346", "properties": {}, "type": "Feature"}, {"bbox": [8.495979, 47.423735, 8.496615, 47.423784], "geometry": {"coordinates": [[[8.495979, 47.423735], [8.496615, 47.423784]]], "type": "MultiLineString"}, "id": "1349", "properties": {}, "type": "Feature"}, {"bbox": [8.514492, 47.386114, 8.515346, 47.386157], "geometry": {"coordinates": [[[8.515346, 47.386138], [8.515176, 47.386121], [8.515004, 47.386114], [8.514831, 47.386118], [8.51466, 47.386132], [8.514492, 47.386157]]], "type": "MultiLineString"}, "id": "1359", "properties": {}, "type": "Feature"}, {"bbox": [8.531321, 47.369381, 8.532199, 47.370011], "geometry": {"coordinates": [[[8.532199, 47.369381], [8.531824, 47.369649], [8.531321, 47.370011]]], "type": "MultiLineString"}, "id": "1366", "properties": {}, "type": "Feature"}, {"bbox": [8.554752, 47.416618, 8.55519, 47.416953], "geometry": {"coordinates": [[[8.554752, 47.416953], [8.55519, 47.416618]]], "type": "MultiLineString"}, "id": "1368", "properties": {}, "type": "Feature"}, {"bbox": [8.573433, 47.388093, 8.573761, 47.38823], "geometry": {"coordinates": [[[8.573761, 47.388093], [8.573433, 47.38823]]], "type": "MultiLineString"}, "id": "1369", "properties": {}, "type": "Feature"}, {"bbox": [8.506672, 47.355402, 8.507596, 47.356629], "geometry": {"coordinates": [[[8.507596, 47.355402], [8.507564, 47.35546], [8.507402, 47.355744], [8.507222, 47.356018], [8.50704, 47.356244], [8.506724, 47.356574], [8.506672, 47.356629]]], "type": "MultiLineString"}, "id": "1370", "properties": {}, "type": "Feature"}, {"bbox": [8.533487, 47.373789, 8.534002, 47.373981], "geometry": {"coordinates": [[[8.534002, 47.373789], [8.533833, 47.373967], [8.533637, 47.373934], [8.533487, 47.373981]]], "type": "MultiLineString"}, "id": "1371", "properties": {}, "type": "Feature"}, {"bbox": [8.544646, 47.374891, 8.545571, 47.375122], "geometry": {"coordinates": [[[8.544646, 47.374891], [8.545571, 47.375122]]], "type": "MultiLineString"}, "id": "1372", "properties": {}, "type": "Feature"}, {"bbox": [8.538331, 47.372313, 8.538683, 47.372317], "geometry": {"coordinates": [[[8.538683, 47.372313], [8.538331, 47.372317]]], "type": "MultiLineString"}, "id": "1373", "properties": {}, "type": "Feature"}, {"bbox": [8.511225, 47.424978, 8.511701, 47.42549], "geometry": {"coordinates": [[[8.511225, 47.424978], [8.511294, 47.425066], [8.511625, 47.42541], [8.511701, 47.42549]]], "type": "MultiLineString"}, "id": "1376", "properties": {}, "type": "Feature"}, {"bbox": [8.543797, 47.370653, 8.544419, 47.371873], "geometry": {"coordinates": [[[8.544419, 47.370653], [8.544416, 47.370768], [8.544398, 47.370882], [8.544364, 47.370994], [8.544314, 47.371104], [8.54425, 47.37121], [8.544172, 47.371312], [8.544033, 47.371435], [8.543946, 47.371519], [8.54391, 47.371551], [8.54382, 47.371732], [8.543797, 47.371873]]], "type": "MultiLineString"}, "id": "1379", "properties": {}, "type": "Feature"}, {"bbox": [8.540786, 47.369868, 8.541862, 47.36993], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.541754, 47.369872], [8.541538, 47.369886], [8.540985, 47.36993], [8.540961, 47.36993], [8.540937, 47.369929], [8.540913, 47.369926], [8.54089, 47.369922], [8.540867, 47.369917], [8.540845, 47.36991], [8.540824, 47.369902], [8.540805, 47.369893], [8.540786, 47.369883]]], "type": "MultiLineString"}, "id": "1380", "properties": {}, "type": "Feature"}, {"bbox": [8.553893, 47.390716, 8.574248, 47.400748], "geometry": {"coordinates": [[[8.553893, 47.39891], [8.553912, 47.398923], [8.554016, 47.39898], [8.554119, 47.399029], [8.554173, 47.399054], [8.554387, 47.399153], [8.554605, 47.399247], [8.554826, 47.399337], [8.554826, 47.399337], [8.554826, 47.399337], [8.555061, 47.399421], [8.555305, 47.39949], [8.555558, 47.399544], [8.555817, 47.399582], [8.55611, 47.399615], [8.556161, 47.399622], [8.556212, 47.399631], [8.556261, 47.399642], [8.556447, 47.399685], [8.556578, 47.399716], [8.556908, 47.399794], [8.556945, 47.399804], [8.55698, 47.399815], [8.557013, 47.399829], [8.557045, 47.399844], [8.557457, 47.400062], [8.55797, 47.400352], [8.558094, 47.400406], [8.558234, 47.400437], [8.55841, 47.400462], [8.558493, 47.400476], [8.558573, 47.400495], [8.55865, 47.40052], [8.558724, 47.40055], [8.55907, 47.400705], [8.5591, 47.400718], [8.559131, 47.400728], [8.559164, 47.400736], [8.559197, 47.400742], [8.559231, 47.400746], [8.559266, 47.400748], [8.559301, 47.400747], [8.560002, 47.400719], [8.560068, 47.400714], [8.560134, 47.400705], [8.560198, 47.400693], [8.56026, 47.400676], [8.56032, 47.400656], [8.560377, 47.400633], [8.560431, 47.400606], [8.560514, 47.40056], [8.560542, 47.400544], [8.560568, 47.400526], [8.560593, 47.400508], [8.560838, 47.400306], [8.560851, 47.400296], [8.560865, 47.400287], [8.56088, 47.400279], [8.560896, 47.400272], [8.560912, 47.400266], [8.56093, 47.400261], [8.561044, 47.400233], [8.561056, 47.40023], [8.561069, 47.400228], [8.561081, 47.400227], [8.561094, 47.400226], [8.561107, 47.400227], [8.56112, 47.400228], [8.561132, 47.40023], [8.561383, 47.400276], [8.561412, 47.40028], [8.561441, 47.400283], [8.561471, 47.400284], [8.561501, 47.400284], [8.56153, 47.400281], [8.56156, 47.400277], [8.561588, 47.400272], [8.562363, 47.400094], [8.562391, 47.400087], [8.562417, 47.40008], [8.562443, 47.400071], [8.562458, 47.400066], [8.562472, 47.400061], [8.562487, 47.400055], [8.562514, 47.400043], [8.56254, 47.40003], [8.562566, 47.400016], [8.562648, 47.399967], [8.562727, 47.399921], [8.562743, 47.399912], [8.562757, 47.399901], [8.562771, 47.399891], [8.562926, 47.399764], [8.562962, 47.399732], [8.562998, 47.399701], [8.563034, 47.399669], [8.56305, 47.399656], [8.563066, 47.399642], [8.563083, 47.399628], [8.563153, 47.399569], [8.563179, 47.399547], [8.563324, 47.399426], [8.563468, 47.399304], [8.563611, 47.399182], [8.563778, 47.399043], [8.563951, 47.398907], [8.564131, 47.398775], [8.564252, 47.398682], [8.564372, 47.398588], [8.564492, 47.398494], [8.564492, 47.398494], [8.564493, 47.398493], [8.564679, 47.398354], [8.564867, 47.398216], [8.565056, 47.398079], [8.565056, 47.398079], [8.565057, 47.398079], [8.565057, 47.398078], [8.565057, 47.398078], [8.565226, 47.397949], [8.565408, 47.397827], [8.5656, 47.397714], [8.565601, 47.397713], [8.565601, 47.397713], [8.565784, 47.397617], [8.565969, 47.397522], [8.566155, 47.397428], [8.566155, 47.397428], [8.566155, 47.397428], [8.566699, 47.397145], [8.566699, 47.397144], [8.566699, 47.397144], [8.56682, 47.397077], [8.566939, 47.397009], [8.567059, 47.39694], [8.567122, 47.396903], [8.567307, 47.396789], [8.567712, 47.396481], [8.567962, 47.396308], [8.568074, 47.396241], [8.568191, 47.396178], [8.568312, 47.396118], [8.568938, 47.395808], [8.569135, 47.395701], [8.569329, 47.395591], [8.569519, 47.395479], [8.56952, 47.395479], [8.56952, 47.395479], [8.569687, 47.395384], [8.569849, 47.395286], [8.570008, 47.395184], [8.570008, 47.395184], [8.570008, 47.395184], [8.570142, 47.3951], [8.570278, 47.395017], [8.570416, 47.394936], [8.570416, 47.394936], [8.570589, 47.394841], [8.570919, 47.394659], [8.571373, 47.394397], [8.571761, 47.394178], [8.571831, 47.394139], [8.572286, 47.393877], [8.572493, 47.393764], [8.572586, 47.393714], [8.57269, 47.39365], [8.572777, 47.393596], [8.572997, 47.393466], [8.573149, 47.393371], [8.57317, 47.393357], [8.573189, 47.393341], [8.573206, 47.393325], [8.573221, 47.393307], [8.573233, 47.393288], [8.573243, 47.393269], [8.573251, 47.39325], [8.573256, 47.39323], [8.573259, 47.393209], [8.573259, 47.393189], [8.573256, 47.393169], [8.573251, 47.393149], [8.573189, 47.392958], [8.573185, 47.392944], [8.573183, 47.39293], [8.573183, 47.392916], [8.573185, 47.392902], [8.573189, 47.392888], [8.573194, 47.392874], [8.573202, 47.392861], [8.573211, 47.392848], [8.573221, 47.392836], [8.573233, 47.392824], [8.573247, 47.392814], [8.573261, 47.392804], [8.573277, 47.392795], [8.573295, 47.392787], [8.573313, 47.39278], [8.573332, 47.392774], [8.573351, 47.392769], [8.573371, 47.392766], [8.573392, 47.392764], [8.573437, 47.39276], [8.573846, 47.392728], [8.573885, 47.392723], [8.573924, 47.392717], [8.573962, 47.392708], [8.573998, 47.392697], [8.574033, 47.392683], [8.574066, 47.392668], [8.574097, 47.392651], [8.574126, 47.392632], [8.574152, 47.392611], [8.574175, 47.392589], [8.574195, 47.392565], [8.574213, 47.392541], [8.574227, 47.392515], [8.574237, 47.392489], [8.574244, 47.392462], [8.574248, 47.392435], [8.574248, 47.392372], [8.574238, 47.392309], [8.574219, 47.392247], [8.574073, 47.391868], [8.574031, 47.391761], [8.573946, 47.391512], [8.573693, 47.390826], [8.573684, 47.390803], [8.573671, 47.390779], [8.573656, 47.390757], [8.573638, 47.390736], [8.573616, 47.390716]]], "type": "MultiLineString"}, "id": "1385", "properties": {}, "type": "Feature"}, {"bbox": [8.501522, 47.337319, 8.504587, 47.340021], "geometry": {"coordinates": [[[8.504587, 47.339657], [8.50449, 47.339658], [8.504432, 47.339657], [8.504375, 47.339654], [8.504317, 47.339649], [8.504295, 47.339646], [8.504273, 47.339644], [8.504251, 47.339643], [8.504228, 47.339643], [8.504206, 47.339645], [8.504125, 47.339664], [8.504115, 47.339669], [8.504105, 47.339674], [8.504096, 47.33968], [8.504088, 47.339687], [8.50408, 47.339694], [8.503996, 47.339803], [8.503992, 47.33981], [8.503988, 47.339817], [8.503985, 47.339825], [8.503967, 47.339865], [8.503944, 47.339905], [8.503916, 47.339943], [8.503904, 47.339955], [8.503891, 47.339966], [8.503876, 47.339976], [8.50386, 47.339985], [8.503843, 47.339993], [8.503825, 47.34], [8.503806, 47.340006], [8.503786, 47.340011], [8.503786, 47.340011], [8.503786, 47.340011], [8.503764, 47.340015], [8.503742, 47.340018], [8.50372, 47.34002], [8.503697, 47.340021], [8.503674, 47.34002], [8.503652, 47.340018], [8.503635, 47.340015], [8.503618, 47.340011], [8.503602, 47.340007], [8.503576, 47.339998], [8.503552, 47.339989], [8.503528, 47.339977], [8.503498, 47.33996], [8.503471, 47.33994], [8.503445, 47.33992], [8.503422, 47.339898], [8.503422, 47.339898], [8.503422, 47.339897], [8.503292, 47.339803], [8.503292, 47.339803], [8.503292, 47.339803], [8.503254, 47.339786], [8.503214, 47.339771], [8.503172, 47.339759], [8.503129, 47.339749], [8.503129, 47.339749], [8.50305, 47.339734], [8.503033, 47.339678], [8.503019, 47.339623], [8.503012, 47.339568], [8.503012, 47.339513], [8.503018, 47.339457], [8.503031, 47.339402], [8.50304, 47.339362], [8.503045, 47.339321], [8.503044, 47.33928], [8.503039, 47.339239], [8.503029, 47.339199], [8.503014, 47.339159], [8.502942, 47.338998], [8.50293, 47.338968], [8.50292, 47.338938], [8.502913, 47.338908], [8.502881, 47.338757], [8.502878, 47.338744], [8.502873, 47.338731], [8.502867, 47.338719], [8.502859, 47.338708], [8.502849, 47.338696], [8.502839, 47.338686], [8.502833, 47.33868], [8.502829, 47.338675], [8.502825, 47.338669], [8.502822, 47.338663], [8.50282, 47.338656], [8.502819, 47.33865], [8.502819, 47.338644], [8.502819, 47.338637], [8.50282, 47.338631], [8.502828, 47.338603], [8.502836, 47.338577], [8.502838, 47.338566], [8.502839, 47.338554], [8.502839, 47.338542], [8.502837, 47.338531], [8.502834, 47.338519], [8.50283, 47.338508], [8.502809, 47.338461], [8.502805, 47.338455], [8.502801, 47.338449], [8.502797, 47.338443], [8.502791, 47.338438], [8.502785, 47.338433], [8.502778, 47.338428], [8.502772, 47.338424], [8.502766, 47.338419], [8.502761, 47.338414], [8.502756, 47.338409], [8.502753, 47.338404], [8.50275, 47.338398], [8.502743, 47.338381], [8.502738, 47.33837], [8.502727, 47.338343], [8.502726, 47.338338], [8.502725, 47.338333], [8.502724, 47.338328], [8.502725, 47.338324], [8.502725, 47.338319], [8.502727, 47.338314], [8.502729, 47.338309], [8.502731, 47.338305], [8.502746, 47.33828], [8.502748, 47.338278], [8.502749, 47.338275], [8.50275, 47.338272], [8.50275, 47.338269], [8.50275, 47.338266], [8.50275, 47.338264], [8.502749, 47.338261], [8.502748, 47.338258], [8.502747, 47.338255], [8.502745, 47.338253], [8.502743, 47.33825], [8.502741, 47.338248], [8.502738, 47.338246], [8.502735, 47.338244], [8.502732, 47.338242], [8.502729, 47.33824], [8.502722, 47.338237], [8.502717, 47.338234], [8.502711, 47.33823], [8.502706, 47.338225], [8.502702, 47.338221], [8.502698, 47.338216], [8.502696, 47.338211], [8.502693, 47.338206], [8.502692, 47.338201], [8.502691, 47.338195], [8.502686, 47.338149], [8.502685, 47.338143], [8.502684, 47.338138], [8.502681, 47.338133], [8.502678, 47.338127], [8.502675, 47.338122], [8.502671, 47.338118], [8.502666, 47.338113], [8.502661, 47.338109], [8.502655, 47.338105], [8.502646, 47.338098], [8.502637, 47.338092], [8.50263, 47.338084], [8.502623, 47.338077], [8.502577, 47.33802], [8.502573, 47.338016], [8.502569, 47.338012], [8.502564, 47.338008], [8.502558, 47.338005], [8.502553, 47.338002], [8.502547, 47.337999], [8.50254, 47.337997], [8.502533, 47.337995], [8.502526, 47.337993], [8.502519, 47.337992], [8.502512, 47.337991], [8.502505, 47.337991], [8.502497, 47.337991], [8.502461, 47.337994], [8.502448, 47.337994], [8.502404, 47.337996], [8.50236, 47.337994], [8.502316, 47.33799], [8.502273, 47.337984], [8.502232, 47.337975], [8.502191, 47.337963], [8.502152, 47.337949], [8.502116, 47.337933], [8.502099, 47.337925], [8.502082, 47.337919], [8.502063, 47.337914], [8.502045, 47.33791], [8.502025, 47.337907], [8.502006, 47.337905], [8.501986, 47.337905], [8.501966, 47.337905], [8.501615, 47.337926], [8.501615, 47.337926], [8.501607, 47.337926], [8.5016, 47.337926], [8.501593, 47.337925], [8.501586, 47.337924], [8.501579, 47.337923], [8.501572, 47.337921], [8.501565, 47.337919], [8.501559, 47.337916], [8.501553, 47.337913], [8.501548, 47.33791], [8.501543, 47.337907], [8.501538, 47.337903], [8.501534, 47.337899], [8.501531, 47.337894], [8.501528, 47.33789], [8.501525, 47.337885], [8.501523, 47.33788], [8.501522, 47.337875], [8.501522, 47.33787], [8.501522, 47.337865], [8.501522, 47.33786], [8.501524, 47.337856], [8.501583, 47.337679], [8.50159, 47.337653], [8.501593, 47.337626], [8.501593, 47.3376], [8.501589, 47.337573], [8.501582, 47.337547], [8.501571, 47.337521], [8.501559, 47.337493], [8.501551, 47.337464], [8.501547, 47.337435], [8.501547, 47.337405], [8.501551, 47.337376], [8.501559, 47.337347], [8.501571, 47.337319]]], "type": "MultiLineString"}, "id": "1387", "properties": {}, "type": "Feature"}, {"bbox": [8.539574, 47.374577, 8.539949, 47.375009], "geometry": {"coordinates": [[[8.539949, 47.374577], [8.539574, 47.37459], [8.539609, 47.375009]]], "type": "MultiLineString"}, "id": "1388", "properties": {}, "type": "Feature"}, {"bbox": [8.562427, 47.400055, 8.562983, 47.401617], "geometry": {"coordinates": [[[8.562487, 47.400055], [8.562524, 47.400136], [8.562526, 47.400143], [8.562528, 47.40015], [8.562529, 47.400157], [8.562528, 47.400164], [8.562527, 47.400171], [8.562525, 47.400178], [8.562522, 47.400185], [8.562522, 47.400185], [8.56247, 47.400289], [8.562474, 47.400366], [8.562651, 47.400683], [8.562651, 47.400683], [8.562653, 47.400686], [8.562654, 47.400689], [8.562655, 47.400692], [8.562655, 47.400694], [8.562656, 47.400697], [8.562655, 47.4007], [8.562655, 47.400703], [8.562654, 47.400706], [8.562653, 47.400708], [8.562651, 47.400711], [8.562649, 47.400714], [8.562647, 47.400716], [8.562644, 47.400718], [8.562641, 47.400721], [8.562638, 47.400722], [8.562635, 47.400724], [8.562631, 47.400726], [8.562628, 47.400727], [8.562624, 47.400728], [8.56262, 47.400729], [8.562616, 47.40073], [8.562527, 47.400733], [8.56244, 47.400736], [8.562438, 47.400737], [8.562436, 47.400737], [8.562435, 47.400738], [8.562434, 47.400739], [8.562432, 47.40074], [8.562431, 47.400741], [8.56243, 47.400742], [8.562429, 47.400743], [8.562429, 47.400744], [8.562428, 47.400745], [8.562428, 47.400746], [8.562427, 47.400747], [8.562427, 47.400749], [8.562427, 47.40075], [8.562428, 47.400751], [8.562428, 47.400752], [8.562428, 47.400753], [8.562429, 47.400754], [8.56243, 47.400755], [8.562431, 47.400757], [8.562432, 47.400757], [8.562433, 47.400758], [8.562434, 47.400759], [8.562435, 47.40076], [8.562437, 47.400761], [8.562438, 47.400761], [8.562438, 47.400761], [8.562598, 47.400819], [8.5626, 47.40082], [8.562601, 47.400821], [8.562602, 47.400822], [8.562603, 47.400822], [8.562604, 47.400823], [8.562605, 47.400824], [8.562606, 47.400825], [8.562607, 47.400827], [8.562607, 47.400828], [8.562608, 47.400829], [8.562608, 47.40083], [8.562608, 47.400831], [8.562608, 47.400832], [8.562608, 47.400834], [8.562607, 47.400835], [8.562607, 47.400836], [8.562606, 47.400837], [8.562605, 47.400838], [8.562604, 47.400839], [8.562603, 47.40084], [8.562602, 47.400841], [8.562601, 47.400842], [8.5626, 47.400842], [8.562598, 47.400843], [8.562596, 47.400843], [8.562595, 47.400844], [8.562593, 47.400844], [8.562591, 47.400844], [8.56259, 47.400845], [8.562589, 47.400845], [8.562558, 47.400849], [8.562494, 47.400858], [8.562492, 47.400858], [8.56249, 47.400859], [8.562488, 47.400859], [8.562486, 47.40086], [8.562484, 47.400861], [8.562482, 47.400862], [8.56248, 47.400863], [8.562479, 47.400864], [8.562477, 47.400865], [8.562476, 47.400866], [8.562475, 47.400867], [8.562474, 47.400869], [8.562473, 47.40087], [8.562473, 47.400872], [8.562472, 47.400873], [8.562472, 47.400875], [8.562472, 47.400876], [8.562473, 47.400878], [8.562473, 47.400879], [8.562474, 47.400881], [8.562474, 47.400882], [8.562475, 47.400883], [8.562477, 47.400885], [8.562478, 47.400886], [8.562479, 47.400887], [8.562481, 47.400888], [8.562483, 47.400889], [8.562485, 47.40089], [8.562487, 47.40089], [8.562633, 47.400958], [8.562634, 47.400958], [8.562637, 47.400959], [8.56264, 47.400961], [8.562643, 47.400962], [8.562645, 47.400964], [8.562648, 47.400966], [8.56265, 47.400968], [8.562652, 47.40097], [8.562653, 47.400972], [8.562655, 47.400975], [8.562656, 47.400977], [8.562656, 47.40098], [8.562656, 47.400982], [8.562656, 47.400985], [8.562656, 47.400987], [8.562656, 47.40099], [8.562655, 47.400992], [8.562653, 47.400994], [8.562652, 47.400997], [8.56265, 47.400999], [8.562648, 47.401001], [8.562645, 47.401003], [8.562643, 47.401004], [8.56264, 47.401006], [8.562637, 47.401007], [8.562634, 47.401008], [8.56263, 47.401009], [8.562629, 47.40101], [8.562607, 47.40102], [8.562607, 47.40102], [8.562604, 47.401057], [8.562604, 47.401058], [8.562745, 47.401115], [8.562749, 47.401116], [8.562752, 47.401118], [8.562755, 47.40112], [8.562757, 47.401122], [8.56276, 47.401124], [8.562762, 47.401126], [8.562763, 47.401128], [8.562765, 47.401131], [8.562766, 47.401133], [8.562767, 47.401136], [8.562768, 47.401139], [8.562768, 47.401141], [8.562768, 47.401144], [8.562767, 47.401147], [8.562766, 47.401149], [8.562765, 47.401152], [8.562661, 47.401282], [8.562659, 47.401284], [8.562657, 47.401286], [8.562656, 47.401288], [8.562655, 47.40129], [8.562654, 47.401293], [8.562653, 47.401295], [8.562653, 47.401297], [8.562653, 47.4013], [8.562654, 47.401302], [8.562655, 47.401304], [8.562656, 47.401307], [8.562657, 47.401309], [8.562658, 47.401311], [8.56266, 47.401313], [8.562662, 47.401315], [8.562664, 47.401317], [8.562667, 47.401318], [8.56267, 47.40132], [8.562673, 47.401321], [8.562676, 47.401322], [8.562679, 47.401323], [8.562682, 47.401324], [8.562881, 47.401371], [8.562881, 47.401371], [8.562883, 47.401371], [8.562885, 47.401372], [8.562887, 47.401372], [8.562888, 47.401373], [8.56289, 47.401374], [8.562891, 47.401375], [8.562892, 47.401376], [8.562893, 47.401377], [8.562894, 47.401378], [8.562895, 47.401379], [8.562896, 47.40138], [8.562896, 47.401382], [8.562897, 47.401383], [8.562897, 47.401384], [8.562897, 47.401386], [8.562897, 47.401387], [8.562897, 47.401388], [8.562896, 47.401389], [8.562895, 47.401391], [8.562895, 47.401392], [8.562894, 47.401393], [8.562893, 47.401394], [8.562891, 47.401395], [8.56289, 47.401396], [8.562889, 47.401397], [8.562779, 47.40144], [8.562776, 47.401441], [8.562774, 47.401442], [8.562772, 47.401444], [8.56277, 47.401445], [8.562768, 47.401447], [8.562767, 47.401449], [8.562766, 47.40145], [8.562764, 47.401452], [8.562764, 47.401454], [8.562763, 47.401456], [8.562763, 47.401458], [8.562763, 47.40146], [8.562763, 47.401462], [8.562763, 47.401464], [8.562764, 47.401466], [8.562765, 47.401467], [8.562766, 47.401469], [8.562768, 47.401471], [8.562769, 47.401473], [8.562771, 47.401474], [8.562773, 47.401475], [8.562775, 47.401477], [8.562778, 47.401478], [8.562871, 47.401519], [8.562889, 47.40153], [8.562906, 47.401542], [8.562922, 47.401555], [8.562983, 47.401617]]], "type": "MultiLineString"}, "id": "1390", "properties": {}, "type": "Feature"}, {"bbox": [8.487038, 47.359634, 8.49431, 47.365031], "geometry": {"coordinates": [[[8.494099, 47.365031], [8.49418, 47.365009], [8.494246, 47.364898], [8.494295, 47.364791], [8.494309, 47.364714], [8.494309, 47.364713], [8.494309, 47.36471], [8.494309, 47.364706], [8.494309, 47.364703], [8.49431, 47.364667], [8.494307, 47.364632], [8.494301, 47.364596], [8.494301, 47.364596], [8.494255, 47.364451], [8.49412, 47.363848], [8.494037, 47.36311], [8.494035, 47.363044], [8.494017, 47.363004], [8.494003, 47.362963], [8.493995, 47.362921], [8.49399, 47.362898], [8.493983, 47.362875], [8.493973, 47.362852], [8.493954, 47.36282], [8.493933, 47.362789], [8.493908, 47.362758], [8.493874, 47.362722], [8.493834, 47.362689], [8.49379, 47.362658], [8.493741, 47.36263], [8.493668, 47.362593], [8.493593, 47.362559], [8.493517, 47.362525], [8.493487, 47.362512], [8.493458, 47.362496], [8.493431, 47.36248], [8.493419, 47.362471], [8.493408, 47.362461], [8.493399, 47.362451], [8.493391, 47.36244], [8.493384, 47.362429], [8.493379, 47.362418], [8.493375, 47.362406], [8.493368, 47.362374], [8.493361, 47.362343], [8.493353, 47.362312], [8.49335, 47.362302], [8.493346, 47.362292], [8.493341, 47.362283], [8.493334, 47.362274], [8.493327, 47.362265], [8.493318, 47.362257], [8.493317, 47.362257], [8.493317, 47.362256], [8.493316, 47.362255], [8.493289, 47.362231], [8.493263, 47.362206], [8.493239, 47.36218], [8.493218, 47.362157], [8.4932, 47.362133], [8.493183, 47.362108], [8.493171, 47.362091], [8.493158, 47.362073], [8.493145, 47.362056], [8.493129, 47.362037], [8.493112, 47.36202], [8.493093, 47.362003], [8.493071, 47.361989], [8.493009, 47.361949], [8.492948, 47.361909], [8.492888, 47.361867], [8.492826, 47.361821], [8.492767, 47.361772], [8.492712, 47.361722], [8.492663, 47.361673], [8.492619, 47.361622], [8.49258, 47.361569], [8.492574, 47.361562], [8.492567, 47.361555], [8.49256, 47.361548], [8.492552, 47.361542], [8.492542, 47.361537], [8.492533, 47.361532], [8.49249, 47.361512], [8.492448, 47.361492], [8.492407, 47.361471], [8.492374, 47.361455], [8.492342, 47.361438], [8.492311, 47.36142], [8.492249, 47.361386], [8.492189, 47.36135], [8.492131, 47.361313], [8.492073, 47.361278], [8.492014, 47.361244], [8.491953, 47.361212], [8.491949, 47.36121], [8.491944, 47.361209], [8.49194, 47.361207], [8.491935, 47.361206], [8.49193, 47.361205], [8.491925, 47.361205], [8.49192, 47.361204], [8.491915, 47.361204], [8.49191, 47.361205], [8.491906, 47.361205], [8.491901, 47.361206], [8.491896, 47.361208], [8.491892, 47.361209], [8.491887, 47.361211], [8.491882, 47.361213], [8.491878, 47.361216], [8.491874, 47.361218], [8.49187, 47.361221], [8.491867, 47.361225], [8.491864, 47.361228], [8.491861, 47.361232], [8.491859, 47.361235], [8.491858, 47.361239], [8.491856, 47.361243], [8.491855, 47.36125], [8.491855, 47.361257], [8.491856, 47.361264], [8.491858, 47.361271], [8.49186, 47.361277], [8.491864, 47.361284], [8.491869, 47.361294], [8.491873, 47.361304], [8.491876, 47.361314], [8.491877, 47.361322], [8.491877, 47.361331], [8.491876, 47.361339], [8.491874, 47.361348], [8.491871, 47.361356], [8.491854, 47.361393], [8.491833, 47.36143], [8.491808, 47.361465], [8.491793, 47.361488], [8.491781, 47.361512], [8.491772, 47.361536], [8.491764, 47.361564], [8.491756, 47.361592], [8.491748, 47.36162], [8.491744, 47.361637], [8.491738, 47.361653], [8.491731, 47.361669], [8.491719, 47.361692], [8.491704, 47.361714], [8.491687, 47.361735], [8.491667, 47.361755], [8.491644, 47.361777], [8.491622, 47.361799], [8.4916, 47.361821], [8.491595, 47.361825], [8.49159, 47.361829], [8.491584, 47.361833], [8.491577, 47.361836], [8.49157, 47.361839], [8.491563, 47.361842], [8.491556, 47.361844], [8.491548, 47.361845], [8.491542, 47.361845], [8.491536, 47.361845], [8.49153, 47.361845], [8.491525, 47.361844], [8.491519, 47.361842], [8.491514, 47.361841], [8.491509, 47.361839], [8.491504, 47.361837], [8.491499, 47.361834], [8.491495, 47.361831], [8.491491, 47.361828], [8.491488, 47.361825], [8.491485, 47.361822], [8.491482, 47.361818], [8.49148, 47.361815], [8.491478, 47.361811], [8.491477, 47.361807], [8.491475, 47.36179], [8.491474, 47.361773], [8.491476, 47.361757], [8.491479, 47.36174], [8.491482, 47.361727], [8.491483, 47.361713], [8.491483, 47.361699], [8.491481, 47.361686], [8.491477, 47.361673], [8.491471, 47.361659], [8.491464, 47.361647], [8.491461, 47.361642], [8.491457, 47.361637], [8.491452, 47.361632], [8.491447, 47.361627], [8.491441, 47.361623], [8.491434, 47.36162], [8.491428, 47.361616], [8.491421, 47.361613], [8.491401, 47.361605], [8.491383, 47.361597], [8.491365, 47.361587], [8.491359, 47.361583], [8.491353, 47.361579], [8.491348, 47.361574], [8.491343, 47.361569], [8.491339, 47.361564], [8.491336, 47.361559], [8.491334, 47.361553], [8.491332, 47.361548], [8.491331, 47.361542], [8.491328, 47.361521], [8.491322, 47.3615], [8.491313, 47.36148], [8.491304, 47.361463], [8.491294, 47.361447], [8.491284, 47.36143], [8.491282, 47.361427], [8.49128, 47.361424], [8.491277, 47.361421], [8.491274, 47.361418], [8.49127, 47.361416], [8.491266, 47.361414], [8.491262, 47.361412], [8.491258, 47.36141], [8.49125, 47.361407], [8.491244, 47.361403], [8.491237, 47.361399], [8.491231, 47.361395], [8.491226, 47.361391], [8.491221, 47.361386], [8.491217, 47.361381], [8.491206, 47.361365], [8.491196, 47.361349], [8.491188, 47.361332], [8.491175, 47.361307], [8.491159, 47.361283], [8.491139, 47.36126], [8.491123, 47.361242], [8.49111, 47.361223], [8.491098, 47.361204], [8.491092, 47.361192], [8.491089, 47.36118], [8.491086, 47.361168], [8.491085, 47.361156], [8.491086, 47.361144], [8.491088, 47.361132], [8.491096, 47.3611], [8.491103, 47.361068], [8.491109, 47.361036], [8.491112, 47.361017], [8.491115, 47.360998], [8.491117, 47.360979], [8.491119, 47.36097], [8.491122, 47.36096], [8.491127, 47.360951], [8.491132, 47.360941], [8.491138, 47.360931], [8.491144, 47.360921], [8.491148, 47.36091], [8.491151, 47.360902], [8.491153, 47.360894], [8.491153, 47.360886], [8.491153, 47.360878], [8.491151, 47.360871], [8.491149, 47.360863], [8.491145, 47.360855], [8.491141, 47.360848], [8.491139, 47.360845], [8.491136, 47.360843], [8.491134, 47.360841], [8.491131, 47.360838], [8.491128, 47.360837], [8.491124, 47.360835], [8.491121, 47.360833], [8.491117, 47.360832], [8.491113, 47.360831], [8.491109, 47.36083], [8.491105, 47.36083], [8.4911, 47.360829], [8.491096, 47.360829], [8.491092, 47.360829], [8.491088, 47.36083], [8.491084, 47.360831], [8.49108, 47.360832], [8.491076, 47.360833], [8.491072, 47.360834], [8.491064, 47.360838], [8.491056, 47.360842], [8.491049, 47.360847], [8.491043, 47.360852], [8.491037, 47.360857], [8.491031, 47.360863], [8.491027, 47.360869], [8.491023, 47.360875], [8.491008, 47.360899], [8.490992, 47.360924], [8.490973, 47.360947], [8.490954, 47.360969], [8.490934, 47.360991], [8.490912, 47.361011], [8.490885, 47.361037], [8.490861, 47.361065], [8.49084, 47.361094], [8.490823, 47.361123], [8.490792, 47.361185], [8.490762, 47.361247], [8.490731, 47.361309], [8.490699, 47.361375], [8.490667, 47.361441], [8.490634, 47.361507], [8.490615, 47.361549], [8.490598, 47.361592], [8.490584, 47.361635], [8.490583, 47.361638], [8.490582, 47.361641], [8.49058, 47.361644], [8.490577, 47.361647], [8.490575, 47.36165], [8.490572, 47.361652], [8.490569, 47.361655], [8.490565, 47.361657], [8.490561, 47.361659], [8.490557, 47.361661], [8.490553, 47.361662], [8.490548, 47.361663], [8.490544, 47.361664], [8.490539, 47.361665], [8.490534, 47.361665], [8.490529, 47.361665], [8.490524, 47.361665], [8.49052, 47.361664], [8.490515, 47.361663], [8.490511, 47.361662], [8.490506, 47.361661], [8.490502, 47.361659], [8.490498, 47.361658], [8.490494, 47.361655], [8.490491, 47.361653], [8.490488, 47.361651], [8.490485, 47.361648], [8.490483, 47.361645], [8.490481, 47.361642], [8.490479, 47.361639], [8.490478, 47.361636], [8.490477, 47.361633], [8.490477, 47.36163], [8.490477, 47.361626], [8.490478, 47.361551], [8.490473, 47.361476], [8.490462, 47.361401], [8.490437, 47.361308], [8.490401, 47.361217], [8.490353, 47.361129], [8.490295, 47.361043], [8.490226, 47.360961], [8.4902, 47.360932], [8.490177, 47.360901], [8.490156, 47.36087], [8.490146, 47.360851], [8.490138, 47.360831], [8.490133, 47.360811], [8.490131, 47.360791], [8.490131, 47.36077], [8.490134, 47.36075], [8.49014, 47.360723], [8.490147, 47.360697], [8.490155, 47.360671], [8.490157, 47.360662], [8.490158, 47.360654], [8.490158, 47.360645], [8.490156, 47.360637], [8.490154, 47.360628], [8.490151, 47.36062], [8.490147, 47.360612], [8.490141, 47.360604], [8.490135, 47.360597], [8.490125, 47.360585], [8.490117, 47.360573], [8.490111, 47.36056], [8.490106, 47.360547], [8.490103, 47.360534], [8.490102, 47.36052], [8.490101, 47.360487], [8.490098, 47.360453], [8.490094, 47.36042], [8.490092, 47.360412], [8.490089, 47.360404], [8.490086, 47.360396], [8.490081, 47.360389], [8.490075, 47.360382], [8.490069, 47.360375], [8.49005, 47.360356], [8.490032, 47.360338], [8.490013, 47.360319], [8.489961, 47.36027], [8.489907, 47.360223], [8.489849, 47.360177], [8.489848, 47.360177], [8.489826, 47.360158], [8.489806, 47.360138], [8.489788, 47.360117], [8.489774, 47.360095], [8.489762, 47.360072], [8.489753, 47.360049], [8.489747, 47.360025], [8.489746, 47.360014], [8.489746, 47.360004], [8.489748, 47.359993], [8.48975, 47.359983], [8.489754, 47.359972], [8.489759, 47.359962], [8.489768, 47.359946], [8.489774, 47.359929], [8.489779, 47.359912], [8.489782, 47.359895], [8.489782, 47.359882], [8.489781, 47.359868], [8.489778, 47.359855], [8.489772, 47.359842], [8.489766, 47.359829], [8.489757, 47.359816], [8.489747, 47.359805], [8.489741, 47.359798], [8.489736, 47.35979], [8.489732, 47.359783], [8.489729, 47.359775], [8.489727, 47.359767], [8.489726, 47.359759], [8.489726, 47.359751], [8.489727, 47.359743], [8.489729, 47.359735], [8.489732, 47.359727], [8.489719, 47.359646], [8.489675, 47.359634], [8.489643, 47.359658], [8.489641, 47.359675], [8.489642, 47.359693], [8.489644, 47.359711], [8.489649, 47.359728], [8.489655, 47.359745], [8.489657, 47.35975], [8.489659, 47.359755], [8.489659, 47.35976], [8.489659, 47.359765], [8.489658, 47.35977], [8.489657, 47.359775], [8.489655, 47.35978], [8.489652, 47.359785], [8.48964, 47.359804], [8.489626, 47.359824], [8.489611, 47.359842], [8.489605, 47.359851], [8.4896, 47.35986], [8.489597, 47.359868], [8.489594, 47.359878], [8.489592, 47.359887], [8.489592, 47.359896], [8.489591, 47.359907], [8.489589, 47.359917], [8.489586, 47.359927], [8.489581, 47.359937], [8.489575, 47.359947], [8.489568, 47.359956], [8.48956, 47.359965], [8.489551, 47.359973], [8.489503, 47.360013], [8.489455, 47.360053], [8.489407, 47.360094], [8.489397, 47.360102], [8.489389, 47.360111], [8.489382, 47.36012], [8.489376, 47.36013], [8.489372, 47.36014], [8.489368, 47.36015], [8.489366, 47.36016], [8.489365, 47.360165], [8.489363, 47.360169], [8.489361, 47.360174], [8.489358, 47.360178], [8.489355, 47.360183], [8.489351, 47.360187], [8.489347, 47.36019], [8.489342, 47.360194], [8.489337, 47.360197], [8.489183, 47.360282], [8.48916, 47.360295], [8.489137, 47.360307], [8.489113, 47.36032], [8.489111, 47.360322], [8.489108, 47.360323], [8.489106, 47.360325], [8.489104, 47.360327], [8.489103, 47.360329], [8.489101, 47.360331], [8.4891, 47.360334], [8.489099, 47.360336], [8.489099, 47.360338], [8.489099, 47.360341], [8.489099, 47.360343], [8.489099, 47.360345], [8.4891, 47.360348], [8.489101, 47.36035], [8.489102, 47.360352], [8.489105, 47.360357], [8.489107, 47.360361], [8.489109, 47.360366], [8.489109, 47.360371], [8.48911, 47.360376], [8.489109, 47.36038], [8.489108, 47.360385], [8.489107, 47.36039], [8.489104, 47.360394], [8.489102, 47.360399], [8.489098, 47.360403], [8.489094, 47.360407], [8.48909, 47.360411], [8.489085, 47.360414], [8.489079, 47.360417], [8.489073, 47.36042], [8.489059, 47.360426], [8.489045, 47.360433], [8.48903, 47.360438], [8.489025, 47.360441], [8.48902, 47.360443], [8.489016, 47.360446], [8.489012, 47.360449], [8.489009, 47.360452], [8.489005, 47.360455], [8.489003, 47.360459], [8.489, 47.360462], [8.488998, 47.360466], [8.488997, 47.36047], [8.488996, 47.360474], [8.488996, 47.360478], [8.488996, 47.360482], [8.488997, 47.36049], [8.488999, 47.360498], [8.489002, 47.360506], [8.489006, 47.360514], [8.489012, 47.360521], [8.489018, 47.360529], [8.489027, 47.360539], [8.489038, 47.360548], [8.48905, 47.360557], [8.489053, 47.36056], [8.489055, 47.360562], [8.489058, 47.360565], [8.48906, 47.360567], [8.489061, 47.36057], [8.489062, 47.360573], [8.489063, 47.360576], [8.489064, 47.360579], [8.489064, 47.360582], [8.489063, 47.360585], [8.48906, 47.360613], [8.489059, 47.360641], [8.489061, 47.360669], [8.489062, 47.360677], [8.489064, 47.360686], [8.489068, 47.360694], [8.489072, 47.360702], [8.489077, 47.360709], [8.489084, 47.360717], [8.48909, 47.360724], [8.489095, 47.360731], [8.489099, 47.360739], [8.489102, 47.360747], [8.489104, 47.360755], [8.489105, 47.360763], [8.489105, 47.360771], [8.489104, 47.360782], [8.489102, 47.360793], [8.489098, 47.360805], [8.489093, 47.360815], [8.489086, 47.360826], [8.489078, 47.360836], [8.489075, 47.360841], [8.489072, 47.360845], [8.489069, 47.360851], [8.489067, 47.360856], [8.489066, 47.360861], [8.489066, 47.360866], [8.489064, 47.360885], [8.489061, 47.360903], [8.489056, 47.360922], [8.489054, 47.360927], [8.489051, 47.360933], [8.489047, 47.360938], [8.489042, 47.360943], [8.489037, 47.360948], [8.489032, 47.360952], [8.489026, 47.360956], [8.489019, 47.36096], [8.489012, 47.360963], [8.489004, 47.360966], [8.488997, 47.360968], [8.488989, 47.36097], [8.48898, 47.360971], [8.48896, 47.360974], [8.48894, 47.360978], [8.48892, 47.360983], [8.488918, 47.360984], [8.488915, 47.360985], [8.488912, 47.360986], [8.48891, 47.360987], [8.488908, 47.360989], [8.488906, 47.36099], [8.488904, 47.360992], [8.488903, 47.360993], [8.488901, 47.360995], [8.4889, 47.360997], [8.488899, 47.360999], [8.488899, 47.361001], [8.488894, 47.361018], [8.488887, 47.361035], [8.488878, 47.361052], [8.488867, 47.361068], [8.488846, 47.361095], [8.488822, 47.36112], [8.488794, 47.361143], [8.488791, 47.361146], [8.488787, 47.361148], [8.488783, 47.36115], [8.488778, 47.361152], [8.488774, 47.361154], [8.488769, 47.361155], [8.488764, 47.361156], [8.488759, 47.361157], [8.488754, 47.361157], [8.488749, 47.361158], [8.488744, 47.361157], [8.488738, 47.361157], [8.488733, 47.361156], [8.488728, 47.361155], [8.488724, 47.361154], [8.488719, 47.361152], [8.488715, 47.36115], [8.488711, 47.361148], [8.488707, 47.361146], [8.488704, 47.361144], [8.488702, 47.361142], [8.488701, 47.36114], [8.488699, 47.361138], [8.488698, 47.361136], [8.488697, 47.361133], [8.488696, 47.361131], [8.488695, 47.361129], [8.488695, 47.361126], [8.488695, 47.361124], [8.488696, 47.361122], [8.488696, 47.361119], [8.488698, 47.361117], [8.488699, 47.361115], [8.4887, 47.361113], [8.488702, 47.361111], [8.488704, 47.361109], [8.488707, 47.361107], [8.488709, 47.361105], [8.488729, 47.361094], [8.488749, 47.361083], [8.48877, 47.361073], [8.488773, 47.361071], [8.488775, 47.36107], [8.488777, 47.361068], [8.488779, 47.361066], [8.488781, 47.361064], [8.488783, 47.361062], [8.488784, 47.36106], [8.488785, 47.361058], [8.488785, 47.361056], [8.488786, 47.361054], [8.488786, 47.361051], [8.488786, 47.361049], [8.488785, 47.361047], [8.488785, 47.361045], [8.488784, 47.361042], [8.488782, 47.36104], [8.488781, 47.361038], [8.488779, 47.361036], [8.488763, 47.36102], [8.488747, 47.361003], [8.488732, 47.360985], [8.48873, 47.360983], [8.488729, 47.360981], [8.488728, 47.360978], [8.488727, 47.360976], [8.488726, 47.360973], [8.488726, 47.36097], [8.488727, 47.360968], [8.488727, 47.360965], [8.488728, 47.360963], [8.488729, 47.36096], [8.488731, 47.360958], [8.488732, 47.360955], [8.488734, 47.360953], [8.488737, 47.360951], [8.488739, 47.360949], [8.488742, 47.360947], [8.488777, 47.360927], [8.488812, 47.360907], [8.488846, 47.360886], [8.488855, 47.36088], [8.488864, 47.360873], [8.488871, 47.360866], [8.488878, 47.360859], [8.488883, 47.360851], [8.488888, 47.360842], [8.488891, 47.360834], [8.488894, 47.360825], [8.488895, 47.360816], [8.488895, 47.360808], [8.488894, 47.360799], [8.488889, 47.36078], [8.488882, 47.360762], [8.488873, 47.360744], [8.488862, 47.360726], [8.488848, 47.360709], [8.488833, 47.360693], [8.488816, 47.360678], [8.488805, 47.360671], [8.488794, 47.360663], [8.488782, 47.360657], [8.488769, 47.360651], [8.488755, 47.360646], [8.488741, 47.360642], [8.488726, 47.360638], [8.488711, 47.360636], [8.488696, 47.360634], [8.488693, 47.360634], [8.48869, 47.360634], [8.488687, 47.360634], [8.488684, 47.360634], [8.488681, 47.360635], [8.488678, 47.360636], [8.488675, 47.360637], [8.488673, 47.360638], [8.48867, 47.360639], [8.488668, 47.36064], [8.488666, 47.360642], [8.488664, 47.360643], [8.488662, 47.360645], [8.48866, 47.360647], [8.488659, 47.360648], [8.488658, 47.36065], [8.488657, 47.360652], [8.488657, 47.360654], [8.488656, 47.360656], [8.488656, 47.360659], [8.488657, 47.360661], [8.488657, 47.360663], [8.488658, 47.360665], [8.488659, 47.360667], [8.48866, 47.360668], [8.488662, 47.36067], [8.488664, 47.360672], [8.488666, 47.360673], [8.488668, 47.360675], [8.48867, 47.360676], [8.488672, 47.360677], [8.488699, 47.36069], [8.488723, 47.360704], [8.488747, 47.360718], [8.48875, 47.360721], [8.488753, 47.360724], [8.488756, 47.360727], [8.488758, 47.36073], [8.48876, 47.360733], [8.488762, 47.360737], [8.488763, 47.36074], [8.488763, 47.360744], [8.488763, 47.360747], [8.488763, 47.360751], [8.488762, 47.360754], [8.488761, 47.360758], [8.488759, 47.360761], [8.488757, 47.360764], [8.488754, 47.360767], [8.488751, 47.36077], [8.488748, 47.360773], [8.488745, 47.360775], [8.488741, 47.360777], [8.488736, 47.36078], [8.488732, 47.360781], [8.488727, 47.360783], [8.488722, 47.360784], [8.488717, 47.360785], [8.488651, 47.360796], [8.488585, 47.36081], [8.488521, 47.360828], [8.488515, 47.36083], [8.488509, 47.360832], [8.488503, 47.360835], [8.488498, 47.360838], [8.488493, 47.360842], [8.488488, 47.360845], [8.488484, 47.360849], [8.488481, 47.360854], [8.488478, 47.360858], [8.488476, 47.360862], [8.488474, 47.360867], [8.488473, 47.360872], [8.488473, 47.360877], [8.488473, 47.360881], [8.488475, 47.360916], [8.488475, 47.360951], [8.488473, 47.360986], [8.488472, 47.36099], [8.488471, 47.360995], [8.488469, 47.360998], [8.488467, 47.361002], [8.488464, 47.361006], [8.488461, 47.36101], [8.488458, 47.361013], [8.488454, 47.361016], [8.488449, 47.361019], [8.488444, 47.361022], [8.488439, 47.361024], [8.488434, 47.361026], [8.48843, 47.361027], [8.488426, 47.361028], [8.488421, 47.361029], [8.488417, 47.36103], [8.488412, 47.36103], [8.488407, 47.36103], [8.488403, 47.36103], [8.488398, 47.361029], [8.488394, 47.361028], [8.488389, 47.361027], [8.488385, 47.361026], [8.488381, 47.361024], [8.488378, 47.361022], [8.488374, 47.36102], [8.488371, 47.361018], [8.488368, 47.361015], [8.488365, 47.361013], [8.488363, 47.36101], [8.488361, 47.361007], [8.48836, 47.361004], [8.488359, 47.361001], [8.488358, 47.360998], [8.488358, 47.360995], [8.488357, 47.360974], [8.488353, 47.360954], [8.488346, 47.360934], [8.488337, 47.360914], [8.488313, 47.360879], [8.48831, 47.360875], [8.488308, 47.360871], [8.488306, 47.360867], [8.488304, 47.360863], [8.488304, 47.360859], [8.488303, 47.360854], [8.488303, 47.36085], [8.488304, 47.360846], [8.488306, 47.360841], [8.488307, 47.360837], [8.48831, 47.360833], [8.488313, 47.360829], [8.488316, 47.360825], [8.48832, 47.360822], [8.488337, 47.360806], [8.488354, 47.36079], [8.48837, 47.360773], [8.488374, 47.360768], [8.488377, 47.360763], [8.48838, 47.360758], [8.488382, 47.360753], [8.488384, 47.360747], [8.488384, 47.360742], [8.488384, 47.360736], [8.488384, 47.36073], [8.488382, 47.360725], [8.48838, 47.36072], [8.488378, 47.360714], [8.488368, 47.3607], [8.488356, 47.360686], [8.488343, 47.360673], [8.488327, 47.36066], [8.48831, 47.360649], [8.488292, 47.360639], [8.488268, 47.360627], [8.488243, 47.360616], [8.488218, 47.360605], [8.488217, 47.360605], [8.488216, 47.360604], [8.488215, 47.360604], [8.488213, 47.360604], [8.488212, 47.360604], [8.488211, 47.360603], [8.48821, 47.360603], [8.488208, 47.360604], [8.488207, 47.360604], [8.488206, 47.360604], [8.488205, 47.360604], [8.488204, 47.360605], [8.488203, 47.360605], [8.488202, 47.360606], [8.488201, 47.360606], [8.4882, 47.360607], [8.488199, 47.360607], [8.488198, 47.360608], [8.488198, 47.360609], [8.488197, 47.36061], [8.488197, 47.36061], [8.488196, 47.360611], [8.488196, 47.360612], [8.488196, 47.360613], [8.488196, 47.360614], [8.488196, 47.360615], [8.488197, 47.360615], [8.488197, 47.360616], [8.488197, 47.360617], [8.488217, 47.360645], [8.488237, 47.360672], [8.488259, 47.360698], [8.488261, 47.3607], [8.488262, 47.360703], [8.488263, 47.360705], [8.488264, 47.360707], [8.488265, 47.36071], [8.488265, 47.360712], [8.488264, 47.360715], [8.488264, 47.360717], [8.488263, 47.36072], [8.488262, 47.360722], [8.48826, 47.360724], [8.488259, 47.360726], [8.488257, 47.360728], [8.488254, 47.36073], [8.488239, 47.360742], [8.488223, 47.360752], [8.488206, 47.360763], [8.488131, 47.360826], [8.48812, 47.360841], [8.488111, 47.360857], [8.488104, 47.360874], [8.488099, 47.360891], [8.488092, 47.360912], [8.488082, 47.360933], [8.48807, 47.360954], [8.488055, 47.360973], [8.48801, 47.361027], [8.487969, 47.361082], [8.487931, 47.361138], [8.487924, 47.36115], [8.487918, 47.361163], [8.487914, 47.361176], [8.487912, 47.361189], [8.487911, 47.361202], [8.487913, 47.361228], [8.487916, 47.361253], [8.487923, 47.361278], [8.487937, 47.36133], [8.487951, 47.361382], [8.487963, 47.361434], [8.487967, 47.361461], [8.487967, 47.361488], [8.487964, 47.361514], [8.487961, 47.361543], [8.487962, 47.361571], [8.487967, 47.361599], [8.487981, 47.361657], [8.487996, 47.361715], [8.48801, 47.361774], [8.488021, 47.361818], [8.488031, 47.361863], [8.488041, 47.361909], [8.488042, 47.361911], [8.488042, 47.361914], [8.488041, 47.361916], [8.488041, 47.361919], [8.48804, 47.361921], [8.488039, 47.361924], [8.488037, 47.361926], [8.488035, 47.361928], [8.488033, 47.361931], [8.488031, 47.361933], [8.488028, 47.361934], [8.488025, 47.361936], [8.488022, 47.361938], [8.488019, 47.361939], [8.488016, 47.36194], [8.488012, 47.361941], [8.488008, 47.361942], [8.488005, 47.361942], [8.488001, 47.361943], [8.487997, 47.361943], [8.487993, 47.361943], [8.48799, 47.361942], [8.487986, 47.361942], [8.487982, 47.361941], [8.487979, 47.36194], [8.487975, 47.361939], [8.487972, 47.361937], [8.487969, 47.361936], [8.487966, 47.361934], [8.487964, 47.361932], [8.487962, 47.36193], [8.487959, 47.361928], [8.48793, 47.361894], [8.4879, 47.361861], [8.48787, 47.361828], [8.487661, 47.361602], [8.487641, 47.36158], [8.487623, 47.361558], [8.487607, 47.361535], [8.487573, 47.361483], [8.487538, 47.361432], [8.487502, 47.361381], [8.487038, 47.360972]]], "type": "MultiLineString"}, "id": "1393", "properties": {}, "type": "Feature"}, {"bbox": [8.523909, 47.336367, 8.523959, 47.337269], "geometry": {"coordinates": [[[8.523909, 47.337269], [8.523935, 47.337166], [8.523959, 47.336367]]], "type": "MultiLineString"}, "id": "1394", "properties": {}, "type": "Feature"}, {"bbox": [8.55063, 47.413012, 8.558736, 47.41307], "geometry": {"coordinates": [[[8.55063, 47.413027], [8.550902, 47.413012], [8.552497, 47.413026], [8.552924, 47.413026], [8.55308, 47.413028], [8.554331, 47.413047], [8.55466, 47.413037], [8.555358, 47.41304], [8.555714, 47.413042], [8.557708, 47.41306], [8.558736, 47.41307]]], "type": "MultiLineString"}, "id": "1398", "properties": {}, "type": "Feature"}, {"bbox": [8.535029, 47.374219, 8.535581, 47.374476], "geometry": {"coordinates": [[[8.535581, 47.374219], [8.535029, 47.374476]]], "type": "MultiLineString"}, "id": "1399", "properties": {}, "type": "Feature"}, {"bbox": [8.532345, 47.385988, 8.533312, 47.386756], "geometry": {"coordinates": [[[8.532345, 47.385988], [8.53248, 47.386111], [8.533312, 47.386756]]], "type": "MultiLineString"}, "id": "1400", "properties": {}, "type": "Feature"}, {"bbox": [8.477913, 47.387109, 8.478528, 47.387833], "geometry": {"coordinates": [[[8.478528, 47.387833], [8.478372, 47.387494], [8.477913, 47.387109]]], "type": "MultiLineString"}, "id": "1402", "properties": {}, "type": "Feature"}, {"bbox": [8.56114, 47.371796, 8.56195, 47.372261], "geometry": {"coordinates": [[[8.56114, 47.372261], [8.561756, 47.371919], [8.561794, 47.371888], [8.56195, 47.371796]]], "type": "MultiLineString"}, "id": "1403", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.38233, 8.499084, 47.383155], "geometry": {"coordinates": [[[8.499084, 47.38233], [8.497363, 47.383139], [8.497351, 47.383155]]], "type": "MultiLineString"}, "id": "1404", "properties": {}, "type": "Feature"}, {"bbox": [8.503877, 47.395677, 8.504095, 47.396079], "geometry": {"coordinates": [[[8.503908, 47.396079], [8.504095, 47.395875], [8.503877, 47.395677]]], "type": "MultiLineString"}, "id": "1405", "properties": {}, "type": "Feature"}, {"bbox": [8.54265, 47.378637, 8.542714, 47.378758], "geometry": {"coordinates": [[[8.54265, 47.378758], [8.542714, 47.378637]]], "type": "MultiLineString"}, "id": "1406", "properties": {}, "type": "Feature"}, {"bbox": [8.516094, 47.367855, 8.517183, 47.368461], "geometry": {"coordinates": [[[8.517183, 47.368461], [8.516094, 47.367855]]], "type": "MultiLineString"}, "id": "1407", "properties": {}, "type": "Feature"}, {"bbox": [8.491061, 47.371207, 8.493145, 47.371589], "geometry": {"coordinates": [[[8.493145, 47.371207], [8.492783, 47.371307], [8.492041, 47.371516], [8.491641, 47.371551], [8.491061, 47.371589]]], "type": "MultiLineString"}, "id": "1408", "properties": {}, "type": "Feature"}, {"bbox": [8.535693, 47.369601, 8.536538, 47.370122], "geometry": {"coordinates": [[[8.535693, 47.369939], [8.535803, 47.369934], [8.536052, 47.370122], [8.536075, 47.370122], [8.536538, 47.369829], [8.536262, 47.369652], [8.536241, 47.369601]]], "type": "MultiLineString"}, "id": "1409", "properties": {}, "type": "Feature"}, {"bbox": [8.48629, 47.38721, 8.486435, 47.387236], "geometry": {"coordinates": [[[8.486435, 47.38721], [8.48629, 47.387236]]], "type": "MultiLineString"}, "id": "1415", "properties": {}, "type": "Feature"}, {"bbox": [8.477417, 47.413605, 8.4775, 47.415084], "geometry": {"coordinates": [[[8.477449, 47.413605], [8.4775, 47.413757], [8.47749, 47.414037], [8.477444, 47.414053], [8.477417, 47.414469], [8.477444, 47.415084]]], "type": "MultiLineString"}, "id": "1417", "properties": {}, "type": "Feature"}, {"bbox": [8.587097, 47.354532, 8.5871, 47.354878], "geometry": {"coordinates": [[[8.587097, 47.354878], [8.5871, 47.354532]]], "type": "MultiLineString"}, "id": "1421", "properties": {}, "type": "Feature"}, {"bbox": [8.519485, 47.399638, 8.520387, 47.400006], "geometry": {"coordinates": [[[8.520384, 47.399638], [8.520386, 47.399645], [8.520387, 47.399652], [8.520387, 47.399659], [8.520386, 47.399666], [8.520384, 47.399673], [8.520381, 47.39968], [8.520378, 47.399687], [8.520373, 47.399693], [8.520368, 47.399699], [8.520362, 47.399705], [8.520355, 47.399711], [8.520348, 47.399716], [8.520339, 47.39972], [8.520331, 47.399725], [8.520125, 47.3998], [8.519888, 47.399879], [8.51963, 47.399961], [8.519485, 47.400006]]], "type": "MultiLineString"}, "id": "1423", "properties": {}, "type": "Feature"}, {"bbox": [8.530503, 47.340443, 8.531515, 47.340549], "geometry": {"coordinates": [[[8.530503, 47.340443], [8.530622, 47.34048], [8.531005, 47.340523], [8.531437, 47.340523], [8.531515, 47.340549]]], "type": "MultiLineString"}, "id": "1427", "properties": {}, "type": "Feature"}, {"bbox": [8.552884, 47.413028, 8.55308, 47.414306], "geometry": {"coordinates": [[[8.55308, 47.413028], [8.553075, 47.413138], [8.552894, 47.413137], [8.552884, 47.414306]]], "type": "MultiLineString"}, "id": "1428", "properties": {}, "type": "Feature"}, {"bbox": [8.533256, 47.374884, 8.534366, 47.375376], "geometry": {"coordinates": [[[8.534366, 47.374884], [8.533256, 47.375376]]], "type": "MultiLineString"}, "id": "1429", "properties": {}, "type": "Feature"}, {"bbox": [8.566799, 47.377357, 8.568031, 47.377376], "geometry": {"coordinates": [[[8.566799, 47.377376], [8.568031, 47.377357]]], "type": "MultiLineString"}, "id": "1430", "properties": {}, "type": "Feature"}, {"bbox": [8.551023, 47.37944, 8.551698, 47.379806], "geometry": {"coordinates": [[[8.551023, 47.37944], [8.551698, 47.379806]]], "type": "MultiLineString"}, "id": "1432", "properties": {}, "type": "Feature"}, {"bbox": [8.517753, 47.374247, 8.51834, 47.37458], "geometry": {"coordinates": [[[8.51834, 47.37458], [8.517753, 47.374247]]], "type": "MultiLineString"}, "id": "1433", "properties": {}, "type": "Feature"}, {"bbox": [8.52708, 47.410511, 8.528049, 47.411321], "geometry": {"coordinates": [[[8.52708, 47.410511], [8.52725, 47.410651], [8.528049, 47.411321]]], "type": "MultiLineString"}, "id": "1434", "properties": {}, "type": "Feature"}, {"bbox": [8.483214, 47.414901, 8.483459, 47.41491], "geometry": {"coordinates": [[[8.483459, 47.41491], [8.483214, 47.414901]]], "type": "MultiLineString"}, "id": "1435", "properties": {}, "type": "Feature"}, {"bbox": [8.576119, 47.384216, 8.576461, 47.385681], "geometry": {"coordinates": [[[8.576126, 47.384216], [8.576119, 47.384316], [8.576126, 47.384417], [8.576147, 47.384517], [8.5763, 47.385072], [8.576461, 47.385681]]], "type": "MultiLineString"}, "id": "1436", "properties": {}, "type": "Feature"}, {"bbox": [8.551031, 47.376967, 8.552666, 47.377825], "geometry": {"coordinates": [[[8.551031, 47.377825], [8.551618, 47.377423], [8.551864, 47.377285], [8.552275, 47.377084], [8.55246, 47.37701], [8.552666, 47.376967]]], "type": "MultiLineString"}, "id": "1437", "properties": {}, "type": "Feature"}, {"bbox": [8.542863, 47.371555, 8.54382, 47.371732], "geometry": {"coordinates": [[[8.542863, 47.371555], [8.543029, 47.371563], [8.543232, 47.371594], [8.543235, 47.371652], [8.54382, 47.371732]]], "type": "MultiLineString"}, "id": "1438", "properties": {}, "type": "Feature"}, {"bbox": [8.534219, 47.380278, 8.534492, 47.380373], "geometry": {"coordinates": [[[8.534492, 47.380373], [8.534219, 47.380278]]], "type": "MultiLineString"}, "id": "1440", "properties": {}, "type": "Feature"}, {"bbox": [8.524103, 47.351752, 8.524121, 47.351753], "geometry": {"coordinates": [[[8.524103, 47.351753], [8.524121, 47.351752]]], "type": "MultiLineString"}, "id": "1443", "properties": {}, "type": "Feature"}, {"bbox": [8.577824, 47.390184, 8.578247, 47.390418], "geometry": {"coordinates": [[[8.577824, 47.390418], [8.578247, 47.390184]]], "type": "MultiLineString"}, "id": "1445", "properties": {}, "type": "Feature"}, {"bbox": [8.547973, 47.374072, 8.549081, 47.374265], "geometry": {"coordinates": [[[8.547973, 47.374072], [8.549081, 47.374265]]], "type": "MultiLineString"}, "id": "1446", "properties": {}, "type": "Feature"}, {"bbox": [8.53397, 47.393698, 8.534632, 47.39442], "geometry": {"coordinates": [[[8.534632, 47.393698], [8.53397, 47.39442]]], "type": "MultiLineString"}, "id": "1447", "properties": {}, "type": "Feature"}, {"bbox": [8.559211, 47.369881, 8.559465, 47.370412], "geometry": {"coordinates": [[[8.559211, 47.370412], [8.559246, 47.3703], [8.559465, 47.369881]]], "type": "MultiLineString"}, "id": "1448", "properties": {}, "type": "Feature"}, {"bbox": [8.512578, 47.378623, 8.514461, 47.380532], "geometry": {"coordinates": [[[8.512578, 47.380532], [8.512742, 47.380033], [8.514461, 47.379519], [8.513415, 47.378623]]], "type": "MultiLineString"}, "id": "1449", "properties": {}, "type": "Feature"}, {"bbox": [8.506224, 47.414681, 8.507302, 47.415149], "geometry": {"coordinates": [[[8.507302, 47.414681], [8.50726, 47.4147], [8.506918, 47.414853], [8.506363, 47.415098], [8.506224, 47.415149]]], "type": "MultiLineString"}, "id": "1450", "properties": {}, "type": "Feature"}, {"bbox": [8.496906, 47.424324, 8.49709, 47.424378], "geometry": {"coordinates": [[[8.49709, 47.424324], [8.496906, 47.424378]]], "type": "MultiLineString"}, "id": "1451", "properties": {}, "type": "Feature"}, {"bbox": [8.539146, 47.38221, 8.539885, 47.382708], "geometry": {"coordinates": [[[8.539146, 47.38221], [8.539885, 47.382708]]], "type": "MultiLineString"}, "id": "1454", "properties": {}, "type": "Feature"}, {"bbox": [8.518557, 47.369694, 8.520315, 47.370286], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.520018, 47.369878], [8.518672, 47.370255], [8.518557, 47.370286]]], "type": "MultiLineString"}, "id": "1457", "properties": {}, "type": "Feature"}, {"bbox": [8.477042, 47.415064, 8.477241, 47.415366], "geometry": {"coordinates": [[[8.477234, 47.415064], [8.477241, 47.415196], [8.477146, 47.415294], [8.477042, 47.415366]]], "type": "MultiLineString"}, "id": "1459", "properties": {}, "type": "Feature"}, {"bbox": [8.535062, 47.334296, 8.537803, 47.336572], "geometry": {"coordinates": [[[8.535487, 47.336572], [8.535418, 47.336536], [8.535062, 47.336306], [8.535199, 47.336161], [8.535276, 47.336099], [8.53558, 47.335894], [8.535792, 47.335738], [8.535981, 47.335656], [8.536158, 47.335562], [8.536307, 47.335487], [8.53647, 47.335395], [8.536793, 47.335219], [8.537016, 47.33506], [8.537171, 47.334925], [8.537427, 47.334682], [8.5377, 47.334394], [8.537803, 47.334333], [8.537792, 47.334296]]], "type": "MultiLineString"}, "id": "1460", "properties": {}, "type": "Feature"}, {"bbox": [8.558007, 47.41307, 8.558736, 47.413242], "geometry": {"coordinates": [[[8.558736, 47.41307], [8.558716, 47.413082], [8.558012, 47.413073], [8.558007, 47.413231], [8.558734, 47.413242], [8.558716, 47.413082]]], "type": "MultiLineString"}, "id": "1461", "properties": {}, "type": "Feature"}, {"bbox": [8.52772, 47.371363, 8.527883, 47.371372], "geometry": {"coordinates": [[[8.52772, 47.371372], [8.527774, 47.371368], [8.527829, 47.371365], [8.527883, 47.371363]]], "type": "MultiLineString"}, "id": "1464", "properties": {}, "type": "Feature"}, {"bbox": [8.471575, 47.38778, 8.472465, 47.388734], "geometry": {"coordinates": [[[8.472465, 47.388734], [8.472459, 47.388672], [8.472401, 47.388624], [8.472156, 47.388431], [8.471936, 47.388225], [8.471742, 47.388008], [8.471575, 47.38778]]], "type": "MultiLineString"}, "id": "1465", "properties": {}, "type": "Feature"}, {"bbox": [8.483586, 47.383535, 8.484545, 47.385173], "geometry": {"coordinates": [[[8.484545, 47.385173], [8.484099, 47.384476], [8.483817, 47.384049], [8.483701, 47.383852], [8.483586, 47.383535]]], "type": "MultiLineString"}, "id": "1466", "properties": {}, "type": "Feature"}, {"bbox": [8.51908, 47.392179, 8.519215, 47.392894], "geometry": {"coordinates": [[[8.51908, 47.392179], [8.519155, 47.392197], [8.519215, 47.392894]]], "type": "MultiLineString"}, "id": "1467", "properties": {}, "type": "Feature"}, {"bbox": [8.544437, 47.368271, 8.54479, 47.36851], "geometry": {"coordinates": [[[8.544737, 47.36851], [8.54469, 47.368488], [8.54479, 47.368383], [8.544564, 47.368271], [8.544437, 47.368389]]], "type": "MultiLineString"}, "id": "1468", "properties": {}, "type": "Feature"}, {"bbox": [8.483549, 47.410969, 8.48478, 47.411495], "geometry": {"coordinates": [[[8.48478, 47.410969], [8.484768, 47.410981], [8.484755, 47.410992], [8.48474, 47.411002], [8.484724, 47.411012], [8.484706, 47.41102], [8.484688, 47.411027], [8.483549, 47.411495]]], "type": "MultiLineString"}, "id": "1469", "properties": {}, "type": "Feature"}, {"bbox": [8.508278, 47.356102, 8.509332, 47.357305], "geometry": {"coordinates": [[[8.508278, 47.357305], [8.509332, 47.356102]]], "type": "MultiLineString"}, "id": "1470", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.374076, 8.541694, 47.37442], "geometry": {"coordinates": [[[8.541694, 47.37442], [8.541667, 47.37441], [8.541643, 47.3744], [8.541619, 47.374388], [8.541597, 47.374375], [8.541577, 47.37436], [8.541559, 47.374344], [8.541543, 47.374328], [8.541529, 47.37431], [8.541517, 47.374292], [8.541349, 47.374076]]], "type": "MultiLineString"}, "id": "1472", "properties": {}, "type": "Feature"}, {"bbox": [8.520044, 47.379248, 8.520107, 47.379281], "geometry": {"coordinates": [[[8.520107, 47.379248], [8.520044, 47.379281]]], "type": "MultiLineString"}, "id": "1475", "properties": {}, "type": "Feature"}, {"bbox": [8.503861, 47.394909, 8.504328, 47.39557], "geometry": {"coordinates": [[[8.503861, 47.394909], [8.503916, 47.394982], [8.504328, 47.39557]]], "type": "MultiLineString"}, "id": "1476", "properties": {}, "type": "Feature"}, {"bbox": [8.535198, 47.368911, 8.535751, 47.369095], "geometry": {"coordinates": [[[8.535751, 47.369095], [8.535198, 47.368911]]], "type": "MultiLineString"}, "id": "1478", "properties": {}, "type": "Feature"}, {"bbox": [8.558287, 47.404507, 8.558641, 47.406012], "geometry": {"coordinates": [[[8.558287, 47.404507], [8.558363, 47.404753], [8.558484, 47.405283], [8.558641, 47.406012]]], "type": "MultiLineString"}, "id": "1483", "properties": {}, "type": "Feature"}, {"bbox": [8.513423, 47.331242, 8.513533, 47.331271], "geometry": {"coordinates": [[[8.513533, 47.331242], [8.513423, 47.331271]]], "type": "MultiLineString"}, "id": "1488", "properties": {}, "type": "Feature"}, {"bbox": [8.542724, 47.404853, 8.542753, 47.405092], "geometry": {"coordinates": [[[8.542749, 47.404853], [8.542753, 47.404893], [8.542724, 47.405092]]], "type": "MultiLineString"}, "id": "1489", "properties": {}, "type": "Feature"}, {"bbox": [8.489891, 47.392308, 8.491405, 47.392823], "geometry": {"coordinates": [[[8.489928, 47.392823], [8.489891, 47.392761], [8.491185, 47.392401], [8.491405, 47.392339], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "1493", "properties": {}, "type": "Feature"}, {"bbox": [8.530665, 47.383382, 8.530938, 47.383583], "geometry": {"coordinates": [[[8.530938, 47.383382], [8.530876, 47.38343], [8.530728, 47.383546], [8.530665, 47.383583]]], "type": "MultiLineString"}, "id": "1497", "properties": {}, "type": "Feature"}, {"bbox": [8.544704, 47.370838, 8.545842, 47.371071], "geometry": {"coordinates": [[[8.544704, 47.370838], [8.545414, 47.370926], [8.545842, 47.371071]]], "type": "MultiLineString"}, "id": "1498", "properties": {}, "type": "Feature"}, {"bbox": [8.510536, 47.356979, 8.512183, 47.358774], "geometry": {"coordinates": [[[8.512183, 47.356979], [8.511855, 47.357517], [8.511464, 47.357955], [8.511138, 47.358294], [8.510536, 47.358774]]], "type": "MultiLineString"}, "id": "1499", "properties": {}, "type": "Feature"}, {"bbox": [8.46825, 47.353951, 8.488451, 47.370036], "geometry": {"coordinates": [[[8.46825, 47.370036], [8.468348, 47.369888], [8.468358, 47.369873], [8.468371, 47.369859], [8.468384, 47.369846], [8.4684, 47.369834], [8.468417, 47.369823], [8.468436, 47.369812], [8.468456, 47.369804], [8.468476, 47.369796], [8.468498, 47.369789], [8.468521, 47.369784], [8.468544, 47.369781], [8.468568, 47.369779], [8.468591, 47.369778], [8.468615, 47.369778], [8.468639, 47.369781], [8.469231, 47.369899], [8.469316, 47.369915], [8.469403, 47.369926], [8.469491, 47.369932], [8.469579, 47.369933], [8.469667, 47.369929], [8.469754, 47.36992], [8.46984, 47.369906], [8.470004, 47.369873], [8.470079, 47.369859], [8.472119, 47.369485], [8.472277, 47.369454], [8.472508, 47.369389], [8.473077, 47.369211], [8.473248, 47.369152], [8.473411, 47.369085], [8.473567, 47.369009], [8.473683, 47.368945], [8.473794, 47.368877], [8.4739, 47.368805], [8.474579, 47.36831], [8.47513, 47.367877], [8.475186, 47.367836], [8.475246, 47.367798], [8.475309, 47.367762], [8.475346, 47.367744], [8.475383, 47.367726], [8.475422, 47.36771], [8.475561, 47.367655], [8.476025, 47.367474], [8.477206, 47.367007], [8.478621, 47.366444], [8.479293, 47.366184], [8.479564, 47.366074], [8.479828, 47.365956], [8.480085, 47.365831], [8.480446, 47.365648], [8.480545, 47.365593], [8.480638, 47.365532], [8.480724, 47.365467], [8.480782, 47.365416], [8.480835, 47.365363], [8.480884, 47.365308], [8.481118, 47.365025], [8.481183, 47.364937], [8.481235, 47.364845], [8.481273, 47.36475], [8.481421, 47.364304], [8.48145, 47.36423], [8.48149, 47.364158], [8.481539, 47.364089], [8.481598, 47.364024], [8.481665, 47.363962], [8.48174, 47.363905], [8.481883, 47.363805], [8.481981, 47.363743], [8.482085, 47.363686], [8.482195, 47.363635], [8.482311, 47.36359], [8.48237, 47.363572], [8.482431, 47.363557], [8.482494, 47.363546], [8.482558, 47.363538], [8.482623, 47.363535], [8.482688, 47.363535], [8.482753, 47.363539], [8.482816, 47.363548], [8.482879, 47.36356], [8.48294, 47.363575], [8.482998, 47.363595], [8.483054, 47.363618], [8.48388, 47.363991], [8.48393, 47.364012], [8.483984, 47.364029], [8.484039, 47.364043], [8.484096, 47.364054], [8.484154, 47.364062], [8.484213, 47.364065], [8.484272, 47.364065], [8.484331, 47.364062], [8.484389, 47.364055], [8.484446, 47.364044], [8.484501, 47.36403], [8.484555, 47.364013], [8.48528, 47.363751], [8.485346, 47.363729], [8.485415, 47.363712], [8.485486, 47.363699], [8.485559, 47.36369], [8.485632, 47.363686], [8.485706, 47.363686], [8.485779, 47.36369], [8.486059, 47.363717], [8.486081, 47.363718], [8.486103, 47.363719], [8.486125, 47.363717], [8.486146, 47.363715], [8.486168, 47.363711], [8.486189, 47.363706], [8.486209, 47.3637], [8.486228, 47.363693], [8.486246, 47.363685], [8.486263, 47.363675], [8.486279, 47.363665], [8.486293, 47.363654], [8.486306, 47.363641], [8.486318, 47.363629], [8.486327, 47.363615], [8.486335, 47.363601], [8.486342, 47.363587], [8.486346, 47.363572], [8.486348, 47.363558], [8.486349, 47.363543], [8.486348, 47.363528], [8.486344, 47.363513], [8.486339, 47.363498], [8.486332, 47.363484], [8.486324, 47.36347], [8.486313, 47.363457], [8.486301, 47.363445], [8.486288, 47.363433], [8.486247, 47.363404], [8.486202, 47.363377], [8.486154, 47.363353], [8.486102, 47.363333], [8.485779, 47.36322], [8.485688, 47.363186], [8.485598, 47.36315], [8.485511, 47.36311], [8.485398, 47.363057], [8.485381, 47.363048], [8.485366, 47.363038], [8.485351, 47.363027], [8.485338, 47.363016], [8.485327, 47.363003], [8.485317, 47.36299], [8.485308, 47.362977], [8.485302, 47.362963], [8.485297, 47.362949], [8.485295, 47.362934], [8.485294, 47.36292], [8.485295, 47.362905], [8.485298, 47.362891], [8.485302, 47.362876], [8.485309, 47.362863], [8.485317, 47.362849], [8.485327, 47.362836], [8.485339, 47.362824], [8.485352, 47.362812], [8.485367, 47.362802], [8.485513, 47.362704], [8.485553, 47.362674], [8.485589, 47.362641], [8.485621, 47.362606], [8.485726, 47.362472], [8.485758, 47.362436], [8.485794, 47.362401], [8.485835, 47.36237], [8.485881, 47.36234], [8.48593, 47.362314], [8.486457, 47.362058], [8.486525, 47.362022], [8.486588, 47.361982], [8.486646, 47.361939], [8.486698, 47.361892], [8.486744, 47.361843], [8.486783, 47.361791], [8.486816, 47.361737], [8.486842, 47.361681], [8.486861, 47.361624], [8.486905, 47.361454], [8.486983, 47.361124], [8.486997, 47.361073], [8.487015, 47.361022], [8.487038, 47.360972], [8.487215, 47.36065], [8.487228, 47.360622], [8.487236, 47.360593], [8.487241, 47.360564], [8.487241, 47.360534], [8.487237, 47.360482], [8.487229, 47.360429], [8.487218, 47.360377], [8.487181, 47.36023], [8.487174, 47.360144], [8.487209, 47.35983], [8.487214, 47.359721], [8.487203, 47.359612], [8.487178, 47.359505], [8.487137, 47.359399], [8.487082, 47.359297], [8.486873, 47.358961], [8.486845, 47.35891], [8.486825, 47.358858], [8.48681, 47.358805], [8.486803, 47.358752], [8.486803, 47.358698], [8.486809, 47.358644], [8.486847, 47.358444], [8.486964, 47.358045], [8.486991, 47.35793], [8.487005, 47.357814], [8.487007, 47.357697], [8.487001, 47.357564], [8.487003, 47.357477], [8.487014, 47.357391], [8.487036, 47.357306], [8.487067, 47.357222], [8.487101, 47.357145], [8.487136, 47.357069], [8.487173, 47.356994], [8.487271, 47.356825], [8.487393, 47.356665], [8.487539, 47.356513], [8.487569, 47.356488], [8.487602, 47.356465], [8.487638, 47.356443], [8.487677, 47.356425], [8.487718, 47.356408], [8.487761, 47.356394], [8.487806, 47.356383], [8.487852, 47.356375], [8.487899, 47.356369], [8.487947, 47.356367], [8.487994, 47.356367], [8.488174, 47.356374], [8.488197, 47.356375], [8.48822, 47.356373], [8.488242, 47.356371], [8.488265, 47.356367], [8.488286, 47.356362], [8.488307, 47.356356], [8.488327, 47.356348], [8.488346, 47.356339], [8.488363, 47.356329], [8.48838, 47.356319], [8.488395, 47.356307], [8.488408, 47.356294], [8.48842, 47.356281], [8.488429, 47.356267], [8.488438, 47.356253], [8.488444, 47.356238], [8.488448, 47.356222], [8.48845, 47.356207], [8.488451, 47.356191], [8.488449, 47.356176], [8.488445, 47.356161], [8.48844, 47.356146], [8.488432, 47.356131], [8.488423, 47.356117], [8.488412, 47.356103], [8.488399, 47.35609], [8.488384, 47.356078], [8.488368, 47.356067], [8.488351, 47.356057], [8.488333, 47.356048], [8.488313, 47.35604], [8.488293, 47.356033], [8.488271, 47.356028], [8.487852, 47.355934], [8.487818, 47.355925], [8.487786, 47.355914], [8.487756, 47.355901], [8.487727, 47.355887], [8.4877, 47.355871], [8.487676, 47.355853], [8.487654, 47.355834], [8.487634, 47.355813], [8.48745, 47.355598], [8.487398, 47.355542], [8.487339, 47.35549], [8.487274, 47.355442], [8.487203, 47.355397], [8.48717, 47.35538], [8.487135, 47.355365], [8.487098, 47.355352], [8.48706, 47.355342], [8.48702, 47.355334], [8.48698, 47.355328], [8.486939, 47.355325], [8.486897, 47.355325], [8.486856, 47.355327], [8.486816, 47.355331], [8.486776, 47.355338], [8.486623, 47.35537], [8.486603, 47.355374], [8.486583, 47.355376], [8.486563, 47.355377], [8.486542, 47.355377], [8.486522, 47.355376], [8.486502, 47.355374], [8.486482, 47.35537], [8.486462, 47.355366], [8.486444, 47.35536], [8.486426, 47.355353], [8.486409, 47.355345], [8.486393, 47.355336], [8.486378, 47.355327], [8.486365, 47.355316], [8.486352, 47.355305], [8.486342, 47.355293], [8.486333, 47.35528], [8.486325, 47.355267], [8.486319, 47.355254], [8.486315, 47.35524], [8.486312, 47.355226], [8.486312, 47.355212], [8.486313, 47.355198], [8.486316, 47.355184], [8.486321, 47.35517], [8.486327, 47.355156], [8.486335, 47.355143], [8.486345, 47.355131], [8.486356, 47.355119], [8.486372, 47.355105], [8.48639, 47.355092], [8.486409, 47.35508], [8.48643, 47.35507], [8.486452, 47.355061], [8.486475, 47.355053], [8.486499, 47.355046], [8.486523, 47.355041], [8.486549, 47.355037], [8.486574, 47.355035], [8.4866, 47.355034], [8.486626, 47.355035], [8.486828, 47.355048], [8.486869, 47.355049], [8.486911, 47.355048], [8.486953, 47.355044], [8.486994, 47.355038], [8.487034, 47.355029], [8.487072, 47.355018], [8.487109, 47.355005], [8.487144, 47.354989], [8.487177, 47.354972], [8.48729, 47.3549], [8.487394, 47.354823], [8.487488, 47.35474], [8.487573, 47.354652], [8.487599, 47.35462], [8.48762, 47.354586], [8.487637, 47.354551], [8.48765, 47.354515], [8.487658, 47.354478], [8.487661, 47.354442], [8.487659, 47.354405], [8.487653, 47.354368], [8.487642, 47.354332], [8.487626, 47.354297], [8.487606, 47.354263], [8.487581, 47.35423], [8.487552, 47.354199], [8.48752, 47.354169], [8.487483, 47.354142], [8.487444, 47.354117], [8.487401, 47.354094], [8.487355, 47.354074], [8.487307, 47.354057], [8.487257, 47.354043], [8.487206, 47.354031], [8.487127, 47.354017], [8.487115, 47.354015], [8.487103, 47.354011], [8.487091, 47.354007], [8.48708, 47.354003], [8.48707, 47.353997], [8.487061, 47.353991], [8.487052, 47.353985], [8.487044, 47.353978], [8.487015, 47.353951]]], "type": "MultiLineString"}, "id": "1501", "properties": {}, "type": "Feature"}, {"bbox": [8.536561, 47.414423, 8.537926, 47.414939], "geometry": {"coordinates": [[[8.537926, 47.414842], [8.537883, 47.414423], [8.536561, 47.414494], [8.536612, 47.414939]]], "type": "MultiLineString"}, "id": "1503", "properties": {}, "type": "Feature"}, {"bbox": [8.542507, 47.392547, 8.543562, 47.393045], "geometry": {"coordinates": [[[8.543562, 47.392547], [8.54328, 47.392662], [8.54277, 47.392905], [8.542507, 47.393045]]], "type": "MultiLineString"}, "id": "1504", "properties": {}, "type": "Feature"}, {"bbox": [8.518882, 47.332826, 8.519358, 47.333065], "geometry": {"coordinates": [[[8.518882, 47.333065], [8.519358, 47.332826]]], "type": "MultiLineString"}, "id": "1507", "properties": {}, "type": "Feature"}, {"bbox": [8.552423, 47.355101, 8.553051, 47.355324], "geometry": {"coordinates": [[[8.552423, 47.355101], [8.553051, 47.355324]]], "type": "MultiLineString"}, "id": "1508", "properties": {}, "type": "Feature"}, {"bbox": [8.544665, 47.372488, 8.545238, 47.373293], "geometry": {"coordinates": [[[8.545238, 47.372488], [8.545153, 47.372783], [8.545027, 47.372929], [8.544665, 47.373293]]], "type": "MultiLineString"}, "id": "1512", "properties": {}, "type": "Feature"}, {"bbox": [8.516978, 47.423793, 8.517344, 47.425237], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.517129, 47.424022], [8.51719, 47.424145], [8.517279, 47.42436], [8.517314, 47.424454], [8.517336, 47.42455], [8.517344, 47.424647], [8.517339, 47.424744], [8.51732, 47.42484], [8.517216, 47.425237]]], "type": "MultiLineString"}, "id": "1517", "properties": {}, "type": "Feature"}, {"bbox": [8.514666, 47.335173, 8.515203, 47.335957], "geometry": {"coordinates": [[[8.514757, 47.335173], [8.514666, 47.335486], [8.51484, 47.335641], [8.514981, 47.335689], [8.515203, 47.335957]]], "type": "MultiLineString"}, "id": "1519", "properties": {}, "type": "Feature"}, {"bbox": [8.546589, 47.384193, 8.546953, 47.384592], "geometry": {"coordinates": [[[8.546589, 47.384592], [8.546757, 47.38441], [8.546953, 47.384193]]], "type": "MultiLineString"}, "id": "1520", "properties": {}, "type": "Feature"}, {"bbox": [8.498893, 47.423723, 8.49895, 47.42382], "geometry": {"coordinates": [[[8.49895, 47.42382], [8.498893, 47.423723]]], "type": "MultiLineString"}, "id": "1528", "properties": {}, "type": "Feature"}, {"bbox": [8.53133, 47.379512, 8.532217, 47.380987], "geometry": {"coordinates": [[[8.53133, 47.379512], [8.532206, 47.380899], [8.532217, 47.380987]]], "type": "MultiLineString"}, "id": "1530", "properties": {}, "type": "Feature"}, {"bbox": [8.563508, 47.376926, 8.565577, 47.377381], "geometry": {"coordinates": [[[8.563508, 47.377381], [8.565577, 47.376926]]], "type": "MultiLineString"}, "id": "1531", "properties": {}, "type": "Feature"}, {"bbox": [8.516003, 47.358226, 8.51634, 47.358712], "geometry": {"coordinates": [[[8.516003, 47.358712], [8.51634, 47.358226]]], "type": "MultiLineString"}, "id": "1534", "properties": {}, "type": "Feature"}, {"bbox": [8.576022, 47.409717, 8.576357, 47.410337], "geometry": {"coordinates": [[[8.576022, 47.409717], [8.576357, 47.410337]]], "type": "MultiLineString"}, "id": "1538", "properties": {}, "type": "Feature"}, {"bbox": [8.540148, 47.373343, 8.540248, 47.374022], "geometry": {"coordinates": [[[8.540248, 47.373343], [8.54019, 47.373567], [8.540157, 47.373794], [8.540148, 47.374022]]], "type": "MultiLineString"}, "id": "1539", "properties": {}, "type": "Feature"}, {"bbox": [8.547546, 47.366644, 8.548377, 47.36712], "geometry": {"coordinates": [[[8.547546, 47.366644], [8.547741, 47.366755], [8.548377, 47.36712]]], "type": "MultiLineString"}, "id": "1542", "properties": {}, "type": "Feature"}, {"bbox": [8.54466, 47.368593, 8.545304, 47.368891], "geometry": {"coordinates": [[[8.54466, 47.368593], [8.545087, 47.368776], [8.545304, 47.368891]]], "type": "MultiLineString"}, "id": "1545", "properties": {}, "type": "Feature"}, {"bbox": [8.495743, 47.396834, 8.496008, 47.39713], "geometry": {"coordinates": [[[8.496008, 47.39713], [8.495743, 47.396834]]], "type": "MultiLineString"}, "id": "1547", "properties": {}, "type": "Feature"}, {"bbox": [8.51274, 47.393476, 8.513107, 47.394196], "geometry": {"coordinates": [[[8.51274, 47.393476], [8.513107, 47.394196]]], "type": "MultiLineString"}, "id": "1548", "properties": {}, "type": "Feature"}, {"bbox": [8.53968, 47.389524, 8.540084, 47.389588], "geometry": {"coordinates": [[[8.53968, 47.389524], [8.540084, 47.389588]]], "type": "MultiLineString"}, "id": "1552", "properties": {}, "type": "Feature"}, {"bbox": [8.53065, 47.348227, 8.530812, 47.348575], "geometry": {"coordinates": [[[8.53065, 47.348227], [8.530762, 47.348563], [8.530812, 47.348575]]], "type": "MultiLineString"}, "id": "1554", "properties": {}, "type": "Feature"}, {"bbox": [8.543505, 47.369123, 8.544462, 47.369628], "geometry": {"coordinates": [[[8.543505, 47.369123], [8.543843, 47.369268], [8.544243, 47.369493], [8.544462, 47.369628]]], "type": "MultiLineString"}, "id": "1555", "properties": {}, "type": "Feature"}, {"bbox": [8.542859, 47.373723, 8.543695, 47.373782], "geometry": {"coordinates": [[[8.542859, 47.373782], [8.543695, 47.373723]]], "type": "MultiLineString"}, "id": "1557", "properties": {}, "type": "Feature"}, {"bbox": [8.547765, 47.370867, 8.548219, 47.370961], "geometry": {"coordinates": [[[8.548219, 47.370893], [8.547871, 47.370961], [8.547765, 47.370867]]], "type": "MultiLineString"}, "id": "1558", "properties": {}, "type": "Feature"}, {"bbox": [8.538337, 47.386702, 8.538511, 47.387008], "geometry": {"coordinates": [[[8.538337, 47.387008], [8.538511, 47.386702]]], "type": "MultiLineString"}, "id": "1560", "properties": {}, "type": "Feature"}, {"bbox": [8.569589, 47.361659, 8.57111, 47.362063], "geometry": {"coordinates": [[[8.569589, 47.361659], [8.569687, 47.3617], [8.570564, 47.362063], [8.57111, 47.361778]]], "type": "MultiLineString"}, "id": "1564", "properties": {}, "type": "Feature"}, {"bbox": [8.495041, 47.367865, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.495664, 47.368062], [8.495551, 47.368046], [8.49544, 47.368023], [8.495333, 47.367992], [8.495231, 47.367956], [8.495133, 47.367913], [8.495041, 47.367865]]], "type": "MultiLineString"}, "id": "1565", "properties": {}, "type": "Feature"}, {"bbox": [8.555427, 47.375278, 8.556583, 47.375932], "geometry": {"coordinates": [[[8.555427, 47.375278], [8.555523, 47.375314], [8.556262, 47.375725], [8.556583, 47.375932]]], "type": "MultiLineString"}, "id": "1567", "properties": {}, "type": "Feature"}, {"bbox": [8.542469, 47.385591, 8.542945, 47.386178], "geometry": {"coordinates": [[[8.542945, 47.385591], [8.542861, 47.385699], [8.542469, 47.386178]]], "type": "MultiLineString"}, "id": "1568", "properties": {}, "type": "Feature"}, {"bbox": [8.539621, 47.397542, 8.540047, 47.397735], "geometry": {"coordinates": [[[8.539621, 47.397542], [8.540047, 47.397735]]], "type": "MultiLineString"}, "id": "1572", "properties": {}, "type": "Feature"}, {"bbox": [8.508217, 47.40109, 8.508793, 47.401407], "geometry": {"coordinates": [[[8.508217, 47.40109], [8.508431, 47.401217], [8.508793, 47.401407]]], "type": "MultiLineString"}, "id": "1573", "properties": {}, "type": "Feature"}, {"bbox": [8.527883, 47.371063, 8.528614, 47.371363], "geometry": {"coordinates": [[[8.528614, 47.371315], [8.528485, 47.371323], [8.528181, 47.371063], [8.528129, 47.371066], [8.527883, 47.371363]]], "type": "MultiLineString"}, "id": "1574", "properties": {}, "type": "Feature"}, {"bbox": [8.556614, 47.35553, 8.55758, 47.355947], "geometry": {"coordinates": [[[8.556614, 47.35553], [8.55675, 47.355541], [8.557484, 47.355912], [8.55758, 47.355947]]], "type": "MultiLineString"}, "id": "1577", "properties": {}, "type": "Feature"}, {"bbox": [8.52723, 47.389317, 8.5279, 47.39051], "geometry": {"coordinates": [[[8.52723, 47.389317], [8.527665, 47.390093], [8.527847, 47.390421], [8.5279, 47.39051]]], "type": "MultiLineString"}, "id": "1578", "properties": {}, "type": "Feature"}, {"bbox": [8.535751, 47.369095, 8.536085, 47.369261], "geometry": {"coordinates": [[[8.536085, 47.369261], [8.535907, 47.369147], [8.535751, 47.369095]]], "type": "MultiLineString"}, "id": "1584", "properties": {}, "type": "Feature"}, {"bbox": [8.512652, 47.396403, 8.512737, 47.397716], "geometry": {"coordinates": [[[8.512675, 47.396403], [8.512737, 47.396932], [8.512693, 47.396992], [8.512652, 47.397027], [8.512675, 47.397716]]], "type": "MultiLineString"}, "id": "1585", "properties": {}, "type": "Feature"}, {"bbox": [8.57327, 47.351457, 8.598877, 47.358162], "geometry": {"coordinates": [[[8.57327, 47.358162], [8.573416, 47.357981], [8.573529, 47.357853], [8.573685, 47.357723], [8.574029, 47.35748], [8.574114, 47.357418], [8.574154, 47.357271], [8.574169, 47.357251], [8.574186, 47.357232], [8.574205, 47.357214], [8.574227, 47.357198], [8.574251, 47.357183], [8.574276, 47.357169], [8.574304, 47.357157], [8.574368, 47.357128], [8.574429, 47.357095], [8.574484, 47.357059], [8.574519, 47.357031], [8.57455, 47.357001], [8.574577, 47.35697], [8.5746, 47.356937], [8.574755, 47.356711], [8.574777, 47.356686], [8.574803, 47.356662], [8.574831, 47.356639], [8.574863, 47.356619], [8.574897, 47.3566], [8.574932, 47.356588], [8.574966, 47.356573], [8.574997, 47.356557], [8.575026, 47.356539], [8.575053, 47.356519], [8.575077, 47.356497], [8.575098, 47.356474], [8.575115, 47.35645], [8.57514, 47.356436], [8.575164, 47.356421], [8.575185, 47.356405], [8.575203, 47.356387], [8.57522, 47.356368], [8.575234, 47.356349], [8.575245, 47.356328], [8.575253, 47.356307], [8.575303, 47.35612], [8.575305, 47.356058], [8.575299, 47.355997], [8.575284, 47.355936], [8.57527, 47.355889], [8.575263, 47.355841], [8.575262, 47.355792], [8.575268, 47.355744], [8.57528, 47.355696], [8.57529, 47.355682], [8.575301, 47.355668], [8.575314, 47.355655], [8.575328, 47.355642], [8.575344, 47.355631], [8.575362, 47.355621], [8.57538, 47.355611], [8.5754, 47.355603], [8.575421, 47.355596], [8.575443, 47.355591], [8.575465, 47.355586], [8.575488, 47.355583], [8.575511, 47.355581], [8.575534, 47.355581], [8.575557, 47.355582], [8.575618, 47.355588], [8.575679, 47.35559], [8.57574, 47.355589], [8.5758, 47.355584], [8.57586, 47.355575], [8.576107, 47.355546], [8.576116, 47.355545], [8.576125, 47.355544], [8.576133, 47.355542], [8.576141, 47.355539], [8.576149, 47.355537], [8.576157, 47.355533], [8.576164, 47.35553], [8.57617, 47.355526], [8.576176, 47.355521], [8.576182, 47.355516], [8.576187, 47.355511], [8.576191, 47.355506], [8.57622, 47.355425], [8.576259, 47.355378], [8.576305, 47.35526], [8.576346, 47.355177], [8.576357, 47.355158], [8.57637, 47.355141], [8.576385, 47.355124], [8.576402, 47.355108], [8.576421, 47.355094], [8.576442, 47.35508], [8.576465, 47.355068], [8.576467, 47.355067], [8.576469, 47.355067], [8.57647, 47.355066], [8.576472, 47.355066], [8.576474, 47.355066], [8.576476, 47.355065], [8.576478, 47.355065], [8.57648, 47.355065], [8.576482, 47.355066], [8.576484, 47.355066], [8.576485, 47.355066], [8.576487, 47.355067], [8.576513, 47.355074], [8.576528, 47.355079], [8.576543, 47.355084], [8.576558, 47.355089], [8.576644, 47.35512], [8.576664, 47.355127], [8.576685, 47.355132], [8.576706, 47.355136], [8.576724, 47.355139], [8.576741, 47.355142], [8.576758, 47.355145], [8.57678, 47.355148], [8.576803, 47.35515], [8.576825, 47.35515], [8.576848, 47.355149], [8.57687, 47.355147], [8.576892, 47.355143], [8.576914, 47.355138], [8.577044, 47.355104], [8.577068, 47.355097], [8.57709, 47.355089], [8.577112, 47.355081], [8.577178, 47.355053], [8.57719, 47.355048], [8.577202, 47.355042], [8.577214, 47.355036], [8.577284, 47.354997], [8.577308, 47.354984], [8.577334, 47.354971], [8.57736, 47.35496], [8.577376, 47.354953], [8.577393, 47.354948], [8.57741, 47.354944], [8.577427, 47.354941], [8.577445, 47.354938], [8.577463, 47.354937], [8.577482, 47.354937], [8.5775, 47.354938], [8.5775, 47.354938], [8.577516, 47.35494], [8.577532, 47.354942], [8.577547, 47.354945], [8.577563, 47.35495], [8.577563, 47.35495], [8.577634, 47.354972], [8.577671, 47.354984], [8.57774, 47.355006], [8.57774, 47.355006], [8.577764, 47.355013], [8.57779, 47.355018], [8.577816, 47.355021], [8.577841, 47.355024], [8.577866, 47.355025], [8.577892, 47.355025], [8.577917, 47.355023], [8.577942, 47.35502], [8.577964, 47.355017], [8.577986, 47.355012], [8.578007, 47.355007], [8.578021, 47.355002], [8.578034, 47.354997], [8.578047, 47.354991], [8.578059, 47.354984], [8.57807, 47.354977], [8.578104, 47.354951], [8.578138, 47.354924], [8.57817, 47.354897], [8.578183, 47.354884], [8.578195, 47.354871], [8.578205, 47.354857], [8.578214, 47.354843], [8.578221, 47.354828], [8.578233, 47.354798], [8.578234, 47.354795], [8.578242, 47.35477], [8.578247, 47.354745], [8.578248, 47.35472], [8.578246, 47.354695], [8.578245, 47.354692], [8.578245, 47.35469], [8.578245, 47.354688], [8.578245, 47.354677], [8.578246, 47.354667], [8.578248, 47.354656], [8.578252, 47.354646], [8.578252, 47.354646], [8.578252, 47.354646], [8.578262, 47.354624], [8.578275, 47.354604], [8.57829, 47.354584], [8.578308, 47.354565], [8.578319, 47.354553], [8.578329, 47.35454], [8.578337, 47.354527], [8.57837, 47.354468], [8.578371, 47.354465], [8.578373, 47.354463], [8.578374, 47.354461], [8.578377, 47.35446], [8.578379, 47.354458], [8.578381, 47.354456], [8.578384, 47.354455], [8.578387, 47.354454], [8.57839, 47.354453], [8.578393, 47.354452], [8.578396, 47.354451], [8.578396, 47.354451], [8.578429, 47.354445], [8.578462, 47.35444], [8.578495, 47.354435], [8.578565, 47.354426], [8.578635, 47.354415], [8.578704, 47.354404], [8.578726, 47.354401], [8.578749, 47.354397], [8.578771, 47.354394], [8.578801, 47.35439], [8.578831, 47.354385], [8.578861, 47.354379], [8.579011, 47.354359], [8.579091, 47.354341], [8.579091, 47.354341], [8.579148, 47.354322], [8.579148, 47.354322], [8.579166, 47.354315], [8.579166, 47.354315], [8.579217, 47.354293], [8.579268, 47.35427], [8.579318, 47.354246], [8.579336, 47.354237], [8.579354, 47.354229], [8.579372, 47.35422], [8.579429, 47.35419], [8.579482, 47.354158], [8.579531, 47.354122], [8.579552, 47.354104], [8.579571, 47.354085], [8.579587, 47.354065], [8.579618, 47.354019], [8.579624, 47.354011], [8.57963, 47.354002], [8.579636, 47.353993], [8.579641, 47.353984], [8.579645, 47.353974], [8.579649, 47.353964], [8.579651, 47.353953], [8.579651, 47.353943], [8.579653, 47.353927], [8.579657, 47.35391], [8.579663, 47.353894], [8.579671, 47.353879], [8.579677, 47.353867], [8.579683, 47.353856], [8.579688, 47.353844], [8.579697, 47.353829], [8.579708, 47.353813], [8.57972, 47.353799], [8.579734, 47.353785], [8.57975, 47.353772], [8.579767, 47.35376], [8.579777, 47.353754], [8.579787, 47.353749], [8.579798, 47.353745], [8.57981, 47.353741], [8.579821, 47.353738], [8.579834, 47.353735], [8.579846, 47.353734], [8.579859, 47.353733], [8.579871, 47.353733], [8.579892, 47.353736], [8.579913, 47.353739], [8.579935, 47.353741], [8.579989, 47.353747], [8.580041, 47.353756], [8.580093, 47.353768], [8.58011, 47.353772], [8.580127, 47.353776], [8.580145, 47.353779], [8.580162, 47.35378], [8.580181, 47.353781], [8.580199, 47.35378], [8.580216, 47.353778], [8.580233, 47.353776], [8.580249, 47.353773], [8.580265, 47.35377], [8.580277, 47.353768], [8.58029, 47.353766], [8.580302, 47.353764], [8.580324, 47.35376], [8.580347, 47.353757], [8.580369, 47.353754], [8.580396, 47.35375], [8.580421, 47.353745], [8.580446, 47.353739], [8.580471, 47.353731], [8.580514, 47.353715], [8.580555, 47.353697], [8.580594, 47.353677], [8.58061, 47.353669], [8.580627, 47.353662], [8.580645, 47.353657], [8.580663, 47.353652], [8.580685, 47.353648], [8.580707, 47.353643], [8.580729, 47.353639], [8.580747, 47.353635], [8.580764, 47.353629], [8.580781, 47.353623], [8.580796, 47.353616], [8.58081, 47.353608], [8.580832, 47.353595], [8.580855, 47.353584], [8.580879, 47.353574], [8.580905, 47.353565], [8.580912, 47.353563], [8.580919, 47.353562], [8.580926, 47.353561], [8.580933, 47.35356], [8.58094, 47.35356], [8.580948, 47.35356], [8.580955, 47.353561], [8.580962, 47.353562], [8.580969, 47.353563], [8.580976, 47.353565], [8.580983, 47.353568], [8.580989, 47.35357], [8.580995, 47.353573], [8.581, 47.353576], [8.581279, 47.353771], [8.581302, 47.353786], [8.581327, 47.3538], [8.581353, 47.353812], [8.581381, 47.353823], [8.581409, 47.353833], [8.581454, 47.353846], [8.58147, 47.35385], [8.581488, 47.353853], [8.581505, 47.353856], [8.581523, 47.353857], [8.581541, 47.353857], [8.581559, 47.353857], [8.581577, 47.353855], [8.581594, 47.353852], [8.581611, 47.353848], [8.581628, 47.353844], [8.581643, 47.353838], [8.581672, 47.353828], [8.5817, 47.353818], [8.58173, 47.35381], [8.581748, 47.353804], [8.581766, 47.353797], [8.581782, 47.353789], [8.581798, 47.353781], [8.581812, 47.353771], [8.581826, 47.35376], [8.581837, 47.353749], [8.581847, 47.353737], [8.581856, 47.353725], [8.581863, 47.353712], [8.581868, 47.353698], [8.581871, 47.353685], [8.581873, 47.353671], [8.581873, 47.353657], [8.581872, 47.353643], [8.581872, 47.353629], [8.581873, 47.353615], [8.581874, 47.353607], [8.581877, 47.353599], [8.58188, 47.353592], [8.581884, 47.353585], [8.58189, 47.353578], [8.581896, 47.353571], [8.581903, 47.353565], [8.581919, 47.353553], [8.581936, 47.353541], [8.581956, 47.353531], [8.581976, 47.353523], [8.581997, 47.353515], [8.58203, 47.353507], [8.582064, 47.353501], [8.582099, 47.353497], [8.582134, 47.353495], [8.582169, 47.353495], [8.582204, 47.353497], [8.582239, 47.353501], [8.582273, 47.353507], [8.582293, 47.353509], [8.582314, 47.353511], [8.582334, 47.353512], [8.582355, 47.353511], [8.582375, 47.353509], [8.582396, 47.353506], [8.582415, 47.353502], [8.582435, 47.353497], [8.58259, 47.353444], [8.582637, 47.353418], [8.582681, 47.35339], [8.582722, 47.35336], [8.582775, 47.353319], [8.582822, 47.353275], [8.582862, 47.353228], [8.582896, 47.353178], [8.582914, 47.353153], [8.582934, 47.353128], [8.582958, 47.353105], [8.582984, 47.353083], [8.583013, 47.353063], [8.583048, 47.353042], [8.583085, 47.353022], [8.583139, 47.352994], [8.583166, 47.352982], [8.583194, 47.352971], [8.583224, 47.352962], [8.583254, 47.352955], [8.583286, 47.352949], [8.583317, 47.352945], [8.58339, 47.352943], [8.583419, 47.352942], [8.583509, 47.352952], [8.583583, 47.352951], [8.583623, 47.352955], [8.583662, 47.352959], [8.583701, 47.352965], [8.583735, 47.352972], [8.58377, 47.352978], [8.583805, 47.352984], [8.583842, 47.352988], [8.583879, 47.352992], [8.583915, 47.352997], [8.583954, 47.353003], [8.583992, 47.353011], [8.584029, 47.353022], [8.584064, 47.353034], [8.584091, 47.353046], [8.584117, 47.353059], [8.584142, 47.353073], [8.584152, 47.353079], [8.584164, 47.353084], [8.584176, 47.353088], [8.584189, 47.353091], [8.584202, 47.353094], [8.584215, 47.353095], [8.584228, 47.353096], [8.584242, 47.353096], [8.584305, 47.353095], [8.584592, 47.353098], [8.5846, 47.353098], [8.584608, 47.353098], [8.584616, 47.353098], [8.584624, 47.353097], [8.584631, 47.353096], [8.584639, 47.353094], [8.584646, 47.353092], [8.584653, 47.35309], [8.58466, 47.353087], [8.584699, 47.35307], [8.584708, 47.353066], [8.584717, 47.353061], [8.584725, 47.353055], [8.584733, 47.353049], [8.584739, 47.353043], [8.584767, 47.353007], [8.584771, 47.352998], [8.584776, 47.352988], [8.584782, 47.35298], [8.584789, 47.352971], [8.584798, 47.352964], [8.584807, 47.352956], [8.584817, 47.352949], [8.584828, 47.352943], [8.58502, 47.352846], [8.58503, 47.352841], [8.585041, 47.352837], [8.585052, 47.352834], [8.585063, 47.352831], [8.585074, 47.352829], [8.585086, 47.352827], [8.585098, 47.352826], [8.58511, 47.352826], [8.585117, 47.352826], [8.585123, 47.352825], [8.585129, 47.352824], [8.585135, 47.352822], [8.585141, 47.35282], [8.585147, 47.352818], [8.585152, 47.352815], [8.585157, 47.352813], [8.585162, 47.352809], [8.585166, 47.352806], [8.58517, 47.352802], [8.585185, 47.35278], [8.585203, 47.352758], [8.585224, 47.352737], [8.585248, 47.352718], [8.585273, 47.352701], [8.585302, 47.352684], [8.585332, 47.35267], [8.585349, 47.352661], [8.585367, 47.352653], [8.585386, 47.352646], [8.585406, 47.35264], [8.585426, 47.352636], [8.585447, 47.352632], [8.585469, 47.35263], [8.58549, 47.352629], [8.585575, 47.352626], [8.585588, 47.352628], [8.585601, 47.352631], [8.585614, 47.352634], [8.585626, 47.352639], [8.585638, 47.352643], [8.585649, 47.352649], [8.585659, 47.352655], [8.585668, 47.352662], [8.585676, 47.352669], [8.585684, 47.352677], [8.58569, 47.352685], [8.585695, 47.352693], [8.5857, 47.352702], [8.585731, 47.352785], [8.585741, 47.352802], [8.585754, 47.352817], [8.585768, 47.352832], [8.585783, 47.352846], [8.585801, 47.352859], [8.58582, 47.352871], [8.58584, 47.352882], [8.585862, 47.352892], [8.585966, 47.352934], [8.585991, 47.352945], [8.586018, 47.352955], [8.586046, 47.352963], [8.586075, 47.352969], [8.586104, 47.352974], [8.586135, 47.352976], [8.586165, 47.352977], [8.586663, 47.352966], [8.586896, 47.352934], [8.586985, 47.352923], [8.587074, 47.352908], [8.587161, 47.352891], [8.587199, 47.352883], [8.587239, 47.352878], [8.587279, 47.352875], [8.587319, 47.352875], [8.587359, 47.352876], [8.587383, 47.352878], [8.587406, 47.352882], [8.587429, 47.352887], [8.587451, 47.352894], [8.587473, 47.352901], [8.587518, 47.352921], [8.58756, 47.352943], [8.587601, 47.352967], [8.587678, 47.353011], [8.58776, 47.353051], [8.587849, 47.353085], [8.587868, 47.353091], [8.587887, 47.353095], [8.587908, 47.353099], [8.587928, 47.353101], [8.587949, 47.353101], [8.587949, 47.353101], [8.587949, 47.353101], [8.587981, 47.353101], [8.588013, 47.353099], [8.588045, 47.353097], [8.588077, 47.353093], [8.588108, 47.353087], [8.588139, 47.35308], [8.588168, 47.35307], [8.588196, 47.353059], [8.588222, 47.353046], [8.588246, 47.353031], [8.588288, 47.353005], [8.588332, 47.352979], [8.588376, 47.352955], [8.588392, 47.352948], [8.588408, 47.352941], [8.588425, 47.352936], [8.588443, 47.352931], [8.588461, 47.352928], [8.588479, 47.352926], [8.588498, 47.352924], [8.588517, 47.352924], [8.588551, 47.352925], [8.588584, 47.352927], [8.588618, 47.35293], [8.588642, 47.352931], [8.588667, 47.352931], [8.588692, 47.35293], [8.588717, 47.352927], [8.588741, 47.352924], [8.588791, 47.352914], [8.588841, 47.352902], [8.588889, 47.352889], [8.588909, 47.352884], [8.58893, 47.35288], [8.588951, 47.352878], [8.588972, 47.352877], [8.588994, 47.352876], [8.589008, 47.352877], [8.589022, 47.352878], [8.589036, 47.352878], [8.589067, 47.352881], [8.589099, 47.352884], [8.58913, 47.352888], [8.589218, 47.352899], [8.589306, 47.352909], [8.589394, 47.352918], [8.589471, 47.352926], [8.589548, 47.352934], [8.589624, 47.352943], [8.589636, 47.352944], [8.589648, 47.352944], [8.58966, 47.352944], [8.589672, 47.352943], [8.589684, 47.352942], [8.589696, 47.352939], [8.589707, 47.352937], [8.589718, 47.352933], [8.589728, 47.352929], [8.589758, 47.352917], [8.58979, 47.352907], [8.589822, 47.352899], [8.589859, 47.352893], [8.589897, 47.352888], [8.589935, 47.352885], [8.589969, 47.352884], [8.590003, 47.352884], [8.590037, 47.352884], [8.590061, 47.352885], [8.590086, 47.352886], [8.59011, 47.352888], [8.59011, 47.352888], [8.590121, 47.352888], [8.590132, 47.352887], [8.590142, 47.352886], [8.590153, 47.352885], [8.590163, 47.352882], [8.590173, 47.352879], [8.590189, 47.352874], [8.590205, 47.352868], [8.59022, 47.352862], [8.590243, 47.352853], [8.590267, 47.352844], [8.590291, 47.352836], [8.590306, 47.352831], [8.590322, 47.352826], [8.590338, 47.352821], [8.590371, 47.352822], [8.590404, 47.352825], [8.590436, 47.352829], [8.590468, 47.352836], [8.590499, 47.352844], [8.590529, 47.352854], [8.590537, 47.352857], [8.590545, 47.352861], [8.590552, 47.352865], [8.590559, 47.352869], [8.590565, 47.352874], [8.590571, 47.35288], [8.590576, 47.352885], [8.59058, 47.352891], [8.590584, 47.352897], [8.590586, 47.352904], [8.590588, 47.35291], [8.590615, 47.352966], [8.590644, 47.353021], [8.590673, 47.353076], [8.590682, 47.35309], [8.590692, 47.353104], [8.590704, 47.353118], [8.590719, 47.353131], [8.590735, 47.353144], [8.590752, 47.353155], [8.590771, 47.353165], [8.590792, 47.353174], [8.590851, 47.353196], [8.590911, 47.353218], [8.590972, 47.353239], [8.591006, 47.353251], [8.591041, 47.353261], [8.591076, 47.35327], [8.591106, 47.353277], [8.591136, 47.353281], [8.591167, 47.353284], [8.591198, 47.353285], [8.59123, 47.353285], [8.591253, 47.353283], [8.591277, 47.35328], [8.5913, 47.353275], [8.591322, 47.35327], [8.591343, 47.353263], [8.591364, 47.353254], [8.591405, 47.353234], [8.591444, 47.35321], [8.591478, 47.353184], [8.591513, 47.353154], [8.591543, 47.353122], [8.59157, 47.353088], [8.591589, 47.353065], [8.59161, 47.353043], [8.591633, 47.353023], [8.591656, 47.353005], [8.59168, 47.352988], [8.591704, 47.352972], [8.591756, 47.35294], [8.591808, 47.35291], [8.591862, 47.352881], [8.591887, 47.352867], [8.59191, 47.352851], [8.591931, 47.352835], [8.59195, 47.352817], [8.591977, 47.352789], [8.592, 47.35276], [8.592021, 47.352729], [8.592038, 47.352701], [8.592054, 47.352673], [8.592069, 47.352644], [8.592103, 47.352581], [8.592137, 47.352518], [8.592172, 47.352455], [8.592176, 47.35245], [8.592179, 47.352445], [8.592184, 47.352441], [8.592188, 47.352437], [8.592194, 47.352433], [8.5922, 47.352429], [8.592206, 47.352426], [8.592212, 47.352423], [8.592233, 47.352414], [8.592254, 47.352406], [8.592276, 47.352398], [8.592346, 47.352371], [8.592416, 47.352344], [8.592486, 47.352317], [8.592511, 47.352308], [8.592537, 47.352301], [8.592565, 47.352296], [8.592593, 47.352292], [8.592621, 47.35229], [8.592648, 47.352289], [8.592675, 47.352287], [8.592702, 47.352284], [8.592735, 47.352279], [8.592767, 47.352273], [8.592799, 47.352267], [8.59283, 47.35226], [8.592862, 47.352255], [8.592894, 47.352251], [8.592906, 47.352249], [8.592917, 47.352248], [8.592929, 47.352247], [8.593002, 47.352245], [8.593076, 47.352244], [8.593149, 47.352246], [8.59324, 47.35224], [8.593331, 47.352231], [8.59342, 47.352219], [8.593462, 47.352209], [8.593503, 47.352198], [8.593542, 47.352183], [8.593579, 47.352167], [8.593614, 47.352148], [8.593771, 47.352047], [8.593794, 47.352031], [8.593816, 47.352013], [8.593835, 47.351995], [8.593852, 47.351975], [8.593867, 47.351955], [8.593879, 47.351934], [8.593887, 47.351919], [8.593898, 47.351904], [8.59391, 47.35189], [8.593924, 47.351878], [8.593961, 47.351849], [8.594002, 47.351822], [8.594044, 47.351797], [8.594058, 47.35179], [8.594074, 47.351783], [8.594089, 47.351778], [8.594106, 47.351774], [8.594123, 47.35177], [8.59414, 47.351768], [8.594157, 47.351767], [8.594175, 47.351766], [8.594193, 47.351767], [8.594229, 47.35177], [8.594265, 47.351776], [8.5943, 47.351783], [8.594352, 47.351794], [8.594406, 47.351804], [8.59446, 47.351812], [8.594512, 47.351817], [8.594564, 47.351819], [8.594617, 47.351819], [8.594669, 47.351815], [8.594721, 47.351809], [8.594836, 47.351792], [8.594952, 47.351777], [8.595069, 47.351764], [8.595078, 47.351763], [8.595088, 47.351763], [8.595098, 47.351764], [8.595107, 47.351765], [8.595116, 47.351766], [8.595126, 47.351768], [8.595134, 47.351771], [8.595143, 47.351775], [8.59518, 47.351791], [8.595217, 47.351808], [8.595253, 47.351825], [8.59528, 47.351837], [8.595308, 47.351848], [8.595336, 47.351859], [8.59536, 47.351868], [8.595383, 47.351878], [8.595405, 47.35189], [8.595423, 47.351899], [8.595442, 47.351909], [8.595461, 47.351918], [8.595494, 47.351932], [8.595529, 47.351944], [8.595565, 47.351955], [8.595579, 47.351959], [8.595593, 47.351961], [8.595607, 47.351963], [8.595621, 47.351964], [8.595636, 47.351963], [8.59565, 47.351963], [8.595664, 47.351961], [8.595678, 47.351958], [8.595723, 47.351947], [8.595766, 47.351934], [8.595808, 47.351918], [8.595859, 47.351896], [8.59591, 47.351872], [8.595959, 47.351847], [8.595969, 47.351841], [8.595978, 47.351834], [8.595987, 47.351827], [8.595994, 47.35182], [8.595999, 47.351815], [8.596005, 47.35181], [8.596012, 47.351805], [8.596019, 47.351801], [8.596026, 47.351797], [8.596034, 47.351794], [8.596042, 47.351791], [8.596051, 47.351789], [8.596069, 47.351785], [8.596087, 47.351782], [8.596106, 47.351781], [8.596181, 47.351778], [8.596196, 47.351778], [8.596211, 47.351779], [8.596227, 47.351779], [8.596267, 47.351782], [8.596308, 47.351784], [8.596349, 47.351787], [8.596364, 47.351788], [8.596378, 47.351787], [8.596393, 47.351786], [8.596407, 47.351784], [8.596421, 47.351781], [8.596481, 47.351766], [8.596539, 47.351749], [8.596596, 47.351729], [8.596631, 47.351715], [8.596665, 47.3517], [8.596697, 47.351683], [8.596707, 47.351677], [8.596898, 47.351566], [8.596912, 47.351558], [8.596926, 47.351552], [8.596942, 47.351546], [8.596958, 47.351542], [8.596974, 47.351538], [8.596991, 47.351535], [8.597008, 47.351533], [8.597025, 47.351532], [8.597025, 47.351532], [8.597025, 47.351532], [8.597085, 47.351533], [8.597145, 47.351537], [8.597204, 47.351543], [8.597274, 47.351554], [8.597344, 47.351567], [8.597413, 47.351583], [8.597512, 47.351607], [8.597611, 47.351632], [8.59771, 47.351658], [8.597761, 47.351671], [8.597812, 47.351685], [8.597863, 47.351698], [8.59792, 47.351711], [8.597979, 47.351722], [8.598038, 47.351729], [8.598065, 47.351731], [8.598092, 47.351731], [8.598119, 47.35173], [8.598146, 47.351728], [8.598172, 47.351724], [8.598198, 47.351718], [8.598223, 47.351711], [8.598256, 47.351701], [8.598289, 47.351691], [8.598322, 47.351681], [8.598368, 47.351666], [8.598411, 47.351648], [8.598453, 47.351628], [8.598492, 47.351606], [8.598581, 47.351559], [8.598614, 47.351546], [8.598649, 47.351534], [8.598685, 47.351525], [8.598723, 47.351519], [8.598851, 47.351499], [8.598877, 47.351457]]], "type": "MultiLineString"}, "id": "1588", "properties": {}, "type": "Feature"}, {"bbox": [8.527155, 47.378355, 8.52718, 47.378388], "geometry": {"coordinates": [[[8.52718, 47.378388], [8.527155, 47.378355]]], "type": "MultiLineString"}, "id": "1589", "properties": {}, "type": "Feature"}, {"bbox": [8.551669, 47.413466, 8.552307, 47.41372], "geometry": {"coordinates": [[[8.552302, 47.41372], [8.552307, 47.413472], [8.551673, 47.413466], [8.551669, 47.413714], [8.552302, 47.41372]]], "type": "MultiLineString"}, "id": "1590", "properties": {}, "type": "Feature"}, {"bbox": [8.543081, 47.370492, 8.544306, 47.370578], "geometry": {"coordinates": [[[8.543081, 47.370569], [8.543739, 47.370578], [8.543901, 47.370492], [8.544306, 47.370518]]], "type": "MultiLineString"}, "id": "1594", "properties": {}, "type": "Feature"}, {"bbox": [8.542562, 47.383222, 8.543421, 47.38332], "geometry": {"coordinates": [[[8.543421, 47.383295], [8.54331, 47.38332], [8.542562, 47.383222]]], "type": "MultiLineString"}, "id": "1599", "properties": {}, "type": "Feature"}, {"bbox": [8.525799, 47.346123, 8.526855, 47.346936], "geometry": {"coordinates": [[[8.525799, 47.346123], [8.525984, 47.34623], [8.526289, 47.346378], [8.526156, 47.346555], [8.526569, 47.346775], [8.526855, 47.346936]]], "type": "MultiLineString"}, "id": "1600", "properties": {}, "type": "Feature"}, {"bbox": [8.508161, 47.406205, 8.508263, 47.40635], "geometry": {"coordinates": [[[8.508161, 47.406205], [8.508263, 47.40635]]], "type": "MultiLineString"}, "id": "1601", "properties": {}, "type": "Feature"}, {"bbox": [8.57761, 47.360619, 8.59428, 47.362572], "geometry": {"coordinates": [[[8.57761, 47.362394], [8.578232, 47.362572], [8.578418, 47.36239], [8.578524, 47.362315], [8.579003, 47.362106], [8.579268, 47.361941], [8.579401, 47.361884], [8.579411, 47.361877], [8.579469, 47.361853], [8.579492, 47.361844], [8.579516, 47.361836], [8.579541, 47.361829], [8.579603, 47.361814], [8.579665, 47.361799], [8.579728, 47.361786], [8.579764, 47.361779], [8.5798, 47.361771], [8.579836, 47.361763], [8.579843, 47.361761], [8.57985, 47.36176], [8.579857, 47.361758], [8.580005, 47.361724], [8.580063, 47.361709], [8.580119, 47.361691], [8.580172, 47.361671], [8.580217, 47.361653], [8.580263, 47.361636], [8.58031, 47.36162], [8.580327, 47.361615], [8.580345, 47.36161], [8.580362, 47.361606], [8.580441, 47.361589], [8.58052, 47.361572], [8.580598, 47.361555], [8.58064, 47.361546], [8.580683, 47.361537], [8.580725, 47.361529], [8.580823, 47.361515], [8.580922, 47.361506], [8.581021, 47.361504], [8.581102, 47.361503], [8.581183, 47.3615], [8.581264, 47.361494], [8.581309, 47.361489], [8.581355, 47.361482], [8.581399, 47.361472], [8.581434, 47.361464], [8.58147, 47.361458], [8.581506, 47.361454], [8.581543, 47.361452], [8.58158, 47.361452], [8.581627, 47.361455], [8.581675, 47.361461], [8.581721, 47.361468], [8.581767, 47.361479], [8.581847, 47.3615], [8.581926, 47.361524], [8.582003, 47.361549], [8.582139, 47.36157], [8.582164, 47.361572], [8.58219, 47.361573], [8.582216, 47.361574], [8.582243, 47.361576], [8.58227, 47.361579], [8.582296, 47.361583], [8.582329, 47.361588], [8.582362, 47.361592], [8.582395, 47.361595], [8.582398, 47.361595], [8.582401, 47.361595], [8.582404, 47.361596], [8.582416, 47.361597], [8.582428, 47.361598], [8.58244, 47.3616], [8.582491, 47.361609], [8.582542, 47.361617], [8.582593, 47.361625], [8.582633, 47.361631], [8.582673, 47.361636], [8.582713, 47.36164], [8.582789, 47.361647], [8.582865, 47.361653], [8.582942, 47.36166], [8.58297, 47.361663], [8.582999, 47.361668], [8.583026, 47.361674], [8.583053, 47.361682], [8.583079, 47.361692], [8.583129, 47.361713], [8.583179, 47.361735], [8.583228, 47.361758], [8.58324, 47.361763], [8.583252, 47.361768], [8.583265, 47.361771], [8.583278, 47.361774], [8.583291, 47.361776], [8.583305, 47.361777], [8.583318, 47.361777], [8.583332, 47.361776], [8.583346, 47.361775], [8.583452, 47.36176], [8.583558, 47.361745], [8.583664, 47.361731], [8.583685, 47.361729], [8.583707, 47.361728], [8.583728, 47.361728], [8.583728, 47.361728], [8.583728, 47.361728], [8.58377, 47.36173], [8.583841, 47.36173], [8.583867, 47.36173], [8.583892, 47.36173], [8.583918, 47.361731], [8.583931, 47.361732], [8.583943, 47.361734], [8.583956, 47.361737], [8.583968, 47.36174], [8.583979, 47.361744], [8.58399, 47.361749], [8.584, 47.361754], [8.584009, 47.36176], [8.584018, 47.361766], [8.584026, 47.361773], [8.584033, 47.361781], [8.584039, 47.361789], [8.584046, 47.361797], [8.584054, 47.361804], [8.584064, 47.361811], [8.584074, 47.361817], [8.584084, 47.361822], [8.584096, 47.361827], [8.58415, 47.361847], [8.584205, 47.361864], [8.584261, 47.36188], [8.584539, 47.361935], [8.584747, 47.361926], [8.58491, 47.361919], [8.584987, 47.361913], [8.585063, 47.361905], [8.585138, 47.361896], [8.585229, 47.361883], [8.585319, 47.361868], [8.585409, 47.361852], [8.585567, 47.361822], [8.585724, 47.361789], [8.58588, 47.361755], [8.586002, 47.361725], [8.586122, 47.36169], [8.58624, 47.361652], [8.586267, 47.361643], [8.586296, 47.361636], [8.586326, 47.361631], [8.586356, 47.361627], [8.586387, 47.361625], [8.586447, 47.361622], [8.586507, 47.361622], [8.586567, 47.361625], [8.586622, 47.361634], [8.586676, 47.361647], [8.586729, 47.361661], [8.586794, 47.361687], [8.586862, 47.36171], [8.586931, 47.36173], [8.586959, 47.361738], [8.586988, 47.361743], [8.587018, 47.361747], [8.587048, 47.36175], [8.587078, 47.36175], [8.587108, 47.361749], [8.587393, 47.361728], [8.587403, 47.361728], [8.587413, 47.361728], [8.587423, 47.361729], [8.587433, 47.36173], [8.587442, 47.361732], [8.587452, 47.361735], [8.587461, 47.361738], [8.587469, 47.361742], [8.587477, 47.361746], [8.587539, 47.361771], [8.587639, 47.361826], [8.587704, 47.36186], [8.587773, 47.361888], [8.587846, 47.361912], [8.588039, 47.36197], [8.588189, 47.362027], [8.588225, 47.362042], [8.58826, 47.362058], [8.588293, 47.362076], [8.588328, 47.362096], [8.588364, 47.362114], [8.588403, 47.362129], [8.588444, 47.362143], [8.588486, 47.362154], [8.588529, 47.362162], [8.588574, 47.362168], [8.588795, 47.362186], [8.588812, 47.362188], [8.588829, 47.362188], [8.588846, 47.362188], [8.588862, 47.362186], [8.588879, 47.362184], [8.588895, 47.36218], [8.58891, 47.362176], [8.588925, 47.36217], [8.588939, 47.362164], [8.588994, 47.362142], [8.58905, 47.362121], [8.589107, 47.362103], [8.589172, 47.362084], [8.589238, 47.362067], [8.589305, 47.362052], [8.589385, 47.362031], [8.589464, 47.362007], [8.589541, 47.361981], [8.589604, 47.361962], [8.589668, 47.361946], [8.589733, 47.361932], [8.589756, 47.361927], [8.589779, 47.361923], [8.589802, 47.361921], [8.589826, 47.361919], [8.58985, 47.36192], [8.589874, 47.361921], [8.589897, 47.361924], [8.58992, 47.361929], [8.589942, 47.361934], [8.589964, 47.361941], [8.590015, 47.361959], [8.590066, 47.361977], [8.590116, 47.361996], [8.590146, 47.362009], [8.590177, 47.36202], [8.590209, 47.362029], [8.590242, 47.362036], [8.590276, 47.362042], [8.590359, 47.362063], [8.590439, 47.362087], [8.590515, 47.362117], [8.590588, 47.36215], [8.590611, 47.362159], [8.590634, 47.362167], [8.590659, 47.362173], [8.590684, 47.362178], [8.590709, 47.362182], [8.590735, 47.362184], [8.590762, 47.362184], [8.590788, 47.362183], [8.590813, 47.36218], [8.590839, 47.362176], [8.590864, 47.36217], [8.590887, 47.362163], [8.590915, 47.362153], [8.590943, 47.362146], [8.590972, 47.36214], [8.591002, 47.362135], [8.591032, 47.362133], [8.591063, 47.362132], [8.591093, 47.362133], [8.591124, 47.362135], [8.59117, 47.362137], [8.591217, 47.362137], [8.591263, 47.362133], [8.591309, 47.362127], [8.591354, 47.362118], [8.591398, 47.362107], [8.59144, 47.362093], [8.59148, 47.362076], [8.591501, 47.362065], [8.591524, 47.362055], [8.591549, 47.362047], [8.591574, 47.36204], [8.5916, 47.362034], [8.591633, 47.362028], [8.591665, 47.362019], [8.591696, 47.362009], [8.591726, 47.361997], [8.591754, 47.361983], [8.59178, 47.361968], [8.591804, 47.361951], [8.591826, 47.361933], [8.591846, 47.361913], [8.591863, 47.361893], [8.591877, 47.361872], [8.591911, 47.361824], [8.591943, 47.361777], [8.591975, 47.361729], [8.592002, 47.361696], [8.592033, 47.361664], [8.592068, 47.361635], [8.592106, 47.361607], [8.592147, 47.361582], [8.592223, 47.361539], [8.592295, 47.361494], [8.592366, 47.361447], [8.592383, 47.361435], [8.592398, 47.361421], [8.592411, 47.361406], [8.592423, 47.361391], [8.592433, 47.361375], [8.59244, 47.361359], [8.592446, 47.361342], [8.592449, 47.361325], [8.592502, 47.361239], [8.592548, 47.361217], [8.592596, 47.361198], [8.592647, 47.361182], [8.592837, 47.361129], [8.592921, 47.361094], [8.592975, 47.361068], [8.59301, 47.361052], [8.593278, 47.360904], [8.593369, 47.360855], [8.593455, 47.360801], [8.593593, 47.360718], [8.593636, 47.360695], [8.593682, 47.360675], [8.593731, 47.360658], [8.593782, 47.360644], [8.593834, 47.360633], [8.593888, 47.360625], [8.593942, 47.360621], [8.593997, 47.360619], [8.594052, 47.360622], [8.59428, 47.360645]]], "type": "MultiLineString"}, "id": "1604", "properties": {}, "type": "Feature"}, {"bbox": [8.532217, 47.34071, 8.532453, 47.341449], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.532379, 47.340789], [8.532217, 47.341449]]], "type": "MultiLineString"}, "id": "1608", "properties": {}, "type": "Feature"}, {"bbox": [8.538956, 47.407437, 8.539474, 47.407597], "geometry": {"coordinates": [[[8.538956, 47.407437], [8.539474, 47.407597]]], "type": "MultiLineString"}, "id": "1609", "properties": {}, "type": "Feature"}, {"bbox": [8.56442, 47.366586, 8.565946, 47.367069], "geometry": {"coordinates": [[[8.56442, 47.366586], [8.564865, 47.366807], [8.564948, 47.366827], [8.565092, 47.366862], [8.565946, 47.367069]]], "type": "MultiLineString"}, "id": "1614", "properties": {}, "type": "Feature"}, {"bbox": [8.474729, 47.394196, 8.513107, 47.403533], "geometry": {"coordinates": [[[8.513107, 47.394196], [8.512667, 47.394246], [8.512439, 47.394273], [8.512169, 47.394288], [8.510611, 47.394359], [8.510378, 47.394353], [8.510198, 47.394356], [8.509506, 47.394335], [8.509391, 47.394332], [8.509276, 47.394335], [8.509162, 47.394343], [8.508213, 47.394445], [8.508017, 47.394462], [8.506336, 47.394544], [8.505989, 47.394562], [8.505644, 47.394591], [8.505301, 47.394632], [8.505124, 47.394661], [8.504947, 47.394694], [8.504772, 47.394729], [8.504576, 47.394774], [8.50438, 47.39482], [8.504185, 47.394868], [8.504142, 47.394881], [8.504098, 47.394891], [8.504052, 47.394898], [8.504005, 47.394903], [8.503958, 47.394904], [8.503926, 47.394904], [8.503893, 47.394905], [8.503861, 47.394909], [8.503693, 47.395028], [8.503281, 47.395194], [8.502932, 47.395351], [8.502697, 47.395472], [8.502468, 47.395599], [8.502247, 47.395732], [8.502028, 47.395887], [8.501815, 47.396045], [8.501608, 47.396208], [8.500608, 47.39709], [8.50022, 47.397377], [8.499795, 47.397639], [8.499337, 47.397872], [8.498848, 47.398076], [8.498334, 47.398249], [8.497798, 47.398388], [8.497246, 47.398493], [8.495625, 47.39874], [8.495284, 47.398782], [8.494819, 47.398823], [8.49458, 47.398838], [8.494543, 47.398837], [8.494506, 47.398833], [8.49447, 47.398827], [8.494435, 47.398819], [8.494401, 47.398809], [8.494368, 47.398796], [8.493962, 47.398637], [8.493897, 47.398616], [8.49383, 47.398598], [8.493761, 47.398584], [8.49369, 47.398574], [8.493474, 47.398572], [8.493427, 47.398741], [8.493022, 47.398695], [8.493017, 47.398718], [8.492302, 47.398641], [8.490555, 47.398416], [8.490272, 47.39838], [8.489988, 47.398349], [8.489704, 47.398324], [8.489156, 47.39832], [8.48861, 47.398345], [8.488068, 47.398397], [8.487593, 47.398487], [8.487131, 47.398604], [8.486686, 47.398749], [8.486262, 47.398919], [8.485861, 47.399114], [8.485486, 47.399332], [8.485142, 47.399572], [8.48497, 47.399704], [8.484805, 47.39984], [8.484649, 47.399981], [8.484405, 47.400263], [8.483097, 47.401656], [8.482827, 47.401918], [8.482526, 47.402165], [8.482195, 47.402393], [8.481837, 47.402602], [8.481418, 47.402806], [8.480976, 47.402986], [8.480514, 47.403142], [8.480035, 47.403271], [8.479542, 47.403374], [8.479337, 47.403408], [8.47913, 47.403436], [8.478921, 47.40346], [8.478578, 47.403492], [8.478234, 47.403514], [8.477888, 47.403527], [8.477846, 47.4035], [8.477745, 47.403406], [8.477737, 47.403401], [8.477728, 47.403397], [8.47772, 47.403394], [8.47771, 47.403391], [8.477701, 47.403388], [8.477691, 47.403386], [8.477681, 47.403385], [8.47767, 47.403384], [8.47766, 47.403384], [8.47765, 47.403384], [8.47764, 47.403385], [8.47763, 47.403387], [8.47762, 47.403389], [8.47761, 47.403392], [8.477601, 47.403395], [8.477508, 47.403431], [8.477411, 47.403462], [8.47731, 47.403487], [8.477207, 47.403507], [8.477102, 47.403521], [8.476996, 47.403529], [8.476903, 47.403533], [8.476809, 47.403532], [8.476717, 47.403525], [8.476625, 47.403512], [8.476536, 47.403494], [8.476449, 47.403471], [8.476273, 47.403414], [8.476091, 47.403367], [8.475904, 47.403329], [8.475681, 47.403294], [8.475463, 47.403245], [8.475253, 47.403183], [8.474729, 47.40303]]], "type": "MultiLineString"}, "id": "1619", "properties": {}, "type": "Feature"}, {"bbox": [8.589327, 47.372723, 8.590625, 47.374137], "geometry": {"coordinates": [[[8.589331, 47.372723], [8.58933, 47.37286], [8.589327, 47.372881], [8.589327, 47.372902], [8.58933, 47.372923], [8.589335, 47.372943], [8.589343, 47.372963], [8.589353, 47.372983], [8.589366, 47.373002], [8.589381, 47.37302], [8.589398, 47.373037], [8.589417, 47.373053], [8.589438, 47.373068], [8.590166, 47.373498], [8.590474, 47.373629], [8.590625, 47.373836], [8.590451, 47.373887], [8.590605, 47.374137]]], "type": "MultiLineString"}, "id": "1623", "properties": {}, "type": "Feature"}, {"bbox": [8.531209, 47.41075, 8.53121, 47.41075], "geometry": {"coordinates": [[[8.53121, 47.41075], [8.531209, 47.41075]]], "type": "MultiLineString"}, "id": "1626", "properties": {}, "type": "Feature"}, {"bbox": [8.532416, 47.343038, 8.533236, 47.344216], "geometry": {"coordinates": [[[8.532416, 47.344216], [8.532578, 47.343944], [8.532824, 47.343615], [8.533168, 47.343356], [8.533236, 47.343222], [8.533202, 47.343038]]], "type": "MultiLineString"}, "id": "1628", "properties": {}, "type": "Feature"}, {"bbox": [8.492607, 47.401897, 8.492728, 47.402265], "geometry": {"coordinates": [[[8.492607, 47.401897], [8.492728, 47.402265]]], "type": "MultiLineString"}, "id": "1633", "properties": {}, "type": "Feature"}, {"bbox": [8.492739, 47.375751, 8.493721, 47.376763], "geometry": {"coordinates": [[[8.493721, 47.376763], [8.493022, 47.376172], [8.492978, 47.376139], [8.492938, 47.376104], [8.492904, 47.376066], [8.492874, 47.376027], [8.49285, 47.375985], [8.492773, 47.375796], [8.492739, 47.375751]]], "type": "MultiLineString"}, "id": "1642", "properties": {}, "type": "Feature"}, {"bbox": [8.486102, 47.358112, 8.487923, 47.364858], "geometry": {"coordinates": [[[8.486923, 47.36474], [8.486645, 47.364808], [8.486626, 47.364813], [8.486609, 47.364819], [8.486592, 47.364827], [8.486583, 47.364831], [8.486573, 47.364834], [8.486563, 47.364837], [8.486553, 47.364839], [8.486542, 47.364841], [8.486531, 47.364842], [8.48652, 47.364842], [8.486509, 47.364842], [8.486491, 47.364842], [8.486472, 47.364843], [8.486453, 47.364845], [8.486435, 47.364848], [8.486418, 47.364853], [8.48641, 47.364855], [8.486403, 47.364856], [8.486395, 47.364857], [8.486387, 47.364858], [8.486379, 47.364858], [8.486371, 47.364857], [8.486363, 47.364857], [8.486355, 47.364855], [8.486348, 47.364853], [8.486341, 47.364851], [8.486334, 47.364848], [8.486327, 47.364845], [8.486321, 47.364842], [8.486279, 47.364818], [8.486234, 47.364797], [8.486186, 47.36478], [8.486135, 47.364765], [8.486131, 47.364764], [8.486127, 47.364763], [8.486123, 47.364761], [8.48612, 47.364759], [8.486116, 47.364757], [8.486113, 47.364755], [8.486111, 47.364752], [8.486108, 47.364749], [8.486106, 47.364747], [8.486105, 47.364744], [8.486103, 47.364741], [8.486102, 47.364738], [8.486102, 47.364735], [8.486102, 47.364732], [8.486102, 47.364729], [8.486103, 47.364726], [8.486104, 47.364723], [8.486105, 47.36472], [8.486107, 47.364717], [8.486109, 47.364714], [8.486112, 47.364712], [8.486114, 47.364709], [8.486118, 47.364707], [8.486121, 47.364705], [8.486125, 47.364703], [8.486129, 47.364701], [8.486133, 47.3647], [8.486137, 47.364699], [8.486141, 47.364698], [8.486146, 47.364698], [8.486154, 47.364697], [8.486162, 47.364695], [8.48617, 47.364693], [8.486177, 47.364691], [8.486184, 47.364688], [8.486191, 47.364684], [8.486197, 47.364681], [8.486203, 47.364677], [8.486208, 47.364673], [8.486213, 47.364668], [8.486217, 47.364663], [8.486221, 47.364658], [8.486224, 47.364653], [8.486226, 47.364647], [8.486227, 47.364642], [8.486228, 47.364636], [8.486228, 47.364631], [8.486227, 47.364625], [8.486226, 47.364619], [8.486225, 47.364616], [8.486225, 47.364612], [8.486225, 47.364608], [8.486225, 47.364605], [8.486226, 47.364601], [8.486228, 47.364597], [8.48623, 47.364594], [8.486232, 47.364591], [8.486235, 47.364587], [8.486239, 47.364585], [8.486242, 47.364582], [8.486246, 47.364579], [8.486251, 47.364577], [8.486255, 47.364575], [8.48626, 47.364573], [8.486265, 47.364572], [8.48627, 47.364571], [8.486276, 47.36457], [8.486281, 47.364569], [8.486286, 47.364569], [8.486349, 47.36457], [8.486351, 47.364569], [8.486354, 47.364569], [8.486356, 47.364569], [8.486358, 47.364568], [8.48636, 47.364567], [8.486362, 47.364567], [8.486364, 47.364566], [8.486365, 47.364565], [8.486367, 47.364564], [8.486368, 47.364563], [8.48637, 47.364561], [8.486371, 47.36456], [8.486372, 47.364559], [8.486373, 47.364557], [8.486373, 47.364556], [8.486374, 47.364554], [8.486374, 47.364553], [8.486374, 47.364551], [8.486374, 47.36455], [8.486373, 47.364548], [8.486373, 47.364547], [8.486373, 47.364546], [8.486373, 47.364545], [8.486373, 47.364544], [8.486373, 47.364543], [8.486374, 47.364542], [8.486374, 47.364541], [8.486375, 47.36454], [8.486376, 47.364539], [8.486376, 47.364538], [8.486377, 47.364538], [8.486378, 47.364537], [8.48638, 47.364536], [8.486381, 47.364536], [8.486382, 47.364535], [8.486384, 47.364535], [8.486385, 47.364534], [8.486386, 47.364534], [8.486388, 47.364534], [8.486389, 47.364534], [8.486391, 47.364534], [8.486392, 47.364534], [8.486394, 47.364534], [8.486395, 47.364534], [8.486408, 47.364537], [8.486421, 47.364538], [8.486434, 47.364539], [8.486447, 47.364539], [8.48646, 47.364538], [8.486472, 47.364536], [8.486485, 47.364534], [8.486497, 47.364531], [8.486509, 47.364527], [8.48652, 47.364522], [8.48653, 47.364517], [8.48654, 47.364511], [8.486549, 47.364505], [8.486557, 47.364498], [8.486564, 47.36449], [8.48657, 47.364482], [8.486575, 47.364474], [8.486579, 47.364466], [8.486582, 47.364457], [8.486583, 47.364448], [8.486595, 47.364352], [8.486596, 47.364348], [8.486597, 47.364343], [8.486599, 47.364339], [8.486602, 47.364335], [8.486605, 47.364331], [8.486608, 47.364328], [8.486612, 47.364324], [8.486617, 47.364321], [8.486622, 47.364318], [8.486627, 47.364316], [8.486632, 47.364313], [8.486638, 47.364311], [8.486644, 47.36431], [8.48665, 47.364309], [8.486655, 47.364308], [8.48666, 47.364306], [8.486665, 47.364305], [8.486669, 47.364303], [8.486674, 47.364301], [8.486678, 47.364299], [8.486681, 47.364296], [8.486685, 47.364293], [8.486687, 47.36429], [8.48669, 47.364287], [8.486692, 47.364284], [8.486694, 47.364281], [8.486695, 47.364277], [8.486696, 47.364274], [8.486697, 47.36427], [8.486697, 47.364267], [8.486696, 47.364263], [8.486695, 47.364257], [8.486695, 47.364251], [8.486696, 47.364245], [8.486698, 47.364239], [8.4867, 47.364233], [8.486704, 47.364227], [8.486708, 47.364221], [8.486713, 47.364216], [8.486796, 47.364132], [8.486812, 47.364118], [8.48683, 47.364104], [8.486849, 47.364092], [8.48687, 47.364081], [8.486962, 47.364035], [8.486973, 47.364029], [8.486982, 47.364023], [8.486991, 47.364016], [8.487, 47.364008], [8.487007, 47.364001], [8.487013, 47.363992], [8.487018, 47.363984], [8.487036, 47.36395], [8.487039, 47.363946], [8.487041, 47.363943], [8.487044, 47.36394], [8.487048, 47.363937], [8.487052, 47.363934], [8.487056, 47.363932], [8.48706, 47.363929], [8.487065, 47.363927], [8.48707, 47.363926], [8.487075, 47.363924], [8.487091, 47.36392], [8.487106, 47.363915], [8.487121, 47.363909], [8.487134, 47.363903], [8.487147, 47.363895], [8.487158, 47.363887], [8.487184, 47.363867], [8.487186, 47.363865], [8.487189, 47.363864], [8.487192, 47.363862], [8.487195, 47.363861], [8.487198, 47.36386], [8.487201, 47.363859], [8.487205, 47.363858], [8.487208, 47.363858], [8.487212, 47.363858], [8.487216, 47.363858], [8.487219, 47.363858], [8.487223, 47.363858], [8.487226, 47.363859], [8.487229, 47.36386], [8.487233, 47.363861], [8.487236, 47.363862], [8.487239, 47.363863], [8.487241, 47.363865], [8.487248, 47.363868], [8.487254, 47.363872], [8.487261, 47.363874], [8.487269, 47.363877], [8.487276, 47.363879], [8.487284, 47.36388], [8.487292, 47.363881], [8.4873, 47.363881], [8.487309, 47.363881], [8.487317, 47.363881], [8.487325, 47.36388], [8.487333, 47.363879], [8.48734, 47.363877], [8.487348, 47.363874], [8.487355, 47.363872], [8.487368, 47.363866], [8.487382, 47.363862], [8.487397, 47.363858], [8.487412, 47.363856], [8.487427, 47.363854], [8.487443, 47.363853], [8.487455, 47.363853], [8.487468, 47.363851], [8.48748, 47.363849], [8.487492, 47.363847], [8.487503, 47.363843], [8.487514, 47.363839], [8.487524, 47.363834], [8.487534, 47.363829], [8.487544, 47.363823], [8.487556, 47.363818], [8.487567, 47.363813], [8.48758, 47.363809], [8.487582, 47.363809], [8.487584, 47.363808], [8.487586, 47.363807], [8.487588, 47.363806], [8.48759, 47.363805], [8.487592, 47.363803], [8.487593, 47.363802], [8.487595, 47.3638], [8.487596, 47.363799], [8.487597, 47.363797], [8.487598, 47.363795], [8.487598, 47.363794], [8.487598, 47.363792], [8.487598, 47.36379], [8.487598, 47.363788], [8.487598, 47.363787], [8.487597, 47.363785], [8.487596, 47.363783], [8.487595, 47.363782], [8.487594, 47.36378], [8.487593, 47.363779], [8.487591, 47.363777], [8.487589, 47.363776], [8.487588, 47.363775], [8.487585, 47.363774], [8.487577, 47.36377], [8.48757, 47.363765], [8.487563, 47.36376], [8.487556, 47.363755], [8.487551, 47.363749], [8.487546, 47.363743], [8.487504, 47.363688], [8.4875, 47.363683], [8.487497, 47.363678], [8.487495, 47.363672], [8.487494, 47.363667], [8.487493, 47.363661], [8.487492, 47.363656], [8.487491, 47.363652], [8.487489, 47.363647], [8.487487, 47.363642], [8.487484, 47.363638], [8.48748, 47.363634], [8.487476, 47.36363], [8.487471, 47.363627], [8.487425, 47.363594], [8.487422, 47.363592], [8.487419, 47.36359], [8.487416, 47.363587], [8.487414, 47.363584], [8.487413, 47.363581], [8.487411, 47.363578], [8.48741, 47.363575], [8.48741, 47.363572], [8.48741, 47.363569], [8.48741, 47.363566], [8.48741, 47.363563], [8.487411, 47.36356], [8.487413, 47.363557], [8.487415, 47.363554], [8.487417, 47.363551], [8.487419, 47.363549], [8.487422, 47.363546], [8.487425, 47.363544], [8.487429, 47.363542], [8.487432, 47.36354], [8.487436, 47.363538], [8.48744, 47.363537], [8.487445, 47.363536], [8.487586, 47.363502], [8.487596, 47.363499], [8.487607, 47.363495], [8.487617, 47.363491], [8.487626, 47.363487], [8.487635, 47.363482], [8.487638, 47.36348], [8.48764, 47.363478], [8.487642, 47.363477], [8.487643, 47.363475], [8.487645, 47.363473], [8.487646, 47.363471], [8.487646, 47.363469], [8.487647, 47.363466], [8.487647, 47.363464], [8.487647, 47.363462], [8.487647, 47.36346], [8.487646, 47.363458], [8.487646, 47.363456], [8.487644, 47.363454], [8.487643, 47.363452], [8.487641, 47.36345], [8.48764, 47.363448], [8.487638, 47.363446], [8.487635, 47.363445], [8.487633, 47.363443], [8.48763, 47.363442], [8.487627, 47.363441], [8.487625, 47.36344], [8.487621, 47.363439], [8.487505, 47.363415], [8.487492, 47.363412], [8.487479, 47.363407], [8.487466, 47.363403], [8.487455, 47.363397], [8.487444, 47.363391], [8.487364, 47.363339], [8.487332, 47.363292], [8.48733, 47.363289], [8.487329, 47.363287], [8.487328, 47.363284], [8.487328, 47.363282], [8.487328, 47.363279], [8.487328, 47.363276], [8.487329, 47.363274], [8.48733, 47.363271], [8.487331, 47.363269], [8.487332, 47.363266], [8.487334, 47.363264], [8.487336, 47.363262], [8.487339, 47.36326], [8.487341, 47.363258], [8.487344, 47.363256], [8.487347, 47.363255], [8.487425, 47.36322], [8.487427, 47.363219], [8.487429, 47.363218], [8.487431, 47.363217], [8.487433, 47.363215], [8.487435, 47.363214], [8.487436, 47.363212], [8.487437, 47.36321], [8.487438, 47.363208], [8.487439, 47.363207], [8.487439, 47.363205], [8.48744, 47.363203], [8.48744, 47.363201], [8.487439, 47.363199], [8.487439, 47.363197], [8.487438, 47.363196], [8.487437, 47.363194], [8.487436, 47.363192], [8.487435, 47.36319], [8.487433, 47.363189], [8.487432, 47.363187], [8.48743, 47.363186], [8.487428, 47.363185], [8.487425, 47.363184], [8.487423, 47.363183], [8.487369, 47.363162], [8.487296, 47.363116], [8.487294, 47.363115], [8.487292, 47.363114], [8.487291, 47.363112], [8.48729, 47.363111], [8.487289, 47.363109], [8.487288, 47.363108], [8.487288, 47.363106], [8.487287, 47.363105], [8.487287, 47.363103], [8.487287, 47.363102], [8.487287, 47.3631], [8.487288, 47.363098], [8.487289, 47.363097], [8.487289, 47.363095], [8.48729, 47.363094], [8.487292, 47.363092], [8.487293, 47.363091], [8.487295, 47.36309], [8.487297, 47.363089], [8.487298, 47.363088], [8.4873, 47.363087], [8.487318, 47.363079], [8.487335, 47.36307], [8.487351, 47.36306], [8.487365, 47.363049], [8.487367, 47.363048], [8.487368, 47.363047], [8.487369, 47.363045], [8.48737, 47.363043], [8.48737, 47.363042], [8.487371, 47.36304], [8.487371, 47.363039], [8.487371, 47.363037], [8.487371, 47.363035], [8.487371, 47.363034], [8.48737, 47.363032], [8.487369, 47.363031], [8.487368, 47.363029], [8.487367, 47.363028], [8.487366, 47.363026], [8.487364, 47.363025], [8.487363, 47.363024], [8.487361, 47.363023], [8.487359, 47.363022], [8.487357, 47.363021], [8.487271, 47.362989], [8.487225, 47.362956], [8.487223, 47.362954], [8.487221, 47.362952], [8.487219, 47.362951], [8.487218, 47.362949], [8.487217, 47.362947], [8.487216, 47.362945], [8.487215, 47.362943], [8.487215, 47.362941], [8.487215, 47.362939], [8.487215, 47.362937], [8.487216, 47.362934], [8.487217, 47.362932], [8.487218, 47.362931], [8.487219, 47.362929], [8.48722, 47.362927], [8.487222, 47.362925], [8.487224, 47.362924], [8.487226, 47.362922], [8.487229, 47.362921], [8.487231, 47.36292], [8.487234, 47.362918], [8.487237, 47.362918], [8.487239, 47.362917], [8.487242, 47.362916], [8.487366, 47.362898], [8.487369, 47.362897], [8.487371, 47.362896], [8.487373, 47.362896], [8.487376, 47.362895], [8.487378, 47.362894], [8.48738, 47.362893], [8.487382, 47.362891], [8.487383, 47.36289], [8.487385, 47.362889], [8.487386, 47.362887], [8.487387, 47.362885], [8.487388, 47.362884], [8.487389, 47.362882], [8.487389, 47.36288], [8.487389, 47.362878], [8.487389, 47.362877], [8.487389, 47.362875], [8.487388, 47.362873], [8.487388, 47.362872], [8.487387, 47.36287], [8.487386, 47.362868], [8.487384, 47.362867], [8.487383, 47.362865], [8.487381, 47.362864], [8.487379, 47.362863], [8.487377, 47.362862], [8.487375, 47.362861], [8.487373, 47.36286], [8.48737, 47.362859], [8.487368, 47.362859], [8.487365, 47.362858], [8.487287, 47.362848], [8.487279, 47.362847], [8.487271, 47.362845], [8.487263, 47.362843], [8.487255, 47.36284], [8.487248, 47.362837], [8.487242, 47.362833], [8.487176, 47.362795], [8.487172, 47.362792], [8.487168, 47.362789], [8.487164, 47.362786], [8.487161, 47.362782], [8.487158, 47.362779], [8.487156, 47.362775], [8.487154, 47.362771], [8.487153, 47.362767], [8.487152, 47.362763], [8.487152, 47.362758], [8.487153, 47.362754], [8.487154, 47.36275], [8.487155, 47.362746], [8.487157, 47.362742], [8.48716, 47.362739], [8.487164, 47.362733], [8.487167, 47.362726], [8.48717, 47.36272], [8.487171, 47.362713], [8.487172, 47.362707], [8.487172, 47.3627], [8.487172, 47.362693], [8.48717, 47.362687], [8.487168, 47.36268], [8.487164, 47.362674], [8.48716, 47.362668], [8.487156, 47.362662], [8.48715, 47.362656], [8.487144, 47.362651], [8.487137, 47.362646], [8.48713, 47.362642], [8.487122, 47.362638], [8.487114, 47.362634], [8.487039, 47.362606], [8.487035, 47.362604], [8.48703, 47.362601], [8.487026, 47.362599], [8.487022, 47.362596], [8.487019, 47.362593], [8.487016, 47.36259], [8.487014, 47.362587], [8.487011, 47.362583], [8.48701, 47.36258], [8.487009, 47.362576], [8.487008, 47.362572], [8.487008, 47.362568], [8.487008, 47.362565], [8.487009, 47.362561], [8.48701, 47.362557], [8.487012, 47.362554], [8.487014, 47.36255], [8.487016, 47.362547], [8.487019, 47.362544], [8.487023, 47.362541], [8.487026, 47.362538], [8.487031, 47.362536], [8.487035, 47.362533], [8.48704, 47.362531], [8.487045, 47.36253], [8.48705, 47.362528], [8.487055, 47.362527], [8.487172, 47.362507], [8.487321, 47.362456], [8.487328, 47.362453], [8.487335, 47.36245], [8.487341, 47.362446], [8.487347, 47.362443], [8.487353, 47.362439], [8.487358, 47.362434], [8.487362, 47.362429], [8.487366, 47.362425], [8.487369, 47.362419], [8.487371, 47.362414], [8.487423, 47.362286], [8.487425, 47.362281], [8.487428, 47.362276], [8.487432, 47.362272], [8.487436, 47.362268], [8.48744, 47.362264], [8.487445, 47.36226], [8.487451, 47.362257], [8.487457, 47.362254], [8.487463, 47.362251], [8.487469, 47.362249], [8.48748, 47.362245], [8.487491, 47.362241], [8.4875, 47.362236], [8.487509, 47.36223], [8.487518, 47.362224], [8.487525, 47.362218], [8.487532, 47.362211], [8.487538, 47.362204], [8.487543, 47.362196], [8.487547, 47.362188], [8.48755, 47.36218], [8.487552, 47.362172], [8.487553, 47.362167], [8.487555, 47.362161], [8.487558, 47.362156], [8.487561, 47.362151], [8.487565, 47.362146], [8.48757, 47.362142], [8.487575, 47.362137], [8.48758, 47.362133], [8.487586, 47.36213], [8.487589, 47.362128], [8.487592, 47.362126], [8.487594, 47.362124], [8.487596, 47.362122], [8.487598, 47.362119], [8.487599, 47.362117], [8.4876, 47.362114], [8.487601, 47.362112], [8.487601, 47.362109], [8.487602, 47.362107], [8.487601, 47.362104], [8.487578, 47.361949], [8.487577, 47.36193], [8.487578, 47.361911], [8.487582, 47.361892], [8.487586, 47.361873], [8.487588, 47.361853], [8.487588, 47.361834], [8.487583, 47.361701], [8.487581, 47.361688], [8.487578, 47.361675], [8.487573, 47.361662], [8.487567, 47.361649], [8.487559, 47.361637], [8.48752, 47.361584], [8.487512, 47.361573], [8.487506, 47.361562], [8.487501, 47.36155], [8.487498, 47.361538], [8.487497, 47.361526], [8.487496, 47.361513], [8.487498, 47.361501], [8.48751, 47.361433], [8.487502, 47.361381], [8.487501, 47.361088], [8.487662, 47.360821], [8.487667, 47.360812], [8.48767, 47.360802], [8.487672, 47.360793], [8.487673, 47.360783], [8.487673, 47.360773], [8.487672, 47.360763], [8.487668, 47.360751], [8.487663, 47.360739], [8.487656, 47.360728], [8.487648, 47.360717], [8.487639, 47.360706], [8.487628, 47.360696], [8.487616, 47.360687], [8.487603, 47.360678], [8.487589, 47.360671], [8.487573, 47.360662], [8.487559, 47.360653], [8.487545, 47.360643], [8.487533, 47.360632], [8.487522, 47.36062], [8.487512, 47.360608], [8.487504, 47.360595], [8.487498, 47.360581], [8.487493, 47.360568], [8.48749, 47.360554], [8.487489, 47.36054], [8.487488, 47.360505], [8.487485, 47.36047], [8.487482, 47.360435], [8.487479, 47.360384], [8.487481, 47.360333], [8.487489, 47.360282], [8.487499, 47.360234], [8.487512, 47.360187], [8.487526, 47.36014], [8.487537, 47.360096], [8.487543, 47.360052], [8.487542, 47.360008], [8.487542, 47.359978], [8.487547, 47.359947], [8.487556, 47.359917], [8.487569, 47.359888], [8.487586, 47.359854], [8.487602, 47.35982], [8.487617, 47.359785], [8.487637, 47.359737], [8.487656, 47.359688], [8.487676, 47.359639], [8.487693, 47.35959], [8.487704, 47.35954], [8.48771, 47.35949], [8.487716, 47.359401], [8.487716, 47.359397], [8.487718, 47.359392], [8.48772, 47.359387], [8.487722, 47.359383], [8.487725, 47.359378], [8.487729, 47.359374], [8.487737, 47.359367], [8.487747, 47.35936], [8.487757, 47.359353], [8.487768, 47.359347], [8.487779, 47.359342], [8.487791, 47.359338], [8.487816, 47.35933], [8.487841, 47.359324], [8.487867, 47.359319], [8.487893, 47.359316], [8.487896, 47.359316], [8.487899, 47.359315], [8.487902, 47.359315], [8.487905, 47.359314], [8.487907, 47.359313], [8.487909, 47.359312], [8.487912, 47.35931], [8.487914, 47.359309], [8.487916, 47.359307], [8.487917, 47.359306], [8.487919, 47.359304], [8.48792, 47.359302], [8.487921, 47.3593], [8.487922, 47.359298], [8.487922, 47.359297], [8.487923, 47.359295], [8.487923, 47.359293], [8.487923, 47.359291], [8.487922, 47.359289], [8.487921, 47.359287], [8.487921, 47.359285], [8.487919, 47.359283], [8.487906, 47.359265], [8.48789, 47.359248], [8.487874, 47.359231], [8.487863, 47.359222], [8.487851, 47.359213], [8.487838, 47.359205], [8.487824, 47.359198], [8.487809, 47.359191], [8.487794, 47.359184], [8.48778, 47.359176], [8.487765, 47.359167], [8.487751, 47.359158], [8.487738, 47.359147], [8.487732, 47.359143], [8.487725, 47.359138], [8.487718, 47.359134], [8.48771, 47.359131], [8.487701, 47.359128], [8.487693, 47.359126], [8.487681, 47.359123], [8.48767, 47.359119], [8.48766, 47.359115], [8.48765, 47.35911], [8.487641, 47.359104], [8.487636, 47.359101], [8.487632, 47.359097], [8.487628, 47.359093], [8.487625, 47.359089], [8.487622, 47.359084], [8.48762, 47.35908], [8.487619, 47.359075], [8.487618, 47.359071], [8.487617, 47.359066], [8.487617, 47.359048], [8.487614, 47.35903], [8.48761, 47.359012], [8.487604, 47.358993], [8.487599, 47.358975], [8.487594, 47.358956], [8.48759, 47.358938], [8.487588, 47.358919], [8.487589, 47.358901], [8.487592, 47.358882], [8.487596, 47.358865], [8.487599, 47.358848], [8.487602, 47.358831], [8.487604, 47.358822], [8.487607, 47.358813], [8.487612, 47.358805], [8.487617, 47.358797], [8.487624, 47.358789], [8.487627, 47.358785], [8.48763, 47.358781], [8.487632, 47.358777], [8.487633, 47.358773], [8.487634, 47.358769], [8.487635, 47.358765], [8.487635, 47.358761], [8.487634, 47.358756], [8.487633, 47.358752], [8.487632, 47.358748], [8.487629, 47.358744], [8.487627, 47.35874], [8.48761, 47.358719], [8.487592, 47.358699], [8.487573, 47.358679], [8.48757, 47.358676], [8.487568, 47.358672], [8.487566, 47.358668], [8.487564, 47.358665], [8.487563, 47.358661], [8.487563, 47.358657], [8.487562, 47.358653], [8.487563, 47.35865], [8.487564, 47.358646], [8.487565, 47.358642], [8.48757, 47.358627], [8.487575, 47.358612], [8.487579, 47.358596], [8.487579, 47.358594], [8.487579, 47.358591], [8.487579, 47.358588], [8.487578, 47.358586], [8.487577, 47.358583], [8.487576, 47.358581], [8.487574, 47.358578], [8.487573, 47.358576], [8.48757, 47.358573], [8.487568, 47.358571], [8.487565, 47.358569], [8.487562, 47.358568], [8.487559, 47.358566], [8.487556, 47.358564], [8.487552, 47.358563], [8.487497, 47.358545], [8.487442, 47.358525], [8.487388, 47.358505], [8.487368, 47.358497], [8.48735, 47.358487], [8.487333, 47.358477], [8.48733, 47.358475], [8.487328, 47.358473], [8.487326, 47.358471], [8.487325, 47.358469], [8.487323, 47.358466], [8.487322, 47.358464], [8.487321, 47.358462], [8.487321, 47.358459], [8.487321, 47.358457], [8.487321, 47.358454], [8.487321, 47.358452], [8.487322, 47.358449], [8.487323, 47.358447], [8.487325, 47.358445], [8.487326, 47.358443], [8.487328, 47.358441], [8.48733, 47.358439], [8.487333, 47.358437], [8.487336, 47.358435], [8.487339, 47.358434], [8.487342, 47.358432], [8.487345, 47.358431], [8.487363, 47.358425], [8.48738, 47.358418], [8.487397, 47.358409], [8.487412, 47.3584], [8.487426, 47.358391], [8.487439, 47.358381], [8.48745, 47.35837], [8.487452, 47.358367], [8.487454, 47.358364], [8.487456, 47.358362], [8.487457, 47.358359], [8.487458, 47.358356], [8.487458, 47.358352], [8.487458, 47.358349], [8.487458, 47.358346], [8.487457, 47.358343], [8.487456, 47.35834], [8.487455, 47.358337], [8.487453, 47.358334], [8.48745, 47.358332], [8.487448, 47.358329], [8.487445, 47.358327], [8.487442, 47.358325], [8.487433, 47.35832], [8.487424, 47.358315], [8.487415, 47.358312], [8.487405, 47.358308], [8.487395, 47.358305], [8.487381, 47.358302], [8.487368, 47.358297], [8.487355, 47.358292], [8.487352, 47.358291], [8.487348, 47.358289], [8.487345, 47.358287], [8.487343, 47.358285], [8.48734, 47.358283], [8.487338, 47.35828], [8.487336, 47.358278], [8.487335, 47.358275], [8.487334, 47.358273], [8.487333, 47.35827], [8.48733, 47.358257], [8.487329, 47.358243], [8.487329, 47.35823], [8.487332, 47.358204], [8.487338, 47.358179], [8.487347, 47.358155], [8.487366, 47.358112]]], "type": "MultiLineString"}, "id": "1647", "properties": {}, "type": "Feature"}, {"bbox": [8.484489, 47.405005, 8.485172, 47.405193], "geometry": {"coordinates": [[[8.485172, 47.405005], [8.485062, 47.40504], [8.484778, 47.40512], [8.484489, 47.405193]]], "type": "MultiLineString"}, "id": "1648", "properties": {}, "type": "Feature"}, {"bbox": [8.527937, 47.349533, 8.529695, 47.349633], "geometry": {"coordinates": [[[8.529695, 47.349633], [8.529448, 47.349607], [8.529399, 47.349607], [8.529213, 47.349621], [8.529038, 47.349627], [8.528394, 47.349558], [8.527937, 47.349533]]], "type": "MultiLineString"}, "id": "1652", "properties": {}, "type": "Feature"}, {"bbox": [8.539237, 47.393682, 8.540441, 47.393691], "geometry": {"coordinates": [[[8.539237, 47.393682], [8.539729, 47.393691], [8.540441, 47.393688]]], "type": "MultiLineString"}, "id": "1653", "properties": {}, "type": "Feature"}, {"bbox": [8.538631, 47.41435, 8.539387, 47.415032], "geometry": {"coordinates": [[[8.539387, 47.415022], [8.539298, 47.415032], [8.539211, 47.41435], [8.538631, 47.414377]]], "type": "MultiLineString"}, "id": "1657", "properties": {}, "type": "Feature"}, {"bbox": [8.558474, 47.351998, 8.559405, 47.352587], "geometry": {"coordinates": [[[8.558474, 47.351998], [8.558659, 47.352117], [8.558954, 47.352312], [8.559405, 47.352587]]], "type": "MultiLineString"}, "id": "1658", "properties": {}, "type": "Feature"}, {"bbox": [8.533598, 47.412614, 8.533918, 47.413081], "geometry": {"coordinates": [[[8.533598, 47.413081], [8.533823, 47.413068], [8.533918, 47.412614]]], "type": "MultiLineString"}, "id": "1664", "properties": {}, "type": "Feature"}, {"bbox": [8.499862, 47.423467, 8.499915, 47.423556], "geometry": {"coordinates": [[[8.499915, 47.423556], [8.499862, 47.423467]]], "type": "MultiLineString"}, "id": "1665", "properties": {}, "type": "Feature"}, {"bbox": [8.517373, 47.369199, 8.518133, 47.369387], "geometry": {"coordinates": [[[8.518133, 47.369199], [8.517972, 47.369218], [8.517815, 47.369247], [8.517662, 47.369285], [8.517514, 47.369331], [8.517373, 47.369387]]], "type": "MultiLineString"}, "id": "1667", "properties": {}, "type": "Feature"}, {"bbox": [8.579299, 47.358593, 8.580319, 47.359004], "geometry": {"coordinates": [[[8.579299, 47.358593], [8.579525, 47.358707], [8.580205, 47.358973], [8.580319, 47.359004]]], "type": "MultiLineString"}, "id": "1668", "properties": {}, "type": "Feature"}, {"bbox": [8.50472, 47.422191, 8.50488, 47.422239], "geometry": {"coordinates": [[[8.50488, 47.422191], [8.50472, 47.422239]]], "type": "MultiLineString"}, "id": "1673", "properties": {}, "type": "Feature"}, {"bbox": [8.529853, 47.368834, 8.530337, 47.369225], "geometry": {"coordinates": [[[8.530337, 47.368834], [8.529853, 47.369225]]], "type": "MultiLineString"}, "id": "1674", "properties": {}, "type": "Feature"}, {"bbox": [8.48743, 47.401417, 8.489768, 47.401919], "geometry": {"coordinates": [[[8.489768, 47.401567], [8.489689, 47.401474], [8.489489, 47.401417], [8.489011, 47.401514], [8.487965, 47.401731], [8.48743, 47.401919]]], "type": "MultiLineString"}, "id": "1675", "properties": {}, "type": "Feature"}, {"bbox": [8.56668, 47.367614, 8.567231, 47.368644], "geometry": {"coordinates": [[[8.567231, 47.367614], [8.566956, 47.368138], [8.56668, 47.368644]]], "type": "MultiLineString"}, "id": "1679", "properties": {}, "type": "Feature"}, {"bbox": [8.550061, 47.427592, 8.550168, 47.427988], "geometry": {"coordinates": [[[8.550168, 47.427592], [8.550061, 47.427988]]], "type": "MultiLineString"}, "id": "1680", "properties": {}, "type": "Feature"}, {"bbox": [8.542577, 47.419204, 8.5439, 47.419286], "geometry": {"coordinates": [[[8.5439, 47.419286], [8.542577, 47.419204]]], "type": "MultiLineString"}, "id": "1682", "properties": {}, "type": "Feature"}, {"bbox": [8.480069, 47.380415, 8.480957, 47.381213], "geometry": {"coordinates": [[[8.480957, 47.380415], [8.480661, 47.380683], [8.480282, 47.381026], [8.480069, 47.381213]]], "type": "MultiLineString"}, "id": "1683", "properties": {}, "type": "Feature"}, {"bbox": [8.534154, 47.333976, 8.535009, 47.334301], "geometry": {"coordinates": [[[8.534154, 47.333976], [8.534238, 47.334004], [8.534286, 47.33402], [8.534892, 47.334243], [8.534935, 47.334251], [8.535009, 47.334301]]], "type": "MultiLineString"}, "id": "1684", "properties": {}, "type": "Feature"}, {"bbox": [8.54418, 47.39392, 8.544955, 47.393946], "geometry": {"coordinates": [[[8.54418, 47.393946], [8.544955, 47.39392]]], "type": "MultiLineString"}, "id": "1685", "properties": {}, "type": "Feature"}, {"bbox": [8.479069, 47.365391, 8.492121, 47.369424], "geometry": {"coordinates": [[[8.492121, 47.365391], [8.492093, 47.365408], [8.492083, 47.365414], [8.492074, 47.365419], [8.492064, 47.365423], [8.491998, 47.365457], [8.491969, 47.36547], [8.49194, 47.365482], [8.49191, 47.365493], [8.49188, 47.365502], [8.491849, 47.36551], [8.491817, 47.365516], [8.491785, 47.365521], [8.491752, 47.365524], [8.491719, 47.365526], [8.491685, 47.365528], [8.491648, 47.36553], [8.491612, 47.365532], [8.491575, 47.365534], [8.491545, 47.365536], [8.491516, 47.365537], [8.491486, 47.365537], [8.491486, 47.365537], [8.491486, 47.365537], [8.491441, 47.365539], [8.491397, 47.365543], [8.491352, 47.365549], [8.491316, 47.365555], [8.49128, 47.365563], [8.491244, 47.365571], [8.491201, 47.365582], [8.491158, 47.365595], [8.491116, 47.365608], [8.491059, 47.365628], [8.491001, 47.365647], [8.490944, 47.365666], [8.49088, 47.365687], [8.490815, 47.365708], [8.490751, 47.365729], [8.490688, 47.365747], [8.490625, 47.365763], [8.49056, 47.365777], [8.490389, 47.365808], [8.490307, 47.365824], [8.490225, 47.365839], [8.490144, 47.365854], [8.490102, 47.365862], [8.49006, 47.36587], [8.490018, 47.365878], [8.489964, 47.365888], [8.489909, 47.365895], [8.489853, 47.365901], [8.489777, 47.365907], [8.489701, 47.365911], [8.489624, 47.365914], [8.489624, 47.365914], [8.489623, 47.365914], [8.489579, 47.365916], [8.489534, 47.36592], [8.48949, 47.365927], [8.489378, 47.365959], [8.489345, 47.365974], [8.489312, 47.36599], [8.489279, 47.366007], [8.489237, 47.366027], [8.489194, 47.366045], [8.489149, 47.366062], [8.489092, 47.366079], [8.489033, 47.366093], [8.488973, 47.366104], [8.488922, 47.366111], [8.48887, 47.366117], [8.488819, 47.366123], [8.488779, 47.366129], [8.48874, 47.366135], [8.488701, 47.366143], [8.488544, 47.366176], [8.488387, 47.366209], [8.48823, 47.366242], [8.488201, 47.366249], [8.488174, 47.366257], [8.488148, 47.366267], [8.488148, 47.366267], [8.487886, 47.366389], [8.487886, 47.366389], [8.487878, 47.366393], [8.487871, 47.366397], [8.487864, 47.3664], [8.487742, 47.366476], [8.487704, 47.366499], [8.487629, 47.366548], [8.487551, 47.366595], [8.48747, 47.36664], [8.487407, 47.366676], [8.487345, 47.366714], [8.487286, 47.366753], [8.487237, 47.366784], [8.487186, 47.366813], [8.487132, 47.36684], [8.487096, 47.366855], [8.487058, 47.366869], [8.487019, 47.36688], [8.487003, 47.366884], [8.486986, 47.366886], [8.48697, 47.366888], [8.486953, 47.366888], [8.486936, 47.366887], [8.486919, 47.366886], [8.486906, 47.366883], [8.486893, 47.36688], [8.48688, 47.366876], [8.486867, 47.366872], [8.486856, 47.366867], [8.486845, 47.366861], [8.486834, 47.366854], [8.486783, 47.366821], [8.486729, 47.36679], [8.486673, 47.366761], [8.486645, 47.366748], [8.486616, 47.366737], [8.486585, 47.366728], [8.486553, 47.366721], [8.48652, 47.366716], [8.486486, 47.366712], [8.486367, 47.366721], [8.486261, 47.366761], [8.486184, 47.366806], [8.486109, 47.366852], [8.486036, 47.3669], [8.485992, 47.366932], [8.485951, 47.366967], [8.485914, 47.367003], [8.485805, 47.367083], [8.485768, 47.367099], [8.48573, 47.367113], [8.485689, 47.367124], [8.485628, 47.367138], [8.485565, 47.367148], [8.485502, 47.367154], [8.485437, 47.367158], [8.485419, 47.367158], [8.485401, 47.367157], [8.485382, 47.367154], [8.485365, 47.367151], [8.485347, 47.367147], [8.48533, 47.367142], [8.485314, 47.367135], [8.485299, 47.367128], [8.485258, 47.367106], [8.485218, 47.367084], [8.485178, 47.367061], [8.485156, 47.367047], [8.485133, 47.367033], [8.485112, 47.367019], [8.485095, 47.367008], [8.485077, 47.366998], [8.485057, 47.36699], [8.485037, 47.366982], [8.485016, 47.366976], [8.484994, 47.36697], [8.484974, 47.366967], [8.484953, 47.366964], [8.484932, 47.366963], [8.48491, 47.366963], [8.484889, 47.366964], [8.484868, 47.366966], [8.484848, 47.366969], [8.484827, 47.366974], [8.484808, 47.36698], [8.484774, 47.366992], [8.484741, 47.367006], [8.48471, 47.367022], [8.484682, 47.367039], [8.484655, 47.367058], [8.484632, 47.367076], [8.48461, 47.367095], [8.484589, 47.367113], [8.484569, 47.36713], [8.484546, 47.367146], [8.484522, 47.36716], [8.484496, 47.367172], [8.484468, 47.367183], [8.484449, 47.367189], [8.48443, 47.367194], [8.48441, 47.367198], [8.48439, 47.3672], [8.484307, 47.367207], [8.484224, 47.367212], [8.48414, 47.367215], [8.48414, 47.367215], [8.48414, 47.367215], [8.484103, 47.367215], [8.484066, 47.367213], [8.484029, 47.367209], [8.483993, 47.367202], [8.483958, 47.367194], [8.483924, 47.367184], [8.483898, 47.367174], [8.483872, 47.367163], [8.483848, 47.36715], [8.483826, 47.367137], [8.483805, 47.367121], [8.483786, 47.367105], [8.483731, 47.367053], [8.483675, 47.367002], [8.483619, 47.36695], [8.48361, 47.366942], [8.4836, 47.366935], [8.483589, 47.366929], [8.483577, 47.366923], [8.483565, 47.366919], [8.483552, 47.366915], [8.483538, 47.366911], [8.483524, 47.366909], [8.483481, 47.366903], [8.483438, 47.366898], [8.483395, 47.366894], [8.483358, 47.366891], [8.483321, 47.366891], [8.483283, 47.366892], [8.483247, 47.366896], [8.48321, 47.366902], [8.483167, 47.366911], [8.483124, 47.366923], [8.483082, 47.366937], [8.483019, 47.366961], [8.482959, 47.366988], [8.482901, 47.367018], [8.482832, 47.367055], [8.482762, 47.367092], [8.482693, 47.367129], [8.48266, 47.367148], [8.48263, 47.367169], [8.482603, 47.367192], [8.48258, 47.367217], [8.48256, 47.367242], [8.482513, 47.367313], [8.482472, 47.367384], [8.482434, 47.367456], [8.482417, 47.367487], [8.482396, 47.367518], [8.482372, 47.367546], [8.482344, 47.367574], [8.482313, 47.367599], [8.482279, 47.367623], [8.482243, 47.367645], [8.482203, 47.367665], [8.482162, 47.367682], [8.482118, 47.367696], [8.482072, 47.367708], [8.482025, 47.367716], [8.481938, 47.36773], [8.481851, 47.367746], [8.481766, 47.367765], [8.481685, 47.367784], [8.481603, 47.367802], [8.481521, 47.36782], [8.481468, 47.36783], [8.481413, 47.36784], [8.481359, 47.367848], [8.481322, 47.367853], [8.481287, 47.367861], [8.481252, 47.36787], [8.481222, 47.36788], [8.481207, 47.367885], [8.481192, 47.367891], [8.481178, 47.367897], [8.481048, 47.367954], [8.480917, 47.36801], [8.480785, 47.368064], [8.480668, 47.36811], [8.480549, 47.368156], [8.48043, 47.3682], [8.480377, 47.36822], [8.480326, 47.36824], [8.480275, 47.368262], [8.48025, 47.368274], [8.480227, 47.368288], [8.480206, 47.368303], [8.480187, 47.368319], [8.480171, 47.368337], [8.480157, 47.368355], [8.480104, 47.368437], [8.480056, 47.368519], [8.480013, 47.368603], [8.479997, 47.368634], [8.479981, 47.368665], [8.479965, 47.368696], [8.479952, 47.368717], [8.479937, 47.368737], [8.47992, 47.368756], [8.479899, 47.368774], [8.479858, 47.368807], [8.479813, 47.368838], [8.479766, 47.368866], [8.479727, 47.368887], [8.479687, 47.368907], [8.479645, 47.368925], [8.479336, 47.369052], [8.479264, 47.369084], [8.479197, 47.369121], [8.479135, 47.369161], [8.479121, 47.369172], [8.479108, 47.369184], [8.479097, 47.369196], [8.479088, 47.36921], [8.47908, 47.369223], [8.479075, 47.369237], [8.479071, 47.369252], [8.479069, 47.369266], [8.479073, 47.369281], [8.479078, 47.369295], [8.479085, 47.36931], [8.479094, 47.369323], [8.479105, 47.369336], [8.479118, 47.369349], [8.479132, 47.36936], [8.479148, 47.369371], [8.479165, 47.369381], [8.479183, 47.369389], [8.479202, 47.369397], [8.479212, 47.3694], [8.479221, 47.369403], [8.47923, 47.369407], [8.479253, 47.369413], [8.479275, 47.369418], [8.479299, 47.369421], [8.479323, 47.369423], [8.479347, 47.369424], [8.479371, 47.369424], [8.479394, 47.369422], [8.479418, 47.369418], [8.479441, 47.369414], [8.479481, 47.369404], [8.47952, 47.369392], [8.479558, 47.369379], [8.479791, 47.36929], [8.479792, 47.36929], [8.479848, 47.369268], [8.479904, 47.369246], [8.47996, 47.369224], [8.480051, 47.369188], [8.480143, 47.369152], [8.480234, 47.369116], [8.480278, 47.369098], [8.480323, 47.369082], [8.480368, 47.369065], [8.480434, 47.369043], [8.480502, 47.369023], [8.480572, 47.369005], [8.480617, 47.368997], [8.480664, 47.36899], [8.48071, 47.368984], [8.481115, 47.36892], [8.481115, 47.36892], [8.481115, 47.36892], [8.481152, 47.368912], [8.481188, 47.368902], [8.481222, 47.368889], [8.481274, 47.368869], [8.481325, 47.368846], [8.481374, 47.368822], [8.481414, 47.368803], [8.48153, 47.368739], [8.481579, 47.368705], [8.481625, 47.368668], [8.481667, 47.368629], [8.481675, 47.368622], [8.481683, 47.368614], [8.48169, 47.368606], [8.48169, 47.368606], [8.481691, 47.368606], [8.481725, 47.368571], [8.481763, 47.368539], [8.481805, 47.368508], [8.481824, 47.368497], [8.481844, 47.368487], [8.481866, 47.368478], [8.481888, 47.368471], [8.481912, 47.368465], [8.481912, 47.368465], [8.482019, 47.368438], [8.482127, 47.368414], [8.482237, 47.368392], [8.482284, 47.368384], [8.482332, 47.368379], [8.48238, 47.368377], [8.482429, 47.368377], [8.482477, 47.368381], [8.482524, 47.368387], [8.482571, 47.368395], [8.482617, 47.368406], [8.482661, 47.36842], [8.482703, 47.368437], [8.482981, 47.368553], [8.483127, 47.36866]]], "type": "MultiLineString"}, "id": "1686", "properties": {}, "type": "Feature"}, {"bbox": [8.551986, 47.378722, 8.552554, 47.379177], "geometry": {"coordinates": [[[8.551986, 47.378722], [8.552118, 47.378803], [8.552554, 47.379177]]], "type": "MultiLineString"}, "id": "1687", "properties": {}, "type": "Feature"}, {"bbox": [8.584562, 47.400728, 8.58492, 47.401312], "geometry": {"coordinates": [[[8.584562, 47.400728], [8.584621, 47.40083], [8.58492, 47.401312]]], "type": "MultiLineString"}, "id": "1688", "properties": {}, "type": "Feature"}, {"bbox": [8.491308, 47.380252, 8.492347, 47.380899], "geometry": {"coordinates": [[[8.492347, 47.380252], [8.491988, 47.380503], [8.491515, 47.380801], [8.491308, 47.380899]]], "type": "MultiLineString"}, "id": "1689", "properties": {}, "type": "Feature"}, {"bbox": [8.552497, 47.412194, 8.552534, 47.413026], "geometry": {"coordinates": [[[8.552534, 47.412194], [8.552497, 47.413026]]], "type": "MultiLineString"}, "id": "1691", "properties": {}, "type": "Feature"}, {"bbox": [8.551396, 47.356965, 8.552167, 47.35867], "geometry": {"coordinates": [[[8.551396, 47.35867], [8.551623, 47.358075], [8.551831, 47.357646], [8.551881, 47.357547], [8.552144, 47.357023], [8.552167, 47.356965]]], "type": "MultiLineString"}, "id": "1694", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.348183, 8.52314, 47.349769], "geometry": {"coordinates": [[[8.52314, 47.348191], [8.5231, 47.348183], [8.523067, 47.348208], [8.523056, 47.348221], [8.523052, 47.348236], [8.523037, 47.348369], [8.523098, 47.348412], [8.52225, 47.348963], [8.521, 47.349769]]], "type": "MultiLineString"}, "id": "1695", "properties": {}, "type": "Feature"}, {"bbox": [8.50851, 47.409508, 8.508571, 47.409521], "geometry": {"coordinates": [[[8.50851, 47.409508], [8.508571, 47.409521]]], "type": "MultiLineString"}, "id": "1696", "properties": {}, "type": "Feature"}, {"bbox": [8.50649, 47.401806, 8.506826, 47.402106], "geometry": {"coordinates": [[[8.506826, 47.401806], [8.506714, 47.401919], [8.506569, 47.402059], [8.50649, 47.402106]]], "type": "MultiLineString"}, "id": "1700", "properties": {}, "type": "Feature"}, {"bbox": [8.524956, 47.428734, 8.525794, 47.429056], "geometry": {"coordinates": [[[8.525794, 47.429036], [8.52578, 47.429039], [8.525731, 47.429048], [8.52568, 47.429053], [8.525629, 47.429056], [8.525577, 47.429055], [8.525526, 47.429052], [8.525476, 47.429045], [8.525426, 47.429036], [8.525378, 47.429023], [8.525332, 47.429008], [8.525274, 47.428986], [8.52522, 47.42896], [8.525169, 47.428931], [8.525122, 47.428899], [8.525078, 47.428865], [8.525039, 47.428829], [8.525004, 47.42879], [8.524956, 47.428734]]], "type": "MultiLineString"}, "id": "1702", "properties": {}, "type": "Feature"}, {"bbox": [8.544084, 47.369061, 8.544673, 47.369365], "geometry": {"coordinates": [[[8.544084, 47.369061], [8.544269, 47.369167], [8.544661, 47.36933], [8.544673, 47.369365]]], "type": "MultiLineString"}, "id": "1704", "properties": {}, "type": "Feature"}, {"bbox": [8.529403, 47.39851, 8.53011, 47.39896], "geometry": {"coordinates": [[[8.529892, 47.39896], [8.529878, 47.39892], [8.529813, 47.398881], [8.529744, 47.398846], [8.529671, 47.398814], [8.529595, 47.398787], [8.529515, 47.398763], [8.529503, 47.398761], [8.529491, 47.398758], [8.529479, 47.398754], [8.529468, 47.398749], [8.529458, 47.398744], [8.529448, 47.398738], [8.529439, 47.398732], [8.529431, 47.398725], [8.529424, 47.398718], [8.529418, 47.39871], [8.529413, 47.398702], [8.529408, 47.398694], [8.529405, 47.398685], [8.529403, 47.398676], [8.529403, 47.398668], [8.529403, 47.398659], [8.529404, 47.39865], [8.529407, 47.398642], [8.529411, 47.398633], [8.529415, 47.398625], [8.529421, 47.398617], [8.529428, 47.39861], [8.529436, 47.398603], [8.529444, 47.398596], [8.529453, 47.39859], [8.529464, 47.398584], [8.529474, 47.398578], [8.529485, 47.398571], [8.529497, 47.398566], [8.52951, 47.398561], [8.529523, 47.398557], [8.529537, 47.398554], [8.529551, 47.398551], [8.529565, 47.39855], [8.529579, 47.398549], [8.53011, 47.39851], [8.530104, 47.398524], [8.530049, 47.398634]]], "type": "MultiLineString"}, "id": "1706", "properties": {}, "type": "Feature"}, {"bbox": [8.543278, 47.370783, 8.543443, 47.371019], "geometry": {"coordinates": [[[8.543322, 47.371019], [8.543373, 47.371009], [8.543443, 47.370783], [8.543278, 47.370791]]], "type": "MultiLineString"}, "id": "1709", "properties": {}, "type": "Feature"}, {"bbox": [8.535828, 47.431186, 8.53983, 47.431863], "geometry": {"coordinates": [[[8.53983, 47.431186], [8.539782, 47.431203], [8.539727, 47.431218], [8.539671, 47.43123], [8.539613, 47.431238], [8.539554, 47.431242], [8.5377, 47.431346], [8.537398, 47.431372], [8.537301, 47.431399], [8.537122, 47.431436], [8.53633, 47.431774], [8.536252, 47.431801], [8.536171, 47.431823], [8.536087, 47.43184], [8.536002, 47.431853], [8.535915, 47.43186], [8.535828, 47.431863]]], "type": "MultiLineString"}, "id": "1710", "properties": {}, "type": "Feature"}, {"bbox": [8.468761, 47.412267, 8.475857, 47.413287], "geometry": {"coordinates": [[[8.475857, 47.413287], [8.475794, 47.413278], [8.475233, 47.41321], [8.47506, 47.413189], [8.47479, 47.413156], [8.474626, 47.413136], [8.473582, 47.413019], [8.472556, 47.412879], [8.472024, 47.412799], [8.470556, 47.412589], [8.470032, 47.412511], [8.468761, 47.412267]]], "type": "MultiLineString"}, "id": "1711", "properties": {}, "type": "Feature"}, {"bbox": [8.478315, 47.41447, 8.480146, 47.415032], "geometry": {"coordinates": [[[8.480146, 47.41447], [8.480103, 47.414521], [8.480102, 47.414523], [8.4801, 47.414525], [8.480098, 47.414526], [8.480096, 47.414528], [8.480094, 47.414529], [8.480092, 47.414531], [8.48009, 47.414532], [8.480087, 47.414533], [8.480084, 47.414533], [8.480081, 47.414534], [8.480079, 47.414534], [8.480076, 47.414535], [8.480073, 47.414535], [8.48007, 47.414535], [8.479983, 47.414534], [8.479973, 47.414535], [8.479963, 47.414536], [8.479954, 47.414538], [8.479944, 47.41454], [8.479935, 47.414543], [8.479926, 47.414546], [8.479918, 47.41455], [8.47991, 47.414554], [8.479903, 47.414559], [8.479862, 47.414589], [8.479852, 47.414597], [8.479841, 47.414604], [8.47983, 47.41461], [8.479817, 47.414615], [8.479753, 47.414642], [8.479741, 47.414647], [8.479731, 47.414653], [8.479721, 47.41466], [8.479712, 47.414667], [8.479705, 47.414675], [8.479698, 47.414683], [8.4795, 47.414956], [8.479494, 47.414963], [8.479488, 47.41497], [8.479481, 47.414975], [8.479473, 47.414981], [8.479464, 47.414986], [8.479455, 47.41499], [8.479445, 47.414994], [8.479435, 47.414998], [8.479424, 47.415], [8.479292, 47.415032], [8.479212, 47.415007], [8.478992, 47.414962], [8.478947, 47.414951], [8.478882, 47.414944], [8.478594, 47.414902], [8.47845, 47.414837], [8.478315, 47.414755]]], "type": "MultiLineString"}, "id": "1712", "properties": {}, "type": "Feature"}, {"bbox": [8.524956, 47.404614, 8.525594, 47.407465], "geometry": {"coordinates": [[[8.525556, 47.404614], [8.525542, 47.404694], [8.525537, 47.404723], [8.525535, 47.404753], [8.525538, 47.404783], [8.525544, 47.404813], [8.525588, 47.40498], [8.525592, 47.405], [8.525594, 47.40502], [8.525592, 47.40504], [8.525588, 47.40506], [8.525581, 47.405079], [8.525572, 47.405098], [8.525561, 47.405116], [8.525561, 47.405116], [8.525533, 47.405155], [8.525469, 47.405243], [8.525447, 47.405272], [8.525422, 47.405299], [8.525394, 47.405326], [8.525364, 47.405355], [8.525338, 47.405385], [8.525315, 47.405417], [8.525285, 47.405461], [8.525252, 47.405505], [8.525217, 47.405548], [8.525199, 47.405571], [8.525182, 47.405595], [8.525168, 47.40562], [8.525168, 47.40562], [8.525096, 47.40575], [8.525003, 47.405895], [8.524985, 47.405924], [8.524972, 47.405955], [8.524962, 47.405986], [8.524957, 47.406018], [8.524956, 47.40605], [8.524959, 47.406082], [8.524966, 47.406114], [8.524977, 47.406145], [8.524993, 47.406175], [8.525012, 47.406205], [8.525035, 47.406233], [8.525062, 47.406259], [8.525092, 47.406284], [8.525124, 47.406307], [8.525168, 47.406336], [8.525209, 47.406367], [8.525245, 47.406401], [8.525277, 47.406437], [8.525313, 47.406518], [8.525345, 47.406601], [8.525373, 47.406685], [8.525375, 47.406699], [8.525376, 47.406714], [8.525374, 47.406729], [8.525371, 47.406744], [8.525366, 47.406758], [8.525359, 47.406773], [8.525224, 47.407002], [8.525096, 47.407232], [8.524977, 47.407465]]], "type": "MultiLineString"}, "id": "1715", "properties": {}, "type": "Feature"}, {"bbox": [8.52578, 47.429039, 8.530476, 47.43017], "geometry": {"coordinates": [[[8.530476, 47.429609], [8.530378, 47.429607], [8.530358, 47.429613], [8.530262, 47.429636], [8.530244, 47.42964], [8.530224, 47.429643], [8.530205, 47.429644], [8.530185, 47.429644], [8.529902, 47.42964], [8.529885, 47.429639], [8.529868, 47.429636], [8.529851, 47.429633], [8.529817, 47.429626], [8.529782, 47.429621], [8.529747, 47.429618], [8.529711, 47.429616], [8.529675, 47.429617], [8.529511, 47.429626], [8.529492, 47.429627], [8.529474, 47.42963], [8.529456, 47.429633], [8.529438, 47.429637], [8.529305, 47.429652], [8.529243, 47.42965], [8.52923, 47.42965], [8.529218, 47.429651], [8.529205, 47.429652], [8.529193, 47.429654], [8.529181, 47.429656], [8.52917, 47.42966], [8.528749, 47.429796], [8.528738, 47.4298], [8.528728, 47.429804], [8.528718, 47.429809], [8.52871, 47.429815], [8.528702, 47.429821], [8.528695, 47.429828], [8.528648, 47.429877], [8.528641, 47.429883], [8.528635, 47.429889], [8.528627, 47.429894], [8.528619, 47.429899], [8.52861, 47.429903], [8.528601, 47.429906], [8.528401, 47.429975], [8.528359, 47.429988], [8.528315, 47.429999], [8.52827, 47.430008], [8.528224, 47.430014], [8.52817, 47.430019], [8.528115, 47.430023], [8.52806, 47.430026], [8.527926, 47.430031], [8.527906, 47.430031], [8.527802, 47.430024], [8.527768, 47.430023], [8.527735, 47.430024], [8.527702, 47.430027], [8.52767, 47.430032], [8.527463, 47.43007], [8.527437, 47.430074], [8.52741, 47.430078], [8.527384, 47.430081], [8.527359, 47.430083], [8.527334, 47.430088], [8.52731, 47.430094], [8.527287, 47.430101], [8.52714, 47.430153], [8.527122, 47.430159], [8.527104, 47.430163], [8.527086, 47.430167], [8.527067, 47.430169], [8.527048, 47.43017], [8.527028, 47.43017], [8.527009, 47.430169], [8.52699, 47.430167], [8.526842, 47.430144], [8.526824, 47.430141], [8.526805, 47.430136], [8.526788, 47.43013], [8.526771, 47.430124], [8.526756, 47.430116], [8.526379, 47.429907], [8.526349, 47.429889], [8.526322, 47.429869], [8.526297, 47.429848], [8.52619, 47.429746], [8.526184, 47.429741], [8.526178, 47.429736], [8.526171, 47.429732], [8.526164, 47.429729], [8.526157, 47.429725], [8.526149, 47.429723], [8.526141, 47.42972], [8.526132, 47.429719], [8.526118, 47.429716], [8.526103, 47.429712], [8.52609, 47.429707], [8.526077, 47.429702], [8.525914, 47.429633], [8.525861, 47.429574], [8.525838, 47.429418], [8.525837, 47.429406], [8.525838, 47.429393], [8.52584, 47.429381], [8.525844, 47.429369], [8.525846, 47.429362], [8.525847, 47.429354], [8.525847, 47.429347], [8.525847, 47.42934], [8.525845, 47.429332], [8.525842, 47.429325], [8.525839, 47.429318], [8.525835, 47.429311], [8.525827, 47.4293], [8.525821, 47.429288], [8.525817, 47.429275], [8.525814, 47.429263], [8.52578, 47.429039]]], "type": "MultiLineString"}, "id": "1716", "properties": {}, "type": "Feature"}, {"bbox": [8.567888, 47.348887, 8.570545, 47.349993], "geometry": {"coordinates": [[[8.567888, 47.349993], [8.568411, 47.349314], [8.568656, 47.348984], [8.568707, 47.348961], [8.568761, 47.34894], [8.568817, 47.348922], [8.568876, 47.348908], [8.568935, 47.348898], [8.568997, 47.348891], [8.569058, 47.348887], [8.56912, 47.348887], [8.569182, 47.348891], [8.569243, 47.348899], [8.569303, 47.34891], [8.569361, 47.348924], [8.569417, 47.348942], [8.569761, 47.349057], [8.569913, 47.348887], [8.570545, 47.349109]]], "type": "MultiLineString"}, "id": "1717", "properties": {}, "type": "Feature"}, {"bbox": [8.579742, 47.372468, 8.593184, 47.374858], "geometry": {"coordinates": [[[8.579742, 47.374595], [8.579763, 47.374586], [8.579785, 47.374579], [8.579807, 47.374573], [8.57983, 47.374569], [8.579854, 47.374565], [8.579877, 47.374563], [8.579901, 47.374563], [8.57999, 47.374565], [8.580079, 47.37457], [8.580168, 47.374578], [8.581357, 47.374771], [8.581645, 47.374817], [8.581937, 47.374846], [8.582232, 47.374858], [8.582527, 47.374853], [8.582821, 47.374831], [8.583111, 47.374793], [8.583395, 47.374738], [8.584349, 47.374566], [8.58476, 47.374473], [8.58516, 47.374363], [8.585549, 47.374235], [8.585616, 47.374209], [8.585678, 47.37418], [8.585737, 47.374147], [8.585792, 47.374111], [8.585938, 47.373946], [8.587143, 47.372836], [8.587194, 47.372799], [8.587249, 47.372765], [8.587307, 47.372734], [8.587398, 47.372726], [8.587489, 47.372719], [8.58792, 47.372724], [8.588809, 47.372753], [8.589083, 47.372754], [8.589331, 47.372723], [8.589437, 47.372704], [8.590258, 47.372495], [8.590368, 47.37248], [8.590478, 47.372471], [8.59059, 47.372468], [8.590701, 47.372472], [8.590767, 47.372472], [8.591098, 47.37247], [8.591265, 47.372476], [8.59145, 47.372482], [8.591633, 47.372498], [8.591814, 47.372525], [8.59199, 47.372563], [8.592161, 47.372611], [8.592326, 47.372669], [8.592482, 47.372736], [8.592629, 47.372813], [8.592766, 47.372897], [8.592794, 47.372915], [8.59282, 47.372935], [8.592844, 47.372956], [8.592864, 47.372979], [8.592881, 47.373003], [8.592895, 47.373028], [8.592906, 47.373053], [8.592913, 47.373079], [8.592917, 47.373105], [8.592952, 47.373374], [8.592957, 47.373401], [8.592964, 47.373427], [8.592975, 47.373453], [8.592989, 47.373478], [8.593007, 47.373502], [8.593027, 47.373524], [8.59305, 47.373546], [8.593075, 47.373566], [8.593104, 47.373585], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "1721", "properties": {}, "type": "Feature"}, {"bbox": [8.533998, 47.343412, 8.534644, 47.3438], "geometry": {"coordinates": [[[8.534644, 47.3438], [8.533998, 47.343412]]], "type": "MultiLineString"}, "id": "1722", "properties": {}, "type": "Feature"}, {"bbox": [8.54891, 47.414027, 8.551709, 47.417037], "geometry": {"coordinates": [[[8.548921, 47.414027], [8.54891, 47.41423], [8.549015, 47.414416], [8.549066, 47.4148], [8.549088, 47.41495], [8.54915, 47.415076], [8.549181, 47.415179], [8.5492, 47.415259], [8.549239, 47.415413], [8.549257, 47.415487], [8.549285, 47.415561], [8.549323, 47.415632], [8.549371, 47.4157], [8.549428, 47.415765], [8.549437, 47.415775], [8.549463, 47.415803], [8.54991, 47.41629], [8.55039, 47.416806], [8.550453, 47.416875], [8.550455, 47.416877], [8.550478, 47.416901], [8.550505, 47.416924], [8.550534, 47.416945], [8.550567, 47.416965], [8.550601, 47.416982], [8.550638, 47.416997], [8.550676, 47.41701], [8.550716, 47.41702], [8.550757, 47.417028], [8.5508, 47.417034], [8.550842, 47.417037], [8.550885, 47.417037], [8.551407, 47.417033], [8.551533, 47.417032], [8.55166, 47.417005], [8.551709, 47.416994]]], "type": "MultiLineString"}, "id": "1726", "properties": {}, "type": "Feature"}, {"bbox": [8.481624, 47.385164, 8.481904, 47.38552], "geometry": {"coordinates": [[[8.481624, 47.38552], [8.481653, 47.385513], [8.48168, 47.385504], [8.481707, 47.385494], [8.481731, 47.385483], [8.481755, 47.385469], [8.481776, 47.385455], [8.481796, 47.385439], [8.481813, 47.385422], [8.481828, 47.385404], [8.481841, 47.385386], [8.481851, 47.385366], [8.481858, 47.385347], [8.481863, 47.385326], [8.481875, 47.385272], [8.481888, 47.385218], [8.481904, 47.385164]]], "type": "MultiLineString"}, "id": "1730", "properties": {}, "type": "Feature"}, {"bbox": [8.513107, 47.391731, 8.519082, 47.394196], "geometry": {"coordinates": [[[8.518876, 47.391731], [8.519082, 47.392074], [8.51908, 47.392179], [8.519036, 47.392204], [8.518114, 47.392429], [8.517738, 47.392536], [8.517153, 47.392733], [8.516899, 47.392814], [8.516735, 47.392888], [8.515895, 47.393193], [8.51572, 47.393251], [8.5148, 47.393617], [8.51462, 47.393682], [8.514444, 47.39375], [8.51427, 47.393822], [8.513929, 47.393968], [8.513924, 47.39397], [8.513918, 47.393972], [8.513912, 47.393973], [8.513906, 47.393974], [8.513899, 47.393974], [8.513893, 47.393975], [8.513887, 47.393975], [8.51388, 47.393974], [8.513874, 47.393973], [8.513868, 47.393972], [8.513862, 47.39397], [8.513857, 47.393968], [8.513851, 47.393966], [8.513846, 47.393963], [8.513842, 47.39396], [8.513838, 47.393957], [8.513834, 47.393954], [8.51383, 47.393951], [8.513825, 47.393949], [8.51382, 47.393947], [8.513815, 47.393945], [8.51381, 47.393943], [8.513804, 47.393942], [8.513799, 47.393941], [8.513793, 47.393941], [8.513787, 47.39394], [8.513781, 47.39394], [8.513775, 47.393941], [8.51377, 47.393942], [8.513764, 47.393943], [8.513758, 47.393944], [8.513648, 47.393979], [8.51364, 47.393983], [8.513634, 47.393986], [8.513628, 47.393991], [8.513622, 47.393995], [8.513618, 47.394], [8.513614, 47.394005], [8.51361, 47.394011], [8.513607, 47.394016], [8.513605, 47.394022], [8.513604, 47.394028], [8.513604, 47.394034], [8.513604, 47.39404], [8.513606, 47.394046], [8.513606, 47.394049], [8.513605, 47.394053], [8.513604, 47.394057], [8.513603, 47.394061], [8.513601, 47.394064], [8.513599, 47.394068], [8.513596, 47.394071], [8.513593, 47.394074], [8.51359, 47.394077], [8.513586, 47.39408], [8.513582, 47.394082], [8.513577, 47.394085], [8.513573, 47.394087], [8.513568, 47.394088], [8.513562, 47.39409], [8.513557, 47.394091], [8.513552, 47.394092], [8.513406, 47.394131], [8.513258, 47.394166], [8.513107, 47.394196]]], "type": "MultiLineString"}, "id": "1731", "properties": {}, "type": "Feature"}, {"bbox": [8.488447, 47.351215, 8.490099, 47.352545], "geometry": {"coordinates": [[[8.490099, 47.351215], [8.490092, 47.351215], [8.490084, 47.351215], [8.490077, 47.351216], [8.490069, 47.351217], [8.490062, 47.351219], [8.490055, 47.351221], [8.490048, 47.351223], [8.490042, 47.351226], [8.490036, 47.351229], [8.490031, 47.351233], [8.490026, 47.351237], [8.490021, 47.351244], [8.490017, 47.351251], [8.490014, 47.351259], [8.490012, 47.351266], [8.490011, 47.351274], [8.490011, 47.351282], [8.490012, 47.351288], [8.490013, 47.351294], [8.490014, 47.3513], [8.490013, 47.351306], [8.490012, 47.351312], [8.49001, 47.351318], [8.490007, 47.351324], [8.490003, 47.351329], [8.489986, 47.351346], [8.489972, 47.351364], [8.48996, 47.351382], [8.489951, 47.351402], [8.489945, 47.351421], [8.489945, 47.351421], [8.489945, 47.351422], [8.48993, 47.351462], [8.489911, 47.351501], [8.489887, 47.351539], [8.489858, 47.351576], [8.489825, 47.351611], [8.489787, 47.351643], [8.48972, 47.351684], [8.489656, 47.351725], [8.489595, 47.351769], [8.489529, 47.351821], [8.489467, 47.351875], [8.489411, 47.351932], [8.489377, 47.351979], [8.489341, 47.352025], [8.489301, 47.352069], [8.489288, 47.352079], [8.489273, 47.352088], [8.489258, 47.352096], [8.489241, 47.352103], [8.489224, 47.352109], [8.489206, 47.352113], [8.489187, 47.352117], [8.489168, 47.35212], [8.489149, 47.352121], [8.489129, 47.352121], [8.48911, 47.35212], [8.489091, 47.352118], [8.489141, 47.352174], [8.489148, 47.352177], [8.489154, 47.352181], [8.489159, 47.352185], [8.489164, 47.35219], [8.489169, 47.352194], [8.489172, 47.352199], [8.489175, 47.352205], [8.489178, 47.35221], [8.489179, 47.352216], [8.489184, 47.35224], [8.489185, 47.352265], [8.489182, 47.352289], [8.489176, 47.352313], [8.489175, 47.352325], [8.489176, 47.352336], [8.489178, 47.352347], [8.489182, 47.352358], [8.489187, 47.352369], [8.489187, 47.352369], [8.489207, 47.352403], [8.489209, 47.352408], [8.489211, 47.352414], [8.489212, 47.352419], [8.489213, 47.352425], [8.489212, 47.35243], [8.489211, 47.352436], [8.48921, 47.352441], [8.489207, 47.352446], [8.489204, 47.352452], [8.4892, 47.352457], [8.489196, 47.352461], [8.489191, 47.352466], [8.489186, 47.35247], [8.48918, 47.352474], [8.489173, 47.352477], [8.489167, 47.35248], [8.489159, 47.352483], [8.489152, 47.352485], [8.489144, 47.352487], [8.489136, 47.352489], [8.489118, 47.352493], [8.489101, 47.352499], [8.489084, 47.352506], [8.489069, 47.352514], [8.489054, 47.352523], [8.489042, 47.352529], [8.489029, 47.352534], [8.489016, 47.352538], [8.489002, 47.352541], [8.488988, 47.352543], [8.488974, 47.352545], [8.488959, 47.352545], [8.488944, 47.352545], [8.48893, 47.352544], [8.488916, 47.352542], [8.488902, 47.352539], [8.488888, 47.352535], [8.488876, 47.35253], [8.488863, 47.352525], [8.488845, 47.352517], [8.488826, 47.35251], [8.488807, 47.352504], [8.488786, 47.3525], [8.488765, 47.352496], [8.488755, 47.352496], [8.488745, 47.352496], [8.488735, 47.352495], [8.488726, 47.352493], [8.488716, 47.352491], [8.488707, 47.352488], [8.488698, 47.352485], [8.48869, 47.352481], [8.488682, 47.352477], [8.488674, 47.352473], [8.488668, 47.352468], [8.48854, 47.352391], [8.488521, 47.352393], [8.488502, 47.352395], [8.488483, 47.352399], [8.488465, 47.352403], [8.488447, 47.352409]]], "type": "MultiLineString"}, "id": "1734", "properties": {}, "type": "Feature"}, {"bbox": [8.52738, 47.41442, 8.528176, 47.414532], "geometry": {"coordinates": [[[8.528176, 47.41442], [8.528141, 47.414423], [8.52738, 47.414532]]], "type": "MultiLineString"}, "id": "1735", "properties": {}, "type": "Feature"}, {"bbox": [8.536132, 47.406468, 8.537944, 47.406856], "geometry": {"coordinates": [[[8.537944, 47.406501], [8.537787, 47.406468], [8.537305, 47.406574], [8.536213, 47.406812], [8.536132, 47.406856]]], "type": "MultiLineString"}, "id": "1737", "properties": {}, "type": "Feature"}, {"bbox": [8.490942, 47.416802, 8.494306, 47.418888], "geometry": {"coordinates": [[[8.494306, 47.416802], [8.494254, 47.416827], [8.494182, 47.416868], [8.492185, 47.418073], [8.491955, 47.418215], [8.491931, 47.418229], [8.491905, 47.418241], [8.491879, 47.418252], [8.491792, 47.418283], [8.491792, 47.418283], [8.491734, 47.418307], [8.49168, 47.418335], [8.491629, 47.418366], [8.491584, 47.4184], [8.491543, 47.418437], [8.491508, 47.418476], [8.491463, 47.418528], [8.491413, 47.418577], [8.491359, 47.418625], [8.491198, 47.418759], [8.491168, 47.418782], [8.491136, 47.418802], [8.491101, 47.418821], [8.491063, 47.418838], [8.490942, 47.418888]]], "type": "MultiLineString"}, "id": "1738", "properties": {}, "type": "Feature"}, {"bbox": [8.583386, 47.355952, 8.583901, 47.356072], "geometry": {"coordinates": [[[8.583386, 47.355952], [8.583497, 47.355964], [8.58381, 47.356052], [8.583901, 47.356072]]], "type": "MultiLineString"}, "id": "1739", "properties": {}, "type": "Feature"}, {"bbox": [8.602469, 47.356908, 8.609922, 47.359326], "geometry": {"coordinates": [[[8.602469, 47.359326], [8.602563, 47.359154], [8.602662, 47.359003], [8.602822, 47.358773], [8.602867, 47.358705], [8.602911, 47.358636], [8.602953, 47.358567], [8.60298, 47.358522], [8.603008, 47.358478], [8.603036, 47.358434], [8.603051, 47.358412], [8.603065, 47.35839], [8.60308, 47.358369], [8.603113, 47.358324], [8.603148, 47.358281], [8.603187, 47.358239], [8.603257, 47.358167], [8.603328, 47.358097], [8.603402, 47.358028], [8.603402, 47.358028], [8.603452, 47.357982], [8.603452, 47.357982], [8.603587, 47.35786], [8.603726, 47.35774], [8.603867, 47.357622], [8.603931, 47.35757], [8.603999, 47.357522], [8.604072, 47.357476], [8.604072, 47.357476], [8.604128, 47.357446], [8.604187, 47.35742], [8.604248, 47.357396], [8.604293, 47.357381], [8.604338, 47.357369], [8.604386, 47.357359], [8.604513, 47.35733], [8.604641, 47.357302], [8.60477, 47.357275], [8.605159, 47.357209], [8.605555, 47.357166], [8.605956, 47.357149], [8.607183, 47.357109], [8.608028, 47.357115], [8.608205, 47.357118], [8.608382, 47.357126], [8.608558, 47.357139], [8.608619, 47.357146], [8.60868, 47.357149], [8.608742, 47.357148], [8.608804, 47.357144], [8.608865, 47.357136], [8.608924, 47.357124], [8.608982, 47.357108], [8.609464, 47.356965], [8.609536, 47.356944], [8.609611, 47.356928], [8.609688, 47.356917], [8.609766, 47.35691], [8.609844, 47.356908], [8.609922, 47.35691]]], "type": "MultiLineString"}, "id": "1740", "properties": {}, "type": "Feature"}, {"bbox": [8.48976, 47.403773, 8.490019, 47.404375], "geometry": {"coordinates": [[[8.48976, 47.403773], [8.489766, 47.403778], [8.489776, 47.403784], [8.489787, 47.403789], [8.489798, 47.403794], [8.48981, 47.403798], [8.489822, 47.403802], [8.489835, 47.403805], [8.489848, 47.403807], [8.489861, 47.403808], [8.489875, 47.403808], [8.489888, 47.403808], [8.489901, 47.403806], [8.489935, 47.404043], [8.489989, 47.404314], [8.489998, 47.404333], [8.490019, 47.404375]]], "type": "MultiLineString"}, "id": "1741", "properties": {}, "type": "Feature"}, {"bbox": [8.508495, 47.362841, 8.511656, 47.364156], "geometry": {"coordinates": [[[8.511656, 47.364156], [8.510383, 47.363764], [8.509747, 47.363507], [8.509291, 47.363294], [8.508852, 47.363081], [8.508495, 47.362841]]], "type": "MultiLineString"}, "id": "1742", "properties": {}, "type": "Feature"}, {"bbox": [8.526681, 47.365485, 8.528983, 47.367448], "geometry": {"coordinates": [[[8.528947, 47.367448], [8.528983, 47.367376], [8.528699, 47.367275], [8.528619, 47.367247], [8.528543, 47.367214], [8.528472, 47.367177], [8.528406, 47.367136], [8.528345, 47.367091], [8.52829, 47.367043], [8.528242, 47.366991], [8.528201, 47.366937], [8.528167, 47.366881], [8.52814, 47.366801], [8.528102, 47.366723], [8.528054, 47.366648], [8.527997, 47.366576], [8.527514, 47.365968], [8.527472, 47.365914], [8.527423, 47.365863], [8.527369, 47.365815], [8.527308, 47.36577], [8.527241, 47.365729], [8.52717, 47.365693], [8.526861, 47.365545], [8.526681, 47.365485]]], "type": "MultiLineString"}, "id": "1743", "properties": {}, "type": "Feature"}, {"bbox": [8.579633, 47.357136, 8.580269, 47.35846], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580269, 47.357238], [8.580258, 47.35734], [8.580234, 47.357441], [8.580197, 47.35754], [8.580147, 47.357636], [8.580085, 47.357729], [8.579786, 47.35811], [8.579644, 47.35834], [8.579633, 47.358391], [8.579649, 47.35846]]], "type": "MultiLineString"}, "id": "1744", "properties": {}, "type": "Feature"}, {"bbox": [8.557247, 47.358921, 8.563315, 47.359534], "geometry": {"coordinates": [[[8.557247, 47.358974], [8.557488, 47.358921], [8.558078, 47.359172], [8.558259, 47.359236], [8.558409, 47.359276], [8.558708, 47.359373], [8.559326, 47.359446], [8.56013, 47.359532], [8.560185, 47.359534], [8.560239, 47.359533], [8.560292, 47.359529], [8.560346, 47.359522], [8.560398, 47.359511], [8.560448, 47.359498], [8.560497, 47.359482], [8.560544, 47.359464], [8.560708, 47.359378], [8.560726, 47.35937], [8.560744, 47.359362], [8.560763, 47.359356], [8.560782, 47.359351], [8.560802, 47.359347], [8.561031, 47.359302], [8.561069, 47.3593], [8.561108, 47.359301], [8.561146, 47.359305], [8.561183, 47.359311], [8.56122, 47.359318], [8.561255, 47.359329], [8.561289, 47.359341], [8.561322, 47.359355], [8.561352, 47.359371], [8.56138, 47.359389], [8.561406, 47.359408], [8.561459, 47.359429], [8.561572, 47.359415], [8.561682, 47.359507], [8.562358, 47.35941], [8.562514, 47.359352], [8.562754, 47.359312], [8.563157, 47.359192], [8.563315, 47.359155]]], "type": "MultiLineString"}, "id": "1747", "properties": {}, "type": "Feature"}, {"bbox": [8.481082, 47.405132, 8.48188, 47.405949], "geometry": {"coordinates": [[[8.48188, 47.405132], [8.481824, 47.405357], [8.481607, 47.405629], [8.481097, 47.405795], [8.481082, 47.405949]]], "type": "MultiLineString"}, "id": "1748", "properties": {}, "type": "Feature"}, {"bbox": [8.466911, 47.366529, 8.4739, 47.368805], "geometry": {"coordinates": [[[8.4739, 47.368805], [8.473886, 47.368735], [8.473862, 47.368694], [8.473837, 47.368654], [8.473809, 47.368614], [8.473786, 47.368582], [8.47376, 47.368552], [8.473733, 47.368521], [8.473702, 47.368491], [8.473666, 47.368462], [8.473627, 47.368436], [8.473556, 47.368395], [8.473483, 47.368356], [8.473408, 47.368318], [8.47332, 47.368279], [8.473229, 47.368244], [8.473134, 47.368213], [8.472902, 47.368144], [8.472671, 47.368073], [8.47244, 47.368002], [8.472239, 47.367938], [8.472039, 47.367874], [8.471839, 47.36781], [8.471702, 47.367765], [8.471566, 47.367718], [8.471431, 47.367669], [8.47121, 47.367588], [8.471131, 47.367562], [8.47105, 47.367541], [8.470967, 47.367523], [8.470882, 47.36751], [8.470769, 47.367496], [8.470656, 47.367481], [8.470544, 47.367465], [8.469806, 47.367358], [8.469668, 47.367337], [8.469532, 47.367314], [8.469396, 47.367287], [8.46919, 47.367242], [8.468988, 47.367191], [8.468789, 47.367133], [8.468694, 47.367104], [8.468599, 47.367073], [8.468505, 47.367042], [8.468408, 47.367008], [8.4683, 47.366969], [8.468194, 47.366929], [8.468088, 47.366888], [8.467957, 47.366836], [8.467826, 47.366785], [8.467693, 47.366735], [8.467411, 47.366628], [8.467337, 47.366602], [8.467261, 47.36658], [8.467182, 47.366562], [8.467153, 47.366556], [8.467122, 47.366551], [8.467092, 47.366547], [8.466911, 47.366529]]], "type": "MultiLineString"}, "id": "1754", "properties": {}, "type": "Feature"}, {"bbox": [8.520252, 47.33266, 8.521331, 47.336977], "geometry": {"coordinates": [[[8.520582, 47.336977], [8.520562, 47.336732], [8.520561, 47.336656], [8.520562, 47.33652], [8.520569, 47.336427], [8.520609, 47.33624], [8.520631, 47.336176], [8.520711, 47.335962], [8.520813, 47.335753], [8.520937, 47.335549], [8.521062, 47.335358], [8.521153, 47.335162], [8.521215, 47.334903], [8.521228, 47.334777], [8.521228, 47.334777], [8.521237, 47.334729], [8.521248, 47.334682], [8.521261, 47.334635], [8.521261, 47.334635], [8.521327, 47.334415], [8.52133, 47.334402], [8.521331, 47.334389], [8.521331, 47.334376], [8.521328, 47.334363], [8.521252, 47.334071], [8.5212, 47.333946], [8.521082, 47.333754], [8.520969, 47.333569], [8.520897, 47.333441], [8.520826, 47.333327], [8.520755, 47.33323], [8.520642, 47.333095], [8.520389, 47.332814], [8.520293, 47.332706], [8.520252, 47.33266]]], "type": "MultiLineString"}, "id": "1755", "properties": {}, "type": "Feature"}, {"bbox": [8.539418, 47.391994, 8.540486, 47.392633], "geometry": {"coordinates": [[[8.539418, 47.391994], [8.539638, 47.392119], [8.539648, 47.392127], [8.539656, 47.392135], [8.539664, 47.392143], [8.53967, 47.392152], [8.539676, 47.392162], [8.53968, 47.392172], [8.539683, 47.392181], [8.539684, 47.392191], [8.539684, 47.392202], [8.539683, 47.392212], [8.539681, 47.392221], [8.539654, 47.392332], [8.539878, 47.39245], [8.539862, 47.39254], [8.540486, 47.392633]]], "type": "MultiLineString"}, "id": "1762", "properties": {}, "type": "Feature"}, {"bbox": [8.552721, 47.395568, 8.562674, 47.399967], "geometry": {"coordinates": [[[8.552721, 47.395568], [8.552852, 47.395654], [8.55328, 47.395962], [8.55328, 47.395963], [8.553363, 47.396028], [8.55344, 47.396096], [8.55351, 47.396167], [8.554036, 47.396698], [8.554169, 47.396835], [8.554235, 47.396902], [8.554456, 47.397126], [8.555162, 47.397834], [8.555246, 47.397904], [8.555339, 47.397967], [8.555441, 47.398024], [8.555551, 47.398074], [8.555939, 47.398227], [8.555939, 47.398227], [8.556072, 47.398285], [8.556203, 47.398347], [8.556329, 47.398412], [8.556582, 47.398546], [8.556823, 47.398674], [8.557374, 47.398963], [8.557459, 47.399008], [8.557593, 47.399078], [8.557647, 47.399104], [8.557703, 47.399127], [8.557761, 47.399148], [8.557792, 47.399159], [8.557821, 47.399171], [8.557848, 47.399185], [8.557873, 47.399201], [8.557896, 47.399219], [8.557917, 47.399237], [8.557944, 47.39926], [8.557974, 47.399282], [8.558007, 47.399302], [8.558007, 47.399302], [8.558519, 47.399574], [8.55852, 47.399574], [8.55852, 47.399575], [8.558572, 47.399604], [8.558625, 47.399632], [8.55868, 47.399658], [8.55868, 47.399658], [8.558681, 47.399658], [8.558755, 47.399694], [8.558834, 47.399725], [8.558916, 47.399751], [8.559, 47.399773], [8.559087, 47.399791], [8.559088, 47.399791], [8.559287, 47.399831], [8.559684, 47.399912], [8.559771, 47.399925], [8.559859, 47.399934], [8.559948, 47.399937], [8.560036, 47.399936], [8.560125, 47.399929], [8.560212, 47.399918], [8.560297, 47.399902], [8.560475, 47.399854], [8.560653, 47.399807], [8.560831, 47.399759], [8.56095, 47.399727], [8.561072, 47.3997], [8.561197, 47.39968], [8.561472, 47.39964], [8.561539, 47.39963], [8.562086, 47.399551], [8.562167, 47.399539], [8.562203, 47.399535], [8.56224, 47.399533], [8.562277, 47.399533], [8.562314, 47.399535], [8.56235, 47.39954], [8.562386, 47.399547], [8.56242, 47.399556], [8.562454, 47.399567], [8.562485, 47.399579], [8.562515, 47.399594], [8.562543, 47.399611], [8.562569, 47.399629], [8.562592, 47.399648], [8.562613, 47.399669], [8.56263, 47.39969], [8.562645, 47.399713], [8.562657, 47.399736], [8.562665, 47.399759], [8.562671, 47.399783], [8.562674, 47.399807], [8.562674, 47.399832], [8.56267, 47.399856], [8.562648, 47.399967]]], "type": "MultiLineString"}, "id": "1763", "properties": {}, "type": "Feature"}, {"bbox": [8.489473, 47.412472, 8.492633, 47.416769], "geometry": {"coordinates": [[[8.492633, 47.412472], [8.492492, 47.412833], [8.492485, 47.412905], [8.49208, 47.413692], [8.492037, 47.413773], [8.491991, 47.413853], [8.491942, 47.413932], [8.491688, 47.414332], [8.491636, 47.414416], [8.491587, 47.414501], [8.491541, 47.414586], [8.491281, 47.415088], [8.491173, 47.415358], [8.491095, 47.415583], [8.491082, 47.415615], [8.491064, 47.415647], [8.491042, 47.415677], [8.491016, 47.415706], [8.490986, 47.415733], [8.490916, 47.415793], [8.490849, 47.415855], [8.490786, 47.415919], [8.490429, 47.416292], [8.49039, 47.416329], [8.490346, 47.416363], [8.490299, 47.416395], [8.4899, 47.416638], [8.489853, 47.416664], [8.489803, 47.416686], [8.48975, 47.416706], [8.489585, 47.416759], [8.489473, 47.416769]]], "type": "MultiLineString"}, "id": "1764", "properties": {}, "type": "Feature"}, {"bbox": [8.469507, 47.364213, 8.475451, 47.367762], "geometry": {"coordinates": [[[8.475309, 47.367762], [8.475338, 47.367569], [8.475451, 47.366883], [8.475451, 47.366865], [8.475451, 47.366846], [8.47545, 47.366827], [8.47545, 47.366827], [8.47545, 47.366827], [8.475444, 47.366779], [8.475436, 47.366731], [8.475425, 47.366683], [8.475425, 47.366682], [8.475425, 47.366682], [8.475411, 47.36664], [8.475394, 47.366599], [8.475374, 47.366558], [8.475374, 47.366558], [8.47525, 47.366292], [8.475162, 47.36613], [8.47515, 47.366111], [8.475135, 47.366092], [8.475118, 47.366074], [8.475099, 47.366057], [8.475078, 47.366041], [8.475055, 47.366027], [8.47503, 47.366014], [8.475004, 47.366003], [8.474976, 47.365993], [8.474947, 47.365985], [8.474917, 47.365978], [8.474887, 47.365974], [8.474806, 47.365977], [8.474661, 47.365982], [8.474517, 47.365995], [8.474374, 47.366013], [8.473197, 47.366195], [8.473171, 47.366198], [8.473145, 47.366199], [8.473119, 47.3662], [8.473093, 47.366198], [8.473068, 47.366195], [8.473042, 47.366191], [8.473017, 47.366184], [8.472993, 47.366177], [8.472969, 47.366168], [8.472948, 47.366157], [8.472927, 47.366146], [8.472499, 47.365878], [8.472194, 47.365702], [8.472139, 47.365669], [8.472084, 47.365634], [8.472032, 47.365599], [8.471411, 47.365166], [8.471317, 47.365106], [8.471218, 47.36505], [8.471113, 47.365], [8.470625, 47.364784], [8.470543, 47.364757], [8.470404, 47.364712], [8.47003, 47.364574], [8.469941, 47.364538], [8.469858, 47.364496], [8.469782, 47.364449], [8.469712, 47.364397], [8.46965, 47.364341], [8.469642, 47.364334], [8.469635, 47.364327], [8.469628, 47.36432], [8.469577, 47.364269], [8.469572, 47.364261], [8.469567, 47.364254], [8.469561, 47.364246], [8.469554, 47.36424], [8.469546, 47.364233], [8.469537, 47.364228], [8.469528, 47.364222], [8.469518, 47.364217], [8.469507, 47.364213]]], "type": "MultiLineString"}, "id": "1765", "properties": {}, "type": "Feature"}, {"bbox": [8.563228, 47.38823, 8.573433, 47.392813], "geometry": {"coordinates": [[[8.573433, 47.38823], [8.573409, 47.388243], [8.573385, 47.388257], [8.573362, 47.388271], [8.573322, 47.388296], [8.573244, 47.388345], [8.573124, 47.388422], [8.572775, 47.388658], [8.57266, 47.388731], [8.572536, 47.388798], [8.572406, 47.388858], [8.572066, 47.389004], [8.571994, 47.389037], [8.571924, 47.389071], [8.571856, 47.389109], [8.571564, 47.389277], [8.571425, 47.389352], [8.57128, 47.389422], [8.57113, 47.389486], [8.57058, 47.389706], [8.568859, 47.390408], [8.567535, 47.390936], [8.567491, 47.390953], [8.56742, 47.390983], [8.567325, 47.391019], [8.566993, 47.391156], [8.56571, 47.391694], [8.565029, 47.391992], [8.564137, 47.392397], [8.56361, 47.392628], [8.563355, 47.39274], [8.563228, 47.392813]]], "type": "MultiLineString"}, "id": "1766", "properties": {}, "type": "Feature"}, {"bbox": [8.487645, 47.379847, 8.490312, 47.381555], "geometry": {"coordinates": [[[8.490312, 47.379847], [8.490296, 47.379889], [8.490274, 47.37993], [8.490247, 47.379969], [8.490215, 47.380007], [8.490178, 47.380042], [8.490137, 47.380075], [8.490091, 47.380106], [8.489365, 47.380534], [8.489353, 47.380541], [8.489341, 47.380546], [8.489327, 47.380551], [8.489313, 47.380555], [8.489298, 47.380558], [8.489283, 47.380561], [8.488948, 47.380599], [8.48892, 47.380603], [8.488893, 47.380609], [8.488867, 47.380616], [8.488842, 47.380625], [8.488818, 47.380635], [8.488796, 47.380647], [8.487668, 47.381317], [8.487665, 47.381319], [8.487662, 47.381321], [8.48766, 47.381323], [8.487657, 47.381326], [8.487656, 47.381328], [8.487654, 47.381331], [8.487653, 47.381334], [8.487652, 47.381336], [8.487652, 47.381339], [8.487647, 47.381379], [8.487645, 47.381438], [8.487651, 47.381497], [8.487665, 47.381555]]], "type": "MultiLineString"}, "id": "1767", "properties": {}, "type": "Feature"}, {"bbox": [8.520451, 47.324721, 8.523603, 47.332529], "geometry": {"coordinates": [[[8.523603, 47.325062], [8.523556, 47.325021], [8.523387, 47.324892], [8.523297, 47.324818], [8.523274, 47.324799], [8.523171, 47.324721], [8.522998, 47.324727], [8.522634, 47.324837], [8.522432, 47.324863], [8.522241, 47.324882], [8.522194, 47.324898], [8.521776, 47.325083], [8.521564, 47.325183], [8.52143, 47.325267], [8.521282, 47.325461], [8.521186, 47.325697], [8.521116, 47.32588], [8.521058, 47.32603], [8.521027, 47.326175], [8.520999, 47.326302], [8.520927, 47.326525], [8.520877, 47.326678], [8.520768, 47.326961], [8.52072, 47.327122], [8.520723, 47.32715], [8.520729, 47.32723], [8.520742, 47.327497], [8.520718, 47.327625], [8.520598, 47.327963], [8.520543, 47.328246], [8.520461, 47.32858], [8.520461, 47.328934], [8.520462, 47.329043], [8.520463, 47.329212], [8.520463, 47.329318], [8.520456, 47.329537], [8.520451, 47.329716], [8.520476, 47.329828], [8.520639, 47.330063], [8.520656, 47.33009], [8.52067, 47.330118], [8.52068, 47.330146], [8.520687, 47.330175], [8.52069, 47.330205], [8.520698, 47.330263], [8.520714, 47.33032], [8.520738, 47.330375], [8.520803, 47.330502], [8.520841, 47.330572], [8.520884, 47.330641], [8.520931, 47.330709], [8.520972, 47.330771], [8.521007, 47.330834], [8.521035, 47.330899], [8.521096, 47.33106], [8.521126, 47.331126], [8.521161, 47.331191], [8.521201, 47.331254], [8.521337, 47.331425], [8.521436, 47.331594], [8.521502, 47.331813], [8.521533, 47.331915], [8.521623, 47.332019], [8.52163, 47.332023], [8.521641, 47.33203], [8.521734, 47.33209], [8.522008, 47.3322], [8.522052, 47.332219], [8.522126, 47.332249], [8.522236, 47.332294], [8.522253, 47.332301], [8.522439, 47.332378], [8.522741, 47.33247], [8.522759, 47.332475], [8.523137, 47.332519], [8.523248, 47.332529]]], "type": "MultiLineString"}, "id": "1768", "properties": {}, "type": "Feature"}, {"bbox": [8.538051, 47.414344, 8.538632, 47.414835], "geometry": {"coordinates": [[[8.538632, 47.414344], [8.538631, 47.414377], [8.538051, 47.41441], [8.538097, 47.414835]]], "type": "MultiLineString"}, "id": "1770", "properties": {}, "type": "Feature"}, {"bbox": [8.586902, 47.377622, 8.591445, 47.378323], "geometry": {"coordinates": [[[8.591445, 47.378323], [8.591285, 47.378311], [8.591245, 47.378308], [8.591206, 47.378304], [8.591166, 47.378298], [8.590338, 47.378167], [8.590041, 47.378119], [8.589265, 47.377994], [8.588526, 47.377884], [8.586986, 47.377633], [8.586958, 47.377628], [8.58693, 47.377625], [8.586902, 47.377622]]], "type": "MultiLineString"}, "id": "1771", "properties": {}, "type": "Feature"}, {"bbox": [8.538911, 47.370092, 8.539191, 47.370732], "geometry": {"coordinates": [[[8.539191, 47.370092], [8.539003, 47.370489], [8.538911, 47.370732]]], "type": "MultiLineString"}, "id": "1772", "properties": {}, "type": "Feature"}, {"bbox": [8.588412, 47.374256, 8.591169, 47.382493], "geometry": {"coordinates": [[[8.588412, 47.382493], [8.588413, 47.382492], [8.588559, 47.382229], [8.588749, 47.382028], [8.589024, 47.381736], [8.589473, 47.381282], [8.589593, 47.381131], [8.589617, 47.381098], [8.589637, 47.381063], [8.589652, 47.381028], [8.589662, 47.380992], [8.589668, 47.380955], [8.589669, 47.380918], [8.589665, 47.380881], [8.58965, 47.380796], [8.589644, 47.380741], [8.589647, 47.380687], [8.589657, 47.380633], [8.589681, 47.380537], [8.589689, 47.380498], [8.589691, 47.380458], [8.589689, 47.380418], [8.589681, 47.380379], [8.589669, 47.38034], [8.589652, 47.380302], [8.58963, 47.380265], [8.589603, 47.380229], [8.589575, 47.380196], [8.589564, 47.380181], [8.589555, 47.380166], [8.589548, 47.38015], [8.589543, 47.380134], [8.589541, 47.380117], [8.58954, 47.380101], [8.589542, 47.380084], [8.589546, 47.380068], [8.589585, 47.379961], [8.589638, 47.379856], [8.589702, 47.379755], [8.589779, 47.379657], [8.589867, 47.379565], [8.589995, 47.379442], [8.590018, 47.379417], [8.590039, 47.37939], [8.590055, 47.379363], [8.590068, 47.379334], [8.590072, 47.379322], [8.590074, 47.379309], [8.590075, 47.379297], [8.590074, 47.379284], [8.590072, 47.379272], [8.590068, 47.37926], [8.590062, 47.379248], [8.590055, 47.379236], [8.590046, 47.379225], [8.58998, 47.379149], [8.589891, 47.37906], [8.589884, 47.379052], [8.589877, 47.379043], [8.589872, 47.379034], [8.589867, 47.379025], [8.589864, 47.379015], [8.589862, 47.379006], [8.589861, 47.378996], [8.589862, 47.378986], [8.589863, 47.378976], [8.589867, 47.378935], [8.58986, 47.378854], [8.589858, 47.378814], [8.58986, 47.378775], [8.589867, 47.378736], [8.589901, 47.378571], [8.589908, 47.378523], [8.589911, 47.378475], [8.58991, 47.378427], [8.589905, 47.378368], [8.589904, 47.378351], [8.589906, 47.378334], [8.58991, 47.378317], [8.589916, 47.3783], [8.589924, 47.378284], [8.589934, 47.378268], [8.590041, 47.378119], [8.590133, 47.37799], [8.590167, 47.377941], [8.590199, 47.377891], [8.590229, 47.37784], [8.590345, 47.377639], [8.590397, 47.377541], [8.590444, 47.377442], [8.590484, 47.377342], [8.5905, 47.377289], [8.590508, 47.377236], [8.59051, 47.377183], [8.590504, 47.377129], [8.590498, 47.377086], [8.590496, 47.377043], [8.590497, 47.377], [8.5905, 47.376921], [8.590497, 47.376843], [8.590488, 47.376764], [8.590476, 47.376654], [8.590471, 47.376543], [8.590475, 47.376432], [8.590502, 47.376022], [8.590504, 47.376001], [8.590535, 47.375638], [8.590545, 47.375569], [8.590564, 47.3755], [8.590592, 47.375433], [8.590628, 47.375368], [8.590754, 47.37517], [8.59078, 47.375127], [8.590804, 47.375083], [8.590826, 47.375038], [8.590843, 47.375005], [8.590862, 47.374972], [8.590885, 47.37494], [8.590946, 47.374846], [8.590993, 47.374747], [8.591026, 47.374647], [8.59111, 47.374315], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "1773", "properties": {}, "type": "Feature"}, {"bbox": [8.544673, 47.369365, 8.546433, 47.370048], "geometry": {"coordinates": [[[8.544673, 47.369365], [8.544683, 47.369398], [8.545027, 47.369516], [8.545393, 47.369674], [8.545414, 47.369708], [8.545546, 47.369771], [8.545875, 47.3699], [8.546218, 47.370048], [8.546433, 47.369831]]], "type": "MultiLineString"}, "id": "1774", "properties": {}, "type": "Feature"}, {"bbox": [8.573345, 47.393178, 8.589843, 47.39901], "geometry": {"coordinates": [[[8.573345, 47.39901], [8.57347, 47.398955], [8.573708, 47.398888], [8.574059, 47.398791], [8.5745, 47.398644], [8.574928, 47.398482], [8.575497, 47.398161], [8.576007, 47.39792], [8.576045, 47.397903], [8.576146, 47.397844], [8.576374, 47.397699], [8.576399, 47.397686], [8.57679, 47.397525], [8.576847, 47.397501], [8.576886, 47.397483], [8.577496, 47.397161], [8.577526, 47.397147], [8.577631, 47.397101], [8.578175, 47.396865], [8.579476, 47.396367], [8.580106, 47.396091], [8.58013, 47.396082], [8.580586, 47.395929], [8.580656, 47.395906], [8.580682, 47.395894], [8.581009, 47.395706], [8.581142, 47.395629], [8.581185, 47.395604], [8.581214, 47.39559], [8.581305, 47.395554], [8.581904, 47.395317], [8.582513, 47.395061], [8.582538, 47.395052], [8.582719, 47.394991], [8.58286, 47.394944], [8.582944, 47.394918], [8.583118, 47.394865], [8.583129, 47.394863], [8.583179, 47.394857], [8.583675, 47.394804], [8.58376, 47.394787], [8.583792, 47.394781], [8.583811, 47.394774], [8.583894, 47.394738], [8.583924, 47.394722], [8.584209, 47.394552], [8.584315, 47.394494], [8.584337, 47.394485], [8.584457, 47.394459], [8.584641, 47.394425], [8.584683, 47.394414], [8.584783, 47.394388], [8.584802, 47.394382], [8.58481, 47.394378], [8.585324, 47.394144], [8.585527, 47.394092], [8.585839, 47.394054], [8.585967, 47.39401], [8.585994, 47.393996], [8.586612, 47.393592], [8.586798, 47.39347], [8.587239, 47.393178], [8.587293, 47.393187], [8.587498, 47.393221], [8.587524, 47.393225], [8.587592, 47.393243], [8.587622, 47.393253], [8.587923, 47.393382], [8.587936, 47.393388], [8.58797, 47.393405], [8.588119, 47.39349], [8.588165, 47.393529], [8.588185, 47.393553], [8.588229, 47.393612], [8.588293, 47.393685], [8.588314, 47.393706], [8.5884, 47.39378], [8.588496, 47.39384], [8.588533, 47.393859], [8.588662, 47.393916], [8.588756, 47.393957], [8.588799, 47.393978], [8.588928, 47.394056], [8.58937, 47.394362], [8.589684, 47.394586], [8.589776, 47.394659], [8.589791, 47.394672], [8.589803, 47.394684], [8.589814, 47.394698], [8.589824, 47.394712], [8.589831, 47.394727], [8.589837, 47.394742], [8.589841, 47.394757], [8.589843, 47.394773]]], "type": "MultiLineString"}, "id": "1775", "properties": {}, "type": "Feature"}, {"bbox": [8.543229, 47.378885, 8.544009, 47.379651], "geometry": {"coordinates": [[[8.544009, 47.378885], [8.543758, 47.379448], [8.543467, 47.379468], [8.543383, 47.379651], [8.543229, 47.379646]]], "type": "MultiLineString"}, "id": "1776", "properties": {}, "type": "Feature"}, {"bbox": [8.560851, 47.372233, 8.562031, 47.372814], "geometry": {"coordinates": [[[8.560851, 47.372814], [8.562031, 47.372233]]], "type": "MultiLineString"}, "id": "1777", "properties": {}, "type": "Feature"}, {"bbox": [8.487822, 47.402214, 8.490667, 47.402687], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.488358, 47.402549], [8.488905, 47.402432], [8.48946, 47.402334], [8.489694, 47.402284], [8.489934, 47.402248], [8.490177, 47.402224], [8.490422, 47.402214], [8.490667, 47.402218]]], "type": "MultiLineString"}, "id": "1779", "properties": {}, "type": "Feature"}, {"bbox": [8.504858, 47.421856, 8.506079, 47.422239], "geometry": {"coordinates": [[[8.506079, 47.421856], [8.505916, 47.421899], [8.5059, 47.421869], [8.504858, 47.422152], [8.50488, 47.422191], [8.504909, 47.422239], [8.50595, 47.421959], [8.505916, 47.421899]]], "type": "MultiLineString"}, "id": "1781", "properties": {}, "type": "Feature"}, {"bbox": [8.525794, 47.428143, 8.529925, 47.429036], "geometry": {"coordinates": [[[8.529925, 47.428188], [8.529907, 47.42818], [8.529891, 47.428173], [8.529874, 47.428167], [8.529856, 47.428163], [8.529838, 47.428159], [8.529819, 47.428157], [8.5298, 47.428156], [8.529444, 47.428143], [8.529328, 47.428143], [8.529212, 47.428151], [8.529099, 47.428166], [8.528966, 47.428192], [8.528866, 47.428211], [8.528777, 47.428228], [8.528611, 47.428259], [8.528498, 47.428281], [8.528324, 47.428316], [8.528078, 47.428363], [8.527975, 47.428381], [8.527886, 47.428397], [8.527862, 47.428401], [8.527801, 47.428413], [8.527654, 47.428441], [8.527515, 47.428466], [8.527437, 47.428481], [8.52741, 47.428488], [8.527327, 47.428509], [8.527271, 47.428523], [8.527183, 47.428545], [8.527093, 47.428567], [8.52703, 47.428584], [8.526896, 47.428628], [8.52674, 47.428682], [8.526649, 47.428713], [8.526607, 47.428728], [8.526579, 47.42874], [8.526089, 47.428946], [8.526017, 47.428971], [8.525856, 47.42902], [8.525831, 47.429027], [8.525806, 47.429034], [8.525794, 47.429036]]], "type": "MultiLineString"}, "id": "1783", "properties": {}, "type": "Feature"}, {"bbox": [8.515978, 47.376742, 8.516764, 47.377383], "geometry": {"coordinates": [[[8.516693, 47.377038], [8.516698, 47.377026], [8.516704, 47.377014], [8.516711, 47.377004], [8.51672, 47.376993], [8.51673, 47.376983], [8.516742, 47.376974], [8.516755, 47.376966], [8.516688, 47.37687], [8.516656, 47.376807], [8.516506, 47.376742], [8.516464, 47.377007], [8.516391, 47.377008], [8.516323, 47.377008], [8.516234, 47.377004], [8.516156, 47.377036], [8.516016, 47.377036], [8.516023, 47.377047], [8.516029, 47.377058], [8.516033, 47.37707], [8.516036, 47.377082], [8.516037, 47.377094], [8.516037, 47.377106], [8.516035, 47.377119], [8.516031, 47.37713], [8.516027, 47.377141], [8.516021, 47.37715], [8.516015, 47.37716], [8.516007, 47.377169], [8.515998, 47.377178], [8.515988, 47.377186], [8.515978, 47.377194], [8.516157, 47.377363], [8.51633, 47.377377], [8.516404, 47.377383], [8.516419, 47.377298], [8.516764, 47.377177], [8.516701, 47.377099], [8.516697, 47.377089], [8.516693, 47.377079], [8.516691, 47.377068], [8.516691, 47.377058], [8.516691, 47.377048], [8.516693, 47.377038]]], "type": "MultiLineString"}, "id": "1784", "properties": {}, "type": "Feature"}, {"bbox": [8.503762, 47.405365, 8.512017, 47.411058], "geometry": {"coordinates": [[[8.504113, 47.408501], [8.504122, 47.408518], [8.504133, 47.408535], [8.504144, 47.408551], [8.504839, 47.409466], [8.504911, 47.409562], [8.505339, 47.410145], [8.505504, 47.410338], [8.505685, 47.410524], [8.505884, 47.410702], [8.505966, 47.410774], [8.506059, 47.410839], [8.50616, 47.410899], [8.506233, 47.410936], [8.506311, 47.410968], [8.506392, 47.410995], [8.506477, 47.411018], [8.506564, 47.411036], [8.506653, 47.411049], [8.506744, 47.411056], [8.506835, 47.411058], [8.506926, 47.411054], [8.507016, 47.411046], [8.507147, 47.411014], [8.50727, 47.410984], [8.507391, 47.41095], [8.50751, 47.410912], [8.509021, 47.410405], [8.509888, 47.410121], [8.510986, 47.409752], [8.511464, 47.409593], [8.511855, 47.409463], [8.511881, 47.409451], [8.511906, 47.409437], [8.511928, 47.409422], [8.511948, 47.409406], [8.511966, 47.409388], [8.511982, 47.409369], [8.511995, 47.40935], [8.512005, 47.40933], [8.512013, 47.409309], [8.512017, 47.409287], [8.512013, 47.40925], [8.512005, 47.409214], [8.511991, 47.409177], [8.511973, 47.409142], [8.51195, 47.409108], [8.511923, 47.409076], [8.511588, 47.408609], [8.51153, 47.40853], [8.511502, 47.408488], [8.51148, 47.408444], [8.511465, 47.4084], [8.511455, 47.408354], [8.511452, 47.408308], [8.511455, 47.408262], [8.511464, 47.408217], [8.511519, 47.40797], [8.511522, 47.407933], [8.511521, 47.407896], [8.511514, 47.407859], [8.511503, 47.407823], [8.511488, 47.407788], [8.511467, 47.407754], [8.511443, 47.407721], [8.5114, 47.407679], [8.511355, 47.40764], [8.511306, 47.407602], [8.511179, 47.407465], [8.511074, 47.407385], [8.510728, 47.406899], [8.510495, 47.406559], [8.509795, 47.405649], [8.509648, 47.405458], [8.509577, 47.405365], [8.509316, 47.40545], [8.50611, 47.40651], [8.505517, 47.406709], [8.504793, 47.406952], [8.503976, 47.40722], [8.50395, 47.407229], [8.503926, 47.40724], [8.503903, 47.407253], [8.503881, 47.407266], [8.503862, 47.407281], [8.503844, 47.407297], [8.503828, 47.407313], [8.503809, 47.407338], [8.503793, 47.407364], [8.503781, 47.40739], [8.503771, 47.407417], [8.503765, 47.407444], [8.503762, 47.407472], [8.503763, 47.4075], [8.503774, 47.407852], [8.50378, 47.407919], [8.503794, 47.407986], [8.503814, 47.408052], [8.503846, 47.408125], [8.503884, 47.408197], [8.503928, 47.408267], [8.504113, 47.408501]]], "type": "MultiLineString"}, "id": "1786", "properties": {}, "type": "Feature"}, {"bbox": [8.514172, 47.406349, 8.523409, 47.407166], "geometry": {"coordinates": [[[8.523409, 47.406841], [8.523086, 47.406902], [8.523008, 47.406913], [8.522932, 47.406915], [8.522564, 47.4069], [8.522144, 47.406858], [8.521907, 47.406819], [8.521744, 47.406785], [8.521539, 47.406735], [8.521299, 47.406678], [8.521179, 47.406655], [8.521066, 47.406642], [8.521044, 47.40664], [8.520951, 47.406626], [8.520858, 47.406612], [8.520672, 47.406567], [8.5206, 47.406545], [8.520493, 47.406513], [8.520427, 47.406484], [8.520296, 47.406407], [8.520172, 47.406367], [8.520038, 47.406349], [8.519966, 47.406354], [8.5199, 47.406373], [8.519677, 47.406492], [8.51936, 47.406635], [8.519066, 47.406766], [8.519008, 47.406786], [8.518947, 47.406804], [8.518885, 47.406818], [8.518821, 47.406828], [8.518702, 47.406836], [8.518583, 47.40684], [8.518463, 47.40684], [8.518245, 47.406826], [8.518194, 47.406822], [8.518087, 47.406823], [8.517982, 47.406832], [8.517872, 47.406854], [8.5176, 47.406922], [8.517567, 47.40693], [8.517502, 47.406944], [8.517404, 47.40696], [8.517304, 47.40697], [8.517056, 47.406981], [8.516954, 47.406981], [8.5168, 47.406982], [8.516643, 47.406978], [8.51654, 47.406981], [8.516431, 47.406996], [8.516199, 47.407051], [8.516054, 47.407081], [8.515468, 47.407156], [8.515362, 47.407166], [8.515258, 47.407166], [8.515155, 47.407151], [8.515055, 47.407125], [8.51497, 47.407102], [8.51488, 47.407085], [8.514787, 47.407073], [8.514692, 47.407072], [8.514491, 47.407085], [8.514341, 47.407089], [8.514172, 47.407097]]], "type": "MultiLineString"}, "id": "1788", "properties": {}, "type": "Feature"}, {"bbox": [8.612522, 47.361017, 8.619954, 47.362201], "geometry": {"coordinates": [[[8.612522, 47.362201], [8.612524, 47.362012], [8.612765, 47.361938], [8.613096, 47.36183], [8.613614, 47.361623], [8.613859, 47.36155], [8.614038, 47.361518], [8.614564, 47.361498], [8.614892, 47.36148], [8.615255, 47.361431], [8.615625, 47.361392], [8.617525, 47.361336], [8.618186, 47.361333], [8.618647, 47.361284], [8.619096, 47.361221], [8.619235, 47.361193], [8.619276, 47.361188], [8.619304, 47.361183], [8.61967, 47.361079], [8.619689, 47.361074], [8.619871, 47.361038], [8.619954, 47.361017]]], "type": "MultiLineString"}, "id": "1789", "properties": {}, "type": "Feature"}, {"bbox": [8.559415, 47.353938, 8.561431, 47.355296], "geometry": {"coordinates": [[[8.559415, 47.353938], [8.559601, 47.35396], [8.55998, 47.353982], [8.559986, 47.354291], [8.560171, 47.35445], [8.560397, 47.354573], [8.56086, 47.354992], [8.561051, 47.35517], [8.561066, 47.355183], [8.561088, 47.355199], [8.561112, 47.355213], [8.561138, 47.355226], [8.561165, 47.355238], [8.561193, 47.355248], [8.561285, 47.355264], [8.561431, 47.355296]]], "type": "MultiLineString"}, "id": "1790", "properties": {}, "type": "Feature"}, {"bbox": [8.495084, 47.399437, 8.496111, 47.399639], "geometry": {"coordinates": [[[8.496111, 47.399639], [8.496076, 47.399578], [8.496037, 47.399551], [8.495678, 47.399544], [8.495636, 47.399541], [8.495597, 47.399531], [8.495576, 47.399517], [8.495527, 47.399478], [8.495505, 47.399437], [8.495084, 47.399491]]], "type": "MultiLineString"}, "id": "1792", "properties": {}, "type": "Feature"}, {"bbox": [8.542157, 47.421908, 8.550363, 47.425479], "geometry": {"coordinates": [[[8.550363, 47.421908], [8.549949, 47.42211], [8.549699, 47.422231], [8.548773, 47.422733], [8.548225, 47.423021], [8.547736, 47.423171], [8.547123, 47.423345], [8.547058, 47.423252], [8.546641, 47.423369], [8.546672, 47.423431], [8.546435, 47.423536], [8.545383, 47.423844], [8.545189, 47.423912], [8.54529, 47.42405], [8.545143, 47.424094], [8.544064, 47.424413], [8.543768, 47.424498], [8.543779, 47.424574], [8.543421, 47.42469], [8.543363, 47.424726], [8.543238, 47.424776], [8.54312, 47.424833], [8.543011, 47.424898], [8.542911, 47.42497], [8.542157, 47.425479]]], "type": "MultiLineString"}, "id": "1793", "properties": {}, "type": "Feature"}, {"bbox": [8.494559, 47.400711, 8.497676, 47.401938], "geometry": {"coordinates": [[[8.494559, 47.400711], [8.494674, 47.400728], [8.494758, 47.400839], [8.494782, 47.400863], [8.494821, 47.400895], [8.495013, 47.401025], [8.495055, 47.401048], [8.495451, 47.401241], [8.495511, 47.401273], [8.495632, 47.401346], [8.495937, 47.401542], [8.496035, 47.4016], [8.496139, 47.401652], [8.496268, 47.401712], [8.49629, 47.401719], [8.496604, 47.401823], [8.496843, 47.401895], [8.49686, 47.401938], [8.496998, 47.40191], [8.49731, 47.401873], [8.497479, 47.401845], [8.497676, 47.401882]]], "type": "MultiLineString"}, "id": "1795", "properties": {}, "type": "Feature"}, {"bbox": [8.521539, 47.404798, 8.523714, 47.406735], "geometry": {"coordinates": [[[8.523714, 47.404798], [8.523614, 47.404886], [8.52351, 47.40497], [8.523401, 47.405052], [8.523154, 47.405231], [8.523061, 47.405297], [8.522965, 47.40536], [8.522866, 47.405421], [8.522467, 47.405658], [8.522431, 47.405681], [8.522086, 47.405897], [8.521951, 47.405982], [8.521892, 47.406023], [8.521839, 47.406066], [8.521792, 47.406113], [8.521751, 47.406163], [8.521717, 47.406215], [8.521689, 47.406269], [8.521669, 47.406324], [8.521566, 47.406672], [8.521539, 47.406735]]], "type": "MultiLineString"}, "id": "1796", "properties": {}, "type": "Feature"}, {"bbox": [8.561019, 47.404867, 8.572311, 47.410623], "geometry": {"coordinates": [[[8.561019, 47.404901], [8.561049, 47.404867], [8.561456, 47.404975], [8.56172, 47.405043], [8.56211, 47.405126], [8.562422, 47.405207], [8.562638, 47.40527], [8.562845, 47.405336], [8.563112, 47.405432], [8.56335, 47.405532], [8.563619, 47.405659], [8.563909, 47.405825], [8.564257, 47.40603], [8.564699, 47.406295], [8.56558, 47.406809], [8.565961, 47.407037], [8.566206, 47.407165], [8.566255, 47.407216], [8.56638, 47.407295], [8.566713, 47.40755], [8.567039, 47.407806], [8.567233, 47.407969], [8.567472, 47.408174], [8.567922, 47.408566], [8.568107, 47.408713], [8.568401, 47.408974], [8.568569, 47.409114], [8.568731, 47.40923], [8.56892, 47.409366], [8.569112, 47.409504], [8.569362, 47.409671], [8.569586, 47.409812], [8.569779, 47.409923], [8.569971, 47.410014], [8.570123, 47.410075], [8.57032, 47.410137], [8.570487, 47.410178], [8.570731, 47.410226], [8.571083, 47.410284], [8.571349, 47.410308], [8.572142, 47.410379], [8.572263, 47.410467], [8.572311, 47.410623]]], "type": "MultiLineString"}, "id": "1797", "properties": {}, "type": "Feature"}, {"bbox": [8.465574, 47.360917, 8.487038, 47.366551], "geometry": {"coordinates": [[[8.465574, 47.366404], [8.465804, 47.366466], [8.46596, 47.3665], [8.466119, 47.366525], [8.46628, 47.366541], [8.466443, 47.366547], [8.466768, 47.366551], [8.466793, 47.366551], [8.466817, 47.366549], [8.466842, 47.366546], [8.466865, 47.366541], [8.466889, 47.366536], [8.466911, 47.366529], [8.466935, 47.366519], [8.466957, 47.366509], [8.466978, 47.366497], [8.466998, 47.366484], [8.467015, 47.36647], [8.467031, 47.366454], [8.467044, 47.366438], [8.467167, 47.366275], [8.467374, 47.366016], [8.467428, 47.365955], [8.467488, 47.365897], [8.467555, 47.365842], [8.467627, 47.365791], [8.467662, 47.36577], [8.4677, 47.365751], [8.46774, 47.365734], [8.467782, 47.365719], [8.467826, 47.365707], [8.467871, 47.365698], [8.46791, 47.365691], [8.46795, 47.365685], [8.46799, 47.365681], [8.468043, 47.365675], [8.468096, 47.365669], [8.468149, 47.365662], [8.468283, 47.365646], [8.468417, 47.365631], [8.468551, 47.365616], [8.46884, 47.365582], [8.469044, 47.365558], [8.469326, 47.365524], [8.469386, 47.365515], [8.469445, 47.365502], [8.469502, 47.365487], [8.469557, 47.365468], [8.469609, 47.365446], [8.469659, 47.365422], [8.469705, 47.365394], [8.469748, 47.365365], [8.470543, 47.364757], [8.470619, 47.364702], [8.470701, 47.364652], [8.470789, 47.364605], [8.470881, 47.364564], [8.471194, 47.364436], [8.471268, 47.364408], [8.471345, 47.364384], [8.471425, 47.364365], [8.471507, 47.364351], [8.471591, 47.364341], [8.471675, 47.364336], [8.47176, 47.364335], [8.472926, 47.364361], [8.47369, 47.364351], [8.473867, 47.364343], [8.474042, 47.364324], [8.474215, 47.364295], [8.474382, 47.364256], [8.475016, 47.364085], [8.475334, 47.364002], [8.475519, 47.36396], [8.475709, 47.363928], [8.475902, 47.363908], [8.476559, 47.363859], [8.477208, 47.363804], [8.477318, 47.363797], [8.477428, 47.363797], [8.477537, 47.363802], [8.477955, 47.363833], [8.478443, 47.363884], [8.478598, 47.363896], [8.478753, 47.363901], [8.478909, 47.3639], [8.479986, 47.363867], [8.480055, 47.363863], [8.480124, 47.363855], [8.480191, 47.363844], [8.480257, 47.363828], [8.48032, 47.363809], [8.481112, 47.363543], [8.481144, 47.363531], [8.481174, 47.363517], [8.481203, 47.363501], [8.481229, 47.363484], [8.481252, 47.363465], [8.481273, 47.363445], [8.481291, 47.363423], [8.481306, 47.363401], [8.481419, 47.363211], [8.481553, 47.363013], [8.481581, 47.362976], [8.481614, 47.362942], [8.481652, 47.362909], [8.481694, 47.36288], [8.481856, 47.362778], [8.482103, 47.362621], [8.482133, 47.362604], [8.482164, 47.362588], [8.482197, 47.362575], [8.482232, 47.362563], [8.482268, 47.362553], [8.482305, 47.362546], [8.482343, 47.36254], [8.482404, 47.362535], [8.482466, 47.362534], [8.482529, 47.362536], [8.48259, 47.362543], [8.482621, 47.362548], [8.482651, 47.362556], [8.48268, 47.362565], [8.482707, 47.362575], [8.482734, 47.362588], [8.482758, 47.362601], [8.482781, 47.362617], [8.482931, 47.362727], [8.482951, 47.362741], [8.482973, 47.362753], [8.482996, 47.362764], [8.483021, 47.362773], [8.483047, 47.362781], [8.483074, 47.362787], [8.483101, 47.362791], [8.483151, 47.362796], [8.483201, 47.362798], [8.483251, 47.362796], [8.483324, 47.362791], [8.483354, 47.362788], [8.483384, 47.362783], [8.483413, 47.362776], [8.483441, 47.362768], [8.483467, 47.362759], [8.483545, 47.362724], [8.483616, 47.362685], [8.483682, 47.362641], [8.48403, 47.362384], [8.484226, 47.362242], [8.484383, 47.36212], [8.484849, 47.361761], [8.484958, 47.361684], [8.485077, 47.361614], [8.485204, 47.361552], [8.48534, 47.361498], [8.48654, 47.361065], [8.48691, 47.360925], [8.486917, 47.360923], [8.486924, 47.360921], [8.486931, 47.360919], [8.486938, 47.360918], [8.486946, 47.360918], [8.486953, 47.360917], [8.486961, 47.360918], [8.486968, 47.360918], [8.486976, 47.360919], [8.486983, 47.360921], [8.48699, 47.360923], [8.486996, 47.360925], [8.487003, 47.360928], [8.487009, 47.360931], [8.487014, 47.360935], [8.487019, 47.360939], [8.487024, 47.360943], [8.487028, 47.360947], [8.487031, 47.360952], [8.487034, 47.360957], [8.487036, 47.360961], [8.487037, 47.360966], [8.487038, 47.360972]]], "type": "MultiLineString"}, "id": "1799", "properties": {}, "type": "Feature"}, {"bbox": [8.539571, 47.37122, 8.53992, 47.371832], "geometry": {"coordinates": [[[8.53992, 47.37122], [8.539915, 47.371297], [8.539892, 47.37129], [8.539571, 47.371744], [8.539889, 47.371832], [8.539916, 47.371809]]], "type": "MultiLineString"}, "id": "1801", "properties": {}, "type": "Feature"}, {"bbox": [8.568177, 47.41457, 8.569295, 47.41618], "geometry": {"coordinates": [[[8.569295, 47.41618], [8.569084, 47.416016], [8.568889, 47.415843], [8.56871, 47.415662], [8.568584, 47.415499], [8.568476, 47.415329], [8.568388, 47.415155], [8.56832, 47.414977], [8.568177, 47.41457]]], "type": "MultiLineString"}, "id": "1802", "properties": {}, "type": "Feature"}, {"bbox": [8.506506, 47.39876, 8.507443, 47.398955], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506524, 47.398856], [8.506543, 47.398862], [8.506563, 47.398866], [8.506584, 47.398869], [8.506604, 47.398872], [8.506625, 47.398873], [8.506646, 47.398872], [8.506667, 47.398871], [8.506677, 47.398864], [8.506699, 47.398851], [8.506722, 47.398839], [8.506747, 47.398828], [8.506773, 47.398819], [8.506785, 47.398815], [8.506898, 47.398789], [8.506927, 47.398786], [8.507029, 47.398763], [8.507042, 47.398761], [8.50705, 47.39876], [8.507058, 47.39876], [8.507067, 47.398761], [8.507075, 47.398761], [8.507083, 47.398763], [8.50709, 47.398765], [8.507098, 47.398767], [8.507105, 47.39877], [8.507112, 47.398773], [8.507118, 47.398777], [8.507124, 47.39878], [8.507129, 47.398785], [8.507134, 47.398789], [8.507138, 47.398794], [8.507142, 47.398799], [8.507145, 47.398804], [8.507147, 47.39881], [8.507166, 47.398889], [8.507169, 47.398895], [8.507173, 47.398901], [8.507177, 47.398906], [8.507182, 47.398912], [8.507188, 47.398916], [8.507194, 47.398921], [8.507201, 47.398925], [8.507209, 47.398929], [8.507248, 47.398937], [8.507289, 47.398943], [8.50733, 47.398946], [8.507368, 47.398947], [8.507406, 47.39895], [8.507443, 47.398955]]], "type": "MultiLineString"}, "id": "1804", "properties": {}, "type": "Feature"}, {"bbox": [8.544881, 47.429007, 8.546858, 47.429554], "geometry": {"coordinates": [[[8.544881, 47.429379], [8.545597, 47.429548], [8.545623, 47.429551], [8.54565, 47.429553], [8.545676, 47.429554], [8.545703, 47.429552], [8.545729, 47.429549], [8.545755, 47.429545], [8.545781, 47.429539], [8.545805, 47.429531], [8.545828, 47.429522], [8.54585, 47.429512], [8.546226, 47.429296], [8.54628, 47.429262], [8.546339, 47.42923], [8.546401, 47.429202], [8.546858, 47.429007]]], "type": "MultiLineString"}, "id": "1805", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.349769, 8.524105, 47.351753], "geometry": {"coordinates": [[[8.524103, 47.351753], [8.524105, 47.351696], [8.524099, 47.351651], [8.524085, 47.351606], [8.524067, 47.351553], [8.524045, 47.35151], [8.524021, 47.351472], [8.523994, 47.351436], [8.523957, 47.351396], [8.523913, 47.35136], [8.523849, 47.351316], [8.523565, 47.351165], [8.523496, 47.351124], [8.523427, 47.351077], [8.523364, 47.351033], [8.523309, 47.35099], [8.523177, 47.350873], [8.522984, 47.350696], [8.522872, 47.350608], [8.522732, 47.350496], [8.522635, 47.350434], [8.52253, 47.350379], [8.522427, 47.350334], [8.522318, 47.350294], [8.522139, 47.350248], [8.521685, 47.350113], [8.521599, 47.350088], [8.521496, 47.350049], [8.521399, 47.350007], [8.521304, 47.349961], [8.521205, 47.349905], [8.521056, 47.349806], [8.521, 47.349769]]], "type": "MultiLineString"}, "id": "1807", "properties": {}, "type": "Feature"}, {"bbox": [8.525679, 47.414012, 8.525747, 47.414942], "geometry": {"coordinates": [[[8.525718, 47.414012], [8.525747, 47.414074], [8.525725, 47.414178], [8.525733, 47.414662], [8.525679, 47.414942]]], "type": "MultiLineString"}, "id": "1808", "properties": {}, "type": "Feature"}, {"bbox": [8.541921, 47.375497, 8.543387, 47.375705], "geometry": {"coordinates": [[[8.541921, 47.375705], [8.543387, 47.375497]]], "type": "MultiLineString"}, "id": "1809", "properties": {}, "type": "Feature"}, {"bbox": [8.511873, 47.392082, 8.51274, 47.393476], "geometry": {"coordinates": [[[8.511873, 47.392082], [8.51258, 47.393364], [8.51274, 47.393476]]], "type": "MultiLineString"}, "id": "1810", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.369886, 8.541538, 47.370302], "geometry": {"coordinates": [[[8.541163, 47.370302], [8.541167, 47.370302], [8.541171, 47.370302], [8.541176, 47.370301], [8.54118, 47.370301], [8.541184, 47.3703], [8.541188, 47.370299], [8.541191, 47.370298], [8.541195, 47.370296], [8.541198, 47.370294], [8.541201, 47.370292], [8.541204, 47.37029], [8.541206, 47.370288], [8.541209, 47.370286], [8.541211, 47.370283], [8.541212, 47.370281], [8.541214, 47.370278], [8.541215, 47.370275], [8.541215, 47.370272], [8.541221, 47.370204], [8.541221, 47.3702], [8.541222, 47.370196], [8.541223, 47.370193], [8.541225, 47.370189], [8.541228, 47.370186], [8.54123, 47.370182], [8.541233, 47.370179], [8.54149, 47.369933], [8.541538, 47.369886]]], "type": "MultiLineString"}, "id": "1811", "properties": {}, "type": "Feature"}, {"bbox": [8.503784, 47.402683, 8.504275, 47.402913], "geometry": {"coordinates": [[[8.503784, 47.402913], [8.504275, 47.402683]]], "type": "MultiLineString"}, "id": "1813", "properties": {}, "type": "Feature"}, {"bbox": [8.540249, 47.369883, 8.541163, 47.370302], "geometry": {"coordinates": [[[8.540786, 47.369883], [8.540732, 47.369926], [8.540739, 47.369933], [8.54074, 47.369935], [8.540742, 47.369937], [8.540743, 47.369939], [8.540744, 47.369942], [8.540744, 47.369944], [8.540744, 47.369946], [8.540744, 47.369949], [8.540744, 47.369951], [8.540743, 47.369953], [8.540742, 47.369956], [8.54074, 47.369958], [8.540739, 47.36996], [8.540737, 47.369962], [8.540735, 47.369964], [8.540732, 47.369965], [8.54073, 47.369967], [8.540727, 47.369968], [8.540724, 47.36997], [8.540721, 47.369971], [8.540717, 47.369972], [8.540714, 47.369972], [8.540638, 47.369985], [8.540563, 47.370002], [8.540489, 47.370021], [8.540421, 47.370043], [8.540355, 47.370067], [8.540292, 47.370095], [8.540249, 47.370113], [8.540263, 47.37012], [8.540311, 47.370146], [8.540528, 47.370263], [8.540596, 47.370249], [8.540627, 47.370193], [8.540628, 47.370192], [8.540629, 47.37019], [8.540631, 47.370189], [8.540633, 47.370187], [8.540634, 47.370186], [8.540636, 47.370185], [8.540639, 47.370184], [8.540641, 47.370183], [8.540643, 47.370182], [8.540646, 47.370182], [8.540648, 47.370181], [8.540651, 47.370181], [8.540653, 47.370181], [8.540656, 47.370181], [8.540659, 47.370181], [8.540661, 47.370182], [8.540664, 47.370182], [8.540666, 47.370183], [8.541034, 47.37029], [8.541057, 47.370295], [8.54108, 47.370298], [8.541103, 47.3703], [8.541163, 47.370302]]], "type": "MultiLineString"}, "id": "1814", "properties": {}, "type": "Feature"}, {"bbox": [8.554119, 47.399029, 8.556119, 47.401937], "geometry": {"coordinates": [[[8.554119, 47.399029], [8.554207, 47.399156], [8.55429, 47.399284], [8.55437, 47.399414], [8.55437, 47.399414], [8.55437, 47.399414], [8.55439, 47.39945], [8.554408, 47.399487], [8.554424, 47.399525], [8.554494, 47.399694], [8.55451, 47.399728], [8.554531, 47.399761], [8.554557, 47.399793], [8.554586, 47.399824], [8.554619, 47.399852], [8.554648, 47.399876], [8.554676, 47.399901], [8.554703, 47.399926], [8.554703, 47.399926], [8.554703, 47.399926], [8.554828, 47.400049], [8.554959, 47.400169], [8.555094, 47.400287], [8.555277, 47.40042], [8.555332, 47.400464], [8.555385, 47.400511], [8.555433, 47.400558], [8.555457, 47.400583], [8.555478, 47.400608], [8.555496, 47.400634], [8.555511, 47.400662], [8.555522, 47.40069], [8.555592, 47.400844], [8.555592, 47.400844], [8.55561, 47.400885], [8.555633, 47.400925], [8.555661, 47.400963], [8.555808, 47.401122], [8.556027, 47.401392], [8.556045, 47.401414], [8.556063, 47.401438], [8.556078, 47.401463], [8.55609, 47.401489], [8.5561, 47.401516], [8.556115, 47.401589], [8.556119, 47.401664], [8.556112, 47.401738], [8.556106, 47.401762], [8.556097, 47.401786], [8.556084, 47.401809], [8.556069, 47.401832], [8.55605, 47.401853], [8.556029, 47.401873], [8.55601, 47.401887], [8.55599, 47.401901], [8.555968, 47.401913], [8.555917, 47.401937]]], "type": "MultiLineString"}, "id": "1815", "properties": {}, "type": "Feature"}, {"bbox": [8.58584, 47.355467, 8.590078, 47.3568], "geometry": {"coordinates": [[[8.58584, 47.3568], [8.58586, 47.356753], [8.585895, 47.356712], [8.585934, 47.356672], [8.585975, 47.356634], [8.58627, 47.356403], [8.586612, 47.356171], [8.586673, 47.356127], [8.58673, 47.356081], [8.586781, 47.356032], [8.586845, 47.355963], [8.586859, 47.355948], [8.586875, 47.355933], [8.586893, 47.355919], [8.586913, 47.355906], [8.586934, 47.355894], [8.586956, 47.355884], [8.58698, 47.355875], [8.587005, 47.355867], [8.58703, 47.355861], [8.587276, 47.35582], [8.587704, 47.355757], [8.587909, 47.355729], [8.588347, 47.35567], [8.588668, 47.355629], [8.588964, 47.355594], [8.589557, 47.355523], [8.590078, 47.355467]]], "type": "MultiLineString"}, "id": "1816", "properties": {}, "type": "Feature"}, {"bbox": [8.563503, 47.405962, 8.569594, 47.410397], "geometry": {"coordinates": [[[8.563503, 47.405962], [8.563646, 47.406011], [8.564201, 47.406307], [8.564556, 47.406507], [8.565124, 47.40683], [8.565644, 47.407158], [8.566011, 47.407415], [8.566142, 47.407477], [8.566368, 47.407637], [8.566646, 47.40786], [8.566889, 47.408061], [8.567158, 47.408303], [8.5677, 47.408792], [8.568249, 47.409244], [8.568593, 47.409513], [8.568906, 47.409745], [8.569245, 47.409988], [8.569594, 47.410397]]], "type": "MultiLineString"}, "id": "1819", "properties": {}, "type": "Feature"}, {"bbox": [8.494037, 47.359972, 8.500114, 47.36311], "geometry": {"coordinates": [[[8.500114, 47.359972], [8.498885, 47.360992], [8.498036, 47.360987], [8.497864, 47.361034], [8.497749, 47.360987], [8.497627, 47.360949], [8.497508, 47.360914], [8.497156, 47.360745], [8.496958, 47.360827], [8.496968, 47.361094], [8.49663, 47.361333], [8.496585, 47.361374], [8.495402, 47.361995], [8.495296, 47.362034], [8.495219, 47.362082], [8.495025, 47.362187], [8.494815, 47.362403], [8.494548, 47.362665], [8.494414, 47.362775], [8.494206, 47.362927], [8.494171, 47.362948], [8.49414, 47.362971], [8.494112, 47.362996], [8.494087, 47.363023], [8.494066, 47.363051], [8.49405, 47.36308], [8.494037, 47.36311]]], "type": "MultiLineString"}, "id": "1821", "properties": {}, "type": "Feature"}, {"bbox": [8.562308, 47.399836, 8.571367, 47.40221], "geometry": {"coordinates": [[[8.562308, 47.401909], [8.56243, 47.401962], [8.562554, 47.402014], [8.56268, 47.402064], [8.562714, 47.402077], [8.562824, 47.402119], [8.56294, 47.402154], [8.56306, 47.40218], [8.56308, 47.402184], [8.563184, 47.402199], [8.563289, 47.402207], [8.563395, 47.40221], [8.563502, 47.402207], [8.563607, 47.402198], [8.563961, 47.402165], [8.5641, 47.402142], [8.564235, 47.402111], [8.564365, 47.402072], [8.564489, 47.402025], [8.564607, 47.401971], [8.564761, 47.401909], [8.564918, 47.401851], [8.565079, 47.401797], [8.565729, 47.401588], [8.565901, 47.40154], [8.566079, 47.401501], [8.566259, 47.401471], [8.566511, 47.401429], [8.566764, 47.401388], [8.567018, 47.401351], [8.567149, 47.401331], [8.567279, 47.40131], [8.567409, 47.401287], [8.56749, 47.401272], [8.567568, 47.401251], [8.567644, 47.401226], [8.567716, 47.401196], [8.567783, 47.401162], [8.567846, 47.401124], [8.568055, 47.400999], [8.568109, 47.400968], [8.568244, 47.400892], [8.56828, 47.400871], [8.568394, 47.400809], [8.568515, 47.400754], [8.568643, 47.400705], [8.569015, 47.400579], [8.569391, 47.400459], [8.56977, 47.400345], [8.5704, 47.400109], [8.5704, 47.400109], [8.570541, 47.400054], [8.570677, 47.399995], [8.570808, 47.399931], [8.570863, 47.399906], [8.570921, 47.399886], [8.570981, 47.399868], [8.571043, 47.399855], [8.571107, 47.399845], [8.571172, 47.399838], [8.571237, 47.399836], [8.571302, 47.399837], [8.571367, 47.399842]]], "type": "MultiLineString"}, "id": "1830", "properties": {}, "type": "Feature"}, {"bbox": [8.509694, 47.333072, 8.51403, 47.334288], "geometry": {"coordinates": [[[8.51403, 47.334288], [8.514003, 47.334288], [8.513976, 47.334286], [8.51395, 47.334283], [8.513924, 47.334279], [8.513898, 47.334273], [8.513874, 47.334265], [8.51385, 47.334256], [8.513828, 47.334246], [8.513445, 47.334074], [8.513177, 47.333865], [8.513057, 47.333731], [8.512927, 47.333507], [8.512721, 47.333256], [8.512599, 47.333147], [8.512533, 47.333107], [8.512507, 47.333097], [8.51248, 47.333088], [8.512452, 47.333082], [8.512423, 47.333077], [8.512394, 47.333073], [8.512365, 47.333072], [8.512335, 47.333073], [8.512306, 47.333075], [8.512277, 47.333079], [8.512249, 47.333085], [8.512221, 47.333092], [8.511642, 47.33327], [8.511201, 47.333549], [8.510984, 47.333605], [8.510583, 47.333649], [8.510525, 47.33365], [8.510378, 47.333654], [8.510164, 47.333678], [8.510002, 47.333738], [8.509814, 47.33381], [8.509694, 47.333856]]], "type": "MultiLineString"}, "id": "1838", "properties": {}, "type": "Feature"}, {"bbox": [8.538749, 47.378523, 8.541507, 47.382055], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541428, 47.378527], [8.541439, 47.378531], [8.54145, 47.378536], [8.54146, 47.378542], [8.541469, 47.378548], [8.541477, 47.378555], [8.541485, 47.378562], [8.541491, 47.37857], [8.541496, 47.378578], [8.541501, 47.378586], [8.541504, 47.378594], [8.541506, 47.378603], [8.541507, 47.378612], [8.541507, 47.378621], [8.541506, 47.378629], [8.541503, 47.378638], [8.541439, 47.378801], [8.541389, 47.378793], [8.54136, 47.378878], [8.54124, 47.379208], [8.541217, 47.379267], [8.541191, 47.379326], [8.541164, 47.379384], [8.541113, 47.379492], [8.54106, 47.379599], [8.541005, 47.379706], [8.54083, 47.379762], [8.540327, 47.379607], [8.539957, 47.379707], [8.539769, 47.379536], [8.539119, 47.37971], [8.538749, 47.37981], [8.538799, 47.37992], [8.538842, 47.380032], [8.538877, 47.380144], [8.538913, 47.380273], [8.53894, 47.380402], [8.538958, 47.380533], [8.538967, 47.38062], [8.538972, 47.380707], [8.538973, 47.380794], [8.538968, 47.380959], [8.538957, 47.381124], [8.538939, 47.381288], [8.538915, 47.381441], [8.538884, 47.381593], [8.538848, 47.381744], [8.538824, 47.381828], [8.538798, 47.381912], [8.53877, 47.381995], [8.538775, 47.382055]]], "type": "MultiLineString"}, "id": "1839", "properties": {}, "type": "Feature"}, {"bbox": [8.536666, 47.415979, 8.538275, 47.416931], "geometry": {"coordinates": [[[8.536666, 47.415979], [8.536734, 47.416455], [8.537274, 47.416546], [8.538156, 47.416757], [8.538275, 47.416931]]], "type": "MultiLineString"}, "id": "1841", "properties": {}, "type": "Feature"}, {"bbox": [8.556217, 47.386277, 8.560818, 47.387168], "geometry": {"coordinates": [[[8.556217, 47.386277], [8.55662, 47.386714], [8.557633, 47.387096], [8.557811, 47.387133], [8.557881, 47.387168], [8.558529, 47.387046], [8.559089, 47.386946], [8.559237, 47.386912], [8.559856, 47.386754], [8.559939, 47.386729], [8.56002, 47.386701], [8.560099, 47.386671], [8.560224, 47.38662], [8.560259, 47.386606], [8.560294, 47.386593], [8.56033, 47.386581], [8.560377, 47.386563], [8.560421, 47.386543], [8.560461, 47.38652], [8.560499, 47.386494], [8.560517, 47.386481], [8.560536, 47.38647], [8.560557, 47.38646], [8.560579, 47.386451], [8.560602, 47.386443], [8.560626, 47.386436], [8.56065, 47.386431], [8.560676, 47.386427], [8.560701, 47.386425], [8.560727, 47.386424], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "1842", "properties": {}, "type": "Feature"}, {"bbox": [8.583171, 47.380311, 8.585882, 47.381013], "geometry": {"coordinates": [[[8.585882, 47.380678], [8.585636, 47.380696], [8.585554, 47.3807], [8.585471, 47.3807], [8.585389, 47.380697], [8.585124, 47.380678], [8.585032, 47.380673], [8.58494, 47.38067], [8.584848, 47.380671], [8.584648, 47.380674], [8.584584, 47.380678], [8.584521, 47.380685], [8.584459, 47.380696], [8.584399, 47.38071], [8.584341, 47.380729], [8.584286, 47.380751], [8.584234, 47.380776], [8.583995, 47.380904], [8.58394, 47.380931], [8.583881, 47.380955], [8.58382, 47.380974], [8.583757, 47.38099], [8.583691, 47.381002], [8.583625, 47.381009], [8.583557, 47.381013], [8.58349, 47.381012], [8.583422, 47.381007], [8.583411, 47.381006], [8.583399, 47.381003], [8.583388, 47.381001], [8.583377, 47.380997], [8.583366, 47.380993], [8.583356, 47.380988], [8.583347, 47.380983], [8.583338, 47.380977], [8.583331, 47.38097], [8.583324, 47.380964], [8.583318, 47.380957], [8.583312, 47.380949], [8.583308, 47.380941], [8.583305, 47.380933], [8.583303, 47.380925], [8.583301, 47.380917], [8.583292, 47.380811], [8.583287, 47.380775], [8.583277, 47.38074], [8.583263, 47.380706], [8.583245, 47.380672], [8.583223, 47.38064], [8.583211, 47.380623], [8.583202, 47.380606], [8.583195, 47.380588], [8.58319, 47.38057], [8.583188, 47.380552], [8.583171, 47.380311]]], "type": "MultiLineString"}, "id": "1843", "properties": {}, "type": "Feature"}, {"bbox": [8.576574, 47.406121, 8.578059, 47.406809], "geometry": {"coordinates": [[[8.578059, 47.406121], [8.577652, 47.406312], [8.576895, 47.406668], [8.576661, 47.406778], [8.576574, 47.406809]]], "type": "MultiLineString"}, "id": "1846", "properties": {}, "type": "Feature"}, {"bbox": [8.506442, 47.360434, 8.507203, 47.360901], "geometry": {"coordinates": [[[8.506442, 47.36071], [8.506573, 47.360768], [8.506906, 47.360901], [8.507203, 47.360564], [8.506867, 47.360434], [8.506573, 47.360768]]], "type": "MultiLineString"}, "id": "1847", "properties": {}, "type": "Feature"}, {"bbox": [8.565457, 47.359843, 8.566036, 47.360289], "geometry": {"coordinates": [[[8.565457, 47.359843], [8.565537, 47.359881], [8.565656, 47.360076], [8.565937, 47.360187], [8.565967, 47.360204], [8.566036, 47.360289]]], "type": "MultiLineString"}, "id": "1848", "properties": {}, "type": "Feature"}, {"bbox": [8.5262, 47.370975, 8.52653, 47.371277], "geometry": {"coordinates": [[[8.5262, 47.370975], [8.52653, 47.371277]]], "type": "MultiLineString"}, "id": "1849", "properties": {}, "type": "Feature"}, {"bbox": [8.490781, 47.376513, 8.491023, 47.376951], "geometry": {"coordinates": [[[8.490781, 47.376951], [8.490853, 47.376869], [8.491023, 47.376513]]], "type": "MultiLineString"}, "id": "1850", "properties": {}, "type": "Feature"}, {"bbox": [8.508263, 47.406228, 8.50906, 47.407121], "geometry": {"coordinates": [[[8.50882, 47.407121], [8.508681, 47.406936], [8.50906, 47.406814], [8.508635, 47.406228], [8.508263, 47.40635], [8.508681, 47.406936]]], "type": "MultiLineString"}, "id": "1851", "properties": {}, "type": "Feature"}, {"bbox": [8.509092, 47.423321, 8.510879, 47.424637], "geometry": {"coordinates": [[[8.510879, 47.423321], [8.510671, 47.423444], [8.510453, 47.423559], [8.510227, 47.423666], [8.510058, 47.423743], [8.509901, 47.42383], [8.509756, 47.423926], [8.509624, 47.424032], [8.509508, 47.424144], [8.509407, 47.424264], [8.509322, 47.424389], [8.509277, 47.424456], [8.509224, 47.42452], [8.509162, 47.42458], [8.509092, 47.424637]]], "type": "MultiLineString"}, "id": "1854", "properties": {}, "type": "Feature"}, {"bbox": [8.499733, 47.401905, 8.500651, 47.402873], "geometry": {"coordinates": [[[8.499733, 47.401905], [8.499937, 47.402065], [8.50015, 47.40222], [8.500371, 47.40237], [8.500411, 47.402393], [8.500449, 47.402417], [8.500483, 47.402445], [8.500513, 47.402474], [8.500539, 47.402505], [8.50056, 47.402537], [8.500577, 47.40257], [8.500651, 47.402873]]], "type": "MultiLineString"}, "id": "1856", "properties": {}, "type": "Feature"}, {"bbox": [8.475596, 47.414898, 8.475754, 47.415838], "geometry": {"coordinates": [[[8.475754, 47.414898], [8.475642, 47.414944], [8.475596, 47.414989], [8.475607, 47.415194], [8.475645, 47.41534], [8.475645, 47.415516], [8.475702, 47.415613], [8.475704, 47.415739], [8.475733, 47.415838]]], "type": "MultiLineString"}, "id": "1857", "properties": {}, "type": "Feature"}, {"bbox": [8.602217, 47.353761, 8.615431, 47.355645], "geometry": {"coordinates": [[[8.602217, 47.355645], [8.602403, 47.355532], [8.602578, 47.355406], [8.602609, 47.355386], [8.602642, 47.355367], [8.602677, 47.355351], [8.602715, 47.355337], [8.602754, 47.355326], [8.602794, 47.355317], [8.602836, 47.35531], [8.602878, 47.355307], [8.603165, 47.355273], [8.603448, 47.355231], [8.603726, 47.355176], [8.603998, 47.355109], [8.604051, 47.355089], [8.604107, 47.355072], [8.604165, 47.355059], [8.604224, 47.35505], [8.604285, 47.355044], [8.604823, 47.354998], [8.604989, 47.35497], [8.605057, 47.354958], [8.605125, 47.354946], [8.605194, 47.354935], [8.605287, 47.354918], [8.60538, 47.354898], [8.60547, 47.354875], [8.605598, 47.354831], [8.605647, 47.354797], [8.605669, 47.354781], [8.605689, 47.354764], [8.605708, 47.354746], [8.606073, 47.354374], [8.606154, 47.354299], [8.606244, 47.354229], [8.606342, 47.354163], [8.606447, 47.354104], [8.60656, 47.35405], [8.606678, 47.354003], [8.606802, 47.353963], [8.60693, 47.35393], [8.607172, 47.353875], [8.60762, 47.353799], [8.60762, 47.353799], [8.607707, 47.353785], [8.607795, 47.353775], [8.607883, 47.353767], [8.607972, 47.353763], [8.60806, 47.353761], [8.608149, 47.353762], [8.608969, 47.353786], [8.609786, 47.353818], [8.609849, 47.353822], [8.609913, 47.353826], [8.609976, 47.353831], [8.610038, 47.353837], [8.610101, 47.353844], [8.610163, 47.353852], [8.610398, 47.353885], [8.610566, 47.353909], [8.610734, 47.353934], [8.610901, 47.35396], [8.611042, 47.353988], [8.611179, 47.354024], [8.611311, 47.354069], [8.611436, 47.354122], [8.611554, 47.354182], [8.611664, 47.354248], [8.61228, 47.354615], [8.612353, 47.354655], [8.612431, 47.354691], [8.612513, 47.354722], [8.612599, 47.354748], [8.612688, 47.354769], [8.612779, 47.354784], [8.612872, 47.354794], [8.612966, 47.354798], [8.61306, 47.354797], [8.613153, 47.35479], [8.613245, 47.354777], [8.613335, 47.35476], [8.613423, 47.354736], [8.613507, 47.354708], [8.613902, 47.354561], [8.614031, 47.354517], [8.614166, 47.354479], [8.614304, 47.35445], [8.614446, 47.354427], [8.61459, 47.354413], [8.614735, 47.354407], [8.615252, 47.354358], [8.61529, 47.354354], [8.615327, 47.354348], [8.615363, 47.35434], [8.615398, 47.354329], [8.615431, 47.354317]]], "type": "MultiLineString"}, "id": "1858", "properties": {}, "type": "Feature"}, {"bbox": [8.548446, 47.385761, 8.553089, 47.387465], "geometry": {"coordinates": [[[8.548446, 47.385761], [8.548969, 47.385828], [8.549501, 47.386063], [8.549814, 47.386189], [8.550163, 47.386315], [8.55019, 47.386417], [8.550313, 47.386476], [8.550829, 47.386698], [8.551103, 47.386816], [8.551252, 47.386853], [8.551477, 47.386901], [8.55153, 47.386958], [8.552262, 47.387209], [8.552484, 47.387349], [8.552565, 47.387384], [8.552629, 47.387354], [8.552665, 47.38741], [8.552755, 47.387373], [8.552795, 47.387439], [8.552876, 47.387377], [8.552898, 47.387465], [8.553015, 47.38739], [8.553089, 47.387422]]], "type": "MultiLineString"}, "id": "1859", "properties": {}, "type": "Feature"}, {"bbox": [8.548604, 47.376882, 8.551986, 47.378722], "geometry": {"coordinates": [[[8.548604, 47.376882], [8.548843, 47.376987], [8.549086, 47.377087], [8.549335, 47.37718], [8.549538, 47.37725], [8.549741, 47.377319], [8.549945, 47.377387], [8.550395, 47.377526], [8.550534, 47.377582], [8.551031, 47.377825], [8.551067, 47.377851], [8.5511, 47.37788], [8.551129, 47.37791], [8.551154, 47.377942], [8.551174, 47.377976], [8.55119, 47.378011], [8.551306, 47.378137], [8.551501, 47.378327], [8.551788, 47.378574], [8.551986, 47.378722]]], "type": "MultiLineString"}, "id": "1860", "properties": {}, "type": "Feature"}, {"bbox": [8.563348, 47.349169, 8.564215, 47.350265], "geometry": {"coordinates": [[[8.563348, 47.350265], [8.56346, 47.350087], [8.563494, 47.350036], [8.563517, 47.350005], [8.564172, 47.34922], [8.564215, 47.349169]]], "type": "MultiLineString"}, "id": "1863", "properties": {}, "type": "Feature"}, {"bbox": [8.55807, 47.412297, 8.558943, 47.417191], "geometry": {"coordinates": [[[8.558712, 47.412297], [8.558724, 47.412452], [8.558705, 47.412851], [8.558698, 47.413013], [8.558736, 47.41307], [8.558914, 47.414441], [8.558943, 47.41455], [8.558562, 47.415722], [8.55807, 47.417191]]], "type": "MultiLineString"}, "id": "1865", "properties": {}, "type": "Feature"}, {"bbox": [8.562651, 47.371451, 8.565023, 47.37229], "geometry": {"coordinates": [[[8.562651, 47.371451], [8.562814, 47.37157], [8.563392, 47.371891], [8.563498, 47.371949], [8.563612, 47.372], [8.563732, 47.372045], [8.563857, 47.372083], [8.563986, 47.372113], [8.564119, 47.372136], [8.56476, 47.372247], [8.565023, 47.37229]]], "type": "MultiLineString"}, "id": "1868", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.382708, 8.540019, 47.38359], "geometry": {"coordinates": [[[8.539885, 47.382708], [8.539897, 47.382718], [8.539907, 47.382729], [8.539916, 47.38274], [8.539924, 47.382752], [8.539996, 47.382906], [8.539999, 47.382914], [8.540003, 47.382923], [8.540005, 47.382931], [8.540009, 47.382945], [8.540013, 47.382958], [8.540015, 47.382972], [8.540018, 47.382994], [8.540019, 47.383017], [8.540017, 47.383039], [8.540015, 47.383054], [8.54001, 47.383068], [8.540004, 47.383081], [8.54, 47.383088], [8.539995, 47.383095], [8.53999, 47.383101], [8.53998, 47.383112], [8.539969, 47.383123], [8.539957, 47.383133], [8.539943, 47.383142], [8.539928, 47.38315], [8.539834, 47.383196], [8.539766, 47.383234], [8.539757, 47.383239], [8.539605, 47.383317], [8.539602, 47.383319], [8.539555, 47.383344], [8.539429, 47.383413], [8.53935, 47.383462], [8.5393, 47.383513], [8.539243, 47.38359]]], "type": "MultiLineString"}, "id": "1870", "properties": {}, "type": "Feature"}, {"bbox": [8.567643, 47.40999, 8.569115, 47.410537], "geometry": {"coordinates": [[[8.567643, 47.40999], [8.567918, 47.410112], [8.567939, 47.410121], [8.567961, 47.410129], [8.567985, 47.410136], [8.568008, 47.410141], [8.568033, 47.410144], [8.568057, 47.410147], [8.568082, 47.410148], [8.568107, 47.410147], [8.568132, 47.410145], [8.568156, 47.410142], [8.56818, 47.410137], [8.568409, 47.410114], [8.568438, 47.410111], [8.568467, 47.41011], [8.568495, 47.41011], [8.568524, 47.410112], [8.568552, 47.410116], [8.56858, 47.410121], [8.568607, 47.410128], [8.568633, 47.410137], [8.568658, 47.410147], [8.568681, 47.410159], [8.568895, 47.410249], [8.568926, 47.410265], [8.568955, 47.410282], [8.568981, 47.410301], [8.569005, 47.410322], [8.569026, 47.410344], [8.569044, 47.410367], [8.569059, 47.410391], [8.569071, 47.410415], [8.56908, 47.410441], [8.569115, 47.410537]]], "type": "MultiLineString"}, "id": "1871", "properties": {}, "type": "Feature"}, {"bbox": [8.521015, 47.343396, 8.524337, 47.34658], "geometry": {"coordinates": [[[8.521321, 47.34658], [8.521332, 47.346535], [8.521276, 47.346401], [8.521219, 47.346267], [8.52116, 47.346133], [8.521125, 47.346028], [8.52111, 47.345964], [8.521027, 47.345782], [8.521021, 47.345762], [8.521016, 47.345742], [8.521015, 47.345722], [8.521015, 47.345702], [8.521018, 47.345682], [8.521024, 47.345662], [8.521032, 47.345643], [8.521042, 47.345624], [8.521302, 47.345246], [8.521339, 47.345203], [8.521381, 47.345162], [8.521428, 47.345124], [8.521481, 47.345089], [8.521537, 47.345057], [8.522048, 47.344787], [8.522226, 47.344691], [8.522525, 47.34457], [8.522847, 47.344431], [8.523031, 47.344341], [8.523368, 47.344117], [8.523664, 47.343904], [8.523931, 47.343723], [8.52404, 47.343656], [8.524085, 47.343615], [8.524116, 47.343572], [8.524133, 47.343536], [8.524146, 47.343521], [8.524161, 47.343506], [8.524178, 47.343492], [8.524196, 47.343479], [8.524216, 47.343468], [8.524337, 47.343396]]], "type": "MultiLineString"}, "id": "1873", "properties": {}, "type": "Feature"}, {"bbox": [8.617644, 47.355692, 8.621818, 47.360043], "geometry": {"coordinates": [[[8.61869, 47.355692], [8.618651, 47.355821], [8.618503, 47.356075], [8.6184, 47.356137], [8.618306, 47.356201], [8.618238, 47.356298], [8.618127, 47.35652], [8.617664, 47.357026], [8.617656, 47.357041], [8.61765, 47.357057], [8.617646, 47.357072], [8.617644, 47.357088], [8.617644, 47.357104], [8.617646, 47.35712], [8.61765, 47.357135], [8.617656, 47.357151], [8.617664, 47.357165], [8.617674, 47.35718], [8.617686, 47.357194], [8.617699, 47.357207], [8.617714, 47.357219], [8.617971, 47.357486], [8.618175, 47.357743], [8.618236, 47.357826], [8.618312, 47.357939], [8.618389, 47.358051], [8.618466, 47.358163], [8.618501, 47.358214], [8.618536, 47.358265], [8.618571, 47.358316], [8.618597, 47.358352], [8.618624, 47.358387], [8.618653, 47.358422], [8.618681, 47.358454], [8.61871, 47.358486], [8.61874, 47.358517], [8.618944, 47.358724], [8.619146, 47.358933], [8.619346, 47.359142], [8.619372, 47.359168], [8.619398, 47.359194], [8.619425, 47.35922], [8.61946, 47.359252], [8.619497, 47.359283], [8.619535, 47.359314], [8.619546, 47.359323], [8.619557, 47.359331], [8.619568, 47.35934], [8.619611, 47.359372], [8.619655, 47.359404], [8.6197, 47.359435], [8.619717, 47.359462], [8.619735, 47.359462], [8.619813, 47.359514], [8.619896, 47.359562], [8.619982, 47.359607], [8.62005, 47.359638], [8.620121, 47.359664], [8.620196, 47.359686], [8.620273, 47.359704], [8.620352, 47.359717], [8.620432, 47.359725], [8.620494, 47.359731], [8.620557, 47.359737], [8.620619, 47.359744], [8.62071, 47.359757], [8.6208, 47.359773], [8.620889, 47.359792], [8.620911, 47.359798], [8.620932, 47.359804], [8.620952, 47.359812], [8.621012, 47.359835], [8.621072, 47.359859], [8.621133, 47.359881], [8.62117, 47.359894], [8.621246, 47.359919], [8.621323, 47.359943], [8.621402, 47.359965], [8.621451, 47.359976], [8.621501, 47.359984], [8.621553, 47.35999], [8.621604, 47.359993], [8.621641, 47.359994], [8.621677, 47.359998], [8.621713, 47.360003], [8.621736, 47.360008], [8.621758, 47.360015], [8.621779, 47.360023], [8.621799, 47.360032], [8.621818, 47.360043]]], "type": "MultiLineString"}, "id": "1876", "properties": {}, "type": "Feature"}, {"bbox": [8.563175, 47.374503, 8.566271, 47.375241], "geometry": {"coordinates": [[[8.563175, 47.37503], [8.563694, 47.374582], [8.563718, 47.374566], [8.563744, 47.374552], [8.563772, 47.37454], [8.563801, 47.374529], [8.563832, 47.37452], [8.563864, 47.374513], [8.563896, 47.374508], [8.563929, 47.374505], [8.563962, 47.374503], [8.563995, 47.374504], [8.564029, 47.374506], [8.564061, 47.374511], [8.564093, 47.374517], [8.564124, 47.374525], [8.564154, 47.374535], [8.564183, 47.374547], [8.56421, 47.37456], [8.564235, 47.374575], [8.564258, 47.374592], [8.564279, 47.374609], [8.564297, 47.374628], [8.564389, 47.374712], [8.564408, 47.37473], [8.564429, 47.374748], [8.564453, 47.374763], [8.564478, 47.374778], [8.564506, 47.374791], [8.564535, 47.374802], [8.564565, 47.374811], [8.564597, 47.374819], [8.564629, 47.374824], [8.564662, 47.374828], [8.564695, 47.374829], [8.564728, 47.374829], [8.564761, 47.374826], [8.565819, 47.374716], [8.566271, 47.375241]]], "type": "MultiLineString"}, "id": "1881", "properties": {}, "type": "Feature"}, {"bbox": [8.581708, 47.359792, 8.582973, 47.36001], "geometry": {"coordinates": [[[8.581708, 47.36001], [8.581806, 47.359974], [8.582205, 47.359885], [8.582446, 47.359809], [8.582462, 47.359804], [8.58248, 47.359799], [8.582497, 47.359796], [8.582516, 47.359793], [8.582534, 47.359792], [8.582553, 47.359792], [8.582571, 47.359793], [8.582589, 47.359795], [8.582607, 47.359798], [8.582625, 47.359802], [8.582642, 47.359807], [8.582973, 47.359906]]], "type": "MultiLineString"}, "id": "1885", "properties": {}, "type": "Feature"}, {"bbox": [8.506576, 47.367689, 8.509543, 47.368588], "geometry": {"coordinates": [[[8.509543, 47.368588], [8.509265, 47.368411], [8.509088, 47.36832], [8.508899, 47.368241], [8.508699, 47.368175], [8.508491, 47.368122], [8.506576, 47.367689]]], "type": "MultiLineString"}, "id": "1886", "properties": {}, "type": "Feature"}, {"bbox": [8.475645, 47.415354, 8.479057, 47.415709], "geometry": {"coordinates": [[[8.475645, 47.415516], [8.475967, 47.415497], [8.476072, 47.41552], [8.476402, 47.415475], [8.476401, 47.41543], [8.47664, 47.415364], [8.477042, 47.415366], [8.477226, 47.415354], [8.477305, 47.415357], [8.477394, 47.415442], [8.477744, 47.415466], [8.478344, 47.415566], [8.478793, 47.415707], [8.478838, 47.415709], [8.478883, 47.415709], [8.478928, 47.415706], [8.478972, 47.4157], [8.479015, 47.415691], [8.479057, 47.41568]]], "type": "MultiLineString"}, "id": "1887", "properties": {}, "type": "Feature"}, {"bbox": [8.575324, 47.38473, 8.577204, 47.385914], "geometry": {"coordinates": [[[8.575324, 47.385914], [8.57587, 47.385844], [8.57593, 47.385732], [8.576283, 47.385693], [8.576461, 47.385681], [8.57712, 47.385602], [8.577129, 47.3856], [8.577138, 47.385598], [8.577147, 47.385595], [8.577155, 47.385592], [8.577163, 47.385588], [8.57717, 47.385584], [8.577177, 47.385579], [8.577183, 47.385574], [8.577188, 47.385568], [8.577193, 47.385563], [8.577197, 47.385557], [8.5772, 47.38555], [8.577202, 47.385544], [8.577203, 47.385538], [8.577204, 47.385531], [8.577203, 47.385525], [8.577202, 47.385518], [8.577039, 47.384925], [8.577032, 47.38486], [8.577034, 47.384795], [8.577044, 47.38473]]], "type": "MultiLineString"}, "id": "1888", "properties": {}, "type": "Feature"}, {"bbox": [8.518213, 47.399732, 8.529955, 47.402231], "geometry": {"coordinates": [[[8.529955, 47.399732], [8.529927, 47.399745], [8.529897, 47.399757], [8.529866, 47.399767], [8.529784, 47.399787], [8.5297, 47.399801], [8.529614, 47.399812], [8.529527, 47.399817], [8.52944, 47.399817], [8.52894, 47.399806], [8.528903, 47.399806], [8.528867, 47.399808], [8.528831, 47.399812], [8.528796, 47.399819], [8.528762, 47.399827], [8.528729, 47.399837], [8.528697, 47.399849], [8.528667, 47.399863], [8.528638, 47.399878], [8.528612, 47.399895], [8.528268, 47.400136], [8.528212, 47.400172], [8.528151, 47.400204], [8.528086, 47.400233], [8.528018, 47.400258], [8.527947, 47.400278], [8.527873, 47.400294], [8.526996, 47.400454], [8.526685, 47.400511], [8.526636, 47.400521], [8.526588, 47.400534], [8.526542, 47.40055], [8.526493, 47.400569], [8.526447, 47.400592], [8.526403, 47.400617], [8.526363, 47.400644], [8.526326, 47.400674], [8.526294, 47.400706], [8.526265, 47.400739], [8.52624, 47.400774], [8.52622, 47.40081], [8.526205, 47.400847], [8.526194, 47.400885], [8.526188, 47.400924], [8.526187, 47.400963], [8.526191, 47.401001], [8.526196, 47.401029], [8.526208, 47.401069], [8.526225, 47.401108], [8.526247, 47.401146], [8.526273, 47.401183], [8.526303, 47.401218], [8.526326, 47.401241], [8.525002, 47.401782], [8.524967, 47.401796], [8.524035, 47.402176], [8.523937, 47.402219], [8.523928, 47.402222], [8.523919, 47.402225], [8.52391, 47.402227], [8.5239, 47.402229], [8.52389, 47.40223], [8.52388, 47.402231], [8.52387, 47.402231], [8.523859, 47.40223], [8.52385, 47.402229], [8.52384, 47.402227], [8.52383, 47.402225], [8.523821, 47.402222], [8.523766, 47.402202], [8.523573, 47.40213], [8.523544, 47.402125], [8.521948, 47.401834], [8.520994, 47.401644], [8.520931, 47.401634], [8.520867, 47.401627], [8.520802, 47.401624], [8.520737, 47.401625], [8.520672, 47.40163], [8.520608, 47.401638], [8.520546, 47.401651], [8.520241, 47.401721], [8.520074, 47.401754], [8.519903, 47.401777], [8.51973, 47.40179], [8.519556, 47.401792], [8.519382, 47.401785], [8.51921, 47.401768], [8.519199, 47.401766], [8.519124, 47.401755], [8.519049, 47.401743], [8.518974, 47.401729], [8.518758, 47.40168], [8.518549, 47.401618], [8.518349, 47.401543], [8.518213, 47.401482]]], "type": "MultiLineString"}, "id": "1889", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.358445, 8.523115, 47.359321], "geometry": {"coordinates": [[[8.522947, 47.359321], [8.523115, 47.358445]]], "type": "MultiLineString"}, "id": "1890", "properties": {}, "type": "Feature"}, {"bbox": [8.467512, 47.389396, 8.46932, 47.390483], "geometry": {"coordinates": [[[8.46932, 47.389396], [8.469195, 47.389458], [8.469067, 47.389517], [8.468937, 47.389573], [8.468438, 47.389859], [8.467963, 47.390163], [8.467512, 47.390483]]], "type": "MultiLineString"}, "id": "1891", "properties": {}, "type": "Feature"}, {"bbox": [8.475352, 47.389958, 8.4772, 47.391857], "geometry": {"coordinates": [[[8.476606, 47.389958], [8.476648, 47.390003], [8.476859, 47.390313], [8.477171, 47.390618], [8.477179, 47.390627], [8.477186, 47.390637], [8.477191, 47.390646], [8.477196, 47.390656], [8.477199, 47.390666], [8.4772, 47.390677], [8.4772, 47.390687], [8.477199, 47.390697], [8.477197, 47.390708], [8.477193, 47.390718], [8.477188, 47.390727], [8.477181, 47.390737], [8.477174, 47.390746], [8.477165, 47.390754], [8.477155, 47.390762], [8.477144, 47.390769], [8.477132, 47.390776], [8.476702, 47.391013], [8.476233, 47.391295], [8.475363, 47.391817], [8.475352, 47.391857]]], "type": "MultiLineString"}, "id": "1893", "properties": {}, "type": "Feature"}, {"bbox": [8.594253, 47.367407, 8.601023, 47.373566], "geometry": {"coordinates": [[[8.594253, 47.373566], [8.594282, 47.373538], [8.594295, 47.373526], [8.594309, 47.373516], [8.594325, 47.373506], [8.594342, 47.373498], [8.594361, 47.37349], [8.594441, 47.37346], [8.594512, 47.373437], [8.595101, 47.373257], [8.595226, 47.373223], [8.595355, 47.373196], [8.595487, 47.373176], [8.595951, 47.373119], [8.596146, 47.37309], [8.596337, 47.373052], [8.596525, 47.373005], [8.59697, 47.372882], [8.597557, 47.372719], [8.597688, 47.372684], [8.59782, 47.372653], [8.597954, 47.372625], [8.598507, 47.372516], [8.5986, 47.372495], [8.598689, 47.372469], [8.598776, 47.372438], [8.598859, 47.372403], [8.598937, 47.372364], [8.599352, 47.372136], [8.599438, 47.372085], [8.599519, 47.372029], [8.599593, 47.371969], [8.59966, 47.371905], [8.599774, 47.371788], [8.599864, 47.371685], [8.59994, 47.371577], [8.599999, 47.371464], [8.600217, 47.370982], [8.600248, 47.370916], [8.600275, 47.370866], [8.600304, 47.370816], [8.600335, 47.370767], [8.600469, 47.370562], [8.600519, 47.370475], [8.600555, 47.370386], [8.600579, 47.370295], [8.600589, 47.370202], [8.600686, 47.369975], [8.600739, 47.369852], [8.60075, 47.369827], [8.600759, 47.369801], [8.600765, 47.369776], [8.600768, 47.36975], [8.600767, 47.369724], [8.600763, 47.369699], [8.600756, 47.369673], [8.600746, 47.369648], [8.600733, 47.369624], [8.600717, 47.369601], [8.600698, 47.369578], [8.600677, 47.369557], [8.600653, 47.369537], [8.600396, 47.369342], [8.600132, 47.369156], [8.599604, 47.368786], [8.599565, 47.368751], [8.599532, 47.368713], [8.599503, 47.368673], [8.599498, 47.368663], [8.599493, 47.368652], [8.59949, 47.368642], [8.599488, 47.368631], [8.599488, 47.36862], [8.599489, 47.368609], [8.599491, 47.368598], [8.599495, 47.368587], [8.5995, 47.368576], [8.599506, 47.368566], [8.599519, 47.36855], [8.599533, 47.368534], [8.59955, 47.368519], [8.599568, 47.368504], [8.599587, 47.368491], [8.599677, 47.368438], [8.599769, 47.368388], [8.599864, 47.36834], [8.599985, 47.368285], [8.60011, 47.368234], [8.600239, 47.368187], [8.600493, 47.368101], [8.600552, 47.368078], [8.600608, 47.368052], [8.60066, 47.368022], [8.600708, 47.36799], [8.600752, 47.367954], [8.600791, 47.367916], [8.600824, 47.367876], [8.600852, 47.367834], [8.600874, 47.367791], [8.600891, 47.367746], [8.600923, 47.367634], [8.601023, 47.367407]]], "type": "MultiLineString"}, "id": "1894", "properties": {}, "type": "Feature"}, {"bbox": [8.524713, 47.329211, 8.529881, 47.332432], "geometry": {"coordinates": [[[8.529881, 47.332393], [8.528423, 47.332432], [8.528385, 47.33243], [8.528348, 47.332426], [8.528312, 47.33242], [8.528276, 47.332411], [8.528242, 47.332401], [8.528209, 47.332389], [8.528177, 47.332375], [8.528148, 47.332359], [8.527839, 47.332221], [8.527778, 47.332189], [8.527722, 47.332154], [8.52767, 47.332115], [8.527623, 47.332073], [8.527582, 47.332029], [8.527547, 47.331982], [8.527199, 47.331395], [8.527022, 47.330995], [8.526885, 47.330588], [8.526789, 47.330175], [8.52678, 47.330061], [8.526678, 47.329985], [8.526662, 47.329974], [8.526644, 47.329964], [8.526625, 47.329955], [8.526605, 47.329947], [8.526584, 47.329941], [8.526562, 47.329936], [8.52654, 47.329932], [8.526517, 47.32993], [8.526423, 47.329907], [8.526396, 47.329896], [8.52637, 47.329884], [8.526347, 47.329871], [8.526272, 47.329809], [8.526198, 47.329752], [8.526181, 47.329738], [8.526181, 47.329738], [8.526149, 47.329716], [8.526113, 47.329695], [8.526075, 47.329678], [8.526058, 47.32967], [8.525661, 47.329517], [8.525044, 47.329286], [8.524972, 47.329261], [8.524899, 47.329238], [8.524824, 47.329219], [8.524713, 47.329211]]], "type": "MultiLineString"}, "id": "1895", "properties": {}, "type": "Feature"}, {"bbox": [8.501089, 47.353155, 8.505942, 47.3563], "geometry": {"coordinates": [[[8.505942, 47.3563], [8.505587, 47.356109], [8.50553, 47.356078], [8.505469, 47.356049], [8.505391, 47.356016], [8.505003, 47.355866], [8.504889, 47.355826], [8.504654, 47.355747], [8.504564, 47.355718], [8.504463, 47.355687], [8.50436, 47.355659], [8.504139, 47.355605], [8.504087, 47.355592], [8.503905, 47.355544], [8.50379, 47.355509], [8.50335, 47.355375], [8.503117, 47.355302], [8.503041, 47.355277], [8.502966, 47.355251], [8.502894, 47.355224], [8.5028, 47.355187], [8.502769, 47.355172], [8.502567, 47.355102], [8.502535, 47.355043], [8.502508, 47.355012], [8.502384, 47.354919], [8.502348, 47.35489], [8.502266, 47.354821], [8.502243, 47.354797], [8.502176, 47.35471], [8.502165, 47.354693], [8.502112, 47.354584], [8.502038, 47.354349], [8.50189, 47.354017], [8.501883, 47.354003], [8.501766, 47.353812], [8.501749, 47.353791], [8.501292, 47.353364], [8.501221, 47.353295], [8.501154, 47.353226], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "1897", "properties": {}, "type": "Feature"}, {"bbox": [8.486915, 47.380001, 8.487665, 47.382432], "geometry": {"coordinates": [[[8.487463, 47.382432], [8.487471, 47.382251], [8.487646, 47.381653], [8.487665, 47.381555], [8.487605, 47.381429], [8.487544, 47.381303], [8.48748, 47.381178], [8.487409, 47.381043], [8.487336, 47.380909], [8.487262, 47.380775], [8.487217, 47.38069], [8.487173, 47.380604], [8.487129, 47.380518], [8.487052, 47.380347], [8.48698, 47.380175], [8.486915, 47.380001]]], "type": "MultiLineString"}, "id": "1898", "properties": {}, "type": "Feature"}, {"bbox": [8.503968, 47.361696, 8.504338, 47.362109], "geometry": {"coordinates": [[[8.503968, 47.362109], [8.504007, 47.362073], [8.504183, 47.361927], [8.504198, 47.361909], [8.504241, 47.361828], [8.504257, 47.361809], [8.504291, 47.361781], [8.504338, 47.361696]]], "type": "MultiLineString"}, "id": "1900", "properties": {}, "type": "Feature"}, {"bbox": [8.4882, 47.404861, 8.488802, 47.405896], "geometry": {"coordinates": [[[8.4882, 47.404861], [8.488234, 47.404911], [8.488267, 47.404963], [8.488414, 47.405194], [8.488497, 47.405326], [8.488659, 47.405806], [8.488734, 47.405863], [8.488802, 47.405896]]], "type": "MultiLineString"}, "id": "1901", "properties": {}, "type": "Feature"}, {"bbox": [8.508268, 47.417887, 8.511174, 47.419518], "geometry": {"coordinates": [[[8.511174, 47.417887], [8.509802, 47.41868], [8.509871, 47.418741], [8.509517, 47.418923], [8.509475, 47.418953], [8.509429, 47.41899], [8.509178, 47.419256], [8.509057, 47.419188], [8.508838, 47.419306], [8.508793, 47.419265], [8.508268, 47.419518]]], "type": "MultiLineString"}, "id": "1902", "properties": {}, "type": "Feature"}, {"bbox": [8.504336, 47.419952, 8.506647, 47.420636], "geometry": {"coordinates": [[[8.506647, 47.419952], [8.506334, 47.420138], [8.505519, 47.420385], [8.505486, 47.420375], [8.505452, 47.420366], [8.505416, 47.42036], [8.50538, 47.420356], [8.505344, 47.420355], [8.505307, 47.420355], [8.505271, 47.420358], [8.505235, 47.420363], [8.5052, 47.42037], [8.505166, 47.420379], [8.504336, 47.420636]]], "type": "MultiLineString"}, "id": "1903", "properties": {}, "type": "Feature"}, {"bbox": [8.510216, 47.409054, 8.510986, 47.409752], "geometry": {"coordinates": [[[8.510216, 47.409054], [8.510244, 47.40909], [8.510409, 47.409178], [8.510754, 47.409384], [8.510931, 47.409637], [8.510986, 47.409752]]], "type": "MultiLineString"}, "id": "1906", "properties": {}, "type": "Feature"}, {"bbox": [8.535371, 47.375749, 8.535738, 47.375964], "geometry": {"coordinates": [[[8.535371, 47.375802], [8.535447, 47.375749], [8.535738, 47.375964]]], "type": "MultiLineString"}, "id": "1908", "properties": {}, "type": "Feature"}, {"bbox": [8.522175, 47.357934, 8.523632, 47.358445], "geometry": {"coordinates": [[[8.523632, 47.358316], [8.523551, 47.358318], [8.523601, 47.358172], [8.523352, 47.358125], [8.523135, 47.358085], [8.523134, 47.35809], [8.522494, 47.358028], [8.522485, 47.357965], [8.522269, 47.357934], [8.522235, 47.358089], [8.522175, 47.358382], [8.522254, 47.358388], [8.522584, 47.35842], [8.52259, 47.35839], [8.523086, 47.358438], [8.523115, 47.358445]]], "type": "MultiLineString"}, "id": "1909", "properties": {}, "type": "Feature"}, {"bbox": [8.53978, 47.368392, 8.540288, 47.368729], "geometry": {"coordinates": [[[8.53978, 47.368392], [8.540131, 47.368453], [8.540044, 47.368695], [8.540288, 47.368729]]], "type": "MultiLineString"}, "id": "1914", "properties": {}, "type": "Feature"}, {"bbox": [8.496264, 47.40761, 8.50119, 47.411467], "geometry": {"coordinates": [[[8.497547, 47.40761], [8.497584, 47.407636], [8.497812, 47.407819], [8.498214, 47.408093], [8.498245, 47.408114], [8.498286, 47.408146], [8.49833, 47.40818], [8.498404, 47.408253], [8.498514, 47.408381], [8.498548, 47.408411], [8.498604, 47.408463], [8.498714, 47.408528], [8.498832, 47.408573], [8.4991, 47.40866], [8.499264, 47.408731], [8.499414, 47.408817], [8.499552, 47.408911], [8.499661, 47.40902], [8.499934, 47.409371], [8.499986, 47.409442], [8.500084, 47.409572], [8.50016, 47.409713], [8.500185, 47.409856], [8.50022, 47.409961], [8.500291, 47.410058], [8.500404, 47.410136], [8.500557, 47.410211], [8.500782, 47.410338], [8.500942, 47.41044], [8.501128, 47.41058], [8.501143, 47.410594], [8.501157, 47.410608], [8.501169, 47.410624], [8.501178, 47.41064], [8.501185, 47.410656], [8.501188, 47.410665], [8.50119, 47.410675], [8.50119, 47.410684], [8.50119, 47.410694], [8.501188, 47.410703], [8.501185, 47.410712], [8.501181, 47.410721], [8.501176, 47.410731], [8.50117, 47.410739], [8.501162, 47.410748], [8.501154, 47.410756], [8.501145, 47.410763], [8.501135, 47.41077], [8.501124, 47.410776], [8.501112, 47.410782], [8.5011, 47.410787], [8.501087, 47.410791], [8.500953, 47.41083], [8.500721, 47.41092], [8.499712, 47.411371], [8.499646, 47.411398], [8.499577, 47.41142], [8.499505, 47.411439], [8.499431, 47.411453], [8.499356, 47.411462], [8.49928, 47.411467], [8.499203, 47.411467], [8.498041, 47.411434], [8.497632, 47.411424], [8.497531, 47.41142], [8.496821, 47.411403], [8.496736, 47.411399], [8.496651, 47.411394], [8.496567, 47.411386], [8.496407, 47.41137], [8.496377, 47.411366], [8.496347, 47.411359], [8.496318, 47.411352], [8.49629, 47.411342], [8.496264, 47.41133]]], "type": "MultiLineString"}, "id": "1919", "properties": {}, "type": "Feature"}, {"bbox": [8.499026, 47.403619, 8.499966, 47.40488], "geometry": {"coordinates": [[[8.499026, 47.403692], [8.499033, 47.403695], [8.499334, 47.403619], [8.499429, 47.403792], [8.499274, 47.403832], [8.499617, 47.404445], [8.499544, 47.404508], [8.499773, 47.404823], [8.499898, 47.40479], [8.499966, 47.40488]]], "type": "MultiLineString"}, "id": "1920", "properties": {}, "type": "Feature"}, {"bbox": [8.505618, 47.428526, 8.507128, 47.433147], "geometry": {"coordinates": [[[8.505623, 47.428526], [8.505657, 47.428538], [8.505693, 47.428548], [8.50573, 47.428555], [8.505768, 47.428561], [8.505807, 47.428565], [8.505968, 47.428582], [8.506126, 47.428608], [8.50628, 47.428645], [8.506937, 47.428805], [8.50695, 47.428809], [8.506962, 47.428814], [8.506973, 47.42882], [8.506983, 47.428827], [8.506992, 47.428834], [8.507001, 47.428841], [8.507008, 47.428849], [8.507014, 47.428857], [8.50702, 47.428866], [8.507054, 47.428937], [8.507085, 47.429009], [8.507114, 47.429082], [8.507128, 47.429186], [8.507107, 47.429331], [8.507044, 47.429482], [8.506978, 47.429579], [8.506694, 47.429928], [8.506634, 47.430024], [8.506297, 47.430715], [8.506275, 47.43075], [8.506249, 47.430783], [8.506218, 47.430815], [8.506183, 47.430845], [8.506145, 47.430872], [8.505858, 47.431065], [8.505838, 47.43108], [8.50582, 47.431097], [8.505804, 47.431114], [8.50579, 47.431133], [8.505779, 47.431152], [8.50577, 47.431171], [8.505763, 47.431192], [8.505759, 47.431212], [8.505736, 47.431376], [8.505707, 47.431589], [8.505676, 47.43181], [8.505618, 47.432226], [8.505619, 47.43226], [8.505622, 47.432292], [8.505655, 47.43233], [8.505858, 47.432537], [8.506131, 47.432821], [8.506417, 47.433129], [8.506434, 47.433147]]], "type": "MultiLineString"}, "id": "1924", "properties": {}, "type": "Feature"}, {"bbox": [8.518715, 47.402202, 8.527785, 47.405681], "geometry": {"coordinates": [[[8.527785, 47.4036], [8.52771, 47.403602], [8.526625, 47.403908], [8.52567, 47.404192], [8.525644, 47.4042], [8.525619, 47.40421], [8.525595, 47.404222], [8.525572, 47.404234], [8.52393, 47.405216], [8.523493, 47.405484], [8.523417, 47.405527], [8.523335, 47.405565], [8.523248, 47.405597], [8.523157, 47.405624], [8.523063, 47.405645], [8.522967, 47.40566], [8.522798, 47.405672], [8.522628, 47.40568], [8.522458, 47.405681], [8.522431, 47.405681], [8.522402, 47.405681], [8.521863, 47.405674], [8.521539, 47.405669], [8.521489, 47.405666], [8.521441, 47.405661], [8.521393, 47.405653], [8.521346, 47.405642], [8.5213, 47.405629], [8.521257, 47.405612], [8.521216, 47.405594], [8.521177, 47.405573], [8.521141, 47.40555], [8.519809, 47.404626], [8.518962, 47.404058], [8.518911, 47.404021], [8.518866, 47.403981], [8.518825, 47.403938], [8.518791, 47.403893], [8.518763, 47.403845], [8.518741, 47.403797], [8.518725, 47.403747], [8.518717, 47.403696], [8.518715, 47.403646], [8.518719, 47.403595], [8.518731, 47.403544], [8.518741, 47.403518], [8.518754, 47.403492], [8.51877, 47.403466], [8.51879, 47.403442], [8.518813, 47.403419], [8.518839, 47.403398], [8.518867, 47.403378], [8.518898, 47.40336], [8.518931, 47.403344], [8.518966, 47.40333], [8.519002, 47.403318], [8.51904, 47.403309], [8.51908, 47.403301], [8.51912, 47.403297], [8.519388, 47.403272], [8.519452, 47.403266], [8.520473, 47.403142], [8.521265, 47.403066], [8.521333, 47.403059], [8.522183, 47.402961], [8.522304, 47.402943], [8.522423, 47.402919], [8.522538, 47.402889], [8.52265, 47.402853], [8.522718, 47.402823], [8.52274, 47.402812], [8.522761, 47.402799], [8.522781, 47.402786], [8.522912, 47.402692], [8.523012, 47.402619], [8.52311, 47.402545], [8.523206, 47.40247], [8.523317, 47.402391], [8.523439, 47.402319], [8.52357, 47.402256], [8.523616, 47.402238], [8.523664, 47.402223], [8.523714, 47.402211], [8.523766, 47.402202]]], "type": "MultiLineString"}, "id": "1925", "properties": {}, "type": "Feature"}, {"bbox": [8.548198, 47.411253, 8.54901, 47.412183], "geometry": {"coordinates": [[[8.548402, 47.412183], [8.548198, 47.411718], [8.548294, 47.411685], [8.54901, 47.411491], [8.548865, 47.411253]]], "type": "MultiLineString"}, "id": "1929", "properties": {}, "type": "Feature"}, {"bbox": [8.521446, 47.38493, 8.524191, 47.386063], "geometry": {"coordinates": [[[8.524191, 47.384974], [8.524071, 47.384937], [8.524063, 47.384934], [8.524055, 47.384933], [8.524047, 47.384931], [8.524039, 47.384931], [8.52403, 47.38493], [8.524022, 47.384931], [8.524013, 47.384931], [8.524005, 47.384933], [8.523997, 47.384934], [8.523929, 47.384956], [8.521913, 47.385905], [8.521959, 47.38594], [8.521771, 47.38604], [8.521446, 47.386063]]], "type": "MultiLineString"}, "id": "1930", "properties": {}, "type": "Feature"}, {"bbox": [8.545705, 47.372467, 8.547257, 47.373018], "geometry": {"coordinates": [[[8.545705, 47.372467], [8.545961, 47.372662], [8.546049, 47.372723], [8.546146, 47.372779], [8.546249, 47.372829], [8.546359, 47.372872], [8.546474, 47.372908], [8.546791, 47.372954], [8.547077, 47.373018], [8.547257, 47.373009]]], "type": "MultiLineString"}, "id": "1931", "properties": {}, "type": "Feature"}, {"bbox": [8.540449, 47.393763, 8.541681, 47.393831], "geometry": {"coordinates": [[[8.540449, 47.393829], [8.540979, 47.39381], [8.541207, 47.393825], [8.541341, 47.393831], [8.541681, 47.393763]]], "type": "MultiLineString"}, "id": "1937", "properties": {}, "type": "Feature"}, {"bbox": [8.477449, 47.412418, 8.480362, 47.413605], "geometry": {"coordinates": [[[8.480362, 47.412418], [8.480037, 47.412519], [8.479713, 47.412627], [8.479542, 47.412657], [8.479523, 47.412662], [8.47943, 47.412695], [8.479345, 47.412725], [8.479205, 47.412775], [8.478924, 47.412909], [8.477621, 47.41353], [8.477449, 47.413605]]], "type": "MultiLineString"}, "id": "1939", "properties": {}, "type": "Feature"}, {"bbox": [8.594862, 47.397047, 8.59627, 47.398941], "geometry": {"coordinates": [[[8.594862, 47.397047], [8.594942, 47.397069], [8.59502, 47.397094], [8.595097, 47.397122], [8.59627, 47.397922], [8.596193, 47.398077], [8.596161, 47.39819], [8.596128, 47.398309], [8.596073, 47.398505], [8.596054, 47.398552], [8.596029, 47.398597], [8.595999, 47.398641], [8.595964, 47.398682], [8.595924, 47.398722], [8.595673, 47.398941]]], "type": "MultiLineString"}, "id": "1941", "properties": {}, "type": "Feature"}, {"bbox": [8.57542, 47.409542, 8.576022, 47.409717], "geometry": {"coordinates": [[[8.57542, 47.409542], [8.575524, 47.4097], [8.575785, 47.409634], [8.576022, 47.409717]]], "type": "MultiLineString"}, "id": "1942", "properties": {}, "type": "Feature"}, {"bbox": [8.513039, 47.389485, 8.514116, 47.390646], "geometry": {"coordinates": [[[8.513039, 47.389485], [8.513055, 47.389566], [8.513076, 47.389647], [8.513101, 47.389727], [8.513232, 47.389911], [8.513367, 47.390094], [8.513507, 47.390275], [8.513549, 47.390321], [8.513595, 47.390365], [8.513645, 47.390407], [8.513654, 47.390415], [8.513665, 47.390421], [8.513676, 47.390427], [8.513687, 47.390432], [8.5137, 47.390437], [8.513713, 47.390441], [8.513726, 47.390444], [8.513747, 47.390447], [8.513767, 47.390452], [8.513786, 47.390458], [8.513804, 47.390466], [8.513821, 47.390474], [8.513914, 47.390535], [8.514013, 47.390593], [8.514116, 47.390646]]], "type": "MultiLineString"}, "id": "1944", "properties": {}, "type": "Feature"}, {"bbox": [8.545705, 47.37211, 8.546273, 47.372467], "geometry": {"coordinates": [[[8.545705, 47.372467], [8.54581, 47.37246], [8.545989, 47.372337], [8.546013, 47.372186], [8.546273, 47.37211]]], "type": "MultiLineString"}, "id": "1945", "properties": {}, "type": "Feature"}, {"bbox": [8.542322, 47.380098, 8.542672, 47.380373], "geometry": {"coordinates": [[[8.542322, 47.380261], [8.542346, 47.380269], [8.542656, 47.380373], [8.542672, 47.380348], [8.542467, 47.380098], [8.542346, 47.380269]]], "type": "MultiLineString"}, "id": "1949", "properties": {}, "type": "Feature"}, {"bbox": [8.502237, 47.355155, 8.506546, 47.356971], "geometry": {"coordinates": [[[8.506546, 47.356971], [8.506379, 47.356872], [8.50499, 47.356381], [8.504667, 47.356252], [8.504021, 47.355953], [8.503888, 47.355891], [8.503597, 47.355717], [8.503008, 47.355536], [8.502299, 47.355225], [8.502237, 47.355155]]], "type": "MultiLineString"}, "id": "1953", "properties": {}, "type": "Feature"}, {"bbox": [8.506205, 47.407599, 8.507337, 47.408465], "geometry": {"coordinates": [[[8.506985, 47.407727], [8.506927, 47.407748], [8.506816, 47.407599], [8.506205, 47.407803], [8.506436, 47.408124], [8.506403, 47.408136], [8.506476, 47.408235], [8.506818, 47.408118], [8.506953, 47.408302], [8.506837, 47.408338], [8.506931, 47.408465], [8.507337, 47.408328], [8.506927, 47.407748]]], "type": "MultiLineString"}, "id": "1954", "properties": {}, "type": "Feature"}, {"bbox": [8.527722, 47.403659, 8.529262, 47.404228], "geometry": {"coordinates": [[[8.529262, 47.404228], [8.529148, 47.404193], [8.528293, 47.403904], [8.528133, 47.403846], [8.527978, 47.403782], [8.527828, 47.403712], [8.527722, 47.403659]]], "type": "MultiLineString"}, "id": "1955", "properties": {}, "type": "Feature"}, {"bbox": [8.518941, 47.399904, 8.522749, 47.403317], "geometry": {"coordinates": [[[8.522749, 47.403288], [8.52264, 47.403302], [8.522549, 47.403312], [8.522457, 47.403317], [8.522365, 47.403317], [8.522269, 47.403312], [8.522174, 47.403301], [8.522081, 47.403283], [8.521991, 47.403259], [8.521371, 47.40307], [8.521333, 47.403059], [8.521294, 47.403047], [8.521256, 47.403035], [8.52122, 47.40302], [8.521186, 47.403003], [8.521152, 47.402985], [8.521111, 47.402964], [8.521103, 47.40296], [8.521096, 47.402956], [8.52109, 47.402951], [8.521084, 47.402945], [8.521079, 47.402939], [8.521075, 47.402933], [8.521072, 47.402927], [8.52107, 47.402921], [8.521068, 47.402914], [8.521043, 47.402751], [8.521037, 47.402723], [8.521027, 47.402696], [8.521014, 47.402669], [8.520997, 47.402644], [8.520978, 47.402619], [8.520955, 47.402596], [8.520929, 47.402574], [8.5209, 47.402554], [8.520869, 47.402535], [8.520835, 47.402519], [8.5208, 47.402505], [8.520482, 47.402388], [8.520482, 47.402388], [8.520467, 47.402383], [8.520451, 47.402379], [8.520435, 47.402376], [8.520419, 47.402374], [8.520402, 47.402374], [8.520386, 47.402374], [8.520369, 47.402375], [8.520353, 47.402377], [8.520337, 47.40238], [8.520289, 47.402392], [8.520242, 47.402405], [8.520196, 47.40242], [8.520112, 47.402446], [8.520026, 47.402467], [8.519937, 47.402483], [8.519566, 47.402541], [8.519405, 47.402565], [8.519244, 47.402586], [8.519082, 47.402605], [8.518976, 47.402619], [8.518974, 47.402619], [8.518971, 47.40262], [8.518969, 47.40262], [8.518966, 47.402619], [8.518964, 47.402619], [8.518961, 47.402619], [8.518959, 47.402618], [8.518957, 47.402617], [8.518954, 47.402616], [8.518952, 47.402615], [8.51895, 47.402614], [8.518949, 47.402613], [8.518947, 47.402612], [8.518946, 47.40261], [8.518944, 47.402609], [8.518943, 47.402607], [8.518942, 47.402606], [8.518942, 47.402604], [8.518941, 47.402602], [8.518941, 47.402601], [8.518941, 47.402599], [8.518941, 47.402597], [8.518942, 47.402596], [8.518942, 47.402594], [8.518943, 47.402592], [8.518944, 47.402591], [8.519008, 47.402508], [8.519027, 47.402481], [8.519042, 47.402453], [8.519053, 47.402423], [8.51906, 47.402394], [8.519063, 47.402363], [8.519062, 47.402333], [8.519038, 47.402118], [8.519076, 47.402106], [8.519088, 47.402101], [8.5191, 47.402096], [8.519111, 47.40209], [8.519121, 47.402083], [8.519131, 47.402076], [8.519139, 47.402069], [8.519147, 47.402061], [8.519154, 47.402052], [8.519197, 47.40199], [8.519214, 47.401963], [8.519227, 47.401936], [8.519237, 47.401907], [8.519244, 47.401878], [8.519246, 47.401849], [8.519245, 47.40182], [8.519241, 47.401791], [8.519199, 47.401766], [8.519164, 47.401743], [8.519174, 47.401733], [8.519369, 47.401687], [8.519377, 47.401685], [8.519385, 47.401683], [8.519392, 47.40168], [8.519399, 47.401676], [8.519405, 47.401672], [8.519411, 47.401668], [8.519416, 47.401663], [8.519649, 47.401439], [8.520044, 47.401059], [8.520129, 47.400957], [8.520145, 47.400937], [8.520161, 47.400917], [8.520182, 47.400891], [8.520341, 47.40067], [8.520408, 47.400557], [8.520541, 47.400399], [8.520556, 47.400379], [8.520569, 47.400358], [8.520579, 47.400336], [8.520647, 47.40015], [8.52066, 47.400124], [8.520676, 47.400099], [8.520695, 47.400075], [8.520818, 47.399929], [8.520831, 47.399904]]], "type": "MultiLineString"}, "id": "1961", "properties": {}, "type": "Feature"}, {"bbox": [8.566941, 47.359957, 8.567019, 47.360292], "geometry": {"coordinates": [[[8.566941, 47.359957], [8.566952, 47.359986], [8.567011, 47.359985], [8.567019, 47.360292]]], "type": "MultiLineString"}, "id": "1962", "properties": {}, "type": "Feature"}, {"bbox": [8.518869, 47.356952, 8.519291, 47.357758], "geometry": {"coordinates": [[[8.519291, 47.356952], [8.519208, 47.357078], [8.518869, 47.357758]]], "type": "MultiLineString"}, "id": "1965", "properties": {}, "type": "Feature"}, {"bbox": [8.538842, 47.372287, 8.540174, 47.373931], "geometry": {"coordinates": [[[8.540174, 47.372287], [8.539951, 47.372533], [8.539535, 47.373058], [8.538842, 47.373931]]], "type": "MultiLineString"}, "id": "1966", "properties": {}, "type": "Feature"}, {"bbox": [8.522872, 47.325029, 8.529592, 47.328469], "geometry": {"coordinates": [[[8.529592, 47.3281], [8.529067, 47.32808], [8.528971, 47.328091], [8.528877, 47.328107], [8.528786, 47.32813], [8.528698, 47.328158], [8.528614, 47.328191], [8.528536, 47.328229], [8.528462, 47.328273], [8.528395, 47.32832], [8.528279, 47.32839], [8.528249, 47.328407], [8.528218, 47.328421], [8.528184, 47.328434], [8.528149, 47.328445], [8.528113, 47.328454], [8.528076, 47.328461], [8.528038, 47.328465], [8.527969, 47.328469], [8.527899, 47.328469], [8.527831, 47.328464], [8.527763, 47.328455], [8.527696, 47.328442], [8.527632, 47.328425], [8.52757, 47.328404], [8.526873, 47.328136], [8.52679, 47.328102], [8.526586, 47.328017], [8.526496, 47.32798], [8.526331, 47.327926], [8.526232, 47.327894], [8.526042, 47.327873], [8.525806, 47.327863], [8.525749, 47.327862], [8.52545, 47.327881], [8.525197, 47.327905], [8.524665, 47.327949], [8.524538, 47.327858], [8.524341, 47.327724], [8.524178, 47.327605], [8.524066, 47.327523], [8.523705, 47.327272], [8.52369, 47.327257], [8.523555, 47.327127], [8.523466, 47.32699], [8.523359, 47.326709], [8.523328, 47.326563], [8.523299, 47.32642], [8.523252, 47.326115], [8.523178, 47.325806], [8.523043, 47.325481], [8.523038, 47.32547], [8.522982, 47.325346], [8.522898, 47.325162], [8.522872, 47.325029]]], "type": "MultiLineString"}, "id": "1967", "properties": {}, "type": "Feature"}, {"bbox": [8.543322, 47.371019, 8.544172, 47.371312], "geometry": {"coordinates": [[[8.543322, 47.371019], [8.54346, 47.371066], [8.5435, 47.371079], [8.543711, 47.371141], [8.543916, 47.371212], [8.544113, 47.371292], [8.544172, 47.371312]]], "type": "MultiLineString"}, "id": "1968", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380414, 8.525612, 47.380591], "geometry": {"coordinates": [[[8.525612, 47.380414], [8.525425, 47.380457], [8.525252, 47.380547], [8.525167, 47.380591]]], "type": "MultiLineString"}, "id": "1970", "properties": {}, "type": "Feature"}, {"bbox": [8.561076, 47.408296, 8.561334, 47.411648], "geometry": {"coordinates": [[[8.561309, 47.408296], [8.561334, 47.408369], [8.561246, 47.409447], [8.5612, 47.410083], [8.561145, 47.410856], [8.56112, 47.410978], [8.561076, 47.411566], [8.561094, 47.411648]]], "type": "MultiLineString"}, "id": "1971", "properties": {}, "type": "Feature"}, {"bbox": [8.526264, 47.378218, 8.526688, 47.378646], "geometry": {"coordinates": [[[8.526264, 47.378218], [8.526295, 47.37829], [8.526688, 47.378646]]], "type": "MultiLineString"}, "id": "1973", "properties": {}, "type": "Feature"}, {"bbox": [8.509331, 47.398257, 8.514399, 47.398935], "geometry": {"coordinates": [[[8.509331, 47.398935], [8.509341, 47.398908], [8.509355, 47.398882], [8.509371, 47.398857], [8.509391, 47.398834], [8.509427, 47.3988], [8.509466, 47.398769], [8.50951, 47.39874], [8.509556, 47.398714], [8.509606, 47.39869], [8.509659, 47.398669], [8.509714, 47.398652], [8.510099, 47.398544], [8.510492, 47.398451], [8.510891, 47.398372], [8.510996, 47.398349], [8.511104, 47.398333], [8.511213, 47.398323], [8.511686, 47.398262], [8.511707, 47.398259], [8.511728, 47.398257], [8.511749, 47.398257], [8.511771, 47.398258], [8.511792, 47.39826], [8.511812, 47.398263], [8.511832, 47.398268], [8.511852, 47.398273], [8.511871, 47.39828], [8.511898, 47.398289], [8.511925, 47.398297], [8.511954, 47.398303], [8.511983, 47.398307], [8.51251, 47.398273], [8.512894, 47.398266], [8.513279, 47.398281], [8.513659, 47.39832], [8.514034, 47.39838], [8.514399, 47.398462]]], "type": "MultiLineString"}, "id": "1974", "properties": {}, "type": "Feature"}, {"bbox": [8.575113, 47.35444, 8.57622, 47.355425], "geometry": {"coordinates": [[[8.575113, 47.35444], [8.575545, 47.354592], [8.575888, 47.354828], [8.575901, 47.354844], [8.575912, 47.35486], [8.57592, 47.354877], [8.575926, 47.354894], [8.575945, 47.355012], [8.575971, 47.355197], [8.575973, 47.355209], [8.575976, 47.355221], [8.57598, 47.355232], [8.575987, 47.355244], [8.575994, 47.355254], [8.576003, 47.355265], [8.576014, 47.355274], [8.576025, 47.355283], [8.576038, 47.355292], [8.576052, 47.355299], [8.57619, 47.355378], [8.57622, 47.355425]]], "type": "MultiLineString"}, "id": "1975", "properties": {}, "type": "Feature"}, {"bbox": [8.544307, 47.42248, 8.544786, 47.422905], "geometry": {"coordinates": [[[8.544307, 47.42248], [8.544408, 47.422554], [8.544786, 47.422905]]], "type": "MultiLineString"}, "id": "1978", "properties": {}, "type": "Feature"}, {"bbox": [8.51151, 47.322201, 8.514734, 47.324005], "geometry": {"coordinates": [[[8.514734, 47.324005], [8.514693, 47.323976], [8.514512, 47.323956], [8.514332, 47.323965], [8.514, 47.323951], [8.513868, 47.323895], [8.5138, 47.323858], [8.513775, 47.323716], [8.513452, 47.32374], [8.513452, 47.323741], [8.513452, 47.323742], [8.513452, 47.323743], [8.513452, 47.323744], [8.513451, 47.323745], [8.513451, 47.323746], [8.51345, 47.323748], [8.513449, 47.323748], [8.513448, 47.323749], [8.513447, 47.32375], [8.513446, 47.323751], [8.513445, 47.323752], [8.513443, 47.323753], [8.513442, 47.323753], [8.513441, 47.323754], [8.513439, 47.323754], [8.513437, 47.323754], [8.513436, 47.323754], [8.513422, 47.323755], [8.513407, 47.323755], [8.513393, 47.323754], [8.513379, 47.323752], [8.513366, 47.32375], [8.513352, 47.323746], [8.51334, 47.323742], [8.513328, 47.323737], [8.513316, 47.323731], [8.513276, 47.32371], [8.513263, 47.323702], [8.513251, 47.323693], [8.51324, 47.323684], [8.51323, 47.323674], [8.513221, 47.323663], [8.513181, 47.323607], [8.513119, 47.323555], [8.513104, 47.323548], [8.513061, 47.323528], [8.512634, 47.323328], [8.51229, 47.323165], [8.51214, 47.323098], [8.512119, 47.323087], [8.512098, 47.323075], [8.51208, 47.323062], [8.512063, 47.323048], [8.512047, 47.323033], [8.512034, 47.323017], [8.512012, 47.322987], [8.511993, 47.322955], [8.511977, 47.322923], [8.51194, 47.322857], [8.511901, 47.322792], [8.511861, 47.322728], [8.51186, 47.322728], [8.511707, 47.322483], [8.511558, 47.322241], [8.51151, 47.322201]]], "type": "MultiLineString"}, "id": "1979", "properties": {}, "type": "Feature"}, {"bbox": [8.507934, 47.329578, 8.511369, 47.329831], "geometry": {"coordinates": [[[8.511369, 47.329831], [8.509735, 47.329659], [8.509326, 47.329619], [8.508914, 47.329597], [8.508501, 47.329591], [8.507934, 47.329578]]], "type": "MultiLineString"}, "id": "1980", "properties": {}, "type": "Feature"}, {"bbox": [8.594525, 47.378469, 8.597217, 47.379456], "geometry": {"coordinates": [[[8.594525, 47.379456], [8.595274, 47.379238], [8.595385, 47.379208], [8.595497, 47.379179], [8.59561, 47.379153], [8.595916, 47.379087], [8.596044, 47.379055], [8.596168, 47.379014], [8.596286, 47.378966], [8.596397, 47.378911], [8.596918, 47.378627], [8.597217, 47.378469]]], "type": "MultiLineString"}, "id": "1981", "properties": {}, "type": "Feature"}, {"bbox": [8.533312, 47.382708, 8.539885, 47.386756], "geometry": {"coordinates": [[[8.539885, 47.382708], [8.539415, 47.383048], [8.538917, 47.38344], [8.538557, 47.383767], [8.538404, 47.383881], [8.538239, 47.383986], [8.538062, 47.384083], [8.537071, 47.384532], [8.53647, 47.384855], [8.536056, 47.385096], [8.53502, 47.385755], [8.534501, 47.386096], [8.534175, 47.386295], [8.533651, 47.386602], [8.533312, 47.386756]]], "type": "MultiLineString"}, "id": "1982", "properties": {}, "type": "Feature"}, {"bbox": [8.573616, 47.389906, 8.577824, 47.390716], "geometry": {"coordinates": [[[8.573616, 47.390716], [8.573852, 47.390636], [8.574239, 47.390513], [8.575447, 47.390121], [8.575497, 47.390102], [8.575545, 47.39008], [8.57559, 47.390056], [8.575643, 47.39002], [8.575794, 47.389906], [8.5765, 47.390075], [8.576646, 47.390112], [8.576789, 47.390155], [8.576929, 47.390202], [8.577004, 47.390227], [8.577082, 47.390247], [8.577163, 47.390263], [8.577558, 47.390328], [8.577616, 47.39034], [8.577672, 47.390355], [8.577726, 47.390373], [8.577777, 47.390395], [8.577824, 47.390418]]], "type": "MultiLineString"}, "id": "1983", "properties": {}, "type": "Feature"}, {"bbox": [8.56371, 47.381057, 8.573433, 47.38823], "geometry": {"coordinates": [[[8.56371, 47.381057], [8.564207, 47.3812], [8.564764, 47.381518], [8.564813, 47.381566], [8.564865, 47.381639], [8.565181, 47.382086], [8.565307, 47.382265], [8.565653, 47.382687], [8.566004, 47.383058], [8.566093, 47.383169], [8.566437, 47.38369], [8.566841, 47.384286], [8.566899, 47.384371], [8.567267, 47.384915], [8.567644, 47.385438], [8.567652, 47.38545], [8.567666, 47.385469], [8.56772, 47.385538], [8.567782, 47.385604], [8.56785, 47.385666], [8.568297, 47.386047], [8.568403, 47.386137], [8.568456, 47.386183], [8.568512, 47.386226], [8.568574, 47.386266], [8.568641, 47.386301], [8.568712, 47.386333], [8.569152, 47.386506], [8.569212, 47.386529], [8.569274, 47.386552], [8.569336, 47.386574], [8.569795, 47.386732], [8.570332, 47.386934], [8.570936, 47.387143], [8.571551, 47.387367], [8.571634, 47.387397], [8.571745, 47.387438], [8.571806, 47.387459], [8.571868, 47.387479], [8.571931, 47.387497], [8.571931, 47.387497], [8.573273, 47.387873], [8.57329, 47.387879], [8.573305, 47.387885], [8.57332, 47.387891], [8.573333, 47.387899], [8.573346, 47.387907], [8.573358, 47.387917], [8.573368, 47.387926], [8.573377, 47.387937], [8.573385, 47.387948], [8.573392, 47.387959], [8.573397, 47.38797], [8.573401, 47.387982], [8.573403, 47.387994], [8.573421, 47.388155], [8.573433, 47.38823]]], "type": "MultiLineString"}, "id": "1985", "properties": {}, "type": "Feature"}, {"bbox": [8.588529, 47.374733, 8.594533, 47.38063], "geometry": {"coordinates": [[[8.588529, 47.374733], [8.588823, 47.37508], [8.588878, 47.375137], [8.589026, 47.375315], [8.589342, 47.375664], [8.589378, 47.375701], [8.58942, 47.375735], [8.589466, 47.375767], [8.589517, 47.375796], [8.589571, 47.375821], [8.589671, 47.375861], [8.589776, 47.375896], [8.589884, 47.375925], [8.590149, 47.375991], [8.590504, 47.376001], [8.590624, 47.37601], [8.590698, 47.376046], [8.590794, 47.376095], [8.590888, 47.376146], [8.590979, 47.376198], [8.592247, 47.376948], [8.592352, 47.377016], [8.592447, 47.37709], [8.592532, 47.377169], [8.592606, 47.377253], [8.592668, 47.377342], [8.592921, 47.377748], [8.593035, 47.378053], [8.593182, 47.378498], [8.593197, 47.378537], [8.593217, 47.378575], [8.593241, 47.378612], [8.59327, 47.378647], [8.593333, 47.378712], [8.593405, 47.378772], [8.593483, 47.378829], [8.593569, 47.37888], [8.593654, 47.378924], [8.593744, 47.378963], [8.593838, 47.378997], [8.593935, 47.379026], [8.594036, 47.379049], [8.594218, 47.379086], [8.594248, 47.379093], [8.594278, 47.379102], [8.594306, 47.379113], [8.594332, 47.379125], [8.594357, 47.379139], [8.594381, 47.379154], [8.594402, 47.37917], [8.594421, 47.379188], [8.594438, 47.379206], [8.594452, 47.379226], [8.594501, 47.3793], [8.594513, 47.379321], [8.594523, 47.379343], [8.594529, 47.379365], [8.594533, 47.379388], [8.594533, 47.379411], [8.594531, 47.379434], [8.594525, 47.379456], [8.59452, 47.379472], [8.594512, 47.379488], [8.594503, 47.379503], [8.594059, 47.380211], [8.594033, 47.380258], [8.594013, 47.380307], [8.593999, 47.380356], [8.593992, 47.380407], [8.593992, 47.380457], [8.593998, 47.380508], [8.594011, 47.380557], [8.594021, 47.380582], [8.594035, 47.380607], [8.594052, 47.38063]]], "type": "MultiLineString"}, "id": "1990", "properties": {}, "type": "Feature"}, {"bbox": [8.59269, 47.353219, 8.594895, 47.356937], "geometry": {"coordinates": [[[8.594415, 47.356937], [8.594302, 47.356891], [8.594196, 47.356838], [8.594097, 47.356779], [8.594006, 47.356714], [8.593863, 47.356554], [8.59373, 47.35639], [8.593607, 47.356222], [8.593263, 47.355732], [8.59269, 47.354936], [8.592993, 47.354817], [8.59349, 47.354648], [8.593573, 47.354627], [8.593657, 47.35461], [8.593744, 47.354598], [8.593831, 47.354591], [8.593919, 47.354588], [8.593963, 47.354568], [8.594343, 47.354509], [8.594737, 47.354445], [8.594753, 47.354442], [8.594769, 47.354439], [8.594784, 47.354435], [8.594799, 47.35443], [8.594813, 47.354424], [8.594826, 47.354418], [8.594838, 47.35441], [8.594849, 47.354402], [8.594859, 47.354393], [8.594868, 47.354384], [8.594876, 47.354374], [8.594882, 47.354364], [8.594888, 47.354354], [8.594891, 47.354343], [8.594894, 47.354332], [8.594895, 47.354321], [8.594894, 47.35431], [8.594892, 47.354298], [8.594889, 47.354288], [8.594884, 47.354277], [8.594878, 47.354267], [8.594871, 47.354257], [8.594862, 47.354247], [8.594852, 47.354238], [8.594841, 47.35423], [8.594829, 47.354223], [8.594816, 47.354216], [8.59412, 47.353765], [8.594051, 47.353706], [8.593992, 47.353642], [8.593941, 47.353575], [8.593861, 47.353496], [8.593782, 47.353415], [8.593706, 47.353333], [8.59369, 47.353319], [8.593671, 47.353306], [8.593651, 47.353293], [8.59363, 47.353282], [8.593607, 47.353272], [8.593584, 47.353264], [8.593538, 47.353249], [8.593493, 47.353234], [8.593449, 47.353219]]], "type": "MultiLineString"}, "id": "1991", "properties": {}, "type": "Feature"}, {"bbox": [8.572342, 47.365855, 8.578901, 47.367381], "geometry": {"coordinates": [[[8.572342, 47.365855], [8.57251, 47.365909], [8.57307, 47.366096], [8.573222, 47.366119], [8.573501, 47.366204], [8.57374, 47.366217], [8.574167, 47.366287], [8.574434, 47.366312], [8.574496, 47.366315], [8.574558, 47.366316], [8.57462, 47.366314], [8.574736, 47.366312], [8.574757, 47.366314], [8.574778, 47.366316], [8.574798, 47.36632], [8.574818, 47.366325], [8.574837, 47.366331], [8.574855, 47.366338], [8.574873, 47.366347], [8.574889, 47.366356], [8.574941, 47.366384], [8.574965, 47.366395], [8.57499, 47.366405], [8.575016, 47.366414], [8.575086, 47.366435], [8.575157, 47.366453], [8.57523, 47.366469], [8.575342, 47.366495], [8.575866, 47.366614], [8.576453, 47.366754], [8.577536, 47.36702], [8.577842, 47.3671], [8.578222, 47.367219], [8.578293, 47.367233], [8.578366, 47.367244], [8.57844, 47.367251], [8.578469, 47.367254], [8.578497, 47.367258], [8.578525, 47.367265], [8.578743, 47.367322], [8.578779, 47.367332], [8.578815, 47.367344], [8.57885, 47.367357], [8.578901, 47.367381]]], "type": "MultiLineString"}, "id": "1998", "properties": {}, "type": "Feature"}, {"bbox": [8.488241, 47.357618, 8.488675, 47.357753], "geometry": {"coordinates": [[[8.488241, 47.3577], [8.488332, 47.357691], [8.488345, 47.35769], [8.488358, 47.35769], [8.488371, 47.357691], [8.488384, 47.357692], [8.488397, 47.357694], [8.488409, 47.357696], [8.488421, 47.3577], [8.488582, 47.357749], [8.488587, 47.35775], [8.488593, 47.357752], [8.488598, 47.357752], [8.488604, 47.357753], [8.48861, 47.357753], [8.488616, 47.357753], [8.488621, 47.357752], [8.488627, 47.357751], [8.488632, 47.35775], [8.488638, 47.357749], [8.488643, 47.357747], [8.488647, 47.357745], [8.488652, 47.357742], [8.488656, 47.35774], [8.48866, 47.357737], [8.488664, 47.357734], [8.488667, 47.35773], [8.488669, 47.357727], [8.488671, 47.357723], [8.488673, 47.357719], [8.488674, 47.357716], [8.488675, 47.357712], [8.488675, 47.357708], [8.488675, 47.357704], [8.488674, 47.3577], [8.488673, 47.357696], [8.488669, 47.357686], [8.488667, 47.357676], [8.488667, 47.357666], [8.488667, 47.357655], [8.488669, 47.357645], [8.488675, 47.357618]]], "type": "MultiLineString"}, "id": "1999", "properties": {}, "type": "Feature"}, {"bbox": [8.495169, 47.396482, 8.497159, 47.397592], "geometry": {"coordinates": [[[8.495169, 47.397592], [8.49517, 47.397584], [8.495171, 47.397576], [8.495174, 47.397568], [8.495178, 47.397561], [8.495183, 47.397554], [8.495189, 47.397546], [8.495196, 47.39754], [8.495203, 47.397534], [8.495211, 47.397528], [8.49522, 47.397523], [8.49523, 47.397518], [8.49524, 47.397514], [8.495251, 47.397511], [8.495262, 47.397508], [8.495378, 47.397467], [8.495488, 47.39742], [8.495592, 47.397366], [8.496008, 47.39713], [8.497159, 47.396482]]], "type": "MultiLineString"}, "id": "2001", "properties": {}, "type": "Feature"}, {"bbox": [8.51362, 47.382038, 8.516116, 47.383106], "geometry": {"coordinates": [[[8.516116, 47.382038], [8.515674, 47.382212], [8.515244, 47.382147], [8.514886, 47.382302], [8.514463, 47.38247], [8.51362, 47.382807], [8.513789, 47.382978], [8.513938, 47.383106]]], "type": "MultiLineString"}, "id": "2002", "properties": {}, "type": "Feature"}, {"bbox": [8.543933, 47.374832, 8.544646, 47.374891], "geometry": {"coordinates": [[[8.543933, 47.374832], [8.544646, 47.374891]]], "type": "MultiLineString"}, "id": "2003", "properties": {}, "type": "Feature"}, {"bbox": [8.52697, 47.336847, 8.530048, 47.336925], "geometry": {"coordinates": [[[8.530048, 47.336913], [8.528879, 47.336919], [8.527956, 47.336925], [8.527624, 47.336921], [8.527295, 47.336895], [8.52697, 47.336847]]], "type": "MultiLineString"}, "id": "2004", "properties": {}, "type": "Feature"}, {"bbox": [8.591483, 47.400758, 8.59224, 47.400991], "geometry": {"coordinates": [[[8.591483, 47.400991], [8.59224, 47.400758]]], "type": "MultiLineString"}, "id": "2008", "properties": {}, "type": "Feature"}, {"bbox": [8.531969, 47.336723, 8.532632, 47.337136], "geometry": {"coordinates": [[[8.532632, 47.337136], [8.532555, 47.337118], [8.53248, 47.337096], [8.532409, 47.337069], [8.532342, 47.337038], [8.532279, 47.337003], [8.53222, 47.336964], [8.532167, 47.336922], [8.532012, 47.336786], [8.531969, 47.336723]]], "type": "MultiLineString"}, "id": "2011", "properties": {}, "type": "Feature"}, {"bbox": [8.542903, 47.373818, 8.543708, 47.373917], "geometry": {"coordinates": [[[8.542903, 47.373917], [8.543708, 47.373818]]], "type": "MultiLineString"}, "id": "2012", "properties": {}, "type": "Feature"}, {"bbox": [8.559016, 47.351655, 8.559228, 47.351736], "geometry": {"coordinates": [[[8.559016, 47.351655], [8.559228, 47.351736]]], "type": "MultiLineString"}, "id": "2013", "properties": {}, "type": "Feature"}, {"bbox": [8.54386, 47.368821, 8.544161, 47.369042], "geometry": {"coordinates": [[[8.54396, 47.368821], [8.54386, 47.368933], [8.544047, 47.369042], [8.544161, 47.36894]]], "type": "MultiLineString"}, "id": "2015", "properties": {}, "type": "Feature"}, {"bbox": [8.541363, 47.371841, 8.541851, 47.373858], "geometry": {"coordinates": [[[8.541851, 47.37187], [8.541402, 47.371841], [8.541455, 47.371993], [8.54149, 47.372092], [8.541627, 47.372105], [8.541744, 47.372216], [8.541363, 47.372273]], [[8.541744, 47.372216], [8.541799, 47.372288], [8.541825, 47.372481], [8.541828, 47.372574], [8.541755, 47.372575], [8.541692, 47.372929], [8.541692, 47.373037], [8.541692, 47.373109], [8.541818, 47.373615], [8.541846, 47.373728], [8.54185, 47.373858]]], "type": "MultiLineString"}, "id": "2017", "properties": {}, "type": "Feature"}, {"bbox": [8.558335, 47.383235, 8.559779, 47.384056], "geometry": {"coordinates": [[[8.559779, 47.383235], [8.559671, 47.383253], [8.559631, 47.383245], [8.559589, 47.383239], [8.559548, 47.383236], [8.559506, 47.383235], [8.559464, 47.383237], [8.559422, 47.383241], [8.559381, 47.383248], [8.559342, 47.383257], [8.559303, 47.383269], [8.559267, 47.383283], [8.559232, 47.383299], [8.559211, 47.383309], [8.558767, 47.383545], [8.558607, 47.383644], [8.558335, 47.383794], [8.558345, 47.383909], [8.558464, 47.383997], [8.558482, 47.384056]]], "type": "MultiLineString"}, "id": "2018", "properties": {}, "type": "Feature"}, {"bbox": [8.520133, 47.337119, 8.522016, 47.343283], "geometry": {"coordinates": [[[8.520133, 47.343283], [8.520187, 47.343259], [8.520241, 47.343234], [8.520294, 47.34321], [8.520361, 47.343177], [8.520427, 47.343143], [8.520492, 47.343109], [8.520615, 47.343034], [8.520731, 47.342959], [8.520999, 47.342706], [8.521008, 47.342696], [8.521015, 47.342685], [8.521021, 47.342674], [8.521026, 47.342663], [8.521029, 47.342652], [8.52103, 47.34264], [8.52103, 47.342617], [8.521028, 47.342593], [8.521023, 47.34257], [8.521016, 47.342547], [8.521006, 47.342525], [8.521006, 47.342525], [8.520995, 47.342505], [8.520982, 47.34248], [8.520951, 47.342434], [8.520942, 47.34241], [8.520935, 47.342386], [8.520932, 47.342362], [8.520932, 47.342338], [8.520935, 47.342313], [8.52094, 47.342291], [8.520948, 47.34227], [8.520958, 47.342249], [8.52097, 47.342228], [8.521089, 47.342083], [8.521203, 47.341936], [8.521312, 47.341787], [8.521312, 47.341787], [8.521312, 47.341787], [8.521489, 47.341518], [8.521647, 47.341243], [8.521784, 47.340963], [8.521828, 47.340862], [8.521868, 47.340761], [8.521905, 47.340659], [8.521939, 47.340556], [8.521969, 47.340453], [8.521996, 47.340349], [8.521996, 47.340349], [8.522016, 47.340239], [8.521995, 47.34019], [8.521968, 47.340142], [8.521935, 47.340096], [8.521898, 47.340052], [8.521855, 47.34001], [8.521808, 47.33997], [8.521746, 47.339933], [8.521733, 47.339924], [8.521721, 47.339915], [8.52171, 47.339906], [8.521701, 47.339895], [8.521692, 47.339885], [8.521685, 47.339874], [8.52168, 47.339863], [8.521676, 47.339852], [8.521673, 47.339841], [8.521645, 47.339692], [8.521619, 47.339502], [8.521614, 47.339481], [8.521608, 47.339461], [8.521598, 47.339441], [8.52158, 47.339409], [8.521576, 47.339401], [8.521573, 47.339392], [8.52157, 47.339384], [8.521567, 47.339371], [8.521565, 47.339357], [8.521565, 47.339344], [8.521569, 47.339288], [8.521571, 47.339234], [8.52157, 47.33918], [8.521567, 47.339127], [8.521565, 47.339111], [8.521562, 47.339095], [8.521559, 47.339079], [8.521559, 47.339079], [8.521558, 47.339074], [8.52154, 47.33903], [8.52154, 47.33903], [8.521518, 47.338966], [8.521505, 47.338901], [8.521499, 47.338836], [8.521499, 47.338822], [8.521499, 47.338821], [8.521498, 47.338805], [8.521496, 47.338789], [8.521493, 47.338773], [8.521489, 47.338741], [8.521486, 47.33871], [8.521484, 47.338678], [8.521478, 47.338522], [8.521475, 47.338481], [8.521471, 47.33844], [8.521464, 47.338399], [8.521444, 47.3383], [8.521439, 47.338278], [8.521431, 47.338256], [8.52142, 47.338235], [8.521407, 47.338215], [8.521374, 47.338165], [8.521344, 47.338114], [8.521319, 47.338062], [8.521306, 47.338026], [8.521297, 47.33799], [8.521293, 47.337953], [8.52129, 47.337929], [8.521285, 47.337905], [8.521276, 47.337881], [8.521265, 47.337858], [8.521251, 47.337835], [8.521234, 47.337814], [8.521165, 47.337725], [8.521108, 47.337633], [8.521062, 47.337538], [8.521032, 47.337474], [8.520998, 47.33741], [8.52096, 47.337348], [8.52093, 47.337297], [8.520907, 47.337244], [8.520892, 47.33719], [8.520901, 47.337119]]], "type": "MultiLineString"}, "id": "2025", "properties": {}, "type": "Feature"}, {"bbox": [8.509929, 47.398894, 8.51057, 47.399725], "geometry": {"coordinates": [[[8.509929, 47.398894], [8.509964, 47.398982], [8.510002, 47.399066], [8.510004, 47.399165], [8.510025, 47.399167], [8.510234, 47.399131], [8.510238, 47.399143], [8.510063, 47.399494], [8.510299, 47.39968], [8.510458, 47.399644], [8.51057, 47.399725]]], "type": "MultiLineString"}, "id": "2026", "properties": {}, "type": "Feature"}, {"bbox": [8.557712, 47.417134, 8.561384, 47.417983], "geometry": {"coordinates": [[[8.557712, 47.417365], [8.557833, 47.417134], [8.55807, 47.417191], [8.560006, 47.417654], [8.561384, 47.417983]]], "type": "MultiLineString"}, "id": "2028", "properties": {}, "type": "Feature"}, {"bbox": [8.503644, 47.394043, 8.505154, 47.394754], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.503681, 47.394321], [8.503667, 47.394344], [8.503657, 47.394368], [8.503649, 47.394393], [8.503645, 47.394417], [8.503644, 47.394443], [8.503646, 47.394468], [8.503652, 47.394492], [8.50366, 47.394517], [8.503672, 47.394541], [8.503729, 47.394631], [8.503739, 47.394646], [8.50375, 47.394661], [8.503764, 47.394675], [8.503779, 47.394688], [8.503796, 47.3947], [8.503814, 47.394711], [8.503834, 47.394721], [8.503855, 47.39473], [8.503877, 47.394737], [8.5039, 47.394743], [8.503923, 47.394748], [8.503947, 47.394752], [8.503971, 47.394754], [8.503996, 47.394754], [8.50402, 47.394753], [8.504045, 47.394751], [8.504068, 47.394747], [8.504892, 47.394553], [8.50491, 47.394549], [8.504928, 47.394543], [8.504944, 47.394536], [8.50496, 47.394528], [8.504974, 47.39452], [8.504988, 47.39451], [8.505, 47.3945], [8.50501, 47.394489], [8.505019, 47.394477], [8.505027, 47.394465], [8.505033, 47.394453], [8.505037, 47.39444], [8.50504, 47.394427], [8.505041, 47.394414], [8.50504, 47.394401], [8.505038, 47.394388], [8.505034, 47.394375], [8.505028, 47.394362], [8.504999, 47.394247], [8.505001, 47.394224], [8.505007, 47.3942], [8.505016, 47.394177], [8.505027, 47.394155], [8.505042, 47.394133], [8.505059, 47.394112], [8.505079, 47.394093], [8.505102, 47.394075], [8.505127, 47.394058], [8.505154, 47.394043]]], "type": "MultiLineString"}, "id": "2033", "properties": {}, "type": "Feature"}, {"bbox": [8.51476, 47.382038, 8.516116, 47.382613], "geometry": {"coordinates": [[[8.514886, 47.382302], [8.514854, 47.382319], [8.514825, 47.382338], [8.514797, 47.382359], [8.514787, 47.382372], [8.514778, 47.382385], [8.514771, 47.382399], [8.514765, 47.382413], [8.514762, 47.382428], [8.51476, 47.382442], [8.514761, 47.382457], [8.514763, 47.382472], [8.514767, 47.382486], [8.514773, 47.3825], [8.514781, 47.382514], [8.514791, 47.382527], [8.514802, 47.38254], [8.514815, 47.382552], [8.514829, 47.382563], [8.514845, 47.382573], [8.514862, 47.382582], [8.51488, 47.38259], [8.514899, 47.382597], [8.514919, 47.382603], [8.514939, 47.382607], [8.51496, 47.382611], [8.514982, 47.382613], [8.515003, 47.382613], [8.515025, 47.382613], [8.515047, 47.382611], [8.515068, 47.382608], [8.515088, 47.382603], [8.515108, 47.382598], [8.515146, 47.382583], [8.515182, 47.382565], [8.515216, 47.382546], [8.515731, 47.382248], [8.516116, 47.382038]]], "type": "MultiLineString"}, "id": "2034", "properties": {}, "type": "Feature"}, {"bbox": [8.503195, 47.381041, 8.504093, 47.381435], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504004, 47.381131], [8.503921, 47.381224], [8.503846, 47.381319], [8.503835, 47.381331], [8.503823, 47.381342], [8.503809, 47.381353], [8.503794, 47.381363], [8.503777, 47.381371], [8.50376, 47.381379], [8.503742, 47.381386], [8.503723, 47.381391], [8.503703, 47.381396], [8.503683, 47.381399], [8.503662, 47.381401], [8.503641, 47.381402], [8.503621, 47.381401], [8.5036, 47.381399], [8.50358, 47.381396], [8.50356, 47.381392], [8.503541, 47.381387], [8.503522, 47.38138], [8.503505, 47.381373], [8.503488, 47.381364], [8.503473, 47.381355], [8.503459, 47.381344], [8.503446, 47.381333], [8.503435, 47.381321], [8.503426, 47.381309], [8.503418, 47.381296], [8.503412, 47.381283], [8.503408, 47.38127], [8.503405, 47.381256], [8.503404, 47.381242], [8.503405, 47.381229], [8.503407, 47.381215], [8.503411, 47.381202], [8.503417, 47.381188], [8.503425, 47.381176], [8.503434, 47.381163], [8.503444, 47.381152], [8.503457, 47.38114], [8.50347, 47.38113], [8.503485, 47.381121], [8.503501, 47.381112], [8.503517, 47.381104], [8.503535, 47.381098], [8.503554, 47.381092], [8.503573, 47.381088], [8.504093, 47.381041], [8.503446, 47.381333], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "2035", "properties": {}, "type": "Feature"}, {"bbox": [8.541495, 47.396633, 8.543331, 47.399597], "geometry": {"coordinates": [[[8.542069, 47.396633], [8.541736, 47.396788], [8.541698, 47.396807], [8.541662, 47.396828], [8.541629, 47.39685], [8.541599, 47.396875], [8.541572, 47.396902], [8.54155, 47.39693], [8.541531, 47.396959], [8.541515, 47.396989], [8.541504, 47.39702], [8.541498, 47.397052], [8.541495, 47.397084], [8.541496, 47.397116], [8.541502, 47.397148], [8.541512, 47.397179], [8.541526, 47.39721], [8.541544, 47.397239], [8.541802, 47.397679], [8.542103, 47.398107], [8.542444, 47.39852], [8.542741, 47.39886], [8.542755, 47.398878], [8.542771, 47.398895], [8.542789, 47.398911], [8.542809, 47.398925], [8.542831, 47.398939], [8.542855, 47.398951], [8.54288, 47.398962], [8.542906, 47.398971], [8.542934, 47.398978], [8.542962, 47.398984], [8.542991, 47.398988], [8.54302, 47.398991], [8.54305, 47.398992], [8.543079, 47.39899], [8.543108, 47.398988], [8.543137, 47.398983], [8.543165, 47.398977], [8.543192, 47.398969], [8.543219, 47.39896], [8.543237, 47.39895], [8.543253, 47.39894], [8.543269, 47.398929], [8.543283, 47.398917], [8.543295, 47.398904], [8.543306, 47.39889], [8.543314, 47.398876], [8.543322, 47.398861], [8.543327, 47.398846], [8.54333, 47.398831], [8.543331, 47.398816], [8.543331, 47.3988], [8.543328, 47.398785], [8.543324, 47.39877], [8.543318, 47.398755], [8.54331, 47.398741], [8.5433, 47.398727], [8.543288, 47.398714], [8.543275, 47.398701], [8.54326, 47.398689], [8.543244, 47.398679], [8.543227, 47.398669], [8.543194, 47.398654], [8.54316, 47.398642], [8.543125, 47.398631], [8.543088, 47.398623], [8.54305, 47.398616], [8.543012, 47.398612], [8.542973, 47.398611], [8.542935, 47.398612], [8.542896, 47.398614], [8.542827, 47.398613], [8.542759, 47.398607], [8.542692, 47.398598], [8.542627, 47.398584], [8.542563, 47.398567], [8.542502, 47.398545], [8.542444, 47.39852], [8.542641, 47.398831], [8.542676, 47.398908], [8.542699, 47.398987], [8.542712, 47.399067], [8.542713, 47.399147], [8.542717, 47.399281], [8.542735, 47.399414], [8.542768, 47.399546], [8.542741, 47.399597]]], "type": "MultiLineString"}, "id": "2036", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.360521, 8.561893, 47.360849], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.561339, 47.360532], [8.561893, 47.360849]]], "type": "MultiLineString"}, "id": "2037", "properties": {}, "type": "Feature"}, {"bbox": [8.495041, 47.367781, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.496151, 47.368094], [8.496093, 47.368079], [8.496037, 47.368061], [8.495984, 47.36804], [8.495933, 47.368015], [8.495885, 47.367988], [8.495841, 47.367959], [8.495801, 47.367927], [8.495773, 47.367903], [8.495741, 47.367881], [8.495708, 47.36786], [8.495671, 47.367842], [8.495633, 47.367826], [8.495592, 47.367812], [8.495551, 47.367801], [8.495507, 47.367792], [8.495463, 47.367786], [8.495418, 47.367782], [8.495373, 47.367781], [8.495328, 47.367783], [8.495284, 47.367787], [8.49524, 47.367794], [8.495197, 47.367804], [8.495155, 47.367816], [8.495115, 47.36783], [8.495077, 47.367846], [8.495041, 47.367865]]], "type": "MultiLineString"}, "id": "2039", "properties": {}, "type": "Feature"}, {"bbox": [8.555401, 47.387168, 8.557881, 47.389266], "geometry": {"coordinates": [[[8.555401, 47.389266], [8.555595, 47.388821], [8.555611, 47.388789], [8.555631, 47.388759], [8.555654, 47.38873], [8.555681, 47.388702], [8.555712, 47.388676], [8.555746, 47.388652], [8.555783, 47.38863], [8.555822, 47.388611], [8.555836, 47.388605], [8.55585, 47.388599], [8.555864, 47.388593], [8.556078, 47.388513], [8.556131, 47.388493], [8.556184, 47.388472], [8.556237, 47.388451], [8.556307, 47.388418], [8.556373, 47.388382], [8.556433, 47.388342], [8.556488, 47.388298], [8.556586, 47.388212], [8.556625, 47.388176], [8.556661, 47.388139], [8.556694, 47.3881], [8.556733, 47.388053], [8.556768, 47.388011], [8.556805, 47.38797], [8.556844, 47.387931], [8.557265, 47.387525], [8.557506, 47.387342], [8.557565, 47.387301], [8.557627, 47.387262], [8.557693, 47.387226], [8.557725, 47.387212], [8.557758, 47.387199], [8.557793, 47.387188], [8.557815, 47.387182], [8.557836, 47.387177], [8.557858, 47.387172], [8.557881, 47.387168]]], "type": "MultiLineString"}, "id": "2040", "properties": {}, "type": "Feature"}, {"bbox": [8.592038, 47.365562, 8.593025, 47.367663], "geometry": {"coordinates": [[[8.59256, 47.365562], [8.59262, 47.365608], [8.592647, 47.365663], [8.592745, 47.365723], [8.592831, 47.365828], [8.592934, 47.366029], [8.592947, 47.366065], [8.59296, 47.366102], [8.592972, 47.366139], [8.593023, 47.366336], [8.593025, 47.366352], [8.593024, 47.366368], [8.593022, 47.366384], [8.593018, 47.3664], [8.593012, 47.366416], [8.593004, 47.366431], [8.592994, 47.366446], [8.592982, 47.36646], [8.592961, 47.366482], [8.59294, 47.366503], [8.592919, 47.366524], [8.592877, 47.36658], [8.592836, 47.366636], [8.592795, 47.366693], [8.592673, 47.366907], [8.592482, 47.367241], [8.592433, 47.367295], [8.592379, 47.367347], [8.592321, 47.367397], [8.592045, 47.367627], [8.592038, 47.367663]]], "type": "MultiLineString"}, "id": "2041", "properties": {}, "type": "Feature"}, {"bbox": [8.541237, 47.334497, 8.541813, 47.334814], "geometry": {"coordinates": [[[8.541813, 47.334807], [8.541746, 47.334814], [8.541548, 47.334701], [8.541541, 47.334697], [8.541532, 47.334693], [8.541523, 47.33469], [8.541514, 47.334687], [8.541505, 47.334685], [8.541495, 47.334684], [8.541485, 47.334683], [8.541475, 47.334682], [8.541465, 47.334683], [8.541455, 47.334684], [8.541445, 47.334685], [8.541412, 47.334698], [8.541408, 47.3347], [8.541404, 47.334702], [8.5414, 47.334703], [8.541396, 47.334705], [8.541391, 47.334706], [8.541387, 47.334706], [8.541382, 47.334707], [8.541377, 47.334707], [8.541373, 47.334707], [8.541368, 47.334706], [8.541363, 47.334706], [8.541359, 47.334705], [8.541354, 47.334704], [8.54135, 47.334702], [8.541346, 47.334701], [8.541342, 47.334699], [8.541339, 47.334697], [8.541335, 47.334694], [8.541332, 47.334692], [8.54133, 47.334689], [8.541237, 47.334604], [8.541397, 47.334497]]], "type": "MultiLineString"}, "id": "2042", "properties": {}, "type": "Feature"}, {"bbox": [8.482449, 47.412848, 8.483266, 47.417647], "geometry": {"coordinates": [[[8.483129, 47.417647], [8.483112, 47.417632], [8.483096, 47.417616], [8.483083, 47.417599], [8.483072, 47.417581], [8.483063, 47.417563], [8.483057, 47.417545], [8.483053, 47.417526], [8.483051, 47.417506], [8.483091, 47.417096], [8.483096, 47.41703], [8.483097, 47.416963], [8.483094, 47.416897], [8.483093, 47.416862], [8.483095, 47.416827], [8.4831, 47.416792], [8.483206, 47.41617], [8.48321, 47.415779], [8.483245, 47.415576], [8.483254, 47.415255], [8.483225, 47.415134], [8.483192, 47.415026], [8.483214, 47.414901], [8.483237, 47.414775], [8.483266, 47.414672], [8.483253, 47.414575], [8.483196, 47.414446], [8.483077, 47.41435], [8.482951, 47.414243], [8.48274, 47.414179], [8.482677, 47.41415], [8.482836, 47.413907], [8.482722, 47.413873], [8.482602, 47.413864], [8.482512, 47.413854], [8.482449, 47.413812], [8.482453, 47.413719], [8.482455, 47.412922], [8.482458, 47.412848]]], "type": "MultiLineString"}, "id": "2047", "properties": {}, "type": "Feature"}, {"bbox": [8.551938, 47.378166, 8.552532, 47.378722], "geometry": {"coordinates": [[[8.551986, 47.378722], [8.551976, 47.378712], [8.551966, 47.378703], [8.551958, 47.378692], [8.551951, 47.378681], [8.551946, 47.37867], [8.551942, 47.378659], [8.551939, 47.378647], [8.551938, 47.378635], [8.551939, 47.378624], [8.551941, 47.378612], [8.551944, 47.3786], [8.551949, 47.378589], [8.551955, 47.378578], [8.551962, 47.378567], [8.551971, 47.378557], [8.551981, 47.378548], [8.552532, 47.378166]]], "type": "MultiLineString"}, "id": "2048", "properties": {}, "type": "Feature"}, {"bbox": [8.479057, 47.415032, 8.479311, 47.41628], "geometry": {"coordinates": [[[8.479292, 47.415032], [8.479296, 47.415083], [8.47931, 47.415175], [8.479311, 47.415186], [8.47931, 47.415196], [8.479308, 47.415206], [8.479304, 47.415216], [8.479299, 47.415226], [8.479293, 47.415236], [8.47924, 47.415308], [8.479214, 47.415341], [8.47909, 47.415459], [8.479101, 47.415481], [8.479108, 47.415504], [8.479112, 47.415526], [8.479113, 47.415549], [8.479111, 47.415572], [8.479106, 47.415595], [8.479098, 47.415617], [8.479087, 47.415639], [8.479074, 47.41566], [8.479057, 47.41568], [8.479128, 47.415708], [8.479167, 47.415844], [8.479168, 47.415889], [8.479168, 47.415987], [8.47915, 47.416073], [8.47917, 47.416102], [8.479174, 47.41628]]], "type": "MultiLineString"}, "id": "2051", "properties": {}, "type": "Feature"}, {"bbox": [8.505884, 47.409542, 8.508404, 47.410702], "geometry": {"coordinates": [[[8.508404, 47.409542], [8.50813, 47.409586], [8.507055, 47.409946], [8.507067, 47.409982], [8.507073, 47.410008], [8.507075, 47.410035], [8.507074, 47.410062], [8.507075, 47.410123], [8.507071, 47.410184], [8.507062, 47.410244], [8.507058, 47.410254], [8.507053, 47.410263], [8.507047, 47.410272], [8.50704, 47.410281], [8.507031, 47.410289], [8.507022, 47.410296], [8.507012, 47.410304], [8.507, 47.41031], [8.506989, 47.410316], [8.506882, 47.41035], [8.506819, 47.410381], [8.505884, 47.410702]]], "type": "MultiLineString"}, "id": "2052", "properties": {}, "type": "Feature"}, {"bbox": [8.50641, 47.39954, 8.508726, 47.400215], "geometry": {"coordinates": [[[8.50641, 47.39954], [8.506776, 47.399621], [8.506877, 47.399657], [8.507062, 47.399743], [8.507167, 47.399798], [8.507312, 47.39987], [8.507613, 47.399977], [8.50781, 47.399972], [8.507915, 47.400025], [8.507889, 47.40005], [8.508059, 47.400135], [8.508037, 47.400157], [8.508117, 47.400195], [8.508153, 47.400162], [8.508233, 47.400195], [8.508443, 47.400215], [8.508502, 47.400158], [8.508585, 47.400124], [8.508726, 47.4002]]], "type": "MultiLineString"}, "id": "2053", "properties": {}, "type": "Feature"}, {"bbox": [8.497039, 47.358817, 8.500909, 47.363768], "geometry": {"coordinates": [[[8.500909, 47.363768], [8.500439, 47.363485], [8.500023, 47.36316], [8.499816, 47.362917], [8.499653, 47.362776], [8.499202, 47.362607], [8.498757, 47.3623], [8.498303, 47.361955], [8.498285, 47.361607], [8.498162, 47.361391], [8.497994, 47.361217], [8.497749, 47.360987], [8.497039, 47.36029], [8.497094, 47.360143], [8.497227, 47.359996], [8.497376, 47.359875], [8.497493, 47.359664], [8.497501, 47.358943], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "2054", "properties": {}, "type": "Feature"}, {"bbox": [8.553353, 47.376, 8.556075, 47.378399], "geometry": {"coordinates": [[[8.553353, 47.376], [8.553504, 47.376099], [8.55382, 47.376389], [8.554048, 47.376686], [8.554363, 47.376902], [8.554584, 47.377029], [8.555565, 47.377589], [8.555925, 47.377835], [8.555965, 47.377922], [8.556007, 47.37807], [8.556023, 47.378214], [8.556075, 47.378399]]], "type": "MultiLineString"}, "id": "2055", "properties": {}, "type": "Feature"}, {"bbox": [8.527814, 47.371323, 8.528572, 47.371463], "geometry": {"coordinates": [[[8.527883, 47.371363], [8.527814, 47.371463], [8.527885, 47.371424], [8.528498, 47.371376], [8.528572, 47.371397], [8.528485, 47.371323]]], "type": "MultiLineString"}, "id": "2056", "properties": {}, "type": "Feature"}, {"bbox": [8.554491, 47.393868, 8.55892, 47.394415], "geometry": {"coordinates": [[[8.554491, 47.394254], [8.555348, 47.394371], [8.55539, 47.394375], [8.555432, 47.394377], [8.555475, 47.394377], [8.555517, 47.394373], [8.555558, 47.394367], [8.555599, 47.394359], [8.555823, 47.394305], [8.55586, 47.394297], [8.555898, 47.394291], [8.555937, 47.394288], [8.555976, 47.394287], [8.556015, 47.394289], [8.556054, 47.394293], [8.556092, 47.394299], [8.556129, 47.394308], [8.556443, 47.394391], [8.556484, 47.394401], [8.556527, 47.394408], [8.55657, 47.394413], [8.556613, 47.394415], [8.556657, 47.394415], [8.556701, 47.394412], [8.556744, 47.394406], [8.556786, 47.394399], [8.556827, 47.394388], [8.556867, 47.394376], [8.557014, 47.394324], [8.557075, 47.394303], [8.557138, 47.394285], [8.557202, 47.394269], [8.557494, 47.3942], [8.557791, 47.39414], [8.557876, 47.394121], [8.557959, 47.394097], [8.558038, 47.394068], [8.558114, 47.394036], [8.558277, 47.393959], [8.558329, 47.393938], [8.558384, 47.393919], [8.55844, 47.393904], [8.558499, 47.393893], [8.558559, 47.393885], [8.55862, 47.393882], [8.558814, 47.393876], [8.558849, 47.393875], [8.558885, 47.393872], [8.55892, 47.393868]]], "type": "MultiLineString"}, "id": "2057", "properties": {}, "type": "Feature"}, {"bbox": [8.576889, 47.37273, 8.587307, 47.373608], "geometry": {"coordinates": [[[8.576889, 47.373432], [8.577024, 47.373456], [8.577164, 47.373478], [8.577305, 47.373498], [8.577447, 47.373515], [8.578146, 47.373586], [8.578281, 47.3736], [8.578418, 47.373607], [8.578554, 47.373608], [8.579008, 47.373602], [8.579105, 47.3736], [8.579203, 47.373597], [8.5793, 47.373593], [8.579435, 47.373588], [8.579591, 47.373582], [8.579726, 47.373589], [8.579862, 47.373589], [8.579997, 47.373584], [8.580389, 47.37357], [8.580781, 47.373554], [8.581173, 47.373536], [8.582768, 47.373438], [8.583007, 47.373422], [8.583332, 47.373397], [8.583655, 47.373361], [8.583975, 47.373315], [8.58425, 47.373268], [8.584525, 47.373217], [8.584797, 47.373162], [8.58586, 47.372969], [8.587116, 47.37274], [8.587163, 47.372734], [8.587211, 47.372731], [8.587259, 47.37273], [8.587307, 47.372734]]], "type": "MultiLineString"}, "id": "2058", "properties": {}, "type": "Feature"}, {"bbox": [8.53832, 47.373903, 8.540329, 47.374022], "geometry": {"coordinates": [[[8.540329, 47.374015], [8.540148, 47.374022], [8.5401, 47.374021], [8.540046, 47.374021], [8.539618, 47.373987], [8.539062, 47.373943], [8.538842, 47.373931], [8.53832, 47.373903]]], "type": "MultiLineString"}, "id": "2059", "properties": {}, "type": "Feature"}, {"bbox": [8.562827, 47.383356, 8.563865, 47.384269], "geometry": {"coordinates": [[[8.563865, 47.384269], [8.563829, 47.384251], [8.563796, 47.384205], [8.563746, 47.384147], [8.563584, 47.383957], [8.563035, 47.383513], [8.562827, 47.383356]]], "type": "MultiLineString"}, "id": "2061", "properties": {}, "type": "Feature"}, {"bbox": [8.508156, 47.407286, 8.508602, 47.407618], "geometry": {"coordinates": [[[8.508602, 47.407618], [8.508516, 47.407505], [8.508577, 47.407483], [8.508437, 47.407286], [8.508156, 47.407378], [8.508296, 47.407578], [8.508516, 47.407505]]], "type": "MultiLineString"}, "id": "2063", "properties": {}, "type": "Feature"}, {"bbox": [8.548314, 47.366131, 8.548879, 47.366361], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.548736, 47.366187], [8.548492, 47.366283], [8.548314, 47.366361]]], "type": "MultiLineString"}, "id": "2064", "properties": {}, "type": "Feature"}, {"bbox": [8.469339, 47.37662, 8.472942, 47.379945], "geometry": {"coordinates": [[[8.469339, 47.379945], [8.469398, 47.379871], [8.470285, 47.379268], [8.470664, 47.379009], [8.470762, 47.378929], [8.471312, 47.378496], [8.471647, 47.378239], [8.471693, 47.3782], [8.471735, 47.378157], [8.47177, 47.378112], [8.471799, 47.378066], [8.472208, 47.37732], [8.472367, 47.377012], [8.472457, 47.376858], [8.472519, 47.376764], [8.472535, 47.376743], [8.472552, 47.376723], [8.472573, 47.376704], [8.472584, 47.376692], [8.472597, 47.37668], [8.472611, 47.37667], [8.472627, 47.37666], [8.472644, 47.376651], [8.472662, 47.376643], [8.472681, 47.376636], [8.4727, 47.376631], [8.472721, 47.376626], [8.472742, 47.376623], [8.472763, 47.376621], [8.472784, 47.37662], [8.472806, 47.376621], [8.472827, 47.376623], [8.472848, 47.376626], [8.472868, 47.37663], [8.472888, 47.376635], [8.472907, 47.376642], [8.472925, 47.37665], [8.472942, 47.376658]]], "type": "MultiLineString"}, "id": "2065", "properties": {}, "type": "Feature"}, {"bbox": [8.568003, 47.368448, 8.569275, 47.368743], "geometry": {"coordinates": [[[8.568003, 47.368448], [8.568719, 47.368587], [8.569275, 47.368743]]], "type": "MultiLineString"}, "id": "2077", "properties": {}, "type": "Feature"}, {"bbox": [8.461388, 47.385862, 8.468057, 47.388332], "geometry": {"coordinates": [[[8.468057, 47.385862], [8.467982, 47.385898], [8.467969, 47.385904], [8.467955, 47.385909], [8.467941, 47.385914], [8.467927, 47.385918], [8.467927, 47.385918], [8.46791, 47.385923], [8.467892, 47.385928], [8.467874, 47.385933], [8.467874, 47.385933], [8.467874, 47.385933], [8.467849, 47.385939], [8.467825, 47.385946], [8.467801, 47.385952], [8.467598, 47.386003], [8.467459, 47.386036], [8.467319, 47.386068], [8.46718, 47.386101], [8.467096, 47.386121], [8.467014, 47.386142], [8.466932, 47.386165], [8.466932, 47.386165], [8.466932, 47.386165], [8.466876, 47.386181], [8.466819, 47.386195], [8.466761, 47.386207], [8.46676, 47.386208], [8.466345, 47.386317], [8.466308, 47.386329], [8.466107, 47.386395], [8.465956, 47.386449], [8.465812, 47.386512], [8.465676, 47.386583], [8.465121, 47.386898], [8.464422, 47.387178], [8.464334, 47.38721], [8.464242, 47.387237], [8.464147, 47.387258], [8.46405, 47.387273], [8.46359, 47.38733], [8.463463, 47.387348], [8.463339, 47.387375], [8.463219, 47.387409], [8.463104, 47.38745], [8.462995, 47.387499], [8.462952, 47.387522], [8.462913, 47.387548], [8.462877, 47.387577], [8.462844, 47.387607], [8.462816, 47.387639], [8.462809, 47.387649], [8.462803, 47.38766], [8.462798, 47.387672], [8.462795, 47.387683], [8.462793, 47.387695], [8.462638, 47.387709], [8.462292, 47.38776], [8.462228, 47.387771], [8.462167, 47.387786], [8.462107, 47.387805], [8.46205, 47.387827], [8.461996, 47.387852], [8.461945, 47.38788], [8.461898, 47.38791], [8.461855, 47.387944], [8.461468, 47.388271], [8.461442, 47.388292], [8.461416, 47.388312], [8.461388, 47.388332]]], "type": "MultiLineString"}, "id": "2078", "properties": {}, "type": "Feature"}, {"bbox": [8.538671, 47.374582, 8.540097, 47.377022], "geometry": {"coordinates": [[[8.538671, 47.374582], [8.538678, 47.374621], [8.538959, 47.375143], [8.539012, 47.375246], [8.539151, 47.375516], [8.539266, 47.375741], [8.539609, 47.37641], [8.539767, 47.376715], [8.539849, 47.376864], [8.539859, 47.376883], [8.539872, 47.376901], [8.539886, 47.376918], [8.539903, 47.376935], [8.539922, 47.376951], [8.539942, 47.376965], [8.539965, 47.376978], [8.539989, 47.37699], [8.540014, 47.377], [8.540041, 47.377009], [8.540068, 47.377017], [8.540097, 47.377022]]], "type": "MultiLineString"}, "id": "2079", "properties": {}, "type": "Feature"}, {"bbox": [8.4756, 47.360326, 8.477097, 47.362753], "geometry": {"coordinates": [[[8.4756, 47.362753], [8.475703, 47.362702], [8.475716, 47.362695], [8.475728, 47.362688], [8.475739, 47.362679], [8.475749, 47.362671], [8.475758, 47.362661], [8.475792, 47.362618], [8.47582, 47.362572], [8.475842, 47.362525], [8.47588, 47.362405], [8.475903, 47.362284], [8.47591, 47.362161], [8.475901, 47.362038], [8.475865, 47.361774], [8.475859, 47.361714], [8.475858, 47.361653], [8.475862, 47.361592], [8.475872, 47.361492], [8.475888, 47.361396], [8.475917, 47.361301], [8.475958, 47.361208], [8.47601, 47.361118], [8.476106, 47.360972], [8.476153, 47.360908], [8.476209, 47.360848], [8.476272, 47.36079], [8.476365, 47.360718], [8.476465, 47.36065], [8.47657, 47.360586], [8.476841, 47.360451], [8.477097, 47.360326]]], "type": "MultiLineString"}, "id": "2081", "properties": {}, "type": "Feature"}, {"bbox": [8.557832, 47.389618, 8.562085, 47.391521], "geometry": {"coordinates": [[[8.562085, 47.389618], [8.561696, 47.389722], [8.561585, 47.389757], [8.561479, 47.389798], [8.561379, 47.389845], [8.561286, 47.389899], [8.561127, 47.390001], [8.561034, 47.390055], [8.560934, 47.390104], [8.560829, 47.390147], [8.560478, 47.390277], [8.560421, 47.390299], [8.560366, 47.390324], [8.560312, 47.390351], [8.560185, 47.390419], [8.56016, 47.390433], [8.560138, 47.390449], [8.560117, 47.390465], [8.560107, 47.390473], [8.560095, 47.390481], [8.560083, 47.390488], [8.560078, 47.39049], [8.560074, 47.390492], [8.560069, 47.390494], [8.559805, 47.390602], [8.559437, 47.390738], [8.559109, 47.390856], [8.55885, 47.390967], [8.558771, 47.390999], [8.55869, 47.391027], [8.558606, 47.391053], [8.558306, 47.391139], [8.558242, 47.39116], [8.55818, 47.391185], [8.558123, 47.391213], [8.558069, 47.391245], [8.55802, 47.39128], [8.557975, 47.391318], [8.557936, 47.391358], [8.557853, 47.391454], [8.557847, 47.391461], [8.557842, 47.39147], [8.557838, 47.391478], [8.557835, 47.391486], [8.557833, 47.391495], [8.557832, 47.391504], [8.557833, 47.391513], [8.557834, 47.391521]]], "type": "MultiLineString"}, "id": "2085", "properties": {}, "type": "Feature"}, {"bbox": [8.55241, 47.373461, 8.553033, 47.374073], "geometry": {"coordinates": [[[8.55241, 47.374073], [8.552568, 47.373911], [8.552664, 47.373824], [8.552891, 47.373702], [8.552983, 47.373546], [8.553033, 47.373461]]], "type": "MultiLineString"}, "id": "2086", "properties": {}, "type": "Feature"}, {"bbox": [8.570868, 47.378878, 8.573127, 47.38014], "geometry": {"coordinates": [[[8.573127, 47.378878], [8.573056, 47.378923], [8.572222, 47.379286], [8.572105, 47.379341], [8.571473, 47.379713], [8.571297, 47.379875], [8.570976, 47.380103], [8.570868, 47.38014]]], "type": "MultiLineString"}, "id": "2087", "properties": {}, "type": "Feature"}, {"bbox": [8.538521, 47.378801, 8.54159, 47.382539], "geometry": {"coordinates": [[[8.538775, 47.382055], [8.538733, 47.382083], [8.538521, 47.382523], [8.538521, 47.382525], [8.538522, 47.382526], [8.538523, 47.382528], [8.538525, 47.38253], [8.538526, 47.382531], [8.538528, 47.382533], [8.53853, 47.382534], [8.538532, 47.382535], [8.538534, 47.382536], [8.538537, 47.382537], [8.538539, 47.382538], [8.538542, 47.382539], [8.538544, 47.382539], [8.538547, 47.382539], [8.53855, 47.382539], [8.538552, 47.382539], [8.538555, 47.382539], [8.538558, 47.382539], [8.53856, 47.382538], [8.538563, 47.382538], [8.538565, 47.382537], [8.5386, 47.382516], [8.53861, 47.382525], [8.538806, 47.38241], [8.538802, 47.382406], [8.539146, 47.38221], [8.539561, 47.381974], [8.5396, 47.381951], [8.539635, 47.381925], [8.539666, 47.381897], [8.539694, 47.381867], [8.539718, 47.381836], [8.539737, 47.381803], [8.539743, 47.381805], [8.539906, 47.38158], [8.540125, 47.381278], [8.540198, 47.381176], [8.540377, 47.380915], [8.540384, 47.380917], [8.540527, 47.38072], [8.540675, 47.380515], [8.541096, 47.379929], [8.541231, 47.379721], [8.541384, 47.379442], [8.541493, 47.379204], [8.541486, 47.379198], [8.541491, 47.379194], [8.541495, 47.379189], [8.541499, 47.379185], [8.541502, 47.37918], [8.541505, 47.379175], [8.54159, 47.378948], [8.541526, 47.378937], [8.541568, 47.378823], [8.541439, 47.378801]]], "type": "MultiLineString"}, "id": "2088", "properties": {}, "type": "Feature"}, {"bbox": [8.546186, 47.373907, 8.546466, 47.373975], "geometry": {"coordinates": [[[8.546466, 47.373975], [8.546186, 47.373907]]], "type": "MultiLineString"}, "id": "2089", "properties": {}, "type": "Feature"}, {"bbox": [8.542965, 47.373945, 8.544772, 47.374106], "geometry": {"coordinates": [[[8.542965, 47.374106], [8.543729, 47.373976], [8.543849, 47.373966], [8.544609, 47.373945], [8.544772, 47.373953]]], "type": "MultiLineString"}, "id": "2090", "properties": {}, "type": "Feature"}, {"bbox": [8.552302, 47.41372, 8.552866, 47.4144], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.552383, 47.414123], [8.552302, 47.41372]]], "type": "MultiLineString"}, "id": "2091", "properties": {}, "type": "Feature"}, {"bbox": [8.528842, 47.342421, 8.529951, 47.342925], "geometry": {"coordinates": [[[8.529951, 47.342925], [8.529781, 47.342782], [8.529303, 47.34261], [8.528842, 47.342421]]], "type": "MultiLineString"}, "id": "2093", "properties": {}, "type": "Feature"}, {"bbox": [8.527289, 47.422782, 8.531131, 47.42398], "geometry": {"coordinates": [[[8.531131, 47.422782], [8.531121, 47.422804], [8.531108, 47.422826], [8.531093, 47.422846], [8.531075, 47.422866], [8.531054, 47.422885], [8.531032, 47.422902], [8.531007, 47.422919], [8.53098, 47.422933], [8.530952, 47.422946], [8.530875, 47.422975], [8.530795, 47.422998], [8.530712, 47.423017], [8.53058, 47.423041], [8.530552, 47.423047], [8.530525, 47.423055], [8.530499, 47.423064], [8.530474, 47.423075], [8.530288, 47.423165], [8.53014, 47.423244], [8.530119, 47.423254], [8.530097, 47.423263], [8.530074, 47.423271], [8.53005, 47.423277], [8.530026, 47.423282], [8.53, 47.423285], [8.529975, 47.423287], [8.529949, 47.423288], [8.529843, 47.423289], [8.529738, 47.423298], [8.529635, 47.423314], [8.529339, 47.423369], [8.529288, 47.423378], [8.529238, 47.423386], [8.529187, 47.423394], [8.529052, 47.423414], [8.529016, 47.42342], [8.528981, 47.423427], [8.528946, 47.423436], [8.528798, 47.423475], [8.528768, 47.423484], [8.528739, 47.423493], [8.528711, 47.423504], [8.528581, 47.423555], [8.528553, 47.423566], [8.528523, 47.423575], [8.528493, 47.423582], [8.528363, 47.423611], [8.528337, 47.423617], [8.528312, 47.423624], [8.528288, 47.423632], [8.528174, 47.423675], [8.528144, 47.423686], [8.528113, 47.423695], [8.528081, 47.423703], [8.528017, 47.423719], [8.527991, 47.423726], [8.527967, 47.423734], [8.527944, 47.423744], [8.527883, 47.423774], [8.527837, 47.423795], [8.52779, 47.423813], [8.527741, 47.423828], [8.52769, 47.42384], [8.527586, 47.423862], [8.527558, 47.423869], [8.52753, 47.423877], [8.527504, 47.423886], [8.527388, 47.423928], [8.527289, 47.423921], [8.52729, 47.423962], [8.527292, 47.42398]]], "type": "MultiLineString"}, "id": "2097", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.36705, 8.545177, 47.367474], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544301, 47.36707], [8.544321, 47.367064], [8.544341, 47.367059], [8.544362, 47.367055], [8.544384, 47.367052], [8.544406, 47.36705], [8.544428, 47.36705], [8.54445, 47.367051], [8.544471, 47.367053], [8.544493, 47.367056], [8.544514, 47.367061], [8.544534, 47.367067], [8.544553, 47.367074], [8.544572, 47.367082], [8.545013, 47.367286], [8.545044, 47.367305], [8.545072, 47.367325], [8.545097, 47.367347], [8.54512, 47.36737], [8.545139, 47.367395], [8.545155, 47.36742], [8.545168, 47.367447], [8.545177, 47.367474]]], "type": "MultiLineString"}, "id": "2099", "properties": {}, "type": "Feature"}, {"bbox": [8.488239, 47.412195, 8.489473, 47.416769], "geometry": {"coordinates": [[[8.488239, 47.412195], [8.488353, 47.412288], [8.48842, 47.412347], [8.48848, 47.412409], [8.488532, 47.412475], [8.488576, 47.412543], [8.488611, 47.412614], [8.488647, 47.412714], [8.488669, 47.412817], [8.488675, 47.41292], [8.488671, 47.412999], [8.488672, 47.413178], [8.488672, 47.413232], [8.488675, 47.413285], [8.488679, 47.413338], [8.488755, 47.414032], [8.488916, 47.414751], [8.489082, 47.415498], [8.489092, 47.415539], [8.489125, 47.415673], [8.489132, 47.415696], [8.489141, 47.415719], [8.489151, 47.415741], [8.489166, 47.415775], [8.489176, 47.41581], [8.489181, 47.415845], [8.489202, 47.416101], [8.489253, 47.416461], [8.489258, 47.416485], [8.489266, 47.416509], [8.489278, 47.416533], [8.489292, 47.416555], [8.489406, 47.416713], [8.489473, 47.416769]]], "type": "MultiLineString"}, "id": "2101", "properties": {}, "type": "Feature"}, {"bbox": [8.580431, 47.358862, 8.581749, 47.359208], "geometry": {"coordinates": [[[8.580431, 47.358862], [8.580686, 47.358949], [8.580722, 47.35896], [8.581053, 47.358992], [8.581228, 47.35904], [8.581749, 47.359208]]], "type": "MultiLineString"}, "id": "2113", "properties": {}, "type": "Feature"}, {"bbox": [8.578573, 47.35852, 8.579313, 47.359562], "geometry": {"coordinates": [[[8.579313, 47.35852], [8.579299, 47.358593], [8.579278, 47.358597], [8.579258, 47.358602], [8.579238, 47.358607], [8.579219, 47.358614], [8.579201, 47.358623], [8.579184, 47.358632], [8.579169, 47.358642], [8.579154, 47.358653], [8.579142, 47.358665], [8.579131, 47.358678], [8.579117, 47.358696], [8.578644, 47.359437], [8.578573, 47.359562]]], "type": "MultiLineString"}, "id": "2114", "properties": {}, "type": "Feature"}, {"bbox": [8.582872, 47.399659, 8.583247, 47.399893], "geometry": {"coordinates": [[[8.582872, 47.399893], [8.582998, 47.399816], [8.583123, 47.399738], [8.583247, 47.399659]]], "type": "MultiLineString"}, "id": "2115", "properties": {}, "type": "Feature"}, {"bbox": [8.488294, 47.378398, 8.489223, 47.378714], "geometry": {"coordinates": [[[8.489223, 47.378688], [8.489188, 47.378697], [8.489152, 47.378705], [8.489115, 47.37871], [8.489078, 47.378713], [8.48904, 47.378714], [8.489002, 47.378713], [8.488965, 47.378709], [8.488928, 47.378704], [8.488892, 47.378696], [8.488857, 47.378687], [8.488824, 47.378675], [8.488792, 47.378661], [8.488294, 47.378398]]], "type": "MultiLineString"}, "id": "2116", "properties": {}, "type": "Feature"}, {"bbox": [8.591865, 47.398309, 8.596128, 47.399556], "geometry": {"coordinates": [[[8.591865, 47.399556], [8.592017, 47.399459], [8.596049, 47.398344], [8.596128, 47.398309]]], "type": "MultiLineString"}, "id": "2117", "properties": {}, "type": "Feature"}, {"bbox": [8.524641, 47.429768, 8.536829, 47.431274], "geometry": {"coordinates": [[[8.536829, 47.429805], [8.536365, 47.429834], [8.536061, 47.429768], [8.535818, 47.429772], [8.53505, 47.429889], [8.534232, 47.430042], [8.533575, 47.430186], [8.532646, 47.430462], [8.5311, 47.430774], [8.530519, 47.430872], [8.529963, 47.430922], [8.529474, 47.430975], [8.529249, 47.431017], [8.528691, 47.431011], [8.528119, 47.4311], [8.52737, 47.431103], [8.526859, 47.43111], [8.526569, 47.431119], [8.526303, 47.431133], [8.525913, 47.431173], [8.52548, 47.431207], [8.524641, 47.431274]]], "type": "MultiLineString"}, "id": "2118", "properties": {}, "type": "Feature"}, {"bbox": [8.542708, 47.406957, 8.543263, 47.407753], "geometry": {"coordinates": [[[8.543263, 47.407753], [8.543195, 47.407657], [8.542708, 47.406957]]], "type": "MultiLineString"}, "id": "2119", "properties": {}, "type": "Feature"}, {"bbox": [8.547492, 47.365829, 8.548211, 47.366438], "geometry": {"coordinates": [[[8.547872, 47.366438], [8.547858, 47.366395], [8.547872, 47.366403], [8.547887, 47.36641], [8.547903, 47.366417], [8.54792, 47.366422], [8.547937, 47.366426], [8.547955, 47.36643], [8.547974, 47.366432], [8.547992, 47.366433], [8.548011, 47.366433], [8.548029, 47.366432], [8.548048, 47.366429], [8.548066, 47.366426], [8.548083, 47.366421], [8.5481, 47.366416], [8.548116, 47.36641], [8.548131, 47.366402], [8.548145, 47.366394], [8.548158, 47.366385], [8.54817, 47.366375], [8.54818, 47.366365], [8.548189, 47.366354], [8.548197, 47.366342], [8.548203, 47.36633], [8.548207, 47.366318], [8.54821, 47.366305], [8.548211, 47.366293], [8.548211, 47.36628], [8.548209, 47.366267], [8.548205, 47.366255], [8.5482, 47.366243], [8.548193, 47.366231], [8.548185, 47.36622], [8.548175, 47.366209], [8.548164, 47.366199], [8.548151, 47.36619], [8.547577, 47.365867], [8.547492, 47.365829]]], "type": "MultiLineString"}, "id": "2122", "properties": {}, "type": "Feature"}, {"bbox": [8.547546, 47.366502, 8.54777, 47.366644], "geometry": {"coordinates": [[[8.54777, 47.366502], [8.547546, 47.366644]]], "type": "MultiLineString"}, "id": "2123", "properties": {}, "type": "Feature"}, {"bbox": [8.55029, 47.410572, 8.551007, 47.411075], "geometry": {"coordinates": [[[8.55029, 47.410572], [8.550401, 47.410931], [8.55041, 47.410948], [8.550422, 47.410964], [8.550436, 47.41098], [8.550452, 47.410995], [8.55047, 47.411009], [8.550489, 47.411022], [8.55051, 47.411033], [8.550533, 47.411044], [8.550556, 47.411053], [8.550581, 47.41106], [8.550607, 47.411066], [8.550633, 47.411071], [8.55066, 47.411074], [8.550687, 47.411075], [8.550714, 47.411075], [8.550741, 47.411073], [8.550767, 47.411069], [8.550794, 47.411064], [8.550819, 47.411058], [8.550843, 47.41105], [8.550867, 47.41104], [8.550889, 47.41103], [8.550909, 47.411018], [8.550928, 47.411004], [8.550945, 47.41099], [8.55096, 47.410975], [8.550974, 47.410959], [8.550985, 47.410942], [8.550994, 47.410925], [8.551, 47.410907], [8.551005, 47.410889], [8.551007, 47.41087], [8.551006, 47.410852], [8.551004, 47.410834], [8.550945, 47.410616]]], "type": "MultiLineString"}, "id": "2124", "properties": {}, "type": "Feature"}, {"bbox": [8.551912, 47.403403, 8.552381, 47.40447], "geometry": {"coordinates": [[[8.551912, 47.403403], [8.551943, 47.403474], [8.55219, 47.403886], [8.552212, 47.403922], [8.552231, 47.40395], [8.552318, 47.404103], [8.552321, 47.404108], [8.552324, 47.404113], [8.552326, 47.404119], [8.552328, 47.404124], [8.552329, 47.40413], [8.552329, 47.404136], [8.552328, 47.404141], [8.552326, 47.404147], [8.552324, 47.404152], [8.552322, 47.404158], [8.552318, 47.404163], [8.552282, 47.404219], [8.552277, 47.404226], [8.552272, 47.404234], [8.552269, 47.404242], [8.552267, 47.404249], [8.552266, 47.404257], [8.552266, 47.404265], [8.552267, 47.404273], [8.55227, 47.404281], [8.552273, 47.404289], [8.552277, 47.404296], [8.552381, 47.40447]]], "type": "MultiLineString"}, "id": "2125", "properties": {}, "type": "Feature"}, {"bbox": [8.514466, 47.397024, 8.514921, 47.397834], "geometry": {"coordinates": [[[8.514921, 47.397024], [8.514848, 47.397072], [8.514605, 47.397516], [8.514481, 47.397781], [8.514466, 47.397834]]], "type": "MultiLineString"}, "id": "2126", "properties": {}, "type": "Feature"}, {"bbox": [8.496674, 47.354075, 8.499928, 47.358436], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497217, 47.358377], [8.497181, 47.35829], [8.496932, 47.357997], [8.496751, 47.357702], [8.496689, 47.357503], [8.496674, 47.357237], [8.4967, 47.356973], [8.49671, 47.356882], [8.49671, 47.356882], [8.496723, 47.35681], [8.496744, 47.356739], [8.496773, 47.356669], [8.49681, 47.356601], [8.496935, 47.356395], [8.496948, 47.356372], [8.496958, 47.356349], [8.496964, 47.356325], [8.497311, 47.356274], [8.497383, 47.356261], [8.497453, 47.356244], [8.49752, 47.356223], [8.497585, 47.356198], [8.497646, 47.356169], [8.497703, 47.356137], [8.497756, 47.356101], [8.497804, 47.356063], [8.498113, 47.355794], [8.498125, 47.355783], [8.498134, 47.355772], [8.498143, 47.35576], [8.49815, 47.355747], [8.498155, 47.355734], [8.498158, 47.355721], [8.49816, 47.355708], [8.49816, 47.355695], [8.498158, 47.355682], [8.498154, 47.355668], [8.498149, 47.355656], [8.498136, 47.355633], [8.498121, 47.355612], [8.498103, 47.355591], [8.498082, 47.355572], [8.498058, 47.355554], [8.49767, 47.355285], [8.497644, 47.355265], [8.497619, 47.355244], [8.497596, 47.355222], [8.497461, 47.355082], [8.497444, 47.355063], [8.497431, 47.355043], [8.497419, 47.355023], [8.497411, 47.355002], [8.497405, 47.35498], [8.497402, 47.354959], [8.497402, 47.354937], [8.497405, 47.354915], [8.497411, 47.354894], [8.497419, 47.354873], [8.497431, 47.354852], [8.497501, 47.354739], [8.49752, 47.354712], [8.497542, 47.354686], [8.497568, 47.354661], [8.497597, 47.354638], [8.497628, 47.354617], [8.497662, 47.354598], [8.497698, 47.35458], [8.497737, 47.354565], [8.497777, 47.354552], [8.497818, 47.354542], [8.498225, 47.354452], [8.498322, 47.354434], [8.498421, 47.354421], [8.498521, 47.354415], [8.498807, 47.354406], [8.499116, 47.354394], [8.499169, 47.354391], [8.499222, 47.354383], [8.499273, 47.354373], [8.499322, 47.354359], [8.49937, 47.354343], [8.499415, 47.354323], [8.499928, 47.354075]]], "type": "MultiLineString"}, "id": "2127", "properties": {}, "type": "Feature"}, {"bbox": [8.477426, 47.419877, 8.482874, 47.421262], "geometry": {"coordinates": [[[8.482874, 47.419877], [8.482611, 47.419941], [8.48154, 47.420213], [8.480852, 47.420358], [8.480777, 47.420373], [8.480702, 47.420386], [8.480626, 47.420398], [8.479797, 47.420507], [8.479663, 47.420528], [8.479531, 47.420555], [8.479402, 47.420587], [8.478825, 47.420747], [8.47873, 47.420775], [8.478637, 47.420806], [8.478546, 47.420839], [8.477426, 47.421262]]], "type": "MultiLineString"}, "id": "2141", "properties": {}, "type": "Feature"}, {"bbox": [8.491438, 47.415253, 8.49313, 47.416954], "geometry": {"coordinates": [[[8.49313, 47.415253], [8.49237, 47.41539], [8.492355, 47.415394], [8.492341, 47.415398], [8.492326, 47.415402], [8.492313, 47.415408], [8.4923, 47.415415], [8.492288, 47.415422], [8.492277, 47.41543], [8.492267, 47.415438], [8.492259, 47.415447], [8.492251, 47.415456], [8.492244, 47.415466], [8.492134, 47.415653], [8.49168, 47.41657], [8.491673, 47.416586], [8.491667, 47.416603], [8.491664, 47.41662], [8.491636, 47.416691], [8.491598, 47.416761], [8.491553, 47.416828], [8.491499, 47.416893], [8.491438, 47.416954]]], "type": "MultiLineString"}, "id": "2142", "properties": {}, "type": "Feature"}, {"bbox": [8.541828, 47.373897, 8.54195, 47.374414], "geometry": {"coordinates": [[[8.54195, 47.373897], [8.541947, 47.373975], [8.541849, 47.374161], [8.541828, 47.374257], [8.541836, 47.37432], [8.541857, 47.374414]]], "type": "MultiLineString"}, "id": "2143", "properties": {}, "type": "Feature"}, {"bbox": [8.536047, 47.340897, 8.538912, 47.342933], "geometry": {"coordinates": [[[8.536047, 47.342762], [8.536178, 47.342805], [8.536542, 47.342933], [8.537275, 47.342851], [8.538004, 47.342412], [8.538191, 47.342432], [8.538726, 47.341685], [8.538912, 47.341639], [8.53879, 47.340928], [8.538785, 47.340897]]], "type": "MultiLineString"}, "id": "2144", "properties": {}, "type": "Feature"}, {"bbox": [8.546757, 47.38441, 8.547124, 47.384449], "geometry": {"coordinates": [[[8.546757, 47.38441], [8.547124, 47.384449]]], "type": "MultiLineString"}, "id": "2145", "properties": {}, "type": "Feature"}, {"bbox": [8.475806, 47.395417, 8.476443, 47.397322], "geometry": {"coordinates": [[[8.47643, 47.397322], [8.476437, 47.397307], [8.476441, 47.397291], [8.476443, 47.397275], [8.476443, 47.397259], [8.476249, 47.396696], [8.476175, 47.396481], [8.475881, 47.395621], [8.475806, 47.395417]]], "type": "MultiLineString"}, "id": "2150", "properties": {}, "type": "Feature"}, {"bbox": [8.525006, 47.420115, 8.530659, 47.424034], "geometry": {"coordinates": [[[8.530659, 47.420115], [8.530574, 47.420124], [8.530489, 47.420134], [8.530404, 47.420147], [8.530354, 47.420157], [8.530304, 47.420169], [8.530256, 47.420183], [8.530251, 47.420185], [8.530246, 47.420186], [8.530241, 47.420188], [8.530195, 47.420205], [8.529817, 47.420348], [8.529767, 47.420366], [8.529677, 47.420392], [8.529455, 47.420446], [8.529064, 47.420536], [8.528528, 47.420651], [8.52837, 47.420688], [8.528218, 47.420733], [8.528071, 47.420786], [8.527932, 47.420848], [8.527633, 47.420994], [8.527372, 47.421128], [8.527042, 47.4213], [8.52679, 47.42143], [8.526698, 47.421476], [8.526604, 47.421519], [8.526507, 47.421559], [8.526369, 47.421613], [8.526228, 47.421663], [8.526084, 47.421709], [8.526084, 47.421709], [8.526084, 47.421709], [8.52595, 47.421748], [8.525812, 47.421781], [8.525672, 47.421808], [8.525608, 47.421818], [8.525544, 47.421827], [8.52548, 47.421835], [8.525466, 47.421836], [8.525451, 47.421838], [8.525437, 47.421841], [8.525423, 47.421845], [8.52541, 47.421849], [8.525398, 47.421855], [8.525386, 47.421861], [8.525375, 47.421867], [8.525365, 47.421874], [8.525356, 47.421882], [8.525348, 47.421891], [8.525341, 47.4219], [8.525336, 47.421909], [8.525331, 47.421918], [8.525336, 47.422114], [8.525334, 47.422256], [8.525334, 47.422256], [8.525334, 47.422256], [8.52533, 47.422288], [8.525322, 47.422321], [8.52531, 47.422352], [8.525297, 47.422382], [8.525282, 47.42241], [8.525266, 47.422439], [8.525266, 47.422439], [8.525266, 47.422439], [8.525237, 47.422492], [8.525207, 47.422545], [8.525177, 47.422597], [8.525177, 47.422597], [8.525177, 47.422598], [8.525153, 47.422647], [8.525129, 47.422697], [8.525107, 47.422747], [8.525107, 47.422747], [8.525107, 47.422747], [8.52509, 47.422793], [8.525073, 47.422838], [8.525057, 47.422883], [8.525022, 47.423024], [8.525006, 47.423165], [8.525009, 47.423307], [8.525011, 47.423376], [8.525026, 47.423563], [8.525034, 47.423621], [8.52505, 47.423731], [8.525058, 47.42382], [8.525062, 47.424034]]], "type": "MultiLineString"}, "id": "2152", "properties": {}, "type": "Feature"}, {"bbox": [8.593919, 47.352978, 8.602074, 47.355184], "geometry": {"coordinates": [[[8.593919, 47.354588], [8.594029, 47.354613], [8.594134, 47.354644], [8.594235, 47.354681], [8.594331, 47.354725], [8.59442, 47.354774], [8.59458, 47.35489], [8.594745, 47.355004], [8.594914, 47.355114], [8.594952, 47.355132], [8.594991, 47.355147], [8.595033, 47.35516], [8.595076, 47.35517], [8.59512, 47.355177], [8.595165, 47.355182], [8.595211, 47.355184], [8.595256, 47.355183], [8.595302, 47.355179], [8.595346, 47.355173], [8.59539, 47.355164], [8.595432, 47.355153], [8.595473, 47.355138], [8.595511, 47.355122], [8.595547, 47.355103], [8.595616, 47.355049], [8.595676, 47.354991], [8.595729, 47.354929], [8.595774, 47.354864], [8.595811, 47.354798], [8.595838, 47.354729], [8.595857, 47.354658], [8.595879, 47.354028], [8.59589, 47.353957], [8.595911, 47.353887], [8.595941, 47.353818], [8.595979, 47.353751], [8.596026, 47.353687], [8.596082, 47.353626], [8.596145, 47.353569], [8.596215, 47.353516], [8.596272, 47.353478], [8.596334, 47.353444], [8.596399, 47.353413], [8.596468, 47.353387], [8.59654, 47.353364], [8.596615, 47.353346], [8.596692, 47.353332], [8.59677, 47.353323], [8.597236, 47.353274], [8.59859, 47.353184], [8.599575, 47.353163], [8.599713, 47.353169], [8.599738, 47.353152], [8.600425, 47.353065], [8.60109, 47.352978], [8.601172, 47.352978], [8.601253, 47.352983], [8.601334, 47.352993], [8.601413, 47.353008], [8.60149, 47.353027], [8.601564, 47.353051], [8.601634, 47.353079], [8.601701, 47.353111], [8.601764, 47.353148], [8.601809, 47.353171], [8.601851, 47.353198], [8.60189, 47.353226], [8.601924, 47.353258], [8.601955, 47.353291], [8.60198, 47.353326], [8.602001, 47.353362], [8.602017, 47.353399], [8.602028, 47.353437], [8.602074, 47.353461]]], "type": "MultiLineString"}, "id": "2154", "properties": {}, "type": "Feature"}, {"bbox": [8.482373, 47.387226, 8.484208, 47.38773], "geometry": {"coordinates": [[[8.484208, 47.387226], [8.484138, 47.387267], [8.483936, 47.387364], [8.483803, 47.387419], [8.483554, 47.387476], [8.483367, 47.387496], [8.483115, 47.387539], [8.482817, 47.38758], [8.48247, 47.387682], [8.482373, 47.38773]]], "type": "MultiLineString"}, "id": "2157", "properties": {}, "type": "Feature"}, {"bbox": [8.519155, 47.379281, 8.520104, 47.379944], "geometry": {"coordinates": [[[8.519155, 47.379729], [8.519179, 47.379751], [8.519422, 47.379644], [8.519731, 47.379944], [8.520104, 47.379754], [8.519786, 47.379426], [8.520058, 47.379303], [8.520044, 47.379281]]], "type": "MultiLineString"}, "id": "2158", "properties": {}, "type": "Feature"}, {"bbox": [8.519032, 47.379098, 8.520044, 47.379729], "geometry": {"coordinates": [[[8.520044, 47.379281], [8.52003, 47.379259], [8.519761, 47.379378], [8.519468, 47.379098], [8.519032, 47.379272], [8.519062, 47.379295], [8.519354, 47.379591], [8.51913, 47.379708], [8.519155, 47.379729]]], "type": "MultiLineString"}, "id": "2159", "properties": {}, "type": "Feature"}, {"bbox": [8.581729, 47.404705, 8.583464, 47.405104], "geometry": {"coordinates": [[[8.581729, 47.404705], [8.581855, 47.404743], [8.583464, 47.405104]]], "type": "MultiLineString"}, "id": "2172", "properties": {}, "type": "Feature"}, {"bbox": [8.552447, 47.388649, 8.552737, 47.389677], "geometry": {"coordinates": [[[8.552459, 47.389677], [8.55246, 47.389628], [8.552449, 47.389563], [8.552447, 47.389497], [8.552454, 47.389431], [8.552469, 47.389365], [8.552493, 47.389301], [8.552649, 47.388873], [8.552737, 47.388649]]], "type": "MultiLineString"}, "id": "2173", "properties": {}, "type": "Feature"}, {"bbox": [8.556905, 47.384317, 8.557666, 47.384484], "geometry": {"coordinates": [[[8.556905, 47.384484], [8.557102, 47.384457], [8.557295, 47.38442], [8.557484, 47.384374], [8.557666, 47.384317]]], "type": "MultiLineString"}, "id": "2179", "properties": {}, "type": "Feature"}, {"bbox": [8.584052, 47.399994, 8.58416, 47.400125], "geometry": {"coordinates": [[[8.58416, 47.400125], [8.584052, 47.399994]]], "type": "MultiLineString"}, "id": "2182", "properties": {}, "type": "Feature"}, {"bbox": [8.479723, 47.398116, 8.480912, 47.39971], "geometry": {"coordinates": [[[8.479723, 47.398116], [8.480641, 47.399525], [8.480692, 47.399602], [8.480912, 47.39971]]], "type": "MultiLineString"}, "id": "2184", "properties": {}, "type": "Feature"}, {"bbox": [8.582642, 47.400435, 8.583081, 47.400588], "geometry": {"coordinates": [[[8.582642, 47.400588], [8.58279, 47.400575], [8.582994, 47.400482], [8.583013, 47.400471], [8.583081, 47.400435]]], "type": "MultiLineString"}, "id": "2185", "properties": {}, "type": "Feature"}, {"bbox": [8.584732, 47.37644, 8.586902, 47.377622], "geometry": {"coordinates": [[[8.584747, 47.37644], [8.584733, 47.37651], [8.584732, 47.376518], [8.584732, 47.376526], [8.584733, 47.376534], [8.584735, 47.376542], [8.584738, 47.37655], [8.584742, 47.376558], [8.584747, 47.376566], [8.584753, 47.376573], [8.58476, 47.37658], [8.584768, 47.376586], [8.584776, 47.376592], [8.584786, 47.376597], [8.584795, 47.376602], [8.584806, 47.376606], [8.58529, 47.376778], [8.585326, 47.37679], [8.585362, 47.376802], [8.585399, 47.376813], [8.585535, 47.376853], [8.585584, 47.376867], [8.585634, 47.376879], [8.585684, 47.376889], [8.585871, 47.376925], [8.585921, 47.376936], [8.585969, 47.376951], [8.586016, 47.376968], [8.586059, 47.376989], [8.586415, 47.377172], [8.586448, 47.377191], [8.586479, 47.377212], [8.586506, 47.377234], [8.586531, 47.377258], [8.586808, 47.377559], [8.586902, 47.377622]]], "type": "MultiLineString"}, "id": "2188", "properties": {}, "type": "Feature"}, {"bbox": [8.515619, 47.395978, 8.516051, 47.396176], "geometry": {"coordinates": [[[8.516051, 47.396176], [8.515984, 47.396167], [8.515952, 47.396161], [8.51592, 47.396155], [8.515888, 47.396149], [8.515851, 47.39614], [8.515815, 47.396128], [8.515781, 47.396115], [8.515753, 47.396099], [8.515727, 47.396082], [8.515703, 47.396064], [8.515619, 47.395978]]], "type": "MultiLineString"}, "id": "2198", "properties": {}, "type": "Feature"}, {"bbox": [8.529346, 47.398423, 8.530329, 47.399732], "geometry": {"coordinates": [[[8.530329, 47.398423], [8.53007, 47.398492], [8.529693, 47.39852], [8.529478, 47.398544], [8.529463, 47.398547], [8.529449, 47.398552], [8.529435, 47.398557], [8.529422, 47.398563], [8.529409, 47.39857], [8.529398, 47.398577], [8.529387, 47.398585], [8.529378, 47.398594], [8.529369, 47.398603], [8.529362, 47.398613], [8.529356, 47.398623], [8.529352, 47.398633], [8.529349, 47.398643], [8.529347, 47.398654], [8.529346, 47.398665], [8.529347, 47.398676], [8.529349, 47.398686], [8.529353, 47.398697], [8.529358, 47.398707], [8.529364, 47.398717], [8.529371, 47.398727], [8.52938, 47.398736], [8.52939, 47.398744], [8.5294, 47.398752], [8.529412, 47.398759], [8.529425, 47.398766], [8.529438, 47.398772], [8.529452, 47.398777], [8.529467, 47.398781], [8.529482, 47.398784], [8.529587, 47.398818], [8.529689, 47.398858], [8.529786, 47.398902], [8.529892, 47.39896], [8.529975, 47.399023], [8.53005, 47.39909], [8.530116, 47.399162], [8.530142, 47.399198], [8.530163, 47.399235], [8.530179, 47.399274], [8.53019, 47.399313], [8.530197, 47.399353], [8.530198, 47.399393], [8.530194, 47.399433], [8.530185, 47.399473], [8.530171, 47.399512], [8.530152, 47.39955], [8.530128, 47.399586], [8.5301, 47.399622], [8.530067, 47.399655], [8.530031, 47.399686], [8.530007, 47.399703], [8.529982, 47.399718], [8.529955, 47.399732]]], "type": "MultiLineString"}, "id": "2201", "properties": {}, "type": "Feature"}, {"bbox": [8.517983, 47.351695, 8.520104, 47.353227], "geometry": {"coordinates": [[[8.520104, 47.351695], [8.519966, 47.351945], [8.519927, 47.351979], [8.519667, 47.352143], [8.51902, 47.352543], [8.518106, 47.353109], [8.517983, 47.353227]]], "type": "MultiLineString"}, "id": "2202", "properties": {}, "type": "Feature"}, {"bbox": [8.480317, 47.360011, 8.487038, 47.360972], "geometry": {"coordinates": [[[8.487038, 47.360972], [8.487001, 47.360852], [8.486962, 47.360769], [8.486944, 47.360735], [8.486923, 47.360703], [8.486897, 47.360672], [8.486868, 47.360643], [8.486836, 47.360615], [8.4868, 47.360589], [8.48662, 47.360469], [8.486569, 47.360438], [8.486513, 47.360409], [8.486454, 47.360384], [8.486393, 47.360362], [8.486328, 47.360344], [8.486262, 47.36033], [8.486194, 47.360319], [8.486061, 47.360303], [8.486003, 47.360294], [8.485946, 47.360282], [8.485891, 47.360266], [8.485838, 47.360248], [8.485702, 47.360194], [8.485625, 47.360167], [8.485544, 47.360145], [8.485461, 47.360127], [8.485376, 47.360114], [8.485016, 47.360071], [8.48458, 47.360016], [8.484544, 47.360013], [8.484507, 47.360011], [8.48447, 47.360012], [8.484434, 47.360015], [8.484398, 47.360019], [8.484363, 47.360026], [8.484328, 47.360035], [8.484295, 47.360046], [8.484263, 47.360058], [8.484233, 47.360073], [8.483993, 47.360198], [8.483923, 47.360232], [8.48385, 47.360262], [8.483773, 47.360289], [8.483169, 47.360487], [8.483038, 47.360525], [8.482903, 47.360557], [8.482764, 47.360581], [8.482764, 47.360581], [8.482435, 47.36063], [8.482285, 47.360649], [8.482134, 47.36066], [8.481982, 47.360664], [8.481982, 47.360664], [8.481982, 47.360664], [8.481869, 47.360662], [8.481757, 47.360653], [8.481647, 47.360638], [8.481539, 47.360617], [8.481129, 47.360524], [8.48045, 47.360359], [8.480317, 47.360328]]], "type": "MultiLineString"}, "id": "2203", "properties": {}, "type": "Feature"}, {"bbox": [8.548153, 47.377582, 8.550534, 47.379997], "geometry": {"coordinates": [[[8.548153, 47.379991], [8.548408, 47.379997], [8.548436, 47.379997], [8.548465, 47.379995], [8.548493, 47.379992], [8.548521, 47.379987], [8.548548, 47.379981], [8.548574, 47.379973], [8.548599, 47.379963], [8.548622, 47.379952], [8.548645, 47.37994], [8.548665, 47.379927], [8.548684, 47.379912], [8.548701, 47.379896], [8.548716, 47.37988], [8.548877, 47.379721], [8.548982, 47.379593], [8.549012, 47.379556], [8.549037, 47.379518], [8.549057, 47.379478], [8.549072, 47.379437], [8.549082, 47.379396], [8.549087, 47.379354], [8.549087, 47.379312], [8.549086, 47.379267], [8.54909, 47.379223], [8.549101, 47.379178], [8.549117, 47.379135], [8.549139, 47.379093], [8.549166, 47.379052], [8.549198, 47.379013], [8.549235, 47.378976], [8.549236, 47.378975], [8.549427, 47.378821], [8.549856, 47.378475], [8.55001, 47.378343], [8.550144, 47.378201], [8.550256, 47.378051], [8.550462, 47.377717], [8.550534, 47.377582]]], "type": "MultiLineString"}, "id": "2204", "properties": {}, "type": "Feature"}, {"bbox": [8.545287, 47.370924, 8.547059, 47.372101], "geometry": {"coordinates": [[[8.547059, 47.370924], [8.546871, 47.371028], [8.546747, 47.371099], [8.546349, 47.371314], [8.545913, 47.371553], [8.545816, 47.371602], [8.545728, 47.371658], [8.545647, 47.371719], [8.545576, 47.371785], [8.545509, 47.371859], [8.545444, 47.371934], [8.545383, 47.37201], [8.545352, 47.372041], [8.54532, 47.372071], [8.545287, 47.372101]]], "type": "MultiLineString"}, "id": "2205", "properties": {}, "type": "Feature"}, {"bbox": [8.544285, 47.41077, 8.544578, 47.411274], "geometry": {"coordinates": [[[8.544578, 47.41077], [8.544572, 47.410781], [8.544538, 47.410823], [8.5445, 47.410864], [8.544486, 47.410878], [8.544473, 47.410892], [8.544462, 47.410907], [8.544359, 47.411078], [8.544332, 47.411125], [8.544311, 47.411174], [8.544295, 47.411223], [8.544285, 47.411274]]], "type": "MultiLineString"}, "id": "2206", "properties": {}, "type": "Feature"}, {"bbox": [8.560006, 47.416066, 8.560826, 47.417654], "geometry": {"coordinates": [[[8.560006, 47.417654], [8.560826, 47.416066]]], "type": "MultiLineString"}, "id": "2213", "properties": {}, "type": "Feature"}, {"bbox": [8.530083, 47.338487, 8.530293, 47.338585], "geometry": {"coordinates": [[[8.530083, 47.338585], [8.530293, 47.338487]]], "type": "MultiLineString"}, "id": "2215", "properties": {}, "type": "Feature"}, {"bbox": [8.519743, 47.349769, 8.521, 47.35107], "geometry": {"coordinates": [[[8.521, 47.349769], [8.519743, 47.350581], [8.52055, 47.35086], [8.520475, 47.350993], [8.520465, 47.35107]]], "type": "MultiLineString"}, "id": "2217", "properties": {}, "type": "Feature"}, {"bbox": [8.524121, 47.351695, 8.524407, 47.351756], "geometry": {"coordinates": [[[8.524401, 47.351756], [8.524407, 47.351705], [8.524331, 47.351702], [8.524124, 47.351695], [8.524124, 47.351714], [8.524123, 47.351733], [8.524121, 47.351752]]], "type": "MultiLineString"}, "id": "2220", "properties": {}, "type": "Feature"}, {"bbox": [8.547042, 47.365766, 8.54711, 47.365799], "geometry": {"coordinates": [[[8.54711, 47.365799], [8.547042, 47.365766]]], "type": "MultiLineString"}, "id": "2221", "properties": {}, "type": "Feature"}, {"bbox": [8.489849, 47.356006, 8.496968, 47.360491], "geometry": {"coordinates": [[[8.496964, 47.356325], [8.496967, 47.35631], [8.496968, 47.356294], [8.496967, 47.356278], [8.496954, 47.356131], [8.496953, 47.356119], [8.496949, 47.356108], [8.496945, 47.356097], [8.496938, 47.356086], [8.496931, 47.356075], [8.496922, 47.356066], [8.496912, 47.356056], [8.4969, 47.356048], [8.496888, 47.35604], [8.496874, 47.356032], [8.49686, 47.356026], [8.496845, 47.356021], [8.496829, 47.356016], [8.496812, 47.356013], [8.496796, 47.35601], [8.496779, 47.356009], [8.496651, 47.356006], [8.496523, 47.35601], [8.496396, 47.356021], [8.49627, 47.35604], [8.496148, 47.356065], [8.496015, 47.356099], [8.495885, 47.356135], [8.495756, 47.356175], [8.495702, 47.356191], [8.495645, 47.356204], [8.495588, 47.356214], [8.495529, 47.356221], [8.495274, 47.356243], [8.494967, 47.356263], [8.494761, 47.356275], [8.494743, 47.356276], [8.494726, 47.356279], [8.494708, 47.356283], [8.494692, 47.356288], [8.494676, 47.356294], [8.49466, 47.3563], [8.494646, 47.356308], [8.494633, 47.356316], [8.494621, 47.356326], [8.49461, 47.356335], [8.4946, 47.356346], [8.494592, 47.356357], [8.494585, 47.356368], [8.494579, 47.35638], [8.494575, 47.356392], [8.494556, 47.356453], [8.494532, 47.356513], [8.494502, 47.356573], [8.494441, 47.35668], [8.494427, 47.35671], [8.494417, 47.35674], [8.494411, 47.356771], [8.494399, 47.356884], [8.494396, 47.356902], [8.494391, 47.35692], [8.494383, 47.356937], [8.494374, 47.356954], [8.494362, 47.35697], [8.494349, 47.356986], [8.494255, 47.357083], [8.494232, 47.35711], [8.494212, 47.357137], [8.494196, 47.357166], [8.494184, 47.357196], [8.494176, 47.357226], [8.494171, 47.357257], [8.494171, 47.357287], [8.494174, 47.357318], [8.494181, 47.357348], [8.494192, 47.357378], [8.494207, 47.357407], [8.494226, 47.357435], [8.494468, 47.357764], [8.494682, 47.35814], [8.494692, 47.358155], [8.494704, 47.358169], [8.494717, 47.358183], [8.494733, 47.358195], [8.49475, 47.358207], [8.494768, 47.358218], [8.494788, 47.358227], [8.494912, 47.358279], [8.49492, 47.358283], [8.494927, 47.358287], [8.494933, 47.358291], [8.494939, 47.358296], [8.494945, 47.358301], [8.49495, 47.358306], [8.494954, 47.358312], [8.494957, 47.358318], [8.49496, 47.358324], [8.494961, 47.35833], [8.494962, 47.358336], [8.494963, 47.358343], [8.494962, 47.358349], [8.494961, 47.358355], [8.494959, 47.358361], [8.494956, 47.358367], [8.494952, 47.358373], [8.494948, 47.358378], [8.494943, 47.358384], [8.494937, 47.358389], [8.49493, 47.358393], [8.494924, 47.358397], [8.494916, 47.358401], [8.494908, 47.358405], [8.4949, 47.358407], [8.494892, 47.35841], [8.49474, 47.358447], [8.494713, 47.358454], [8.494687, 47.358464], [8.494662, 47.358474], [8.494639, 47.358487], [8.494618, 47.3585], [8.494598, 47.358515], [8.494581, 47.358531], [8.494566, 47.358548], [8.494553, 47.358566], [8.494542, 47.358585], [8.494534, 47.358604], [8.49449, 47.358735], [8.494485, 47.358746], [8.494479, 47.358757], [8.494472, 47.358768], [8.494463, 47.358778], [8.494453, 47.358788], [8.494441, 47.358797], [8.494429, 47.358806], [8.494416, 47.358813], [8.494401, 47.35882], [8.494386, 47.358826], [8.494371, 47.358832], [8.494354, 47.358836], [8.494337, 47.358839], [8.49432, 47.358841], [8.494303, 47.358843], [8.494285, 47.358843], [8.494268, 47.358842], [8.49425, 47.35884], [8.494233, 47.358838], [8.494217, 47.358834], [8.4942, 47.358829], [8.493806, 47.358701], [8.493479, 47.358564], [8.493398, 47.35853], [8.493318, 47.358495], [8.493239, 47.358459], [8.493221, 47.358451], [8.493202, 47.358445], [8.493182, 47.358439], [8.493161, 47.358435], [8.49314, 47.358432], [8.493119, 47.358431], [8.493097, 47.358431], [8.493076, 47.358432], [8.493055, 47.358434], [8.493034, 47.358438], [8.493014, 47.358443], [8.492994, 47.358449], [8.492976, 47.358457], [8.492887, 47.358499], [8.492806, 47.358548], [8.492732, 47.358602], [8.492666, 47.35866], [8.492614, 47.358707], [8.492556, 47.358752], [8.492494, 47.358793], [8.492428, 47.358837], [8.492368, 47.358884], [8.492313, 47.358935], [8.492265, 47.358988], [8.492183, 47.359086], [8.492163, 47.359112], [8.492147, 47.359139], [8.492135, 47.359166], [8.492127, 47.359195], [8.492122, 47.359223], [8.492121, 47.359252], [8.492124, 47.359281], [8.49213, 47.359309], [8.49214, 47.359337], [8.492225, 47.359531], [8.492238, 47.359567], [8.492246, 47.359603], [8.492249, 47.359639], [8.492246, 47.359676], [8.492239, 47.359712], [8.492189, 47.359887], [8.492185, 47.359909], [8.492183, 47.359932], [8.492184, 47.359955], [8.492188, 47.359977], [8.492195, 47.359999], [8.492206, 47.360021], [8.492219, 47.360042], [8.492234, 47.360062], [8.492252, 47.360081], [8.492273, 47.360099], [8.492296, 47.360115], [8.492321, 47.36013], [8.492348, 47.360144], [8.492377, 47.360155], [8.492448, 47.360184], [8.492516, 47.360216], [8.49258, 47.360252], [8.492592, 47.36026], [8.492604, 47.360269], [8.492614, 47.360278], [8.492623, 47.360289], [8.492631, 47.360299], [8.492637, 47.36031], [8.492642, 47.360322], [8.492645, 47.360333], [8.492647, 47.360345], [8.492648, 47.360357], [8.492647, 47.360369], [8.492644, 47.36038], [8.49264, 47.360392], [8.492635, 47.360403], [8.492628, 47.360414], [8.492619, 47.360424], [8.49261, 47.360434], [8.492599, 47.360444], [8.492587, 47.360452], [8.492574, 47.36046], [8.49256, 47.360467], [8.492545, 47.360473], [8.49253, 47.360479], [8.492514, 47.360483], [8.492497, 47.360487], [8.49248, 47.360489], [8.492463, 47.360491], [8.492445, 47.360491], [8.492428, 47.360491], [8.492385, 47.360486], [8.492342, 47.36048], [8.4923, 47.36047], [8.49226, 47.360459], [8.492222, 47.360444], [8.492186, 47.360428], [8.492152, 47.360409], [8.492121, 47.360388], [8.491808, 47.36016], [8.491771, 47.360136], [8.491731, 47.360114], [8.491689, 47.360094], [8.491643, 47.360077], [8.491596, 47.360063], [8.491547, 47.360052], [8.491448, 47.360033], [8.491425, 47.360027], [8.491402, 47.360021], [8.49138, 47.360013], [8.491359, 47.360004], [8.49134, 47.359994], [8.491322, 47.359982], [8.491305, 47.35997], [8.49129, 47.359956], [8.491276, 47.359942], [8.491265, 47.359927], [8.491204, 47.35984], [8.491185, 47.359816], [8.491163, 47.359793], [8.491138, 47.359771], [8.491111, 47.359751], [8.491081, 47.359733], [8.491049, 47.359716], [8.491015, 47.359702], [8.49098, 47.359689], [8.490943, 47.359679], [8.490791, 47.359641], [8.490762, 47.359635], [8.490731, 47.35963], [8.4907, 47.359627], [8.490669, 47.359626], [8.490637, 47.359626], [8.490606, 47.359629], [8.490575, 47.359633], [8.490545, 47.359639], [8.490516, 47.359646], [8.490487, 47.359655], [8.490134, 47.359777], [8.489964, 47.359845], [8.489948, 47.359855], [8.489933, 47.359866], [8.489919, 47.359878], [8.4899, 47.359901], [8.489883, 47.359925], [8.48987, 47.35995], [8.48986, 47.359976], [8.489853, 47.360003], [8.489849, 47.360029], [8.489849, 47.360056], [8.489853, 47.360083], [8.48986, 47.360109], [8.48987, 47.360135], [8.489884, 47.36016], [8.489901, 47.360184], [8.489921, 47.360207], [8.490013, 47.360319]]], "type": "MultiLineString"}, "id": "2222", "properties": {}, "type": "Feature"}, {"bbox": [8.551905, 47.367061, 8.55254, 47.367492], "geometry": {"coordinates": [[[8.55254, 47.367492], [8.552445, 47.367483], [8.551905, 47.367061]]], "type": "MultiLineString"}, "id": "2224", "properties": {}, "type": "Feature"}, {"bbox": [8.546165, 47.383827, 8.546953, 47.384193], "geometry": {"coordinates": [[[8.546165, 47.383827], [8.546371, 47.38393], [8.546953, 47.384193]]], "type": "MultiLineString"}, "id": "2227", "properties": {}, "type": "Feature"}, {"bbox": [8.588027, 47.395806, 8.588323, 47.39618], "geometry": {"coordinates": [[[8.588027, 47.39618], [8.588323, 47.395806]]], "type": "MultiLineString"}, "id": "2229", "properties": {}, "type": "Feature"}, {"bbox": [8.545489, 47.367148, 8.546471, 47.367611], "geometry": {"coordinates": [[[8.545489, 47.367148], [8.545586, 47.367193], [8.546471, 47.367611]]], "type": "MultiLineString"}, "id": "2232", "properties": {}, "type": "Feature"}, {"bbox": [8.544672, 47.410759, 8.545189, 47.410918], "geometry": {"coordinates": [[[8.545189, 47.410918], [8.544672, 47.410759]]], "type": "MultiLineString"}, "id": "2235", "properties": {}, "type": "Feature"}, {"bbox": [8.539191, 47.369604, 8.539393, 47.370092], "geometry": {"coordinates": [[[8.539393, 47.369604], [8.539379, 47.369674], [8.539302, 47.369944], [8.539288, 47.369976], [8.539269, 47.370007], [8.539247, 47.370037], [8.539221, 47.370065], [8.539191, 47.370092]]], "type": "MultiLineString"}, "id": "2245", "properties": {}, "type": "Feature"}, {"bbox": [8.571708, 47.358835, 8.572269, 47.359406], "geometry": {"coordinates": [[[8.571708, 47.358835], [8.571852, 47.358973], [8.571963, 47.359066], [8.571884, 47.35911], [8.572269, 47.359406]]], "type": "MultiLineString"}, "id": "2246", "properties": {}, "type": "Feature"}, {"bbox": [8.539676, 47.371297, 8.539998, 47.371836], "geometry": {"coordinates": [[[8.539998, 47.371836], [8.539916, 47.371809], [8.539942, 47.371786], [8.539918, 47.37178], [8.539927, 47.371761], [8.539858, 47.37174], [8.539852, 47.371752], [8.539815, 47.371738], [8.539824, 47.371723], [8.539676, 47.371685], [8.539939, 47.371304], [8.539915, 47.371297]]], "type": "MultiLineString"}, "id": "2247", "properties": {}, "type": "Feature"}, {"bbox": [8.570915, 47.353904, 8.572052, 47.354016], "geometry": {"coordinates": [[[8.572052, 47.354016], [8.570915, 47.353904]]], "type": "MultiLineString"}, "id": "2250", "properties": {}, "type": "Feature"}, {"bbox": [8.566837, 47.413287, 8.567563, 47.413297], "geometry": {"coordinates": [[[8.566837, 47.413297], [8.567079, 47.413294], [8.567321, 47.413291], [8.567563, 47.413287]]], "type": "MultiLineString"}, "id": "2251", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.416689, 8.529267, 47.416725], "geometry": {"coordinates": [[[8.528055, 47.416689], [8.528593, 47.416701], [8.528818, 47.416706], [8.529042, 47.416714], [8.529267, 47.416725]]], "type": "MultiLineString"}, "id": "2253", "properties": {}, "type": "Feature"}, {"bbox": [8.564953, 47.406728, 8.565785, 47.407865], "geometry": {"coordinates": [[[8.565258, 47.407865], [8.565785, 47.407287], [8.56561, 47.407135], [8.564953, 47.406728]]], "type": "MultiLineString"}, "id": "2255", "properties": {}, "type": "Feature"}, {"bbox": [8.57151, 47.36799, 8.572354, 47.369187], "geometry": {"coordinates": [[[8.572354, 47.36799], [8.572149, 47.368377], [8.571974, 47.368655], [8.571881, 47.36878], [8.57151, 47.369187]]], "type": "MultiLineString"}, "id": "2256", "properties": {}, "type": "Feature"}, {"bbox": [8.557179, 47.36352, 8.557944, 47.363954], "geometry": {"coordinates": [[[8.557179, 47.36352], [8.557944, 47.363954]]], "type": "MultiLineString"}, "id": "2259", "properties": {}, "type": "Feature"}, {"bbox": [8.499589, 47.358896, 8.500437, 47.359681], "geometry": {"coordinates": [[[8.499589, 47.359681], [8.500437, 47.358896]]], "type": "MultiLineString"}, "id": "2260", "properties": {}, "type": "Feature"}, {"bbox": [8.482099, 47.384202, 8.483109, 47.384716], "geometry": {"coordinates": [[[8.483109, 47.384716], [8.482759, 47.384687], [8.482355, 47.384529], [8.482099, 47.384202]]], "type": "MultiLineString"}, "id": "2261", "properties": {}, "type": "Feature"}, {"bbox": [8.59131, 47.360989, 8.592449, 47.361375], "geometry": {"coordinates": [[[8.59131, 47.360989], [8.591329, 47.361], [8.591349, 47.36101], [8.59137, 47.36102], [8.591749, 47.361268], [8.591783, 47.361286], [8.591819, 47.361302], [8.591858, 47.361316], [8.591897, 47.361328], [8.591939, 47.361337], [8.592219, 47.361375], [8.592254, 47.361374], [8.592289, 47.361371], [8.592323, 47.361365], [8.592356, 47.361358], [8.592389, 47.361349], [8.59242, 47.361338], [8.592449, 47.361325]]], "type": "MultiLineString"}, "id": "2263", "properties": {}, "type": "Feature"}, {"bbox": [8.500909, 47.362962, 8.503228, 47.363768], "geometry": {"coordinates": [[[8.500909, 47.363768], [8.500911, 47.363749], [8.500928, 47.363582], [8.500964, 47.363577], [8.501686, 47.363408], [8.502404, 47.363194], [8.502927, 47.362967], [8.503001, 47.362962], [8.503189, 47.363045], [8.503228, 47.36306]]], "type": "MultiLineString"}, "id": "2264", "properties": {}, "type": "Feature"}, {"bbox": [8.576357, 47.410301, 8.576669, 47.410549], "geometry": {"coordinates": [[[8.576357, 47.410337], [8.576534, 47.410301], [8.576669, 47.410549]]], "type": "MultiLineString"}, "id": "2265", "properties": {}, "type": "Feature"}, {"bbox": [8.451733, 47.380518, 8.451923, 47.380616], "geometry": {"coordinates": [[[8.451923, 47.380518], [8.451858, 47.380549], [8.451795, 47.380582], [8.451733, 47.380616]]], "type": "MultiLineString"}, "id": "2267", "properties": {}, "type": "Feature"}, {"bbox": [8.571367, 47.398838, 8.572463, 47.399842], "geometry": {"coordinates": [[[8.571367, 47.399842], [8.572202, 47.399342], [8.572372, 47.399139], [8.572463, 47.398838]]], "type": "MultiLineString"}, "id": "2269", "properties": {}, "type": "Feature"}, {"bbox": [8.496675, 47.384546, 8.497351, 47.385367], "geometry": {"coordinates": [[[8.496675, 47.384546], [8.497285, 47.385322], [8.497298, 47.385337], [8.497324, 47.385329], [8.497351, 47.385367]]], "type": "MultiLineString"}, "id": "2274", "properties": {}, "type": "Feature"}, {"bbox": [8.55299, 47.353058, 8.554662, 47.353549], "geometry": {"coordinates": [[[8.55299, 47.353172], [8.553348, 47.353076], [8.553486, 47.353058], [8.55425, 47.353103], [8.554411, 47.353291], [8.554544, 47.353476], [8.554662, 47.353549]]], "type": "MultiLineString"}, "id": "2275", "properties": {}, "type": "Feature"}, {"bbox": [8.496012, 47.385367, 8.49736, 47.385789], "geometry": {"coordinates": [[[8.497351, 47.385367], [8.49736, 47.385423], [8.497313, 47.385438], [8.496152, 47.385778], [8.496105, 47.385781], [8.496059, 47.385785], [8.496012, 47.385789]]], "type": "MultiLineString"}, "id": "2277", "properties": {}, "type": "Feature"}, {"bbox": [8.561053, 47.414226, 8.56307, 47.414255], "geometry": {"coordinates": [[[8.56307, 47.414255], [8.561053, 47.414226]]], "type": "MultiLineString"}, "id": "2280", "properties": {}, "type": "Feature"}, {"bbox": [8.551886, 47.417203, 8.553833, 47.417498], "geometry": {"coordinates": [[[8.551886, 47.417203], [8.552034, 47.417236], [8.553449, 47.417468], [8.553833, 47.417498]]], "type": "MultiLineString"}, "id": "2281", "properties": {}, "type": "Feature"}, {"bbox": [8.572311, 47.410623, 8.572614, 47.411182], "geometry": {"coordinates": [[[8.572311, 47.410623], [8.572348, 47.410653], [8.57238, 47.410685], [8.572407, 47.410719], [8.572485, 47.410872], [8.572554, 47.411026], [8.572614, 47.411182]]], "type": "MultiLineString"}, "id": "2282", "properties": {}, "type": "Feature"}, {"bbox": [8.505566, 47.397501, 8.507117, 47.398184], "geometry": {"coordinates": [[[8.505566, 47.398184], [8.505572, 47.398184], [8.505577, 47.398183], [8.505582, 47.398181], [8.505587, 47.39818], [8.505591, 47.398178], [8.505836, 47.398065], [8.506082, 47.397955], [8.50633, 47.397846], [8.506591, 47.397731], [8.506854, 47.397616], [8.507117, 47.397501]]], "type": "MultiLineString"}, "id": "2283", "properties": {}, "type": "Feature"}, {"bbox": [8.589723, 47.399221, 8.590306, 47.400214], "geometry": {"coordinates": [[[8.590306, 47.400214], [8.590283, 47.400176], [8.590282, 47.400146], [8.589723, 47.399221]]], "type": "MultiLineString"}, "id": "2285", "properties": {}, "type": "Feature"}, {"bbox": [8.543398, 47.391036, 8.544156, 47.392389], "geometry": {"coordinates": [[[8.54393, 47.392389], [8.543486, 47.391899], [8.543398, 47.391803], [8.543435, 47.391439], [8.543501, 47.39137], [8.543586, 47.391282], [8.543614, 47.391248], [8.543695, 47.391141], [8.543761, 47.391036], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "2286", "properties": {}, "type": "Feature"}, {"bbox": [8.505338, 47.368452, 8.505525, 47.369326], "geometry": {"coordinates": [[[8.505407, 47.369326], [8.505338, 47.369187], [8.505341, 47.369164], [8.50538, 47.369019], [8.505392, 47.368974], [8.505401, 47.368899], [8.505517, 47.368482], [8.505525, 47.368452]]], "type": "MultiLineString"}, "id": "2287", "properties": {}, "type": "Feature"}, {"bbox": [8.513293, 47.417736, 8.514129, 47.418332], "geometry": {"coordinates": [[[8.513293, 47.417736], [8.51334, 47.417767], [8.514129, 47.418332]]], "type": "MultiLineString"}, "id": "2288", "properties": {}, "type": "Feature"}, {"bbox": [8.518181, 47.388317, 8.518563, 47.388684], "geometry": {"coordinates": [[[8.518563, 47.388684], [8.518181, 47.388317]]], "type": "MultiLineString"}, "id": "2289", "properties": {}, "type": "Feature"}, {"bbox": [8.514398, 47.330582, 8.515629, 47.330898], "geometry": {"coordinates": [[[8.515629, 47.330582], [8.515151, 47.330788], [8.515038, 47.33067], [8.514741, 47.330749], [8.514398, 47.330898]]], "type": "MultiLineString"}, "id": "2298", "properties": {}, "type": "Feature"}, {"bbox": [8.532671, 47.355015, 8.534276, 47.355064], "geometry": {"coordinates": [[[8.534276, 47.355047], [8.533823, 47.355022], [8.533225, 47.355064], [8.532671, 47.355015]]], "type": "MultiLineString"}, "id": "2299", "properties": {}, "type": "Feature"}, {"bbox": [8.546364, 47.394938, 8.55174, 47.395381], "geometry": {"coordinates": [[[8.546364, 47.395312], [8.546605, 47.395322], [8.547725, 47.395364], [8.548233, 47.395375], [8.548844, 47.395381], [8.549708, 47.395347], [8.551178, 47.395304], [8.551205, 47.395303], [8.551232, 47.3953], [8.551258, 47.395296], [8.551283, 47.39529], [8.551308, 47.395283], [8.551331, 47.395274], [8.551354, 47.395264], [8.551375, 47.395253], [8.551394, 47.39524], [8.551412, 47.395227], [8.551428, 47.395212], [8.551442, 47.395196], [8.55158, 47.395025], [8.551588, 47.395013], [8.551598, 47.395002], [8.55161, 47.394991], [8.551622, 47.394981], [8.551637, 47.394972], [8.551652, 47.394964], [8.551668, 47.394957], [8.551685, 47.39495], [8.551703, 47.394945], [8.551721, 47.394941], [8.55174, 47.394938]]], "type": "MultiLineString"}, "id": "2300", "properties": {}, "type": "Feature"}, {"bbox": [8.486906, 47.37741, 8.487959, 47.378234], "geometry": {"coordinates": [[[8.487959, 47.378234], [8.487952, 47.378214], [8.487942, 47.378195], [8.487929, 47.378176], [8.487915, 47.378158], [8.487897, 47.378142], [8.487878, 47.378126], [8.487856, 47.378112], [8.486972, 47.377449], [8.486951, 47.377435], [8.486929, 47.377422], [8.486906, 47.37741]]], "type": "MultiLineString"}, "id": "2302", "properties": {}, "type": "Feature"}, {"bbox": [8.506786, 47.41753, 8.507647, 47.417819], "geometry": {"coordinates": [[[8.507647, 47.417785], [8.507516, 47.417788], [8.507408, 47.417819], [8.507086, 47.417712], [8.507032, 47.417661], [8.506786, 47.41753]]], "type": "MultiLineString"}, "id": "2303", "properties": {}, "type": "Feature"}, {"bbox": [8.509874, 47.35855, 8.510545, 47.359001], "geometry": {"coordinates": [[[8.510545, 47.359001], [8.510534, 47.358992], [8.510136, 47.358735], [8.509921, 47.358584], [8.509874, 47.35855]]], "type": "MultiLineString"}, "id": "2304", "properties": {}, "type": "Feature"}, {"bbox": [8.492161, 47.372504, 8.494113, 47.37316], "geometry": {"coordinates": [[[8.492161, 47.37316], [8.492376, 47.373093], [8.49259, 47.373023], [8.492803, 47.372953], [8.49324, 47.372804], [8.493677, 47.372654], [8.494113, 47.372504]]], "type": "MultiLineString"}, "id": "2305", "properties": {}, "type": "Feature"}, {"bbox": [8.507362, 47.353867, 8.508284, 47.355294], "geometry": {"coordinates": [[[8.507362, 47.355294], [8.507424, 47.355249], [8.507483, 47.355157], [8.507518, 47.355053], [8.507618, 47.354921], [8.507648, 47.354848], [8.507706, 47.354758], [8.507762, 47.354669], [8.507889, 47.354513], [8.507925, 47.354456], [8.507997, 47.354343], [8.508122, 47.354147], [8.508189, 47.354042], [8.508256, 47.353936], [8.508284, 47.353867]]], "type": "MultiLineString"}, "id": "2306", "properties": {}, "type": "Feature"}, {"bbox": [8.511212, 47.37913, 8.511984, 47.379239], "geometry": {"coordinates": [[[8.511984, 47.379239], [8.511787, 47.379228], [8.511592, 47.379206], [8.5114, 47.379173], [8.511212, 47.37913]]], "type": "MultiLineString"}, "id": "2307", "properties": {}, "type": "Feature"}, {"bbox": [8.54277, 47.392662, 8.543535, 47.393141], "geometry": {"coordinates": [[[8.54277, 47.392905], [8.542808, 47.392946], [8.54301, 47.393141], [8.543535, 47.392918], [8.54328, 47.392662]]], "type": "MultiLineString"}, "id": "2310", "properties": {}, "type": "Feature"}, {"bbox": [8.557752, 47.41353, 8.558163, 47.414528], "geometry": {"coordinates": [[[8.557752, 47.414528], [8.557764, 47.41425], [8.558141, 47.414254], [8.558163, 47.41353]]], "type": "MultiLineString"}, "id": "2311", "properties": {}, "type": "Feature"}, {"bbox": [8.521588, 47.361264, 8.521707, 47.361585], "geometry": {"coordinates": [[[8.521707, 47.361264], [8.521588, 47.361585]]], "type": "MultiLineString"}, "id": "2312", "properties": {}, "type": "Feature"}, {"bbox": [8.567923, 47.401877, 8.568693, 47.402667], "geometry": {"coordinates": [[[8.568693, 47.402667], [8.568684, 47.402625], [8.568663, 47.402609], [8.568439, 47.402384], [8.568221, 47.402132], [8.567923, 47.401877]]], "type": "MultiLineString"}, "id": "2313", "properties": {}, "type": "Feature"}, {"bbox": [8.553558, 47.401648, 8.553953, 47.402067], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553953, 47.401648]]], "type": "MultiLineString"}, "id": "2314", "properties": {}, "type": "Feature"}, {"bbox": [8.540417, 47.407844, 8.541192, 47.408432], "geometry": {"coordinates": [[[8.541192, 47.408432], [8.540807, 47.408397], [8.540471, 47.407904], [8.540417, 47.407844]]], "type": "MultiLineString"}, "id": "2315", "properties": {}, "type": "Feature"}, {"bbox": [8.516504, 47.331188, 8.516723, 47.331729], "geometry": {"coordinates": [[[8.516504, 47.331729], [8.516621, 47.331659], [8.516592, 47.331215], [8.516723, 47.331188]]], "type": "MultiLineString"}, "id": "2316", "properties": {}, "type": "Feature"}, {"bbox": [8.548836, 47.384338, 8.549868, 47.384598], "geometry": {"coordinates": [[[8.548836, 47.384598], [8.549331, 47.384338], [8.549868, 47.384524]]], "type": "MultiLineString"}, "id": "2317", "properties": {}, "type": "Feature"}, {"bbox": [8.508284, 47.353867, 8.508697, 47.353972], "geometry": {"coordinates": [[[8.508697, 47.353972], [8.508284, 47.353867]]], "type": "MultiLineString"}, "id": "2319", "properties": {}, "type": "Feature"}, {"bbox": [8.507191, 47.359001, 8.510545, 47.361908], "geometry": {"coordinates": [[[8.510545, 47.359001], [8.510268, 47.359221], [8.509833, 47.359072], [8.507542, 47.361677], [8.507262, 47.361861], [8.507191, 47.361908]]], "type": "MultiLineString"}, "id": "2320", "properties": {}, "type": "Feature"}, {"bbox": [8.527575, 47.383795, 8.528679, 47.384341], "geometry": {"coordinates": [[[8.528679, 47.383795], [8.527575, 47.384341]]], "type": "MultiLineString"}, "id": "2322", "properties": {}, "type": "Feature"}, {"bbox": [8.533322, 47.382114, 8.534232, 47.382682], "geometry": {"coordinates": [[[8.534232, 47.382682], [8.533322, 47.382114]]], "type": "MultiLineString"}, "id": "2325", "properties": {}, "type": "Feature"}, {"bbox": [8.547892, 47.384744, 8.548376, 47.384891], "geometry": {"coordinates": [[[8.547892, 47.384891], [8.547897, 47.38488], [8.547903, 47.384869], [8.547911, 47.384858], [8.54792, 47.384849], [8.54793, 47.384839], [8.547942, 47.384831], [8.547954, 47.384823], [8.547968, 47.384816], [8.548018, 47.384793], [8.548186, 47.384745], [8.548204, 47.384744], [8.548222, 47.384744], [8.54824, 47.384745], [8.548257, 47.384747], [8.548275, 47.38475], [8.548291, 47.384754], [8.548308, 47.384759], [8.548323, 47.384765], [8.548338, 47.384772], [8.548352, 47.384779], [8.548365, 47.384788], [8.548376, 47.384797]]], "type": "MultiLineString"}, "id": "2329", "properties": {}, "type": "Feature"}, {"bbox": [8.533312, 47.386756, 8.534227, 47.386942], "geometry": {"coordinates": [[[8.533312, 47.386756], [8.533735, 47.386826], [8.533747, 47.386841], [8.533761, 47.386856], [8.533776, 47.38687], [8.533793, 47.386882], [8.533812, 47.386894], [8.533832, 47.386905], [8.533854, 47.386914], [8.533876, 47.386923], [8.5339, 47.386929], [8.533924, 47.386935], [8.533949, 47.386939], [8.533975, 47.386941], [8.534, 47.386942], [8.534026, 47.386941], [8.534051, 47.386939], [8.534076, 47.386936], [8.534101, 47.386931], [8.534125, 47.386924], [8.534148, 47.386916], [8.534169, 47.386907], [8.53419, 47.386897], [8.534209, 47.386885], [8.534227, 47.386873]]], "type": "MultiLineString"}, "id": "2330", "properties": {}, "type": "Feature"}, {"bbox": [8.526385, 47.385143, 8.526738, 47.385258], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526385, 47.385258]]], "type": "MultiLineString"}, "id": "2332", "properties": {}, "type": "Feature"}, {"bbox": [8.528746, 47.393065, 8.529116, 47.393206], "geometry": {"coordinates": [[[8.529116, 47.393065], [8.529075, 47.39314], [8.529054, 47.393137], [8.529033, 47.393136], [8.529012, 47.393136], [8.528991, 47.393137], [8.528945, 47.393141], [8.5289, 47.393148], [8.528856, 47.393158], [8.528814, 47.39317], [8.528773, 47.393185], [8.528767, 47.393188], [8.528762, 47.393191], [8.528758, 47.393194], [8.528753, 47.393198], [8.528749, 47.393202], [8.528746, 47.393206]]], "type": "MultiLineString"}, "id": "2334", "properties": {}, "type": "Feature"}, {"bbox": [8.507647, 47.417785, 8.508416, 47.418317], "geometry": {"coordinates": [[[8.508416, 47.418317], [8.508385, 47.418282], [8.50835, 47.418249], [8.508312, 47.418218], [8.50777, 47.417805], [8.507647, 47.417785]]], "type": "MultiLineString"}, "id": "2337", "properties": {}, "type": "Feature"}, {"bbox": [8.486241, 47.375509, 8.486489, 47.376278], "geometry": {"coordinates": [[[8.486489, 47.375509], [8.486413, 47.375782], [8.48635, 47.375951], [8.486335, 47.376083], [8.486302, 47.376195], [8.486241, 47.376278]]], "type": "MultiLineString"}, "id": "2338", "properties": {}, "type": "Feature"}, {"bbox": [8.555916, 47.383641, 8.556301, 47.383887], "geometry": {"coordinates": [[[8.555916, 47.383641], [8.556301, 47.383887]]], "type": "MultiLineString"}, "id": "2339", "properties": {}, "type": "Feature"}, {"bbox": [8.510318, 47.393706, 8.510378, 47.394353], "geometry": {"coordinates": [[[8.510378, 47.394353], [8.510369, 47.394251], [8.510358, 47.394149], [8.510346, 47.394047], [8.510318, 47.393706]]], "type": "MultiLineString"}, "id": "2340", "properties": {}, "type": "Feature"}, {"bbox": [8.511984, 47.379239, 8.512742, 47.380033], "geometry": {"coordinates": [[[8.511984, 47.379239], [8.512742, 47.380033]]], "type": "MultiLineString"}, "id": "2341", "properties": {}, "type": "Feature"}, {"bbox": [8.555717, 47.409461, 8.555781, 47.410756], "geometry": {"coordinates": [[[8.555781, 47.409461], [8.555753, 47.409742], [8.555729, 47.410468], [8.55572, 47.410671], [8.555717, 47.410756]]], "type": "MultiLineString"}, "id": "2342", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.331216, 8.53384, 47.331469], "geometry": {"coordinates": [[[8.532676, 47.331233], [8.532826, 47.33122], [8.533837, 47.331216], [8.53384, 47.331469]]], "type": "MultiLineString"}, "id": "2343", "properties": {}, "type": "Feature"}, {"bbox": [8.591367, 47.400398, 8.592582, 47.400796], "geometry": {"coordinates": [[[8.592582, 47.400398], [8.592517, 47.400417], [8.591367, 47.400796]]], "type": "MultiLineString"}, "id": "2345", "properties": {}, "type": "Feature"}, {"bbox": [8.520727, 47.36119, 8.521588, 47.361585], "geometry": {"coordinates": [[[8.521588, 47.361585], [8.521557, 47.361573], [8.521327, 47.361481], [8.521192, 47.361394], [8.520896, 47.361269], [8.520727, 47.36119]]], "type": "MultiLineString"}, "id": "2346", "properties": {}, "type": "Feature"}, {"bbox": [8.536458, 47.393689, 8.536996, 47.394065], "geometry": {"coordinates": [[[8.53664, 47.393689], [8.536677, 47.393698], [8.536996, 47.393798], [8.536824, 47.394065], [8.536458, 47.393935]]], "type": "MultiLineString"}, "id": "2348", "properties": {}, "type": "Feature"}, {"bbox": [8.469297, 47.392537, 8.470565, 47.393375], "geometry": {"coordinates": [[[8.470565, 47.392537], [8.469749, 47.393071], [8.469297, 47.393375]]], "type": "MultiLineString"}, "id": "2350", "properties": {}, "type": "Feature"}, {"bbox": [8.578671, 47.407768, 8.579005, 47.408124], "geometry": {"coordinates": [[[8.578671, 47.407768], [8.579005, 47.408124]]], "type": "MultiLineString"}, "id": "2357", "properties": {}, "type": "Feature"}, {"bbox": [8.523995, 47.387085, 8.524198, 47.387314], "geometry": {"coordinates": [[[8.524083, 47.387085], [8.523995, 47.387126], [8.524198, 47.387314]]], "type": "MultiLineString"}, "id": "2362", "properties": {}, "type": "Feature"}, {"bbox": [8.528634, 47.374385, 8.528748, 47.374454], "geometry": {"coordinates": [[[8.528748, 47.374454], [8.528634, 47.374385]]], "type": "MultiLineString"}, "id": "2363", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.390627, 8.522407, 47.390845], "geometry": {"coordinates": [[[8.52239, 47.390627], [8.522407, 47.390708], [8.522334, 47.390772], [8.522048, 47.390845]]], "type": "MultiLineString"}, "id": "2364", "properties": {}, "type": "Feature"}, {"bbox": [8.536052, 47.377556, 8.536276, 47.37764], "geometry": {"coordinates": [[[8.536052, 47.37764], [8.536276, 47.377556]]], "type": "MultiLineString"}, "id": "2373", "properties": {}, "type": "Feature"}, {"bbox": [8.492548, 47.38081, 8.492612, 47.380922], "geometry": {"coordinates": [[[8.492548, 47.38081], [8.492612, 47.380922]]], "type": "MultiLineString"}, "id": "2374", "properties": {}, "type": "Feature"}, {"bbox": [8.514104, 47.363487, 8.51704, 47.366394], "geometry": {"coordinates": [[[8.51704, 47.363487], [8.51433, 47.366198], [8.514104, 47.366394]]], "type": "MultiLineString"}, "id": "2376", "properties": {}, "type": "Feature"}, {"bbox": [8.484901, 47.386231, 8.484926, 47.386266], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484926, 47.386266]]], "type": "MultiLineString"}, "id": "2378", "properties": {}, "type": "Feature"}, {"bbox": [8.484808, 47.38616, 8.484901, 47.386231], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484808, 47.38616]]], "type": "MultiLineString"}, "id": "2379", "properties": {}, "type": "Feature"}, {"bbox": [8.559719, 47.413756, 8.5611, 47.413876], "geometry": {"coordinates": [[[8.5611, 47.413876], [8.559719, 47.413756]]], "type": "MultiLineString"}, "id": "2380", "properties": {}, "type": "Feature"}, {"bbox": [8.537927, 47.381893, 8.538775, 47.382061], "geometry": {"coordinates": [[[8.538775, 47.382055], [8.538741, 47.382061], [8.537949, 47.381907], [8.537927, 47.381893]]], "type": "MultiLineString"}, "id": "2381", "properties": {}, "type": "Feature"}, {"bbox": [8.483755, 47.386231, 8.484901, 47.386935], "geometry": {"coordinates": [[[8.484901, 47.386231], [8.484808, 47.386266], [8.484579, 47.386415], [8.484375, 47.386586], [8.484242, 47.386698], [8.484024, 47.3867], [8.483755, 47.386935]]], "type": "MultiLineString"}, "id": "2382", "properties": {}, "type": "Feature"}, {"bbox": [8.551053, 47.422702, 8.551181, 47.422759], "geometry": {"coordinates": [[[8.551053, 47.422759], [8.551181, 47.422702]]], "type": "MultiLineString"}, "id": "2388", "properties": {}, "type": "Feature"}, {"bbox": [8.583524, 47.399487, 8.584052, 47.399994], "geometry": {"coordinates": [[[8.584052, 47.399994], [8.583983, 47.39991], [8.583656, 47.399613], [8.583524, 47.399487]]], "type": "MultiLineString"}, "id": "2390", "properties": {}, "type": "Feature"}, {"bbox": [8.53128, 47.359487, 8.531592, 47.359559], "geometry": {"coordinates": [[[8.53128, 47.359487], [8.531592, 47.359559]]], "type": "MultiLineString"}, "id": "2391", "properties": {}, "type": "Feature"}, {"bbox": [8.568281, 47.377102, 8.569433, 47.378552], "geometry": {"coordinates": [[[8.568281, 47.378552], [8.568355, 47.37855], [8.568428, 47.378544], [8.5685, 47.378534], [8.56857, 47.378519], [8.569433, 47.377243], [8.568994, 47.377102]]], "type": "MultiLineString"}, "id": "2392", "properties": {}, "type": "Feature"}, {"bbox": [8.534363, 47.346548, 8.535549, 47.346813], "geometry": {"coordinates": [[[8.534363, 47.346548], [8.534482, 47.346575], [8.535549, 47.346813]]], "type": "MultiLineString"}, "id": "2394", "properties": {}, "type": "Feature"}, {"bbox": [8.586184, 47.358965, 8.586521, 47.359712], "geometry": {"coordinates": [[[8.586184, 47.359712], [8.586521, 47.358965]]], "type": "MultiLineString"}, "id": "2399", "properties": {}, "type": "Feature"}, {"bbox": [8.555851, 47.385469, 8.556367, 47.386198], "geometry": {"coordinates": [[[8.555851, 47.385469], [8.555959, 47.385798], [8.556059, 47.385936], [8.556367, 47.386198]]], "type": "MultiLineString"}, "id": "2401", "properties": {}, "type": "Feature"}, {"bbox": [8.494458, 47.423586, 8.494724, 47.424211], "geometry": {"coordinates": [[[8.494724, 47.423586], [8.494688, 47.423606], [8.494654, 47.423629], [8.494624, 47.423653], [8.494597, 47.42368], [8.494574, 47.423708], [8.494525, 47.423874], [8.494487, 47.424042], [8.494458, 47.424211]]], "type": "MultiLineString"}, "id": "2402", "properties": {}, "type": "Feature"}, {"bbox": [8.544397, 47.403188, 8.545422, 47.40353], "geometry": {"coordinates": [[[8.545422, 47.403311], [8.544585, 47.40353], [8.544397, 47.403188]]], "type": "MultiLineString"}, "id": "2404", "properties": {}, "type": "Feature"}, {"bbox": [8.510202, 47.331166, 8.512296, 47.331749], "geometry": {"coordinates": [[[8.512296, 47.331743], [8.512282, 47.331749], [8.511792, 47.331166], [8.510202, 47.331684]]], "type": "MultiLineString"}, "id": "2406", "properties": {}, "type": "Feature"}, {"bbox": [8.531007, 47.338607, 8.531061, 47.339221], "geometry": {"coordinates": [[[8.531061, 47.338607], [8.531049, 47.338723], [8.531008, 47.339122], [8.531007, 47.339221]]], "type": "MultiLineString"}, "id": "2407", "properties": {}, "type": "Feature"}, {"bbox": [8.551917, 47.39467, 8.552837, 47.395473], "geometry": {"coordinates": [[[8.552016, 47.39467], [8.551917, 47.394724], [8.551932, 47.394826], [8.552227, 47.395077], [8.5523, 47.395141], [8.552416, 47.39523], [8.552731, 47.395473], [8.552837, 47.395412]]], "type": "MultiLineString"}, "id": "2409", "properties": {}, "type": "Feature"}, {"bbox": [8.545471, 47.417469, 8.545557, 47.417488], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545471, 47.417469]]], "type": "MultiLineString"}, "id": "2410", "properties": {}, "type": "Feature"}, {"bbox": [8.515266, 47.386229, 8.51615, 47.387525], "geometry": {"coordinates": [[[8.515399, 47.387342], [8.515554, 47.387525], [8.51615, 47.387297], [8.515266, 47.386229]]], "type": "MultiLineString"}, "id": "2411", "properties": {}, "type": "Feature"}, {"bbox": [8.5467, 47.410217, 8.548231, 47.410364], "geometry": {"coordinates": [[[8.5467, 47.410217], [8.547272, 47.410272], [8.548231, 47.410364]]], "type": "MultiLineString"}, "id": "2413", "properties": {}, "type": "Feature"}, {"bbox": [8.51704, 47.363146, 8.517318, 47.363487], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517294, 47.363235], [8.51704, 47.363487]]], "type": "MultiLineString"}, "id": "2417", "properties": {}, "type": "Feature"}, {"bbox": [8.582932, 47.355327, 8.583533, 47.35571], "geometry": {"coordinates": [[[8.582932, 47.355327], [8.583533, 47.35571]]], "type": "MultiLineString"}, "id": "2418", "properties": {}, "type": "Feature"}, {"bbox": [8.506889, 47.409689, 8.506972, 47.409716], "geometry": {"coordinates": [[[8.506889, 47.409716], [8.506972, 47.409689]]], "type": "MultiLineString"}, "id": "2423", "properties": {}, "type": "Feature"}, {"bbox": [8.595547, 47.355103, 8.596403, 47.355598], "geometry": {"coordinates": [[[8.595547, 47.355103], [8.595638, 47.355181], [8.595737, 47.355253], [8.595845, 47.355319], [8.596025, 47.355418], [8.596211, 47.355511], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "2426", "properties": {}, "type": "Feature"}, {"bbox": [8.550061, 47.427988, 8.550457, 47.428243], "geometry": {"coordinates": [[[8.550061, 47.427988], [8.550097, 47.428005], [8.550131, 47.428023], [8.550163, 47.428043], [8.550262, 47.428109], [8.55036, 47.428175], [8.550457, 47.428243]]], "type": "MultiLineString"}, "id": "2427", "properties": {}, "type": "Feature"}, {"bbox": [8.580022, 47.356147, 8.581114, 47.357005], "geometry": {"coordinates": [[[8.580022, 47.357005], [8.580044, 47.357002], [8.580064, 47.356998], [8.580085, 47.356993], [8.580104, 47.356986], [8.580123, 47.356979], [8.58044, 47.356677], [8.580492, 47.356644], [8.580548, 47.356614], [8.580607, 47.356587], [8.580699, 47.356523], [8.580783, 47.356455], [8.580861, 47.356383], [8.581114, 47.356147]]], "type": "MultiLineString"}, "id": "2428", "properties": {}, "type": "Feature"}, {"bbox": [8.568005, 47.369937, 8.568834, 47.370045], "geometry": {"coordinates": [[[8.568005, 47.370045], [8.568834, 47.369937]]], "type": "MultiLineString"}, "id": "2429", "properties": {}, "type": "Feature"}, {"bbox": [8.551439, 47.353127, 8.55299, 47.353172], "geometry": {"coordinates": [[[8.55299, 47.353172], [8.552829, 47.353153], [8.551439, 47.353127]]], "type": "MultiLineString"}, "id": "2430", "properties": {}, "type": "Feature"}, {"bbox": [8.552969, 47.353172, 8.553144, 47.354301], "geometry": {"coordinates": [[[8.553144, 47.354301], [8.553078, 47.354214], [8.553019, 47.354124], [8.552969, 47.354032], [8.553002, 47.353214], [8.55299, 47.353172]]], "type": "MultiLineString"}, "id": "2431", "properties": {}, "type": "Feature"}, {"bbox": [8.538702, 47.403066, 8.538961, 47.403464], "geometry": {"coordinates": [[[8.538961, 47.403066], [8.53895, 47.403081], [8.538927, 47.403113], [8.538716, 47.403443], [8.538702, 47.403464]]], "type": "MultiLineString"}, "id": "2433", "properties": {}, "type": "Feature"}, {"bbox": [8.541688, 47.425479, 8.542157, 47.425679], "geometry": {"coordinates": [[[8.542157, 47.425479], [8.542008, 47.425554], [8.541851, 47.425621], [8.541688, 47.425679]]], "type": "MultiLineString"}, "id": "2434", "properties": {}, "type": "Feature"}, {"bbox": [8.580016, 47.355647, 8.580805, 47.355982], "geometry": {"coordinates": [[[8.580016, 47.355647], [8.580277, 47.355761], [8.58054, 47.355872], [8.580805, 47.355982]]], "type": "MultiLineString"}, "id": "2437", "properties": {}, "type": "Feature"}, {"bbox": [8.533624, 47.334637, 8.534492, 47.335073], "geometry": {"coordinates": [[[8.533624, 47.334637], [8.533731, 47.334651], [8.533852, 47.334688], [8.534151, 47.334869], [8.534398, 47.335012], [8.534416, 47.335024], [8.534492, 47.335073]]], "type": "MultiLineString"}, "id": "2440", "properties": {}, "type": "Feature"}, {"bbox": [8.576913, 47.408318, 8.577111, 47.408662], "geometry": {"coordinates": [[[8.576913, 47.408318], [8.577111, 47.408662]]], "type": "MultiLineString"}, "id": "2441", "properties": {}, "type": "Feature"}, {"bbox": [8.539783, 47.408029, 8.540282, 47.40873], "geometry": {"coordinates": [[[8.539783, 47.408029], [8.540282, 47.40873]]], "type": "MultiLineString"}, "id": "2442", "properties": {}, "type": "Feature"}, {"bbox": [8.503228, 47.362195, 8.504126, 47.36306], "geometry": {"coordinates": [[[8.504126, 47.362195], [8.504082, 47.362237], [8.503575, 47.36271], [8.503504, 47.362776], [8.503255, 47.363035], [8.503228, 47.36306]]], "type": "MultiLineString"}, "id": "2443", "properties": {}, "type": "Feature"}, {"bbox": [8.561947, 47.373531, 8.562294, 47.374007], "geometry": {"coordinates": [[[8.561947, 47.374007], [8.561972, 47.373946], [8.561977, 47.373878], [8.562001, 47.373802], [8.562046, 47.373723], [8.562109, 47.373647], [8.562193, 47.373574], [8.562294, 47.373531]]], "type": "MultiLineString"}, "id": "2444", "properties": {}, "type": "Feature"}, {"bbox": [8.518699, 47.428181, 8.519068, 47.42907], "geometry": {"coordinates": [[[8.518699, 47.428181], [8.51899, 47.428824], [8.519068, 47.42907]]], "type": "MultiLineString"}, "id": "2445", "properties": {}, "type": "Feature"}, {"bbox": [8.530028, 47.336256, 8.530794, 47.336557], "geometry": {"coordinates": [[[8.530028, 47.336256], [8.530124, 47.33628], [8.530153, 47.336287], [8.530794, 47.336557]]], "type": "MultiLineString"}, "id": "2447", "properties": {}, "type": "Feature"}, {"bbox": [8.487371, 47.366622, 8.489538, 47.367758], "geometry": {"coordinates": [[[8.487379, 47.367758], [8.487375, 47.367745], [8.487372, 47.367732], [8.487371, 47.367719], [8.487372, 47.367706], [8.487374, 47.367694], [8.487378, 47.367681], [8.487383, 47.367668], [8.48739, 47.367656], [8.487398, 47.367645], [8.487408, 47.367633], [8.487419, 47.367623], [8.487432, 47.367613], [8.487445, 47.367604], [8.48746, 47.367596], [8.487476, 47.367588], [8.487492, 47.367582], [8.487509, 47.367576], [8.488608, 47.367291], [8.488691, 47.367263], [8.488769, 47.367229], [8.488842, 47.36719], [8.48891, 47.367146], [8.489079, 47.367029], [8.489236, 47.366905], [8.489382, 47.366773], [8.489538, 47.366622]]], "type": "MultiLineString"}, "id": "2450", "properties": {}, "type": "Feature"}, {"bbox": [8.584198, 47.383704, 8.586407, 47.387918], "geometry": {"coordinates": [[[8.584198, 47.383704], [8.584465, 47.383911], [8.584829, 47.384367], [8.584969, 47.384517], [8.585123, 47.384661], [8.58529, 47.384797], [8.585618, 47.385042], [8.585936, 47.385486], [8.586057, 47.38565], [8.586101, 47.38572], [8.586134, 47.385792], [8.586157, 47.385865], [8.586169, 47.38594], [8.586142, 47.386355], [8.586056, 47.386902], [8.586018, 47.387189], [8.586016, 47.387217], [8.586018, 47.387244], [8.586025, 47.387272], [8.586035, 47.387298], [8.586097, 47.387435], [8.586187, 47.387613], [8.586327, 47.387864], [8.586332, 47.387871], [8.586338, 47.387878], [8.586344, 47.387885], [8.586351, 47.387891], [8.586359, 47.387897], [8.586367, 47.387902], [8.586377, 47.387907], [8.586386, 47.387912], [8.586397, 47.387915], [8.586407, 47.387918]]], "type": "MultiLineString"}, "id": "2451", "properties": {}, "type": "Feature"}, {"bbox": [8.461232, 47.382058, 8.466976, 47.385121], "geometry": {"coordinates": [[[8.466976, 47.385121], [8.466794, 47.385097], [8.466692, 47.385087], [8.46659, 47.385083], [8.466488, 47.385084], [8.46624, 47.385096], [8.466001, 47.385107], [8.465961, 47.385107], [8.46592, 47.385106], [8.46588, 47.385102], [8.46584, 47.385095], [8.465801, 47.385086], [8.465764, 47.385076], [8.465728, 47.385062], [8.465694, 47.385047], [8.464861, 47.384643], [8.464299, 47.38437], [8.463785, 47.384136], [8.463723, 47.384105], [8.463678, 47.384082], [8.46341, 47.383946], [8.463296, 47.383883], [8.463191, 47.383814], [8.463095, 47.383739], [8.462834, 47.383517], [8.462439, 47.383156], [8.461303, 47.382122], [8.461232, 47.382058]]], "type": "MultiLineString"}, "id": "2452", "properties": {}, "type": "Feature"}, {"bbox": [8.552066, 47.369868, 8.552346, 47.370217], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552264, 47.369979], [8.552346, 47.370159], [8.552066, 47.370217]]], "type": "MultiLineString"}, "id": "2457", "properties": {}, "type": "Feature"}, {"bbox": [8.574671, 47.363017, 8.582411, 47.367071], "geometry": {"coordinates": [[[8.574693, 47.363659], [8.574671, 47.363799], [8.574794, 47.363973], [8.574889, 47.364081], [8.574998, 47.364183], [8.575119, 47.364279], [8.575252, 47.364366], [8.575396, 47.364446], [8.57555, 47.364516], [8.576011, 47.364711], [8.576123, 47.364753], [8.57624, 47.364789], [8.576362, 47.364817], [8.576487, 47.364837], [8.576614, 47.364849], [8.577112, 47.364879], [8.577211, 47.364884], [8.577311, 47.364882], [8.577411, 47.364875], [8.577509, 47.364863], [8.577605, 47.364844], [8.577699, 47.36482], [8.577776, 47.364787], [8.577858, 47.364759], [8.577942, 47.364735], [8.578029, 47.364716], [8.578119, 47.364702], [8.578209, 47.364693], [8.578509, 47.364661], [8.578809, 47.364628], [8.57911, 47.364596], [8.579153, 47.364591], [8.579196, 47.364584], [8.579237, 47.364574], [8.579278, 47.364563], [8.579316, 47.364548], [8.579353, 47.364532], [8.579388, 47.364513], [8.57942, 47.364493], [8.579449, 47.364471], [8.579475, 47.364447], [8.579547, 47.364367], [8.579593, 47.364286], [8.579628, 47.364202], [8.579653, 47.364117], [8.579666, 47.36403], [8.579667, 47.363943], [8.579648, 47.363646], [8.579652, 47.363605], [8.579661, 47.363565], [8.579675, 47.363525], [8.579694, 47.363486], [8.579718, 47.363449], [8.579747, 47.363413], [8.579781, 47.363379], [8.579819, 47.363348], [8.579861, 47.363318], [8.579949, 47.363272], [8.580042, 47.363232], [8.580141, 47.363198], [8.580244, 47.363171], [8.580351, 47.36315], [8.580459, 47.363136], [8.580572, 47.363121], [8.580685, 47.363107], [8.580798, 47.363094], [8.581065, 47.363066], [8.581332, 47.363042], [8.5816, 47.36302], [8.581694, 47.363017], [8.581788, 47.363019], [8.581882, 47.363027], [8.581974, 47.363041], [8.582064, 47.363061], [8.582151, 47.363087], [8.582185, 47.3631], [8.582218, 47.363115], [8.582248, 47.363132], [8.582276, 47.363151], [8.582301, 47.363171], [8.582323, 47.363192], [8.582344, 47.363214], [8.582364, 47.363236], [8.582378, 47.363254], [8.58239, 47.363274], [8.582399, 47.363293], [8.582406, 47.363314], [8.58241, 47.363335], [8.582411, 47.363355], [8.58241, 47.363376], [8.582401, 47.363415], [8.582386, 47.363453], [8.582366, 47.36349], [8.582288, 47.363574], [8.582252, 47.363611], [8.582217, 47.363648], [8.582182, 47.363685], [8.582094, 47.36378], [8.582004, 47.363875], [8.581913, 47.363969], [8.581874, 47.364009], [8.581838, 47.36405], [8.581804, 47.364092], [8.581779, 47.364126], [8.581756, 47.364162], [8.581735, 47.364198], [8.581719, 47.364225], [8.581704, 47.364253], [8.581691, 47.36428], [8.581685, 47.364293], [8.581671, 47.364324], [8.581659, 47.364356], [8.581649, 47.364388], [8.581617, 47.364491], [8.581591, 47.364596], [8.581573, 47.364701], [8.581564, 47.364808], [8.581459, 47.365132], [8.581408, 47.365264], [8.58134, 47.365393], [8.581257, 47.365518], [8.581158, 47.365637], [8.581045, 47.36575], [8.580918, 47.365856], [8.580778, 47.365954], [8.580612, 47.366071], [8.580481, 47.366167], [8.580351, 47.366263], [8.580224, 47.366361], [8.580005, 47.366543], [8.57979, 47.366727], [8.579579, 47.366912], [8.579405, 47.367071]]], "type": "MultiLineString"}, "id": "2458", "properties": {}, "type": "Feature"}, {"bbox": [8.578019, 47.381118, 8.581266, 47.383403], "geometry": {"coordinates": [[[8.578019, 47.382518], [8.578711, 47.382516], [8.578818, 47.382519], [8.578925, 47.38253], [8.579029, 47.382547], [8.579131, 47.38257], [8.579229, 47.3826], [8.579683, 47.382759], [8.579791, 47.382801], [8.579893, 47.38285], [8.579987, 47.382905], [8.580206, 47.383045], [8.580254, 47.383074], [8.580305, 47.3831], [8.58036, 47.383123], [8.580421, 47.383147], [8.58048, 47.383172], [8.580537, 47.383199], [8.580695, 47.383277], [8.580738, 47.383299], [8.580778, 47.383324], [8.580815, 47.383351], [8.580829, 47.383361], [8.580845, 47.38337], [8.580861, 47.383378], [8.580878, 47.383385], [8.580897, 47.383391], [8.580916, 47.383395], [8.580935, 47.383399], [8.580955, 47.383401], [8.580975, 47.383403], [8.580995, 47.383403], [8.581016, 47.383401], [8.581035, 47.383399], [8.581055, 47.383395], [8.581074, 47.383391], [8.581092, 47.383385], [8.581109, 47.383378], [8.581126, 47.38337], [8.581141, 47.383361], [8.581155, 47.383351], [8.581168, 47.383341], [8.581178, 47.38333], [8.581188, 47.383318], [8.581196, 47.383306], [8.581202, 47.383293], [8.581206, 47.38328], [8.581209, 47.383267], [8.58121, 47.383254], [8.58121, 47.383241], [8.581208, 47.383228], [8.581204, 47.383215], [8.581198, 47.383202], [8.581191, 47.38319], [8.581182, 47.383178], [8.581171, 47.383167], [8.58116, 47.383156], [8.581147, 47.383147], [8.581132, 47.383138], [8.581117, 47.38313], [8.5811, 47.383122], [8.58101, 47.383083], [8.580924, 47.383039], [8.580845, 47.382989], [8.580773, 47.382936], [8.580708, 47.382878], [8.580701, 47.38287], [8.580695, 47.382862], [8.58069, 47.382854], [8.580686, 47.382846], [8.580684, 47.382838], [8.580682, 47.382829], [8.580681, 47.38282], [8.580682, 47.382811], [8.580684, 47.382803], [8.580687, 47.382794], [8.580691, 47.382786], [8.580696, 47.382778], [8.580702, 47.38277], [8.580708, 47.382763], [8.580716, 47.382756], [8.580725, 47.38275], [8.580735, 47.382744], [8.580745, 47.382738], [8.580756, 47.382734], [8.580767, 47.38273], [8.580779, 47.382727], [8.580791, 47.382724], [8.580804, 47.382722], [8.581102, 47.382688], [8.581119, 47.382685], [8.581135, 47.382682], [8.581151, 47.382677], [8.581167, 47.382672], [8.581182, 47.382665], [8.581196, 47.382658], [8.581208, 47.38265], [8.58122, 47.382641], [8.581231, 47.382632], [8.58124, 47.382622], [8.581248, 47.382611], [8.581255, 47.3826], [8.58126, 47.382589], [8.581263, 47.382577], [8.581266, 47.382565], [8.581266, 47.382554], [8.581261, 47.382257], [8.581255, 47.38218], [8.58124, 47.382104], [8.581215, 47.38203], [8.581199, 47.381991], [8.58118, 47.381953], [8.581159, 47.381916], [8.581033, 47.381706], [8.580991, 47.381631], [8.580954, 47.381554], [8.580923, 47.381476], [8.58083, 47.381223], [8.58085, 47.381118]]], "type": "MultiLineString"}, "id": "2459", "properties": {}, "type": "Feature"}, {"bbox": [8.525438, 47.387496, 8.526542, 47.388148], "geometry": {"coordinates": [[[8.526542, 47.388148], [8.526449, 47.388076], [8.526197, 47.387895], [8.525922, 47.38773], [8.525627, 47.387582], [8.525438, 47.387496]]], "type": "MultiLineString"}, "id": "2460", "properties": {}, "type": "Feature"}, {"bbox": [8.550421, 47.40214, 8.552211, 47.402541], "geometry": {"coordinates": [[[8.552211, 47.40214], [8.552115, 47.402174], [8.551611, 47.402299], [8.551003, 47.402444], [8.550571, 47.402514], [8.550421, 47.402541]]], "type": "MultiLineString"}, "id": "2461", "properties": {}, "type": "Feature"}, {"bbox": [8.503428, 47.352633, 8.508284, 47.353867], "geometry": {"coordinates": [[[8.508284, 47.353867], [8.508227, 47.353852], [8.507017, 47.353602], [8.506374, 47.353449], [8.506087, 47.353406], [8.505653, 47.353342], [8.505204, 47.353279], [8.504772, 47.353171], [8.50403, 47.35297], [8.503889, 47.352919], [8.503626, 47.352763], [8.503428, 47.352633]]], "type": "MultiLineString"}, "id": "2464", "properties": {}, "type": "Feature"}, {"bbox": [8.525853, 47.375548, 8.526856, 47.376523], "geometry": {"coordinates": [[[8.526852, 47.375548], [8.526856, 47.375739], [8.526841, 47.37574], [8.526827, 47.375742], [8.526813, 47.375745], [8.5268, 47.375749], [8.526787, 47.375753], [8.526774, 47.375759], [8.526763, 47.375765], [8.526752, 47.375772], [8.526743, 47.375779], [8.526734, 47.375787], [8.52636, 47.376132], [8.526302, 47.376194], [8.526237, 47.376253], [8.526164, 47.376309], [8.526086, 47.37636], [8.526001, 47.376406], [8.525911, 47.376447], [8.525903, 47.37645], [8.525895, 47.376453], [8.525889, 47.376457], [8.525882, 47.376461], [8.525876, 47.376465], [8.525871, 47.37647], [8.525866, 47.376475], [8.525862, 47.376481], [8.525859, 47.376486], [8.525856, 47.376492], [8.525854, 47.376498], [8.525853, 47.376504], [8.525853, 47.37651], [8.525853, 47.376516], [8.525854, 47.376522], [8.525902, 47.376505], [8.526355, 47.37635], [8.526451, 47.376341], [8.526544, 47.376387], [8.526576, 47.376418], [8.526752, 47.376523]]], "type": "MultiLineString"}, "id": "2487", "properties": {}, "type": "Feature"}, {"bbox": [8.538258, 47.372317, 8.538331, 47.373903], "geometry": {"coordinates": [[[8.538331, 47.372317], [8.538306, 47.372411], [8.538294, 47.372712], [8.538278, 47.373107], [8.538263, 47.373479], [8.538258, 47.373722], [8.538269, 47.373784], [8.53829, 47.373844], [8.53832, 47.373903]]], "type": "MultiLineString"}, "id": "2490", "properties": {}, "type": "Feature"}, {"bbox": [8.489473, 47.416769, 8.491315, 47.419864], "geometry": {"coordinates": [[[8.489473, 47.416769], [8.489575, 47.416807], [8.489961, 47.417064], [8.489984, 47.417082], [8.49008, 47.41716], [8.490091, 47.417168], [8.490101, 47.417177], [8.490111, 47.417186], [8.490119, 47.417196], [8.490126, 47.417206], [8.490135, 47.417228], [8.49016, 47.417296], [8.490194, 47.417361], [8.490237, 47.417423], [8.490397, 47.417628], [8.490453, 47.417706], [8.490499, 47.417786], [8.490536, 47.417869], [8.490564, 47.417954], [8.490615, 47.418145], [8.490631, 47.418196], [8.490651, 47.418247], [8.490675, 47.418298], [8.49075, 47.41844], [8.490762, 47.418467], [8.490773, 47.418494], [8.490781, 47.418521], [8.490794, 47.418563], [8.49081, 47.418605], [8.490829, 47.418646], [8.490912, 47.418807], [8.490924, 47.418834], [8.490934, 47.418861], [8.490942, 47.418888], [8.490946, 47.418903], [8.490948, 47.418918], [8.49095, 47.418933], [8.490952, 47.418955], [8.490952, 47.418976], [8.49095, 47.418997], [8.490935, 47.419164], [8.490934, 47.419204], [8.490938, 47.419244], [8.490948, 47.419284], [8.490962, 47.419323], [8.490981, 47.41936], [8.491005, 47.419397], [8.491034, 47.419432], [8.491258, 47.419681], [8.491273, 47.419699], [8.491286, 47.419719], [8.491296, 47.41974], [8.491303, 47.41976], [8.491315, 47.419864]]], "type": "MultiLineString"}, "id": "2495", "properties": {}, "type": "Feature"}, {"bbox": [8.54934, 47.387721, 8.549508, 47.388391], "geometry": {"coordinates": [[[8.54934, 47.387721], [8.549352, 47.387784], [8.549371, 47.387951], [8.549377, 47.388], [8.549382, 47.388039], [8.549389, 47.388095], [8.549416, 47.388324], [8.549452, 47.388382], [8.549508, 47.388391]]], "type": "MultiLineString"}, "id": "2506", "properties": {}, "type": "Feature"}, {"bbox": [8.547143, 47.365792, 8.547858, 47.366395], "geometry": {"coordinates": [[[8.547492, 47.365829], [8.547418, 47.365803], [8.547402, 47.365799], [8.547385, 47.365796], [8.547368, 47.365793], [8.547351, 47.365792], [8.547334, 47.365792], [8.547317, 47.365793], [8.5473, 47.365795], [8.547283, 47.365798], [8.547266, 47.365802], [8.547251, 47.365806], [8.547236, 47.365812], [8.547221, 47.365819], [8.547208, 47.365826], [8.547196, 47.365835], [8.547184, 47.365844], [8.547174, 47.365853], [8.547166, 47.365863], [8.547158, 47.365874], [8.547152, 47.365885], [8.547148, 47.365896], [8.547145, 47.365908], [8.547143, 47.36592], [8.547143, 47.365931], [8.547145, 47.365943], [8.547148, 47.365955], [8.547152, 47.365966], [8.547158, 47.365977], [8.547165, 47.365988], [8.547174, 47.365998], [8.547184, 47.366008], [8.547195, 47.366017], [8.547208, 47.366025], [8.547547, 47.366226], [8.547858, 47.366395]]], "type": "MultiLineString"}, "id": "2507", "properties": {}, "type": "Feature"}, {"bbox": [8.579431, 47.356941, 8.580022, 47.357005], "geometry": {"coordinates": [[[8.579431, 47.356941], [8.579481, 47.356951], [8.579535, 47.356959], [8.57959, 47.356964], [8.579646, 47.356966], [8.579687, 47.356968], [8.579729, 47.356972], [8.579769, 47.356977], [8.579814, 47.356982], [8.579859, 47.356986], [8.579904, 47.356991], [8.579944, 47.356996], [8.579983, 47.357001], [8.580022, 47.357005]]], "type": "MultiLineString"}, "id": "2508", "properties": {}, "type": "Feature"}, {"bbox": [8.495786, 47.366101, 8.497152, 47.367528], "geometry": {"coordinates": [[[8.495786, 47.367528], [8.495835, 47.367507], [8.495881, 47.367483], [8.495923, 47.367457], [8.495962, 47.367428], [8.495997, 47.367396], [8.497031, 47.366311], [8.497152, 47.366205], [8.497117, 47.366183], [8.497079, 47.366164], [8.497039, 47.366147], [8.496997, 47.366133], [8.496953, 47.366121], [8.496907, 47.366112], [8.496861, 47.366105], [8.496814, 47.366102], [8.496767, 47.366101], [8.49672, 47.366103], [8.496673, 47.366108], [8.496627, 47.366115], [8.496582, 47.366126], [8.496539, 47.366139], [8.496497, 47.366154], [8.496458, 47.366172], [8.497031, 47.366311]]], "type": "MultiLineString"}, "id": "2509", "properties": {}, "type": "Feature"}, {"bbox": [8.50379, 47.352248, 8.50659, 47.355509], "geometry": {"coordinates": [[[8.50659, 47.352248], [8.506523, 47.352338], [8.506398, 47.352656], [8.506087, 47.353406], [8.505854, 47.353949], [8.505147, 47.354133], [8.504945, 47.354337], [8.50379, 47.355509]]], "type": "MultiLineString"}, "id": "2512", "properties": {}, "type": "Feature"}, {"bbox": [8.53841, 47.375385, 8.539151, 47.375859], "geometry": {"coordinates": [[[8.5386, 47.375859], [8.539098, 47.37573], [8.538998, 47.37555]], [[8.539151, 47.375516], [8.538998, 47.37555], [8.538912, 47.375385], [8.53841, 47.3755], [8.5386, 47.375859]]], "type": "MultiLineString"}, "id": "2513", "properties": {}, "type": "Feature"}, {"bbox": [8.506865, 47.42678, 8.507341, 47.426875], "geometry": {"coordinates": [[[8.506865, 47.42678], [8.507341, 47.426875]]], "type": "MultiLineString"}, "id": "2514", "properties": {}, "type": "Feature"}, {"bbox": [8.49546, 47.396514, 8.495743, 47.396834], "geometry": {"coordinates": [[[8.495743, 47.396834], [8.49546, 47.396514]]], "type": "MultiLineString"}, "id": "2519", "properties": {}, "type": "Feature"}, {"bbox": [8.545913, 47.371553, 8.54689, 47.372954], "geometry": {"coordinates": [[[8.545913, 47.371553], [8.54611, 47.371746], [8.546141, 47.371776], [8.546169, 47.371808], [8.546192, 47.371841], [8.546211, 47.371875], [8.546226, 47.37191], [8.546236, 47.371946], [8.546242, 47.372001], [8.546255, 47.372056], [8.546273, 47.37211], [8.546304, 47.372155], [8.546443, 47.372275], [8.546691, 47.372441], [8.546823, 47.372521], [8.54689, 47.372572], [8.546791, 47.372954]]], "type": "MultiLineString"}, "id": "2520", "properties": {}, "type": "Feature"}, {"bbox": [8.562035, 47.39621, 8.563153, 47.399569], "geometry": {"coordinates": [[[8.562035, 47.39621], [8.56215, 47.396456], [8.562155, 47.396468], [8.562161, 47.39648], [8.562166, 47.396492], [8.562169, 47.396501], [8.562188, 47.396565], [8.5622, 47.396631], [8.562203, 47.396697], [8.562199, 47.396763], [8.562186, 47.396828], [8.562165, 47.396893], [8.562136, 47.396956], [8.562096, 47.39703], [8.56208, 47.397065], [8.562069, 47.3971], [8.562063, 47.397136], [8.562062, 47.397172], [8.562066, 47.397208], [8.562122, 47.397527], [8.562136, 47.397591], [8.562156, 47.397654], [8.562181, 47.397717], [8.562221, 47.397805], [8.562246, 47.397859], [8.562293, 47.397956], [8.562393, 47.398139], [8.562503, 47.39832], [8.562621, 47.398498], [8.562621, 47.398498], [8.562621, 47.398498], [8.56275, 47.398734], [8.562875, 47.39897], [8.562997, 47.399208], [8.562997, 47.399208], [8.562997, 47.399208], [8.563052, 47.399319], [8.563101, 47.39943], [8.563144, 47.399543], [8.563153, 47.399569]]], "type": "MultiLineString"}, "id": "2521", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.359395, 8.523061, 47.360019], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522962, 47.359852], [8.522968, 47.35982], [8.522986, 47.359648], [8.522989, 47.359632], [8.523046, 47.359464], [8.523061, 47.359395]]], "type": "MultiLineString"}, "id": "2522", "properties": {}, "type": "Feature"}, {"bbox": [8.522394, 47.359254, 8.52328, 47.359852], "geometry": {"coordinates": [[[8.52328, 47.359416], [8.523061, 47.359395], [8.523072, 47.359334], [8.522982, 47.359325], [8.522947, 47.359321], [8.522876, 47.359314], [8.522425, 47.359268], [8.522421, 47.359267], [8.522418, 47.359267], [8.522414, 47.359266], [8.522411, 47.359264], [8.522408, 47.359263], [8.522405, 47.359262], [8.522402, 47.35926], [8.522399, 47.359258], [8.522397, 47.359256], [8.522395, 47.359254], [8.522394, 47.359254], [8.522513, 47.359395], [8.522577, 47.359464], [8.522614, 47.359501], [8.522898, 47.359797], [8.522962, 47.359852]]], "type": "MultiLineString"}, "id": "2523", "properties": {}, "type": "Feature"}, {"bbox": [8.517598, 47.402677, 8.519816, 47.406001], "geometry": {"coordinates": [[[8.518024, 47.402677], [8.517981, 47.402766], [8.517818, 47.402955], [8.517696, 47.403094], [8.517668, 47.403125], [8.517645, 47.403158], [8.517626, 47.403192], [8.517612, 47.403227], [8.517603, 47.403262], [8.517598, 47.403299], [8.517598, 47.403335], [8.517603, 47.403371], [8.517612, 47.403407], [8.517656, 47.403618], [8.517678, 47.40366], [8.517704, 47.4037], [8.517735, 47.403738], [8.517771, 47.403775], [8.51781, 47.403809], [8.517923, 47.403884], [8.517931, 47.40389], [8.517938, 47.403898], [8.517943, 47.403905], [8.517948, 47.403913], [8.517952, 47.403921], [8.517955, 47.40393], [8.517956, 47.403938], [8.517957, 47.403947], [8.517957, 47.403955], [8.517955, 47.403964], [8.517952, 47.403972], [8.517949, 47.40398], [8.517944, 47.403988], [8.517939, 47.403996], [8.517932, 47.404003], [8.517925, 47.40401], [8.517916, 47.404016], [8.517907, 47.404022], [8.517897, 47.404028], [8.517692, 47.404139], [8.517679, 47.404146], [8.517667, 47.404153], [8.517657, 47.404162], [8.517647, 47.40417], [8.517639, 47.40418], [8.517632, 47.40419], [8.517626, 47.4042], [8.517622, 47.40421], [8.517619, 47.404221], [8.517617, 47.404232], [8.517617, 47.404243], [8.517619, 47.404254], [8.517621, 47.404264], [8.517626, 47.404275], [8.517631, 47.404285], [8.517638, 47.404295], [8.517646, 47.404304], [8.517656, 47.404313], [8.517666, 47.404322], [8.517678, 47.404329], [8.518024, 47.404606], [8.518471, 47.404914], [8.519075, 47.405322], [8.519781, 47.405802], [8.519787, 47.405807], [8.519794, 47.405812], [8.519799, 47.405817], [8.519804, 47.405823], [8.519808, 47.405829], [8.519811, 47.405835], [8.519813, 47.405841], [8.519815, 47.405847], [8.519816, 47.405854], [8.519816, 47.40586], [8.519815, 47.405867], [8.519813, 47.405873], [8.519811, 47.405879], [8.519807, 47.405885], [8.519803, 47.405891], [8.519799, 47.405897], [8.519793, 47.405902], [8.519787, 47.405907], [8.51978, 47.405912], [8.519773, 47.405916], [8.519765, 47.405919], [8.519649, 47.406001]]], "type": "MultiLineString"}, "id": "2537", "properties": {}, "type": "Feature"}, {"bbox": [8.51258, 47.382072, 8.51362, 47.382807], "geometry": {"coordinates": [[[8.51362, 47.382807], [8.513498, 47.382723], [8.513138, 47.382641], [8.51258, 47.382072]]], "type": "MultiLineString"}, "id": "2538", "properties": {}, "type": "Feature"}, {"bbox": [8.460902, 47.385096, 8.46624, 47.387088], "geometry": {"coordinates": [[[8.46624, 47.385096], [8.466096, 47.385138], [8.46593, 47.38518], [8.465765, 47.385223], [8.4656, 47.385265], [8.465445, 47.385305], [8.465288, 47.385342], [8.465131, 47.385378], [8.46505, 47.385396], [8.46497, 47.385415], [8.46489, 47.385435], [8.464661, 47.385493], [8.464432, 47.38555], [8.464203, 47.385607], [8.464156, 47.385619], [8.464109, 47.385633], [8.464064, 47.385648], [8.46393, 47.385694], [8.463797, 47.38574], [8.463662, 47.385784], [8.463483, 47.385844], [8.463306, 47.385904], [8.463129, 47.385966], [8.463022, 47.386006], [8.462917, 47.386049], [8.462814, 47.386094], [8.46275, 47.386123], [8.462686, 47.386153], [8.462623, 47.386183], [8.462569, 47.386209], [8.462515, 47.386235], [8.462462, 47.386261], [8.462352, 47.386317], [8.462243, 47.386375], [8.462136, 47.386433], [8.462051, 47.386481], [8.461966, 47.386528], [8.461881, 47.386575], [8.461829, 47.386603], [8.461776, 47.386631], [8.461722, 47.386658], [8.461701, 47.38667], [8.461681, 47.386682], [8.461662, 47.386695], [8.461636, 47.386713], [8.461608, 47.38673], [8.461578, 47.386746], [8.46153, 47.386769], [8.461482, 47.386792], [8.461434, 47.386815], [8.461381, 47.38684], [8.461327, 47.386866], [8.461274, 47.386892], [8.461224, 47.386918], [8.461174, 47.386945], [8.461127, 47.386974], [8.461093, 47.386994], [8.461057, 47.387012], [8.461019, 47.387028], [8.460999, 47.387037], [8.460979, 47.387045], [8.46096, 47.387054], [8.460944, 47.387062], [8.460928, 47.387071], [8.460914, 47.387081], [8.460902, 47.387088]]], "type": "MultiLineString"}, "id": "2539", "properties": {}, "type": "Feature"}, {"bbox": [8.479926, 47.41524, 8.480733, 47.416621], "geometry": {"coordinates": [[[8.479926, 47.41524], [8.480004, 47.415279], [8.480126, 47.415408], [8.480136, 47.41554], [8.480142, 47.415877], [8.480228, 47.415939], [8.480421, 47.41594], [8.480489, 47.415947], [8.480514, 47.415973], [8.480566, 47.415983], [8.480698, 47.415981], [8.480698, 47.415992], [8.480731, 47.416142], [8.480733, 47.416324], [8.480654, 47.416338], [8.480497, 47.41634], [8.480238, 47.416342], [8.480198, 47.416344], [8.480154, 47.416376], [8.480156, 47.416563], [8.480157, 47.416621]]], "type": "MultiLineString"}, "id": "2540", "properties": {}, "type": "Feature"}, {"bbox": [8.506068, 47.426006, 8.507283, 47.426156], "geometry": {"coordinates": [[[8.507283, 47.426156], [8.507242, 47.426139], [8.5072, 47.426123], [8.507155, 47.426111], [8.507109, 47.426101], [8.507062, 47.426094], [8.507014, 47.42609], [8.50666, 47.426069], [8.506559, 47.426073], [8.506458, 47.426071], [8.506358, 47.426063], [8.506259, 47.426049], [8.506162, 47.42603], [8.506068, 47.426006]]], "type": "MultiLineString"}, "id": "2541", "properties": {}, "type": "Feature"}, {"bbox": [8.498145, 47.358299, 8.503659, 47.359965], "geometry": {"coordinates": [[[8.503659, 47.359965], [8.503516, 47.359904], [8.502821, 47.35963], [8.502001, 47.35933], [8.501244, 47.358923], [8.501094, 47.358857], [8.501022, 47.35884], [8.500028, 47.358386], [8.499943, 47.35846], [8.498227, 47.358342], [8.498145, 47.358299]]], "type": "MultiLineString"}, "id": "2542", "properties": {}, "type": "Feature"}, {"bbox": [8.504978, 47.405203, 8.50611, 47.40651], "geometry": {"coordinates": [[[8.504978, 47.405203], [8.50507, 47.40529], [8.505164, 47.405377], [8.50526, 47.405462], [8.505403, 47.405587], [8.505529, 47.40572], [8.505639, 47.40586], [8.50611, 47.40651]]], "type": "MultiLineString"}, "id": "2548", "properties": {}, "type": "Feature"}, {"bbox": [8.521, 47.361758, 8.522128, 47.362588], "geometry": {"coordinates": [[[8.521491, 47.361785], [8.521457, 47.361768], [8.521253, 47.361764], [8.521, 47.361758], [8.521271, 47.361969], [8.521389, 47.361901], [8.521566, 47.36204], [8.52174, 47.362178], [8.521915, 47.362316], [8.521797, 47.362385], [8.521929, 47.362486], [8.522061, 47.362588], [8.522021, 47.362442], [8.52203, 47.362408], [8.52211, 47.362103], [8.522128, 47.361927], [8.522055, 47.361935], [8.521982, 47.361943], [8.521882, 47.361968], [8.521626, 47.361848], [8.521525, 47.361801], [8.521491, 47.361785]]], "type": "MultiLineString"}, "id": "2549", "properties": {}, "type": "Feature"}, {"bbox": [8.515346, 47.386138, 8.515621, 47.38618], "geometry": {"coordinates": [[[8.515621, 47.38618], [8.51553, 47.386165], [8.515438, 47.386151], [8.515346, 47.386138]]], "type": "MultiLineString"}, "id": "2552", "properties": {}, "type": "Feature"}, {"bbox": [8.54468, 47.373527, 8.545108, 47.374247], "geometry": {"coordinates": [[[8.545108, 47.373527], [8.544951, 47.373728], [8.544772, 47.373953], [8.544747, 47.373983], [8.544726, 47.374013], [8.544708, 47.374045], [8.544695, 47.374078], [8.544686, 47.374112], [8.544681, 47.374145], [8.54468, 47.374179], [8.544683, 47.374213], [8.544691, 47.374247]]], "type": "MultiLineString"}, "id": "2553", "properties": {}, "type": "Feature"}, {"bbox": [8.540064, 47.369297, 8.540349, 47.369431], "geometry": {"coordinates": [[[8.540064, 47.369399], [8.540313, 47.369431], [8.540349, 47.369297]]], "type": "MultiLineString"}, "id": "2554", "properties": {}, "type": "Feature"}, {"bbox": [8.539885, 47.368912, 8.540226, 47.369249], "geometry": {"coordinates": [[[8.540226, 47.368912], [8.540207, 47.368963], [8.540156, 47.369131], [8.539937, 47.3691], [8.539885, 47.369249]]], "type": "MultiLineString"}, "id": "2555", "properties": {}, "type": "Feature"}, {"bbox": [8.516519, 47.373651, 8.517209, 47.374197], "geometry": {"coordinates": [[[8.517209, 47.373651], [8.517071, 47.37368], [8.516519, 47.374132], [8.516531, 47.374197]]], "type": "MultiLineString"}, "id": "2556", "properties": {}, "type": "Feature"}, {"bbox": [8.485576, 47.387068, 8.485613, 47.387179], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.485576, 47.387068]]], "type": "MultiLineString"}, "id": "2558", "properties": {}, "type": "Feature"}, {"bbox": [8.54352, 47.381913, 8.544333, 47.382079], "geometry": {"coordinates": [[[8.54352, 47.381913], [8.543574, 47.381924], [8.54371, 47.381955], [8.544333, 47.382079]]], "type": "MultiLineString"}, "id": "2567", "properties": {}, "type": "Feature"}, {"bbox": [8.496928, 47.404907, 8.497362, 47.405031], "geometry": {"coordinates": [[[8.496928, 47.404907], [8.497103, 47.404961], [8.497212, 47.404953], [8.49731, 47.405028], [8.497362, 47.405031]]], "type": "MultiLineString"}, "id": "2568", "properties": {}, "type": "Feature"}, {"bbox": [8.490537, 47.401227, 8.490778, 47.402218], "geometry": {"coordinates": [[[8.490632, 47.401227], [8.490685, 47.401296], [8.490564, 47.401355], [8.490673, 47.401589], [8.490778, 47.401852], [8.490537, 47.401912], [8.490618, 47.402162], [8.490667, 47.402218]]], "type": "MultiLineString"}, "id": "2569", "properties": {}, "type": "Feature"}, {"bbox": [8.52616, 47.36416, 8.526681, 47.365493], "geometry": {"coordinates": [[[8.526681, 47.365485], [8.526559, 47.365493], [8.526414, 47.36532], [8.526323, 47.365201], [8.526285, 47.365139], [8.526255, 47.365075], [8.526233, 47.365009], [8.526218, 47.364943], [8.526208, 47.364876], [8.526202, 47.364808], [8.526201, 47.364741], [8.526208, 47.364641], [8.52616, 47.364637], [8.526219, 47.364388], [8.526252, 47.36416]]], "type": "MultiLineString"}, "id": "2570", "properties": {}, "type": "Feature"}, {"bbox": [8.52678, 47.326855, 8.529565, 47.330061], "geometry": {"coordinates": [[[8.52678, 47.330061], [8.526805, 47.330038], [8.526823, 47.329932], [8.52683, 47.329755], [8.526843, 47.329441], [8.526845, 47.329188], [8.526854, 47.328943], [8.526855, 47.328899], [8.526856, 47.328838], [8.526856, 47.328794], [8.526858, 47.328675], [8.526863, 47.328386], [8.52687, 47.328244], [8.526872, 47.32818], [8.526873, 47.328136], [8.526874, 47.328084], [8.526869, 47.327839], [8.526869, 47.327551], [8.526869, 47.327459], [8.526868, 47.327373], [8.526866, 47.327162], [8.526865, 47.327085], [8.526905, 47.327006], [8.526987, 47.326963], [8.527346, 47.326909], [8.527699, 47.326863], [8.527935, 47.326855], [8.528138, 47.326865], [8.528199, 47.326873], [8.528562, 47.326934], [8.528879, 47.326986], [8.528998, 47.326991], [8.529134, 47.326957], [8.529196, 47.326941], [8.529417, 47.326885], [8.529565, 47.326865]]], "type": "MultiLineString"}, "id": "2571", "properties": {}, "type": "Feature"}, {"bbox": [8.525058, 47.420366, 8.531052, 47.42382], "geometry": {"coordinates": [[[8.529767, 47.420366], [8.529749, 47.420528], [8.529749, 47.420621], [8.529767, 47.420767], [8.529798, 47.420866], [8.529847, 47.420947], [8.529915, 47.421016], [8.530004, 47.421083], [8.530215, 47.42122], [8.530386, 47.421323], [8.530544, 47.421415], [8.530718, 47.421531], [8.530837, 47.421651], [8.531052, 47.421916], [8.530754, 47.422072], [8.529437, 47.422525], [8.529132, 47.42267], [8.528753, 47.422938], [8.526907, 47.423316], [8.526331, 47.423491], [8.525177, 47.423721], [8.525164, 47.423724], [8.525151, 47.423727], [8.525139, 47.423731], [8.525128, 47.423736], [8.525117, 47.423741], [8.525107, 47.423747], [8.525097, 47.423754], [8.525089, 47.423761], [8.525081, 47.423768], [8.525075, 47.423776], [8.525069, 47.423784], [8.525065, 47.423793], [8.525061, 47.423802], [8.525059, 47.423811], [8.525058, 47.42382]]], "type": "MultiLineString"}, "id": "2574", "properties": {}, "type": "Feature"}, {"bbox": [8.539326, 47.369939, 8.539762, 47.370274], "geometry": {"coordinates": [[[8.539534, 47.370274], [8.539574, 47.370237], [8.539685, 47.370116], [8.53972, 47.370084], [8.539762, 47.370045], [8.539419, 47.369939], [8.539326, 47.370107]]], "type": "MultiLineString"}, "id": "2577", "properties": {}, "type": "Feature"}, {"bbox": [8.49096, 47.350343, 8.499961, 47.352573], "geometry": {"coordinates": [[[8.499961, 47.352573], [8.499882, 47.352545], [8.499854, 47.352534], [8.499827, 47.352522], [8.499802, 47.352508], [8.499694, 47.352443], [8.499533, 47.352347], [8.499437, 47.352277], [8.499199, 47.352067], [8.499155, 47.352031], [8.499107, 47.351996], [8.499056, 47.351964], [8.498732, 47.351773], [8.498693, 47.351748], [8.498658, 47.351721], [8.498626, 47.351692], [8.498597, 47.351662], [8.498572, 47.35163], [8.498474, 47.351491], [8.498446, 47.351455], [8.498414, 47.351421], [8.498378, 47.351389], [8.498337, 47.351359], [8.498293, 47.351332], [8.498123, 47.351225], [8.498071, 47.35116], [8.497976, 47.35122], [8.497991, 47.351273], [8.497994, 47.351297], [8.497983, 47.351303], [8.497965, 47.351305], [8.497904, 47.351266], [8.497858, 47.351213], [8.497791, 47.351213], [8.497715, 47.351219], [8.497668, 47.351269], [8.497669, 47.351315], [8.497543, 47.35139], [8.497488, 47.351307], [8.497349, 47.351334], [8.497214, 47.351378], [8.497141, 47.351429], [8.496999, 47.351431], [8.496696, 47.35136], [8.496588, 47.351296], [8.496418, 47.351248], [8.496326, 47.351188], [8.496194, 47.351148], [8.49588, 47.35092], [8.495754, 47.350931], [8.495722, 47.350908], [8.495707, 47.350865], [8.495673, 47.350834], [8.49562, 47.350842], [8.49556, 47.350842], [8.495588, 47.350795], [8.495593, 47.350757], [8.495564, 47.350739], [8.495487, 47.35068], [8.495429, 47.350675], [8.495407, 47.350666], [8.495404, 47.35065], [8.495439, 47.350628], [8.495463, 47.350585], [8.495374, 47.350588], [8.495326, 47.35058], [8.495329, 47.350558], [8.495339, 47.350538], [8.495357, 47.350498], [8.495343, 47.350481], [8.495324, 47.350464], [8.495285, 47.350486], [8.495266, 47.350505], [8.495226, 47.350525], [8.495189, 47.350541], [8.495082, 47.350549], [8.495003, 47.350585], [8.494957, 47.350543], [8.494993, 47.350496], [8.495, 47.350453], [8.494976, 47.350444], [8.494948, 47.350417], [8.494928, 47.35041], [8.49491, 47.350416], [8.494875, 47.350439], [8.494841, 47.350438], [8.494833, 47.350406], [8.494755, 47.350431], [8.494743, 47.350417], [8.494724, 47.350424], [8.494708, 47.350389], [8.494668, 47.350417], [8.494656, 47.350449], [8.494618, 47.350411], [8.494615, 47.350357], [8.49454, 47.350372], [8.494491, 47.350416], [8.494476, 47.350385], [8.494453, 47.350369], [8.49442, 47.350387], [8.494397, 47.350391], [8.494293, 47.350432], [8.494298, 47.350417], [8.494298, 47.350395], [8.494148, 47.350382], [8.494113, 47.350366], [8.494083, 47.350374], [8.494038, 47.350394], [8.493986, 47.350401], [8.493934, 47.35042], [8.493889, 47.350389], [8.493864, 47.350396], [8.493848, 47.350418], [8.493764, 47.350462], [8.493677, 47.350571], [8.49371, 47.350657], [8.493696, 47.350706], [8.493673, 47.35072], [8.493615, 47.350725], [8.493545, 47.350722], [8.493344, 47.350709], [8.493233, 47.350714], [8.493039, 47.350871], [8.492913, 47.350832], [8.492958, 47.350905], [8.492926, 47.350885], [8.492893, 47.350877], [8.492815, 47.350892], [8.492786, 47.35083], [8.492751, 47.35083], [8.492733, 47.350791], [8.492676, 47.350824], [8.492663, 47.350785], [8.492624, 47.350798], [8.492623, 47.350774], [8.492607, 47.350783], [8.49259, 47.350759], [8.492574, 47.35076], [8.492543, 47.350731], [8.492504, 47.350761], [8.492473, 47.350695], [8.492421, 47.350738], [8.492397, 47.350675], [8.492332, 47.350715], [8.492296, 47.350618], [8.4922, 47.350663], [8.492196, 47.350587], [8.492148, 47.350571], [8.492127, 47.350601], [8.492105, 47.350656], [8.492031, 47.350608], [8.492027, 47.350588], [8.492002, 47.350598], [8.491892, 47.350577], [8.491927, 47.350553], [8.491894, 47.350526], [8.491811, 47.350569], [8.491764, 47.350562], [8.491709, 47.350537], [8.491699, 47.350507], [8.491725, 47.350458], [8.491725, 47.350443], [8.491682, 47.350457], [8.491652, 47.350409], [8.491619, 47.350418], [8.491597, 47.350438], [8.491495, 47.350439], [8.49128, 47.350463], [8.491212, 47.350477], [8.491164, 47.350465], [8.491126, 47.350502], [8.491099, 47.350505], [8.491076, 47.350458], [8.491056, 47.350343], [8.49096, 47.350349]]], "type": "MultiLineString"}, "id": "2580", "properties": {}, "type": "Feature"}, {"bbox": [8.586698, 47.363011, 8.58934, 47.36541], "geometry": {"coordinates": [[[8.588239, 47.36541], [8.588109, 47.365367], [8.587884, 47.365271], [8.587862, 47.365262], [8.58784, 47.365251], [8.587819, 47.365241], [8.587782, 47.365221], [8.587746, 47.365201], [8.587711, 47.365179], [8.587664, 47.365148], [8.587617, 47.365116], [8.58757, 47.365085], [8.587529, 47.365057], [8.58749, 47.365028], [8.587452, 47.364999], [8.587405, 47.364962], [8.587357, 47.364924], [8.587309, 47.364887], [8.587286, 47.364871], [8.587264, 47.364854], [8.587242, 47.364837], [8.587221, 47.364819], [8.587201, 47.364801], [8.587181, 47.364783], [8.587113, 47.364709], [8.587054, 47.364632], [8.587005, 47.364551], [8.586967, 47.364468], [8.586933, 47.364293], [8.586917, 47.364118], [8.58692, 47.363943], [8.586893, 47.363833], [8.586871, 47.363722], [8.586856, 47.363611], [8.586851, 47.363547], [8.586847, 47.363483], [8.586842, 47.363418], [8.586842, 47.363406], [8.586841, 47.363393], [8.586838, 47.363381], [8.586833, 47.363369], [8.586827, 47.363357], [8.586819, 47.363345], [8.58681, 47.363334], [8.5868, 47.363324], [8.586788, 47.363314], [8.586776, 47.363305], [8.586762, 47.363296], [8.586747, 47.363289], [8.586731, 47.363282], [8.586715, 47.363276], [8.586698, 47.363271], [8.586827, 47.363256], [8.58731, 47.363105], [8.587393, 47.363082], [8.587479, 47.363065], [8.587566, 47.363054], [8.587701, 47.363047], [8.587835, 47.363048], [8.587969, 47.363059], [8.588047, 47.363068], [8.588126, 47.363076], [8.588204, 47.363084], [8.588298, 47.363091], [8.588392, 47.363093], [8.588486, 47.36309], [8.588579, 47.363082], [8.58875, 47.363062], [8.588921, 47.363043], [8.589093, 47.363026], [8.589175, 47.363018], [8.589257, 47.363014], [8.58934, 47.363011]]], "type": "MultiLineString"}, "id": "2581", "properties": {}, "type": "Feature"}, {"bbox": [8.521289, 47.399022, 8.522221, 47.399364], "geometry": {"coordinates": [[[8.521347, 47.399364], [8.521301, 47.399299], [8.521296, 47.399291], [8.521293, 47.399282], [8.52129, 47.399273], [8.521289, 47.399264], [8.521289, 47.399254], [8.52129, 47.399245], [8.521292, 47.399236], [8.521296, 47.399227], [8.521359, 47.39908], [8.521362, 47.399074], [8.521366, 47.399067], [8.52137, 47.399062], [8.521375, 47.399056], [8.521381, 47.399051], [8.521388, 47.399046], [8.521395, 47.399041], [8.521402, 47.399037], [8.521411, 47.399033], [8.521419, 47.39903], [8.521428, 47.399028], [8.521437, 47.399025], [8.521447, 47.399024], [8.521456, 47.399023], [8.521466, 47.399022], [8.521476, 47.399022], [8.521485, 47.399023], [8.521495, 47.399024], [8.521504, 47.399026], [8.521877, 47.399101], [8.521905, 47.399106], [8.521934, 47.399109], [8.521964, 47.399111], [8.521993, 47.399111], [8.522023, 47.399109], [8.522052, 47.399105], [8.52208, 47.3991], [8.522221, 47.399062]]], "type": "MultiLineString"}, "id": "2582", "properties": {}, "type": "Feature"}, {"bbox": [8.53351, 47.332266, 8.538963, 47.336356], "geometry": {"coordinates": [[[8.53351, 47.336356], [8.533712, 47.336296], [8.533998, 47.336163], [8.534025, 47.33615], [8.53405, 47.336136], [8.534073, 47.33612], [8.534094, 47.336103], [8.534094, 47.336103], [8.534094, 47.336103], [8.534163, 47.336045], [8.534231, 47.335986], [8.534297, 47.335927], [8.534352, 47.335868], [8.534379, 47.335822], [8.534461, 47.335662], [8.534562, 47.335497], [8.534831, 47.335205], [8.53495, 47.335083], [8.535084, 47.334969], [8.535235, 47.334865], [8.535235, 47.334865], [8.53559, 47.334643], [8.536046, 47.334493], [8.536176, 47.334449], [8.536299, 47.334398], [8.536414, 47.334339], [8.536521, 47.334273], [8.536618, 47.3342], [8.536757, 47.334086], [8.536907, 47.333978], [8.537066, 47.333877], [8.537524, 47.333559], [8.537578, 47.333519], [8.537627, 47.333476], [8.53767, 47.33343], [8.537708, 47.333382], [8.53774, 47.333332], [8.537765, 47.333281], [8.53779, 47.333236], [8.53782, 47.333192], [8.537856, 47.333151], [8.537896, 47.333111], [8.53794, 47.333074], [8.537989, 47.333039], [8.538042, 47.333008], [8.538481, 47.332701], [8.538636, 47.332553], [8.538797, 47.332408], [8.538963, 47.332266]]], "type": "MultiLineString"}, "id": "2583", "properties": {}, "type": "Feature"}, {"bbox": [8.539851, 47.402311, 8.540212, 47.402677], "geometry": {"coordinates": [[[8.540212, 47.402311], [8.540193, 47.40233], [8.540039, 47.40249], [8.539926, 47.402607], [8.539851, 47.402677]]], "type": "MultiLineString"}, "id": "2584", "properties": {}, "type": "Feature"}, {"bbox": [8.501111, 47.39748, 8.503003, 47.398358], "geometry": {"coordinates": [[[8.501111, 47.397966], [8.501995, 47.39748], [8.502137, 47.397595], [8.502251, 47.397671], [8.502375, 47.397765], [8.502735, 47.398236], [8.502766, 47.39826], [8.502799, 47.398282], [8.502836, 47.398302], [8.502875, 47.39832], [8.502916, 47.398335], [8.502959, 47.398348], [8.503003, 47.398358]]], "type": "MultiLineString"}, "id": "2585", "properties": {}, "type": "Feature"}, {"bbox": [8.484563, 47.416224, 8.48658, 47.42034], "geometry": {"coordinates": [[[8.484563, 47.416224], [8.484572, 47.416277], [8.484647, 47.416346], [8.485032, 47.416758], [8.485302, 47.416975], [8.485363, 47.417025], [8.485437, 47.41708], [8.485997, 47.417512], [8.486041, 47.417549], [8.48608, 47.417588], [8.486114, 47.417628], [8.486143, 47.417671], [8.486167, 47.417715], [8.486185, 47.417761], [8.486338, 47.418209], [8.48658, 47.418777], [8.486458, 47.418866], [8.486486, 47.418935], [8.48649, 47.418974], [8.48649, 47.419014], [8.486486, 47.419054], [8.486477, 47.419092], [8.486464, 47.41913], [8.486446, 47.419166], [8.486425, 47.419202], [8.486228, 47.419492], [8.486199, 47.419531], [8.486165, 47.419569], [8.486128, 47.419604], [8.486086, 47.419638], [8.485173, 47.42032], [8.485146, 47.42034]]], "type": "MultiLineString"}, "id": "2586", "properties": {}, "type": "Feature"}, {"bbox": [8.542714, 47.378469, 8.543206, 47.378975], "geometry": {"coordinates": [[[8.543064, 47.378975], [8.543144, 47.378766], [8.543187, 47.378636], [8.543206, 47.37856], [8.542802, 47.378469], [8.542714, 47.378637]]], "type": "MultiLineString"}, "id": "2587", "properties": {}, "type": "Feature"}, {"bbox": [8.527155, 47.344681, 8.527616, 47.346027], "geometry": {"coordinates": [[[8.527616, 47.346027], [8.527429, 47.34592], [8.527381, 47.345891], [8.527337, 47.345858], [8.527297, 47.345823], [8.527261, 47.345786], [8.52723, 47.345747], [8.527205, 47.345706], [8.527184, 47.345664], [8.527169, 47.345621], [8.527159, 47.345577], [8.527155, 47.345533], [8.527156, 47.345488], [8.527163, 47.345444], [8.527175, 47.345401], [8.527367, 47.344925], [8.527408, 47.344798], [8.527435, 47.344681]]], "type": "MultiLineString"}, "id": "2588", "properties": {}, "type": "Feature"}, {"bbox": [8.548736, 47.366187, 8.549263, 47.366729], "geometry": {"coordinates": [[[8.548736, 47.366187], [8.548938, 47.366428], [8.549099, 47.366584], [8.549263, 47.366729]]], "type": "MultiLineString"}, "id": "2589", "properties": {}, "type": "Feature"}, {"bbox": [8.504989, 47.363042, 8.505468, 47.363279], "geometry": {"coordinates": [[[8.505468, 47.363279], [8.504989, 47.363042]]], "type": "MultiLineString"}, "id": "2590", "properties": {}, "type": "Feature"}, {"bbox": [8.540131, 47.367991, 8.540536, 47.368453], "geometry": {"coordinates": [[[8.540536, 47.367991], [8.540463, 47.368237], [8.54022, 47.368205], [8.540131, 47.368453]]], "type": "MultiLineString"}, "id": "2591", "properties": {}, "type": "Feature"}, {"bbox": [8.578299, 47.397297, 8.58205, 47.401629], "geometry": {"coordinates": [[[8.578299, 47.401629], [8.578322, 47.40154], [8.578335, 47.401452], [8.578338, 47.401362], [8.578343, 47.401252], [8.578362, 47.401142], [8.578394, 47.401033], [8.57844, 47.400927], [8.578499, 47.400824], [8.57857, 47.400724], [8.578653, 47.400629], [8.578748, 47.400539], [8.578854, 47.400455], [8.579155, 47.400214], [8.579419, 47.399954], [8.579643, 47.399677], [8.579687, 47.399625], [8.579713, 47.39959], [8.579756, 47.399533], [8.580218, 47.398904], [8.580408, 47.398646], [8.580525, 47.398506], [8.580546, 47.398484], [8.581196, 47.397885], [8.581226, 47.39786], [8.581679, 47.39751], [8.582008, 47.397319], [8.58205, 47.397297]]], "type": "MultiLineString"}, "id": "2593", "properties": {}, "type": "Feature"}, {"bbox": [8.52314, 47.346441, 8.52537, 47.348191], "geometry": {"coordinates": [[[8.52537, 47.346441], [8.525346, 47.346459], [8.525259, 47.346525], [8.525208, 47.346588], [8.52406, 47.34748], [8.523935, 47.347565], [8.523831, 47.347652], [8.523243, 47.348107], [8.52314, 47.348191]]], "type": "MultiLineString"}, "id": "2594", "properties": {}, "type": "Feature"}, {"bbox": [8.538228, 47.390447, 8.538902, 47.390672], "geometry": {"coordinates": [[[8.538228, 47.390447], [8.53844, 47.390582], [8.538455, 47.390592], [8.538472, 47.3906], [8.538489, 47.390608], [8.538507, 47.390615], [8.538526, 47.39062], [8.538546, 47.390625], [8.538566, 47.390628], [8.53874, 47.390648], [8.538902, 47.390672]]], "type": "MultiLineString"}, "id": "2600", "properties": {}, "type": "Feature"}, {"bbox": [8.544837, 47.369463, 8.545661, 47.37011], "geometry": {"coordinates": [[[8.545661, 47.369463], [8.545506, 47.369597], [8.545414, 47.369708], [8.545279, 47.369849], [8.545201, 47.369912], [8.545028, 47.36994], [8.544837, 47.370073], [8.544846, 47.37011]]], "type": "MultiLineString"}, "id": "2602", "properties": {}, "type": "Feature"}, {"bbox": [8.540134, 47.372616, 8.541548, 47.373404], "geometry": {"coordinates": [[[8.540723, 47.373357], [8.540749, 47.373357], [8.540782, 47.373404], [8.540946, 47.373391], [8.541389, 47.373225], [8.541518, 47.37315], [8.541445, 47.373111], [8.541548, 47.372944], [8.541537, 47.372732], [8.541433, 47.372739], [8.541427, 47.372672], [8.541343, 47.372671], [8.541337, 47.37272], [8.541204, 47.372723], [8.541203, 47.372691], [8.5409, 47.372698], [8.540902, 47.372649], [8.540725, 47.372654], [8.540639, 47.372638], [8.540388, 47.372616], [8.540248, 47.372844], [8.540134, 47.373153], [8.540159, 47.373158], [8.540143, 47.373265], [8.54028, 47.373319], [8.54038, 47.373336], [8.540545, 47.373351], [8.540672, 47.373356], [8.540723, 47.373357]]], "type": "MultiLineString"}, "id": "2603", "properties": {}, "type": "Feature"}, {"bbox": [8.516319, 47.385503, 8.51723, 47.386345], "geometry": {"coordinates": [[[8.516319, 47.386345], [8.516471, 47.386144], [8.51693, 47.38626], [8.517049, 47.386225], [8.517065, 47.386027], [8.516984, 47.385854], [8.51723, 47.385806], [8.517063, 47.385503], [8.516808, 47.385567], [8.516884, 47.385764], [8.51674, 47.385854], [8.51656, 47.385945], [8.516471, 47.386144]]], "type": "MultiLineString"}, "id": "2604", "properties": {}, "type": "Feature"}, {"bbox": [8.499282, 47.353155, 8.501089, 47.355254], "geometry": {"coordinates": [[[8.499282, 47.355254], [8.499884, 47.354675], [8.499969, 47.354585], [8.500042, 47.35449], [8.500101, 47.354391], [8.500114, 47.35437], [8.500129, 47.354349], [8.500147, 47.35433], [8.500167, 47.354311], [8.500189, 47.354294], [8.500213, 47.354278], [8.500239, 47.354263], [8.500495, 47.354131], [8.50054, 47.354105], [8.500581, 47.354077], [8.500619, 47.354046], [8.500652, 47.354013], [8.50068, 47.353979], [8.500704, 47.353942], [8.500907, 47.35359], [8.500927, 47.35355], [8.500942, 47.353509], [8.500951, 47.353466], [8.50096, 47.353411], [8.500965, 47.353389], [8.500971, 47.353368], [8.500981, 47.353346], [8.500997, 47.353313], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "2605", "properties": {}, "type": "Feature"}, {"bbox": [8.582366, 47.362678, 8.58474, 47.36349], "geometry": {"coordinates": [[[8.582366, 47.36349], [8.582409, 47.363478], [8.582451, 47.363464], [8.582489, 47.363447], [8.582509, 47.363437], [8.582529, 47.363427], [8.582548, 47.363417], [8.582595, 47.363396], [8.582644, 47.363377], [8.582694, 47.36336], [8.583622, 47.363079], [8.583724, 47.363049], [8.584008, 47.362963], [8.584037, 47.362952], [8.584064, 47.362939], [8.584089, 47.362925], [8.584113, 47.362909], [8.584134, 47.362893], [8.584153, 47.362875], [8.58417, 47.362856], [8.584192, 47.362834], [8.584214, 47.362812], [8.584238, 47.362792], [8.584256, 47.362778], [8.584275, 47.362764], [8.584295, 47.362752], [8.584317, 47.362741], [8.58434, 47.362731], [8.584365, 47.362723], [8.58439, 47.362716], [8.584417, 47.36271], [8.584443, 47.362706], [8.584542, 47.362695], [8.584641, 47.362686], [8.58474, 47.362678]]], "type": "MultiLineString"}, "id": "2606", "properties": {}, "type": "Feature"}, {"bbox": [8.480936, 47.405132, 8.48188, 47.40567], "geometry": {"coordinates": [[[8.48188, 47.405132], [8.481787, 47.405168], [8.481695, 47.405206], [8.481606, 47.405247], [8.481573, 47.405259], [8.481538, 47.40527], [8.481501, 47.405278], [8.481464, 47.405285], [8.481427, 47.405289], [8.481141, 47.405311], [8.481119, 47.405315], [8.481097, 47.405321], [8.481076, 47.405328], [8.481056, 47.405336], [8.481037, 47.405345], [8.481019, 47.405356], [8.481003, 47.405367], [8.480988, 47.405379], [8.480975, 47.405393], [8.480964, 47.405406], [8.480954, 47.405421], [8.480947, 47.405436], [8.480941, 47.405451], [8.480937, 47.405467], [8.480936, 47.405483], [8.480936, 47.405499], [8.480938, 47.405514], [8.480943, 47.40553], [8.480949, 47.405545], [8.480958, 47.40556], [8.480968, 47.405574], [8.48098, 47.405588], [8.480994, 47.405601], [8.481009, 47.405613], [8.481026, 47.405624], [8.481044, 47.405634], [8.481063, 47.405643], [8.481084, 47.405651], [8.481105, 47.405657], [8.481127, 47.405662], [8.48115, 47.405666], [8.481173, 47.405669], [8.481196, 47.40567], [8.48122, 47.405669], [8.481243, 47.405668], [8.481266, 47.405665], [8.481288, 47.40566], [8.48131, 47.405655], [8.481331, 47.405648], [8.481351, 47.40564], [8.48137, 47.40563], [8.481388, 47.40562], [8.481404, 47.405609], [8.481609, 47.405387], [8.48188, 47.405132]]], "type": "MultiLineString"}, "id": "2619", "properties": {}, "type": "Feature"}, {"bbox": [8.503698, 47.393874, 8.505557, 47.394298], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.504072, 47.394266], [8.504441, 47.394212], [8.504803, 47.394138], [8.505154, 47.394043], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "2620", "properties": {}, "type": "Feature"}, {"bbox": [8.516431, 47.358799, 8.516937, 47.359358], "geometry": {"coordinates": [[[8.516937, 47.358799], [8.516912, 47.358806], [8.516888, 47.358815], [8.516865, 47.358824], [8.516844, 47.358835], [8.516824, 47.358848], [8.516805, 47.358861], [8.516789, 47.358876], [8.516775, 47.358891], [8.516762, 47.358908], [8.516752, 47.358925], [8.516744, 47.358942], [8.516738, 47.35896], [8.516735, 47.358978], [8.516734, 47.358997], [8.516736, 47.359015], [8.51674, 47.359033], [8.516746, 47.359051], [8.516812, 47.359158], [8.516817, 47.359171], [8.516822, 47.359183], [8.516824, 47.359196], [8.516825, 47.359209], [8.516825, 47.359222], [8.516822, 47.359234], [8.516818, 47.359247], [8.516813, 47.359259], [8.516806, 47.359271], [8.516797, 47.359283], [8.516787, 47.359294], [8.516776, 47.359304], [8.516763, 47.359313], [8.516749, 47.359322], [8.516734, 47.35933], [8.516718, 47.359337], [8.516702, 47.359343], [8.516684, 47.359348], [8.516666, 47.359352], [8.516648, 47.359355], [8.516629, 47.359357], [8.51661, 47.359358], [8.516591, 47.359357], [8.516572, 47.359355], [8.516554, 47.359353], [8.516536, 47.359349], [8.516518, 47.359344], [8.516501, 47.359338], [8.516485, 47.359332], [8.51647, 47.359324], [8.516456, 47.359315], [8.516443, 47.359306], [8.516431, 47.359296]]], "type": "MultiLineString"}, "id": "2621", "properties": {}, "type": "Feature"}, {"bbox": [8.57365, 47.404152, 8.573989, 47.404344], "geometry": {"coordinates": [[[8.57365, 47.404344], [8.573694, 47.404335], [8.573736, 47.404324], [8.573777, 47.40431], [8.573816, 47.404293], [8.573852, 47.404274], [8.573886, 47.404254], [8.573916, 47.404231], [8.573944, 47.404206], [8.573968, 47.40418], [8.573989, 47.404152]]], "type": "MultiLineString"}, "id": "2622", "properties": {}, "type": "Feature"}, {"bbox": [8.482521, 47.35528, 8.486333, 47.359217], "geometry": {"coordinates": [[[8.482521, 47.359217], [8.483103, 47.359108], [8.48369, 47.358995], [8.48378, 47.358975], [8.483868, 47.35895], [8.483953, 47.358921], [8.484034, 47.358887], [8.484166, 47.358828], [8.484188, 47.358818], [8.484399, 47.358728], [8.484461, 47.358698], [8.484519, 47.358666], [8.484574, 47.358631], [8.484625, 47.358593], [8.484741, 47.358499], [8.484779, 47.35847], [8.484822, 47.358444], [8.484867, 47.35842], [8.484916, 47.3584], [8.484966, 47.358382], [8.48502, 47.358367], [8.485233, 47.358316], [8.485284, 47.358302], [8.485332, 47.358285], [8.485378, 47.358266], [8.485422, 47.358244], [8.485462, 47.35822], [8.4855, 47.358193], [8.485533, 47.358164], [8.485563, 47.358133], [8.48561, 47.358076], [8.485649, 47.358016], [8.48568, 47.357954], [8.485692, 47.357923], [8.485699, 47.35789], [8.485703, 47.357858], [8.485703, 47.357826], [8.485698, 47.357793], [8.485689, 47.357761], [8.485677, 47.35773], [8.48566, 47.357699], [8.48564, 47.35767], [8.485616, 47.357642], [8.485525, 47.357543], [8.485487, 47.357505], [8.485458, 47.357468], [8.485434, 47.357429], [8.485415, 47.357389], [8.485402, 47.357348], [8.485395, 47.357306], [8.485393, 47.357264], [8.485397, 47.357222], [8.48566, 47.355843], [8.485674, 47.355791], [8.485695, 47.35574], [8.485723, 47.355691], [8.485756, 47.355644], [8.485796, 47.355598], [8.485841, 47.355556], [8.485892, 47.355516], [8.485947, 47.355479], [8.486007, 47.355445], [8.486152, 47.355362], [8.486208, 47.355331], [8.486269, 47.355304], [8.486333, 47.35528]]], "type": "MultiLineString"}, "id": "2623", "properties": {}, "type": "Feature"}, {"bbox": [8.543488, 47.369493, 8.544243, 47.369693], "geometry": {"coordinates": [[[8.543488, 47.369634], [8.543778, 47.369693], [8.543814, 47.369692], [8.54385, 47.369678], [8.543906, 47.369649], [8.544022, 47.369549], [8.544104, 47.369597], [8.544243, 47.369493]]], "type": "MultiLineString"}, "id": "2625", "properties": {}, "type": "Feature"}, {"bbox": [8.504793, 47.406952, 8.507055, 47.409946], "geometry": {"coordinates": [[[8.504793, 47.406952], [8.505245, 47.407577], [8.505936, 47.40852], [8.50633, 47.409065], [8.506397, 47.409158], [8.506571, 47.40928], [8.506889, 47.409716], [8.507055, 47.409946]]], "type": "MultiLineString"}, "id": "2626", "properties": {}, "type": "Feature"}, {"bbox": [8.515385, 47.348981, 8.517398, 47.349101], "geometry": {"coordinates": [[[8.517398, 47.348981], [8.516918, 47.349006], [8.516505, 47.349022], [8.515882, 47.349052], [8.515547, 47.349076], [8.515385, 47.349101]]], "type": "MultiLineString"}, "id": "2627", "properties": {}, "type": "Feature"}, {"bbox": [8.576605, 47.376093, 8.577777, 47.378496], "geometry": {"coordinates": [[[8.576605, 47.378496], [8.57693, 47.378253], [8.577514, 47.37788], [8.577701, 47.377752], [8.577716, 47.377739], [8.57773, 47.377725], [8.577742, 47.37771], [8.577752, 47.377695], [8.57776, 47.377679], [8.577765, 47.377663], [8.577769, 47.377646], [8.57777, 47.377629], [8.577769, 47.377612], [8.577637, 47.377248], [8.57763, 47.377225], [8.577625, 47.377201], [8.577623, 47.377178], [8.577619, 47.37707], [8.57762, 47.377048], [8.577623, 47.377026], [8.57763, 47.377004], [8.57764, 47.376982], [8.577758, 47.376759], [8.577766, 47.37674], [8.577772, 47.376721], [8.577776, 47.376701], [8.577777, 47.376682], [8.577775, 47.376662], [8.577771, 47.376643], [8.577764, 47.376624], [8.577755, 47.376605], [8.577743, 47.376587], [8.577729, 47.37657], [8.577713, 47.376554], [8.577229, 47.376111], [8.577186, 47.376093]]], "type": "MultiLineString"}, "id": "2628", "properties": {}, "type": "Feature"}, {"bbox": [8.568148, 47.375352, 8.575051, 47.376189], "geometry": {"coordinates": [[[8.568148, 47.375352], [8.568227, 47.375366], [8.568536, 47.375431], [8.569233, 47.375957], [8.569261, 47.375976], [8.56929, 47.375993], [8.569322, 47.376009], [8.569355, 47.376023], [8.56939, 47.376035], [8.569427, 47.376044], [8.569464, 47.376052], [8.570022, 47.376153], [8.570144, 47.376175], [8.570193, 47.376182], [8.570243, 47.376187], [8.570293, 47.376189], [8.570344, 47.376188], [8.570945, 47.376163], [8.572318, 47.376127], [8.572327, 47.376126], [8.572337, 47.376125], [8.572346, 47.376124], [8.572355, 47.376122], [8.572364, 47.376119], [8.572372, 47.376116], [8.57238, 47.376112], [8.572387, 47.376108], [8.572392, 47.376106], [8.572396, 47.376104], [8.572401, 47.376103], [8.572406, 47.376102], [8.572411, 47.376101], [8.572416, 47.3761], [8.572421, 47.3761], [8.572426, 47.3761], [8.572431, 47.376101], [8.572437, 47.376101], [8.572441, 47.376102], [8.572446, 47.376104], [8.572451, 47.376105], [8.572455, 47.376107], [8.57246, 47.376109], [8.572472, 47.376115], [8.572486, 47.376119], [8.5725, 47.376123], [8.572514, 47.376126], [8.572529, 47.376129], [8.572544, 47.37613], [8.572559, 47.37613], [8.572574, 47.37613], [8.572589, 47.376129], [8.572604, 47.376127], [8.572619, 47.376124], [8.573189, 47.37599], [8.573268, 47.375974], [8.573349, 47.375963], [8.573432, 47.375957], [8.573514, 47.375956], [8.573714, 47.375961], [8.573807, 47.375962], [8.5739, 47.37596], [8.573993, 47.375957], [8.574499, 47.37593], [8.575051, 47.375839]]], "type": "MultiLineString"}, "id": "2629", "properties": {}, "type": "Feature"}, {"bbox": [8.548544, 47.387698, 8.550451, 47.392533], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.548563, 47.387844], [8.548656, 47.388989], [8.548688, 47.389123], [8.548739, 47.389254], [8.548808, 47.389381], [8.548895, 47.389503], [8.549202, 47.389891], [8.54936, 47.390067], [8.549385, 47.390153], [8.549649, 47.390859], [8.54982, 47.391259], [8.550116, 47.391849], [8.550298, 47.392217], [8.550305, 47.392292], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "2630", "properties": {}, "type": "Feature"}, {"bbox": [8.531903, 47.411794, 8.532337, 47.413235], "geometry": {"coordinates": [[[8.531903, 47.411794], [8.531952, 47.411862], [8.532061, 47.412047], [8.532109, 47.412146], [8.532149, 47.412229], [8.532217, 47.412339], [8.532278, 47.412803], [8.532337, 47.413235]]], "type": "MultiLineString"}, "id": "2631", "properties": {}, "type": "Feature"}, {"bbox": [8.55151, 47.428481, 8.555657, 47.429624], "geometry": {"coordinates": [[[8.55151, 47.42852], [8.55151, 47.428521], [8.551744, 47.428488], [8.551763, 47.428484], [8.551783, 47.428482], [8.551802, 47.428481], [8.551822, 47.428481], [8.551842, 47.428483], [8.551862, 47.428485], [8.551881, 47.428489], [8.551899, 47.428494], [8.552149, 47.428555], [8.552406, 47.428602], [8.552667, 47.428635], [8.552776, 47.428646], [8.552879, 47.428621], [8.553041, 47.428537], [8.553056, 47.42853], [8.553073, 47.428525], [8.553089, 47.428521], [8.553106, 47.428518], [8.553124, 47.428516], [8.553142, 47.428515], [8.553159, 47.428515], [8.553177, 47.428516], [8.553195, 47.428518], [8.553212, 47.428521], [8.553228, 47.428525], [8.553244, 47.428531], [8.55326, 47.428537], [8.553274, 47.428544], [8.553288, 47.428551], [8.5533, 47.42856], [8.553894, 47.429083], [8.554001, 47.429154], [8.554116, 47.429219], [8.554239, 47.429276], [8.554369, 47.429327], [8.554505, 47.429369], [8.554646, 47.429404], [8.555657, 47.429624]]], "type": "MultiLineString"}, "id": "2644", "properties": {}, "type": "Feature"}, {"bbox": [8.511997, 47.386925, 8.513039, 47.389485], "geometry": {"coordinates": [[[8.512388, 47.386925], [8.512329, 47.38697], [8.512276, 47.387018], [8.512229, 47.387068], [8.512193, 47.387111], [8.512161, 47.387155], [8.512131, 47.3872], [8.512096, 47.387259], [8.512066, 47.38732], [8.512041, 47.387383], [8.512018, 47.387464], [8.512003, 47.387546], [8.511997, 47.387629], [8.512, 47.387697], [8.51201, 47.387765], [8.512025, 47.387833], [8.512042, 47.387885], [8.512062, 47.387937], [8.512086, 47.387989], [8.512116, 47.388046], [8.512151, 47.388102], [8.51219, 47.388157], [8.512339, 47.388373], [8.512433, 47.388503], [8.512456, 47.388566], [8.512977, 47.389271], [8.513039, 47.389485]]], "type": "MultiLineString"}, "id": "2646", "properties": {}, "type": "Feature"}, {"bbox": [8.524112, 47.351752, 8.524401, 47.351818], "geometry": {"coordinates": [[[8.524121, 47.351752], [8.524119, 47.351769], [8.524116, 47.351785], [8.524112, 47.351801], [8.524394, 47.351818], [8.524401, 47.351756]]], "type": "MultiLineString"}, "id": "2647", "properties": {}, "type": "Feature"}, {"bbox": [8.512049, 47.386959, 8.513125, 47.389293], "geometry": {"coordinates": [[[8.512422, 47.386959], [8.51236, 47.386992], [8.512283, 47.387068], [8.512217, 47.387148], [8.512161, 47.387232], [8.512116, 47.38732], [8.512079, 47.387427], [8.512057, 47.387536], [8.512049, 47.387645], [8.512057, 47.387755], [8.512087, 47.387866], [8.512132, 47.387975], [8.512189, 47.38808], [8.51226, 47.388183], [8.512317, 47.3883], [8.512986, 47.389208], [8.513084, 47.389201], [8.513093, 47.389293], [8.513125, 47.38929]]], "type": "MultiLineString"}, "id": "2648", "properties": {}, "type": "Feature"}, {"bbox": [8.546961, 47.36542, 8.547357, 47.365766], "geometry": {"coordinates": [[[8.547042, 47.365766], [8.547079, 47.365742], [8.547117, 47.36572], [8.547155, 47.365698], [8.547194, 47.365676], [8.547233, 47.365654], [8.547273, 47.365634], [8.547295, 47.365622], [8.547317, 47.36561], [8.547338, 47.365598], [8.547357, 47.365586], [8.547072, 47.365422], [8.546961, 47.36542]]], "type": "MultiLineString"}, "id": "2649", "properties": {}, "type": "Feature"}, {"bbox": [8.545761, 47.36508, 8.546961, 47.36542], "geometry": {"coordinates": [[[8.546961, 47.36542], [8.546843, 47.36542], [8.546265, 47.365231], [8.546281, 47.365205], [8.5459, 47.36508], [8.545761, 47.365316]]], "type": "MultiLineString"}, "id": "2650", "properties": {}, "type": "Feature"}, {"bbox": [8.523588, 47.394749, 8.524692, 47.395065], "geometry": {"coordinates": [[[8.524692, 47.395065], [8.524573, 47.39499], [8.524513, 47.39496], [8.524459, 47.394942], [8.524383, 47.394916], [8.524304, 47.394899], [8.523642, 47.394761], [8.523588, 47.394749]]], "type": "MultiLineString"}, "id": "2652", "properties": {}, "type": "Feature"}, {"bbox": [8.514985, 47.413584, 8.515761, 47.413612], "geometry": {"coordinates": [[[8.515761, 47.413601], [8.515637, 47.413598], [8.515563, 47.413593], [8.51549, 47.413591], [8.515416, 47.413594], [8.515343, 47.413601], [8.515292, 47.413608], [8.51524, 47.413612], [8.515188, 47.413612], [8.515136, 47.41361], [8.515085, 47.413604], [8.515034, 47.413596], [8.514985, 47.413584]]], "type": "MultiLineString"}, "id": "2657", "properties": {}, "type": "Feature"}, {"bbox": [8.58292, 47.395138, 8.584437, 47.396868], "geometry": {"coordinates": [[[8.58292, 47.396868], [8.582955, 47.396843], [8.582987, 47.396818], [8.583019, 47.396793], [8.58305, 47.396767], [8.583122, 47.396703], [8.583173, 47.396655], [8.58322, 47.396604], [8.583263, 47.396552], [8.583437, 47.396326], [8.583491, 47.396256], [8.583598, 47.396115], [8.583675, 47.396059], [8.583997, 47.395856], [8.584323, 47.395658], [8.584389, 47.395621], [8.584398, 47.395616], [8.584405, 47.39561], [8.584412, 47.395604], [8.584419, 47.395598], [8.584424, 47.395591], [8.584428, 47.395584], [8.584432, 47.395576], [8.584435, 47.395569], [8.584436, 47.395561], [8.584437, 47.395553], [8.584437, 47.395546], [8.584436, 47.395538], [8.584434, 47.39553], [8.584431, 47.395523], [8.584427, 47.395516], [8.584422, 47.395509], [8.584416, 47.395502], [8.584134, 47.395208], [8.584125, 47.395197], [8.584117, 47.395186], [8.584111, 47.395174], [8.584106, 47.395162], [8.584104, 47.39515], [8.584102, 47.395138]]], "type": "MultiLineString"}, "id": "2658", "properties": {}, "type": "Feature"}, {"bbox": [8.490126, 47.416286, 8.493833, 47.417206], "geometry": {"coordinates": [[[8.490126, 47.417206], [8.490591, 47.417177], [8.490636, 47.417172], [8.49068, 47.417165], [8.490723, 47.417157], [8.490766, 47.417147], [8.490808, 47.417136], [8.490849, 47.417124], [8.490849, 47.417124], [8.49109, 47.417049], [8.49136, 47.416973], [8.49136, 47.416973], [8.491438, 47.416954], [8.4915, 47.416944], [8.491563, 47.416936], [8.491626, 47.416932], [8.491781, 47.416927], [8.491784, 47.416927], [8.491787, 47.416926], [8.491791, 47.416926], [8.491803, 47.416926], [8.491816, 47.416925], [8.491829, 47.416924], [8.491851, 47.416921], [8.491873, 47.416918], [8.491895, 47.416914], [8.491982, 47.416896], [8.492067, 47.416874], [8.49215, 47.416849], [8.49256, 47.416714], [8.493132, 47.416526], [8.493833, 47.416286]]], "type": "MultiLineString"}, "id": "2660", "properties": {}, "type": "Feature"}, {"bbox": [8.545639, 47.372954, 8.546835, 47.374582], "geometry": {"coordinates": [[[8.546791, 47.372954], [8.546708, 47.373138], [8.546835, 47.373175], [8.546706, 47.373354], [8.546544, 47.373534], [8.546273, 47.37387], [8.546186, 47.373907], [8.546026, 47.374121], [8.545639, 47.374582]]], "type": "MultiLineString"}, "id": "2662", "properties": {}, "type": "Feature"}, {"bbox": [8.482595, 47.410712, 8.501205, 47.420561], "geometry": {"coordinates": [[[8.501185, 47.410712], [8.501205, 47.410846], [8.501105, 47.411524], [8.500929, 47.412414], [8.500759, 47.413294], [8.50073, 47.41344], [8.500716, 47.413551], [8.500717, 47.413662], [8.500732, 47.413773], [8.50094, 47.41475], [8.500947, 47.414795], [8.500948, 47.414839], [8.500943, 47.414884], [8.500932, 47.414928], [8.500915, 47.414971], [8.500893, 47.415013], [8.500767, 47.415222], [8.500665, 47.415348], [8.500646, 47.41537], [8.500625, 47.415391], [8.500601, 47.415411], [8.500572, 47.415432], [8.50054, 47.415452], [8.500506, 47.41547], [8.500471, 47.415486], [8.500433, 47.4155], [8.499841, 47.415703], [8.499783, 47.415725], [8.499728, 47.41575], [8.499676, 47.415777], [8.499628, 47.415808], [8.499348, 47.416001], [8.4989, 47.416318], [8.4989, 47.416318], [8.498856, 47.416348], [8.498812, 47.416378], [8.498767, 47.416407], [8.498619, 47.416496], [8.498494, 47.416541], [8.497896, 47.416676], [8.49599, 47.417104], [8.495899, 47.417122], [8.495841, 47.417135], [8.495785, 47.417151], [8.495732, 47.417171], [8.495675, 47.417204], [8.495624, 47.41724], [8.495578, 47.41728], [8.495538, 47.417322], [8.494788, 47.418204], [8.494387, 47.418688], [8.494348, 47.418732], [8.494303, 47.418773], [8.494254, 47.418811], [8.4942, 47.418846], [8.494142, 47.418879], [8.49408, 47.418908], [8.494015, 47.418933], [8.493131, 47.419248], [8.492132, 47.419605], [8.491545, 47.419801], [8.491471, 47.419825], [8.491394, 47.419846], [8.491315, 47.419864], [8.491244, 47.419878], [8.491172, 47.41989], [8.491099, 47.4199], [8.490405, 47.419982], [8.489679, 47.420072], [8.489431, 47.420108], [8.489187, 47.420155], [8.488948, 47.420213], [8.488535, 47.420323], [8.488446, 47.420345], [8.488356, 47.420363], [8.488264, 47.420378], [8.488161, 47.420391], [8.488057, 47.420399], [8.487952, 47.420402], [8.487679, 47.420406], [8.487559, 47.420406], [8.48744, 47.420404], [8.48732, 47.420398], [8.486496, 47.420351], [8.486433, 47.420347], [8.48637, 47.420341], [8.486308, 47.420334], [8.485884, 47.420281], [8.485818, 47.420274], [8.485752, 47.420271], [8.485686, 47.420272], [8.485619, 47.420276], [8.485554, 47.420284], [8.485146, 47.42034], [8.485079, 47.420349], [8.484887, 47.420372], [8.484694, 47.420395], [8.484501, 47.420416], [8.484475, 47.420419], [8.484449, 47.420421], [8.484423, 47.420424], [8.484383, 47.420428], [8.48314, 47.420555], [8.483062, 47.42056], [8.482985, 47.420561], [8.482907, 47.420557], [8.482831, 47.420548], [8.482595, 47.420516]]], "type": "MultiLineString"}, "id": "2663", "properties": {}, "type": "Feature"}, {"bbox": [8.542901, 47.37234, 8.543889, 47.37266], "geometry": {"coordinates": [[[8.543773, 47.372656], [8.543806, 47.37266], [8.543889, 47.372347], [8.543842, 47.37234], [8.543785, 47.372341], [8.543445, 47.372368], [8.543433, 47.3725], [8.543132, 47.372493], [8.54309, 47.37245], [8.543058, 47.372416], [8.542922, 47.372422], [8.542901, 47.372466]]], "type": "MultiLineString"}, "id": "2664", "properties": {}, "type": "Feature"}, {"bbox": [8.498786, 47.400628, 8.499591, 47.401081], "geometry": {"coordinates": [[[8.498786, 47.400628], [8.499074, 47.400775], [8.499175, 47.40088], [8.499591, 47.401081]]], "type": "MultiLineString"}, "id": "2665", "properties": {}, "type": "Feature"}, {"bbox": [8.531537, 47.364576, 8.53193, 47.364624], "geometry": {"coordinates": [[[8.53193, 47.364624], [8.53183, 47.364621], [8.53173, 47.364613], [8.531633, 47.364597], [8.531537, 47.364576]]], "type": "MultiLineString"}, "id": "2666", "properties": {}, "type": "Feature"}, {"bbox": [8.518908, 47.373837, 8.520274, 47.3774], "geometry": {"coordinates": [[[8.520274, 47.373837], [8.520207, 47.373913], [8.520068, 47.374028], [8.519934, 47.374147], [8.519805, 47.374268], [8.519648, 47.374439], [8.519507, 47.374616], [8.519385, 47.3748], [8.519368, 47.374834], [8.519356, 47.374869], [8.519349, 47.374905], [8.519346, 47.374941], [8.519349, 47.374977], [8.519113, 47.375434], [8.519044, 47.375605], [8.518989, 47.37578], [8.518949, 47.375956], [8.518917, 47.376168], [8.518908, 47.37638], [8.518924, 47.376593], [8.518964, 47.376804], [8.519012, 47.376995], [8.519081, 47.377183], [8.519169, 47.377367], [8.519306, 47.3774]]], "type": "MultiLineString"}, "id": "2667", "properties": {}, "type": "Feature"}, {"bbox": [8.583924, 47.374256, 8.591169, 47.376494], "geometry": {"coordinates": [[[8.583924, 47.376494], [8.584747, 47.37644], [8.585238, 47.376408], [8.585429, 47.376391], [8.585619, 47.376365], [8.585805, 47.37633], [8.586334, 47.376218], [8.586688, 47.376165], [8.586764, 47.376152], [8.58684, 47.376135], [8.586914, 47.376116], [8.587254, 47.376019], [8.587331, 47.375995], [8.58742, 47.375968], [8.587477, 47.375951], [8.587535, 47.375935], [8.587593, 47.37592], [8.58767, 47.375899], [8.587745, 47.375873], [8.587817, 47.375844], [8.588123, 47.37571], [8.588393, 47.375606], [8.588854, 47.375392], [8.589026, 47.375315], [8.589452, 47.375125], [8.590279, 47.374691], [8.590911, 47.37441], [8.591004, 47.374364], [8.59109, 47.374313], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "2668", "properties": {}, "type": "Feature"}, {"bbox": [8.612193, 47.363209, 8.615209, 47.364026], "geometry": {"coordinates": [[[8.612193, 47.363209], [8.612325, 47.363424], [8.61254, 47.363694], [8.612647, 47.363873], [8.612664, 47.363889], [8.612682, 47.363904], [8.612703, 47.363917], [8.612725, 47.363929], [8.612748, 47.36394], [8.612773, 47.36395], [8.612799, 47.363957], [8.612826, 47.363964], [8.612854, 47.363968], [8.613303, 47.363997], [8.613509, 47.363992], [8.613982, 47.363931], [8.614282, 47.363881], [8.614451, 47.363887], [8.614711, 47.363922], [8.615012, 47.363965], [8.615209, 47.364026]]], "type": "MultiLineString"}, "id": "2669", "properties": {}, "type": "Feature"}, {"bbox": [8.516891, 47.337213, 8.51916, 47.349006], "geometry": {"coordinates": [[[8.516918, 47.349006], [8.51691, 47.348935], [8.516891, 47.34876], [8.516949, 47.348568], [8.517136, 47.347942], [8.517334, 47.347283], [8.5175, 47.346732], [8.51756, 47.346575], [8.517605, 47.346484], [8.517644, 47.346418], [8.51775, 47.346237], [8.518059, 47.345726], [8.518369, 47.345212], [8.51843, 47.345105], [8.518496, 47.34497], [8.518541, 47.344853], [8.518605, 47.344628], [8.518665, 47.344496], [8.518764, 47.344267], [8.518793, 47.344192], [8.518829, 47.344079], [8.518872, 47.343904], [8.518894, 47.34379], [8.518918, 47.34364], [8.51898, 47.34339], [8.518983, 47.343128], [8.518969, 47.342966], [8.518946, 47.342801], [8.518841, 47.342441], [8.518692, 47.342099], [8.518493, 47.34178], [8.518374, 47.341603], [8.517861, 47.34086], [8.517492, 47.340323], [8.517184, 47.339765], [8.517112, 47.339476], [8.517075, 47.33934], [8.517056, 47.339202], [8.517055, 47.339063], [8.517073, 47.338925], [8.517108, 47.338788], [8.517161, 47.338654], [8.517231, 47.338524], [8.517318, 47.338399], [8.517421, 47.338279], [8.517539, 47.338166], [8.517672, 47.338061], [8.517818, 47.337964], [8.51824, 47.337693], [8.518689, 47.337443], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "2670", "properties": {}, "type": "Feature"}, {"bbox": [8.495047, 47.396107, 8.496447, 47.396684], "geometry": {"coordinates": [[[8.495047, 47.396684], [8.49546, 47.396514], [8.496447, 47.396107]]], "type": "MultiLineString"}, "id": "2678", "properties": {}, "type": "Feature"}, {"bbox": [8.513345, 47.3947, 8.513371, 47.394793], "geometry": {"coordinates": [[[8.513345, 47.3947], [8.513371, 47.394793]]], "type": "MultiLineString"}, "id": "2679", "properties": {}, "type": "Feature"}, {"bbox": [8.512257, 47.40079, 8.523151, 47.403138], "geometry": {"coordinates": [[[8.523151, 47.402828], [8.522803, 47.402826], [8.522718, 47.402823], [8.522655, 47.402821], [8.52239, 47.402811], [8.522339, 47.402811], [8.52229, 47.402813], [8.52224, 47.402818], [8.522191, 47.402826], [8.521518, 47.402956], [8.521436, 47.40297], [8.521352, 47.402978], [8.521267, 47.402983], [8.521152, 47.402985], [8.520653, 47.402997], [8.520514, 47.403004], [8.520375, 47.403019], [8.520239, 47.403042], [8.519806, 47.403128], [8.51977, 47.403134], [8.519734, 47.403137], [8.519698, 47.403138], [8.519661, 47.403137], [8.519625, 47.403134], [8.519589, 47.403129], [8.519554, 47.403121], [8.519221, 47.403035], [8.518107, 47.402727], [8.518058, 47.402713], [8.518024, 47.402677], [8.51789, 47.402619], [8.517875, 47.402607], [8.517593, 47.402385], [8.517559, 47.40236], [8.517522, 47.402336], [8.517484, 47.402313], [8.517227, 47.402173], [8.517185, 47.402148], [8.517146, 47.402121], [8.51711, 47.402092], [8.517078, 47.402061], [8.516999, 47.401987], [8.51691, 47.401917], [8.516813, 47.401854], [8.516708, 47.401796], [8.516595, 47.401746], [8.516482, 47.401699], [8.516082, 47.401508], [8.515963, 47.401441], [8.515865, 47.401374], [8.515852, 47.401366], [8.515849, 47.401363], [8.515586, 47.401154], [8.515498, 47.401087], [8.515431, 47.401043], [8.515355, 47.401009], [8.51527, 47.400986], [8.51514, 47.400961], [8.515029, 47.400948], [8.514715, 47.400917], [8.514625, 47.40091], [8.514306, 47.400872], [8.514251, 47.400865], [8.514195, 47.400859], [8.51414, 47.400854], [8.513929, 47.400836], [8.513371, 47.400793], [8.51331, 47.40079], [8.513249, 47.400791], [8.513188, 47.400795], [8.513128, 47.400802], [8.512824, 47.40085], [8.512756, 47.400858], [8.512686, 47.400863], [8.512617, 47.400864], [8.512547, 47.400861], [8.512479, 47.400854], [8.512257, 47.400824]]], "type": "MultiLineString"}, "id": "2680", "properties": {}, "type": "Feature"}, {"bbox": [8.539243, 47.414313, 8.540144, 47.417065], "geometry": {"coordinates": [[[8.539243, 47.414313], [8.539387, 47.415022], [8.539411, 47.415197], [8.53949, 47.415834], [8.539557, 47.416051], [8.539646, 47.416265], [8.539757, 47.416474], [8.540144, 47.417065]]], "type": "MultiLineString"}, "id": "2683", "properties": {}, "type": "Feature"}, {"bbox": [8.497159, 47.394298, 8.503698, 47.396482], "geometry": {"coordinates": [[[8.497159, 47.396482], [8.497311, 47.396476], [8.498278, 47.3959], [8.499027, 47.395436], [8.499412, 47.395201], [8.499669, 47.395047], [8.499945, 47.39491], [8.500239, 47.394791], [8.500547, 47.39469], [8.500868, 47.394609], [8.501199, 47.394548], [8.501536, 47.394508], [8.503698, 47.394298]]], "type": "MultiLineString"}, "id": "2697", "properties": {}, "type": "Feature"}, {"bbox": [8.548022, 47.36712, 8.548377, 47.36771], "geometry": {"coordinates": [[[8.548377, 47.36712], [8.548022, 47.36771]]], "type": "MultiLineString"}, "id": "2698", "properties": {}, "type": "Feature"}, {"bbox": [8.497301, 47.368319, 8.503073, 47.373816], "geometry": {"coordinates": [[[8.503073, 47.373816], [8.50241, 47.373223], [8.502139, 47.373006], [8.501977, 47.372848], [8.501367, 47.372192], [8.501351, 47.372173], [8.501338, 47.372152], [8.501327, 47.372131], [8.501319, 47.372109], [8.501314, 47.372087], [8.501312, 47.372064], [8.501312, 47.372042], [8.501316, 47.372019], [8.501321, 47.371959], [8.501318, 47.3719], [8.501308, 47.37184], [8.50129, 47.371781], [8.501265, 47.371724], [8.501232, 47.371668], [8.501192, 47.371615], [8.500851, 47.371309], [8.500338, 47.370937], [8.500116, 47.370808], [8.500083, 47.370788], [8.500053, 47.370765], [8.500026, 47.370741], [8.500002, 47.370715], [8.499983, 47.370688], [8.499891, 47.370573], [8.499788, 47.370464], [8.499674, 47.370359], [8.498923, 47.369847], [8.498718, 47.369742], [8.4985, 47.369668], [8.498308, 47.369608], [8.498125, 47.369536], [8.497952, 47.369454], [8.497789, 47.369363], [8.497639, 47.369262], [8.497524, 47.36921], [8.497301, 47.369134], [8.497385, 47.369023], [8.497442, 47.368905], [8.497351, 47.368893], [8.49741, 47.368672], [8.497367, 47.368634], [8.497418, 47.36846], [8.497464, 47.368319]]], "type": "MultiLineString"}, "id": "2699", "properties": {}, "type": "Feature"}, {"bbox": [8.580168, 47.368693, 8.600686, 47.374578], "geometry": {"coordinates": [[[8.580168, 47.374578], [8.580458, 47.374527], [8.580567, 47.374519], [8.580675, 47.374505], [8.580781, 47.374484], [8.580883, 47.374458], [8.580982, 47.374425], [8.581076, 47.374386], [8.581229, 47.374311], [8.581374, 47.374229], [8.581512, 47.37414], [8.581835, 47.373929], [8.582233, 47.373679], [8.582406, 47.373593], [8.582584, 47.373512], [8.582768, 47.373438], [8.58292, 47.373383], [8.583054, 47.373335], [8.583186, 47.373285], [8.583316, 47.373233], [8.583317, 47.373233], [8.583317, 47.373233], [8.583492, 47.373155], [8.583659, 47.37307], [8.583817, 47.372977], [8.584492, 47.372543], [8.584639, 47.372439], [8.584772, 47.372326], [8.584889, 47.372205], [8.584989, 47.372078], [8.585197, 47.371783], [8.585358, 47.37157], [8.585535, 47.371362], [8.585728, 47.371161], [8.58589, 47.371008], [8.586111, 47.370809], [8.58694, 47.370085], [8.58698, 47.370052], [8.587021, 47.370019], [8.587063, 47.369987], [8.587198, 47.369896], [8.587343, 47.369813], [8.587499, 47.369739], [8.587662, 47.369674], [8.587834, 47.369618], [8.588012, 47.369573], [8.588194, 47.369537], [8.588287, 47.369524], [8.588381, 47.369513], [8.588476, 47.369505], [8.590372, 47.369366], [8.590537, 47.369353], [8.590701, 47.369337], [8.590865, 47.369318], [8.591024, 47.369297], [8.591182, 47.369273], [8.59134, 47.369247], [8.592708, 47.369009], [8.594244, 47.368713], [8.594307, 47.368703], [8.594371, 47.368696], [8.594436, 47.368693], [8.594501, 47.368694], [8.594566, 47.368699], [8.59463, 47.368707], [8.595548, 47.368852], [8.59563, 47.368864], [8.595712, 47.368875], [8.595795, 47.368885], [8.595872, 47.368893], [8.595949, 47.368899], [8.596026, 47.368905], [8.597257, 47.368981], [8.59767, 47.369019], [8.598077, 47.369079], [8.598476, 47.369162], [8.598769, 47.369231], [8.598844, 47.369252], [8.598915, 47.369278], [8.598982, 47.369308], [8.599066, 47.36935], [8.599107, 47.369369], [8.59915, 47.369385], [8.599196, 47.369398], [8.599243, 47.369409], [8.599481, 47.369454], [8.599596, 47.36948], [8.599708, 47.369511], [8.599816, 47.369548], [8.600094, 47.369651], [8.600176, 47.369685], [8.600255, 47.369721], [8.600331, 47.369761], [8.600513, 47.369865], [8.600686, 47.369975]]], "type": "MultiLineString"}, "id": "2700", "properties": {}, "type": "Feature"}, {"bbox": [8.523603, 47.325062, 8.524713, 47.329211], "geometry": {"coordinates": [[[8.524713, 47.329211], [8.524682, 47.328843], [8.524675, 47.328756], [8.524671, 47.328327], [8.52467, 47.328012], [8.524665, 47.327949], [8.52466, 47.327899], [8.524657, 47.327885], [8.524599, 47.327523], [8.524508, 47.327082], [8.524412, 47.326718], [8.524393, 47.326646], [8.524319, 47.326361], [8.524313, 47.326339], [8.524286, 47.32624], [8.524244, 47.326082], [8.524202, 47.325905], [8.524189, 47.325769], [8.524173, 47.325588], [8.524146, 47.325547], [8.524134, 47.325529], [8.524033, 47.325443], [8.5239, 47.32533], [8.523629, 47.325086], [8.523603, 47.325062]]], "type": "MultiLineString"}, "id": "2701", "properties": {}, "type": "Feature"}, {"bbox": [8.575555, 47.390056, 8.576921, 47.393803], "geometry": {"coordinates": [[[8.57559, 47.390056], [8.575596, 47.390131], [8.575598, 47.390255], [8.575588, 47.390379], [8.575563, 47.390501], [8.575563, 47.390502], [8.575561, 47.390512], [8.575561, 47.390512], [8.575556, 47.390547], [8.575555, 47.390581], [8.575558, 47.390616], [8.575566, 47.39065], [8.575578, 47.390683], [8.575593, 47.390716], [8.575665, 47.390854], [8.575741, 47.390992], [8.575821, 47.391128], [8.575855, 47.391183], [8.575889, 47.391239], [8.575925, 47.391294], [8.575951, 47.391339], [8.575973, 47.391384], [8.575991, 47.391431], [8.576036, 47.39156], [8.576068, 47.39165], [8.576096, 47.3917], [8.576126, 47.391749], [8.576158, 47.391798], [8.57624, 47.391918], [8.576322, 47.392038], [8.576409, 47.392316], [8.576468, 47.39251], [8.576594, 47.392846], [8.576626, 47.39293], [8.576666, 47.39306], [8.576705, 47.39319], [8.576744, 47.39332], [8.576744, 47.39332], [8.576921, 47.393803]]], "type": "MultiLineString"}, "id": "2702", "properties": {}, "type": "Feature"}, {"bbox": [8.579143, 47.365745, 8.580612, 47.367195], "geometry": {"coordinates": [[[8.580612, 47.366071], [8.580566, 47.366028], [8.580527, 47.365984], [8.580483, 47.365941], [8.580434, 47.365901], [8.580381, 47.365863], [8.580332, 47.365823], [8.580287, 47.36578], [8.580279, 47.365774], [8.58027, 47.365768], [8.58026, 47.365763], [8.580249, 47.365758], [8.580238, 47.365754], [8.580227, 47.365751], [8.580215, 47.365749], [8.580203, 47.365747], [8.58019, 47.365746], [8.580178, 47.365745], [8.580165, 47.365746], [8.580153, 47.365747], [8.580141, 47.365749], [8.580129, 47.365752], [8.579807, 47.365855], [8.579733, 47.365878], [8.579661, 47.365905], [8.579591, 47.365934], [8.579571, 47.365945], [8.579552, 47.365957], [8.579534, 47.36597], [8.579519, 47.365984], [8.579505, 47.365999], [8.579493, 47.366014], [8.579482, 47.366031], [8.579474, 47.366047], [8.579468, 47.366064], [8.579464, 47.366082], [8.579463, 47.366099], [8.57947, 47.366152], [8.579484, 47.366205], [8.579503, 47.366257], [8.579515, 47.366282], [8.579525, 47.366308], [8.579533, 47.366334], [8.57954, 47.366376], [8.57954, 47.366418], [8.579536, 47.366459], [8.579525, 47.3665], [8.579503, 47.366544], [8.579476, 47.366585], [8.579443, 47.366625], [8.579404, 47.366663], [8.579379, 47.366692], [8.579357, 47.366723], [8.579338, 47.366755], [8.57932, 47.366794], [8.5793, 47.366833], [8.579278, 47.366871], [8.579265, 47.366894], [8.57925, 47.366916], [8.579234, 47.366938], [8.579213, 47.366971], [8.579196, 47.367005], [8.579185, 47.367041], [8.579143, 47.367195]]], "type": "MultiLineString"}, "id": "2703", "properties": {}, "type": "Feature"}, {"bbox": [8.571182, 47.406083, 8.571724, 47.406237], "geometry": {"coordinates": [[[8.571724, 47.406207], [8.571707, 47.406214], [8.571689, 47.406221], [8.57167, 47.406226], [8.57165, 47.406231], [8.57163, 47.406234], [8.57161, 47.406236], [8.571589, 47.406237], [8.571568, 47.406236], [8.571548, 47.406235], [8.571528, 47.406232], [8.571508, 47.406228], [8.571489, 47.406222], [8.57147, 47.406216], [8.571453, 47.406209], [8.571437, 47.4062], [8.571421, 47.406191], [8.571407, 47.40618], [8.571391, 47.406165], [8.571373, 47.406151], [8.571354, 47.406138], [8.571333, 47.406126], [8.57131, 47.406115], [8.571286, 47.406106], [8.571261, 47.406098], [8.571235, 47.406091], [8.571209, 47.406086], [8.571182, 47.406083]]], "type": "MultiLineString"}, "id": "2704", "properties": {}, "type": "Feature"}, {"bbox": [8.484553, 47.374191, 8.485075, 47.374866], "geometry": {"coordinates": [[[8.484964, 47.374866], [8.484952, 47.374837], [8.484944, 47.374807], [8.48494, 47.374777], [8.48494, 47.374747], [8.484943, 47.374718], [8.484951, 47.374688], [8.484962, 47.374659], [8.484977, 47.374631], [8.484995, 47.374603], [8.48502, 47.374571], [8.48504, 47.374538], [8.485056, 47.374504], [8.485066, 47.374469], [8.485072, 47.374433], [8.485074, 47.374397], [8.485075, 47.374381], [8.485075, 47.374365], [8.485073, 47.374349], [8.485068, 47.374334], [8.485062, 47.374319], [8.485054, 47.374304], [8.485044, 47.374289], [8.485032, 47.374276], [8.485019, 47.374263], [8.485004, 47.374251], [8.484988, 47.37424], [8.48497, 47.374229], [8.484951, 47.37422], [8.484931, 47.374212], [8.48491, 47.374205], [8.484888, 47.3742], [8.484866, 47.374195], [8.484843, 47.374192], [8.48482, 47.374191], [8.484798, 47.374192], [8.484775, 47.374193], [8.484753, 47.374196], [8.484731, 47.374201], [8.48471, 47.374206], [8.48469, 47.374213], [8.48467, 47.374221], [8.484652, 47.374231], [8.484635, 47.374241], [8.48462, 47.374252], [8.484606, 47.374264], [8.484593, 47.374277], [8.484583, 47.374291], [8.484574, 47.374305], [8.484567, 47.374319], [8.484562, 47.374334], [8.484556, 47.374355], [8.484554, 47.374375], [8.484553, 47.374396], [8.484556, 47.374417], [8.484561, 47.374437], [8.484569, 47.374457], [8.48458, 47.374476]]], "type": "MultiLineString"}, "id": "2705", "properties": {}, "type": "Feature"}, {"bbox": [8.577842, 47.408068, 8.578577, 47.409076], "geometry": {"coordinates": [[[8.577842, 47.408068], [8.577939, 47.408172], [8.578498, 47.408743], [8.578457, 47.408842], [8.578577, 47.409076]]], "type": "MultiLineString"}, "id": "2706", "properties": {}, "type": "Feature"}, {"bbox": [8.584464, 47.356672, 8.585405, 47.358312], "geometry": {"coordinates": [[[8.584485, 47.358312], [8.584469, 47.358093], [8.584464, 47.358049], [8.584466, 47.358006], [8.584473, 47.357962], [8.584486, 47.35792], [8.584505, 47.357878], [8.58453, 47.357838], [8.584559, 47.357799], [8.584594, 47.357762], [8.584839, 47.357491], [8.585057, 47.357209], [8.585248, 47.356918], [8.585405, 47.356672]]], "type": "MultiLineString"}, "id": "2707", "properties": {}, "type": "Feature"}, {"bbox": [8.529857, 47.366725, 8.531561, 47.367893], "geometry": {"coordinates": [[[8.531561, 47.366725], [8.531444, 47.366825], [8.53133, 47.366906], [8.531295, 47.366935], [8.531265, 47.366966], [8.531238, 47.366999], [8.531176, 47.367083], [8.530868, 47.367445], [8.530853, 47.36747], [8.530735, 47.367615], [8.53071, 47.367641], [8.530697, 47.367655], [8.530681, 47.367669], [8.530664, 47.367682], [8.530645, 47.367694], [8.530625, 47.367704], [8.530604, 47.367713], [8.530582, 47.367722], [8.530558, 47.367728], [8.530534, 47.367733], [8.530177, 47.367819], [8.529857, 47.367893]]], "type": "MultiLineString"}, "id": "2708", "properties": {}, "type": "Feature"}, {"bbox": [8.539851, 47.402677, 8.542318, 47.40443], "geometry": {"coordinates": [[[8.539851, 47.402677], [8.540194, 47.402908], [8.540197, 47.40291], [8.540199, 47.402911], [8.5402, 47.402913], [8.540202, 47.402915], [8.540204, 47.402917], [8.540205, 47.402919], [8.540206, 47.402921], [8.540253, 47.40304], [8.540255, 47.403042], [8.540257, 47.403045], [8.540259, 47.403047], [8.540261, 47.403049], [8.540264, 47.40305], [8.540266, 47.403052], [8.540269, 47.403053], [8.540327, 47.403082], [8.540328, 47.403082], [8.540329, 47.403083], [8.540331, 47.403084], [8.540332, 47.403085], [8.540332, 47.403086], [8.540333, 47.403087], [8.540334, 47.403089], [8.540334, 47.40309], [8.540334, 47.403091], [8.540334, 47.403092], [8.540334, 47.403094], [8.540334, 47.403095], [8.540343, 47.403222], [8.540342, 47.403225], [8.540341, 47.403229], [8.54034, 47.403233], [8.540338, 47.403236], [8.540335, 47.403239], [8.540225, 47.403386], [8.540221, 47.403392], [8.540218, 47.403399], [8.540216, 47.403406], [8.540215, 47.403413], [8.540214, 47.403421], [8.540215, 47.403428], [8.540217, 47.403435], [8.540219, 47.403442], [8.540223, 47.403448], [8.540227, 47.403455], [8.540232, 47.403461], [8.540238, 47.403467], [8.540244, 47.403473], [8.540252, 47.403478], [8.54026, 47.403482], [8.540268, 47.403487], [8.540277, 47.40349], [8.540739, 47.403698], [8.541017, 47.403835], [8.54127, 47.403956], [8.541328, 47.403943], [8.54141, 47.403929], [8.541519, 47.403977], [8.54162, 47.404031], [8.541714, 47.404092], [8.541917, 47.404236], [8.542008, 47.404292], [8.542105, 47.404344], [8.542206, 47.404392], [8.542242, 47.404406], [8.542279, 47.404419], [8.542318, 47.40443]]], "type": "MultiLineString"}, "id": "2709", "properties": {}, "type": "Feature"}, {"bbox": [8.518067, 47.39936, 8.52894, 47.401729], "geometry": {"coordinates": [[[8.52894, 47.399806], [8.528939, 47.399722], [8.528937, 47.399709], [8.528934, 47.399697], [8.528929, 47.399685], [8.528923, 47.399673], [8.528916, 47.399662], [8.528907, 47.399651], [8.528897, 47.39964], [8.528885, 47.399631], [8.528758, 47.399531], [8.528726, 47.399508], [8.52869, 47.399487], [8.528652, 47.399468], [8.528611, 47.399451], [8.528569, 47.399437], [8.528525, 47.399426], [8.528479, 47.399417], [8.528433, 47.399411], [8.527955, 47.399365], [8.527863, 47.39936], [8.527771, 47.39936], [8.527679, 47.399365], [8.527589, 47.399377], [8.5275, 47.399394], [8.527414, 47.399416], [8.527318, 47.399443], [8.52722, 47.399466], [8.527121, 47.399485], [8.52704, 47.399499], [8.527002, 47.399506], [8.526302, 47.399627], [8.52616, 47.399656], [8.526021, 47.399693], [8.525888, 47.399738], [8.525761, 47.39979], [8.525641, 47.399849], [8.525529, 47.399915], [8.525425, 47.399987], [8.525372, 47.400026], [8.525347, 47.400045], [8.525077, 47.400249], [8.524653, 47.400558], [8.524355, 47.400782], [8.524261, 47.400843], [8.524219, 47.40087], [8.523892, 47.400989], [8.523819, 47.401013], [8.523743, 47.401031], [8.523665, 47.401046], [8.523585, 47.401055], [8.523505, 47.401059], [8.523505, 47.401059], [8.522753, 47.401076], [8.522313, 47.401086], [8.522247, 47.401086], [8.522183, 47.401081], [8.522118, 47.401073], [8.522055, 47.401061], [8.521994, 47.401045], [8.521896, 47.401016], [8.5218, 47.400984], [8.521705, 47.400949], [8.521655, 47.400932], [8.521602, 47.400918], [8.521548, 47.400906], [8.521494, 47.400898], [8.521438, 47.400892], [8.521055, 47.400864], [8.521005, 47.400862], [8.520955, 47.400861], [8.520905, 47.400863], [8.520549, 47.40088], [8.520484, 47.400885], [8.52042, 47.400892], [8.520357, 47.400902], [8.520298, 47.400912], [8.520239, 47.400922], [8.520179, 47.400932], [8.520145, 47.400937], [8.52007, 47.40095], [8.519997, 47.400966], [8.519925, 47.400985], [8.519498, 47.401106], [8.519408, 47.401128], [8.519316, 47.401144], [8.519223, 47.401154], [8.519128, 47.401159], [8.519033, 47.401157], [8.518938, 47.40115], [8.518845, 47.401136], [8.518806, 47.401128], [8.518768, 47.401118], [8.518732, 47.401106], [8.518697, 47.401091], [8.518664, 47.401075], [8.518512, 47.400993], [8.518406, 47.40094], [8.518388, 47.400932], [8.518369, 47.400925], [8.51835, 47.400919], [8.51833, 47.400915], [8.518309, 47.400911], [8.518288, 47.400909], [8.518267, 47.400908], [8.518245, 47.400908], [8.518224, 47.40091], [8.518203, 47.400912], [8.518183, 47.400916], [8.518087, 47.400969], [8.518067, 47.401051], [8.51807, 47.40106], [8.518075, 47.401069], [8.51808, 47.401077], [8.518087, 47.401085], [8.518094, 47.401093], [8.518103, 47.4011], [8.518113, 47.401107], [8.518123, 47.401113], [8.518437, 47.401278], [8.518474, 47.401299], [8.51851, 47.401321], [8.518544, 47.401344], [8.518586, 47.401372], [8.518632, 47.401396], [8.518681, 47.401418], [8.518734, 47.401436], [8.51885, 47.401472], [8.518863, 47.401476], [8.518875, 47.401481], [8.518887, 47.401487], [8.518898, 47.401494], [8.518908, 47.401501], [8.518917, 47.401509], [8.518926, 47.401517], [8.518933, 47.401526], [8.518938, 47.401535], [8.518943, 47.401545], [8.518947, 47.401554], [8.518949, 47.401564], [8.518974, 47.401729]]], "type": "MultiLineString"}, "id": "2710", "properties": {}, "type": "Feature"}, {"bbox": [8.483129, 47.412999, 8.488671, 47.417647], "geometry": {"coordinates": [[[8.488671, 47.412999], [8.488537, 47.413077], [8.488267, 47.413292], [8.488232, 47.413321], [8.488201, 47.413353], [8.488174, 47.413386], [8.488151, 47.413421], [8.488141, 47.413437], [8.487702, 47.414168], [8.487203, 47.414989], [8.486771, 47.415731], [8.486679, 47.415885], [8.48658, 47.416036], [8.486475, 47.416185], [8.486468, 47.416196], [8.486372, 47.416328], [8.48634, 47.416367], [8.486304, 47.416404], [8.486264, 47.416439], [8.486219, 47.416471], [8.486171, 47.416501], [8.485726, 47.416752], [8.485381, 47.416933], [8.485302, 47.416975], [8.485145, 47.417057], [8.485076, 47.417093], [8.485005, 47.417127], [8.484933, 47.417159], [8.4849, 47.417173], [8.484753, 47.417231], [8.484603, 47.417284], [8.484448, 47.41733], [8.483983, 47.417464], [8.483792, 47.417516], [8.483598, 47.417564], [8.483402, 47.417607], [8.483129, 47.417647]]], "type": "MultiLineString"}, "id": "2711", "properties": {}, "type": "Feature"}, {"bbox": [8.521637, 47.333329, 8.522379, 47.336406], "geometry": {"coordinates": [[[8.521699, 47.336406], [8.521681, 47.336383], [8.521666, 47.336359], [8.521654, 47.336335], [8.521645, 47.336309], [8.52164, 47.336284], [8.521637, 47.336258], [8.521638, 47.336232], [8.521642, 47.336206], [8.521649, 47.33618], [8.521659, 47.336155], [8.521674, 47.336124], [8.521739, 47.33599], [8.521776, 47.335916], [8.521809, 47.33585], [8.521923, 47.335621], [8.522046, 47.335359], [8.522168, 47.335111], [8.52229, 47.334847], [8.522354, 47.334684], [8.522379, 47.334514], [8.522369, 47.334344], [8.522366, 47.334316], [8.522358, 47.334289], [8.522346, 47.334262], [8.522331, 47.334236], [8.522227, 47.334061], [8.522139, 47.333858], [8.522115, 47.333801], [8.521984, 47.333537], [8.521912, 47.33335], [8.521904, 47.333329]]], "type": "MultiLineString"}, "id": "2712", "properties": {}, "type": "Feature"}, {"bbox": [8.529877, 47.412811, 8.531452, 47.413078], "geometry": {"coordinates": [[[8.531452, 47.412811], [8.529957, 47.413044], [8.529877, 47.413078]]], "type": "MultiLineString"}, "id": "2713", "properties": {}, "type": "Feature"}, {"bbox": [8.482878, 47.375545, 8.483733, 47.375717], "geometry": {"coordinates": [[[8.483733, 47.375717], [8.483729, 47.375715], [8.483706, 47.375707], [8.483681, 47.3757], [8.483655, 47.375694], [8.483558, 47.37568], [8.483461, 47.375668], [8.483362, 47.375658], [8.483274, 47.375648], [8.483186, 47.375637], [8.483098, 47.375625], [8.483073, 47.375621], [8.483049, 47.375615], [8.483026, 47.375608], [8.483003, 47.3756], [8.482962, 47.375581], [8.48292, 47.375563], [8.482878, 47.375545]]], "type": "MultiLineString"}, "id": "2716", "properties": {}, "type": "Feature"}, {"bbox": [8.553073, 47.392487, 8.558019, 47.393343], "geometry": {"coordinates": [[[8.553073, 47.393343], [8.553131, 47.39332], [8.553571, 47.393207], [8.554489, 47.392949], [8.554596, 47.392923], [8.554706, 47.392903], [8.554818, 47.39289], [8.554932, 47.392884], [8.555501, 47.392869], [8.556038, 47.392866], [8.556057, 47.392865], [8.556077, 47.392863], [8.556096, 47.39286], [8.556115, 47.392856], [8.556133, 47.392851], [8.55615, 47.392845], [8.556167, 47.392837], [8.556183, 47.392829], [8.5562, 47.39282], [8.556219, 47.392812], [8.556238, 47.392804], [8.556258, 47.392798], [8.556279, 47.392793], [8.556489, 47.392749], [8.556736, 47.392712], [8.556895, 47.392677], [8.556921, 47.392672], [8.556947, 47.392669], [8.556973, 47.392667], [8.556999, 47.392666], [8.557037, 47.392665], [8.557074, 47.392662], [8.55711, 47.392657], [8.557145, 47.392652], [8.557181, 47.392649], [8.557217, 47.392648], [8.55749, 47.392648], [8.55755, 47.392647], [8.557609, 47.392642], [8.557667, 47.392633], [8.557725, 47.392621], [8.55778, 47.392606], [8.557834, 47.392588], [8.557885, 47.392567], [8.557933, 47.392543], [8.557978, 47.392516], [8.558019, 47.392487]]], "type": "MultiLineString"}, "id": "2717", "properties": {}, "type": "Feature"}, {"bbox": [8.534353, 47.369467, 8.534785, 47.370127], "geometry": {"coordinates": [[[8.534785, 47.369467], [8.534699, 47.369615], [8.534513, 47.369934], [8.534365, 47.370059], [8.534353, 47.370127]]], "type": "MultiLineString"}, "id": "2718", "properties": {}, "type": "Feature"}, {"bbox": [8.503182, 47.421126, 8.507415, 47.422326], "geometry": {"coordinates": [[[8.507415, 47.421126], [8.507188, 47.421141], [8.507178, 47.421142], [8.507168, 47.421143], [8.507158, 47.421145], [8.507149, 47.421146], [8.507139, 47.421147], [8.50713, 47.421149], [8.507125, 47.42115], [8.50712, 47.42115], [8.507114, 47.421151], [8.507109, 47.421152], [8.507104, 47.421153], [8.507098, 47.421155], [8.507098, 47.421155], [8.506472, 47.421329], [8.506012, 47.421416], [8.505942, 47.421424], [8.505352, 47.421574], [8.505343, 47.421576], [8.505335, 47.421579], [8.505328, 47.421583], [8.50532, 47.421587], [8.505313, 47.421591], [8.505307, 47.421596], [8.505277, 47.421626], [8.505064, 47.421801], [8.505058, 47.421806], [8.505051, 47.42181], [8.505043, 47.421813], [8.505036, 47.421816], [8.505027, 47.421819], [8.504512, 47.421958], [8.50414, 47.422079], [8.504101, 47.422091], [8.504062, 47.422103], [8.504022, 47.422113], [8.503182, 47.422326]]], "type": "MultiLineString"}, "id": "2719", "properties": {}, "type": "Feature"}, {"bbox": [8.474523, 47.383801, 8.47534, 47.38547], "geometry": {"coordinates": [[[8.475195, 47.38547], [8.4751, 47.385402], [8.475073, 47.385243], [8.47503, 47.385134], [8.474658, 47.384704], [8.474629, 47.384662], [8.474533, 47.384479], [8.474523, 47.38446], [8.474839, 47.384147], [8.475042, 47.383974], [8.475272, 47.383838], [8.47534, 47.383801]]], "type": "MultiLineString"}, "id": "2720", "properties": {}, "type": "Feature"}, {"bbox": [8.484901, 47.386012, 8.485659, 47.386231], "geometry": {"coordinates": [[[8.485659, 47.386012], [8.485551, 47.38607], [8.485506, 47.386096], [8.485457, 47.386119], [8.485406, 47.386139], [8.485352, 47.386155], [8.485296, 47.386169], [8.485239, 47.386179], [8.485181, 47.386185], [8.485121, 47.386188], [8.485065, 47.386194], [8.485009, 47.386203], [8.484954, 47.386216], [8.484901, 47.386231]]], "type": "MultiLineString"}, "id": "2722", "properties": {}, "type": "Feature"}, {"bbox": [8.588409, 47.397841, 8.589669, 47.399114], "geometry": {"coordinates": [[[8.589669, 47.399114], [8.589582, 47.399006], [8.589354, 47.398573], [8.589254, 47.398407], [8.589161, 47.398347], [8.588774, 47.398296], [8.58874, 47.398288], [8.588706, 47.398277], [8.588674, 47.398265], [8.588644, 47.398251], [8.588616, 47.398235], [8.58859, 47.398217], [8.588566, 47.398198], [8.588545, 47.398178], [8.588527, 47.398156], [8.588511, 47.398133], [8.588498, 47.39811], [8.588409, 47.397841]]], "type": "MultiLineString"}, "id": "2723", "properties": {}, "type": "Feature"}, {"bbox": [8.572813, 47.34763, 8.573461, 47.348949], "geometry": {"coordinates": [[[8.572813, 47.348949], [8.572853, 47.34883], [8.573006, 47.348419], [8.573209, 47.348018], [8.573461, 47.34763]]], "type": "MultiLineString"}, "id": "2724", "properties": {}, "type": "Feature"}, {"bbox": [8.545817, 47.3781, 8.546628, 47.378312], "geometry": {"coordinates": [[[8.545817, 47.3781], [8.546628, 47.378312]]], "type": "MultiLineString"}, "id": "2727", "properties": {}, "type": "Feature"}, {"bbox": [8.596537, 47.371167, 8.598431, 47.373494], "geometry": {"coordinates": [[[8.598431, 47.373494], [8.597772, 47.373299], [8.597657, 47.373262], [8.597547, 47.373218], [8.597443, 47.373167], [8.597345, 47.373112], [8.597255, 47.373051], [8.597172, 47.372985], [8.597117, 47.372937], [8.597105, 47.372927], [8.597091, 47.372918], [8.597077, 47.37291], [8.597062, 47.372903], [8.597045, 47.372897], [8.597028, 47.372892], [8.59701, 47.372888], [8.59697, 47.372882], [8.596931, 47.372876], [8.59692, 47.37287], [8.59691, 47.372863], [8.596901, 47.372856], [8.596893, 47.372849], [8.596885, 47.372841], [8.596879, 47.372833], [8.596874, 47.372824], [8.59687, 47.372815], [8.596867, 47.372806], [8.596865, 47.372797], [8.596865, 47.372787], [8.596866, 47.372566], [8.596865, 47.372511], [8.596861, 47.372457], [8.596854, 47.372402], [8.596791, 47.371978], [8.59677, 47.371878], [8.596739, 47.37178], [8.596696, 47.371684], [8.596676, 47.371643], [8.596644, 47.37158], [8.596612, 47.371509], [8.596588, 47.371437], [8.596572, 47.371364], [8.596537, 47.371167]]], "type": "MultiLineString"}, "id": "2730", "properties": {}, "type": "Feature"}, {"bbox": [8.546052, 47.409987, 8.546182, 47.410199], "geometry": {"coordinates": [[[8.546179, 47.409987], [8.54617, 47.41004], [8.546167, 47.410093], [8.546172, 47.410146], [8.546182, 47.410199], [8.546175, 47.410187], [8.546166, 47.410176], [8.546155, 47.410166], [8.546144, 47.410156], [8.546131, 47.410147], [8.546117, 47.410139], [8.546102, 47.410132], [8.546086, 47.410126], [8.546069, 47.41012], [8.546052, 47.410116]]], "type": "MultiLineString"}, "id": "2731", "properties": {}, "type": "Feature"}, {"bbox": [8.506571, 47.409104, 8.507349, 47.409689], "geometry": {"coordinates": [[[8.506571, 47.40928], [8.506657, 47.409251], [8.506972, 47.409689], [8.507163, 47.409627], [8.507114, 47.409555], [8.507349, 47.409479], [8.507091, 47.409104], [8.506657, 47.409251]]], "type": "MultiLineString"}, "id": "2733", "properties": {}, "type": "Feature"}, {"bbox": [8.589784, 47.369318, 8.590865, 47.371604], "geometry": {"coordinates": [[[8.589784, 47.371604], [8.589838, 47.37114], [8.589843, 47.371111], [8.589853, 47.371082], [8.589866, 47.371054], [8.589883, 47.371027], [8.589903, 47.371001], [8.590282, 47.370566], [8.590311, 47.370525], [8.590316, 47.370494], [8.590323, 47.370464], [8.590334, 47.370434], [8.590349, 47.370405], [8.590368, 47.370377], [8.590481, 47.370229], [8.5905, 47.370201], [8.590516, 47.370171], [8.590527, 47.370141], [8.590533, 47.37011], [8.590536, 47.370079], [8.590537, 47.369954], [8.590543, 47.369879], [8.590559, 47.369804], [8.590585, 47.369731], [8.59062, 47.36966], [8.590665, 47.369592], [8.590865, 47.369318]]], "type": "MultiLineString"}, "id": "2734", "properties": {}, "type": "Feature"}, {"bbox": [8.50105, 47.351839, 8.504302, 47.353155], "geometry": {"coordinates": [[[8.504302, 47.351839], [8.503995, 47.35227], [8.503971, 47.35229], [8.503947, 47.352309], [8.503565, 47.352575], [8.503428, 47.352633], [8.50338, 47.352633], [8.503333, 47.35263], [8.503286, 47.352625], [8.50324, 47.352617], [8.503195, 47.352606], [8.503141, 47.352586], [8.503084, 47.352568], [8.503026, 47.352554], [8.502965, 47.352544], [8.502904, 47.352536], [8.50285, 47.352533], [8.502795, 47.352533], [8.50274, 47.352537], [8.502686, 47.352544], [8.502634, 47.352554], [8.502583, 47.352567], [8.502534, 47.352584], [8.502487, 47.352603], [8.502443, 47.352626], [8.502356, 47.352668], [8.502262, 47.352706], [8.502164, 47.352737], [8.502063, 47.352762], [8.501958, 47.352781], [8.501852, 47.352793], [8.501633, 47.35282], [8.501416, 47.352857], [8.501204, 47.352903], [8.501184, 47.35291], [8.501165, 47.352917], [8.501147, 47.352926], [8.501131, 47.352936], [8.501115, 47.352946], [8.501101, 47.352958], [8.501089, 47.35297], [8.501078, 47.352983], [8.501069, 47.352997], [8.501061, 47.353011], [8.501056, 47.353025], [8.501052, 47.35304], [8.50105, 47.353055], [8.50105, 47.35307], [8.501052, 47.353085], [8.501056, 47.3531], [8.501062, 47.353114], [8.501069, 47.353128], [8.501078, 47.353142], [8.501089, 47.353155]]], "type": "MultiLineString"}, "id": "2735", "properties": {}, "type": "Feature"}, {"bbox": [8.589557, 47.358727, 8.590359, 47.359976], "geometry": {"coordinates": [[[8.590359, 47.358727], [8.590244, 47.358892], [8.589643, 47.359829], [8.589557, 47.359976]]], "type": "MultiLineString"}, "id": "2736", "properties": {}, "type": "Feature"}, {"bbox": [8.523766, 47.401029, 8.526196, 47.402203], "geometry": {"coordinates": [[[8.523766, 47.402202], [8.523784, 47.402203], [8.523803, 47.402203], [8.523821, 47.402201], [8.523839, 47.402199], [8.523857, 47.402195], [8.523874, 47.40219], [8.52389, 47.402185], [8.523906, 47.402178], [8.52392, 47.40217], [8.523933, 47.402162], [8.524005, 47.40211], [8.524206, 47.401979], [8.524423, 47.40186], [8.524654, 47.401755], [8.524713, 47.401728], [8.524768, 47.401698], [8.524819, 47.401665], [8.524997, 47.401539], [8.52509, 47.401477], [8.52519, 47.401421], [8.525296, 47.40137], [8.525407, 47.401325], [8.525716, 47.40121], [8.526048, 47.401086], [8.526137, 47.401052], [8.526196, 47.401029]]], "type": "MultiLineString"}, "id": "2737", "properties": {}, "type": "Feature"}, {"bbox": [8.497037, 47.423792, 8.49895, 47.424382], "geometry": {"coordinates": [[[8.49895, 47.42382], [8.498785, 47.423864], [8.498743, 47.423792], [8.497037, 47.424232], [8.49709, 47.424324], [8.497128, 47.424382], [8.498833, 47.423948], [8.498785, 47.423864]]], "type": "MultiLineString"}, "id": "2738", "properties": {}, "type": "Feature"}, {"bbox": [8.558048, 47.362143, 8.558275, 47.36241], "geometry": {"coordinates": [[[8.558275, 47.362143], [8.558048, 47.36241]]], "type": "MultiLineString"}, "id": "2739", "properties": {}, "type": "Feature"}, {"bbox": [8.528278, 47.399212, 8.531896, 47.405116], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531812, 47.399418], [8.531809, 47.399425], [8.531805, 47.399433], [8.531801, 47.39944], [8.531787, 47.399462], [8.531767, 47.399496], [8.531764, 47.399502], [8.531761, 47.399507], [8.531758, 47.399513], [8.531758, 47.399513], [8.531756, 47.39952], [8.531754, 47.399527], [8.531753, 47.399534], [8.531743, 47.399595], [8.531735, 47.399678], [8.531737, 47.399761], [8.531747, 47.399844], [8.531751, 47.399872], [8.53175, 47.3999], [8.531745, 47.399928], [8.531736, 47.399955], [8.531643, 47.400193], [8.531633, 47.400222], [8.531627, 47.400251], [8.531625, 47.40028], [8.531626, 47.400309], [8.531626, 47.400333], [8.531624, 47.400356], [8.531619, 47.400379], [8.531612, 47.400402], [8.531601, 47.400424], [8.531583, 47.40046], [8.531571, 47.400497], [8.531562, 47.400535], [8.531559, 47.400573], [8.531556, 47.400606], [8.531549, 47.400639], [8.531538, 47.400671], [8.531523, 47.400702], [8.531505, 47.400732], [8.531413, 47.400868], [8.53112, 47.401322], [8.531112, 47.401335], [8.531063, 47.40141], [8.531019, 47.401476], [8.53097, 47.401539], [8.530916, 47.401602], [8.53078, 47.401753], [8.530677, 47.401856], [8.53059, 47.40195], [8.530514, 47.402047], [8.530447, 47.402148], [8.530369, 47.40228], [8.530362, 47.402292], [8.530257, 47.402467], [8.530131, 47.402657], [8.530099, 47.402712], [8.530074, 47.402768], [8.530056, 47.402825], [8.530033, 47.4029], [8.530001, 47.402973], [8.529962, 47.403044], [8.529845, 47.403233], [8.529825, 47.40327], [8.529654, 47.403549], [8.529499, 47.403792], [8.529435, 47.403911], [8.529404, 47.40397], [8.529304, 47.404156], [8.529291, 47.404177], [8.529262, 47.404228], [8.529221, 47.404295], [8.529174, 47.40436], [8.529123, 47.404424], [8.52905, 47.404509], [8.529013, 47.404556], [8.528982, 47.404605], [8.528957, 47.404655], [8.528937, 47.404707], [8.528899, 47.404828], [8.528897, 47.404834], [8.528894, 47.404839], [8.528891, 47.404845], [8.528886, 47.40485], [8.528882, 47.404855], [8.528876, 47.404859], [8.52887, 47.404864], [8.528864, 47.404868], [8.528857, 47.404871], [8.528695, 47.404946], [8.52851, 47.405023], [8.528278, 47.405116]]], "type": "MultiLineString"}, "id": "2740", "properties": {}, "type": "Feature"}, {"bbox": [8.539962, 47.366745, 8.540229, 47.367171], "geometry": {"coordinates": [[[8.539962, 47.367171], [8.539986, 47.367108], [8.54006, 47.367124], [8.540062, 47.367125], [8.540064, 47.367125], [8.540067, 47.367125], [8.540069, 47.367126], [8.540071, 47.367126], [8.540073, 47.367125], [8.540075, 47.367125], [8.540078, 47.367125], [8.54008, 47.367124], [8.540082, 47.367123], [8.540084, 47.367123], [8.540085, 47.367122], [8.540087, 47.367121], [8.540089, 47.36712], [8.54009, 47.367118], [8.540091, 47.367117], [8.540092, 47.367116], [8.540093, 47.367114], [8.540094, 47.367113], [8.540227, 47.366783], [8.540228, 47.366781], [8.540228, 47.366778], [8.540229, 47.366775], [8.540228, 47.366773], [8.540228, 47.36677], [8.540227, 47.366768], [8.540226, 47.366765], [8.540224, 47.366763], [8.540223, 47.36676], [8.540221, 47.366758], [8.540218, 47.366756], [8.540216, 47.366754], [8.540213, 47.366752], [8.54021, 47.366751], [8.540207, 47.366749], [8.540203, 47.366748], [8.5402, 47.366747], [8.540196, 47.366746], [8.540192, 47.366745]]], "type": "MultiLineString"}, "id": "2741", "properties": {}, "type": "Feature"}, {"bbox": [8.489481, 47.391843, 8.491386, 47.392791], "geometry": {"coordinates": [[[8.491386, 47.392308], [8.491114, 47.391843], [8.489481, 47.392283], [8.489782, 47.392791], [8.489891, 47.392761]]], "type": "MultiLineString"}, "id": "2743", "properties": {}, "type": "Feature"}, {"bbox": [8.581564, 47.363207, 8.586698, 47.364808], "geometry": {"coordinates": [[[8.581564, 47.364808], [8.581685, 47.364752], [8.581862, 47.364632], [8.581976, 47.364568], [8.582929, 47.364133], [8.583341, 47.363904], [8.583566, 47.363779], [8.584202, 47.36351], [8.585051, 47.363226], [8.585073, 47.36322], [8.585096, 47.363215], [8.58512, 47.363211], [8.585144, 47.363208], [8.585168, 47.363207], [8.585193, 47.363208], [8.585217, 47.36321], [8.58524, 47.363213], [8.585264, 47.363218], [8.585286, 47.363224], [8.585308, 47.363232], [8.585329, 47.36324], [8.585348, 47.36325], [8.585366, 47.363261], [8.585383, 47.363273], [8.585398, 47.363286], [8.585411, 47.3633], [8.585422, 47.363315], [8.585899, 47.363813], [8.585986, 47.363892], [8.586001, 47.363904], [8.586018, 47.363915], [8.586035, 47.363925], [8.586054, 47.363934], [8.586075, 47.363942], [8.586096, 47.363949], [8.586117, 47.363954], [8.58614, 47.363959], [8.586163, 47.363962], [8.586186, 47.363963], [8.586209, 47.363963], [8.586233, 47.363962], [8.586255, 47.363959], [8.586278, 47.363956], [8.5863, 47.36395], [8.586321, 47.363944], [8.586342, 47.363936], [8.586359, 47.363925], [8.586376, 47.363913], [8.58639, 47.3639], [8.586403, 47.363886], [8.586414, 47.363872], [8.586423, 47.363857], [8.586431, 47.363841], [8.586436, 47.363825], [8.586439, 47.363809], [8.58644, 47.363793], [8.586434, 47.363741], [8.586428, 47.363689], [8.586421, 47.363637], [8.586411, 47.363571], [8.586402, 47.363505], [8.586392, 47.363438], [8.58639, 47.363425], [8.58639, 47.363412], [8.586392, 47.363399], [8.586395, 47.363385], [8.5864, 47.363372], [8.586406, 47.36336], [8.586414, 47.363348], [8.586424, 47.363336], [8.586434, 47.363325], [8.586447, 47.363314], [8.58646, 47.363305], [8.586475, 47.363296], [8.586491, 47.363288], [8.586508, 47.363281], [8.586525, 47.363275], [8.586544, 47.36327], [8.586562, 47.363266], [8.586582, 47.363264], [8.586601, 47.363262], [8.586621, 47.363262], [8.58664, 47.363262], [8.58666, 47.363264], [8.586679, 47.363267], [8.586698, 47.363271]]], "type": "MultiLineString"}, "id": "2744", "properties": {}, "type": "Feature"}, {"bbox": [8.575938, 47.358729, 8.579025, 47.360357], "geometry": {"coordinates": [[[8.575938, 47.358729], [8.576259, 47.358875], [8.576318, 47.358904], [8.576521, 47.359048], [8.576731, 47.359226], [8.576969, 47.359393], [8.577027, 47.359441], [8.57725, 47.35955], [8.577513, 47.359653], [8.577835, 47.359768], [8.577927, 47.359802], [8.57803, 47.359872], [8.578215, 47.360004], [8.578296, 47.360074], [8.578391, 47.36016], [8.578589, 47.360297], [8.5786, 47.360304], [8.578611, 47.360311], [8.578624, 47.360317], [8.578637, 47.360322], [8.578651, 47.360326], [8.578665, 47.360329], [8.57868, 47.360332], [8.578695, 47.360333], [8.57871, 47.360334], [8.578725, 47.360334], [8.57874, 47.360332], [8.578755, 47.36033], [8.578774, 47.360324], [8.578793, 47.360319], [8.578814, 47.360316], [8.578834, 47.360313], [8.578855, 47.360312], [8.578876, 47.360312], [8.578896, 47.360314], [8.578917, 47.360317], [8.578937, 47.360321], [8.578956, 47.360326], [8.578975, 47.360332], [8.578992, 47.360339], [8.579009, 47.360348], [8.579025, 47.360357]]], "type": "MultiLineString"}, "id": "2745", "properties": {}, "type": "Feature"}, {"bbox": [8.497845, 47.371544, 8.498502, 47.374057], "geometry": {"coordinates": [[[8.498451, 47.374057], [8.498284, 47.373583], [8.498476, 47.373293], [8.498485, 47.373277], [8.498493, 47.373261], [8.498498, 47.373244], [8.498501, 47.373228], [8.498502, 47.373211], [8.498501, 47.373194], [8.498497, 47.373177], [8.498492, 47.373161], [8.498485, 47.373145], [8.498306, 47.37268], [8.498276, 47.372547], [8.498227, 47.372417], [8.49816, 47.372291], [8.498076, 47.37217], [8.498038, 47.372126], [8.498005, 47.372079], [8.497978, 47.372032], [8.497957, 47.371982], [8.497942, 47.371932], [8.497932, 47.371882], [8.497845, 47.371544]]], "type": "MultiLineString"}, "id": "2746", "properties": {}, "type": "Feature"}, {"bbox": [8.561348, 47.350881, 8.565005, 47.352771], "geometry": {"coordinates": [[[8.561348, 47.350881], [8.561819, 47.351081], [8.563196, 47.351651], [8.563277, 47.35169], [8.563359, 47.351693], [8.56344, 47.351701], [8.56352, 47.351715], [8.563955, 47.351874], [8.563971, 47.351881], [8.563986, 47.351889], [8.564, 47.351898], [8.564013, 47.351907], [8.564024, 47.351918], [8.564034, 47.351929], [8.564043, 47.35194], [8.56405, 47.351952], [8.564055, 47.351964], [8.564059, 47.351977], [8.564061, 47.35199], [8.564061, 47.352003], [8.56406, 47.352016], [8.564057, 47.352028], [8.564032, 47.352252], [8.56403, 47.352262], [8.564029, 47.352273], [8.564029, 47.352284], [8.564031, 47.352294], [8.564034, 47.352305], [8.564038, 47.352315], [8.564044, 47.352325], [8.564051, 47.352335], [8.564087, 47.35237], [8.564091, 47.352372], [8.564095, 47.352373], [8.564099, 47.352375], [8.564104, 47.352376], [8.564108, 47.352377], [8.564113, 47.352377], [8.564118, 47.352377], [8.564122, 47.352377], [8.564127, 47.352377], [8.564132, 47.352376], [8.564136, 47.352375], [8.56414, 47.352374], [8.564145, 47.352373], [8.564149, 47.352371], [8.564152, 47.352369], [8.564205, 47.352345], [8.564212, 47.352342], [8.56422, 47.352339], [8.564229, 47.352338], [8.564237, 47.352336], [8.564246, 47.352335], [8.564255, 47.352335], [8.564264, 47.352335], [8.564273, 47.352336], [8.564281, 47.352337], [8.56429, 47.352339], [8.564298, 47.352341], [8.564306, 47.352344], [8.564313, 47.352347], [8.56432, 47.352351], [8.564327, 47.352355], [8.564333, 47.352359], [8.564338, 47.352364], [8.564343, 47.352369], [8.564347, 47.352375], [8.56435, 47.35238], [8.564353, 47.352386], [8.564355, 47.352392], [8.564356, 47.352398], [8.564356, 47.352404], [8.564356, 47.35241], [8.564355, 47.352415], [8.564353, 47.352421], [8.56435, 47.352427], [8.564347, 47.352433], [8.564343, 47.352438], [8.564338, 47.352443], [8.564333, 47.352448], [8.564309, 47.352489], [8.564405, 47.352486], [8.564588, 47.35256], [8.56473, 47.352611], [8.564783, 47.352619], [8.565005, 47.352771]]], "type": "MultiLineString"}, "id": "2749", "properties": {}, "type": "Feature"}, {"bbox": [8.563865, 47.381651, 8.571352, 47.384279], "geometry": {"coordinates": [[[8.571352, 47.381651], [8.571176, 47.381805], [8.570949, 47.382004], [8.570932, 47.382017], [8.57086, 47.382075], [8.570781, 47.382129], [8.570696, 47.382177], [8.570604, 47.382221], [8.570508, 47.382259], [8.570407, 47.382291], [8.570303, 47.382317], [8.570195, 47.382338], [8.570086, 47.382352], [8.569975, 47.382359], [8.569863, 47.38236], [8.569752, 47.382355], [8.569062, 47.38231], [8.568758, 47.382288], [8.56873, 47.382285], [8.568701, 47.382283], [8.568672, 47.382282], [8.568544, 47.382278], [8.568416, 47.382282], [8.568289, 47.382294], [8.568164, 47.382313], [8.568042, 47.382339], [8.567924, 47.382373], [8.56781, 47.382413], [8.566625, 47.382825], [8.566139, 47.382994], [8.566087, 47.383014], [8.566078, 47.383016], [8.566068, 47.383019], [8.566004, 47.383058], [8.565818, 47.383166], [8.565632, 47.383274], [8.564659, 47.383803], [8.564628, 47.383821], [8.564418, 47.383953], [8.564042, 47.384242], [8.564033, 47.384248], [8.564024, 47.384255], [8.564014, 47.38426], [8.564003, 47.384265], [8.563991, 47.384269], [8.563979, 47.384273], [8.563967, 47.384275], [8.563954, 47.384277], [8.563941, 47.384278], [8.563928, 47.384279], [8.563915, 47.384278], [8.563902, 47.384277], [8.563889, 47.384275], [8.563877, 47.384272], [8.563865, 47.384269]]], "type": "MultiLineString"}, "id": "2750", "properties": {}, "type": "Feature"}, {"bbox": [8.52323, 47.338778, 8.524731, 47.339016], "geometry": {"coordinates": [[[8.524731, 47.339016], [8.524726, 47.339005], [8.524721, 47.338995], [8.524714, 47.338985], [8.524706, 47.338976], [8.524696, 47.338967], [8.524685, 47.338958], [8.524674, 47.338951], [8.524661, 47.338944], [8.524647, 47.338937], [8.524633, 47.338932], [8.524618, 47.338928], [8.524603, 47.338924], [8.524587, 47.338922], [8.52323, 47.338778]]], "type": "MultiLineString"}, "id": "2753", "properties": {}, "type": "Feature"}, {"bbox": [8.564216, 47.368044, 8.567878, 47.368897], "geometry": {"coordinates": [[[8.564216, 47.368067], [8.564416, 47.368044], [8.564803, 47.368113], [8.565082, 47.368136], [8.565195, 47.368129], [8.565741, 47.36823], [8.565809, 47.368257], [8.565993, 47.368332], [8.566104, 47.368376], [8.566463, 47.368509], [8.56668, 47.368644], [8.566868, 47.368767], [8.566882, 47.368773], [8.566897, 47.368779], [8.566912, 47.368784], [8.566928, 47.368788], [8.566945, 47.368791], [8.566961, 47.368793], [8.566978, 47.368794], [8.567124, 47.368803], [8.567878, 47.368897]]], "type": "MultiLineString"}, "id": "2754", "properties": {}, "type": "Feature"}, {"bbox": [8.521523, 47.401241, 8.526715, 47.405337], "geometry": {"coordinates": [[[8.523766, 47.402202], [8.523475, 47.402461], [8.523432, 47.402498], [8.523392, 47.402537], [8.523356, 47.402578], [8.523151, 47.402828], [8.522878, 47.403162], [8.522796, 47.403242], [8.522749, 47.403288]], [[8.523714, 47.404798], [8.523615, 47.404861], [8.523509, 47.404917], [8.523395, 47.404966], [8.522814, 47.405192], [8.522721, 47.405225], [8.522624, 47.405252], [8.522525, 47.405275], [8.522423, 47.405292], [8.52232, 47.405303], [8.52217, 47.405317], [8.52202, 47.405328], [8.521869, 47.405336], [8.521869, 47.405336], [8.521869, 47.405336], [8.521815, 47.405337], [8.521762, 47.405334], [8.521709, 47.405329], [8.521657, 47.40532], [8.521641, 47.405316], [8.521626, 47.405312], [8.521612, 47.405306], [8.521598, 47.4053], [8.521586, 47.405293], [8.521574, 47.405285], [8.521563, 47.405276], [8.521554, 47.405267], [8.521546, 47.405257], [8.521539, 47.405247], [8.521533, 47.405236], [8.521529, 47.405225], [8.521526, 47.405214], [8.521523, 47.405183], [8.521523, 47.405151], [8.521527, 47.405119], [8.521535, 47.405088], [8.521547, 47.405057], [8.521562, 47.405027], [8.521935, 47.404383], [8.522123, 47.404079], [8.522332, 47.40378], [8.522562, 47.403489], [8.522621, 47.403421], [8.522684, 47.403354], [8.522749, 47.403288]], [[8.523714, 47.404798], [8.524057, 47.404511], [8.524392, 47.404219], [8.52472, 47.403924], [8.524767, 47.403878], [8.525442, 47.403228], [8.526563, 47.402148], [8.526601, 47.402108], [8.526634, 47.402066], [8.526661, 47.402022], [8.526683, 47.401977], [8.5267, 47.401931], [8.52671, 47.401884], [8.526715, 47.401836], [8.526713, 47.401789], [8.526706, 47.401741], [8.526693, 47.401695], [8.526674, 47.401649], [8.52665, 47.401604], [8.52662, 47.401561], [8.526585, 47.40152], [8.526585, 47.40152], [8.526361, 47.401278], [8.526326, 47.401241]]], "type": "MultiLineString"}, "id": "2766", "properties": {}, "type": "Feature"}, {"bbox": [8.462439, 47.38212, 8.464328, 47.383156], "geometry": {"coordinates": [[[8.464328, 47.38212], [8.464102, 47.382225], [8.464027, 47.382263], [8.463957, 47.382305], [8.463891, 47.38235], [8.463407, 47.382708], [8.463298, 47.382782], [8.46318, 47.382851], [8.463056, 47.382913], [8.462924, 47.382969], [8.462461, 47.383148], [8.462439, 47.383156]]], "type": "MultiLineString"}, "id": "2767", "properties": {}, "type": "Feature"}, {"bbox": [8.534038, 47.417744, 8.534985, 47.419125], "geometry": {"coordinates": [[[8.534985, 47.417744], [8.53414, 47.419009], [8.534038, 47.419125]]], "type": "MultiLineString"}, "id": "2768", "properties": {}, "type": "Feature"}, {"bbox": [8.571058, 47.356165, 8.572961, 47.357209], "geometry": {"coordinates": [[[8.571058, 47.357191], [8.571675, 47.357209], [8.571749, 47.357138], [8.571864, 47.357019], [8.572201, 47.356635], [8.572403, 47.356445], [8.572511, 47.356338], [8.572679, 47.356342], [8.572771, 47.356304], [8.572895, 47.356185], [8.572961, 47.356165]]], "type": "MultiLineString"}, "id": "2770", "properties": {}, "type": "Feature"}, {"bbox": [8.496408, 47.34594, 8.504302, 47.351839], "geometry": {"coordinates": [[[8.504302, 47.351839], [8.50404, 47.351709], [8.504006, 47.351687], [8.503944, 47.351624], [8.503913, 47.351453], [8.503889, 47.351385], [8.503862, 47.351321], [8.503824, 47.351258], [8.503755, 47.351188], [8.503629, 47.351082], [8.503565, 47.351027], [8.503502, 47.350971], [8.503451, 47.35091], [8.503435, 47.350896], [8.503405, 47.350869], [8.503345, 47.350821], [8.503298, 47.350789], [8.503218, 47.350744], [8.503164, 47.350717], [8.503103, 47.350692], [8.50302, 47.350662], [8.502918, 47.350628], [8.502863, 47.350607], [8.502808, 47.350581], [8.502741, 47.350549], [8.502642, 47.3505], [8.502621, 47.35049], [8.502527, 47.350442], [8.502455, 47.3504], [8.502382, 47.350352], [8.502335, 47.350305], [8.502247, 47.350217], [8.502182, 47.350166], [8.502112, 47.350117], [8.502024, 47.350062], [8.501897, 47.349995], [8.501804, 47.349954], [8.50179, 47.349948], [8.501772, 47.349938], [8.501763, 47.349933], [8.501719, 47.349895], [8.501696, 47.349873], [8.501672, 47.34984], [8.501634, 47.349798], [8.501552, 47.349713], [8.501442, 47.349625], [8.501389, 47.349584], [8.501331, 47.349545], [8.501256, 47.349498], [8.501152, 47.349436], [8.501121, 47.349397], [8.501098, 47.349325], [8.501082, 47.349261], [8.501072, 47.349214], [8.501051, 47.349168], [8.501041, 47.349158], [8.501013, 47.34913], [8.500947, 47.349095], [8.500814, 47.349046], [8.500747, 47.349013], [8.500693, 47.348966], [8.500661, 47.348921], [8.50063, 47.348871], [8.500596, 47.348829], [8.500538, 47.348786], [8.500395, 47.348716], [8.50031, 47.348638], [8.500259, 47.348577], [8.500053, 47.348206], [8.499932, 47.348124], [8.499824, 47.348142], [8.499829, 47.348058], [8.499797, 47.348031], [8.499591, 47.348058], [8.49953, 47.348012], [8.499607, 47.347922], [8.499593, 47.347823], [8.499451, 47.347795], [8.499449, 47.347758], [8.499471, 47.347677], [8.499442, 47.347646], [8.49902, 47.347544], [8.499022, 47.347371], [8.499032, 47.347326], [8.498921, 47.347277], [8.498676, 47.347306], [8.498809, 47.347021], [8.498744, 47.346994], [8.498586, 47.347001], [8.498602, 47.346924], [8.498689, 47.346771], [8.498457, 47.346802], [8.498454, 47.3467], [8.498518, 47.346631], [8.498694, 47.346585], [8.498791, 47.346506], [8.498887, 47.346457], [8.498759, 47.346421], [8.498627, 47.346473], [8.498659, 47.346344], [8.498732, 47.346239], [8.49883, 47.346173], [8.498998, 47.346157], [8.499147, 47.346179], [8.499323, 47.346174], [8.499225, 47.34611], [8.498817, 47.345997], [8.49856, 47.346008], [8.498324, 47.346077], [8.498134, 47.346091], [8.498028, 47.345975], [8.497816, 47.34594], [8.49745, 47.34597], [8.497198, 47.34609], [8.497107, 47.346175], [8.496807, 47.346287], [8.496729, 47.346316], [8.496481, 47.34644], [8.496408, 47.346444]]], "type": "MultiLineString"}, "id": "2772", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506865, 47.42678], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506865, 47.42678]]], "type": "MultiLineString"}, "id": "2773", "properties": {}, "type": "Feature"}, {"bbox": [8.601577, 47.368686, 8.605924, 47.371813], "geometry": {"coordinates": [[[8.605924, 47.368686], [8.605886, 47.368941], [8.605842, 47.369037], [8.60577, 47.369097], [8.605139, 47.369631], [8.604699, 47.369946], [8.604588, 47.370012], [8.604486, 47.370085], [8.604395, 47.370164], [8.604315, 47.370248], [8.604281, 47.370314], [8.604238, 47.370377], [8.604187, 47.370438], [8.604129, 47.370495], [8.604063, 47.370548], [8.603991, 47.370598], [8.603852, 47.37069], [8.603725, 47.370791], [8.603613, 47.370899], [8.603515, 47.371014], [8.603342, 47.371205], [8.60328, 47.371255], [8.603213, 47.371301], [8.603141, 47.371343], [8.603063, 47.37138], [8.602981, 47.371413], [8.602895, 47.371441], [8.602618, 47.371527], [8.602511, 47.371552], [8.602402, 47.371572], [8.602291, 47.371585], [8.602223, 47.371592], [8.602156, 47.371603], [8.602091, 47.371618], [8.602028, 47.371637], [8.601968, 47.37166], [8.601911, 47.371685], [8.601857, 47.371714], [8.601817, 47.371738], [8.601773, 47.371759], [8.601727, 47.371777], [8.601678, 47.371792], [8.601628, 47.371804], [8.601577, 47.371813]]], "type": "MultiLineString"}, "id": "2775", "properties": {}, "type": "Feature"}, {"bbox": [8.487742, 47.363589, 8.49214, 47.366476], "geometry": {"coordinates": [[[8.49214, 47.363589], [8.492113, 47.363614], [8.491933, 47.36379], [8.491749, 47.363975], [8.491713, 47.364007], [8.491674, 47.364038], [8.491632, 47.364066], [8.491449, 47.364181], [8.491249, 47.364294], [8.491228, 47.364305], [8.491206, 47.364314], [8.491183, 47.364323], [8.491159, 47.36433], [8.491133, 47.364335], [8.491108, 47.36434], [8.491082, 47.364342], [8.491055, 47.364343], [8.491029, 47.364343], [8.491003, 47.364341], [8.490751, 47.364317], [8.490712, 47.364314], [8.490674, 47.364314], [8.490635, 47.364316], [8.490597, 47.36432], [8.490559, 47.364327], [8.490523, 47.364336], [8.490488, 47.364347], [8.490454, 47.36436], [8.490422, 47.364375], [8.490393, 47.364392], [8.490366, 47.364411], [8.490341, 47.364431], [8.490319, 47.364453], [8.4903, 47.364476], [8.490284, 47.3645], [8.490271, 47.364525], [8.490261, 47.36455], [8.490255, 47.364576], [8.490223, 47.364765], [8.490219, 47.364781], [8.490214, 47.364796], [8.490206, 47.36481], [8.490197, 47.364824], [8.490186, 47.364838], [8.490173, 47.364851], [8.490159, 47.364863], [8.490143, 47.364874], [8.490126, 47.364884], [8.490108, 47.364893], [8.489928, 47.364974], [8.489772, 47.365051], [8.48972, 47.365079], [8.489673, 47.365111], [8.489631, 47.365145], [8.489613, 47.36516], [8.489594, 47.365174], [8.489573, 47.365186], [8.489551, 47.365198], [8.489527, 47.365208], [8.489502, 47.365217], [8.489477, 47.365224], [8.489472, 47.365225], [8.489468, 47.365227], [8.489464, 47.365229], [8.489461, 47.365231], [8.489457, 47.365233], [8.489454, 47.365236], [8.489451, 47.365238], [8.489449, 47.365241], [8.489447, 47.365244], [8.489445, 47.365247], [8.489444, 47.36525], [8.489443, 47.365253], [8.489443, 47.365257], [8.489443, 47.36526], [8.489443, 47.365263], [8.489444, 47.365266], [8.489457, 47.365284], [8.489464, 47.365289], [8.489471, 47.365296], [8.489477, 47.365302], [8.489482, 47.365309], [8.489487, 47.365316], [8.48949, 47.365323], [8.489492, 47.365331], [8.489494, 47.365339], [8.489494, 47.365346], [8.489493, 47.365354], [8.489492, 47.365362], [8.489489, 47.365369], [8.489486, 47.365377], [8.489482, 47.365384], [8.489476, 47.36539], [8.48947, 47.365397], [8.489464, 47.365403], [8.489456, 47.365409], [8.489448, 47.365414], [8.489439, 47.365419], [8.48942, 47.365426], [8.489401, 47.365433], [8.48938, 47.365438], [8.489359, 47.365442], [8.489338, 47.365445], [8.489211, 47.365458], [8.489192, 47.36546], [8.489173, 47.365464], [8.489154, 47.365469], [8.489137, 47.365475], [8.48912, 47.365482], [8.489104, 47.36549], [8.489089, 47.365498], [8.489075, 47.365508], [8.489062, 47.365518], [8.489051, 47.365529], [8.489041, 47.365541], [8.48897, 47.365636], [8.488954, 47.365654], [8.488937, 47.365672], [8.488917, 47.365688], [8.488895, 47.365703], [8.488871, 47.365717], [8.488797, 47.365755], [8.48878, 47.365763], [8.488762, 47.36577], [8.488743, 47.365776], [8.488724, 47.365781], [8.488704, 47.365785], [8.488684, 47.365788], [8.488664, 47.365789], [8.488558, 47.365795], [8.488548, 47.365795], [8.488538, 47.365797], [8.488529, 47.365799], [8.488519, 47.365802], [8.48851, 47.365805], [8.488502, 47.365808], [8.488494, 47.365813], [8.488486, 47.365817], [8.48848, 47.365822], [8.488407, 47.365882], [8.48838, 47.365904], [8.488353, 47.365925], [8.488324, 47.365945], [8.488134, 47.366079], [8.488027, 47.366161], [8.487931, 47.366249], [8.487847, 47.366342], [8.487742, 47.366476]]], "type": "MultiLineString"}, "id": "2776", "properties": {}, "type": "Feature"}, {"bbox": [8.483697, 47.391307, 8.484147, 47.391871], "geometry": {"coordinates": [[[8.483697, 47.391307], [8.483843, 47.391526], [8.484059, 47.391565], [8.484084, 47.391616], [8.484147, 47.391871]]], "type": "MultiLineString"}, "id": "2778", "properties": {}, "type": "Feature"}, {"bbox": [8.545599, 47.417474, 8.545834, 47.417651], "geometry": {"coordinates": [[[8.545617, 47.417513], [8.545601, 47.417541], [8.5456, 47.417543], [8.5456, 47.417545], [8.545599, 47.417547], [8.545599, 47.417549], [8.545599, 47.41755], [8.5456, 47.417552], [8.5456, 47.417554], [8.545601, 47.417556], [8.545602, 47.417557], [8.545603, 47.417559], [8.545605, 47.41756], [8.545606, 47.417562], [8.545608, 47.417563], [8.54561, 47.417564], [8.545612, 47.417565], [8.54577, 47.417647], [8.545772, 47.417648], [8.545774, 47.417649], [8.545776, 47.417649], [8.545778, 47.41765], [8.545781, 47.41765], [8.545783, 47.41765], [8.545785, 47.417651], [8.545788, 47.417651], [8.54579, 47.41765], [8.545792, 47.41765], [8.545794, 47.41765], [8.545797, 47.417649], [8.545799, 47.417649], [8.545801, 47.417648], [8.545803, 47.417647], [8.545829, 47.417634], [8.545834, 47.417608], [8.545686, 47.417482], [8.545684, 47.41748], [8.545682, 47.417479], [8.54568, 47.417478], [8.545678, 47.417477], [8.545676, 47.417476], [8.545673, 47.417475], [8.545671, 47.417475], [8.545668, 47.417474], [8.545666, 47.417474], [8.545663, 47.417474], [8.54566, 47.417474], [8.545657, 47.417474], [8.545655, 47.417474], [8.545652, 47.417475], [8.54565, 47.417475], [8.545647, 47.417476], [8.545645, 47.417477], [8.545643, 47.417478], [8.54564, 47.417479], [8.545639, 47.41748], [8.545637, 47.417482], [8.545635, 47.417483], [8.545634, 47.417485], [8.545633, 47.417487], [8.545632, 47.417488], [8.545617, 47.417513]]], "type": "MultiLineString"}, "id": "2780", "properties": {}, "type": "Feature"}, {"bbox": [8.491386, 47.392115, 8.492496, 47.392308], "geometry": {"coordinates": [[[8.492496, 47.392205], [8.492337, 47.392115], [8.491964, 47.392172], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "2786", "properties": {}, "type": "Feature"}, {"bbox": [8.532217, 47.380155, 8.53412, 47.380987], "geometry": {"coordinates": [[[8.53412, 47.380155], [8.53339, 47.380294], [8.532987, 47.380429], [8.532347, 47.380821], [8.532217, 47.380987]]], "type": "MultiLineString"}, "id": "2789", "properties": {}, "type": "Feature"}, {"bbox": [8.552016, 47.394665, 8.552912, 47.395412], "geometry": {"coordinates": [[[8.552837, 47.395412], [8.552912, 47.395367], [8.552596, 47.395123], [8.552511, 47.395173], [8.552287, 47.394993], [8.552319, 47.394975], [8.552183, 47.394858], [8.55215, 47.394875], [8.552033, 47.394774], [8.552108, 47.394736], [8.552026, 47.394665], [8.552016, 47.39467]]], "type": "MultiLineString"}, "id": "2791", "properties": {}, "type": "Feature"}, {"bbox": [8.530293, 47.338398, 8.530753, 47.338646], "geometry": {"coordinates": [[[8.530293, 47.338487], [8.530731, 47.338398], [8.530753, 47.338587], [8.530472, 47.338646]]], "type": "MultiLineString"}, "id": "2792", "properties": {}, "type": "Feature"}, {"bbox": [8.57622, 47.355425, 8.578796, 47.356757], "geometry": {"coordinates": [[[8.57622, 47.355425], [8.576269, 47.355452], [8.576346, 47.35553], [8.577213, 47.355803], [8.577714, 47.355978], [8.577952, 47.35609], [8.578652, 47.356304], [8.578796, 47.356757]]], "type": "MultiLineString"}, "id": "2801", "properties": {}, "type": "Feature"}, {"bbox": [8.534648, 47.365878, 8.539799, 47.370322], "geometry": {"coordinates": [[[8.539799, 47.365878], [8.538942, 47.366814], [8.538303, 47.367503], [8.538618, 47.367555], [8.538567, 47.367639], [8.538456, 47.367735], [8.537664, 47.3686], [8.537543, 47.368698], [8.537341, 47.368841], [8.537232, 47.36891], [8.537109, 47.368948], [8.536791, 47.369039], [8.536564, 47.369116], [8.536508, 47.369078], [8.536078, 47.369102], [8.535868, 47.36911], [8.535751, 47.369095], [8.535486, 47.369109], [8.53479, 47.370135], [8.534665, 47.370256], [8.534648, 47.370322]]], "type": "MultiLineString"}, "id": "2803", "properties": {}, "type": "Feature"}, {"bbox": [8.538672, 47.401625, 8.539707, 47.402096], "geometry": {"coordinates": [[[8.538672, 47.401625], [8.538707, 47.401653], [8.539067, 47.401823], [8.539679, 47.402085], [8.539707, 47.402096]]], "type": "MultiLineString"}, "id": "2804", "properties": {}, "type": "Feature"}, {"bbox": [8.559287, 47.35587, 8.560505, 47.356432], "geometry": {"coordinates": [[[8.559287, 47.35587], [8.560395, 47.356388], [8.560505, 47.356432]]], "type": "MultiLineString"}, "id": "2805", "properties": {}, "type": "Feature"}, {"bbox": [8.58818, 47.369537, 8.590661, 47.372193], "geometry": {"coordinates": [[[8.590661, 47.372193], [8.590655, 47.372182], [8.590648, 47.372171], [8.59064, 47.37216], [8.59063, 47.372151], [8.590619, 47.372141], [8.590607, 47.372133], [8.590594, 47.372125], [8.59058, 47.372118], [8.590564, 47.372112], [8.590549, 47.372107], [8.590532, 47.372103], [8.590515, 47.3721], [8.590498, 47.372098], [8.59038, 47.372089], [8.590313, 47.372081], [8.590247, 47.37207], [8.590183, 47.372054], [8.590121, 47.372035], [8.590062, 47.372013], [8.590005, 47.371986], [8.58998, 47.37197], [8.589956, 47.371953], [8.589935, 47.371934], [8.589917, 47.371914], [8.589901, 47.371893], [8.589861, 47.371797], [8.589822, 47.3717], [8.589784, 47.371604], [8.589781, 47.371598], [8.589763, 47.371559], [8.589741, 47.371522], [8.589714, 47.371486], [8.589683, 47.371452], [8.588453, 47.370216], [8.588333, 47.370096], [8.588296, 47.370055], [8.588265, 47.370011], [8.58824, 47.369966], [8.588221, 47.36992], [8.588208, 47.369872], [8.588191, 47.369788], [8.588182, 47.369723], [8.58818, 47.369657], [8.588186, 47.369592], [8.588194, 47.369537]]], "type": "MultiLineString"}, "id": "2806", "properties": {}, "type": "Feature"}, {"bbox": [8.5225, 47.377005, 8.524051, 47.378513], "geometry": {"coordinates": [[[8.524021, 47.377005], [8.524051, 47.377125], [8.5225, 47.377658], [8.523147, 47.378513]]], "type": "MultiLineString"}, "id": "2810", "properties": {}, "type": "Feature"}, {"bbox": [8.48149, 47.407008, 8.483032, 47.408749], "geometry": {"coordinates": [[[8.48149, 47.407008], [8.4815, 47.407036], [8.481513, 47.407064], [8.481529, 47.407091], [8.481548, 47.407116], [8.48157, 47.407141], [8.481669, 47.407231], [8.481979, 47.407538], [8.482135, 47.407708], [8.482445, 47.408028], [8.48249, 47.408083], [8.482528, 47.408139], [8.482558, 47.408198], [8.482581, 47.408258], [8.482629, 47.408467], [8.482631, 47.408475], [8.482634, 47.408482], [8.482638, 47.408489], [8.482643, 47.408496], [8.482649, 47.408502], [8.482655, 47.408508], [8.482663, 47.408514], [8.482671, 47.408519], [8.482966, 47.408703], [8.483032, 47.408749]]], "type": "MultiLineString"}, "id": "2811", "properties": {}, "type": "Feature"}, {"bbox": [8.501032, 47.321997, 8.512843, 47.328589], "geometry": {"coordinates": [[[8.512843, 47.328575], [8.512618, 47.328535], [8.512423, 47.328563], [8.512125, 47.32854], [8.511728, 47.328587], [8.511517, 47.328589], [8.511431, 47.328585], [8.511344, 47.328577], [8.511259, 47.328565], [8.511176, 47.328547], [8.511098, 47.328526], [8.511023, 47.328501], [8.510952, 47.32847], [8.510886, 47.328436], [8.510824, 47.328398], [8.510804, 47.328383], [8.510787, 47.328368], [8.510772, 47.328351], [8.510759, 47.328334], [8.510748, 47.328316], [8.510748, 47.328316], [8.510638, 47.328091], [8.51057, 47.32795], [8.510493, 47.327818], [8.510483, 47.327797], [8.510476, 47.327776], [8.510471, 47.327755], [8.51047, 47.327734], [8.510471, 47.327712], [8.510476, 47.327691], [8.510476, 47.327691], [8.510542, 47.327469], [8.510543, 47.327338], [8.510494, 47.327203], [8.510342, 47.32696], [8.51018, 47.326709], [8.509934, 47.326301], [8.509916, 47.326267], [8.509911, 47.32626], [8.509905, 47.326253], [8.509898, 47.326247], [8.509892, 47.326241], [8.509884, 47.326236], [8.509876, 47.326232], [8.509867, 47.326228], [8.509858, 47.326224], [8.509377, 47.326046], [8.509339, 47.326032], [8.509301, 47.326016], [8.509264, 47.326], [8.508841, 47.325804], [8.508716, 47.32576], [8.508664, 47.32574], [8.508615, 47.325717], [8.508568, 47.325691], [8.508525, 47.325663], [8.508332, 47.325527], [8.508032, 47.325301], [8.50764, 47.325025], [8.50753, 47.324947], [8.507526, 47.324944], [8.507502, 47.324927], [8.50739, 47.324846], [8.507342, 47.324811], [8.507287, 47.324771], [8.507222, 47.32473], [8.507078, 47.324629], [8.506961, 47.324546], [8.506709, 47.324367], [8.506424, 47.324172], [8.506127, 47.323983], [8.505845, 47.323827], [8.505517, 47.323664], [8.505494, 47.323654], [8.505364, 47.323611], [8.505343, 47.323587], [8.505337, 47.323573], [8.504609, 47.323221], [8.504493, 47.323181], [8.504374, 47.323165], [8.504211, 47.323193], [8.504204, 47.323194], [8.504196, 47.323194], [8.504188, 47.323194], [8.50418, 47.323194], [8.504172, 47.323193], [8.504165, 47.323192], [8.504157, 47.32319], [8.50415, 47.323188], [8.504143, 47.323185], [8.504137, 47.323182], [8.50413, 47.323179], [8.503966, 47.323096], [8.503956, 47.323088], [8.503947, 47.32308], [8.503939, 47.323071], [8.503932, 47.323062], [8.503927, 47.323053], [8.503922, 47.323043], [8.503893, 47.322962], [8.503891, 47.322958], [8.503889, 47.322954], [8.503886, 47.32295], [8.503882, 47.322946], [8.503879, 47.322942], [8.503874, 47.322939], [8.503869, 47.322936], [8.503864, 47.322933], [8.503859, 47.322931], [8.503853, 47.322929], [8.503847, 47.322927], [8.503841, 47.322926], [8.503835, 47.322925], [8.503828, 47.322924], [8.503822, 47.322924], [8.503815, 47.322924], [8.503809, 47.322924], [8.503802, 47.322925], [8.503796, 47.322926], [8.50379, 47.322928], [8.503784, 47.32293], [8.503778, 47.322932], [8.503735, 47.322955], [8.503694, 47.322979], [8.503656, 47.323006], [8.503622, 47.323034], [8.503524, 47.323121], [8.503523, 47.323123], [8.503521, 47.323124], [8.503519, 47.323125], [8.503517, 47.323126], [8.503515, 47.323127], [8.503513, 47.323127], [8.503511, 47.323128], [8.503508, 47.323128], [8.503506, 47.323129], [8.503504, 47.323129], [8.503501, 47.323129], [8.503499, 47.323129], [8.503496, 47.323129], [8.503494, 47.323128], [8.503492, 47.323128], [8.503489, 47.323127], [8.503487, 47.323126], [8.503485, 47.323125], [8.503483, 47.323124], [8.503481, 47.323123], [8.50348, 47.323122], [8.503478, 47.323121], [8.503477, 47.323119], [8.503476, 47.323118], [8.503475, 47.323116], [8.503474, 47.323114], [8.503474, 47.323113], [8.503473, 47.323111], [8.503473, 47.32311], [8.503473, 47.322947], [8.503472, 47.322929], [8.503469, 47.322912], [8.503463, 47.322895], [8.503463, 47.322895], [8.503463, 47.322895], [8.503462, 47.322893], [8.503461, 47.322891], [8.503459, 47.322889], [8.503457, 47.322888], [8.503456, 47.322886], [8.503453, 47.322884], [8.503451, 47.322883], [8.503449, 47.322882], [8.503446, 47.322881], [8.503443, 47.32288], [8.50344, 47.322879], [8.503437, 47.322878], [8.503434, 47.322878], [8.503431, 47.322878], [8.503428, 47.322878], [8.503425, 47.322878], [8.503422, 47.322878], [8.503419, 47.322878], [8.503416, 47.322879], [8.503413, 47.32288], [8.50341, 47.322881], [8.503408, 47.322882], [8.503405, 47.322883], [8.503403, 47.322885], [8.503401, 47.322886], [8.503399, 47.322888], [8.503397, 47.32289], [8.503396, 47.322891], [8.503395, 47.322893], [8.503395, 47.322893], [8.503387, 47.322906], [8.503378, 47.322917], [8.503368, 47.322928], [8.503356, 47.322939], [8.503343, 47.322948], [8.503329, 47.322957], [8.503314, 47.322965], [8.503298, 47.322973], [8.503281, 47.322979], [8.503263, 47.322984], [8.503245, 47.322988], [8.503226, 47.322991], [8.503219, 47.322993], [8.503212, 47.322994], [8.503205, 47.322996], [8.503199, 47.322999], [8.503193, 47.323001], [8.503187, 47.323005], [8.503181, 47.323008], [8.503177, 47.323012], [8.503172, 47.323016], [8.503168, 47.32302], [8.503165, 47.323024], [8.503122, 47.323089], [8.503118, 47.323094], [8.503114, 47.323098], [8.50311, 47.323103], [8.503104, 47.323106], [8.503104, 47.323106], [8.503104, 47.323106], [8.503099, 47.32311], [8.503093, 47.323113], [8.503087, 47.323115], [8.503087, 47.323115], [8.503087, 47.323115], [8.503083, 47.323117], [8.503079, 47.323118], [8.503075, 47.323119], [8.503029, 47.32313], [8.503023, 47.323132], [8.503017, 47.323134], [8.503011, 47.323137], [8.503006, 47.32314], [8.503001, 47.323143], [8.502996, 47.323147], [8.502992, 47.32315], [8.502989, 47.323154], [8.502881, 47.323289], [8.50288, 47.32329], [8.502878, 47.323292], [8.502876, 47.323294], [8.502874, 47.323295], [8.502871, 47.323296], [8.502869, 47.323297], [8.502866, 47.323298], [8.502863, 47.323299], [8.502861, 47.3233], [8.502858, 47.3233], [8.502855, 47.323301], [8.502852, 47.323301], [8.502849, 47.323301], [8.502846, 47.3233], [8.502843, 47.3233], [8.50284, 47.323299], [8.502837, 47.323299], [8.502834, 47.323298], [8.502832, 47.323297], [8.502829, 47.323295], [8.502827, 47.323294], [8.502825, 47.323292], [8.502823, 47.323291], [8.502821, 47.323289], [8.50282, 47.323287], [8.502819, 47.323285], [8.502818, 47.323283], [8.502806, 47.323244], [8.502798, 47.323205], [8.502796, 47.323165], [8.502798, 47.323125], [8.502805, 47.323085], [8.502805, 47.323083], [8.502805, 47.323081], [8.502805, 47.323079], [8.502805, 47.323078], [8.502804, 47.323076], [8.502803, 47.323074], [8.502802, 47.323072], [8.502801, 47.323071], [8.502799, 47.323069], [8.502798, 47.323068], [8.502796, 47.323066], [8.502794, 47.323065], [8.502791, 47.323064], [8.502789, 47.323063], [8.502787, 47.323062], [8.502784, 47.323062], [8.502781, 47.323061], [8.502779, 47.323061], [8.502776, 47.323061], [8.502773, 47.323061], [8.50277, 47.323061], [8.502768, 47.323061], [8.502765, 47.323061], [8.502763, 47.323062], [8.50276, 47.323063], [8.502758, 47.323064], [8.502755, 47.323065], [8.502753, 47.323066], [8.502751, 47.323067], [8.50275, 47.323069], [8.502748, 47.32307], [8.50273, 47.323089], [8.502709, 47.323106], [8.502687, 47.323123], [8.502582, 47.323193], [8.502581, 47.323194], [8.502579, 47.323195], [8.502577, 47.323196], [8.502575, 47.323197], [8.502573, 47.323197], [8.502571, 47.323198], [8.502569, 47.323198], [8.502567, 47.323198], [8.502565, 47.323198], [8.502563, 47.323198], [8.502561, 47.323198], [8.502558, 47.323198], [8.502556, 47.323197], [8.502554, 47.323197], [8.502552, 47.323196], [8.502551, 47.323195], [8.502549, 47.323194], [8.502547, 47.323193], [8.502546, 47.323192], [8.502544, 47.323191], [8.502543, 47.32319], [8.502542, 47.323189], [8.502541, 47.323187], [8.502541, 47.323186], [8.50254, 47.323185], [8.50254, 47.323183], [8.50254, 47.323182], [8.50254, 47.32318], [8.50254, 47.323179], [8.50254, 47.323177], [8.502541, 47.323176], [8.502577, 47.323102], [8.502578, 47.3231], [8.502578, 47.323098], [8.502578, 47.323096], [8.502578, 47.323094], [8.502578, 47.323093], [8.502578, 47.323091], [8.502577, 47.323089], [8.502576, 47.323087], [8.502575, 47.323086], [8.502574, 47.323084], [8.502572, 47.323083], [8.50257, 47.323081], [8.502568, 47.32308], [8.502566, 47.323079], [8.502564, 47.323078], [8.502562, 47.323077], [8.502559, 47.323076], [8.502557, 47.323076], [8.502554, 47.323075], [8.502552, 47.323075], [8.502549, 47.323075], [8.502546, 47.323075], [8.502544, 47.323075], [8.502541, 47.323075], [8.502539, 47.323076], [8.502536, 47.323077], [8.502534, 47.323077], [8.502531, 47.323078], [8.502529, 47.323079], [8.502527, 47.323081], [8.502445, 47.323135], [8.502443, 47.323136], [8.502442, 47.323137], [8.50244, 47.323138], [8.502438, 47.323138], [8.502437, 47.323139], [8.502435, 47.323139], [8.502433, 47.323139], [8.502431, 47.323139], [8.502429, 47.323139], [8.502427, 47.323139], [8.502426, 47.323139], [8.502424, 47.323139], [8.502422, 47.323138], [8.50242, 47.323138], [8.502418, 47.323137], [8.502417, 47.323137], [8.502415, 47.323136], [8.502414, 47.323135], [8.502413, 47.323134], [8.502412, 47.323133], [8.502411, 47.323132], [8.50241, 47.323131], [8.502409, 47.32313], [8.502408, 47.323128], [8.502408, 47.323127], [8.502408, 47.323126], [8.502408, 47.323125], [8.502408, 47.323123], [8.502408, 47.323122], [8.502408, 47.323121], [8.502409, 47.32312], [8.50241, 47.323118], [8.502451, 47.323057], [8.502458, 47.323046], [8.502464, 47.323035], [8.502468, 47.323023], [8.50247, 47.323011], [8.502471, 47.322999], [8.502471, 47.322986], [8.502466, 47.322919], [8.502465, 47.322852], [8.502468, 47.322784], [8.502468, 47.322751], [8.502463, 47.322717], [8.502454, 47.322685], [8.502441, 47.322653], [8.5024, 47.322569], [8.502399, 47.322567], [8.502397, 47.322565], [8.502396, 47.322563], [8.502394, 47.322562], [8.502392, 47.32256], [8.50239, 47.322559], [8.502388, 47.322558], [8.502386, 47.322557], [8.502383, 47.322556], [8.502381, 47.322555], [8.502378, 47.322554], [8.502376, 47.322554], [8.502373, 47.322554], [8.50237, 47.322554], [8.502367, 47.322554], [8.502364, 47.322554], [8.502362, 47.322554], [8.502359, 47.322555], [8.502356, 47.322555], [8.502354, 47.322556], [8.502351, 47.322557], [8.502349, 47.322558], [8.502347, 47.322559], [8.502345, 47.322561], [8.502343, 47.322562], [8.502342, 47.322564], [8.50234, 47.322565], [8.502339, 47.322567], [8.502338, 47.322569], [8.502337, 47.322571], [8.502337, 47.322573], [8.502336, 47.322574], [8.502332, 47.322607], [8.502324, 47.322638], [8.502311, 47.322669], [8.502295, 47.322699], [8.502292, 47.322704], [8.502289, 47.322707], [8.502285, 47.322711], [8.502281, 47.322714], [8.502276, 47.322718], [8.502271, 47.32272], [8.502266, 47.322723], [8.50226, 47.322725], [8.502254, 47.322727], [8.502248, 47.322729], [8.502242, 47.32273], [8.502235, 47.32273], [8.502174, 47.322735], [8.50216, 47.322737], [8.502147, 47.322739], [8.502134, 47.322742], [8.502122, 47.322746], [8.50211, 47.322751], [8.502099, 47.322756], [8.502089, 47.322762], [8.502079, 47.322769], [8.50201, 47.322821], [8.502008, 47.322822], [8.502006, 47.322823], [8.502005, 47.322824], [8.502003, 47.322825], [8.502001, 47.322825], [8.501999, 47.322826], [8.501997, 47.322826], [8.501995, 47.322826], [8.501992, 47.322827], [8.50199, 47.322827], [8.501988, 47.322826], [8.501986, 47.322826], [8.501984, 47.322826], [8.501982, 47.322825], [8.50198, 47.322825], [8.501978, 47.322824], [8.501976, 47.322823], [8.501974, 47.322822], [8.501973, 47.322821], [8.501971, 47.32282], [8.50197, 47.322819], [8.501969, 47.322818], [8.501968, 47.322816], [8.501967, 47.322815], [8.501967, 47.322813], [8.501966, 47.322812], [8.501966, 47.32281], [8.501966, 47.322809], [8.501966, 47.322808], [8.501967, 47.322806], [8.501967, 47.322805], [8.501968, 47.322803], [8.502042, 47.322679], [8.502046, 47.322671], [8.502049, 47.322663], [8.502051, 47.322655], [8.502052, 47.322647], [8.502052, 47.322639], [8.502051, 47.322631], [8.502049, 47.322623], [8.502045, 47.322615], [8.502041, 47.322607], [8.50199, 47.322528], [8.501987, 47.322522], [8.501984, 47.322516], [8.501982, 47.322509], [8.501981, 47.322502], [8.50198, 47.322495], [8.501979, 47.322446], [8.501979, 47.322444], [8.501979, 47.322441], [8.501978, 47.322438], [8.501976, 47.322436], [8.501975, 47.322433], [8.501973, 47.322431], [8.501971, 47.322429], [8.501968, 47.322426], [8.501966, 47.322424], [8.501963, 47.322423], [8.50196, 47.322421], [8.501956, 47.32242], [8.501953, 47.322418], [8.501949, 47.322417], [8.501945, 47.322417], [8.501941, 47.322416], [8.501937, 47.322416], [8.501934, 47.322415], [8.50193, 47.322416], [8.501926, 47.322416], [8.501922, 47.322416], [8.501918, 47.322417], [8.501914, 47.322418], [8.501911, 47.32242], [8.501907, 47.322421], [8.501904, 47.322423], [8.501901, 47.322424], [8.501899, 47.322426], [8.501896, 47.322428], [8.501894, 47.322431], [8.501892, 47.322433], [8.501891, 47.322436], [8.501889, 47.322438], [8.501861, 47.322507], [8.501846, 47.322552], [8.501845, 47.322556], [8.501843, 47.322559], [8.50184, 47.322563], [8.501837, 47.322567], [8.501833, 47.32257], [8.501829, 47.322573], [8.501825, 47.322576], [8.50182, 47.322579], [8.501815, 47.322581], [8.50181, 47.322583], [8.501804, 47.322585], [8.501799, 47.322586], [8.501793, 47.322587], [8.501787, 47.322588], [8.501748, 47.32259], [8.501737, 47.322591], [8.501726, 47.322593], [8.501715, 47.322595], [8.501705, 47.322599], [8.501695, 47.322602], [8.501686, 47.322607], [8.50165, 47.322625], [8.501648, 47.322626], [8.501645, 47.322627], [8.501643, 47.322627], [8.501641, 47.322628], [8.501638, 47.322628], [8.501636, 47.322629], [8.501634, 47.322629], [8.501631, 47.322629], [8.501629, 47.322629], [8.501626, 47.322628], [8.501624, 47.322628], [8.501621, 47.322627], [8.501619, 47.322626], [8.501617, 47.322626], [8.501615, 47.322625], [8.501613, 47.322623], [8.501612, 47.322622], [8.50161, 47.322621], [8.501609, 47.32262], [8.501607, 47.322618], [8.501607, 47.322617], [8.501606, 47.322615], [8.501605, 47.322613], [8.501605, 47.322612], [8.501597, 47.322558], [8.501597, 47.322556], [8.501596, 47.322554], [8.501595, 47.322552], [8.501594, 47.322551], [8.501593, 47.322549], [8.501591, 47.322547], [8.501589, 47.322546], [8.501587, 47.322544], [8.501585, 47.322543], [8.501583, 47.322542], [8.50158, 47.32254], [8.501578, 47.32254], [8.501575, 47.322539], [8.501572, 47.322538], [8.50157, 47.322538], [8.501567, 47.322537], [8.501564, 47.322537], [8.501561, 47.322537], [8.501558, 47.322538], [8.501555, 47.322538], [8.501552, 47.322539], [8.50155, 47.322539], [8.501547, 47.32254], [8.501544, 47.322541], [8.501542, 47.322542], [8.501509, 47.32256], [8.501508, 47.322561], [8.501506, 47.322561], [8.501505, 47.322562], [8.501504, 47.322562], [8.501502, 47.322563], [8.5015, 47.322563], [8.501499, 47.322563], [8.501497, 47.322563], [8.501495, 47.322563], [8.501494, 47.322563], [8.501492, 47.322562], [8.501491, 47.322562], [8.501489, 47.322562], [8.501488, 47.322561], [8.501486, 47.32256], [8.501485, 47.32256], [8.501484, 47.322559], [8.501483, 47.322558], [8.501482, 47.322557], [8.501481, 47.322556], [8.50148, 47.322555], [8.50148, 47.322554], [8.501479, 47.322553], [8.501466, 47.322516], [8.501462, 47.322506], [8.501456, 47.322496], [8.50145, 47.322486], [8.501442, 47.322477], [8.501433, 47.322468], [8.501423, 47.32246], [8.501412, 47.322452], [8.501297, 47.322379], [8.50129, 47.322374], [8.501284, 47.322369], [8.501278, 47.322364], [8.501274, 47.322358], [8.50127, 47.322352], [8.501266, 47.322346], [8.501202, 47.32221], [8.501194, 47.322195], [8.501185, 47.322181], [8.501174, 47.322168], [8.501044, 47.322012], [8.501032, 47.321997]]], "type": "MultiLineString"}, "id": "2813", "properties": {}, "type": "Feature"}, {"bbox": [8.593184, 47.373646, 8.595222, 47.375289], "geometry": {"coordinates": [[[8.593184, 47.373646], [8.593215, 47.373671], [8.593417, 47.374141], [8.593776, 47.37489], [8.593791, 47.374917], [8.59381, 47.374944], [8.593831, 47.374969], [8.593856, 47.374993], [8.593883, 47.375015], [8.593914, 47.375036], [8.593946, 47.375055], [8.593981, 47.375072], [8.594018, 47.375086], [8.594057, 47.375099], [8.594097, 47.37511], [8.594138, 47.375118], [8.594635, 47.3752], [8.595222, 47.375289]]], "type": "MultiLineString"}, "id": "2815", "properties": {}, "type": "Feature"}, {"bbox": [8.529075, 47.39314, 8.529365, 47.393515], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.529165, 47.393361], [8.529169, 47.39336], [8.529172, 47.393359], [8.529175, 47.393357], [8.529177, 47.393356], [8.52918, 47.393354], [8.529182, 47.393352], [8.529184, 47.39335], [8.529186, 47.393348], [8.529188, 47.393346], [8.529189, 47.393344], [8.52919, 47.393342], [8.529191, 47.393339], [8.529191, 47.393337], [8.529191, 47.393335], [8.529191, 47.393332], [8.529179, 47.393278], [8.52916, 47.393225], [8.529134, 47.393174], [8.529129, 47.393168], [8.529123, 47.393163], [8.529116, 47.393158], [8.529109, 47.393153], [8.529101, 47.393149], [8.529093, 47.393146], [8.529084, 47.393142], [8.529075, 47.39314]]], "type": "MultiLineString"}, "id": "2816", "properties": {}, "type": "Feature"}, {"bbox": [8.496232, 47.42615, 8.502591, 47.427205], "geometry": {"coordinates": [[[8.502591, 47.42615], [8.501519, 47.426155], [8.501226, 47.426167], [8.500934, 47.426193], [8.500647, 47.426233], [8.499066, 47.426413], [8.498925, 47.426435], [8.498787, 47.426465], [8.498654, 47.426503], [8.498526, 47.426548], [8.49837, 47.427128], [8.497842, 47.427076], [8.497316, 47.427018], [8.496791, 47.426955], [8.496666, 47.427023], [8.496367, 47.427136], [8.496232, 47.427205]]], "type": "MultiLineString"}, "id": "2818", "properties": {}, "type": "Feature"}, {"bbox": [8.539325, 47.396236, 8.540514, 47.396708], "geometry": {"coordinates": [[[8.540514, 47.396236], [8.539903, 47.396413], [8.539325, 47.396708]]], "type": "MultiLineString"}, "id": "2819", "properties": {}, "type": "Feature"}, {"bbox": [8.566397, 47.364948, 8.566924, 47.365581], "geometry": {"coordinates": [[[8.566924, 47.364948], [8.566598, 47.365232], [8.566397, 47.365581]]], "type": "MultiLineString"}, "id": "2820", "properties": {}, "type": "Feature"}, {"bbox": [8.531943, 47.4114, 8.533258, 47.412805], "geometry": {"coordinates": [[[8.533258, 47.411408], [8.533255, 47.411421], [8.532987, 47.4114], [8.532977, 47.411422], [8.532965, 47.411443], [8.53295, 47.411464], [8.532933, 47.411483], [8.532913, 47.411502], [8.532891, 47.411519], [8.532867, 47.411535], [8.532841, 47.41155], [8.532813, 47.411563], [8.532784, 47.411574], [8.532753, 47.411584], [8.53229, 47.411707], [8.531943, 47.411808], [8.53214, 47.412154], [8.532157, 47.412201], [8.532234, 47.412195], [8.532317, 47.412805]]], "type": "MultiLineString"}, "id": "2821", "properties": {}, "type": "Feature"}, {"bbox": [8.559467, 47.403274, 8.561128, 47.403411], "geometry": {"coordinates": [[[8.559467, 47.403326], [8.559485, 47.403315], [8.559505, 47.403306], [8.559526, 47.403297], [8.559548, 47.40329], [8.55957, 47.403284], [8.559594, 47.403279], [8.559618, 47.403276], [8.559642, 47.403274], [8.559667, 47.403274], [8.559691, 47.403275], [8.559715, 47.403277], [8.560601, 47.403389], [8.560665, 47.403394], [8.56079, 47.403403], [8.5609, 47.403411], [8.561128, 47.403407]]], "type": "MultiLineString"}, "id": "2822", "properties": {}, "type": "Feature"}, {"bbox": [8.51929, 47.391961, 8.523937, 47.393262], "geometry": {"coordinates": [[[8.523937, 47.392247], [8.523523, 47.392119], [8.523419, 47.392007], [8.52333, 47.391961], [8.520614, 47.392514], [8.52021, 47.392617], [8.51977, 47.392733], [8.51929, 47.392866], [8.51935, 47.392967], [8.519328, 47.392993], [8.519488, 47.393262]]], "type": "MultiLineString"}, "id": "2823", "properties": {}, "type": "Feature"}, {"bbox": [8.506484, 47.424125, 8.50856, 47.4245], "geometry": {"coordinates": [[[8.50856, 47.4245], [8.508435, 47.424477], [8.507941, 47.424293], [8.507783, 47.424239], [8.507619, 47.424195], [8.507449, 47.424161], [8.507275, 47.424138], [8.507099, 47.424126], [8.506922, 47.424125], [8.506746, 47.424135], [8.506572, 47.424156], [8.506484, 47.424172]]], "type": "MultiLineString"}, "id": "2824", "properties": {}, "type": "Feature"}, {"bbox": [8.508602, 47.406931, 8.510213, 47.407618], "geometry": {"coordinates": [[[8.508602, 47.407618], [8.508973, 47.407272], [8.508992, 47.407256], [8.509014, 47.407241], [8.509037, 47.407228], [8.509061, 47.407216], [8.509088, 47.407206], [8.509115, 47.407197], [8.509385, 47.407107], [8.509414, 47.407099], [8.509444, 47.407093], [8.509475, 47.407088], [8.509506, 47.407086], [8.509538, 47.407085], [8.509569, 47.407085], [8.509682, 47.40709], [8.510163, 47.406931], [8.510213, 47.406948]]], "type": "MultiLineString"}, "id": "2825", "properties": {}, "type": "Feature"}, {"bbox": [8.539849, 47.397943, 8.540878, 47.398339], "geometry": {"coordinates": [[[8.540327, 47.398142], [8.540767, 47.398339], [8.540878, 47.398224], [8.540436, 47.39804], [8.540327, 47.398142], [8.54025, 47.398117], [8.539849, 47.397943]]], "type": "MultiLineString"}, "id": "2826", "properties": {}, "type": "Feature"}, {"bbox": [8.484317, 47.406832, 8.484836, 47.407938], "geometry": {"coordinates": [[[8.484317, 47.406832], [8.484434, 47.406833], [8.484538, 47.407031], [8.484588, 47.40714], [8.484606, 47.407194], [8.484685, 47.407448], [8.484697, 47.407496], [8.484607, 47.407622], [8.484604, 47.407628], [8.484601, 47.407634], [8.484599, 47.40764], [8.484598, 47.407647], [8.484598, 47.407653], [8.484598, 47.40766], [8.4846, 47.407666], [8.484602, 47.407672], [8.484605, 47.407678], [8.484608, 47.407684], [8.484613, 47.40769], [8.484787, 47.407902], [8.484836, 47.407938]]], "type": "MultiLineString"}, "id": "2827", "properties": {}, "type": "Feature"}, {"bbox": [8.473022, 47.3717, 8.478307, 47.372547], "geometry": {"coordinates": [[[8.478307, 47.372547], [8.478172, 47.372521], [8.477259, 47.37237], [8.477184, 47.372362], [8.477108, 47.372359], [8.477032, 47.37236], [8.476972, 47.372365], [8.476912, 47.372372], [8.476852, 47.372381], [8.476746, 47.372398], [8.47664, 47.372415], [8.476533, 47.372432], [8.476449, 47.372443], [8.476365, 47.372453], [8.476281, 47.372461], [8.476155, 47.372471], [8.47603, 47.37248], [8.475904, 47.372489], [8.475821, 47.372494], [8.475738, 47.372497], [8.475655, 47.372499], [8.475654, 47.372499], [8.475147, 47.372449], [8.475096, 47.372444], [8.475046, 47.372438], [8.474997, 47.372432], [8.474952, 47.372426], [8.474908, 47.37242], [8.474863, 47.372414], [8.474848, 47.372411], [8.474833, 47.372408], [8.474819, 47.372405], [8.474794, 47.372398], [8.47477, 47.37239], [8.474747, 47.372381], [8.474725, 47.37237], [8.474659, 47.372335], [8.474593, 47.3723], [8.474528, 47.372264], [8.474117, 47.372039], [8.474064, 47.372012], [8.474006, 47.371989], [8.473946, 47.371969], [8.473678, 47.371893], [8.473614, 47.371873], [8.473553, 47.371849], [8.473494, 47.371823], [8.473414, 47.371783], [8.473336, 47.371742], [8.473259, 47.3717], [8.473022, 47.371702]]], "type": "MultiLineString"}, "id": "2828", "properties": {}, "type": "Feature"}, {"bbox": [8.544898, 47.417313, 8.545471, 47.417827], "geometry": {"coordinates": [[[8.545471, 47.417469], [8.545354, 47.417332], [8.545313, 47.417315], [8.545037, 47.417313], [8.545026, 47.417313], [8.545014, 47.417314], [8.545003, 47.417316], [8.544991, 47.417318], [8.54498, 47.417321], [8.54497, 47.417324], [8.54496, 47.417328], [8.54495, 47.417333], [8.544942, 47.417338], [8.544933, 47.417344], [8.544926, 47.41735], [8.544919, 47.417356], [8.544913, 47.417363], [8.544909, 47.41737], [8.544905, 47.417378], [8.544901, 47.417386], [8.544899, 47.417393], [8.544898, 47.417401], [8.544898, 47.417409], [8.544915, 47.417738], [8.544916, 47.417746], [8.544918, 47.417753], [8.54492, 47.417761], [8.544924, 47.417768], [8.544928, 47.417775], [8.544934, 47.417782], [8.54494, 47.417789], [8.544947, 47.417795], [8.544955, 47.4178], [8.544963, 47.417806], [8.544972, 47.41781], [8.544982, 47.417815], [8.544992, 47.417818], [8.545002, 47.417821], [8.545013, 47.417823], [8.545024, 47.417825], [8.545036, 47.417826], [8.545047, 47.417827], [8.545058, 47.417826], [8.54507, 47.417825], [8.545081, 47.417824], [8.545092, 47.417822], [8.545102, 47.417819], [8.545113, 47.417815], [8.545122, 47.417811], [8.545131, 47.417807], [8.54514, 47.417801], [8.545236, 47.417728], [8.545321, 47.417648], [8.545395, 47.417563], [8.545471, 47.417469]]], "type": "MultiLineString"}, "id": "2837", "properties": {}, "type": "Feature"}, {"bbox": [8.517906, 47.3953, 8.518829, 47.397864], "geometry": {"coordinates": [[[8.518096, 47.3953], [8.518097, 47.395304], [8.518156, 47.395305], [8.518206, 47.395454], [8.518143, 47.395551], [8.518087, 47.395657], [8.51805, 47.396019], [8.518058, 47.3961], [8.518005, 47.396155], [8.517982, 47.396214], [8.517906, 47.39665], [8.517934, 47.396724], [8.517945, 47.39681], [8.518123, 47.397209], [8.518155, 47.397249], [8.518196, 47.397291], [8.518286, 47.397498], [8.518312, 47.397853], [8.518518, 47.397864], [8.518829, 47.397859]]], "type": "MultiLineString"}, "id": "2839", "properties": {}, "type": "Feature"}, {"bbox": [8.584605, 47.403075, 8.592121, 47.406781], "geometry": {"coordinates": [[[8.584605, 47.406657], [8.584694, 47.406674], [8.584784, 47.406686], [8.584876, 47.406692], [8.584968, 47.406691], [8.585086, 47.406692], [8.585204, 47.4067], [8.58532, 47.406714], [8.58567, 47.406758], [8.585845, 47.406774], [8.586022, 47.406781], [8.586198, 47.406779], [8.586618, 47.406761], [8.586786, 47.406749], [8.586952, 47.406728], [8.587114, 47.406699], [8.587273, 47.406661], [8.588066, 47.406443], [8.588937, 47.4062], [8.591186, 47.405573], [8.591734, 47.405419], [8.591816, 47.405393], [8.591895, 47.405362], [8.59197, 47.405328], [8.591998, 47.405308], [8.592024, 47.405287], [8.592047, 47.405264], [8.592067, 47.405241], [8.592084, 47.405216], [8.592098, 47.40519], [8.592109, 47.405164], [8.592116, 47.405137], [8.59212, 47.405109], [8.592121, 47.405082], [8.592118, 47.405054], [8.592112, 47.405027], [8.592102, 47.405001], [8.592089, 47.404975], [8.592073, 47.40495], [8.592053, 47.404925], [8.591932, 47.404789], [8.59182, 47.40465], [8.591719, 47.404508], [8.591629, 47.404362], [8.591387, 47.403976], [8.591362, 47.403883], [8.59135, 47.40383], [8.591345, 47.403776], [8.591347, 47.403723], [8.591357, 47.403669], [8.591374, 47.403617], [8.591397, 47.403565], [8.591521, 47.403383], [8.591533, 47.403367], [8.591543, 47.403349], [8.591551, 47.403332], [8.591557, 47.403313], [8.59156, 47.403295], [8.591561, 47.403276], [8.59156, 47.403257], [8.591556, 47.403239], [8.59155, 47.403221], [8.591542, 47.403203], [8.591531, 47.403186], [8.591519, 47.403169], [8.591504, 47.403153], [8.591487, 47.403138], [8.591469, 47.403125], [8.591452, 47.403114], [8.591434, 47.403105], [8.591415, 47.403097], [8.591394, 47.40309], [8.591373, 47.403085], [8.591351, 47.40308], [8.591329, 47.403077], [8.591307, 47.403076], [8.591284, 47.403075], [8.591262, 47.403076], [8.591239, 47.403079], [8.591217, 47.403083], [8.591196, 47.403088], [8.591175, 47.403094], [8.591155, 47.403102], [8.591137, 47.40311], [8.591119, 47.40312], [8.5911, 47.403133], [8.591082, 47.403148], [8.591066, 47.403163], [8.591053, 47.403179], [8.591041, 47.403197], [8.591032, 47.403214], [8.591026, 47.403232], [8.591021, 47.403251], [8.59102, 47.40327], [8.59102, 47.403288], [8.591024, 47.403307], [8.591029, 47.403325], [8.591247, 47.40368], [8.591299, 47.403839], [8.591387, 47.403976]]], "type": "MultiLineString"}, "id": "2840", "properties": {}, "type": "Feature"}, {"bbox": [8.472898, 47.378266, 8.476462, 47.38156], "geometry": {"coordinates": [[[8.476462, 47.378266], [8.476044, 47.37849], [8.475944, 47.378548], [8.475852, 47.378611], [8.475767, 47.378678], [8.475317, 47.379062], [8.475129, 47.379229], [8.475083, 47.379274], [8.475041, 47.379321], [8.475006, 47.37937], [8.474984, 47.379402], [8.47496, 47.379434], [8.474935, 47.379465], [8.474608, 47.379852], [8.474484, 47.379986], [8.474344, 47.380112], [8.474188, 47.380229], [8.474019, 47.380337], [8.473714, 47.380515], [8.473653, 47.380553], [8.473595, 47.380592], [8.47354, 47.380634], [8.47332, 47.380806], [8.473293, 47.38083], [8.473268, 47.380855], [8.473247, 47.380882], [8.47323, 47.380909], [8.473216, 47.380938], [8.473206, 47.380967], [8.4732, 47.380997], [8.473165, 47.381247], [8.473158, 47.381282], [8.473147, 47.381316], [8.473132, 47.381349], [8.473113, 47.381381], [8.47309, 47.381412], [8.473063, 47.381442], [8.473033, 47.38147], [8.473, 47.381496], [8.472963, 47.38152], [8.472898, 47.38156]]], "type": "MultiLineString"}, "id": "2841", "properties": {}, "type": "Feature"}, {"bbox": [8.577299, 47.382294, 8.583323, 47.387802], "geometry": {"coordinates": [[[8.582011, 47.387802], [8.582039, 47.387787], [8.582501, 47.387252], [8.582561, 47.38718], [8.582617, 47.387106], [8.582668, 47.38703], [8.582744, 47.386912], [8.582783, 47.386854], [8.582825, 47.386797], [8.58287, 47.386742], [8.582985, 47.386605], [8.58315, 47.386393], [8.583208, 47.386309], [8.583255, 47.386221], [8.58329, 47.386132], [8.583312, 47.38604], [8.583323, 47.385947], [8.583321, 47.385855], [8.583299, 47.385606], [8.583289, 47.385544], [8.583272, 47.385483], [8.583248, 47.385423], [8.583216, 47.385365], [8.583129, 47.385224], [8.582984, 47.385015], [8.58297, 47.384997], [8.582954, 47.38498], [8.582936, 47.384963], [8.582916, 47.384948], [8.582895, 47.384934], [8.582871, 47.384921], [8.582847, 47.384909], [8.582821, 47.384899], [8.582794, 47.38489], [8.582766, 47.384882], [8.581846, 47.384666], [8.581695, 47.384634], [8.581541, 47.384607], [8.581386, 47.384586], [8.581315, 47.384578], [8.581244, 47.384571], [8.581173, 47.384566], [8.580561, 47.384525], [8.580522, 47.384524], [8.580482, 47.384524], [8.580442, 47.384527], [8.580403, 47.384532], [8.580365, 47.38454], [8.580359, 47.384532], [8.580352, 47.384524], [8.580344, 47.384516], [8.580335, 47.384509], [8.580326, 47.384503], [8.580315, 47.384497], [8.580304, 47.384492], [8.580293, 47.384488], [8.58028, 47.384484], [8.580268, 47.384481], [8.580255, 47.384478], [8.580055, 47.384441], [8.579862, 47.384391], [8.579677, 47.384329], [8.579501, 47.384255], [8.579336, 47.38417], [8.57894, 47.383944], [8.5789, 47.38392], [8.578864, 47.383893], [8.578831, 47.383864], [8.578802, 47.383834], [8.578776, 47.383801], [8.578755, 47.383768], [8.578738, 47.383733], [8.578725, 47.383698], [8.578685, 47.383562], [8.578647, 47.383375], [8.578633, 47.383324], [8.578614, 47.383274], [8.578588, 47.383224], [8.578558, 47.383176], [8.57845, 47.383024], [8.578173, 47.38268], [8.578027, 47.382526], [8.578019, 47.382518], [8.577999, 47.3825], [8.577977, 47.382484], [8.577954, 47.382469], [8.577928, 47.382456], [8.5779, 47.382444], [8.577871, 47.382434], [8.577841, 47.382426], [8.577716, 47.382395], [8.577299, 47.382294]]], "type": "MultiLineString"}, "id": "2843", "properties": {}, "type": "Feature"}, {"bbox": [8.523275, 47.411969, 8.524215, 47.412139], "geometry": {"coordinates": [[[8.524215, 47.412139], [8.52401, 47.412106], [8.523625, 47.412084], [8.52343, 47.412027], [8.523275, 47.411969]]], "type": "MultiLineString"}, "id": "2844", "properties": {}, "type": "Feature"}, {"bbox": [8.496477, 47.403887, 8.497547, 47.40761], "geometry": {"coordinates": [[[8.496491, 47.403887], [8.496485, 47.4039], [8.496481, 47.403913], [8.496478, 47.403926], [8.496477, 47.403939], [8.496478, 47.403952], [8.496481, 47.403965], [8.496485, 47.403978], [8.496491, 47.40399], [8.496498, 47.404002], [8.496723, 47.404276], [8.496782, 47.404332], [8.496847, 47.404385], [8.496917, 47.404435], [8.497116, 47.404581], [8.497158, 47.404616], [8.497195, 47.404653], [8.497226, 47.404693], [8.497252, 47.404734], [8.497272, 47.404777], [8.497362, 47.405031], [8.4974, 47.405155], [8.497419, 47.405237], [8.497435, 47.405403], [8.497444, 47.405611], [8.497445, 47.405621], [8.497457, 47.405777], [8.497469, 47.405883], [8.497472, 47.406029], [8.497472, 47.406047], [8.497457, 47.406162], [8.497392, 47.406483], [8.497379, 47.40655], [8.497371, 47.406723], [8.497387, 47.406895], [8.497424, 47.407065], [8.497451, 47.407172], [8.497464, 47.40728], [8.497464, 47.407388], [8.497478, 47.407522], [8.497547, 47.40761]]], "type": "MultiLineString"}, "id": "2845", "properties": {}, "type": "Feature"}, {"bbox": [8.491717, 47.41143, 8.495642, 47.416802], "geometry": {"coordinates": [[[8.491717, 47.41143], [8.491811, 47.41152], [8.491912, 47.411633], [8.492304, 47.412075], [8.492355, 47.412138], [8.492602, 47.412438], [8.492612, 47.412449], [8.492622, 47.412461], [8.492633, 47.412472], [8.492648, 47.412487], [8.492663, 47.412501], [8.492679, 47.412515], [8.492925, 47.41272], [8.492925, 47.41272], [8.492955, 47.412748], [8.492981, 47.412777], [8.493004, 47.412808], [8.493023, 47.41284], [8.493038, 47.412873], [8.493048, 47.412907], [8.493055, 47.412941], [8.493057, 47.412975], [8.493067, 47.413073], [8.49306, 47.413171], [8.493006, 47.413594], [8.492987, 47.41381], [8.492985, 47.414027], [8.493, 47.414244], [8.49309, 47.415058], [8.4931, 47.415124], [8.493113, 47.415188], [8.49313, 47.415253], [8.493138, 47.415279], [8.493147, 47.415304], [8.493156, 47.41533], [8.493234, 47.415505], [8.493334, 47.415674], [8.493457, 47.415837], [8.493833, 47.416286], [8.493872, 47.416332], [8.494236, 47.416724], [8.494306, 47.416802], [8.494421, 47.416751], [8.495132, 47.416431], [8.495334, 47.416329], [8.495551, 47.416178], [8.495642, 47.416109]]], "type": "MultiLineString"}, "id": "2848", "properties": {}, "type": "Feature"}, {"bbox": [8.56049, 47.392206, 8.563228, 47.392813], "geometry": {"coordinates": [[[8.56049, 47.392206], [8.560495, 47.39222], [8.560502, 47.392234], [8.56051, 47.392248], [8.56052, 47.392261], [8.560532, 47.392273], [8.560545, 47.392285], [8.56056, 47.392296], [8.560576, 47.392306], [8.560593, 47.392315], [8.560611, 47.392323], [8.56063, 47.39233], [8.56065, 47.392336], [8.561381, 47.392529], [8.561765, 47.39262], [8.561826, 47.392634], [8.561889, 47.392644], [8.561952, 47.392653], [8.562171, 47.392677], [8.562212, 47.392681], [8.562253, 47.392683], [8.562294, 47.392685], [8.562335, 47.392687], [8.562375, 47.392691], [8.562414, 47.392698], [8.562488, 47.392712], [8.562563, 47.392722], [8.562639, 47.392729], [8.562845, 47.392743], [8.562904, 47.392748], [8.562963, 47.392757], [8.56302, 47.392768], [8.563228, 47.392813]]], "type": "MultiLineString"}, "id": "2850", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394524, 8.492571, 47.394843], "geometry": {"coordinates": [[[8.492571, 47.394524], [8.491234, 47.394843], [8.491182, 47.394825], [8.491128, 47.39481], [8.491073, 47.394798], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "2853", "properties": {}, "type": "Feature"}, {"bbox": [8.54281, 47.372073, 8.543801, 47.372133], "geometry": {"coordinates": [[[8.54281, 47.372133], [8.543088, 47.372133], [8.543131, 47.37212], [8.543801, 47.372073]]], "type": "MultiLineString"}, "id": "2855", "properties": {}, "type": "Feature"}, {"bbox": [8.539887, 47.412351, 8.540439, 47.412642], "geometry": {"coordinates": [[[8.539887, 47.412532], [8.540182, 47.412642], [8.540439, 47.412351]]], "type": "MultiLineString"}, "id": "2856", "properties": {}, "type": "Feature"}, {"bbox": [8.515553, 47.402677, 8.518024, 47.405318], "geometry": {"coordinates": [[[8.518024, 47.402677], [8.517912, 47.402714], [8.517806, 47.402758], [8.517705, 47.402808], [8.517612, 47.402864], [8.517526, 47.402926], [8.517448, 47.402992], [8.517385, 47.403047], [8.517315, 47.403098], [8.517238, 47.403144], [8.517155, 47.403186], [8.517067, 47.403222], [8.516974, 47.403252], [8.516904, 47.403282], [8.516836, 47.403313], [8.516768, 47.403346], [8.516569, 47.403464], [8.516307, 47.403609], [8.515935, 47.403784], [8.51573, 47.403877], [8.515553, 47.403956], [8.515636, 47.403942], [8.515696, 47.403955], [8.515896, 47.404017], [8.516082, 47.404115], [8.516251, 47.404224], [8.516312, 47.404261], [8.516537, 47.404385], [8.516637, 47.404448], [8.516723, 47.404511], [8.516953, 47.404745], [8.517396, 47.405108], [8.517765, 47.405318]]], "type": "MultiLineString"}, "id": "2867", "properties": {}, "type": "Feature"}, {"bbox": [8.517998, 47.398549, 8.520384, 47.399638], "geometry": {"coordinates": [[[8.517998, 47.398549], [8.518159, 47.39857], [8.518245, 47.398635], [8.518312, 47.398673], [8.518317, 47.398677], [8.518322, 47.39868], [8.518326, 47.398684], [8.518329, 47.398688], [8.518332, 47.398692], [8.518335, 47.398696], [8.518337, 47.398701], [8.518338, 47.398705], [8.518339, 47.39871], [8.518339, 47.398714], [8.518339, 47.398719], [8.518338, 47.398724], [8.518337, 47.398728], [8.518335, 47.398732], [8.518332, 47.398737], [8.518329, 47.398741], [8.518271, 47.39881], [8.518266, 47.398817], [8.518263, 47.398825], [8.518261, 47.398832], [8.51826, 47.39884], [8.51826, 47.398848], [8.518261, 47.398856], [8.518263, 47.398863], [8.518266, 47.39887], [8.51827, 47.398877], [8.518275, 47.398883], [8.518281, 47.398889], [8.518287, 47.398895], [8.518295, 47.3989], [8.518303, 47.398905], [8.518311, 47.398909], [8.51832, 47.398913], [8.518371, 47.398933], [8.51922, 47.399256], [8.519236, 47.399263], [8.51925, 47.39927], [8.519264, 47.399279], [8.519277, 47.399288], [8.519288, 47.399298], [8.519298, 47.399308], [8.519306, 47.399319], [8.51935, 47.399366], [8.519382, 47.3994], [8.519405, 47.399415], [8.51943, 47.399429], [8.519457, 47.39944], [8.519486, 47.39945], [8.519515, 47.399458], [8.519545, 47.399465], [8.520316, 47.399584], [8.520326, 47.399587], [8.520335, 47.399591], [8.520344, 47.399596], [8.520352, 47.399601], [8.520359, 47.399606], [8.520365, 47.399612], [8.520371, 47.399618], [8.520376, 47.399624], [8.520381, 47.399631], [8.520384, 47.399638]]], "type": "MultiLineString"}, "id": "2871", "properties": {}, "type": "Feature"}, {"bbox": [8.562987, 47.389715, 8.567304, 47.396903], "geometry": {"coordinates": [[[8.565621, 47.389715], [8.565641, 47.3898], [8.56561, 47.389846], [8.565144, 47.390486], [8.565117, 47.390521], [8.565085, 47.390553], [8.56505, 47.390584], [8.56472, 47.390854], [8.564685, 47.390883], [8.564651, 47.390913], [8.564618, 47.390943], [8.564409, 47.391142], [8.56435, 47.391203], [8.564296, 47.391266], [8.564247, 47.391332], [8.563624, 47.392251], [8.563328, 47.39272], [8.563313, 47.392741], [8.563295, 47.392761], [8.563275, 47.39278], [8.563253, 47.392797], [8.563228, 47.392813], [8.563169, 47.392916], [8.563022, 47.393173], [8.563007, 47.393203], [8.562996, 47.393234], [8.562989, 47.393265], [8.562987, 47.393297], [8.562988, 47.393329], [8.562994, 47.393361], [8.563003, 47.393393], [8.563017, 47.393423], [8.563035, 47.393453], [8.563056, 47.393482], [8.563081, 47.39351], [8.563109, 47.393535], [8.563141, 47.39356], [8.563176, 47.393582], [8.563213, 47.393602], [8.563252, 47.393619], [8.563466, 47.393669], [8.564048, 47.393718], [8.564102, 47.393721], [8.564156, 47.393721], [8.56421, 47.393719], [8.564263, 47.393713], [8.564316, 47.393705], [8.564621, 47.393647], [8.565846, 47.393409], [8.56588, 47.393404], [8.565915, 47.3934], [8.56595, 47.393399], [8.565985, 47.3934], [8.566019, 47.393403], [8.566054, 47.393408], [8.566087, 47.393415], [8.566119, 47.393424], [8.56615, 47.393435], [8.56618, 47.393448], [8.566208, 47.393462], [8.566233, 47.393479], [8.566257, 47.393496], [8.566278, 47.393515], [8.566296, 47.393535], [8.566312, 47.393557], [8.566403, 47.393695], [8.566455, 47.393781], [8.566531, 47.393914], [8.566782, 47.394327], [8.567107, 47.394883], [8.567138, 47.394945], [8.56716, 47.395009], [8.567172, 47.395075], [8.56719, 47.39524], [8.5673, 47.396179], [8.567304, 47.396271], [8.567295, 47.396364], [8.567271, 47.396455], [8.567122, 47.396903]]], "type": "MultiLineString"}, "id": "2873", "properties": {}, "type": "Feature"}, {"bbox": [8.593674, 47.37173, 8.594441, 47.37346], "geometry": {"coordinates": [[[8.593898, 47.37173], [8.593709, 47.372055], [8.593674, 47.372195], [8.593727, 47.372333], [8.593953, 47.372639], [8.594241, 47.373033], [8.594273, 47.37308], [8.5943, 47.373129], [8.594323, 47.373178], [8.594441, 47.37346]]], "type": "MultiLineString"}, "id": "2874", "properties": {}, "type": "Feature"}, {"bbox": [8.5582, 47.37618, 8.558663, 47.376436], "geometry": {"coordinates": [[[8.5582, 47.376436], [8.558236, 47.376416], [8.558429, 47.376261], [8.558663, 47.37618]]], "type": "MultiLineString"}, "id": "2875", "properties": {}, "type": "Feature"}, {"bbox": [8.530476, 47.427692, 8.532677, 47.429609], "geometry": {"coordinates": [[[8.532677, 47.427692], [8.532348, 47.428054], [8.532338, 47.428065], [8.532327, 47.428076], [8.532316, 47.428087], [8.532233, 47.428167], [8.532155, 47.428248], [8.532082, 47.428332], [8.532065, 47.428352], [8.532048, 47.428371], [8.53203, 47.42839], [8.531871, 47.428552], [8.531842, 47.42858], [8.531811, 47.428606], [8.531777, 47.428631], [8.531641, 47.428729], [8.531583, 47.428767], [8.53152, 47.428802], [8.531453, 47.428833], [8.531382, 47.42886], [8.531014, 47.428987], [8.530988, 47.428997], [8.530964, 47.429009], [8.530941, 47.429021], [8.530919, 47.429035], [8.5309, 47.429051], [8.530883, 47.429067], [8.530868, 47.429084], [8.53076, 47.429221], [8.530733, 47.429259], [8.530712, 47.429298], [8.530696, 47.429339], [8.530682, 47.429378], [8.530596, 47.429474], [8.530476, 47.429609]]], "type": "MultiLineString"}, "id": "2876", "properties": {}, "type": "Feature"}, {"bbox": [8.503077, 47.402423, 8.504317, 47.403432], "geometry": {"coordinates": [[[8.503077, 47.402423], [8.503239, 47.402523], [8.503397, 47.402627], [8.50355, 47.402733], [8.503784, 47.402913], [8.503838, 47.402962], [8.503888, 47.403013], [8.503936, 47.403064], [8.504188, 47.40332], [8.504317, 47.403432]]], "type": "MultiLineString"}, "id": "2877", "properties": {}, "type": "Feature"}, {"bbox": [8.542483, 47.404893, 8.542753, 47.405119], "geometry": {"coordinates": [[[8.542681, 47.405119], [8.542724, 47.405092], [8.54253, 47.40505], [8.542524, 47.405048], [8.542518, 47.405045], [8.542513, 47.405042], [8.542508, 47.405039], [8.542503, 47.405036], [8.542499, 47.405032], [8.542495, 47.405029], [8.542492, 47.405025], [8.542489, 47.40502], [8.542487, 47.405016], [8.542485, 47.405012], [8.542484, 47.405007], [8.542483, 47.405002], [8.542484, 47.404998], [8.542484, 47.404993], [8.542486, 47.404989], [8.542487, 47.404984], [8.54249, 47.40498], [8.542493, 47.404976], [8.542496, 47.404972], [8.5425, 47.404968], [8.542505, 47.404965], [8.54251, 47.404961], [8.542515, 47.404958], [8.54252, 47.404956], [8.542526, 47.404954], [8.542533, 47.404952], [8.542539, 47.40495], [8.542753, 47.404893]]], "type": "MultiLineString"}, "id": "2878", "properties": {}, "type": "Feature"}, {"bbox": [8.545932, 47.371986, 8.546273, 47.37218], "geometry": {"coordinates": [[[8.546273, 47.37211], [8.546222, 47.3721], [8.546145, 47.371986], [8.545932, 47.372051], [8.545957, 47.372078], [8.546019, 47.37218], [8.546207, 47.372119], [8.546222, 47.3721]]], "type": "MultiLineString"}, "id": "2879", "properties": {}, "type": "Feature"}, {"bbox": [8.575786, 47.392509, 8.587239, 47.39496], "geometry": {"coordinates": [[[8.575786, 47.39496], [8.575947, 47.394878], [8.576051, 47.39483], [8.57616, 47.394787], [8.576274, 47.39475], [8.576392, 47.39472], [8.576513, 47.394696], [8.576513, 47.394696], [8.576767, 47.394655], [8.576859, 47.39464], [8.577833, 47.394491], [8.579032, 47.394294], [8.579049, 47.394291], [8.579066, 47.394288], [8.579084, 47.394285], [8.579171, 47.394272], [8.579322, 47.394251], [8.57967, 47.394206], [8.579838, 47.394179], [8.580002, 47.394141], [8.58016, 47.394094], [8.580932, 47.393834], [8.580983, 47.393815], [8.581031, 47.393793], [8.581076, 47.393768], [8.581118, 47.39374], [8.581156, 47.39371], [8.58119, 47.393678], [8.581219, 47.393644], [8.581243, 47.393608], [8.581263, 47.393571], [8.581278, 47.393533], [8.581483, 47.392889], [8.581493, 47.392857], [8.581574, 47.392602], [8.581578, 47.392593], [8.581583, 47.392583], [8.581589, 47.392574], [8.581596, 47.392566], [8.581604, 47.392558], [8.581614, 47.39255], [8.581624, 47.392543], [8.581635, 47.392536], [8.581647, 47.39253], [8.581659, 47.392525], [8.581673, 47.392521], [8.581686, 47.392517], [8.5817, 47.392515], [8.581721, 47.392511], [8.581743, 47.39251], [8.581765, 47.392509], [8.581786, 47.39251], [8.581808, 47.392512], [8.581829, 47.392515], [8.581849, 47.392519], [8.581869, 47.392525], [8.581889, 47.392532], [8.581907, 47.39254], [8.581924, 47.392549], [8.582374, 47.392813], [8.582423, 47.39284], [8.582474, 47.392865], [8.582527, 47.392888], [8.582549, 47.392897], [8.58257, 47.392908], [8.58259, 47.392919], [8.582748, 47.393009], [8.582789, 47.39303], [8.582832, 47.393049], [8.582878, 47.393065], [8.582926, 47.393079], [8.583149, 47.393133], [8.583222, 47.393149], [8.583297, 47.393161], [8.583373, 47.393168], [8.58345, 47.393171], [8.583527, 47.393169], [8.583604, 47.393164], [8.583679, 47.393154], [8.584446, 47.39303], [8.584477, 47.393026], [8.584508, 47.393024], [8.58454, 47.393023], [8.584571, 47.393024], [8.584603, 47.393028], [8.584633, 47.393033], [8.584663, 47.393039], [8.584692, 47.393048], [8.58472, 47.393058], [8.584746, 47.39307], [8.584771, 47.393083], [8.584794, 47.393097], [8.584816, 47.393113], [8.584835, 47.39313], [8.584852, 47.393148], [8.584866, 47.393167], [8.584878, 47.393187], [8.584889, 47.393204], [8.584901, 47.39322], [8.584916, 47.393235], [8.584932, 47.393249], [8.58495, 47.393262], [8.58497, 47.393274], [8.584992, 47.393284], [8.585014, 47.393294], [8.585038, 47.393301], [8.585063, 47.393308], [8.585088, 47.393312], [8.585114, 47.393316], [8.585141, 47.393317], [8.585167, 47.393317], [8.58618, 47.393285], [8.586265, 47.393282], [8.586265, 47.393282], [8.58632, 47.393279], [8.586375, 47.393272], [8.586428, 47.393261], [8.586479, 47.393247], [8.586731, 47.393168], [8.586765, 47.393158], [8.586801, 47.39315], [8.586837, 47.393145], [8.586873, 47.393141], [8.58691, 47.393139], [8.586947, 47.39314], [8.586984, 47.393142], [8.587021, 47.393147], [8.587198, 47.393174], [8.587239, 47.393178]]], "type": "MultiLineString"}, "id": "2880", "properties": {}, "type": "Feature"}, {"bbox": [8.5617, 47.357297, 8.568354, 47.360093], "geometry": {"coordinates": [[[8.5617, 47.360093], [8.561762, 47.360042], [8.561799, 47.359989], [8.561806, 47.359985], [8.561818, 47.359964], [8.561824, 47.35995], [8.561827, 47.359935], [8.561826, 47.359912], [8.56182, 47.359894], [8.561798, 47.359855], [8.561786, 47.359824], [8.561784, 47.359809], [8.561784, 47.359793], [8.56179, 47.359768], [8.561776, 47.359729], [8.561892, 47.3597], [8.561913, 47.359696], [8.561972, 47.35969], [8.562064, 47.359677], [8.56208, 47.359673], [8.562189, 47.359642], [8.562219, 47.359633], [8.562274, 47.359613], [8.56231, 47.359599], [8.562321, 47.359593], [8.562454, 47.359531], [8.562593, 47.359456], [8.562629, 47.359438], [8.562826, 47.359357], [8.563116, 47.359248], [8.563148, 47.359233], [8.563215, 47.359196], [8.563252, 47.359178], [8.563315, 47.359155], [8.563352, 47.359147], [8.563405, 47.35914], [8.563461, 47.359137], [8.563483, 47.359138], [8.563725, 47.35917], [8.56389, 47.359139], [8.563905, 47.359135], [8.56399, 47.359103], [8.564016, 47.359092], [8.564132, 47.359034], [8.564248, 47.358959], [8.564275, 47.358946], [8.564366, 47.358908], [8.564428, 47.35889], [8.564509, 47.358869], [8.564653, 47.358835], [8.564828, 47.358779], [8.564851, 47.358771], [8.565149, 47.358652], [8.565395, 47.358541], [8.565899, 47.358299], [8.566189, 47.358157], [8.566378, 47.358062], [8.56726, 47.357751], [8.568203, 47.357357], [8.568354, 47.357297]]], "type": "MultiLineString"}, "id": "2881", "properties": {}, "type": "Feature"}, {"bbox": [8.485659, 47.399154, 8.489702, 47.401746], "geometry": {"coordinates": [[[8.489702, 47.400185], [8.489382, 47.399883], [8.489281, 47.399741], [8.489071, 47.399285], [8.488392, 47.399445], [8.488379, 47.399447], [8.488367, 47.399448], [8.488354, 47.399448], [8.488341, 47.399447], [8.488328, 47.399446], [8.488316, 47.399443], [8.488304, 47.399441], [8.488292, 47.399437], [8.488281, 47.399433], [8.488271, 47.399428], [8.488261, 47.399423], [8.488251, 47.399417], [8.488243, 47.39941], [8.488235, 47.399403], [8.488229, 47.399396], [8.488026, 47.399179], [8.48802, 47.399175], [8.488014, 47.399171], [8.488007, 47.399167], [8.488, 47.399164], [8.487993, 47.399161], [8.487985, 47.399159], [8.487977, 47.399157], [8.487969, 47.399155], [8.487961, 47.399154], [8.487952, 47.399154], [8.487944, 47.399154], [8.487935, 47.399154], [8.487927, 47.399155], [8.487919, 47.399157], [8.487911, 47.399159], [8.487472, 47.399276], [8.487295, 47.399328], [8.48693, 47.39947], [8.486585, 47.399633], [8.486261, 47.399816], [8.486181, 47.399868], [8.486107, 47.399924], [8.48604, 47.399984], [8.485988, 47.400038], [8.485659, 47.400418], [8.486089, 47.400614], [8.486314, 47.401232], [8.486324, 47.401302], [8.486403, 47.401441], [8.486647, 47.401746]]], "type": "MultiLineString"}, "id": "2883", "properties": {}, "type": "Feature"}, {"bbox": [8.538959, 47.375009, 8.539609, 47.375143], "geometry": {"coordinates": [[[8.538959, 47.375143], [8.539529, 47.375018], [8.539609, 47.375009]]], "type": "MultiLineString"}, "id": "2884", "properties": {}, "type": "Feature"}, {"bbox": [8.528916, 47.372095, 8.529389, 47.372482], "geometry": {"coordinates": [[[8.529389, 47.372105], [8.529362, 47.372095], [8.528916, 47.372482]]], "type": "MultiLineString"}, "id": "2885", "properties": {}, "type": "Feature"}, {"bbox": [8.528916, 47.372105, 8.529389, 47.372514], "geometry": {"coordinates": [[[8.528916, 47.372482], [8.529181, 47.372514], [8.52919, 47.372513], [8.529199, 47.372512], [8.529207, 47.37251], [8.529216, 47.372508], [8.529224, 47.372505], [8.529231, 47.372502], [8.529239, 47.372499], [8.529245, 47.372495], [8.529251, 47.37249], [8.529257, 47.372485], [8.529262, 47.37248], [8.529266, 47.372475], [8.52927, 47.372469], [8.529273, 47.372464], [8.529389, 47.372105]]], "type": "MultiLineString"}, "id": "2886", "properties": {}, "type": "Feature"}, {"bbox": [8.603015, 47.364675, 8.615701, 47.36928], "geometry": {"coordinates": [[[8.603015, 47.36928], [8.603394, 47.369016], [8.603439, 47.368987], [8.603488, 47.368961], [8.603541, 47.368939], [8.603596, 47.36892], [8.603654, 47.368904], [8.603713, 47.368892], [8.603774, 47.368883], [8.603836, 47.368879], [8.603898, 47.368878], [8.60396, 47.368881], [8.604682, 47.368845], [8.605924, 47.368686], [8.606409, 47.368615], [8.606459, 47.368607], [8.606508, 47.368597], [8.606555, 47.368584], [8.606601, 47.368568], [8.606644, 47.36855], [8.606685, 47.368529], [8.607443, 47.368143], [8.6077, 47.367998], [8.607784, 47.367934], [8.60786, 47.367865], [8.607927, 47.367793], [8.607984, 47.367716], [8.608031, 47.367636], [8.608067, 47.367554], [8.608398, 47.367582], [8.608699, 47.367575], [8.610328, 47.367338], [8.610698, 47.36728], [8.611584, 47.367003], [8.612067, 47.366801], [8.61315, 47.366392], [8.613837, 47.366153], [8.613989, 47.366066], [8.614132, 47.365972], [8.614266, 47.365873], [8.614436, 47.36571], [8.614788, 47.365368], [8.614951, 47.36526], [8.615107, 47.365124], [8.615373, 47.364941], [8.615408, 47.36485], [8.61559, 47.364694], [8.615701, 47.364675]]], "type": "MultiLineString"}, "id": "2910", "properties": {}, "type": "Feature"}, {"bbox": [8.493614, 47.401031, 8.493829, 47.402358], "geometry": {"coordinates": [[[8.493722, 47.401031], [8.493689, 47.401387], [8.493699, 47.401728], [8.493648, 47.401782], [8.493614, 47.401848], [8.493643, 47.401945], [8.493672, 47.402163], [8.49372, 47.402231], [8.493764, 47.402291], [8.493829, 47.402358]]], "type": "MultiLineString"}, "id": "2911", "properties": {}, "type": "Feature"}, {"bbox": [8.492485, 47.365031, 8.494099, 47.367183], "geometry": {"coordinates": [[[8.492485, 47.367183], [8.492683, 47.36695], [8.492735, 47.366864], [8.492861, 47.366712], [8.493024, 47.366485], [8.493066, 47.366419], [8.493461, 47.365763], [8.493736, 47.365344], [8.493831, 47.365122], [8.493836, 47.365073], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "2912", "properties": {}, "type": "Feature"}, {"bbox": [8.57928, 47.384586, 8.582244, 47.387268], "geometry": {"coordinates": [[[8.57928, 47.386431], [8.579372, 47.386405], [8.579409, 47.386393], [8.579444, 47.38638], [8.579478, 47.386364], [8.580635, 47.385785], [8.580724, 47.385736], [8.580808, 47.385683], [8.580885, 47.385626], [8.580956, 47.385565], [8.581107, 47.385423], [8.581157, 47.385372], [8.5812, 47.385318], [8.581237, 47.385263], [8.581267, 47.385205], [8.58129, 47.385146], [8.581305, 47.385086], [8.581314, 47.385025], [8.581324, 47.384891], [8.581328, 47.384855], [8.581333, 47.384818], [8.581341, 47.384781], [8.581386, 47.384586], [8.58144, 47.384644], [8.581591, 47.384852], [8.581762, 47.385076], [8.582209, 47.385636], [8.58222, 47.385651], [8.582229, 47.385667], [8.582236, 47.385683], [8.58224, 47.385699], [8.582243, 47.385716], [8.582244, 47.385733], [8.582243, 47.385749], [8.582239, 47.385766], [8.582234, 47.385782], [8.582227, 47.385798], [8.582217, 47.385814], [8.582206, 47.385828], [8.582193, 47.385843], [8.582178, 47.385856], [8.582161, 47.385868], [8.58157, 47.386281], [8.580765, 47.386834], [8.580199, 47.387217], [8.580122, 47.387268]]], "type": "MultiLineString"}, "id": "2913", "properties": {}, "type": "Feature"}, {"bbox": [8.50787, 47.378783, 8.511212, 47.380774], "geometry": {"coordinates": [[[8.511212, 47.37913], [8.511066, 47.37916], [8.510991, 47.379082], [8.510696, 47.379214], [8.510279, 47.378783], [8.50799, 47.379812], [8.50837, 47.380179], [8.50787, 47.380391], [8.508269, 47.380761], [8.508281, 47.380774], [8.509239, 47.380338], [8.50906, 47.380159], [8.511133, 47.379228], [8.511066, 47.37916]]], "type": "MultiLineString"}, "id": "2914", "properties": {}, "type": "Feature"}, {"bbox": [8.572493, 47.393479, 8.577512, 47.39554], "geometry": {"coordinates": [[[8.577512, 47.39554], [8.577411, 47.395352], [8.577374, 47.395283], [8.577297, 47.395157], [8.577205, 47.395035], [8.577098, 47.394918], [8.576977, 47.394809], [8.576843, 47.394706], [8.576818, 47.394689], [8.576793, 47.394672], [8.576767, 47.394655], [8.576622, 47.394572], [8.576466, 47.394499], [8.576301, 47.394436], [8.576231, 47.394413], [8.575538, 47.394208], [8.57499, 47.394051], [8.574881, 47.394023], [8.574841, 47.394012], [8.574801, 47.394003], [8.57476, 47.393993], [8.574679, 47.393972], [8.574601, 47.393946], [8.574526, 47.393916], [8.574456, 47.393881], [8.57439, 47.393843], [8.574328, 47.393801], [8.57406, 47.393602], [8.574025, 47.393578], [8.573987, 47.393557], [8.573946, 47.393538], [8.573903, 47.393521], [8.573858, 47.393507], [8.573811, 47.393495], [8.573763, 47.393487], [8.573714, 47.393481], [8.573665, 47.393479], [8.573615, 47.393479], [8.573566, 47.393482], [8.573517, 47.393488], [8.573469, 47.393498], [8.572843, 47.393638], [8.57275, 47.393662], [8.57266, 47.393691], [8.572575, 47.393725], [8.572493, 47.393764]]], "type": "MultiLineString"}, "id": "2915", "properties": {}, "type": "Feature"}, {"bbox": [8.532881, 47.340651, 8.53467, 47.341224], "geometry": {"coordinates": [[[8.53467, 47.341224], [8.533494, 47.340985], [8.533456, 47.340977], [8.533419, 47.340967], [8.533383, 47.340954], [8.533349, 47.34094], [8.533318, 47.340923], [8.533288, 47.340904], [8.533262, 47.340884], [8.533238, 47.340862], [8.533217, 47.340839], [8.533199, 47.340815], [8.533184, 47.340789], [8.533173, 47.340763], [8.533166, 47.34075], [8.533158, 47.340737], [8.533148, 47.340725], [8.533136, 47.340714], [8.533123, 47.340703], [8.533108, 47.340693], [8.533093, 47.340684], [8.533076, 47.340676], [8.533058, 47.340669], [8.53304, 47.340663], [8.53302, 47.340658], [8.533001, 47.340654], [8.53298, 47.340652], [8.53296, 47.340651], [8.53294, 47.340651], [8.532881, 47.340658]]], "type": "MultiLineString"}, "id": "2916", "properties": {}, "type": "Feature"}, {"bbox": [8.576919, 47.361861, 8.57761, 47.362394], "geometry": {"coordinates": [[[8.576925, 47.361861], [8.576922, 47.361867], [8.576921, 47.361872], [8.57692, 47.361878], [8.576919, 47.361884], [8.57692, 47.36189], [8.576921, 47.361896], [8.576923, 47.361902], [8.576926, 47.361907], [8.576929, 47.361913], [8.576933, 47.361918], [8.576938, 47.361923], [8.577051, 47.362023], [8.577484, 47.362321], [8.57761, 47.362394]]], "type": "MultiLineString"}, "id": "2917", "properties": {}, "type": "Feature"}, {"bbox": [8.492525, 47.407335, 8.493228, 47.407728], "geometry": {"coordinates": [[[8.493228, 47.407728], [8.493184, 47.407686], [8.493134, 47.407647], [8.49308, 47.407611], [8.493021, 47.407579], [8.492958, 47.40755], [8.492891, 47.407526], [8.492808, 47.407497], [8.492729, 47.407464], [8.492655, 47.407425], [8.492587, 47.407382], [8.492525, 47.407335]]], "type": "MultiLineString"}, "id": "2920", "properties": {}, "type": "Feature"}, {"bbox": [8.476595, 47.381806, 8.480432, 47.383957], "geometry": {"coordinates": [[[8.480432, 47.38393], [8.480252, 47.38395], [8.480234, 47.383953], [8.480216, 47.383955], [8.480198, 47.383957], [8.48018, 47.383957], [8.480162, 47.383956], [8.480144, 47.383953], [8.480126, 47.38395], [8.480109, 47.383946], [8.480093, 47.383941], [8.480077, 47.383934], [8.480062, 47.383927], [8.479742, 47.383762], [8.479415, 47.383603], [8.479082, 47.383449], [8.479038, 47.38343], [8.478997, 47.383409], [8.478959, 47.383385], [8.478704, 47.383237], [8.478454, 47.383086], [8.478207, 47.382931], [8.477549, 47.382567], [8.477467, 47.382513], [8.477392, 47.382455], [8.477326, 47.382393], [8.477176, 47.382249], [8.477019, 47.382109], [8.476855, 47.381972], [8.476747, 47.381888], [8.476595, 47.381806]]], "type": "MultiLineString"}, "id": "2921", "properties": {}, "type": "Feature"}, {"bbox": [8.548539, 47.415343, 8.549049, 47.415854], "geometry": {"coordinates": [[[8.548539, 47.415343], [8.548606, 47.415425], [8.549049, 47.415854]]], "type": "MultiLineString"}, "id": "2922", "properties": {}, "type": "Feature"}, {"bbox": [8.511656, 47.364156, 8.5129, 47.364999], "geometry": {"coordinates": [[[8.5129, 47.364999], [8.512705, 47.364848], [8.51236, 47.364609], [8.511702, 47.364171], [8.511656, 47.364156]]], "type": "MultiLineString"}, "id": "2923", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.381617, 8.513634, 47.383143], "geometry": {"coordinates": [[[8.513634, 47.381617], [8.51258, 47.382072], [8.512232, 47.382211], [8.51006, 47.383143]]], "type": "MultiLineString"}, "id": "2926", "properties": {}, "type": "Feature"}, {"bbox": [8.519358, 47.331761, 8.521904, 47.33334], "geometry": {"coordinates": [[[8.519358, 47.332826], [8.519471, 47.332771], [8.519493, 47.332765], [8.519515, 47.33276], [8.519537, 47.332757], [8.51956, 47.332755], [8.519583, 47.332754], [8.519606, 47.332754], [8.519918, 47.332749], [8.519946, 47.332749], [8.519975, 47.332747], [8.520002, 47.332743], [8.52003, 47.332737], [8.520056, 47.33273], [8.520081, 47.332722], [8.520252, 47.33266], [8.520266, 47.332651], [8.520271, 47.332646], [8.520275, 47.33264], [8.520279, 47.332634], [8.520281, 47.332628], [8.520283, 47.332621], [8.520284, 47.332615], [8.520285, 47.332608], [8.520284, 47.332602], [8.520283, 47.332595], [8.520281, 47.332589], [8.520247, 47.332492], [8.520228, 47.332392], [8.520223, 47.332293], [8.520223, 47.332271], [8.52022, 47.33225], [8.520215, 47.332229], [8.520185, 47.33213], [8.520159, 47.332031], [8.520137, 47.331931], [8.520126, 47.331893], [8.52011, 47.331856], [8.520089, 47.33182], [8.520063, 47.331785], [8.520063, 47.331784], [8.520062, 47.331782], [8.520061, 47.331781], [8.520061, 47.33178], [8.52006, 47.331778], [8.52006, 47.331777], [8.52006, 47.331776], [8.520061, 47.331774], [8.520061, 47.331773], [8.520062, 47.331772], [8.520063, 47.33177], [8.520063, 47.331769], [8.520065, 47.331768], [8.520066, 47.331767], [8.520067, 47.331766], [8.520069, 47.331765], [8.52007, 47.331764], [8.520072, 47.331763], [8.520074, 47.331763], [8.520076, 47.331762], [8.520077, 47.331762], [8.520079, 47.331761], [8.520081, 47.331761], [8.520083, 47.331761], [8.520086, 47.331761], [8.520088, 47.331761], [8.52009, 47.331762], [8.520091, 47.331762], [8.520093, 47.331762], [8.520095, 47.331763], [8.520097, 47.331764], [8.520147, 47.331788], [8.520195, 47.331815], [8.52024, 47.331843], [8.520398, 47.331948], [8.520425, 47.331967], [8.52045, 47.331987], [8.520474, 47.332008], [8.520517, 47.332048], [8.520563, 47.332085], [8.520611, 47.332122], [8.520845, 47.33229], [8.520933, 47.332367], [8.520957, 47.332392], [8.520984, 47.332416], [8.521013, 47.332438], [8.521033, 47.332454], [8.521051, 47.332471], [8.521067, 47.332488], [8.52108, 47.332507], [8.521158, 47.332633], [8.521167, 47.332645], [8.521176, 47.332658], [8.521186, 47.332671], [8.521213, 47.332707], [8.521235, 47.332746], [8.521252, 47.332785], [8.521272, 47.332835], [8.521295, 47.332885], [8.52132, 47.332934], [8.521403, 47.333071], [8.521497, 47.333203], [8.521603, 47.333331], [8.521604, 47.333333], [8.521606, 47.333334], [8.521607, 47.333335], [8.521609, 47.333336], [8.521611, 47.333337], [8.521613, 47.333338], [8.521615, 47.333339], [8.521617, 47.333339], [8.52162, 47.33334], [8.521622, 47.33334], [8.521624, 47.33334], [8.521627, 47.33334], [8.521629, 47.33334], [8.521631, 47.33334], [8.521634, 47.333339], [8.521636, 47.333339], [8.521638, 47.333338], [8.52164, 47.333337], [8.521642, 47.333337], [8.521644, 47.333336], [8.521646, 47.333334], [8.521647, 47.333333], [8.521649, 47.333332], [8.52165, 47.333331], [8.521651, 47.333329], [8.521652, 47.333328], [8.521652, 47.333326], [8.521653, 47.333325], [8.521653, 47.333323], [8.521653, 47.333321], [8.521649, 47.333221], [8.521634, 47.33316], [8.521634, 47.333159], [8.521634, 47.333157], [8.521634, 47.333156], [8.521634, 47.333155], [8.521635, 47.333153], [8.521635, 47.333152], [8.521636, 47.33315], [8.521637, 47.333149], [8.521638, 47.333148], [8.52164, 47.333147], [8.521641, 47.333146], [8.521643, 47.333145], [8.521644, 47.333144], [8.521646, 47.333143], [8.521648, 47.333142], [8.52165, 47.333142], [8.521652, 47.333142], [8.521654, 47.333141], [8.521656, 47.333141], [8.521658, 47.333141], [8.521661, 47.333141], [8.521663, 47.333141], [8.521665, 47.333142], [8.521667, 47.333142], [8.521669, 47.333143], [8.521671, 47.333143], [8.521672, 47.333144], [8.521674, 47.333145], [8.521676, 47.333146], [8.521677, 47.333147], [8.521678, 47.333148], [8.52169, 47.333161], [8.52178, 47.333264], [8.52179, 47.333274], [8.521802, 47.333284], [8.521815, 47.333293], [8.521829, 47.333302], [8.521844, 47.333309], [8.52186, 47.333316], [8.521877, 47.333321], [8.521904, 47.333329]]], "type": "MultiLineString"}, "id": "2929", "properties": {}, "type": "Feature"}, {"bbox": [8.506326, 47.405649, 8.509795, 47.406801], "geometry": {"coordinates": [[[8.506326, 47.406801], [8.506421, 47.406772], [8.506775, 47.406666], [8.5071, 47.406559], [8.508161, 47.406205], [8.509514, 47.405755], [8.509795, 47.405649]]], "type": "MultiLineString"}, "id": "2930", "properties": {}, "type": "Feature"}, {"bbox": [8.530241, 47.419957, 8.530292, 47.420188], "geometry": {"coordinates": [[[8.530292, 47.419957], [8.53029, 47.420007], [8.530286, 47.420057], [8.530277, 47.420107], [8.530269, 47.420135], [8.530257, 47.420162], [8.530241, 47.420188]]], "type": "MultiLineString"}, "id": "2932", "properties": {}, "type": "Feature"}, {"bbox": [8.496813, 47.39952, 8.499164, 47.401627], "geometry": {"coordinates": [[[8.496813, 47.39952], [8.496845, 47.399612], [8.497003, 47.39993], [8.497048, 47.400061], [8.497186, 47.40033], [8.497478, 47.400724], [8.497677, 47.40069], [8.497956, 47.401122], [8.498233, 47.401219], [8.498295, 47.401238], [8.498499, 47.40133], [8.49855, 47.401361], [8.498646, 47.401428], [8.498748, 47.40149], [8.498856, 47.401547], [8.498913, 47.401571], [8.498973, 47.401591], [8.499035, 47.401607], [8.499099, 47.401619], [8.499164, 47.401627]]], "type": "MultiLineString"}, "id": "2933", "properties": {}, "type": "Feature"}, {"bbox": [8.532851, 47.339057, 8.53576, 47.340189], "geometry": {"coordinates": [[[8.53576, 47.339261], [8.535025, 47.339057], [8.53495, 47.339065], [8.534735, 47.339206], [8.533807, 47.339829], [8.533467, 47.340061], [8.533409, 47.340087], [8.533054, 47.34011], [8.532851, 47.340189]]], "type": "MultiLineString"}, "id": "2934", "properties": {}, "type": "Feature"}, {"bbox": [8.511957, 47.412709, 8.512443, 47.414905], "geometry": {"coordinates": [[[8.512443, 47.414905], [8.51237, 47.414774], [8.512254, 47.414583], [8.512096, 47.414228], [8.512028, 47.414071], [8.511979, 47.41394], [8.511966, 47.413871], [8.511957, 47.413828], [8.511968, 47.413739], [8.512007, 47.413564], [8.512011, 47.413546], [8.512049, 47.413374], [8.512049, 47.413359], [8.51205, 47.41334], [8.512056, 47.413175], [8.512029, 47.412756], [8.512029, 47.412749], [8.512027, 47.412743], [8.512025, 47.412737], [8.512023, 47.412731], [8.512019, 47.412725], [8.512015, 47.41272], [8.512009, 47.412714], [8.512004, 47.412709]]], "type": "MultiLineString"}, "id": "2935", "properties": {}, "type": "Feature"}, {"bbox": [8.499859, 47.402897, 8.503484, 47.40549], "geometry": {"coordinates": [[[8.499859, 47.402897], [8.4999, 47.403], [8.500035, 47.403269], [8.500058, 47.403322], [8.500081, 47.403374], [8.500105, 47.403427], [8.500107, 47.403484], [8.500116, 47.403541], [8.500131, 47.403597], [8.500142, 47.40363], [8.500156, 47.403663], [8.500174, 47.403694], [8.500209, 47.40375], [8.500215, 47.40376], [8.500223, 47.403771], [8.500231, 47.40378], [8.500241, 47.40379], [8.500284, 47.403835], [8.500325, 47.403875], [8.500365, 47.403916], [8.500404, 47.403958], [8.500538, 47.404099], [8.50064, 47.404207], [8.500681, 47.404245], [8.500736, 47.404294], [8.500817, 47.404354], [8.500901, 47.404411], [8.500988, 47.404466], [8.501045, 47.404501], [8.501106, 47.404533], [8.50117, 47.404561], [8.501324, 47.404613], [8.501454, 47.404669], [8.501571, 47.404732], [8.501596, 47.404746], [8.501622, 47.404758], [8.50165, 47.404769], [8.501859, 47.404855], [8.501946, 47.404897], [8.501965, 47.404908], [8.501982, 47.404919], [8.501998, 47.404932], [8.502048, 47.404972], [8.502116, 47.405021], [8.502138, 47.405036], [8.502162, 47.405052], [8.502186, 47.405066], [8.502374, 47.405171], [8.502441, 47.405204], [8.502513, 47.405233], [8.502588, 47.405257], [8.502955, 47.405362], [8.503298, 47.405462], [8.503359, 47.405475], [8.503421, 47.405484], [8.503484, 47.40549]]], "type": "MultiLineString"}, "id": "2939", "properties": {}, "type": "Feature"}, {"bbox": [8.488037, 47.407871, 8.494677, 47.410105], "geometry": {"coordinates": [[[8.494677, 47.407871], [8.494457, 47.407942], [8.494291, 47.408001], [8.493937, 47.408124], [8.493578, 47.408245], [8.49322, 47.408356], [8.492843, 47.408452], [8.49247, 47.408541], [8.492284, 47.408578], [8.492083, 47.408612], [8.491696, 47.408682], [8.49131, 47.408758], [8.491149, 47.408793], [8.490993, 47.408837], [8.490843, 47.408888], [8.490699, 47.408948], [8.490553, 47.409017], [8.490398, 47.409104], [8.490316, 47.409142], [8.490126, 47.409206], [8.490044, 47.409242], [8.489976, 47.409287], [8.489909, 47.40933], [8.489822, 47.409384], [8.489472, 47.409514], [8.489228, 47.409614], [8.489077, 47.409694], [8.488958, 47.409764], [8.488819, 47.40983], [8.488472, 47.409965], [8.488143, 47.410082], [8.488073, 47.410097], [8.488037, 47.410105]]], "type": "MultiLineString"}, "id": "2942", "properties": {}, "type": "Feature"}, {"bbox": [8.492121, 47.364959, 8.494099, 47.365391], "geometry": {"coordinates": [[[8.494099, 47.365031], [8.494019, 47.365021], [8.493997, 47.365007], [8.493973, 47.364996], [8.493948, 47.364985], [8.493922, 47.364977], [8.493894, 47.36497], [8.493866, 47.364964], [8.493837, 47.364961], [8.493808, 47.364959], [8.493779, 47.364959], [8.493749, 47.364961], [8.493721, 47.364964], [8.493692, 47.364969], [8.493369, 47.365012], [8.493063, 47.36498], [8.492708, 47.365102], [8.49252, 47.365206], [8.492121, 47.365391]]], "type": "MultiLineString"}, "id": "2948", "properties": {}, "type": "Feature"}, {"bbox": [8.568024, 47.416543, 8.569522, 47.417133], "geometry": {"coordinates": [[[8.568024, 47.417133], [8.568079, 47.41698], [8.568084, 47.416958], [8.568091, 47.416936], [8.568101, 47.416914], [8.568114, 47.416893], [8.568129, 47.416873], [8.568148, 47.416855], [8.568168, 47.416837], [8.568191, 47.416821], [8.568217, 47.416806], [8.568724, 47.416572], [8.568749, 47.416563], [8.568776, 47.416556], [8.568803, 47.41655], [8.568831, 47.416546], [8.568859, 47.416544], [8.568887, 47.416543], [8.568915, 47.416544], [8.568944, 47.416546], [8.568971, 47.416551], [8.568998, 47.416556], [8.569025, 47.416564], [8.56905, 47.416573], [8.569074, 47.416583], [8.569096, 47.416595], [8.569454, 47.416798], [8.569469, 47.416811], [8.569483, 47.416824], [8.569494, 47.416839], [8.569504, 47.416854], [8.569512, 47.41687], [8.569517, 47.416886], [8.569521, 47.416902], [8.569522, 47.416919], [8.569522, 47.416935], [8.569519, 47.416952], [8.569514, 47.416968], [8.569506, 47.416984]]], "type": "MultiLineString"}, "id": "2949", "properties": {}, "type": "Feature"}, {"bbox": [8.534851, 47.342395, 8.535275, 47.342867], "geometry": {"coordinates": [[[8.534851, 47.342867], [8.534896, 47.342848], [8.534942, 47.342826], [8.534984, 47.342802], [8.535023, 47.342775], [8.535059, 47.342745], [8.535091, 47.342714], [8.535119, 47.342682], [8.535143, 47.342647], [8.535149, 47.342639], [8.53527, 47.342432], [8.535275, 47.342395]]], "type": "MultiLineString"}, "id": "2950", "properties": {}, "type": "Feature"}, {"bbox": [8.543842, 47.372311, 8.545705, 47.372488], "geometry": {"coordinates": [[[8.543842, 47.372311], [8.544091, 47.372321], [8.544142, 47.372326], [8.544232, 47.372338], [8.544275, 47.372345], [8.544533, 47.372395], [8.544727, 47.372424], [8.544803, 47.372434], [8.544896, 47.372445], [8.545238, 47.372488], [8.545492, 47.372488], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "2951", "properties": {}, "type": "Feature"}, {"bbox": [8.536374, 47.413668, 8.537874, 47.413752], "geometry": {"coordinates": [[[8.537874, 47.413668], [8.536374, 47.413752]]], "type": "MultiLineString"}, "id": "2952", "properties": {}, "type": "Feature"}, {"bbox": [8.495011, 47.367865, 8.496409, 47.368185], "geometry": {"coordinates": [[[8.495041, 47.367865], [8.49503, 47.367884], [8.495022, 47.367903], [8.495015, 47.367923], [8.495012, 47.367943], [8.495011, 47.367963], [8.495012, 47.367983], [8.495016, 47.368003], [8.495023, 47.368023], [8.495032, 47.368042], [8.495044, 47.36806], [8.495058, 47.368078], [8.495086, 47.368098], [8.495117, 47.368116], [8.49515, 47.368132], [8.495185, 47.368146], [8.495221, 47.368158], [8.495259, 47.368168], [8.495298, 47.368176], [8.495337, 47.368181], [8.495378, 47.368184], [8.495418, 47.368185], [8.495459, 47.368184], [8.495499, 47.36818], [8.495538, 47.368173], [8.495577, 47.368165], [8.495677, 47.368145], [8.49578, 47.368131], [8.495883, 47.368122], [8.495988, 47.36812], [8.496409, 47.368148]]], "type": "MultiLineString"}, "id": "2953", "properties": {}, "type": "Feature"}, {"bbox": [8.475233, 47.413151, 8.482677, 47.414505], "geometry": {"coordinates": [[[8.482677, 47.41415], [8.482431, 47.414073], [8.481677, 47.413889], [8.481373, 47.413823], [8.481165, 47.413803], [8.481155, 47.413804], [8.481144, 47.413806], [8.481134, 47.413809], [8.481125, 47.413812], [8.481115, 47.413815], [8.481106, 47.413819], [8.481087, 47.41383], [8.48107, 47.413841], [8.481053, 47.413854], [8.481039, 47.413867], [8.481026, 47.413882], [8.481015, 47.413897], [8.481006, 47.413912], [8.480698, 47.414439], [8.480692, 47.41445], [8.480687, 47.414461], [8.480683, 47.414472], [8.480681, 47.414483], [8.48068, 47.414494], [8.480681, 47.414505], [8.480552, 47.414471], [8.480423, 47.414435], [8.480413, 47.41444], [8.480403, 47.414445], [8.480392, 47.414448], [8.48038, 47.414451], [8.480368, 47.414454], [8.480356, 47.414455], [8.480344, 47.414456], [8.480332, 47.414456], [8.48032, 47.414456], [8.480272, 47.414449], [8.480225, 47.414439], [8.480179, 47.414427], [8.479629, 47.414259], [8.479612, 47.414253], [8.479595, 47.414247], [8.47958, 47.414239], [8.479565, 47.414231], [8.479551, 47.414222], [8.479539, 47.414212], [8.479528, 47.414201], [8.479519, 47.41419], [8.479511, 47.414178], [8.479367, 47.4139], [8.4794, 47.413847], [8.479204, 47.413785], [8.479048, 47.413759], [8.478871, 47.413701], [8.478766, 47.413678], [8.478721, 47.413665], [8.478667, 47.413651], [8.478613, 47.413641], [8.478557, 47.413635], [8.4785, 47.413632], [8.478443, 47.413632], [8.478387, 47.413636], [8.478331, 47.413643], [8.478276, 47.413654], [8.478223, 47.413668], [8.478172, 47.413685], [8.478124, 47.413705], [8.477635, 47.413545], [8.477621, 47.41353], [8.477393, 47.413482], [8.477334, 47.41347], [8.476838, 47.41335], [8.476569, 47.413305], [8.476551, 47.413337], [8.476009, 47.413245], [8.475768, 47.41321], [8.475496, 47.413181], [8.475246, 47.413151], [8.475233, 47.41321]]], "type": "MultiLineString"}, "id": "2957", "properties": {}, "type": "Feature"}, {"bbox": [8.566827, 47.399842, 8.571367, 47.402268], "geometry": {"coordinates": [[[8.566827, 47.402268], [8.566948, 47.402215], [8.567324, 47.402104], [8.567923, 47.401877], [8.5687, 47.401567], [8.569279, 47.401261], [8.569398, 47.401178], [8.569706, 47.400969], [8.570204, 47.400594], [8.570418, 47.40045], [8.570616, 47.400288], [8.570627, 47.400279], [8.57064, 47.40027], [8.570653, 47.400262], [8.570692, 47.40024], [8.570708, 47.40023], [8.57073, 47.400217], [8.570932, 47.4001], [8.571367, 47.399842]]], "type": "MultiLineString"}, "id": "2958", "properties": {}, "type": "Feature"}, {"bbox": [8.599132, 47.358803, 8.602469, 47.359326], "geometry": {"coordinates": [[[8.599132, 47.358803], [8.599194, 47.358812], [8.599279, 47.358824], [8.599458, 47.358824], [8.599484, 47.358826], [8.599588, 47.358835], [8.599718, 47.358856], [8.600272, 47.35897], [8.600463, 47.359004], [8.600654, 47.359036], [8.600845, 47.359066], [8.600954, 47.359083], [8.601062, 47.3591], [8.601171, 47.359118], [8.601245, 47.35913], [8.60132, 47.359141], [8.601395, 47.359153], [8.601432, 47.359159], [8.601468, 47.359166], [8.601504, 47.359173], [8.601573, 47.359189], [8.601643, 47.359203], [8.601713, 47.359216], [8.601793, 47.35923], [8.601873, 47.359245], [8.601953, 47.359259], [8.601991, 47.359266], [8.602029, 47.359272], [8.602068, 47.359277], [8.60212, 47.359284], [8.602172, 47.359292], [8.602224, 47.359301], [8.602255, 47.359306], [8.602287, 47.35931], [8.602319, 47.359312], [8.602469, 47.359326]]], "type": "MultiLineString"}, "id": "2963", "properties": {}, "type": "Feature"}, {"bbox": [8.508331, 47.363976, 8.510024, 47.364718], "geometry": {"coordinates": [[[8.508344, 47.364718], [8.508331, 47.3646], [8.508466, 47.364589], [8.508404, 47.364366], [8.508478, 47.364308], [8.508791, 47.364245], [8.508743, 47.364011], [8.508983, 47.363976], [8.509178, 47.364054], [8.510024, 47.364396]]], "type": "MultiLineString"}, "id": "2969", "properties": {}, "type": "Feature"}, {"bbox": [8.524459, 47.39416, 8.525158, 47.394942], "geometry": {"coordinates": [[[8.525158, 47.39416], [8.524941, 47.394235], [8.524916, 47.394246], [8.524893, 47.394258], [8.524872, 47.394271], [8.524852, 47.394286], [8.524834, 47.394301], [8.524819, 47.394318], [8.524806, 47.394336], [8.524702, 47.394499], [8.524459, 47.394942]]], "type": "MultiLineString"}, "id": "2987", "properties": {}, "type": "Feature"}, {"bbox": [8.572431, 47.404327, 8.57365, 47.404379], "geometry": {"coordinates": [[[8.572431, 47.404379], [8.572451, 47.404374], [8.572472, 47.40437], [8.572492, 47.404366], [8.572516, 47.404361], [8.572541, 47.404356], [8.572565, 47.404352], [8.572611, 47.404346], [8.572658, 47.404341], [8.572705, 47.404336], [8.572788, 47.404331], [8.572872, 47.404328], [8.572956, 47.404327], [8.572956, 47.404327], [8.57365, 47.404344]]], "type": "MultiLineString"}, "id": "2988", "properties": {}, "type": "Feature"}, {"bbox": [8.518701, 47.323913, 8.520864, 47.33266], "geometry": {"coordinates": [[[8.520252, 47.33266], [8.520225, 47.33263], [8.520193, 47.332595], [8.520143, 47.332538], [8.519929, 47.332297], [8.519844, 47.332184], [8.519756, 47.332054], [8.519681, 47.331924], [8.51962, 47.331808], [8.519561, 47.331668], [8.519526, 47.331557], [8.519484, 47.331487], [8.519477, 47.331477], [8.519468, 47.331467], [8.519458, 47.331458], [8.519447, 47.331449], [8.519435, 47.331441], [8.519349, 47.331388], [8.519339, 47.33138], [8.519329, 47.331373], [8.51932, 47.331365], [8.519312, 47.331356], [8.519306, 47.331347], [8.519087, 47.331028], [8.519028, 47.330932], [8.51898, 47.330833], [8.518946, 47.330731], [8.518923, 47.330628], [8.518901, 47.330483], [8.51889, 47.330425], [8.518875, 47.330368], [8.518857, 47.330311], [8.518735, 47.329964], [8.518712, 47.329878], [8.518701, 47.32979], [8.518702, 47.329701], [8.518728, 47.32943], [8.518733, 47.329394], [8.518741, 47.329359], [8.518753, 47.329324], [8.518791, 47.329222], [8.518818, 47.329148], [8.518896, 47.328978], [8.519132, 47.328541], [8.519232, 47.328355], [8.519443, 47.328026], [8.519557, 47.32783], [8.519654, 47.32763], [8.519732, 47.327426], [8.519758, 47.327331], [8.519773, 47.327234], [8.519775, 47.327137], [8.519775, 47.327137], [8.519774, 47.327083], [8.519773, 47.327045], [8.519745, 47.326859], [8.5197, 47.326673], [8.519696, 47.32641], [8.519707, 47.32633], [8.519716, 47.326267], [8.519763, 47.326074], [8.519818, 47.325947], [8.52, 47.325731], [8.520074, 47.325653], [8.520196, 47.325503], [8.520805, 47.324604], [8.520813, 47.324589], [8.52082, 47.324573], [8.520827, 47.324556], [8.520836, 47.324531], [8.520844, 47.324506], [8.52085, 47.32448], [8.520857, 47.324345], [8.520864, 47.323913]]], "type": "MultiLineString"}, "id": "2990", "properties": {}, "type": "Feature"}, {"bbox": [8.550363, 47.420935, 8.554326, 47.421908], "geometry": {"coordinates": [[[8.554326, 47.420935], [8.554255, 47.420953], [8.554184, 47.420969], [8.554112, 47.420984], [8.554015, 47.421004], [8.553916, 47.42102], [8.553816, 47.421031], [8.553786, 47.421035], [8.553757, 47.42104], [8.55373, 47.421047], [8.553702, 47.421056], [8.553677, 47.421066], [8.553652, 47.421077], [8.553444, 47.421163], [8.553393, 47.421168], [8.553268, 47.421151], [8.55301, 47.421265], [8.552941, 47.421297], [8.552868, 47.421324], [8.552791, 47.421346], [8.552712, 47.421364], [8.552631, 47.421377], [8.552549, 47.421386], [8.552198, 47.421419], [8.552049, 47.421434], [8.551901, 47.421452], [8.551754, 47.421475], [8.551373, 47.421553], [8.551005, 47.421653], [8.550651, 47.421775], [8.550363, 47.421908]]], "type": "MultiLineString"}, "id": "2991", "properties": {}, "type": "Feature"}, {"bbox": [8.611851, 47.362435, 8.613923, 47.367829], "geometry": {"coordinates": [[[8.612477, 47.362435], [8.612444, 47.36262], [8.612389, 47.362821], [8.612305, 47.363018], [8.612193, 47.363209], [8.612051, 47.363431], [8.61194, 47.363661], [8.611862, 47.363897], [8.611851, 47.363981], [8.611851, 47.364066], [8.611863, 47.36415], [8.611886, 47.364233], [8.61192, 47.364314], [8.611964, 47.364392], [8.612175, 47.36528], [8.612209, 47.3655], [8.612228, 47.366116], [8.612252, 47.36617], [8.612276, 47.366192], [8.612302, 47.366212], [8.612331, 47.366231], [8.612362, 47.366248], [8.612396, 47.366262], [8.612439, 47.366279], [8.612484, 47.366294], [8.612529, 47.366308], [8.612611, 47.366329], [8.612694, 47.366347], [8.612779, 47.366362], [8.612864, 47.366374], [8.612949, 47.366383], [8.613036, 47.366389], [8.61315, 47.366392], [8.613285, 47.36643], [8.613308, 47.366439], [8.613332, 47.366447], [8.613356, 47.366455], [8.613404, 47.366472], [8.61345, 47.366492], [8.613493, 47.366514], [8.613576, 47.36656], [8.61366, 47.366605], [8.613744, 47.36665], [8.613783, 47.366672], [8.613821, 47.366694], [8.613858, 47.366717], [8.613873, 47.366728], [8.613886, 47.36674], [8.613897, 47.366753], [8.613903, 47.36676], [8.613907, 47.366767], [8.613911, 47.366774], [8.613917, 47.366785], [8.613921, 47.366797], [8.613923, 47.366808], [8.613923, 47.366821], [8.613922, 47.366833], [8.61392, 47.366845], [8.613917, 47.366859], [8.613914, 47.366872], [8.61391, 47.366885], [8.613901, 47.366919], [8.61389, 47.366952], [8.613878, 47.366986], [8.613864, 47.367021], [8.613848, 47.367057], [8.613832, 47.367092], [8.613703, 47.367353], [8.613584, 47.367634], [8.613567, 47.367686], [8.613558, 47.367738], [8.613557, 47.367791], [8.61353, 47.367829]]], "type": "MultiLineString"}, "id": "2992", "properties": {}, "type": "Feature"}, {"bbox": [8.520215, 47.339041, 8.520804, 47.341126], "geometry": {"coordinates": [[[8.520288, 47.341126], [8.520546, 47.341126], [8.520555, 47.341009], [8.520589, 47.340455], [8.520598, 47.340294], [8.520587, 47.339803], [8.520804, 47.339801], [8.520803, 47.339621], [8.520572, 47.339623], [8.520518, 47.339041], [8.520387, 47.339043], [8.520258, 47.339044], [8.52027, 47.339555], [8.520215, 47.339555], [8.520228, 47.340204], [8.520386, 47.340202], [8.520403, 47.341036], [8.520284, 47.341037], [8.520288, 47.341126]]], "type": "MultiLineString"}, "id": "2993", "properties": {}, "type": "Feature"}, {"bbox": [8.565621, 47.383589, 8.569778, 47.389715], "geometry": {"coordinates": [[[8.569233, 47.383589], [8.569228, 47.383592], [8.569223, 47.383596], [8.569218, 47.3836], [8.569214, 47.383604], [8.569211, 47.383608], [8.569208, 47.383613], [8.569205, 47.383618], [8.569204, 47.383622], [8.569203, 47.383627], [8.569202, 47.383632], [8.569202, 47.383637], [8.569203, 47.383642], [8.569204, 47.383647], [8.569231, 47.383711], [8.569264, 47.383774], [8.569304, 47.383834], [8.569355, 47.383897], [8.569414, 47.383957], [8.56948, 47.384013], [8.569554, 47.384076], [8.56962, 47.384144], [8.569677, 47.384215], [8.569724, 47.384289], [8.569746, 47.384334], [8.569763, 47.38438], [8.569773, 47.384427], [8.569778, 47.384475], [8.569777, 47.384522], [8.569769, 47.384572], [8.569754, 47.384622], [8.569733, 47.38467], [8.569706, 47.384717], [8.569673, 47.384762], [8.569673, 47.384762], [8.569088, 47.385437], [8.569017, 47.385517], [8.568944, 47.385594], [8.568867, 47.385671], [8.568649, 47.385885], [8.568518, 47.386008], [8.56849, 47.386035], [8.568464, 47.386062], [8.56844, 47.38609], [8.568403, 47.386137], [8.56837, 47.386186], [8.568341, 47.386237], [8.568317, 47.386288], [8.568147, 47.38669], [8.568067, 47.386863], [8.567974, 47.387033], [8.567868, 47.387199], [8.567784, 47.387317], [8.567695, 47.387432], [8.5676, 47.387546], [8.567169, 47.388039], [8.567066, 47.388153], [8.566958, 47.388265], [8.566845, 47.388375], [8.566619, 47.388589], [8.566518, 47.388688], [8.566422, 47.388789], [8.566331, 47.388892], [8.566115, 47.389145], [8.565705, 47.389635], [8.565621, 47.389715]]], "type": "MultiLineString"}, "id": "2994", "properties": {}, "type": "Feature"}, {"bbox": [8.529356, 47.351973, 8.53032, 47.351982], "geometry": {"coordinates": [[[8.53032, 47.351975], [8.529568, 47.351973], [8.529356, 47.351982]]], "type": "MultiLineString"}, "id": "2995", "properties": {}, "type": "Feature"}, {"bbox": [8.511855, 47.408593, 8.520194, 47.409834], "geometry": {"coordinates": [[[8.511855, 47.409463], [8.511936, 47.409426], [8.512011, 47.409384], [8.512079, 47.409337], [8.512141, 47.409286], [8.512183, 47.409243], [8.512232, 47.409203], [8.512285, 47.409165], [8.512343, 47.409132], [8.512406, 47.409102], [8.512472, 47.409076], [8.512541, 47.409054], [8.512613, 47.409037], [8.512688, 47.409024], [8.512704, 47.409021], [8.513689, 47.408883], [8.513703, 47.408881], [8.513842, 47.408857], [8.513979, 47.408828], [8.514112, 47.408793], [8.514381, 47.408708], [8.514565, 47.408662], [8.514753, 47.408622], [8.514879, 47.408601], [8.514966, 47.408593], [8.515054, 47.408593], [8.515139, 47.408603], [8.51523, 47.408622], [8.515319, 47.408649], [8.515411, 47.408685], [8.515565, 47.408763], [8.515632, 47.408803], [8.515686, 47.40885], [8.515727, 47.408904], [8.515759, 47.40896], [8.515786, 47.409019], [8.515824, 47.409118], [8.515858, 47.409183], [8.515905, 47.409245], [8.515958, 47.409292], [8.515993, 47.409309], [8.516029, 47.409324], [8.516067, 47.409337], [8.516107, 47.409347], [8.516148, 47.409355], [8.51619, 47.409361], [8.516608, 47.409392], [8.516643, 47.409397], [8.516675, 47.409401], [8.516726, 47.409411], [8.517002, 47.409525], [8.517062, 47.409549], [8.517129, 47.409584], [8.517302, 47.409696], [8.517325, 47.409711], [8.517396, 47.409752], [8.517478, 47.409786], [8.517525, 47.409799], [8.517566, 47.40981], [8.51766, 47.409823], [8.517793, 47.409834], [8.517929, 47.409833], [8.518084, 47.409825], [8.518216, 47.409808], [8.518345, 47.409782], [8.518468, 47.409744], [8.518765, 47.409646], [8.518891, 47.409596], [8.519067, 47.409516], [8.519147, 47.409487], [8.519283, 47.409453], [8.51939, 47.409418], [8.519505, 47.409372], [8.519611, 47.409317], [8.519741, 47.409237], [8.519875, 47.409143], [8.519924, 47.409097], [8.52, 47.408996], [8.520095, 47.408906], [8.520194, 47.408747]]], "type": "MultiLineString"}, "id": "2996", "properties": {}, "type": "Feature"}, {"bbox": [8.468281, 47.375912, 8.472159, 47.381764], "geometry": {"coordinates": [[[8.472159, 47.381764], [8.472116, 47.381746], [8.471603, 47.381514], [8.471456, 47.381446], [8.470867, 47.381234], [8.470769, 47.381196], [8.470676, 47.381152], [8.470589, 47.381103], [8.470507, 47.38105], [8.470064, 47.380737], [8.469664, 47.38044], [8.4696, 47.380388], [8.469542, 47.380333], [8.469492, 47.380274], [8.469449, 47.380212], [8.469414, 47.380149], [8.469387, 47.380083], [8.469339, 47.379945], [8.46923, 47.379632], [8.469174, 47.379494], [8.469101, 47.37936], [8.469014, 47.379229], [8.468912, 47.379104], [8.468893, 47.379082], [8.468877, 47.37906], [8.468861, 47.379037], [8.468842, 47.379002], [8.468826, 47.378967], [8.468813, 47.378931], [8.468703, 47.378548], [8.468528, 47.378041], [8.4685, 47.377966], [8.468469, 47.377892], [8.468434, 47.377818], [8.468314, 47.377581], [8.468298, 47.377544], [8.468287, 47.377507], [8.468282, 47.377469], [8.468281, 47.377431], [8.468286, 47.377393], [8.468296, 47.377355], [8.468311, 47.377319], [8.468331, 47.377283], [8.468493, 47.377029], [8.468529, 47.376977], [8.468573, 47.376928], [8.468623, 47.376881], [8.468834, 47.376701], [8.469241, 47.376324], [8.469291, 47.37628], [8.469344, 47.376237], [8.469399, 47.376195], [8.469763, 47.375936], [8.469861, 47.375912]]], "type": "MultiLineString"}, "id": "2997", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386157, 8.514492, 47.386925], "geometry": {"coordinates": [[[8.514492, 47.386157], [8.514064, 47.386275], [8.513335, 47.386477], [8.513133, 47.386543], [8.512938, 47.386617], [8.512751, 47.386701], [8.51262, 47.386768], [8.512499, 47.386843], [8.512388, 47.386925]]], "type": "MultiLineString"}, "id": "2998", "properties": {}, "type": "Feature"}, {"bbox": [8.572614, 47.411182, 8.572732, 47.4117], "geometry": {"coordinates": [[[8.572614, 47.411182], [8.572732, 47.411478], [8.572719, 47.411552], [8.572704, 47.411626], [8.572687, 47.4117]]], "type": "MultiLineString"}, "id": "3000", "properties": {}, "type": "Feature"}, {"bbox": [8.593569, 47.374773, 8.596799, 47.37888], "geometry": {"coordinates": [[[8.593569, 47.37888], [8.594384, 47.378596], [8.594459, 47.378569], [8.594532, 47.378539], [8.594602, 47.378507], [8.595097, 47.378269], [8.595135, 47.378249], [8.595171, 47.378227], [8.595204, 47.378203], [8.595233, 47.378178], [8.59526, 47.37815], [8.595283, 47.378122], [8.59543, 47.377921], [8.595447, 47.3779], [8.595466, 47.377881], [8.595488, 47.377862], [8.595513, 47.377845], [8.595539, 47.37783], [8.595704, 47.377742], [8.59579, 47.377699], [8.595881, 47.377662], [8.595976, 47.37763], [8.596074, 47.377604], [8.596176, 47.377583], [8.596279, 47.377568], [8.596292, 47.377566], [8.596305, 47.377564], [8.596318, 47.37756], [8.59633, 47.377556], [8.596341, 47.377552], [8.596394, 47.377528], [8.596408, 47.377522], [8.596422, 47.377518], [8.596438, 47.377514], [8.596453, 47.377511], [8.596462, 47.37751], [8.59647, 47.377508], [8.596478, 47.377505], [8.596486, 47.377502], [8.596493, 47.377499], [8.5965, 47.377495], [8.596506, 47.377491], [8.596511, 47.377486], [8.596516, 47.377481], [8.596521, 47.377476], [8.596524, 47.377471], [8.596527, 47.377465], [8.596549, 47.377417], [8.596554, 47.377402], [8.596558, 47.377386], [8.59656, 47.377371], [8.59656, 47.377355], [8.596557, 47.37734], [8.596543, 47.377272], [8.596521, 47.377108], [8.59652, 47.376943], [8.596541, 47.376778], [8.596682, 47.376054], [8.596684, 47.376036], [8.596685, 47.376018], [8.596682, 47.376], [8.596678, 47.375983], [8.596659, 47.375922], [8.596673, 47.375903], [8.596684, 47.375884], [8.596693, 47.375864], [8.5967, 47.375843], [8.596704, 47.375823], [8.596706, 47.375802], [8.596717, 47.375454], [8.596724, 47.375336], [8.596739, 47.375219], [8.596762, 47.375102], [8.596777, 47.375027], [8.596787, 47.374951], [8.596794, 47.374876], [8.596799, 47.374773]]], "type": "MultiLineString"}, "id": "3002", "properties": {}, "type": "Feature"}, {"bbox": [8.578883, 47.38454, 8.580378, 47.385845], "geometry": {"coordinates": [[[8.578883, 47.385845], [8.578955, 47.385786], [8.579156, 47.38559], [8.579201, 47.385543], [8.579252, 47.385501], [8.57931, 47.385461], [8.57931, 47.385461], [8.579311, 47.385461], [8.579343, 47.385444], [8.579378, 47.385429], [8.579414, 47.385415], [8.579452, 47.385404], [8.579503, 47.385388], [8.579551, 47.385368], [8.579596, 47.385346], [8.579638, 47.385321], [8.579677, 47.385293], [8.579712, 47.385263], [8.580348, 47.384645], [8.580349, 47.384645], [8.580356, 47.384637], [8.580362, 47.384629], [8.580368, 47.38462], [8.580372, 47.384612], [8.580375, 47.384603], [8.580377, 47.384594], [8.580378, 47.384585], [8.580377, 47.384575], [8.580376, 47.384566], [8.580373, 47.384557], [8.58037, 47.384548], [8.580365, 47.38454]]], "type": "MultiLineString"}, "id": "3003", "properties": {}, "type": "Feature"}, {"bbox": [8.543801, 47.372062, 8.545287, 47.372233], "geometry": {"coordinates": [[[8.543801, 47.372073], [8.543834, 47.372062], [8.54416, 47.372084], [8.544212, 47.372126], [8.544394, 47.37214], [8.545146, 47.372233], [8.545237, 47.37212], [8.545287, 47.372101]]], "type": "MultiLineString"}, "id": "3004", "properties": {}, "type": "Feature"}, {"bbox": [8.534602, 47.384278, 8.538439, 47.386596], "geometry": {"coordinates": [[[8.538439, 47.384278], [8.538213, 47.384331], [8.537343, 47.384768], [8.536978, 47.384957], [8.536768, 47.385052], [8.536718, 47.385099], [8.536249, 47.385331], [8.536112, 47.385391], [8.53585, 47.385499], [8.535699, 47.385626], [8.535438, 47.385832], [8.53536, 47.385915], [8.535115, 47.386087], [8.534999, 47.386179], [8.534666, 47.386375], [8.534651, 47.386389], [8.534638, 47.386405], [8.534626, 47.386421], [8.534617, 47.386438], [8.53461, 47.386455], [8.534605, 47.386473], [8.534603, 47.386491], [8.534602, 47.386509], [8.534604, 47.386527], [8.534608, 47.386545], [8.534614, 47.386562], [8.534623, 47.386579], [8.534633, 47.386596]]], "type": "MultiLineString"}, "id": "3005", "properties": {}, "type": "Feature"}, {"bbox": [8.520336, 47.35967, 8.521703, 47.361263], "geometry": {"coordinates": [[[8.521703, 47.361263], [8.521574, 47.361246], [8.520769, 47.360907], [8.520706, 47.360879], [8.520646, 47.360847], [8.52059, 47.360811], [8.520539, 47.360773], [8.520493, 47.360731], [8.520453, 47.360688], [8.520418, 47.360642], [8.520389, 47.360594], [8.520366, 47.360544], [8.520349, 47.360494], [8.520339, 47.360443], [8.520336, 47.360391], [8.520339, 47.360339], [8.520348, 47.360288], [8.520633, 47.35967]]], "type": "MultiLineString"}, "id": "3006", "properties": {}, "type": "Feature"}, {"bbox": [8.536249, 47.337883, 8.538223, 47.33881], "geometry": {"coordinates": [[[8.538223, 47.33881], [8.538014, 47.338585], [8.538006, 47.338569], [8.538, 47.338552], [8.537996, 47.338535], [8.537995, 47.338518], [8.537996, 47.338501], [8.537999, 47.338484], [8.538004, 47.338468], [8.538012, 47.338452], [8.538104, 47.338219], [8.538142, 47.338078], [8.537964, 47.338021], [8.537945, 47.338018], [8.537927, 47.338017], [8.537908, 47.338017], [8.537889, 47.338018], [8.53787, 47.33802], [8.537852, 47.338023], [8.537835, 47.338027], [8.537817, 47.338033], [8.537801, 47.338039], [8.537786, 47.338047], [8.537771, 47.338055], [8.537743, 47.338073], [8.537713, 47.338089], [8.537682, 47.338103], [8.537648, 47.338115], [8.537613, 47.338126], [8.537592, 47.338131], [8.53757, 47.338136], [8.537547, 47.338139], [8.537525, 47.338141], [8.537502, 47.338141], [8.537479, 47.33814], [8.537457, 47.338138], [8.537434, 47.338134], [8.537376, 47.338124], [8.537232, 47.338089], [8.537144, 47.338065], [8.536249, 47.337883]]], "type": "MultiLineString"}, "id": "3009", "properties": {}, "type": "Feature"}, {"bbox": [8.493829, 47.402358, 8.494191, 47.403057], "geometry": {"coordinates": [[[8.493829, 47.402358], [8.493855, 47.402414], [8.493994, 47.402764], [8.494095, 47.402983], [8.494102, 47.402995], [8.49411, 47.403007], [8.494119, 47.403018], [8.49413, 47.403029], [8.494191, 47.403057]]], "type": "MultiLineString"}, "id": "3010", "properties": {}, "type": "Feature"}, {"bbox": [8.518927, 47.365864, 8.519822, 47.366443], "geometry": {"coordinates": [[[8.519822, 47.365864], [8.519726, 47.36588], [8.519522, 47.365899], [8.519505, 47.3659], [8.519484, 47.365907], [8.519474, 47.36592], [8.519403, 47.366125], [8.519379, 47.366195], [8.519329, 47.366341], [8.519272, 47.366432], [8.519161, 47.366391], [8.519126, 47.366443], [8.51902, 47.366406], [8.518927, 47.366387]]], "type": "MultiLineString"}, "id": "3011", "properties": {}, "type": "Feature"}, {"bbox": [8.494724, 47.423586, 8.495979, 47.423735], "geometry": {"coordinates": [[[8.494724, 47.423586], [8.494757, 47.423597], [8.49479, 47.423607], [8.494825, 47.423615], [8.494861, 47.423621], [8.495232, 47.423664], [8.495605, 47.423702], [8.495979, 47.423735], [8.495979, 47.423735]]], "type": "MultiLineString"}, "id": "3015", "properties": {}, "type": "Feature"}, {"bbox": [8.541948, 47.425809, 8.542575, 47.426408], "geometry": {"coordinates": [[[8.541948, 47.426408], [8.541949, 47.426403], [8.541951, 47.426391], [8.541955, 47.42638], [8.54196, 47.426369], [8.541967, 47.426358], [8.541975, 47.426348], [8.541984, 47.426339], [8.541995, 47.426329], [8.5422, 47.426162], [8.542394, 47.425988], [8.542575, 47.425809]]], "type": "MultiLineString"}, "id": "3019", "properties": {}, "type": "Feature"}, {"bbox": [8.488837, 47.377791, 8.489223, 47.378688], "geometry": {"coordinates": [[[8.488971, 47.377791], [8.488975, 47.377827], [8.488976, 47.377833], [8.488976, 47.37784], [8.488976, 47.377846], [8.488975, 47.377851], [8.488974, 47.377857], [8.488972, 47.377862], [8.488958, 47.377884], [8.488952, 47.37789], [8.488946, 47.377895], [8.48894, 47.3779], [8.488933, 47.377906], [8.488926, 47.377911], [8.488919, 47.377916], [8.488883, 47.377936], [8.488879, 47.377938], [8.488876, 47.377941], [8.488872, 47.377944], [8.48887, 47.377946], [8.488868, 47.377948], [8.488867, 47.37795], [8.488861, 47.377957], [8.488856, 47.377964], [8.488852, 47.377971], [8.488846, 47.37798], [8.488842, 47.377989], [8.488839, 47.377999], [8.488837, 47.378008], [8.488837, 47.378018], [8.488837, 47.378027], [8.488839, 47.378037], [8.488841, 47.378049], [8.488843, 47.378062], [8.488844, 47.378075], [8.488845, 47.378087], [8.488845, 47.378099], [8.488846, 47.378111], [8.488845, 47.378194], [8.488846, 47.378211], [8.488847, 47.378228], [8.488849, 47.378245], [8.488851, 47.378261], [8.488854, 47.378276], [8.488858, 47.378291], [8.488858, 47.378292], [8.488858, 47.378292], [8.48886, 47.378298], [8.488863, 47.378305], [8.488865, 47.378311], [8.488868, 47.378318], [8.488872, 47.378325], [8.488875, 47.378331], [8.488875, 47.378332], [8.488876, 47.378333], [8.488883, 47.378344], [8.488891, 47.378355], [8.488899, 47.378365], [8.488903, 47.378371], [8.488907, 47.378376], [8.488911, 47.378381], [8.488912, 47.378381], [8.488912, 47.378382], [8.488916, 47.378387], [8.488921, 47.378392], [8.488926, 47.378397], [8.489152, 47.378635], [8.489182, 47.378664], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "3020", "properties": {}, "type": "Feature"}, {"bbox": [8.532264, 47.423463, 8.53357, 47.425836], "geometry": {"coordinates": [[[8.533545, 47.423463], [8.53357, 47.423478], [8.533416, 47.423581], [8.533369, 47.423619], [8.533335, 47.423661], [8.533306, 47.423707], [8.533258, 47.423768], [8.5332, 47.423826], [8.533151, 47.423867], [8.533094, 47.423902], [8.533023, 47.423939], [8.532956, 47.423979], [8.532895, 47.424033], [8.532857, 47.424086], [8.532723, 47.424296], [8.532706, 47.424343], [8.532703, 47.424386], [8.532714, 47.424432], [8.532739, 47.42449], [8.532746, 47.424549], [8.532744, 47.424598], [8.532736, 47.424666], [8.532731, 47.424783], [8.532715, 47.424839], [8.532687, 47.424889], [8.532626, 47.424988], [8.532602, 47.42506], [8.532598, 47.425073], [8.532518, 47.425191], [8.532494, 47.425238], [8.532482, 47.425276], [8.532485, 47.425326], [8.532485, 47.425374], [8.532466, 47.425448], [8.532426, 47.425512], [8.532347, 47.425602], [8.532289, 47.425684], [8.532271, 47.425731], [8.532266, 47.425769], [8.532264, 47.425836]]], "type": "MultiLineString"}, "id": "3021", "properties": {}, "type": "Feature"}, {"bbox": [8.486795, 47.369769, 8.487655, 47.370921], "geometry": {"coordinates": [[[8.487079, 47.370921], [8.487, 47.370873], [8.486929, 47.370823], [8.48685, 47.370767], [8.486831, 47.370753], [8.486823, 47.370748], [8.486817, 47.370741], [8.486811, 47.370735], [8.486806, 47.370728], [8.486802, 47.370721], [8.486799, 47.370713], [8.486796, 47.370705], [8.486795, 47.370698], [8.486795, 47.37069], [8.486796, 47.370682], [8.486798, 47.370675], [8.486801, 47.370667], [8.486805, 47.37066], [8.48681, 47.370653], [8.486816, 47.370647], [8.486823, 47.37064], [8.486831, 47.370633], [8.486868, 47.370602], [8.487044, 47.370453], [8.487123, 47.370386], [8.487191, 47.370325], [8.487193, 47.370323], [8.487307, 47.370221], [8.487416, 47.370123], [8.487504, 47.370017], [8.487541, 47.369958], [8.487609, 47.36985], [8.487624, 47.369813], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "3022", "properties": {}, "type": "Feature"}, {"bbox": [8.539595, 47.372053, 8.539662, 47.372081], "geometry": {"coordinates": [[[8.539662, 47.372081], [8.539595, 47.372053]]], "type": "MultiLineString"}, "id": "3023", "properties": {}, "type": "Feature"}, {"bbox": [8.522919, 47.371351, 8.524477, 47.372199], "geometry": {"coordinates": [[[8.524477, 47.371351], [8.522919, 47.372199]]], "type": "MultiLineString"}, "id": "3024", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.384949, 8.527054, 47.385143], "geometry": {"coordinates": [[[8.527054, 47.384949], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "3026", "properties": {}, "type": "Feature"}, {"bbox": [8.559282, 47.402268, 8.566827, 47.40323], "geometry": {"coordinates": [[[8.559282, 47.40323], [8.559364, 47.403146], [8.559474, 47.403091], [8.559583, 47.403047], [8.559594, 47.403043], [8.559605, 47.403039], [8.559617, 47.403035], [8.559631, 47.40303], [8.559646, 47.403026], [8.559661, 47.403021], [8.559693, 47.403012], [8.559725, 47.403005], [8.559758, 47.403], [8.559781, 47.402997], [8.559803, 47.402995], [8.559826, 47.402995], [8.559849, 47.402996], [8.560078, 47.403013], [8.560613, 47.403058], [8.561153, 47.403044], [8.561828, 47.403014], [8.562497, 47.402979], [8.562814, 47.402957], [8.563237, 47.402926], [8.563281, 47.402923], [8.563326, 47.40292], [8.563371, 47.402918], [8.563577, 47.402906], [8.563629, 47.402903], [8.563681, 47.402899], [8.563734, 47.402895], [8.563777, 47.402891], [8.563821, 47.402886], [8.563865, 47.402882], [8.564396, 47.402819], [8.564974, 47.402734], [8.565478, 47.40264], [8.565723, 47.402587], [8.566036, 47.402521], [8.566138, 47.402492], [8.566406, 47.402409], [8.566827, 47.402268]]], "type": "MultiLineString"}, "id": "3038", "properties": {}, "type": "Feature"}, {"bbox": [8.505726, 47.424184, 8.506101, 47.425778], "geometry": {"coordinates": [[[8.505726, 47.424184], [8.505792, 47.424227], [8.506042, 47.424667], [8.506101, 47.425029], [8.506031, 47.425184], [8.505962, 47.425345], [8.505932, 47.425473], [8.505933, 47.425715], [8.505893, 47.425778]]], "type": "MultiLineString"}, "id": "3039", "properties": {}, "type": "Feature"}, {"bbox": [8.478139, 47.404254, 8.481464, 47.404761], "geometry": {"coordinates": [[[8.481464, 47.404289], [8.481385, 47.40427], [8.481353, 47.404262], [8.481257, 47.404254], [8.4807, 47.404349], [8.480567, 47.404371], [8.480218, 47.404429], [8.479522, 47.404545], [8.478826, 47.404661], [8.478294, 47.40475], [8.478256, 47.404756], [8.478217, 47.404759], [8.478178, 47.404761], [8.478139, 47.40476]]], "type": "MultiLineString"}, "id": "3040", "properties": {}, "type": "Feature"}, {"bbox": [8.48864, 47.373047, 8.492281, 47.375021], "geometry": {"coordinates": [[[8.492281, 47.375021], [8.492258, 47.374895], [8.492152, 47.374645], [8.49211, 47.374435], [8.491991, 47.374177], [8.491893, 47.374154], [8.491777, 47.374107], [8.491585, 47.373822], [8.491442, 47.373591], [8.491296, 47.373481], [8.49055, 47.373652], [8.490404, 47.373671], [8.489879, 47.373665], [8.48977, 47.373661], [8.489591, 47.37365], [8.489392, 47.373656], [8.48864, 47.373047]]], "type": "MultiLineString"}, "id": "3041", "properties": {}, "type": "Feature"}, {"bbox": [8.459472, 47.374652, 8.470215, 47.381189], "geometry": {"coordinates": [[[8.459868, 47.381189], [8.459678, 47.380987], [8.459637, 47.380937], [8.459603, 47.380884], [8.459577, 47.380829], [8.459513, 47.380665], [8.459487, 47.38058], [8.459473, 47.380493], [8.459472, 47.380406], [8.459487, 47.380173], [8.459524, 47.379965], [8.459527, 47.379952], [8.459532, 47.379939], [8.459538, 47.379926], [8.459546, 47.379913], [8.459555, 47.379901], [8.459566, 47.37989], [8.459577, 47.379879], [8.459607, 47.379852], [8.459632, 47.379823], [8.459654, 47.379793], [8.459952, 47.379323], [8.460001, 47.379254], [8.46006, 47.379188], [8.460128, 47.379127], [8.460205, 47.379071], [8.460674, 47.378756], [8.460816, 47.378666], [8.460964, 47.37858], [8.461118, 47.378501], [8.462172, 47.377982], [8.462549, 47.37778], [8.4629, 47.377558], [8.463222, 47.377316], [8.463833, 47.376818], [8.464578, 47.376135], [8.465088, 47.375639], [8.46516, 47.375575], [8.465239, 47.375516], [8.465326, 47.375463], [8.465419, 47.375414], [8.465518, 47.375371], [8.465623, 47.375335], [8.465731, 47.375305], [8.466162, 47.3752], [8.466777, 47.375042], [8.466884, 47.375012], [8.466987, 47.374976], [8.467086, 47.374936], [8.467541, 47.374734], [8.467576, 47.37472], [8.467613, 47.374708], [8.467651, 47.374699], [8.467691, 47.374692], [8.467731, 47.374687], [8.467772, 47.374685], [8.467813, 47.374685], [8.467854, 47.374688], [8.467894, 47.374693], [8.467933, 47.374701], [8.467971, 47.374711], [8.468616, 47.374904], [8.468719, 47.374932], [8.468824, 47.374954], [8.468932, 47.37497], [8.469042, 47.37498], [8.469152, 47.374985], [8.469188, 47.374984], [8.469224, 47.374982], [8.46926, 47.374977], [8.469295, 47.374971], [8.469329, 47.374962], [8.469397, 47.374941], [8.469462, 47.374916], [8.469523, 47.374886], [8.46958, 47.374853], [8.469633, 47.374817], [8.469748, 47.374729], [8.46977, 47.374714], [8.469793, 47.374701], [8.469817, 47.374689], [8.469844, 47.374678], [8.469871, 47.374669], [8.469899, 47.374662], [8.469929, 47.374657], [8.469959, 47.374653], [8.469978, 47.374652], [8.469998, 47.374652], [8.470018, 47.374653], [8.470037, 47.374655], [8.470056, 47.374658], [8.470075, 47.374663], [8.470093, 47.374668], [8.47011, 47.374675], [8.470126, 47.374683], [8.470141, 47.374691], [8.470155, 47.3747], [8.470168, 47.374711], [8.470179, 47.374722], [8.470189, 47.374733], [8.470198, 47.374745], [8.470205, 47.374758], [8.47021, 47.374771], [8.470213, 47.374784], [8.470215, 47.374797], [8.470215, 47.374811], [8.470212, 47.374835], [8.470207, 47.374858], [8.470198, 47.374881], [8.470186, 47.374904], [8.470172, 47.374926], [8.470154, 47.374947], [8.470135, 47.374967], [8.469891, 47.375191], [8.469875, 47.375208], [8.469861, 47.375225], [8.469849, 47.375243], [8.46984, 47.375261], [8.469833, 47.37528], [8.469829, 47.3753], [8.469827, 47.375319], [8.469828, 47.375339], [8.469864, 47.375668], [8.469861, 47.375912]]], "type": "MultiLineString"}, "id": "3042", "properties": {}, "type": "Feature"}, {"bbox": [8.46929, 47.389182, 8.470303, 47.389876], "geometry": {"coordinates": [[[8.470303, 47.389182], [8.470264, 47.389318], [8.470257, 47.389334], [8.470249, 47.38935], [8.470238, 47.389366], [8.470225, 47.389381], [8.470211, 47.389395], [8.470195, 47.389408], [8.470177, 47.38942], [8.470158, 47.389432], [8.470138, 47.389442], [8.469518, 47.389717], [8.46929, 47.389876]]], "type": "MultiLineString"}, "id": "3043", "properties": {}, "type": "Feature"}, {"bbox": [8.568918, 47.365571, 8.569465, 47.366405], "geometry": {"coordinates": [[[8.569151, 47.365571], [8.568989, 47.365744], [8.568971, 47.365763], [8.568955, 47.365783], [8.568942, 47.365804], [8.568932, 47.365826], [8.568924, 47.365848], [8.56892, 47.365871], [8.568918, 47.365893], [8.568919, 47.365916], [8.568923, 47.365939], [8.56893, 47.365961], [8.56894, 47.365983], [8.568953, 47.366004], [8.568968, 47.366025], [8.569294, 47.36634], [8.569465, 47.366405]]], "type": "MultiLineString"}, "id": "3044", "properties": {}, "type": "Feature"}, {"bbox": [8.553173, 47.388611, 8.555822, 47.390016], "geometry": {"coordinates": [[[8.553173, 47.390016], [8.553207, 47.389954], [8.553222, 47.38992], [8.553232, 47.389886], [8.553237, 47.389852], [8.553246, 47.389734], [8.553256, 47.389661], [8.553273, 47.389588], [8.553299, 47.389517], [8.553351, 47.389392], [8.553357, 47.38938], [8.553364, 47.389368], [8.553373, 47.389357], [8.553383, 47.389346], [8.553395, 47.389337], [8.553408, 47.389327], [8.553422, 47.389319], [8.553437, 47.389311], [8.553454, 47.389305], [8.55347, 47.389299], [8.553488, 47.389295], [8.553506, 47.389291], [8.553525, 47.389289], [8.553543, 47.389288], [8.553562, 47.389288], [8.553581, 47.389289], [8.553692, 47.389298], [8.553708, 47.389299], [8.553725, 47.389299], [8.553741, 47.389298], [8.553757, 47.389296], [8.553773, 47.389293], [8.553788, 47.389289], [8.553803, 47.389284], [8.553817, 47.389279], [8.554057, 47.389173], [8.554381, 47.389065], [8.554454, 47.389042], [8.554528, 47.389023], [8.554604, 47.389005], [8.554883, 47.388949], [8.555168, 47.388871], [8.555253, 47.388844], [8.555334, 47.388812], [8.55541, 47.388775], [8.555617, 47.388663], [8.555631, 47.388656], [8.555647, 47.38865], [8.555663, 47.388644], [8.55568, 47.38864], [8.555697, 47.388636], [8.555822, 47.388611]]], "type": "MultiLineString"}, "id": "3045", "properties": {}, "type": "Feature"}, {"bbox": [8.579387, 47.406027, 8.581742, 47.407438], "geometry": {"coordinates": [[[8.579387, 47.407438], [8.579527, 47.407373], [8.580927, 47.406723], [8.581034, 47.406671], [8.581134, 47.406613], [8.581226, 47.406549], [8.581309, 47.40648], [8.581384, 47.406407], [8.581742, 47.406027]]], "type": "MultiLineString"}, "id": "3046", "properties": {}, "type": "Feature"}, {"bbox": [8.524917, 47.428173, 8.52548, 47.431207], "geometry": {"coordinates": [[[8.524967, 47.428173], [8.524955, 47.428192], [8.524946, 47.428211], [8.52494, 47.428231], [8.524922, 47.428324], [8.524917, 47.428417], [8.524925, 47.42851], [8.524944, 47.428669], [8.524956, 47.428734], [8.524967, 47.428799], [8.524986, 47.428872], [8.525012, 47.428944], [8.525043, 47.429014], [8.525165, 47.429256], [8.525203, 47.429341], [8.525235, 47.429426], [8.52526, 47.429512], [8.525268, 47.429554], [8.525272, 47.429596], [8.525273, 47.429638], [8.525263, 47.429875], [8.525258, 47.429941], [8.52525, 47.430008], [8.525238, 47.430074], [8.525223, 47.430165], [8.525215, 47.430256], [8.525215, 47.430347], [8.525224, 47.430583], [8.525224, 47.430583], [8.525229, 47.430664], [8.525245, 47.430745], [8.525271, 47.430824], [8.525307, 47.430902], [8.525307, 47.430902], [8.525441, 47.431149], [8.52548, 47.431207]]], "type": "MultiLineString"}, "id": "3047", "properties": {}, "type": "Feature"}, {"bbox": [8.488101, 47.407362, 8.489962, 47.407716], "geometry": {"coordinates": [[[8.489962, 47.407432], [8.489899, 47.40739], [8.489885, 47.407383], [8.489871, 47.407377], [8.489856, 47.407372], [8.48984, 47.407368], [8.489824, 47.407365], [8.489807, 47.407363], [8.489791, 47.407362], [8.489774, 47.407362], [8.488833, 47.407388], [8.488791, 47.407391], [8.488749, 47.407396], [8.488708, 47.407403], [8.488668, 47.407413], [8.48863, 47.407426], [8.488593, 47.407441], [8.488101, 47.407716]]], "type": "MultiLineString"}, "id": "3048", "properties": {}, "type": "Feature"}, {"bbox": [8.482097, 47.40326, 8.486517, 47.407476], "geometry": {"coordinates": [[[8.482097, 47.40326], [8.482185, 47.403475], [8.482193, 47.403495], [8.482198, 47.403516], [8.4822, 47.403537], [8.482215, 47.403763], [8.482216, 47.403773], [8.482217, 47.403783], [8.482219, 47.403793], [8.482222, 47.403803], [8.482226, 47.403813], [8.48223, 47.403822], [8.482301, 47.403956], [8.482309, 47.403969], [8.482324, 47.403994], [8.48244, 47.404179], [8.482465, 47.404221], [8.482495, 47.404264], [8.482531, 47.404306], [8.482573, 47.404345], [8.482589, 47.404358], [8.482607, 47.404369], [8.482626, 47.40438], [8.482646, 47.404389], [8.482668, 47.404398], [8.48269, 47.404405], [8.482764, 47.404425], [8.48284, 47.404444], [8.482917, 47.40446], [8.483201, 47.404515], [8.483259, 47.404527], [8.483287, 47.404532], [8.483315, 47.404536], [8.483343, 47.404538], [8.483372, 47.404538], [8.483467, 47.404538], [8.483474, 47.404539], [8.483481, 47.404539], [8.483489, 47.404541], [8.483496, 47.404542], [8.483503, 47.404544], [8.483509, 47.404547], [8.483515, 47.404549], [8.483521, 47.404553], [8.483526, 47.404556], [8.483531, 47.40456], [8.483536, 47.404564], [8.48354, 47.404568], [8.483543, 47.404573], [8.48357, 47.4046], [8.483595, 47.404629], [8.483615, 47.404658], [8.483655, 47.404717], [8.483696, 47.404787], [8.483808, 47.404882], [8.483843, 47.404902], [8.48388, 47.40492], [8.483919, 47.404936], [8.483961, 47.404949], [8.484003, 47.40496], [8.484047, 47.404969], [8.484093, 47.404978], [8.484137, 47.40499], [8.484179, 47.405004], [8.484219, 47.405022], [8.484257, 47.405041], [8.484291, 47.405063], [8.484354, 47.405109], [8.48442, 47.405152], [8.484489, 47.405193], [8.484547, 47.405231], [8.484652, 47.405273], [8.484671, 47.40528], [8.484688, 47.405288], [8.484704, 47.405297], [8.484719, 47.405307], [8.484733, 47.405318], [8.484745, 47.40533], [8.485196, 47.405804], [8.485217, 47.405822], [8.4852, 47.405875], [8.485188, 47.405921], [8.485217, 47.40598], [8.485252, 47.406027], [8.485292, 47.406073], [8.485335, 47.406118], [8.485489, 47.406266], [8.485635, 47.406432], [8.485775, 47.406593], [8.485838, 47.406685], [8.485893, 47.406791], [8.485955, 47.406982], [8.485981, 47.407022], [8.486019, 47.407054], [8.486123, 47.407111], [8.486188, 47.407155], [8.4863, 47.407256], [8.486382, 47.407339], [8.486459, 47.407428], [8.486517, 47.407476]]], "type": "MultiLineString"}, "id": "3051", "properties": {}, "type": "Feature"}, {"bbox": [8.519488, 47.392028, 8.523523, 47.393449], "geometry": {"coordinates": [[[8.519488, 47.393262], [8.519587, 47.393449], [8.520034, 47.393282], [8.521072, 47.392909], [8.521442, 47.392778], [8.522215, 47.392519], [8.522157, 47.392422], [8.523344, 47.392028], [8.523438, 47.392147], [8.523523, 47.392119]]], "type": "MultiLineString"}, "id": "3053", "properties": {}, "type": "Feature"}, {"bbox": [8.54074, 47.372329, 8.541692, 47.372929], "geometry": {"coordinates": [[[8.541692, 47.372929], [8.541662, 47.372818], [8.541619, 47.372709], [8.541562, 47.372603], [8.541545, 47.372577], [8.541524, 47.372552], [8.541501, 47.372528], [8.541474, 47.372506], [8.541445, 47.372486], [8.541413, 47.372467], [8.541379, 47.37245], [8.541343, 47.372435], [8.541305, 47.372423], [8.541266, 47.372412], [8.541226, 47.372404], [8.541185, 47.372399], [8.54074, 47.372329]]], "type": "MultiLineString"}, "id": "3055", "properties": {}, "type": "Feature"}, {"bbox": [8.507276, 47.412318, 8.509713, 47.413374], "geometry": {"coordinates": [[[8.509713, 47.412318], [8.508966, 47.412353], [8.508936, 47.412358], [8.508907, 47.412365], [8.508879, 47.412373], [8.508853, 47.412383], [8.508827, 47.412395], [8.508804, 47.412409], [8.508782, 47.412423], [8.508763, 47.412439], [8.508745, 47.412456], [8.508317, 47.412814], [8.508052, 47.412699], [8.507276, 47.413374]]], "type": "MultiLineString"}, "id": "3056", "properties": {}, "type": "Feature"}, {"bbox": [8.523722, 47.353421, 8.525166, 47.360273], "geometry": {"coordinates": [[[8.523722, 47.360273], [8.523783, 47.359942], [8.52385, 47.359632], [8.5241, 47.358878], [8.524289, 47.358316], [8.524577, 47.357457], [8.524643, 47.357231], [8.524646, 47.357219], [8.524696, 47.357003], [8.524733, 47.356769], [8.52475, 47.356537], [8.524763, 47.35623], [8.524783, 47.355775], [8.524798, 47.355569], [8.524827, 47.355367], [8.524873, 47.35512], [8.524982, 47.354529], [8.525071, 47.354045], [8.525111, 47.353822], [8.525121, 47.353717], [8.525112, 47.353605], [8.525114, 47.353523], [8.525166, 47.353421]]], "type": "MultiLineString"}, "id": "3057", "properties": {}, "type": "Feature"}, {"bbox": [8.520882, 47.385086, 8.531212, 47.388306], "geometry": {"coordinates": [[[8.531212, 47.388104], [8.530815, 47.388185], [8.530409, 47.388245], [8.529998, 47.388283], [8.529613, 47.388306], [8.529227, 47.388306], [8.528843, 47.388284], [8.528462, 47.38824], [8.528023, 47.388156], [8.527596, 47.388044], [8.527186, 47.387907], [8.525165, 47.38724], [8.523559, 47.386707], [8.523027, 47.386533], [8.522668, 47.386395], [8.52233, 47.386233], [8.522017, 47.38605], [8.521798, 47.385893], [8.5216, 47.385724], [8.521424, 47.385543], [8.521303, 47.385396], [8.521196, 47.385243], [8.521102, 47.385086], [8.520882, 47.385161]]], "type": "MultiLineString"}, "id": "3058", "properties": {}, "type": "Feature"}, {"bbox": [8.54054, 47.373382, 8.540735, 47.373986], "geometry": {"coordinates": [[[8.540725, 47.373382], [8.540735, 47.373643], [8.54054, 47.373845], [8.540549, 47.373986]]], "type": "MultiLineString"}, "id": "3059", "properties": {}, "type": "Feature"}, {"bbox": [8.52372, 47.329211, 8.524948, 47.332966], "geometry": {"coordinates": [[[8.52386, 47.332966], [8.523846, 47.332772], [8.523811, 47.332182], [8.523812, 47.331864], [8.523809, 47.33182], [8.5238, 47.331777], [8.523784, 47.331734], [8.523763, 47.331693], [8.523746, 47.33166], [8.523734, 47.331626], [8.523726, 47.331592], [8.523723, 47.331557], [8.52372, 47.331395], [8.523734, 47.331], [8.523752, 47.330603], [8.523755, 47.330573], [8.523762, 47.330544], [8.523773, 47.330516], [8.523787, 47.330488], [8.523805, 47.330461], [8.523827, 47.330436], [8.523852, 47.330412], [8.52388, 47.330389], [8.523911, 47.330369], [8.523944, 47.33035], [8.524026, 47.330305], [8.524128, 47.330258], [8.524143, 47.330251], [8.524143, 47.330251], [8.524162, 47.330244], [8.524182, 47.330237], [8.524204, 47.330232], [8.524225, 47.330228], [8.524247, 47.330225], [8.524757, 47.330184], [8.524774, 47.330182], [8.524792, 47.330179], [8.524808, 47.330175], [8.524825, 47.33017], [8.52484, 47.330164], [8.524855, 47.330157], [8.524868, 47.330149], [8.524881, 47.33014], [8.524892, 47.330131], [8.524902, 47.330121], [8.524911, 47.33011], [8.524923, 47.330093], [8.524933, 47.330074], [8.52494, 47.330055], [8.524945, 47.330036], [8.524948, 47.330016], [8.524948, 47.329997], [8.524946, 47.329977], [8.524945, 47.329969], [8.524893, 47.329751], [8.524795, 47.32946], [8.524728, 47.329278], [8.524713, 47.329211]]], "type": "MultiLineString"}, "id": "3060", "properties": {}, "type": "Feature"}, {"bbox": [8.532647, 47.397787, 8.533568, 47.398645], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.533434, 47.397822], [8.533297, 47.397849], [8.533156, 47.397867], [8.532911, 47.397883], [8.532886, 47.397888], [8.53286, 47.397895], [8.532836, 47.397903], [8.532813, 47.397912], [8.532792, 47.397923], [8.532772, 47.397935], [8.532753, 47.397948], [8.532736, 47.397962], [8.532721, 47.397977], [8.532708, 47.397993], [8.532697, 47.39801], [8.532647, 47.39843], [8.532652, 47.398451], [8.53266, 47.398472], [8.532671, 47.398492], [8.532684, 47.398511], [8.532699, 47.39853], [8.532717, 47.398547], [8.532737, 47.398564], [8.532759, 47.398579], [8.532782, 47.398593], [8.532808, 47.398605], [8.532835, 47.398616], [8.532863, 47.398625], [8.532892, 47.398633], [8.532922, 47.398639], [8.532953, 47.398643], [8.532984, 47.398645], [8.533018, 47.398641], [8.533052, 47.398634], [8.533085, 47.398625], [8.533116, 47.398615], [8.533146, 47.398602], [8.533173, 47.398588], [8.533199, 47.398572], [8.533223, 47.398554], [8.533244, 47.398535], [8.533263, 47.398515], [8.533279, 47.398494]]], "type": "MultiLineString"}, "id": "3061", "properties": {}, "type": "Feature"}, {"bbox": [8.518063, 47.394137, 8.518783, 47.39461], "geometry": {"coordinates": [[[8.518081, 47.394137], [8.518115, 47.394252], [8.518138, 47.394349], [8.518063, 47.394571], [8.518074, 47.394601], [8.51812, 47.394608], [8.518341, 47.394608], [8.518562, 47.394609], [8.518783, 47.39461]]], "type": "MultiLineString"}, "id": "3062", "properties": {}, "type": "Feature"}, {"bbox": [8.579839, 47.366943, 8.594858, 47.371634], "geometry": {"coordinates": [[[8.579839, 47.366943], [8.579871, 47.366958], [8.579903, 47.366971], [8.579938, 47.366983], [8.580145, 47.367046], [8.580385, 47.367125], [8.580708, 47.367225], [8.580814, 47.367252], [8.580922, 47.367274], [8.581033, 47.367292], [8.581294, 47.367336], [8.581412, 47.367359], [8.581529, 47.367384], [8.581645, 47.367411], [8.581817, 47.367445], [8.581916, 47.367458], [8.582015, 47.367468], [8.582114, 47.367476], [8.582157, 47.367482], [8.582199, 47.36749], [8.582239, 47.3675], [8.582278, 47.367513], [8.582315, 47.367529], [8.58235, 47.367546], [8.582382, 47.367566], [8.582437, 47.367602], [8.582488, 47.367641], [8.582535, 47.367681], [8.582577, 47.367729], [8.582617, 47.367778], [8.582655, 47.367828], [8.582701, 47.36789], [8.582746, 47.367952], [8.582789, 47.368015], [8.582984, 47.368324], [8.583006, 47.368353], [8.583031, 47.368381], [8.58306, 47.368408], [8.583211, 47.368528], [8.583268, 47.368571], [8.58333, 47.36861], [8.583396, 47.368646], [8.583503, 47.368698], [8.583606, 47.368752], [8.583705, 47.36881], [8.583859, 47.368916], [8.583937, 47.368972], [8.584186, 47.369142], [8.584203, 47.369151], [8.584221, 47.369159], [8.58424, 47.369166], [8.584259, 47.369172], [8.584298, 47.369184], [8.584336, 47.369198], [8.584372, 47.369214], [8.584401, 47.36923], [8.584429, 47.369247], [8.584454, 47.369266], [8.584476, 47.369286], [8.584495, 47.369308], [8.584512, 47.36933], [8.584558, 47.369411], [8.584597, 47.369493], [8.584628, 47.369577], [8.58468, 47.369746], [8.584687, 47.369759], [8.584695, 47.369771], [8.584705, 47.369783], [8.584717, 47.369794], [8.58473, 47.369804], [8.584744, 47.369813], [8.584759, 47.369822], [8.584775, 47.36983], [8.584792, 47.369836], [8.584811, 47.369842], [8.584829, 47.369846], [8.584848, 47.36985], [8.584868, 47.369852], [8.584888, 47.369853], [8.585216, 47.369847], [8.585544, 47.369836], [8.585872, 47.36982], [8.585934, 47.369819], [8.585996, 47.369821], [8.586057, 47.369827], [8.586445, 47.369881], [8.587, 47.369971], [8.587063, 47.369987], [8.588254, 47.370183], [8.588453, 47.370216], [8.589542, 47.370393], [8.589963, 47.370464], [8.59004, 47.370478], [8.590117, 47.370491], [8.590194, 47.370506], [8.590233, 47.370513], [8.590272, 47.370519], [8.590311, 47.370525], [8.590405, 47.370537], [8.5905, 47.370546], [8.590596, 47.370552], [8.590731, 47.37056], [8.590865, 47.370575], [8.590997, 47.370596], [8.591138, 47.370618], [8.591282, 47.370632], [8.591427, 47.370638], [8.591777, 47.370642], [8.591827, 47.370644], [8.591876, 47.370649], [8.591924, 47.370656], [8.591972, 47.370667], [8.592018, 47.37068], [8.592376, 47.370792], [8.592563, 47.370846], [8.592638, 47.370864], [8.592716, 47.370877], [8.592795, 47.370886], [8.59286, 47.370892], [8.592924, 47.370902], [8.592987, 47.370915], [8.593047, 47.370933], [8.593105, 47.370953], [8.593403, 47.371069], [8.593474, 47.371094], [8.593547, 47.371115], [8.593622, 47.371131], [8.593786, 47.371162], [8.593821, 47.37117], [8.593856, 47.37118], [8.593889, 47.371192], [8.593921, 47.371206], [8.593951, 47.371221], [8.594047, 47.37128], [8.5941, 47.371309], [8.594157, 47.371335], [8.594218, 47.371357], [8.594281, 47.371376], [8.594482, 47.371426], [8.594515, 47.371436], [8.594547, 47.371447], [8.594577, 47.371461], [8.594605, 47.371477], [8.594858, 47.371634]]], "type": "MultiLineString"}, "id": "3067", "properties": {}, "type": "Feature"}, {"bbox": [8.516865, 47.373937, 8.517302, 47.374913], "geometry": {"coordinates": [[[8.516865, 47.374872], [8.516874, 47.374898], [8.516989, 47.374913], [8.517302, 47.374654], [8.517291, 47.37462], [8.517283, 47.37457], [8.517035, 47.37443], [8.517166, 47.373962], [8.517146, 47.373937]]], "type": "MultiLineString"}, "id": "3075", "properties": {}, "type": "Feature"}, {"bbox": [8.557834, 47.39131, 8.560564, 47.392206], "geometry": {"coordinates": [[[8.557834, 47.391521], [8.557837, 47.391531], [8.557841, 47.39154], [8.557846, 47.391548], [8.557852, 47.391557], [8.557859, 47.391565], [8.557867, 47.391572], [8.557877, 47.391579], [8.557887, 47.391585], [8.557898, 47.391591], [8.55791, 47.391596], [8.557922, 47.3916], [8.557963, 47.391612], [8.557989, 47.391619], [8.558015, 47.391625], [8.558042, 47.391629], [8.55807, 47.391631], [8.558098, 47.391632], [8.558334, 47.391635], [8.558458, 47.39164], [8.55858, 47.391652], [8.558701, 47.391671], [8.558974, 47.391724], [8.559014, 47.391731], [8.559054, 47.391735], [8.559095, 47.391737], [8.559136, 47.391737], [8.559177, 47.391734], [8.559217, 47.391729], [8.559256, 47.391722], [8.559295, 47.391713], [8.559588, 47.391634], [8.55965, 47.391615], [8.559709, 47.391593], [8.559765, 47.391568], [8.559996, 47.391454], [8.560066, 47.391422], [8.56014, 47.391394], [8.560218, 47.391369], [8.560426, 47.39131], [8.560464, 47.391412], [8.560556, 47.39179], [8.560562, 47.391827], [8.560564, 47.391865], [8.56056, 47.391903], [8.560551, 47.39194], [8.560491, 47.392138], [8.560487, 47.392155], [8.560486, 47.392172], [8.560487, 47.392189], [8.56049, 47.392206]]], "type": "MultiLineString"}, "id": "3076", "properties": {}, "type": "Feature"}, {"bbox": [8.544817, 47.376812, 8.545318, 47.377751], "geometry": {"coordinates": [[[8.544817, 47.377751], [8.544945, 47.377747], [8.544966, 47.377745], [8.544986, 47.377742], [8.545006, 47.377738], [8.545025, 47.377732], [8.545044, 47.377726], [8.545061, 47.377718], [8.545078, 47.377709], [8.545094, 47.3777], [8.545108, 47.377689], [8.545121, 47.377678], [8.545132, 47.377666], [8.545142, 47.377654], [8.545151, 47.377641], [8.545157, 47.377627], [8.545162, 47.377613], [8.545193, 47.377492], [8.545216, 47.377369], [8.545231, 47.377246], [8.545245, 47.3771], [8.545274, 47.376955], [8.545318, 47.376812]]], "type": "MultiLineString"}, "id": "3079", "properties": {}, "type": "Feature"}, {"bbox": [8.517063, 47.385389, 8.517307, 47.385503], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.517222, 47.385463], [8.517063, 47.385503]]], "type": "MultiLineString"}, "id": "3083", "properties": {}, "type": "Feature"}, {"bbox": [8.469861, 47.375912, 8.472898, 47.381882], "geometry": {"coordinates": [[[8.469861, 47.375912], [8.469986, 47.376054], [8.470002, 47.376076], [8.470016, 47.376098], [8.470027, 47.376121], [8.470036, 47.376145], [8.470041, 47.376169], [8.470098, 47.376511], [8.470097, 47.377011], [8.470102, 47.37709], [8.470117, 47.377168], [8.470142, 47.377244], [8.470178, 47.377319], [8.470421, 47.377765], [8.470439, 47.3778], [8.470462, 47.377842], [8.470485, 47.377883], [8.47051, 47.377924], [8.470683, 47.378197], [8.470704, 47.378233], [8.47072, 47.37827], [8.470732, 47.378308], [8.47074, 47.378347], [8.470743, 47.378386], [8.470748, 47.37863], [8.47077, 47.378833], [8.470762, 47.378929], [8.470791, 47.378972], [8.470813, 47.379017], [8.470831, 47.379063], [8.470842, 47.379109], [8.470858, 47.379203], [8.470872, 47.379213], [8.470885, 47.379223], [8.470892, 47.379291], [8.470894, 47.379313], [8.470895, 47.379334], [8.470896, 47.379355], [8.470897, 47.379388], [8.470901, 47.379431], [8.470912, 47.379474], [8.470929, 47.379516], [8.471015, 47.379692], [8.47109, 47.379828], [8.471128, 47.379903], [8.471149, 47.379948], [8.471175, 47.379991], [8.471205, 47.380033], [8.47133, 47.380195], [8.471365, 47.380244], [8.471397, 47.380295], [8.471425, 47.380346], [8.471477, 47.380451], [8.471523, 47.380531], [8.471579, 47.380609], [8.471644, 47.380683], [8.471718, 47.380753], [8.471778, 47.380801], [8.471844, 47.380846], [8.471915, 47.380888], [8.471991, 47.380925], [8.472136, 47.380995], [8.472383, 47.38113], [8.472487, 47.381191], [8.472584, 47.381258], [8.472672, 47.38133], [8.472751, 47.381406], [8.472898, 47.38156], [8.472889, 47.381566], [8.47287, 47.381579], [8.472852, 47.381593], [8.472837, 47.381608], [8.472823, 47.381624], [8.472754, 47.381714], [8.472586, 47.381882]]], "type": "MultiLineString"}, "id": "3084", "properties": {}, "type": "Feature"}, {"bbox": [8.542833, 47.371788, 8.543842, 47.37234], "geometry": {"coordinates": [[[8.542833, 47.371788], [8.5431, 47.37181], [8.543574, 47.371848], [8.543797, 47.371873], [8.543801, 47.372073], [8.543801, 47.372094], [8.543842, 47.372311], [8.543842, 47.37234]]], "type": "MultiLineString"}, "id": "3085", "properties": {}, "type": "Feature"}, {"bbox": [8.476629, 47.360726, 8.481114, 47.3628], "geometry": {"coordinates": [[[8.478151, 47.360806], [8.478143, 47.360813], [8.478135, 47.36082], [8.478126, 47.360827], [8.478116, 47.360833], [8.478105, 47.360839], [8.478093, 47.360843], [8.478081, 47.360847], [8.478069, 47.360851], [8.478056, 47.360853], [8.478043, 47.360855], [8.477944, 47.360867], [8.477924, 47.360868], [8.477903, 47.360869], [8.477882, 47.360869], [8.477862, 47.360867], [8.477841, 47.360864], [8.477822, 47.36086], [8.477802, 47.360855], [8.477784, 47.360848], [8.477766, 47.360841], [8.477749, 47.360833], [8.477672, 47.360795], [8.477591, 47.360763], [8.477505, 47.360736], [8.477489, 47.360732], [8.477472, 47.360729], [8.477455, 47.360727], [8.477437, 47.360726], [8.47742, 47.360726], [8.477403, 47.360727], [8.477385, 47.360729], [8.477368, 47.360732], [8.477352, 47.360736], [8.477336, 47.360741], [8.477321, 47.360746], [8.477286, 47.360762], [8.477254, 47.36078], [8.477225, 47.3608], [8.477098, 47.360899], [8.476977, 47.361002], [8.476865, 47.361108], [8.476812, 47.361166], [8.476767, 47.361227], [8.476731, 47.361291], [8.476703, 47.361356], [8.476684, 47.361423], [8.476654, 47.361566], [8.476631, 47.36173], [8.476629, 47.361895], [8.476648, 47.362059], [8.476719, 47.362441], [8.476725, 47.362465], [8.476735, 47.36249], [8.476747, 47.362514], [8.476763, 47.362536], [8.476782, 47.362558], [8.476804, 47.362579], [8.476823, 47.362594], [8.476843, 47.362608], [8.476866, 47.36262], [8.47689, 47.362632], [8.476916, 47.362641], [8.476942, 47.36265], [8.47697, 47.362656], [8.476998, 47.362662], [8.477027, 47.362665], [8.477056, 47.362667], [8.477085, 47.362667], [8.477114, 47.362665], [8.477143, 47.362662], [8.477171, 47.362657], [8.477199, 47.36265], [8.477225, 47.362642], [8.477251, 47.362632], [8.477275, 47.362621], [8.477298, 47.362609], [8.477319, 47.362595], [8.477338, 47.36258], [8.477355, 47.362564], [8.477413, 47.362505], [8.477437, 47.362482], [8.477463, 47.362462], [8.477493, 47.362443], [8.477524, 47.362426], [8.477558, 47.362411], [8.477594, 47.362397], [8.477631, 47.362387], [8.47767, 47.362378], [8.477709, 47.362372], [8.477749, 47.362368], [8.478264, 47.362337], [8.4783, 47.362335], [8.478336, 47.362336], [8.478372, 47.362339], [8.478407, 47.362344], [8.478442, 47.362351], [8.478475, 47.362361], [8.478508, 47.362372], [8.478736, 47.362458], [8.479041, 47.362587], [8.479108, 47.362613], [8.479178, 47.362634], [8.47925, 47.362651], [8.479572, 47.362715], [8.479929, 47.362792], [8.47995, 47.362796], [8.479972, 47.362799], [8.479993, 47.3628], [8.480015, 47.3628], [8.480037, 47.362799], [8.480058, 47.362796], [8.480079, 47.362792], [8.4801, 47.362787], [8.48012, 47.362781], [8.480138, 47.362773], [8.480156, 47.362765], [8.480173, 47.362755], [8.480188, 47.362745], [8.480202, 47.362733], [8.480214, 47.362721], [8.480225, 47.362708], [8.480233, 47.362694], [8.480241, 47.362681], [8.480246, 47.362666], [8.480249, 47.362652], [8.480251, 47.362637], [8.48025, 47.362622], [8.480216, 47.362258], [8.480216, 47.362241], [8.480217, 47.362225], [8.480221, 47.362208], [8.480227, 47.362192], [8.480235, 47.362176], [8.480245, 47.362161], [8.480257, 47.362146], [8.48027, 47.362132], [8.480286, 47.362119], [8.480303, 47.362107], [8.480321, 47.362096], [8.480341, 47.362086], [8.480362, 47.362078], [8.480384, 47.36207], [8.480407, 47.362064], [8.480431, 47.36206], [8.480455, 47.362056], [8.480479, 47.362055], [8.480739, 47.362043], [8.480769, 47.362041], [8.480798, 47.362037], [8.480827, 47.362031], [8.480855, 47.362024], [8.480882, 47.362015], [8.480908, 47.362004], [8.480932, 47.361992], [8.480955, 47.361978], [8.480976, 47.361964], [8.480994, 47.361948], [8.481011, 47.361931], [8.481025, 47.361913], [8.481037, 47.361894], [8.481047, 47.361875], [8.481054, 47.361855], [8.481059, 47.361835], [8.481114, 47.361483]]], "type": "MultiLineString"}, "id": "3086", "properties": {}, "type": "Feature"}, {"bbox": [8.485915, 47.387236, 8.486307, 47.387865], "geometry": {"coordinates": [[[8.485955, 47.387865], [8.485915, 47.387762], [8.486128, 47.387716], [8.486071, 47.387592], [8.486289, 47.387546], [8.486168, 47.387295], [8.486307, 47.387266], [8.48629, 47.387236]]], "type": "MultiLineString"}, "id": "3087", "properties": {}, "type": "Feature"}, {"bbox": [8.537819, 47.376269, 8.538554, 47.376532], "geometry": {"coordinates": [[[8.537819, 47.37648], [8.537943, 47.376424], [8.538082, 47.376362], [8.538106, 47.37635], [8.538281, 47.376532], [8.538554, 47.376466], [8.538453, 47.376269]]], "type": "MultiLineString"}, "id": "3088", "properties": {}, "type": "Feature"}, {"bbox": [8.524242, 47.329752, 8.526331, 47.333864], "geometry": {"coordinates": [[[8.524242, 47.333864], [8.524343, 47.333786], [8.524596, 47.333573], [8.524842, 47.333363], [8.525694, 47.332704], [8.525875, 47.332303], [8.526046, 47.331943], [8.526164, 47.331669], [8.526281, 47.331412], [8.526328, 47.331257], [8.526331, 47.331206], [8.526318, 47.330999], [8.526279, 47.330555], [8.526271, 47.330462], [8.526239, 47.330132], [8.526198, 47.329752]]], "type": "MultiLineString"}, "id": "3089", "properties": {}, "type": "Feature"}, {"bbox": [8.548833, 47.407452, 8.549097, 47.4088], "geometry": {"coordinates": [[[8.548833, 47.407452], [8.548868, 47.407566], [8.549071, 47.40818], [8.549088, 47.408272], [8.548956, 47.408522], [8.549097, 47.4088]]], "type": "MultiLineString"}, "id": "3095", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.359599, 8.564974, 47.360521], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.561287, 47.360442], [8.561517, 47.360242], [8.5617, 47.360093], [8.561806, 47.36009], [8.561912, 47.360081], [8.562016, 47.360065], [8.562117, 47.360042], [8.562178, 47.360028], [8.562237, 47.360011], [8.562293, 47.359991], [8.562347, 47.359967], [8.562397, 47.359941], [8.562444, 47.359911], [8.562488, 47.35988], [8.562527, 47.359845], [8.562561, 47.359809], [8.562588, 47.359784], [8.562617, 47.359762], [8.56265, 47.359741], [8.562685, 47.359722], [8.562722, 47.359705], [8.562761, 47.359691], [8.562802, 47.359678], [8.562844, 47.359669], [8.562887, 47.359661], [8.563316, 47.359609], [8.563424, 47.359609], [8.563531, 47.359615], [8.563637, 47.359627], [8.563741, 47.359646], [8.563829, 47.35966], [8.563917, 47.359668], [8.564007, 47.359671], [8.564096, 47.359669], [8.564185, 47.35966], [8.564272, 47.359647], [8.564416, 47.359623], [8.564562, 47.359607], [8.56471, 47.359599], [8.564858, 47.3596], [8.564888, 47.359604], [8.564917, 47.359609], [8.564946, 47.359615], [8.564974, 47.359624]]], "type": "MultiLineString"}, "id": "3096", "properties": {}, "type": "Feature"}, {"bbox": [8.513823, 47.368469, 8.514664, 47.369006], "geometry": {"coordinates": [[[8.514664, 47.369006], [8.513823, 47.368469]]], "type": "MultiLineString"}, "id": "3098", "properties": {}, "type": "Feature"}, {"bbox": [8.535799, 47.331558, 8.537758, 47.333283], "geometry": {"coordinates": [[[8.535841, 47.333283], [8.535799, 47.333262], [8.53589, 47.333144], [8.536373, 47.332754], [8.536794, 47.332497], [8.537083, 47.332258], [8.537169, 47.332099], [8.537387, 47.331925], [8.537539, 47.331778], [8.537758, 47.331558]]], "type": "MultiLineString"}, "id": "3100", "properties": {}, "type": "Feature"}, {"bbox": [8.576719, 47.406134, 8.577652, 47.406668], "geometry": {"coordinates": [[[8.577652, 47.406312], [8.577467, 47.406134], [8.576719, 47.406478], [8.576895, 47.406668]]], "type": "MultiLineString"}, "id": "3101", "properties": {}, "type": "Feature"}, {"bbox": [8.558736, 47.41307, 8.566837, 47.413297], "geometry": {"coordinates": [[[8.558736, 47.41307], [8.55978, 47.413073], [8.561159, 47.413085], [8.562107, 47.413094], [8.563172, 47.413105], [8.563231, 47.413114], [8.564639, 47.413152], [8.565441, 47.413169], [8.566341, 47.41317], [8.56647, 47.413167], [8.566517, 47.413171], [8.566563, 47.413177], [8.566608, 47.413187], [8.566652, 47.413199], [8.566694, 47.413214], [8.566734, 47.413231], [8.566771, 47.413251], [8.566806, 47.413272], [8.566837, 47.413297]]], "type": "MultiLineString"}, "id": "3102", "properties": {}, "type": "Feature"}, {"bbox": [8.479036, 47.381036, 8.483256, 47.383671], "geometry": {"coordinates": [[[8.483256, 47.383671], [8.482921, 47.383265], [8.482406, 47.382967], [8.482349, 47.382914], [8.482142, 47.382723], [8.481619, 47.382342], [8.481045, 47.381973], [8.480973, 47.381939], [8.480486, 47.381632], [8.480303, 47.381529], [8.480236, 47.381532], [8.480157, 47.38153], [8.479958, 47.381429], [8.479871, 47.381427], [8.479638, 47.381352], [8.479036, 47.381036]]], "type": "MultiLineString"}, "id": "3109", "properties": {}, "type": "Feature"}, {"bbox": [8.524155, 47.387052, 8.525438, 47.387496], "geometry": {"coordinates": [[[8.525438, 47.387496], [8.525348, 47.387457], [8.525092, 47.387365], [8.524155, 47.387052]]], "type": "MultiLineString"}, "id": "3112", "properties": {}, "type": "Feature"}, {"bbox": [8.562067, 47.384242, 8.564042, 47.386983], "geometry": {"coordinates": [[[8.564042, 47.384242], [8.563972, 47.384298], [8.563793, 47.384423], [8.563261, 47.38476], [8.563158, 47.384831], [8.563065, 47.384908], [8.562983, 47.38499], [8.562911, 47.385077], [8.562851, 47.385167], [8.562628, 47.38555], [8.562197, 47.386324], [8.56219, 47.386337], [8.562167, 47.38638], [8.562128, 47.386458], [8.562097, 47.386537], [8.562075, 47.386618], [8.562068, 47.386665], [8.562067, 47.386712], [8.562073, 47.386759], [8.562084, 47.386806], [8.562102, 47.386852], [8.562118, 47.38688], [8.562137, 47.386908], [8.56216, 47.386934], [8.562185, 47.386959], [8.562214, 47.386983]]], "type": "MultiLineString"}, "id": "3116", "properties": {}, "type": "Feature"}, {"bbox": [8.510588, 47.343992, 8.512646, 47.348528], "geometry": {"coordinates": [[[8.510588, 47.343992], [8.511022, 47.344093], [8.511082, 47.344109], [8.511141, 47.34413], [8.511196, 47.344153], [8.511248, 47.34418], [8.511492, 47.34432], [8.511507, 47.344328], [8.511523, 47.344335], [8.51154, 47.344341], [8.511558, 47.344346], [8.511576, 47.34435], [8.511595, 47.344353], [8.511614, 47.344355], [8.511633, 47.344356], [8.511653, 47.344356], [8.511826, 47.344348], [8.511861, 47.344348], [8.511896, 47.34435], [8.51193, 47.344354], [8.511963, 47.34436], [8.511996, 47.344367], [8.512027, 47.344377], [8.512058, 47.344389], [8.512086, 47.344403], [8.512168, 47.344446], [8.512237, 47.344479], [8.512308, 47.34451], [8.512383, 47.344537], [8.512537, 47.344589], [8.512554, 47.344596], [8.51257, 47.344603], [8.512585, 47.344611], [8.512599, 47.344621], [8.512612, 47.344631], [8.512624, 47.344641], [8.512634, 47.344653], [8.512643, 47.344665], [8.512646, 47.34467], [8.512588, 47.345796], [8.512582, 47.345863], [8.512568, 47.34593], [8.512548, 47.345996], [8.512548, 47.345996], [8.512118, 47.347206], [8.512098, 47.347268], [8.512084, 47.347331], [8.512074, 47.347395], [8.512042, 47.347652], [8.512005, 47.34797], [8.511968, 47.348293], [8.511966, 47.348351], [8.511972, 47.348392], [8.511982, 47.348434], [8.511997, 47.348474], [8.511997, 47.348474], [8.51202, 47.348528]]], "type": "MultiLineString"}, "id": "3117", "properties": {}, "type": "Feature"}, {"bbox": [8.539191, 47.370092, 8.539534, 47.370312], "geometry": {"coordinates": [[[8.539191, 47.370092], [8.539326, 47.370107], [8.539233, 47.370274], [8.539494, 47.370312], [8.539534, 47.370274]]], "type": "MultiLineString"}, "id": "3118", "properties": {}, "type": "Feature"}, {"bbox": [8.504539, 47.417339, 8.505445, 47.417995], "geometry": {"coordinates": [[[8.505445, 47.417995], [8.505431, 47.417891], [8.505164, 47.41775], [8.504887, 47.417618], [8.504602, 47.417495], [8.504546, 47.417443], [8.504539, 47.417339]]], "type": "MultiLineString"}, "id": "3119", "properties": {}, "type": "Feature"}, {"bbox": [8.571907, 47.404493, 8.572711, 47.404935], "geometry": {"coordinates": [[[8.571907, 47.404493], [8.572038, 47.404603], [8.572179, 47.404714], [8.572248, 47.404935], [8.572502, 47.404792], [8.572608, 47.404732], [8.572711, 47.404717]]], "type": "MultiLineString"}, "id": "3123", "properties": {}, "type": "Feature"}, {"bbox": [8.565404, 47.373445, 8.565646, 47.373688], "geometry": {"coordinates": [[[8.565638, 47.373445], [8.565639, 47.373447], [8.565643, 47.373455], [8.565645, 47.373464], [8.565646, 47.373473], [8.565646, 47.373481], [8.565645, 47.37349], [8.565643, 47.373499], [8.56564, 47.373507], [8.565635, 47.373515], [8.56563, 47.373523], [8.565623, 47.373531], [8.565616, 47.373538], [8.565608, 47.373545], [8.565404, 47.373688]]], "type": "MultiLineString"}, "id": "3126", "properties": {}, "type": "Feature"}, {"bbox": [8.520156, 47.344017, 8.52116, 47.346133], "geometry": {"coordinates": [[[8.52116, 47.346133], [8.521134, 47.34612], [8.521068, 47.346028], [8.520943, 47.345979], [8.520887, 47.345853], [8.520887, 47.345853], [8.520885, 47.345849], [8.520883, 47.345845], [8.520882, 47.345842], [8.520882, 47.345838], [8.520882, 47.345834], [8.520882, 47.34583], [8.520883, 47.345826], [8.520884, 47.345822], [8.520886, 47.345819], [8.520889, 47.345815], [8.520891, 47.345812], [8.520941, 47.345769], [8.520944, 47.345766], [8.520947, 47.345763], [8.520949, 47.345761], [8.520951, 47.345758], [8.520953, 47.345754], [8.520955, 47.345751], [8.520955, 47.345748], [8.520956, 47.345745], [8.520956, 47.345741], [8.520956, 47.345738], [8.520955, 47.345735], [8.520954, 47.345732], [8.520952, 47.345728], [8.52095, 47.345725], [8.520948, 47.345722], [8.520883, 47.34564], [8.520741, 47.345498], [8.520727, 47.345481], [8.520716, 47.345463], [8.520707, 47.345445], [8.520701, 47.345426], [8.520697, 47.345406], [8.520697, 47.345406], [8.520649, 47.345096], [8.520649, 47.345096], [8.520638, 47.34504], [8.52063, 47.344983], [8.520626, 47.344925], [8.520626, 47.344925], [8.520626, 47.344925], [8.520626, 47.344856], [8.520624, 47.344787], [8.520618, 47.344718], [8.520614, 47.344643], [8.520618, 47.344567], [8.520631, 47.344493], [8.520631, 47.344493], [8.520631, 47.344493], [8.520632, 47.344487], [8.520632, 47.344482], [8.520631, 47.344477], [8.52063, 47.344472], [8.520628, 47.344467], [8.520626, 47.344462], [8.520622, 47.344458], [8.520619, 47.344453], [8.520614, 47.344449], [8.520609, 47.344445], [8.520609, 47.344445], [8.520513, 47.344368], [8.520513, 47.344368], [8.520493, 47.344352], [8.520476, 47.344335], [8.52046, 47.344317], [8.520447, 47.344299], [8.520436, 47.34428], [8.520436, 47.34428], [8.520367, 47.344139], [8.520367, 47.344139], [8.520359, 47.344125], [8.520349, 47.344112], [8.520337, 47.344099], [8.520323, 47.344087], [8.520309, 47.344076], [8.520292, 47.344066], [8.520275, 47.344056], [8.520257, 47.344048], [8.520237, 47.344041], [8.520237, 47.344041], [8.520175, 47.344024], [8.520156, 47.344017]]], "type": "MultiLineString"}, "id": "3127", "properties": {}, "type": "Feature"}, {"bbox": [8.584814, 47.377483, 8.588679, 47.380701], "geometry": {"coordinates": [[[8.585051, 47.377483], [8.585068, 47.377607], [8.5851, 47.377694], [8.585122, 47.377783], [8.585132, 47.377873], [8.585132, 47.377963], [8.58512, 47.378053], [8.585098, 47.378142], [8.585065, 47.37823], [8.585022, 47.378315], [8.584868, 47.378582], [8.584846, 47.378626], [8.58483, 47.378671], [8.584819, 47.378716], [8.584814, 47.378763], [8.584816, 47.378809], [8.58484, 47.379064], [8.584842, 47.379097], [8.58484, 47.37913], [8.584836, 47.379163], [8.584832, 47.379199], [8.584832, 47.379234], [8.584836, 47.379269], [8.584845, 47.379304], [8.584857, 47.379339], [8.585222, 47.380191], [8.585251, 47.380249], [8.585287, 47.380304], [8.58533, 47.380358], [8.58538, 47.380408], [8.585437, 47.380455], [8.585499, 47.380499], [8.585567, 47.380539], [8.585699, 47.38061], [8.585741, 47.380631], [8.585786, 47.380649], [8.585833, 47.380665], [8.585882, 47.380678], [8.585929, 47.380687], [8.585977, 47.380694], [8.586026, 47.380698], [8.586101, 47.380701], [8.586176, 47.380698], [8.58625, 47.380692], [8.586323, 47.38068], [8.586531, 47.380641], [8.586632, 47.380619], [8.58673, 47.38059], [8.586824, 47.380555], [8.586912, 47.380514], [8.586994, 47.380468], [8.587341, 47.380254], [8.587493, 47.380142], [8.587543, 47.380104], [8.587592, 47.380065], [8.587638, 47.380026], [8.587771, 47.379899], [8.587886, 47.379764], [8.587983, 47.379623], [8.588061, 47.379477], [8.588175, 47.379227], [8.588201, 47.379177], [8.588233, 47.379129], [8.588271, 47.379082], [8.588314, 47.379038], [8.588362, 47.378996], [8.588679, 47.378739]]], "type": "MultiLineString"}, "id": "3128", "properties": {}, "type": "Feature"}, {"bbox": [8.558883, 47.364189, 8.55933, 47.364757], "geometry": {"coordinates": [[[8.558883, 47.364757], [8.55906, 47.364504], [8.55933, 47.364189]]], "type": "MultiLineString"}, "id": "3130", "properties": {}, "type": "Feature"}, {"bbox": [8.538617, 47.371538, 8.540553, 47.37275], "geometry": {"coordinates": [[[8.540553, 47.371561], [8.540282, 47.371538], [8.540255, 47.371584], [8.540074, 47.371785], [8.539998, 47.371836], [8.539902, 47.371931], [8.539827, 47.372005], [8.539662, 47.372081], [8.539433, 47.372161], [8.539195, 47.372227], [8.538948, 47.372278], [8.538696, 47.372313], [8.538683, 47.372313], [8.538623, 47.372682], [8.538617, 47.37275]]], "type": "MultiLineString"}, "id": "3131", "properties": {}, "type": "Feature"}, {"bbox": [8.538816, 47.420158, 8.54047, 47.420468], "geometry": {"coordinates": [[[8.538816, 47.420158], [8.538973, 47.42019], [8.53926, 47.420264], [8.539604, 47.420352], [8.539657, 47.420364], [8.539658, 47.420362], [8.54025, 47.420444], [8.54047, 47.420468]]], "type": "MultiLineString"}, "id": "3134", "properties": {}, "type": "Feature"}, {"bbox": [8.555767, 47.384336, 8.556905, 47.384503], "geometry": {"coordinates": [[[8.555767, 47.384336], [8.555877, 47.384381], [8.555993, 47.38442], [8.556113, 47.384452], [8.556237, 47.384476], [8.556363, 47.384493], [8.556491, 47.384502], [8.55662, 47.384503], [8.556715, 47.384499], [8.556811, 47.384492], [8.556905, 47.384484]]], "type": "MultiLineString"}, "id": "3135", "properties": {}, "type": "Feature"}, {"bbox": [8.574737, 47.405311, 8.575044, 47.405434], "geometry": {"coordinates": [[[8.574737, 47.405434], [8.575044, 47.405311]]], "type": "MultiLineString"}, "id": "3136", "properties": {}, "type": "Feature"}, {"bbox": [8.543815, 47.370364, 8.544419, 47.370653], "geometry": {"coordinates": [[[8.543815, 47.370364], [8.543837, 47.370367], [8.54382, 47.370403], [8.543991, 47.370425], [8.544003, 47.370396], [8.54405, 47.370399], [8.544037, 47.370463], [8.544319, 47.370486], [8.544306, 47.370518], [8.544293, 47.37055], [8.544388, 47.370609], [8.544379, 47.370649], [8.544419, 47.370653]]], "type": "MultiLineString"}, "id": "3139", "properties": {}, "type": "Feature"}, {"bbox": [8.476143, 47.384152, 8.477238, 47.384845], "geometry": {"coordinates": [[[8.477238, 47.384845], [8.47701, 47.384735], [8.47679, 47.384619], [8.476578, 47.384495], [8.476453, 47.38442], [8.476338, 47.384337], [8.476234, 47.384247], [8.476143, 47.384152]]], "type": "MultiLineString"}, "id": "3141", "properties": {}, "type": "Feature"}, {"bbox": [8.533002, 47.416359, 8.533366, 47.419718], "geometry": {"coordinates": [[[8.533273, 47.416359], [8.533055, 47.417213], [8.533002, 47.417388], [8.533359, 47.417455], [8.533363, 47.417477], [8.533366, 47.417589], [8.533357, 47.417911], [8.533338, 47.418467], [8.533324, 47.418582], [8.533324, 47.418583], [8.533318, 47.418639], [8.533313, 47.418695], [8.533309, 47.418752], [8.533304, 47.418808], [8.5333, 47.418864], [8.533299, 47.418919], [8.53329, 47.418983], [8.533283, 47.419046], [8.533277, 47.41911], [8.533266, 47.419199], [8.533254, 47.419286], [8.533235, 47.419442], [8.533226, 47.419528], [8.533217, 47.419617], [8.533219, 47.419718]]], "type": "MultiLineString"}, "id": "3142", "properties": {}, "type": "Feature"}, {"bbox": [8.555104, 47.367273, 8.555691, 47.367558], "geometry": {"coordinates": [[[8.555104, 47.367468], [8.555272, 47.367548], [8.555278, 47.367551], [8.555284, 47.367553], [8.55529, 47.367555], [8.555297, 47.367556], [8.555304, 47.367557], [8.55531, 47.367558], [8.555317, 47.367558], [8.555324, 47.367558], [8.555331, 47.367558], [8.555338, 47.367557], [8.555345, 47.367556], [8.555351, 47.367554], [8.555357, 47.367552], [8.555363, 47.36755], [8.555369, 47.367547], [8.555374, 47.367544], [8.555379, 47.367541], [8.555384, 47.367537], [8.555691, 47.367273]]], "type": "MultiLineString"}, "id": "3144", "properties": {}, "type": "Feature"}, {"bbox": [8.47479, 47.409989, 8.479637, 47.413156], "geometry": {"coordinates": [[[8.479637, 47.409989], [8.47955, 47.410008], [8.479541, 47.41001], [8.479532, 47.410013], [8.479524, 47.410016], [8.479517, 47.41002], [8.479509, 47.410024], [8.479503, 47.410028], [8.479497, 47.410033], [8.479492, 47.410038], [8.479487, 47.410044], [8.479483, 47.41005], [8.47948, 47.410056], [8.479478, 47.410062], [8.479485, 47.410134], [8.479484, 47.410205], [8.479473, 47.410277], [8.479454, 47.410347], [8.479425, 47.410416], [8.479388, 47.410484], [8.479343, 47.410548], [8.479289, 47.41061], [8.479228, 47.410669], [8.479159, 47.410724], [8.478837, 47.410951], [8.478167, 47.411376], [8.478096, 47.411436], [8.47799, 47.411585], [8.477649, 47.411814], [8.47693, 47.412306], [8.476807, 47.412375], [8.476675, 47.412435], [8.476535, 47.412487], [8.476388, 47.41253], [8.475203, 47.412799], [8.475163, 47.412807], [8.475124, 47.412817], [8.475087, 47.41283], [8.475051, 47.412845], [8.475018, 47.412861], [8.474986, 47.41288], [8.474957, 47.4129], [8.474931, 47.412922], [8.474907, 47.412945], [8.474886, 47.41297], [8.47479, 47.413156]]], "type": "MultiLineString"}, "id": "3145", "properties": {}, "type": "Feature"}, {"bbox": [8.553879, 47.409431, 8.555781, 47.409461], "geometry": {"coordinates": [[[8.553879, 47.409431], [8.555781, 47.409461]]], "type": "MultiLineString"}, "id": "3146", "properties": {}, "type": "Feature"}, {"bbox": [8.490406, 47.405426, 8.490539, 47.40567], "geometry": {"coordinates": [[[8.490406, 47.405426], [8.490517, 47.405616], [8.490526, 47.405634], [8.490534, 47.405652], [8.490539, 47.40567]]], "type": "MultiLineString"}, "id": "3147", "properties": {}, "type": "Feature"}, {"bbox": [8.548528, 47.416792, 8.549781, 47.418724], "geometry": {"coordinates": [[[8.549156, 47.416792], [8.549287, 47.416999], [8.54952, 47.41738], [8.549747, 47.417683], [8.549763, 47.417724], [8.549774, 47.417765], [8.54978, 47.417808], [8.549781, 47.41785], [8.549776, 47.417892], [8.549766, 47.417934], [8.549751, 47.417975], [8.549731, 47.418016], [8.549706, 47.418054], [8.549676, 47.418092], [8.549579, 47.4182], [8.549469, 47.418302], [8.549347, 47.418398], [8.549213, 47.418486], [8.549068, 47.418565], [8.548913, 47.418636], [8.548826, 47.41867], [8.548698, 47.418724], [8.548528, 47.418457]]], "type": "MultiLineString"}, "id": "3149", "properties": {}, "type": "Feature"}, {"bbox": [8.533615, 47.389298, 8.53444, 47.389765], "geometry": {"coordinates": [[[8.533615, 47.389298], [8.53444, 47.389765]]], "type": "MultiLineString"}, "id": "3150", "properties": {}, "type": "Feature"}, {"bbox": [8.520592, 47.340197, 8.52294, 47.343883], "geometry": {"coordinates": [[[8.520592, 47.343883], [8.520705, 47.343707], [8.520905, 47.343488], [8.521034, 47.34331], [8.521369, 47.342933], [8.521397, 47.342906], [8.521434, 47.34287], [8.521469, 47.342834], [8.521504, 47.342798], [8.521562, 47.342719], [8.521615, 47.342639], [8.521663, 47.342557], [8.521707, 47.342491], [8.521764, 47.342424], [8.521824, 47.342358], [8.521887, 47.342293], [8.521957, 47.342212], [8.522021, 47.342128], [8.52208, 47.342042], [8.522122, 47.341969], [8.522163, 47.341895], [8.522201, 47.34182], [8.522403, 47.341466], [8.522543, 47.341288], [8.5227, 47.341106], [8.52274, 47.340933], [8.522741, 47.3409], [8.522774, 47.340678], [8.522775, 47.340456], [8.522777, 47.340433], [8.522782, 47.340409], [8.52279, 47.340386], [8.522801, 47.340363], [8.522815, 47.340341], [8.522832, 47.34032], [8.522852, 47.3403], [8.52294, 47.340197]]], "type": "MultiLineString"}, "id": "3151", "properties": {}, "type": "Feature"}, {"bbox": [8.520969, 47.412849, 8.521443, 47.413314], "geometry": {"coordinates": [[[8.521443, 47.413314], [8.521338, 47.41321], [8.521209, 47.41309], [8.520969, 47.412849]]], "type": "MultiLineString"}, "id": "3152", "properties": {}, "type": "Feature"}, {"bbox": [8.480418, 47.376427, 8.481236, 47.376786], "geometry": {"coordinates": [[[8.481236, 47.376786], [8.480524, 47.37646], [8.480418, 47.376427]]], "type": "MultiLineString"}, "id": "3153", "properties": {}, "type": "Feature"}, {"bbox": [8.54415, 47.379937, 8.545861, 47.38081], "geometry": {"coordinates": [[[8.54415, 47.379937], [8.544169, 47.379949], [8.544185, 47.379962], [8.5442, 47.379976], [8.544213, 47.379991], [8.544224, 47.380007], [8.544233, 47.380023], [8.54424, 47.38004], [8.544244, 47.380057], [8.544247, 47.380075], [8.544247, 47.380092], [8.544228, 47.380253], [8.544227, 47.380267], [8.544228, 47.38028], [8.544231, 47.380293], [8.544235, 47.380306], [8.544241, 47.380319], [8.544248, 47.380332], [8.544257, 47.380343], [8.544268, 47.380355], [8.54428, 47.380365], [8.544294, 47.380375], [8.544308, 47.380384], [8.544324, 47.380392], [8.544341, 47.380399], [8.544358, 47.380405], [8.544775, 47.380521], [8.545081, 47.380604], [8.545149, 47.380609], [8.545224, 47.380601], [8.545861, 47.38081]]], "type": "MultiLineString"}, "id": "3154", "properties": {}, "type": "Feature"}, {"bbox": [8.508344, 47.363116, 8.517161, 47.364718], "geometry": {"coordinates": [[[8.517161, 47.363116], [8.516932, 47.363204], [8.516748, 47.363272], [8.516584, 47.363328], [8.516202, 47.363439], [8.51581, 47.363529], [8.515408, 47.363598], [8.51172, 47.364159], [8.511656, 47.364156], [8.511575, 47.364153], [8.510024, 47.364396], [8.509733, 47.364463], [8.508652, 47.364621], [8.508403, 47.364644], [8.508344, 47.364718]]], "type": "MultiLineString"}, "id": "3156", "properties": {}, "type": "Feature"}, {"bbox": [8.548716, 47.403315, 8.55055, 47.403831], "geometry": {"coordinates": [[[8.55055, 47.403315], [8.549554, 47.403392], [8.549354, 47.403451], [8.549014, 47.403592], [8.548716, 47.403831]]], "type": "MultiLineString"}, "id": "3157", "properties": {}, "type": "Feature"}, {"bbox": [8.541847, 47.371779, 8.542691, 47.371978], "geometry": {"coordinates": [[[8.541851, 47.37187], [8.541847, 47.371967], [8.542506, 47.371978], [8.542507, 47.371858], [8.542523, 47.371857], [8.54252, 47.371826], [8.542679, 47.371827], [8.542691, 47.371779]]], "type": "MultiLineString"}, "id": "3163", "properties": {}, "type": "Feature"}, {"bbox": [8.53193, 47.370127, 8.535852, 47.376071], "geometry": {"coordinates": [[[8.534353, 47.370127], [8.534066, 47.370174], [8.533856, 47.370252], [8.533689, 47.37027], [8.533375, 47.370398], [8.532911, 47.370525], [8.532687, 47.370573], [8.532216, 47.370631], [8.53193, 47.370664], [8.531957, 47.370784], [8.532565, 47.371433], [8.532806, 47.371583], [8.533027, 47.371675], [8.533327, 47.371962], [8.533404, 47.372067], [8.533554, 47.372409], [8.533549, 47.372611], [8.53358, 47.372635], [8.533559, 47.373077], [8.533534, 47.373125], [8.533541, 47.373745], [8.53362, 47.373777], [8.533637, 47.373803], [8.534841, 47.374297], [8.535052, 47.374403], [8.535029, 47.374476], [8.5351, 47.374467], [8.535248, 47.374623], [8.535601, 47.375456], [8.535773, 47.375865], [8.535829, 47.37588], [8.535852, 47.375931], [8.535733, 47.376071]]], "type": "MultiLineString"}, "id": "3164", "properties": {}, "type": "Feature"}, {"bbox": [8.484657, 47.410186, 8.48478, 47.410969], "geometry": {"coordinates": [[[8.484764, 47.410186], [8.484765, 47.410191], [8.484764, 47.410202], [8.484763, 47.410212], [8.48476, 47.410223], [8.484719, 47.410334], [8.484706, 47.41037], [8.484697, 47.410407], [8.484692, 47.410445], [8.484658, 47.410763], [8.484657, 47.410776], [8.484657, 47.41079], [8.484659, 47.410803], [8.484662, 47.410816], [8.484667, 47.410829], [8.484674, 47.410842], [8.484697, 47.41087], [8.48478, 47.410969]]], "type": "MultiLineString"}, "id": "3165", "properties": {}, "type": "Feature"}, {"bbox": [8.539967, 47.371069, 8.541023, 47.371806], "geometry": {"coordinates": [[[8.540947, 47.371755], [8.540971, 47.371753], [8.540985, 47.37148], [8.540986, 47.371456], [8.540942, 47.371447], [8.540899, 47.371432], [8.540989, 47.371276], [8.541023, 47.371204], [8.540915, 47.37119], [8.540902, 47.371223], [8.540865, 47.371224], [8.540864, 47.371247], [8.540815, 47.371244], [8.540818, 47.371217], [8.540695, 47.371198], [8.540678, 47.371233], [8.54054, 47.371219], [8.540546, 47.371179], [8.540441, 47.371168], [8.540449, 47.371102], [8.540297, 47.371069], [8.54018, 47.371212], [8.540046, 47.371187], [8.540012, 47.371233], [8.539967, 47.371293], [8.540012, 47.371304], [8.539971, 47.371364], [8.540064, 47.371385], [8.54, 47.371466], [8.540045, 47.37148], [8.540104, 47.371377], [8.540302, 47.371421], [8.540311, 47.371404], [8.540424, 47.371414], [8.540436, 47.371328], [8.540506, 47.371339], [8.5405, 47.371373], [8.540543, 47.371391], [8.54051, 47.371536], [8.540556, 47.371545], [8.540553, 47.371561], [8.540519, 47.371724], [8.540355, 47.371707], [8.540324, 47.371704], [8.540305, 47.371763], [8.540401, 47.371778], [8.540416, 47.371784], [8.54043, 47.37179], [8.540515, 47.371804], [8.540529, 47.371806], [8.540548, 47.371724], [8.540908, 47.371756], [8.540947, 47.371755]]], "type": "MultiLineString"}, "id": "3173", "properties": {}, "type": "Feature"}, {"bbox": [8.515057, 47.387467, 8.51578, 47.388747], "geometry": {"coordinates": [[[8.51578, 47.388747], [8.515692, 47.388557], [8.515601, 47.388428], [8.515502, 47.388302], [8.515393, 47.388179], [8.515379, 47.388163], [8.515368, 47.388146], [8.515358, 47.388128], [8.515351, 47.388109], [8.515346, 47.388091], [8.515343, 47.388072], [8.515343, 47.388053], [8.515345, 47.388034], [8.51535, 47.388015], [8.515357, 47.387997], [8.515366, 47.387979], [8.515377, 47.387962], [8.515385, 47.387949], [8.515391, 47.387935], [8.515395, 47.387921], [8.515398, 47.387907], [8.515399, 47.387894], [8.515398, 47.387881], [8.515396, 47.387867], [8.515392, 47.387855], [8.515386, 47.387842], [8.515379, 47.38783], [8.51537, 47.387818], [8.51536, 47.387807], [8.515253, 47.3877], [8.515057, 47.387467]]], "type": "MultiLineString"}, "id": "3174", "properties": {}, "type": "Feature"}, {"bbox": [8.522796, 47.40317, 8.527785, 47.4036], "geometry": {"coordinates": [[[8.527785, 47.4036], [8.527771, 47.403598], [8.527756, 47.403595], [8.527743, 47.403591], [8.527729, 47.403586], [8.527717, 47.40358], [8.527705, 47.403574], [8.527694, 47.403567], [8.527684, 47.40356], [8.527675, 47.403552], [8.527663, 47.403539], [8.527652, 47.403527], [8.527641, 47.403514], [8.527618, 47.403482], [8.527598, 47.403448], [8.527583, 47.403414], [8.527557, 47.403345], [8.527531, 47.403275], [8.527507, 47.403206], [8.527449, 47.403171], [8.527425, 47.40317], [8.527402, 47.40317], [8.527379, 47.403172], [8.527356, 47.403175], [8.527334, 47.403179], [8.527175, 47.403215], [8.527017, 47.403253], [8.526862, 47.403294], [8.526848, 47.403298], [8.526833, 47.403301], [8.526818, 47.403302], [8.526803, 47.403303], [8.526334, 47.403323], [8.52633, 47.403323], [8.526325, 47.403322], [8.526321, 47.403322], [8.526316, 47.403321], [8.526312, 47.40332], [8.526308, 47.403319], [8.526304, 47.403318], [8.52625, 47.403296], [8.526238, 47.403291], [8.526224, 47.403287], [8.52621, 47.403284], [8.526196, 47.403282], [8.526181, 47.403281], [8.526167, 47.403281], [8.526152, 47.403281], [8.526138, 47.403283], [8.526116, 47.403285], [8.526093, 47.403286], [8.52607, 47.403285], [8.526048, 47.403283], [8.525909, 47.403266], [8.525875, 47.40326], [8.525841, 47.403253], [8.525808, 47.403244], [8.525777, 47.403233], [8.525762, 47.403228], [8.525747, 47.403224], [8.525732, 47.40322], [8.525716, 47.403218], [8.5257, 47.403216], [8.525684, 47.403216], [8.525667, 47.403216], [8.525477, 47.403226], [8.525442, 47.403228], [8.525407, 47.403231], [8.525361, 47.403236], [8.525315, 47.403243], [8.52527, 47.403251], [8.525197, 47.403267], [8.525153, 47.403274], [8.525108, 47.403279], [8.525062, 47.403281], [8.525017, 47.40328], [8.524972, 47.403276], [8.524855, 47.403262], [8.524816, 47.403258], [8.524776, 47.403256], [8.524737, 47.403255], [8.524567, 47.403256], [8.524547, 47.403255], [8.524527, 47.403253], [8.524507, 47.403249], [8.524487, 47.403245], [8.524469, 47.403239], [8.524451, 47.403233], [8.524433, 47.403225], [8.524409, 47.403216], [8.524384, 47.403207], [8.524357, 47.4032], [8.52433, 47.403195], [8.524302, 47.403192], [8.52421, 47.403185], [8.524118, 47.403182], [8.524026, 47.403183], [8.523306, 47.403198], [8.523135, 47.403206], [8.522965, 47.40322], [8.522796, 47.403242]]], "type": "MultiLineString"}, "id": "3178", "properties": {}, "type": "Feature"}, {"bbox": [8.567451, 47.411945, 8.567924, 47.412331], "geometry": {"coordinates": [[[8.567451, 47.411945], [8.567578, 47.412054], [8.567627, 47.412097], [8.567924, 47.412331]]], "type": "MultiLineString"}, "id": "3179", "properties": {}, "type": "Feature"}, {"bbox": [8.50778, 47.408439, 8.508599, 47.408701], "geometry": {"coordinates": [[[8.50778, 47.408666], [8.508032, 47.408582], [8.50812, 47.408701], [8.508402, 47.408609], [8.508455, 47.408683], [8.508599, 47.408636], [8.508458, 47.408439], [8.508032, 47.408582]]], "type": "MultiLineString"}, "id": "3180", "properties": {}, "type": "Feature"}, {"bbox": [8.603012, 47.365091, 8.612209, 47.365985], "geometry": {"coordinates": [[[8.603012, 47.365365], [8.603182, 47.365233], [8.603213, 47.365213], [8.603246, 47.365194], [8.603281, 47.365177], [8.603318, 47.365163], [8.603358, 47.365151], [8.603398, 47.365141], [8.60344, 47.365134], [8.603649, 47.365096], [8.603712, 47.365092], [8.603775, 47.365091], [8.603838, 47.365094], [8.6039, 47.365101], [8.603962, 47.365111], [8.604022, 47.365125], [8.604491, 47.365218], [8.604629, 47.365244], [8.604771, 47.365262], [8.604914, 47.365272], [8.605085, 47.365288], [8.605174, 47.365296], [8.605263, 47.365302], [8.605352, 47.365306], [8.605405, 47.365308], [8.605457, 47.365312], [8.605509, 47.365318], [8.605569, 47.365326], [8.605628, 47.365337], [8.605687, 47.365351], [8.605861, 47.365419], [8.606227, 47.365581], [8.606472, 47.365673], [8.607278, 47.365924], [8.607505, 47.365965], [8.607859, 47.365981], [8.609464, 47.365985], [8.609718, 47.365967], [8.61014, 47.365899], [8.611836, 47.365551], [8.612209, 47.3655]]], "type": "MultiLineString"}, "id": "3181", "properties": {}, "type": "Feature"}, {"bbox": [8.5052, 47.370157, 8.505397, 47.371637], "geometry": {"coordinates": [[[8.5052, 47.371637], [8.505231, 47.371443], [8.505239, 47.371398], [8.505252, 47.371355], [8.505272, 47.371312], [8.505288, 47.371259], [8.505298, 47.371205], [8.5053, 47.371151], [8.505294, 47.371097], [8.505271, 47.370942], [8.505268, 47.370892], [8.505269, 47.370843], [8.505274, 47.370794], [8.505312, 47.370617], [8.505244, 47.370555], [8.505245, 47.37054], [8.505264, 47.370454], [8.505343, 47.370392], [8.505388, 47.370206], [8.505397, 47.370157]]], "type": "MultiLineString"}, "id": "3184", "properties": {}, "type": "Feature"}, {"bbox": [8.516138, 47.398893, 8.517471, 47.399496], "geometry": {"coordinates": [[[8.517451, 47.399496], [8.517456, 47.399491], [8.517461, 47.399485], [8.517464, 47.399479], [8.517467, 47.399473], [8.517469, 47.399467], [8.517471, 47.399461], [8.517471, 47.399455], [8.517471, 47.399449], [8.51747, 47.399443], [8.517469, 47.399437], [8.517466, 47.399431], [8.517463, 47.399425], [8.517459, 47.399419], [8.517454, 47.399414], [8.517449, 47.399409], [8.517386, 47.399356], [8.517317, 47.399308], [8.517241, 47.399263], [8.517161, 47.399222], [8.517076, 47.399186], [8.516988, 47.399155], [8.516138, 47.398893]]], "type": "MultiLineString"}, "id": "3185", "properties": {}, "type": "Feature"}, {"bbox": [8.561521, 47.373509, 8.563846, 47.375496], "geometry": {"coordinates": [[[8.561521, 47.373509], [8.561554, 47.373609], [8.561947, 47.374007], [8.562426, 47.37454], [8.562596, 47.374631], [8.563175, 47.37503], [8.563611, 47.375331], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "3188", "properties": {}, "type": "Feature"}, {"bbox": [8.490912, 47.427205, 8.496232, 47.429076], "geometry": {"coordinates": [[[8.496232, 47.427205], [8.496149, 47.427217], [8.495826, 47.427263], [8.495713, 47.427282], [8.495602, 47.427308], [8.495494, 47.427339], [8.495412, 47.427368], [8.49533, 47.427398], [8.495251, 47.42743], [8.494729, 47.427649], [8.494359, 47.427815], [8.493908, 47.428011], [8.493751, 47.428074], [8.493586, 47.428127], [8.493415, 47.42817], [8.492996, 47.428263], [8.492996, 47.428263], [8.492946, 47.428275], [8.492897, 47.428291], [8.492851, 47.428309], [8.492807, 47.42833], [8.492766, 47.428354], [8.492729, 47.42838], [8.492694, 47.428408], [8.492694, 47.428408], [8.492573, 47.428517], [8.492458, 47.428641], [8.492439, 47.42866], [8.492418, 47.428677], [8.492394, 47.428693], [8.492369, 47.428708], [8.492342, 47.428721], [8.492313, 47.428732], [8.492282, 47.428741], [8.49215, 47.428777], [8.492069, 47.4288], [8.491983, 47.428824], [8.491898, 47.428852], [8.491815, 47.428881], [8.491612, 47.428956], [8.491479, 47.428997], [8.491361, 47.429029], [8.491238, 47.429055], [8.491114, 47.429075], [8.491046, 47.429076], [8.490979, 47.429074], [8.490912, 47.429068]]], "type": "MultiLineString"}, "id": "3190", "properties": {}, "type": "Feature"}, {"bbox": [8.547195, 47.366025, 8.547208, 47.366072], "geometry": {"coordinates": [[[8.547195, 47.366072], [8.547208, 47.366025]]], "type": "MultiLineString"}, "id": "3191", "properties": {}, "type": "Feature"}, {"bbox": [8.568024, 47.416984, 8.569506, 47.417133], "geometry": {"coordinates": [[[8.568024, 47.417133], [8.569274, 47.417085], [8.569298, 47.417084], [8.569322, 47.417081], [8.569345, 47.417077], [8.569368, 47.417071], [8.56939, 47.417064], [8.569411, 47.417056], [8.56943, 47.417047], [8.569449, 47.417036], [8.569466, 47.417024], [8.569481, 47.417012], [8.569495, 47.416998], [8.569506, 47.416984]]], "type": "MultiLineString"}, "id": "3192", "properties": {}, "type": "Feature"}, {"bbox": [8.570302, 47.367546, 8.57727, 47.369674], "geometry": {"coordinates": [[[8.57727, 47.369508], [8.577258, 47.369503], [8.577246, 47.3695], [8.577233, 47.369497], [8.57722, 47.369494], [8.577207, 47.369493], [8.577194, 47.369492], [8.57718, 47.369492], [8.577167, 47.369493], [8.577154, 47.369495], [8.577141, 47.369497], [8.577128, 47.3695], [8.577116, 47.369504], [8.577104, 47.369509], [8.577093, 47.369514], [8.577083, 47.36952], [8.577074, 47.369527], [8.576942, 47.369638], [8.576932, 47.369645], [8.576922, 47.369651], [8.576911, 47.369657], [8.576899, 47.369661], [8.576887, 47.369665], [8.576874, 47.369669], [8.57686, 47.369671], [8.576847, 47.369673], [8.576833, 47.369674], [8.576819, 47.369674], [8.576806, 47.369673], [8.576792, 47.369671], [8.576779, 47.369669], [8.576766, 47.369666], [8.576753, 47.369662], [8.57654, 47.369592], [8.576139, 47.36948], [8.575942, 47.369422], [8.575754, 47.369351], [8.575577, 47.369268], [8.575359, 47.369151], [8.575136, 47.369021], [8.574979, 47.368943], [8.574815, 47.368872], [8.574645, 47.368808], [8.574091, 47.368629], [8.573969, 47.368584], [8.57385, 47.368535], [8.573735, 47.368482], [8.573221, 47.368244], [8.57305, 47.368172], [8.572869, 47.368111], [8.572679, 47.368063], [8.572572, 47.368037], [8.572463, 47.368013], [8.572354, 47.36799], [8.571854, 47.367901], [8.571573, 47.36784], [8.571297, 47.36777], [8.571026, 47.36769], [8.570612, 47.367561], [8.570587, 47.367555], [8.570561, 47.36755], [8.570535, 47.367547], [8.570508, 47.367546], [8.570481, 47.367547], [8.570455, 47.367549], [8.570429, 47.367552], [8.570403, 47.367557], [8.570378, 47.367564], [8.570354, 47.367572], [8.570348, 47.367574], [8.570342, 47.367577], [8.570337, 47.367579], [8.570332, 47.367583], [8.570328, 47.367586], [8.570324, 47.36759], [8.57032, 47.367594], [8.570302, 47.367619]]], "type": "MultiLineString"}, "id": "3193", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.371288, 8.541909, 47.371585], "geometry": {"coordinates": [[[8.541909, 47.371533], [8.541883, 47.371529], [8.541903, 47.371306], [8.541866, 47.371304], [8.541557, 47.371291], [8.5415, 47.371288], [8.541501, 47.371294], [8.541502, 47.371301], [8.541503, 47.371307], [8.541505, 47.371355], [8.5415, 47.371402], [8.54149, 47.37145], [8.541472, 47.371496], [8.541449, 47.371541], [8.54142, 47.371585]]], "type": "MultiLineString"}, "id": "3201", "properties": {}, "type": "Feature"}, {"bbox": [8.521316, 47.325008, 8.52506, 47.335374], "geometry": {"coordinates": [[[8.52506, 47.335374], [8.524798, 47.335298], [8.523625, 47.334925], [8.522958, 47.33471], [8.522958, 47.33471], [8.522947, 47.334706], [8.522936, 47.334702], [8.522927, 47.334696], [8.522917, 47.33469], [8.522909, 47.334684], [8.522902, 47.334677], [8.522895, 47.33467], [8.52289, 47.334662], [8.522885, 47.334654], [8.522882, 47.334646], [8.522879, 47.334638], [8.522878, 47.334629], [8.522874, 47.334558], [8.522874, 47.334534], [8.522877, 47.334509], [8.522883, 47.334485], [8.522891, 47.334461], [8.522903, 47.334438], [8.522913, 47.334421], [8.522926, 47.334406], [8.522941, 47.334391], [8.522941, 47.334391], [8.522956, 47.334379], [8.522973, 47.334368], [8.522992, 47.334358], [8.523011, 47.334349], [8.523032, 47.334342], [8.523053, 47.334335], [8.523332, 47.334265], [8.523396, 47.334247], [8.52346, 47.334229], [8.523522, 47.334208], [8.523856, 47.334095], [8.523903, 47.334078], [8.523949, 47.334059], [8.523993, 47.334038], [8.523993, 47.334038], [8.523993, 47.334038], [8.524039, 47.334013], [8.524083, 47.333985], [8.524123, 47.333956], [8.524123, 47.333956], [8.524172, 47.333919], [8.524242, 47.333864], [8.524184, 47.333782], [8.524169, 47.33375], [8.524097, 47.333572], [8.523889, 47.333053], [8.52386, 47.332966], [8.523852, 47.332945], [8.523803, 47.332843], [8.523761, 47.332791], [8.523659, 47.33269], [8.523488, 47.332607], [8.523301, 47.332541], [8.523248, 47.332529], [8.523155, 47.332489], [8.523075, 47.332433], [8.522922, 47.332283], [8.522823, 47.332137], [8.522785, 47.332071], [8.522727, 47.332014], [8.522706, 47.331996], [8.522405, 47.331743], [8.522139, 47.331491], [8.522029, 47.331234], [8.52202, 47.331019], [8.522034, 47.3308], [8.521983, 47.330616], [8.521869, 47.330458], [8.521857, 47.330447], [8.521599, 47.33022], [8.521397, 47.329982], [8.521316, 47.329732], [8.521355, 47.329461], [8.521387, 47.329199], [8.521328, 47.328925], [8.521318, 47.328882], [8.521341, 47.328664], [8.521342, 47.328654], [8.521364, 47.328525], [8.521389, 47.328381], [8.521411, 47.32809], [8.521411, 47.328081], [8.521537, 47.327783], [8.521597, 47.327487], [8.521607, 47.327405], [8.521633, 47.327183], [8.52163, 47.327059], [8.521616, 47.326989], [8.521609, 47.32696], [8.521579, 47.326889], [8.521562, 47.326727], [8.521581, 47.326554], [8.521617, 47.326281], [8.52164, 47.32599], [8.521647, 47.325965], [8.521697, 47.3258], [8.521956, 47.325395], [8.522057, 47.325289], [8.522069, 47.325277], [8.522219, 47.325188], [8.522434, 47.325109], [8.522668, 47.325069], [8.52282, 47.325039], [8.522872, 47.325029], [8.522979, 47.325008], [8.523033, 47.32501], [8.523055, 47.325011], [8.523305, 47.325021], [8.523335, 47.325025], [8.523603, 47.325062]]], "type": "MultiLineString"}, "id": "3202", "properties": {}, "type": "Feature"}, {"bbox": [8.483509, 47.379512, 8.486707, 47.380885], "geometry": {"coordinates": [[[8.486707, 47.379512], [8.486278, 47.379627], [8.486022, 47.379721], [8.484449, 47.380555], [8.483848, 47.380873], [8.483509, 47.380885]]], "type": "MultiLineString"}, "id": "3203", "properties": {}, "type": "Feature"}, {"bbox": [8.540357, 47.413964, 8.541135, 47.414308], "geometry": {"coordinates": [[[8.540659, 47.414308], [8.541135, 47.414284], [8.54113, 47.414226], [8.54081, 47.414169], [8.540653, 47.414126], [8.54042, 47.414059], [8.540414, 47.413986], [8.540357, 47.413964]]], "type": "MultiLineString"}, "id": "3204", "properties": {}, "type": "Feature"}, {"bbox": [8.539868, 47.412532, 8.539887, 47.412559], "geometry": {"coordinates": [[[8.539868, 47.412559], [8.539887, 47.412532]]], "type": "MultiLineString"}, "id": "3206", "properties": {}, "type": "Feature"}, {"bbox": [8.513604, 47.404236, 8.515084, 47.407217], "geometry": {"coordinates": [[[8.514523, 47.404236], [8.514562, 47.404295], [8.514597, 47.404356], [8.514626, 47.404417], [8.514659, 47.404539], [8.514681, 47.404662], [8.514691, 47.404786], [8.514694, 47.404838], [8.514698, 47.404889], [8.514706, 47.404941], [8.514777, 47.405196], [8.514826, 47.405273], [8.514883, 47.405348], [8.514949, 47.40542], [8.514975, 47.405449], [8.514997, 47.40548], [8.515016, 47.405512], [8.51503, 47.405545], [8.51504, 47.405579], [8.515062, 47.405664], [8.515076, 47.40575], [8.515084, 47.405836], [8.515081, 47.40612], [8.515062, 47.406251], [8.515064, 47.406475], [8.515057, 47.406509], [8.515046, 47.406543], [8.51503, 47.406576], [8.51501, 47.406608], [8.514987, 47.406639], [8.514959, 47.406668], [8.514928, 47.406696], [8.514804, 47.4068], [8.514666, 47.406895], [8.514516, 47.406981], [8.514457, 47.407013], [8.514313, 47.40707], [8.514172, 47.407097], [8.513723, 47.407194], [8.513604, 47.407217]]], "type": "MultiLineString"}, "id": "3207", "properties": {}, "type": "Feature"}, {"bbox": [8.544214, 47.387586, 8.544368, 47.387959], "geometry": {"coordinates": [[[8.544368, 47.387586], [8.544287, 47.387873], [8.544214, 47.387959]]], "type": "MultiLineString"}, "id": "3214", "properties": {}, "type": "Feature"}, {"bbox": [8.481691, 47.397474, 8.482188, 47.398157], "geometry": {"coordinates": [[[8.482072, 47.397474], [8.48195, 47.397667], [8.481875, 47.397729], [8.481809, 47.397796], [8.481751, 47.397866], [8.481702, 47.397939], [8.481697, 47.397954], [8.481693, 47.397968], [8.481691, 47.397983], [8.481692, 47.397998], [8.481694, 47.398013], [8.481698, 47.398027], [8.481704, 47.398041], [8.481711, 47.398055], [8.481721, 47.398069], [8.481732, 47.398081], [8.481745, 47.398093], [8.481759, 47.398105], [8.481775, 47.398115], [8.481792, 47.398124], [8.48181, 47.398133], [8.481829, 47.39814], [8.481849, 47.398146], [8.48187, 47.39815], [8.481891, 47.398154], [8.481913, 47.398156], [8.481935, 47.398157], [8.481956, 47.398157], [8.481978, 47.398155], [8.482, 47.398152], [8.48202, 47.398148], [8.482041, 47.398142], [8.48206, 47.398136], [8.482079, 47.398128], [8.482096, 47.398119], [8.482113, 47.398109], [8.482128, 47.398099], [8.482141, 47.398087], [8.482153, 47.398074], [8.482163, 47.398061], [8.482172, 47.398048], [8.482179, 47.398034], [8.482184, 47.398019], [8.482187, 47.398004], [8.482188, 47.39799], [8.482187, 47.397975], [8.482184, 47.39796], [8.48218, 47.397946], [8.482173, 47.397931], [8.482035, 47.397675], [8.482072, 47.397474]]], "type": "MultiLineString"}, "id": "3216", "properties": {}, "type": "Feature"}, {"bbox": [8.547212, 47.406544, 8.54799, 47.406713], "geometry": {"coordinates": [[[8.54799, 47.406713], [8.547682, 47.406544], [8.547443, 47.406588], [8.547212, 47.406554]]], "type": "MultiLineString"}, "id": "3217", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.390475, 8.523011, 47.390845], "geometry": {"coordinates": [[[8.523011, 47.390475], [8.522767, 47.390612], [8.522636, 47.390675], [8.522498, 47.39073], [8.522353, 47.390777], [8.522202, 47.390815], [8.522048, 47.390845]]], "type": "MultiLineString"}, "id": "3218", "properties": {}, "type": "Feature"}, {"bbox": [8.47943, 47.412695, 8.482453, 47.413731], "geometry": {"coordinates": [[[8.482453, 47.413719], [8.48226, 47.413731], [8.482146, 47.413658], [8.48213, 47.413466], [8.482075, 47.413435], [8.48178, 47.413435], [8.481733, 47.413409], [8.481508, 47.413235], [8.481376, 47.413223], [8.48132, 47.41312], [8.481182, 47.413043], [8.481108, 47.413017], [8.480931, 47.413098], [8.480729, 47.413084], [8.480484, 47.413078], [8.480215, 47.413009], [8.479926, 47.412938], [8.479579, 47.412849], [8.479574, 47.41278], [8.47943, 47.412695]]], "type": "MultiLineString"}, "id": "3220", "properties": {}, "type": "Feature"}, {"bbox": [8.479733, 47.411418, 8.480574, 47.412432], "geometry": {"coordinates": [[[8.480362, 47.412418], [8.480286, 47.412431], [8.480282, 47.412432], [8.480278, 47.412432], [8.480274, 47.412432], [8.48027, 47.412432], [8.480267, 47.412431], [8.480263, 47.41243], [8.480259, 47.412429], [8.480255, 47.412428], [8.480252, 47.412427], [8.480249, 47.412425], [8.480245, 47.412424], [8.480243, 47.412422], [8.480075, 47.412178], [8.479906, 47.411934], [8.479736, 47.411691], [8.479735, 47.411689], [8.479734, 47.411687], [8.479734, 47.411685], [8.479733, 47.411683], [8.479733, 47.411681], [8.479734, 47.411679], [8.479734, 47.411677], [8.479735, 47.411675], [8.479736, 47.411673], [8.479737, 47.411671], [8.479739, 47.411669], [8.47974, 47.411668], [8.479742, 47.411666], [8.479744, 47.411665], [8.479746, 47.411663], [8.479749, 47.411662], [8.479751, 47.411661], [8.479754, 47.41166], [8.479757, 47.411659], [8.480574, 47.411418]]], "type": "MultiLineString"}, "id": "3224", "properties": {}, "type": "Feature"}, {"bbox": [8.569884, 47.349878, 8.571697, 47.350065], "geometry": {"coordinates": [[[8.569884, 47.349987], [8.570115, 47.350053], [8.570183, 47.350061], [8.570251, 47.350065], [8.57032, 47.350064], [8.570389, 47.35006], [8.570456, 47.350051], [8.570556, 47.350012], [8.570652, 47.349969], [8.570745, 47.349924], [8.570784, 47.34991], [8.570825, 47.349899], [8.570867, 47.34989], [8.57091, 47.349883], [8.570953, 47.34988], [8.570997, 47.349878], [8.571041, 47.34988], [8.571085, 47.349884], [8.571128, 47.34989], [8.57117, 47.3499], [8.571348, 47.349951], [8.571523, 47.350004], [8.571697, 47.350061]]], "type": "MultiLineString"}, "id": "3225", "properties": {}, "type": "Feature"}, {"bbox": [8.480574, 47.411188, 8.483549, 47.411495], "geometry": {"coordinates": [[[8.480574, 47.411418], [8.481463, 47.411373], [8.481541, 47.411367], [8.481619, 47.411358], [8.481696, 47.411349], [8.481929, 47.411305], [8.48216, 47.411257], [8.482389, 47.411205], [8.482473, 47.411194], [8.482557, 47.411188], [8.482643, 47.411188], [8.482737, 47.411192], [8.482831, 47.411197], [8.482925, 47.411201], [8.482965, 47.411205], [8.483005, 47.411211], [8.483044, 47.41122], [8.483081, 47.411231], [8.483117, 47.411244], [8.483151, 47.411259], [8.483183, 47.411276], [8.483429, 47.411442], [8.483456, 47.411458], [8.483485, 47.411472], [8.483516, 47.411484], [8.483549, 47.411495]]], "type": "MultiLineString"}, "id": "3227", "properties": {}, "type": "Feature"}, {"bbox": [8.472737, 47.389678, 8.473817, 47.390382], "geometry": {"coordinates": [[[8.473817, 47.390382], [8.473768, 47.39034], [8.473714, 47.390302], [8.473655, 47.390266], [8.473593, 47.390234], [8.473526, 47.390205], [8.473457, 47.390181], [8.473367, 47.390144], [8.47328, 47.390105], [8.473195, 47.390063], [8.473146, 47.390035], [8.473096, 47.390008], [8.473045, 47.38998], [8.472983, 47.389942], [8.472926, 47.3899], [8.472876, 47.389855], [8.472832, 47.389806], [8.472737, 47.389678]]], "type": "MultiLineString"}, "id": "3228", "properties": {}, "type": "Feature"}, {"bbox": [8.595601, 47.365485, 8.598892, 47.365644], "geometry": {"coordinates": [[[8.595601, 47.365485], [8.595658, 47.365486], [8.595715, 47.365491], [8.59577, 47.365497], [8.595824, 47.365505], [8.595878, 47.365512], [8.595932, 47.365518], [8.596003, 47.365526], [8.596075, 47.365535], [8.596146, 47.365544], [8.596242, 47.365556], [8.596339, 47.365567], [8.596435, 47.365578], [8.596451, 47.365579], [8.596468, 47.365581], [8.596484, 47.365582], [8.596509, 47.365585], [8.596534, 47.365587], [8.596559, 47.365588], [8.596578, 47.36559], [8.596597, 47.365593], [8.596616, 47.365596], [8.596641, 47.3656], [8.596666, 47.365603], [8.596691, 47.365605], [8.59671, 47.365606], [8.596729, 47.365607], [8.596747, 47.365608], [8.596774, 47.36561], [8.596801, 47.365611], [8.596828, 47.365613], [8.596918, 47.365619], [8.597008, 47.365625], [8.597098, 47.36563], [8.597184, 47.365634], [8.597269, 47.365638], [8.597355, 47.365641], [8.597405, 47.365643], [8.597454, 47.365644], [8.597504, 47.365644], [8.597504, 47.365644], [8.5978, 47.365643], [8.597882, 47.365641], [8.597964, 47.365638], [8.598045, 47.365633], [8.598105, 47.365629], [8.598164, 47.365625], [8.598224, 47.365621], [8.598256, 47.365619], [8.598288, 47.365618], [8.59832, 47.365617], [8.598363, 47.365616], [8.598407, 47.365615], [8.59845, 47.365614], [8.598471, 47.365614], [8.598491, 47.365615], [8.598512, 47.365616], [8.598544, 47.365618], [8.598578, 47.365619], [8.598611, 47.365618], [8.598621, 47.365618], [8.598631, 47.365619], [8.598641, 47.36562], [8.598892, 47.365641]]], "type": "MultiLineString"}, "id": "3232", "properties": {}, "type": "Feature"}, {"bbox": [8.483994, 47.371609, 8.485674, 47.371988], "geometry": {"coordinates": [[[8.483994, 47.371988], [8.484148, 47.371987], [8.484617, 47.371956], [8.485513, 47.371625], [8.485674, 47.371609]]], "type": "MultiLineString"}, "id": "3233", "properties": {}, "type": "Feature"}, {"bbox": [8.524003, 47.335374, 8.52506, 47.335894], "geometry": {"coordinates": [[[8.52506, 47.335374], [8.524911, 47.335453], [8.524687, 47.335538], [8.524419, 47.335715], [8.524257, 47.335805], [8.524003, 47.335894]]], "type": "MultiLineString"}, "id": "3234", "properties": {}, "type": "Feature"}, {"bbox": [8.524967, 47.427267, 8.530679, 47.428173], "geometry": {"coordinates": [[[8.530679, 47.428096], [8.53067, 47.427833], [8.530652, 47.42771], [8.530646, 47.427697], [8.530638, 47.427684], [8.530628, 47.427672], [8.530617, 47.42766], [8.530604, 47.42765], [8.53059, 47.427639], [8.530575, 47.42763], [8.530558, 47.427622], [8.530541, 47.427615], [8.530523, 47.427609], [8.530504, 47.427604], [8.530484, 47.427601], [8.530088, 47.427576], [8.530019, 47.427571], [8.52995, 47.427564], [8.529881, 47.427553], [8.529528, 47.427486], [8.529176, 47.427414], [8.528826, 47.427338], [8.528698, 47.427313], [8.528567, 47.427297], [8.528434, 47.42729], [8.527929, 47.427303], [8.527769, 47.427303], [8.52761, 47.427298], [8.527452, 47.427289], [8.527451, 47.427289], [8.527184, 47.427274], [8.526965, 47.427267], [8.526746, 47.427269], [8.526527, 47.427281], [8.526439, 47.42729], [8.526351, 47.427305], [8.526266, 47.427324], [8.526184, 47.427348], [8.526105, 47.427376], [8.526029, 47.427409], [8.525923, 47.427462], [8.525823, 47.427521], [8.52573, 47.427585], [8.52513, 47.428027], [8.525013, 47.42812], [8.524996, 47.428137], [8.52498, 47.428154], [8.524967, 47.428173]]], "type": "MultiLineString"}, "id": "3236", "properties": {}, "type": "Feature"}, {"bbox": [8.511701, 47.423793, 8.516978, 47.42549], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.51689, 47.423852], [8.516633, 47.423952], [8.516357, 47.424051], [8.516076, 47.424153], [8.515566, 47.424327], [8.515342, 47.424394], [8.515036, 47.424472], [8.514847, 47.424516], [8.514402, 47.424604], [8.513936, 47.424726], [8.513716, 47.424787], [8.513499, 47.424853], [8.513285, 47.424924], [8.512995, 47.425033], [8.512925, 47.425059], [8.512523, 47.42521], [8.512115, 47.425354], [8.511701, 47.42549]]], "type": "MultiLineString"}, "id": "3237", "properties": {}, "type": "Feature"}, {"bbox": [8.532558, 47.394232, 8.533031, 47.394609], "geometry": {"coordinates": [[[8.532558, 47.394232], [8.532614, 47.394322], [8.532648, 47.394374], [8.532673, 47.394406], [8.532703, 47.394437], [8.532736, 47.394466], [8.532773, 47.394493], [8.532813, 47.394517], [8.532857, 47.39454], [8.532902, 47.394559], [8.53295, 47.394576], [8.533031, 47.394609]]], "type": "MultiLineString"}, "id": "3239", "properties": {}, "type": "Feature"}, {"bbox": [8.538417, 47.36908, 8.539477, 47.36932], "geometry": {"coordinates": [[[8.538417, 47.36932], [8.538717, 47.36908], [8.538782, 47.369109], [8.53885, 47.369133], [8.538922, 47.369154], [8.538996, 47.369169], [8.539301, 47.369209], [8.539477, 47.369206]]], "type": "MultiLineString"}, "id": "3240", "properties": {}, "type": "Feature"}, {"bbox": [8.558896, 47.392813, 8.564621, 47.395301], "geometry": {"coordinates": [[[8.563228, 47.392813], [8.563208, 47.392822], [8.563188, 47.39283], [8.563166, 47.392836], [8.563144, 47.392842], [8.563121, 47.392846], [8.563092, 47.392851], [8.563063, 47.392858], [8.563036, 47.392867], [8.56301, 47.392877], [8.562836, 47.392956], [8.562771, 47.392984], [8.562704, 47.393011], [8.562635, 47.393035], [8.562154, 47.393192], [8.562144, 47.393196], [8.562093, 47.393211], [8.562042, 47.393225], [8.561989, 47.393237], [8.561717, 47.393294], [8.560776, 47.393482], [8.559883, 47.393664], [8.559695, 47.393703], [8.559389, 47.393767], [8.559035, 47.393848], [8.558997, 47.393856], [8.558959, 47.393863], [8.55892, 47.393868], [8.558941, 47.393966], [8.558951, 47.394003], [8.558967, 47.39404], [8.558988, 47.394076], [8.559071, 47.3942], [8.55909, 47.394232], [8.559104, 47.394264], [8.559115, 47.394297], [8.559121, 47.39433], [8.559123, 47.394364], [8.559121, 47.394398], [8.559114, 47.394432], [8.559103, 47.394465], [8.558913, 47.394947], [8.558904, 47.394976], [8.558898, 47.395006], [8.558896, 47.395035], [8.558899, 47.395065], [8.558905, 47.395095], [8.558915, 47.395124], [8.558929, 47.395152], [8.55894, 47.395171], [8.558954, 47.395188], [8.55897, 47.395205], [8.558989, 47.395221], [8.559009, 47.395235], [8.559031, 47.395249], [8.559054, 47.395261], [8.559079, 47.395271], [8.559105, 47.39528], [8.559133, 47.395288], [8.559161, 47.395294], [8.559189, 47.395298], [8.559219, 47.3953], [8.559248, 47.395301], [8.559277, 47.3953], [8.560338, 47.395234], [8.560425, 47.395226], [8.560511, 47.395214], [8.560595, 47.395197], [8.560677, 47.395175], [8.560756, 47.395149], [8.56101, 47.395057], [8.561126, 47.395017], [8.561243, 47.394979], [8.561361, 47.394943], [8.561634, 47.394865], [8.561832, 47.394805], [8.562026, 47.394739], [8.562215, 47.394668], [8.563419, 47.394188], [8.563658, 47.394093], [8.563834, 47.39402], [8.564008, 47.393943], [8.564177, 47.393863], [8.564621, 47.393647]]], "type": "MultiLineString"}, "id": "3249", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.365661, 8.548492, 47.36629], "geometry": {"coordinates": [[[8.547307, 47.365661], [8.547513, 47.365792], [8.547755, 47.365927], [8.548096, 47.36613], [8.548274, 47.36625], [8.548288, 47.366258], [8.548304, 47.366266], [8.548321, 47.366273], [8.548339, 47.366279], [8.548357, 47.366283], [8.548376, 47.366287], [8.548396, 47.366289], [8.548415, 47.36629], [8.548435, 47.36629], [8.548454, 47.366289], [8.548474, 47.366286], [8.548492, 47.366283]]], "type": "MultiLineString"}, "id": "3250", "properties": {}, "type": "Feature"}, {"bbox": [8.544513, 47.369827, 8.547003, 47.370781], "geometry": {"coordinates": [[[8.544513, 47.369827], [8.544846, 47.37011], [8.544866, 47.370127], [8.545037, 47.370206], [8.545692, 47.370418], [8.5459, 47.370507], [8.546681, 47.370733], [8.546842, 47.37078], [8.547003, 47.370781]]], "type": "MultiLineString"}, "id": "3251", "properties": {}, "type": "Feature"}, {"bbox": [8.543837, 47.37011, 8.544846, 47.370367], "geometry": {"coordinates": [[[8.544846, 47.37011], [8.544819, 47.370156], [8.544758, 47.370113], [8.544414, 47.370338], [8.544145, 47.370176], [8.544065, 47.370209], [8.544075, 47.370223], [8.543949, 47.370289], [8.543936, 47.370278], [8.543854, 47.37031], [8.543837, 47.370367]]], "type": "MultiLineString"}, "id": "3254", "properties": {}, "type": "Feature"}, {"bbox": [8.541851, 47.371469, 8.542833, 47.37187], "geometry": {"coordinates": [[[8.542833, 47.371788], [8.542691, 47.371779], [8.542713, 47.371686], [8.542527, 47.371664], [8.542539, 47.371624], [8.542388, 47.37162], [8.542386, 47.371548], [8.542096, 47.371545], [8.542087, 47.371471], [8.54192, 47.371469], [8.541909, 47.371533], [8.541899, 47.371596], [8.542038, 47.371607], [8.542013, 47.37177], [8.54187, 47.371764], [8.541854, 47.371773], [8.541851, 47.37187]]], "type": "MultiLineString"}, "id": "3263", "properties": {}, "type": "Feature"}, {"bbox": [8.517738, 47.41052, 8.521169, 47.412037], "geometry": {"coordinates": [[[8.517738, 47.412037], [8.517955, 47.411958], [8.518303, 47.411827], [8.518569, 47.411724], [8.518933, 47.411569], [8.519539, 47.411276], [8.521067, 47.410539], [8.521075, 47.410535], [8.521082, 47.410531], [8.521091, 47.410528], [8.521099, 47.410526], [8.521108, 47.410523], [8.521117, 47.410522], [8.521126, 47.410521], [8.521136, 47.41052], [8.521145, 47.41052], [8.521155, 47.410521], [8.521164, 47.410522], [8.521169, 47.410523]]], "type": "MultiLineString"}, "id": "3264", "properties": {}, "type": "Feature"}, {"bbox": [8.526025, 47.409676, 8.526336, 47.409919], "geometry": {"coordinates": [[[8.526336, 47.409919], [8.526105, 47.40973], [8.526025, 47.409676]]], "type": "MultiLineString"}, "id": "3266", "properties": {}, "type": "Feature"}, {"bbox": [8.577688, 47.401629, 8.578298, 47.40192], "geometry": {"coordinates": [[[8.577688, 47.40192], [8.577816, 47.401864], [8.578298, 47.401629]]], "type": "MultiLineString"}, "id": "3267", "properties": {}, "type": "Feature"}, {"bbox": [8.484449, 47.380555, 8.484645, 47.380943], "geometry": {"coordinates": [[[8.484645, 47.380943], [8.484635, 47.380917], [8.484609, 47.380873], [8.484584, 47.380829], [8.484558, 47.380785], [8.484524, 47.380707], [8.484488, 47.380631], [8.484449, 47.380555]]], "type": "MultiLineString"}, "id": "3268", "properties": {}, "type": "Feature"}, {"bbox": [8.523731, 47.399226, 8.524539, 47.402202], "geometry": {"coordinates": [[[8.524322, 47.399226], [8.524381, 47.399395], [8.524437, 47.399689], [8.524499, 47.399817], [8.524539, 47.400051], [8.524514, 47.400191], [8.524458, 47.400339], [8.524333, 47.400581], [8.524264, 47.400774], [8.524219, 47.40087], [8.524194, 47.400927], [8.524186, 47.400957], [8.524174, 47.401032], [8.524171, 47.40108], [8.524174, 47.401128], [8.524184, 47.401176], [8.524223, 47.40131], [8.524237, 47.40137], [8.524243, 47.401432], [8.524241, 47.401493], [8.524232, 47.401554], [8.524216, 47.401615], [8.524192, 47.401674], [8.524161, 47.401732], [8.524123, 47.401787], [8.523999, 47.401949], [8.523979, 47.401972], [8.523957, 47.401994], [8.523932, 47.402014], [8.523904, 47.402033], [8.523873, 47.402049], [8.523839, 47.402066], [8.523804, 47.402082], [8.523767, 47.402097], [8.523762, 47.4021], [8.523757, 47.402102], [8.523752, 47.402105], [8.523748, 47.402108], [8.523744, 47.402112], [8.523741, 47.402115], [8.523738, 47.402119], [8.523736, 47.402123], [8.523734, 47.402127], [8.523732, 47.402131], [8.523732, 47.402135], [8.523731, 47.40214], [8.523732, 47.402144], [8.523732, 47.402148], [8.523734, 47.402152], [8.523736, 47.402156], [8.523738, 47.40216], [8.523766, 47.402202]]], "type": "MultiLineString"}, "id": "3271", "properties": {}, "type": "Feature"}, {"bbox": [8.531561, 47.366027, 8.532479, 47.366727], "geometry": {"coordinates": [[[8.532479, 47.366027], [8.532349, 47.366127], [8.532104, 47.366419], [8.53204, 47.366463], [8.531913, 47.366612], [8.531872, 47.366655], [8.531795, 47.366727], [8.531561, 47.366725]]], "type": "MultiLineString"}, "id": "3272", "properties": {}, "type": "Feature"}, {"bbox": [8.589244, 47.400718, 8.592402, 47.405435], "geometry": {"coordinates": [[[8.589244, 47.400718], [8.589326, 47.4008], [8.58936, 47.400838], [8.58938, 47.40088], [8.589389, 47.400913], [8.589396, 47.400941], [8.589657, 47.401354], [8.589972, 47.401837], [8.590306, 47.402375], [8.590528, 47.402718], [8.590555, 47.402769], [8.590746, 47.403084], [8.59127, 47.403916], [8.591716, 47.404626], [8.591772, 47.404701], [8.59183, 47.404774], [8.591892, 47.404847], [8.592018, 47.404834], [8.592039, 47.404831], [8.59206, 47.40483], [8.592082, 47.404829], [8.592104, 47.40483], [8.592125, 47.404833], [8.592146, 47.404836], [8.592167, 47.404841], [8.592187, 47.404846], [8.592206, 47.404853], [8.592224, 47.404861], [8.592241, 47.404871], [8.592257, 47.404881], [8.592271, 47.404892], [8.592284, 47.404903], [8.592324, 47.404945], [8.592358, 47.404989], [8.592386, 47.405034], [8.592392, 47.405047], [8.592397, 47.40506], [8.5924, 47.405073], [8.592402, 47.405087], [8.592402, 47.4051], [8.5924, 47.405113], [8.592396, 47.405127], [8.59239, 47.405139], [8.592383, 47.405152], [8.592377, 47.40516], [8.592371, 47.405168], [8.592363, 47.405176], [8.592212, 47.405324], [8.592287, 47.405435]]], "type": "MultiLineString"}, "id": "3273", "properties": {}, "type": "Feature"}, {"bbox": [8.498081, 47.402085, 8.498684, 47.402693], "geometry": {"coordinates": [[[8.498684, 47.402085], [8.498672, 47.402095], [8.498662, 47.402107], [8.498653, 47.402118], [8.498645, 47.402131], [8.498639, 47.402143], [8.498635, 47.402156], [8.498632, 47.40217], [8.498611, 47.402302], [8.498611, 47.402307], [8.498611, 47.402311], [8.49861, 47.402316], [8.498608, 47.402321], [8.498606, 47.402326], [8.498603, 47.402331], [8.4986, 47.402335], [8.498596, 47.402339], [8.498591, 47.402343], [8.498586, 47.402347], [8.498581, 47.40235], [8.498575, 47.402353], [8.498569, 47.402356], [8.498562, 47.402358], [8.498556, 47.40236], [8.498549, 47.402362], [8.498406, 47.402392], [8.498392, 47.402395], [8.498379, 47.402399], [8.498366, 47.402403], [8.498354, 47.402409], [8.498342, 47.402415], [8.498332, 47.402422], [8.498322, 47.402429], [8.498169, 47.402584], [8.498136, 47.402619], [8.498107, 47.402655], [8.498081, 47.402693]]], "type": "MultiLineString"}, "id": "3276", "properties": {}, "type": "Feature"}, {"bbox": [8.509307, 47.408515, 8.510025, 47.409119], "geometry": {"coordinates": [[[8.509307, 47.408515], [8.509447, 47.408605], [8.50979, 47.408869], [8.509866, 47.408924], [8.510025, 47.409119]]], "type": "MultiLineString"}, "id": "3277", "properties": {}, "type": "Feature"}, {"bbox": [8.582731, 47.382201, 8.584779, 47.383704], "geometry": {"coordinates": [[[8.584779, 47.382251], [8.584682, 47.382265], [8.584551, 47.382229], [8.584502, 47.382217], [8.584451, 47.382209], [8.5844, 47.382203], [8.584348, 47.382201], [8.584296, 47.382202], [8.584244, 47.382205], [8.584193, 47.382213], [8.584144, 47.382223], [8.584095, 47.382236], [8.584049, 47.382252], [8.583657, 47.382404], [8.583253, 47.382552], [8.582923, 47.382681], [8.582895, 47.382694], [8.582868, 47.382708], [8.582843, 47.382723], [8.582821, 47.38274], [8.5828, 47.382758], [8.582782, 47.382777], [8.582767, 47.382797], [8.582754, 47.382818], [8.582744, 47.38284], [8.582737, 47.382862], [8.582732, 47.382885], [8.582731, 47.382908], [8.582733, 47.38293], [8.582737, 47.382953], [8.582744, 47.382975], [8.582754, 47.382997], [8.582767, 47.383018], [8.582783, 47.383038], [8.582966, 47.383253], [8.582979, 47.383267], [8.582995, 47.383281], [8.583012, 47.383294], [8.583031, 47.383306], [8.583052, 47.383317], [8.583073, 47.383327], [8.583096, 47.383335], [8.58323, 47.38338], [8.583355, 47.383424], [8.583477, 47.383471], [8.583597, 47.38352], [8.583908, 47.383654], [8.583939, 47.383666], [8.583973, 47.383676], [8.584007, 47.383684], [8.584042, 47.383691], [8.584078, 47.383695], [8.584198, 47.383704]]], "type": "MultiLineString"}, "id": "3278", "properties": {}, "type": "Feature"}, {"bbox": [8.512646, 47.34467, 8.517983, 47.353227], "geometry": {"coordinates": [[[8.517983, 47.353227], [8.517894, 47.353066], [8.517841, 47.353002], [8.517794, 47.352936], [8.517752, 47.352869], [8.517699, 47.352775], [8.517649, 47.35268], [8.5176, 47.352585], [8.517567, 47.352527], [8.517527, 47.352471], [8.517479, 47.352417], [8.517425, 47.352366], [8.517365, 47.352319], [8.516634, 47.351735], [8.516583, 47.351697], [8.516527, 47.351662], [8.516467, 47.35163], [8.516403, 47.351602], [8.516403, 47.351602], [8.516402, 47.351602], [8.516372, 47.351591], [8.516343, 47.351578], [8.516316, 47.351563], [8.516291, 47.351547], [8.516268, 47.35153], [8.516268, 47.35153], [8.516268, 47.35153], [8.516215, 47.351483], [8.51617, 47.351433], [8.516131, 47.35138], [8.5161, 47.351324], [8.5161, 47.351324], [8.515987, 47.351154], [8.51598, 47.351137], [8.515974, 47.351119], [8.515972, 47.3511], [8.515972, 47.351082], [8.516105, 47.350399], [8.516108, 47.350384], [8.516109, 47.350369], [8.516108, 47.350353], [8.516105, 47.350338], [8.5161, 47.350323], [8.516093, 47.350308], [8.516085, 47.350294], [8.516084, 47.350293], [8.516084, 47.350293], [8.516043, 47.350241], [8.516001, 47.350189], [8.515959, 47.350137], [8.515647, 47.349566], [8.515627, 47.349532], [8.515439, 47.349201], [8.515401, 47.349131], [8.515385, 47.349101], [8.515361, 47.349059], [8.515322, 47.348983], [8.515284, 47.348906], [8.51525, 47.348829], [8.515227, 47.348774], [8.515084, 47.348417], [8.51506, 47.348345], [8.515046, 47.348273], [8.515041, 47.3482], [8.515042, 47.347975], [8.51504, 47.347949], [8.515035, 47.347924], [8.515027, 47.347899], [8.515016, 47.347875], [8.515002, 47.347851], [8.514985, 47.347829], [8.514965, 47.347807], [8.514943, 47.347787], [8.514787, 47.347658], [8.514777, 47.347649], [8.514769, 47.34764], [8.514761, 47.34763], [8.514756, 47.34762], [8.514751, 47.347609], [8.514748, 47.347598], [8.514746, 47.347587], [8.514746, 47.347576], [8.514747, 47.347565], [8.51475, 47.347554], [8.514754, 47.347544], [8.514759, 47.347533], [8.514766, 47.347523], [8.514774, 47.347514], [8.514783, 47.347504], [8.514794, 47.347496], [8.514926, 47.347399], [8.514935, 47.347391], [8.514944, 47.347383], [8.514952, 47.347374], [8.514958, 47.347365], [8.514963, 47.347355], [8.514967, 47.347346], [8.51497, 47.347336], [8.514971, 47.347326], [8.514972, 47.347316], [8.51497, 47.347306], [8.514968, 47.347296], [8.514965, 47.347286], [8.51496, 47.347276], [8.514954, 47.347267], [8.514947, 47.347258], [8.514939, 47.34725], [8.514929, 47.347242], [8.514919, 47.347235], [8.514908, 47.347228], [8.514419, 47.346956], [8.514348, 47.346914], [8.514284, 47.346866], [8.514225, 47.346816], [8.514174, 47.346761], [8.51413, 47.346704], [8.514023, 47.346548], [8.513986, 47.34649], [8.513936, 47.346414], [8.513922, 47.346401], [8.513866, 47.346346], [8.513816, 47.346288], [8.513773, 47.346228], [8.513705, 47.346124], [8.513641, 47.346018], [8.513582, 47.345911], [8.513428, 47.345617], [8.513278, 47.345372], [8.513278, 47.345372], [8.513278, 47.345372], [8.513251, 47.345334], [8.513219, 47.345299], [8.513182, 47.345265], [8.51314, 47.345234], [8.513095, 47.345206], [8.512973, 47.345137], [8.512959, 47.345129], [8.512946, 47.345119], [8.512935, 47.345109], [8.512925, 47.345099], [8.512917, 47.345087], [8.512696, 47.344746], [8.512646, 47.34467]]], "type": "MultiLineString"}, "id": "3281", "properties": {}, "type": "Feature"}, {"bbox": [8.546729, 47.372075, 8.547325, 47.372926], "geometry": {"coordinates": [[[8.546883, 47.372885], [8.547078, 47.372926], [8.547325, 47.372301], [8.547324, 47.372153], [8.546976, 47.372075], [8.546729, 47.372207], [8.546959, 47.372555], [8.54689, 47.372572]]], "type": "MultiLineString"}, "id": "3286", "properties": {}, "type": "Feature"}, {"bbox": [8.484926, 47.386266, 8.485576, 47.387068], "geometry": {"coordinates": [[[8.484926, 47.386266], [8.485365, 47.386664], [8.485576, 47.387068]]], "type": "MultiLineString"}, "id": "3289", "properties": {}, "type": "Feature"}, {"bbox": [8.504709, 47.346206, 8.509313, 47.351929], "geometry": {"coordinates": [[[8.504806, 47.351929], [8.504894, 47.351726], [8.504896, 47.351724], [8.5049, 47.351719], [8.504903, 47.351713], [8.504906, 47.351707], [8.504908, 47.351701], [8.50491, 47.351694], [8.50491, 47.351688], [8.50491, 47.351688], [8.50491, 47.351687], [8.504907, 47.351655], [8.5049, 47.351624], [8.50489, 47.351593], [8.50489, 47.351592], [8.504831, 47.351453], [8.504746, 47.351368], [8.504735, 47.351355], [8.504726, 47.351341], [8.504719, 47.351327], [8.504713, 47.351308], [8.50471, 47.351289], [8.504709, 47.351269], [8.504711, 47.35125], [8.504715, 47.351231], [8.504721, 47.351212], [8.50473, 47.351193], [8.504766, 47.351131], [8.504805, 47.35107], [8.504846, 47.35101], [8.504977, 47.350817], [8.505024, 47.350753], [8.505075, 47.35069], [8.505131, 47.350629], [8.505139, 47.350621], [8.505164, 47.350599], [8.505192, 47.350579], [8.505222, 47.350561], [8.505255, 47.350544], [8.50529, 47.35053], [8.505326, 47.350517], [8.505671, 47.350416], [8.505691, 47.350409], [8.50571, 47.350401], [8.505729, 47.350392], [8.505746, 47.350382], [8.505761, 47.350371], [8.505775, 47.350359], [8.505936, 47.350222], [8.505937, 47.350222], [8.505955, 47.350203], [8.50597, 47.350184], [8.505983, 47.350164], [8.505994, 47.350143], [8.506193, 47.349691], [8.506207, 47.34966], [8.506163, 47.349525], [8.506157, 47.349478], [8.506157, 47.349431], [8.506165, 47.349384], [8.506178, 47.349338], [8.506199, 47.349293], [8.506232, 47.34923], [8.506248, 47.349202], [8.506269, 47.349175], [8.506292, 47.34915], [8.50632, 47.349126], [8.50655, 47.348941], [8.50657, 47.348924], [8.506587, 47.348905], [8.506602, 47.348886], [8.506614, 47.348865], [8.506623, 47.348844], [8.506629, 47.348822], [8.506633, 47.348801], [8.506643, 47.348679], [8.506652, 47.34862], [8.506667, 47.348562], [8.506689, 47.348505], [8.50681, 47.348241], [8.506827, 47.348205], [8.506847, 47.348171], [8.506868, 47.348137], [8.506898, 47.348093], [8.506935, 47.348034], [8.506968, 47.347974], [8.506996, 47.347912], [8.507063, 47.347751], [8.507103, 47.347639], [8.507112, 47.347619], [8.507124, 47.3476], [8.507138, 47.347581], [8.507154, 47.347563], [8.507173, 47.347547], [8.507262, 47.347476], [8.507298, 47.347444], [8.50733, 47.347411], [8.507357, 47.347376], [8.50738, 47.347339], [8.507397, 47.347301], [8.507439, 47.347195], [8.507445, 47.347176], [8.507449, 47.347157], [8.50745, 47.347137], [8.507448, 47.347118], [8.507444, 47.347099], [8.507437, 47.34708], [8.507428, 47.347062], [8.507417, 47.347044], [8.507323, 47.346916], [8.507307, 47.346891], [8.507294, 47.346866], [8.507285, 47.34684], [8.507279, 47.346814], [8.507276, 47.346787], [8.507278, 47.34676], [8.507282, 47.346734], [8.50729, 47.346708], [8.507384, 47.346694], [8.507445, 47.346684], [8.507506, 47.346672], [8.507566, 47.346659], [8.50824, 47.346499], [8.508923, 47.346334], [8.50897, 47.346321], [8.509017, 47.346308], [8.509062, 47.346293], [8.509313, 47.346206]]], "type": "MultiLineString"}, "id": "3290", "properties": {}, "type": "Feature"}, {"bbox": [8.531052, 47.421916, 8.533545, 47.423463], "geometry": {"coordinates": [[[8.531052, 47.421916], [8.531149, 47.422043], [8.531171, 47.422083], [8.531189, 47.422124], [8.531203, 47.422165], [8.531219, 47.422239], [8.531224, 47.422313], [8.531219, 47.422387], [8.531192, 47.42256], [8.531178, 47.422635], [8.531158, 47.422708], [8.531131, 47.422782], [8.531126, 47.422801], [8.531124, 47.42282], [8.531125, 47.422839], [8.531128, 47.422859], [8.531134, 47.422877], [8.531142, 47.422896], [8.531152, 47.422914], [8.531184, 47.422948], [8.531219, 47.42298], [8.531259, 47.42301], [8.531302, 47.423037], [8.531348, 47.423062], [8.531348, 47.423062], [8.531395, 47.42308], [8.531445, 47.423097], [8.531495, 47.42311], [8.531678, 47.423148], [8.531702, 47.423152], [8.531725, 47.423158], [8.531748, 47.423165], [8.531769, 47.423174], [8.531769, 47.423174], [8.531798, 47.423186], [8.531828, 47.423197], [8.53186, 47.423206], [8.531892, 47.423213], [8.531925, 47.423218], [8.531959, 47.423222], [8.532038, 47.423232], [8.532117, 47.423244], [8.532194, 47.423258], [8.532257, 47.423265], [8.532319, 47.423271], [8.532382, 47.423275], [8.532423, 47.42328], [8.532463, 47.423286], [8.532503, 47.423294], [8.532564, 47.423308], [8.532626, 47.423321], [8.532688, 47.423331], [8.532746, 47.423337], [8.532805, 47.423342], [8.532864, 47.423345], [8.532934, 47.423359], [8.533002, 47.423377], [8.533068, 47.423397], [8.533085, 47.423402], [8.533103, 47.423405], [8.533122, 47.423407], [8.53314, 47.423408], [8.533159, 47.423408], [8.533177, 47.423407], [8.533224, 47.423406], [8.53327, 47.423408], [8.533317, 47.423412], [8.533362, 47.42342], [8.533374, 47.423422], [8.533386, 47.423425], [8.533398, 47.423428], [8.533545, 47.423463]]], "type": "MultiLineString"}, "id": "3292", "properties": {}, "type": "Feature"}, {"bbox": [8.5515, 47.417203, 8.553042, 47.41863], "geometry": {"coordinates": [[[8.551886, 47.417203], [8.5515, 47.417377], [8.552305, 47.418259], [8.55265, 47.41863], [8.553042, 47.418485]]], "type": "MultiLineString"}, "id": "3293", "properties": {}, "type": "Feature"}, {"bbox": [8.510588, 47.340599, 8.513482, 47.352667], "geometry": {"coordinates": [[[8.511914, 47.352667], [8.511919, 47.352628], [8.51196, 47.352343], [8.511999, 47.352079], [8.512015, 47.352025], [8.512037, 47.351973], [8.512066, 47.351922], [8.512102, 47.351874], [8.512144, 47.351827], [8.512192, 47.351784], [8.512246, 47.351743], [8.512304, 47.351706], [8.512368, 47.351673], [8.512435, 47.351643], [8.513171, 47.351308], [8.513225, 47.351276], [8.513274, 47.35124], [8.513319, 47.351202], [8.513359, 47.351162], [8.513394, 47.351119], [8.513424, 47.351074], [8.513447, 47.351028], [8.513465, 47.350981], [8.513476, 47.350932], [8.513482, 47.350884], [8.513481, 47.350835], [8.513465, 47.350776], [8.51344, 47.350718], [8.513407, 47.350663], [8.513367, 47.350609], [8.513319, 47.350559], [8.512823, 47.350053], [8.512673, 47.349899], [8.512607, 47.349828], [8.512551, 47.349754], [8.512505, 47.349676], [8.51247, 47.349596], [8.51231, 47.349198], [8.512291, 47.349153], [8.51202, 47.348528], [8.511996, 47.348481], [8.511965, 47.348436], [8.511928, 47.348394], [8.511885, 47.348354], [8.51179, 47.348274], [8.511734, 47.348221], [8.511685, 47.348165], [8.511646, 47.348105], [8.511566, 47.347969], [8.511545, 47.347936], [8.511521, 47.347905], [8.511494, 47.347874], [8.511235, 47.347603], [8.511222, 47.347589], [8.51121, 47.347574], [8.511199, 47.347559], [8.511182, 47.347529], [8.511169, 47.347499], [8.51116, 47.347468], [8.511157, 47.347447], [8.511156, 47.347427], [8.511156, 47.347406], [8.511171, 47.347171], [8.51123, 47.346701], [8.511267, 47.346373], [8.511321, 47.345971], [8.511325, 47.345925], [8.511324, 47.34588], [8.511318, 47.345834], [8.511305, 47.345789], [8.511305, 47.345789], [8.510842, 47.344524], [8.510816, 47.344451], [8.510785, 47.344379], [8.510751, 47.344308], [8.51075, 47.344308], [8.51075, 47.344307], [8.510718, 47.344255], [8.510684, 47.344202], [8.51065, 47.34415], [8.510615, 47.344089], [8.510604, 47.34407], [8.510596, 47.344051], [8.510591, 47.344031], [8.510588, 47.344011], [8.510588, 47.343992], [8.510591, 47.343969], [8.510597, 47.343947], [8.510606, 47.343925], [8.51062, 47.3439], [8.510637, 47.343876], [8.510657, 47.343853], [8.51068, 47.343831], [8.510987, 47.343621], [8.51101, 47.343604], [8.511031, 47.343586], [8.511049, 47.343566], [8.511065, 47.343546], [8.511078, 47.343525], [8.511381, 47.342977], [8.511547, 47.342679], [8.511655, 47.34247], [8.511747, 47.342257], [8.511822, 47.342041], [8.511867, 47.341939], [8.51192, 47.341839], [8.511982, 47.341741], [8.511994, 47.341724], [8.512009, 47.341704], [8.51219, 47.341449], [8.512235, 47.341391], [8.512285, 47.341325], [8.51233, 47.341275], [8.512403, 47.341198], [8.512521, 47.341071], [8.512613, 47.340981], [8.512632, 47.340955], [8.512739, 47.340807], [8.512816, 47.340681], [8.512856, 47.340599]]], "type": "MultiLineString"}, "id": "3297", "properties": {}, "type": "Feature"}, {"bbox": [8.536276, 47.377556, 8.536592, 47.377944], "geometry": {"coordinates": [[[8.536276, 47.377556], [8.536592, 47.377944]]], "type": "MultiLineString"}, "id": "3300", "properties": {}, "type": "Feature"}, {"bbox": [8.579266, 47.367251, 8.599604, 47.374595], "geometry": {"coordinates": [[[8.579742, 47.374595], [8.579559, 47.374402], [8.579331, 47.374164], [8.579266, 47.374059], [8.579278, 47.373946], [8.579405, 47.373655], [8.579435, 47.373588], [8.579595, 47.373233], [8.579615, 47.373194], [8.57964, 47.373156], [8.579669, 47.37312], [8.580137, 47.372648], [8.580192, 47.372585], [8.580243, 47.372522], [8.580291, 47.372457], [8.580714, 47.371844], [8.58099, 47.37153], [8.581293, 47.3712], [8.581481, 47.370992], [8.58166, 47.370808], [8.581719, 47.370751], [8.581876, 47.370629], [8.581972, 47.370556], [8.582058, 47.370479], [8.582136, 47.370397], [8.58222, 47.370305], [8.58231, 47.370215], [8.582406, 47.370128], [8.582481, 47.37007], [8.582556, 47.370012], [8.582632, 47.369954], [8.58272, 47.369885], [8.582798, 47.369812], [8.582868, 47.369734], [8.582928, 47.369653], [8.582977, 47.369569], [8.582996, 47.369543], [8.583018, 47.369518], [8.583043, 47.369495], [8.583072, 47.369474], [8.583103, 47.369454], [8.583379, 47.369329], [8.583553, 47.369252], [8.583609, 47.369224], [8.583661, 47.369194], [8.58371, 47.36916], [8.583754, 47.369124], [8.583794, 47.369086], [8.583821, 47.369058], [8.583851, 47.369031], [8.583883, 47.369006], [8.583937, 47.368972], [8.583982, 47.368945], [8.584031, 47.36892], [8.584083, 47.368899], [8.584138, 47.368881], [8.584194, 47.368866], [8.584279, 47.368843], [8.584361, 47.368816], [8.584439, 47.368784], [8.584513, 47.368748], [8.585145, 47.368414], [8.58559, 47.368178], [8.585701, 47.368126], [8.585818, 47.36808], [8.585941, 47.368043], [8.586068, 47.368012], [8.586199, 47.36799], [8.586935, 47.367885], [8.587041, 47.367876], [8.587147, 47.367873], [8.587253, 47.367876], [8.587358, 47.367885], [8.587461, 47.367901], [8.587623, 47.367922], [8.587786, 47.367937], [8.587951, 47.367946], [8.588832, 47.367966], [8.589837, 47.367987], [8.589967, 47.367991], [8.590098, 47.36799], [8.590228, 47.367983], [8.590373, 47.367973], [8.591747, 47.36771], [8.592038, 47.367663], [8.592462, 47.367621], [8.592614, 47.367601], [8.592715, 47.367583], [8.592813, 47.36756], [8.592908, 47.367532], [8.593, 47.367498], [8.593259, 47.367371], [8.593307, 47.367347], [8.593359, 47.367326], [8.593412, 47.367307], [8.593491, 47.367286], [8.593573, 47.367269], [8.593657, 47.367259], [8.59377, 47.367251], [8.593884, 47.367251], [8.593997, 47.367258], [8.594092, 47.367268], [8.594186, 47.367277], [8.594281, 47.367287], [8.594371, 47.367299], [8.59446, 47.367316], [8.594546, 47.367338], [8.595229, 47.367532], [8.595296, 47.367551], [8.595362, 47.367569], [8.595428, 47.367589], [8.595428, 47.367589], [8.595428, 47.367589], [8.595526, 47.367621], [8.595622, 47.367656], [8.595715, 47.367694], [8.595927, 47.367791], [8.596005, 47.36783], [8.596086, 47.367865], [8.59617, 47.367898], [8.596209, 47.367912], [8.59625, 47.367925], [8.596291, 47.367935], [8.596326, 47.367943], [8.596359, 47.367949], [8.596392, 47.367956], [8.596426, 47.367962], [8.596459, 47.367968], [8.596492, 47.367973], [8.596525, 47.367979], [8.597445, 47.368108], [8.597536, 47.368123], [8.597627, 47.36814], [8.597717, 47.368157], [8.597817, 47.368179], [8.597916, 47.368203], [8.598015, 47.368228], [8.598015, 47.368228], [8.598052, 47.368238], [8.59912, 47.368545], [8.599213, 47.368575], [8.599302, 47.36861], [8.599386, 47.368649], [8.599466, 47.368693], [8.59954, 47.368741], [8.599604, 47.368786]]], "type": "MultiLineString"}, "id": "3301", "properties": {}, "type": "Feature"}, {"bbox": [8.532453, 47.337715, 8.534581, 47.34071], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.53254, 47.340599], [8.532851, 47.340189], [8.532864, 47.340128], [8.532969, 47.339854], [8.533285, 47.339352], [8.533484, 47.338919], [8.533662, 47.338666], [8.534158, 47.338157], [8.534559, 47.337787], [8.534581, 47.337715]]], "type": "MultiLineString"}, "id": "3303", "properties": {}, "type": "Feature"}, {"bbox": [8.540961, 47.372128, 8.541363, 47.372273], "geometry": {"coordinates": [[[8.541363, 47.372273], [8.541043, 47.372241], [8.540989, 47.372157], [8.540961, 47.372128]]], "type": "MultiLineString"}, "id": "3306", "properties": {}, "type": "Feature"}, {"bbox": [8.507589, 47.397638, 8.508116, 47.3981], "geometry": {"coordinates": [[[8.507589, 47.397638], [8.507689, 47.397702], [8.508116, 47.3981]]], "type": "MultiLineString"}, "id": "3308", "properties": {}, "type": "Feature"}, {"bbox": [8.53775, 47.412926, 8.538275, 47.416931], "geometry": {"coordinates": [[[8.53775, 47.412926], [8.537874, 47.413668], [8.537893, 47.413786], [8.537966, 47.414378], [8.53802, 47.414821], [8.538022, 47.414839], [8.53805, 47.415064], [8.538074, 47.415263], [8.538107, 47.41553], [8.538152, 47.415913], [8.538218, 47.416462], [8.538275, 47.416931]]], "type": "MultiLineString"}, "id": "3309", "properties": {}, "type": "Feature"}, {"bbox": [8.487015, 47.352622, 8.488552, 47.353951], "geometry": {"coordinates": [[[8.488552, 47.352864], [8.488532, 47.352873], [8.48851, 47.352881], [8.488488, 47.352887], [8.488465, 47.352892], [8.488442, 47.352895], [8.488418, 47.352898], [8.488394, 47.352898], [8.48837, 47.352898], [8.488346, 47.352896], [8.488322, 47.352893], [8.488299, 47.352888], [8.488277, 47.352882], [8.488256, 47.352874], [8.488235, 47.352866], [8.488216, 47.352856], [8.488198, 47.352845], [8.488181, 47.352833], [8.488166, 47.352821], [8.488153, 47.352807], [8.488141, 47.352793], [8.488131, 47.352778], [8.488011, 47.352622], [8.487991, 47.352627], [8.487972, 47.352634], [8.487954, 47.352642], [8.487937, 47.352651], [8.487921, 47.352661], [8.487906, 47.352672], [8.487894, 47.352683], [8.487882, 47.352696], [8.487873, 47.352709], [8.487866, 47.35273], [8.487861, 47.352752], [8.487859, 47.352774], [8.48786, 47.352796], [8.487864, 47.352817], [8.48787, 47.352839], [8.487877, 47.352862], [8.487887, 47.352884], [8.4879, 47.352906], [8.487907, 47.352923], [8.487912, 47.352939], [8.487915, 47.352956], [8.487915, 47.352973], [8.487914, 47.352989], [8.48791, 47.353005], [8.487904, 47.35302], [8.487897, 47.353035], [8.487779, 47.353197], [8.487563, 47.353493], [8.487509, 47.353562], [8.487399, 47.353695], [8.487291, 47.353811], [8.487261, 47.353834], [8.487229, 47.353855], [8.487194, 47.353876], [8.487161, 47.353893], [8.487126, 47.353908], [8.487089, 47.353922], [8.487015, 47.353951]]], "type": "MultiLineString"}, "id": "3314", "properties": {}, "type": "Feature"}, {"bbox": [8.602469, 47.354253, 8.624578, 47.360272], "geometry": {"coordinates": [[[8.602469, 47.359326], [8.602749, 47.359359], [8.603537, 47.359496], [8.60385, 47.359554], [8.604445, 47.359698], [8.604747, 47.35976], [8.604891, 47.359794], [8.604927, 47.359802], [8.604963, 47.35981], [8.604999, 47.359818], [8.605118, 47.359844], [8.605238, 47.359869], [8.605358, 47.359892], [8.605411, 47.359903], [8.605464, 47.359913], [8.605516, 47.359924], [8.605577, 47.359934], [8.605638, 47.359943], [8.6057, 47.359948], [8.60583, 47.359956], [8.60596, 47.359962], [8.606091, 47.359966], [8.606166, 47.35997], [8.606241, 47.359977], [8.606315, 47.359987], [8.60646, 47.360012], [8.606604, 47.360039], [8.606748, 47.360067], [8.606831, 47.360084], [8.606914, 47.3601], [8.606998, 47.360116], [8.60707, 47.360128], [8.607143, 47.36014], [8.607215, 47.360152], [8.607325, 47.360166], [8.607434, 47.360178], [8.607545, 47.360187], [8.607545, 47.360187], [8.608125, 47.360228], [8.608126, 47.360228], [8.608629, 47.360255], [8.609058, 47.360272], [8.609311, 47.360271], [8.610004, 47.360236], [8.610234, 47.360221], [8.610259, 47.360218], [8.61031, 47.360211], [8.610513, 47.360187], [8.61087, 47.360126], [8.61112, 47.360084], [8.611329, 47.360045], [8.61142, 47.360028], [8.611457, 47.360012], [8.612159, 47.359883], [8.612668, 47.359732], [8.612864, 47.359629], [8.612955, 47.359593], [8.613155, 47.359552], [8.613809, 47.359454], [8.614086, 47.3594], [8.614389, 47.359324], [8.614541, 47.359262], [8.614706, 47.359133], [8.614859, 47.359012], [8.615168, 47.358813], [8.615323, 47.358745], [8.615811, 47.358593], [8.615956, 47.358522], [8.616171, 47.358423], [8.616214, 47.358402], [8.616254, 47.35838], [8.616291, 47.358355], [8.616325, 47.358329], [8.616448, 47.358246], [8.616466, 47.358234], [8.616485, 47.358224], [8.616505, 47.358214], [8.616527, 47.358206], [8.616549, 47.3582], [8.616573, 47.358194], [8.616597, 47.35819], [8.616621, 47.358188], [8.616897, 47.358162], [8.616939, 47.35816], [8.616981, 47.358155], [8.617023, 47.358148], [8.617063, 47.358138], [8.617102, 47.358126], [8.61714, 47.358112], [8.617176, 47.358097], [8.617209, 47.358079], [8.617341, 47.358003], [8.617484, 47.357935], [8.617719, 47.357834], [8.618019, 47.357752], [8.618175, 47.357743], [8.618441, 47.357691], [8.618525, 47.357661], [8.618792, 47.357559], [8.618886, 47.357521], [8.618906, 47.357513], [8.618972, 47.357489], [8.619039, 47.357467], [8.619108, 47.357448], [8.619178, 47.357432], [8.61925, 47.357418], [8.619323, 47.357408], [8.619584, 47.357375], [8.619985, 47.357316], [8.619985, 47.357316], [8.620023, 47.357309], [8.620059, 47.3573], [8.620095, 47.357289], [8.620128, 47.357276], [8.620194, 47.357245], [8.620255, 47.357211], [8.620312, 47.357173], [8.620364, 47.357132], [8.620411, 47.357089], [8.62043, 47.357067], [8.620446, 47.357044], [8.62046, 47.35702], [8.620469, 47.356996], [8.620476, 47.356971], [8.620479, 47.356946], [8.620479, 47.35692], [8.620473, 47.356834], [8.620459, 47.356641], [8.620458, 47.356611], [8.620458, 47.35658], [8.62046, 47.35655], [8.62046, 47.356545], [8.620461, 47.35654], [8.620461, 47.356535], [8.620468, 47.356494], [8.62048, 47.356454], [8.620499, 47.356415], [8.620522, 47.356377], [8.62057, 47.356312], [8.62062, 47.356247], [8.620672, 47.356183], [8.62073, 47.35612], [8.620794, 47.35606], [8.620865, 47.356003], [8.62092, 47.355962], [8.620974, 47.35592], [8.621026, 47.355877], [8.621075, 47.355837], [8.621123, 47.355798], [8.621172, 47.355758], [8.621209, 47.355728], [8.621244, 47.355697], [8.621278, 47.355666], [8.621305, 47.355643], [8.621333, 47.355621], [8.621364, 47.355601], [8.621431, 47.355563], [8.621501, 47.355528], [8.621575, 47.355497], [8.62163, 47.355475], [8.621685, 47.355454], [8.62174, 47.355433], [8.621793, 47.355411], [8.621844, 47.355386], [8.621893, 47.35536], [8.621942, 47.355331], [8.621989, 47.355301], [8.622035, 47.35527], [8.62205, 47.35526], [8.622065, 47.355251], [8.622081, 47.355241], [8.622108, 47.355227], [8.622145, 47.355208], [8.622185, 47.355191], [8.622226, 47.355176], [8.622297, 47.355151], [8.622367, 47.355126], [8.622437, 47.3551], [8.622561, 47.355054], [8.622685, 47.355008], [8.622811, 47.354964], [8.622953, 47.354914], [8.623093, 47.354861], [8.623231, 47.354805], [8.6233, 47.354777], [8.623369, 47.35475], [8.623439, 47.354723], [8.623601, 47.354661], [8.623629, 47.35465], [8.623655, 47.354638], [8.62368, 47.354624], [8.623745, 47.354586], [8.623811, 47.354548], [8.623877, 47.354511], [8.623951, 47.354469], [8.624026, 47.354427], [8.6241, 47.354385], [8.624195, 47.354327], [8.624218, 47.354319], [8.624242, 47.354312], [8.624267, 47.354307], [8.624293, 47.354303], [8.624319, 47.354301], [8.624358, 47.354299], [8.624396, 47.354295], [8.624435, 47.35429], [8.624484, 47.354281], [8.624532, 47.354268], [8.624578, 47.354253]]], "type": "MultiLineString"}, "id": "3317", "properties": {}, "type": "Feature"}, {"bbox": [8.505215, 47.406709, 8.506406, 47.407492], "geometry": {"coordinates": [[[8.505517, 47.406709], [8.505586, 47.406804], [8.505448, 47.406848], [8.505496, 47.406856], [8.505543, 47.406866], [8.505589, 47.406879], [8.505598, 47.406882], [8.505606, 47.406886], [8.505613, 47.40689], [8.505621, 47.406895], [8.505627, 47.4069], [8.505633, 47.406906], [8.505638, 47.406912], [8.505642, 47.406918], [8.505645, 47.406924], [8.505648, 47.406931], [8.505649, 47.406937], [8.50565, 47.406944], [8.50565, 47.406951], [8.505649, 47.406958], [8.505647, 47.406964], [8.505644, 47.406971], [8.505641, 47.406977], [8.505636, 47.406983], [8.505631, 47.406989], [8.505625, 47.406995], [8.505619, 47.407], [8.505612, 47.407004], [8.505604, 47.407009], [8.505596, 47.407012], [8.505587, 47.407016], [8.505578, 47.407018], [8.505568, 47.407021], [8.505558, 47.407022], [8.505547, 47.407024], [8.505536, 47.407025], [8.505524, 47.407025], [8.505513, 47.407025], [8.505501, 47.407024], [8.505479, 47.407023], [8.505458, 47.407023], [8.505436, 47.407023], [8.505416, 47.407024], [8.505396, 47.407027], [8.505376, 47.407031], [8.505357, 47.407035], [8.505339, 47.407041], [8.505322, 47.407049], [8.505305, 47.407057], [8.50529, 47.407066], [8.505285, 47.407069], [8.505281, 47.407073], [8.505278, 47.407078], [8.505275, 47.407082], [8.505273, 47.407087], [8.505271, 47.407091], [8.50527, 47.407096], [8.505269, 47.407101], [8.505269, 47.407106], [8.50527, 47.40711], [8.505271, 47.407115], [8.505273, 47.40712], [8.505275, 47.407124], [8.505278, 47.407129], [8.505282, 47.407133], [8.505304, 47.407164], [8.505328, 47.407195], [8.505353, 47.407225], [8.50536, 47.407239], [8.505366, 47.407252], [8.505369, 47.407267], [8.505371, 47.407281], [8.50537, 47.407295], [8.505368, 47.407309], [8.505367, 47.407316], [8.505364, 47.407323], [8.505361, 47.407329], [8.505357, 47.407335], [8.505353, 47.407341], [8.505347, 47.407347], [8.505341, 47.407352], [8.505335, 47.407357], [8.505327, 47.407362], [8.505319, 47.407366], [8.505311, 47.40737], [8.505302, 47.407373], [8.505293, 47.407375], [8.505283, 47.407377], [8.505274, 47.407379], [8.505264, 47.40738], [8.505254, 47.40738], [8.505244, 47.40738], [8.505234, 47.407379], [8.505224, 47.407377], [8.505215, 47.407375], [8.505298, 47.407492], [8.50552, 47.40742], [8.50565, 47.407376], [8.505626, 47.407368], [8.505603, 47.407358], [8.505581, 47.407346], [8.505561, 47.407334], [8.505543, 47.40732], [8.505526, 47.407305], [8.505511, 47.407289], [8.505498, 47.407273], [8.505488, 47.407256], [8.505479, 47.407238], [8.505473, 47.40722], [8.505471, 47.407213], [8.50547, 47.407207], [8.50547, 47.4072], [8.505471, 47.407194], [8.505472, 47.407187], [8.505475, 47.407181], [8.505478, 47.407175], [8.505482, 47.407169], [8.505487, 47.407163], [8.505492, 47.407157], [8.505498, 47.407152], [8.505505, 47.407148], [8.505513, 47.407143], [8.50552, 47.40714], [8.505529, 47.407136], [8.505538, 47.407133], [8.505547, 47.407131], [8.505556, 47.407129], [8.505565, 47.407128], [8.505575, 47.407127], [8.505585, 47.407127], [8.505594, 47.407128], [8.505604, 47.407129], [8.505613, 47.40713], [8.505623, 47.407133], [8.505631, 47.407135], [8.50564, 47.407139], [8.505659, 47.407147], [8.505678, 47.407156], [8.505698, 47.407163], [8.505708, 47.407166], [8.505718, 47.407168], [8.505728, 47.407169], [8.505739, 47.40717], [8.505749, 47.407171], [8.50576, 47.40717], [8.505771, 47.407169], [8.505781, 47.407167], [8.505791, 47.407165], [8.505801, 47.407162], [8.50581, 47.407159], [8.505837, 47.407147], [8.505865, 47.407136], [8.505894, 47.407128], [8.505924, 47.407121], [8.505955, 47.407116], [8.505987, 47.407113], [8.506019, 47.407112], [8.506029, 47.407112], [8.506038, 47.407112], [8.506048, 47.407114], [8.506058, 47.407116], [8.506067, 47.407118], [8.506076, 47.407121], [8.506084, 47.407124], [8.506092, 47.407128], [8.506099, 47.407133], [8.506106, 47.407137], [8.506113, 47.407143], [8.506118, 47.407148], [8.506123, 47.407154], [8.506127, 47.40716], [8.50613, 47.407166], [8.506133, 47.407173], [8.506134, 47.407179], [8.506135, 47.407186], [8.506135, 47.407193], [8.506134, 47.407199], [8.506132, 47.407206], [8.50613, 47.407213], [8.506406, 47.407121], [8.506326, 47.407009], [8.506254, 47.407063], [8.506146, 47.407062], [8.506133, 47.407056], [8.506121, 47.407051], [8.506109, 47.407045], [8.506092, 47.407034], [8.506076, 47.407022], [8.506062, 47.40701], [8.50605, 47.406997], [8.50604, 47.406983], [8.506031, 47.406968], [8.506024, 47.406953], [8.50602, 47.406938], [8.506017, 47.406922], [8.506017, 47.406917], [8.506016, 47.406912], [8.506015, 47.406907], [8.506013, 47.406902], [8.506011, 47.406897], [8.506007, 47.406892], [8.506004, 47.406888], [8.505999, 47.406883], [8.505994, 47.406879], [8.505989, 47.406876], [8.505983, 47.406872], [8.505977, 47.40687], [8.505971, 47.406867], [8.505964, 47.406865], [8.505957, 47.406863], [8.505949, 47.406862], [8.505942, 47.406861], [8.505934, 47.40686], [8.505927, 47.40686], [8.505919, 47.406861], [8.505912, 47.406861], [8.505897, 47.406866], [8.505882, 47.40687], [8.505867, 47.406873], [8.505851, 47.406875], [8.505835, 47.406877], [8.505819, 47.406877], [8.505803, 47.406876], [8.505793, 47.406877], [8.505782, 47.406876], [8.505772, 47.406875], [8.505762, 47.406874], [8.505752, 47.406872], [8.505742, 47.406869], [8.505733, 47.406866], [8.505724, 47.406862], [8.505716, 47.406858], [8.505708, 47.406853], [8.505701, 47.406848], [8.505695, 47.406842], [8.505689, 47.406836], [8.505685, 47.40683], [8.505681, 47.406823], [8.505677, 47.406817], [8.505675, 47.40681], [8.505674, 47.406803], [8.505674, 47.406796], [8.505674, 47.406789], [8.505676, 47.406782], [8.505678, 47.406775], [8.505586, 47.406804]]], "type": "MultiLineString"}, "id": "3318", "properties": {}, "type": "Feature"}, {"bbox": [8.542822, 47.373549, 8.543695, 47.373577], "geometry": {"coordinates": [[[8.542822, 47.373577], [8.543695, 47.373549]]], "type": "MultiLineString"}, "id": "3319", "properties": {}, "type": "Feature"}, {"bbox": [8.533856, 47.412114, 8.534067, 47.413144], "geometry": {"coordinates": [[[8.533856, 47.413144], [8.533916, 47.412912], [8.533972, 47.412618], [8.534067, 47.412114]]], "type": "MultiLineString"}, "id": "3320", "properties": {}, "type": "Feature"}, {"bbox": [8.462792, 47.387695, 8.46804, 47.38901], "geometry": {"coordinates": [[[8.46804, 47.38901], [8.467977, 47.388998], [8.467913, 47.388988], [8.46785, 47.388978], [8.467763, 47.38896], [8.467679, 47.388937], [8.467598, 47.388908], [8.467392, 47.388821], [8.467272, 47.388778], [8.467219, 47.38876], [8.467165, 47.388741], [8.467111, 47.388722], [8.46702, 47.388692], [8.466927, 47.388665], [8.466833, 47.388639], [8.46673, 47.388611], [8.466628, 47.388583], [8.466526, 47.388554], [8.466526, 47.388554], [8.466526, 47.388554], [8.466315, 47.388493], [8.466103, 47.388434], [8.46589, 47.388377], [8.465836, 47.388363], [8.465783, 47.388347], [8.465731, 47.388331], [8.46564, 47.388302], [8.465548, 47.388276], [8.465454, 47.388251], [8.465346, 47.388227], [8.465236, 47.388207], [8.465124, 47.388192], [8.465098, 47.388189], [8.465072, 47.388186], [8.465046, 47.388184], [8.464905, 47.388169], [8.464764, 47.388153], [8.464623, 47.388137], [8.464578, 47.388131], [8.464534, 47.388127], [8.464489, 47.388124], [8.464415, 47.38812], [8.464342, 47.388113], [8.464269, 47.388106], [8.464202, 47.388098], [8.464135, 47.38809], [8.464069, 47.388082], [8.464065, 47.388081], [8.464061, 47.38808], [8.464058, 47.38808], [8.463945, 47.388062], [8.463591, 47.388005], [8.463289, 47.387959], [8.463209, 47.387945], [8.463132, 47.387925], [8.463057, 47.387901], [8.462986, 47.387873], [8.462919, 47.38784], [8.462856, 47.387803], [8.462844, 47.387795], [8.462832, 47.387785], [8.462822, 47.387775], [8.462814, 47.387765], [8.462807, 47.387754], [8.462801, 47.387742], [8.462796, 47.387731], [8.462794, 47.387719], [8.462792, 47.387707], [8.462793, 47.387695]]], "type": "MultiLineString"}, "id": "3325", "properties": {}, "type": "Feature"}, {"bbox": [8.49949, 47.380658, 8.500634, 47.381148], "geometry": {"coordinates": [[[8.500634, 47.380658], [8.49949, 47.381148]]], "type": "MultiLineString"}, "id": "3334", "properties": {}, "type": "Feature"}, {"bbox": [8.551467, 47.401894, 8.551626, 47.401981], "geometry": {"coordinates": [[[8.551467, 47.401981], [8.551491, 47.401975], [8.551626, 47.401894]]], "type": "MultiLineString"}, "id": "3336", "properties": {}, "type": "Feature"}, {"bbox": [8.572782, 47.404068, 8.573182, 47.40416], "geometry": {"coordinates": [[[8.572782, 47.40416], [8.573181, 47.404068], [8.573182, 47.404068]]], "type": "MultiLineString"}, "id": "3337", "properties": {}, "type": "Feature"}, {"bbox": [8.578298, 47.399893, 8.582872, 47.401629], "geometry": {"coordinates": [[[8.578298, 47.401629], [8.578299, 47.401629], [8.578603, 47.401468], [8.578881, 47.401346], [8.579235, 47.401228], [8.579499, 47.401179], [8.579965, 47.401045], [8.581041, 47.400732], [8.581308, 47.400643], [8.581334, 47.400634], [8.582206, 47.40027], [8.582299, 47.400219], [8.582493, 47.400113], [8.582684, 47.400004], [8.582872, 47.399893]]], "type": "MultiLineString"}, "id": "3339", "properties": {}, "type": "Feature"}, {"bbox": [8.570295, 47.368856, 8.570557, 47.370112], "geometry": {"coordinates": [[[8.570435, 47.368856], [8.570433, 47.368863], [8.570432, 47.368871], [8.570431, 47.368879], [8.570431, 47.368885], [8.570431, 47.368891], [8.570431, 47.368897], [8.570452, 47.369163], [8.570451, 47.369169], [8.57045, 47.369174], [8.570448, 47.36918], [8.570445, 47.369185], [8.570442, 47.36919], [8.570438, 47.369195], [8.570433, 47.3692], [8.570428, 47.369205], [8.570422, 47.369209], [8.570416, 47.369213], [8.570409, 47.369216], [8.570402, 47.369219], [8.570395, 47.369222], [8.570389, 47.369225], [8.570383, 47.369228], [8.570378, 47.369232], [8.570373, 47.369236], [8.570369, 47.36924], [8.570365, 47.369245], [8.570362, 47.369249], [8.570359, 47.369254], [8.570357, 47.369259], [8.570356, 47.369264], [8.570355, 47.369269], [8.570355, 47.369274], [8.570355, 47.369298], [8.570351, 47.369321], [8.570344, 47.369343], [8.570335, 47.369366], [8.570324, 47.369388], [8.570309, 47.369409], [8.570304, 47.369417], [8.5703, 47.369426], [8.570297, 47.369436], [8.570295, 47.369445], [8.570295, 47.369454], [8.570296, 47.369464], [8.570298, 47.369473], [8.570301, 47.369482], [8.570306, 47.369491], [8.570312, 47.3695], [8.570319, 47.369508], [8.570326, 47.369515], [8.570335, 47.369523], [8.570358, 47.369565], [8.570353, 47.36961], [8.570316, 47.369704], [8.570313, 47.369719], [8.570312, 47.369735], [8.570312, 47.36975], [8.570315, 47.369766], [8.57032, 47.369781], [8.570326, 47.369796], [8.570335, 47.369811], [8.570346, 47.369825], [8.570358, 47.369838], [8.570372, 47.36985], [8.570384, 47.369863], [8.570394, 47.369876], [8.570403, 47.36989], [8.570534, 47.370096], [8.570536, 47.370099], [8.570538, 47.370101], [8.57054, 47.370103], [8.570543, 47.370105], [8.570546, 47.370107], [8.57055, 47.370109], [8.570553, 47.37011], [8.570557, 47.370112]]], "type": "MultiLineString"}, "id": "3347", "properties": {}, "type": "Feature"}, {"bbox": [8.500511, 47.361637, 8.503118, 47.36282], "geometry": {"coordinates": [[[8.503118, 47.361637], [8.502925, 47.361795], [8.502737, 47.36194], [8.502541, 47.36208], [8.502335, 47.362214], [8.502107, 47.362347], [8.501861, 47.362464], [8.5016, 47.362565], [8.501325, 47.362648], [8.50104, 47.362713], [8.500511, 47.36282]]], "type": "MultiLineString"}, "id": "3355", "properties": {}, "type": "Feature"}, {"bbox": [8.575791, 47.358729, 8.576305, 47.359842], "geometry": {"coordinates": [[[8.575938, 47.358729], [8.57587, 47.358901], [8.575805, 47.359073], [8.575795, 47.359125], [8.575791, 47.359178], [8.575795, 47.35923], [8.575806, 47.359282], [8.575824, 47.359333], [8.575848, 47.359383], [8.575869, 47.359407], [8.575893, 47.359429], [8.575919, 47.35945], [8.575949, 47.359469], [8.57598, 47.359487], [8.576014, 47.359502], [8.576305, 47.359598], [8.576138, 47.359842]]], "type": "MultiLineString"}, "id": "3358", "properties": {}, "type": "Feature"}, {"bbox": [8.582983, 47.389279, 8.586206, 47.392786], "geometry": {"coordinates": [[[8.582983, 47.389279], [8.58309, 47.389354], [8.583137, 47.389387], [8.583166, 47.389408], [8.583193, 47.389431], [8.583217, 47.389455], [8.583237, 47.389481], [8.583253, 47.389508], [8.583266, 47.389536], [8.583704, 47.390601], [8.583896, 47.391068], [8.584053, 47.391407], [8.584127, 47.391557], [8.584246, 47.391745], [8.584332, 47.391868], [8.58435, 47.391897], [8.584372, 47.391925], [8.584397, 47.391952], [8.584426, 47.391976], [8.584457, 47.392], [8.584492, 47.392021], [8.584529, 47.39204], [8.584654, 47.392102], [8.584831, 47.39219], [8.58542, 47.392488], [8.585753, 47.392643], [8.585775, 47.392652], [8.586206, 47.392786]]], "type": "MultiLineString"}, "id": "3359", "properties": {}, "type": "Feature"}, {"bbox": [8.479805, 47.410455, 8.480574, 47.411418], "geometry": {"coordinates": [[[8.480574, 47.411418], [8.480435, 47.411207], [8.480387, 47.411125], [8.480345, 47.411041], [8.480311, 47.410956], [8.480269, 47.410872], [8.480216, 47.410792], [8.480153, 47.410715], [8.480079, 47.410642], [8.479996, 47.410574], [8.479905, 47.410512], [8.479805, 47.410455]]], "type": "MultiLineString"}, "id": "3388", "properties": {}, "type": "Feature"}, {"bbox": [8.504597, 47.39733, 8.505226, 47.397857], "geometry": {"coordinates": [[[8.504597, 47.39733], [8.504882, 47.397573], [8.505181, 47.397811], [8.505197, 47.397826], [8.505212, 47.397842], [8.505226, 47.397857]]], "type": "MultiLineString"}, "id": "3389", "properties": {}, "type": "Feature"}, {"bbox": [8.505119, 47.394043, 8.505301, 47.394632], "geometry": {"coordinates": [[[8.505301, 47.394632], [8.505119, 47.394126], [8.505119, 47.394115], [8.50512, 47.394104], [8.505122, 47.394093], [8.505125, 47.394083], [8.505131, 47.394072], [8.505137, 47.394062], [8.505145, 47.394052], [8.505154, 47.394043]]], "type": "MultiLineString"}, "id": "3390", "properties": {}, "type": "Feature"}, {"bbox": [8.589513, 47.383721, 8.590674, 47.386704], "geometry": {"coordinates": [[[8.589513, 47.383721], [8.589575, 47.383842], [8.589658, 47.384002], [8.589714, 47.384136], [8.589769, 47.384269], [8.589824, 47.384403], [8.589889, 47.384555], [8.589953, 47.384707], [8.590017, 47.384859], [8.590073, 47.384993], [8.590127, 47.385127], [8.59018, 47.385261], [8.590219, 47.385386], [8.59026, 47.385509], [8.590305, 47.385633], [8.59035, 47.38576], [8.590395, 47.385887], [8.59044, 47.386014], [8.590478, 47.386124], [8.59052, 47.386234], [8.590566, 47.386344], [8.590615, 47.386462], [8.590651, 47.386582], [8.590674, 47.386704]]], "type": "MultiLineString"}, "id": "3391", "properties": {}, "type": "Feature"}, {"bbox": [8.476063, 47.381272, 8.477202, 47.382082], "geometry": {"coordinates": [[[8.476063, 47.382082], [8.476434, 47.381838], [8.476799, 47.38159], [8.477157, 47.381337], [8.477166, 47.381331], [8.477173, 47.381325], [8.47718, 47.381318], [8.477186, 47.381311], [8.477191, 47.381304], [8.477195, 47.381296], [8.477198, 47.381288], [8.4772, 47.38128], [8.477202, 47.381272]]], "type": "MultiLineString"}, "id": "3392", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.357782, 8.594282, 47.35958], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593427, 47.359313], [8.593462, 47.359108], [8.593496, 47.359001], [8.593616, 47.358761], [8.593815, 47.35832], [8.593854, 47.358247], [8.593901, 47.358175], [8.593954, 47.358106], [8.593994, 47.358066], [8.594036, 47.358027], [8.594082, 47.35799], [8.594126, 47.357957], [8.594167, 47.357922], [8.594205, 47.357885], [8.594232, 47.357851], [8.594258, 47.357817], [8.594282, 47.357782]]], "type": "MultiLineString"}, "id": "3393", "properties": {}, "type": "Feature"}, {"bbox": [8.571072, 47.41145, 8.572687, 47.4117], "geometry": {"coordinates": [[[8.571072, 47.41145], [8.571307, 47.41147], [8.571763, 47.411512], [8.571841, 47.41152], [8.571958, 47.411529], [8.572077, 47.411535], [8.572293, 47.411532], [8.572316, 47.41153], [8.572338, 47.41153], [8.572361, 47.411532], [8.572384, 47.411534], [8.572406, 47.411538], [8.572427, 47.411543], [8.572448, 47.41155], [8.572468, 47.411557], [8.572487, 47.411566], [8.572505, 47.411576], [8.572521, 47.411586], [8.572537, 47.411598], [8.572687, 47.4117]]], "type": "MultiLineString"}, "id": "3394", "properties": {}, "type": "Feature"}, {"bbox": [8.508364, 47.424794, 8.508732, 47.425937], "geometry": {"coordinates": [[[8.50871, 47.424794], [8.508722, 47.424853], [8.508729, 47.424912], [8.508732, 47.424972], [8.508711, 47.425123], [8.508689, 47.425275], [8.508666, 47.425426], [8.508649, 47.425489], [8.508625, 47.425551], [8.508592, 47.425612], [8.508553, 47.42567], [8.508506, 47.425726], [8.508452, 47.425779], [8.508392, 47.425828], [8.508384, 47.425841], [8.508376, 47.425854], [8.508371, 47.425868], [8.508367, 47.425881], [8.508365, 47.425895], [8.508364, 47.425909], [8.508366, 47.425923], [8.508369, 47.425937]]], "type": "MultiLineString"}, "id": "3395", "properties": {}, "type": "Feature"}, {"bbox": [8.477084, 47.407616, 8.47799, 47.407939], "geometry": {"coordinates": [[[8.47799, 47.407881], [8.47798, 47.407877], [8.47797, 47.407875], [8.47796, 47.407873], [8.477949, 47.407872], [8.477939, 47.407871], [8.477928, 47.407871], [8.477917, 47.407871], [8.477907, 47.407873], [8.477867, 47.407887], [8.477829, 47.407904], [8.477794, 47.407923], [8.477787, 47.407926], [8.47778, 47.40793], [8.477773, 47.407932], [8.477765, 47.407934], [8.477758, 47.407936], [8.477749, 47.407937], [8.477741, 47.407938], [8.477733, 47.407939], [8.477725, 47.407938], [8.477716, 47.407938], [8.477708, 47.407937], [8.4777, 47.407935], [8.477692, 47.407933], [8.477685, 47.407931], [8.477678, 47.407928], [8.477671, 47.407924], [8.477665, 47.407921], [8.477659, 47.407916], [8.477654, 47.407912], [8.477649, 47.407907], [8.477645, 47.407902], [8.477642, 47.407897], [8.477639, 47.407892], [8.477637, 47.407886], [8.477636, 47.407881], [8.477635, 47.407875], [8.477635, 47.407869], [8.477636, 47.407864], [8.477644, 47.407837], [8.477654, 47.40781], [8.477666, 47.407784], [8.477672, 47.407772], [8.477676, 47.40776], [8.477679, 47.407748], [8.47768, 47.407736], [8.477679, 47.407723], [8.477677, 47.407711], [8.477673, 47.407699], [8.477668, 47.407687], [8.477662, 47.40768], [8.477655, 47.407674], [8.477648, 47.407669], [8.477639, 47.407663], [8.47763, 47.407659], [8.477621, 47.407654], [8.477611, 47.407651], [8.4776, 47.407648], [8.477589, 47.407646], [8.477578, 47.407644], [8.477567, 47.407643], [8.477555, 47.407643], [8.477202, 47.407671], [8.477191, 47.407671], [8.47718, 47.40767], [8.477169, 47.407668], [8.477159, 47.407666], [8.477149, 47.407663], [8.477139, 47.40766], [8.47713, 47.407656], [8.477121, 47.407652], [8.477113, 47.407647], [8.477106, 47.407641], [8.477099, 47.407635], [8.477093, 47.407629], [8.477088, 47.407623], [8.477084, 47.407616]]], "type": "MultiLineString"}, "id": "3396", "properties": {}, "type": "Feature"}, {"bbox": [8.590258, 47.368885, 8.59885, 47.372495], "geometry": {"coordinates": [[[8.590258, 47.372495], [8.59033, 47.372447], [8.590579, 47.372338], [8.590592, 47.372332], [8.590605, 47.372325], [8.590617, 47.372317], [8.590627, 47.372309], [8.590637, 47.3723], [8.590645, 47.37229], [8.590652, 47.37228], [8.590658, 47.37227], [8.590662, 47.372259], [8.590666, 47.372248], [8.590667, 47.372237], [8.590668, 47.372226], [8.590667, 47.372215], [8.590664, 47.372204], [8.590661, 47.372193], [8.590698, 47.372119], [8.590726, 47.37207], [8.590759, 47.372023], [8.590799, 47.371978], [8.590843, 47.371936], [8.590893, 47.371896], [8.590947, 47.371858], [8.591407, 47.371568], [8.591461, 47.371537], [8.591518, 47.371508], [8.591579, 47.371484], [8.591642, 47.371462], [8.591708, 47.371445], [8.591776, 47.371431], [8.591845, 47.371421], [8.593472, 47.371234], [8.593613, 47.371222], [8.593754, 47.371217], [8.593896, 47.371219], [8.593951, 47.371221], [8.594702, 47.371253], [8.594926, 47.371258], [8.595149, 47.371256], [8.595373, 47.371246], [8.596398, 47.371182], [8.596444, 47.371178], [8.596491, 47.371173], [8.596537, 47.371167], [8.596593, 47.371158], [8.596647, 47.371146], [8.596701, 47.371134], [8.598089, 47.370771], [8.59814, 47.370755], [8.598189, 47.370737], [8.598236, 47.370715], [8.598279, 47.370691], [8.598319, 47.370664], [8.598355, 47.370635], [8.598387, 47.370604], [8.598414, 47.37057], [8.598579, 47.370348], [8.598745, 47.370099], [8.598782, 47.370036], [8.598812, 47.369971], [8.598834, 47.369905], [8.598848, 47.369838], [8.59885, 47.369812], [8.598849, 47.369787], [8.598844, 47.369762], [8.598836, 47.369737], [8.598825, 47.369713], [8.59881, 47.36969], [8.598792, 47.369667], [8.598772, 47.369646], [8.598724, 47.369606], [8.598671, 47.369568], [8.598613, 47.369535], [8.598551, 47.369505], [8.598485, 47.369479], [8.598415, 47.369457], [8.598297, 47.369425], [8.598096, 47.369373], [8.597892, 47.369326], [8.597685, 47.369286], [8.596881, 47.369141], [8.596678, 47.369101], [8.596477, 47.369058], [8.596278, 47.369009], [8.595795, 47.368885]]], "type": "MultiLineString"}, "id": "3398", "properties": {}, "type": "Feature"}, {"bbox": [8.544419, 47.370156, 8.54488, 47.370656], "geometry": {"coordinates": [[[8.544419, 47.370653], [8.544459, 47.370656], [8.544514, 47.370485], [8.544521, 47.37045], [8.544533, 47.370415], [8.544549, 47.370381], [8.544569, 47.370348], [8.544593, 47.370317], [8.544621, 47.370286], [8.544799, 47.370204], [8.544844, 47.370211], [8.54488, 47.370199], [8.544819, 47.370156]]], "type": "MultiLineString"}, "id": "3400", "properties": {}, "type": "Feature"}, {"bbox": [8.501752, 47.41312, 8.50404, 47.417857], "geometry": {"coordinates": [[[8.50404, 47.417857], [8.50402, 47.417816], [8.503971, 47.417771], [8.50388, 47.417711], [8.503596, 47.417586], [8.503282, 47.417361], [8.503344, 47.417248], [8.503462, 47.417004], [8.50347, 47.416934], [8.503432, 47.416871], [8.503295, 47.416712], [8.50309, 47.416534], [8.50287, 47.416367], [8.502767, 47.416259], [8.502598, 47.415975], [8.502552, 47.415873], [8.502489, 47.415787], [8.502309, 47.415495], [8.502252, 47.415325], [8.502181, 47.415045], [8.502077, 47.414858], [8.501876, 47.414362], [8.501814, 47.414162], [8.501797, 47.413926], [8.501752, 47.413634], [8.501754, 47.413506], [8.501809, 47.413381], [8.501806, 47.413267], [8.501922, 47.413139], [8.501972, 47.41312]]], "type": "MultiLineString"}, "id": "3419", "properties": {}, "type": "Feature"}, {"bbox": [8.604747, 47.358325, 8.619717, 47.359999], "geometry": {"coordinates": [[[8.604747, 47.35976], [8.604847, 47.359676], [8.604862, 47.359665], [8.604879, 47.359654], [8.604897, 47.359645], [8.604929, 47.359628], [8.60496, 47.359611], [8.604991, 47.359593], [8.605054, 47.359556], [8.605119, 47.359523], [8.605188, 47.359491], [8.605269, 47.359459], [8.605354, 47.359432], [8.605443, 47.35941], [8.605515, 47.359395], [8.605587, 47.359381], [8.605659, 47.359367], [8.605699, 47.35936], [8.60574, 47.359353], [8.60578, 47.359347], [8.605903, 47.359329], [8.606027, 47.359311], [8.60615, 47.359292], [8.606315, 47.359267], [8.60648, 47.35924], [8.606645, 47.359213], [8.606818, 47.359184], [8.606991, 47.359157], [8.607165, 47.359131], [8.607165, 47.359131], [8.607165, 47.359131], [8.607271, 47.359117], [8.607376, 47.359101], [8.607481, 47.359084], [8.607562, 47.35907], [8.607642, 47.359054], [8.607722, 47.359037], [8.607813, 47.359017], [8.607904, 47.359], [8.607997, 47.358983], [8.608092, 47.358969], [8.608189, 47.358957], [8.608286, 47.358949], [8.608368, 47.358944], [8.60845, 47.35894], [8.608532, 47.358937], [8.608623, 47.358934], [8.608714, 47.358929], [8.608804, 47.358923], [8.60894, 47.358912], [8.609075, 47.358902], [8.60921, 47.358892], [8.609279, 47.358887], [8.609348, 47.35888], [8.609416, 47.35887], [8.609485, 47.358861], [8.609553, 47.358851], [8.609622, 47.358841], [8.609678, 47.358832], [8.609734, 47.35882], [8.609788, 47.358805], [8.609898, 47.358775], [8.609952, 47.358759], [8.610008, 47.358747], [8.610065, 47.358738], [8.610122, 47.358732], [8.610181, 47.358729], [8.610411, 47.35871], [8.610538, 47.358709], [8.610664, 47.358714], [8.610789, 47.358723], [8.610952, 47.358727], [8.611116, 47.358719], [8.611277, 47.358701], [8.611541, 47.358666], [8.611599, 47.358656], [8.611655, 47.358643], [8.61171, 47.358627], [8.611762, 47.358608], [8.611812, 47.358587], [8.611901, 47.358553], [8.611991, 47.358521], [8.612083, 47.358492], [8.612167, 47.358474], [8.612253, 47.358461], [8.61234, 47.358452], [8.612428, 47.358448], [8.612516, 47.358449], [8.612565, 47.358451], [8.612614, 47.358451], [8.612663, 47.358451], [8.612714, 47.35845], [8.612766, 47.358448], [8.612817, 47.358444], [8.612876, 47.358438], [8.612934, 47.358429], [8.612992, 47.358419], [8.612992, 47.358419], [8.613163, 47.358386], [8.613351, 47.358353], [8.613351, 47.358353], [8.61341, 47.358344], [8.613469, 47.358337], [8.613528, 47.358331], [8.613548, 47.35833], [8.613568, 47.358328], [8.613588, 47.358327], [8.613668, 47.358325], [8.613748, 47.358326], [8.613828, 47.358331], [8.613828, 47.358331], [8.614018, 47.358346], [8.614061, 47.358351], [8.614196, 47.358366], [8.614346, 47.358397], [8.614395, 47.358406], [8.614444, 47.358413], [8.614494, 47.358418], [8.614545, 47.358421], [8.614595, 47.358421], [8.614645, 47.358419], [8.614646, 47.358419], [8.614936, 47.358405], [8.615047, 47.358403], [8.615158, 47.358408], [8.615269, 47.358419], [8.615956, 47.358522], [8.616098, 47.35864], [8.616117, 47.358655], [8.616136, 47.358671], [8.616155, 47.358686], [8.616156, 47.358687], [8.6165, 47.35901], [8.617207, 47.359718], [8.617242, 47.359753], [8.617278, 47.359787], [8.617315, 47.359821], [8.617353, 47.359851], [8.617394, 47.359879], [8.617438, 47.359905], [8.617486, 47.359927], [8.617536, 47.359947], [8.617589, 47.359964], [8.617642, 47.359977], [8.617698, 47.359988], [8.617754, 47.359995], [8.617811, 47.359998], [8.617868, 47.359999], [8.618, 47.359992], [8.61813, 47.359979], [8.618259, 47.35996], [8.618342, 47.359944], [8.618423, 47.359922], [8.618502, 47.359897], [8.618577, 47.359867], [8.618648, 47.359833], [8.618777, 47.359771], [8.618912, 47.359715], [8.619052, 47.359665], [8.619213, 47.359612], [8.619373, 47.359558], [8.619533, 47.359503], [8.61955, 47.359497], [8.619568, 47.359492], [8.619587, 47.359488], [8.619717, 47.359462]]], "type": "MultiLineString"}, "id": "3423", "properties": {}, "type": "Feature"}, {"bbox": [8.557666, 47.384317, 8.560818, 47.386425], "geometry": {"coordinates": [[[8.557666, 47.384317], [8.557723, 47.384343], [8.557807, 47.384381], [8.557901, 47.384451], [8.558537, 47.384937], [8.558636, 47.38501], [8.559577, 47.385701], [8.560021, 47.385996], [8.560241, 47.386139], [8.560523, 47.386296], [8.560818, 47.386425]]], "type": "MultiLineString"}, "id": "3425", "properties": {}, "type": "Feature"}, {"bbox": [8.538961, 47.402677, 8.539851, 47.403066], "geometry": {"coordinates": [[[8.539851, 47.402677], [8.53983, 47.402694], [8.539741, 47.402767], [8.539703, 47.402799], [8.539701, 47.4028], [8.539698, 47.402802], [8.539696, 47.402803], [8.539693, 47.402804], [8.53969, 47.402805], [8.539688, 47.402806], [8.539685, 47.402806], [8.539682, 47.402807], [8.539679, 47.402807], [8.539676, 47.402807], [8.539673, 47.402807], [8.53967, 47.402807], [8.539667, 47.402807], [8.53937, 47.402767], [8.539287, 47.402757], [8.539277, 47.402756], [8.539267, 47.402755], [8.539257, 47.402755], [8.539247, 47.402756], [8.539237, 47.402757], [8.539227, 47.402759], [8.539218, 47.402761], [8.539206, 47.402765], [8.539194, 47.40277], [8.539184, 47.402775], [8.539174, 47.402781], [8.539165, 47.402787], [8.539156, 47.402794], [8.539149, 47.402802], [8.539143, 47.40281], [8.539084, 47.402896], [8.539023, 47.402981], [8.538961, 47.403066]]], "type": "MultiLineString"}, "id": "3437", "properties": {}, "type": "Feature"}, {"bbox": [8.527901, 47.426658, 8.535054, 47.4324], "geometry": {"coordinates": [[[8.535054, 47.426658], [8.534878, 47.426722], [8.534, 47.427037], [8.534, 47.427037], [8.534, 47.427037], [8.533872, 47.427093], [8.533747, 47.427151], [8.533625, 47.427212], [8.533575, 47.427239], [8.533525, 47.427266], [8.533476, 47.427293], [8.533368, 47.427351], [8.53326, 47.427408], [8.533151, 47.427464], [8.532996, 47.427543], [8.532838, 47.427619], [8.532677, 47.427692], [8.532629, 47.427712], [8.53258, 47.42773], [8.532529, 47.427747], [8.531766, 47.428013], [8.531672, 47.428039], [8.531576, 47.42806], [8.531477, 47.428074], [8.531376, 47.428083], [8.531376, 47.428083], [8.531376, 47.428083], [8.531261, 47.428091], [8.531145, 47.428096], [8.531029, 47.428099], [8.530679, 47.428096], [8.530594, 47.428095], [8.530511, 47.428095], [8.530429, 47.428098], [8.530347, 47.428103], [8.530132, 47.428132], [8.530077, 47.42814], [8.530025, 47.428153], [8.529974, 47.428169], [8.529925, 47.428188], [8.5299, 47.428199], [8.529876, 47.428212], [8.529853, 47.428225], [8.529219, 47.428607], [8.528848, 47.428866], [8.52839, 47.429234], [8.528066, 47.429514], [8.528027, 47.42955], [8.527994, 47.429589], [8.527965, 47.429629], [8.527941, 47.429671], [8.527923, 47.429713], [8.52791, 47.429757], [8.527903, 47.429802], [8.527901, 47.429846], [8.527905, 47.429891], [8.527926, 47.430031], [8.527969, 47.430294], [8.528119, 47.4311], [8.528141, 47.431215], [8.52864, 47.4324]]], "type": "MultiLineString"}, "id": "3439", "properties": {}, "type": "Feature"}, {"bbox": [8.547492, 47.365792, 8.547513, 47.365829], "geometry": {"coordinates": [[[8.547513, 47.365792], [8.547492, 47.365829]]], "type": "MultiLineString"}, "id": "3440", "properties": {}, "type": "Feature"}, {"bbox": [8.543843, 47.367959, 8.545325, 47.369268], "geometry": {"coordinates": [[[8.545325, 47.367959], [8.545073, 47.368196], [8.544858, 47.368386], [8.544737, 47.36851], [8.54466, 47.368593], [8.544393, 47.368831], [8.544198, 47.36896], [8.544084, 47.369061], [8.543923, 47.369199], [8.543843, 47.369268]]], "type": "MultiLineString"}, "id": "3441", "properties": {}, "type": "Feature"}, {"bbox": [8.505718, 47.401846, 8.5073, 47.402768], "geometry": {"coordinates": [[[8.505718, 47.401846], [8.505775, 47.401881], [8.506394, 47.402163], [8.50649, 47.402106], [8.506485, 47.402158], [8.506485, 47.402171], [8.506487, 47.402184], [8.506491, 47.402197], [8.506496, 47.40221], [8.50652, 47.402256], [8.506583, 47.402366], [8.506588, 47.402376], [8.506591, 47.402387], [8.506593, 47.402398], [8.506593, 47.402409], [8.506592, 47.40242], [8.506565, 47.402533], [8.506565, 47.402534], [8.506565, 47.402536], [8.506565, 47.402537], [8.506566, 47.402539], [8.506566, 47.40254], [8.506567, 47.402541], [8.506568, 47.402543], [8.506569, 47.402544], [8.506571, 47.402545], [8.506572, 47.402546], [8.506574, 47.402547], [8.506576, 47.402548], [8.506577, 47.402549], [8.506579, 47.402549], [8.506581, 47.40255], [8.506583, 47.40255], [8.506586, 47.402551], [8.506588, 47.402551], [8.50659, 47.402551], [8.506592, 47.402551], [8.506594, 47.40255], [8.506596, 47.40255], [8.506598, 47.40255], [8.506693, 47.402528], [8.506714, 47.402535], [8.506764, 47.402554], [8.507169, 47.402716], [8.5073, 47.402768]]], "type": "MultiLineString"}, "id": "3452", "properties": {}, "type": "Feature"}, {"bbox": [8.537743, 47.373876, 8.538049, 47.374685], "geometry": {"coordinates": [[[8.538049, 47.373876], [8.537983, 47.374035], [8.537743, 47.374685]]], "type": "MultiLineString"}, "id": "3453", "properties": {}, "type": "Feature"}, {"bbox": [8.537369, 47.408883, 8.538233, 47.409405], "geometry": {"coordinates": [[[8.537369, 47.40896], [8.537683, 47.408885], [8.537694, 47.408883], [8.537705, 47.408883], [8.537716, 47.408883], [8.537726, 47.408883], [8.537737, 47.408885], [8.537748, 47.408887], [8.537758, 47.408889], [8.537768, 47.408893], [8.537778, 47.408896], [8.537786, 47.408901], [8.537795, 47.408906], [8.537802, 47.408911], [8.537809, 47.408917], [8.537816, 47.408923], [8.537821, 47.408929], [8.538129, 47.40937], [8.538233, 47.409405]]], "type": "MultiLineString"}, "id": "3467", "properties": {}, "type": "Feature"}, {"bbox": [8.591631, 47.406006, 8.597235, 47.40656], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.591912, 47.406524], [8.591967, 47.406535], [8.59256, 47.40649], [8.593677, 47.406379], [8.595715, 47.406165], [8.595735, 47.406164], [8.595755, 47.406161], [8.595775, 47.406158], [8.595794, 47.406153], [8.595812, 47.406146], [8.595829, 47.406139], [8.595846, 47.406131], [8.595861, 47.406122], [8.595875, 47.406112], [8.596055, 47.406129], [8.597235, 47.406006]]], "type": "MultiLineString"}, "id": "3468", "properties": {}, "type": "Feature"}, {"bbox": [8.540661, 47.405542, 8.541269, 47.406404], "geometry": {"coordinates": [[[8.540698, 47.405542], [8.54069, 47.40555], [8.540682, 47.405559], [8.540676, 47.405568], [8.54067, 47.405577], [8.540666, 47.405587], [8.540663, 47.405597], [8.540662, 47.405607], [8.540661, 47.405617], [8.540662, 47.405627], [8.540665, 47.405637], [8.540735, 47.405715], [8.540799, 47.405797], [8.540856, 47.40588], [8.540933, 47.406009], [8.541074, 47.406202], [8.541219, 47.406367], [8.541269, 47.406404]]], "type": "MultiLineString"}, "id": "3469", "properties": {}, "type": "Feature"}, {"bbox": [8.550457, 47.427521, 8.550835, 47.428243], "geometry": {"coordinates": [[[8.550814, 47.427521], [8.550835, 47.42764], [8.5507, 47.428015], [8.550692, 47.428034], [8.550682, 47.428051], [8.55067, 47.428069], [8.550656, 47.428085], [8.550639, 47.4281], [8.550457, 47.428243]]], "type": "MultiLineString"}, "id": "3470", "properties": {}, "type": "Feature"}, {"bbox": [8.514711, 47.42518, 8.517218, 47.426204], "geometry": {"coordinates": [[[8.517216, 47.425237], [8.517217, 47.425231], [8.517218, 47.425224], [8.517218, 47.425218], [8.517217, 47.425211], [8.517215, 47.425205], [8.517213, 47.425198], [8.51721, 47.425192], [8.517207, 47.42519], [8.517203, 47.425188], [8.5172, 47.425186], [8.517196, 47.425184], [8.517192, 47.425183], [8.517188, 47.425182], [8.517184, 47.425181], [8.517179, 47.42518], [8.517175, 47.42518], [8.517171, 47.42518], [8.517166, 47.42518], [8.517162, 47.42518], [8.517157, 47.425181], [8.516634, 47.425224], [8.516484, 47.425242], [8.516338, 47.425268], [8.516195, 47.425303], [8.516058, 47.425347], [8.515891, 47.425412], [8.51573, 47.425484], [8.515577, 47.425563], [8.515422, 47.425652], [8.515278, 47.425748], [8.515144, 47.42585], [8.515001, 47.425969], [8.514857, 47.426087], [8.514711, 47.426204]]], "type": "MultiLineString"}, "id": "3471", "properties": {}, "type": "Feature"}, {"bbox": [8.588413, 47.382455, 8.591864, 47.382719], "geometry": {"coordinates": [[[8.588413, 47.382492], [8.58848, 47.3825], [8.588547, 47.382508], [8.588614, 47.382514], [8.588676, 47.382524], [8.588736, 47.382537], [8.588794, 47.382553], [8.588849, 47.382567], [8.588906, 47.382578], [8.588963, 47.382585], [8.589022, 47.382589], [8.589081, 47.38259], [8.589472, 47.382576], [8.590162, 47.382536], [8.590477, 47.382513], [8.591041, 47.382476], [8.591393, 47.382456], [8.591411, 47.382455], [8.591429, 47.382455], [8.591447, 47.382457], [8.591464, 47.382459], [8.591482, 47.382463], [8.591498, 47.382467], [8.591514, 47.382473], [8.59153, 47.382479], [8.591544, 47.382487], [8.591557, 47.382495], [8.59157, 47.382504], [8.591581, 47.382513], [8.591864, 47.382719]]], "type": "MultiLineString"}, "id": "3472", "properties": {}, "type": "Feature"}, {"bbox": [8.545772, 47.420897, 8.546108, 47.421682], "geometry": {"coordinates": [[[8.546108, 47.420897], [8.545967, 47.421243], [8.545775, 47.421608], [8.545773, 47.421618], [8.545772, 47.421627], [8.545772, 47.421637], [8.545774, 47.421646], [8.545777, 47.421656], [8.545781, 47.421665], [8.545786, 47.421674], [8.545792, 47.421682]]], "type": "MultiLineString"}, "id": "3473", "properties": {}, "type": "Feature"}, {"bbox": [8.571958, 47.413339, 8.572267, 47.413738], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.572247, 47.413382], [8.572155, 47.413339], [8.572044, 47.413353], [8.571982, 47.413417], [8.571958, 47.413738]]], "type": "MultiLineString"}, "id": "3474", "properties": {}, "type": "Feature"}, {"bbox": [8.529425, 47.34559, 8.530341, 47.345705], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529514, 47.345633], [8.529868, 47.345698], [8.529914, 47.345703], [8.529961, 47.345705], [8.530008, 47.345703], [8.530055, 47.345699], [8.530101, 47.345693], [8.530146, 47.345683], [8.530189, 47.345671], [8.530231, 47.345656], [8.53027, 47.345638], [8.530307, 47.345619], [8.530341, 47.345597]]], "type": "MultiLineString"}, "id": "3476", "properties": {}, "type": "Feature"}, {"bbox": [8.536021, 47.340516, 8.537323, 47.341287], "geometry": {"coordinates": [[[8.537323, 47.34061], [8.537006, 47.340516], [8.536948, 47.340521], [8.536591, 47.340902], [8.536097, 47.341287], [8.536021, 47.341271]]], "type": "MultiLineString"}, "id": "3484", "properties": {}, "type": "Feature"}, {"bbox": [8.518519, 47.412849, 8.520969, 47.413656], "geometry": {"coordinates": [[[8.520969, 47.412849], [8.520758, 47.41296], [8.520544, 47.41307], [8.520327, 47.413177], [8.51979, 47.413454], [8.51975, 47.413473], [8.519707, 47.413489], [8.519662, 47.413503], [8.519615, 47.413513], [8.519567, 47.413521], [8.519518, 47.413526], [8.518879, 47.413557], [8.518519, 47.413656]]], "type": "MultiLineString"}, "id": "3485", "properties": {}, "type": "Feature"}, {"bbox": [8.509561, 47.396852, 8.510472, 47.398055], "geometry": {"coordinates": [[[8.509561, 47.396852], [8.50974, 47.397128], [8.509912, 47.397076], [8.510084, 47.397386], [8.510183, 47.39756], [8.510472, 47.398055]]], "type": "MultiLineString"}, "id": "3486", "properties": {}, "type": "Feature"}, {"bbox": [8.505763, 47.402535, 8.506714, 47.403859], "geometry": {"coordinates": [[[8.506714, 47.402535], [8.506585, 47.402697], [8.506301, 47.403006], [8.506253, 47.403061], [8.506209, 47.403118], [8.506169, 47.403176], [8.50607, 47.403399], [8.505808, 47.403713], [8.505794, 47.403733], [8.505783, 47.403753], [8.505774, 47.403773], [8.505768, 47.403794], [8.505764, 47.403816], [8.505763, 47.403837], [8.505765, 47.403859]]], "type": "MultiLineString"}, "id": "3487", "properties": {}, "type": "Feature"}, {"bbox": [8.496797, 47.345478, 8.504505, 47.350896], "geometry": {"coordinates": [[[8.496807, 47.346287], [8.496797, 47.346262], [8.497033, 47.346007], [8.497331, 47.345812], [8.49777, 47.345652], [8.49794, 47.345566], [8.498122, 47.345511], [8.498716, 47.345478], [8.499035, 47.345582], [8.499231, 47.345667], [8.499307, 47.345704], [8.499857, 47.345802], [8.500068, 47.34579], [8.500189, 47.345869], [8.500255, 47.345955], [8.500253, 47.346062], [8.500386, 47.34615], [8.500585, 47.346208], [8.500721, 47.346228], [8.500788, 47.346305], [8.500809, 47.34635], [8.500966, 47.346401], [8.500997, 47.346444], [8.501086, 47.346404], [8.501151, 47.346352], [8.501123, 47.346489], [8.501141, 47.346546], [8.50118, 47.346637], [8.501271, 47.34675], [8.501291, 47.346833], [8.501558, 47.346951], [8.501588, 47.347093], [8.501853, 47.347209], [8.501879, 47.347239], [8.501835, 47.347286], [8.501987, 47.347608], [8.502042, 47.347749], [8.502145, 47.347825], [8.502286, 47.347884], [8.50248, 47.348062], [8.502626, 47.348171], [8.502692, 47.34826], [8.502793, 47.348308], [8.502863, 47.348373], [8.502923, 47.348414], [8.503029, 47.348522], [8.503142, 47.348618], [8.503116, 47.3487], [8.503135, 47.34871], [8.503363, 47.348653], [8.503404, 47.348743], [8.503396, 47.348845], [8.503361, 47.348976], [8.503288, 47.349101], [8.503235, 47.349139], [8.503124, 47.349127], [8.503163, 47.349195], [8.503298, 47.34926], [8.503299, 47.349262], [8.5033, 47.349263], [8.503301, 47.349265], [8.503302, 47.349267], [8.503303, 47.349269], [8.503303, 47.34927], [8.503303, 47.349272], [8.503303, 47.349274], [8.503303, 47.349276], [8.503302, 47.349278], [8.503302, 47.349279], [8.503301, 47.349281], [8.503299, 47.349283], [8.503298, 47.349284], [8.503296, 47.349286], [8.503294, 47.349287], [8.503293, 47.349288], [8.50329, 47.349289], [8.503288, 47.34929], [8.503286, 47.349291], [8.503283, 47.349292], [8.503281, 47.349292], [8.503278, 47.349293], [8.503276, 47.349293], [8.503273, 47.349293], [8.50327, 47.349293], [8.503268, 47.349293], [8.503265, 47.349292], [8.503262, 47.349292], [8.503117, 47.349247], [8.502959, 47.349144], [8.502963, 47.349247], [8.503014, 47.349301], [8.503141, 47.349379], [8.503402, 47.34961], [8.503553, 47.349702], [8.503649, 47.349735], [8.503765, 47.349714], [8.503886, 47.349617], [8.50392, 47.349601], [8.503903, 47.349774], [8.503895, 47.349821], [8.503853, 47.349884], [8.503807, 47.349935], [8.503827, 47.349951], [8.503981, 47.349918], [8.504244, 47.349708], [8.504223, 47.350015], [8.50448, 47.349866], [8.504505, 47.350037], [8.504431, 47.350107], [8.504117, 47.35033], [8.504037, 47.3504], [8.503986, 47.350436], [8.503902, 47.350497], [8.503812, 47.350544], [8.50373, 47.350597], [8.503656, 47.350655], [8.503481, 47.350818], [8.503435, 47.350896]]], "type": "MultiLineString"}, "id": "3488", "properties": {}, "type": "Feature"}, {"bbox": [8.547491, 47.41081, 8.548198, 47.411727], "geometry": {"coordinates": [[[8.547491, 47.41081], [8.547582, 47.410868], [8.547665, 47.410931], [8.54774, 47.410998], [8.547805, 47.41107], [8.547861, 47.411145], [8.547907, 47.411224], [8.547877, 47.411236], [8.547849, 47.41125], [8.547823, 47.411266], [8.5478, 47.411283], [8.547778, 47.411301], [8.547759, 47.411321], [8.547743, 47.411342], [8.547729, 47.411363], [8.547718, 47.411385], [8.54771, 47.411408], [8.547705, 47.411431], [8.547703, 47.411455], [8.547704, 47.411478], [8.547708, 47.411502], [8.547715, 47.411525], [8.547725, 47.411547], [8.547738, 47.411569], [8.547754, 47.41159], [8.547772, 47.41161], [8.547793, 47.411629], [8.547816, 47.411646], [8.547841, 47.411662], [8.547868, 47.411677], [8.547897, 47.41169], [8.547928, 47.411701], [8.54796, 47.41171], [8.547993, 47.411717], [8.548027, 47.411722], [8.548061, 47.411725], [8.548095, 47.411727], [8.54813, 47.411726], [8.548164, 47.411723], [8.548198, 47.411718]]], "type": "MultiLineString"}, "id": "3493", "properties": {}, "type": "Feature"}, {"bbox": [8.485408, 47.413077, 8.488141, 47.416196], "geometry": {"coordinates": [[[8.488141, 47.413437], [8.486824, 47.413083], [8.486815, 47.41308], [8.486806, 47.413079], [8.486796, 47.413078], [8.486786, 47.413077], [8.486776, 47.413077], [8.486766, 47.413078], [8.486756, 47.413079], [8.486747, 47.413081], [8.486738, 47.413083], [8.486729, 47.413086], [8.48672, 47.413089], [8.486712, 47.413093], [8.486704, 47.413098], [8.486697, 47.413102], [8.486691, 47.413108], [8.486685, 47.413113], [8.48668, 47.413119], [8.486676, 47.413125], [8.486475, 47.413454], [8.486146, 47.413992], [8.485724, 47.414702], [8.485426, 47.415196], [8.485418, 47.41521], [8.485413, 47.415224], [8.485409, 47.415239], [8.485408, 47.415253], [8.485408, 47.415268], [8.48541, 47.415282], [8.485414, 47.415297], [8.48542, 47.415311], [8.485427, 47.415324], [8.485767, 47.415862], [8.485783, 47.415885], [8.485802, 47.415907], [8.485823, 47.415928], [8.485847, 47.415947], [8.485874, 47.415965], [8.485902, 47.415981], [8.485932, 47.415996], [8.485964, 47.416009], [8.486468, 47.416196]]], "type": "MultiLineString"}, "id": "3494", "properties": {}, "type": "Feature"}, {"bbox": [8.536281, 47.37588, 8.536558, 47.37662], "geometry": {"coordinates": [[[8.536533, 47.37662], [8.536558, 47.376543], [8.536411, 47.376284], [8.536356, 47.376186], [8.536296, 47.376079], [8.536289, 47.376066], [8.536285, 47.376052], [8.536282, 47.376037], [8.536281, 47.376023], [8.536282, 47.376009], [8.536285, 47.375995], [8.536289, 47.375981], [8.536296, 47.375967], [8.536303, 47.375954], [8.536313, 47.375941], [8.536324, 47.375929], [8.536337, 47.375917], [8.536351, 47.375907], [8.536366, 47.375897], [8.536382, 47.375888], [8.5364, 47.37588]]], "type": "MultiLineString"}, "id": "3495", "properties": {}, "type": "Feature"}, {"bbox": [8.57365, 47.404344, 8.574669, 47.404443], "geometry": {"coordinates": [[[8.57365, 47.404344], [8.573927, 47.404375], [8.574204, 47.404408], [8.57448, 47.404443], [8.574669, 47.404414]]], "type": "MultiLineString"}, "id": "3496", "properties": {}, "type": "Feature"}, {"bbox": [8.573598, 47.394272, 8.579171, 47.39829], "geometry": {"coordinates": [[[8.573598, 47.39829], [8.573736, 47.398099], [8.573789, 47.398031], [8.573851, 47.397966], [8.573919, 47.397905], [8.574197, 47.397672], [8.57425, 47.397628], [8.574385, 47.397515], [8.574426, 47.397478], [8.574462, 47.397438], [8.574493, 47.397397], [8.574519, 47.397354], [8.57454, 47.39731], [8.574587, 47.397189], [8.574619, 47.397118], [8.574656, 47.397048], [8.574699, 47.39698], [8.574872, 47.396728], [8.574946, 47.396632], [8.575032, 47.396541], [8.575131, 47.396456], [8.57524, 47.396377], [8.575359, 47.396306], [8.575488, 47.396242], [8.575994, 47.396014], [8.57629, 47.395891], [8.576599, 47.395784], [8.576919, 47.395693], [8.57748, 47.395549], [8.577512, 47.39554], [8.577567, 47.395522], [8.577619, 47.395501], [8.577668, 47.395477], [8.577714, 47.39545], [8.577757, 47.395421], [8.578844, 47.394604], [8.578896, 47.394563], [8.578943, 47.39452], [8.578987, 47.394475], [8.579125, 47.394322], [8.579171, 47.394272]]], "type": "MultiLineString"}, "id": "3497", "properties": {}, "type": "Feature"}, {"bbox": [8.560449, 47.371063, 8.568148, 47.375509], "geometry": {"coordinates": [[[8.560449, 47.371063], [8.560776, 47.3711], [8.560882, 47.371167], [8.56094, 47.371212], [8.561081, 47.371283], [8.561366, 47.371399], [8.561467, 47.371453], [8.561558, 47.371516], [8.561777, 47.371627], [8.561864, 47.371713], [8.561881, 47.371737], [8.56195, 47.371796], [8.56212, 47.371954], [8.562233, 47.372036], [8.562565, 47.372151], [8.562822, 47.372289], [8.562962, 47.372409], [8.563141, 47.372481], [8.563233, 47.372419], [8.563224, 47.37238], [8.563291, 47.372346], [8.563397, 47.372418], [8.563559, 47.372536], [8.563772, 47.372717], [8.563794, 47.372769], [8.563829, 47.372792], [8.564131, 47.372976], [8.564167, 47.372997], [8.564207, 47.373014], [8.564248, 47.373029], [8.564299, 47.373046], [8.564348, 47.373065], [8.564396, 47.373085], [8.564584, 47.373173], [8.564605, 47.373184], [8.564625, 47.373195], [8.564643, 47.373208], [8.564659, 47.373222], [8.564832, 47.37338], [8.564868, 47.373411], [8.564905, 47.37344], [8.564945, 47.373469], [8.565096, 47.37357], [8.565125, 47.373588], [8.565157, 47.373604], [8.565191, 47.373619], [8.565226, 47.373631], [8.565263, 47.373641], [8.565301, 47.373649], [8.56532, 47.373653], [8.565338, 47.373658], [8.565356, 47.373664], [8.565373, 47.373671], [8.565389, 47.373679], [8.565404, 47.373688], [8.565473, 47.373762], [8.56552, 47.373864], [8.565575, 47.374032], [8.565581, 47.374045], [8.565587, 47.374058], [8.565596, 47.37407], [8.565606, 47.374081], [8.565618, 47.374092], [8.565631, 47.374103], [8.565645, 47.374112], [8.565727, 47.374161], [8.565748, 47.374175], [8.565767, 47.374191], [8.565784, 47.374207], [8.565799, 47.374224], [8.565837, 47.374275], [8.565848, 47.374288], [8.56586, 47.3743], [8.565874, 47.374311], [8.56589, 47.374322], [8.565907, 47.374331], [8.565925, 47.37434], [8.566106, 47.374415], [8.566232, 47.374477], [8.566248, 47.374485], [8.566263, 47.374495], [8.566276, 47.374505], [8.566289, 47.374516], [8.566299, 47.374527], [8.566329, 47.374562], [8.566347, 47.374585], [8.566361, 47.374609], [8.566373, 47.374634], [8.566382, 47.374659], [8.566387, 47.374685], [8.566389, 47.374711], [8.566387, 47.374737], [8.566383, 47.374763], [8.566375, 47.374789], [8.566351, 47.374849], [8.56635, 47.374854], [8.566349, 47.37486], [8.566349, 47.374865], [8.566349, 47.37487], [8.56635, 47.374876], [8.566352, 47.374881], [8.566355, 47.374886], [8.566358, 47.374891], [8.566362, 47.374895], [8.566366, 47.3749], [8.566371, 47.374904], [8.566377, 47.374908], [8.566383, 47.374911], [8.566389, 47.374914], [8.566396, 47.374917], [8.566403, 47.374919], [8.566627, 47.374981], [8.56672, 47.375013], [8.566814, 47.37502], [8.567021, 47.3751], [8.567214, 47.37522], [8.567332, 47.375305], [8.567495, 47.375455], [8.567594, 47.375509], [8.567705, 47.375501], [8.567844, 47.37549], [8.567861, 47.375489], [8.567878, 47.375487], [8.567894, 47.375484], [8.56791, 47.37548], [8.567925, 47.375475], [8.56794, 47.375469], [8.567954, 47.375463], [8.567967, 47.375455], [8.567979, 47.375447], [8.56799, 47.375439], [8.568, 47.375429], [8.568008, 47.375419], [8.568015, 47.375409], [8.568021, 47.375398], [8.568026, 47.375387], [8.568029, 47.375376], [8.568031, 47.375364], [8.568031, 47.375353], [8.56803, 47.375341], [8.56811, 47.375345], [8.568148, 47.375352]]], "type": "MultiLineString"}, "id": "3513", "properties": {}, "type": "Feature"}, {"bbox": [8.507106, 47.411014, 8.507908, 47.411677], "geometry": {"coordinates": [[[8.507908, 47.411677], [8.507201, 47.411278], [8.507182, 47.411264], [8.507165, 47.411249], [8.50715, 47.411233], [8.507137, 47.411216], [8.507126, 47.411198], [8.507118, 47.41118], [8.507112, 47.411161], [8.507108, 47.411143], [8.507106, 47.411124], [8.507107, 47.411105], [8.507111, 47.411086], [8.507116, 47.411067], [8.507124, 47.411049], [8.507135, 47.411031], [8.507147, 47.411014]]], "type": "MultiLineString"}, "id": "3517", "properties": {}, "type": "Feature"}, {"bbox": [8.469444, 47.415177, 8.474252, 47.416368], "geometry": {"coordinates": [[[8.474252, 47.415191], [8.474124, 47.415184], [8.473994, 47.415177], [8.471672, 47.415405], [8.471523, 47.415423], [8.471168, 47.415459], [8.471122, 47.415466], [8.471078, 47.415475], [8.471035, 47.415487], [8.470994, 47.415502], [8.470955, 47.415519], [8.470918, 47.415538], [8.470884, 47.415559], [8.470853, 47.415583], [8.470825, 47.415608], [8.4708, 47.415635], [8.470779, 47.415663], [8.470762, 47.415692], [8.470748, 47.415722], [8.470739, 47.415753], [8.470734, 47.415785], [8.470732, 47.415816], [8.470733, 47.415838], [8.470769, 47.416027], [8.470777, 47.416049], [8.470781, 47.416072], [8.470784, 47.416095], [8.470783, 47.416118], [8.470779, 47.416141], [8.470772, 47.416164], [8.470763, 47.416186], [8.47075, 47.416208], [8.470735, 47.416228], [8.470718, 47.416248], [8.470698, 47.416267], [8.470675, 47.416284], [8.470651, 47.4163], [8.470625, 47.416315], [8.470596, 47.416328], [8.470567, 47.416339], [8.470536, 47.416349], [8.470504, 47.416356], [8.470471, 47.416362], [8.470437, 47.416366], [8.470403, 47.416368], [8.470369, 47.416368], [8.470335, 47.416366], [8.470302, 47.416362], [8.470269, 47.416356], [8.470237, 47.416348], [8.470206, 47.416338], [8.470192, 47.416334], [8.469536, 47.416122], [8.469444, 47.416092]]], "type": "MultiLineString"}, "id": "3518", "properties": {}, "type": "Feature"}, {"bbox": [8.515992, 47.377124, 8.516031, 47.37713], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.516031, 47.37713]]], "type": "MultiLineString"}, "id": "3519", "properties": {}, "type": "Feature"}, {"bbox": [8.54991, 47.415835, 8.550943, 47.41629], "geometry": {"coordinates": [[[8.54991, 47.41629], [8.550943, 47.415835]]], "type": "MultiLineString"}, "id": "3520", "properties": {}, "type": "Feature"}, {"bbox": [8.547811, 47.384421, 8.548898, 47.384797], "geometry": {"coordinates": [[[8.548376, 47.384797], [8.548898, 47.384759], [8.548886, 47.384723], [8.548869, 47.384688], [8.548848, 47.384654], [8.548823, 47.384622], [8.548793, 47.384591], [8.548759, 47.384562], [8.548722, 47.384535], [8.548681, 47.384511], [8.548637, 47.384489], [8.54859, 47.38447], [8.548542, 47.384454], [8.548491, 47.384441], [8.548438, 47.384431], [8.548385, 47.384425], [8.548331, 47.384421], [8.548154, 47.384445], [8.54798, 47.384479], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "3521", "properties": {}, "type": "Feature"}, {"bbox": [8.585487, 47.40334, 8.585712, 47.40391], "geometry": {"coordinates": [[[8.585712, 47.40334], [8.585706, 47.403427], [8.585687, 47.403512], [8.585657, 47.403597], [8.585614, 47.403678], [8.585573, 47.403724], [8.585532, 47.40377], [8.585491, 47.403817], [8.585489, 47.403823], [8.585488, 47.403829], [8.585487, 47.403835], [8.585488, 47.403841], [8.585489, 47.403847], [8.585491, 47.403853], [8.585493, 47.403859], [8.585497, 47.403865], [8.585501, 47.403871], [8.585506, 47.403876], [8.585512, 47.403881], [8.585518, 47.403885], [8.585525, 47.40389], [8.585532, 47.403893], [8.58554, 47.403897], [8.585548, 47.403899], [8.585577, 47.40391]]], "type": "MultiLineString"}, "id": "3522", "properties": {}, "type": "Feature"}, {"bbox": [8.580778, 47.363974, 8.587881, 47.365954], "geometry": {"coordinates": [[[8.580778, 47.365954], [8.580915, 47.365929], [8.580985, 47.365899], [8.581125, 47.365841], [8.581272, 47.36579], [8.581425, 47.365747], [8.581425, 47.365747], [8.581425, 47.365747], [8.581528, 47.365723], [8.581633, 47.365704], [8.58174, 47.365691], [8.58174, 47.365691], [8.58174, 47.365691], [8.581825, 47.365684], [8.581911, 47.365683], [8.581997, 47.365688], [8.581998, 47.365688], [8.581999, 47.365688], [8.58217, 47.365688], [8.582341, 47.365679], [8.58251, 47.365661], [8.58255, 47.365656], [8.582589, 47.365648], [8.582626, 47.365638], [8.582663, 47.365627], [8.582698, 47.365613], [8.582731, 47.365597], [8.582731, 47.365597], [8.582731, 47.365597], [8.58279, 47.36556], [8.582844, 47.365521], [8.582891, 47.365477], [8.582933, 47.365431], [8.582933, 47.365431], [8.582933, 47.365431], [8.582977, 47.365373], [8.583026, 47.365318], [8.58308, 47.365264], [8.583157, 47.365196], [8.583233, 47.365128], [8.583309, 47.365059], [8.583426, 47.36496], [8.583546, 47.364862], [8.583668, 47.364766], [8.583826, 47.364646], [8.58399, 47.36453], [8.584158, 47.364416], [8.584262, 47.364349], [8.584367, 47.364281], [8.584471, 47.364214], [8.584471, 47.364214], [8.584471, 47.364214], [8.584554, 47.364162], [8.584642, 47.364115], [8.584735, 47.364071], [8.584735, 47.364071], [8.584735, 47.364071], [8.584871, 47.364009], [8.584896, 47.364], [8.584922, 47.363992], [8.584948, 47.363985], [8.584976, 47.36398], [8.585004, 47.363977], [8.585032, 47.363975], [8.58506, 47.363974], [8.585089, 47.363976], [8.585117, 47.363979], [8.585144, 47.363983], [8.585231, 47.363999], [8.585316, 47.36402], [8.585398, 47.364046], [8.585476, 47.364076], [8.585551, 47.364111], [8.585621, 47.364149], [8.585695, 47.3642], [8.586536, 47.364774], [8.587094, 47.365123], [8.58737, 47.365321], [8.587807, 47.365491], [8.587827, 47.3655], [8.587847, 47.36551], [8.587865, 47.365521], [8.587881, 47.365534]]], "type": "MultiLineString"}, "id": "3523", "properties": {}, "type": "Feature"}, {"bbox": [8.544624, 47.370733, 8.546681, 47.371825], "geometry": {"coordinates": [[[8.546681, 47.370733], [8.546405, 47.370801], [8.545842, 47.371071], [8.545488, 47.371297], [8.545156, 47.371526], [8.5449, 47.371579], [8.544714, 47.371755], [8.544624, 47.371825]]], "type": "MultiLineString"}, "id": "3524", "properties": {}, "type": "Feature"}, {"bbox": [8.537221, 47.414835, 8.538748, 47.415295], "geometry": {"coordinates": [[[8.537221, 47.415295], [8.537979, 47.41525], [8.537926, 47.414842], [8.538022, 47.414839], [8.538097, 47.414835], [8.538144, 47.41524], [8.538748, 47.415205]]], "type": "MultiLineString"}, "id": "3525", "properties": {}, "type": "Feature"}, {"bbox": [8.515385, 47.341875, 8.518323, 47.349101], "geometry": {"coordinates": [[[8.515385, 47.349101], [8.515427, 47.348984], [8.515446, 47.348912], [8.515456, 47.348882], [8.515471, 47.348851], [8.515489, 47.348822], [8.51552, 47.34878], [8.515554, 47.348739], [8.515592, 47.3487], [8.515736, 47.34856], [8.515785, 47.348506], [8.515828, 47.34845], [8.515862, 47.348392], [8.515888, 47.348331], [8.515907, 47.348269], [8.515907, 47.348269], [8.515996, 47.347881], [8.515997, 47.347875], [8.515998, 47.347872], [8.515999, 47.347868], [8.516041, 47.347631], [8.51611, 47.347373], [8.516147, 47.347286], [8.51619, 47.347199], [8.516239, 47.347114], [8.516239, 47.347113], [8.516239, 47.347113], [8.516406, 47.34686], [8.516441, 47.346806], [8.516472, 47.346751], [8.516499, 47.346696], [8.516591, 47.346474], [8.516599, 47.346442], [8.516602, 47.346409], [8.5166, 47.346376], [8.516595, 47.346343], [8.51659, 47.346249], [8.516591, 47.346203], [8.516595, 47.346157], [8.516601, 47.346111], [8.516605, 47.346092], [8.516609, 47.346072], [8.516614, 47.346053], [8.516642, 47.345928], [8.516654, 47.345871], [8.516663, 47.345814], [8.516667, 47.345757], [8.516667, 47.345756], [8.516667, 47.345756], [8.516676, 47.34558], [8.516681, 47.345545], [8.51669, 47.345511], [8.516705, 47.345477], [8.516723, 47.345444], [8.516746, 47.345413], [8.516773, 47.345383], [8.516773, 47.345382], [8.516956, 47.345199], [8.517028, 47.345199], [8.517137, 47.345204], [8.517196, 47.345206], [8.517256, 47.345205], [8.517316, 47.345202], [8.51751, 47.34519], [8.517554, 47.345186], [8.517597, 47.345179], [8.517639, 47.345169], [8.517654, 47.345164], [8.517668, 47.345159], [8.517682, 47.345152], [8.517694, 47.345145], [8.517706, 47.345137], [8.517716, 47.345128], [8.517726, 47.345119], [8.517734, 47.345109], [8.51774, 47.345099], [8.517794, 47.345005], [8.517932, 47.344701], [8.518039, 47.344467], [8.518067, 47.344403], [8.518178, 47.344163], [8.518278, 47.343877], [8.518309, 47.34373], [8.518323, 47.343522], [8.518323, 47.343458], [8.518298, 47.34313], [8.518266, 47.342909], [8.518253, 47.342861], [8.518226, 47.342807], [8.517994, 47.342462], [8.51797, 47.342421], [8.517936, 47.342354], [8.517671, 47.341875]]], "type": "MultiLineString"}, "id": "3526", "properties": {}, "type": "Feature"}, {"bbox": [8.541502, 47.382698, 8.541806, 47.382717], "geometry": {"coordinates": [[[8.541502, 47.382717], [8.54179, 47.382698], [8.541806, 47.382699]]], "type": "MultiLineString"}, "id": "3527", "properties": {}, "type": "Feature"}, {"bbox": [8.478132, 47.360655, 8.484383, 47.36212], "geometry": {"coordinates": [[[8.478132, 47.360655], [8.478141, 47.360759], [8.478151, 47.360806], [8.478163, 47.360839], [8.478178, 47.360871], [8.478198, 47.360902], [8.478222, 47.360931], [8.478249, 47.360959], [8.478326, 47.361032], [8.478369, 47.361069], [8.478418, 47.361103], [8.47847, 47.361134], [8.478527, 47.361162], [8.478586, 47.361187], [8.478649, 47.361207], [8.478715, 47.361224], [8.478782, 47.361237], [8.478851, 47.361245], [8.479716, 47.361324], [8.48086, 47.361455], [8.481114, 47.361483], [8.482302, 47.361616], [8.483882, 47.361802], [8.483935, 47.36181], [8.483985, 47.361821], [8.484035, 47.361835], [8.484082, 47.361852], [8.484127, 47.361872], [8.484169, 47.361894], [8.484208, 47.361919], [8.484244, 47.361945], [8.484276, 47.361974], [8.484305, 47.362005], [8.484329, 47.362038], [8.484383, 47.36212]]], "type": "MultiLineString"}, "id": "3552", "properties": {}, "type": "Feature"}, {"bbox": [8.523047, 47.392247, 8.523959, 47.392766], "geometry": {"coordinates": [[[8.523937, 47.392247], [8.523946, 47.392264], [8.523952, 47.392281], [8.523957, 47.392299], [8.523959, 47.392317], [8.523959, 47.392335], [8.523956, 47.392353], [8.523951, 47.39237], [8.523944, 47.392388], [8.523935, 47.392404], [8.523924, 47.392421], [8.52391, 47.392436], [8.523895, 47.392451], [8.523878, 47.392464], [8.523859, 47.392477], [8.523838, 47.392488], [8.523816, 47.392498], [8.523793, 47.392507], [8.523244, 47.392678], [8.523191, 47.392696], [8.523141, 47.392717], [8.523093, 47.39274], [8.523047, 47.392766]]], "type": "MultiLineString"}, "id": "3553", "properties": {}, "type": "Feature"}, {"bbox": [8.570462, 47.402825, 8.571655, 47.403701], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571655, 47.403272], [8.5712, 47.403035], [8.570787, 47.40284], [8.570462, 47.402825]]], "type": "MultiLineString"}, "id": "3558", "properties": {}, "type": "Feature"}, {"bbox": [8.48991, 47.388671, 8.490566, 47.390347], "geometry": {"coordinates": [[[8.490566, 47.390347], [8.490476, 47.390072], [8.49, 47.388853], [8.48991, 47.388671]]], "type": "MultiLineString"}, "id": "3560", "properties": {}, "type": "Feature"}, {"bbox": [8.611457, 47.360012, 8.619235, 47.361193], "geometry": {"coordinates": [[[8.611457, 47.360012], [8.611557, 47.360205], [8.6119, 47.360641], [8.612037, 47.360799], [8.612037, 47.360799], [8.612059, 47.360821], [8.612084, 47.360843], [8.612112, 47.360863], [8.612142, 47.360881], [8.612174, 47.360897], [8.612208, 47.360912], [8.612244, 47.360924], [8.612282, 47.360934], [8.61232, 47.360942], [8.612359, 47.360948], [8.612399, 47.360951], [8.61244, 47.360952], [8.61248, 47.360951], [8.61252, 47.360947], [8.61252, 47.360947], [8.612865, 47.360903], [8.61297, 47.360891], [8.613075, 47.360876], [8.61318, 47.360859], [8.6132, 47.360856], [8.613553, 47.360782], [8.614063, 47.360669], [8.614338, 47.360614], [8.614411, 47.360602], [8.614485, 47.360593], [8.614559, 47.360587], [8.614634, 47.360585], [8.614709, 47.360586], [8.614784, 47.360591], [8.615631, 47.360662], [8.615777, 47.360665], [8.615847, 47.360663], [8.615917, 47.36066], [8.615987, 47.360656], [8.616014, 47.360654], [8.616041, 47.360651], [8.616069, 47.360648], [8.616069, 47.360648], [8.616624, 47.360589], [8.616703, 47.360583], [8.616783, 47.360581], [8.616863, 47.360584], [8.616942, 47.360591], [8.61702, 47.360602], [8.617096, 47.360618], [8.617401, 47.360691], [8.618177, 47.3609], [8.618335, 47.360949], [8.618707, 47.361076], [8.618777, 47.361099], [8.618849, 47.361118], [8.618923, 47.361132], [8.618998, 47.361143], [8.619235, 47.361193]]], "type": "MultiLineString"}, "id": "3561", "properties": {}, "type": "Feature"}, {"bbox": [8.535464, 47.340354, 8.536293, 47.342078], "geometry": {"coordinates": [[[8.535464, 47.342078], [8.535547, 47.342021], [8.536021, 47.341271], [8.536293, 47.340354]]], "type": "MultiLineString"}, "id": "3563", "properties": {}, "type": "Feature"}, {"bbox": [8.547552, 47.370685, 8.547799, 47.370888], "geometry": {"coordinates": [[[8.547623, 47.370799], [8.547701, 47.370888], [8.547765, 47.370867], [8.547799, 47.370853], [8.547646, 47.370685], [8.547552, 47.370722], [8.547623, 47.370799]]], "type": "MultiLineString"}, "id": "3565", "properties": {}, "type": "Feature"}, {"bbox": [8.474218, 47.377507, 8.479128, 47.38127], "geometry": {"coordinates": [[[8.479128, 47.377507], [8.478621, 47.377907], [8.477988, 47.378365], [8.47798, 47.378387], [8.477951, 47.378421], [8.477726, 47.378589], [8.477696, 47.378613], [8.477664, 47.378637], [8.477632, 47.378661], [8.477583, 47.378697], [8.477535, 47.378735], [8.477488, 47.378773], [8.477449, 47.378806], [8.477408, 47.378839], [8.477367, 47.378871], [8.477091, 47.379082], [8.476778, 47.379329], [8.476778, 47.379329], [8.476764, 47.379341], [8.47675, 47.379352], [8.476737, 47.379364], [8.476725, 47.379376], [8.476712, 47.379388], [8.476701, 47.379401], [8.47666, 47.379446], [8.476577, 47.379539], [8.476577, 47.379539], [8.476564, 47.379553], [8.47655, 47.379567], [8.476535, 47.37958], [8.476519, 47.379593], [8.476503, 47.379606], [8.476486, 47.379618], [8.476486, 47.379618], [8.476328, 47.379725], [8.476311, 47.379736], [8.476294, 47.379746], [8.476275, 47.379756], [8.476275, 47.379756], [8.476275, 47.379756], [8.476256, 47.379764], [8.476236, 47.379772], [8.476215, 47.379779], [8.476041, 47.379835], [8.476041, 47.379835], [8.476015, 47.379843], [8.47599, 47.379853], [8.475966, 47.379864], [8.475942, 47.379876], [8.47592, 47.379889], [8.475899, 47.379902], [8.475899, 47.379902], [8.475502, 47.380175], [8.475032, 47.380538], [8.474553, 47.380909], [8.474503, 47.380949], [8.474456, 47.380991], [8.474411, 47.381034], [8.474369, 47.381079], [8.474329, 47.381124], [8.474293, 47.381171], [8.474218, 47.38127]]], "type": "MultiLineString"}, "id": "3566", "properties": {}, "type": "Feature"}, {"bbox": [8.526352, 47.407896, 8.528816, 47.409232], "geometry": {"coordinates": [[[8.528816, 47.409232], [8.528749, 47.409151], [8.528646, 47.409027], [8.528496, 47.40886], [8.52755, 47.40841], [8.52665, 47.407997], [8.526524, 47.407956], [8.526352, 47.407896]]], "type": "MultiLineString"}, "id": "3567", "properties": {}, "type": "Feature"}, {"bbox": [8.542577, 47.411871, 8.544284, 47.412512], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.542738, 47.411918], [8.542686, 47.4119], [8.542632, 47.411884], [8.542577, 47.411871]]], "type": "MultiLineString"}, "id": "3568", "properties": {}, "type": "Feature"}, {"bbox": [8.511656, 47.362907, 8.512189, 47.364156], "geometry": {"coordinates": [[[8.512189, 47.362907], [8.512153, 47.362969], [8.512003, 47.363236], [8.511924, 47.363402], [8.511805, 47.363575], [8.5118, 47.363582], [8.511796, 47.363588], [8.511793, 47.363595], [8.511791, 47.363602], [8.51179, 47.363609], [8.51179, 47.363616], [8.51179, 47.363623], [8.511794, 47.363641], [8.5118, 47.363659], [8.511808, 47.363676], [8.511826, 47.363701], [8.511894, 47.363778], [8.511898, 47.363786], [8.511902, 47.363795], [8.511904, 47.363803], [8.511905, 47.363812], [8.511905, 47.363821], [8.511904, 47.36383], [8.511902, 47.363839], [8.511898, 47.363847], [8.511894, 47.363855], [8.511869, 47.363912], [8.511848, 47.363951], [8.511822, 47.363989], [8.511791, 47.364026], [8.511688, 47.364122], [8.511656, 47.364156]]], "type": "MultiLineString"}, "id": "3571", "properties": {}, "type": "Feature"}, {"bbox": [8.567231, 47.366542, 8.568708, 47.367614], "geometry": {"coordinates": [[[8.568708, 47.366643], [8.568558, 47.366542], [8.568531, 47.366557], [8.568492, 47.366549], [8.567823, 47.366994], [8.567757, 47.36702], [8.567694, 47.36705], [8.567636, 47.367083], [8.567582, 47.367119], [8.567532, 47.367159], [8.567488, 47.367201], [8.56745, 47.367246], [8.567417, 47.367293], [8.567392, 47.367328], [8.56737, 47.367364], [8.567351, 47.367401], [8.567231, 47.367614]]], "type": "MultiLineString"}, "id": "3573", "properties": {}, "type": "Feature"}, {"bbox": [8.494099, 47.365007, 8.497519, 47.365087], "geometry": {"coordinates": [[[8.497519, 47.365014], [8.497243, 47.365014], [8.496916, 47.365064], [8.49656, 47.365087], [8.496385, 47.365081], [8.496206, 47.365022], [8.496101, 47.365007], [8.495861, 47.365007], [8.495765, 47.365007], [8.495021, 47.365014], [8.494759, 47.365024], [8.494497, 47.365045], [8.4943, 47.365068], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "3574", "properties": {}, "type": "Feature"}, {"bbox": [8.492498, 47.403788, 8.493906, 47.404682], "geometry": {"coordinates": [[[8.492833, 47.404682], [8.492814, 47.404672], [8.492797, 47.40466], [8.492782, 47.404648], [8.492767, 47.404635], [8.492755, 47.404622], [8.492744, 47.404607], [8.492506, 47.40427], [8.492502, 47.404262], [8.4925, 47.404255], [8.492498, 47.404247], [8.492498, 47.40424], [8.492498, 47.404232], [8.492499, 47.404224], [8.492502, 47.404217], [8.492505, 47.40421], [8.49251, 47.404203], [8.492515, 47.404196], [8.492521, 47.404189], [8.492528, 47.404183], [8.492535, 47.404178], [8.492543, 47.404173], [8.492552, 47.404168], [8.492562, 47.404164], [8.492572, 47.40416], [8.492668, 47.404128], [8.492678, 47.404125], [8.492688, 47.404123], [8.492699, 47.404121], [8.49271, 47.40412], [8.492721, 47.40412], [8.492732, 47.40412], [8.492743, 47.404121], [8.492751, 47.404121], [8.492758, 47.404121], [8.492766, 47.40412], [8.492773, 47.404119], [8.49278, 47.404118], [8.492787, 47.404116], [8.492794, 47.404113], [8.4938, 47.40379], [8.49381, 47.403789], [8.493819, 47.403788], [8.493829, 47.403788], [8.493838, 47.403788], [8.493848, 47.403789], [8.493857, 47.40379], [8.493866, 47.403792], [8.493875, 47.403795], [8.493884, 47.403798], [8.493892, 47.403801], [8.493899, 47.403805], [8.493906, 47.403809]]], "type": "MultiLineString"}, "id": "3578", "properties": {}, "type": "Feature"}, {"bbox": [8.493674, 47.385789, 8.496012, 47.38651], "geometry": {"coordinates": [[[8.493674, 47.38651], [8.4937, 47.386497], [8.493726, 47.386485], [8.493752, 47.386473], [8.494024, 47.386393], [8.494294, 47.386309], [8.494562, 47.386222], [8.495912, 47.385806], [8.495945, 47.385799], [8.495978, 47.385793], [8.496012, 47.385789]]], "type": "MultiLineString"}, "id": "3579", "properties": {}, "type": "Feature"}, {"bbox": [8.583794, 47.404408, 8.585505, 47.404843], "geometry": {"coordinates": [[[8.583794, 47.404408], [8.583999, 47.404447], [8.585435, 47.404772], [8.585443, 47.404773], [8.58545, 47.404775], [8.585458, 47.404778], [8.585465, 47.404781], [8.585471, 47.404784], [8.585477, 47.404788], [8.585483, 47.404792], [8.585488, 47.404796], [8.585492, 47.404801], [8.585496, 47.404806], [8.585499, 47.404811], [8.585502, 47.404816], [8.585503, 47.404821], [8.585505, 47.404827], [8.585505, 47.404832], [8.585505, 47.404838], [8.585503, 47.404843]]], "type": "MultiLineString"}, "id": "3580", "properties": {}, "type": "Feature"}, {"bbox": [8.58702, 47.358245, 8.588, 47.359702], "geometry": {"coordinates": [[[8.587914, 47.358245], [8.587926, 47.35825], [8.587938, 47.358257], [8.587949, 47.358264], [8.58796, 47.358272], [8.587969, 47.35828], [8.587977, 47.358289], [8.587984, 47.358298], [8.587989, 47.358308], [8.587994, 47.358317], [8.587997, 47.358328], [8.587999, 47.358338], [8.588, 47.358348], [8.58737, 47.359231], [8.587273, 47.359313], [8.587036, 47.35965], [8.58702, 47.359702]]], "type": "MultiLineString"}, "id": "3581", "properties": {}, "type": "Feature"}, {"bbox": [8.563114, 47.361332, 8.563443, 47.362086], "geometry": {"coordinates": [[[8.563443, 47.361332], [8.563406, 47.361448], [8.563196, 47.361969], [8.563114, 47.362086]]], "type": "MultiLineString"}, "id": "3583", "properties": {}, "type": "Feature"}, {"bbox": [8.559245, 47.402064, 8.56268, 47.402979], "geometry": {"coordinates": [[[8.56268, 47.402064], [8.562671, 47.402073], [8.562649, 47.402097], [8.562624, 47.40212], [8.562596, 47.402141], [8.562566, 47.40216], [8.562533, 47.402177], [8.562416, 47.402227], [8.562294, 47.402271], [8.562167, 47.402309], [8.561775, 47.402412], [8.561698, 47.40243], [8.561618, 47.402443], [8.561538, 47.402452], [8.56114, 47.402486], [8.56076, 47.402533], [8.560375, 47.402596], [8.560302, 47.402607], [8.560229, 47.402617], [8.560155, 47.402626], [8.560064, 47.402638], [8.559975, 47.402656], [8.559888, 47.402679], [8.559804, 47.402706], [8.559724, 47.402737], [8.559648, 47.402773], [8.559245, 47.402979]]], "type": "MultiLineString"}, "id": "3584", "properties": {}, "type": "Feature"}, {"bbox": [8.538016, 47.366469, 8.538202, 47.366555], "geometry": {"coordinates": [[[8.538016, 47.366469], [8.53815, 47.366536], [8.538202, 47.366555]]], "type": "MultiLineString"}, "id": "3596", "properties": {}, "type": "Feature"}, {"bbox": [8.527621, 47.358588, 8.53128, 47.359487], "geometry": {"coordinates": [[[8.527621, 47.358588], [8.527683, 47.358609], [8.527964, 47.358709], [8.528412, 47.358867], [8.528704, 47.359029], [8.528926, 47.359171], [8.528973, 47.359197], [8.529022, 47.35922], [8.529074, 47.35924], [8.529129, 47.359257], [8.529186, 47.359271], [8.529244, 47.359282], [8.529776, 47.359274], [8.530314, 47.359266], [8.53128, 47.359487]]], "type": "MultiLineString"}, "id": "3597", "properties": {}, "type": "Feature"}, {"bbox": [8.529123, 47.424816, 8.533611, 47.425891], "geometry": {"coordinates": [[[8.533611, 47.425857], [8.533572, 47.425854], [8.533559, 47.425853], [8.533546, 47.425853], [8.533533, 47.425854], [8.53352, 47.425856], [8.533507, 47.425858], [8.533495, 47.425862], [8.533454, 47.425874], [8.533433, 47.42588], [8.53341, 47.425885], [8.533388, 47.425888], [8.533365, 47.42589], [8.533342, 47.425891], [8.533319, 47.42589], [8.533296, 47.425888], [8.533273, 47.425885], [8.533251, 47.42588], [8.533229, 47.425874], [8.533145, 47.425849], [8.533117, 47.425841], [8.533089, 47.425835], [8.53306, 47.425831], [8.533031, 47.425828], [8.533001, 47.425827], [8.532972, 47.425828], [8.532942, 47.42583], [8.532913, 47.425834], [8.532797, 47.425854], [8.532756, 47.42586], [8.532714, 47.425863], [8.532672, 47.425865], [8.53263, 47.425864], [8.532401, 47.425854], [8.532362, 47.425851], [8.532324, 47.425846], [8.532286, 47.42584], [8.532264, 47.425836], [8.53194, 47.425776], [8.5319, 47.42577], [8.531859, 47.425766], [8.531818, 47.425766], [8.531779, 47.425766], [8.531739, 47.425766], [8.5317, 47.425764], [8.531347, 47.42574], [8.531318, 47.425739], [8.531289, 47.42574], [8.531261, 47.425743], [8.531156, 47.425758], [8.531128, 47.425761], [8.5311, 47.425763], [8.531072, 47.425763], [8.531043, 47.425762], [8.530878, 47.425751], [8.530871, 47.42575], [8.530865, 47.42575], [8.530858, 47.425751], [8.530851, 47.425752], [8.530845, 47.425753], [8.530839, 47.425754], [8.530833, 47.425756], [8.530827, 47.425759], [8.530821, 47.425761], [8.530811, 47.425766], [8.5308, 47.42577], [8.530789, 47.425774], [8.530777, 47.425776], [8.530765, 47.425779], [8.530753, 47.42578], [8.530741, 47.425781], [8.530728, 47.42578], [8.529859, 47.425748], [8.529853, 47.425747], [8.529846, 47.425747], [8.52984, 47.425745], [8.529833, 47.425744], [8.529827, 47.425742], [8.529821, 47.42574], [8.529816, 47.425737], [8.529811, 47.425734], [8.529806, 47.425731], [8.529802, 47.425727], [8.529724, 47.425659], [8.529708, 47.425645], [8.52969, 47.425631], [8.529672, 47.425617], [8.529662, 47.42561], [8.529653, 47.425602], [8.529645, 47.425593], [8.529639, 47.425584], [8.529634, 47.425575], [8.52963, 47.425565], [8.529621, 47.425544], [8.52961, 47.425524], [8.529597, 47.425505], [8.529581, 47.425487], [8.529563, 47.425469], [8.529523, 47.425438], [8.529481, 47.425409], [8.529434, 47.425382], [8.529304, 47.425314], [8.52929, 47.425305], [8.529276, 47.425296], [8.529263, 47.425286], [8.529252, 47.425275], [8.529236, 47.425261], [8.529218, 47.425247], [8.529198, 47.425234], [8.529192, 47.425231], [8.529186, 47.425226], [8.529181, 47.425222], [8.529177, 47.425217], [8.529173, 47.425212], [8.52917, 47.425207], [8.529168, 47.425202], [8.529166, 47.425196], [8.529166, 47.425191], [8.529165, 47.425185], [8.52917, 47.425043], [8.52917, 47.425034], [8.529168, 47.425024], [8.529165, 47.425014], [8.52916, 47.425005], [8.529154, 47.424996], [8.529143, 47.424978], [8.529135, 47.42496], [8.529128, 47.424942], [8.529125, 47.424923], [8.529123, 47.424904], [8.529125, 47.424885], [8.529129, 47.424866], [8.529135, 47.424848], [8.529148, 47.424816]]], "type": "MultiLineString"}, "id": "3598", "properties": {}, "type": "Feature"}, {"bbox": [8.531048, 47.349876, 8.534313, 47.350274], "geometry": {"coordinates": [[[8.534313, 47.350274], [8.533131, 47.350182], [8.532235, 47.350121], [8.531969, 47.350096], [8.531943, 47.350069], [8.53129, 47.350022], [8.531148, 47.350003], [8.531143, 47.350003], [8.531137, 47.350002], [8.531131, 47.350002], [8.531125, 47.350001], [8.53112, 47.349999], [8.531115, 47.349997], [8.53111, 47.349995], [8.531105, 47.349993], [8.531101, 47.34999], [8.531097, 47.349988], [8.531093, 47.349985], [8.53109, 47.349981], [8.531087, 47.349978], [8.531084, 47.349974], [8.531082, 47.34997], [8.531081, 47.349967], [8.53108, 47.349963], [8.531079, 47.349959], [8.531079, 47.349955], [8.531091, 47.349924], [8.531092, 47.34992], [8.531092, 47.349917], [8.531092, 47.349913], [8.531091, 47.349909], [8.531089, 47.349905], [8.531087, 47.349902], [8.531085, 47.349898], [8.531082, 47.349895], [8.531079, 47.349892], [8.531076, 47.349889], [8.531072, 47.349886], [8.531068, 47.349883], [8.531063, 47.349881], [8.531058, 47.349879], [8.531053, 47.349878], [8.531048, 47.349876]]], "type": "MultiLineString"}, "id": "3599", "properties": {}, "type": "Feature"}, {"bbox": [8.568864, 47.365014, 8.569026, 47.365573], "geometry": {"coordinates": [[[8.569026, 47.365014], [8.568864, 47.365076], [8.56895, 47.36523], [8.568917, 47.365414], [8.568909, 47.365573]]], "type": "MultiLineString"}, "id": "3603", "properties": {}, "type": "Feature"}, {"bbox": [8.605861, 47.363698, 8.61645, 47.3677], "geometry": {"coordinates": [[[8.605861, 47.365419], [8.606132, 47.36523], [8.606202, 47.365188], [8.606269, 47.365143], [8.606333, 47.365096], [8.606417, 47.365034], [8.606505, 47.364975], [8.606596, 47.364918], [8.606665, 47.364877], [8.606735, 47.364837], [8.606807, 47.364798], [8.60686, 47.36477], [8.606912, 47.36474], [8.606962, 47.36471], [8.606998, 47.364686], [8.607033, 47.364662], [8.607065, 47.364637], [8.607122, 47.364587], [8.607175, 47.364536], [8.607223, 47.364482], [8.607264, 47.364434], [8.607308, 47.364388], [8.607355, 47.364343], [8.607395, 47.364306], [8.607435, 47.36427], [8.607476, 47.364233], [8.607491, 47.364219], [8.607503, 47.364204], [8.607514, 47.364189], [8.607523, 47.364172], [8.607529, 47.364156], [8.607541, 47.364119], [8.607552, 47.364081], [8.607562, 47.364043], [8.607573, 47.364], [8.607585, 47.363957], [8.607598, 47.363914], [8.607606, 47.363891], [8.607617, 47.363869], [8.607631, 47.363847], [8.607647, 47.363826], [8.607667, 47.363807], [8.607688, 47.363788], [8.607712, 47.363771], [8.607739, 47.363756], [8.607778, 47.36374], [8.607819, 47.363727], [8.607861, 47.363716], [8.607904, 47.363708], [8.607949, 47.363702], [8.607994, 47.363699], [8.608039, 47.363698], [8.608084, 47.3637], [8.608183, 47.363712], [8.608279, 47.36373], [8.608373, 47.363754], [8.608462, 47.363784], [8.608516, 47.363805], [8.608569, 47.363828], [8.608619, 47.363852], [8.608718, 47.363902], [8.608818, 47.363951], [8.608918, 47.364], [8.60899, 47.364032], [8.609066, 47.36406], [8.609144, 47.364085], [8.609186, 47.364095], [8.609228, 47.364104], [8.60927, 47.364112], [8.609374, 47.364127], [8.60948, 47.364137], [8.609586, 47.364144], [8.609621, 47.364146], [8.609657, 47.364148], [8.609693, 47.364152], [8.609789, 47.364159], [8.609887, 47.364162], [8.609984, 47.364161], [8.609984, 47.364161], [8.609984, 47.364161], [8.610089, 47.364159], [8.610193, 47.364156], [8.610298, 47.364152], [8.610328, 47.364151], [8.610359, 47.364152], [8.610389, 47.364155], [8.610418, 47.36416], [8.610476, 47.364172], [8.610534, 47.364185], [8.61059, 47.3642], [8.610664, 47.36422], [8.610739, 47.36424], [8.610813, 47.36426], [8.610885, 47.364277], [8.610959, 47.364292], [8.611034, 47.364303], [8.611164, 47.364321], [8.611294, 47.364339], [8.611424, 47.364357], [8.611498, 47.364366], [8.611572, 47.364372], [8.611646, 47.364377], [8.611734, 47.364381], [8.611821, 47.364385], [8.611909, 47.36439], [8.611964, 47.364392], [8.612098, 47.364411], [8.612313, 47.364452], [8.612599, 47.364536], [8.613048, 47.364677], [8.613923, 47.364924], [8.614828, 47.36523], [8.614951, 47.36526], [8.615143, 47.365281], [8.615514, 47.365321], [8.616282, 47.365471], [8.616376, 47.365525], [8.616436, 47.365587], [8.61645, 47.365721], [8.616409, 47.365958], [8.616354, 47.366076], [8.616293, 47.366199], [8.616192, 47.366369], [8.616149, 47.3665], [8.616192, 47.366889], [8.616183, 47.366999], [8.616138, 47.36709], [8.616054, 47.36719], [8.615764, 47.367441], [8.61553, 47.3677]]], "type": "MultiLineString"}, "id": "3607", "properties": {}, "type": "Feature"}, {"bbox": [8.525586, 47.342265, 8.526126, 47.342613], "geometry": {"coordinates": [[[8.525586, 47.342265], [8.525645, 47.342331], [8.52608, 47.342546], [8.526126, 47.342613]]], "type": "MultiLineString"}, "id": "3608", "properties": {}, "type": "Feature"}, {"bbox": [8.508783, 47.407863, 8.509994, 47.409564], "geometry": {"coordinates": [[[8.508783, 47.407863], [8.50895, 47.407923], [8.50912, 47.408148], [8.509326, 47.408435], [8.509307, 47.408515], [8.509319, 47.408647], [8.509325, 47.408929], [8.509574, 47.409269], [8.509759, 47.409528], [8.509854, 47.409564], [8.509994, 47.409516]]], "type": "MultiLineString"}, "id": "3612", "properties": {}, "type": "Feature"}, {"bbox": [8.4959, 47.413502, 8.49809, 47.414233], "geometry": {"coordinates": [[[8.4959, 47.414178], [8.496053, 47.414233], [8.496339, 47.414151], [8.496351, 47.414147], [8.496916, 47.413986], [8.497785, 47.41376], [8.497814, 47.413751], [8.497842, 47.413741], [8.497868, 47.413729], [8.497876, 47.413724], [8.497901, 47.41371], [8.497924, 47.413693], [8.497944, 47.413675], [8.497962, 47.413656], [8.49809, 47.413502]]], "type": "MultiLineString"}, "id": "3613", "properties": {}, "type": "Feature"}, {"bbox": [8.486915, 47.378688, 8.489223, 47.380001], "geometry": {"coordinates": [[[8.489223, 47.378688], [8.489015, 47.378789], [8.487123, 47.379897], [8.486915, 47.380001]]], "type": "MultiLineString"}, "id": "3619", "properties": {}, "type": "Feature"}, {"bbox": [8.509039, 47.371721, 8.509233, 47.372109], "geometry": {"coordinates": [[[8.509091, 47.371721], [8.509043, 47.371874], [8.50904, 47.371883], [8.509039, 47.371892], [8.509039, 47.371901], [8.50904, 47.371911], [8.509042, 47.37192], [8.509046, 47.371932], [8.509052, 47.371943], [8.50906, 47.371954], [8.509069, 47.371965], [8.509117, 47.37202], [8.509143, 47.372042], [8.509233, 47.372109]]], "type": "MultiLineString"}, "id": "3622", "properties": {}, "type": "Feature"}, {"bbox": [8.495096, 47.368234, 8.495614, 47.369169], "geometry": {"coordinates": [[[8.495097, 47.369169], [8.495096, 47.369137], [8.495098, 47.369105], [8.495105, 47.369074], [8.495116, 47.369043], [8.495131, 47.369012], [8.495151, 47.368983], [8.495174, 47.368955], [8.4952, 47.368929], [8.49523, 47.368904], [8.495336, 47.368842], [8.495448, 47.368786], [8.495566, 47.368736], [8.495573, 47.368733], [8.495579, 47.368731], [8.495585, 47.368728], [8.49559, 47.368724], [8.495595, 47.36872], [8.4956, 47.368717], [8.495603, 47.368712], [8.495607, 47.368708], [8.49561, 47.368703], [8.495612, 47.368698], [8.495613, 47.368694], [8.495614, 47.368689], [8.495614, 47.368684], [8.495614, 47.368679], [8.495613, 47.368674], [8.495611, 47.368669], [8.495609, 47.368664], [8.495606, 47.36866], [8.495602, 47.368655], [8.495598, 47.368651], [8.495512, 47.368547], [8.49543, 47.368441], [8.495352, 47.368334], [8.495326, 47.368306], [8.495296, 47.36828], [8.495262, 47.368256], [8.495226, 47.368234]]], "type": "MultiLineString"}, "id": "3628", "properties": {}, "type": "Feature"}, {"bbox": [8.50508, 47.372552, 8.50591, 47.373096], "geometry": {"coordinates": [[[8.50508, 47.372552], [8.50519, 47.372645], [8.505415, 47.372834], [8.505551, 47.372945], [8.505583, 47.372967], [8.505618, 47.372987], [8.505655, 47.373006], [8.505694, 47.373022], [8.505734, 47.373036], [8.505766, 47.373042], [8.505797, 47.373049], [8.505827, 47.373059], [8.505856, 47.373069], [8.505884, 47.373082], [8.50591, 47.373096]]], "type": "MultiLineString"}, "id": "3629", "properties": {}, "type": "Feature"}, {"bbox": [8.533261, 47.383431, 8.534952, 47.384474], "geometry": {"coordinates": [[[8.533261, 47.383431], [8.533658, 47.383668], [8.534015, 47.383892], [8.53418, 47.383993], [8.534952, 47.384474]]], "type": "MultiLineString"}, "id": "3633", "properties": {}, "type": "Feature"}, {"bbox": [8.564974, 47.357963, 8.572543, 47.359706], "geometry": {"coordinates": [[[8.564974, 47.359624], [8.565097, 47.359622], [8.565219, 47.359627], [8.565341, 47.359639], [8.565461, 47.359658], [8.565527, 47.359677], [8.565594, 47.359691], [8.565664, 47.3597], [8.565734, 47.359706], [8.565772, 47.359702], [8.56581, 47.359696], [8.565847, 47.359689], [8.565882, 47.359678], [8.565916, 47.359666], [8.56604, 47.359622], [8.566146, 47.359578], [8.566262, 47.359516], [8.566114, 47.359388], [8.566102, 47.359372], [8.566357, 47.359153], [8.566507, 47.359029], [8.566643, 47.358917], [8.566662, 47.358901], [8.566684, 47.358885], [8.566707, 47.358872], [8.566733, 47.358859], [8.566759, 47.358849], [8.56683, 47.358813], [8.566895, 47.358774], [8.566954, 47.35873], [8.567051, 47.358643], [8.567065, 47.358625], [8.567081, 47.358607], [8.5671, 47.358591], [8.56712, 47.358576], [8.567143, 47.358562], [8.567167, 47.358549], [8.567192, 47.358537], [8.567219, 47.358528], [8.567247, 47.358519], [8.567276, 47.358513], [8.567306, 47.358508], [8.567336, 47.358505], [8.567367, 47.358504], [8.567406, 47.358506], [8.567445, 47.358511], [8.567483, 47.358518], [8.56752, 47.358528], [8.567555, 47.358539], [8.567768, 47.358592], [8.567782, 47.358594], [8.567796, 47.358598], [8.56781, 47.358602], [8.567823, 47.358607], [8.567835, 47.358612], [8.567847, 47.358618], [8.567858, 47.358625], [8.567868, 47.358633], [8.567877, 47.358641], [8.567885, 47.358649], [8.56794, 47.358703], [8.567949, 47.358712], [8.56796, 47.358721], [8.567971, 47.358729], [8.567984, 47.358736], [8.567998, 47.358742], [8.568012, 47.358748], [8.568027, 47.358753], [8.568042, 47.358757], [8.568058, 47.35876], [8.568074, 47.358762], [8.568379, 47.358796], [8.568462, 47.358795], [8.568604, 47.358799], [8.568991, 47.358745], [8.569262, 47.358695], [8.569503, 47.358647], [8.569563, 47.358614], [8.569608, 47.358578], [8.569694, 47.358466], [8.56967, 47.358347], [8.569854, 47.35832], [8.569873, 47.358312], [8.569864, 47.358158], [8.56986, 47.358095], [8.569859, 47.358085], [8.569859, 47.358075], [8.56986, 47.358065], [8.569863, 47.358055], [8.569867, 47.358045], [8.569872, 47.358036], [8.569878, 47.358026], [8.569886, 47.358018], [8.569894, 47.358009], [8.569903, 47.358002], [8.569914, 47.357994], [8.569925, 47.357988], [8.569937, 47.357982], [8.56995, 47.357977], [8.569963, 47.357972], [8.569977, 47.357969], [8.569992, 47.357966], [8.570006, 47.357964], [8.570021, 47.357963], [8.570036, 47.357963], [8.570051, 47.357963], [8.570065, 47.357965], [8.57008, 47.357967], [8.570094, 47.35797], [8.570108, 47.357974], [8.57018, 47.358], [8.570254, 47.358024], [8.570329, 47.358046], [8.570381, 47.35806], [8.570435, 47.358072], [8.570491, 47.35808], [8.570547, 47.358086], [8.570603, 47.358088], [8.571107, 47.358115], [8.571313, 47.358083], [8.571446, 47.35807], [8.571486, 47.358076], [8.571882, 47.358132], [8.57236, 47.358167], [8.572421, 47.358177], [8.572543, 47.357974]]], "type": "MultiLineString"}, "id": "3634", "properties": {}, "type": "Feature"}, {"bbox": [8.540464, 47.406599, 8.540912, 47.407547], "geometry": {"coordinates": [[[8.540464, 47.407547], [8.540496, 47.407512], [8.540523, 47.407477], [8.540546, 47.40744], [8.540564, 47.407401], [8.540577, 47.407362], [8.540586, 47.407323], [8.540592, 47.407197], [8.540601, 47.407072], [8.540612, 47.406947], [8.540622, 47.406907], [8.540637, 47.406868], [8.540656, 47.40683], [8.54068, 47.406792], [8.540783, 47.406689], [8.540912, 47.406599]]], "type": "MultiLineString"}, "id": "3635", "properties": {}, "type": "Feature"}, {"bbox": [8.540756, 47.424702, 8.541688, 47.425679], "geometry": {"coordinates": [[[8.540756, 47.424702], [8.540943, 47.424897], [8.541, 47.424953], [8.541061, 47.425007], [8.541125, 47.425058], [8.541201, 47.425125], [8.541272, 47.425194], [8.54134, 47.425265], [8.541372, 47.425291], [8.541407, 47.425316], [8.541445, 47.425337], [8.541486, 47.425357], [8.541529, 47.425374], [8.541541, 47.425379], [8.541553, 47.425386], [8.541563, 47.425393], [8.541572, 47.425401], [8.541581, 47.425409], [8.541588, 47.425418], [8.541594, 47.425427], [8.541599, 47.425437], [8.541603, 47.425446], [8.541606, 47.425456], [8.541688, 47.425679]]], "type": "MultiLineString"}, "id": "3636", "properties": {}, "type": "Feature"}, {"bbox": [8.569341, 47.347771, 8.571133, 47.34827], "geometry": {"coordinates": [[[8.571133, 47.348154], [8.570725, 47.348043], [8.570317, 47.347932], [8.569909, 47.347821], [8.569722, 47.347774], [8.569713, 47.347772], [8.569704, 47.347771], [8.569695, 47.347771], [8.569686, 47.347771], [8.569677, 47.347772], [8.569668, 47.347773], [8.569659, 47.347774], [8.569651, 47.347777], [8.569643, 47.347779], [8.569635, 47.347783], [8.569627, 47.347786], [8.569621, 47.34779], [8.569614, 47.347795], [8.569609, 47.347799], [8.569603, 47.347804], [8.569599, 47.34781], [8.569595, 47.347815], [8.569592, 47.347821], [8.569341, 47.34827]]], "type": "MultiLineString"}, "id": "3637", "properties": {}, "type": "Feature"}, {"bbox": [8.577279, 47.384704, 8.582983, 47.389279], "geometry": {"coordinates": [[[8.577279, 47.384704], [8.57744, 47.384795], [8.577596, 47.38489], [8.577747, 47.384988], [8.577782, 47.385013], [8.577813, 47.38504], [8.57784, 47.385068], [8.577864, 47.385099], [8.577883, 47.38513], [8.577897, 47.385163], [8.577958, 47.385282], [8.578033, 47.38532], [8.578291, 47.385429], [8.578594, 47.385558], [8.57868, 47.385623], [8.578757, 47.385693], [8.578825, 47.385767], [8.578883, 47.385845], [8.579208, 47.386243], [8.579222, 47.386269], [8.579271, 47.3864], [8.57928, 47.386431], [8.579294, 47.38649], [8.579314, 47.386548], [8.579342, 47.386605], [8.579376, 47.38666], [8.579418, 47.386712], [8.579466, 47.386762], [8.579751, 47.387082], [8.579867, 47.387151], [8.579991, 47.387213], [8.580122, 47.387268], [8.580514, 47.387365], [8.581141, 47.387519], [8.581275, 47.387549], [8.581406, 47.387585], [8.581534, 47.387625], [8.581697, 47.38768], [8.581856, 47.387739], [8.582011, 47.387802], [8.582052, 47.387833], [8.582089, 47.387866], [8.582122, 47.387901], [8.582151, 47.387938], [8.582174, 47.387976], [8.58258, 47.388627], [8.582777, 47.38897], [8.582927, 47.389232], [8.582983, 47.389279]]], "type": "MultiLineString"}, "id": "3638", "properties": {}, "type": "Feature"}, {"bbox": [8.498822, 47.370118, 8.50019, 47.372831], "geometry": {"coordinates": [[[8.499926, 47.372831], [8.500157, 47.372462], [8.50017, 47.372438], [8.50018, 47.372413], [8.500187, 47.372388], [8.50019, 47.372362], [8.50019, 47.372337], [8.500187, 47.372311], [8.50018, 47.372286], [8.50017, 47.372261], [8.500157, 47.372237], [8.500141, 47.372214], [8.500122, 47.372191], [8.5001, 47.37217], [8.500075, 47.372151], [8.500048, 47.372133], [8.500018, 47.372117], [8.499987, 47.372103], [8.499953, 47.37209], [8.499472, 47.371953], [8.499435, 47.371942], [8.4994, 47.371929], [8.499367, 47.371914], [8.499335, 47.371897], [8.499306, 47.371879], [8.499279, 47.371859], [8.499255, 47.371837], [8.499233, 47.371814], [8.499215, 47.37179], [8.499199, 47.371765], [8.499187, 47.371739], [8.499178, 47.371713], [8.499172, 47.371686], [8.49917, 47.371659], [8.499107, 47.371187], [8.498937, 47.371021], [8.498822, 47.370118]]], "type": "MultiLineString"}, "id": "3639", "properties": {}, "type": "Feature"}, {"bbox": [8.604747, 47.35976, 8.612524, 47.362012], "geometry": {"coordinates": [[[8.604747, 47.35976], [8.604855, 47.359901], [8.604863, 47.359909], [8.60487, 47.359917], [8.604878, 47.359925], [8.604918, 47.359963], [8.604958, 47.360002], [8.604998, 47.36004], [8.604999, 47.36004], [8.605045, 47.360079], [8.60506, 47.360092], [8.605076, 47.360104], [8.605091, 47.360115], [8.605125, 47.360138], [8.60516, 47.36016], [8.605196, 47.36018], [8.605257, 47.360212], [8.605298, 47.360234], [8.605361, 47.360269], [8.605426, 47.360302], [8.605492, 47.360334], [8.605492, 47.360335], [8.605493, 47.360335], [8.605499, 47.360337], [8.605505, 47.36034], [8.605512, 47.360343], [8.605587, 47.360375], [8.605664, 47.360405], [8.605743, 47.360434], [8.605743, 47.360434], [8.605743, 47.360434], [8.606105, 47.360561], [8.60616, 47.36058], [8.60634, 47.360643], [8.60634, 47.360643], [8.606429, 47.360672], [8.60652, 47.360697], [8.606612, 47.36072], [8.606705, 47.36074], [8.6068, 47.360757], [8.606895, 47.36077], [8.607145, 47.360801], [8.607361, 47.360834], [8.607526, 47.360866], [8.607526, 47.360866], [8.607654, 47.360889], [8.607784, 47.360908], [8.607915, 47.360924], [8.607954, 47.360929], [8.607993, 47.360932], [8.608032, 47.360936], [8.608125, 47.360943], [8.608218, 47.360948], [8.608311, 47.360951], [8.608845, 47.360966], [8.608884, 47.360967], [8.608965, 47.360972], [8.609044, 47.360982], [8.609122, 47.360997], [8.60939, 47.361057], [8.609427, 47.361066], [8.609504, 47.361083], [8.609578, 47.361099], [8.609653, 47.361115], [8.609727, 47.361131], [8.60982, 47.361152], [8.609913, 47.361175], [8.610006, 47.361198], [8.610127, 47.361229], [8.610249, 47.361259], [8.61037, 47.36129], [8.610449, 47.361311], [8.610528, 47.361333], [8.610605, 47.361356], [8.61069, 47.361385], [8.610771, 47.361417], [8.610849, 47.361453], [8.610914, 47.361485], [8.610979, 47.361517], [8.611044, 47.36155], [8.611127, 47.361591], [8.61121, 47.361633], [8.611291, 47.361676], [8.611387, 47.361726], [8.611483, 47.361775], [8.611579, 47.361825], [8.611593, 47.361832], [8.611607, 47.361839], [8.611621, 47.361846], [8.611656, 47.361863], [8.611663, 47.361866], [8.611682, 47.361875], [8.611701, 47.361884], [8.611719, 47.361893], [8.611772, 47.361915], [8.611827, 47.361935], [8.611885, 47.361951], [8.611944, 47.361964], [8.611987, 47.361972], [8.612032, 47.361978], [8.612076, 47.361984], [8.612123, 47.361989], [8.61217, 47.361993], [8.612217, 47.361996], [8.612244, 47.361998], [8.612272, 47.362001], [8.6123, 47.362003], [8.612524, 47.362012]]], "type": "MultiLineString"}, "id": "3640", "properties": {}, "type": "Feature"}, {"bbox": [8.520969, 47.411228, 8.522442, 47.412849], "geometry": {"coordinates": [[[8.522442, 47.411228], [8.521915, 47.411533], [8.521543, 47.411888], [8.521898, 47.412109], [8.52167, 47.41228], [8.521329, 47.412482], [8.521071, 47.412686], [8.520969, 47.412849]]], "type": "MultiLineString"}, "id": "3641", "properties": {}, "type": "Feature"}, {"bbox": [8.468505, 47.366195, 8.473068, 47.367042], "geometry": {"coordinates": [[[8.468505, 47.367042], [8.468512, 47.367037], [8.468519, 47.367033], [8.468526, 47.36703], [8.468534, 47.367026], [8.468584, 47.367018], [8.468606, 47.367017], [8.468628, 47.367017], [8.46865, 47.367018], [8.468701, 47.367022], [8.468751, 47.367025], [8.468802, 47.367027], [8.468849, 47.367028], [8.468896, 47.367028], [8.468943, 47.367027], [8.468984, 47.367026], [8.469025, 47.367025], [8.469066, 47.367025], [8.469066, 47.367025], [8.469149, 47.367027], [8.469231, 47.36703], [8.469313, 47.367035], [8.469417, 47.367041], [8.469521, 47.367042], [8.469626, 47.367039], [8.469695, 47.367035], [8.469764, 47.36703], [8.469834, 47.367024], [8.469871, 47.367021], [8.469908, 47.367017], [8.469945, 47.367013], [8.470021, 47.367003], [8.470098, 47.366994], [8.470175, 47.366985], [8.470274, 47.366973], [8.470374, 47.366961], [8.470473, 47.366948], [8.470509, 47.366943], [8.470545, 47.36694], [8.470581, 47.366937], [8.470608, 47.366935], [8.470635, 47.366934], [8.470663, 47.366933], [8.470702, 47.366931], [8.470741, 47.366929], [8.47078, 47.366927], [8.470942, 47.366917], [8.470994, 47.366914], [8.471046, 47.366911], [8.471098, 47.366908], [8.471146, 47.366905], [8.471194, 47.366899], [8.471242, 47.366891], [8.471296, 47.36688], [8.471351, 47.36687], [8.471406, 47.366861], [8.471498, 47.366844], [8.47159, 47.366826], [8.471681, 47.366807], [8.471755, 47.366788], [8.471826, 47.366765], [8.471895, 47.366738], [8.471959, 47.366707], [8.472031, 47.36667], [8.472103, 47.366633], [8.472176, 47.366596], [8.472264, 47.366552], [8.472352, 47.366509], [8.472442, 47.366467], [8.472527, 47.366426], [8.472612, 47.366385], [8.472697, 47.366344], [8.472762, 47.366313], [8.47283, 47.366285], [8.4729, 47.36626], [8.472934, 47.366249], [8.472969, 47.366238], [8.473004, 47.366227], [8.473018, 47.366222], [8.473032, 47.366217], [8.473045, 47.36621], [8.473057, 47.366203], [8.473068, 47.366195]]], "type": "MultiLineString"}, "id": "3644", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.368758, 8.54396, 47.368821], "geometry": {"coordinates": [[[8.543839, 47.368758], [8.54396, 47.368821]]], "type": "MultiLineString"}, "id": "3645", "properties": {}, "type": "Feature"}, {"bbox": [8.589438, 47.375922, 8.596659, 47.37896], "geometry": {"coordinates": [[[8.589438, 47.378939], [8.589476, 47.378946], [8.589532, 47.378954], [8.589588, 47.378959], [8.589644, 47.37896], [8.589701, 47.378959], [8.589757, 47.378954], [8.589813, 47.378946], [8.589867, 47.378935], [8.58991, 47.378924], [8.589952, 47.378911], [8.589993, 47.378896], [8.590708, 47.378609], [8.591445, 47.378323], [8.592018, 47.378101], [8.592921, 47.377748], [8.593213, 47.377633], [8.594032, 47.377317], [8.594442, 47.377158], [8.595394, 47.376789], [8.595435, 47.376771], [8.595475, 47.376751], [8.595512, 47.37673], [8.595546, 47.376706], [8.596218, 47.376202], [8.596271, 47.376165], [8.596326, 47.376129], [8.596385, 47.376096], [8.596563, 47.375999], [8.596585, 47.375986], [8.596607, 47.375971], [8.596626, 47.375956], [8.596644, 47.375939], [8.596659, 47.375922]]], "type": "MultiLineString"}, "id": "3646", "properties": {}, "type": "Feature"}, {"bbox": [8.5269, 47.378193, 8.527155, 47.378403], "geometry": {"coordinates": [[[8.5269, 47.378279], [8.52696, 47.378245], [8.527051, 47.378403], [8.527155, 47.378355], [8.52706, 47.378193], [8.52696, 47.378245]]], "type": "MultiLineString"}, "id": "3647", "properties": {}, "type": "Feature"}, {"bbox": [8.548732, 47.410416, 8.550047, 47.410551], "geometry": {"coordinates": [[[8.548732, 47.410416], [8.549768, 47.410524], [8.549861, 47.410533], [8.549954, 47.410542], [8.550047, 47.410551]]], "type": "MultiLineString"}, "id": "3648", "properties": {}, "type": "Feature"}, {"bbox": [8.483968, 47.367834, 8.486763, 47.37353], "geometry": {"coordinates": [[[8.484318, 47.37353], [8.48421, 47.373453], [8.48419, 47.373442], [8.484172, 47.373429], [8.484155, 47.373415], [8.484141, 47.373401], [8.484128, 47.373386], [8.484117, 47.373369], [8.484108, 47.373353], [8.484102, 47.373336], [8.484097, 47.373318], [8.483993, 47.372924], [8.483981, 47.372867], [8.483972, 47.37281], [8.483968, 47.372752], [8.483977, 47.372121], [8.483977, 47.372076], [8.483982, 47.372032], [8.483994, 47.371988], [8.484055, 47.371894], [8.484128, 47.371804], [8.484212, 47.371719], [8.484305, 47.371638], [8.484382, 47.371527], [8.484446, 47.371413], [8.484495, 47.371295], [8.484529, 47.371175], [8.484548, 47.371054], [8.484561, 47.370946], [8.484567, 47.370838], [8.484565, 47.37073], [8.48456, 47.370696], [8.484554, 47.370663], [8.484546, 47.37063], [8.484531, 47.370573], [8.484525, 47.370515], [8.484526, 47.370457], [8.484534, 47.370399], [8.484551, 47.370342], [8.484575, 47.370286], [8.484661, 47.370184], [8.484757, 47.370085], [8.484861, 47.36999], [8.48508, 47.369783], [8.485279, 47.369567], [8.485457, 47.369343], [8.485509, 47.369214], [8.48557, 47.36906], [8.485556, 47.368998], [8.485478, 47.368858], [8.485473, 47.368848], [8.485469, 47.368837], [8.485467, 47.368827], [8.485466, 47.368816], [8.485467, 47.368805], [8.485468, 47.368795], [8.485472, 47.368784], [8.485476, 47.368774], [8.485482, 47.368764], [8.485485, 47.36876], [8.485717, 47.368639], [8.485731, 47.368632], [8.485745, 47.368624], [8.485758, 47.368616], [8.485759, 47.368616], [8.485778, 47.368604], [8.485925, 47.368491], [8.486763, 47.367834]]], "type": "MultiLineString"}, "id": "3649", "properties": {}, "type": "Feature"}, {"bbox": [8.519087, 47.379729, 8.519155, 47.379764], "geometry": {"coordinates": [[[8.519087, 47.379764], [8.519155, 47.379729]]], "type": "MultiLineString"}, "id": "3653", "properties": {}, "type": "Feature"}, {"bbox": [8.56625, 47.363846, 8.566723, 47.364435], "geometry": {"coordinates": [[[8.566709, 47.364106], [8.566716, 47.364089], [8.566721, 47.364071], [8.566723, 47.364054], [8.566723, 47.364036], [8.56672, 47.364018], [8.566716, 47.364001], [8.566709, 47.363984], [8.5667, 47.363967], [8.566689, 47.363951], [8.566675, 47.363936], [8.56666, 47.363922], [8.566643, 47.363908], [8.566625, 47.363896], [8.566605, 47.363885], [8.566583, 47.363875], [8.56656, 47.363866], [8.566537, 47.363859], [8.566512, 47.363853], [8.566487, 47.363848], [8.566461, 47.363846], [8.566442, 47.363847], [8.566423, 47.363849], [8.566404, 47.363853], [8.566386, 47.363857], [8.566369, 47.363863], [8.566352, 47.36387], [8.566337, 47.363877], [8.566322, 47.363886], [8.566308, 47.363895], [8.566296, 47.363905], [8.566285, 47.363916], [8.566275, 47.363927], [8.566267, 47.363939], [8.56626, 47.363951], [8.566255, 47.363964], [8.566252, 47.363977], [8.56625, 47.36399], [8.56625, 47.364003], [8.566252, 47.364016], [8.566255, 47.364029], [8.566259, 47.364042], [8.566266, 47.364054], [8.566295, 47.36409], [8.566329, 47.364125], [8.566367, 47.364157], [8.56641, 47.364187], [8.566428, 47.364203], [8.566444, 47.364221], [8.566458, 47.364238], [8.56647, 47.364257], [8.566479, 47.364276], [8.566486, 47.364296], [8.56649, 47.364316], [8.566492, 47.364336], [8.566491, 47.364356], [8.566488, 47.364377], [8.566482, 47.364396], [8.566474, 47.364416], [8.566464, 47.364435]]], "type": "MultiLineString"}, "id": "3654", "properties": {}, "type": "Feature"}, {"bbox": [8.533607, 47.394573, 8.536224, 47.3965], "geometry": {"coordinates": [[[8.536224, 47.394573], [8.535382, 47.39514], [8.534463, 47.395763], [8.534143, 47.395989], [8.533856, 47.396236], [8.533607, 47.3965]]], "type": "MultiLineString"}, "id": "3655", "properties": {}, "type": "Feature"}, {"bbox": [8.474314, 47.382754, 8.474651, 47.383159], "geometry": {"coordinates": [[[8.474318, 47.382891], [8.474316, 47.382881], [8.474314, 47.382871], [8.474314, 47.382861], [8.474316, 47.382852], [8.474318, 47.382842], [8.474322, 47.382832], [8.474327, 47.382823], [8.474333, 47.382814], [8.474341, 47.382806], [8.474349, 47.382798], [8.474359, 47.38279], [8.474369, 47.382783], [8.47438, 47.382777], [8.474392, 47.382771], [8.474405, 47.382766], [8.474418, 47.382762], [8.474432, 47.382759], [8.474446, 47.382757], [8.47446, 47.382755], [8.474475, 47.382754], [8.474489, 47.382754], [8.474504, 47.382755], [8.474518, 47.382757], [8.474532, 47.38276], [8.474546, 47.382763], [8.474559, 47.382768], [8.474571, 47.382773], [8.474583, 47.382778], [8.474594, 47.382785], [8.474604, 47.382792], [8.474613, 47.3828], [8.474622, 47.382808], [8.474634, 47.382834], [8.474643, 47.382861], [8.474649, 47.382888], [8.474651, 47.382915], [8.47465, 47.382943], [8.474645, 47.38297], [8.474637, 47.382997], [8.474626, 47.383024], [8.474618, 47.383046], [8.474614, 47.383069], [8.474612, 47.383091], [8.474613, 47.383114], [8.474618, 47.383137], [8.474625, 47.383159]]], "type": "MultiLineString"}, "id": "3656", "properties": {}, "type": "Feature"}, {"bbox": [8.496008, 47.405484, 8.503484, 47.408823], "geometry": {"coordinates": [[[8.503484, 47.40549], [8.503291, 47.405484], [8.503099, 47.405489], [8.502908, 47.405506], [8.50272, 47.405535], [8.502536, 47.405574], [8.502358, 47.405624], [8.502188, 47.405684], [8.500942, 47.406212], [8.500785, 47.406291], [8.50062, 47.406361], [8.500448, 47.406423], [8.500063, 47.406535], [8.499675, 47.406642], [8.499284, 47.406743], [8.49909, 47.406797], [8.498903, 47.406861], [8.498724, 47.406935], [8.498555, 47.407019], [8.498199, 47.4072], [8.497862, 47.407397], [8.497547, 47.40761], [8.497448, 47.407685], [8.497217, 47.40793], [8.496953, 47.40816], [8.49666, 47.408372], [8.496443, 47.408522], [8.496226, 47.408673], [8.496008, 47.408823]]], "type": "MultiLineString"}, "id": "3657", "properties": {}, "type": "Feature"}, {"bbox": [8.581493, 47.392857, 8.582719, 47.394991], "geometry": {"coordinates": [[[8.582719, 47.394991], [8.582669, 47.394849], [8.582632, 47.394713], [8.582614, 47.394666], [8.58259, 47.394621], [8.582561, 47.394577], [8.582528, 47.394539], [8.582375, 47.394365], [8.582302, 47.394259], [8.582296, 47.39425], [8.582296, 47.39425], [8.582287, 47.394237], [8.582278, 47.394223], [8.582271, 47.394209], [8.582264, 47.394195], [8.582258, 47.394181], [8.582254, 47.394166], [8.58221, 47.394016], [8.582129, 47.393807], [8.582129, 47.393807], [8.582121, 47.393791], [8.582112, 47.393776], [8.582101, 47.393762], [8.582088, 47.393748], [8.582073, 47.393734], [8.582056, 47.393722], [8.582037, 47.39371], [8.582017, 47.3937], [8.58187, 47.393615], [8.58187, 47.393615], [8.581858, 47.393607], [8.581848, 47.393599], [8.581838, 47.393591], [8.581829, 47.393581], [8.581822, 47.393572], [8.581816, 47.393562], [8.581811, 47.393551], [8.581807, 47.393541], [8.581805, 47.39353], [8.581804, 47.393519], [8.581803, 47.393492], [8.581802, 47.393465], [8.581799, 47.393438], [8.581796, 47.393412], [8.581792, 47.393385], [8.581787, 47.393359], [8.581787, 47.393359], [8.581771, 47.393288], [8.581771, 47.393288], [8.581768, 47.393276], [8.581767, 47.393264], [8.581766, 47.393252], [8.581766, 47.393239], [8.581767, 47.393226], [8.581769, 47.393213], [8.581786, 47.393159], [8.581787, 47.393154], [8.581788, 47.393149], [8.581789, 47.393144], [8.581789, 47.393138], [8.581788, 47.393133], [8.581786, 47.393128], [8.581784, 47.393123], [8.581782, 47.393119], [8.581778, 47.393114], [8.581774, 47.39311], [8.58177, 47.393106], [8.581585, 47.392909], [8.581575, 47.392899], [8.581564, 47.39289], [8.581552, 47.392882], [8.581539, 47.392874], [8.581524, 47.392868], [8.581509, 47.392862], [8.581493, 47.392857]]], "type": "MultiLineString"}, "id": "3660", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.371529, 8.541883, 47.371595], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541444, 47.371593], [8.54145, 47.371588], [8.541457, 47.371583], [8.541465, 47.371579], [8.541473, 47.371575], [8.541482, 47.371571], [8.541491, 47.371569], [8.541501, 47.371566], [8.54151, 47.371564], [8.54152, 47.371563], [8.54153, 47.371563], [8.54154, 47.371563], [8.54155, 47.371563], [8.541571, 47.371565], [8.541651, 47.371571], [8.541877, 47.371595], [8.541883, 47.371529]]], "type": "MultiLineString"}, "id": "3661", "properties": {}, "type": "Feature"}, {"bbox": [8.480421, 47.390095, 8.480605, 47.390336], "geometry": {"coordinates": [[[8.480605, 47.390336], [8.480541, 47.39027], [8.480421, 47.390095]]], "type": "MultiLineString"}, "id": "3662", "properties": {}, "type": "Feature"}, {"bbox": [8.48669, 47.407398, 8.489379, 47.408169], "geometry": {"coordinates": [[[8.48669, 47.407398], [8.486879, 47.407481], [8.48692, 47.407492], [8.487034, 47.407518], [8.487474, 47.407629], [8.487743, 47.407679], [8.487872, 47.407697], [8.488101, 47.407716], [8.488161, 47.407721], [8.488219, 47.407729], [8.488276, 47.40774], [8.488332, 47.407755], [8.488386, 47.407773], [8.488437, 47.407795], [8.488501, 47.407823], [8.488562, 47.407855], [8.488618, 47.407891], [8.488669, 47.40793], [8.488715, 47.407971], [8.488803, 47.408056], [8.488828, 47.408077], [8.488856, 47.408097], [8.488886, 47.408115], [8.488918, 47.408132], [8.488951, 47.408146], [8.488987, 47.408159], [8.489024, 47.408169], [8.489036, 47.408169], [8.489049, 47.408168], [8.489061, 47.408167], [8.489073, 47.408165], [8.489085, 47.408162], [8.489096, 47.408159], [8.489107, 47.408154], [8.489118, 47.40815], [8.489127, 47.408144], [8.489136, 47.408139], [8.489145, 47.408132], [8.489275, 47.408029], [8.489379, 47.408038]]], "type": "MultiLineString"}, "id": "3665", "properties": {}, "type": "Feature"}, {"bbox": [8.546681, 47.369428, 8.547244, 47.370733], "geometry": {"coordinates": [[[8.546681, 47.370733], [8.546759, 47.370578], [8.54707, 47.369923], [8.547079, 47.369912], [8.547086, 47.369901], [8.547092, 47.369889], [8.547096, 47.369877], [8.547099, 47.369864], [8.5471, 47.369852], [8.5471, 47.369839], [8.547098, 47.369826], [8.547094, 47.369814], [8.547062, 47.369666], [8.547244, 47.369428]]], "type": "MultiLineString"}, "id": "3666", "properties": {}, "type": "Feature"}, {"bbox": [8.563243, 47.393619, 8.563456, 47.39563], "geometry": {"coordinates": [[[8.563252, 47.393619], [8.563284, 47.3937], [8.563297, 47.393732], [8.563313, 47.393763], [8.563332, 47.393793], [8.563434, 47.393952], [8.563442, 47.393965], [8.563448, 47.393979], [8.563453, 47.393994], [8.563455, 47.394008], [8.563456, 47.394023], [8.563455, 47.394037], [8.563452, 47.394052], [8.563419, 47.394175], [8.563419, 47.394188], [8.563419, 47.394201], [8.563412, 47.394226], [8.563392, 47.39434], [8.563357, 47.394416], [8.563353, 47.394449], [8.563349, 47.394481], [8.563394, 47.39466], [8.563325, 47.395115], [8.563247, 47.395602], [8.563243, 47.39563]]], "type": "MultiLineString"}, "id": "3669", "properties": {}, "type": "Feature"}, {"bbox": [8.492086, 47.42681, 8.496791, 47.427656], "geometry": {"coordinates": [[[8.496791, 47.426955], [8.496573, 47.426931], [8.496183, 47.426894], [8.495749, 47.426856], [8.495472, 47.426834], [8.49502, 47.42681], [8.494363, 47.426819], [8.494319, 47.42682], [8.494274, 47.426824], [8.494231, 47.42683], [8.494188, 47.426839], [8.494147, 47.426851], [8.494107, 47.426865], [8.49407, 47.426882], [8.493301, 47.4273], [8.493104, 47.427397], [8.492731, 47.427541], [8.492449, 47.427626], [8.492086, 47.427656]]], "type": "MultiLineString"}, "id": "3671", "properties": {}, "type": "Feature"}, {"bbox": [8.538729, 47.371552, 8.53975, 47.372053], "geometry": {"coordinates": [[[8.539595, 47.372053], [8.53975, 47.372008], [8.539592, 47.371962], [8.539146, 47.371816], [8.539255, 47.371654], [8.539116, 47.371611], [8.538758, 47.371552], [8.538729, 47.371599]]], "type": "MultiLineString"}, "id": "3672", "properties": {}, "type": "Feature"}, {"bbox": [8.486906, 47.375661, 8.487562, 47.37741], "geometry": {"coordinates": [[[8.487562, 47.375661], [8.487156, 47.376629], [8.487132, 47.376719], [8.487251, 47.376811], [8.486906, 47.37741]]], "type": "MultiLineString"}, "id": "3673", "properties": {}, "type": "Feature"}, {"bbox": [8.570094, 47.413273, 8.573881, 47.419205], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.572348, 47.413394], [8.572441, 47.41336], [8.573127, 47.413273], [8.573413, 47.413285], [8.573566, 47.413319], [8.573675, 47.413365], [8.573768, 47.413438], [8.57382, 47.413505], [8.573851, 47.4136], [8.573863, 47.41373], [8.573881, 47.413892], [8.573879, 47.414018], [8.573867, 47.414147], [8.573822, 47.414288], [8.573735, 47.414397], [8.573591, 47.414516], [8.573284, 47.414695], [8.57285, 47.414912], [8.572575, 47.415043], [8.57219, 47.415223], [8.572184, 47.415226], [8.572178, 47.415229], [8.572172, 47.415233], [8.572168, 47.415237], [8.572163, 47.415242], [8.572159, 47.415246], [8.571987, 47.415474], [8.571982, 47.415482], [8.571978, 47.41549], [8.571974, 47.415498], [8.571972, 47.415507], [8.571971, 47.415515], [8.57197, 47.415524], [8.571971, 47.415532], [8.572009, 47.415777], [8.572114, 47.416346], [8.572237, 47.416701], [8.572245, 47.416726], [8.572261, 47.416814], [8.572288, 47.41697], [8.572299, 47.417127], [8.572295, 47.417284], [8.57229, 47.417327], [8.57228, 47.41737], [8.572266, 47.417412], [8.572173, 47.417661], [8.572101, 47.417841], [8.572068, 47.417914], [8.572026, 47.417986], [8.571975, 47.418055], [8.571916, 47.418121], [8.571867, 47.418161], [8.571814, 47.418198], [8.571756, 47.418232], [8.571694, 47.418262], [8.571629, 47.418289], [8.571532, 47.418324], [8.571433, 47.418354], [8.571331, 47.418381], [8.57122, 47.418405], [8.571108, 47.418428], [8.570996, 47.418449], [8.570765, 47.418483], [8.57066, 47.4185], [8.570307, 47.418571], [8.5703, 47.418572], [8.570295, 47.418573], [8.570289, 47.418575], [8.570284, 47.418577], [8.570278, 47.41858], [8.570274, 47.418583], [8.570269, 47.418586], [8.570265, 47.418589], [8.570262, 47.418593], [8.570259, 47.418597], [8.570256, 47.418601], [8.570254, 47.418605], [8.570253, 47.418609], [8.570252, 47.418613], [8.570252, 47.418617], [8.570252, 47.418622], [8.570253, 47.418626], [8.570254, 47.41863], [8.570366, 47.41901], [8.570369, 47.419021], [8.57037, 47.419033], [8.57037, 47.419044], [8.570368, 47.419055], [8.570365, 47.419067], [8.570312, 47.419115], [8.570238, 47.419143], [8.570166, 47.419174], [8.570094, 47.419205]]], "type": "MultiLineString"}, "id": "3674", "properties": {}, "type": "Feature"}, {"bbox": [8.523093, 47.355272, 8.524193, 47.360066], "geometry": {"coordinates": [[[8.523093, 47.360066], [8.523227, 47.359637], [8.52328, 47.359416], [8.523577, 47.358491], [8.523632, 47.358316], [8.523924, 47.357398], [8.524048, 47.357002], [8.524121, 47.356587], [8.524138, 47.356436], [8.524117, 47.356261], [8.524115, 47.35616], [8.524141, 47.355876], [8.524191, 47.355387], [8.524192, 47.355383], [8.524193, 47.355378], [8.524193, 47.355373], [8.524192, 47.355369], [8.524191, 47.355364], [8.52419, 47.355359], [8.524187, 47.355355], [8.524184, 47.35535], [8.524181, 47.355346], [8.524177, 47.355342], [8.524173, 47.355339], [8.524168, 47.355335], [8.524163, 47.355332], [8.524157, 47.355329], [8.524151, 47.355327], [8.524145, 47.355325], [8.524138, 47.355323], [8.524131, 47.355322], [8.524125, 47.355321], [8.523951, 47.355272]]], "type": "MultiLineString"}, "id": "3675", "properties": {}, "type": "Feature"}, {"bbox": [8.571882, 47.360214, 8.572891, 47.3609], "geometry": {"coordinates": [[[8.571882, 47.3609], [8.571894, 47.360809], [8.572101, 47.360483], [8.572128, 47.360447], [8.572159, 47.360413], [8.572194, 47.360382], [8.572234, 47.360352], [8.572277, 47.360325], [8.572323, 47.3603], [8.572373, 47.360278], [8.572424, 47.360259], [8.572479, 47.360243], [8.572535, 47.360231], [8.572592, 47.360222], [8.572891, 47.360214]]], "type": "MultiLineString"}, "id": "3676", "properties": {}, "type": "Feature"}, {"bbox": [8.590219, 47.365068, 8.602161, 47.370458], "geometry": {"coordinates": [[[8.590219, 47.365068], [8.590554, 47.365114], [8.590922, 47.365136], [8.591287, 47.365176], [8.591647, 47.365235], [8.59196, 47.365333], [8.592264, 47.365442], [8.59256, 47.365562], [8.592783, 47.365628], [8.593622, 47.365755], [8.594292, 47.365896], [8.59468, 47.366031], [8.595406, 47.366322], [8.596458, 47.366705], [8.597319, 47.367058], [8.59801, 47.367446], [8.598416, 47.367701], [8.599122, 47.368165], [8.599138, 47.368173], [8.599154, 47.36818], [8.599172, 47.368186], [8.59919, 47.36819], [8.599208, 47.368194], [8.599227, 47.368196], [8.599418, 47.36823], [8.599608, 47.368264], [8.599798, 47.3683], [8.599864, 47.36834], [8.600183, 47.368436], [8.600477, 47.368541], [8.600573, 47.368576], [8.600666, 47.368614], [8.600755, 47.368656], [8.60085, 47.368703], [8.600947, 47.368747], [8.601047, 47.36879], [8.601483, 47.368968], [8.601558, 47.369002], [8.601629, 47.369041], [8.601694, 47.369084], [8.601753, 47.36913], [8.601806, 47.36918], [8.601852, 47.369233], [8.601891, 47.369289], [8.601922, 47.369347], [8.601945, 47.369406], [8.602109, 47.369909], [8.602131, 47.369989], [8.602145, 47.370069], [8.602152, 47.370149], [8.602161, 47.370379], [8.602154, 47.370458]]], "type": "MultiLineString"}, "id": "3677", "properties": {}, "type": "Feature"}, {"bbox": [8.507528, 47.395435, 8.508653, 47.397127], "geometry": {"coordinates": [[[8.507528, 47.395435], [8.507755, 47.395835], [8.507878, 47.396045], [8.508037, 47.396335], [8.508214, 47.396566], [8.508254, 47.396603], [8.508463, 47.396859], [8.508653, 47.397127]]], "type": "MultiLineString"}, "id": "3678", "properties": {}, "type": "Feature"}, {"bbox": [8.5231, 47.416887, 8.536288, 47.41843], "geometry": {"coordinates": [[[8.536288, 47.41843], [8.536173, 47.41825], [8.534985, 47.417744], [8.53339, 47.417452], [8.532996, 47.417377], [8.531737, 47.417164], [8.530927, 47.417029], [8.529469, 47.416904], [8.528124, 47.416887], [8.527399, 47.416919], [8.52605, 47.417024], [8.52398, 47.417177], [8.5231, 47.417237]]], "type": "MultiLineString"}, "id": "3680", "properties": {}, "type": "Feature"}, {"bbox": [8.544055, 47.40978, 8.544775, 47.410595], "geometry": {"coordinates": [[[8.544775, 47.40978], [8.544729, 47.409863], [8.544456, 47.409797], [8.544391, 47.409914], [8.544436, 47.409925], [8.54439, 47.410009], [8.544386, 47.410008], [8.544374, 47.41003], [8.544376, 47.41003], [8.544374, 47.410034], [8.544234, 47.41028], [8.544235, 47.41028], [8.544232, 47.410285], [8.54423, 47.410284], [8.54422, 47.410304], [8.544218, 47.410304], [8.544184, 47.410365], [8.544187, 47.410366], [8.544176, 47.410386], [8.544131, 47.410375], [8.544055, 47.410506], [8.544203, 47.410553], [8.544265, 47.410568], [8.544267, 47.410569], [8.544265, 47.410573], [8.544337, 47.410595]]], "type": "MultiLineString"}, "id": "3681", "properties": {}, "type": "Feature"}, {"bbox": [8.523557, 47.417399, 8.533602, 47.420115], "geometry": {"coordinates": [[[8.533602, 47.419757], [8.533391, 47.419832], [8.533081, 47.419928], [8.532907, 47.419954], [8.532401, 47.420025], [8.53202, 47.420063], [8.531713, 47.420082], [8.531414, 47.420093], [8.531064, 47.420105], [8.530744, 47.420115], [8.530659, 47.420115], [8.530574, 47.420084], [8.530485, 47.420048], [8.530398, 47.420009], [8.530314, 47.419968], [8.530292, 47.419957], [8.530242, 47.419934], [8.530206, 47.419921], [8.53017, 47.419909], [8.530134, 47.419898], [8.530096, 47.419888], [8.530058, 47.41988], [8.53002, 47.419873], [8.529864, 47.419853], [8.529707, 47.419836], [8.529549, 47.419823], [8.529373, 47.419813], [8.529196, 47.419805], [8.52902, 47.419798], [8.528895, 47.419798], [8.52877, 47.419797], [8.528645, 47.419795], [8.528552, 47.419795], [8.52846, 47.419796], [8.528367, 47.419798], [8.528367, 47.419798], [8.528238, 47.4198], [8.528109, 47.419802], [8.527979, 47.419802], [8.527979, 47.419802], [8.527979, 47.419802], [8.527793, 47.4198], [8.527607, 47.419798], [8.527421, 47.419795], [8.527344, 47.419794], [8.527266, 47.419793], [8.527189, 47.41979], [8.527084, 47.419786], [8.52698, 47.419781], [8.526876, 47.419775], [8.526775, 47.419769], [8.526674, 47.419762], [8.526573, 47.419753], [8.526498, 47.419747], [8.526423, 47.419739], [8.526349, 47.41973], [8.526348, 47.41973], [8.526348, 47.41973], [8.526305, 47.419724], [8.526261, 47.419716], [8.526218, 47.419708], [8.526129, 47.419691], [8.526041, 47.41967], [8.525955, 47.419646], [8.525955, 47.419646], [8.525954, 47.419646], [8.525946, 47.419643], [8.525938, 47.41964], [8.525929, 47.419637], [8.525914, 47.419631], [8.5259, 47.419625], [8.525885, 47.419619], [8.525756, 47.419559], [8.525671, 47.419524], [8.525585, 47.41949], [8.525498, 47.419458], [8.525498, 47.419458], [8.525498, 47.419458], [8.525407, 47.419422], [8.525316, 47.419386], [8.525226, 47.41935], [8.524769, 47.41918], [8.524309, 47.419014], [8.52375, 47.418612], [8.52359, 47.418422], [8.523557, 47.418207], [8.523714, 47.417775], [8.523854, 47.417499], [8.523887, 47.417399]]], "type": "MultiLineString"}, "id": "3682", "properties": {}, "type": "Feature"}, {"bbox": [8.572354, 47.366469, 8.57523, 47.36799], "geometry": {"coordinates": [[[8.57523, 47.366469], [8.57485, 47.366612], [8.574433, 47.366795], [8.573819, 47.367085], [8.57366, 47.367164], [8.573499, 47.36724], [8.573334, 47.367314], [8.572923, 47.367493], [8.572874, 47.367517], [8.572829, 47.367544], [8.572787, 47.367572], [8.572749, 47.367604], [8.572714, 47.367637], [8.572354, 47.36799]]], "type": "MultiLineString"}, "id": "3683", "properties": {}, "type": "Feature"}, {"bbox": [8.587419, 47.383587, 8.588231, 47.387542], "geometry": {"coordinates": [[[8.587616, 47.383587], [8.587547, 47.383849], [8.58743, 47.384584], [8.587419, 47.384659], [8.587419, 47.384736], [8.587428, 47.384812], [8.587447, 47.384887], [8.587475, 47.38496], [8.587567, 47.385181], [8.587619, 47.385317], [8.587665, 47.385476], [8.587829, 47.386513], [8.58803, 47.387261], [8.588045, 47.387319], [8.588069, 47.387375], [8.5881, 47.387429], [8.588139, 47.387481], [8.588159, 47.387498], [8.588181, 47.387515], [8.588205, 47.387529], [8.588231, 47.387542]]], "type": "MultiLineString"}, "id": "3684", "properties": {}, "type": "Feature"}, {"bbox": [8.536738, 47.395744, 8.537782, 47.39667], "geometry": {"coordinates": [[[8.536738, 47.395744], [8.536842, 47.395811], [8.537782, 47.39667]]], "type": "MultiLineString"}, "id": "3686", "properties": {}, "type": "Feature"}, {"bbox": [8.554188, 47.383414, 8.555916, 47.383733], "geometry": {"coordinates": [[[8.554188, 47.383475], [8.555093, 47.383733], [8.555165, 47.383731], [8.555261, 47.383634], [8.555327, 47.383616], [8.555371, 47.383599], [8.555451, 47.383433], [8.555509, 47.383414], [8.555576, 47.383424], [8.555916, 47.383641]]], "type": "MultiLineString"}, "id": "3687", "properties": {}, "type": "Feature"}, {"bbox": [8.532507, 47.414205, 8.535346, 47.414362], "geometry": {"coordinates": [[[8.535346, 47.414205], [8.532507, 47.414362]]], "type": "MultiLineString"}, "id": "3688", "properties": {}, "type": "Feature"}, {"bbox": [8.542871, 47.392128, 8.54318, 47.392262], "geometry": {"coordinates": [[[8.54318, 47.392128], [8.542871, 47.392262]]], "type": "MultiLineString"}, "id": "3689", "properties": {}, "type": "Feature"}, {"bbox": [8.484549, 47.375386, 8.486241, 47.376278], "geometry": {"coordinates": [[[8.484549, 47.375386], [8.484672, 47.375522], [8.48485, 47.375645], [8.485835, 47.376141], [8.486087, 47.376222], [8.486128, 47.376233], [8.486168, 47.376245], [8.486205, 47.37626], [8.486241, 47.376278]]], "type": "MultiLineString"}, "id": "3692", "properties": {}, "type": "Feature"}, {"bbox": [8.517553, 47.386648, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518527, 47.387011], [8.518312, 47.386902], [8.51823, 47.386864], [8.518146, 47.386828], [8.518059, 47.386794], [8.517963, 47.38676], [8.517865, 47.386729], [8.517765, 47.386701], [8.517553, 47.386648]]], "type": "MultiLineString"}, "id": "3693", "properties": {}, "type": "Feature"}, {"bbox": [8.517164, 47.356453, 8.517956, 47.358537], "geometry": {"coordinates": [[[8.517956, 47.358537], [8.517652, 47.358052], [8.517249, 47.357448], [8.517164, 47.357132], [8.517376, 47.356735], [8.517557, 47.356669], [8.517549, 47.356645], [8.517477, 47.3566], [8.517467, 47.356467], [8.517496, 47.356453], [8.517521, 47.35646], [8.517619, 47.356545], [8.517848, 47.35663], [8.517883, 47.356599]]], "type": "MultiLineString"}, "id": "3709", "properties": {}, "type": "Feature"}, {"bbox": [8.531911, 47.363744, 8.532024, 47.364624], "geometry": {"coordinates": [[[8.53193, 47.364624], [8.53195, 47.364607], [8.531969, 47.36459], [8.531985, 47.364571], [8.531998, 47.364552], [8.532009, 47.364532], [8.532017, 47.364511], [8.532022, 47.36449], [8.532024, 47.364469], [8.532024, 47.364447], [8.53202, 47.364426], [8.531915, 47.363956], [8.531912, 47.363933], [8.531911, 47.36391], [8.531914, 47.363887], [8.53192, 47.363865], [8.531928, 47.363843], [8.53194, 47.363821], [8.531954, 47.3638], [8.53197, 47.36378], [8.53199, 47.363761], [8.532011, 47.363744]]], "type": "MultiLineString"}, "id": "3710", "properties": {}, "type": "Feature"}, {"bbox": [8.503063, 47.398268, 8.504171, 47.398839], "geometry": {"coordinates": [[[8.503063, 47.398268], [8.50328, 47.398353], [8.503407, 47.398388], [8.503547, 47.398435], [8.503807, 47.398579], [8.504154, 47.398764], [8.504171, 47.398839]]], "type": "MultiLineString"}, "id": "3711", "properties": {}, "type": "Feature"}, {"bbox": [8.507322, 47.351889, 8.507994, 47.3525], "geometry": {"coordinates": [[[8.507571, 47.352425], [8.507533, 47.352408], [8.507498, 47.352389], [8.507465, 47.352368], [8.507435, 47.352345], [8.507408, 47.352321], [8.507385, 47.352295], [8.507365, 47.352268], [8.507349, 47.352239], [8.507336, 47.35221], [8.507327, 47.35218], [8.507323, 47.352155], [8.507322, 47.35213], [8.507324, 47.352105], [8.507329, 47.352081], [8.507337, 47.352057], [8.507349, 47.352033], [8.507363, 47.35201], [8.50738, 47.351988], [8.507401, 47.351967], [8.507423, 47.351948], [8.507448, 47.35193], [8.507476, 47.351913], [8.507495, 47.351906], [8.507515, 47.3519], [8.507536, 47.351896], [8.507557, 47.351892], [8.507578, 47.35189], [8.5076, 47.351889], [8.507622, 47.35189], [8.507644, 47.351892], [8.507665, 47.351895], [8.507686, 47.351899], [8.507706, 47.351905], [8.507725, 47.351912], [8.507743, 47.35192], [8.507761, 47.351929], [8.507777, 47.351939], [8.507791, 47.35195], [8.507804, 47.351962], [8.507816, 47.351974], [8.507826, 47.351987], [8.507834, 47.352001], [8.50784, 47.352015], [8.507844, 47.35203], [8.507846, 47.352061], [8.507845, 47.352092], [8.507839, 47.352123], [8.507829, 47.352153], [8.507816, 47.352183], [8.507806, 47.352202], [8.507798, 47.352221], [8.507793, 47.35224], [8.50779, 47.35226], [8.507791, 47.35228], [8.507794, 47.3523], [8.507799, 47.352319], [8.507807, 47.352338], [8.507818, 47.352357], [8.507831, 47.352374], [8.507865, 47.35241], [8.507904, 47.352442], [8.507947, 47.352473], [8.507994, 47.3525]]], "type": "MultiLineString"}, "id": "3713", "properties": {}, "type": "Feature"}, {"bbox": [8.537, 47.43057, 8.537148, 47.431436], "geometry": {"coordinates": [[[8.537, 47.43057], [8.537013, 47.430744], [8.537148, 47.43112], [8.537122, 47.431436]]], "type": "MultiLineString"}, "id": "3716", "properties": {}, "type": "Feature"}, {"bbox": [8.483471, 47.404859, 8.484197, 47.405857], "geometry": {"coordinates": [[[8.483634, 47.405857], [8.483664, 47.405841], [8.483847, 47.40578], [8.483988, 47.405748], [8.484024, 47.40573], [8.484111, 47.405673], [8.484121, 47.405666], [8.48413, 47.405659], [8.484138, 47.405651], [8.484145, 47.405643], [8.484152, 47.405634], [8.48419, 47.405565], [8.484194, 47.405555], [8.484196, 47.405545], [8.484197, 47.405536], [8.484196, 47.405526], [8.484195, 47.405516], [8.484192, 47.405506], [8.484187, 47.405496], [8.484182, 47.405487], [8.484176, 47.405478], [8.484168, 47.40547], [8.484099, 47.405396], [8.484087, 47.405377], [8.484078, 47.405357], [8.484072, 47.405337], [8.484069, 47.405316], [8.484068, 47.405299], [8.484065, 47.405283], [8.484059, 47.405266], [8.484052, 47.40525], [8.484042, 47.405235], [8.48403, 47.40522], [8.484016, 47.405206], [8.484001, 47.405193], [8.483984, 47.405181], [8.483965, 47.405171], [8.483945, 47.405161], [8.483924, 47.405152], [8.483795, 47.405091], [8.483676, 47.405021], [8.483568, 47.404944], [8.483471, 47.404859]]], "type": "MultiLineString"}, "id": "3717", "properties": {}, "type": "Feature"}, {"bbox": [8.559211, 47.369412, 8.561466, 47.370599], "geometry": {"coordinates": [[[8.559211, 47.370412], [8.559291, 47.370444], [8.559845, 47.370599], [8.559898, 47.370564], [8.560091, 47.370368], [8.560368, 47.370086], [8.560533, 47.369935], [8.560716, 47.369795], [8.560917, 47.369665], [8.561132, 47.369548], [8.561466, 47.369412]]], "type": "MultiLineString"}, "id": "3719", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.358094, 8.595404, 47.35958], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593471, 47.359492], [8.593512, 47.35944], [8.593656, 47.359337], [8.59374, 47.359284], [8.594, 47.358977], [8.594028, 47.358948], [8.594134, 47.358859], [8.594291, 47.358764], [8.594369, 47.358741], [8.594579, 47.358683], [8.594765, 47.358628], [8.594822, 47.358608], [8.594876, 47.358583], [8.594928, 47.358556], [8.594975, 47.358526], [8.595019, 47.358494], [8.595059, 47.358459], [8.595094, 47.358422], [8.595124, 47.358383], [8.595149, 47.358342], [8.595172, 47.358314], [8.595198, 47.358287], [8.595227, 47.358262], [8.595404, 47.358094]]], "type": "MultiLineString"}, "id": "3721", "properties": {}, "type": "Feature"}, {"bbox": [8.465041, 47.379945, 8.469339, 47.382109], "geometry": {"coordinates": [[[8.469339, 47.379945], [8.469273, 47.379977], [8.46921, 47.380011], [8.469152, 47.38005], [8.46914, 47.380059], [8.469128, 47.380068], [8.469117, 47.380077], [8.469097, 47.380097], [8.469079, 47.380118], [8.469063, 47.380139], [8.469051, 47.380162], [8.469042, 47.380185], [8.469029, 47.380217], [8.469011, 47.380248], [8.46899, 47.380277], [8.468965, 47.380305], [8.468942, 47.380325], [8.468917, 47.380344], [8.468889, 47.380361], [8.468859, 47.380375], [8.468809, 47.380396], [8.468755, 47.380413], [8.4687, 47.380428], [8.468639, 47.380441], [8.468578, 47.380455], [8.468517, 47.38047], [8.468474, 47.380481], [8.468433, 47.380495], [8.468394, 47.380511], [8.468249, 47.380575], [8.468104, 47.38064], [8.467959, 47.380705], [8.467839, 47.380762], [8.467721, 47.38082], [8.467606, 47.380882], [8.467493, 47.380944], [8.467379, 47.381007], [8.467264, 47.381068], [8.467125, 47.381146], [8.466989, 47.381226], [8.466857, 47.381308], [8.466721, 47.381393], [8.466584, 47.381477], [8.466445, 47.38156], [8.46635, 47.381614], [8.466253, 47.381665], [8.466153, 47.381715], [8.466066, 47.381756], [8.465977, 47.381795], [8.465885, 47.381831], [8.465837, 47.381849], [8.46579, 47.381868], [8.465742, 47.381888], [8.465681, 47.381913], [8.46562, 47.381937], [8.465558, 47.381962], [8.465392, 47.382022], [8.465219, 47.382071], [8.465041, 47.382109]]], "type": "MultiLineString"}, "id": "3729", "properties": {}, "type": "Feature"}, {"bbox": [8.520318, 47.340456, 8.522775, 47.343904], "geometry": {"coordinates": [[[8.520318, 47.343904], [8.520325, 47.343852], [8.52034, 47.343801], [8.52036, 47.343751], [8.520387, 47.343702], [8.52042, 47.343655], [8.520459, 47.34361], [8.520504, 47.343568], [8.520783, 47.343382], [8.520794, 47.343374], [8.520803, 47.343366], [8.520811, 47.343357], [8.520818, 47.343348], [8.520824, 47.343338], [8.520828, 47.343328], [8.520832, 47.343318], [8.520833, 47.343308], [8.520834, 47.343297], [8.520833, 47.343287], [8.520831, 47.343276], [8.520827, 47.343266], [8.520822, 47.34317], [8.520821, 47.343158], [8.520822, 47.343146], [8.520824, 47.343134], [8.520827, 47.343123], [8.520832, 47.343111], [8.520838, 47.3431], [8.520845, 47.34309], [8.520854, 47.34308], [8.520864, 47.34307], [8.521038, 47.342934], [8.5212, 47.342791], [8.521349, 47.342641], [8.521488, 47.342488], [8.521614, 47.342329], [8.521728, 47.342166], [8.521839, 47.341995], [8.521939, 47.341821], [8.522028, 47.341644], [8.522158, 47.341352], [8.522165, 47.341336], [8.522174, 47.341321], [8.522185, 47.341307], [8.522197, 47.341293], [8.522211, 47.341279], [8.522227, 47.341267], [8.522303, 47.341229], [8.522339, 47.341211], [8.522372, 47.341191], [8.522402, 47.341168], [8.522429, 47.341144], [8.522453, 47.341119], [8.522474, 47.341092], [8.52249, 47.341064], [8.522503, 47.341035], [8.522775, 47.340456]]], "type": "MultiLineString"}, "id": "3730", "properties": {}, "type": "Feature"}, {"bbox": [8.510965, 47.352999, 8.511813, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511808, 47.353378], [8.511801, 47.353355], [8.511791, 47.353333], [8.511778, 47.353312], [8.511762, 47.353291], [8.511744, 47.353272], [8.511723, 47.353254], [8.511699, 47.353237], [8.511674, 47.353221], [8.511647, 47.353208], [8.51125, 47.353021], [8.511234, 47.353015], [8.511217, 47.353009], [8.511199, 47.353005], [8.511182, 47.353002], [8.511163, 47.353], [8.511145, 47.352999], [8.511126, 47.352999], [8.511108, 47.353], [8.511089, 47.353002], [8.511071, 47.353005], [8.511054, 47.353009], [8.511037, 47.353014], [8.51102, 47.35302], [8.511005, 47.353027], [8.510991, 47.353035], [8.510977, 47.353044], [8.510965, 47.353053]]], "type": "MultiLineString"}, "id": "3731", "properties": {}, "type": "Feature"}, {"bbox": [8.585254, 47.365595, 8.589935, 47.366761], "geometry": {"coordinates": [[[8.585254, 47.365595], [8.585323, 47.365622], [8.585857, 47.365732], [8.587369, 47.366102], [8.588623, 47.366425], [8.589935, 47.366761]]], "type": "MultiLineString"}, "id": "3732", "properties": {}, "type": "Feature"}, {"bbox": [8.551688, 47.419583, 8.555739, 47.420677], "geometry": {"coordinates": [[[8.551688, 47.420677], [8.552511, 47.420529], [8.552675, 47.420497], [8.552775, 47.420478], [8.552877, 47.420464], [8.552981, 47.420457], [8.553085, 47.420456], [8.553189, 47.420454], [8.553292, 47.420445], [8.553394, 47.42043], [8.553493, 47.420408], [8.55391, 47.420313], [8.55412, 47.420249], [8.55432, 47.420171], [8.554508, 47.420081], [8.554653, 47.420027], [8.555084, 47.419852], [8.555525, 47.419677], [8.555739, 47.419583]]], "type": "MultiLineString"}, "id": "3733", "properties": {}, "type": "Feature"}, {"bbox": [8.507325, 47.407618, 8.508783, 47.40823], "geometry": {"coordinates": [[[8.507325, 47.408189], [8.507585, 47.408098], [8.507682, 47.40823], [8.508783, 47.407863], [8.508602, 47.407618], [8.507504, 47.40799], [8.507585, 47.408098]]], "type": "MultiLineString"}, "id": "3734", "properties": {}, "type": "Feature"}, {"bbox": [8.504911, 47.409065, 8.50633, 47.409562], "geometry": {"coordinates": [[[8.50633, 47.409065], [8.505229, 47.409431], [8.505202, 47.409454], [8.50507, 47.409498], [8.504911, 47.409562]]], "type": "MultiLineString"}, "id": "3735", "properties": {}, "type": "Feature"}, {"bbox": [8.566004, 47.383058, 8.569233, 47.383605], "geometry": {"coordinates": [[[8.566004, 47.383058], [8.566121, 47.383123], [8.566354, 47.383135], [8.566838, 47.38315], [8.567873, 47.383188], [8.567973, 47.383194], [8.568072, 47.383207], [8.568168, 47.383226], [8.568262, 47.38325], [8.568352, 47.38328], [8.568437, 47.383315], [8.568647, 47.383411], [8.568676, 47.383424], [8.568706, 47.383436], [8.568737, 47.383448], [8.569111, 47.383595], [8.569119, 47.383598], [8.569127, 47.3836], [8.569136, 47.383602], [8.569145, 47.383603], [8.569154, 47.383604], [8.569163, 47.383605], [8.569172, 47.383604], [8.569181, 47.383604], [8.56919, 47.383603], [8.569199, 47.383601], [8.569208, 47.383599], [8.569216, 47.383596], [8.569224, 47.383593], [8.569233, 47.383589]]], "type": "MultiLineString"}, "id": "3736", "properties": {}, "type": "Feature"}, {"bbox": [8.585089, 47.373666, 8.597714, 47.376085], "geometry": {"coordinates": [[[8.585089, 47.375683], [8.586179, 47.375833], [8.587257, 47.375986], [8.587331, 47.375995], [8.587878, 47.376066], [8.588015, 47.376079], [8.588154, 47.376085], [8.588292, 47.376083], [8.58843, 47.376073], [8.589249, 47.37599], [8.589358, 47.375981], [8.589467, 47.375979], [8.589576, 47.375982], [8.589866, 47.375997], [8.589973, 47.376001], [8.590081, 47.376004], [8.590189, 47.376004], [8.590342, 47.376004], [8.590396, 47.376003], [8.59045, 47.376002], [8.590504, 47.376001], [8.5908, 47.375986], [8.591094, 47.375959], [8.591384, 47.375919], [8.591905, 47.375836], [8.591966, 47.375826], [8.592026, 47.375815], [8.592086, 47.375804], [8.59214, 47.375794], [8.592194, 47.375782], [8.592248, 47.375771], [8.592523, 47.375711], [8.592726, 47.375672], [8.592933, 47.375644], [8.593143, 47.375628], [8.593517, 47.375608], [8.59393, 47.375573], [8.594338, 47.375513], [8.594735, 47.375429], [8.59512, 47.375321], [8.595222, 47.375289], [8.596644, 47.374838], [8.596698, 47.374819], [8.59675, 47.374798], [8.596799, 47.374773], [8.59685, 47.374743], [8.596897, 47.37471], [8.59694, 47.374674], [8.597155, 47.374476], [8.597236, 47.374396], [8.597312, 47.374313], [8.59738, 47.374228], [8.59755, 47.374001], [8.597599, 47.37393], [8.59764, 47.373856], [8.597672, 47.37378], [8.597714, 47.373666]]], "type": "MultiLineString"}, "id": "3737", "properties": {}, "type": "Feature"}, {"bbox": [8.544333, 47.380882, 8.544979, 47.382079], "geometry": {"coordinates": [[[8.544979, 47.380882], [8.544837, 47.381058], [8.544652, 47.381417], [8.544504, 47.381753], [8.544333, 47.382079]]], "type": "MultiLineString"}, "id": "3745", "properties": {}, "type": "Feature"}, {"bbox": [8.543443, 47.37078, 8.543723, 47.370974], "geometry": {"coordinates": [[[8.543443, 47.370783], [8.543723, 47.37078], [8.543691, 47.370974]]], "type": "MultiLineString"}, "id": "3746", "properties": {}, "type": "Feature"}, {"bbox": [8.492259, 47.401285, 8.492447, 47.401915], "geometry": {"coordinates": [[[8.492259, 47.401285], [8.492286, 47.401369], [8.492356, 47.401564], [8.492447, 47.401915]]], "type": "MultiLineString"}, "id": "3751", "properties": {}, "type": "Feature"}, {"bbox": [8.492332, 47.402611, 8.492565, 47.403539], "geometry": {"coordinates": [[[8.492332, 47.402611], [8.492334, 47.402702], [8.492344, 47.402876], [8.492382, 47.4032], [8.492385, 47.403222], [8.49239, 47.403244], [8.492398, 47.403265], [8.492526, 47.403483], [8.492565, 47.403539]]], "type": "MultiLineString"}, "id": "3752", "properties": {}, "type": "Feature"}, {"bbox": [8.575497, 47.388299, 8.57691, 47.389016], "geometry": {"coordinates": [[[8.575497, 47.388335], [8.575506, 47.388329], [8.575516, 47.388323], [8.575527, 47.388317], [8.575538, 47.388313], [8.57555, 47.388309], [8.575562, 47.388305], [8.575575, 47.388303], [8.575588, 47.388301], [8.575601, 47.3883], [8.575614, 47.388299], [8.575627, 47.3883], [8.57564, 47.388301], [8.575653, 47.388303], [8.575666, 47.388306], [8.575678, 47.38831], [8.57569, 47.388314], [8.575701, 47.388319], [8.575711, 47.388324], [8.575721, 47.388331], [8.57573, 47.388337], [8.575738, 47.388345], [8.575745, 47.388352], [8.575751, 47.38836], [8.575755, 47.388369], [8.575759, 47.388377], [8.575762, 47.388386], [8.57576, 47.388703], [8.57576, 47.388714], [8.575762, 47.388726], [8.575764, 47.388737], [8.575769, 47.388748], [8.575774, 47.388759], [8.575781, 47.388769], [8.57579, 47.388779], [8.575799, 47.388789], [8.57581, 47.388798], [8.575822, 47.388806], [8.575834, 47.388813], [8.575848, 47.38882], [8.575862, 47.388826], [8.575877, 47.388831], [8.575893, 47.388835], [8.575909, 47.388839], [8.576243, 47.388898], [8.576577, 47.388957], [8.57691, 47.389016]]], "type": "MultiLineString"}, "id": "3756", "properties": {}, "type": "Feature"}, {"bbox": [8.577313, 47.360232, 8.577655, 47.360937], "geometry": {"coordinates": [[[8.57757, 47.360937], [8.577328, 47.360703], [8.577323, 47.360696], [8.577319, 47.360688], [8.577316, 47.36068], [8.577314, 47.360672], [8.577313, 47.360664], [8.577314, 47.360656], [8.577315, 47.360648], [8.577317, 47.36064], [8.57732, 47.360632], [8.577324, 47.360625], [8.57733, 47.360617], [8.577655, 47.360232]]], "type": "MultiLineString"}, "id": "3757", "properties": {}, "type": "Feature"}, {"bbox": [8.540834, 47.425679, 8.541688, 47.42582], "geometry": {"coordinates": [[[8.541688, 47.425679], [8.541535, 47.425723], [8.541378, 47.425758], [8.541217, 47.425785], [8.541021, 47.425804], [8.540834, 47.42582]]], "type": "MultiLineString"}, "id": "3758", "properties": {}, "type": "Feature"}, {"bbox": [8.545162, 47.412614, 8.546223, 47.413015], "geometry": {"coordinates": [[[8.546223, 47.412924], [8.546114, 47.413015], [8.545842, 47.412892], [8.54555, 47.412759], [8.545162, 47.412614]]], "type": "MultiLineString"}, "id": "3759", "properties": {}, "type": "Feature"}, {"bbox": [8.564783, 47.408767, 8.565678, 47.409124], "geometry": {"coordinates": [[[8.565678, 47.409124], [8.56553, 47.409082], [8.56511, 47.408916], [8.565055, 47.408888], [8.564861, 47.408801], [8.564783, 47.408767]]], "type": "MultiLineString"}, "id": "3761", "properties": {}, "type": "Feature"}, {"bbox": [8.5869, 47.359702, 8.58702, 47.36072], "geometry": {"coordinates": [[[8.58702, 47.359702], [8.586969, 47.359987], [8.58692, 47.360329], [8.586907, 47.3604], [8.586923, 47.360471], [8.586927, 47.360555], [8.586919, 47.360638], [8.5869, 47.36072]]], "type": "MultiLineString"}, "id": "3762", "properties": {}, "type": "Feature"}, {"bbox": [8.48844, 47.384597, 8.489148, 47.384971], "geometry": {"coordinates": [[[8.48844, 47.384971], [8.488453, 47.384956], [8.488464, 47.384941], [8.488474, 47.384926], [8.488509, 47.384855], [8.488512, 47.384848], [8.488515, 47.384842], [8.488519, 47.384836], [8.488524, 47.38483], [8.488529, 47.384825], [8.488536, 47.38482], [8.488542, 47.384815], [8.48855, 47.384811], [8.488558, 47.384807], [8.488566, 47.384804], [8.488575, 47.384801], [8.488895, 47.384731], [8.488908, 47.384727], [8.48892, 47.384723], [8.488932, 47.384718], [8.488943, 47.384712], [8.488954, 47.384706], [8.488963, 47.384699], [8.488971, 47.384691], [8.488979, 47.384683], [8.488985, 47.384672], [8.488994, 47.384662], [8.489003, 47.384651], [8.489014, 47.384642], [8.489025, 47.384633], [8.489038, 47.384625], [8.489052, 47.384618], [8.489148, 47.384597]]], "type": "MultiLineString"}, "id": "3763", "properties": {}, "type": "Feature"}, {"bbox": [8.481904, 47.384529, 8.482355, 47.385164], "geometry": {"coordinates": [[[8.481904, 47.385164], [8.481948, 47.385039], [8.482005, 47.384917], [8.482073, 47.384797], [8.482105, 47.384746], [8.482143, 47.384697], [8.482188, 47.38465], [8.482238, 47.384607], [8.482294, 47.384566], [8.482355, 47.384529]]], "type": "MultiLineString"}, "id": "3766", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.39073, 8.522946, 47.391122], "geometry": {"coordinates": [[[8.522048, 47.390845], [8.522148, 47.390854], [8.522585, 47.39074], [8.522608, 47.390736], [8.522632, 47.390732], [8.522656, 47.390731], [8.52268, 47.39073], [8.522704, 47.390731], [8.522727, 47.390734], [8.522751, 47.390738], [8.522773, 47.390743], [8.522795, 47.39075], [8.522816, 47.390758], [8.522836, 47.390767], [8.522855, 47.390777], [8.522872, 47.390789], [8.522888, 47.390801], [8.522902, 47.390814], [8.522914, 47.390829], [8.522924, 47.390843], [8.522932, 47.390859], [8.522939, 47.390874], [8.522944, 47.390896], [8.522946, 47.390917], [8.522946, 47.390939], [8.522942, 47.39096], [8.522936, 47.390981], [8.522927, 47.391002], [8.522915, 47.391022], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "3770", "properties": {}, "type": "Feature"}, {"bbox": [8.519485, 47.398405, 8.531896, 47.400006], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531698, 47.399116], [8.531614, 47.399022], [8.531249, 47.398612], [8.531151, 47.398568], [8.530329, 47.398423], [8.529936, 47.398405], [8.529542, 47.398411], [8.529151, 47.398442], [8.528765, 47.398497], [8.527218, 47.398751], [8.526665, 47.398817], [8.526398, 47.398855], [8.526135, 47.398905], [8.525878, 47.398968], [8.525712, 47.399012], [8.525542, 47.399046], [8.525368, 47.399071], [8.525192, 47.399085], [8.524896, 47.399113], [8.524605, 47.39916], [8.524322, 47.399226], [8.524037, 47.399285], [8.523759, 47.399358], [8.523489, 47.399444], [8.523293, 47.39951], [8.523093, 47.39957], [8.522889, 47.399622], [8.522216, 47.399758], [8.521529, 47.399852], [8.520831, 47.399904], [8.520599, 47.39992], [8.520369, 47.399942], [8.52014, 47.39997], [8.519923, 47.399993], [8.519704, 47.400005], [8.519485, 47.400006]]], "type": "MultiLineString"}, "id": "3771", "properties": {}, "type": "Feature"}, {"bbox": [8.508404, 47.408609, 8.511588, 47.409542], "geometry": {"coordinates": [[[8.508404, 47.409542], [8.50851, 47.409508], [8.509243, 47.409264], [8.509307, 47.409355], [8.509574, 47.409269], [8.510025, 47.409119], [8.510216, 47.409054], [8.510408, 47.40899], [8.510728, 47.408885], [8.511326, 47.408695], [8.511588, 47.408609]]], "type": "MultiLineString"}, "id": "3772", "properties": {}, "type": "Feature"}, {"bbox": [8.488264, 47.417082, 8.489984, 47.420378], "geometry": {"coordinates": [[[8.488264, 47.420378], [8.488284, 47.419914], [8.488288, 47.419877], [8.488298, 47.419841], [8.488313, 47.419806], [8.488474, 47.419484], [8.488697, 47.418927], [8.488823, 47.418729], [8.48904, 47.418316], [8.489065, 47.418274], [8.489094, 47.418234], [8.489129, 47.418196], [8.489167, 47.418159], [8.48921, 47.418125], [8.489626, 47.417818], [8.48965, 47.417798], [8.489672, 47.417776], [8.489692, 47.417754], [8.489708, 47.41773], [8.489722, 47.417705], [8.489733, 47.41768], [8.489846, 47.417367], [8.489984, 47.417082]]], "type": "MultiLineString"}, "id": "3773", "properties": {}, "type": "Feature"}, {"bbox": [8.463046, 47.379001, 8.468861, 47.382206], "geometry": {"coordinates": [[[8.468861, 47.379037], [8.468771, 47.379017], [8.468734, 47.37901], [8.468697, 47.379005], [8.46866, 47.379002], [8.468622, 47.379001], [8.468585, 47.379003], [8.468547, 47.379006], [8.468511, 47.379012], [8.468475, 47.37902], [8.46844, 47.37903], [8.468344, 47.379063], [8.468251, 47.379101], [8.468162, 47.379143], [8.467983, 47.379231], [8.467802, 47.379317], [8.467619, 47.3794], [8.467499, 47.379453], [8.467377, 47.379505], [8.467254, 47.379555], [8.467039, 47.379641], [8.466825, 47.379728], [8.466611, 47.379816], [8.466485, 47.379869], [8.466359, 47.379924], [8.466234, 47.379979], [8.466013, 47.380083], [8.465798, 47.380192], [8.46559, 47.380307], [8.465405, 47.380412], [8.46522, 47.380518], [8.465036, 47.380624], [8.464838, 47.380738], [8.464641, 47.380852], [8.464444, 47.380967], [8.464341, 47.381031], [8.464242, 47.381097], [8.464148, 47.381167], [8.46405, 47.381241], [8.463948, 47.381314], [8.463843, 47.381384], [8.463791, 47.381419], [8.463741, 47.381455], [8.463693, 47.381492], [8.4633, 47.381806], [8.463263, 47.381838], [8.463231, 47.381872], [8.463204, 47.381908], [8.463182, 47.381946], [8.463046, 47.382206]]], "type": "MultiLineString"}, "id": "3774", "properties": {}, "type": "Feature"}, {"bbox": [8.532325, 47.395343, 8.533522, 47.39568], "geometry": {"coordinates": [[[8.532325, 47.395343], [8.532905, 47.395587], [8.533522, 47.39568]]], "type": "MultiLineString"}, "id": "3775", "properties": {}, "type": "Feature"}, {"bbox": [8.519971, 47.336977, 8.521637, 47.342477], "geometry": {"coordinates": [[[8.519971, 47.342477], [8.520593, 47.342469], [8.52145, 47.340599], [8.521614, 47.340302], [8.521637, 47.340206], [8.521637, 47.340046], [8.521563, 47.339784], [8.521508, 47.339706], [8.52138, 47.339448], [8.521292, 47.339371], [8.521352, 47.339161], [8.52134, 47.339053], [8.521296, 47.338949], [8.521233, 47.338866], [8.520958, 47.33798], [8.520871, 47.337767], [8.520764, 47.337522], [8.520685, 47.337324], [8.520627, 47.337124], [8.520582, 47.336977]]], "type": "MultiLineString"}, "id": "3776", "properties": {}, "type": "Feature"}, {"bbox": [8.528032, 47.357396, 8.529392, 47.357482], "geometry": {"coordinates": [[[8.529392, 47.357435], [8.528834, 47.357396], [8.528659, 47.35742], [8.528203, 47.3574], [8.528032, 47.357482]]], "type": "MultiLineString"}, "id": "3777", "properties": {}, "type": "Feature"}, {"bbox": [8.576606, 47.367253, 8.57906, 47.373984], "geometry": {"coordinates": [[[8.579, 47.367253], [8.578988, 47.367271], [8.578979, 47.367289], [8.578972, 47.367307], [8.578968, 47.367326], [8.578965, 47.367346], [8.578966, 47.367365], [8.578978, 47.367536], [8.579029, 47.368043], [8.579024, 47.368142], [8.579055, 47.368502], [8.579058, 47.368555], [8.57906, 47.368609], [8.57906, 47.368662], [8.579041, 47.368802], [8.579011, 47.368941], [8.578969, 47.369078], [8.578651, 47.3698], [8.57841, 47.370333], [8.578351, 47.370468], [8.578296, 47.370604], [8.578245, 47.370741], [8.578236, 47.370772], [8.57823, 47.370803], [8.578225, 47.370835], [8.578223, 47.370856], [8.578222, 47.370877], [8.578222, 47.370898], [8.578221, 47.370966], [8.578211, 47.371035], [8.578193, 47.371103], [8.578166, 47.37117], [8.57812, 47.371278], [8.578073, 47.371387], [8.578025, 47.371495], [8.577987, 47.371609], [8.577957, 47.371724], [8.577936, 47.37184], [8.577917, 47.37194], [8.577895, 47.37204], [8.577869, 47.372139], [8.577846, 47.372207], [8.57782, 47.372274], [8.577791, 47.372341], [8.577747, 47.372411], [8.577696, 47.37248], [8.57764, 47.372546], [8.577533, 47.372651], [8.577422, 47.372753], [8.577307, 47.372854], [8.577139, 47.373018], [8.577055, 47.373115], [8.576986, 47.373217], [8.57693, 47.373323], [8.576889, 47.373432], [8.576792, 47.373691], [8.576695, 47.373973], [8.576606, 47.373984]]], "type": "MultiLineString"}, "id": "3778", "properties": {}, "type": "Feature"}, {"bbox": [8.487855, 47.391012, 8.489299, 47.391531], "geometry": {"coordinates": [[[8.488771, 47.391012], [8.487855, 47.391255], [8.48802, 47.391531], [8.489299, 47.391177]]], "type": "MultiLineString"}, "id": "3779", "properties": {}, "type": "Feature"}, {"bbox": [8.532193, 47.3981, 8.532456, 47.398612], "geometry": {"coordinates": [[[8.532456, 47.3981], [8.532316, 47.398373], [8.532193, 47.398612]]], "type": "MultiLineString"}, "id": "3780", "properties": {}, "type": "Feature"}, {"bbox": [8.560818, 47.386425, 8.569085, 47.391729], "geometry": {"coordinates": [[[8.560818, 47.386425], [8.560948, 47.386481], [8.560962, 47.386488], [8.560962, 47.386488], [8.561172, 47.38658], [8.561385, 47.386668], [8.561601, 47.386752], [8.562033, 47.386915], [8.562214, 47.386983], [8.562266, 47.387002], [8.562278, 47.387007], [8.562291, 47.387012], [8.562304, 47.387017], [8.562431, 47.387069], [8.562555, 47.387126], [8.562674, 47.387186], [8.562791, 47.38725], [8.562905, 47.387315], [8.563016, 47.387383], [8.563128, 47.387457], [8.563231, 47.387538], [8.563325, 47.387623], [8.563742, 47.388053], [8.563806, 47.388129], [8.563876, 47.388268], [8.563902, 47.388319], [8.56392, 47.388355], [8.564132, 47.388727], [8.564962, 47.389333], [8.565362, 47.389623], [8.565385, 47.389639], [8.565411, 47.389653], [8.565438, 47.389666], [8.565466, 47.389677], [8.565496, 47.389687], [8.565497, 47.389687], [8.565517, 47.389692], [8.565621, 47.389715], [8.565779, 47.389802], [8.5666, 47.39017], [8.5666, 47.39017], [8.566674, 47.390206], [8.566743, 47.390247], [8.566806, 47.390292], [8.566862, 47.390341], [8.566911, 47.390393], [8.567359, 47.390923], [8.567378, 47.390943], [8.567398, 47.390963], [8.56742, 47.390983], [8.567464, 47.391015], [8.567512, 47.391044], [8.567565, 47.39107], [8.568202, 47.391348], [8.568983, 47.391688], [8.569085, 47.391729]]], "type": "MultiLineString"}, "id": "3786", "properties": {}, "type": "Feature"}, {"bbox": [8.599097, 47.362975, 8.601774, 47.363756], "geometry": {"coordinates": [[[8.599097, 47.363756], [8.599224, 47.363632], [8.599418, 47.363488], [8.599427, 47.363483], [8.59955, 47.363405], [8.59967, 47.363324], [8.599786, 47.363242], [8.599847, 47.363202], [8.599911, 47.363164], [8.59998, 47.363131], [8.600043, 47.363105], [8.600109, 47.363082], [8.600177, 47.363063], [8.600234, 47.363049], [8.60029, 47.363035], [8.600347, 47.363021], [8.600409, 47.363007], [8.600473, 47.362996], [8.600538, 47.362989], [8.600591, 47.362985], [8.600643, 47.36298], [8.600696, 47.362975], [8.600818, 47.362976], [8.600844, 47.36298], [8.60087, 47.362986], [8.600895, 47.362993], [8.600917, 47.363], [8.600938, 47.363009], [8.600958, 47.363018], [8.600977, 47.363029], [8.600995, 47.363041], [8.601071, 47.363095], [8.60115, 47.363147], [8.601231, 47.363198], [8.601277, 47.363224], [8.601327, 47.363247], [8.601379, 47.363266], [8.601434, 47.363283], [8.601547, 47.363312], [8.60166, 47.363341], [8.601774, 47.36337]]], "type": "MultiLineString"}, "id": "3788", "properties": {}, "type": "Feature"}, {"bbox": [8.562432, 47.407123, 8.564824, 47.408457], "geometry": {"coordinates": [[[8.562432, 47.407123], [8.562588, 47.407201], [8.563423, 47.407635], [8.563498, 47.4077], [8.563916, 47.407926], [8.564185, 47.408131], [8.564436, 47.408268], [8.564657, 47.408398], [8.564824, 47.408457]]], "type": "MultiLineString"}, "id": "3789", "properties": {}, "type": "Feature"}, {"bbox": [8.491257, 47.406486, 8.503866, 47.413093], "geometry": {"coordinates": [[[8.491257, 47.411852], [8.491386, 47.411944], [8.491488, 47.412003], [8.491582, 47.412068], [8.491669, 47.412137], [8.491713, 47.412179], [8.491751, 47.412222], [8.491784, 47.412268], [8.491811, 47.412316], [8.491881, 47.412458], [8.491896, 47.412484], [8.491913, 47.412509], [8.491935, 47.412533], [8.491959, 47.412556], [8.491985, 47.412576], [8.492078, 47.412642], [8.492117, 47.412668], [8.49216, 47.412692], [8.492206, 47.412713], [8.492477, 47.412827], [8.492492, 47.412833], [8.492622, 47.412888], [8.492973, 47.413035], [8.493004, 47.413048], [8.493051, 47.413067], [8.493067, 47.413073], [8.493091, 47.41308], [8.493116, 47.413086], [8.493141, 47.41309], [8.493167, 47.413092], [8.493193, 47.413093], [8.493219, 47.413092], [8.495012, 47.412975], [8.495219, 47.412962], [8.495366, 47.412948], [8.495616, 47.412914], [8.495644, 47.412907], [8.495672, 47.412899], [8.495699, 47.41289], [8.495725, 47.412879], [8.495749, 47.412867], [8.495771, 47.412853], [8.496418, 47.412374], [8.496813, 47.412087], [8.497129, 47.411823], [8.497173, 47.411786], [8.497215, 47.411747], [8.497255, 47.411707], [8.497499, 47.411454], [8.497531, 47.41142], [8.497669, 47.411282], [8.497713, 47.41124], [8.497762, 47.4112], [8.497814, 47.411162], [8.498092, 47.410954], [8.498131, 47.410924], [8.498168, 47.410892], [8.498202, 47.410859], [8.498626, 47.41043], [8.498664, 47.410392], [8.498704, 47.410354], [8.498746, 47.410317], [8.499131, 47.409986], [8.499373, 47.409774], [8.499411, 47.409743], [8.499454, 47.409714], [8.499501, 47.409687], [8.499501, 47.409687], [8.49991, 47.409475], [8.499986, 47.409442], [8.500079, 47.409403], [8.500664, 47.409175], [8.501329, 47.408929], [8.501921, 47.408748], [8.501928, 47.408746], [8.501935, 47.408744], [8.501942, 47.408741], [8.501948, 47.408737], [8.501954, 47.408734], [8.50196, 47.40873]], [[8.503866, 47.406506], [8.503564, 47.406486], [8.503458, 47.40651], [8.503252, 47.407011], [8.50314, 47.407041], [8.502492, 47.407255], [8.502492, 47.407255], [8.50245, 47.407269], [8.502409, 47.407283], [8.502368, 47.407298], [8.502335, 47.407312], [8.502304, 47.407329], [8.502275, 47.407346], [8.502248, 47.407366], [8.502224, 47.407387], [8.502224, 47.407387], [8.502224, 47.407387], [8.502195, 47.407415], [8.502171, 47.407445], [8.502152, 47.407476], [8.502139, 47.407503], [8.502129, 47.407531], [8.502122, 47.407559], [8.502122, 47.407559], [8.502066, 47.407788], [8.502066, 47.407788], [8.502051, 47.407852], [8.502042, 47.407916], [8.502038, 47.40798], [8.502038, 47.408212], [8.502011, 47.40843], [8.502005, 47.408636], [8.501979, 47.408705], [8.50196, 47.40873]]], "type": "MultiLineString"}, "id": "3799", "properties": {}, "type": "Feature"}, {"bbox": [8.486921, 47.382572, 8.488084, 47.384793], "geometry": {"coordinates": [[[8.487428, 47.384793], [8.488058, 47.384576], [8.488062, 47.384574], [8.488066, 47.384571], [8.48807, 47.384569], [8.488073, 47.384566], [8.488076, 47.384563], [8.488078, 47.38456], [8.48808, 47.384556], [8.488082, 47.384553], [8.488083, 47.384549], [8.488083, 47.384546], [8.488084, 47.384542], [8.488083, 47.384538], [8.488083, 47.384535], [8.488081, 47.384531], [8.48808, 47.384528], [8.48805, 47.384461], [8.48802, 47.384394], [8.48799, 47.384327], [8.487977, 47.38431], [8.487962, 47.384294], [8.487945, 47.384279], [8.487926, 47.384265], [8.487918, 47.384257], [8.487912, 47.384249], [8.487906, 47.384241], [8.487901, 47.384232], [8.487898, 47.384223], [8.487896, 47.384214], [8.487886, 47.384184], [8.487873, 47.384154], [8.487857, 47.384125], [8.487842, 47.384098], [8.487826, 47.38407], [8.487811, 47.384043], [8.487783, 47.383997], [8.487759, 47.38395], [8.487739, 47.383902], [8.487712, 47.383851], [8.48769, 47.383799], [8.487672, 47.383747], [8.487612, 47.383608], [8.487554, 47.383469], [8.487497, 47.38333], [8.487388, 47.383119], [8.487361, 47.383078], [8.48733, 47.383037], [8.487297, 47.382998], [8.486921, 47.382572]]], "type": "MultiLineString"}, "id": "3804", "properties": {}, "type": "Feature"}, {"bbox": [8.497351, 47.385367, 8.497921, 47.386044], "geometry": {"coordinates": [[[8.497351, 47.385367], [8.497414, 47.385408], [8.497455, 47.385396], [8.497489, 47.385447], [8.497493, 47.385453], [8.497497, 47.38546], [8.497499, 47.385467], [8.497501, 47.385473], [8.497501, 47.38548], [8.497501, 47.385487], [8.4975, 47.385494], [8.497501, 47.385516], [8.497504, 47.385537], [8.497511, 47.385559], [8.49752, 47.385579], [8.497539, 47.3856], [8.497555, 47.385621], [8.497568, 47.385643], [8.497579, 47.385666], [8.497586, 47.38569], [8.497591, 47.385713], [8.497595, 47.385723], [8.4976, 47.385733], [8.497606, 47.385742], [8.497613, 47.38575], [8.497622, 47.385759], [8.497631, 47.385766], [8.497642, 47.385773], [8.497653, 47.38578], [8.497665, 47.385786], [8.497678, 47.385791], [8.497703, 47.385802], [8.497725, 47.385815], [8.497746, 47.385829], [8.497765, 47.385844], [8.497921, 47.386044]]], "type": "MultiLineString"}, "id": "3805", "properties": {}, "type": "Feature"}, {"bbox": [8.468501, 47.391117, 8.469398, 47.391539], "geometry": {"coordinates": [[[8.469398, 47.391287], [8.469371, 47.391284], [8.469343, 47.391279], [8.469317, 47.391273], [8.469291, 47.391265], [8.469267, 47.391256], [8.469049, 47.391136], [8.469044, 47.391133], [8.469039, 47.39113], [8.469033, 47.391127], [8.469027, 47.391124], [8.469021, 47.391122], [8.469015, 47.39112], [8.469008, 47.391118], [8.469001, 47.391117], [8.468994, 47.391117], [8.468987, 47.391117], [8.46898, 47.391117], [8.468972, 47.391118], [8.468966, 47.391119], [8.468959, 47.39112], [8.468952, 47.391122], [8.468946, 47.391124], [8.46894, 47.391127], [8.468789, 47.391262], [8.468643, 47.391399], [8.468501, 47.391539]]], "type": "MultiLineString"}, "id": "3806", "properties": {}, "type": "Feature"}, {"bbox": [8.481531, 47.411683, 8.486027, 47.420213], "geometry": {"coordinates": [[[8.486027, 47.411683], [8.485967, 47.411752], [8.485934, 47.411792], [8.485906, 47.411834], [8.485882, 47.411877], [8.485861, 47.411938], [8.485857, 47.412246], [8.485866, 47.412678], [8.485874, 47.412956], [8.485863, 47.413088], [8.485837, 47.413219], [8.485794, 47.413348], [8.485737, 47.413474], [8.485664, 47.413596], [8.485592, 47.413676], [8.485529, 47.413758], [8.485474, 47.413844], [8.485411, 47.413936], [8.485337, 47.414024], [8.485253, 47.414107], [8.485158, 47.414185], [8.485054, 47.414258], [8.484981, 47.414296], [8.484912, 47.414338], [8.48485, 47.414384], [8.484502, 47.41472], [8.484478, 47.414745], [8.484458, 47.414772], [8.484441, 47.4148], [8.484427, 47.414829], [8.484418, 47.414859], [8.484411, 47.414889], [8.484409, 47.414919], [8.484411, 47.41495], [8.484428, 47.415158], [8.484418, 47.415366], [8.484379, 47.415573], [8.484365, 47.415621], [8.484356, 47.41567], [8.484353, 47.415719], [8.484356, 47.415768], [8.484365, 47.415817], [8.48438, 47.415865], [8.484401, 47.415912], [8.484427, 47.415957], [8.484459, 47.416001], [8.484542, 47.416131], [8.48455, 47.416144], [8.484557, 47.416157], [8.484561, 47.41617], [8.484564, 47.416183], [8.484566, 47.416197], [8.484565, 47.416211], [8.484563, 47.416224], [8.484563, 47.416229], [8.484563, 47.416234], [8.484562, 47.416238], [8.484561, 47.416243], [8.484558, 47.416247], [8.484556, 47.416251], [8.484553, 47.416255], [8.484549, 47.416259], [8.484545, 47.416263], [8.484541, 47.416266], [8.484355, 47.416416], [8.484186, 47.416565], [8.483815, 47.416936], [8.483447, 47.41731], [8.483292, 47.417474], [8.483129, 47.417647], [8.483003, 47.417825], [8.482824, 47.418126], [8.482803, 47.41816], [8.482768, 47.418207], [8.482656, 47.418346], [8.482596, 47.418425], [8.482509, 47.418564], [8.482285, 47.419043], [8.482239, 47.419135], [8.482187, 47.419226], [8.482127, 47.419315], [8.482004, 47.419485], [8.481814, 47.419783], [8.481666, 47.419977], [8.481656, 47.419989], [8.481565, 47.42009], [8.481555, 47.420103], [8.481547, 47.420116], [8.48154, 47.420129], [8.481535, 47.420143], [8.481532, 47.420157], [8.481531, 47.420171], [8.481532, 47.420185], [8.481535, 47.420199], [8.48154, 47.420213]]], "type": "MultiLineString"}, "id": "3810", "properties": {}, "type": "Feature"}, {"bbox": [8.504122, 47.405792, 8.504217, 47.406132], "geometry": {"coordinates": [[[8.504122, 47.405792], [8.504131, 47.4058], [8.504153, 47.405825], [8.504173, 47.405851], [8.504189, 47.405878], [8.504201, 47.405905], [8.50421, 47.405934], [8.504215, 47.405962], [8.504217, 47.405991], [8.504215, 47.40602], [8.504209, 47.406049], [8.5042, 47.406077], [8.504187, 47.406105], [8.504171, 47.406132]]], "type": "MultiLineString"}, "id": "3813", "properties": {}, "type": "Feature"}, {"bbox": [8.51898, 47.34339, 8.520061, 47.34436], "geometry": {"coordinates": [[[8.520061, 47.34436], [8.519695, 47.344344], [8.519636, 47.344341], [8.519578, 47.344334], [8.51952, 47.344324], [8.519465, 47.344311], [8.519411, 47.344294], [8.519359, 47.344274], [8.519311, 47.344251], [8.519265, 47.344225], [8.519223, 47.344197], [8.519185, 47.344166], [8.519152, 47.344132], [8.519123, 47.344097], [8.519098, 47.344061], [8.519079, 47.344023], [8.519064, 47.343983], [8.519057, 47.343961], [8.519053, 47.343938], [8.519051, 47.343915], [8.519052, 47.343892], [8.519056, 47.343869], [8.519099, 47.343585], [8.519102, 47.343568], [8.519102, 47.34355], [8.5191, 47.343533], [8.519096, 47.343516], [8.51909, 47.343499], [8.519082, 47.343482], [8.51898, 47.34339]]], "type": "MultiLineString"}, "id": "3814", "properties": {}, "type": "Feature"}, {"bbox": [8.50988, 47.378062, 8.510786, 47.378224], "geometry": {"coordinates": [[[8.510786, 47.378062], [8.51071, 47.378088], [8.510633, 47.378111], [8.510554, 47.378132], [8.510333, 47.378175], [8.510108, 47.378206], [8.50988, 47.378224]]], "type": "MultiLineString"}, "id": "3815", "properties": {}, "type": "Feature"}, {"bbox": [8.533259, 47.412491, 8.533598, 47.413094], "geometry": {"coordinates": [[[8.533283, 47.412491], [8.533372, 47.412506], [8.533259, 47.413034], [8.533275, 47.413063], [8.533299, 47.413083], [8.533326, 47.413094], [8.533598, 47.413081]]], "type": "MultiLineString"}, "id": "3821", "properties": {}, "type": "Feature"}, {"bbox": [8.489762, 47.391991, 8.491386, 47.392675], "geometry": {"coordinates": [[[8.491386, 47.392308], [8.49135, 47.392303], [8.491315, 47.392295], [8.491282, 47.392286], [8.49125, 47.392273], [8.491224, 47.392262], [8.4912, 47.392249], [8.491177, 47.392234], [8.491157, 47.392219], [8.491138, 47.392202], [8.491045, 47.392092], [8.491033, 47.392078], [8.49102, 47.392064], [8.491005, 47.392052], [8.490989, 47.39204], [8.490971, 47.39203], [8.490952, 47.392021], [8.490932, 47.392012], [8.490911, 47.392005], [8.490889, 47.392], [8.490866, 47.391996], [8.490843, 47.391993], [8.490819, 47.391991], [8.490796, 47.391991], [8.490772, 47.391993], [8.490749, 47.391996], [8.490726, 47.392], [8.490704, 47.392006], [8.48993, 47.392213], [8.489907, 47.392222], [8.489885, 47.392231], [8.489864, 47.392242], [8.489845, 47.392254], [8.489828, 47.392268], [8.489812, 47.392282], [8.489798, 47.392297], [8.489786, 47.392313], [8.489777, 47.39233], [8.48977, 47.392347], [8.489765, 47.392364], [8.489762, 47.392382], [8.489762, 47.3924], [8.489764, 47.392418], [8.489768, 47.392435], [8.489775, 47.392453], [8.489784, 47.392469], [8.489861, 47.392595], [8.489874, 47.392607], [8.489889, 47.39262], [8.489906, 47.392631], [8.489923, 47.392641], [8.489943, 47.392649], [8.489963, 47.392657], [8.489984, 47.392663], [8.490006, 47.392668], [8.490029, 47.392672], [8.490051, 47.392674], [8.490074, 47.392675], [8.490097, 47.392674], [8.49012, 47.392672], [8.490142, 47.392669], [8.490164, 47.392664], [8.490185, 47.392658], [8.491016, 47.39243], [8.491386, 47.392308]]], "type": "MultiLineString"}, "id": "3822", "properties": {}, "type": "Feature"}, {"bbox": [8.549602, 47.421543, 8.550043, 47.422127], "geometry": {"coordinates": [[[8.550012, 47.421543], [8.550021, 47.421554], [8.550029, 47.421565], [8.550034, 47.421577], [8.550039, 47.421589], [8.550042, 47.421601], [8.550043, 47.421614], [8.550043, 47.421626], [8.550041, 47.421639], [8.550037, 47.421651], [8.550032, 47.421663], [8.550025, 47.421675], [8.550017, 47.421686], [8.550007, 47.421696], [8.549997, 47.421707], [8.549984, 47.421716], [8.549971, 47.421725], [8.549666, 47.421855], [8.549652, 47.421865], [8.54964, 47.421877], [8.54963, 47.421889], [8.549621, 47.421902], [8.549614, 47.421915], [8.549608, 47.421929], [8.549605, 47.421942], [8.549603, 47.421957], [8.549602, 47.421971], [8.549604, 47.421985], [8.549608, 47.421999], [8.549613, 47.422012], [8.54962, 47.422025], [8.549628, 47.422038], [8.549639, 47.422051], [8.54965, 47.422062], [8.549664, 47.422073], [8.549678, 47.422083], [8.549694, 47.422092], [8.549711, 47.4221], [8.549729, 47.422108], [8.549747, 47.422114], [8.549767, 47.422119], [8.549787, 47.422123], [8.549807, 47.422125], [8.549828, 47.422127], [8.549849, 47.422127], [8.549869, 47.422126], [8.54989, 47.422123], [8.54991, 47.42212], [8.54993, 47.422115], [8.549949, 47.42211]]], "type": "MultiLineString"}, "id": "3824", "properties": {}, "type": "Feature"}, {"bbox": [8.554258, 47.402995, 8.554686, 47.404002], "geometry": {"coordinates": [[[8.554686, 47.402995], [8.554598, 47.403142], [8.554379, 47.403529], [8.554363, 47.403556], [8.554258, 47.403728], [8.554342, 47.404002]]], "type": "MultiLineString"}, "id": "3826", "properties": {}, "type": "Feature"}, {"bbox": [8.543997, 47.375542, 8.545192, 47.375716], "geometry": {"coordinates": [[[8.543997, 47.375551], [8.544083, 47.375542], [8.544597, 47.375552], [8.545192, 47.375716]]], "type": "MultiLineString"}, "id": "3827", "properties": {}, "type": "Feature"}, {"bbox": [8.543797, 47.371873, 8.544414, 47.37214], "geometry": {"coordinates": [[[8.543797, 47.371873], [8.543876, 47.371892], [8.54402, 47.3719], [8.544363, 47.37194], [8.544356, 47.372023], [8.544414, 47.372032], [8.544394, 47.37214]]], "type": "MultiLineString"}, "id": "3829", "properties": {}, "type": "Feature"}, {"bbox": [8.605956, 47.357149, 8.609898, 47.358775], "geometry": {"coordinates": [[[8.605956, 47.357149], [8.606059, 47.357223], [8.606379, 47.357405], [8.606457, 47.35742], [8.606524, 47.357427], [8.606585, 47.357438], [8.607422, 47.357554], [8.607527, 47.357574], [8.607664, 47.357618], [8.609287, 47.358099], [8.609338, 47.358118], [8.609387, 47.358138], [8.609434, 47.358162], [8.609477, 47.358188], [8.609516, 47.358217], [8.609552, 47.358248], [8.609584, 47.358281], [8.609612, 47.358315], [8.609635, 47.358351], [8.609898, 47.358775]]], "type": "MultiLineString"}, "id": "3830", "properties": {}, "type": "Feature"}, {"bbox": [8.515582, 47.323576, 8.518764, 47.324115], "geometry": {"coordinates": [[[8.515582, 47.323724], [8.515678, 47.323699], [8.515716, 47.323689], [8.515733, 47.323684], [8.515752, 47.323681], [8.51577, 47.323679], [8.515794, 47.323679], [8.515818, 47.32368], [8.515842, 47.323683], [8.515906, 47.323694], [8.51611, 47.323745], [8.5165, 47.323826], [8.516549, 47.323835], [8.516509, 47.324049], [8.516535, 47.324049], [8.51666, 47.323739], [8.517463, 47.324115], [8.517466, 47.324011], [8.517522, 47.3239], [8.517549, 47.323805], [8.517563, 47.323651], [8.517615, 47.323576], [8.517725, 47.323614], [8.517847, 47.323728], [8.518086, 47.323772], [8.518262, 47.32384], [8.518484, 47.323969], [8.518526, 47.323905], [8.518653, 47.323928], [8.518764, 47.323947]]], "type": "MultiLineString"}, "id": "3832", "properties": {}, "type": "Feature"}, {"bbox": [8.500105, 47.40334, 8.500984, 47.403465], "geometry": {"coordinates": [[[8.500105, 47.403427], [8.500116, 47.403434], [8.500127, 47.403441], [8.50014, 47.403446], [8.500153, 47.403452], [8.500166, 47.403456], [8.50018, 47.403459], [8.500195, 47.403462], [8.500209, 47.403464], [8.500224, 47.403465], [8.500239, 47.403465], [8.500254, 47.403464], [8.500269, 47.403463], [8.500984, 47.40334]]], "type": "MultiLineString"}, "id": "3834", "properties": {}, "type": "Feature"}, {"bbox": [8.60255, 47.352557, 8.604157, 47.353958], "geometry": {"coordinates": [[[8.602552, 47.352557], [8.60255, 47.352604], [8.602552, 47.35265], [8.60256, 47.352696], [8.602574, 47.352722], [8.602591, 47.352747], [8.602611, 47.35277], [8.602634, 47.352793], [8.602659, 47.352814], [8.602683, 47.352851], [8.602701, 47.352889], [8.602713, 47.352928], [8.60272, 47.352968], [8.602722, 47.353008], [8.602718, 47.353059], [8.602716, 47.353109], [8.602713, 47.35316], [8.602713, 47.353212], [8.60272, 47.353263], [8.602733, 47.353315], [8.602752, 47.353365], [8.602778, 47.353413], [8.602794, 47.353445], [8.602814, 47.353475], [8.602838, 47.353504], [8.602866, 47.353531], [8.602897, 47.353557], [8.602931, 47.35358], [8.602968, 47.353602], [8.603076, 47.353645], [8.603186, 47.353686], [8.603297, 47.353723], [8.603584, 47.353801], [8.60387, 47.35388], [8.604157, 47.353958]]], "type": "MultiLineString"}, "id": "3835", "properties": {}, "type": "Feature"}, {"bbox": [8.54934, 47.387696, 8.551977, 47.388168], "geometry": {"coordinates": [[[8.54934, 47.387721], [8.54937, 47.387723], [8.549385, 47.387696], [8.549457, 47.387705], [8.549498, 47.387764], [8.549584, 47.387698], [8.549642, 47.387771], [8.549721, 47.38771], [8.549786, 47.387782], [8.549868, 47.387717], [8.549931, 47.38779], [8.550016, 47.387726], [8.550054, 47.387811], [8.550133, 47.387817], [8.55017, 47.387838], [8.550207, 47.387907], [8.550303, 47.387853], [8.55034, 47.387932], [8.55044, 47.38788], [8.550479, 47.387957], [8.550575, 47.387907], [8.550618, 47.387983], [8.55072, 47.387934], [8.550753, 47.388009], [8.550865, 47.387959], [8.550902, 47.388035], [8.551018, 47.38799], [8.551041, 47.388062], [8.551137, 47.388012], [8.551191, 47.388065], [8.551276, 47.3881], [8.551361, 47.388124], [8.551977, 47.388168]]], "type": "MultiLineString"}, "id": "3838", "properties": {}, "type": "Feature"}, {"bbox": [8.554503, 47.416953, 8.555477, 47.418232], "geometry": {"coordinates": [[[8.554752, 47.416953], [8.555462, 47.417714], [8.555467, 47.417721], [8.555471, 47.417728], [8.555474, 47.417736], [8.555476, 47.417744], [8.555477, 47.417752], [8.555477, 47.41776], [8.555476, 47.417768], [8.555474, 47.417776], [8.555471, 47.417784], [8.555468, 47.417791], [8.555463, 47.417798], [8.555457, 47.417805], [8.555451, 47.417812], [8.555443, 47.417818], [8.555435, 47.417824], [8.555045, 47.417997], [8.554917, 47.418101], [8.554691, 47.418185], [8.554503, 47.418232]]], "type": "MultiLineString"}, "id": "3839", "properties": {}, "type": "Feature"}, {"bbox": [8.523142, 47.360273, 8.523722, 47.362935], "geometry": {"coordinates": [[[8.523146, 47.362935], [8.523142, 47.362865], [8.523164, 47.362507], [8.523218, 47.36202], [8.52342, 47.361104], [8.523541, 47.360579], [8.523605, 47.360431], [8.523722, 47.360273]]], "type": "MultiLineString"}, "id": "3840", "properties": {}, "type": "Feature"}, {"bbox": [8.582299, 47.400219, 8.582686, 47.400588], "geometry": {"coordinates": [[[8.582642, 47.400588], [8.582686, 47.400525], [8.582586, 47.400422], [8.582546, 47.400434], [8.582517, 47.400387], [8.582498, 47.400392], [8.582472, 47.400353], [8.582455, 47.400356], [8.58243, 47.400319], [8.582372, 47.400333], [8.582299, 47.400219]]], "type": "MultiLineString"}, "id": "3843", "properties": {}, "type": "Feature"}, {"bbox": [8.500191, 47.404965, 8.502116, 47.405636], "geometry": {"coordinates": [[[8.502116, 47.405021], [8.502083, 47.405004], [8.502049, 47.404989], [8.502013, 47.404976], [8.501975, 47.404966], [8.501957, 47.404965], [8.50194, 47.404965], [8.501922, 47.404966], [8.501905, 47.404968], [8.501888, 47.404971], [8.501872, 47.404975], [8.501856, 47.40498], [8.501841, 47.404987], [8.501464, 47.40514], [8.501431, 47.405155], [8.501399, 47.405171], [8.501368, 47.405188], [8.501318, 47.405214], [8.501264, 47.405238], [8.501208, 47.40526], [8.500191, 47.405636]]], "type": "MultiLineString"}, "id": "3845", "properties": {}, "type": "Feature"}, {"bbox": [8.509511, 47.419836, 8.510615, 47.420064], "geometry": {"coordinates": [[[8.509511, 47.419989], [8.509633, 47.42002], [8.509658, 47.420025], [8.509682, 47.420028], [8.509707, 47.420029], [8.509732, 47.420029], [8.509757, 47.420028], [8.509782, 47.420025], [8.509806, 47.420021], [8.50983, 47.420015], [8.510186, 47.419864], [8.510199, 47.419858], [8.510212, 47.419852], [8.510226, 47.419847], [8.51024, 47.419843], [8.510255, 47.41984], [8.510271, 47.419838], [8.510286, 47.419837], [8.510302, 47.419836], [8.510317, 47.419837], [8.510333, 47.419838], [8.510348, 47.41984], [8.510363, 47.419843], [8.510377, 47.419847], [8.510391, 47.419852], [8.510404, 47.419858], [8.510417, 47.419864], [8.510615, 47.420064]]], "type": "MultiLineString"}, "id": "3846", "properties": {}, "type": "Feature"}, {"bbox": [8.567563, 47.413154, 8.57245, 47.413317], "geometry": {"coordinates": [[[8.567563, 47.413287], [8.567607, 47.413271], [8.567654, 47.413258], [8.567702, 47.413247], [8.567842, 47.413231], [8.567982, 47.413215], [8.568122, 47.413199], [8.568182, 47.413182], [8.568243, 47.413169], [8.568306, 47.413159], [8.56837, 47.413154], [8.568822, 47.413157], [8.569274, 47.413161], [8.569725, 47.413164], [8.57024, 47.413174], [8.570754, 47.413181], [8.571269, 47.413186], [8.571511, 47.41323], [8.571754, 47.413274], [8.571997, 47.413317], [8.572032, 47.413309], [8.572068, 47.413303], [8.572105, 47.4133], [8.572142, 47.413298], [8.572179, 47.413299], [8.572215, 47.413302], [8.57245, 47.413305]]], "type": "MultiLineString"}, "id": "3847", "properties": {}, "type": "Feature"}, {"bbox": [8.573075, 47.401611, 8.573904, 47.40344], "geometry": {"coordinates": [[[8.573904, 47.40344], [8.573878, 47.403435], [8.573854, 47.403429], [8.57383, 47.403422], [8.573807, 47.403413], [8.573786, 47.403402], [8.573766, 47.403391], [8.573747, 47.403378], [8.573731, 47.403364], [8.573688, 47.403297], [8.573453, 47.402874], [8.573459, 47.402685], [8.573248, 47.402518], [8.57322, 47.402459], [8.573194, 47.402383], [8.573175, 47.402253], [8.573148, 47.402112], [8.573122, 47.401764], [8.573115, 47.401668], [8.573075, 47.401611]]], "type": "MultiLineString"}, "id": "3848", "properties": {}, "type": "Feature"}, {"bbox": [8.51057, 47.398307, 8.512775, 47.40207], "geometry": {"coordinates": [[[8.511983, 47.398307], [8.511809, 47.39858], [8.511776, 47.398665], [8.511755, 47.398711], [8.51173, 47.39876], [8.511521, 47.399038], [8.511512, 47.39905], [8.511502, 47.399061], [8.51149, 47.399071], [8.511477, 47.399081], [8.511463, 47.39909], [8.511448, 47.399099], [8.511092, 47.399258], [8.511087, 47.399452]], [[8.51057, 47.399725], [8.510642, 47.399774], [8.510645, 47.399775], [8.510647, 47.399776], [8.51065, 47.399777], [8.510653, 47.399777], [8.510656, 47.399777], [8.51066, 47.399778], [8.510663, 47.399778], [8.510666, 47.399777], [8.510669, 47.399777], [8.510672, 47.399776], [8.510675, 47.399776], [8.510678, 47.399775], [8.51068, 47.399774], [8.510683, 47.399773], [8.510833, 47.399704], [8.510987, 47.399638], [8.511144, 47.399576], [8.511147, 47.399575], [8.51115, 47.399574], [8.511153, 47.399573], [8.511157, 47.399573], [8.51116, 47.399572], [8.511164, 47.399572], [8.511167, 47.399572], [8.511171, 47.399573], [8.511174, 47.399573], [8.511178, 47.399574], [8.511181, 47.399575], [8.511184, 47.399576], [8.511187, 47.399577], [8.51119, 47.399578], [8.511192, 47.39958], [8.511195, 47.399582], [8.511197, 47.399584], [8.511199, 47.399586], [8.511201, 47.399588], [8.511354, 47.399749], [8.511427, 47.399869], [8.511528, 47.400093], [8.511612, 47.400186], [8.511705, 47.400277], [8.51182, 47.400377], [8.511941, 47.400509], [8.51224, 47.400805], [8.512257, 47.400824], [8.512287, 47.400857], [8.512403, 47.401032], [8.512417, 47.401047], [8.512619, 47.401342], [8.512728, 47.401551], [8.512749, 47.401607], [8.512757, 47.401633], [8.512761, 47.40166], [8.512762, 47.401686], [8.512745, 47.401976], [8.512775, 47.40207]]], "type": "MultiLineString"}, "id": "3850", "properties": {}, "type": "Feature"}, {"bbox": [8.521839, 47.410267, 8.523258, 47.410952], "geometry": {"coordinates": [[[8.523258, 47.410547], [8.523216, 47.410519], [8.522929, 47.410295], [8.522866, 47.410267], [8.522736, 47.410347], [8.521839, 47.410952]]], "type": "MultiLineString"}, "id": "3852", "properties": {}, "type": "Feature"}, {"bbox": [8.532833, 47.347353, 8.53332, 47.348925], "geometry": {"coordinates": [[[8.532833, 47.347353], [8.533245, 47.347401], [8.5333, 47.34748], [8.53332, 47.347726], [8.533261, 47.348083], [8.533236, 47.348157], [8.533206, 47.348365], [8.533186, 47.348498], [8.533176, 47.348631], [8.533175, 47.348765], [8.533176, 47.348781], [8.533179, 47.348797], [8.533185, 47.348812], [8.533192, 47.348828], [8.533202, 47.348842], [8.533213, 47.348856], [8.533226, 47.34887], [8.533292, 47.348925]]], "type": "MultiLineString"}, "id": "3853", "properties": {}, "type": "Feature"}, {"bbox": [8.500784, 47.361976, 8.503727, 47.363316], "geometry": {"coordinates": [[[8.503727, 47.361976], [8.503586, 47.36211], [8.503334, 47.362319], [8.503159, 47.362454], [8.50291, 47.36261], [8.502642, 47.362751], [8.502358, 47.362877], [8.502059, 47.362986], [8.501986, 47.363013], [8.501707, 47.363099], [8.501421, 47.363176], [8.50113, 47.363243], [8.500784, 47.363316]]], "type": "MultiLineString"}, "id": "3858", "properties": {}, "type": "Feature"}, {"bbox": [8.47929, 47.360328, 8.480317, 47.360657], "geometry": {"coordinates": [[[8.480317, 47.360328], [8.480268, 47.360336], [8.48022, 47.360347], [8.480174, 47.36036], [8.480129, 47.360375], [8.479804, 47.36048], [8.47929, 47.360657]]], "type": "MultiLineString"}, "id": "3863", "properties": {}, "type": "Feature"}, {"bbox": [8.538202, 47.334114, 8.539006, 47.334758], "geometry": {"coordinates": [[[8.539006, 47.334525], [8.538995, 47.334522], [8.538984, 47.334519], [8.538973, 47.334517], [8.538962, 47.334516], [8.538951, 47.334515], [8.538939, 47.334515], [8.538928, 47.334516], [8.538916, 47.334517], [8.538905, 47.334519], [8.538895, 47.334521], [8.538884, 47.334524], [8.538874, 47.334528], [8.538864, 47.334532], [8.538817, 47.334556], [8.538704, 47.334647], [8.538577, 47.334732], [8.538571, 47.334736], [8.538566, 47.33474], [8.538559, 47.334744], [8.538553, 47.334747], [8.538546, 47.33475], [8.538538, 47.334752], [8.538531, 47.334754], [8.538523, 47.334756], [8.538515, 47.334757], [8.538506, 47.334758], [8.538498, 47.334758], [8.53849, 47.334758], [8.538482, 47.334757], [8.538474, 47.334756], [8.538466, 47.334754], [8.538458, 47.334752], [8.538452, 47.334749], [8.538445, 47.334745], [8.53844, 47.334742], [8.538434, 47.334738], [8.53843, 47.334734], [8.538425, 47.334729], [8.538422, 47.334724], [8.538419, 47.334719], [8.538417, 47.334714], [8.538415, 47.334709], [8.538414, 47.334704], [8.538414, 47.334698], [8.538414, 47.334693], [8.538415, 47.334688], [8.538417, 47.334683], [8.538419, 47.334677], [8.538422, 47.334673], [8.538426, 47.334668], [8.53845, 47.334619], [8.538466, 47.334537], [8.538479, 47.334496], [8.538497, 47.334456], [8.53852, 47.334418], [8.538548, 47.334381], [8.538581, 47.334346], [8.538695, 47.334221], [8.538701, 47.334218], [8.538706, 47.334215], [8.538712, 47.334211], [8.538716, 47.334207], [8.53872, 47.334203], [8.538724, 47.334198], [8.538727, 47.334193], [8.538729, 47.334189], [8.538731, 47.334184], [8.538732, 47.334178], [8.538732, 47.334173], [8.538732, 47.334168], [8.538731, 47.334163], [8.538729, 47.334158], [8.538727, 47.334153], [8.538724, 47.334149], [8.538721, 47.334144], [8.538717, 47.33414], [8.538713, 47.334136], [8.538708, 47.334132], [8.538702, 47.334128], [8.538696, 47.334125], [8.53869, 47.334122], [8.538684, 47.33412], [8.538677, 47.334118], [8.53867, 47.334116], [8.538662, 47.334115], [8.538655, 47.334114], [8.538647, 47.334114], [8.53864, 47.334114], [8.538632, 47.334114], [8.538625, 47.334115], [8.538618, 47.334117], [8.538611, 47.334119], [8.538604, 47.334121], [8.538598, 47.334123], [8.538592, 47.334126], [8.538586, 47.33413], [8.538581, 47.334133], [8.538576, 47.334137], [8.538572, 47.334141], [8.538263, 47.334343], [8.538202, 47.334341]]], "type": "MultiLineString"}, "id": "3864", "properties": {}, "type": "Feature"}, {"bbox": [8.534294, 47.403729, 8.535254, 47.404896], "geometry": {"coordinates": [[[8.534294, 47.403729], [8.534357, 47.403796], [8.534425, 47.40386], [8.534499, 47.403921], [8.53451, 47.403928], [8.534521, 47.403934], [8.534533, 47.40394], [8.534546, 47.403945], [8.534559, 47.403949], [8.534573, 47.403952], [8.534587, 47.403954], [8.534601, 47.403956], [8.534615, 47.403956], [8.53463, 47.403956], [8.534644, 47.403955], [8.53472, 47.403934], [8.534728, 47.403933], [8.534735, 47.403932], [8.534743, 47.403932], [8.534751, 47.403933], [8.534758, 47.403934], [8.534766, 47.403935], [8.534773, 47.403936], [8.53478, 47.403939], [8.534787, 47.403941], [8.534793, 47.403944], [8.534799, 47.403947], [8.534804, 47.403951], [8.534809, 47.403955], [8.534814, 47.403959], [8.534818, 47.403963], [8.534821, 47.403968], [8.535241, 47.404686], [8.535245, 47.404692], [8.535249, 47.404698], [8.535251, 47.404705], [8.535253, 47.404711], [8.535254, 47.404718], [8.535254, 47.404724], [8.535253, 47.404731], [8.535251, 47.404737], [8.535249, 47.404744], [8.535246, 47.40475], [8.535241, 47.404756], [8.535237, 47.404761], [8.535231, 47.404767], [8.535225, 47.404772], [8.535218, 47.404776], [8.535211, 47.404781], [8.535172, 47.404791], [8.535134, 47.404803], [8.535099, 47.404818], [8.535065, 47.404834], [8.535034, 47.404853], [8.535006, 47.404874], [8.53498, 47.404896]]], "type": "MultiLineString"}, "id": "3865", "properties": {}, "type": "Feature"}, {"bbox": [8.478207, 47.382621, 8.479404, 47.382931], "geometry": {"coordinates": [[[8.478207, 47.382931], [8.478226, 47.382922], [8.478243, 47.382911], [8.478259, 47.3829], [8.478345, 47.382835], [8.478363, 47.382824], [8.478382, 47.382814], [8.478403, 47.382806], [8.478424, 47.382798], [8.478447, 47.382792], [8.47847, 47.382787], [8.478493, 47.382784], [8.478517, 47.382782], [8.479098, 47.382733], [8.479128, 47.38273], [8.479158, 47.382725], [8.479187, 47.382719], [8.479215, 47.38271], [8.479242, 47.3827], [8.479404, 47.382621]]], "type": "MultiLineString"}, "id": "3867", "properties": {}, "type": "Feature"}, {"bbox": [8.494636, 47.403656, 8.495609, 47.404466], "geometry": {"coordinates": [[[8.494636, 47.403656], [8.49468, 47.403682], [8.494843, 47.403922], [8.494871, 47.403948], [8.494908, 47.403983], [8.495075, 47.404277], [8.495095, 47.404325], [8.495118, 47.404379], [8.495192, 47.404428], [8.495609, 47.404466]]], "type": "MultiLineString"}, "id": "3868", "properties": {}, "type": "Feature"}, {"bbox": [8.572466, 47.4117, 8.572705, 47.412872], "geometry": {"coordinates": [[[8.572687, 47.4117], [8.572649, 47.411784], [8.572614, 47.411869], [8.572581, 47.411954], [8.572576, 47.411974], [8.572573, 47.411995], [8.572573, 47.412015], [8.572576, 47.412035], [8.572581, 47.412055], [8.572589, 47.412075], [8.5726, 47.412094], [8.572612, 47.412113], [8.572671, 47.41217], [8.57268, 47.412182], [8.572689, 47.412195], [8.572695, 47.412208], [8.5727, 47.412221], [8.572703, 47.412235], [8.572705, 47.412249], [8.572704, 47.412263], [8.572702, 47.412276], [8.572697, 47.41229], [8.572576, 47.412523], [8.572533, 47.412608], [8.5725, 47.412694], [8.572477, 47.412783], [8.572466, 47.412872]]], "type": "MultiLineString"}, "id": "3869", "properties": {}, "type": "Feature"}, {"bbox": [8.574065, 47.372378, 8.574289, 47.372719], "geometry": {"coordinates": [[[8.574289, 47.372378], [8.574264, 47.372452], [8.574229, 47.372523], [8.574183, 47.372592], [8.574129, 47.372658], [8.574065, 47.372719]]], "type": "MultiLineString"}, "id": "3870", "properties": {}, "type": "Feature"}, {"bbox": [8.530486, 47.357296, 8.53217, 47.359487], "geometry": {"coordinates": [[[8.53128, 47.359487], [8.531241, 47.35943], [8.531141, 47.35928], [8.53108, 47.359201], [8.530997, 47.359086], [8.530922, 47.358969], [8.530857, 47.35885], [8.530816, 47.358762], [8.5307, 47.358493], [8.530683, 47.358456], [8.530661, 47.358421], [8.530635, 47.358387], [8.530605, 47.358355], [8.530572, 47.358327], [8.530537, 47.358301], [8.530499, 47.358277], [8.530486, 47.358232], [8.530609, 47.358234], [8.530626, 47.358234], [8.530644, 47.358232], [8.530661, 47.358229], [8.530678, 47.358226], [8.530694, 47.358221], [8.53071, 47.358215], [8.530725, 47.358209], [8.530739, 47.358202], [8.530767, 47.358184], [8.530793, 47.358164], [8.530817, 47.358143], [8.530838, 47.35812], [8.530877, 47.358072], [8.530919, 47.358025], [8.530965, 47.35798], [8.531009, 47.357942], [8.531055, 47.357905], [8.531104, 47.35787], [8.531162, 47.357833], [8.53122, 47.357797], [8.531279, 47.357762], [8.531315, 47.357739], [8.531347, 47.357713], [8.531375, 47.357686], [8.5314, 47.357657], [8.531421, 47.357627], [8.531437, 47.357596], [8.531449, 47.357563], [8.53149, 47.357449], [8.531497, 47.357431], [8.531507, 47.357414], [8.531519, 47.357397], [8.531534, 47.357381], [8.53155, 47.357366], [8.531568, 47.357352], [8.531589, 47.357339], [8.53161, 47.357328], [8.531634, 47.357318], [8.531658, 47.357309], [8.531684, 47.357302], [8.531698, 47.357299], [8.531713, 47.357297], [8.531727, 47.357296], [8.531742, 47.357296], [8.531757, 47.357297], [8.531772, 47.357299], [8.531786, 47.357301], [8.5318, 47.357305], [8.531814, 47.357309], [8.531827, 47.357314], [8.531839, 47.35732], [8.53185, 47.357327], [8.53186, 47.357334], [8.53187, 47.357342], [8.531888, 47.357362], [8.531904, 47.357384], [8.531916, 47.357406], [8.531926, 47.357429], [8.531933, 47.357453], [8.531936, 47.357477], [8.531937, 47.357501], [8.531931, 47.357542], [8.531921, 47.357583], [8.531907, 47.357623], [8.531882, 47.357724], [8.531878, 47.357762], [8.531879, 47.3578], [8.531884, 47.357837], [8.531889, 47.357853], [8.531895, 47.357868], [8.531904, 47.357883], [8.531914, 47.357898], [8.531926, 47.357911], [8.53194, 47.357924], [8.531955, 47.357936], [8.531966, 47.357942], [8.531977, 47.357948], [8.531988, 47.357953], [8.532, 47.357957], [8.532013, 47.35796], [8.532026, 47.357963], [8.532039, 47.357965], [8.532053, 47.357966], [8.532067, 47.357966], [8.53217, 47.357966]]], "type": "MultiLineString"}, "id": "3872", "properties": {}, "type": "Feature"}, {"bbox": [8.533939, 47.399239, 8.536125, 47.400329], "geometry": {"coordinates": [[[8.533939, 47.399359], [8.534287, 47.39925], [8.53452, 47.399239], [8.534868, 47.399321], [8.535003, 47.399415], [8.53509, 47.399486], [8.535179, 47.399615], [8.535389, 47.399956], [8.535792, 47.400144], [8.536125, 47.400329]]], "type": "MultiLineString"}, "id": "3873", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.427205, 8.496232, 47.431128], "geometry": {"coordinates": [[[8.496232, 47.427205], [8.496124, 47.427317], [8.495995, 47.42743], [8.495884, 47.427507], [8.495771, 47.427583], [8.495655, 47.427656], [8.495583, 47.427705], [8.495518, 47.427759], [8.495461, 47.427816], [8.495412, 47.427876], [8.495395, 47.427894], [8.49538, 47.427912], [8.495368, 47.427931], [8.495358, 47.427951], [8.495351, 47.427971], [8.495346, 47.427991], [8.495345, 47.428012], [8.495346, 47.428033], [8.495349, 47.428054], [8.495356, 47.428074], [8.495365, 47.428094], [8.495377, 47.428113], [8.495391, 47.428131], [8.495407, 47.428149], [8.495426, 47.428165], [8.495447, 47.428181], [8.49547, 47.428195], [8.495494, 47.428207], [8.495519, 47.42822], [8.495542, 47.428235], [8.495563, 47.42825], [8.495581, 47.428267], [8.495598, 47.428285], [8.495613, 47.428304], [8.495625, 47.428324], [8.495634, 47.428344], [8.495641, 47.428365], [8.495645, 47.428386], [8.495243, 47.429037], [8.495037, 47.429355], [8.494802, 47.429583], [8.494226, 47.42992], [8.493809, 47.430175], [8.49331, 47.430511], [8.493236, 47.430597], [8.493166, 47.430685], [8.4931, 47.430775], [8.49308, 47.430803], [8.493064, 47.430833], [8.493052, 47.430863], [8.493044, 47.430895], [8.492992, 47.431053], [8.492955, 47.431128]]], "type": "MultiLineString"}, "id": "3874", "properties": {}, "type": "Feature"}, {"bbox": [8.58492, 47.401238, 8.586164, 47.401734], "geometry": {"coordinates": [[[8.586164, 47.401734], [8.58611, 47.401634], [8.586046, 47.401537], [8.585971, 47.401444], [8.585935, 47.401405], [8.585885, 47.401411], [8.585838, 47.401376], [8.585787, 47.401345], [8.585733, 47.401316], [8.585675, 47.401291], [8.585627, 47.401274], [8.585578, 47.401261], [8.585527, 47.401251], [8.585474, 47.401243], [8.585421, 47.401239], [8.585368, 47.401238], [8.585315, 47.401241], [8.585238, 47.40125], [8.585164, 47.401264], [8.585091, 47.401283], [8.585021, 47.401306], [8.584987, 47.401316], [8.58492, 47.401312]]], "type": "MultiLineString"}, "id": "3877", "properties": {}, "type": "Feature"}, {"bbox": [8.506996, 47.417154, 8.508057, 47.417509], "geometry": {"coordinates": [[[8.508057, 47.417509], [8.507976, 47.417447], [8.507895, 47.417386], [8.507813, 47.417325], [8.507776, 47.417303], [8.507736, 47.417283], [8.507694, 47.417266], [8.507649, 47.417252], [8.507603, 47.417241], [8.507545, 47.417228], [8.507486, 47.417217], [8.507427, 47.417205], [8.507369, 47.417192], [8.507313, 47.417175], [8.50726, 47.417156], [8.50725, 47.417155], [8.507241, 47.417154], [8.507232, 47.417154], [8.507223, 47.417155], [8.507213, 47.417156], [8.507204, 47.417157], [8.507196, 47.41716], [8.507187, 47.417162], [8.507179, 47.417166], [8.507137, 47.417189], [8.507092, 47.417211], [8.507045, 47.41723], [8.506996, 47.417246]]], "type": "MultiLineString"}, "id": "3878", "properties": {}, "type": "Feature"}, {"bbox": [8.514446, 47.357296, 8.517249, 47.357637], "geometry": {"coordinates": [[[8.517249, 47.357448], [8.517043, 47.357511], [8.516773, 47.357474], [8.516747, 47.357468], [8.516722, 47.357461], [8.516698, 47.357452], [8.516675, 47.357442], [8.516653, 47.357431], [8.516601, 47.357407], [8.516573, 47.357395], [8.516543, 47.357384], [8.516512, 47.357375], [8.516242, 47.357316], [8.516186, 47.357306], [8.516129, 47.357299], [8.516071, 47.357296], [8.516013, 47.357297], [8.515956, 47.357301], [8.515899, 47.357308], [8.515888, 47.35731], [8.515877, 47.357311], [8.515866, 47.357314], [8.515855, 47.357317], [8.515845, 47.357321], [8.515836, 47.357325], [8.515827, 47.35733], [8.515818, 47.357335], [8.515811, 47.357341], [8.515804, 47.357347], [8.515756, 47.357394], [8.515706, 47.357439], [8.515656, 47.357484], [8.515633, 47.357505], [8.515607, 47.357524], [8.51558, 47.357543], [8.515551, 47.35756], [8.515521, 47.357575], [8.515488, 47.357588], [8.515454, 47.357598], [8.515437, 47.357603], [8.51542, 47.357607], [8.515402, 47.35761], [8.515384, 47.357612], [8.515366, 47.357612], [8.515347, 47.357612], [8.515329, 47.35761], [8.515311, 47.357607], [8.515294, 47.357603], [8.515277, 47.357598], [8.515261, 47.357593], [8.515246, 47.357586], [8.515232, 47.357578], [8.515218, 47.357569], [8.515104, 47.357492], [8.515078, 47.357475], [8.515051, 47.35746], [8.515022, 47.357446], [8.514991, 47.357434], [8.514959, 47.357424], [8.514735, 47.357368], [8.514672, 47.357349], [8.514651, 47.357379], [8.51459, 47.357504], [8.514446, 47.357637]]], "type": "MultiLineString"}, "id": "3879", "properties": {}, "type": "Feature"}, {"bbox": [8.589657, 47.400796, 8.591367, 47.401354], "geometry": {"coordinates": [[[8.591367, 47.400796], [8.590645, 47.401033], [8.590022, 47.401236], [8.590015, 47.401237], [8.590008, 47.401239], [8.590001, 47.401239], [8.589993, 47.40124], [8.589986, 47.40124], [8.589979, 47.401239], [8.589972, 47.401238], [8.589965, 47.401237], [8.589959, 47.401237], [8.589953, 47.401238], [8.589947, 47.401239], [8.589942, 47.40124], [8.589936, 47.401242], [8.589931, 47.401244], [8.589926, 47.401246], [8.589922, 47.401248], [8.589918, 47.401251], [8.589914, 47.401254], [8.58991, 47.401257], [8.589909, 47.401261], [8.589907, 47.401264], [8.589905, 47.401267], [8.589902, 47.40127], [8.589899, 47.401273], [8.589895, 47.401276], [8.589892, 47.401278], [8.589887, 47.401281], [8.589883, 47.401283], [8.589879, 47.401285], [8.589657, 47.401354]]], "type": "MultiLineString"}, "id": "3881", "properties": {}, "type": "Feature"}, {"bbox": [8.53114, 47.423969, 8.53117, 47.42492], "geometry": {"coordinates": [[[8.53114, 47.423969], [8.53117, 47.424341], [8.531162, 47.424526], [8.531158, 47.424601], [8.531151, 47.424744], [8.531157, 47.424842], [8.53117, 47.42492]]], "type": "MultiLineString"}, "id": "3890", "properties": {}, "type": "Feature"}, {"bbox": [8.545814, 47.3652, 8.547904, 47.36675], "geometry": {"coordinates": [[[8.547904, 47.3652], [8.547463, 47.365552], [8.547307, 47.365661], [8.54711, 47.365799], [8.546983, 47.365887], [8.546914, 47.365942], [8.546656, 47.366147], [8.546268, 47.366461], [8.546168, 47.366542], [8.546058, 47.366618], [8.54594, 47.366687], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3891", "properties": {}, "type": "Feature"}, {"bbox": [8.504171, 47.398839, 8.504938, 47.399463], "geometry": {"coordinates": [[[8.504171, 47.398839], [8.504175, 47.398905], [8.504322, 47.398997], [8.504644, 47.399223], [8.504822, 47.399374], [8.504938, 47.399463]]], "type": "MultiLineString"}, "id": "3893", "properties": {}, "type": "Feature"}, {"bbox": [8.510001, 47.378062, 8.510786, 47.378415], "geometry": {"coordinates": [[[8.510786, 47.378062], [8.510732, 47.3781], [8.510675, 47.378136], [8.510616, 47.37817], [8.510458, 47.378245], [8.510294, 47.378314], [8.510125, 47.378377], [8.510084, 47.37839], [8.510042, 47.378403], [8.510001, 47.378415]]], "type": "MultiLineString"}, "id": "3894", "properties": {}, "type": "Feature"}, {"bbox": [8.583904, 47.377025, 8.589438, 47.378939], "geometry": {"coordinates": [[[8.583904, 47.377081], [8.584054, 47.377046], [8.584105, 47.377036], [8.584158, 47.377029], [8.58421, 47.377025], [8.584263, 47.377025], [8.584316, 47.377027], [8.584369, 47.377032], [8.58442, 47.377041], [8.584471, 47.377052], [8.58452, 47.377066], [8.584567, 47.377083], [8.584611, 47.377103], [8.584653, 47.377125], [8.584692, 47.377149], [8.584728, 47.377176], [8.58476, 47.377204], [8.584919, 47.377358], [8.584945, 47.377382], [8.584963, 47.377398], [8.584983, 47.377413], [8.585006, 47.377427], [8.58503, 47.377439], [8.585055, 47.37745], [8.585082, 47.377459], [8.58511, 47.377466], [8.585312, 47.377513], [8.585426, 47.377536], [8.585543, 47.377554], [8.585661, 47.377565], [8.585843, 47.37758], [8.586025, 47.377598], [8.586207, 47.37762], [8.58629, 47.377628], [8.586375, 47.377631], [8.586459, 47.377629], [8.586709, 47.377617], [8.586773, 47.377615], [8.586838, 47.377617], [8.586902, 47.377622], [8.587015, 47.377679], [8.587418, 47.37798], [8.587763, 47.378274], [8.587811, 47.37831], [8.587863, 47.378344], [8.587919, 47.378374], [8.588679, 47.378739], [8.588789, 47.378792], [8.588847, 47.378818], [8.588909, 47.378839], [8.588973, 47.378857], [8.589039, 47.378871], [8.589438, 47.378939]]], "type": "MultiLineString"}, "id": "3897", "properties": {}, "type": "Feature"}, {"bbox": [8.590965, 47.374033, 8.592086, 47.375804], "geometry": {"coordinates": [[[8.590965, 47.374033], [8.590986, 47.374055], [8.591149, 47.374224], [8.591169, 47.374256], [8.591192, 47.374291], [8.591345, 47.374456], [8.591533, 47.374754], [8.591637, 47.37497], [8.591831, 47.375327], [8.592073, 47.37578], [8.592086, 47.375804]]], "type": "MultiLineString"}, "id": "3898", "properties": {}, "type": "Feature"}, {"bbox": [8.570478, 47.391748, 8.574073, 47.392983], "geometry": {"coordinates": [[[8.570478, 47.392983], [8.57049, 47.392976], [8.570502, 47.39297], [8.570516, 47.392964], [8.57053, 47.392959], [8.570545, 47.392956], [8.570784, 47.392903], [8.570835, 47.39289], [8.570884, 47.392874], [8.570931, 47.392855], [8.570975, 47.392834], [8.571016, 47.39281], [8.571054, 47.392783], [8.571089, 47.392755], [8.571119, 47.392724], [8.571146, 47.392692], [8.571168, 47.392658], [8.571317, 47.392399], [8.571339, 47.392367], [8.571364, 47.392336], [8.571393, 47.392307], [8.571426, 47.39228], [8.571462, 47.392255], [8.571502, 47.392233], [8.571544, 47.392212], [8.571589, 47.392195], [8.571636, 47.39218], [8.571685, 47.392168], [8.571735, 47.39216], [8.571787, 47.392154], [8.571838, 47.392151], [8.57189, 47.392152], [8.572412, 47.392175], [8.572473, 47.392175], [8.572533, 47.392173], [8.572593, 47.392167], [8.572653, 47.392158], [8.572711, 47.392145], [8.572767, 47.39213], [8.572821, 47.392111], [8.572873, 47.392089], [8.573511, 47.391795], [8.573541, 47.391783], [8.573573, 47.391772], [8.573605, 47.391763], [8.573639, 47.391756], [8.573674, 47.391752], [8.573709, 47.391749], [8.573744, 47.391748], [8.573779, 47.391749], [8.573814, 47.391753], [8.573848, 47.391758], [8.573882, 47.391766], [8.573914, 47.391775], [8.573945, 47.391787], [8.573975, 47.3918], [8.574003, 47.391815], [8.574028, 47.391831], [8.574052, 47.391849], [8.574073, 47.391868]]], "type": "MultiLineString"}, "id": "3899", "properties": {}, "type": "Feature"}, {"bbox": [8.509307, 47.408359, 8.510624, 47.409058], "geometry": {"coordinates": [[[8.509307, 47.408515], [8.509457, 47.408532], [8.509503, 47.408592], [8.509804, 47.408828], [8.509886, 47.408836], [8.510047, 47.409058], [8.510378, 47.408948], [8.510624, 47.408867], [8.510318, 47.408441], [8.510096, 47.408513], [8.509982, 47.408359], [8.509457, 47.408532]]], "type": "MultiLineString"}, "id": "3900", "properties": {}, "type": "Feature"}, {"bbox": [8.535261, 47.375463, 8.535793, 47.376071], "geometry": {"coordinates": [[[8.535733, 47.376071], [8.535738, 47.375964], [8.535793, 47.375951], [8.535585, 47.375463], [8.535261, 47.375611], [8.535447, 47.375749]]], "type": "MultiLineString"}, "id": "3902", "properties": {}, "type": "Feature"}, {"bbox": [8.502142, 47.398579, 8.503807, 47.399259], "geometry": {"coordinates": [[[8.503807, 47.398579], [8.503726, 47.398643], [8.503677, 47.398677], [8.503625, 47.3987], [8.503505, 47.398743], [8.503319, 47.398776], [8.503195, 47.398804], [8.503064, 47.398834], [8.502699, 47.398943], [8.502255, 47.39912], [8.502239, 47.399133], [8.502142, 47.399259]]], "type": "MultiLineString"}, "id": "3903", "properties": {}, "type": "Feature"}, {"bbox": [8.541839, 47.393867, 8.543254, 47.394077], "geometry": {"coordinates": [[[8.541839, 47.394077], [8.541841, 47.394055], [8.541847, 47.394034], [8.541855, 47.394013], [8.541866, 47.393992], [8.541879, 47.393972], [8.541895, 47.393953], [8.541913, 47.393935], [8.541934, 47.393919], [8.542096, 47.393899], [8.542246, 47.393895], [8.542496, 47.393888], [8.542689, 47.393875], [8.543126, 47.393867], [8.543254, 47.39387]]], "type": "MultiLineString"}, "id": "3904", "properties": {}, "type": "Feature"}, {"bbox": [8.543741, 47.372656, 8.543773, 47.373103], "geometry": {"coordinates": [[[8.543773, 47.372656], [8.543741, 47.372851], [8.543746, 47.372948], [8.543758, 47.373103]]], "type": "MultiLineString"}, "id": "3908", "properties": {}, "type": "Feature"}, {"bbox": [8.530993, 47.391439, 8.531922, 47.391815], "geometry": {"coordinates": [[[8.530993, 47.391439], [8.531396, 47.391657], [8.531577, 47.391584], [8.531903, 47.391767], [8.531922, 47.391815]]], "type": "MultiLineString"}, "id": "3910", "properties": {}, "type": "Feature"}, {"bbox": [8.581947, 47.35204, 8.582183, 47.3528], "geometry": {"coordinates": [[[8.581947, 47.35204], [8.582173, 47.352301], [8.582176, 47.352305], [8.582179, 47.352309], [8.582181, 47.352313], [8.582182, 47.352317], [8.582183, 47.352321], [8.582183, 47.352325], [8.582183, 47.35233], [8.582182, 47.352334], [8.582181, 47.352338], [8.582179, 47.352342], [8.582176, 47.352346], [8.582173, 47.35235], [8.58217, 47.352353], [8.582166, 47.352357], [8.582119, 47.352416], [8.582075, 47.352475], [8.582034, 47.352536], [8.582027, 47.352546], [8.582021, 47.352556], [8.582017, 47.352566], [8.582014, 47.352577], [8.582013, 47.352588], [8.582013, 47.352598], [8.582014, 47.352609], [8.582017, 47.35262], [8.582021, 47.35263], [8.582026, 47.35264], [8.582033, 47.35265], [8.582075, 47.3527], [8.582118, 47.35275], [8.582162, 47.3528]]], "type": "MultiLineString"}, "id": "3913", "properties": {}, "type": "Feature"}, {"bbox": [8.55654, 47.399716, 8.559285, 47.403078], "geometry": {"coordinates": [[[8.556578, 47.399716], [8.556545, 47.399802], [8.556541, 47.399823], [8.55654, 47.399844], [8.556541, 47.399865], [8.556546, 47.399886], [8.556553, 47.399906], [8.556562, 47.399926], [8.556575, 47.399945], [8.55659, 47.399964], [8.556607, 47.399981], [8.556836, 47.40019], [8.556956, 47.400304], [8.557066, 47.400422], [8.557169, 47.400544], [8.557233, 47.400628], [8.557294, 47.400714], [8.557351, 47.400801], [8.557351, 47.400801], [8.557351, 47.400801], [8.557384, 47.400867], [8.55741, 47.400935], [8.557428, 47.401003], [8.557428, 47.401003], [8.557428, 47.401004], [8.557437, 47.401085], [8.557442, 47.401167], [8.557441, 47.401249], [8.557441, 47.40125], [8.557441, 47.40125], [8.557439, 47.401341], [8.557445, 47.401432], [8.55746, 47.401522], [8.55748, 47.401576], [8.557506, 47.401629], [8.557538, 47.401681], [8.557629, 47.401804], [8.557725, 47.401925], [8.557826, 47.402044], [8.557827, 47.402044], [8.557827, 47.402044], [8.557915, 47.402148], [8.558017, 47.402247], [8.558131, 47.402338], [8.558311, 47.402442], [8.558498, 47.40254], [8.558691, 47.402632], [8.558784, 47.402671], [8.558872, 47.402716], [8.558954, 47.402766], [8.55903, 47.40282], [8.559099, 47.402878], [8.55916, 47.40294], [8.55916, 47.40294], [8.559285, 47.403078]]], "type": "MultiLineString"}, "id": "3916", "properties": {}, "type": "Feature"}, {"bbox": [8.465177, 47.390483, 8.467512, 47.391314], "geometry": {"coordinates": [[[8.467512, 47.390483], [8.467455, 47.390518], [8.467394, 47.390551], [8.467331, 47.390582], [8.467121, 47.390663], [8.466935, 47.390732], [8.466757, 47.390809], [8.466587, 47.390896], [8.466458, 47.390964], [8.466331, 47.391033], [8.466204, 47.391103], [8.466177, 47.391116], [8.466149, 47.391126], [8.466119, 47.391136], [8.466088, 47.391143], [8.466056, 47.391149], [8.466024, 47.391152], [8.465991, 47.391154], [8.465958, 47.391154], [8.465926, 47.391152], [8.465668, 47.391118], [8.465654, 47.391116], [8.46564, 47.391114], [8.465625, 47.391113], [8.465611, 47.391113], [8.465597, 47.391113], [8.465582, 47.391115], [8.465568, 47.391117], [8.465555, 47.39112], [8.465541, 47.391124], [8.465529, 47.391129], [8.465517, 47.391134], [8.465505, 47.39114], [8.465177, 47.391314]]], "type": "MultiLineString"}, "id": "3917", "properties": {}, "type": "Feature"}, {"bbox": [8.549212, 47.426401, 8.550822, 47.427521], "geometry": {"coordinates": [[[8.549212, 47.42642], [8.549692, 47.426403], [8.549715, 47.426402], [8.549738, 47.426401], [8.549761, 47.426402], [8.549783, 47.426404], [8.549806, 47.426407], [8.549828, 47.426411], [8.549849, 47.426417], [8.54987, 47.426424], [8.550032, 47.426457], [8.550195, 47.426491], [8.550357, 47.426524], [8.550449, 47.426536], [8.550542, 47.426546], [8.550635, 47.426555], [8.550644, 47.426555], [8.550653, 47.426557], [8.550661, 47.426558], [8.55067, 47.42656], [8.550678, 47.426563], [8.550686, 47.426566], [8.550693, 47.42657], [8.5507, 47.426574], [8.550706, 47.426578], [8.550711, 47.426583], [8.550716, 47.426588], [8.550721, 47.426594], [8.550724, 47.426599], [8.550727, 47.426605], [8.550729, 47.426611], [8.550747, 47.426689], [8.550768, 47.426767], [8.550789, 47.426844], [8.550796, 47.426871], [8.550799, 47.426899], [8.550798, 47.426926], [8.550806, 47.427105], [8.550814, 47.427283], [8.550822, 47.427462], [8.550814, 47.427521]]], "type": "MultiLineString"}, "id": "3918", "properties": {}, "type": "Feature"}, {"bbox": [8.566278, 47.413297, 8.566938, 47.416339], "geometry": {"coordinates": [[[8.566837, 47.413297], [8.566814, 47.413354], [8.566798, 47.413412], [8.566789, 47.413471], [8.566788, 47.41353], [8.566794, 47.413589], [8.566807, 47.413648], [8.566827, 47.413705], [8.566897, 47.413861], [8.566913, 47.413889], [8.566925, 47.413918], [8.566934, 47.413947], [8.566938, 47.413977], [8.566938, 47.414007], [8.566934, 47.414037], [8.566924, 47.414352], [8.56689, 47.414514], [8.566841, 47.414675], [8.566778, 47.414833], [8.566741, 47.414889], [8.566699, 47.414944], [8.566652, 47.414997], [8.566525, 47.415158], [8.566422, 47.415326], [8.566342, 47.415499], [8.566287, 47.415677], [8.566278, 47.415804], [8.566284, 47.415932], [8.566303, 47.416059], [8.56632, 47.416152], [8.566333, 47.416245], [8.566342, 47.416339]]], "type": "MultiLineString"}, "id": "3919", "properties": {}, "type": "Feature"}, {"bbox": [8.490401, 47.428275, 8.491, 47.429068], "geometry": {"coordinates": [[[8.490401, 47.428275], [8.49047, 47.428332], [8.490552, 47.428435], [8.490635, 47.428538], [8.490719, 47.428641], [8.490812, 47.428749], [8.490901, 47.428859], [8.490986, 47.42897], [8.49099, 47.428975], [8.490993, 47.42898], [8.490996, 47.428985], [8.490998, 47.42899], [8.490999, 47.428996], [8.491, 47.429001], [8.491, 47.429007], [8.490999, 47.429012], [8.490998, 47.429018], [8.490996, 47.429023], [8.490993, 47.429028], [8.49099, 47.429033], [8.490986, 47.429038], [8.490981, 47.429043], [8.490976, 47.429047], [8.49097, 47.429051], [8.490964, 47.429054], [8.490958, 47.429058], [8.490951, 47.42906], [8.490944, 47.429063], [8.490936, 47.429065], [8.490928, 47.429067], [8.490921, 47.429068], [8.490912, 47.429068]]], "type": "MultiLineString"}, "id": "3920", "properties": {}, "type": "Feature"}, {"bbox": [8.468394, 47.364934, 8.469044, 47.365558], "geometry": {"coordinates": [[[8.469044, 47.365558], [8.46901, 47.365514], [8.468974, 47.365471], [8.468934, 47.36543], [8.468835, 47.365332], [8.468733, 47.365235], [8.468629, 47.36514], [8.468553, 47.36507], [8.468474, 47.365002], [8.468394, 47.364934]]], "type": "MultiLineString"}, "id": "3921", "properties": {}, "type": "Feature"}, {"bbox": [8.486443, 47.37822, 8.487959, 47.378954], "geometry": {"coordinates": [[[8.487959, 47.378234], [8.487929, 47.378227], [8.487898, 47.378223], [8.487866, 47.378221], [8.487834, 47.37822], [8.487802, 47.378222], [8.487771, 47.378226], [8.487449, 47.37833], [8.487442, 47.378335], [8.487435, 47.37834], [8.487429, 47.378346], [8.487424, 47.378352], [8.487419, 47.378358], [8.487415, 47.378364], [8.487412, 47.378371], [8.48741, 47.378377], [8.487409, 47.378384], [8.487408, 47.378391], [8.487409, 47.378398], [8.48741, 47.378405], [8.487412, 47.378412], [8.487412, 47.378424], [8.487409, 47.378437], [8.487405, 47.378449], [8.487399, 47.378461], [8.487392, 47.378473], [8.487383, 47.378484], [8.487373, 47.378494], [8.487361, 47.378504], [8.486677, 47.378922], [8.486658, 47.37893], [8.486638, 47.378937], [8.486617, 47.378943], [8.486596, 47.378948], [8.486574, 47.378951], [8.486552, 47.378953], [8.48653, 47.378954], [8.486508, 47.378953], [8.486486, 47.378951], [8.486464, 47.378948], [8.486443, 47.378944]]], "type": "MultiLineString"}, "id": "3923", "properties": {}, "type": "Feature"}, {"bbox": [8.514069, 47.390646, 8.514215, 47.391563], "geometry": {"coordinates": [[[8.514215, 47.391563], [8.514145, 47.391495], [8.514126, 47.391476], [8.51411, 47.391456], [8.514096, 47.391436], [8.514085, 47.391414], [8.514077, 47.391392], [8.514071, 47.391369], [8.514069, 47.391347], [8.514072, 47.391113], [8.514088, 47.390879], [8.514116, 47.390646]]], "type": "MultiLineString"}, "id": "3924", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.329829, 8.5327, 47.331233], "geometry": {"coordinates": [[[8.532676, 47.331233], [8.5327, 47.330346], [8.532697, 47.329829]]], "type": "MultiLineString"}, "id": "3925", "properties": {}, "type": "Feature"}, {"bbox": [8.475169, 47.37537, 8.481142, 47.376393], "geometry": {"coordinates": [[[8.481142, 47.375507], [8.481113, 47.375518], [8.481082, 47.375527], [8.481051, 47.375534], [8.481019, 47.375539], [8.480986, 47.375542], [8.480952, 47.375543], [8.480919, 47.375542], [8.480886, 47.375539], [8.480854, 47.375534], [8.480822, 47.375527], [8.480792, 47.375518], [8.480763, 47.375507], [8.480639, 47.375458], [8.480512, 47.375414], [8.480383, 47.375373], [8.480373, 47.375372], [8.480363, 47.37537], [8.480352, 47.37537], [8.480342, 47.37537], [8.480332, 47.375371], [8.480322, 47.375372], [8.480312, 47.375374], [8.480303, 47.375376], [8.480266, 47.375397], [8.480231, 47.375419], [8.480197, 47.375441], [8.479876, 47.375673], [8.479851, 47.37569], [8.479826, 47.375707], [8.479801, 47.375724], [8.479475, 47.375928], [8.47946, 47.375938], [8.479445, 47.375946], [8.479428, 47.375954], [8.47941, 47.37596], [8.479392, 47.375965], [8.479373, 47.37597], [8.479353, 47.375973], [8.479333, 47.375975], [8.479313, 47.375975], [8.479293, 47.375975], [8.479257, 47.375978], [8.479221, 47.375983], [8.479186, 47.37599], [8.479152, 47.376], [8.47912, 47.376011], [8.479089, 47.376025], [8.478903, 47.376116], [8.478714, 47.376205], [8.478523, 47.376291], [8.478449, 47.376323], [8.478372, 47.376352], [8.478293, 47.376378], [8.478273, 47.376383], [8.478252, 47.376387], [8.478231, 47.37639], [8.478209, 47.376392], [8.478187, 47.376393], [8.478165, 47.376392], [8.478144, 47.37639], [8.478123, 47.376387], [8.478102, 47.376382], [8.478082, 47.376377], [8.478051, 47.376368], [8.478019, 47.376362], [8.477986, 47.376357], [8.477953, 47.376354], [8.47792, 47.376353], [8.477887, 47.376355], [8.477854, 47.376358], [8.477821, 47.376363], [8.477775, 47.376373], [8.477728, 47.376381], [8.47768, 47.376385], [8.477632, 47.376387], [8.477584, 47.376387], [8.477536, 47.376383], [8.47743, 47.376374], [8.477326, 47.37636], [8.477224, 47.376341], [8.47696, 47.376289], [8.476921, 47.376281], [8.476884, 47.37627], [8.476848, 47.376257], [8.476814, 47.376242], [8.476783, 47.376225], [8.476696, 47.376187], [8.476605, 47.376154], [8.47651, 47.376127], [8.476194, 47.376006], [8.476091, 47.375973], [8.475987, 47.375942], [8.475881, 47.375914], [8.475837, 47.375901], [8.475795, 47.375886], [8.475754, 47.375869], [8.475716, 47.37585], [8.475571, 47.375773], [8.475552, 47.375765], [8.475531, 47.375757], [8.47551, 47.375751], [8.475488, 47.375745], [8.475464, 47.375741], [8.475441, 47.375737], [8.475417, 47.375732], [8.475357, 47.375716], [8.475298, 47.375697], [8.475241, 47.375675], [8.475218, 47.375668], [8.475194, 47.375662], [8.475169, 47.375657]]], "type": "MultiLineString"}, "id": "3927", "properties": {}, "type": "Feature"}, {"bbox": [8.491209, 47.376274, 8.492842, 47.377206], "geometry": {"coordinates": [[[8.492842, 47.377206], [8.492789, 47.377164], [8.492734, 47.377122], [8.492679, 47.377081], [8.492663, 47.377067], [8.492645, 47.377054], [8.492625, 47.377043], [8.49225, 47.376828], [8.491875, 47.376614], [8.491499, 47.3764], [8.491479, 47.376388], [8.491458, 47.376377], [8.491437, 47.376366], [8.491361, 47.376335], [8.491285, 47.376304], [8.491209, 47.376274]]], "type": "MultiLineString"}, "id": "3928", "properties": {}, "type": "Feature"}, {"bbox": [8.502253, 47.374458, 8.503084, 47.374798], "geometry": {"coordinates": [[[8.502253, 47.374458], [8.502376, 47.374529], [8.502415, 47.374551], [8.502501, 47.374605], [8.502592, 47.374655], [8.502688, 47.3747], [8.502711, 47.37471], [8.502736, 47.374717], [8.502761, 47.374724], [8.502787, 47.374728], [8.502814, 47.374732], [8.502841, 47.374733], [8.502868, 47.374733], [8.50296, 47.374734], [8.503084, 47.374798]]], "type": "MultiLineString"}, "id": "3929", "properties": {}, "type": "Feature"}, {"bbox": [8.492003, 47.383351, 8.493198, 47.384548], "geometry": {"coordinates": [[[8.493198, 47.384548], [8.493173, 47.384535], [8.49315, 47.384521], [8.493129, 47.384506], [8.49311, 47.384489], [8.492003, 47.38338], [8.49202, 47.383351]]], "type": "MultiLineString"}, "id": "3930", "properties": {}, "type": "Feature"}, {"bbox": [8.493623, 47.396982, 8.495169, 47.397624], "geometry": {"coordinates": [[[8.495169, 47.397592], [8.495088, 47.397607], [8.495005, 47.397618], [8.494921, 47.397623], [8.494837, 47.397624], [8.494753, 47.397619], [8.49467, 47.39761], [8.494589, 47.397595], [8.49451, 47.397576], [8.494433, 47.397553], [8.49436, 47.397525], [8.49429, 47.397492], [8.494226, 47.397456], [8.494165, 47.397416], [8.494111, 47.397373], [8.494062, 47.397326], [8.493991, 47.397248], [8.493911, 47.397175], [8.493823, 47.397105], [8.493726, 47.397041], [8.493623, 47.396982]]], "type": "MultiLineString"}, "id": "3931", "properties": {}, "type": "Feature"}, {"bbox": [8.493744, 47.409579, 8.500943, 47.416546], "geometry": {"coordinates": [[[8.500943, 47.416546], [8.50091, 47.416474], [8.500886, 47.416398], [8.500871, 47.416322], [8.500831, 47.416008], [8.500812, 47.415733], [8.5008, 47.415631], [8.500784, 47.415542], [8.500692, 47.415457], [8.500601, 47.415411], [8.499912, 47.415067], [8.499267, 47.414778], [8.499212, 47.414751], [8.499159, 47.414722], [8.499109, 47.41469], [8.498739, 47.41444], [8.498709, 47.414417], [8.498682, 47.414393], [8.498659, 47.414367], [8.498574, 47.414259], [8.498522, 47.414193], [8.498327, 47.413927], [8.498321, 47.41392], [8.498164, 47.413649], [8.49809, 47.413502], [8.498031, 47.413383], [8.497799, 47.41298], [8.497718, 47.412857], [8.49762, 47.412739], [8.497507, 47.412628], [8.497287, 47.412441], [8.497056, 47.412261], [8.496813, 47.412087], [8.49676, 47.412036], [8.496693, 47.41196], [8.49662, 47.411871], [8.496555, 47.411779], [8.496497, 47.411685], [8.496375, 47.41147], [8.496344, 47.411421], [8.496307, 47.411375], [8.496264, 47.41133], [8.49625, 47.411317], [8.496235, 47.411304], [8.496219, 47.411292], [8.496056, 47.411161], [8.496039, 47.411147], [8.495329, 47.410558], [8.495294, 47.410531], [8.495256, 47.410506], [8.495214, 47.410484], [8.49517, 47.410464], [8.495123, 47.410446], [8.495075, 47.410432], [8.495025, 47.41042], [8.494967, 47.410409], [8.49488, 47.410391], [8.494843, 47.410383], [8.494806, 47.410372], [8.494771, 47.410359], [8.494738, 47.410344], [8.494707, 47.410328], [8.494678, 47.41031], [8.494651, 47.41029], [8.494031, 47.40979], [8.493802, 47.409613], [8.493744, 47.409579]]], "type": "MultiLineString"}, "id": "3933", "properties": {}, "type": "Feature"}, {"bbox": [8.509316, 47.405446, 8.513604, 47.407217], "geometry": {"coordinates": [[[8.509316, 47.40545], [8.509362, 47.405448], [8.509407, 47.405447], [8.509453, 47.405446], [8.509518, 47.405449], [8.509583, 47.405452], [8.509648, 47.405458], [8.509838, 47.405481], [8.510024, 47.405515], [8.510206, 47.40556], [8.510381, 47.405615], [8.510464, 47.405644], [8.510547, 47.405675], [8.510628, 47.405707], [8.510765, 47.405767], [8.510897, 47.405832], [8.511025, 47.405901], [8.511348, 47.406085], [8.511393, 47.406111], [8.51151, 47.406166], [8.511603, 47.406188], [8.511696, 47.40621], [8.511789, 47.406231], [8.511826, 47.406237], [8.511891, 47.406248], [8.512439, 47.406345], [8.512531, 47.406363], [8.512622, 47.406384], [8.512711, 47.406408], [8.51279, 47.40643], [8.51287, 47.406449], [8.512952, 47.406465], [8.513199, 47.406511], [8.513209, 47.406513], [8.513304, 47.40654], [8.513325, 47.406547], [8.513344, 47.406554], [8.513363, 47.406563], [8.51338, 47.406573], [8.513396, 47.406584], [8.51341, 47.406596], [8.513422, 47.406609], [8.513433, 47.406623], [8.513442, 47.406637], [8.513449, 47.406651], [8.513479, 47.406713], [8.513497, 47.406755], [8.513512, 47.406798], [8.513523, 47.406842], [8.513604, 47.407217]]], "type": "MultiLineString"}, "id": "3934", "properties": {}, "type": "Feature"}, {"bbox": [8.514281, 47.373981, 8.5148, 47.374361], "geometry": {"coordinates": [[[8.5148, 47.373999], [8.514789, 47.373994], [8.514777, 47.37399], [8.514765, 47.373987], [8.514753, 47.373984], [8.51474, 47.373982], [8.514727, 47.373981], [8.514714, 47.373981], [8.514701, 47.373981], [8.514689, 47.373983], [8.514676, 47.373984], [8.514281, 47.374252], [8.514471, 47.374361]]], "type": "MultiLineString"}, "id": "3935", "properties": {}, "type": "Feature"}, {"bbox": [8.512388, 47.386348, 8.515057, 47.387467], "geometry": {"coordinates": [[[8.515057, 47.387467], [8.514166, 47.386396], [8.514157, 47.386388], [8.514147, 47.386381], [8.514137, 47.386374], [8.514126, 47.386369], [8.514114, 47.386363], [8.514101, 47.386359], [8.514088, 47.386355], [8.514075, 47.386352], [8.514061, 47.38635], [8.514047, 47.386348], [8.514033, 47.386348], [8.514018, 47.386348], [8.514004, 47.386349], [8.51399, 47.386351], [8.513977, 47.386353], [8.513757, 47.386405], [8.51361, 47.386445], [8.513466, 47.38649], [8.513324, 47.386539], [8.513134, 47.386603], [8.512948, 47.386674], [8.512767, 47.38675], [8.512388, 47.386925]]], "type": "MultiLineString"}, "id": "3941", "properties": {}, "type": "Feature"}, {"bbox": [8.528745, 47.393206, 8.529165, 47.393364], "geometry": {"coordinates": [[[8.528746, 47.393206], [8.528745, 47.393208], [8.528745, 47.393211], [8.528745, 47.393214], [8.528745, 47.393217], [8.528745, 47.39322], [8.528746, 47.393222], [8.528748, 47.393225], [8.528749, 47.393228], [8.528751, 47.39323], [8.528753, 47.393232], [8.528756, 47.393235], [8.528759, 47.393237], [8.528762, 47.393238], [8.528794, 47.393257], [8.528828, 47.393274], [8.528864, 47.39329], [8.528946, 47.393319], [8.529031, 47.393344], [8.52912, 47.393363], [8.529128, 47.393364], [8.529135, 47.393364], [8.529143, 47.393364], [8.529151, 47.393363], [8.529158, 47.393362], [8.529165, 47.393361]]], "type": "MultiLineString"}, "id": "3942", "properties": {}, "type": "Feature"}, {"bbox": [8.543387, 47.375421, 8.543942, 47.375497], "geometry": {"coordinates": [[[8.543387, 47.375497], [8.543942, 47.375421]]], "type": "MultiLineString"}, "id": "3945", "properties": {}, "type": "Feature"}, {"bbox": [8.571197, 47.39165, 8.576068, 47.39581], "geometry": {"coordinates": [[[8.576068, 47.39165], [8.575968, 47.391713], [8.575749, 47.391853], [8.575601, 47.391947], [8.575554, 47.39198], [8.575512, 47.392015], [8.575476, 47.392053], [8.575444, 47.392092], [8.575418, 47.392134], [8.575397, 47.392177], [8.575383, 47.392221], [8.575335, 47.392408], [8.575326, 47.39246], [8.575324, 47.392513], [8.57533, 47.392566], [8.575416, 47.393003], [8.575422, 47.393048], [8.575422, 47.393093], [8.575417, 47.393137], [8.575407, 47.393181], [8.575391, 47.393225], [8.57537, 47.393267], [8.575174, 47.393603], [8.575134, 47.393669], [8.575094, 47.393735], [8.575053, 47.393801], [8.575029, 47.393846], [8.575011, 47.393892], [8.574999, 47.393939], [8.574993, 47.393987], [8.57499, 47.394051], [8.574926, 47.394087], [8.574918, 47.394093], [8.574909, 47.3941], [8.574901, 47.394106], [8.574901, 47.394107], [8.574879, 47.394125], [8.574879, 47.394125], [8.57487, 47.394133], [8.574861, 47.394142], [8.574852, 47.394151], [8.574852, 47.394151], [8.574852, 47.394151], [8.574831, 47.394173], [8.574807, 47.394195], [8.574782, 47.394215], [8.574725, 47.394255], [8.574664, 47.394293], [8.5746, 47.394328], [8.57449, 47.39438], [8.574373, 47.394426], [8.57425, 47.394464], [8.574249, 47.394464], [8.573932, 47.394568], [8.573775, 47.394606], [8.573615, 47.394639], [8.573452, 47.394665], [8.573388, 47.39468], [8.573326, 47.394699], [8.573266, 47.394721], [8.57321, 47.394747], [8.573157, 47.394776], [8.572921, 47.394909], [8.572921, 47.394909], [8.572853, 47.394947], [8.572781, 47.39498], [8.572705, 47.395009], [8.572649, 47.39503], [8.572597, 47.395055], [8.572549, 47.395083], [8.572494, 47.39511], [8.571954, 47.395371], [8.571694, 47.395521], [8.571474, 47.395649], [8.571197, 47.39581]]], "type": "MultiLineString"}, "id": "3946", "properties": {}, "type": "Feature"}, {"bbox": [8.540929, 47.396857, 8.541544, 47.397239], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.541036, 47.396895], [8.541138, 47.396939], [8.541234, 47.396989], [8.541323, 47.397045], [8.541405, 47.397105], [8.541479, 47.39717], [8.541544, 47.397239]]], "type": "MultiLineString"}, "id": "3947", "properties": {}, "type": "Feature"}, {"bbox": [8.544523, 47.374247, 8.544691, 47.376764], "geometry": {"coordinates": [[[8.544691, 47.374247], [8.544665, 47.374604], [8.54465, 47.374804], [8.544648, 47.374837], [8.544646, 47.374891], [8.544597, 47.375552], [8.544563, 47.376009], [8.544561, 47.376035], [8.544539, 47.376336], [8.544523, 47.376764]]], "type": "MultiLineString"}, "id": "3948", "properties": {}, "type": "Feature"}, {"bbox": [8.496673, 47.40655, 8.497379, 47.40687], "geometry": {"coordinates": [[[8.496673, 47.40687], [8.496743, 47.40686], [8.497279, 47.40658], [8.497297, 47.406572], [8.497317, 47.406565], [8.497337, 47.406559], [8.497358, 47.406554], [8.497379, 47.40655]]], "type": "MultiLineString"}, "id": "3949", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.374817, 8.543993, 47.374938], "geometry": {"coordinates": [[[8.543839, 47.374883], [8.543875, 47.374931], [8.543993, 47.374938], [8.543993, 47.374859], [8.543933, 47.374832], [8.543882, 47.374817], [8.543839, 47.374883]]], "type": "MultiLineString"}, "id": "3950", "properties": {}, "type": "Feature"}, {"bbox": [8.541269, 47.405894, 8.542079, 47.406404], "geometry": {"coordinates": [[[8.541269, 47.406404], [8.541305, 47.40638], [8.541341, 47.406356], [8.541377, 47.406332], [8.541497, 47.406267], [8.541615, 47.406201], [8.541731, 47.406132], [8.541782, 47.406091], [8.541829, 47.406046], [8.541869, 47.406], [8.541904, 47.405951], [8.54193, 47.405937], [8.541958, 47.405925], [8.541986, 47.405915], [8.542016, 47.405906], [8.542047, 47.405899], [8.542079, 47.405894]]], "type": "MultiLineString"}, "id": "3953", "properties": {}, "type": "Feature"}, {"bbox": [8.573708, 47.398888, 8.576936, 47.402251], "geometry": {"coordinates": [[[8.573708, 47.398888], [8.573886, 47.398919], [8.57393, 47.398927], [8.573973, 47.398938], [8.574015, 47.39895], [8.574046, 47.39896], [8.574076, 47.398973], [8.574104, 47.398987], [8.57413, 47.399003], [8.574155, 47.39902], [8.574394, 47.399202], [8.574475, 47.399262], [8.574557, 47.39932], [8.574642, 47.399377], [8.574784, 47.39947], [8.574803, 47.399484], [8.57482, 47.399499], [8.574836, 47.399515], [8.57485, 47.399531], [8.574861, 47.399549], [8.574871, 47.399567], [8.574878, 47.399585], [8.574882, 47.399604], [8.574905, 47.39972], [8.574921, 47.39979], [8.574943, 47.399861], [8.57497, 47.39993], [8.574976, 47.399941], [8.574983, 47.399953], [8.574991, 47.399964], [8.575028, 47.400004], [8.575067, 47.400044], [8.575109, 47.400082], [8.575294, 47.400245], [8.575423, 47.400367], [8.575447, 47.40039], [8.575468, 47.400415], [8.575487, 47.400441], [8.57554, 47.400536], [8.575921, 47.401082], [8.576664, 47.401886], [8.576936, 47.402251]]], "type": "MultiLineString"}, "id": "3954", "properties": {}, "type": "Feature"}, {"bbox": [8.578247, 47.387519, 8.581141, 47.390184], "geometry": {"coordinates": [[[8.578247, 47.390184], [8.57853, 47.390031], [8.578622, 47.389962], [8.5787, 47.389891], [8.578905, 47.389643], [8.579496, 47.38893], [8.579761, 47.388612], [8.579938, 47.388432], [8.580137, 47.388261], [8.580355, 47.388103], [8.580592, 47.387957], [8.580886, 47.387782], [8.580949, 47.387736], [8.581007, 47.387686], [8.581058, 47.387633], [8.581103, 47.387577], [8.581141, 47.387519]]], "type": "MultiLineString"}, "id": "3968", "properties": {}, "type": "Feature"}, {"bbox": [8.573761, 47.386406, 8.575471, 47.388093], "geometry": {"coordinates": [[[8.57546, 47.386406], [8.575467, 47.386437], [8.575471, 47.386468], [8.575471, 47.3865], [8.575467, 47.386531], [8.575459, 47.386562], [8.575447, 47.386593], [8.575431, 47.386622], [8.575412, 47.386651], [8.575389, 47.386678], [8.575363, 47.386704], [8.575333, 47.386728], [8.575301, 47.386751], [8.575055, 47.386918], [8.575021, 47.386947], [8.574992, 47.386977], [8.574967, 47.387009], [8.574946, 47.387042], [8.57493, 47.387077], [8.57492, 47.387113], [8.574818, 47.387507], [8.57468, 47.387582], [8.574537, 47.387651], [8.574388, 47.387716], [8.57432, 47.387753], [8.574258, 47.387795], [8.5742, 47.38784], [8.574149, 47.387888], [8.574127, 47.387911], [8.574102, 47.387933], [8.574074, 47.387953], [8.574044, 47.387971], [8.574012, 47.387988], [8.573761, 47.388093]]], "type": "MultiLineString"}, "id": "3970", "properties": {}, "type": "Feature"}, {"bbox": [8.504597, 47.396907, 8.505448, 47.39733], "geometry": {"coordinates": [[[8.505448, 47.396907], [8.505358, 47.396941], [8.50527, 47.396975], [8.505182, 47.397011], [8.505112, 47.397051], [8.505041, 47.397091], [8.504972, 47.397132], [8.504597, 47.39733]]], "type": "MultiLineString"}, "id": "3971", "properties": {}, "type": "Feature"}, {"bbox": [8.551574, 47.375628, 8.553135, 47.376383], "geometry": {"coordinates": [[[8.553135, 47.375628], [8.553013, 47.375703], [8.552187, 47.376287], [8.552122, 47.376309], [8.552051, 47.376307], [8.551992, 47.376293], [8.551935, 47.376276], [8.55188, 47.376257], [8.551867, 47.376254], [8.551853, 47.376251], [8.55184, 47.37625], [8.551826, 47.376249], [8.551812, 47.376249], [8.551799, 47.37625], [8.551785, 47.376252], [8.551772, 47.376255], [8.551759, 47.376258], [8.551707, 47.376285], [8.551659, 47.376315], [8.551614, 47.376348], [8.551574, 47.376383]]], "type": "MultiLineString"}, "id": "3973", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.416689, 8.528491, 47.418268], "geometry": {"coordinates": [[[8.528055, 47.416689], [8.528132, 47.417005], [8.528467, 47.418182], [8.528491, 47.418268]]], "type": "MultiLineString"}, "id": "3974", "properties": {}, "type": "Feature"}, {"bbox": [8.555781, 47.409461, 8.558815, 47.409513], "geometry": {"coordinates": [[[8.555781, 47.409461], [8.557739, 47.409492], [8.558043, 47.409497], [8.558055, 47.409501], [8.558752, 47.409513], [8.558815, 47.409502]]], "type": "MultiLineString"}, "id": "3976", "properties": {}, "type": "Feature"}, {"bbox": [8.485438, 47.353951, 8.487015, 47.354451], "geometry": {"coordinates": [[[8.487015, 47.353951], [8.486624, 47.354098], [8.486435, 47.354164], [8.485888, 47.354365], [8.485719, 47.354425], [8.485683, 47.354434], [8.485645, 47.354441], [8.485607, 47.354445], [8.485438, 47.354451]]], "type": "MultiLineString"}, "id": "3978", "properties": {}, "type": "Feature"}, {"bbox": [8.474478, 47.413155, 8.47479, 47.413876], "geometry": {"coordinates": [[[8.47479, 47.413156], [8.474737, 47.413155], [8.474685, 47.413157], [8.474634, 47.413162], [8.474631, 47.413163], [8.474628, 47.413163], [8.474626, 47.413164], [8.474623, 47.413165], [8.474621, 47.413166], [8.474619, 47.413167], [8.474616, 47.413168], [8.474615, 47.41317], [8.474613, 47.413171], [8.474611, 47.413173], [8.47461, 47.413175], [8.474609, 47.413176], [8.474608, 47.413178], [8.474608, 47.41318], [8.474607, 47.413182], [8.474607, 47.413184], [8.474561, 47.413414], [8.474518, 47.413645], [8.474478, 47.413876]]], "type": "MultiLineString"}, "id": "3980", "properties": {}, "type": "Feature"}, {"bbox": [8.564775, 47.409124, 8.565678, 47.410192], "geometry": {"coordinates": [[[8.564775, 47.410192], [8.564826, 47.410134], [8.565269, 47.409619], [8.565281, 47.409607], [8.565295, 47.409596], [8.565311, 47.409585], [8.565328, 47.409575], [8.565346, 47.409567], [8.565365, 47.40956], [8.565385, 47.409554], [8.565406, 47.409549], [8.565427, 47.409545], [8.565608, 47.409331], [8.565678, 47.409124]]], "type": "MultiLineString"}, "id": "3981", "properties": {}, "type": "Feature"}, {"bbox": [8.517133, 47.425237, 8.518699, 47.428181], "geometry": {"coordinates": [[[8.517216, 47.425237], [8.517155, 47.425472], [8.517144, 47.425518], [8.517137, 47.425565], [8.517133, 47.425612], [8.517134, 47.425659], [8.517144, 47.425874], [8.517151, 47.425947], [8.517164, 47.42602], [8.517182, 47.426092], [8.517207, 47.426164], [8.517292, 47.426389], [8.517321, 47.426475], [8.517342, 47.426566], [8.517364, 47.426683], [8.517364, 47.426698], [8.517375, 47.426723], [8.517389, 47.426748], [8.517406, 47.426771], [8.517426, 47.426794], [8.517449, 47.426815], [8.517474, 47.426835], [8.517502, 47.426853], [8.517532, 47.426869], [8.517564, 47.426884], [8.517598, 47.426896], [8.517634, 47.426907], [8.51767, 47.426915], [8.518117, 47.427075], [8.518165, 47.427097], [8.518209, 47.427121], [8.51825, 47.427148], [8.518288, 47.427178], [8.518321, 47.427209], [8.51835, 47.427243], [8.518374, 47.427278], [8.518393, 47.427315], [8.518407, 47.427352], [8.518573, 47.427863], [8.518699, 47.428181]]], "type": "MultiLineString"}, "id": "3982", "properties": {}, "type": "Feature"}, {"bbox": [8.473349, 47.414471, 8.475206, 47.414666], "geometry": {"coordinates": [[[8.475206, 47.414666], [8.474918, 47.414516], [8.474907, 47.414511], [8.474897, 47.414507], [8.474886, 47.414502], [8.474886, 47.414502], [8.474886, 47.414502], [8.474858, 47.414492], [8.474828, 47.414484], [8.474797, 47.414477], [8.474771, 47.414474], [8.474745, 47.414472], [8.474718, 47.414471], [8.474692, 47.414471], [8.474665, 47.414474], [8.474192, 47.414524], [8.474028, 47.414542], [8.473952, 47.41455], [8.473402, 47.414609], [8.473349, 47.414615]]], "type": "MultiLineString"}, "id": "3984", "properties": {}, "type": "Feature"}, {"bbox": [8.570022, 47.376153, 8.574224, 47.377605], "geometry": {"coordinates": [[[8.570022, 47.376153], [8.570223, 47.376393], [8.570237, 47.376408], [8.570253, 47.376422], [8.570271, 47.376435], [8.570291, 47.376447], [8.570313, 47.376458], [8.570335, 47.376468], [8.570359, 47.376475], [8.57046, 47.376505], [8.570477, 47.37651], [8.570494, 47.376517], [8.570509, 47.376524], [8.570524, 47.376532], [8.570537, 47.376541], [8.570674, 47.37664], [8.570677, 47.376643], [8.57068, 47.376645], [8.570682, 47.376648], [8.570684, 47.376651], [8.570686, 47.376654], [8.570687, 47.376657], [8.570688, 47.37666], [8.570688, 47.376663], [8.570688, 47.376667], [8.570688, 47.37667], [8.570687, 47.376673], [8.570661, 47.376752], [8.570659, 47.376761], [8.570658, 47.37677], [8.570658, 47.376779], [8.570659, 47.376788], [8.570662, 47.376797], [8.570665, 47.376806], [8.57067, 47.376814], [8.570676, 47.376822], [8.570682, 47.37683], [8.570705, 47.376852], [8.57073, 47.376872], [8.570758, 47.376891], [8.570788, 47.376908], [8.570806, 47.376916], [8.570824, 47.376924], [8.570844, 47.37693], [8.570864, 47.376934], [8.570884, 47.376938], [8.570905, 47.37694], [8.57105, 47.376952], [8.571148, 47.376957], [8.571509, 47.376974], [8.571767, 47.376987], [8.571801, 47.376988], [8.571943, 47.377], [8.572181, 47.377021], [8.572555, 47.377053], [8.572594, 47.377057], [8.572632, 47.377064], [8.57267, 47.377073], [8.572706, 47.377084], [8.572809, 47.377118], [8.572889, 47.377131], [8.57294, 47.377132], [8.572949, 47.377131], [8.572958, 47.377131], [8.572967, 47.377129], [8.572976, 47.377128], [8.572984, 47.377125], [8.572992, 47.377123], [8.573, 47.37712], [8.573053, 47.377096], [8.573059, 47.377093], [8.573066, 47.377091], [8.573073, 47.377089], [8.57308, 47.377087], [8.573087, 47.377086], [8.573095, 47.377086], [8.573102, 47.377085], [8.57311, 47.377086], [8.57317, 47.377089], [8.573283, 47.377103], [8.57339, 47.377125], [8.573418, 47.377129], [8.573447, 47.377133], [8.573475, 47.377134], [8.573504, 47.377134], [8.573534, 47.377134], [8.573537, 47.377134], [8.573539, 47.377134], [8.573542, 47.377135], [8.573545, 47.377135], [8.573547, 47.377136], [8.57355, 47.377137], [8.573552, 47.377138], [8.573555, 47.377139], [8.573557, 47.37714], [8.573559, 47.377142], [8.57356, 47.377143], [8.573562, 47.377145], [8.573563, 47.377147], [8.573564, 47.377148], [8.573565, 47.37715], [8.573566, 47.377152], [8.57358, 47.377207], [8.573581, 47.377213], [8.573582, 47.37722], [8.573581, 47.377227], [8.57358, 47.377234], [8.573579, 47.377241], [8.573571, 47.377265], [8.573569, 47.377269], [8.573569, 47.377274], [8.573569, 47.377279], [8.573569, 47.377283], [8.57357, 47.377288], [8.573572, 47.377292], [8.573574, 47.377296], [8.573577, 47.377301], [8.57358, 47.377305], [8.573584, 47.377308], [8.573588, 47.377312], [8.573593, 47.377315], [8.573598, 47.377318], [8.573603, 47.377321], [8.573609, 47.377323], [8.573615, 47.377326], [8.573684, 47.377347], [8.573697, 47.377351], [8.57371, 47.377354], [8.573724, 47.377355], [8.573738, 47.377357], [8.573752, 47.377357], [8.573766, 47.377356], [8.57378, 47.377355], [8.57387, 47.377342], [8.573892, 47.37734], [8.573914, 47.377338], [8.573936, 47.377339], [8.573957, 47.37734], [8.573979, 47.377343], [8.574065, 47.377356], [8.574098, 47.377362], [8.57413, 47.37737], [8.57416, 47.37738], [8.574224, 47.377403], [8.574153, 47.377525], [8.574158, 47.377605]]], "type": "MultiLineString"}, "id": "3990", "properties": {}, "type": "Feature"}, {"bbox": [8.580386, 47.406833, 8.592263, 47.409686], "geometry": {"coordinates": [[[8.580386, 47.409686], [8.580526, 47.409653], [8.580583, 47.409642], [8.58061, 47.409627], [8.580639, 47.409614], [8.580669, 47.409603], [8.580701, 47.409593], [8.580734, 47.409586], [8.580768, 47.40958], [8.580802, 47.409577], [8.580837, 47.409575], [8.582576, 47.409181], [8.58367, 47.408928], [8.584018, 47.408846], [8.584175, 47.408788], [8.584251, 47.408786], [8.585503, 47.408509], [8.587156, 47.40813], [8.587284, 47.408105], [8.587409, 47.408073], [8.58753, 47.408034], [8.587645, 47.407987], [8.587754, 47.407935], [8.587856, 47.407876], [8.587951, 47.407812], [8.58823, 47.407614], [8.588244, 47.407608], [8.588257, 47.407601], [8.58827, 47.407593], [8.588281, 47.407584], [8.588291, 47.407575], [8.5883, 47.407565], [8.588308, 47.407555], [8.588314, 47.407545], [8.588319, 47.407534], [8.588323, 47.407522], [8.588325, 47.407511], [8.588326, 47.4075], [8.588325, 47.407488], [8.588323, 47.407477], [8.58832, 47.407466], [8.588315, 47.407455], [8.588372, 47.407369], [8.588578, 47.407226], [8.58866, 47.407188], [8.588746, 47.407154], [8.588836, 47.407126], [8.588929, 47.407104], [8.589025, 47.407087], [8.589123, 47.407076], [8.591283, 47.406851], [8.591512, 47.406839], [8.591742, 47.406833], [8.591972, 47.406833], [8.592263, 47.407162]]], "type": "MultiLineString"}, "id": "3991", "properties": {}, "type": "Feature"}, {"bbox": [8.572466, 47.412872, 8.573701, 47.413011], "geometry": {"coordinates": [[[8.572466, 47.412872], [8.572474, 47.412876], [8.572483, 47.412879], [8.572493, 47.412882], [8.572503, 47.412884], [8.572534, 47.412893], [8.572564, 47.412904], [8.572593, 47.412917], [8.57262, 47.412931], [8.572645, 47.412947], [8.572662, 47.412958], [8.572682, 47.412968], [8.572702, 47.412977], [8.572724, 47.412984], [8.572746, 47.41299], [8.572769, 47.412994], [8.572793, 47.412997], [8.572816, 47.412999], [8.57284, 47.412999], [8.573701, 47.413011]]], "type": "MultiLineString"}, "id": "3992", "properties": {}, "type": "Feature"}, {"bbox": [8.467266, 47.390483, 8.467512, 47.390694], "geometry": {"coordinates": [[[8.467512, 47.390483], [8.4674, 47.390565], [8.467266, 47.390694]]], "type": "MultiLineString"}, "id": "3994", "properties": {}, "type": "Feature"}, {"bbox": [8.573523, 47.410549, 8.576669, 47.4113], "geometry": {"coordinates": [[[8.573523, 47.4113], [8.573739, 47.41123], [8.573984, 47.411169], [8.574231, 47.41111], [8.574479, 47.411054], [8.574687, 47.411022], [8.574889, 47.410977], [8.575085, 47.410919], [8.57519, 47.410886], [8.576244, 47.410643], [8.576669, 47.410549]]], "type": "MultiLineString"}, "id": "3995", "properties": {}, "type": "Feature"}, {"bbox": [8.490333, 47.3506, 8.490709, 47.350685], "geometry": {"coordinates": [[[8.490333, 47.3506], [8.490399, 47.350639], [8.490413, 47.350648], [8.490427, 47.350656], [8.490443, 47.350663], [8.49046, 47.350669], [8.490477, 47.350675], [8.490495, 47.350679], [8.490514, 47.350682], [8.490533, 47.350684], [8.490552, 47.350685], [8.490571, 47.350685], [8.49059, 47.350684], [8.490609, 47.350682], [8.490627, 47.350679], [8.490645, 47.350674], [8.490662, 47.350669], [8.490679, 47.350662], [8.490695, 47.350655], [8.490709, 47.350646]]], "type": "MultiLineString"}, "id": "3996", "properties": {}, "type": "Feature"}, {"bbox": [8.496799, 47.423467, 8.499862, 47.424215], "geometry": {"coordinates": [[[8.499862, 47.423467], [8.498893, 47.423723], [8.49831, 47.423877], [8.49745, 47.424095], [8.497445, 47.424095], [8.497436, 47.424096], [8.497427, 47.424097], [8.497418, 47.424097], [8.497407, 47.424097], [8.497397, 47.424097], [8.497387, 47.424096], [8.497314, 47.424089], [8.497303, 47.424088], [8.497292, 47.424088], [8.497281, 47.424087], [8.497269, 47.424086], [8.497257, 47.424085], [8.497246, 47.424085], [8.497239, 47.424085], [8.497232, 47.424085], [8.497225, 47.424085], [8.497219, 47.424085], [8.497214, 47.424086], [8.497208, 47.424087], [8.497197, 47.424089], [8.497185, 47.424091], [8.497174, 47.424093], [8.49716, 47.424095], [8.497146, 47.424098], [8.497132, 47.424101], [8.496984, 47.424139], [8.496954, 47.424149], [8.496924, 47.42416], [8.496894, 47.424171], [8.496866, 47.424184], [8.496799, 47.424215]]], "type": "MultiLineString"}, "id": "4000", "properties": {}, "type": "Feature"}, {"bbox": [8.554172, 47.422652, 8.55591, 47.422912], "geometry": {"coordinates": [[[8.554172, 47.422799], [8.554344, 47.422884], [8.554383, 47.422895], [8.554424, 47.422903], [8.554465, 47.422908], [8.554506, 47.422911], [8.554548, 47.422912], [8.55459, 47.42291], [8.554631, 47.422905], [8.554672, 47.422898], [8.5553, 47.422743], [8.555315, 47.422739], [8.55533, 47.422735], [8.555345, 47.422731], [8.555361, 47.422729], [8.555377, 47.422728], [8.555394, 47.422728], [8.55541, 47.422728], [8.555426, 47.42273], [8.555442, 47.422733], [8.555457, 47.422736], [8.555472, 47.42274], [8.555486, 47.422746], [8.5555, 47.422752], [8.555512, 47.422758], [8.555531, 47.422763], [8.55555, 47.422766], [8.555569, 47.422768], [8.555588, 47.422769], [8.555608, 47.422769], [8.555627, 47.422768], [8.555646, 47.422765], [8.555664, 47.422761], [8.555683, 47.422756], [8.5557, 47.42275], [8.555716, 47.422743], [8.555732, 47.422736], [8.555746, 47.422727], [8.555759, 47.422717], [8.55591, 47.422652]]], "type": "MultiLineString"}, "id": "4001", "properties": {}, "type": "Feature"}, {"bbox": [8.578076, 47.381435, 8.581215, 47.382228], "geometry": {"coordinates": [[[8.578076, 47.381435], [8.578128, 47.381455], [8.578378, 47.381507], [8.57863, 47.381554], [8.578885, 47.381595], [8.57912, 47.381641], [8.579348, 47.381702], [8.579567, 47.381776], [8.579813, 47.381868], [8.580057, 47.381961], [8.580301, 47.382056], [8.580401, 47.382103], [8.580503, 47.382147], [8.580607, 47.382189], [8.580652, 47.382203], [8.580698, 47.382214], [8.580746, 47.382221], [8.580794, 47.382226], [8.580843, 47.382228], [8.580892, 47.382227], [8.580941, 47.382223], [8.580988, 47.382216], [8.581015, 47.382209], [8.581041, 47.382201], [8.581066, 47.382191], [8.58109, 47.382179], [8.581112, 47.382167], [8.581132, 47.382153], [8.58115, 47.382137], [8.581167, 47.382121], [8.581181, 47.382104], [8.581193, 47.382086], [8.581203, 47.382068], [8.58121, 47.382049], [8.581215, 47.38203]]], "type": "MultiLineString"}, "id": "4002", "properties": {}, "type": "Feature"}, {"bbox": [8.580266, 47.355832, 8.582338, 47.357136], "geometry": {"coordinates": [[[8.580266, 47.357136], [8.580278, 47.35713], [8.58029, 47.357126], [8.580303, 47.357122], [8.580316, 47.357119], [8.58033, 47.357117], [8.580344, 47.357116], [8.580472, 47.357112], [8.5806, 47.357114], [8.580728, 47.357119], [8.580775, 47.357119], [8.580822, 47.357116], [8.580868, 47.357112], [8.580953, 47.357101], [8.581037, 47.357089], [8.581121, 47.357076], [8.581145, 47.357072], [8.581168, 47.357066], [8.581191, 47.357059], [8.581212, 47.35705], [8.581232, 47.357041], [8.581251, 47.35703], [8.581268, 47.357018], [8.581284, 47.357005], [8.58136, 47.356922], [8.581438, 47.35684], [8.581519, 47.356759], [8.58162, 47.356636], [8.581724, 47.356514], [8.581832, 47.356393], [8.582231, 47.356043], [8.582272, 47.355999], [8.582296, 47.355959], [8.582315, 47.355917], [8.582329, 47.355875], [8.582338, 47.355832]]], "type": "MultiLineString"}, "id": "4003", "properties": {}, "type": "Feature"}, {"bbox": [8.500528, 47.370573, 8.501963, 47.370661], "geometry": {"coordinates": [[[8.501963, 47.370573], [8.501873, 47.37059], [8.501815, 47.370601], [8.501444, 47.370621], [8.501178, 47.370634], [8.500528, 47.370661]]], "type": "MultiLineString"}, "id": "4005", "properties": {}, "type": "Feature"}, {"bbox": [8.503447, 47.394298, 8.503861, 47.394909], "geometry": {"coordinates": [[[8.503861, 47.394909], [8.50382, 47.394879], [8.503778, 47.39485], [8.503735, 47.394821], [8.503697, 47.394793], [8.503663, 47.394763], [8.503633, 47.394731], [8.503607, 47.394697], [8.503586, 47.394662], [8.503545, 47.394587], [8.503502, 47.394514], [8.503457, 47.39444], [8.503454, 47.394437], [8.503452, 47.394433], [8.50345, 47.394429], [8.503448, 47.394425], [8.503447, 47.394421], [8.503447, 47.394416], [8.503447, 47.394412], [8.503447, 47.394408], [8.503448, 47.394404], [8.50345, 47.3944], [8.503452, 47.394396], [8.503455, 47.394392], [8.503458, 47.394389], [8.503461, 47.394385], [8.503465, 47.394382], [8.50347, 47.394379], [8.503474, 47.394376], [8.503479, 47.394374], [8.503519, 47.394354], [8.50356, 47.394336], [8.503604, 47.39432], [8.50365, 47.394308], [8.503698, 47.394298]]], "type": "MultiLineString"}, "id": "4007", "properties": {}, "type": "Feature"}, {"bbox": [8.553642, 47.424368, 8.555284, 47.425992], "geometry": {"coordinates": [[[8.553642, 47.424368], [8.554107, 47.424831], [8.554265, 47.425013], [8.554427, 47.425172], [8.555284, 47.425992]]], "type": "MultiLineString"}, "id": "4010", "properties": {}, "type": "Feature"}, {"bbox": [8.53299, 47.372319, 8.53359, 47.372893], "geometry": {"coordinates": [[[8.53359, 47.372893], [8.533515, 47.372773], [8.533501, 47.372757], [8.533485, 47.372742], [8.533467, 47.372729], [8.533447, 47.372716], [8.533336, 47.372647], [8.533316, 47.372635], [8.533298, 47.372622], [8.533281, 47.372608], [8.533267, 47.372593], [8.533254, 47.372578], [8.533244, 47.372561], [8.533228, 47.372538], [8.533209, 47.372517], [8.533188, 47.372496], [8.533164, 47.372477], [8.533138, 47.372459], [8.53311, 47.372442], [8.533081, 47.372421], [8.533054, 47.372397], [8.533029, 47.372372], [8.533008, 47.372346], [8.53299, 47.372319]]], "type": "MultiLineString"}, "id": "4011", "properties": {}, "type": "Feature"}, {"bbox": [8.489526, 47.370567, 8.490955, 47.371267], "geometry": {"coordinates": [[[8.489533, 47.370567], [8.48953, 47.370574], [8.489527, 47.370581], [8.489526, 47.370588], [8.489526, 47.370595], [8.489526, 47.370602], [8.489528, 47.370609], [8.48953, 47.370616], [8.489533, 47.370623], [8.489537, 47.370629], [8.489542, 47.370636], [8.489548, 47.370641], [8.489554, 47.370647], [8.489561, 47.370652], [8.48959, 47.370666], [8.48962, 47.370679], [8.489651, 47.37069], [8.489684, 47.370699], [8.489766, 47.370726], [8.489848, 47.370754], [8.489929, 47.370783], [8.490074, 47.370832], [8.490222, 47.370877], [8.490373, 47.370918], [8.490514, 47.370957], [8.490656, 47.370995], [8.490798, 47.371033], [8.490814, 47.37104], [8.490828, 47.371047], [8.490842, 47.371055], [8.490855, 47.371064], [8.490866, 47.371073], [8.490876, 47.371084], [8.490885, 47.371095], [8.490892, 47.371106], [8.490897, 47.371118], [8.490919, 47.371167], [8.490938, 47.371217], [8.490955, 47.371267]]], "type": "MultiLineString"}, "id": "4012", "properties": {}, "type": "Feature"}, {"bbox": [8.499149, 47.373948, 8.499892, 47.375044], "geometry": {"coordinates": [[[8.499149, 47.373948], [8.499204, 47.37413], [8.499265, 47.37431], [8.499334, 47.37449], [8.499505, 47.374681], [8.499691, 47.374866], [8.499892, 47.375044]]], "type": "MultiLineString"}, "id": "4013", "properties": {}, "type": "Feature"}, {"bbox": [8.511671, 47.380886, 8.512488, 47.381631], "geometry": {"coordinates": [[[8.511671, 47.380886], [8.512013, 47.381293], [8.512016, 47.381297], [8.512019, 47.3813], [8.512022, 47.381303], [8.512026, 47.381306], [8.51203, 47.381308], [8.512035, 47.381311], [8.51204, 47.381313], [8.512045, 47.381315], [8.51205, 47.381316], [8.512055, 47.381317], [8.512061, 47.381318], [8.512066, 47.381319], [8.512072, 47.381319], [8.512078, 47.381319], [8.512084, 47.381319], [8.512089, 47.381319], [8.512095, 47.38132], [8.512101, 47.381321], [8.512106, 47.381322], [8.512111, 47.381324], [8.512117, 47.381326], [8.512121, 47.381328], [8.512126, 47.381331], [8.51213, 47.381334], [8.512133, 47.381337], [8.512382, 47.381586], [8.51239, 47.381594], [8.5124, 47.381601], [8.512411, 47.381608], [8.512422, 47.381613], [8.512434, 47.381619], [8.512447, 47.381623], [8.51246, 47.381626], [8.512474, 47.381629], [8.512488, 47.381631]]], "type": "MultiLineString"}, "id": "4014", "properties": {}, "type": "Feature"}, {"bbox": [8.467512, 47.390483, 8.468501, 47.391539], "geometry": {"coordinates": [[[8.468501, 47.391539], [8.467879, 47.39081], [8.467875, 47.390804], [8.467872, 47.390799], [8.46787, 47.390793], [8.467868, 47.390786], [8.467867, 47.39078], [8.467857, 47.390711], [8.467855, 47.390705], [8.467853, 47.390699], [8.467849, 47.390694], [8.467845, 47.390689], [8.467841, 47.390684], [8.467835, 47.390679], [8.467829, 47.390674], [8.467722, 47.390612], [8.467616, 47.390548], [8.467512, 47.390483]]], "type": "MultiLineString"}, "id": "4015", "properties": {}, "type": "Feature"}, {"bbox": [8.477822, 47.407881, 8.478855, 47.40942], "geometry": {"coordinates": [[[8.478855, 47.40942], [8.478662, 47.409315], [8.478473, 47.409207], [8.478287, 47.409096], [8.478184, 47.409016], [8.478092, 47.40893], [8.478011, 47.408838], [8.477943, 47.408743], [8.477887, 47.408643], [8.477844, 47.408541], [8.477827, 47.408445], [8.477822, 47.408348], [8.47783, 47.408251], [8.477851, 47.408155], [8.477885, 47.408061], [8.477932, 47.407969], [8.47799, 47.407881]]], "type": "MultiLineString"}, "id": "4016", "properties": {}, "type": "Feature"}, {"bbox": [8.59428, 47.36064, 8.597784, 47.362219], "geometry": {"coordinates": [[[8.59428, 47.360645], [8.5944, 47.36064], [8.594449, 47.360641], [8.594497, 47.360643], [8.594546, 47.360645], [8.594561, 47.360646], [8.594576, 47.360648], [8.59459, 47.360651], [8.594604, 47.360654], [8.594618, 47.360659], [8.594631, 47.360664], [8.594643, 47.36067], [8.594688, 47.360694], [8.594731, 47.360719], [8.594773, 47.360745], [8.59479, 47.360756], [8.594805, 47.360767], [8.59482, 47.36078], [8.594853, 47.36081], [8.594887, 47.36084], [8.594922, 47.360869], [8.594941, 47.360883], [8.594962, 47.360895], [8.594984, 47.360907], [8.595009, 47.360916], [8.595084, 47.360952], [8.595084, 47.360952], [8.595132, 47.360976], [8.595177, 47.361001], [8.595221, 47.361028], [8.59523, 47.361034], [8.595237, 47.361041], [8.595245, 47.361048], [8.595251, 47.361055], [8.595256, 47.361062], [8.595284, 47.361117], [8.595307, 47.36117], [8.595334, 47.361222], [8.595366, 47.361274], [8.595375, 47.361286], [8.595386, 47.361297], [8.595398, 47.361307], [8.595411, 47.361317], [8.595425, 47.361326], [8.595441, 47.361334], [8.595462, 47.361344], [8.595483, 47.361354], [8.595503, 47.361364], [8.595533, 47.36138], [8.595562, 47.361397], [8.595589, 47.361414], [8.595616, 47.361433], [8.595641, 47.361452], [8.595664, 47.361472], [8.595701, 47.361502], [8.595742, 47.361529], [8.595786, 47.361554], [8.595819, 47.361571], [8.595852, 47.361587], [8.595885, 47.361604], [8.595897, 47.36161], [8.59591, 47.361616], [8.595924, 47.361621], [8.595943, 47.361627], [8.595963, 47.361633], [8.595983, 47.361638], [8.596042, 47.36166], [8.596055, 47.361663], [8.596068, 47.361665], [8.596082, 47.361666], [8.596097, 47.361668], [8.596112, 47.36167], [8.596127, 47.361674], [8.596141, 47.361678], [8.596155, 47.361683], [8.596168, 47.361688], [8.5962, 47.361702], [8.596233, 47.361714], [8.596267, 47.361724], [8.596286, 47.361728], [8.596305, 47.361731], [8.596325, 47.361734], [8.596346, 47.361735], [8.596366, 47.361735], [8.596386, 47.361733], [8.596401, 47.361732], [8.596415, 47.361732], [8.59643, 47.361733], [8.596444, 47.361735], [8.596458, 47.361737], [8.596472, 47.361741], [8.596485, 47.361745], [8.596507, 47.361752], [8.59653, 47.361757], [8.596554, 47.361761], [8.596568, 47.361763], [8.596582, 47.361764], [8.596596, 47.361765], [8.596625, 47.361767], [8.596654, 47.361767], [8.596683, 47.361767], [8.596683, 47.361767], [8.596716, 47.361768], [8.596748, 47.361771], [8.59678, 47.361776], [8.596811, 47.361782], [8.596887, 47.361799], [8.59689, 47.3618], [8.596894, 47.361801], [8.596897, 47.361802], [8.5969, 47.361804], [8.596903, 47.361806], [8.596906, 47.361807], [8.596909, 47.361809], [8.596911, 47.361811], [8.596913, 47.361814], [8.596913, 47.361814], [8.596943, 47.361861], [8.59705, 47.361984], [8.597126, 47.362026], [8.597212, 47.362048], [8.597273, 47.362063], [8.59736, 47.36214], [8.597421, 47.362219], [8.597516, 47.362193], [8.597784, 47.362195]]], "type": "MultiLineString"}, "id": "4017", "properties": {}, "type": "Feature"}, {"bbox": [8.495402, 47.358817, 8.497438, 47.361995], "geometry": {"coordinates": [[[8.497438, 47.358817], [8.497394, 47.358824], [8.497323, 47.358834], [8.497167, 47.358896], [8.496986, 47.359098], [8.496783, 47.359337], [8.496643, 47.359521], [8.496518, 47.359629], [8.496305, 47.359766], [8.496258, 47.359817], [8.496207, 47.359871], [8.495986, 47.360195], [8.495727, 47.360914], [8.495493, 47.361539], [8.495424, 47.361915], [8.495402, 47.361995]]], "type": "MultiLineString"}, "id": "4020", "properties": {}, "type": "Feature"}, {"bbox": [8.509623, 47.410121, 8.510813, 47.411662], "geometry": {"coordinates": [[[8.509888, 47.410121], [8.509967, 47.410237], [8.510069, 47.410283], [8.510747, 47.410269], [8.510752, 47.410268], [8.510756, 47.410268], [8.510761, 47.410268], [8.510766, 47.410269], [8.510771, 47.410269], [8.510776, 47.41027], [8.51078, 47.410272], [8.510785, 47.410273], [8.510789, 47.410275], [8.510793, 47.410277], [8.510797, 47.410279], [8.5108, 47.410282], [8.510803, 47.410285], [8.510806, 47.410287], [8.510808, 47.41029], [8.51081, 47.410294], [8.510811, 47.410297], [8.510812, 47.4103], [8.510813, 47.410303], [8.510813, 47.410307], [8.510812, 47.41031], [8.510812, 47.410313], [8.510811, 47.410317], [8.510809, 47.41032], [8.510807, 47.410323], [8.510805, 47.410326], [8.510802, 47.410329], [8.510799, 47.410331], [8.510479, 47.410585], [8.510436, 47.41068], [8.510618, 47.410935], [8.510641, 47.411008], [8.510642, 47.411011], [8.510642, 47.411015], [8.510641, 47.411018], [8.510641, 47.411021], [8.510639, 47.411024], [8.510638, 47.411028], [8.510636, 47.411031], [8.510633, 47.411033], [8.51063, 47.411036], [8.510627, 47.411039], [8.510624, 47.411041], [8.51062, 47.411043], [8.510616, 47.411045], [8.510612, 47.411047], [8.510608, 47.411048], [8.510472, 47.4111], [8.510443, 47.411131], [8.510447, 47.411169], [8.510449, 47.411197], [8.51045, 47.411227], [8.51045, 47.411235], [8.510449, 47.411244], [8.510447, 47.411252], [8.510444, 47.411261], [8.51044, 47.411269], [8.510434, 47.411277], [8.510428, 47.411284], [8.510421, 47.411291], [8.510412, 47.411298], [8.510403, 47.411304], [8.510055, 47.411411], [8.509918, 47.411435], [8.509664, 47.411433], [8.50966, 47.411434], [8.509655, 47.411435], [8.509651, 47.411436], [8.509647, 47.411438], [8.509644, 47.411439], [8.50964, 47.411441], [8.509637, 47.411443], [8.509634, 47.411445], [8.509631, 47.411448], [8.509629, 47.41145], [8.509627, 47.411453], [8.509625, 47.411455], [8.509624, 47.411458], [8.509623, 47.411461], [8.509623, 47.411464], [8.509623, 47.411467], [8.509623, 47.41147], [8.509623, 47.411473], [8.509624, 47.411476], [8.509626, 47.411479], [8.509628, 47.411482], [8.50963, 47.411484], [8.509658, 47.411532], [8.509701, 47.411662]]], "type": "MultiLineString"}, "id": "4022", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.340471, 8.515962, 47.340687], "geometry": {"coordinates": [[[8.515962, 47.340687], [8.515604, 47.340663], [8.512856, 47.340599], [8.512736, 47.340602], [8.512278, 47.340589], [8.51175, 47.340583], [8.511534, 47.340576], [8.511319, 47.340559], [8.511105, 47.340533], [8.510851, 47.340496], [8.510734, 47.340482], [8.510615, 47.340473], [8.510495, 47.340471], [8.51006, 47.340474]]], "type": "MultiLineString"}, "id": "4029", "properties": {}, "type": "Feature"}, {"bbox": [8.5052, 47.371637, 8.505799, 47.372173], "geometry": {"coordinates": [[[8.505799, 47.372173], [8.50568, 47.372069], [8.505637, 47.372032], [8.505598, 47.371993], [8.505565, 47.371951], [8.505484, 47.371834], [8.505466, 47.371812], [8.505445, 47.37179], [8.505423, 47.371769], [8.505391, 47.371744], [8.505356, 47.37172], [8.505318, 47.371699], [8.5052, 47.371637]]], "type": "MultiLineString"}, "id": "4041", "properties": {}, "type": "Feature"}, {"bbox": [8.573443, 47.388093, 8.575497, 47.389006], "geometry": {"coordinates": [[[8.573761, 47.388093], [8.573732, 47.388228], [8.573687, 47.388361], [8.573625, 47.388491], [8.573548, 47.388617], [8.573456, 47.388738], [8.573449, 47.388758], [8.573445, 47.388779], [8.573443, 47.3888], [8.573444, 47.388821], [8.573448, 47.388842], [8.573455, 47.388862], [8.573464, 47.388882], [8.573476, 47.388902], [8.57349, 47.38892], [8.573514, 47.388937], [8.57354, 47.388952], [8.573568, 47.388965], [8.573597, 47.388977], [8.573628, 47.388986], [8.57366, 47.388994], [8.573693, 47.389], [8.573726, 47.389004], [8.57376, 47.389006], [8.573794, 47.389006], [8.573828, 47.389003], [8.573862, 47.388999], [8.573895, 47.388993], [8.574109, 47.388958], [8.574319, 47.388912], [8.574524, 47.388855], [8.574714, 47.388782], [8.574895, 47.388699], [8.575067, 47.388607], [8.575227, 47.388506], [8.575497, 47.388335]]], "type": "MultiLineString"}, "id": "4043", "properties": {}, "type": "Feature"}, {"bbox": [8.514418, 47.322981, 8.514586, 47.323374], "geometry": {"coordinates": [[[8.514586, 47.323374], [8.514566, 47.323367], [8.514556, 47.323356], [8.514547, 47.323345], [8.514539, 47.323333], [8.514533, 47.32332], [8.514528, 47.323308], [8.514525, 47.323295], [8.514524, 47.323282], [8.514524, 47.323269], [8.514526, 47.323256], [8.514529, 47.323243], [8.514534, 47.32323], [8.514529, 47.323186], [8.514518, 47.323143], [8.514501, 47.3231], [8.514479, 47.323059], [8.514451, 47.323019], [8.514418, 47.322981]]], "type": "MultiLineString"}, "id": "4044", "properties": {}, "type": "Feature"}, {"bbox": [8.510577, 47.383266, 8.511549, 47.383661], "geometry": {"coordinates": [[[8.510577, 47.383626], [8.510608, 47.383637], [8.51064, 47.383646], [8.510673, 47.383655], [8.51068, 47.383657], [8.510687, 47.383659], [8.510694, 47.38366], [8.510701, 47.383661], [8.510709, 47.383661], [8.510716, 47.383661], [8.510723, 47.383661], [8.510731, 47.38366], [8.510738, 47.383659], [8.510745, 47.383657], [8.510752, 47.383655], [8.510758, 47.383652], [8.510764, 47.383649], [8.51077, 47.383646], [8.511549, 47.383266]]], "type": "MultiLineString"}, "id": "4047", "properties": {}, "type": "Feature"}, {"bbox": [8.567924, 47.411446, 8.571072, 47.412941], "geometry": {"coordinates": [[[8.567924, 47.412331], [8.568134, 47.412496], [8.568394, 47.412701], [8.568435, 47.412735], [8.56848, 47.412767], [8.568529, 47.412795], [8.568582, 47.41282], [8.568638, 47.412842], [8.568697, 47.41286], [8.568758, 47.412875], [8.568817, 47.41289], [8.568935, 47.412909], [8.569054, 47.412921], [8.569174, 47.412928], [8.570032, 47.41294], [8.570047, 47.412941], [8.570061, 47.412941], [8.570075, 47.41294], [8.57009, 47.412938], [8.570104, 47.412936], [8.570117, 47.412932], [8.57013, 47.412928], [8.570143, 47.412923], [8.570155, 47.412918], [8.570166, 47.412911], [8.570176, 47.412904], [8.570185, 47.412897], [8.570193, 47.412889], [8.5702, 47.41288], [8.57045, 47.412471], [8.570612, 47.412178], [8.570707, 47.411765], [8.570742, 47.411606], [8.570745, 47.41159], [8.570749, 47.411575], [8.570756, 47.411561], [8.570764, 47.411547], [8.570775, 47.411533], [8.570787, 47.41152], [8.5708, 47.411508], [8.570816, 47.411496], [8.570832, 47.411486], [8.57085, 47.411477], [8.570869, 47.411469], [8.57089, 47.411462], [8.570911, 47.411456], [8.570932, 47.411452], [8.570954, 47.411449], [8.570977, 47.411447], [8.570999, 47.411446], [8.571032, 47.411447], [8.571072, 47.41145]]], "type": "MultiLineString"}, "id": "4048", "properties": {}, "type": "Feature"}, {"bbox": [8.486241, 47.376278, 8.48662, 47.376852], "geometry": {"coordinates": [[[8.486241, 47.376278], [8.486284, 47.376302], [8.486324, 47.376329], [8.48636, 47.376358], [8.486391, 47.376389], [8.486418, 47.376423], [8.486428, 47.376474], [8.486436, 47.376526], [8.486442, 47.376577], [8.486445, 47.376593], [8.486449, 47.376608], [8.486456, 47.376623], [8.486464, 47.376637], [8.486474, 47.376651], [8.486486, 47.376665], [8.48653, 47.376728], [8.486574, 47.37679], [8.48662, 47.376852]]], "type": "MultiLineString"}, "id": "4050", "properties": {}, "type": "Feature"}, {"bbox": [8.495757, 47.422636, 8.496118, 47.423735], "geometry": {"coordinates": [[[8.495979, 47.423735], [8.495975, 47.423687], [8.49603, 47.423389], [8.496006, 47.423379], [8.496023, 47.423302], [8.496095, 47.423265], [8.496118, 47.423151], [8.496105, 47.423024], [8.496054, 47.422959], [8.495835, 47.422866], [8.495797, 47.422839], [8.495779, 47.422695], [8.495757, 47.422636]]], "type": "MultiLineString"}, "id": "4053", "properties": {}, "type": "Feature"}, {"bbox": [8.553558, 47.402067, 8.557342, 47.403296], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553597, 47.402093], [8.553667, 47.402137], [8.55373, 47.40217], [8.553795, 47.402201], [8.553863, 47.402229], [8.554063, 47.402307], [8.554262, 47.402386], [8.554459, 47.402466], [8.554596, 47.402522], [8.554739, 47.40257], [8.554887, 47.40261], [8.555072, 47.402655], [8.555256, 47.402701], [8.555439, 47.40275], [8.555687, 47.40281], [8.55581, 47.40284], [8.556041, 47.402899], [8.556338, 47.402988], [8.556625, 47.403094], [8.556989, 47.403197], [8.557342, 47.403296]]], "type": "MultiLineString"}, "id": "4054", "properties": {}, "type": "Feature"}, {"bbox": [8.575044, 47.405311, 8.576059, 47.406302], "geometry": {"coordinates": [[[8.575044, 47.405311], [8.576013, 47.406257], [8.576059, 47.406302]]], "type": "MultiLineString"}, "id": "4055", "properties": {}, "type": "Feature"}, {"bbox": [8.498666, 47.375044, 8.499892, 47.375716], "geometry": {"coordinates": [[[8.499892, 47.375044], [8.499485, 47.375269], [8.499076, 47.375493], [8.498666, 47.375716]]], "type": "MultiLineString"}, "id": "4056", "properties": {}, "type": "Feature"}, {"bbox": [8.572614, 47.410337, 8.576357, 47.411182], "geometry": {"coordinates": [[[8.572614, 47.411182], [8.572687, 47.411155], [8.57286, 47.411149], [8.573077, 47.411109], [8.573807, 47.41094], [8.574975, 47.410675], [8.576285, 47.410373], [8.576302, 47.410368], [8.576317, 47.410361], [8.576331, 47.410354], [8.576345, 47.410346], [8.576357, 47.410337]]], "type": "MultiLineString"}, "id": "4057", "properties": {}, "type": "Feature"}, {"bbox": [8.516709, 47.33633, 8.517548, 47.336615], "geometry": {"coordinates": [[[8.517548, 47.33638], [8.517517, 47.336361], [8.517504, 47.336354], [8.51749, 47.336348], [8.517476, 47.336343], [8.51746, 47.336338], [8.517445, 47.336335], [8.517429, 47.336332], [8.517412, 47.336331], [8.517396, 47.33633], [8.517379, 47.33633], [8.517363, 47.336332], [8.517347, 47.336334], [8.517331, 47.336337], [8.517315, 47.336341], [8.517301, 47.336346], [8.51693, 47.336515], [8.516709, 47.336615]]], "type": "MultiLineString"}, "id": "4058", "properties": {}, "type": "Feature"}, {"bbox": [8.476241, 47.373969, 8.478494, 47.375322], "geometry": {"coordinates": [[[8.476241, 47.373969], [8.476263, 47.374004], [8.47629, 47.374038], [8.47632, 47.37407], [8.476355, 47.3741], [8.476419, 47.374143], [8.476489, 47.374182], [8.476563, 47.374216], [8.476936, 47.374375], [8.477309, 47.374534], [8.477681, 47.374694], [8.477717, 47.374716], [8.477751, 47.37474], [8.477782, 47.374766], [8.477855, 47.374825], [8.477928, 47.374884], [8.478002, 47.374943], [8.478083, 47.375012], [8.478169, 47.375078], [8.478259, 47.375142], [8.478331, 47.375206], [8.478409, 47.375266], [8.478494, 47.375322]]], "type": "MultiLineString"}, "id": "4059", "properties": {}, "type": "Feature"}, {"bbox": [8.509778, 47.352956, 8.510668, 47.354405], "geometry": {"coordinates": [[[8.509778, 47.354405], [8.509835, 47.354355], [8.509914, 47.354316], [8.510039, 47.354292], [8.51005, 47.35429], [8.510061, 47.354287], [8.510071, 47.354283], [8.510081, 47.354279], [8.510091, 47.354275], [8.5101, 47.35427], [8.510108, 47.354264], [8.510115, 47.354258], [8.510122, 47.354251], [8.510127, 47.354245], [8.510132, 47.354237], [8.510262, 47.35399], [8.510256, 47.353952], [8.510322, 47.353838], [8.510355, 47.353773], [8.510406, 47.353671], [8.51041, 47.353651], [8.510424, 47.353591], [8.510427, 47.35356], [8.510434, 47.353529], [8.510445, 47.353499], [8.510461, 47.35347], [8.510668, 47.35309], [8.510547, 47.352956]]], "type": "MultiLineString"}, "id": "4060", "properties": {}, "type": "Feature"}, {"bbox": [8.493952, 47.388332, 8.497856, 47.389947], "geometry": {"coordinates": [[[8.493952, 47.389947], [8.495873, 47.389392], [8.497856, 47.388763], [8.497658, 47.388463], [8.497518, 47.388389], [8.497368, 47.388332]]], "type": "MultiLineString"}, "id": "4063", "properties": {}, "type": "Feature"}, {"bbox": [8.528432, 47.38236, 8.528946, 47.382934], "geometry": {"coordinates": [[[8.528432, 47.38236], [8.528546, 47.38251], [8.528878, 47.382918], [8.528946, 47.382934]]], "type": "MultiLineString"}, "id": "4065", "properties": {}, "type": "Feature"}, {"bbox": [8.51196, 47.352343, 8.519291, 47.356952], "geometry": {"coordinates": [[[8.519291, 47.356952], [8.518381, 47.356825], [8.518257, 47.356792], [8.518065, 47.356704], [8.517883, 47.356599], [8.517796, 47.356523], [8.517745, 47.35646], [8.517676, 47.356378], [8.517607, 47.356284], [8.517519, 47.356166], [8.517469, 47.356102], [8.517427, 47.355821], [8.517408, 47.355424], [8.517312, 47.355199], [8.517063, 47.354965], [8.516608, 47.354801], [8.516579, 47.354796], [8.516551, 47.35479], [8.516524, 47.354782], [8.516498, 47.354773], [8.516473, 47.354762], [8.516449, 47.35475], [8.516427, 47.354736], [8.516407, 47.354722], [8.516389, 47.354706], [8.516373, 47.354689], [8.516359, 47.354671], [8.516348, 47.354652], [8.516339, 47.354633], [8.516332, 47.354614], [8.516328, 47.354594], [8.516325, 47.35455], [8.516316, 47.354507], [8.516302, 47.354465], [8.516282, 47.354423], [8.516257, 47.354383], [8.516227, 47.354344], [8.516192, 47.354308], [8.516153, 47.354274], [8.51572, 47.353913], [8.515301, 47.353545], [8.514897, 47.353169], [8.514882, 47.353153], [8.514866, 47.353138], [8.514848, 47.353124], [8.514828, 47.353112], [8.514806, 47.3531], [8.514783, 47.35309], [8.514759, 47.353081], [8.514733, 47.353074], [8.514707, 47.353068], [8.51468, 47.353063], [8.514653, 47.353061], [8.514626, 47.35306], [8.514373, 47.353034], [8.514122, 47.353005], [8.513871, 47.352972], [8.513715, 47.352965], [8.51356, 47.352958], [8.513404, 47.352949], [8.513332, 47.35294], [8.513262, 47.352927], [8.513193, 47.35291], [8.513127, 47.352888], [8.512952, 47.35281], [8.512787, 47.352722], [8.512634, 47.352624], [8.512495, 47.352517], [8.512465, 47.352493], [8.512433, 47.352471], [8.512397, 47.352451], [8.51236, 47.352433], [8.51232, 47.352417], [8.512278, 47.352403], [8.512235, 47.352392], [8.512144, 47.352374], [8.512052, 47.352358], [8.51196, 47.352343]]], "type": "MultiLineString"}, "id": "4067", "properties": {}, "type": "Feature"}, {"bbox": [8.499951, 47.40526, 8.500448, 47.406423], "geometry": {"coordinates": [[[8.499951, 47.40526], [8.49996, 47.405265], [8.499969, 47.405271], [8.499977, 47.405277], [8.499985, 47.405284], [8.499991, 47.405291], [8.499997, 47.405298], [8.500002, 47.405306], [8.500063, 47.405416], [8.500126, 47.405526], [8.500191, 47.405636], [8.499994, 47.40571], [8.499992, 47.40571], [8.499991, 47.40571], [8.49999, 47.405711], [8.499988, 47.405712], [8.499987, 47.405712], [8.499986, 47.405713], [8.499985, 47.405714], [8.499985, 47.405715], [8.499984, 47.405716], [8.499983, 47.405717], [8.499983, 47.405718], [8.499983, 47.405719], [8.499982, 47.40572], [8.499982, 47.405721], [8.499982, 47.405722], [8.499983, 47.405723], [8.499983, 47.405724], [8.499983, 47.405725], [8.499984, 47.405726], [8.499985, 47.405727], [8.500233, 47.40612], [8.500448, 47.406423]]], "type": "MultiLineString"}, "id": "4068", "properties": {}, "type": "Feature"}, {"bbox": [8.522791, 47.380054, 8.524083, 47.380404], "geometry": {"coordinates": [[[8.522791, 47.380054], [8.52294, 47.38017], [8.522965, 47.380182], [8.522991, 47.380193], [8.523019, 47.380203], [8.523048, 47.38021], [8.523078, 47.380216], [8.524083, 47.380404]]], "type": "MultiLineString"}, "id": "4069", "properties": {}, "type": "Feature"}, {"bbox": [8.513749, 47.338909, 8.517174, 47.343508], "geometry": {"coordinates": [[[8.517174, 47.342956], [8.516971, 47.343407], [8.516921, 47.343467], [8.516878, 47.343497], [8.516798, 47.343508], [8.516732, 47.343501], [8.516706, 47.343469], [8.516676, 47.343422], [8.516663, 47.34336], [8.516726, 47.342511], [8.516742, 47.341704], [8.516746, 47.341655], [8.516745, 47.341606], [8.516737, 47.341557], [8.516724, 47.341509], [8.516705, 47.341462], [8.516681, 47.341416], [8.516651, 47.341371], [8.516383, 47.341068], [8.515962, 47.340687], [8.514993, 47.339879], [8.513749, 47.338909]]], "type": "MultiLineString"}, "id": "4070", "properties": {}, "type": "Feature"}, {"bbox": [8.543031, 47.370721, 8.543322, 47.37103], "geometry": {"coordinates": [[[8.543031, 47.370721], [8.543227, 47.370731], [8.543278, 47.370791], [8.543243, 47.370801], [8.543209, 47.370972], [8.543201, 47.371017], [8.543271, 47.37103], [8.543322, 47.371019]]], "type": "MultiLineString"}, "id": "4071", "properties": {}, "type": "Feature"}, {"bbox": [8.53317, 47.411726, 8.533441, 47.413182], "geometry": {"coordinates": [[[8.533441, 47.411726], [8.533411, 47.411884], [8.533283, 47.412491], [8.533214, 47.412834], [8.53317, 47.41308], [8.533181, 47.413182]]], "type": "MultiLineString"}, "id": "4072", "properties": {}, "type": "Feature"}, {"bbox": [8.460131, 47.375893, 8.469861, 47.381373], "geometry": {"coordinates": [[[8.469861, 47.375912], [8.469618, 47.375901], [8.469363, 47.375893], [8.468938, 47.375893], [8.468903, 47.375894], [8.468867, 47.375898], [8.468833, 47.375903], [8.468799, 47.37591], [8.468766, 47.37592], [8.468735, 47.375931], [8.468705, 47.375944], [8.468677, 47.375959], [8.468651, 47.375975], [8.468485, 47.376091], [8.468452, 47.376113], [8.468416, 47.376132], [8.468379, 47.376149], [8.468339, 47.376164], [8.468297, 47.376177], [8.467959, 47.376269], [8.467682, 47.376361], [8.467576, 47.376394], [8.467468, 47.376424], [8.467359, 47.376452], [8.466897, 47.376559], [8.4668, 47.376585], [8.466707, 47.376617], [8.466619, 47.376655], [8.466537, 47.376698], [8.46646, 47.376746], [8.466391, 47.376799], [8.466081, 47.37706], [8.465956, 47.377156], [8.46582, 47.377245], [8.465674, 47.377326], [8.465214, 47.377561], [8.465039, 47.377655], [8.464872, 47.377757], [8.464713, 47.377864], [8.464008, 47.378366], [8.463977, 47.378388], [8.463945, 47.378408], [8.463912, 47.378428], [8.463561, 47.378633], [8.463161, 47.37889], [8.463091, 47.37894], [8.463028, 47.378993], [8.462974, 47.379051], [8.462927, 47.379111], [8.46289, 47.379175], [8.462704, 47.379535], [8.462669, 47.379595], [8.462627, 47.379653], [8.462577, 47.379708], [8.462521, 47.37976], [8.462459, 47.379809], [8.462391, 47.379853], [8.462317, 47.379894], [8.461736, 47.38019], [8.460807, 47.380635], [8.46073, 47.380675], [8.460658, 47.38072], [8.460591, 47.380769], [8.460531, 47.380821], [8.460478, 47.380876], [8.460308, 47.381071], [8.460269, 47.38112], [8.460234, 47.381171], [8.460205, 47.381224], [8.460131, 47.381373]]], "type": "MultiLineString"}, "id": "4077", "properties": {}, "type": "Feature"}, {"bbox": [8.530538, 47.38332, 8.530808, 47.383513], "geometry": {"coordinates": [[[8.530538, 47.38332], [8.530711, 47.383513], [8.530808, 47.383441]]], "type": "MultiLineString"}, "id": "4079", "properties": {}, "type": "Feature"}, {"bbox": [8.524083, 47.387052, 8.524155, 47.387085], "geometry": {"coordinates": [[[8.524155, 47.387052], [8.524083, 47.387085]]], "type": "MultiLineString"}, "id": "4080", "properties": {}, "type": "Feature"}, {"bbox": [8.537323, 47.340597, 8.538785, 47.340897], "geometry": {"coordinates": [[[8.538785, 47.340897], [8.538182, 47.340773], [8.537428, 47.340597], [8.537323, 47.34061]]], "type": "MultiLineString"}, "id": "4081", "properties": {}, "type": "Feature"}, {"bbox": [8.530426, 47.38331, 8.530538, 47.38332], "geometry": {"coordinates": [[[8.530426, 47.38331], [8.530538, 47.38332]]], "type": "MultiLineString"}, "id": "4083", "properties": {}, "type": "Feature"}, {"bbox": [8.54185, 47.373858, 8.54195, 47.373897], "geometry": {"coordinates": [[[8.54185, 47.373858], [8.54195, 47.373897]]], "type": "MultiLineString"}, "id": "4085", "properties": {}, "type": "Feature"}, {"bbox": [8.52239, 47.390475, 8.523011, 47.39067], "geometry": {"coordinates": [[[8.52239, 47.390627], [8.522405, 47.390636], [8.522421, 47.390644], [8.522437, 47.390651], [8.522455, 47.390657], [8.522473, 47.390662], [8.522492, 47.390666], [8.522511, 47.390668], [8.522531, 47.39067], [8.52255, 47.39067], [8.52257, 47.39067], [8.522589, 47.390668], [8.522608, 47.390664], [8.522627, 47.39066], [8.522645, 47.390655], [8.522662, 47.390648], [8.522679, 47.390641], [8.522944, 47.390495], [8.523011, 47.390475]]], "type": "MultiLineString"}, "id": "4086", "properties": {}, "type": "Feature"}, {"bbox": [8.475352, 47.391626, 8.476858, 47.391857], "geometry": {"coordinates": [[[8.475352, 47.391857], [8.475848, 47.391768], [8.476181, 47.391709], [8.476518, 47.391662], [8.476858, 47.391626]]], "type": "MultiLineString"}, "id": "4087", "properties": {}, "type": "Feature"}, {"bbox": [8.517335, 47.385416, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518803, 47.387087], [8.518716, 47.387034], [8.518637, 47.386976], [8.518567, 47.386912], [8.518467, 47.386787], [8.51786, 47.386167], [8.517499, 47.385793], [8.517454, 47.385745], [8.517416, 47.385694], [8.517385, 47.385641], [8.517361, 47.385586], [8.517344, 47.38553], [8.517336, 47.385473], [8.517335, 47.385416]]], "type": "MultiLineString"}, "id": "4088", "properties": {}, "type": "Feature"}, {"bbox": [8.559887, 47.405, 8.56975, 47.409977], "geometry": {"coordinates": [[[8.559887, 47.405138], [8.560924, 47.405], [8.561268, 47.405107], [8.56162, 47.405199], [8.561981, 47.405276], [8.562334, 47.405355], [8.562677, 47.405454], [8.563007, 47.405572], [8.563321, 47.405708], [8.563618, 47.40586], [8.564904, 47.406612], [8.565334, 47.406878], [8.565754, 47.407153], [8.566161, 47.407436], [8.566479, 47.407675], [8.566781, 47.407924], [8.567067, 47.408181], [8.567931, 47.408944], [8.568377, 47.409299], [8.568841, 47.409643], [8.56932, 47.409977], [8.56975, 47.409937]]], "type": "MultiLineString"}, "id": "4089", "properties": {}, "type": "Feature"}, {"bbox": [8.503831, 47.365991, 8.504205, 47.368268], "geometry": {"coordinates": [[[8.504073, 47.365991], [8.504053, 47.366039], [8.504017, 47.366125], [8.503922, 47.36653], [8.503831, 47.366929], [8.503867, 47.367027], [8.503977, 47.367072], [8.504098, 47.367089], [8.50411, 47.367091], [8.504121, 47.367093], [8.504131, 47.367096], [8.504142, 47.3671], [8.504151, 47.367105], [8.50416, 47.36711], [8.504169, 47.367115], [8.504177, 47.367121], [8.504183, 47.367128], [8.504189, 47.367135], [8.504195, 47.367142], [8.504199, 47.367149], [8.504202, 47.367157], [8.504204, 47.367165], [8.504205, 47.367173], [8.504205, 47.36718], [8.504204, 47.367188], [8.504169, 47.367402], [8.504141, 47.367515], [8.504131, 47.367556], [8.504128, 47.367576], [8.504099, 47.367796], [8.504071, 47.367905], [8.504059, 47.367932], [8.50407, 47.368176], [8.504074, 47.368268]]], "type": "MultiLineString"}, "id": "4090", "properties": {}, "type": "Feature"}, {"bbox": [8.511196, 47.354393, 8.512843, 47.35496], "geometry": {"coordinates": [[[8.512843, 47.354393], [8.512727, 47.354421], [8.512539, 47.354466], [8.512253, 47.35453], [8.512225, 47.354575], [8.512091, 47.354792], [8.511986, 47.35496], [8.511578, 47.354843], [8.511666, 47.354684], [8.511678, 47.35467], [8.511667, 47.354662], [8.511328, 47.354579], [8.511196, 47.354546]]], "type": "MultiLineString"}, "id": "4091", "properties": {}, "type": "Feature"}, {"bbox": [8.487575, 47.376937, 8.488339, 47.378398], "geometry": {"coordinates": [[[8.488294, 47.378398], [8.48831, 47.378369], [8.488322, 47.37834], [8.488331, 47.37831], [8.488337, 47.37828], [8.488339, 47.378262], [8.488338, 47.378245], [8.488336, 47.378227], [8.488331, 47.37821], [8.488324, 47.378193], [8.488315, 47.378177], [8.488304, 47.378161], [8.488291, 47.378146], [8.488276, 47.378132], [8.48826, 47.378118], [8.488241, 47.378106], [8.488164, 47.378082], [8.488088, 47.378055], [8.488014, 47.378027], [8.487993, 47.378018], [8.487973, 47.378008], [8.487955, 47.377997], [8.487938, 47.377985], [8.487922, 47.377972], [8.487909, 47.377958], [8.487897, 47.377943], [8.487887, 47.377928], [8.487879, 47.377912], [8.487873, 47.377895], [8.487871, 47.37788], [8.487872, 47.377865], [8.487874, 47.377849], [8.487879, 47.377834], [8.487885, 47.37782], [8.487918, 47.377764], [8.487943, 47.377706], [8.48796, 47.377647], [8.487961, 47.377638], [8.487961, 47.377629], [8.48796, 47.37762], [8.487958, 47.377611], [8.487955, 47.377602], [8.48795, 47.377593], [8.487944, 47.377585], [8.487938, 47.377577], [8.48793, 47.37757], [8.487921, 47.377563], [8.487912, 47.377556], [8.487901, 47.37755], [8.48789, 47.377545], [8.487879, 47.377541], [8.487794, 47.377495], [8.487714, 47.377446], [8.487639, 47.377393], [8.487623, 47.377377], [8.48761, 47.377361], [8.487598, 47.377344], [8.487589, 47.377327], [8.487582, 47.377309], [8.487577, 47.377291], [8.487575, 47.377272], [8.487581, 47.377214], [8.487595, 47.377157], [8.487615, 47.3771], [8.487626, 47.377082], [8.48764, 47.377064], [8.487657, 47.377048], [8.487675, 47.377032], [8.487696, 47.377018], [8.487746, 47.376997], [8.487797, 47.376976], [8.487848, 47.376956], [8.48786, 47.376951], [8.487871, 47.376947], [8.487884, 47.376943], [8.487896, 47.376941], [8.487909, 47.376939], [8.487923, 47.376938], [8.487936, 47.376937], [8.487949, 47.376938], [8.487962, 47.376939], [8.487975, 47.376941], [8.488154, 47.377002], [8.48817, 47.377008], [8.488186, 47.377012], [8.488203, 47.377015], [8.48822, 47.377018], [8.488238, 47.377019], [8.488255, 47.377019], [8.488273, 47.377018]]], "type": "MultiLineString"}, "id": "4092", "properties": {}, "type": "Feature"}, {"bbox": [8.602844, 47.361243, 8.612522, 47.362201], "geometry": {"coordinates": [[[8.602844, 47.361413], [8.602948, 47.36132], [8.603117, 47.361288], [8.603261, 47.361264], [8.603314, 47.361256], [8.603369, 47.36125], [8.603424, 47.361246], [8.603424, 47.361246], [8.603464, 47.361245], [8.603504, 47.361244], [8.603544, 47.361243], [8.603566, 47.361243], [8.603588, 47.361244], [8.60361, 47.361245], [8.60367, 47.361251], [8.603729, 47.361258], [8.603789, 47.361267], [8.603911, 47.361286], [8.604032, 47.361307], [8.604153, 47.361331], [8.60422, 47.361343], [8.604289, 47.361353], [8.604358, 47.361361], [8.604403, 47.361364], [8.604448, 47.361366], [8.604493, 47.361367], [8.604493, 47.361367], [8.604542, 47.361369], [8.60459, 47.361373], [8.604638, 47.36138], [8.604719, 47.361398], [8.6048, 47.361416], [8.604881, 47.361433], [8.604958, 47.361452], [8.605035, 47.36147], [8.605113, 47.361486], [8.605215, 47.361506], [8.605317, 47.361524], [8.60542, 47.361542], [8.605647, 47.361583], [8.605875, 47.36162], [8.606105, 47.361654], [8.606275, 47.361678], [8.606445, 47.361703], [8.606615, 47.36173], [8.606768, 47.361752], [8.606921, 47.361773], [8.607074, 47.361794], [8.607186, 47.361807], [8.607298, 47.36182], [8.60741, 47.361832], [8.607506, 47.361841], [8.607602, 47.361849], [8.607699, 47.361855], [8.607801, 47.361861], [8.607903, 47.361867], [8.608004, 47.361872], [8.608096, 47.361876], [8.608187, 47.361879], [8.608278, 47.361882], [8.60835, 47.361883], [8.608422, 47.361887], [8.608493, 47.361894], [8.608557, 47.361898], [8.608621, 47.361903], [8.608685, 47.361909], [8.60887, 47.361923], [8.609034, 47.361936], [8.609123, 47.36194], [8.609143, 47.361942], [8.609163, 47.361942], [8.609183, 47.361941], [8.609324, 47.36194], [8.609464, 47.361939], [8.609605, 47.361936], [8.610075, 47.361941], [8.610125, 47.361942], [8.610176, 47.361947], [8.610225, 47.361953], [8.610292, 47.361962], [8.610359, 47.361971], [8.610426, 47.36198], [8.610586, 47.362], [8.610746, 47.36202], [8.610906, 47.362039], [8.610949, 47.362045], [8.610993, 47.36205], [8.611037, 47.362051], [8.611142, 47.362055], [8.611247, 47.362059], [8.611353, 47.362062], [8.611451, 47.362067], [8.611548, 47.362076], [8.611644, 47.362089], [8.611746, 47.362105], [8.611847, 47.362122], [8.611949, 47.362138], [8.612044, 47.362152], [8.612139, 47.362165], [8.612235, 47.362175], [8.612294, 47.362183], [8.612353, 47.362187], [8.612412, 47.362189], [8.612491, 47.362196], [8.612522, 47.362201]]], "type": "MultiLineString"}, "id": "4093", "properties": {}, "type": "Feature"}, {"bbox": [8.548231, 47.422073, 8.550501, 47.424133], "geometry": {"coordinates": [[[8.549001, 47.424097], [8.548913, 47.42413], [8.548896, 47.424132], [8.548878, 47.424133], [8.548861, 47.424132], [8.548843, 47.424131], [8.548826, 47.424129], [8.54881, 47.424125], [8.548793, 47.424121], [8.54834, 47.423986], [8.548338, 47.423985], [8.548335, 47.423984], [8.548332, 47.423983], [8.54833, 47.423981], [8.548328, 47.423979], [8.548326, 47.423978], [8.548325, 47.423976], [8.548323, 47.423974], [8.548322, 47.423972], [8.548321, 47.42397], [8.548321, 47.423967], [8.54832, 47.423965], [8.54832, 47.423963], [8.548321, 47.423961], [8.548321, 47.423959], [8.548322, 47.423957], [8.548323, 47.423955], [8.548325, 47.423953], [8.5485, 47.423693], [8.548231, 47.423294], [8.548339, 47.423264], [8.548426, 47.42324], [8.548363, 47.423148], [8.54841, 47.423134], [8.548416, 47.423148], [8.548452, 47.423139], [8.548459, 47.423153], [8.54863, 47.423104], [8.548772, 47.423057], [8.549115, 47.422877], [8.549382, 47.422636], [8.549749, 47.422454], [8.550012, 47.422282], [8.550384, 47.422122], [8.550501, 47.422073]]], "type": "MultiLineString"}, "id": "4094", "properties": {}, "type": "Feature"}, {"bbox": [8.473998, 47.375657, 8.475169, 47.377299], "geometry": {"coordinates": [[[8.475169, 47.375657], [8.475165, 47.375676], [8.47516, 47.375695], [8.475153, 47.375713], [8.475095, 47.375934], [8.475057, 47.376157], [8.475038, 47.376381], [8.475033, 47.376483], [8.475014, 47.376585], [8.474981, 47.376685], [8.474934, 47.376782], [8.474893, 47.376861], [8.474849, 47.376939], [8.474803, 47.377016], [8.474766, 47.377064], [8.474724, 47.377111], [8.474678, 47.377156], [8.474576, 47.377192], [8.474473, 47.377226], [8.474369, 47.377258], [8.47431, 47.377272], [8.474249, 47.377283], [8.474188, 47.37729], [8.47415, 47.377296], [8.474112, 47.377298], [8.474074, 47.377299], [8.474036, 47.377297], [8.473998, 47.377293]]], "type": "MultiLineString"}, "id": "4095", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.376998, 8.541764, 47.378523], "geometry": {"coordinates": [[[8.541439, 47.376998], [8.541508, 47.377056], [8.541568, 47.377119], [8.541619, 47.377184], [8.541661, 47.377253], [8.541693, 47.377324], [8.541727, 47.377413], [8.54175, 47.377502], [8.541763, 47.377593], [8.541764, 47.377685], [8.541755, 47.377776], [8.541736, 47.377866], [8.541632, 47.378086], [8.541525, 47.378305], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "4096", "properties": {}, "type": "Feature"}, {"bbox": [8.612522, 47.362201, 8.614507, 47.362625], "geometry": {"coordinates": [[[8.612522, 47.362201], [8.612551, 47.362207], [8.612611, 47.362211], [8.612663, 47.362212], [8.612714, 47.362214], [8.612765, 47.362219], [8.612944, 47.362237], [8.613124, 47.362255], [8.613303, 47.362274], [8.613523, 47.362297], [8.613742, 47.362324], [8.613961, 47.362353], [8.614039, 47.362362], [8.614116, 47.362375], [8.61419, 47.362393], [8.614262, 47.362415], [8.614331, 47.362442], [8.614396, 47.362472], [8.614457, 47.362506], [8.614507, 47.36257], [8.614494, 47.362625]]], "type": "MultiLineString"}, "id": "4098", "properties": {}, "type": "Feature"}, {"bbox": [8.528012, 47.363529, 8.528288, 47.363635], "geometry": {"coordinates": [[[8.528012, 47.363635], [8.528283, 47.363534], [8.528288, 47.363529]]], "type": "MultiLineString"}, "id": "4104", "properties": {}, "type": "Feature"}, {"bbox": [8.474384, 47.390752, 8.475352, 47.391857], "geometry": {"coordinates": [[[8.475352, 47.391857], [8.474809, 47.391315], [8.474465, 47.390944], [8.474455, 47.390931], [8.474447, 47.390918], [8.474441, 47.390905], [8.474436, 47.390891], [8.474434, 47.390877], [8.474433, 47.390863], [8.474434, 47.390849], [8.474437, 47.390835], [8.474442, 47.390821], [8.474449, 47.390808], [8.474471, 47.390775], [8.474384, 47.390752]]], "type": "MultiLineString"}, "id": "4120", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.373858, 8.54185, 47.374224], "geometry": {"coordinates": [[[8.54185, 47.373858], [8.541803, 47.373928], [8.541717, 47.374105], [8.54168, 47.374224], [8.541582, 47.374209], [8.541349, 47.374076]]], "type": "MultiLineString"}, "id": "4121", "properties": {}, "type": "Feature"}, {"bbox": [8.523099, 47.386753, 8.524155, 47.387052], "geometry": {"coordinates": [[[8.524155, 47.387052], [8.523294, 47.386764], [8.523277, 47.38676], [8.523259, 47.386757], [8.523241, 47.386754], [8.523222, 47.386753], [8.523203, 47.386753], [8.523185, 47.386755], [8.523167, 47.386757], [8.523149, 47.38676], [8.523131, 47.386765], [8.523115, 47.38677], [8.523099, 47.386777]]], "type": "MultiLineString"}, "id": "4122", "properties": {}, "type": "Feature"}, {"bbox": [8.512003, 47.428102, 8.518699, 47.428384], "geometry": {"coordinates": [[[8.518699, 47.428181], [8.517915, 47.428201], [8.517907, 47.42837], [8.514039, 47.428384], [8.51377, 47.428369], [8.513504, 47.428342], [8.51324, 47.428302], [8.513076, 47.428274], [8.512912, 47.428247], [8.512747, 47.428222], [8.51259, 47.428199], [8.512432, 47.428183], [8.512272, 47.428174], [8.51223, 47.428171], [8.512189, 47.428166], [8.512149, 47.428158], [8.512109, 47.428147], [8.512072, 47.428134], [8.512036, 47.428119], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "4127", "properties": {}, "type": "Feature"}, {"bbox": [8.48008, 47.385146, 8.481337, 47.385688], "geometry": {"coordinates": [[[8.48008, 47.385688], [8.480137, 47.385646], [8.480197, 47.385606], [8.480261, 47.385569], [8.480299, 47.385551], [8.480337, 47.385533], [8.480375, 47.385515], [8.480881, 47.385307], [8.480939, 47.385282], [8.481, 47.385259], [8.481062, 47.385239], [8.481157, 47.385213], [8.481249, 47.385182], [8.481337, 47.385146]]], "type": "MultiLineString"}, "id": "4128", "properties": {}, "type": "Feature"}, {"bbox": [8.481261, 47.417647, 8.483129, 47.417784], "geometry": {"coordinates": [[[8.483129, 47.417647], [8.483032, 47.417759], [8.483026, 47.417764], [8.483019, 47.417768], [8.483012, 47.417772], [8.483005, 47.417775], [8.482997, 47.417778], [8.482989, 47.41778], [8.48298, 47.417782], [8.482971, 47.417783], [8.482963, 47.417784], [8.482954, 47.417784], [8.482945, 47.417784], [8.482936, 47.417783], [8.481261, 47.417698]]], "type": "MultiLineString"}, "id": "4130", "properties": {}, "type": "Feature"}, {"bbox": [8.525259, 47.349538, 8.526569, 47.351051], "geometry": {"coordinates": [[[8.526569, 47.351051], [8.526555, 47.350996], [8.526172, 47.350493], [8.525475, 47.349851], [8.525408, 47.34971], [8.525259, 47.349552], [8.525267, 47.349538]]], "type": "MultiLineString"}, "id": "4131", "properties": {}, "type": "Feature"}, {"bbox": [8.584198, 47.383253, 8.586298, 47.383707], "geometry": {"coordinates": [[[8.584198, 47.383704], [8.584214, 47.383706], [8.58423, 47.383707], [8.584246, 47.383706], [8.584262, 47.383705], [8.584277, 47.383703], [8.584293, 47.3837], [8.584307, 47.383696], [8.586181, 47.383264], [8.586298, 47.383253]]], "type": "MultiLineString"}, "id": "4132", "properties": {}, "type": "Feature"}, {"bbox": [8.476517, 47.416864, 8.477899, 47.417092], "geometry": {"coordinates": [[[8.476517, 47.416865], [8.476567, 47.416864], [8.476617, 47.416866], [8.476666, 47.416871], [8.477292, 47.416951], [8.477344, 47.416958], [8.477396, 47.416966], [8.477447, 47.416974], [8.477601, 47.417], [8.477641, 47.417007], [8.477679, 47.417016], [8.477717, 47.417027], [8.477753, 47.417039], [8.477899, 47.417092]]], "type": "MultiLineString"}, "id": "4133", "properties": {}, "type": "Feature"}, {"bbox": [8.486679, 47.402687, 8.487835, 47.403201], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.487828, 47.402699], [8.487832, 47.402711], [8.487834, 47.402723], [8.487835, 47.402736], [8.487818, 47.40275], [8.486952, 47.403071], [8.486937, 47.403078], [8.486923, 47.403084], [8.486908, 47.403091], [8.486679, 47.403201]]], "type": "MultiLineString"}, "id": "4135", "properties": {}, "type": "Feature"}, {"bbox": [8.539474, 47.407107, 8.540464, 47.407597], "geometry": {"coordinates": [[[8.539474, 47.407597], [8.539571, 47.407432], [8.539672, 47.407269], [8.539776, 47.407107], [8.539882, 47.40714], [8.539987, 47.407173], [8.540091, 47.407208], [8.540123, 47.407222], [8.540152, 47.407239], [8.54018, 47.407257], [8.540205, 47.407276], [8.540227, 47.407297], [8.540247, 47.407319], [8.540273, 47.407363], [8.540301, 47.407407], [8.54033, 47.40745], [8.54037, 47.407485], [8.540415, 47.407518], [8.540464, 47.407547]]], "type": "MultiLineString"}, "id": "4136", "properties": {}, "type": "Feature"}, {"bbox": [8.564824, 47.407865, 8.565258, 47.408457], "geometry": {"coordinates": [[[8.564824, 47.408457], [8.564959, 47.408256], [8.565104, 47.408059], [8.565258, 47.407865]]], "type": "MultiLineString"}, "id": "4137", "properties": {}, "type": "Feature"}, {"bbox": [8.565993, 47.367607, 8.567231, 47.368332], "geometry": {"coordinates": [[[8.567231, 47.367614], [8.567189, 47.367607], [8.567075, 47.367725], [8.566948, 47.367838], [8.566807, 47.367942], [8.566654, 47.368038], [8.566572, 47.368082], [8.566487, 47.368122], [8.566397, 47.368158], [8.56606, 47.36829], [8.566047, 47.368295], [8.566034, 47.368301], [8.566022, 47.368308], [8.566012, 47.368315], [8.566002, 47.368323], [8.565993, 47.368332]]], "type": "MultiLineString"}, "id": "4138", "properties": {}, "type": "Feature"}, {"bbox": [8.542444, 47.39852, 8.571178, 47.40679], "geometry": {"coordinates": [[[8.542444, 47.39852], [8.54281, 47.399024], [8.543043, 47.399159], [8.543292, 47.399281], [8.543555, 47.399388], [8.54383, 47.399481], [8.544115, 47.399558], [8.545654, 47.399793], [8.546025, 47.399842], [8.546388, 47.399912], [8.546741, 47.400002], [8.547082, 47.400111], [8.547776, 47.400369], [8.548505, 47.400579], [8.54926, 47.400739], [8.549683, 47.400836], [8.550092, 47.400958], [8.550483, 47.401104], [8.550853, 47.401273], [8.551432, 47.401544], [8.552012, 47.401815], [8.552593, 47.402084], [8.553251, 47.40239], [8.553935, 47.402668], [8.554643, 47.402918], [8.555792, 47.403265], [8.556949, 47.403599], [8.558115, 47.40392], [8.558833, 47.404084], [8.559528, 47.404289], [8.560195, 47.404533], [8.560831, 47.404814], [8.561529, 47.405045], [8.56222, 47.405286], [8.562903, 47.405538], [8.563402, 47.405774], [8.563892, 47.406018], [8.564373, 47.406272], [8.564578, 47.406382], [8.564796, 47.40648], [8.565025, 47.406566], [8.565263, 47.406639], [8.56551, 47.406698], [8.565763, 47.406743], [8.56602, 47.406773], [8.566281, 47.40679], [8.56648, 47.406787], [8.566679, 47.406773], [8.566875, 47.406749], [8.567067, 47.406713], [8.567255, 47.406667], [8.567436, 47.40661], [8.56761, 47.406544], [8.567776, 47.406468], [8.569381, 47.40583], [8.57032, 47.405472], [8.57056, 47.40536], [8.570785, 47.405234], [8.570991, 47.405095], [8.571178, 47.404943]]], "type": "MultiLineString"}, "id": "4139", "properties": {}, "type": "Feature"}, {"bbox": [8.546314, 47.425197, 8.546838, 47.425332], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.54649, 47.425201], [8.546548, 47.425208], [8.546605, 47.425218], [8.54666, 47.425232], [8.546724, 47.425261], [8.546783, 47.425295], [8.546838, 47.425332]]], "type": "MultiLineString"}, "id": "4146", "properties": {}, "type": "Feature"}, {"bbox": [8.459072, 47.383156, 8.462439, 47.384411], "geometry": {"coordinates": [[[8.462439, 47.383156], [8.462367, 47.383184], [8.462286, 47.383218], [8.462209, 47.383257], [8.462137, 47.383299], [8.46189, 47.383454], [8.461768, 47.383527], [8.461641, 47.383596], [8.461509, 47.383661], [8.461018, 47.383888], [8.460914, 47.383935], [8.460808, 47.38398], [8.4607, 47.384022], [8.460404, 47.384135], [8.460324, 47.384163], [8.46024, 47.384187], [8.460153, 47.384206], [8.460065, 47.38422], [8.459883, 47.384245], [8.459812, 47.384255], [8.459741, 47.384266], [8.459671, 47.384278], [8.459359, 47.384334], [8.459072, 47.384411]]], "type": "MultiLineString"}, "id": "4147", "properties": {}, "type": "Feature"}, {"bbox": [8.459868, 47.381189, 8.473208, 47.382306], "geometry": {"coordinates": [[[8.473208, 47.382049], [8.473116, 47.382014], [8.472586, 47.381882], [8.472312, 47.381813], [8.472259, 47.381799], [8.472209, 47.381783], [8.472159, 47.381764], [8.471939, 47.381754], [8.471133, 47.381718], [8.470972, 47.381714], [8.47081, 47.381717], [8.470649, 47.381726], [8.470502, 47.381742], [8.470358, 47.381768], [8.470219, 47.381802], [8.470085, 47.381846], [8.469629, 47.382013], [8.469519, 47.382049], [8.469403, 47.382078], [8.469284, 47.3821], [8.469163, 47.382115], [8.468719, 47.382155], [8.468611, 47.382162], [8.468503, 47.382165], [8.468394, 47.382163], [8.468057, 47.38215], [8.467782, 47.382148], [8.467508, 47.382164], [8.467238, 47.382197], [8.466655, 47.382287], [8.466552, 47.3823], [8.466448, 47.382306], [8.466343, 47.382306], [8.466238, 47.382299], [8.466135, 47.382286], [8.465041, 47.382109], [8.465035, 47.382108], [8.464921, 47.382094], [8.464806, 47.382085], [8.46469, 47.382084], [8.464574, 47.38209], [8.46446, 47.382102], [8.464328, 47.38212], [8.463833, 47.382188], [8.46364, 47.382209], [8.463445, 47.382219], [8.463249, 47.382218], [8.463055, 47.382207], [8.463046, 47.382206], [8.462293, 47.382141], [8.461322, 47.382068], [8.461292, 47.382065], [8.461262, 47.382062], [8.461232, 47.382058], [8.46115, 47.382043], [8.46107, 47.382023], [8.460994, 47.381998], [8.460921, 47.381968], [8.460696, 47.381867], [8.460617, 47.381827], [8.460543, 47.381783], [8.460475, 47.381735], [8.460413, 47.381682], [8.460358, 47.381627], [8.460131, 47.381373], [8.460097, 47.381336], [8.460081, 47.381318], [8.460062, 47.381302], [8.460041, 47.381288], [8.460018, 47.381274], [8.459993, 47.381262], [8.459967, 47.381251], [8.459948, 47.381243], [8.459929, 47.381234], [8.459912, 47.381224], [8.459896, 47.381213], [8.459881, 47.381201], [8.459868, 47.381189]]], "type": "MultiLineString"}, "id": "4151", "properties": {}, "type": "Feature"}, {"bbox": [8.500117, 47.422958, 8.502099, 47.423551], "geometry": {"coordinates": [[[8.502099, 47.422975], [8.501929, 47.423017], [8.501896, 47.422958], [8.500117, 47.423432], [8.50015, 47.423488], [8.500185, 47.423551], [8.501966, 47.423082], [8.501929, 47.423017]]], "type": "MultiLineString"}, "id": "4152", "properties": {}, "type": "Feature"}, {"bbox": [8.498875, 47.369166, 8.501606, 47.369698], "geometry": {"coordinates": [[[8.501606, 47.369654], [8.501281, 47.36969], [8.501172, 47.369697], [8.501062, 47.369698], [8.500952, 47.369692], [8.500843, 47.36968], [8.500736, 47.369661], [8.500633, 47.369636], [8.500533, 47.369605], [8.500437, 47.369568], [8.500328, 47.369515], [8.500213, 47.369468], [8.500093, 47.369428], [8.499968, 47.369394], [8.49991, 47.36938], [8.499212, 47.369234], [8.498875, 47.369166]]], "type": "MultiLineString"}, "id": "4153", "properties": {}, "type": "Feature"}, {"bbox": [8.540174, 47.371585, 8.54142, 47.372287], "geometry": {"coordinates": [[[8.54142, 47.371585], [8.541412, 47.371594], [8.54135, 47.371713], [8.541289, 47.371797], [8.541009, 47.37194], [8.54091, 47.371979], [8.540833, 47.372123], [8.540745, 47.37222], [8.540174, 47.372287]]], "type": "MultiLineString"}, "id": "4157", "properties": {}, "type": "Feature"}, {"bbox": [8.541072, 47.394669, 8.542069, 47.396633], "geometry": {"coordinates": [[[8.541072, 47.394669], [8.541129, 47.394706], [8.541182, 47.394746], [8.54123, 47.394788], [8.541273, 47.394833], [8.54131, 47.39488], [8.541341, 47.394929], [8.541542, 47.395396], [8.541996, 47.396452], [8.54202, 47.39651], [8.542069, 47.396633]]], "type": "MultiLineString"}, "id": "4158", "properties": {}, "type": "Feature"}, {"bbox": [8.505166, 47.364718, 8.508344, 47.364953], "geometry": {"coordinates": [[[8.508344, 47.364718], [8.508103, 47.36472], [8.50772, 47.364772], [8.50723, 47.36484], [8.506901, 47.364877], [8.506252, 47.364922], [8.505299, 47.364953], [8.505168, 47.36491], [8.505166, 47.36491]]], "type": "MultiLineString"}, "id": "4159", "properties": {}, "type": "Feature"}, {"bbox": [8.538372, 47.418388, 8.538432, 47.419042], "geometry": {"coordinates": [[[8.538372, 47.418388], [8.538372, 47.418388], [8.538392, 47.418655], [8.538432, 47.419042]]], "type": "MultiLineString"}, "id": "4162", "properties": {}, "type": "Feature"}, {"bbox": [8.541951, 47.417183, 8.542113, 47.418201], "geometry": {"coordinates": [[[8.541951, 47.417183], [8.542005, 47.417483], [8.542013, 47.417536], [8.542031, 47.417669], [8.542047, 47.417784], [8.542039, 47.41781], [8.542082, 47.418134], [8.542113, 47.418201]]], "type": "MultiLineString"}, "id": "4163", "properties": {}, "type": "Feature"}, {"bbox": [8.557807, 47.384056, 8.560415, 47.384381], "geometry": {"coordinates": [[[8.557807, 47.384381], [8.557868, 47.384362], [8.557926, 47.384339], [8.557982, 47.384313], [8.558034, 47.384284], [8.558082, 47.384253], [8.558126, 47.384218], [8.558259, 47.384124], [8.558282, 47.38411], [8.558307, 47.384098], [8.558334, 47.384087], [8.558362, 47.384077], [8.558391, 47.38407], [8.558421, 47.384063], [8.558451, 47.384059], [8.558482, 47.384056], [8.55852, 47.384066], [8.558703, 47.384108], [8.559451, 47.38425], [8.559581, 47.38427], [8.559712, 47.384283], [8.559845, 47.384287], [8.559977, 47.384283], [8.560109, 47.38427], [8.560192, 47.384266], [8.560415, 47.384316]]], "type": "MultiLineString"}, "id": "4164", "properties": {}, "type": "Feature"}, {"bbox": [8.54783, 47.367376, 8.549715, 47.369433], "geometry": {"coordinates": [[[8.549715, 47.367741], [8.54971, 47.367744], [8.549704, 47.367746], [8.549698, 47.367748], [8.549691, 47.367749], [8.549685, 47.36775], [8.549678, 47.367751], [8.549671, 47.367751], [8.549664, 47.367751], [8.549658, 47.36775], [8.549651, 47.367749], [8.549645, 47.367747], [8.549639, 47.367746], [8.549633, 47.367744], [8.549102, 47.367376], [8.548618, 47.367777], [8.548398, 47.368055], [8.548312, 47.368115], [8.547947, 47.368494], [8.547877, 47.368489], [8.54783, 47.368539], [8.54795, 47.368703], [8.548126, 47.368921], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "4165", "properties": {}, "type": "Feature"}, {"bbox": [8.57165, 47.360951, 8.57344, 47.362256], "geometry": {"coordinates": [[[8.57165, 47.360951], [8.571676, 47.36097], [8.571703, 47.360987], [8.571732, 47.361003], [8.571763, 47.361018], [8.571796, 47.36103], [8.572336, 47.361235], [8.572846, 47.361453], [8.572932, 47.361499], [8.573011, 47.361549], [8.573084, 47.361604], [8.573148, 47.361664], [8.573205, 47.361727], [8.573252, 47.361793], [8.573291, 47.361862], [8.57344, 47.362161], [8.573332, 47.362256]]], "type": "MultiLineString"}, "id": "4166", "properties": {}, "type": "Feature"}, {"bbox": [8.560924, 47.404901, 8.56975, 47.409937], "geometry": {"coordinates": [[[8.56975, 47.409937], [8.569137, 47.40957], [8.568581, 47.409163], [8.568088, 47.408719], [8.567497, 47.408232], [8.5669, 47.407749], [8.566295, 47.40727], [8.565412, 47.406749], [8.564521, 47.406235], [8.563621, 47.405728], [8.563217, 47.405535], [8.562793, 47.405365], [8.56235, 47.405217], [8.561909, 47.405105], [8.561466, 47.405], [8.561019, 47.404901], [8.560924, 47.405]]], "type": "MultiLineString"}, "id": "4167", "properties": {}, "type": "Feature"}, {"bbox": [8.451923, 47.380251, 8.459868, 47.381253], "geometry": {"coordinates": [[[8.459868, 47.381189], [8.459695, 47.381162], [8.459591, 47.381152], [8.459486, 47.381148], [8.459382, 47.381149], [8.459277, 47.381156], [8.459114, 47.381172], [8.458951, 47.38119], [8.458789, 47.38121], [8.458675, 47.381224], [8.458561, 47.381235], [8.458446, 47.381245], [8.4583, 47.381253], [8.458152, 47.381253], [8.458005, 47.381246], [8.457883, 47.381234], [8.457762, 47.381219], [8.457643, 47.381199], [8.457539, 47.381178], [8.457437, 47.381153], [8.457337, 47.381125], [8.457218, 47.38109], [8.457099, 47.381055], [8.45698, 47.381021], [8.456709, 47.380926], [8.456668, 47.380912], [8.456627, 47.380896], [8.456587, 47.38088], [8.456548, 47.380862], [8.45651, 47.380843], [8.456473, 47.380824], [8.456409, 47.380791], [8.456342, 47.380763], [8.456271, 47.380738], [8.456198, 47.380718], [8.456122, 47.380702], [8.455948, 47.380673], [8.455773, 47.380645], [8.455597, 47.38062], [8.455408, 47.380595], [8.455218, 47.380572], [8.455028, 47.380551], [8.455027, 47.380551], [8.454935, 47.380541], [8.454843, 47.380527], [8.454752, 47.380509], [8.454665, 47.380488], [8.454579, 47.380463], [8.454496, 47.380434], [8.454496, 47.380434], [8.454281, 47.380352], [8.454281, 47.380351], [8.454251, 47.38034], [8.454219, 47.38033], [8.454187, 47.380322], [8.454153, 47.380315], [8.454119, 47.380311], [8.454085, 47.380309], [8.454084, 47.380309], [8.454083, 47.380309], [8.453991, 47.380299], [8.453901, 47.380283], [8.453812, 47.380264], [8.453735, 47.380255], [8.453658, 47.380251], [8.45358, 47.380252], [8.453503, 47.380257], [8.453427, 47.380268], [8.453353, 47.380283], [8.453281, 47.380302], [8.453083, 47.380365], [8.452881, 47.38042], [8.452674, 47.380466], [8.452673, 47.380466], [8.452578, 47.380487], [8.45248, 47.380504], [8.452381, 47.380515], [8.452293, 47.380522], [8.452205, 47.380525], [8.452116, 47.380524], [8.451923, 47.380518]]], "type": "MultiLineString"}, "id": "4168", "properties": {}, "type": "Feature"}, {"bbox": [8.57861, 47.377046, 8.584054, 47.380826], "geometry": {"coordinates": [[[8.57861, 47.380826], [8.579012, 47.380692], [8.57968, 47.380443], [8.579844, 47.380385], [8.580012, 47.380329], [8.580181, 47.380277], [8.580557, 47.380168], [8.580717, 47.380116], [8.58087, 47.380054], [8.581014, 47.379984], [8.581149, 47.379905], [8.581287, 47.379817], [8.581674, 47.379571], [8.581987, 47.379352], [8.582093, 47.379271], [8.582189, 47.379185], [8.582274, 47.379093], [8.582348, 47.378998], [8.58241, 47.378898], [8.582533, 47.378675], [8.582566, 47.378623], [8.582604, 47.378573], [8.582648, 47.378525], [8.582698, 47.37848], [8.582752, 47.378438], [8.582812, 47.378398], [8.583074, 47.378239], [8.583184, 47.378178], [8.583301, 47.378124], [8.583425, 47.378077], [8.583643, 47.378003], [8.58369, 47.377986], [8.583734, 47.377966], [8.583776, 47.377943], [8.583814, 47.377917], [8.583849, 47.37789], [8.583881, 47.37786], [8.583908, 47.377829], [8.583931, 47.377796], [8.58395, 47.377762], [8.583966, 47.377725], [8.583987, 47.377668], [8.584001, 47.377609], [8.58401, 47.37755], [8.584054, 47.377046]]], "type": "MultiLineString"}, "id": "4172", "properties": {}, "type": "Feature"}, {"bbox": [8.475747, 47.384495, 8.476578, 47.384793], "geometry": {"coordinates": [[[8.476578, 47.384495], [8.475747, 47.384793]]], "type": "MultiLineString"}, "id": "4173", "properties": {}, "type": "Feature"}, {"bbox": [8.542162, 47.404991, 8.546572, 47.405357], "geometry": {"coordinates": [[[8.542162, 47.404991], [8.542336, 47.405032], [8.542509, 47.405075], [8.542681, 47.405119], [8.542798, 47.405136], [8.543449, 47.405292], [8.543652, 47.405326], [8.543858, 47.405348], [8.544067, 47.405357], [8.544276, 47.405353], [8.544483, 47.405336], [8.544988, 47.405275], [8.545505, 47.405227], [8.545898, 47.405207], [8.546034, 47.405204], [8.546342, 47.40521], [8.546454, 47.40522], [8.546572, 47.405245]]], "type": "MultiLineString"}, "id": "4182", "properties": {}, "type": "Feature"}, {"bbox": [8.567924, 47.411394, 8.571072, 47.412331], "geometry": {"coordinates": [[[8.567924, 47.412331], [8.568033, 47.412272], [8.568139, 47.412211], [8.568244, 47.412149], [8.56856, 47.412011], [8.568884, 47.411882], [8.569217, 47.411763], [8.569373, 47.411719], [8.569532, 47.411679], [8.569693, 47.411644], [8.56977, 47.411604], [8.570261, 47.411467], [8.570311, 47.411455], [8.57083, 47.411394], [8.571011, 47.41141], [8.571064, 47.411429], [8.571072, 47.41145]]], "type": "MultiLineString"}, "id": "4184", "properties": {}, "type": "Feature"}, {"bbox": [8.532179, 47.340658, 8.53293, 47.34296], "geometry": {"coordinates": [[[8.532881, 47.340658], [8.53293, 47.3407], [8.532886, 47.340883], [8.532846, 47.340902], [8.532805, 47.340911], [8.532596, 47.341677], [8.532602, 47.341678], [8.532608, 47.34168], [8.532614, 47.341682], [8.53262, 47.341685], [8.532625, 47.341688], [8.53263, 47.341691], [8.532634, 47.341694], [8.532638, 47.341698], [8.532642, 47.341702], [8.532645, 47.341706], [8.532648, 47.34171], [8.532629, 47.341783], [8.532616, 47.341834], [8.532606, 47.341852], [8.532598, 47.341864], [8.532582, 47.341962], [8.532592, 47.341985], [8.532581, 47.342023], [8.532573, 47.342034], [8.532537, 47.342031], [8.532535, 47.342045], [8.532536, 47.342078], [8.532537, 47.342093], [8.532535, 47.342108], [8.532532, 47.342123], [8.532526, 47.342138], [8.532519, 47.342152], [8.53251, 47.342166], [8.532499, 47.342179], [8.532486, 47.342191], [8.532472, 47.342203], [8.532457, 47.342213], [8.53244, 47.342223], [8.532422, 47.342232], [8.532402, 47.342239], [8.532382, 47.342246], [8.532233, 47.342292], [8.532226, 47.342295], [8.532219, 47.342298], [8.532212, 47.342302], [8.532206, 47.342306], [8.532201, 47.34231], [8.532196, 47.342315], [8.532191, 47.34232], [8.532187, 47.342325], [8.532184, 47.342331], [8.532182, 47.342336], [8.53218, 47.342342], [8.532179, 47.342348], [8.532179, 47.342354], [8.53218, 47.34236], [8.532181, 47.342365], [8.532183, 47.342371], [8.532186, 47.342377], [8.532189, 47.342382], [8.532193, 47.342387], [8.532198, 47.342392], [8.532203, 47.342397], [8.532209, 47.342401], [8.532216, 47.342405], [8.532223, 47.342408], [8.53223, 47.342411], [8.532238, 47.342414], [8.532284, 47.342426], [8.532332, 47.342435], [8.532382, 47.342441], [8.532431, 47.342444], [8.532621, 47.342455], [8.532636, 47.342456], [8.53265, 47.342458], [8.532664, 47.342461], [8.532678, 47.342465], [8.532691, 47.342469], [8.532703, 47.342474], [8.532715, 47.34248], [8.532726, 47.342486], [8.532736, 47.342493], [8.532745, 47.342501], [8.532753, 47.342509], [8.53276, 47.342518], [8.532766, 47.342527], [8.532771, 47.342536], [8.532775, 47.342546], [8.532777, 47.342556], [8.532778, 47.342565], [8.532778, 47.342575], [8.532777, 47.342585], [8.532774, 47.342595], [8.5327, 47.342828], [8.532691, 47.342851], [8.532681, 47.342874], [8.53267, 47.342896], [8.532667, 47.342903], [8.532665, 47.34291], [8.532661, 47.342917], [8.532656, 47.342923], [8.532651, 47.342929], [8.532645, 47.342935], [8.532638, 47.342941], [8.53263, 47.342946], [8.532622, 47.34295], [8.532613, 47.342954], [8.532604, 47.342957], [8.532595, 47.34296], [8.532535, 47.342956], [8.532477, 47.342948], [8.532419, 47.342936]]], "type": "MultiLineString"}, "id": "4186", "properties": {}, "type": "Feature"}, {"bbox": [8.477376, 47.40942, 8.478855, 47.411947], "geometry": {"coordinates": [[[8.477649, 47.411814], [8.477432, 47.411944], [8.477429, 47.411945], [8.477425, 47.411946], [8.477422, 47.411947], [8.477419, 47.411947], [8.477415, 47.411947], [8.477412, 47.411947], [8.477409, 47.411947], [8.477405, 47.411946], [8.477402, 47.411946], [8.477399, 47.411945], [8.477396, 47.411944], [8.477393, 47.411943], [8.47739, 47.411941], [8.477388, 47.41194], [8.477385, 47.411938], [8.477383, 47.411936], [8.477381, 47.411934], [8.47738, 47.411932], [8.477378, 47.41193], [8.477377, 47.411928], [8.477376, 47.411926], [8.477376, 47.411923], [8.477394, 47.411875], [8.477418, 47.411828], [8.477448, 47.411782], [8.477668, 47.411418], [8.477685, 47.411388], [8.477699, 47.411357], [8.477711, 47.411326], [8.477755, 47.411217], [8.477803, 47.411108], [8.477854, 47.411], [8.477871, 47.41097], [8.477884, 47.410938], [8.477892, 47.410906], [8.477897, 47.410874], [8.477896, 47.410842], [8.477891, 47.410809], [8.477837, 47.410631], [8.47781, 47.410567], [8.477783, 47.410502], [8.477757, 47.410438], [8.477702, 47.410322], [8.477645, 47.410206], [8.477586, 47.410091], [8.477584, 47.410086], [8.477583, 47.410081], [8.477583, 47.410075], [8.477583, 47.41007], [8.477585, 47.410065], [8.477587, 47.410059], [8.477589, 47.410054], [8.477592, 47.410049], [8.477596, 47.410045], [8.4776, 47.41004], [8.477605, 47.410036], [8.47761, 47.410032], [8.477616, 47.410028], [8.477622, 47.410025], [8.477777, 47.409956], [8.477929, 47.409885], [8.478078, 47.40981], [8.47825, 47.409725], [8.47842, 47.409638], [8.478588, 47.40955], [8.47868, 47.409509], [8.478769, 47.409466], [8.478855, 47.40942]]], "type": "MultiLineString"}, "id": "4187", "properties": {}, "type": "Feature"}, {"bbox": [8.591446, 47.357778, 8.594282, 47.358051], "geometry": {"coordinates": [[[8.591446, 47.35804], [8.591469, 47.358045], [8.591492, 47.358048], [8.591516, 47.35805], [8.591539, 47.358051], [8.591563, 47.35805], [8.591587, 47.358047], [8.591731, 47.358022], [8.591872, 47.357991], [8.59201, 47.357954], [8.592435, 47.357822], [8.592474, 47.357809], [8.592514, 47.357798], [8.592555, 47.35779], [8.592598, 47.357783], [8.59264, 47.357779], [8.592684, 47.357778], [8.592727, 47.357778], [8.593121, 47.357803], [8.593517, 47.35782], [8.593913, 47.357828], [8.593967, 47.357825], [8.594021, 47.357819], [8.594074, 47.357812], [8.594221, 47.357781], [8.594231, 47.35778], [8.594241, 47.357779], [8.594252, 47.357779], [8.594262, 47.357779], [8.594272, 47.35778], [8.594282, 47.357782]]], "type": "MultiLineString"}, "id": "4188", "properties": {}, "type": "Feature"}, {"bbox": [8.489882, 47.40567, 8.49054, 47.407097], "geometry": {"coordinates": [[[8.490539, 47.40567], [8.49054, 47.405691], [8.490538, 47.405712], [8.490533, 47.405733], [8.490526, 47.405753], [8.490516, 47.405773], [8.490504, 47.405792], [8.490489, 47.405811], [8.490473, 47.405828], [8.490454, 47.405845], [8.490433, 47.405861], [8.49041, 47.405875], [8.489992, 47.406107], [8.489975, 47.406114], [8.48996, 47.406123], [8.489945, 47.406132], [8.489932, 47.406142], [8.48992, 47.406153], [8.48991, 47.406164], [8.489901, 47.406177], [8.489894, 47.406189], [8.489888, 47.406202], [8.489885, 47.406215], [8.489882, 47.406229], [8.489882, 47.406242], [8.489883, 47.406256], [8.489886, 47.406269], [8.489891, 47.406282], [8.489949, 47.406418], [8.489957, 47.406431], [8.489966, 47.406445], [8.489976, 47.406458], [8.489986, 47.40647], [8.489997, 47.406482], [8.490008, 47.406494], [8.490236, 47.406678], [8.490248, 47.406689], [8.490259, 47.4067], [8.490268, 47.406712], [8.490276, 47.406725], [8.490282, 47.406738], [8.490286, 47.406751], [8.490289, 47.406764], [8.490289, 47.406778], [8.490289, 47.406791], [8.490286, 47.406805], [8.490281, 47.406818], [8.490211, 47.407002], [8.49021, 47.407005], [8.490209, 47.407009], [8.490209, 47.407012], [8.49021, 47.407016], [8.49021, 47.407019], [8.490212, 47.407022], [8.490224, 47.407038], [8.490274, 47.407071], [8.490336, 47.407097]]], "type": "MultiLineString"}, "id": "4193", "properties": {}, "type": "Feature"}, {"bbox": [8.516013, 47.399163, 8.517451, 47.399496], "geometry": {"coordinates": [[[8.517451, 47.399496], [8.517321, 47.399478], [8.516936, 47.399427], [8.516837, 47.399412], [8.516741, 47.399391], [8.516648, 47.399365], [8.516013, 47.399163]]], "type": "MultiLineString"}, "id": "4194", "properties": {}, "type": "Feature"}, {"bbox": [8.572105, 47.380994, 8.573731, 47.383623], "geometry": {"coordinates": [[[8.572105, 47.380994], [8.572222, 47.381035], [8.572449, 47.381132], [8.572433, 47.381175], [8.572796, 47.381332], [8.572827, 47.381326], [8.573313, 47.381541], [8.573306, 47.381622], [8.573731, 47.382524], [8.573679, 47.382597], [8.573246, 47.383015], [8.573686, 47.383225], [8.573464, 47.383442], [8.573523, 47.383471], [8.573373, 47.383623]]], "type": "MultiLineString"}, "id": "4196", "properties": {}, "type": "Feature"}, {"bbox": [8.48959, 47.394288, 8.489887, 47.395018], "geometry": {"coordinates": [[[8.48959, 47.394288], [8.489615, 47.394413], [8.489649, 47.394538], [8.489693, 47.394661], [8.48975, 47.394759], [8.489807, 47.394857], [8.489865, 47.394955], [8.489873, 47.394975], [8.489881, 47.394996], [8.489887, 47.395018]]], "type": "MultiLineString"}, "id": "4197", "properties": {}, "type": "Feature"}, {"bbox": [8.489924, 47.411165, 8.490524, 47.411872], "geometry": {"coordinates": [[[8.489924, 47.411165], [8.489963, 47.411172], [8.490001, 47.411181], [8.490038, 47.411193], [8.490073, 47.411206], [8.490106, 47.411221], [8.490257, 47.411298], [8.490286, 47.411314], [8.490312, 47.411331], [8.490336, 47.41135], [8.490358, 47.41137], [8.490377, 47.411391], [8.490394, 47.411414], [8.490407, 47.411437], [8.490418, 47.411461], [8.490426, 47.411485], [8.490524, 47.411872]]], "type": "MultiLineString"}, "id": "4200", "properties": {}, "type": "Feature"}, {"bbox": [8.573345, 47.389279, 8.583005, 47.39901], "geometry": {"coordinates": [[[8.573345, 47.39901], [8.573361, 47.398955], [8.57358, 47.398349], [8.573598, 47.39829], [8.573612, 47.398236], [8.573623, 47.398181], [8.57363, 47.398126], [8.573636, 47.398099], [8.573645, 47.398073], [8.573658, 47.398048], [8.573658, 47.398048], [8.573883, 47.397675], [8.573984, 47.397483], [8.574058, 47.397286], [8.574104, 47.397084], [8.574143, 47.396832], [8.574152, 47.396792], [8.574166, 47.396752], [8.574186, 47.396713], [8.57421, 47.396676], [8.574238, 47.396641], [8.574272, 47.396607], [8.574778, 47.396139], [8.574837, 47.396083], [8.574895, 47.396027], [8.574951, 47.395969], [8.575024, 47.39589], [8.575095, 47.39581], [8.575163, 47.395729], [8.575503, 47.395307], [8.575786, 47.39496], [8.576231, 47.394413], [8.576338, 47.394313], [8.576921, 47.393803], [8.576981, 47.393751], [8.576981, 47.39375], [8.577346, 47.393425], [8.577716, 47.393103], [8.578091, 47.392783], [8.578091, 47.392783], [8.578092, 47.392783], [8.57854, 47.39238], [8.578993, 47.391981], [8.579451, 47.391583], [8.579451, 47.391583], [8.57965, 47.391422], [8.579675, 47.391403], [8.579703, 47.391386], [8.579733, 47.39137], [8.579765, 47.391356], [8.579799, 47.391344], [8.580121, 47.391241], [8.580172, 47.391223], [8.580222, 47.391202], [8.580269, 47.391178], [8.580312, 47.391152], [8.580353, 47.391123], [8.580389, 47.391092], [8.580422, 47.39106], [8.580451, 47.391025], [8.580451, 47.391025], [8.580518, 47.390937], [8.580623, 47.390772], [8.580638, 47.39075], [8.580654, 47.390729], [8.580671, 47.390708], [8.580705, 47.390669], [8.580723, 47.390651], [8.580759, 47.390619], [8.580799, 47.390587], [8.580841, 47.390558], [8.581262, 47.390298], [8.5813, 47.390276], [8.581338, 47.390253], [8.581376, 47.390231], [8.581382, 47.390228], [8.581383, 47.390228], [8.581419, 47.390208], [8.581456, 47.390188], [8.581493, 47.390168], [8.581659, 47.390088], [8.581833, 47.390016], [8.582015, 47.389953], [8.582511, 47.389809], [8.582576, 47.389789], [8.582638, 47.389766], [8.582697, 47.389739], [8.582752, 47.389708], [8.582803, 47.389675], [8.582849, 47.389639], [8.582891, 47.3896], [8.582928, 47.389558], [8.582959, 47.389515], [8.582961, 47.389512], [8.582961, 47.389512], [8.582969, 47.389499], [8.582977, 47.389485], [8.582984, 47.389471], [8.582995, 47.389444], [8.583001, 47.389417], [8.583005, 47.389389], [8.583005, 47.389361], [8.583001, 47.389333], [8.582994, 47.389306], [8.582983, 47.389279]]], "type": "MultiLineString"}, "id": "4201", "properties": {}, "type": "Feature"}, {"bbox": [8.547859, 47.406829, 8.547996, 47.407073], "geometry": {"coordinates": [[[8.547859, 47.406829], [8.547996, 47.407073]]], "type": "MultiLineString"}, "id": "4202", "properties": {}, "type": "Feature"}, {"bbox": [8.547907, 47.411015, 8.549203, 47.411253], "geometry": {"coordinates": [[[8.549203, 47.411156], [8.548865, 47.411253], [8.548707, 47.411015], [8.548116, 47.411176], [8.547907, 47.411224]]], "type": "MultiLineString"}, "id": "4205", "properties": {}, "type": "Feature"}, {"bbox": [8.473541, 47.415191, 8.476517, 47.416865], "geometry": {"coordinates": [[[8.474252, 47.415191], [8.474184, 47.415262], [8.473916, 47.415566], [8.473555, 47.416042], [8.473547, 47.416064], [8.473543, 47.416087], [8.473541, 47.416109], [8.473542, 47.416132], [8.473546, 47.416154], [8.473553, 47.416177], [8.473562, 47.416198], [8.473574, 47.416219], [8.473589, 47.41624], [8.473607, 47.416259], [8.473626, 47.416277], [8.473648, 47.416294], [8.473672, 47.41631], [8.473698, 47.416324], [8.473726, 47.416337], [8.473755, 47.416348], [8.473786, 47.416357], [8.473817, 47.416365], [8.47385, 47.41637], [8.473883, 47.416374], [8.473916, 47.416376], [8.473949, 47.416375], [8.473982, 47.416373], [8.474015, 47.416369], [8.474047, 47.416363], [8.474079, 47.416355], [8.474109, 47.416346], [8.474605, 47.416141], [8.474757, 47.416112], [8.474867, 47.416104], [8.474979, 47.416104], [8.475089, 47.416112], [8.475167, 47.416127], [8.475242, 47.416147], [8.475315, 47.416171], [8.475384, 47.416198], [8.475451, 47.41623], [8.4758, 47.416446], [8.476156, 47.416658], [8.476517, 47.416865]]], "type": "MultiLineString"}, "id": "4208", "properties": {}, "type": "Feature"}, {"bbox": [8.577824, 47.390418, 8.580705, 47.39099], "geometry": {"coordinates": [[[8.577824, 47.390418], [8.577931, 47.390469], [8.578034, 47.390514], [8.578142, 47.390554], [8.578255, 47.390589], [8.578499, 47.390656], [8.578902, 47.390776], [8.579526, 47.390965], [8.579564, 47.390975], [8.579603, 47.390983], [8.579642, 47.390988], [8.579683, 47.39099], [8.579723, 47.39099], [8.579763, 47.390988], [8.579801, 47.390983], [8.579839, 47.390977], [8.579875, 47.390968], [8.57991, 47.390957], [8.580116, 47.390885], [8.580705, 47.390669]]], "type": "MultiLineString"}, "id": "4213", "properties": {}, "type": "Feature"}, {"bbox": [8.559416, 47.376258, 8.559913, 47.376583], "geometry": {"coordinates": [[[8.559894, 47.376258], [8.559909, 47.37641], [8.559912, 47.376422], [8.559913, 47.376435], [8.559913, 47.376447], [8.559911, 47.37646], [8.559908, 47.376472], [8.559903, 47.376484], [8.559896, 47.376496], [8.559888, 47.376507], [8.559879, 47.376518], [8.559868, 47.376528], [8.559856, 47.376537], [8.559843, 47.376546], [8.559829, 47.376554], [8.559814, 47.376561], [8.559798, 47.376567], [8.559781, 47.376573], [8.559764, 47.376577], [8.559746, 47.37658], [8.559728, 47.376582], [8.559709, 47.376583], [8.559691, 47.376583], [8.559673, 47.376582], [8.559654, 47.37658], [8.559637, 47.376577], [8.559619, 47.376572], [8.559603, 47.376567], [8.559416, 47.3765]]], "type": "MultiLineString"}, "id": "4220", "properties": {}, "type": "Feature"}, {"bbox": [8.520631, 47.335929, 8.524807, 47.337577], "geometry": {"coordinates": [[[8.524807, 47.337577], [8.523909, 47.337269], [8.523641, 47.337183], [8.523317, 47.337075], [8.522641, 47.336855], [8.522508, 47.336808], [8.522302, 47.336718], [8.521837, 47.336507], [8.52181, 47.336494], [8.521785, 47.336479], [8.521761, 47.336463], [8.521738, 47.336445], [8.521717, 47.336426], [8.521699, 47.336406], [8.521702, 47.336483], [8.521687, 47.336487], [8.521674, 47.336487], [8.52166, 47.336487], [8.521647, 47.336485], [8.521634, 47.336483], [8.521622, 47.336481], [8.521609, 47.336477], [8.521599, 47.336473], [8.521588, 47.336468], [8.521579, 47.336463], [8.52157, 47.336458], [8.521562, 47.336452], [8.521554, 47.336445], [8.521467, 47.336355], [8.521467, 47.336355], [8.521453, 47.33634], [8.52144, 47.336324], [8.52143, 47.336308], [8.521421, 47.336292], [8.521415, 47.336274], [8.52141, 47.336257], [8.521405, 47.336126], [8.521382, 47.336095], [8.521332, 47.336104], [8.521284, 47.336146], [8.521242, 47.336191], [8.521205, 47.336239], [8.521175, 47.336288], [8.521174, 47.336289], [8.521174, 47.33629], [8.521174, 47.33629], [8.521174, 47.336291], [8.521173, 47.336291], [8.521173, 47.336292], [8.521173, 47.336292], [8.521172, 47.336293], [8.521172, 47.336293], [8.521171, 47.336294], [8.521171, 47.336294], [8.52117, 47.336294], [8.521169, 47.336295], [8.521169, 47.336295], [8.521168, 47.336295], [8.521167, 47.336295], [8.521166, 47.336295], [8.521166, 47.336296], [8.521165, 47.336296], [8.521164, 47.336296], [8.521163, 47.336295], [8.521162, 47.336295], [8.521162, 47.336295], [8.521161, 47.336295], [8.52116, 47.336295], [8.521159, 47.336294], [8.521159, 47.336294], [8.521158, 47.336294], [8.521158, 47.336293], [8.521157, 47.336293], [8.521157, 47.336292], [8.521156, 47.336292], [8.521156, 47.336292], [8.521156, 47.336291], [8.521156, 47.33629], [8.521155, 47.33629], [8.520998, 47.335943], [8.520997, 47.335941], [8.520997, 47.33594], [8.520996, 47.335939], [8.520995, 47.335938], [8.520995, 47.335936], [8.520993, 47.335935], [8.520992, 47.335934], [8.520991, 47.335933], [8.520989, 47.335932], [8.520988, 47.335932], [8.520986, 47.335931], [8.520984, 47.33593], [8.520983, 47.33593], [8.520981, 47.335929], [8.520979, 47.335929], [8.520977, 47.335929], [8.520975, 47.335929], [8.520973, 47.335929], [8.520971, 47.335929], [8.520969, 47.33593], [8.520967, 47.33593], [8.520965, 47.335931], [8.520964, 47.335931], [8.520962, 47.335932], [8.520961, 47.335933], [8.520959, 47.335934], [8.520958, 47.335935], [8.520957, 47.335936], [8.520956, 47.335937], [8.520955, 47.335938], [8.520954, 47.335939], [8.520954, 47.335941], [8.520953, 47.335942], [8.520953, 47.335943], [8.520953, 47.335945], [8.520953, 47.335946], [8.520953, 47.335947], [8.520954, 47.335949], [8.520941, 47.33598], [8.520925, 47.336011], [8.520904, 47.336041], [8.52088, 47.336069], [8.520852, 47.336096], [8.520821, 47.336121], [8.520787, 47.336144], [8.520749, 47.336165], [8.520631, 47.336176]]], "type": "MultiLineString"}, "id": "4221", "properties": {}, "type": "Feature"}, {"bbox": [8.57546, 47.385282, 8.577958, 47.38647], "geometry": {"coordinates": [[[8.57546, 47.386406], [8.57555, 47.386426], [8.575576, 47.386437], [8.575604, 47.386447], [8.575634, 47.386455], [8.575664, 47.386462], [8.575695, 47.386466], [8.575726, 47.386469], [8.575757, 47.38647], [8.575789, 47.386469], [8.57582, 47.386467], [8.576084, 47.386443], [8.576111, 47.386441], [8.576138, 47.386438], [8.576164, 47.386432], [8.576189, 47.386426], [8.576213, 47.386417], [8.576236, 47.386408], [8.576258, 47.386397], [8.576279, 47.386385], [8.576509, 47.386252], [8.576737, 47.386117], [8.576964, 47.385981], [8.577039, 47.385932], [8.577112, 47.385882], [8.577181, 47.385829], [8.577444, 47.385649], [8.577703, 47.385467], [8.577958, 47.385282]]], "type": "MultiLineString"}, "id": "4222", "properties": {}, "type": "Feature"}, {"bbox": [8.529776, 47.359274, 8.530766, 47.360833], "geometry": {"coordinates": [[[8.529776, 47.359274], [8.52978, 47.359313], [8.529787, 47.359371], [8.529788, 47.359374], [8.52979, 47.359377], [8.529792, 47.359379], [8.529795, 47.359382], [8.529797, 47.359384], [8.5298, 47.359386], [8.529804, 47.359388], [8.529807, 47.35939], [8.529811, 47.359392], [8.529815, 47.359393], [8.52982, 47.359394], [8.529824, 47.359395], [8.529828, 47.359396], [8.529833, 47.359396], [8.529837, 47.359396], [8.529842, 47.359396], [8.529846, 47.359396], [8.529851, 47.359395], [8.529855, 47.359394], [8.529859, 47.359393], [8.529863, 47.359392], [8.529867, 47.35939], [8.52987, 47.359388], [8.529874, 47.359386], [8.529877, 47.359384], [8.529879, 47.359381], [8.52989, 47.359376], [8.529901, 47.359371], [8.529913, 47.359367], [8.529925, 47.359364], [8.529937, 47.359361], [8.52995, 47.35936], [8.529963, 47.359358], [8.529976, 47.359358], [8.529989, 47.359358], [8.530002, 47.359359], [8.530028, 47.359361], [8.530053, 47.359365], [8.530078, 47.35937], [8.530102, 47.359377], [8.530125, 47.359386], [8.530299, 47.359397], [8.530323, 47.3594], [8.530346, 47.359404], [8.530369, 47.359409], [8.530391, 47.359415], [8.530499, 47.359448], [8.530517, 47.359453], [8.530527, 47.359457], [8.530536, 47.359462], [8.530545, 47.359467], [8.530552, 47.359473], [8.530559, 47.359479], [8.530566, 47.359486], [8.530571, 47.359493], [8.530575, 47.3595], [8.530579, 47.359507], [8.530581, 47.359515], [8.530583, 47.359523], [8.530583, 47.35953], [8.530583, 47.359538], [8.530581, 47.359546], [8.530579, 47.359554], [8.530426, 47.359954], [8.530424, 47.359962], [8.530423, 47.359969], [8.530422, 47.359977], [8.530423, 47.359985], [8.530425, 47.359993], [8.530427, 47.36], [8.530431, 47.360008], [8.530435, 47.360015], [8.530441, 47.360022], [8.530447, 47.360029], [8.530454, 47.360035], [8.530462, 47.36004], [8.53047, 47.360046], [8.53048, 47.36005], [8.530489, 47.360055], [8.5305, 47.360058], [8.53051, 47.360061], [8.530521, 47.360064], [8.530685, 47.360082], [8.530693, 47.360084], [8.530702, 47.360085], [8.530709, 47.360088], [8.530717, 47.36009], [8.530724, 47.360093], [8.530731, 47.360097], [8.530737, 47.360101], [8.530743, 47.360105], [8.530748, 47.36011], [8.530753, 47.360115], [8.530757, 47.36012], [8.53076, 47.360125], [8.530763, 47.360131], [8.530764, 47.360136], [8.530765, 47.360142], [8.530766, 47.360148], [8.530541, 47.360814], [8.530358, 47.360833]]], "type": "MultiLineString"}, "id": "4223", "properties": {}, "type": "Feature"}, {"bbox": [8.54005, 47.427231, 8.541742, 47.427334], "geometry": {"coordinates": [[[8.54005, 47.427231], [8.540329, 47.427246], [8.540428, 47.427256], [8.540528, 47.427259], [8.540628, 47.427257], [8.540727, 47.427247], [8.540812, 47.427241], [8.540898, 47.427238], [8.540984, 47.42724], [8.541069, 47.427247], [8.541603, 47.427333], [8.541649, 47.427334], [8.541696, 47.427334], [8.541742, 47.427333]]], "type": "MultiLineString"}, "id": "4226", "properties": {}, "type": "Feature"}, {"bbox": [8.478855, 47.40942, 8.479637, 47.410006], "geometry": {"coordinates": [[[8.479637, 47.409989], [8.479605, 47.409995], [8.479572, 47.41], [8.479539, 47.410004], [8.479533, 47.410005], [8.479526, 47.410006], [8.479519, 47.410006], [8.479513, 47.410006], [8.479506, 47.410005], [8.479499, 47.410004], [8.479493, 47.410003], [8.479487, 47.410001], [8.479481, 47.409999], [8.479475, 47.409996], [8.47947, 47.409993], [8.479465, 47.40999], [8.479461, 47.409987], [8.479457, 47.409983], [8.479453, 47.409979], [8.47945, 47.409975], [8.479393, 47.409861], [8.479321, 47.409751], [8.479232, 47.409646], [8.479115, 47.409564], [8.478989, 47.409489], [8.478855, 47.40942]]], "type": "MultiLineString"}, "id": "4227", "properties": {}, "type": "Feature"}, {"bbox": [8.587418, 47.399868, 8.588326, 47.401152], "geometry": {"coordinates": [[[8.587513, 47.399868], [8.587573, 47.39996], [8.587481, 47.399988], [8.587418, 47.400102], [8.587618, 47.40016], [8.587739, 47.400353], [8.587754, 47.40036], [8.58796, 47.400648], [8.588018, 47.400659], [8.588326, 47.401152]]], "type": "MultiLineString"}, "id": "4228", "properties": {}, "type": "Feature"}, {"bbox": [8.562229, 47.349912, 8.562888, 47.350716], "geometry": {"coordinates": [[[8.562229, 47.349912], [8.562256, 47.349933], [8.562284, 47.349953], [8.562313, 47.349972], [8.562812, 47.35014], [8.562824, 47.350147], [8.562836, 47.350155], [8.562847, 47.350163], [8.562856, 47.350172], [8.562865, 47.350181], [8.562872, 47.350191], [8.562878, 47.350201], [8.562883, 47.350211], [8.562886, 47.350222], [8.562888, 47.350233], [8.562888, 47.350244], [8.562887, 47.350255], [8.562885, 47.350266], [8.562881, 47.350276], [8.562784, 47.350425], [8.562681, 47.350571], [8.562572, 47.350716]]], "type": "MultiLineString"}, "id": "4229", "properties": {}, "type": "Feature"}, {"bbox": [8.53905, 47.428932, 8.541022, 47.429957], "geometry": {"coordinates": [[[8.53905, 47.429957], [8.539054, 47.429918], [8.53906, 47.429879], [8.539066, 47.42984], [8.539072, 47.429831], [8.539079, 47.429823], [8.539088, 47.429815], [8.539097, 47.429808], [8.539107, 47.429801], [8.539118, 47.429795], [8.53913, 47.429789], [8.539142, 47.429784], [8.539155, 47.42978], [8.539169, 47.429776], [8.539183, 47.429774], [8.539197, 47.429772], [8.539211, 47.429771], [8.539225, 47.429771], [8.539334, 47.429788], [8.53936, 47.42979], [8.539386, 47.429791], [8.539412, 47.429791], [8.539438, 47.429789], [8.539463, 47.429785], [8.539488, 47.42978], [8.539512, 47.429773], [8.539535, 47.429765], [8.539557, 47.429755], [8.540045, 47.429481], [8.540533, 47.429206], [8.541022, 47.428932]]], "type": "MultiLineString"}, "id": "4231", "properties": {}, "type": "Feature"}, {"bbox": [8.57406, 47.403246, 8.575013, 47.403961], "geometry": {"coordinates": [[[8.574944, 47.403246], [8.575013, 47.403376], [8.574764, 47.403457], [8.574899, 47.40354], [8.574828, 47.403715], [8.574791, 47.40373], [8.574495, 47.403708], [8.574172, 47.403784], [8.57406, 47.403801], [8.574095, 47.403836], [8.574206, 47.403884], [8.574257, 47.403888], [8.574236, 47.403951], [8.574182, 47.403961]]], "type": "MultiLineString"}, "id": "4232", "properties": {}, "type": "Feature"}, {"bbox": [8.547553, 47.428243, 8.55061, 47.430553], "geometry": {"coordinates": [[[8.550457, 47.428243], [8.550466, 47.428258], [8.550474, 47.428273], [8.55048, 47.428289], [8.550557, 47.428471], [8.550558, 47.428476], [8.550559, 47.428482], [8.550559, 47.428487], [8.550558, 47.428492], [8.550556, 47.428497], [8.550554, 47.428502], [8.550551, 47.428507], [8.550547, 47.428512], [8.550543, 47.428516], [8.550258, 47.428768], [8.55024, 47.428809], [8.550264, 47.428848], [8.550574, 47.429177], [8.550582, 47.429184], [8.550589, 47.429191], [8.550595, 47.429198], [8.5506, 47.429206], [8.550604, 47.429214], [8.550608, 47.429222], [8.55061, 47.42923], [8.55061, 47.429238], [8.55061, 47.429247], [8.550609, 47.429255], [8.550607, 47.429263], [8.550603, 47.429272], [8.550599, 47.429279], [8.550593, 47.429287], [8.550587, 47.429294], [8.55058, 47.429301], [8.550375, 47.429429], [8.55015, 47.42948], [8.549853, 47.42961], [8.549829, 47.429618], [8.549803, 47.429625], [8.549778, 47.42963], [8.549751, 47.429634], [8.549724, 47.429636], [8.549697, 47.429636], [8.549636, 47.429632], [8.549575, 47.429629], [8.549514, 47.429627], [8.5495, 47.429627], [8.549485, 47.429628], [8.549471, 47.42963], [8.549457, 47.429633], [8.549444, 47.429637], [8.549431, 47.429642], [8.549419, 47.429647], [8.549008, 47.42981], [8.548999, 47.429814], [8.54899, 47.429818], [8.548982, 47.429824], [8.548974, 47.429829], [8.548968, 47.429835], [8.548962, 47.429841], [8.548956, 47.429848], [8.548952, 47.429855], [8.548863, 47.429972], [8.548856, 47.429982], [8.548849, 47.429991], [8.54884, 47.43], [8.548831, 47.430008], [8.54882, 47.430016], [8.548808, 47.430023], [8.548796, 47.43003], [8.548783, 47.430036], [8.547937, 47.430442], [8.547813, 47.430486], [8.547685, 47.430523], [8.547553, 47.430553]]], "type": "MultiLineString"}, "id": "4233", "properties": {}, "type": "Feature"}, {"bbox": [8.540362, 47.418774, 8.541441, 47.41962], "geometry": {"coordinates": [[[8.540362, 47.418774], [8.540412, 47.418843], [8.540463, 47.418912], [8.540513, 47.41898], [8.540546, 47.419037], [8.54058, 47.419094], [8.540617, 47.419149], [8.540621, 47.41916], [8.540626, 47.41917], [8.540633, 47.41918], [8.540641, 47.419189], [8.54065, 47.419198], [8.54066, 47.419206], [8.540671, 47.419213], [8.540683, 47.419221], [8.540696, 47.419227], [8.540709, 47.419232], [8.540782, 47.419269], [8.540852, 47.419307], [8.54092, 47.419348], [8.540953, 47.419369], [8.540985, 47.419392], [8.541016, 47.419416], [8.541064, 47.419452], [8.541115, 47.419487], [8.541167, 47.41952], [8.541207, 47.419544], [8.541249, 47.419566], [8.541292, 47.419588], [8.541311, 47.419596], [8.541331, 47.419603], [8.541352, 47.419609], [8.541374, 47.419613], [8.541396, 47.419617], [8.541418, 47.419619], [8.541441, 47.41962]]], "type": "MultiLineString"}, "id": "4234", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.374745, 8.489052, 47.375749], "geometry": {"coordinates": [[[8.489052, 47.374745], [8.488952, 47.374856], [8.488938, 47.374869], [8.488923, 47.37488], [8.488907, 47.374891], [8.488888, 47.374901], [8.488869, 47.374909], [8.488504, 47.375056], [8.488481, 47.375066], [8.48846, 47.375077], [8.48844, 47.375089], [8.488421, 47.375103], [8.488405, 47.375117], [8.48839, 47.375133], [8.488378, 47.375149], [8.488367, 47.375166], [8.488359, 47.375184], [8.488353, 47.375202], [8.48835, 47.37522], [8.488331, 47.375339], [8.488311, 47.375458], [8.48829, 47.375578], [8.488268, 47.375615], [8.488241, 47.375652], [8.48821, 47.375686], [8.488174, 47.375719], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "4235", "properties": {}, "type": "Feature"}, {"bbox": [8.531614, 47.398586, 8.532193, 47.399022], "geometry": {"coordinates": [[[8.531614, 47.399022], [8.531654, 47.398992], [8.531691, 47.398959], [8.531723, 47.398924], [8.53175, 47.398888], [8.531776, 47.398831], [8.531796, 47.398773], [8.531809, 47.398714], [8.531817, 47.3987], [8.531827, 47.398685], [8.531838, 47.398672], [8.531851, 47.398659], [8.531865, 47.398646], [8.531894, 47.398628], [8.531925, 47.398611], [8.531956, 47.398596], [8.531972, 47.398592], [8.531987, 47.398589], [8.532003, 47.398587], [8.53202, 47.398586], [8.532036, 47.398586], [8.532052, 47.398586], [8.532068, 47.398588], [8.53211, 47.398597], [8.532151, 47.398605], [8.532193, 47.398612]]], "type": "MultiLineString"}, "id": "4236", "properties": {}, "type": "Feature"}, {"bbox": [8.512925, 47.425059, 8.514711, 47.426204], "geometry": {"coordinates": [[[8.512925, 47.425059], [8.51295, 47.425086], [8.512978, 47.425113], [8.513006, 47.425139], [8.513266, 47.425355], [8.51329, 47.425373], [8.513315, 47.425391], [8.513343, 47.425407], [8.513373, 47.425421], [8.513479, 47.425476], [8.513585, 47.425531], [8.51369, 47.425587], [8.513838, 47.425673], [8.513984, 47.425762], [8.514127, 47.425851], [8.514711, 47.426204]]], "type": "MultiLineString"}, "id": "4237", "properties": {}, "type": "Feature"}, {"bbox": [8.517213, 47.425237, 8.525215, 47.42589], "geometry": {"coordinates": [[[8.525215, 47.425762], [8.524384, 47.425783], [8.523554, 47.425806], [8.522724, 47.42583], [8.52207, 47.42585], [8.521416, 47.425869], [8.520762, 47.425887], [8.520547, 47.42589], [8.520333, 47.42588], [8.520121, 47.425857], [8.519913, 47.425822], [8.518557, 47.425525], [8.517669, 47.425336], [8.517573, 47.425322], [8.517476, 47.425313], [8.517378, 47.42531], [8.51728, 47.425313], [8.517273, 47.425312], [8.517267, 47.425311], [8.51726, 47.42531], [8.517254, 47.425308], [8.517248, 47.425306], [8.517242, 47.425303], [8.517237, 47.425301], [8.517232, 47.425297], [8.517227, 47.425294], [8.517223, 47.425287], [8.517219, 47.425281], [8.517216, 47.425274], [8.517214, 47.425266], [8.517213, 47.425259], [8.517213, 47.425252], [8.517214, 47.425245], [8.517216, 47.425237]]], "type": "MultiLineString"}, "id": "4238", "properties": {}, "type": "Feature"}, {"bbox": [8.503228, 47.36306, 8.503781, 47.363304], "geometry": {"coordinates": [[[8.503228, 47.36306], [8.503243, 47.363065], [8.503708, 47.363271], [8.503781, 47.363304]]], "type": "MultiLineString"}, "id": "4239", "properties": {}, "type": "Feature"}, {"bbox": [8.478947, 47.414211, 8.479346, 47.414951], "geometry": {"coordinates": [[[8.479346, 47.414211], [8.479326, 47.414267], [8.479312, 47.414329], [8.479207, 47.414477], [8.479096, 47.414556], [8.479021, 47.414632], [8.478954, 47.41492], [8.478947, 47.414951]]], "type": "MultiLineString"}, "id": "4240", "properties": {}, "type": "Feature"}, {"bbox": [8.522055, 47.361877, 8.522512, 47.361935], "geometry": {"coordinates": [[[8.522512, 47.36192], [8.522061, 47.361877], [8.522055, 47.361935]]], "type": "MultiLineString"}, "id": "4243", "properties": {}, "type": "Feature"}, {"bbox": [8.511394, 47.391646, 8.51166, 47.392099], "geometry": {"coordinates": [[[8.511394, 47.391646], [8.511402, 47.391651], [8.511409, 47.391656], [8.511415, 47.391662], [8.511421, 47.391668], [8.511425, 47.391674], [8.511429, 47.391681], [8.51148, 47.391772], [8.511604, 47.392], [8.51166, 47.392099]]], "type": "MultiLineString"}, "id": "4244", "properties": {}, "type": "Feature"}, {"bbox": [8.503484, 47.400509, 8.511941, 47.40549], "geometry": {"coordinates": [[[8.503484, 47.40549], [8.50355, 47.405432], [8.503622, 47.405376], [8.503697, 47.405324], [8.503967, 47.405145], [8.50438, 47.404859], [8.504498, 47.404777], [8.504702, 47.404583], [8.504832, 47.404438], [8.504896, 47.404376], [8.505079, 47.404228], [8.505232, 47.404079], [8.505645, 47.403878], [8.505658, 47.403873], [8.505672, 47.403868], [8.505687, 47.403865], [8.505702, 47.403862], [8.505718, 47.40386], [8.505734, 47.403858], [8.505749, 47.403858], [8.505765, 47.403859], [8.505886, 47.403868], [8.506007, 47.403879], [8.506127, 47.403891], [8.506323, 47.403941], [8.506336, 47.403945], [8.506349, 47.403949], [8.506363, 47.403952], [8.506378, 47.403954], [8.506392, 47.403955], [8.506407, 47.403955], [8.506422, 47.403955], [8.506436, 47.403954], [8.506451, 47.403952], [8.506465, 47.403949], [8.506478, 47.403945], [8.506491, 47.403941], [8.506509, 47.403934], [8.506526, 47.403927], [8.506541, 47.403918], [8.506556, 47.403909], [8.506569, 47.403899], [8.506581, 47.403888], [8.506592, 47.403876], [8.506601, 47.403864], [8.506817, 47.403579], [8.506852, 47.403541], [8.506887, 47.403504], [8.507067, 47.403321], [8.507119, 47.403271], [8.507176, 47.403223], [8.507238, 47.403178], [8.507519, 47.402987], [8.507836, 47.402762], [8.50814, 47.402513], [8.508277, 47.402408], [8.508388, 47.402332], [8.508601, 47.402204], [8.508811, 47.402122], [8.509002, 47.402064], [8.509142, 47.402024], [8.509229, 47.401989], [8.509426, 47.401883], [8.509712, 47.401689], [8.509851, 47.401602], [8.509993, 47.401523], [8.510141, 47.401446], [8.510354, 47.401348], [8.510678, 47.40119], [8.510998, 47.401023], [8.511272, 47.400877], [8.511556, 47.40072], [8.511778, 47.400595], [8.511941, 47.400509]]], "type": "MultiLineString"}, "id": "4251", "properties": {}, "type": "Feature"}, {"bbox": [8.516956, 47.342956, 8.517347, 47.345199], "geometry": {"coordinates": [[[8.516956, 47.345199], [8.51701, 47.345133], [8.517036, 47.345086], [8.51705, 47.345057], [8.51706, 47.345026], [8.517065, 47.344995], [8.517067, 47.344964], [8.517065, 47.344932], [8.517023, 47.34463], [8.517019, 47.344586], [8.51702, 47.344541], [8.517025, 47.344497], [8.517047, 47.344369], [8.517057, 47.344325], [8.517087, 47.344195], [8.517094, 47.344175], [8.517153, 47.344003], [8.517155, 47.343995], [8.517157, 47.343988], [8.51716, 47.34398], [8.517164, 47.343967], [8.517168, 47.343953], [8.517171, 47.343939], [8.517206, 47.343797], [8.517216, 47.343758], [8.517223, 47.343734], [8.517232, 47.34371], [8.517242, 47.343686], [8.517314, 47.34354], [8.517329, 47.343506], [8.517339, 47.343471], [8.517345, 47.343436], [8.517347, 47.343401], [8.517345, 47.343366], [8.517338, 47.343331], [8.517327, 47.343297], [8.517327, 47.343297], [8.517207, 47.342978], [8.517174, 47.342956]]], "type": "MultiLineString"}, "id": "4252", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.390475, 8.523011, 47.391122], "geometry": {"coordinates": [[[8.523011, 47.390475], [8.522987, 47.390522], [8.522969, 47.39057], [8.522957, 47.390618], [8.522951, 47.390668], [8.522952, 47.390717], [8.522955, 47.390776], [8.522961, 47.390835], [8.522969, 47.390894], [8.52297, 47.390915], [8.522968, 47.390936], [8.522964, 47.390957], [8.522958, 47.390977], [8.522949, 47.390998], [8.522937, 47.391017], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "4255", "properties": {}, "type": "Feature"}, {"bbox": [8.565181, 47.380814, 8.568768, 47.382086], "geometry": {"coordinates": [[[8.568768, 47.380814], [8.568701, 47.380877], [8.568059, 47.381098], [8.567836, 47.381177], [8.56762, 47.381251], [8.566443, 47.381654], [8.566113, 47.381769], [8.566014, 47.381801], [8.565181, 47.382086]]], "type": "MultiLineString"}, "id": "4256", "properties": {}, "type": "Feature"}, {"bbox": [8.543721, 47.400933, 8.544315, 47.401207], "geometry": {"coordinates": [[[8.543721, 47.401079], [8.543722, 47.401072], [8.543724, 47.401065], [8.543726, 47.401058], [8.54373, 47.401051], [8.543734, 47.401044], [8.543739, 47.401038], [8.543745, 47.401032], [8.543752, 47.401027], [8.54376, 47.401022], [8.543768, 47.401018], [8.543776, 47.401014], [8.543853, 47.400986], [8.54393, 47.400959], [8.544007, 47.400933], [8.544018, 47.400936], [8.544028, 47.40094], [8.544038, 47.400945], [8.544047, 47.40095], [8.544055, 47.400956], [8.544063, 47.400962], [8.544069, 47.400969], [8.544315, 47.401207]]], "type": "MultiLineString"}, "id": "4258", "properties": {}, "type": "Feature"}, {"bbox": [8.473208, 47.38127, 8.474218, 47.382049], "geometry": {"coordinates": [[[8.474218, 47.38127], [8.474031, 47.381516], [8.473969, 47.381577], [8.4739, 47.381635], [8.473826, 47.381689], [8.473664, 47.381786], [8.473504, 47.381885], [8.473347, 47.381985], [8.473303, 47.382009], [8.473256, 47.38203], [8.473208, 47.382049]]], "type": "MultiLineString"}, "id": "4259", "properties": {}, "type": "Feature"}, {"bbox": [8.522048, 47.387265, 8.523357, 47.388509], "geometry": {"coordinates": [[[8.523357, 47.388509], [8.5233, 47.388454], [8.522118, 47.387333], [8.522048, 47.387265]]], "type": "MultiLineString"}, "id": "4261", "properties": {}, "type": "Feature"}, {"bbox": [8.498351, 47.365608, 8.499608, 47.366964], "geometry": {"coordinates": [[[8.499608, 47.366964], [8.499443, 47.366926], [8.498419, 47.36669], [8.498412, 47.366689], [8.498404, 47.366687], [8.498397, 47.366685], [8.498391, 47.366682], [8.498384, 47.366679], [8.498379, 47.366676], [8.498373, 47.366672], [8.498368, 47.366668], [8.498364, 47.366664], [8.49836, 47.366659], [8.498357, 47.366654], [8.498354, 47.366649], [8.498353, 47.366644], [8.498351, 47.366639], [8.498351, 47.366634], [8.498351, 47.366629], [8.498352, 47.366623], [8.498353, 47.366618], [8.498356, 47.366613], [8.498358, 47.366608], [8.498362, 47.366604], [8.498545, 47.366234], [8.498657, 47.366011], [8.498853, 47.365608]]], "type": "MultiLineString"}, "id": "4262", "properties": {}, "type": "Feature"}, {"bbox": [8.512958, 47.331466, 8.513246, 47.332223], "geometry": {"coordinates": [[[8.512958, 47.331466], [8.513027, 47.33151], [8.513037, 47.331518], [8.513046, 47.331527], [8.513054, 47.331536], [8.51306, 47.331546], [8.513065, 47.331556], [8.513104, 47.331638], [8.51315, 47.331719], [8.513204, 47.331797], [8.513246, 47.331848], [8.513104, 47.331887], [8.513105, 47.331971], [8.512975, 47.332001], [8.512982, 47.332223]]], "type": "MultiLineString"}, "id": "4263", "properties": {}, "type": "Feature"}, {"bbox": [8.574038, 47.379303, 8.578076, 47.381435], "geometry": {"coordinates": [[[8.574039, 47.379303], [8.574038, 47.379307], [8.574038, 47.379312], [8.574038, 47.379317], [8.574039, 47.379321], [8.574041, 47.379326], [8.574043, 47.37933], [8.574046, 47.379335], [8.574049, 47.379339], [8.574053, 47.379343], [8.574057, 47.379346], [8.574062, 47.37935], [8.574067, 47.379353], [8.574073, 47.379356], [8.574078, 47.379358], [8.574628, 47.37957], [8.574671, 47.379592], [8.574712, 47.379616], [8.57475, 47.379642], [8.574785, 47.37967], [8.574816, 47.379701], [8.574843, 47.379733], [8.574867, 47.379766], [8.574886, 47.3798], [8.574932, 47.379876], [8.574983, 47.37995], [8.575038, 47.380022], [8.575127, 47.380097], [8.575224, 47.380167], [8.575328, 47.380233], [8.575432, 47.380282], [8.57554, 47.380327], [8.575653, 47.380367], [8.575802, 47.380425], [8.575949, 47.380484], [8.576095, 47.380546], [8.576353, 47.380677], [8.576612, 47.380809], [8.57687, 47.380941], [8.576976, 47.380995], [8.577079, 47.381051], [8.577179, 47.38111], [8.577258, 47.381156], [8.577343, 47.381197], [8.577431, 47.381234], [8.578076, 47.381435]]], "type": "MultiLineString"}, "id": "4264", "properties": {}, "type": "Feature"}, {"bbox": [8.496467, 47.379634, 8.498511, 47.38032], "geometry": {"coordinates": [[[8.496467, 47.38032], [8.49649, 47.380316], [8.496513, 47.38031], [8.496535, 47.380304], [8.496556, 47.380296], [8.497738, 47.379648], [8.497751, 47.379644], [8.497764, 47.37964], [8.497778, 47.379638], [8.497792, 47.379636], [8.497806, 47.379635], [8.49782, 47.379634], [8.497834, 47.379635], [8.497848, 47.379636], [8.497862, 47.379638], [8.497875, 47.379641], [8.497888, 47.379645], [8.498097, 47.379799], [8.498305, 47.379953], [8.498511, 47.380109]]], "type": "MultiLineString"}, "id": "4265", "properties": {}, "type": "Feature"}, {"bbox": [8.489438, 47.377215, 8.490657, 47.377702], "geometry": {"coordinates": [[[8.489438, 47.377569], [8.489478, 47.377593], [8.48952, 47.377615], [8.489564, 47.377636], [8.489577, 47.377642], [8.489591, 47.377646], [8.489605, 47.377651], [8.48962, 47.377654], [8.489635, 47.377657], [8.489651, 47.377658], [8.489761, 47.377673], [8.489872, 47.377687], [8.489983, 47.3777], [8.48999, 47.377701], [8.489998, 47.377702], [8.490006, 47.377702], [8.490014, 47.377702], [8.490021, 47.377701], [8.490029, 47.3777], [8.490036, 47.377698], [8.490044, 47.377696], [8.490283, 47.377559], [8.490291, 47.377553], [8.490299, 47.377547], [8.490306, 47.377541], [8.490312, 47.377535], [8.490318, 47.377528], [8.490322, 47.377521], [8.490453, 47.377319], [8.490462, 47.377308], [8.490471, 47.377297], [8.490482, 47.377287], [8.490494, 47.377278], [8.490514, 47.377265], [8.490534, 47.377252], [8.490554, 47.37724], [8.490569, 47.377233], [8.490586, 47.377228], [8.490603, 47.377223], [8.49062, 47.377219], [8.490638, 47.377217], [8.490657, 47.377215]]], "type": "MultiLineString"}, "id": "4266", "properties": {}, "type": "Feature"}, {"bbox": [8.496289, 47.369768, 8.498513, 47.371544], "geometry": {"coordinates": [[[8.497845, 47.371544], [8.497843, 47.37153], [8.497843, 47.371515], [8.497845, 47.371501], [8.497848, 47.371487], [8.497854, 47.371473], [8.497861, 47.37146], [8.497871, 47.371447], [8.497881, 47.371434], [8.497894, 47.371423], [8.497908, 47.371412], [8.49847, 47.371314], [8.498475, 47.371313], [8.49848, 47.371311], [8.498485, 47.371309], [8.49849, 47.371307], [8.498494, 47.371304], [8.498498, 47.371301], [8.498501, 47.371298], [8.498504, 47.371295], [8.498507, 47.371291], [8.498509, 47.371288], [8.498511, 47.371284], [8.498512, 47.37128], [8.498513, 47.371276], [8.498513, 47.371272], [8.498512, 47.371268], [8.498511, 47.371265], [8.498482, 47.371186], [8.498448, 47.371109], [8.49841, 47.371033], [8.49803, 47.370475], [8.49802, 47.370463], [8.498009, 47.370453], [8.497996, 47.370443], [8.497981, 47.370434], [8.497966, 47.370426], [8.497949, 47.370419], [8.497932, 47.370414], [8.497914, 47.370409], [8.497896, 47.370405], [8.497273, 47.370422], [8.496994, 47.370441], [8.496988, 47.370441], [8.496982, 47.370441], [8.496976, 47.37044], [8.49697, 47.370439], [8.496965, 47.370437], [8.496959, 47.370435], [8.496954, 47.370433], [8.496949, 47.37043], [8.496944, 47.370428], [8.49694, 47.370425], [8.496936, 47.370421], [8.496933, 47.370416], [8.496928, 47.370411], [8.496924, 47.370407], [8.496918, 47.370402], [8.496912, 47.370398], [8.496906, 47.370395], [8.496899, 47.370392], [8.496892, 47.370389], [8.496884, 47.370386], [8.496876, 47.370384], [8.496868, 47.370383], [8.49686, 47.370382], [8.496852, 47.37038], [8.496845, 47.370378], [8.496838, 47.370375], [8.496831, 47.370372], [8.496825, 47.370368], [8.496819, 47.370364], [8.496814, 47.37036], [8.49681, 47.370356], [8.496806, 47.370351], [8.496391, 47.369934], [8.496363, 47.369903], [8.496338, 47.369871], [8.496318, 47.369838], [8.496301, 47.369803], [8.496289, 47.369768]]], "type": "MultiLineString"}, "id": "4267", "properties": {}, "type": "Feature"}, {"bbox": [8.502645, 47.357276, 8.505326, 47.358344], "geometry": {"coordinates": [[[8.505326, 47.358344], [8.505304, 47.358324], [8.504972, 47.358174], [8.504922, 47.358141], [8.504608, 47.357994], [8.504049, 47.357779], [8.50298, 47.357402], [8.502666, 47.357283], [8.502645, 47.357276]]], "type": "MultiLineString"}, "id": "4268", "properties": {}, "type": "Feature"}, {"bbox": [8.529844, 47.398634, 8.530049, 47.39892], "geometry": {"coordinates": [[[8.530049, 47.398634], [8.530046, 47.39864], [8.530042, 47.398645], [8.530038, 47.398651], [8.530032, 47.398656], [8.530026, 47.39866], [8.53002, 47.398664], [8.530013, 47.398668], [8.529997, 47.398675], [8.52998, 47.39868], [8.529963, 47.398685], [8.529944, 47.398689], [8.529926, 47.398691], [8.52986, 47.398726], [8.529844, 47.398781], [8.529874, 47.398877], [8.529877, 47.39891], [8.529878, 47.39892]]], "type": "MultiLineString"}, "id": "4270", "properties": {}, "type": "Feature"}, {"bbox": [8.568938, 47.395808, 8.570557, 47.397621], "geometry": {"coordinates": [[[8.568938, 47.395808], [8.569055, 47.39592], [8.569093, 47.395972], [8.569133, 47.396023], [8.569175, 47.396073], [8.569175, 47.396074], [8.569176, 47.396075], [8.569273, 47.396138], [8.569376, 47.396196], [8.569485, 47.396249], [8.569523, 47.396272], [8.569558, 47.396297], [8.56959, 47.396323], [8.56994, 47.396691], [8.569956, 47.39671], [8.569969, 47.396729], [8.56998, 47.396749], [8.569988, 47.39677], [8.569993, 47.396791], [8.569995, 47.396812], [8.569998, 47.396902], [8.569998, 47.396902], [8.570001, 47.39693], [8.570007, 47.396958], [8.570017, 47.396986], [8.570029, 47.397013], [8.570045, 47.397039], [8.570046, 47.39704], [8.570161, 47.397159], [8.570298, 47.397301], [8.570557, 47.397621]]], "type": "MultiLineString"}, "id": "4271", "properties": {}, "type": "Feature"}, {"bbox": [8.492612, 47.38079, 8.494496, 47.381668], "geometry": {"coordinates": [[[8.494496, 47.381377], [8.493874, 47.381668], [8.492904, 47.38079], [8.492612, 47.380922]]], "type": "MultiLineString"}, "id": "4272", "properties": {}, "type": "Feature"}, {"bbox": [8.530035, 47.398634, 8.531767, 47.399574], "geometry": {"coordinates": [[[8.531767, 47.399496], [8.531647, 47.399556], [8.531637, 47.39956], [8.531627, 47.399564], [8.531616, 47.399568], [8.531605, 47.39957], [8.531594, 47.399573], [8.531582, 47.399574], [8.53157, 47.399574], [8.531558, 47.399574], [8.531547, 47.399574], [8.531535, 47.399572], [8.531524, 47.39957], [8.531513, 47.399567], [8.531502, 47.399564], [8.531306, 47.399486], [8.531074, 47.399414], [8.531049, 47.399405], [8.531026, 47.399396], [8.531004, 47.399385], [8.530984, 47.399373], [8.530965, 47.399359], [8.530948, 47.399345], [8.530933, 47.399329], [8.53092, 47.399313], [8.530909, 47.399296], [8.530892, 47.399281], [8.530874, 47.399267], [8.530854, 47.399255], [8.530832, 47.399243], [8.530809, 47.399234], [8.530784, 47.399225], [8.530759, 47.399218], [8.530751, 47.399216], [8.530744, 47.399213], [8.530737, 47.39921], [8.530731, 47.399206], [8.530725, 47.399203], [8.530719, 47.399198], [8.530714, 47.399194], [8.53071, 47.399189], [8.530707, 47.399184], [8.530704, 47.399179], [8.53066, 47.399056], [8.530476, 47.398952], [8.530082, 47.398807], [8.530072, 47.398799], [8.530063, 47.39879], [8.530055, 47.398781], [8.530048, 47.398771], [8.530043, 47.398762], [8.530039, 47.398751], [8.530036, 47.398741], [8.530035, 47.39873], [8.530035, 47.39872], [8.530049, 47.398634]]], "type": "MultiLineString"}, "id": "4273", "properties": {}, "type": "Feature"}, {"bbox": [8.561053, 47.413876, 8.5611, 47.414226], "geometry": {"coordinates": [[[8.5611, 47.413876], [8.561062, 47.413931], [8.561053, 47.414226]]], "type": "MultiLineString"}, "id": "4274", "properties": {}, "type": "Feature"}, {"bbox": [8.515619, 47.363487, 8.51704, 47.364068], "geometry": {"coordinates": [[[8.51704, 47.363487], [8.51702, 47.363499], [8.516999, 47.363511], [8.516976, 47.363521], [8.516952, 47.363529], [8.516927, 47.363536], [8.516901, 47.363542], [8.516875, 47.363546], [8.516848, 47.363548], [8.516821, 47.363548], [8.516368, 47.363559], [8.516083, 47.363602], [8.515619, 47.364068]]], "type": "MultiLineString"}, "id": "4276", "properties": {}, "type": "Feature"}, {"bbox": [8.527292, 47.42398, 8.536487, 47.426204], "geometry": {"coordinates": [[[8.527292, 47.42398], [8.527319, 47.424027], [8.527321, 47.42403], [8.527323, 47.424032], [8.527326, 47.424035], [8.527329, 47.424037], [8.527332, 47.42404], [8.527336, 47.424042], [8.527339, 47.424044], [8.527343, 47.424045], [8.527348, 47.424047], [8.527352, 47.424048], [8.527357, 47.424048], [8.527589, 47.424083], [8.527653, 47.424092], [8.527717, 47.424101], [8.527781, 47.424108], [8.527844, 47.424117], [8.527905, 47.424127], [8.527965, 47.424141], [8.52819, 47.424195], [8.528257, 47.424222], [8.528277, 47.42423], [8.528296, 47.42424], [8.528314, 47.424251], [8.528329, 47.424263], [8.528352, 47.42428], [8.528377, 47.424296], [8.528404, 47.42431], [8.528564, 47.424386], [8.528599, 47.424403], [8.528634, 47.424422], [8.528667, 47.424441], [8.528873, 47.424562], [8.528905, 47.424582], [8.528934, 47.424604], [8.528959, 47.424629], [8.528982, 47.424654], [8.529078, 47.42478], [8.529102, 47.424791], [8.529126, 47.424803], [8.529148, 47.424816], [8.529212, 47.424857], [8.529245, 47.424879], [8.52928, 47.424898], [8.529318, 47.424916], [8.529357, 47.424932], [8.529399, 47.424945], [8.529441, 47.424956], [8.529556, 47.424979], [8.529673, 47.424996], [8.529792, 47.425006], [8.529912, 47.425011], [8.530379, 47.425016], [8.530551, 47.425012], [8.53072, 47.424997], [8.530887, 47.42497], [8.53106, 47.424935], [8.531096, 47.424929], [8.531133, 47.424924], [8.53117, 47.42492], [8.531239, 47.424917], [8.531307, 47.424919], [8.531375, 47.424925], [8.531732, 47.42497], [8.531796, 47.424978], [8.531859, 47.424984], [8.531923, 47.42499], [8.532383, 47.425023], [8.53245, 47.42503], [8.532515, 47.42504], [8.53258, 47.425054], [8.532602, 47.42506], [8.532989, 47.425154], [8.533064, 47.425174], [8.533135, 47.425199], [8.533204, 47.425228], [8.533269, 47.42526], [8.533293, 47.425275], [8.533316, 47.425291], [8.533337, 47.425308], [8.533355, 47.425327], [8.533371, 47.425346], [8.533385, 47.425367], [8.533396, 47.425388], [8.533404, 47.42541], [8.53341, 47.425432], [8.533456, 47.425684], [8.533462, 47.425705], [8.53347, 47.425726], [8.533481, 47.425747], [8.533494, 47.425766], [8.53351, 47.425785], [8.533528, 47.425803], [8.533549, 47.42582], [8.533571, 47.425835], [8.533595, 47.425849], [8.533622, 47.425862], [8.533649, 47.425873], [8.533678, 47.425882], [8.533708, 47.42589], [8.533739, 47.425896], [8.533771, 47.4259], [8.533802, 47.425902], [8.534303, 47.425919], [8.535621, 47.425972], [8.536349, 47.426005], [8.536487, 47.426204]]], "type": "MultiLineString"}, "id": "4298", "properties": {}, "type": "Feature"}, {"bbox": [8.495946, 47.362301, 8.497004, 47.362641], "geometry": {"coordinates": [[[8.497004, 47.362641], [8.496811, 47.362508], [8.496774, 47.362482], [8.496735, 47.362458], [8.496693, 47.362436], [8.496648, 47.362417], [8.496601, 47.362401], [8.496552, 47.362388], [8.496502, 47.362377], [8.49645, 47.362369], [8.496398, 47.362364], [8.496345, 47.362362], [8.496292, 47.362364], [8.49624, 47.362368], [8.496188, 47.362375], [8.496137, 47.362386], [8.496088, 47.362399], [8.495998, 47.362338], [8.495946, 47.362301]]], "type": "MultiLineString"}, "id": "4299", "properties": {}, "type": "Feature"}, {"bbox": [8.509142, 47.401888, 8.515553, 47.403956], "geometry": {"coordinates": [[[8.509142, 47.402024], [8.509281, 47.402009], [8.509564, 47.401976], [8.509992, 47.401945], [8.510384, 47.401931], [8.510584, 47.401933], [8.510927, 47.401891], [8.511078, 47.401889], [8.511165, 47.401888], [8.511215, 47.401891], [8.511368, 47.401898], [8.511487, 47.401911], [8.511665, 47.401942], [8.511916, 47.401995], [8.512163, 47.40202], [8.512317, 47.402028], [8.51245, 47.402028], [8.512553, 47.402041], [8.512775, 47.40207], [8.513431, 47.402275], [8.513481, 47.402296], [8.51352, 47.402327], [8.513738, 47.402563], [8.513747, 47.402627], [8.513701, 47.40268], [8.513571, 47.402813], [8.51357, 47.402813], [8.513558, 47.402826], [8.513547, 47.402839], [8.513538, 47.402853], [8.513531, 47.402868], [8.513526, 47.402883], [8.513522, 47.402898], [8.513521, 47.402913], [8.513521, 47.402929], [8.513524, 47.402944], [8.513529, 47.402959], [8.513535, 47.402974], [8.513543, 47.402988], [8.513554, 47.403002], [8.513566, 47.403015], [8.51358, 47.403028], [8.513595, 47.403039], [8.513612, 47.40305], [8.51363, 47.40306], [8.513649, 47.403068], [8.513669, 47.403075], [8.51367, 47.403075], [8.514113, 47.403258], [8.514612, 47.403397], [8.514677, 47.403415], [8.514738, 47.403438], [8.514797, 47.403464], [8.514851, 47.403494], [8.514896, 47.403523], [8.514936, 47.403555], [8.514973, 47.403589], [8.515005, 47.403625], [8.515032, 47.403663], [8.515059, 47.403698], [8.515091, 47.403731], [8.515126, 47.403762], [8.515165, 47.403791], [8.515207, 47.403818], [8.515251, 47.403842], [8.515299, 47.403864], [8.515349, 47.403883], [8.515553, 47.403956]]], "type": "MultiLineString"}, "id": "4304", "properties": {}, "type": "Feature"}, {"bbox": [8.559241, 47.397621, 8.570557, 47.40323], "geometry": {"coordinates": [[[8.559282, 47.40323], [8.559316, 47.403134], [8.559285, 47.403078], [8.559267, 47.403046], [8.559254, 47.403013], [8.559245, 47.402979], [8.559243, 47.402962], [8.559241, 47.402936], [8.559243, 47.402911], [8.559247, 47.402886], [8.559255, 47.402861], [8.559266, 47.402837], [8.559279, 47.402814], [8.559296, 47.402791], [8.559315, 47.40277], [8.559337, 47.402749], [8.559361, 47.40273], [8.559388, 47.402712], [8.559417, 47.402696], [8.559447, 47.402682], [8.559479, 47.402669], [8.560092, 47.402453], [8.56084, 47.402224], [8.561322, 47.402089], [8.561417, 47.402065], [8.561514, 47.402045], [8.561613, 47.402028], [8.562066, 47.401963], [8.562132, 47.401952], [8.562196, 47.401939], [8.562259, 47.401923], [8.562308, 47.401909], [8.562336, 47.4019], [8.562364, 47.40189], [8.562391, 47.40188], [8.562417, 47.40187], [8.562442, 47.40186], [8.562467, 47.401849], [8.562968, 47.401624], [8.562983, 47.401617], [8.563953, 47.401179], [8.564108, 47.401102], [8.564252, 47.401015], [8.564383, 47.40092], [8.564473, 47.400848], [8.564629, 47.40073], [8.564796, 47.400619], [8.564972, 47.400514], [8.565997, 47.399941], [8.566164, 47.399839], [8.56632, 47.399729], [8.566463, 47.399611], [8.567013, 47.399122], [8.567558, 47.398652], [8.567597, 47.398621], [8.56764, 47.398592], [8.567686, 47.398566], [8.567735, 47.398543], [8.567787, 47.398522], [8.567841, 47.398504], [8.567898, 47.39849], [8.567955, 47.398479], [8.568014, 47.398471], [8.568074, 47.398467], [8.568552, 47.398444], [8.568632, 47.398438], [8.56871, 47.398428], [8.568787, 47.398413], [8.568861, 47.398393], [8.568933, 47.398369], [8.569002, 47.398341], [8.569066, 47.398309], [8.569502, 47.398075], [8.56963, 47.398012], [8.569766, 47.397955], [8.569907, 47.397907], [8.570064, 47.397853], [8.570214, 47.397792], [8.570357, 47.397724], [8.570557, 47.397621]]], "type": "MultiLineString"}, "id": "4305", "properties": {}, "type": "Feature"}, {"bbox": [8.492612, 47.380922, 8.493011, 47.382345], "geometry": {"coordinates": [[[8.492612, 47.380922], [8.492705, 47.381005], [8.492787, 47.381094], [8.492856, 47.381188], [8.492914, 47.381285], [8.492958, 47.381385], [8.492989, 47.381488], [8.493007, 47.381592], [8.493011, 47.381696], [8.492953, 47.382345]]], "type": "MultiLineString"}, "id": "4307", "properties": {}, "type": "Feature"}, {"bbox": [8.484926, 47.386223, 8.485769, 47.387068], "geometry": {"coordinates": [[[8.485576, 47.387068], [8.485769, 47.387029], [8.485169, 47.386223], [8.484926, 47.386266]]], "type": "MultiLineString"}, "id": "4308", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.377944, 8.536592, 47.37801], "geometry": {"coordinates": [[[8.536485, 47.37801], [8.536592, 47.377944]]], "type": "MultiLineString"}, "id": "4310", "properties": {}, "type": "Feature"}, {"bbox": [8.543682, 47.42075, 8.545211, 47.42248], "geometry": {"coordinates": [[[8.544307, 47.42248], [8.544322, 47.422463], [8.544335, 47.422444], [8.544346, 47.422425], [8.544353, 47.422406], [8.544358, 47.422386], [8.544361, 47.422366], [8.544344, 47.422344], [8.544326, 47.422323], [8.544306, 47.422303], [8.544293, 47.422278], [8.544169, 47.422179], [8.544053, 47.422065], [8.544047, 47.422057], [8.544043, 47.42205], [8.54404, 47.422042], [8.544038, 47.422035], [8.544036, 47.422027], [8.544036, 47.422019], [8.544037, 47.422011], [8.544039, 47.422003], [8.544041, 47.421995], [8.544045, 47.421988], [8.54405, 47.42198], [8.544056, 47.421973], [8.544071, 47.421959], [8.544088, 47.421946], [8.544106, 47.421933], [8.544127, 47.421922], [8.544148, 47.421912], [8.54417, 47.421903], [8.544194, 47.421896], [8.544218, 47.42189], [8.544418, 47.421849], [8.544503, 47.421829], [8.544585, 47.421804], [8.544663, 47.421773], [8.544721, 47.421747], [8.544778, 47.42172], [8.544835, 47.421693], [8.54519, 47.421532], [8.545193, 47.421532], [8.545195, 47.421531], [8.545198, 47.421529], [8.5452, 47.421528], [8.545202, 47.421527], [8.545204, 47.421525], [8.545206, 47.421523], [8.545208, 47.421521], [8.545209, 47.42152], [8.54521, 47.421518], [8.545211, 47.421516], [8.545211, 47.421513], [8.545211, 47.421511], [8.545211, 47.421509], [8.545211, 47.421507], [8.545211, 47.421505], [8.54521, 47.421503], [8.545209, 47.421501], [8.545207, 47.421499], [8.545206, 47.421498], [8.545204, 47.421496], [8.545202, 47.421494], [8.5452, 47.421493], [8.545197, 47.421492], [8.545195, 47.42149], [8.545192, 47.421489], [8.545189, 47.421489], [8.545186, 47.421488], [8.545183, 47.421487], [8.544654, 47.421516], [8.544638, 47.421515], [8.544623, 47.421513], [8.544608, 47.42151], [8.544593, 47.421506], [8.544579, 47.421501], [8.544565, 47.421496], [8.544552, 47.42149], [8.54454, 47.421483], [8.544521, 47.421461], [8.544499, 47.42144], [8.544474, 47.421421], [8.544447, 47.421403], [8.544417, 47.421387], [8.544386, 47.421373], [8.544353, 47.421361], [8.544216, 47.421242], [8.54412, 47.421149], [8.543836, 47.420954], [8.543697, 47.420858], [8.543694, 47.420854], [8.543691, 47.420849], [8.543689, 47.420845], [8.543687, 47.42084], [8.543686, 47.420836], [8.543685, 47.420831], [8.543685, 47.420826], [8.543699, 47.420778], [8.543695, 47.420768], [8.543689, 47.420759], [8.543682, 47.42075]]], "type": "MultiLineString"}, "id": "4312", "properties": {}, "type": "Feature"}, {"bbox": [8.532126, 47.398612, 8.532193, 47.398824], "geometry": {"coordinates": [[[8.532193, 47.398612], [8.532129, 47.398739], [8.532126, 47.398824]]], "type": "MultiLineString"}, "id": "4313", "properties": {}, "type": "Feature"}, {"bbox": [8.545474, 47.401451, 8.545841, 47.40161], "geometry": {"coordinates": [[[8.545474, 47.40161], [8.545491, 47.40161], [8.545508, 47.401608], [8.545525, 47.401606], [8.545541, 47.401602], [8.545557, 47.401598], [8.545572, 47.401593], [8.545586, 47.401587], [8.5456, 47.40158], [8.545613, 47.401572], [8.545841, 47.401451]]], "type": "MultiLineString"}, "id": "4314", "properties": {}, "type": "Feature"}, {"bbox": [8.505851, 47.404316, 8.509316, 47.405509], "geometry": {"coordinates": [[[8.505851, 47.404316], [8.506002, 47.404402], [8.506064, 47.404428], [8.506198, 47.404479], [8.506338, 47.404523], [8.506482, 47.404559], [8.506636, 47.404594], [8.507096, 47.404697], [8.507282, 47.404745], [8.507319, 47.404755], [8.507355, 47.404766], [8.507391, 47.404778], [8.507471, 47.40481], [8.507546, 47.404845], [8.507617, 47.404886], [8.507682, 47.40493], [8.507704, 47.404947], [8.507725, 47.404965], [8.507745, 47.404983], [8.507751, 47.404989], [8.507757, 47.404995], [8.507762, 47.405], [8.507982, 47.405228], [8.508037, 47.40528], [8.5081, 47.405328], [8.508169, 47.405371], [8.508214, 47.405395], [8.508261, 47.405417], [8.50831, 47.405438], [8.50831, 47.405438], [8.50831, 47.405438], [8.508371, 47.405459], [8.508435, 47.405477], [8.5085, 47.405491], [8.508567, 47.405501], [8.508634, 47.405507], [8.508702, 47.405509], [8.508769, 47.405506], [8.508836, 47.4055], [8.508938, 47.405485], [8.50904, 47.405472], [8.509143, 47.405461], [8.509201, 47.405456], [8.509258, 47.405452], [8.509316, 47.40545]]], "type": "MultiLineString"}, "id": "4328", "properties": {}, "type": "Feature"}, {"bbox": [8.474677, 47.387866, 8.477299, 47.38988], "geometry": {"coordinates": [[[8.477299, 47.38988], [8.477208, 47.389801], [8.47656, 47.38928], [8.476387, 47.389355], [8.476292, 47.389273], [8.476274, 47.389261], [8.476255, 47.38925], [8.476234, 47.38924], [8.476212, 47.389231], [8.476189, 47.389224], [8.476165, 47.389218], [8.476141, 47.389213], [8.476116, 47.38921], [8.476091, 47.389209], [8.476065, 47.389209], [8.47604, 47.389211], [8.476025, 47.389213], [8.47601, 47.389215], [8.475995, 47.389215], [8.47598, 47.389215], [8.475965, 47.389214], [8.47595, 47.389212], [8.475935, 47.389209], [8.475921, 47.389205], [8.475908, 47.3892], [8.475895, 47.389195], [8.475883, 47.389189], [8.475871, 47.389182], [8.475659, 47.389037], [8.475517, 47.388914], [8.475424, 47.388809], [8.47546, 47.38873], [8.475472, 47.388666], [8.475275, 47.388469], [8.475222, 47.388371], [8.47521, 47.388311], [8.475144, 47.388228], [8.474868, 47.387989], [8.474758, 47.387916], [8.474677, 47.387866]]], "type": "MultiLineString"}, "id": "4329", "properties": {}, "type": "Feature"}, {"bbox": [8.47438, 47.38837, 8.475222, 47.388754], "geometry": {"coordinates": [[[8.475222, 47.38837], [8.4752, 47.38837], [8.475177, 47.388371], [8.475156, 47.388374], [8.475134, 47.388377], [8.475113, 47.388382], [8.475093, 47.388389], [8.475074, 47.388396], [8.475056, 47.388405], [8.475039, 47.388415], [8.475023, 47.388425], [8.475009, 47.388437], [8.474968, 47.388484], [8.474921, 47.388529], [8.474869, 47.388571], [8.474811, 47.388609], [8.474748, 47.388644], [8.474681, 47.388675], [8.47461, 47.388701], [8.474536, 47.388724], [8.474459, 47.388741], [8.47438, 47.388754]]], "type": "MultiLineString"}, "id": "4330", "properties": {}, "type": "Feature"}, {"bbox": [8.497205, 47.358416, 8.497867, 47.35852], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497292, 47.358422], [8.497412, 47.358416], [8.497728, 47.358453], [8.497867, 47.35852]]], "type": "MultiLineString"}, "id": "4333", "properties": {}, "type": "Feature"}, {"bbox": [8.508916, 47.407465, 8.511179, 47.408589], "geometry": {"coordinates": [[[8.508916, 47.408589], [8.509229, 47.408487], [8.509307, 47.408515], [8.509378, 47.408506], [8.510341, 47.408183], [8.510432, 47.408306], [8.511019, 47.408112], [8.510966, 47.408043], [8.510804, 47.408036], [8.510543, 47.407682], [8.510929, 47.40755], [8.511179, 47.407465]]], "type": "MultiLineString"}, "id": "4334", "properties": {}, "type": "Feature"}, {"bbox": [8.50878, 47.420619, 8.509362, 47.421323], "geometry": {"coordinates": [[[8.50878, 47.420619], [8.50923, 47.421099], [8.509326, 47.421241], [8.509339, 47.421268], [8.509351, 47.421295], [8.509362, 47.421323]]], "type": "MultiLineString"}, "id": "4339", "properties": {}, "type": "Feature"}, {"bbox": [8.539879, 47.366428, 8.540541, 47.367108], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540192, 47.366745], [8.540149, 47.36676], [8.539882, 47.367054], [8.539881, 47.367057], [8.53988, 47.367059], [8.539879, 47.367062], [8.539879, 47.367064], [8.539879, 47.367067], [8.53988, 47.367069], [8.539881, 47.367072], [8.539882, 47.367074], [8.539883, 47.367076], [8.539885, 47.367079], [8.539887, 47.367081], [8.539889, 47.367083], [8.539891, 47.367085], [8.539894, 47.367086], [8.539897, 47.367088], [8.5399, 47.367089], [8.539903, 47.36709], [8.539907, 47.367091], [8.53991, 47.367092], [8.539914, 47.367093], [8.539986, 47.367108]]], "type": "MultiLineString"}, "id": "4340", "properties": {}, "type": "Feature"}, {"bbox": [8.584047, 47.35444, 8.59269, 47.355505], "geometry": {"coordinates": [[[8.59269, 47.354936], [8.591848, 47.355224], [8.590939, 47.35546], [8.590641, 47.355496], [8.590206, 47.355505], [8.590078, 47.355467], [8.589296, 47.355185], [8.58865, 47.354799], [8.588371, 47.354658], [8.588096, 47.354578], [8.587708, 47.354545], [8.5871, 47.354532], [8.586538, 47.35452], [8.586383, 47.354495], [8.586145, 47.354465], [8.584964, 47.35444], [8.584568, 47.354447], [8.58415, 47.35447], [8.584047, 47.354584]]], "type": "MultiLineString"}, "id": "4342", "properties": {}, "type": "Feature"}, {"bbox": [8.524339, 47.363021, 8.525772, 47.363887], "geometry": {"coordinates": [[[8.525772, 47.36332], [8.525742, 47.363328], [8.525712, 47.363338], [8.525684, 47.36335], [8.525658, 47.363364], [8.525634, 47.363379], [8.525612, 47.363396], [8.525592, 47.363414], [8.525574, 47.363433], [8.525493, 47.363527], [8.525401, 47.363616], [8.525298, 47.3637], [8.525141, 47.363854], [8.525134, 47.36386], [8.525126, 47.363865], [8.525117, 47.36387], [8.525107, 47.363874], [8.525097, 47.363878], [8.525087, 47.363881], [8.525076, 47.363883], [8.525065, 47.363885], [8.525054, 47.363886], [8.525042, 47.363887], [8.525031, 47.363886], [8.52502, 47.363886], [8.525008, 47.363884], [8.524998, 47.363882], [8.524987, 47.363879], [8.524977, 47.363876], [8.524967, 47.363872], [8.524958, 47.363867], [8.524949, 47.363862], [8.524941, 47.363856], [8.524934, 47.36385], [8.524928, 47.363844], [8.524923, 47.363837], [8.524918, 47.36383], [8.524914, 47.363823], [8.524911, 47.363815], [8.52491, 47.363808], [8.524909, 47.3638], [8.524909, 47.363792], [8.52491, 47.363785], [8.524912, 47.363777], [8.524916, 47.36377], [8.52492, 47.363762], [8.524925, 47.363755], [8.52493, 47.363749], [8.525312, 47.363421], [8.525326, 47.363402], [8.525337, 47.363383], [8.525346, 47.363364], [8.525353, 47.363344], [8.525356, 47.363323], [8.525358, 47.363303], [8.525356, 47.363282], [8.525352, 47.363262], [8.525346, 47.363242], [8.525336, 47.363222], [8.525325, 47.363203], [8.52531, 47.363185], [8.525294, 47.363168], [8.525275, 47.363152], [8.525255, 47.363137], [8.525232, 47.363123], [8.525208, 47.363111], [8.525183, 47.3631], [8.525156, 47.36309], [8.525104, 47.363071], [8.525049, 47.363055], [8.524993, 47.363042], [8.524935, 47.363033], [8.524877, 47.363027], [8.524817, 47.363024], [8.524762, 47.363021], [8.524706, 47.363021], [8.524651, 47.363025], [8.524596, 47.363031], [8.524542, 47.363041], [8.52449, 47.363055], [8.52447, 47.363061], [8.524451, 47.363068], [8.524434, 47.363076], [8.524417, 47.363085], [8.524402, 47.363096], [8.524388, 47.363107], [8.524376, 47.363119], [8.524365, 47.363132], [8.524356, 47.363145], [8.524349, 47.363159], [8.524344, 47.363173], [8.52434, 47.363188], [8.524339, 47.363202], [8.524339, 47.363217], [8.524345, 47.363362]]], "type": "MultiLineString"}, "id": "4345", "properties": {}, "type": "Feature"}, {"bbox": [8.531253, 47.342936, 8.532419, 47.344085], "geometry": {"coordinates": [[[8.531253, 47.344085], [8.531303, 47.343817], [8.53168, 47.34378], [8.531788, 47.343721], [8.531882, 47.343649], [8.531973, 47.343536], [8.532091, 47.343376], [8.532163, 47.343331], [8.532419, 47.342936]]], "type": "MultiLineString"}, "id": "4347", "properties": {}, "type": "Feature"}, {"bbox": [8.543946, 47.371519, 8.545705, 47.372467], "geometry": {"coordinates": [[[8.543946, 47.371519], [8.543948, 47.371556], [8.544321, 47.371688], [8.544624, 47.371825], [8.544776, 47.371907], [8.544939, 47.371981], [8.545109, 47.372046], [8.545287, 47.372101], [8.545378, 47.372174], [8.545683, 47.372372], [8.545705, 47.372467]]], "type": "MultiLineString"}, "id": "4349", "properties": {}, "type": "Feature"}, {"bbox": [8.540526, 47.366286, 8.542389, 47.366751], "geometry": {"coordinates": [[[8.542389, 47.366751], [8.542216, 47.36672], [8.542044, 47.366683], [8.541876, 47.366641], [8.541539, 47.366555], [8.541197, 47.366481], [8.540849, 47.366419], [8.540796, 47.366409], [8.540744, 47.366396], [8.540695, 47.36638], [8.540648, 47.366361], [8.540604, 47.366339], [8.540563, 47.366314], [8.540526, 47.366286]]], "type": "MultiLineString"}, "id": "4350", "properties": {}, "type": "Feature"}, {"bbox": [8.512118, 47.42252, 8.513703, 47.423912], "geometry": {"coordinates": [[[8.513703, 47.423912], [8.513694, 47.423898], [8.513686, 47.423883], [8.513681, 47.423867], [8.513678, 47.423852], [8.513676, 47.423836], [8.513692, 47.42366], [8.51369, 47.423646], [8.513687, 47.423632], [8.513682, 47.423618], [8.513675, 47.423605], [8.513666, 47.423592], [8.513656, 47.42358], [8.513644, 47.423568], [8.513601, 47.423536], [8.513593, 47.42353], [8.513587, 47.423524], [8.513582, 47.423517], [8.513577, 47.42351], [8.513573, 47.423503], [8.513571, 47.423496], [8.513569, 47.423488], [8.513568, 47.42348], [8.513565, 47.423472], [8.513561, 47.423465], [8.513557, 47.423457], [8.513552, 47.42345], [8.513546, 47.423444], [8.513539, 47.423437], [8.513531, 47.423431], [8.51348, 47.423394], [8.51343, 47.423356], [8.513379, 47.423319], [8.513274, 47.423283], [8.513263, 47.423281], [8.513252, 47.423278], [8.513242, 47.423274], [8.513233, 47.42327], [8.513223, 47.423266], [8.513215, 47.42326], [8.513207, 47.423255], [8.5132, 47.423249], [8.5129, 47.423028], [8.512382, 47.42282], [8.512118, 47.42252]]], "type": "MultiLineString"}, "id": "4353", "properties": {}, "type": "Feature"}, {"bbox": [8.596403, 47.355598, 8.597344, 47.356321], "geometry": {"coordinates": [[[8.596403, 47.355598], [8.596465, 47.355622], [8.596526, 47.355646], [8.596587, 47.35567], [8.596661, 47.355698], [8.596734, 47.355728], [8.596805, 47.355761], [8.596856, 47.355797], [8.596901, 47.355835], [8.596942, 47.355877], [8.596977, 47.35592], [8.597013, 47.355987], [8.597047, 47.356055], [8.597078, 47.356124], [8.597088, 47.356141], [8.5971, 47.356158], [8.597115, 47.356174], [8.597131, 47.356189], [8.59715, 47.356203], [8.59717, 47.356216], [8.597227, 47.356252], [8.597285, 47.356286], [8.597344, 47.356321]]], "type": "MultiLineString"}, "id": "4354", "properties": {}, "type": "Feature"}, {"bbox": [8.520808, 47.423852, 8.521211, 47.424881], "geometry": {"coordinates": [[[8.520808, 47.423852], [8.520813, 47.424204], [8.521198, 47.424214], [8.521194, 47.424557], [8.521211, 47.42459], [8.5212, 47.424881]]], "type": "MultiLineString"}, "id": "4355", "properties": {}, "type": "Feature"}, {"bbox": [8.503073, 47.373816, 8.507853, 47.3778], "geometry": {"coordinates": [[[8.503073, 47.373816], [8.50309, 47.373864], [8.50313, 47.37394], [8.503364, 47.374106], [8.503559, 47.374291], [8.503669, 47.374417], [8.503788, 47.374552], [8.50389, 47.374674], [8.504006, 47.374814], [8.504148, 47.37495], [8.504155, 47.374952], [8.504162, 47.374955], [8.50417, 47.374957], [8.504177, 47.374958], [8.504185, 47.374959], [8.504193, 47.37496], [8.504201, 47.37496], [8.504209, 47.37496], [8.504217, 47.374959], [8.504225, 47.374958], [8.504232, 47.374956], [8.504239, 47.374954], [8.504246, 47.374952], [8.504253, 47.374949], [8.504259, 47.374945], [8.504443, 47.374867], [8.504454, 47.374866], [8.504464, 47.374864], [8.504475, 47.374864], [8.504486, 47.374864], [8.504497, 47.374865], [8.504508, 47.374866], [8.504518, 47.374868], [8.504528, 47.374871], [8.504538, 47.374875], [8.504547, 47.374878], [8.504556, 47.374883], [8.504564, 47.374888], [8.504572, 47.374893], [8.504667, 47.374963], [8.505159, 47.375323], [8.506035, 47.376031], [8.505894, 47.376113], [8.505923, 47.376137], [8.50595, 47.376171], [8.506359, 47.3765], [8.506767, 47.376829], [8.506829, 47.376878], [8.506895, 47.376932], [8.506951, 47.376993], [8.50701, 47.377025], [8.507174, 47.37717], [8.507194, 47.3772], [8.507219, 47.377229], [8.507247, 47.377256], [8.507278, 47.377281], [8.507602, 47.37757], [8.50768, 47.377633], [8.507853, 47.3778]]], "type": "MultiLineString"}, "id": "4356", "properties": {}, "type": "Feature"}, {"bbox": [8.488018, 47.409579, 8.493744, 47.412252], "geometry": {"coordinates": [[[8.493744, 47.409579], [8.492991, 47.410152], [8.492703, 47.410365], [8.491717, 47.41143], [8.491453, 47.411733], [8.491436, 47.411752], [8.491416, 47.411771], [8.491394, 47.411788], [8.49137, 47.411804], [8.491344, 47.411818], [8.491316, 47.411831], [8.491287, 47.411843], [8.491257, 47.411852], [8.490524, 47.411872], [8.490331, 47.41189], [8.490141, 47.411921], [8.489957, 47.411964], [8.489664, 47.412053], [8.489617, 47.412066], [8.48957, 47.412077], [8.489522, 47.412086], [8.489169, 47.412144], [8.488722, 47.412232], [8.488693, 47.412237], [8.488665, 47.412241], [8.488635, 47.412243], [8.488635, 47.412243], [8.488492, 47.412252], [8.488462, 47.412252], [8.488432, 47.412251], [8.488402, 47.412249], [8.488373, 47.412244], [8.488344, 47.412238], [8.488316, 47.41223], [8.488289, 47.41222], [8.488263, 47.412208], [8.488239, 47.412195], [8.488115, 47.412102], [8.488093, 47.412082], [8.488073, 47.41206], [8.488056, 47.412038], [8.488042, 47.412014], [8.488032, 47.41199], [8.488025, 47.411965], [8.488021, 47.41194], [8.488021, 47.41194], [8.488021, 47.41194], [8.488018, 47.411876], [8.488021, 47.411811], [8.488032, 47.411747], [8.488032, 47.411747], [8.488045, 47.411687], [8.488079, 47.411575], [8.488114, 47.411464], [8.48815, 47.411352], [8.48815, 47.411352], [8.488212, 47.411129], [8.488264, 47.410784], [8.488266, 47.41074]]], "type": "MultiLineString"}, "id": "4364", "properties": {}, "type": "Feature"}, {"bbox": [8.539102, 47.421348, 8.540506, 47.42152], "geometry": {"coordinates": [[[8.539102, 47.421359], [8.539288, 47.421348], [8.539401, 47.421348], [8.539508, 47.421359], [8.53965, 47.42139], [8.53967, 47.421396], [8.539874, 47.421469], [8.53992, 47.421476], [8.540033, 47.421473], [8.540144, 47.421473], [8.54044, 47.421495], [8.540506, 47.42152]]], "type": "MultiLineString"}, "id": "4368", "properties": {}, "type": "Feature"}, {"bbox": [8.554078, 47.366518, 8.555247, 47.366822], "geometry": {"coordinates": [[[8.554078, 47.366518], [8.554469, 47.366609], [8.554659, 47.36664], [8.554752, 47.366657], [8.554843, 47.36668], [8.554929, 47.366708], [8.555013, 47.36674], [8.555094, 47.366774], [8.555173, 47.36681], [8.555182, 47.366813], [8.555193, 47.366816], [8.555203, 47.366819], [8.555214, 47.36682], [8.555225, 47.366822], [8.555236, 47.366822], [8.555247, 47.366822]]], "type": "MultiLineString"}, "id": "4371", "properties": {}, "type": "Feature"}, {"bbox": [8.549156, 47.41738, 8.54952, 47.417484], "geometry": {"coordinates": [[[8.549156, 47.417484], [8.54952, 47.41738]]], "type": "MultiLineString"}, "id": "4373", "properties": {}, "type": "Feature"}, {"bbox": [8.485114, 47.377523, 8.486915, 47.380001], "geometry": {"coordinates": [[[8.486915, 47.380001], [8.486707, 47.379512], [8.486443, 47.378944], [8.486338, 47.378735], [8.486203, 47.378535], [8.486039, 47.378345], [8.485849, 47.378162], [8.485482, 47.37788], [8.485181, 47.377584], [8.485114, 47.377523]]], "type": "MultiLineString"}, "id": "4374", "properties": {}, "type": "Feature"}, {"bbox": [8.513433, 47.38108, 8.513971, 47.381459], "geometry": {"coordinates": [[[8.513971, 47.381254], [8.513932, 47.381272], [8.513927, 47.381267], [8.513922, 47.381261], [8.513919, 47.381255], [8.513916, 47.381249], [8.513914, 47.381243], [8.513912, 47.381237], [8.513912, 47.38123], [8.513912, 47.381224], [8.513952, 47.38108], [8.513433, 47.381309], [8.513581, 47.381459]]], "type": "MultiLineString"}, "id": "4375", "properties": {}, "type": "Feature"}, {"bbox": [8.482682, 47.419864, 8.491315, 47.422131], "geometry": {"coordinates": [[[8.491315, 47.419864], [8.491111, 47.419976], [8.490572, 47.420153], [8.490459, 47.420192], [8.490349, 47.420235], [8.490243, 47.420282], [8.489197, 47.420765], [8.488597, 47.421057], [8.488238, 47.421221], [8.488217, 47.42123], [8.487814, 47.421413], [8.487513, 47.421539], [8.487474, 47.421555], [8.487432, 47.421567], [8.48739, 47.421578], [8.487346, 47.421586], [8.487301, 47.421591], [8.487256, 47.421594], [8.48721, 47.421594], [8.487165, 47.421592], [8.486171, 47.42151], [8.486065, 47.421505], [8.48596, 47.421505], [8.485855, 47.421512], [8.485751, 47.421524], [8.485223, 47.421605], [8.485091, 47.421626], [8.484959, 47.421647], [8.484828, 47.42167], [8.484459, 47.421736], [8.484319, 47.421764], [8.484181, 47.421796], [8.484045, 47.421834], [8.483101, 47.422112], [8.483075, 47.422119], [8.483048, 47.422124], [8.48302, 47.422128], [8.482993, 47.42213], [8.482964, 47.422131], [8.482936, 47.42213], [8.482909, 47.422127], [8.482881, 47.422123], [8.482854, 47.422117], [8.482828, 47.42211], [8.482809, 47.422103], [8.48279, 47.422095], [8.482772, 47.422085], [8.482756, 47.422075], [8.482741, 47.422064], [8.482727, 47.422052], [8.482715, 47.422039], [8.482705, 47.422026], [8.482697, 47.422012], [8.48269, 47.421997], [8.482685, 47.421982], [8.482683, 47.421967], [8.482682, 47.421952], [8.482683, 47.421937], [8.482686, 47.421922], [8.482691, 47.421907], [8.482698, 47.421893], [8.482707, 47.421879], [8.482718, 47.421866], [8.48273, 47.421853], [8.482744, 47.421841], [8.482759, 47.42183], [8.482776, 47.42182], [8.483061, 47.421663], [8.484592, 47.420759], [8.484851, 47.420573], [8.485146, 47.42034]]], "type": "MultiLineString"}, "id": "4378", "properties": {}, "type": "Feature"}, {"bbox": [8.541163, 47.370302, 8.541908, 47.370329], "geometry": {"coordinates": [[[8.541908, 47.370329], [8.541252, 47.370316], [8.541163, 47.370302]]], "type": "MultiLineString"}, "id": "4379", "properties": {}, "type": "Feature"}, {"bbox": [8.573761, 47.363095, 8.575197, 47.365306], "geometry": {"coordinates": [[[8.573761, 47.363095], [8.57385, 47.363211], [8.573943, 47.363325], [8.574038, 47.363438], [8.574086, 47.363494], [8.574127, 47.363553], [8.57416, 47.363614], [8.574184, 47.363677], [8.574306, 47.364008], [8.574345, 47.364072], [8.574386, 47.364136], [8.57443, 47.364199], [8.574449, 47.364222], [8.574472, 47.364242], [8.574491, 47.364261], [8.574575, 47.36438], [8.574655, 47.364501], [8.574729, 47.364623], [8.574856, 47.364849], [8.575038, 47.365114], [8.575197, 47.365306]]], "type": "MultiLineString"}, "id": "4381", "properties": {}, "type": "Feature"}, {"bbox": [8.531677, 47.430697, 8.537391, 47.431816], "geometry": {"coordinates": [[[8.537391, 47.430697], [8.537013, 47.430744], [8.536198, 47.430884], [8.535372, 47.431108], [8.533279, 47.431626], [8.53311, 47.43166], [8.531743, 47.431816], [8.531677, 47.431685]]], "type": "MultiLineString"}, "id": "4383", "properties": {}, "type": "Feature"}, {"bbox": [8.540288, 47.368538, 8.54063, 47.368767], "geometry": {"coordinates": [[[8.540288, 47.368729], [8.540564, 47.368767], [8.54063, 47.368538]]], "type": "MultiLineString"}, "id": "4384", "properties": {}, "type": "Feature"}, {"bbox": [8.571637, 47.388345, 8.573244, 47.390996], "geometry": {"coordinates": [[[8.573244, 47.388345], [8.573242, 47.388462], [8.573227, 47.388626], [8.57319, 47.388789], [8.57313, 47.388948], [8.573049, 47.389103], [8.572946, 47.389252], [8.572823, 47.389394], [8.572616, 47.389608], [8.571985, 47.390292], [8.571679, 47.390655], [8.571667, 47.390672], [8.571657, 47.390689], [8.571648, 47.390706], [8.571642, 47.390724], [8.571639, 47.390742], [8.571637, 47.390761], [8.571638, 47.390779], [8.571641, 47.390797], [8.571646, 47.390815], [8.571653, 47.390833], [8.571689, 47.390907], [8.571767, 47.390996]]], "type": "MultiLineString"}, "id": "4385", "properties": {}, "type": "Feature"}, {"bbox": [8.557226, 47.383244, 8.557666, 47.384317], "geometry": {"coordinates": [[[8.557226, 47.383244], [8.557346, 47.383324], [8.557373, 47.383361], [8.55741, 47.383681], [8.557419, 47.383746], [8.557434, 47.38381], [8.557455, 47.383874], [8.557617, 47.384261], [8.557666, 47.384317]]], "type": "MultiLineString"}, "id": "4386", "properties": {}, "type": "Feature"}, {"bbox": [8.519975, 47.343829, 8.521807, 47.346928], "geometry": {"coordinates": [[[8.521807, 47.346928], [8.521798, 47.346919], [8.521788, 47.34691], [8.521777, 47.346902], [8.521764, 47.346894], [8.521759, 47.34689], [8.521755, 47.346885], [8.521751, 47.34688], [8.521748, 47.346875], [8.521745, 47.34687], [8.521743, 47.346865], [8.521742, 47.346859], [8.521742, 47.346854], [8.521742, 47.346848], [8.521743, 47.346843], [8.521777, 47.346773], [8.521779, 47.346768], [8.52178, 47.346764], [8.521781, 47.346759], [8.521781, 47.346755], [8.521781, 47.346751], [8.52178, 47.346746], [8.521778, 47.346742], [8.521776, 47.346737], [8.521774, 47.346733], [8.521771, 47.346729], [8.521767, 47.346726], [8.521763, 47.346722], [8.521759, 47.346719], [8.521754, 47.346716], [8.521652, 47.346664], [8.521612, 47.346651], [8.521571, 47.346638], [8.52153, 47.346626], [8.521461, 47.34661], [8.521391, 47.346594], [8.521321, 47.34658], [8.521285, 47.346574], [8.52125, 47.346565], [8.521217, 47.346554], [8.521185, 47.346541], [8.521155, 47.346526], [8.521127, 47.346509], [8.521101, 47.34649], [8.520617, 47.346031], [8.520518, 47.345931], [8.520349, 47.345774], [8.520186, 47.345671], [8.520148, 47.345561], [8.520002, 47.345062], [8.519994, 47.345032], [8.519988, 47.345003], [8.519982, 47.344974], [8.519975, 47.344909], [8.519975, 47.344845], [8.519982, 47.34478], [8.520044, 47.344416], [8.520061, 47.34436], [8.520096, 47.344276], [8.520156, 47.344017], [8.520161, 47.344005], [8.520167, 47.343993], [8.520175, 47.343981], [8.520184, 47.34397], [8.520194, 47.343959], [8.520206, 47.343949], [8.520219, 47.34394], [8.520233, 47.343932], [8.520249, 47.343924], [8.520265, 47.343918], [8.520282, 47.343912], [8.520299, 47.343908], [8.520318, 47.343904], [8.520592, 47.343883], [8.521232, 47.343829]]], "type": "MultiLineString"}, "id": "4387", "properties": {}, "type": "Feature"}, {"bbox": [8.545108, 47.373527, 8.546186, 47.373907], "geometry": {"coordinates": [[[8.545108, 47.373527], [8.545732, 47.373742], [8.546186, 47.373907]]], "type": "MultiLineString"}, "id": "4388", "properties": {}, "type": "Feature"}, {"bbox": [8.577044, 47.384704, 8.577288, 47.384804], "geometry": {"coordinates": [[[8.577279, 47.384704], [8.577282, 47.38471], [8.577285, 47.384716], [8.577287, 47.384722], [8.577288, 47.384728], [8.577288, 47.384734], [8.577287, 47.384741], [8.577286, 47.384747], [8.577284, 47.384753], [8.577281, 47.384759], [8.577277, 47.384764], [8.577272, 47.38477], [8.577267, 47.384775], [8.577262, 47.38478], [8.577255, 47.384784], [8.577248, 47.384788], [8.577241, 47.384792], [8.577233, 47.384795], [8.577225, 47.384798], [8.577216, 47.3848], [8.577208, 47.384802], [8.577199, 47.384803], [8.57719, 47.384804], [8.57718, 47.384804], [8.577171, 47.384804], [8.577162, 47.384803], [8.577153, 47.384801], [8.577145, 47.384799], [8.577136, 47.384797], [8.577128, 47.384794], [8.577121, 47.38479], [8.577114, 47.384786], [8.577044, 47.38473]]], "type": "MultiLineString"}, "id": "4389", "properties": {}, "type": "Feature"}, {"bbox": [8.525215, 47.425713, 8.536487, 47.426204], "geometry": {"coordinates": [[[8.536487, 47.426204], [8.536342, 47.426139], [8.536158, 47.426121], [8.535973, 47.426107], [8.535788, 47.426098], [8.533523, 47.425992], [8.532272, 47.425943], [8.530397, 47.425853], [8.529802, 47.425823], [8.529207, 47.425797], [8.528611, 47.425775], [8.528138, 47.425757], [8.527664, 47.425738], [8.527191, 47.425717], [8.526955, 47.425713], [8.526719, 47.425714], [8.526483, 47.42572], [8.52606, 47.425733], [8.525638, 47.425747], [8.525215, 47.425762]]], "type": "MultiLineString"}, "id": "4390", "properties": {}, "type": "Feature"}, {"bbox": [8.585503, 47.404843, 8.586074, 47.405738], "geometry": {"coordinates": [[[8.585503, 47.404843], [8.585503, 47.40485], [8.585504, 47.404857], [8.585505, 47.404865], [8.585508, 47.404871], [8.585511, 47.404878], [8.585515, 47.404885], [8.58552, 47.404891], [8.585526, 47.404897], [8.585532, 47.404902], [8.58554, 47.404907], [8.585548, 47.404912], [8.585556, 47.404916], [8.585565, 47.40492], [8.585574, 47.404923], [8.585584, 47.404925], [8.585594, 47.404927], [8.585605, 47.404929], [8.585615, 47.404929], [8.585625, 47.404929], [8.585871, 47.404914], [8.585957, 47.404934], [8.585992, 47.404957], [8.586038, 47.405201], [8.586027, 47.405297], [8.586074, 47.405583], [8.586074, 47.405604], [8.586072, 47.405624], [8.586066, 47.405645], [8.586059, 47.405664], [8.586049, 47.405684], [8.586036, 47.405703], [8.586022, 47.405721], [8.586005, 47.405738]]], "type": "MultiLineString"}, "id": "4392", "properties": {}, "type": "Feature"}, {"bbox": [8.561937, 47.369665, 8.562734, 47.370056], "geometry": {"coordinates": [[[8.561937, 47.369839], [8.562155, 47.369695], [8.562161, 47.36969], [8.562168, 47.369685], [8.562175, 47.369681], [8.562183, 47.369677], [8.562192, 47.369674], [8.562201, 47.369671], [8.56221, 47.369669], [8.562219, 47.369667], [8.562229, 47.369666], [8.562239, 47.369665], [8.562248, 47.369665], [8.562258, 47.369666], [8.562268, 47.369667], [8.562277, 47.369669], [8.562286, 47.369671], [8.562295, 47.369674], [8.562303, 47.369678], [8.562311, 47.369682], [8.562688, 47.369905], [8.562697, 47.369911], [8.562705, 47.369918], [8.562713, 47.369925], [8.562719, 47.369932], [8.562724, 47.36994], [8.562729, 47.369948], [8.562732, 47.369956], [8.562734, 47.369989], [8.562734, 47.370023], [8.562733, 47.370056]]], "type": "MultiLineString"}, "id": "4394", "properties": {}, "type": "Feature"}, {"bbox": [8.568593, 47.351978, 8.569503, 47.353651], "geometry": {"coordinates": [[[8.569503, 47.351978], [8.569427, 47.352022], [8.569354, 47.352068], [8.569284, 47.352116], [8.568913, 47.352392], [8.568898, 47.352403], [8.568884, 47.352416], [8.568872, 47.352429], [8.568861, 47.352442], [8.568852, 47.352456], [8.568845, 47.352471], [8.568839, 47.352486], [8.568836, 47.352501], [8.568834, 47.352517], [8.568593, 47.353651]]], "type": "MultiLineString"}, "id": "4397", "properties": {}, "type": "Feature"}, {"bbox": [8.509421, 47.352891, 8.510172, 47.354262], "geometry": {"coordinates": [[[8.509421, 47.354262], [8.509473, 47.354172], [8.509559, 47.354043], [8.509593, 47.353992], [8.509647, 47.353911], [8.509675, 47.353863], [8.509791, 47.353672], [8.509827, 47.353598], [8.509874, 47.353514], [8.509902, 47.353461], [8.509984, 47.353246], [8.510017, 47.353173], [8.510129, 47.352969], [8.510172, 47.352891]]], "type": "MultiLineString"}, "id": "4398", "properties": {}, "type": "Feature"}, {"bbox": [8.566898, 47.34712, 8.567654, 47.347742], "geometry": {"coordinates": [[[8.566898, 47.34712], [8.567634, 47.347424], [8.567639, 47.347431], [8.567644, 47.347438], [8.567648, 47.347446], [8.567651, 47.347453], [8.567653, 47.347461], [8.567654, 47.347468], [8.567654, 47.347476], [8.567653, 47.347484], [8.567651, 47.347492], [8.567648, 47.347499], [8.567643, 47.347506], [8.567639, 47.347513], [8.567633, 47.34752], [8.567626, 47.347526], [8.567618, 47.347532], [8.567428, 47.347742]]], "type": "MultiLineString"}, "id": "4399", "properties": {}, "type": "Feature"}, {"bbox": [8.572734, 47.40731, 8.574132, 47.407457], "geometry": {"coordinates": [[[8.572734, 47.40731], [8.573629, 47.407414], [8.573679, 47.407432], [8.573896, 47.407457], [8.574132, 47.407394]]], "type": "MultiLineString"}, "id": "4400", "properties": {}, "type": "Feature"}, {"bbox": [8.498749, 47.420838, 8.499922, 47.421091], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.498785, 47.421085], [8.49882, 47.421077], [8.498855, 47.421068], [8.499304, 47.420842], [8.499489, 47.420995], [8.499495, 47.420999], [8.499501, 47.421002], [8.499507, 47.421005], [8.499514, 47.421008], [8.499521, 47.42101], [8.499528, 47.421012], [8.499536, 47.421013], [8.499544, 47.421014], [8.499552, 47.421014], [8.499559, 47.421014], [8.499567, 47.421014], [8.499575, 47.421013], [8.499583, 47.421012], [8.49959, 47.42101], [8.499597, 47.421008], [8.499706, 47.420951], [8.499814, 47.420895], [8.499922, 47.420838]]], "type": "MultiLineString"}, "id": "4401", "properties": {}, "type": "Feature"}, {"bbox": [8.545841, 47.401451, 8.546362, 47.402034], "geometry": {"coordinates": [[[8.545841, 47.401451], [8.546362, 47.401877], [8.546115, 47.402026], [8.5461, 47.402029], [8.546085, 47.402032], [8.546069, 47.402034], [8.546053, 47.402034], [8.546037, 47.402034], [8.546021, 47.402033], [8.546006, 47.40203], [8.54599, 47.402027], [8.545976, 47.402023], [8.545961, 47.402018]]], "type": "MultiLineString"}, "id": "4403", "properties": {}, "type": "Feature"}, {"bbox": [8.583285, 47.4017, 8.584581, 47.402081], "geometry": {"coordinates": [[[8.583285, 47.401995], [8.583371, 47.401976], [8.583691, 47.401902], [8.583824, 47.401859], [8.583934, 47.401821], [8.584035, 47.401785], [8.584261, 47.401703], [8.584289, 47.4017], [8.584311, 47.401711], [8.584489, 47.401901], [8.584511, 47.40194], [8.584567, 47.402041], [8.584581, 47.402081]]], "type": "MultiLineString"}, "id": "4404", "properties": {}, "type": "Feature"}, {"bbox": [8.542169, 47.392003, 8.542871, 47.392509], "geometry": {"coordinates": [[[8.542871, 47.392262], [8.542608, 47.392003], [8.542512, 47.392041], [8.542169, 47.39232], [8.542359, 47.392509]]], "type": "MultiLineString"}, "id": "4405", "properties": {}, "type": "Feature"}, {"bbox": [8.548124, 47.401628, 8.549771, 47.401863], "geometry": {"coordinates": [[[8.548124, 47.401704], [8.548312, 47.40174], [8.548494, 47.401751], [8.548611, 47.401733], [8.548667, 47.401724], [8.548794, 47.401711], [8.548994, 47.401704], [8.549006, 47.401702], [8.549018, 47.401699], [8.549029, 47.401695], [8.549039, 47.40169], [8.549049, 47.401685], [8.549058, 47.40168], [8.549067, 47.401674], [8.549075, 47.401667], [8.549082, 47.40166], [8.549088, 47.401653], [8.549093, 47.401645], [8.549115, 47.401639], [8.549137, 47.401634], [8.54916, 47.40163], [8.549442, 47.401628], [8.54953, 47.401642], [8.549754, 47.401841], [8.549771, 47.401863]]], "type": "MultiLineString"}, "id": "4406", "properties": {}, "type": "Feature"}, {"bbox": [8.574245, 47.37319, 8.57498, 47.373501], "geometry": {"coordinates": [[[8.57498, 47.37319], [8.574946, 47.373203], [8.574913, 47.373219], [8.574882, 47.373236], [8.574854, 47.373255], [8.574828, 47.373275], [8.574805, 47.373297], [8.574784, 47.373321], [8.574766, 47.373345], [8.574752, 47.37337], [8.574741, 47.373396], [8.574732, 47.373423], [8.574726, 47.373433], [8.574718, 47.373442], [8.574708, 47.373452], [8.574698, 47.37346], [8.574686, 47.373468], [8.574674, 47.373475], [8.57466, 47.373481], [8.574646, 47.373487], [8.574631, 47.373492], [8.574616, 47.373495], [8.5746, 47.373498], [8.574584, 47.3735], [8.574568, 47.373501], [8.574551, 47.373501], [8.574535, 47.3735], [8.574519, 47.373498], [8.574503, 47.373495], [8.574481, 47.373488], [8.574458, 47.373483], [8.574434, 47.373479], [8.57441, 47.373477], [8.574385, 47.373476], [8.574361, 47.373476], [8.574336, 47.373478], [8.574313, 47.373482], [8.574289, 47.373487], [8.574267, 47.373493], [8.574245, 47.373501]]], "type": "MultiLineString"}, "id": "4408", "properties": {}, "type": "Feature"}, {"bbox": [8.47798, 47.378387, 8.479467, 47.379383], "geometry": {"coordinates": [[[8.479467, 47.379383], [8.479451, 47.379374], [8.479437, 47.379365], [8.479423, 47.379354], [8.479411, 47.379343], [8.479401, 47.379332], [8.479392, 47.37932], [8.479325, 47.379175], [8.479298, 47.379142], [8.479266, 47.379111], [8.479231, 47.379081], [8.479192, 47.379054], [8.47915, 47.379029], [8.479054, 47.378978], [8.478958, 47.378926], [8.478862, 47.378874], [8.478569, 47.378711], [8.478275, 47.378548], [8.47798, 47.378387]]], "type": "MultiLineString"}, "id": "4409", "properties": {}, "type": "Feature"}, {"bbox": [8.4808, 47.379242, 8.481931, 47.380286], "geometry": {"coordinates": [[[8.4808, 47.380286], [8.481265, 47.379933], [8.481442, 47.379806], [8.48161, 47.379672], [8.481768, 47.379534], [8.481821, 47.379485], [8.481874, 47.379436], [8.481926, 47.379387], [8.481928, 47.379383], [8.481929, 47.37938], [8.48193, 47.379376], [8.481931, 47.379372], [8.481931, 47.379368], [8.48193, 47.379364], [8.481929, 47.37936], [8.481928, 47.379356], [8.481926, 47.379352], [8.481923, 47.379349], [8.48192, 47.379346], [8.481916, 47.379342], [8.481913, 47.379339], [8.481896, 47.379323], [8.481877, 47.379308], [8.481856, 47.379294], [8.481833, 47.379282], [8.481809, 47.379271], [8.481784, 47.379261], [8.481757, 47.379253], [8.48173, 47.379247], [8.481702, 47.379242]]], "type": "MultiLineString"}, "id": "4410", "properties": {}, "type": "Feature"}, {"bbox": [8.496801, 47.402181, 8.498103, 47.403053], "geometry": {"coordinates": [[[8.498081, 47.402693], [8.498102, 47.402736], [8.498102, 47.402738], [8.498103, 47.40274], [8.498103, 47.402741], [8.498102, 47.402743], [8.498102, 47.402745], [8.498101, 47.402747], [8.4981, 47.402749], [8.498099, 47.40275], [8.498098, 47.402752], [8.498097, 47.402753], [8.498095, 47.402755], [8.498093, 47.402756], [8.498091, 47.402757], [8.498089, 47.402758], [8.497454, 47.402999], [8.497431, 47.403005], [8.497406, 47.403011], [8.497382, 47.403015], [8.497356, 47.403017], [8.497343, 47.403018], [8.497329, 47.40302], [8.497316, 47.403023], [8.497304, 47.403026], [8.497293, 47.40303], [8.497282, 47.403034], [8.49724, 47.403051], [8.497239, 47.403052], [8.497238, 47.403052], [8.497237, 47.403052], [8.497236, 47.403053], [8.497235, 47.403053], [8.497233, 47.403053], [8.497232, 47.403053], [8.497231, 47.403053], [8.49723, 47.403053], [8.497228, 47.403052], [8.497227, 47.403052], [8.497226, 47.403052], [8.497225, 47.403051], [8.497224, 47.403051], [8.497223, 47.40305], [8.497222, 47.40305], [8.497221, 47.403049], [8.49722, 47.403049], [8.49722, 47.403048], [8.497219, 47.403047], [8.497219, 47.403046], [8.497068, 47.40287], [8.497065, 47.402868], [8.497062, 47.402865], [8.497058, 47.402862], [8.497054, 47.40286], [8.497052, 47.402859], [8.49705, 47.402858], [8.497048, 47.402857], [8.497046, 47.402855], [8.497045, 47.402854], [8.497043, 47.402852], [8.497042, 47.40285], [8.496943, 47.40263], [8.496942, 47.402629], [8.496941, 47.402628], [8.496939, 47.402627], [8.496938, 47.402626], [8.496937, 47.402625], [8.496935, 47.402624], [8.496933, 47.402624], [8.496931, 47.402623], [8.49693, 47.402622], [8.496928, 47.402622], [8.496926, 47.402622], [8.496924, 47.402622], [8.496922, 47.402621], [8.49692, 47.402621], [8.496918, 47.402622], [8.496886, 47.402627], [8.496884, 47.402627], [8.496882, 47.402627], [8.496881, 47.402627], [8.496879, 47.402627], [8.496877, 47.402627], [8.496876, 47.402626], [8.496874, 47.402626], [8.496873, 47.402625], [8.496871, 47.402625], [8.49687, 47.402624], [8.496869, 47.402623], [8.496868, 47.402622], [8.496867, 47.402621], [8.496866, 47.40262], [8.496865, 47.402619], [8.496865, 47.402618], [8.496809, 47.402528], [8.496806, 47.402521], [8.496803, 47.402514], [8.496802, 47.402507], [8.496801, 47.402499], [8.496801, 47.402309], [8.496805, 47.402289], [8.496811, 47.402269], [8.49682, 47.40225], [8.496831, 47.402232], [8.496845, 47.402214], [8.496861, 47.402197], [8.496879, 47.402181]]], "type": "MultiLineString"}, "id": "4412", "properties": {}, "type": "Feature"}, {"bbox": [8.539794, 47.406237, 8.540912, 47.406602], "geometry": {"coordinates": [[[8.539794, 47.406237], [8.540269, 47.406477], [8.540294, 47.406487], [8.540321, 47.406495], [8.540349, 47.406501], [8.540378, 47.406506], [8.540432, 47.406509], [8.540486, 47.406515], [8.540538, 47.406524], [8.540638, 47.406544], [8.540737, 47.406567], [8.540834, 47.406591], [8.54084, 47.406594], [8.540847, 47.406596], [8.540854, 47.406598], [8.540861, 47.4066], [8.540868, 47.406601], [8.540875, 47.406602], [8.540883, 47.406602], [8.54089, 47.406602], [8.540897, 47.406602], [8.540905, 47.406601], [8.540912, 47.406599]]], "type": "MultiLineString"}, "id": "4413", "properties": {}, "type": "Feature"}, {"bbox": [8.497857, 47.402026, 8.498275, 47.402967], "geometry": {"coordinates": [[[8.497857, 47.402026], [8.497857, 47.402087], [8.497887, 47.402206], [8.497995, 47.402562], [8.498022, 47.402606], [8.498051, 47.40265], [8.498081, 47.402693], [8.498171, 47.402829], [8.498275, 47.402967]]], "type": "MultiLineString"}, "id": "4419", "properties": {}, "type": "Feature"}, {"bbox": [8.54396, 47.368709, 8.544325, 47.36896], "geometry": {"coordinates": [[[8.544198, 47.36896], [8.544161, 47.36894], [8.544325, 47.368827], [8.544096, 47.368709], [8.54396, 47.368821]]], "type": "MultiLineString"}, "id": "4421", "properties": {}, "type": "Feature"}, {"bbox": [8.54091, 47.371755, 8.540947, 47.371979], "geometry": {"coordinates": [[[8.540947, 47.371755], [8.540931, 47.371829], [8.540919, 47.371904], [8.54091, 47.371979]]], "type": "MultiLineString"}, "id": "4422", "properties": {}, "type": "Feature"}, {"bbox": [8.500367, 47.381829, 8.500602, 47.38202], "geometry": {"coordinates": [[[8.500602, 47.38202], [8.50042, 47.381849], [8.500367, 47.381829]]], "type": "MultiLineString"}, "id": "4425", "properties": {}, "type": "Feature"}, {"bbox": [8.586943, 47.39895, 8.58759, 47.39942], "geometry": {"coordinates": [[[8.586943, 47.39942], [8.587559, 47.39931], [8.587563, 47.399309], [8.587566, 47.399308], [8.58757, 47.399306], [8.587573, 47.399304], [8.587576, 47.399302], [8.587579, 47.3993], [8.587582, 47.399297], [8.587584, 47.399295], [8.587586, 47.399292], [8.587587, 47.399289], [8.587589, 47.399287], [8.587589, 47.399284], [8.58759, 47.399281], [8.58759, 47.399278], [8.587529, 47.399042], [8.587505, 47.398992], [8.587466, 47.39895]]], "type": "MultiLineString"}, "id": "4429", "properties": {}, "type": "Feature"}, {"bbox": [8.477157, 47.380556, 8.477403, 47.381272], "geometry": {"coordinates": [[[8.477202, 47.381272], [8.477181, 47.381114], [8.477166, 47.380956], [8.477157, 47.380797], [8.477159, 47.380739], [8.477165, 47.380682], [8.477175, 47.380625], [8.477181, 47.380616], [8.477188, 47.380608], [8.477197, 47.380601], [8.477206, 47.380594], [8.477216, 47.380588], [8.477227, 47.380582], [8.477238, 47.380577], [8.47725, 47.380573], [8.477263, 47.380569], [8.477276, 47.380567], [8.477289, 47.380565], [8.477303, 47.380564], [8.477317, 47.380563], [8.477403, 47.380556]]], "type": "MultiLineString"}, "id": "4433", "properties": {}, "type": "Feature"}, {"bbox": [8.59461, 47.357117, 8.595343, 47.357417], "geometry": {"coordinates": [[[8.595343, 47.35714], [8.595326, 47.357145], [8.595309, 47.357149], [8.595291, 47.357152], [8.595274, 47.357154], [8.595256, 47.357154], [8.595147, 47.357144], [8.595039, 47.357132], [8.594932, 47.357118], [8.594922, 47.357117], [8.594912, 47.357117], [8.594903, 47.357117], [8.594893, 47.357118], [8.594883, 47.357119], [8.594874, 47.357121], [8.594864, 47.357124], [8.594856, 47.357127], [8.594847, 47.357131], [8.594839, 47.357135], [8.594832, 47.357139], [8.594825, 47.357144], [8.594819, 47.357149], [8.594814, 47.357155], [8.594681, 47.357305], [8.59461, 47.357417]]], "type": "MultiLineString"}, "id": "4434", "properties": {}, "type": "Feature"}, {"bbox": [8.48803, 47.421988, 8.493074, 47.423043], "geometry": {"coordinates": [[[8.493074, 47.423043], [8.493026, 47.422918], [8.49302, 47.422907], [8.493013, 47.422896], [8.493005, 47.422886], [8.492995, 47.422876], [8.492984, 47.422867], [8.492972, 47.422858], [8.492959, 47.422851], [8.492944, 47.422844], [8.492929, 47.422838], [8.492914, 47.422832], [8.492897, 47.422828], [8.492881, 47.422825], [8.492671, 47.422782], [8.492634, 47.422768], [8.4926, 47.422752], [8.492567, 47.422734], [8.492537, 47.422714], [8.49251, 47.422692], [8.491763, 47.42201], [8.491754, 47.422005], [8.491744, 47.422001], [8.491734, 47.421997], [8.491724, 47.421994], [8.491713, 47.421992], [8.491702, 47.42199], [8.491691, 47.421988], [8.49168, 47.421988], [8.491668, 47.421988], [8.491657, 47.421989], [8.491646, 47.42199], [8.491635, 47.421992], [8.491624, 47.421994], [8.491226, 47.422075], [8.491164, 47.422085], [8.491101, 47.422093], [8.491037, 47.422097], [8.490973, 47.422097], [8.490909, 47.422094], [8.490669, 47.422081], [8.490429, 47.422068], [8.490188, 47.422056], [8.490109, 47.42205], [8.49003, 47.422047], [8.489951, 47.422047], [8.489602, 47.42206], [8.489254, 47.422075], [8.488907, 47.422094], [8.488815, 47.422098], [8.488723, 47.422101], [8.488631, 47.422103], [8.488182, 47.422092], [8.488161, 47.42209], [8.488141, 47.422088], [8.488121, 47.422084], [8.488101, 47.42208], [8.488082, 47.422074], [8.488064, 47.422067], [8.488047, 47.422059], [8.48803, 47.42205]]], "type": "MultiLineString"}, "id": "4435", "properties": {}, "type": "Feature"}, {"bbox": [8.511179, 47.399732, 8.529955, 47.408749], "geometry": {"coordinates": [[[8.529955, 47.399732], [8.529771, 47.400478], [8.529744, 47.400598], [8.529726, 47.400718], [8.529714, 47.400839], [8.529704, 47.400935], [8.529684, 47.40103], [8.529657, 47.401125], [8.529653, 47.401134], [8.529602, 47.401257], [8.529536, 47.401377], [8.529455, 47.401492], [8.529361, 47.401603], [8.529321, 47.401646], [8.529284, 47.401686], [8.528712, 47.402297], [8.528605, 47.402426], [8.528517, 47.402562], [8.52845, 47.402702], [8.528358, 47.402907], [8.528245, 47.403106], [8.528113, 47.4033], [8.527999, 47.40344], [8.527999, 47.40344], [8.527961, 47.403483], [8.527919, 47.403524], [8.527873, 47.403563], [8.527785, 47.4036], [8.527722, 47.403659], [8.527681, 47.403678], [8.52764, 47.403696], [8.527597, 47.403713], [8.527238, 47.403846], [8.526784, 47.404014], [8.526566, 47.4041], [8.526355, 47.404192], [8.526151, 47.404292], [8.525721, 47.404511], [8.525663, 47.404543], [8.525608, 47.404578], [8.525556, 47.404614], [8.525498, 47.404663], [8.525446, 47.404714], [8.525399, 47.404768], [8.525359, 47.404825], [8.525333, 47.404865], [8.525304, 47.404905], [8.525275, 47.404945], [8.525246, 47.404979], [8.525211, 47.40502], [8.525174, 47.405061], [8.525135, 47.4051], [8.524954, 47.405272], [8.524666, 47.405549], [8.524547, 47.405669], [8.524201, 47.406044], [8.523941, 47.406323], [8.523409, 47.406841], [8.52338, 47.406871], [8.523263, 47.407026], [8.523194, 47.407108], [8.523114, 47.40718], [8.522911, 47.407341], [8.522848, 47.407392], [8.522747, 47.407466], [8.52253, 47.407603], [8.522421, 47.407687], [8.522315, 47.407774], [8.52219, 47.407849], [8.521937, 47.407988], [8.521778, 47.408075], [8.521479, 47.408238], [8.521367, 47.4083], [8.521103, 47.408456], [8.520762, 47.408655], [8.520744, 47.408662], [8.520679, 47.408687], [8.520604, 47.408707], [8.520507, 47.408727], [8.520507, 47.408727], [8.520443, 47.408736], [8.520378, 47.408744], [8.520313, 47.408749], [8.520273, 47.408749], [8.520233, 47.408748], [8.520194, 47.408747], [8.520105, 47.408738], [8.520018, 47.408725], [8.519933, 47.408708], [8.519894, 47.4087], [8.519783, 47.408677], [8.519372, 47.408609], [8.519034, 47.408548], [8.518985, 47.408541], [8.518935, 47.408537], [8.518885, 47.408535], [8.518835, 47.408536], [8.518785, 47.408541], [8.518736, 47.408548], [8.518625, 47.408567], [8.51857, 47.408577], [8.518214, 47.40864], [8.517896, 47.408676], [8.517802, 47.408682], [8.517706, 47.408677], [8.517614, 47.408665], [8.517054, 47.408562], [8.516927, 47.408533], [8.516803, 47.408498], [8.516698, 47.408457], [8.516634, 47.408434], [8.516394, 47.408348], [8.515899, 47.408184], [8.515625, 47.408076], [8.515075, 47.407858], [8.514934, 47.407808], [8.514786, 47.407768], [8.514633, 47.407738], [8.514633, 47.407738], [8.514495, 47.407714], [8.514326, 47.40769], [8.514238, 47.407673], [8.514151, 47.407649], [8.514068, 47.407616], [8.513814, 47.407497], [8.513752, 47.407462], [8.513697, 47.407421], [8.513652, 47.407373], [8.513609, 47.407297], [8.513603, 47.407287], [8.513596, 47.407246], [8.513604, 47.407217], [8.513427, 47.407222], [8.513193, 47.407239], [8.512959, 47.407258], [8.512725, 47.407281], [8.512725, 47.407281], [8.512499, 47.407305], [8.512287, 47.407325], [8.512074, 47.407348], [8.511862, 47.407373], [8.511456, 47.407432], [8.511179, 47.407465]]], "type": "MultiLineString"}, "id": "4437", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.395753, 8.574951, 47.397621], "geometry": {"coordinates": [[[8.570557, 47.397621], [8.570911, 47.397439], [8.571449, 47.397142], [8.571516, 47.397101], [8.571577, 47.397057], [8.571632, 47.397009], [8.571681, 47.396958], [8.571723, 47.396905], [8.571803, 47.39679], [8.571911, 47.396635], [8.571938, 47.396601], [8.571968, 47.396569], [8.572002, 47.396538], [8.57204, 47.396509], [8.572082, 47.396483], [8.572126, 47.396459], [8.572173, 47.396438], [8.572223, 47.396419], [8.572275, 47.396404], [8.572771, 47.39627], [8.572857, 47.396246], [8.572942, 47.39622], [8.573026, 47.396194], [8.573072, 47.396179], [8.573118, 47.396164], [8.573164, 47.396148], [8.573931, 47.395879], [8.574202, 47.395797], [8.574332, 47.395768], [8.574467, 47.395757], [8.574467, 47.395757], [8.574688, 47.395753], [8.574708, 47.395755], [8.574728, 47.395757], [8.574747, 47.395761], [8.574766, 47.395766], [8.574784, 47.395772], [8.574809, 47.395783], [8.574832, 47.395795], [8.574854, 47.395808], [8.574873, 47.395823], [8.574891, 47.395839], [8.574907, 47.395855], [8.57492, 47.395873], [8.574931, 47.395891], [8.57494, 47.39591], [8.574946, 47.39593], [8.57495, 47.395949], [8.574951, 47.395969]]], "type": "MultiLineString"}, "id": "4438", "properties": {}, "type": "Feature"}, {"bbox": [8.530502, 47.401958, 8.533544, 47.40306], "geometry": {"coordinates": [[[8.533544, 47.401958], [8.533543, 47.40198], [8.533539, 47.402001], [8.533533, 47.402023], [8.533523, 47.402044], [8.533511, 47.402064], [8.533497, 47.402084], [8.53348, 47.402104], [8.533461, 47.402123], [8.533439, 47.402142], [8.533415, 47.402159], [8.53339, 47.402175], [8.532848, 47.402494], [8.532709, 47.402566], [8.532565, 47.402632], [8.532414, 47.40269], [8.532071, 47.402833], [8.531958, 47.402878], [8.531842, 47.40292], [8.531711, 47.40295], [8.531576, 47.402972], [8.531438, 47.402986], [8.531163, 47.403006], [8.530887, 47.403027], [8.530612, 47.40305], [8.530576, 47.403054], [8.530539, 47.403057], [8.530502, 47.40306]]], "type": "MultiLineString"}, "id": "4446", "properties": {}, "type": "Feature"}, {"bbox": [8.505396, 47.368952, 8.505925, 47.369389], "geometry": {"coordinates": [[[8.505925, 47.369389], [8.505523, 47.369313], [8.505503, 47.369301], [8.505483, 47.369289], [8.505466, 47.369275], [8.50545, 47.369261], [8.505436, 47.369246], [8.505424, 47.36923], [8.505414, 47.369213], [8.505406, 47.369196], [8.505401, 47.369178], [8.505397, 47.36916], [8.505396, 47.369142], [8.505397, 47.369124], [8.5054, 47.369106], [8.505406, 47.369089], [8.505414, 47.369071], [8.505423, 47.369055], [8.505435, 47.369039], [8.505449, 47.369023], [8.50546, 47.369013], [8.505472, 47.369002], [8.505485, 47.368993], [8.505499, 47.368985], [8.505515, 47.368977], [8.505531, 47.36897], [8.505548, 47.368965], [8.505566, 47.36896], [8.505584, 47.368956], [8.505603, 47.368954], [8.505621, 47.368952], [8.50564, 47.368952], [8.505659, 47.368952], [8.505678, 47.368954], [8.505697, 47.368957], [8.505715, 47.368961], [8.505732, 47.368966], [8.505749, 47.368973], [8.505765, 47.36898], [8.50578, 47.368988], [8.505794, 47.368996], [8.505807, 47.369006], [8.505818, 47.369016], [8.505828, 47.369027], [8.505837, 47.369039], [8.505844, 47.369051], [8.50585, 47.369063], [8.505854, 47.369076], [8.505856, 47.369089], [8.505857, 47.369102], [8.505847, 47.369141], [8.505842, 47.369182], [8.505841, 47.369222], [8.505846, 47.369262], [8.505852, 47.369285], [8.505861, 47.369308], [8.505872, 47.369329], [8.505887, 47.36935], [8.505905, 47.36937], [8.505925, 47.369389]]], "type": "MultiLineString"}, "id": "4454", "properties": {}, "type": "Feature"}, {"bbox": [8.53334, 47.394164, 8.534685, 47.394711], "geometry": {"coordinates": [[[8.53334, 47.394164], [8.53397, 47.39442], [8.534685, 47.394711]]], "type": "MultiLineString"}, "id": "4456", "properties": {}, "type": "Feature"}, {"bbox": [8.544393, 47.368831, 8.544933, 47.369139], "geometry": {"coordinates": [[[8.544393, 47.368831], [8.544933, 47.369139]]], "type": "MultiLineString"}, "id": "4457", "properties": {}, "type": "Feature"}, {"bbox": [8.534951, 47.411606, 8.537817, 47.411838], "geometry": {"coordinates": [[[8.537817, 47.411803], [8.537489, 47.411838], [8.536617, 47.411756], [8.534951, 47.411606]]], "type": "MultiLineString"}, "id": "4458", "properties": {}, "type": "Feature"}, {"bbox": [8.517398, 47.348981, 8.523797, 47.352207], "geometry": {"coordinates": [[[8.523797, 47.352207], [8.523453, 47.352077], [8.523206, 47.351993], [8.522569, 47.35178], [8.521643, 47.351468], [8.520465, 47.35107], [8.519139, 47.35062], [8.51866, 47.350459], [8.51858, 47.350389], [8.517898, 47.349944], [8.517798, 47.349867], [8.517722, 47.349794], [8.517676, 47.349741], [8.517638, 47.349683], [8.517587, 47.349602], [8.517533, 47.349498], [8.517501, 47.349406], [8.517467, 47.349304], [8.517441, 47.349209], [8.51743, 47.349121], [8.517398, 47.348981]]], "type": "MultiLineString"}, "id": "4459", "properties": {}, "type": "Feature"}, {"bbox": [8.584924, 47.356475, 8.586229, 47.356963], "geometry": {"coordinates": [[[8.584924, 47.356475], [8.585405, 47.356672], [8.58554, 47.356734], [8.585795, 47.35679], [8.58584, 47.3568], [8.585894, 47.35681], [8.586186, 47.35694], [8.586229, 47.356963]]], "type": "MultiLineString"}, "id": "4462", "properties": {}, "type": "Feature"}, {"bbox": [8.529236, 47.348519, 8.53154, 47.348606], "geometry": {"coordinates": [[[8.53154, 47.348519], [8.53128, 47.348537], [8.531122, 47.348559], [8.530895, 47.348574], [8.530812, 47.348575], [8.530143, 47.348569], [8.529948, 47.348571], [8.529236, 47.348606]]], "type": "MultiLineString"}, "id": "4463", "properties": {}, "type": "Feature"}, {"bbox": [8.543475, 47.369628, 8.544535, 47.370463], "geometry": {"coordinates": [[[8.543815, 47.370364], [8.543829, 47.370325], [8.543637, 47.37015], [8.543633, 47.370131], [8.544161, 47.369877], [8.544262, 47.369906], [8.544351, 47.369969], [8.544491, 47.369898], [8.544513, 47.369827], [8.544535, 47.369756], [8.544492, 47.369688], [8.544462, 47.369628], [8.544413, 47.369669], [8.544319, 47.369715], [8.544222, 47.369649], [8.543763, 47.369968], [8.543745, 47.36998], [8.543718, 47.369981], [8.543585, 47.369944], [8.543475, 47.370206], [8.543586, 47.370251], [8.543553, 47.370338], [8.543564, 47.370427], [8.543715, 47.370422], [8.543778, 47.370463], [8.543815, 47.370364]]], "type": "MultiLineString"}, "id": "4465", "properties": {}, "type": "Feature"}, {"bbox": [8.506615, 47.4035, 8.515553, 47.404299], "geometry": {"coordinates": [[[8.506615, 47.4035], [8.506817, 47.403579], [8.506941, 47.403626], [8.507095, 47.403687], [8.507208, 47.403725], [8.507329, 47.403746], [8.507457, 47.403749], [8.507794, 47.403736], [8.508133, 47.403717], [8.508191, 47.403713], [8.508387, 47.403706], [8.508586, 47.403705], [8.508786, 47.403712], [8.50923, 47.40374], [8.509239, 47.403741], [8.509245, 47.403742], [8.509494, 47.403762], [8.509754, 47.403792], [8.510238, 47.403859], [8.510613, 47.403903], [8.510628, 47.403904], [8.510815, 47.40392], [8.51101, 47.403932], [8.511207, 47.403937], [8.511405, 47.403949], [8.511601, 47.403967], [8.511797, 47.403991], [8.51224, 47.404056], [8.512563, 47.404129], [8.512903, 47.404199], [8.51316, 47.404242], [8.513426, 47.404268], [8.513501, 47.404273], [8.513577, 47.404278], [8.513724, 47.404287], [8.513903, 47.404298], [8.514009, 47.404299], [8.514117, 47.404285], [8.514122, 47.404284], [8.514306, 47.404251], [8.514339, 47.404245], [8.514459, 47.404237], [8.514523, 47.404236], [8.51488, 47.40419], [8.514894, 47.404189], [8.514985, 47.404172], [8.515111, 47.404139], [8.515177, 47.404121], [8.515194, 47.404115], [8.515321, 47.404069], [8.515531, 47.403965], [8.515553, 47.403956]]], "type": "MultiLineString"}, "id": "4466", "properties": {}, "type": "Feature"}, {"bbox": [8.560088, 47.350387, 8.560988, 47.351252], "geometry": {"coordinates": [[[8.560088, 47.351252], [8.560227, 47.351052], [8.560274, 47.350994], [8.560323, 47.350937], [8.560373, 47.35088], [8.560391, 47.35086], [8.560412, 47.35084], [8.560435, 47.350822], [8.56046, 47.350805], [8.560487, 47.350789], [8.560516, 47.350775], [8.560546, 47.350763], [8.560578, 47.350753], [8.560611, 47.350744], [8.560645, 47.350738], [8.56068, 47.350733], [8.560799, 47.350719], [8.560819, 47.350715], [8.560839, 47.350709], [8.560859, 47.350703], [8.560877, 47.350696], [8.560894, 47.350687], [8.560911, 47.350678], [8.560926, 47.350667], [8.560939, 47.350656], [8.560951, 47.350644], [8.560962, 47.350631], [8.560971, 47.350618], [8.560978, 47.350604], [8.560983, 47.35059], [8.560987, 47.350576], [8.560988, 47.350561], [8.560988, 47.350547], [8.560986, 47.350532], [8.560983, 47.350518], [8.560977, 47.350504], [8.56097, 47.35049], [8.560961, 47.350477], [8.56095, 47.350465], [8.560938, 47.350453], [8.560924, 47.350441], [8.560909, 47.350431], [8.560892, 47.350422], [8.560875, 47.350413], [8.560856, 47.350406], [8.560837, 47.3504], [8.560817, 47.350395], [8.560796, 47.350391], [8.560775, 47.350388], [8.560754, 47.350387], [8.560733, 47.350387], [8.560711, 47.350388], [8.56069, 47.35039], [8.560669, 47.350394], [8.560649, 47.350399], [8.56063, 47.350405], [8.560611, 47.350412], [8.560593, 47.35042], [8.560577, 47.350429], [8.560561, 47.350439], [8.560547, 47.35045], [8.560535, 47.350462], [8.560389, 47.35064], [8.560271, 47.350827], [8.560182, 47.351021], [8.560088, 47.351252]]], "type": "MultiLineString"}, "id": "4470", "properties": {}, "type": "Feature"}, {"bbox": [8.481873, 47.374761, 8.482878, 47.375545], "geometry": {"coordinates": [[[8.482878, 47.375545], [8.482811, 47.375507], [8.48274, 47.375474], [8.482665, 47.375445], [8.482586, 47.37542], [8.482434, 47.375376], [8.482428, 47.375375], [8.482422, 47.375373], [8.482417, 47.375372], [8.482411, 47.375369], [8.482406, 47.375367], [8.482402, 47.375364], [8.482397, 47.375361], [8.482393, 47.375358], [8.48239, 47.375354], [8.482387, 47.375351], [8.482384, 47.375347], [8.482383, 47.375343], [8.482381, 47.37534], [8.48238, 47.375336], [8.48238, 47.375332], [8.48238, 47.375328], [8.482407, 47.375261], [8.482413, 47.375246], [8.482417, 47.37523], [8.48242, 47.375214], [8.482431, 47.375153], [8.482442, 47.375091], [8.48245, 47.37503], [8.48245, 47.375024], [8.482449, 47.375018], [8.482448, 47.375012], [8.482445, 47.375006], [8.482442, 47.375], [8.482438, 47.374994], [8.482434, 47.374989], [8.482428, 47.374984], [8.482422, 47.374979], [8.482416, 47.374975], [8.482408, 47.374971], [8.482401, 47.374968], [8.481873, 47.374761]]], "type": "MultiLineString"}, "id": "4471", "properties": {}, "type": "Feature"}, {"bbox": [8.565871, 47.348567, 8.566393, 47.349763], "geometry": {"coordinates": [[[8.565871, 47.349763], [8.565905, 47.349679], [8.565948, 47.349598], [8.565998, 47.349518], [8.566374, 47.348942], [8.56638, 47.348933], [8.566385, 47.348924], [8.566389, 47.348915], [8.566392, 47.348906], [8.566393, 47.348896], [8.566393, 47.348886], [8.566392, 47.348877], [8.56639, 47.348867], [8.566386, 47.348858], [8.566381, 47.348849], [8.566375, 47.34884], [8.566368, 47.348832], [8.56636, 47.348824], [8.566351, 47.348817], [8.566341, 47.34881], [8.56633, 47.348805], [8.56632, 47.3488], [8.566311, 47.348794], [8.566302, 47.348788], [8.566294, 47.348781], [8.566288, 47.348773], [8.566282, 47.348765], [8.566277, 47.348757], [8.566273, 47.348749], [8.56627, 47.34874], [8.566269, 47.348732], [8.566268, 47.348723], [8.566269, 47.348714], [8.566271, 47.348705], [8.566273, 47.348697], [8.566384, 47.348567]]], "type": "MultiLineString"}, "id": "4473", "properties": {}, "type": "Feature"}, {"bbox": [8.545143, 47.424094, 8.546314, 47.425197], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546307, 47.42519], [8.546301, 47.425183], [8.546296, 47.425176], [8.546292, 47.425168], [8.546289, 47.425161], [8.546267, 47.425018], [8.546263, 47.425001], [8.546257, 47.424984], [8.546249, 47.424968], [8.546238, 47.424952], [8.546226, 47.424937], [8.546039, 47.424654], [8.546018, 47.42464], [8.545994, 47.424627], [8.54597, 47.424617], [8.545943, 47.424607], [8.545916, 47.4246], [8.545888, 47.424594], [8.545859, 47.424589], [8.545829, 47.424587], [8.5458, 47.424587], [8.545715, 47.424608], [8.545447, 47.424632], [8.545372, 47.424515], [8.545319, 47.424523], [8.545184, 47.424314], [8.545275, 47.424286], [8.545143, 47.424094]]], "type": "MultiLineString"}, "id": "4474", "properties": {}, "type": "Feature"}, {"bbox": [8.580193, 47.40656, 8.591631, 47.40949], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.591427, 47.406587], [8.591346, 47.406601], [8.591329, 47.406609], [8.591311, 47.406616], [8.591292, 47.406622], [8.591273, 47.406627], [8.591253, 47.406631], [8.591233, 47.406634], [8.591212, 47.406636], [8.591191, 47.406636], [8.590284, 47.406731], [8.588983, 47.406866], [8.588876, 47.40688], [8.588773, 47.406901], [8.588672, 47.406929], [8.588523, 47.406986], [8.588383, 47.407052], [8.588253, 47.407127], [8.588134, 47.407211], [8.588075, 47.407261], [8.588016, 47.40731], [8.587955, 47.407359], [8.58784, 47.407418], [8.587809, 47.407458], [8.587813, 47.407464], [8.587816, 47.40747], [8.587819, 47.407477], [8.587821, 47.407483], [8.587822, 47.40749], [8.587822, 47.407497], [8.587821, 47.407504], [8.587819, 47.40751], [8.587817, 47.407517], [8.587814, 47.407523], [8.58781, 47.407529], [8.587771, 47.407578], [8.587726, 47.407625], [8.587674, 47.407668], [8.587617, 47.407707], [8.587554, 47.407743], [8.587487, 47.407775], [8.587396, 47.407814], [8.587301, 47.407849], [8.587202, 47.407878], [8.586872, 47.407956], [8.585638, 47.408233], [8.584304, 47.408544], [8.582631, 47.408926], [8.580824, 47.409342], [8.580408, 47.409436], [8.580366, 47.409452], [8.580193, 47.40949]]], "type": "MultiLineString"}, "id": "4476", "properties": {}, "type": "Feature"}, {"bbox": [8.490952, 47.372265, 8.492161, 47.37316], "geometry": {"coordinates": [[[8.490952, 47.372265], [8.490977, 47.372277], [8.491002, 47.372289], [8.491026, 47.372301], [8.491182, 47.372388], [8.491341, 47.372473], [8.491503, 47.372555], [8.491544, 47.372573], [8.491583, 47.372593], [8.491618, 47.372616], [8.49165, 47.372641], [8.491688, 47.372684], [8.491726, 47.372726], [8.491764, 47.372768], [8.491894, 47.3729], [8.492026, 47.373031], [8.492161, 47.37316]]], "type": "MultiLineString"}, "id": "4477", "properties": {}, "type": "Feature"}, {"bbox": [8.498374, 47.420404, 8.498766, 47.421091], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.49876, 47.421039], [8.498766, 47.420988], [8.498766, 47.420936], [8.498759, 47.420884], [8.498747, 47.420832], [8.498635, 47.420685], [8.498511, 47.420542], [8.498374, 47.420404]]], "type": "MultiLineString"}, "id": "4481", "properties": {}, "type": "Feature"}, {"bbox": [8.543928, 47.430553, 8.547553, 47.431194], "geometry": {"coordinates": [[[8.547553, 47.430553], [8.547446, 47.430586], [8.547343, 47.430626], [8.547246, 47.430672], [8.54714, 47.430726], [8.547032, 47.430778], [8.54692, 47.430828], [8.546836, 47.430865], [8.54675, 47.430902], [8.546664, 47.430938], [8.546622, 47.430954], [8.546578, 47.430969], [8.546534, 47.430982], [8.546225, 47.43108], [8.546214, 47.431083], [8.546202, 47.431085], [8.54619, 47.431087], [8.546179, 47.431088], [8.546167, 47.431088], [8.546155, 47.431087], [8.546143, 47.431086], [8.546131, 47.431084], [8.54612, 47.431081], [8.54577, 47.430992], [8.545681, 47.430991], [8.54417, 47.431194], [8.54412, 47.431193], [8.54407, 47.431189], [8.544021, 47.431181], [8.543974, 47.431171], [8.543928, 47.431157]]], "type": "MultiLineString"}, "id": "4482", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.423024, 8.541857, 47.42424], "geometry": {"coordinates": [[[8.540226, 47.42424], [8.540291, 47.424206], [8.541111, 47.423827], [8.541114, 47.423826], [8.541117, 47.423824], [8.54112, 47.423821], [8.541122, 47.423819], [8.541124, 47.423817], [8.541125, 47.423814], [8.541126, 47.423812], [8.541127, 47.423809], [8.541128, 47.423806], [8.541128, 47.423804], [8.541128, 47.423801], [8.541083, 47.423711], [8.541043, 47.423619], [8.541009, 47.423527], [8.541008, 47.423525], [8.541007, 47.423522], [8.541006, 47.42352], [8.541006, 47.423517], [8.541006, 47.423515], [8.541007, 47.423512], [8.541007, 47.42351], [8.541009, 47.423507], [8.54101, 47.423505], [8.541012, 47.423502], [8.541014, 47.4235], [8.541016, 47.423498], [8.541018, 47.423496], [8.541021, 47.423495], [8.541024, 47.423493], [8.541027, 47.423491], [8.54103, 47.42349], [8.541603, 47.423263], [8.541659, 47.423236], [8.541711, 47.423207], [8.54176, 47.423175], [8.541776, 47.423144], [8.541794, 47.423113], [8.541811, 47.423082], [8.541825, 47.423062], [8.541841, 47.423043], [8.541857, 47.423024]]], "type": "MultiLineString"}, "id": "4483", "properties": {}, "type": "Feature"}, {"bbox": [8.497519, 47.363765, 8.498538, 47.365014], "geometry": {"coordinates": [[[8.498445, 47.363765], [8.498303, 47.363883], [8.498295, 47.36389], [8.498288, 47.363898], [8.498283, 47.363906], [8.498278, 47.363914], [8.498274, 47.363922], [8.498272, 47.363931], [8.49827, 47.36394], [8.49827, 47.363949], [8.498271, 47.363958], [8.498273, 47.363967], [8.498276, 47.363975], [8.49828, 47.363984], [8.498285, 47.363992], [8.498291, 47.364], [8.498298, 47.364007], [8.498306, 47.364014], [8.498315, 47.364021], [8.498503, 47.364135], [8.49851, 47.364139], [8.498515, 47.364143], [8.49852, 47.364147], [8.498525, 47.364152], [8.498529, 47.364157], [8.498532, 47.364162], [8.498535, 47.364167], [8.498537, 47.364173], [8.498538, 47.364179], [8.498538, 47.364184], [8.498538, 47.36419], [8.498537, 47.364196], [8.498535, 47.364201], [8.498532, 47.364206], [8.498529, 47.364212], [8.498525, 47.364217], [8.49852, 47.364221], [8.498515, 47.364226], [8.498426, 47.36431], [8.497796, 47.364793], [8.497542, 47.364882], [8.497523, 47.364894], [8.497519, 47.365014]]], "type": "MultiLineString"}, "id": "4484", "properties": {}, "type": "Feature"}, {"bbox": [8.49412, 47.362301, 8.495946, 47.363848], "geometry": {"coordinates": [[[8.495946, 47.362301], [8.49593, 47.362316], [8.495894, 47.362353], [8.495887, 47.362358], [8.495881, 47.362363], [8.495876, 47.362369], [8.495871, 47.362375], [8.495867, 47.362382], [8.495865, 47.362386], [8.495862, 47.36239], [8.495858, 47.362394], [8.495854, 47.362398], [8.49585, 47.362402], [8.495845, 47.362405], [8.495839, 47.36241], [8.495833, 47.362415], [8.495827, 47.362421], [8.495823, 47.362427], [8.495819, 47.362433], [8.495794, 47.36246], [8.49574, 47.362486], [8.495715, 47.362498], [8.495689, 47.36251], [8.495663, 47.362522], [8.495613, 47.362552], [8.495563, 47.362582], [8.495511, 47.362611], [8.495459, 47.362638], [8.495339, 47.362704], [8.495301, 47.362727], [8.495263, 47.36275], [8.495227, 47.362774], [8.495194, 47.362796], [8.495162, 47.362818], [8.495131, 47.362841], [8.495059, 47.362893], [8.494987, 47.362946], [8.494915, 47.362999], [8.494908, 47.363007], [8.494901, 47.363015], [8.494896, 47.363024], [8.494892, 47.363033], [8.494889, 47.363042], [8.494888, 47.363051], [8.494887, 47.363061], [8.494888, 47.36307], [8.49489, 47.36308], [8.494893, 47.363089], [8.4949, 47.363107], [8.49491, 47.363124], [8.494921, 47.363141], [8.494935, 47.363157], [8.494951, 47.363173], [8.494979, 47.363196], [8.495009, 47.363218], [8.49504, 47.363239], [8.494877, 47.363376], [8.494802, 47.363431], [8.494522, 47.363592], [8.4945, 47.363606], [8.494437, 47.363663], [8.494428, 47.363671], [8.494418, 47.363677], [8.494407, 47.363683], [8.494396, 47.363689], [8.494384, 47.363694], [8.49431, 47.363718], [8.494271, 47.363736], [8.494208, 47.363789], [8.494163, 47.363839], [8.49412, 47.363848]]], "type": "MultiLineString"}, "id": "4485", "properties": {}, "type": "Feature"}, {"bbox": [8.531848, 47.337091, 8.532364, 47.337541], "geometry": {"coordinates": [[[8.532364, 47.337541], [8.532276, 47.337521], [8.531933, 47.337442], [8.531924, 47.33744], [8.531915, 47.337437], [8.531906, 47.337434], [8.531898, 47.33743], [8.53189, 47.337426], [8.531883, 47.337421], [8.531877, 47.337416], [8.531871, 47.337411], [8.531866, 47.337405], [8.531862, 47.337399], [8.531858, 47.337393], [8.531855, 47.337386], [8.531854, 47.33738], [8.531853, 47.337373], [8.531852, 47.337366], [8.531848, 47.337223], [8.531881, 47.337091]]], "type": "MultiLineString"}, "id": "4486", "properties": {}, "type": "Feature"}, {"bbox": [8.572687, 47.411388, 8.573165, 47.4117], "geometry": {"coordinates": [[[8.572687, 47.4117], [8.572701, 47.411662], [8.572719, 47.411626], [8.572741, 47.411591], [8.572768, 47.411557], [8.572799, 47.411524], [8.572834, 47.411494], [8.572872, 47.411465], [8.572914, 47.411439], [8.572959, 47.411415], [8.573089, 47.411388], [8.573165, 47.41139]]], "type": "MultiLineString"}, "id": "4487", "properties": {}, "type": "Feature"}, {"bbox": [8.591265, 47.370916, 8.600248, 47.372476], "geometry": {"coordinates": [[[8.591265, 47.372476], [8.591285, 47.372431], [8.591574, 47.372139], [8.591593, 47.372122], [8.591614, 47.372106], [8.591637, 47.372091], [8.591662, 47.372078], [8.591689, 47.372066], [8.591717, 47.372056], [8.592091, 47.371939], [8.59214, 47.371925], [8.59219, 47.371915], [8.592242, 47.371907], [8.592295, 47.371902], [8.592605, 47.371884], [8.592656, 47.371879], [8.592706, 47.371872], [8.592755, 47.371862], [8.592803, 47.371849], [8.592849, 47.371834], [8.593079, 47.371749], [8.59312, 47.371736], [8.593162, 47.371725], [8.593205, 47.371717], [8.59325, 47.371712], [8.593295, 47.371709], [8.593629, 47.371699], [8.593667, 47.371699], [8.593704, 47.371702], [8.593741, 47.371707], [8.593823, 47.371721], [8.593848, 47.371725], [8.593873, 47.371728], [8.593898, 47.37173], [8.593934, 47.371732], [8.593971, 47.371732], [8.594007, 47.371729], [8.59441, 47.371697], [8.594491, 47.371688], [8.594571, 47.371674], [8.594649, 47.371657], [8.594689, 47.371648], [8.594731, 47.371641], [8.594773, 47.371636], [8.594815, 47.371634], [8.594858, 47.371634], [8.594875, 47.371635], [8.594892, 47.371636], [8.594909, 47.371638], [8.595056, 47.371652], [8.595144, 47.371659], [8.595232, 47.371664], [8.595321, 47.371667], [8.595673, 47.371673], [8.595789, 47.371674], [8.595906, 47.371674], [8.596023, 47.371672], [8.596665, 47.371656], [8.596676, 47.371643], [8.596687, 47.37163], [8.596841, 47.371594], [8.596869, 47.371588], [8.596898, 47.371584], [8.596927, 47.371582], [8.596956, 47.371582], [8.596986, 47.371583], [8.597015, 47.371586], [8.597143, 47.371604], [8.597182, 47.371609], [8.597222, 47.371611], [8.597262, 47.371611], [8.597301, 47.371609], [8.597341, 47.371604], [8.597379, 47.371597], [8.597416, 47.371588], [8.597443, 47.371582], [8.597469, 47.371577], [8.597497, 47.371574], [8.597525, 47.371573], [8.597579, 47.371571], [8.597632, 47.371566], [8.597686, 47.37156], [8.597875, 47.371532], [8.597956, 47.371519], [8.598036, 47.371503], [8.598114, 47.371483], [8.598219, 47.371455], [8.598282, 47.371439], [8.598345, 47.371424], [8.598408, 47.371412], [8.598533, 47.371388], [8.598586, 47.371377], [8.598638, 47.371363], [8.598688, 47.371346], [8.598717, 47.371335], [8.5992, 47.371169], [8.59929, 47.371142], [8.599382, 47.371119], [8.599477, 47.371102], [8.599573, 47.371091], [8.599638, 47.371083], [8.599702, 47.371072], [8.599764, 47.371057], [8.599823, 47.371038], [8.600105, 47.370941], [8.600132, 47.370932], [8.60016, 47.370926], [8.600189, 47.370921], [8.600219, 47.370917], [8.600248, 47.370916]]], "type": "MultiLineString"}, "id": "4491", "properties": {}, "type": "Feature"}, {"bbox": [8.542781, 47.37009, 8.543312, 47.374355], "geometry": {"coordinates": [[[8.543312, 47.37009], [8.543191, 47.370315], [8.543151, 47.370399], [8.543114, 47.370484], [8.543081, 47.370569], [8.543063, 47.370619], [8.543046, 47.37067], [8.543031, 47.370721], [8.543016, 47.370773], [8.543003, 47.370824], [8.542991, 47.370875], [8.542931, 47.371181], [8.542904, 47.371322], [8.542889, 47.3714], [8.542876, 47.371477], [8.542863, 47.371555], [8.542852, 47.371633], [8.542842, 47.371711], [8.542833, 47.371788], [8.542831, 47.371808], [8.542829, 47.371827], [8.542827, 47.371846], [8.54281, 47.372133], [8.54279, 47.372474], [8.542781, 47.372622], [8.542783, 47.37279], [8.542785, 47.372923], [8.542789, 47.373178], [8.54279, 47.373232], [8.542793, 47.373299], [8.542798, 47.373365], [8.542804, 47.373431], [8.542809, 47.37348], [8.542815, 47.373529], [8.542822, 47.373577], [8.542833, 47.373646], [8.542845, 47.373714], [8.542859, 47.373782], [8.542863, 47.373797], [8.542866, 47.373812], [8.54287, 47.373826], [8.542903, 47.373917], [8.54295, 47.374048], [8.542965, 47.374106], [8.543025, 47.374355]]], "type": "MultiLineString"}, "id": "4499", "properties": {}, "type": "Feature"}, {"bbox": [8.505582, 47.416259, 8.506538, 47.416497], "geometry": {"coordinates": [[[8.506538, 47.416369], [8.506515, 47.416363], [8.506492, 47.416358], [8.506468, 47.416354], [8.506444, 47.416352], [8.50642, 47.416351], [8.506396, 47.416351], [8.506371, 47.416353], [8.50618, 47.416393], [8.505993, 47.416439], [8.505808, 47.416492], [8.5058, 47.416494], [8.505793, 47.416495], [8.505785, 47.416497], [8.505777, 47.416497], [8.505768, 47.416497], [8.50576, 47.416497], [8.505752, 47.416496], [8.505744, 47.416495], [8.505737, 47.416493], [8.505729, 47.416491], [8.505722, 47.416488], [8.505715, 47.416485], [8.505709, 47.416482], [8.505703, 47.416478], [8.505658, 47.416406], [8.505618, 47.416333], [8.505582, 47.416259]]], "type": "MultiLineString"}, "id": "4502", "properties": {}, "type": "Feature"}, {"bbox": [8.47799, 47.406695, 8.481077, 47.407881], "geometry": {"coordinates": [[[8.47799, 47.407881], [8.478059, 47.4078], [8.478139, 47.407724], [8.478229, 47.407653], [8.478327, 47.407588], [8.478434, 47.40753], [8.478549, 47.407478], [8.47867, 47.407434], [8.478815, 47.407389], [8.478964, 47.407349], [8.479116, 47.407316], [8.479296, 47.407269], [8.479477, 47.407223], [8.479657, 47.407177], [8.4798, 47.407136], [8.479943, 47.407097], [8.480088, 47.407061], [8.480222, 47.407019], [8.480355, 47.406974], [8.480487, 47.406929], [8.480688, 47.40685], [8.481077, 47.406695]]], "type": "MultiLineString"}, "id": "4503", "properties": {}, "type": "Feature"}, {"bbox": [8.515568, 47.42907, 8.519068, 47.429494], "geometry": {"coordinates": [[[8.519068, 47.42907], [8.517013, 47.429076], [8.517004, 47.429078], [8.516996, 47.42908], [8.516988, 47.429083], [8.51698, 47.429086], [8.516972, 47.42909], [8.516965, 47.429094], [8.516959, 47.429099], [8.516953, 47.429104], [8.516948, 47.429109], [8.516944, 47.429114], [8.516941, 47.42912], [8.516938, 47.429126], [8.516936, 47.429132], [8.516935, 47.429138], [8.516934, 47.429145], [8.516931, 47.429413], [8.516928, 47.429422], [8.516924, 47.42943], [8.516919, 47.429438], [8.516913, 47.429446], [8.516906, 47.429453], [8.516898, 47.42946], [8.516889, 47.429466], [8.51688, 47.429472], [8.51687, 47.429477], [8.516859, 47.429482], [8.516847, 47.429485], [8.516836, 47.429489], [8.516823, 47.429491], [8.516811, 47.429493], [8.516798, 47.429494], [8.516785, 47.429494], [8.515568, 47.429489]]], "type": "MultiLineString"}, "id": "4505", "properties": {}, "type": "Feature"}, {"bbox": [8.546609, 47.41996, 8.547581, 47.420305], "geometry": {"coordinates": [[[8.546609, 47.41996], [8.547391, 47.4203], [8.547405, 47.420302], [8.547419, 47.420304], [8.547434, 47.420305], [8.547448, 47.420305], [8.547463, 47.420304], [8.547477, 47.420302], [8.547491, 47.420299], [8.547505, 47.420296], [8.547518, 47.420291], [8.54753, 47.420286], [8.547542, 47.420281], [8.547553, 47.420274], [8.547563, 47.420267], [8.547572, 47.420259], [8.547581, 47.420251]]], "type": "MultiLineString"}, "id": "4506", "properties": {}, "type": "Feature"}, {"bbox": [8.586239, 47.406817, 8.588811, 47.40742], "geometry": {"coordinates": [[[8.586239, 47.407087], [8.586394, 47.407109], [8.586545, 47.407139], [8.586693, 47.407178], [8.586836, 47.407224], [8.586973, 47.407278], [8.58754, 47.407417], [8.587568, 47.407419], [8.587596, 47.40742], [8.587624, 47.407419], [8.587652, 47.407416], [8.58768, 47.407412], [8.587706, 47.407406], [8.587732, 47.407399], [8.587757, 47.40739], [8.587781, 47.407379], [8.587803, 47.407367], [8.587913, 47.407264], [8.588037, 47.407168], [8.588172, 47.40708], [8.588318, 47.407], [8.588474, 47.406929], [8.588639, 47.406868], [8.588811, 47.406817]]], "type": "MultiLineString"}, "id": "4507", "properties": {}, "type": "Feature"}, {"bbox": [8.499816, 47.361458, 8.502794, 47.362917], "geometry": {"coordinates": [[[8.502794, 47.361458], [8.502747, 47.361497], [8.502406, 47.36178], [8.502361, 47.361816], [8.502339, 47.361831], [8.502318, 47.361847], [8.502296, 47.361862], [8.502253, 47.361891], [8.50219, 47.361933], [8.502104, 47.361985], [8.502046, 47.362018], [8.501987, 47.362049], [8.501925, 47.362079], [8.501748, 47.36216], [8.501684, 47.362187], [8.501619, 47.362214], [8.501553, 47.36224], [8.501422, 47.362286], [8.501288, 47.362329], [8.501151, 47.36237], [8.501057, 47.362394], [8.500962, 47.362418], [8.500866, 47.36244], [8.500746, 47.362468], [8.50042, 47.362555], [8.500343, 47.362576], [8.499843, 47.362899], [8.499816, 47.362917]]], "type": "MultiLineString"}, "id": "4508", "properties": {}, "type": "Feature"}, {"bbox": [8.514108, 47.331906, 8.515218, 47.332186], "geometry": {"coordinates": [[[8.514108, 47.332127], [8.514165, 47.33211], [8.514181, 47.332116], [8.514219, 47.332181], [8.514231, 47.332186], [8.51433, 47.332165], [8.514372, 47.332156], [8.514414, 47.332146], [8.514456, 47.332136], [8.51466, 47.332078], [8.514699, 47.332068], [8.514739, 47.332059], [8.51478, 47.332052], [8.515132, 47.331998], [8.51514, 47.331996], [8.515149, 47.331994], [8.515157, 47.331991], [8.515164, 47.331988], [8.515172, 47.331985], [8.515179, 47.331981], [8.515185, 47.331977], [8.515191, 47.331972], [8.515196, 47.331968], [8.515202, 47.331962], [8.515206, 47.331955], [8.515209, 47.331949], [8.515212, 47.331942], [8.515218, 47.331915], [8.515213, 47.331906]]], "type": "MultiLineString"}, "id": "4509", "properties": {}, "type": "Feature"}, {"bbox": [8.562586, 47.414255, 8.56307, 47.41532], "geometry": {"coordinates": [[[8.56307, 47.414255], [8.563068, 47.414394], [8.563051, 47.414532], [8.563017, 47.414669], [8.562969, 47.414804], [8.562934, 47.414874], [8.562899, 47.414944], [8.562865, 47.415014], [8.562775, 47.415117], [8.562682, 47.415219], [8.562586, 47.41532]]], "type": "MultiLineString"}, "id": "4510", "properties": {}, "type": "Feature"}, {"bbox": [8.505559, 47.398184, 8.505857, 47.398541], "geometry": {"coordinates": [[[8.505566, 47.398184], [8.50556, 47.398206], [8.50556, 47.398208], [8.505559, 47.398211], [8.505559, 47.398213], [8.50556, 47.398215], [8.50556, 47.398218], [8.505561, 47.39822], [8.505562, 47.398222], [8.505564, 47.398224], [8.50566, 47.39833], [8.505758, 47.398436], [8.505857, 47.398541]]], "type": "MultiLineString"}, "id": "4513", "properties": {}, "type": "Feature"}, {"bbox": [8.522294, 47.362963, 8.527918, 47.369145], "geometry": {"coordinates": [[[8.527918, 47.369145], [8.527873, 47.368989], [8.52771, 47.368854], [8.526833, 47.368281], [8.526134, 47.367821], [8.525404, 47.367344], [8.524415, 47.366658], [8.524167, 47.366457], [8.523925, 47.366248], [8.52381, 47.36621], [8.523779, 47.366187], [8.523414, 47.36586], [8.523372, 47.365822], [8.523371, 47.365766], [8.52322, 47.365548], [8.523166, 47.365417], [8.523163, 47.365375], [8.522969, 47.365072], [8.522812, 47.364775], [8.522738, 47.364595], [8.522682, 47.364435], [8.522548, 47.363958], [8.522499, 47.363682], [8.522472, 47.363428], [8.52245, 47.363304], [8.522294, 47.362963]]], "type": "MultiLineString"}, "id": "4514", "properties": {}, "type": "Feature"}, {"bbox": [8.485049, 47.402742, 8.485836, 47.403912], "geometry": {"coordinates": [[[8.485836, 47.403885], [8.485597, 47.403911], [8.485584, 47.403912], [8.485572, 47.403912], [8.48556, 47.403911], [8.485548, 47.403909], [8.485536, 47.403907], [8.485524, 47.403904], [8.485513, 47.4039], [8.485503, 47.403896], [8.485493, 47.403891], [8.485483, 47.403886], [8.485475, 47.403879], [8.485467, 47.403873], [8.485304, 47.4037], [8.485222, 47.403629], [8.485139, 47.403559], [8.485053, 47.403491], [8.485052, 47.403489], [8.485051, 47.403487], [8.48505, 47.403486], [8.485049, 47.403484], [8.485049, 47.403482], [8.485049, 47.40348], [8.485049, 47.403478], [8.485049, 47.403477], [8.48505, 47.403475], [8.48505, 47.403473], [8.485051, 47.403471], [8.485052, 47.40347], [8.485054, 47.403468], [8.485055, 47.403467], [8.485057, 47.403465], [8.485216, 47.403313], [8.485239, 47.403292], [8.485263, 47.403272], [8.485289, 47.403252], [8.485575, 47.403017], [8.485575, 47.403017], [8.485576, 47.403016], [8.485577, 47.403015], [8.485577, 47.403014], [8.485577, 47.403013], [8.485577, 47.403012], [8.485577, 47.403012], [8.485577, 47.403011], [8.485577, 47.40301], [8.485577, 47.403009], [8.485576, 47.403008], [8.485576, 47.403007], [8.485575, 47.403006], [8.485574, 47.403006], [8.485574, 47.403005], [8.485573, 47.403004], [8.485572, 47.403004], [8.485571, 47.403003], [8.485569, 47.403003], [8.485568, 47.403002], [8.485567, 47.403002], [8.485566, 47.403002], [8.485564, 47.403002], [8.485563, 47.403002], [8.485562, 47.403002], [8.48556, 47.403002], [8.485559, 47.403002], [8.485558, 47.403002], [8.485339, 47.403076], [8.485338, 47.403076], [8.485337, 47.403076], [8.485336, 47.403076], [8.485335, 47.403076], [8.485334, 47.403076], [8.485333, 47.403076], [8.485332, 47.403075], [8.485331, 47.403075], [8.48533, 47.403075], [8.485329, 47.403074], [8.485328, 47.403074], [8.485328, 47.403073], [8.485327, 47.403073], [8.485326, 47.403072], [8.485326, 47.403072], [8.485325, 47.403071], [8.485325, 47.403071], [8.485325, 47.40307], [8.485325, 47.403069], [8.485324, 47.403069], [8.485324, 47.403068], [8.485325, 47.403067], [8.485325, 47.403067], [8.485325, 47.403066], [8.485325, 47.403065], [8.485326, 47.403065], [8.485376, 47.403032], [8.485378, 47.403031], [8.485379, 47.40303], [8.48538, 47.403029], [8.485382, 47.403028], [8.485383, 47.403027], [8.485384, 47.403026], [8.485384, 47.403024], [8.485385, 47.403023], [8.485385, 47.403022], [8.485385, 47.40302], [8.485385, 47.403019], [8.485385, 47.403017], [8.485346, 47.402857], [8.485345, 47.402853], [8.485345, 47.402849], [8.485345, 47.402844], [8.485346, 47.40284], [8.485347, 47.402836], [8.485349, 47.402831], [8.485351, 47.402827], [8.485354, 47.402823], [8.485358, 47.40282], [8.485363, 47.402811], [8.485366, 47.402803], [8.485369, 47.402794], [8.485371, 47.402786], [8.485371, 47.402777], [8.485371, 47.402768], [8.485369, 47.402759], [8.485366, 47.402751], [8.485362, 47.402742]]], "type": "MultiLineString"}, "id": "4516", "properties": {}, "type": "Feature"}, {"bbox": [8.552605, 47.392982, 8.571109, 47.398671], "geometry": {"coordinates": [[[8.552605, 47.395493], [8.552721, 47.395568], [8.552882, 47.395598], [8.553123, 47.395644], [8.554398, 47.395884], [8.554446, 47.395894], [8.554492, 47.395907], [8.554537, 47.395923], [8.55458, 47.395941], [8.55462, 47.395961], [8.554658, 47.395983], [8.554693, 47.396008], [8.554725, 47.396034], [8.554933, 47.39622], [8.555892, 47.397112], [8.556423, 47.397617], [8.556714, 47.397883], [8.556752, 47.397915], [8.556794, 47.397945], [8.556839, 47.397972], [8.556887, 47.397996], [8.556939, 47.398018], [8.556993, 47.398036], [8.557048, 47.398051], [8.558186, 47.398325], [8.559327, 47.39862], [8.559428, 47.398642], [8.559532, 47.398658], [8.559637, 47.398668], [8.559743, 47.398671], [8.559849, 47.398667], [8.559954, 47.398657], [8.560058, 47.39864], [8.560159, 47.398617], [8.560256, 47.398588], [8.561146, 47.398286], [8.561708, 47.398073], [8.562078, 47.397928], [8.562115, 47.397913], [8.562152, 47.397898], [8.562188, 47.397883], [8.562246, 47.397859], [8.562284, 47.397842], [8.562359, 47.397808], [8.562433, 47.397774], [8.562506, 47.397738], [8.563396, 47.397294], [8.564288, 47.396854], [8.565345, 47.396338], [8.565999, 47.395999], [8.566091, 47.39595], [8.56618, 47.395898], [8.566266, 47.395844], [8.567077, 47.395313], [8.56719, 47.39524], [8.567209, 47.395228], [8.567247, 47.3952], [8.570019, 47.393145], [8.570063, 47.393115], [8.57011, 47.393088], [8.57016, 47.393063], [8.570213, 47.393042], [8.570268, 47.393023], [8.570326, 47.393007], [8.570385, 47.392995], [8.570416, 47.39299], [8.570447, 47.392986], [8.570478, 47.392983], [8.570527, 47.392982], [8.570576, 47.392983], [8.570625, 47.392987], [8.570674, 47.392994], [8.570721, 47.393004], [8.570766, 47.393016], [8.57081, 47.393031], [8.570852, 47.393049], [8.570892, 47.393069], [8.570929, 47.393091], [8.570963, 47.393116], [8.570993, 47.393142], [8.57102, 47.39317], [8.571044, 47.393199], [8.571063, 47.39323], [8.571082, 47.393267], [8.571096, 47.393305], [8.571105, 47.393344], [8.571109, 47.393383], [8.571108, 47.393423], [8.571102, 47.393462], [8.571092, 47.3935], [8.571092, 47.3935], [8.57082, 47.394272], [8.57082, 47.394272], [8.570811, 47.394291], [8.570801, 47.394311], [8.570788, 47.394329], [8.570772, 47.394347], [8.570755, 47.394364], [8.570613, 47.394488], [8.570545, 47.394551], [8.570533, 47.394564], [8.570523, 47.394577], [8.570515, 47.39459], [8.570508, 47.394604], [8.570503, 47.394618], [8.5705, 47.394633], [8.570499, 47.394648], [8.5705, 47.394663], [8.570503, 47.394677], [8.570508, 47.394691], [8.570514, 47.394705], [8.570589, 47.394841]]], "type": "MultiLineString"}, "id": "4517", "properties": {}, "type": "Feature"}, {"bbox": [8.449228, 47.379966, 8.451923, 47.380518], "geometry": {"coordinates": [[[8.451923, 47.380518], [8.451729, 47.380512], [8.451689, 47.38051], [8.45165, 47.380505], [8.451611, 47.380499], [8.451574, 47.38049], [8.451538, 47.380479], [8.45133, 47.380409], [8.451289, 47.380397], [8.451247, 47.380386], [8.451204, 47.380378], [8.451085, 47.380359], [8.451043, 47.380351], [8.451002, 47.380341], [8.450962, 47.38033], [8.450699, 47.380247], [8.450664, 47.380236], [8.45063, 47.380224], [8.450596, 47.380211], [8.450479, 47.380164], [8.450435, 47.380148], [8.45039, 47.380134], [8.450343, 47.380123], [8.450295, 47.380115], [8.450246, 47.38011], [8.450197, 47.380107], [8.450029, 47.380102], [8.449981, 47.380102], [8.449933, 47.380105], [8.449886, 47.380111], [8.449857, 47.380115], [8.449827, 47.380117], [8.449797, 47.380117], [8.44941, 47.38011], [8.449395, 47.380109], [8.449381, 47.380108], [8.449367, 47.380106], [8.449354, 47.380102], [8.449341, 47.380098], [8.449328, 47.380094], [8.449316, 47.380088], [8.449305, 47.380082], [8.449295, 47.380075], [8.449286, 47.380068], [8.449278, 47.38006], [8.449271, 47.380051], [8.449264, 47.380043], [8.44926, 47.380033], [8.449228, 47.379966]]], "type": "MultiLineString"}, "id": "4523", "properties": {}, "type": "Feature"}, {"bbox": [8.588086, 47.365547, 8.590993, 47.369318], "geometry": {"coordinates": [[[8.588094, 47.365547], [8.588086, 47.365594], [8.588249, 47.365628], [8.588995, 47.365786], [8.589209, 47.365841], [8.589233, 47.36585], [8.589363, 47.365919], [8.589659, 47.366153], [8.589771, 47.366369], [8.589859, 47.366571], [8.589918, 47.366712], [8.589935, 47.366761], [8.590016, 47.366995], [8.590102, 47.36726], [8.590212, 47.36758], [8.590315, 47.367864], [8.590373, 47.367973], [8.590668, 47.368292], [8.59074, 47.368376], [8.5908, 47.368463], [8.590847, 47.368554], [8.590892, 47.368667], [8.590935, 47.36878], [8.590975, 47.368894], [8.590987, 47.36894], [8.590993, 47.368986], [8.590992, 47.369032], [8.590985, 47.369078], [8.590972, 47.369124], [8.59096, 47.369158], [8.590952, 47.369193], [8.590948, 47.369228], [8.590946, 47.369238], [8.590943, 47.369248], [8.590939, 47.369257], [8.590933, 47.369267], [8.590927, 47.369276], [8.590919, 47.369284], [8.59091, 47.369292], [8.5909, 47.3693], [8.590889, 47.369306], [8.590877, 47.369313], [8.590865, 47.369318]]], "type": "MultiLineString"}, "id": "4524", "properties": {}, "type": "Feature"}, {"bbox": [8.595477, 47.358432, 8.595765, 47.358989], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595561, 47.358494], [8.595687, 47.358551], [8.595702, 47.35856], [8.595715, 47.35857], [8.595727, 47.358581], [8.595738, 47.358593], [8.595746, 47.358605], [8.595754, 47.358618], [8.595759, 47.358631], [8.595763, 47.358645], [8.595765, 47.358658], [8.595765, 47.358672], [8.595764, 47.358686], [8.595761, 47.358699], [8.595756, 47.358713], [8.595749, 47.358725], [8.595741, 47.358738], [8.595595, 47.358989]]], "type": "MultiLineString"}, "id": "4525", "properties": {}, "type": "Feature"}, {"bbox": [8.56286, 47.354942, 8.563198, 47.355217], "geometry": {"coordinates": [[[8.563196, 47.355217], [8.563198, 47.355213], [8.562964, 47.355154], [8.563018, 47.355023], [8.563008, 47.355002], [8.56286, 47.354942]]], "type": "MultiLineString"}, "id": "4528", "properties": {}, "type": "Feature"}, {"bbox": [8.523411, 47.370704, 8.523673, 47.371039], "geometry": {"coordinates": [[[8.52367, 47.370704], [8.523672, 47.370709], [8.523673, 47.370715], [8.523673, 47.370721], [8.523673, 47.370727], [8.523671, 47.370733], [8.52367, 47.370739], [8.523667, 47.370744], [8.523664, 47.37075], [8.52366, 47.370755], [8.523655, 47.37076], [8.52349, 47.370944], [8.523411, 47.371039]]], "type": "MultiLineString"}, "id": "4536", "properties": {}, "type": "Feature"}, {"bbox": [8.543265, 47.410932, 8.545573, 47.411625], "geometry": {"coordinates": [[[8.543265, 47.410932], [8.543323, 47.410957], [8.543382, 47.410981], [8.543441, 47.411004], [8.544285, 47.411274], [8.545126, 47.411584], [8.545161, 47.411596], [8.545197, 47.411606], [8.545234, 47.411614], [8.545272, 47.41162], [8.545311, 47.411624], [8.54535, 47.411625], [8.545389, 47.411624], [8.545427, 47.411621], [8.545465, 47.411615], [8.545502, 47.411607], [8.545539, 47.411597], [8.545573, 47.411585]]], "type": "MultiLineString"}, "id": "4544", "properties": {}, "type": "Feature"}, {"bbox": [8.50159, 47.427234, 8.506445, 47.434636], "geometry": {"coordinates": [[[8.506445, 47.427234], [8.506313, 47.427393], [8.50628, 47.427434], [8.506249, 47.427475], [8.506218, 47.427516], [8.506112, 47.42768], [8.506011, 47.427845], [8.505916, 47.428011], [8.505623, 47.428526], [8.505429, 47.428863], [8.505366, 47.42896], [8.50529, 47.429053], [8.505202, 47.42914], [8.505101, 47.429222], [8.50499, 47.429296], [8.504599, 47.429543], [8.504178, 47.429845], [8.504001, 47.42996], [8.503819, 47.430071], [8.503632, 47.430179], [8.503486, 47.430264], [8.50335, 47.430357], [8.503226, 47.430458], [8.503114, 47.430565], [8.502994, 47.430714], [8.502889, 47.430868], [8.502799, 47.431026], [8.502741, 47.431159], [8.502676, 47.43129], [8.502603, 47.431419], [8.502233, 47.43189], [8.502016, 47.432202], [8.501697, 47.432638], [8.501659, 47.432696], [8.501628, 47.432755], [8.501606, 47.432817], [8.501593, 47.432879], [8.50159, 47.433029], [8.501597, 47.433179], [8.501613, 47.433329], [8.501668, 47.433682], [8.50174, 47.43413], [8.501749, 47.434171], [8.501762, 47.43421], [8.501778, 47.43425], [8.501964, 47.434636]]], "type": "MultiLineString"}, "id": "4545", "properties": {}, "type": "Feature"}, {"bbox": [8.530922, 47.352331, 8.532311, 47.355719], "geometry": {"coordinates": [[[8.532311, 47.355719], [8.532192, 47.355583], [8.532169, 47.35539], [8.532167, 47.355375], [8.532137, 47.355017], [8.532133, 47.355002], [8.532126, 47.354926], [8.532116, 47.354874], [8.531891, 47.354091], [8.531811, 47.353841], [8.531737, 47.353682], [8.531561, 47.353368], [8.531271, 47.352884], [8.531078, 47.352574], [8.530952, 47.352372], [8.530922, 47.352331]]], "type": "MultiLineString"}, "id": "4547", "properties": {}, "type": "Feature"}, {"bbox": [8.539276, 47.377135, 8.540511, 47.377415], "geometry": {"coordinates": [[[8.539276, 47.377415], [8.540016, 47.377233], [8.540511, 47.377135]]], "type": "MultiLineString"}, "id": "4550", "properties": {}, "type": "Feature"}, {"bbox": [8.49717, 47.409839, 8.498202, 47.410859], "geometry": {"coordinates": [[[8.498202, 47.410859], [8.498123, 47.410802], [8.497976, 47.410671], [8.497849, 47.410531], [8.497741, 47.410383], [8.497724, 47.410355], [8.497702, 47.410328], [8.497677, 47.410302], [8.497648, 47.410278], [8.497495, 47.410164], [8.497349, 47.410045], [8.497209, 47.409924], [8.4972, 47.409915], [8.497192, 47.409906], [8.497185, 47.409897], [8.49718, 47.409887], [8.497176, 47.409877], [8.49717, 47.409839]]], "type": "MultiLineString"}, "id": "4551", "properties": {}, "type": "Feature"}, {"bbox": [8.503063, 47.39733, 8.504597, 47.398268], "geometry": {"coordinates": [[[8.504597, 47.39733], [8.50422, 47.397528], [8.504194, 47.397547], [8.504171, 47.397566], [8.50415, 47.397587], [8.504122, 47.397607], [8.504092, 47.397626], [8.504061, 47.397643], [8.503308, 47.398039], [8.503278, 47.398052], [8.503249, 47.398068], [8.503222, 47.398084], [8.503198, 47.398103], [8.503176, 47.398122], [8.503156, 47.398143], [8.503063, 47.398268]]], "type": "MultiLineString"}, "id": "4552", "properties": {}, "type": "Feature"}, {"bbox": [8.531645, 47.333733, 8.532323, 47.335362], "geometry": {"coordinates": [[[8.531645, 47.335349], [8.531655, 47.335353], [8.531665, 47.335356], [8.531676, 47.335359], [8.531687, 47.33536], [8.531698, 47.335362], [8.531709, 47.335362], [8.53172, 47.335362], [8.531731, 47.335361], [8.531742, 47.33536], [8.531753, 47.335358], [8.531764, 47.335355], [8.531774, 47.335352], [8.53203, 47.335097], [8.532186, 47.334759], [8.532189, 47.334691], [8.532203, 47.334399], [8.532211, 47.334219], [8.532217, 47.334043], [8.532216, 47.333793], [8.532221, 47.333785], [8.532226, 47.333778], [8.532233, 47.333771], [8.53224, 47.333765], [8.532249, 47.333759], [8.532258, 47.333753], [8.532267, 47.333748], [8.532277, 47.333744], [8.532288, 47.33374], [8.532299, 47.333737], [8.532311, 47.333735], [8.532323, 47.333733]]], "type": "MultiLineString"}, "id": "4553", "properties": {}, "type": "Feature"}, {"bbox": [8.582461, 47.401437, 8.582814, 47.402173], "geometry": {"coordinates": [[[8.582507, 47.402173], [8.582468, 47.4021], [8.582464, 47.402091], [8.582462, 47.402083], [8.582461, 47.402074], [8.582461, 47.402066], [8.582463, 47.402058], [8.582465, 47.402049], [8.582469, 47.402041], [8.582474, 47.402033], [8.582479, 47.402026], [8.582486, 47.402019], [8.582493, 47.402012], [8.582502, 47.402006], [8.582511, 47.402], [8.58252, 47.401995], [8.582531, 47.40199], [8.582542, 47.401986], [8.582737, 47.401914], [8.582807, 47.401888], [8.582814, 47.401862], [8.582739, 47.401761], [8.582661, 47.401634], [8.58254, 47.401437]]], "type": "MultiLineString"}, "id": "4554", "properties": {}, "type": "Feature"}, {"bbox": [8.575695, 47.374605, 8.575921, 47.375187], "geometry": {"coordinates": [[[8.57592, 47.374605], [8.575921, 47.374657], [8.575906, 47.374728], [8.575884, 47.374797], [8.575856, 47.374866], [8.575808, 47.374974], [8.575754, 47.375081], [8.575695, 47.375187]]], "type": "MultiLineString"}, "id": "4555", "properties": {}, "type": "Feature"}, {"bbox": [8.524977, 47.407465, 8.526352, 47.407896], "geometry": {"coordinates": [[[8.526352, 47.407896], [8.526313, 47.407896], [8.526274, 47.407893], [8.526236, 47.407888], [8.526199, 47.40788], [8.526161, 47.407859], [8.526125, 47.407838], [8.526089, 47.407816], [8.526055, 47.407803], [8.526021, 47.40779], [8.525987, 47.407778], [8.524977, 47.407465]]], "type": "MultiLineString"}, "id": "4556", "properties": {}, "type": "Feature"}, {"bbox": [8.47347, 47.392262, 8.474035, 47.393207], "geometry": {"coordinates": [[[8.474035, 47.393207], [8.474007, 47.393185], [8.473983, 47.393163], [8.473961, 47.393139], [8.473942, 47.393114], [8.473795, 47.392914], [8.473646, 47.392715], [8.473494, 47.392516], [8.473487, 47.392507], [8.473481, 47.392497], [8.473476, 47.392487], [8.473473, 47.392476], [8.473471, 47.392466], [8.47347, 47.392455], [8.47347, 47.392444], [8.473472, 47.392434], [8.473475, 47.392423], [8.473479, 47.392413], [8.473485, 47.392403], [8.473492, 47.392393], [8.473559, 47.392352], [8.473623, 47.392309], [8.473683, 47.392262]]], "type": "MultiLineString"}, "id": "4557", "properties": {}, "type": "Feature"}, {"bbox": [8.489898, 47.429061, 8.490912, 47.429272], "geometry": {"coordinates": [[[8.490912, 47.429068], [8.490889, 47.429064], [8.490865, 47.429062], [8.490841, 47.429061], [8.490817, 47.429061], [8.490793, 47.429062], [8.490769, 47.429065], [8.490746, 47.429069], [8.490723, 47.429074], [8.489898, 47.429272]]], "type": "MultiLineString"}, "id": "4558", "properties": {}, "type": "Feature"}, {"bbox": [8.530403, 47.389107, 8.531273, 47.389708], "geometry": {"coordinates": [[[8.531273, 47.389708], [8.531266, 47.389696], [8.531258, 47.389684], [8.531248, 47.389673], [8.531236, 47.389662], [8.531166, 47.389606], [8.531092, 47.389551], [8.531016, 47.389498], [8.53097, 47.389468], [8.530923, 47.389441], [8.530873, 47.389415], [8.530822, 47.389387], [8.530772, 47.389358], [8.530724, 47.389328], [8.530611, 47.389259], [8.530504, 47.389185], [8.530403, 47.389107]]], "type": "MultiLineString"}, "id": "4559", "properties": {}, "type": "Feature"}, {"bbox": [8.587711, 47.396752, 8.588827, 47.396921], "geometry": {"coordinates": [[[8.587711, 47.396752], [8.587808, 47.396772], [8.588355, 47.396849], [8.588395, 47.396854], [8.588445, 47.396845], [8.588658, 47.396797], [8.588668, 47.396795], [8.588677, 47.396793], [8.588688, 47.396792], [8.588698, 47.396792], [8.588708, 47.396792], [8.588718, 47.396793], [8.588728, 47.396795], [8.588737, 47.396797], [8.588747, 47.3968], [8.588756, 47.396803], [8.588764, 47.396807], [8.588772, 47.396811], [8.58878, 47.396816], [8.588787, 47.396821], [8.588793, 47.396826], [8.588798, 47.396832], [8.588803, 47.396838], [8.588811, 47.396851], [8.588817, 47.396865], [8.588822, 47.396878], [8.588825, 47.396892], [8.588827, 47.396907], [8.588826, 47.396921]]], "type": "MultiLineString"}, "id": "4560", "properties": {}, "type": "Feature"}, {"bbox": [8.510364, 47.32465, 8.510741, 47.325229], "geometry": {"coordinates": [[[8.510403, 47.32465], [8.510418, 47.324685], [8.510429, 47.324712], [8.510401, 47.32492], [8.51039, 47.324969], [8.510376, 47.32504], [8.510364, 47.325162], [8.510383, 47.325201], [8.510438, 47.325214], [8.510741, 47.325229]]], "type": "MultiLineString"}, "id": "4561", "properties": {}, "type": "Feature"}, {"bbox": [8.531699, 47.401156, 8.533544, 47.402018], "geometry": {"coordinates": [[[8.533544, 47.401958], [8.533521, 47.401971], [8.533496, 47.401982], [8.53347, 47.401992], [8.533443, 47.402], [8.533414, 47.402006], [8.533385, 47.402011], [8.533362, 47.402014], [8.533339, 47.402016], [8.533315, 47.402018], [8.53331, 47.402018], [8.533305, 47.402018], [8.5333, 47.402018], [8.533296, 47.402018], [8.533291, 47.402017], [8.533286, 47.402016], [8.533281, 47.402014], [8.533277, 47.402013], [8.532991, 47.401881], [8.5327, 47.401753], [8.532405, 47.40163], [8.532181, 47.401536], [8.531957, 47.401444], [8.531732, 47.401352], [8.531782, 47.401257], [8.531782, 47.401247], [8.53178, 47.401237], [8.531777, 47.401227], [8.531773, 47.401217], [8.531767, 47.401208], [8.531761, 47.401199], [8.531753, 47.40119], [8.531744, 47.401182], [8.531734, 47.401175], [8.531723, 47.401168], [8.531711, 47.401162], [8.531699, 47.401156]]], "type": "MultiLineString"}, "id": "4562", "properties": {}, "type": "Feature"}, {"bbox": [8.585658, 47.354829, 8.587097, 47.355114], "geometry": {"coordinates": [[[8.587097, 47.354878], [8.58708, 47.354867], [8.587062, 47.354858], [8.587042, 47.35485], [8.587022, 47.354844], [8.587001, 47.354838], [8.586979, 47.354834], [8.586957, 47.354831], [8.586934, 47.354829], [8.586912, 47.354829], [8.586889, 47.35483], [8.586867, 47.354832], [8.586559, 47.354893], [8.586253, 47.354958], [8.58595, 47.355029], [8.585658, 47.355114]]], "type": "MultiLineString"}, "id": "4563", "properties": {}, "type": "Feature"}, {"bbox": [8.55962, 47.413781, 8.560045, 47.414161], "geometry": {"coordinates": [[[8.559675, 47.413901], [8.559701, 47.413903], [8.55962, 47.414156], [8.560033, 47.414161], [8.560045, 47.413802], [8.559806, 47.413782], [8.559801, 47.413781], [8.559795, 47.413781], [8.559789, 47.413781], [8.559783, 47.413782], [8.559777, 47.413782], [8.559772, 47.413784], [8.559766, 47.413785], [8.559761, 47.413787], [8.559756, 47.413789], [8.559751, 47.413791], [8.559747, 47.413794], [8.559743, 47.413797], [8.559739, 47.4138], [8.559736, 47.413803], [8.559733, 47.413807], [8.559731, 47.413811], [8.559729, 47.413814], [8.559728, 47.413818], [8.559701, 47.413903]]], "type": "MultiLineString"}, "id": "4564", "properties": {}, "type": "Feature"}, {"bbox": [8.530466, 47.39414, 8.53156, 47.395689], "geometry": {"coordinates": [[[8.530489, 47.39414], [8.530466, 47.394158], [8.530652, 47.394406], [8.530883, 47.394678], [8.531247, 47.395094], [8.531465, 47.395353], [8.531483, 47.395501], [8.53156, 47.395689]]], "type": "MultiLineString"}, "id": "4565", "properties": {}, "type": "Feature"}, {"bbox": [8.501185, 47.410712, 8.506275, 47.415674], "geometry": {"coordinates": [[[8.501185, 47.410712], [8.501583, 47.410779], [8.501681, 47.410814], [8.501817, 47.410884], [8.501818, 47.410884], [8.50192, 47.410946], [8.502013, 47.411015], [8.502096, 47.411089], [8.502169, 47.411168], [8.50217, 47.411169], [8.502197, 47.411215], [8.502227, 47.411265], [8.502444, 47.411607], [8.502445, 47.411609], [8.502448, 47.411631], [8.502448, 47.411653], [8.502445, 47.411676], [8.50244, 47.411698], [8.502431, 47.41172], [8.50242, 47.411741], [8.502406, 47.411761], [8.502406, 47.411762], [8.502406, 47.411762], [8.502387, 47.411784], [8.502372, 47.411808], [8.50236, 47.411833], [8.502351, 47.411858], [8.502346, 47.411883], [8.502344, 47.411909], [8.502346, 47.411934], [8.502351, 47.41196], [8.502351, 47.41196], [8.502372, 47.41204], [8.502393, 47.412122], [8.502403, 47.412205], [8.502401, 47.412289], [8.502387, 47.412372], [8.502386, 47.412373], [8.502126, 47.412758], [8.502074, 47.412883], [8.501972, 47.41312], [8.501955, 47.413189], [8.501921, 47.413324], [8.501914, 47.413356], [8.501913, 47.413388], [8.501915, 47.41342], [8.501922, 47.413451], [8.501933, 47.413483], [8.501949, 47.413513], [8.501968, 47.413542], [8.501992, 47.41357], [8.50201, 47.413588], [8.502031, 47.413604], [8.502054, 47.413618], [8.502078, 47.413632], [8.502105, 47.413643], [8.502133, 47.413654], [8.502162, 47.413662], [8.502205, 47.413676], [8.502245, 47.413692], [8.502284, 47.413711], [8.50232, 47.413732], [8.502353, 47.413755], [8.502733, 47.414123], [8.50315, 47.414531], [8.503269, 47.414708], [8.503304, 47.414752], [8.503335, 47.414797], [8.50336, 47.414844], [8.503379, 47.414893], [8.503392, 47.414942], [8.5034, 47.414991], [8.503407, 47.415139], [8.503412, 47.415163], [8.50342, 47.415187], [8.503431, 47.41521], [8.503445, 47.415233], [8.503461, 47.415255], [8.503481, 47.415276], [8.503502, 47.415295], [8.503527, 47.415314], [8.503553, 47.41533], [8.504106, 47.415634], [8.504129, 47.415644], [8.504154, 47.415653], [8.504179, 47.41566], [8.504205, 47.415666], [8.504232, 47.41567], [8.504259, 47.415673], [8.504286, 47.415674], [8.504314, 47.415674], [8.504341, 47.415671], [8.504368, 47.415668], [8.504394, 47.415663], [8.504749, 47.415536], [8.505261, 47.415252], [8.50528, 47.415242], [8.505981, 47.41493], [8.506029, 47.414921], [8.506077, 47.414914], [8.506127, 47.414911], [8.506177, 47.414911], [8.506226, 47.414914], [8.506275, 47.41492]]], "type": "MultiLineString"}, "id": "4568", "properties": {}, "type": "Feature"}, {"bbox": [8.568742, 47.416438, 8.573563, 47.416995], "geometry": {"coordinates": [[[8.568742, 47.416438], [8.56924, 47.416922], [8.569359, 47.416967], [8.569506, 47.416984], [8.569578, 47.416995], [8.569861, 47.416988], [8.570128, 47.416972], [8.570364, 47.416942], [8.571234, 47.416815], [8.571506, 47.416775], [8.57174, 47.416744], [8.572237, 47.416701], [8.572268, 47.41664], [8.573563, 47.416625]]], "type": "MultiLineString"}, "id": "4570", "properties": {}, "type": "Feature"}, {"bbox": [8.484615, 47.377024, 8.485114, 47.377523], "geometry": {"coordinates": [[[8.485114, 47.377523], [8.48488, 47.377278], [8.484658, 47.3771], [8.484615, 47.377028], [8.484616, 47.377024]]], "type": "MultiLineString"}, "id": "4571", "properties": {}, "type": "Feature"}, {"bbox": [8.576669, 47.409686, 8.580386, 47.410549], "geometry": {"coordinates": [[[8.576669, 47.410549], [8.576735, 47.410535], [8.576799, 47.410517], [8.576861, 47.410496], [8.576875, 47.410485], [8.576891, 47.410476], [8.576908, 47.410467], [8.576926, 47.41046], [8.576945, 47.410453], [8.576964, 47.410448], [8.576984, 47.410444], [8.577005, 47.410441], [8.577026, 47.410439], [8.57708, 47.410436], [8.577133, 47.41043], [8.577185, 47.410421], [8.577236, 47.410409], [8.578045, 47.410231], [8.578095, 47.410226], [8.578143, 47.410218], [8.57819, 47.410206], [8.579142, 47.409973], [8.579441, 47.409906], [8.579466, 47.409899], [8.579493, 47.409894], [8.57952, 47.40989], [8.579547, 47.409887], [8.579575, 47.409886], [8.579602, 47.409883], [8.579629, 47.409879], [8.579699, 47.409865], [8.579766, 47.409848], [8.579831, 47.409827], [8.579883, 47.409809], [8.579936, 47.409793], [8.57999, 47.409781], [8.580087, 47.409756], [8.580185, 47.409733], [8.580283, 47.409711], [8.580386, 47.409686]]], "type": "MultiLineString"}, "id": "4572", "properties": {}, "type": "Feature"}, {"bbox": [8.57676, 47.408662, 8.577111, 47.408757], "geometry": {"coordinates": [[[8.577111, 47.408662], [8.57676, 47.408757]]], "type": "MultiLineString"}, "id": "4573", "properties": {}, "type": "Feature"}, {"bbox": [8.543678, 47.373102, 8.543987, 47.373481], "geometry": {"coordinates": [[[8.543951, 47.373435], [8.543923, 47.3734], [8.543957, 47.373159], [8.543981, 47.373138], [8.543987, 47.37311], [8.543758, 47.373103], [8.543691, 47.373102], [8.543686, 47.373209], [8.543678, 47.373297], [8.543733, 47.373401], [8.543812, 47.373481], [8.543923, 47.373473], [8.543951, 47.373435]]], "type": "MultiLineString"}, "id": "4577", "properties": {}, "type": "Feature"}, {"bbox": [8.532521, 47.329715, 8.532697, 47.329829], "geometry": {"coordinates": [[[8.532697, 47.329829], [8.532647, 47.329805], [8.532601, 47.329778], [8.532559, 47.329748], [8.532521, 47.329715]]], "type": "MultiLineString"}, "id": "4581", "properties": {}, "type": "Feature"}, {"bbox": [8.509898, 47.325014, 8.512181, 47.326247], "geometry": {"coordinates": [[[8.512181, 47.325014], [8.51213, 47.32505], [8.512048, 47.325109], [8.511923, 47.325285], [8.511821, 47.325392], [8.511686, 47.325489], [8.511532, 47.325582], [8.51139, 47.325674], [8.511318, 47.325699], [8.511292, 47.325702], [8.511263, 47.325708], [8.511187, 47.325716], [8.511111, 47.325721], [8.511035, 47.325724], [8.51078, 47.325726], [8.510732, 47.325728], [8.510685, 47.325733], [8.510639, 47.325741], [8.510594, 47.325752], [8.510551, 47.325765], [8.51051, 47.325781], [8.510471, 47.3258], [8.510435, 47.325821], [8.510402, 47.325844], [8.510368, 47.325873], [8.510334, 47.325901], [8.510302, 47.325931], [8.510276, 47.325954], [8.510251, 47.325977], [8.510227, 47.326001], [8.510192, 47.326032], [8.510158, 47.326063], [8.510122, 47.326093], [8.510088, 47.326122], [8.510053, 47.32615], [8.510017, 47.326178], [8.509917, 47.326236], [8.509898, 47.326247]]], "type": "MultiLineString"}, "id": "4582", "properties": {}, "type": "Feature"}, {"bbox": [8.544988, 47.405275, 8.545231, 47.405681], "geometry": {"coordinates": [[[8.544988, 47.405275], [8.544996, 47.405311], [8.545064, 47.40546], [8.54521, 47.405666], [8.545231, 47.405681]]], "type": "MultiLineString"}, "id": "4583", "properties": {}, "type": "Feature"}, {"bbox": [8.553308, 47.419436, 8.553916, 47.420313], "geometry": {"coordinates": [[[8.553916, 47.419436], [8.55372, 47.419497], [8.553525, 47.41956], [8.553333, 47.419626], [8.55333, 47.419627], [8.553327, 47.419628], [8.553324, 47.419629], [8.553322, 47.41963], [8.553319, 47.419632], [8.553317, 47.419634], [8.553315, 47.419635], [8.553313, 47.419637], [8.553312, 47.419639], [8.55331, 47.419641], [8.553309, 47.419643], [8.553309, 47.419645], [8.553308, 47.419648], [8.553308, 47.41965], [8.553308, 47.419652], [8.553309, 47.419654], [8.553309, 47.419656], [8.55331, 47.419658], [8.553312, 47.41966], [8.553313, 47.419662], [8.553315, 47.419664], [8.55391, 47.420313]]], "type": "MultiLineString"}, "id": "4584", "properties": {}, "type": "Feature"}, {"bbox": [8.477403, 47.379383, 8.479467, 47.380556], "geometry": {"coordinates": [[[8.477403, 47.380556], [8.477594, 47.380542], [8.477616, 47.380539], [8.477638, 47.380536], [8.477659, 47.38053], [8.47768, 47.380524], [8.477699, 47.380516], [8.477718, 47.380508], [8.478249, 47.380253], [8.478274, 47.380241], [8.478298, 47.380228], [8.478319, 47.380214], [8.478339, 47.380198], [8.478357, 47.380181], [8.478497, 47.380047], [8.478637, 47.379914], [8.478777, 47.37978], [8.478793, 47.379761], [8.478812, 47.379743], [8.478832, 47.379726], [8.478855, 47.379711], [8.47888, 47.379697], [8.478906, 47.379684], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4585", "properties": {}, "type": "Feature"}, {"bbox": [8.54614, 47.366644, 8.547546, 47.367906], "geometry": {"coordinates": [[[8.547546, 47.366644], [8.547443, 47.366719], [8.547347, 47.366798], [8.54726, 47.366881], [8.547196, 47.366943], [8.547133, 47.367005], [8.54707, 47.367067], [8.54688, 47.367257], [8.546793, 47.367333], [8.546706, 47.367414], [8.546639, 47.367474], [8.546568, 47.367532], [8.546496, 47.367589], [8.546471, 47.367611], [8.54614, 47.367906]]], "type": "MultiLineString"}, "id": "4586", "properties": {}, "type": "Feature"}, {"bbox": [8.571249, 47.381487, 8.571743, 47.382091], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571541, 47.381516], [8.571538, 47.381545], [8.571531, 47.381574], [8.571521, 47.381602], [8.571506, 47.381629], [8.571488, 47.381656], [8.571467, 47.381681], [8.571442, 47.381705], [8.571414, 47.381727], [8.571302, 47.381823], [8.57129, 47.381834], [8.571279, 47.381847], [8.57127, 47.381859], [8.571262, 47.381873], [8.571256, 47.381886], [8.571252, 47.3819], [8.571249, 47.381915], [8.571249, 47.381929], [8.57125, 47.381943], [8.571253, 47.381957], [8.571258, 47.381971], [8.571264, 47.381985], [8.571272, 47.381998], [8.571282, 47.38201], [8.571293, 47.382022], [8.571306, 47.382034], [8.57132, 47.382044], [8.571336, 47.382054], [8.571352, 47.382063], [8.57137, 47.38207], [8.571389, 47.382077], [8.571409, 47.382082], [8.57143, 47.382087], [8.571451, 47.382089], [8.571473, 47.382091], [8.571494, 47.382091], [8.571516, 47.382091], [8.571538, 47.382088], [8.571559, 47.382085], [8.571579, 47.38208], [8.571599, 47.382075], [8.571619, 47.382068], [8.571637, 47.38206], [8.571654, 47.38205], [8.57167, 47.38204], [8.571684, 47.382029], [8.571697, 47.382018], [8.571709, 47.382005], [8.571719, 47.381992], [8.571727, 47.381978], [8.571734, 47.381964], [8.571739, 47.38195], [8.571742, 47.381935], [8.571743, 47.381921], [8.571742, 47.381906], [8.57154, 47.381487]]], "type": "MultiLineString"}, "id": "4587", "properties": {}, "type": "Feature"}, {"bbox": [8.470285, 47.377293, 8.474415, 47.379268], "geometry": {"coordinates": [[[8.470285, 47.379268], [8.470444, 47.379262], [8.470462, 47.379261], [8.47048, 47.379259], [8.470498, 47.379257], [8.470872, 47.379213], [8.471053, 47.379192], [8.471195, 47.379172], [8.471336, 47.379147], [8.471474, 47.379117], [8.471595, 47.379084], [8.471711, 47.379043], [8.471821, 47.378995], [8.471924, 47.378941], [8.472019, 47.378881], [8.472306, 47.37868], [8.472386, 47.378629], [8.472472, 47.378582], [8.472562, 47.378539], [8.473068, 47.378322], [8.473149, 47.37829], [8.473235, 47.378263], [8.473323, 47.37824], [8.473414, 47.378223], [8.473504, 47.378205], [8.47359, 47.378183], [8.473674, 47.378156], [8.473928, 47.378065], [8.474203, 47.377981], [8.474231, 47.377971], [8.474258, 47.37796], [8.474283, 47.377947], [8.474307, 47.377932], [8.474329, 47.377917], [8.474348, 47.3779], [8.474365, 47.377882], [8.47438, 47.377863], [8.474392, 47.377843], [8.474402, 47.377823], [8.474409, 47.377802], [8.474413, 47.37778], [8.474415, 47.377759], [8.474414, 47.377738], [8.47441, 47.377716], [8.474403, 47.377695], [8.474394, 47.377675], [8.474371, 47.377636], [8.474343, 47.377598], [8.47431, 47.377562], [8.474274, 47.377527], [8.473998, 47.377293]]], "type": "MultiLineString"}, "id": "4588", "properties": {}, "type": "Feature"}, {"bbox": [8.513107, 47.394196, 8.513345, 47.3947], "geometry": {"coordinates": [[[8.513107, 47.394196], [8.513126, 47.394233], [8.513339, 47.394675], [8.513345, 47.3947]]], "type": "MultiLineString"}, "id": "4589", "properties": {}, "type": "Feature"}, {"bbox": [8.524695, 47.422954, 8.535359, 47.424131], "geometry": {"coordinates": [[[8.535359, 47.422954], [8.535113, 47.423032], [8.534722, 47.423149], [8.534374, 47.423262], [8.534019, 47.423362], [8.533656, 47.42345], [8.533619, 47.423454], [8.533582, 47.423458], [8.533545, 47.423463], [8.533321, 47.423497], [8.533101, 47.42354], [8.532885, 47.423591], [8.532225, 47.423773], [8.531576, 47.423909], [8.531231, 47.423964], [8.53114, 47.423969], [8.5307, 47.423989], [8.530283, 47.423989], [8.528901, 47.423943], [8.528186, 47.423936], [8.527693, 47.423961], [8.527311, 47.423978], [8.527292, 47.42398], [8.527208, 47.423986], [8.526993, 47.424003], [8.525844, 47.424131], [8.525197, 47.424075], [8.525062, 47.424034], [8.524848, 47.423972], [8.524695, 47.42395]]], "type": "MultiLineString"}, "id": "4591", "properties": {}, "type": "Feature"}, {"bbox": [8.561255, 47.373777, 8.563426, 47.37537], "geometry": {"coordinates": [[[8.561255, 47.37537], [8.561684, 47.37497], [8.56177, 47.374901], [8.561864, 47.374837], [8.561967, 47.374779], [8.562426, 47.37454], [8.562535, 47.374479], [8.563312, 47.37385], [8.563426, 47.373777]]], "type": "MultiLineString"}, "id": "4592", "properties": {}, "type": "Feature"}, {"bbox": [8.488178, 47.350565, 8.490053, 47.352864], "geometry": {"coordinates": [[[8.490053, 47.350565], [8.489874, 47.350685], [8.489852, 47.350714], [8.489829, 47.350742], [8.489804, 47.350769], [8.489675, 47.350871], [8.489552, 47.350976], [8.489434, 47.351084], [8.489252, 47.351278], [8.489054, 47.351466], [8.48884, 47.351645], [8.48879, 47.351683], [8.488735, 47.351718], [8.488676, 47.35175], [8.488613, 47.351778], [8.488547, 47.351803], [8.488478, 47.351823], [8.488406, 47.351839], [8.488333, 47.351851], [8.488316, 47.351854], [8.4883, 47.351858], [8.488285, 47.351863], [8.48827, 47.35187], [8.488256, 47.351876], [8.488242, 47.351884], [8.48823, 47.351893], [8.488219, 47.351902], [8.488209, 47.351912], [8.488201, 47.351922], [8.488193, 47.351933], [8.488187, 47.351944], [8.488183, 47.351955], [8.48818, 47.351967], [8.488179, 47.351979], [8.488178, 47.35199], [8.48818, 47.352002], [8.488183, 47.352014], [8.488187, 47.352025], [8.488193, 47.352036], [8.4882, 47.352047], [8.488209, 47.352057], [8.488447, 47.352409], [8.488632, 47.352662], [8.488641, 47.352675], [8.488647, 47.352689], [8.488652, 47.352703], [8.488655, 47.352717], [8.488656, 47.352731], [8.488655, 47.352745], [8.488652, 47.35276], [8.488647, 47.352773], [8.488641, 47.352787], [8.488633, 47.3528], [8.488623, 47.352813], [8.488612, 47.352825], [8.488599, 47.352836], [8.488584, 47.352846], [8.488569, 47.352856], [8.488552, 47.352864]]], "type": "MultiLineString"}, "id": "4594", "properties": {}, "type": "Feature"}, {"bbox": [8.540942, 47.370651, 8.541124, 47.371447], "geometry": {"coordinates": [[[8.541055, 47.370651], [8.541124, 47.37094], [8.541037, 47.371205], [8.541003, 47.371298], [8.540942, 47.371447]]], "type": "MultiLineString"}, "id": "4595", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.359699, 8.596046, 47.359903], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.594618, 47.359883], [8.594666, 47.359886], [8.594714, 47.359887], [8.594762, 47.359884], [8.59481, 47.359879], [8.594857, 47.359872], [8.594903, 47.359861], [8.594934, 47.359815], [8.594964, 47.359768], [8.594991, 47.359721], [8.594996, 47.359717], [8.595002, 47.359713], [8.595008, 47.35971], [8.595015, 47.359707], [8.595022, 47.359705], [8.595029, 47.359703], [8.595036, 47.359701], [8.595044, 47.3597], [8.595052, 47.359699], [8.59506, 47.359699], [8.595067, 47.359699], [8.595075, 47.3597], [8.59527, 47.359744], [8.595416, 47.359706], [8.595974, 47.359889], [8.595988, 47.359894], [8.596002, 47.359897], [8.596016, 47.3599], [8.596031, 47.359902], [8.596046, 47.359903]]], "type": "MultiLineString"}, "id": "4596", "properties": {}, "type": "Feature"}, {"bbox": [8.548372, 47.405902, 8.550399, 47.406527], "geometry": {"coordinates": [[[8.548372, 47.405902], [8.548612, 47.406023], [8.548729, 47.406088], [8.548859, 47.406164], [8.548999, 47.406231], [8.549148, 47.40629], [8.549303, 47.406339], [8.549465, 47.406378], [8.549533, 47.406391], [8.549623, 47.406409], [8.550196, 47.406527], [8.550399, 47.406507]]], "type": "MultiLineString"}, "id": "4597", "properties": {}, "type": "Feature"}, {"bbox": [8.570269, 47.370112, 8.571089, 47.370981], "geometry": {"coordinates": [[[8.570557, 47.370112], [8.570495, 47.370151], [8.570431, 47.370188], [8.570363, 47.370222], [8.570339, 47.370246], [8.570318, 47.370272], [8.570301, 47.370299], [8.570288, 47.370327], [8.570278, 47.370355], [8.570272, 47.370384], [8.57027, 47.370414], [8.570269, 47.370462], [8.570276, 47.37051], [8.570288, 47.370557], [8.570307, 47.370604], [8.570314, 47.370613], [8.570322, 47.370622], [8.570332, 47.37063], [8.570342, 47.370638], [8.570354, 47.370645], [8.570366, 47.370651], [8.570379, 47.370657], [8.570393, 47.370662], [8.570407, 47.370666], [8.570935, 47.370833], [8.570967, 47.370846], [8.570998, 47.370861], [8.571026, 47.370877], [8.571053, 47.370894], [8.571077, 47.370913], [8.571081, 47.370919], [8.571084, 47.370925], [8.571087, 47.370931], [8.571088, 47.370938], [8.571089, 47.370944], [8.571089, 47.37095], [8.571088, 47.370957], [8.571087, 47.370963], [8.571084, 47.370969], [8.571081, 47.370975], [8.571077, 47.370981]]], "type": "MultiLineString"}, "id": "4598", "properties": {}, "type": "Feature"}, {"bbox": [8.54345, 47.417233, 8.544106, 47.417786], "geometry": {"coordinates": [[[8.544106, 47.417233], [8.544093, 47.417233], [8.544081, 47.417234], [8.544068, 47.417235], [8.544056, 47.417237], [8.544044, 47.41724], [8.544033, 47.417244], [8.544022, 47.417248], [8.544011, 47.417253], [8.544002, 47.417259], [8.543993, 47.417265], [8.543985, 47.417271], [8.543977, 47.417279], [8.543971, 47.417286], [8.543966, 47.417294], [8.543961, 47.417302], [8.543964, 47.417606], [8.543963, 47.417621], [8.543961, 47.417636], [8.543956, 47.417651], [8.54395, 47.417666], [8.543942, 47.41768], [8.543932, 47.417694], [8.54392, 47.417707], [8.543907, 47.41772], [8.543892, 47.417731], [8.543876, 47.417742], [8.543858, 47.417752], [8.543839, 47.41776], [8.54382, 47.417768], [8.543799, 47.417774], [8.543778, 47.417779], [8.543756, 47.417783], [8.543733, 47.417785], [8.543711, 47.417786], [8.54345, 47.417776]]], "type": "MultiLineString"}, "id": "4599", "properties": {}, "type": "Feature"}, {"bbox": [8.524999, 47.364365, 8.527794, 47.367413], "geometry": {"coordinates": [[[8.527794, 47.366886], [8.527756, 47.366993], [8.527734, 47.367055], [8.527667, 47.367349], [8.527665, 47.367356], [8.527663, 47.367362], [8.527659, 47.367369], [8.527654, 47.367375], [8.527649, 47.36738], [8.527643, 47.367386], [8.527637, 47.367391], [8.527629, 47.367395], [8.527621, 47.367399], [8.527613, 47.367403], [8.527604, 47.367406], [8.527595, 47.367409], [8.527586, 47.367411], [8.527576, 47.367412], [8.527566, 47.367413], [8.527556, 47.367413], [8.527523, 47.367407], [8.52749, 47.3674], [8.527458, 47.367391], [8.527155, 47.367302], [8.527016, 47.367259], [8.526879, 47.367214], [8.526744, 47.367167], [8.526619, 47.36712], [8.526496, 47.367071], [8.526376, 47.36702], [8.526096, 47.366888], [8.525837, 47.366738], [8.525601, 47.366571], [8.525404, 47.366412], [8.525334, 47.366279], [8.524999, 47.366014], [8.525016, 47.365901], [8.525375, 47.364365]]], "type": "MultiLineString"}, "id": "4600", "properties": {}, "type": "Feature"}, {"bbox": [8.485704, 47.382327, 8.486178, 47.382781], "geometry": {"coordinates": [[[8.48613, 47.382781], [8.486143, 47.382766], [8.486154, 47.382751], [8.486162, 47.382736], [8.486169, 47.38272], [8.486174, 47.382703], [8.486177, 47.382687], [8.486178, 47.38267], [8.486038, 47.382435], [8.486032, 47.382429], [8.486025, 47.382424], [8.486018, 47.38242], [8.48601, 47.382416], [8.486001, 47.382412], [8.485992, 47.382409], [8.485983, 47.382407], [8.485973, 47.382405], [8.485882, 47.382382], [8.485792, 47.382356], [8.485704, 47.382327]]], "type": "MultiLineString"}, "id": "4601", "properties": {}, "type": "Feature"}, {"bbox": [8.576153, 47.348787, 8.576238, 47.349445], "geometry": {"coordinates": [[[8.576153, 47.349445], [8.57623, 47.349142], [8.576238, 47.349041], [8.576225, 47.348787]]], "type": "MultiLineString"}, "id": "4609", "properties": {}, "type": "Feature"}, {"bbox": [8.495954, 47.425929, 8.496499, 47.426193], "geometry": {"coordinates": [[[8.496499, 47.425929], [8.496177, 47.426175], [8.496169, 47.42618], [8.496161, 47.426183], [8.496152, 47.426186], [8.496143, 47.426189], [8.496133, 47.426191], [8.496124, 47.426192], [8.496114, 47.426193], [8.496104, 47.426193], [8.496094, 47.426193], [8.496084, 47.426192], [8.496074, 47.426191], [8.496065, 47.426189], [8.496056, 47.426186], [8.496047, 47.426183], [8.496038, 47.42618], [8.49603, 47.426176], [8.496023, 47.426171], [8.496016, 47.426166], [8.49601, 47.426161], [8.496004, 47.426156], [8.496, 47.42615], [8.495996, 47.426144], [8.495992, 47.426137], [8.495954, 47.426047]]], "type": "MultiLineString"}, "id": "4610", "properties": {}, "type": "Feature"}, {"bbox": [8.534781, 47.331327, 8.537301, 47.333036], "geometry": {"coordinates": [[[8.534781, 47.333036], [8.535073, 47.332988], [8.535121, 47.332978], [8.535167, 47.332965], [8.535212, 47.33295], [8.535255, 47.332932], [8.535295, 47.332912], [8.535846, 47.332528], [8.535937, 47.332455], [8.537246, 47.331371], [8.537301, 47.331327]]], "type": "MultiLineString"}, "id": "4611", "properties": {}, "type": "Feature"}, {"bbox": [8.530538, 47.383268, 8.530808, 47.383441], "geometry": {"coordinates": [[[8.530808, 47.383441], [8.530625, 47.383268], [8.530538, 47.38332]]], "type": "MultiLineString"}, "id": "4617", "properties": {}, "type": "Feature"}, {"bbox": [8.50393, 47.41718, 8.504401, 47.417821], "geometry": {"coordinates": [[[8.504241, 47.417821], [8.504273, 47.417801], [8.504304, 47.417782], [8.504336, 47.417763], [8.504346, 47.417759], [8.504355, 47.417754], [8.504363, 47.417749], [8.504371, 47.417744], [8.504378, 47.417738], [8.504384, 47.417731], [8.504389, 47.417725], [8.504393, 47.417718], [8.504397, 47.417711], [8.504399, 47.417703], [8.504401, 47.417696], [8.504401, 47.417688], [8.5044, 47.41768], [8.504387, 47.41766], [8.50437, 47.417641], [8.504351, 47.417623], [8.50433, 47.417606], [8.504307, 47.417591], [8.504281, 47.417577], [8.504254, 47.417564], [8.504242, 47.417559], [8.50423, 47.417553], [8.50422, 47.417546], [8.50421, 47.417539], [8.504201, 47.417531], [8.504193, 47.417523], [8.504186, 47.417515], [8.504181, 47.417506], [8.504176, 47.417496], [8.504173, 47.417487], [8.504171, 47.417477], [8.50417, 47.417467], [8.504149, 47.417357], [8.504141, 47.417336], [8.50413, 47.417316], [8.504117, 47.417296], [8.504101, 47.417278], [8.504083, 47.41726], [8.504062, 47.417244], [8.50404, 47.417228], [8.50393, 47.41718]]], "type": "MultiLineString"}, "id": "4618", "properties": {}, "type": "Feature"}, {"bbox": [8.475615, 47.385252, 8.477807, 47.386039], "geometry": {"coordinates": [[[8.475615, 47.386039], [8.475631, 47.386029], [8.475648, 47.38602], [8.475665, 47.386012], [8.476704, 47.385687], [8.47675, 47.385672], [8.476794, 47.385656], [8.476836, 47.385637], [8.477103, 47.38552], [8.477373, 47.385406], [8.477646, 47.385294], [8.477699, 47.385279], [8.477752, 47.385264], [8.477807, 47.385252]]], "type": "MultiLineString"}, "id": "4619", "properties": {}, "type": "Feature"}, {"bbox": [8.570218, 47.406552, 8.570617, 47.407168], "geometry": {"coordinates": [[[8.570218, 47.406552], [8.570282, 47.406625], [8.570362, 47.406715], [8.570435, 47.406809], [8.570502, 47.406904], [8.570544, 47.406967], [8.570577, 47.407032], [8.570601, 47.4071], [8.570617, 47.407168]]], "type": "MultiLineString"}, "id": "4620", "properties": {}, "type": "Feature"}, {"bbox": [8.516545, 47.332763, 8.517416, 47.333698], "geometry": {"coordinates": [[[8.516545, 47.332763], [8.516592, 47.332775], [8.516606, 47.33278], [8.51662, 47.332785], [8.516633, 47.332791], [8.516645, 47.332798], [8.516656, 47.332806], [8.516666, 47.332814], [8.516674, 47.332823], [8.516806, 47.332948], [8.51684, 47.332975], [8.516876, 47.333], [8.516916, 47.333023], [8.516959, 47.333043], [8.517163, 47.333129], [8.517195, 47.333142], [8.517224, 47.333157], [8.517252, 47.333174], [8.517277, 47.333192], [8.517299, 47.333212], [8.517349, 47.333258], [8.517368, 47.333278], [8.517385, 47.333299], [8.517398, 47.333321], [8.517408, 47.333343], [8.517413, 47.333357], [8.517415, 47.333371], [8.517416, 47.333385], [8.517415, 47.333399], [8.517413, 47.333413], [8.517409, 47.333426], [8.517403, 47.33344], [8.517396, 47.333453], [8.517247, 47.333672], [8.517229, 47.333698]]], "type": "MultiLineString"}, "id": "4621", "properties": {}, "type": "Feature"}, {"bbox": [8.477899, 47.417092, 8.482596, 47.418708], "geometry": {"coordinates": [[[8.477899, 47.417092], [8.478177, 47.417191], [8.478254, 47.417222], [8.478327, 47.417259], [8.478394, 47.417299], [8.478455, 47.417344], [8.47851, 47.417392], [8.478639, 47.417524], [8.478756, 47.41766], [8.47886, 47.417801], [8.478917, 47.417878], [8.478976, 47.417954], [8.479036, 47.418029], [8.479122, 47.418124], [8.479213, 47.418217], [8.47931, 47.418308], [8.479354, 47.418363], [8.479399, 47.418418], [8.479446, 47.418472], [8.479469, 47.418492], [8.479495, 47.418512], [8.479523, 47.418529], [8.479553, 47.418545], [8.479585, 47.418559], [8.479618, 47.418572], [8.479653, 47.418582], [8.480124, 47.418676], [8.480268, 47.418694], [8.480414, 47.418705], [8.48056, 47.418708], [8.480706, 47.418702], [8.48089, 47.418693], [8.481072, 47.418672], [8.481251, 47.418639], [8.481423, 47.418595], [8.482035, 47.418433], [8.482053, 47.418428], [8.482072, 47.418425], [8.482091, 47.418422], [8.482111, 47.418421], [8.48213, 47.418421], [8.48215, 47.418422], [8.482169, 47.418424], [8.482188, 47.418427], [8.482261, 47.418445], [8.482336, 47.418458], [8.482412, 47.418468], [8.482441, 47.418467], [8.482469, 47.418464], [8.482496, 47.41846], [8.482523, 47.418453], [8.482549, 47.418445], [8.482573, 47.418436], [8.482596, 47.418425]]], "type": "MultiLineString"}, "id": "4622", "properties": {}, "type": "Feature"}, {"bbox": [8.489729, 47.390626, 8.491974, 47.391153], "geometry": {"coordinates": [[[8.491974, 47.390626], [8.490142, 47.391132], [8.490115, 47.391139], [8.490088, 47.391145], [8.490059, 47.391149], [8.490031, 47.391152], [8.490002, 47.391153], [8.489973, 47.391152], [8.489945, 47.39115], [8.489917, 47.391145], [8.489889, 47.39114], [8.489863, 47.391133], [8.489837, 47.391124], [8.489812, 47.391114], [8.489789, 47.391102], [8.489767, 47.391089], [8.489747, 47.391075], [8.489729, 47.39106]]], "type": "MultiLineString"}, "id": "4628", "properties": {}, "type": "Feature"}, {"bbox": [8.55383, 47.383818, 8.555851, 47.385469], "geometry": {"coordinates": [[[8.55383, 47.383818], [8.554677, 47.384364], [8.554872, 47.384506], [8.555257, 47.384782], [8.555344, 47.384842], [8.555566, 47.385007], [8.555621, 47.385049], [8.555671, 47.385093], [8.555714, 47.38514], [8.555751, 47.38519], [8.555782, 47.385241], [8.555806, 47.385295], [8.555823, 47.385349], [8.555851, 47.385469]]], "type": "MultiLineString"}, "id": "4629", "properties": {}, "type": "Feature"}, {"bbox": [8.468038, 47.391539, 8.468501, 47.392423], "geometry": {"coordinates": [[[8.468501, 47.391539], [8.468449, 47.391586], [8.468265, 47.391705], [8.468107, 47.391767], [8.468093, 47.391778], [8.468081, 47.391789], [8.46807, 47.391801], [8.46806, 47.391813], [8.468053, 47.391826], [8.468047, 47.39184], [8.468042, 47.391853], [8.468039, 47.391867], [8.468038, 47.391881], [8.468039, 47.391895], [8.468042, 47.391909], [8.468178, 47.392393], [8.468204, 47.392423]]], "type": "MultiLineString"}, "id": "4636", "properties": {}, "type": "Feature"}, {"bbox": [8.556768, 47.381399, 8.559779, 47.383235], "geometry": {"coordinates": [[[8.556768, 47.381401], [8.556797, 47.381399], [8.556827, 47.381399], [8.556857, 47.381401], [8.556886, 47.381404], [8.556915, 47.381409], [8.556943, 47.381416], [8.55697, 47.381424], [8.556996, 47.381434], [8.557021, 47.381445], [8.557044, 47.381458], [8.557066, 47.381472], [8.557085, 47.381487], [8.557103, 47.381503], [8.557138, 47.381554], [8.557179, 47.381604], [8.557227, 47.381651], [8.55728, 47.381694], [8.557338, 47.381735], [8.557401, 47.381772], [8.557567, 47.381852], [8.557623, 47.381885], [8.558098, 47.38211], [8.558155, 47.382168], [8.558323, 47.382318], [8.558393, 47.382356], [8.558482, 47.382383], [8.558559, 47.382441], [8.558886, 47.382663], [8.558946, 47.38269], [8.559035, 47.382722], [8.559095, 47.382803], [8.559649, 47.38321], [8.559675, 47.38323], [8.559779, 47.383235]]], "type": "MultiLineString"}, "id": "4637", "properties": {}, "type": "Feature"}, {"bbox": [8.494309, 47.404992, 8.495397, 47.405314], "geometry": {"coordinates": [[[8.495397, 47.404992], [8.495351, 47.404996], [8.495304, 47.405002], [8.495259, 47.405011], [8.494309, 47.405314]]], "type": "MultiLineString"}, "id": "4638", "properties": {}, "type": "Feature"}, {"bbox": [8.553442, 47.397452, 8.55501, 47.397964], "geometry": {"coordinates": [[[8.553442, 47.39746], [8.553977, 47.397452], [8.554307, 47.397513], [8.554754, 47.397697], [8.55501, 47.397964]]], "type": "MultiLineString"}, "id": "4639", "properties": {}, "type": "Feature"}, {"bbox": [8.51101, 47.421535, 8.514424, 47.42191], "geometry": {"coordinates": [[[8.51101, 47.421535], [8.511032, 47.421563], [8.511057, 47.42159], [8.511086, 47.421616], [8.511118, 47.421639], [8.511511, 47.421889], [8.511519, 47.421894], [8.511526, 47.421898], [8.511534, 47.421901], [8.511543, 47.421904], [8.511552, 47.421906], [8.511561, 47.421908], [8.51157, 47.421909], [8.511579, 47.42191], [8.511589, 47.42191], [8.511598, 47.421909], [8.511608, 47.421908], [8.511617, 47.421906], [8.511626, 47.421904], [8.511634, 47.421901], [8.511643, 47.421898], [8.51165, 47.421894], [8.511679, 47.421876], [8.511708, 47.421859], [8.511739, 47.421842], [8.511877, 47.421776], [8.512023, 47.421719], [8.512177, 47.421671], [8.512336, 47.421633], [8.512447, 47.421621], [8.512559, 47.421616], [8.512671, 47.421619], [8.512782, 47.421629], [8.512847, 47.421645], [8.512909, 47.421666], [8.512968, 47.421689], [8.513025, 47.421716], [8.513093, 47.421742], [8.513165, 47.421763], [8.513239, 47.42178], [8.513315, 47.421792], [8.513392, 47.421799], [8.51347, 47.421802], [8.513563, 47.421798], [8.513656, 47.421795], [8.51375, 47.421792], [8.513918, 47.421793], [8.514086, 47.421797], [8.514254, 47.421803], [8.514297, 47.421806], [8.514339, 47.421807], [8.514382, 47.421806], [8.514424, 47.421801]]], "type": "MultiLineString"}, "id": "4640", "properties": {}, "type": "Feature"}, {"bbox": [8.503334, 47.393853, 8.503698, 47.394298], "geometry": {"coordinates": [[[8.503698, 47.394298], [8.503511, 47.394293], [8.503502, 47.394293], [8.503494, 47.394292], [8.503485, 47.394291], [8.503477, 47.394289], [8.503469, 47.394287], [8.503461, 47.394284], [8.503453, 47.394281], [8.503446, 47.394277], [8.50344, 47.394273], [8.503434, 47.394269], [8.503429, 47.394264], [8.503424, 47.394259], [8.50342, 47.394254], [8.503417, 47.394248], [8.503414, 47.394242], [8.503412, 47.394236], [8.503419, 47.39418], [8.503421, 47.394124], [8.503419, 47.394068], [8.5034, 47.393995], [8.503372, 47.393923], [8.503334, 47.393853]]], "type": "MultiLineString"}, "id": "4641", "properties": {}, "type": "Feature"}, {"bbox": [8.502321, 47.36306, 8.503228, 47.364355], "geometry": {"coordinates": [[[8.503228, 47.36306], [8.503202, 47.36309], [8.502795, 47.363514], [8.502582, 47.363764], [8.502321, 47.364068], [8.502322, 47.364342], [8.502348, 47.364349], [8.502766, 47.36435], [8.502792, 47.364351], [8.502882, 47.364355]]], "type": "MultiLineString"}, "id": "4642", "properties": {}, "type": "Feature"}, {"bbox": [8.573214, 47.372719, 8.574065, 47.373042], "geometry": {"coordinates": [[[8.574065, 47.372719], [8.573965, 47.37282], [8.573853, 47.372914], [8.57373, 47.373002], [8.573712, 47.373011], [8.573692, 47.373019], [8.573672, 47.373027], [8.573651, 47.373032], [8.573629, 47.373037], [8.573606, 47.37304], [8.573584, 47.373042], [8.573561, 47.373042], [8.573538, 47.373041], [8.573515, 47.373038], [8.573493, 47.373035], [8.573401, 47.373004], [8.573308, 47.372975], [8.573214, 47.372948]]], "type": "MultiLineString"}, "id": "4644", "properties": {}, "type": "Feature"}, {"bbox": [8.523011, 47.389695, 8.524063, 47.390475], "geometry": {"coordinates": [[[8.524063, 47.389695], [8.52406, 47.389698], [8.523385, 47.390189], [8.523011, 47.390475]]], "type": "MultiLineString"}, "id": "4653", "properties": {}, "type": "Feature"}, {"bbox": [8.514357, 47.367533, 8.515503, 47.36806], "geometry": {"coordinates": [[[8.515503, 47.367533], [8.515451, 47.367567], [8.51524, 47.367704], [8.515176, 47.367742], [8.514835, 47.367915], [8.514636, 47.368043], [8.514629, 47.368047], [8.514621, 47.36805], [8.514614, 47.368053], [8.514605, 47.368056], [8.514597, 47.368057], [8.514589, 47.368059], [8.51458, 47.368059], [8.514571, 47.36806], [8.514562, 47.368059], [8.514554, 47.368059], [8.514545, 47.368057], [8.514537, 47.368055], [8.514529, 47.368053], [8.514521, 47.36805], [8.514513, 47.368047], [8.514448, 47.368016], [8.514357, 47.367973]]], "type": "MultiLineString"}, "id": "4657", "properties": {}, "type": "Feature"}, {"bbox": [8.465178, 47.398289, 8.465219, 47.3983], "geometry": {"coordinates": [[[8.465219, 47.398289], [8.465178, 47.3983]]], "type": "MultiLineString"}, "id": "4658", "properties": {}, "type": "Feature"}, {"bbox": [8.509638, 47.412706, 8.512004, 47.413834], "geometry": {"coordinates": [[[8.512004, 47.412709], [8.511991, 47.412708], [8.511978, 47.412707], [8.511965, 47.412706], [8.511952, 47.412707], [8.51194, 47.412708], [8.511476, 47.412819], [8.511426, 47.412846], [8.51141, 47.412855], [8.511298, 47.412917], [8.511267, 47.412958], [8.511216, 47.413026], [8.510927, 47.413408], [8.510467, 47.413466], [8.510404, 47.413492], [8.510029, 47.413812], [8.510002, 47.413834], [8.509963, 47.413813], [8.509906, 47.413781], [8.509892, 47.413773], [8.509717, 47.413677], [8.509638, 47.413655]]], "type": "MultiLineString"}, "id": "4659", "properties": {}, "type": "Feature"}, {"bbox": [8.546108, 47.420839, 8.546806, 47.420987], "geometry": {"coordinates": [[[8.546806, 47.42092], [8.546796, 47.420923], [8.546787, 47.420926], [8.546777, 47.420928], [8.546767, 47.420929], [8.546757, 47.42093], [8.546747, 47.42093], [8.546736, 47.420929], [8.546726, 47.420928], [8.546716, 47.420926], [8.546707, 47.420924], [8.546697, 47.420921], [8.546688, 47.420918], [8.54668, 47.420914], [8.546673, 47.42091], [8.546665, 47.420907], [8.546657, 47.420904], [8.546648, 47.420901], [8.546639, 47.420899], [8.54663, 47.420898], [8.546621, 47.420897], [8.546612, 47.420896], [8.546603, 47.420896], [8.546593, 47.420897], [8.546584, 47.420898], [8.546575, 47.4209], [8.546567, 47.420902], [8.546558, 47.420905], [8.54655, 47.420908], [8.54654, 47.420911], [8.546529, 47.420913], [8.546518, 47.420915], [8.546506, 47.420916], [8.546495, 47.420916], [8.54649, 47.420916], [8.546485, 47.420917], [8.546481, 47.420918], [8.546476, 47.42092], [8.546472, 47.420921], [8.546468, 47.420923], [8.546464, 47.420925], [8.54646, 47.420927], [8.546345, 47.420987], [8.546344, 47.420987], [8.546343, 47.420987], [8.546342, 47.420987], [8.546341, 47.420987], [8.54634, 47.420987], [8.546339, 47.420987], [8.546338, 47.420987], [8.546337, 47.420987], [8.546336, 47.420986], [8.546335, 47.420986], [8.546334, 47.420985], [8.546334, 47.420985], [8.546333, 47.420984], [8.546332, 47.420984], [8.546332, 47.420983], [8.546331, 47.420983], [8.546331, 47.420982], [8.546331, 47.420981], [8.546331, 47.420981], [8.54633, 47.42098], [8.54633, 47.420979], [8.546331, 47.420979], [8.546331, 47.420978], [8.546331, 47.420977], [8.546331, 47.420977], [8.546332, 47.420976], [8.546341, 47.420922], [8.546343, 47.420914], [8.546344, 47.420906], [8.546344, 47.420897], [8.546337, 47.420853], [8.546336, 47.420852], [8.546336, 47.420851], [8.546336, 47.420851], [8.546336, 47.42085], [8.546336, 47.42085], [8.546335, 47.420849], [8.546335, 47.420849], [8.546334, 47.420849], [8.546334, 47.420848], [8.546333, 47.420848], [8.546332, 47.420848], [8.546332, 47.420847], [8.546331, 47.420847], [8.54633, 47.420847], [8.546329, 47.420847], [8.546329, 47.420847], [8.546328, 47.420847], [8.546327, 47.420847], [8.546326, 47.420847], [8.546325, 47.420847], [8.546325, 47.420847], [8.546324, 47.420847], [8.546323, 47.420847], [8.546242, 47.420884], [8.546231, 47.420887], [8.54622, 47.42089], [8.546209, 47.420891], [8.546207, 47.420892], [8.546206, 47.420892], [8.546204, 47.420891], [8.546202, 47.420891], [8.546201, 47.420891], [8.546199, 47.420891], [8.546198, 47.42089], [8.546197, 47.42089], [8.546195, 47.420889], [8.546194, 47.420888], [8.546193, 47.420887], [8.546192, 47.420887], [8.546191, 47.420886], [8.54619, 47.420885], [8.54619, 47.420884], [8.546189, 47.420883], [8.546189, 47.420882], [8.546188, 47.420881], [8.546188, 47.42088], [8.546188, 47.420879], [8.546187, 47.420871], [8.546185, 47.420862], [8.546182, 47.420854], [8.546178, 47.420846], [8.546178, 47.420845], [8.546178, 47.420844], [8.546177, 47.420844], [8.546177, 47.420843], [8.546176, 47.420842], [8.546175, 47.420842], [8.546174, 47.420841], [8.546174, 47.420841], [8.546173, 47.42084], [8.546172, 47.42084], [8.546171, 47.420839], [8.546169, 47.420839], [8.546168, 47.420839], [8.546167, 47.420839], [8.546166, 47.420839], [8.546165, 47.420839], [8.546164, 47.420839], [8.546163, 47.420839], [8.546161, 47.420839], [8.54616, 47.420839], [8.546159, 47.420839], [8.546158, 47.42084], [8.546157, 47.42084], [8.546156, 47.420841], [8.546155, 47.420841], [8.546108, 47.420897]]], "type": "MultiLineString"}, "id": "4660", "properties": {}, "type": "Feature"}, {"bbox": [8.479467, 47.37863, 8.480984, 47.379501], "geometry": {"coordinates": [[[8.480984, 47.37863], [8.480969, 47.378634], [8.480955, 47.378637], [8.48094, 47.378639], [8.480935, 47.378639], [8.48093, 47.37864], [8.480926, 47.378641], [8.480922, 47.378642], [8.480917, 47.378644], [8.480913, 47.378646], [8.48091, 47.378648], [8.480906, 47.37865], [8.480903, 47.378652], [8.480901, 47.378655], [8.480898, 47.378658], [8.480202, 47.379293], [8.480166, 47.379324], [8.480128, 47.379353], [8.480086, 47.379379], [8.480041, 47.379403], [8.479994, 47.379425], [8.479815, 47.379491], [8.479803, 47.379495], [8.479791, 47.379497], [8.479779, 47.379499], [8.479767, 47.3795], [8.479754, 47.379501], [8.479742, 47.379501], [8.47973, 47.3795], [8.479717, 47.379498], [8.479705, 47.379495], [8.479694, 47.379492], [8.479683, 47.379488], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4662", "properties": {}, "type": "Feature"}, {"bbox": [8.482175, 47.390976, 8.483488, 47.391326], "geometry": {"coordinates": [[[8.482175, 47.390976], [8.482353, 47.391281], [8.482357, 47.391286], [8.482362, 47.391292], [8.482368, 47.391297], [8.482374, 47.391302], [8.48238, 47.391307], [8.482388, 47.391311], [8.482395, 47.391314], [8.482404, 47.391318], [8.482412, 47.39132], [8.482421, 47.391323], [8.48243, 47.391324], [8.482439, 47.391325], [8.482449, 47.391326], [8.482458, 47.391326], [8.482468, 47.391326], [8.482477, 47.391324], [8.482486, 47.391323], [8.482986, 47.391185], [8.48303, 47.391163], [8.483074, 47.39114], [8.483118, 47.391118], [8.483154, 47.391104], [8.483192, 47.391091], [8.48323, 47.39108], [8.483317, 47.391052], [8.483403, 47.391023], [8.483488, 47.390993]]], "type": "MultiLineString"}, "id": "4663", "properties": {}, "type": "Feature"}, {"bbox": [8.478151, 47.360657, 8.47929, 47.360903], "geometry": {"coordinates": [[[8.47929, 47.360657], [8.479001, 47.360756], [8.478546, 47.36089], [8.478527, 47.360895], [8.478507, 47.360899], [8.478487, 47.360902], [8.478467, 47.360903], [8.478447, 47.360903], [8.478426, 47.360902], [8.478406, 47.360899], [8.478387, 47.360895], [8.478368, 47.36089], [8.478349, 47.360884], [8.478232, 47.360841], [8.478151, 47.360806]]], "type": "MultiLineString"}, "id": "4664", "properties": {}, "type": "Feature"}, {"bbox": [8.554853, 47.36691, 8.555794, 47.367468], "geometry": {"coordinates": [[[8.555744, 47.367302], [8.555691, 47.367273], [8.555777, 47.367199], [8.555781, 47.367195], [8.555785, 47.367191], [8.555788, 47.367186], [8.555791, 47.367182], [8.555792, 47.367177], [8.555794, 47.367172], [8.555794, 47.367167], [8.555794, 47.367162], [8.555794, 47.367157], [8.555792, 47.367152], [8.55579, 47.367147], [8.555788, 47.367142], [8.555784, 47.367138], [8.55578, 47.367133], [8.555776, 47.367129], [8.555771, 47.367126], [8.555765, 47.367122], [8.555759, 47.367119], [8.555337, 47.366919], [8.555275, 47.36691], [8.555268, 47.366911], [8.555261, 47.366913], [8.555255, 47.366914], [8.555248, 47.366917], [8.555242, 47.366919], [8.555237, 47.366922], [8.555231, 47.366926], [8.555227, 47.366929], [8.555222, 47.366933], [8.554868, 47.367287], [8.554864, 47.367291], [8.554861, 47.367295], [8.554858, 47.3673], [8.554856, 47.367304], [8.554855, 47.367309], [8.554854, 47.367314], [8.554853, 47.367319], [8.554854, 47.367323], [8.554855, 47.367328], [8.554856, 47.367333], [8.554858, 47.367337], [8.554861, 47.367342], [8.554864, 47.367346], [8.554868, 47.36735], [8.554872, 47.367354], [8.554877, 47.367358], [8.554882, 47.367361], [8.554888, 47.367364], [8.555104, 47.367468]]], "type": "MultiLineString"}, "id": "4665", "properties": {}, "type": "Feature"}, {"bbox": [8.511966, 47.412268, 8.51487, 47.413871], "geometry": {"coordinates": [[[8.51487, 47.412268], [8.514774, 47.412394], [8.514589, 47.412574], [8.514381, 47.412742], [8.514152, 47.412896], [8.513904, 47.413036], [8.513638, 47.413161], [8.513358, 47.413269], [8.513064, 47.413361], [8.51276, 47.413434], [8.512447, 47.413488], [8.512442, 47.413561], [8.512442, 47.413575], [8.51244, 47.413589], [8.512436, 47.413603], [8.512431, 47.413617], [8.512423, 47.41363], [8.512414, 47.413643], [8.512404, 47.413655], [8.512391, 47.413666], [8.512378, 47.413677], [8.512363, 47.413687], [8.512347, 47.413696], [8.51233, 47.413704], [8.511966, 47.413871]]], "type": "MultiLineString"}, "id": "4669", "properties": {}, "type": "Feature"}, {"bbox": [8.492991, 47.410152, 8.499577, 47.419298], "geometry": {"coordinates": [[[8.499577, 47.419298], [8.499569, 47.419294], [8.499449, 47.419246], [8.499324, 47.419205], [8.499194, 47.419172], [8.49906, 47.419146], [8.498923, 47.419129], [8.498664, 47.419097], [8.49841, 47.419047], [8.498165, 47.418981], [8.497903, 47.418906], [8.497864, 47.418894], [8.497827, 47.418881], [8.497792, 47.418865], [8.497759, 47.418848], [8.497727, 47.418828], [8.497699, 47.418807], [8.497673, 47.418785], [8.496693, 47.417965], [8.496504, 47.417807], [8.496311, 47.417651], [8.496115, 47.417497], [8.49608, 47.417468], [8.49605, 47.417437], [8.496024, 47.417404], [8.495973, 47.417308], [8.495899, 47.417122], [8.49587, 47.417048], [8.495743, 47.416728], [8.495714, 47.416639], [8.495693, 47.416548], [8.495681, 47.416457], [8.495647, 47.41618], [8.495645, 47.416157], [8.495643, 47.416133], [8.495642, 47.416109], [8.495641, 47.416077], [8.495642, 47.416044], [8.495644, 47.416012], [8.49569, 47.415776], [8.495713, 47.415662], [8.495741, 47.415548], [8.495773, 47.415435], [8.495813, 47.415299], [8.495848, 47.415163], [8.495879, 47.415027], [8.495899, 47.414929], [8.495915, 47.41483], [8.495926, 47.414732], [8.495932, 47.414645], [8.495934, 47.414557], [8.495931, 47.41447], [8.495931, 47.414382], [8.495923, 47.414294], [8.495907, 47.414207], [8.495905, 47.414197], [8.495903, 47.414187], [8.4959, 47.414178], [8.495887, 47.414143], [8.495869, 47.414109], [8.495848, 47.414076], [8.495822, 47.414044], [8.495758, 47.41396], [8.495695, 47.413875], [8.495633, 47.413789], [8.495579, 47.413706], [8.49553, 47.413622], [8.495486, 47.413536], [8.495392, 47.413346], [8.495303, 47.413155], [8.495219, 47.412962], [8.495157, 47.412827], [8.495092, 47.412692], [8.495023, 47.412557], [8.494972, 47.412464], [8.494916, 47.412372], [8.494855, 47.412282], [8.494798, 47.412208], [8.494734, 47.412137], [8.494666, 47.412068], [8.494422, 47.411843], [8.494308, 47.411728], [8.4942, 47.411611], [8.494098, 47.411492], [8.493706, 47.411013], [8.493103, 47.410282], [8.492991, 47.410152]]], "type": "MultiLineString"}, "id": "4671", "properties": {}, "type": "Feature"}, {"bbox": [8.548196, 47.382407, 8.54893, 47.382497], "geometry": {"coordinates": [[[8.548196, 47.382407], [8.548296, 47.382413], [8.548884, 47.382483], [8.54893, 47.382497]]], "type": "MultiLineString"}, "id": "4672", "properties": {}, "type": "Feature"}, {"bbox": [8.523817, 47.337825, 8.524804, 47.33821], "geometry": {"coordinates": [[[8.524804, 47.33821], [8.524315, 47.338205], [8.524146, 47.338195], [8.52398, 47.338175], [8.523817, 47.338145], [8.523844, 47.337825]]], "type": "MultiLineString"}, "id": "4673", "properties": {}, "type": "Feature"}, {"bbox": [8.479168, 47.41554, 8.480136, 47.415889], "geometry": {"coordinates": [[[8.479168, 47.415889], [8.479596, 47.415886], [8.47959, 47.415701], [8.479717, 47.415615], [8.480017, 47.415612], [8.480136, 47.41554]]], "type": "MultiLineString"}, "id": "4675", "properties": {}, "type": "Feature"}, {"bbox": [8.576919, 47.384517, 8.577044, 47.38473], "geometry": {"coordinates": [[[8.577044, 47.38473], [8.577025, 47.384714], [8.577007, 47.384697], [8.576992, 47.384679], [8.576979, 47.38466], [8.576968, 47.384641], [8.57696, 47.384621], [8.576957, 47.384599], [8.576952, 47.384578], [8.576944, 47.384557], [8.576933, 47.384536], [8.576919, 47.384517]]], "type": "MultiLineString"}, "id": "4676", "properties": {}, "type": "Feature"}, {"bbox": [8.512181, 47.330738, 8.513044, 47.331585], "geometry": {"coordinates": [[[8.512673, 47.331585], [8.512648, 47.331552], [8.512618, 47.331514], [8.512596, 47.331488], [8.51258, 47.33147], [8.512566, 47.33145], [8.512554, 47.33143], [8.512544, 47.331413], [8.512536, 47.331396], [8.512529, 47.331379], [8.512501, 47.331306], [8.512498, 47.331296], [8.512493, 47.331285], [8.512487, 47.331275], [8.51248, 47.331266], [8.512472, 47.331257], [8.512462, 47.331248], [8.512452, 47.331241], [8.512441, 47.331235], [8.512429, 47.331229], [8.512416, 47.331224], [8.512402, 47.331221], [8.512383, 47.331216], [8.512363, 47.331212], [8.512343, 47.33121], [8.512332, 47.331209], [8.512322, 47.331208], [8.512312, 47.331205], [8.512302, 47.331202], [8.512293, 47.331199], [8.512284, 47.331195], [8.512276, 47.331191], [8.512268, 47.331186], [8.512239, 47.331098], [8.51221, 47.331092], [8.512184, 47.331071], [8.512181, 47.330874], [8.512237, 47.330854], [8.512283, 47.330817], [8.512282, 47.33075], [8.512299, 47.330746], [8.51267, 47.330747], [8.512718, 47.330746], [8.512957, 47.33074], [8.513044, 47.330738]]], "type": "MultiLineString"}, "id": "4677", "properties": {}, "type": "Feature"}, {"bbox": [8.484874, 47.381601, 8.485704, 47.382327], "geometry": {"coordinates": [[[8.485704, 47.382327], [8.485682, 47.382317], [8.485662, 47.382307], [8.485643, 47.382295], [8.485625, 47.382281], [8.485581, 47.382238], [8.485535, 47.382196], [8.485488, 47.382154], [8.485481, 47.382148], [8.485472, 47.382142], [8.485463, 47.382136], [8.485453, 47.382131], [8.485443, 47.382127], [8.485432, 47.382124], [8.485365, 47.382098], [8.485357, 47.382094], [8.485349, 47.382091], [8.485342, 47.382086], [8.485335, 47.382082], [8.485329, 47.382077], [8.485324, 47.382071], [8.485243, 47.381992], [8.485164, 47.381913], [8.485086, 47.381832], [8.485049, 47.381781], [8.485013, 47.381729], [8.484978, 47.381677], [8.484965, 47.381662], [8.48495, 47.381648], [8.484933, 47.381634], [8.484915, 47.381622], [8.484895, 47.381611], [8.484874, 47.381601]]], "type": "MultiLineString"}, "id": "4678", "properties": {}, "type": "Feature"}, {"bbox": [8.590258, 47.372485, 8.591234, 47.373974], "geometry": {"coordinates": [[[8.590258, 47.372495], [8.590307, 47.372489], [8.590356, 47.372486], [8.590406, 47.372485], [8.590455, 47.372487], [8.590504, 47.372493], [8.590552, 47.3725], [8.590599, 47.372511], [8.590677, 47.372707], [8.590684, 47.372754], [8.590691, 47.3728], [8.590696, 47.372847], [8.590713, 47.372901], [8.590738, 47.372953], [8.59077, 47.373004], [8.590811, 47.373081], [8.590848, 47.373159], [8.590879, 47.373237], [8.590892, 47.373284], [8.59091, 47.373329], [8.590934, 47.373373], [8.590963, 47.373415], [8.590997, 47.373456], [8.591037, 47.373494], [8.591073, 47.373531], [8.591108, 47.373568], [8.591142, 47.373605], [8.591171, 47.373644], [8.591195, 47.373685], [8.591214, 47.373727], [8.591228, 47.37377], [8.591234, 47.373827], [8.591234, 47.373884], [8.591227, 47.373941], [8.591225, 47.37395], [8.591221, 47.373958], [8.591216, 47.373966], [8.591209, 47.373974]]], "type": "MultiLineString"}, "id": "4679", "properties": {}, "type": "Feature"}, {"bbox": [8.483322, 47.412128, 8.48401, 47.412501], "geometry": {"coordinates": [[[8.483779, 47.412501], [8.483725, 47.412499], [8.483671, 47.412494], [8.483619, 47.412486], [8.483567, 47.412475], [8.483517, 47.412461], [8.48347, 47.412444], [8.483424, 47.412424], [8.483382, 47.412402], [8.48337, 47.412394], [8.48336, 47.412385], [8.483351, 47.412376], [8.483343, 47.412367], [8.483336, 47.412357], [8.48333, 47.412346], [8.483326, 47.412336], [8.483323, 47.412325], [8.483322, 47.412314], [8.483322, 47.412303], [8.483324, 47.412292], [8.483326, 47.412281], [8.483331, 47.412271], [8.483336, 47.41226], [8.483343, 47.41225], [8.483351, 47.412241], [8.483361, 47.412232], [8.483371, 47.412224], [8.483383, 47.412216], [8.483395, 47.412209], [8.483408, 47.412203], [8.483432, 47.412195], [8.483456, 47.412188], [8.483481, 47.412183], [8.483506, 47.412179], [8.483871, 47.412144], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "4680", "properties": {}, "type": "Feature"}, {"bbox": [8.467599, 47.402561, 8.474729, 47.40303], "geometry": {"coordinates": [[[8.474729, 47.40303], [8.474458, 47.402951], [8.474177, 47.402889], [8.47389, 47.402843], [8.473598, 47.402816], [8.473303, 47.402806], [8.473008, 47.402814], [8.47279, 47.402828], [8.472572, 47.40283], [8.472353, 47.40282], [8.472137, 47.402797], [8.471924, 47.402763], [8.471311, 47.402668], [8.471153, 47.402649], [8.470994, 47.40264], [8.470833, 47.40264], [8.470439, 47.402649], [8.470301, 47.40264], [8.470163, 47.402624], [8.470028, 47.402603], [8.469867, 47.40258], [8.469704, 47.402566], [8.46954, 47.402561], [8.469375, 47.402566], [8.469146, 47.402571], [8.468917, 47.402575], [8.468687, 47.402577], [8.468323, 47.40259], [8.46796, 47.402614], [8.467599, 47.402649]]], "type": "MultiLineString"}, "id": "4685", "properties": {}, "type": "Feature"}, {"bbox": [8.505448, 47.396335, 8.508037, 47.397112], "geometry": {"coordinates": [[[8.508037, 47.396335], [8.507834, 47.396385], [8.507036, 47.39659], [8.506712, 47.396683], [8.506705, 47.396685], [8.506698, 47.396687], [8.506691, 47.396688], [8.506684, 47.396689], [8.50668, 47.396689], [8.506675, 47.396689], [8.506671, 47.39669], [8.506666, 47.396691], [8.506662, 47.396693], [8.506658, 47.396694], [8.506654, 47.396696], [8.506516, 47.396765], [8.506378, 47.396833], [8.506238, 47.3969], [8.506237, 47.396901], [8.506236, 47.396901], [8.506235, 47.396901], [8.506234, 47.396902], [8.506233, 47.396902], [8.506231, 47.396902], [8.50623, 47.396902], [8.506229, 47.396902], [8.506228, 47.396902], [8.506226, 47.396902], [8.506225, 47.396902], [8.506224, 47.396902], [8.506223, 47.396901], [8.506222, 47.396901], [8.506221, 47.3969], [8.50622, 47.3969], [8.506219, 47.396899], [8.506211, 47.396892], [8.50621, 47.396891], [8.506209, 47.396891], [8.506208, 47.39689], [8.506207, 47.39689], [8.506206, 47.396889], [8.506205, 47.396889], [8.506204, 47.396888], [8.506202, 47.396888], [8.506201, 47.396888], [8.5062, 47.396888], [8.506199, 47.396888], [8.506197, 47.396888], [8.506196, 47.396888], [8.506195, 47.396888], [8.506193, 47.396888], [8.506192, 47.396889], [8.50582, 47.397066], [8.505813, 47.397069], [8.505805, 47.397072], [8.505797, 47.397075], [8.505789, 47.397077], [8.505656, 47.397111], [8.505654, 47.397111], [8.505653, 47.397112], [8.505651, 47.397112], [8.50565, 47.397112], [8.505648, 47.397112], [8.505647, 47.397112], [8.505646, 47.397112], [8.505644, 47.397112], [8.505643, 47.397111], [8.505641, 47.397111], [8.50564, 47.397111], [8.505639, 47.39711], [8.505638, 47.397109], [8.505636, 47.397109], [8.505635, 47.397108], [8.505634, 47.397107], [8.505634, 47.397107], [8.505633, 47.397106], [8.505448, 47.396907]]], "type": "MultiLineString"}, "id": "4687", "properties": {}, "type": "Feature"}, {"bbox": [8.500517, 47.37309, 8.501151, 47.373373], "geometry": {"coordinates": [[[8.500517, 47.373209], [8.500622, 47.37317], [8.500727, 47.373131], [8.500834, 47.373094], [8.500844, 47.373092], [8.500854, 47.373091], [8.500864, 47.37309], [8.500874, 47.37309], [8.500885, 47.37309], [8.500895, 47.373091], [8.500905, 47.373093], [8.500914, 47.373095], [8.500924, 47.373098], [8.500933, 47.373101], [8.500941, 47.373105], [8.50095, 47.373109], [8.500957, 47.373114], [8.500964, 47.373119], [8.50097, 47.373125], [8.500976, 47.37313], [8.50098, 47.373137], [8.501151, 47.373373]]], "type": "MultiLineString"}, "id": "4690", "properties": {}, "type": "Feature"}, {"bbox": [8.546463, 47.425332, 8.546838, 47.426417], "geometry": {"coordinates": [[[8.546838, 47.425332], [8.546835, 47.425358], [8.546828, 47.425385], [8.546819, 47.425411], [8.546807, 47.425437], [8.54678, 47.425492], [8.546758, 47.425547], [8.54674, 47.425604], [8.546564, 47.426135], [8.546463, 47.426417]]], "type": "MultiLineString"}, "id": "4691", "properties": {}, "type": "Feature"}, {"bbox": [8.525194, 47.425633, 8.525215, 47.425762], "geometry": {"coordinates": [[[8.525194, 47.425633], [8.525204, 47.425676], [8.525211, 47.425719], [8.525215, 47.425762]]], "type": "MultiLineString"}, "id": "4693", "properties": {}, "type": "Feature"}, {"bbox": [8.500308, 47.419046, 8.501593, 47.419692], "geometry": {"coordinates": [[[8.500308, 47.419692], [8.500348, 47.419685], [8.500388, 47.419677], [8.500427, 47.419667], [8.500839, 47.41948], [8.501228, 47.419273], [8.501593, 47.419046]]], "type": "MultiLineString"}, "id": "4694", "properties": {}, "type": "Feature"}, {"bbox": [8.496161, 47.362641, 8.497004, 47.362817], "geometry": {"coordinates": [[[8.497004, 47.362641], [8.496564, 47.362667], [8.496409, 47.362678], [8.496378, 47.362688], [8.496348, 47.362699], [8.496319, 47.362711], [8.496292, 47.362726], [8.496267, 47.362741], [8.496212, 47.362778], [8.496161, 47.362817]]], "type": "MultiLineString"}, "id": "4695", "properties": {}, "type": "Feature"}, {"bbox": [8.480538, 47.373279, 8.48103, 47.373745], "geometry": {"coordinates": [[[8.48059, 47.373279], [8.48054, 47.373349], [8.480538, 47.373359], [8.480538, 47.373369], [8.48054, 47.373379], [8.480542, 47.373389], [8.480546, 47.373398], [8.480551, 47.373408], [8.480557, 47.373417], [8.480565, 47.373425], [8.480574, 47.373433], [8.480583, 47.373441], [8.480594, 47.373448], [8.48103, 47.373745]]], "type": "MultiLineString"}, "id": "4696", "properties": {}, "type": "Feature"}, {"bbox": [8.615877, 47.353963, 8.623683, 47.354428], "geometry": {"coordinates": [[[8.615877, 47.354376], [8.616069, 47.354387], [8.616113, 47.354388], [8.616157, 47.354388], [8.616201, 47.354384], [8.616244, 47.354378], [8.616287, 47.35437], [8.616328, 47.35436], [8.616368, 47.354347], [8.616406, 47.354332], [8.616442, 47.354315], [8.61678, 47.354215], [8.616903, 47.354186], [8.617029, 47.354166], [8.617158, 47.354155], [8.617242, 47.354156], [8.617326, 47.354161], [8.617408, 47.354171], [8.617539, 47.354196], [8.617673, 47.354213], [8.617808, 47.354221], [8.617944, 47.354222], [8.618033, 47.354218], [8.618121, 47.35422], [8.618209, 47.354226], [8.618296, 47.354237], [8.618382, 47.354254], [8.618465, 47.354274], [8.618545, 47.3543], [8.618916, 47.3544], [8.618987, 47.354413], [8.619059, 47.354423], [8.619132, 47.354427], [8.619176, 47.354428], [8.61922, 47.354425], [8.619263, 47.35442], [8.619306, 47.354412], [8.619347, 47.354402], [8.619445, 47.354373], [8.619543, 47.354344], [8.619641, 47.354314], [8.61973, 47.354288], [8.619821, 47.354264], [8.619912, 47.354241], [8.620005, 47.354218], [8.620097, 47.354194], [8.620189, 47.354168], [8.62027, 47.354146], [8.620352, 47.354127], [8.620436, 47.354109], [8.620482, 47.3541], [8.620528, 47.35409], [8.620573, 47.354078], [8.620722, 47.354052], [8.620866, 47.354039], [8.621011, 47.354027], [8.621156, 47.354016], [8.621361, 47.354002], [8.621567, 47.353989], [8.621772, 47.353979], [8.621881, 47.353974], [8.62199, 47.353969], [8.622099, 47.353965], [8.622161, 47.353963], [8.622223, 47.353964], [8.622286, 47.353966], [8.622406, 47.353973], [8.622527, 47.35398], [8.622648, 47.353989], [8.622703, 47.353995], [8.622757, 47.354004], [8.62281, 47.354016], [8.622924, 47.354046], [8.623037, 47.354076], [8.623151, 47.354107], [8.623238, 47.354132], [8.623323, 47.354159], [8.623408, 47.354188], [8.623472, 47.354209], [8.623538, 47.354228], [8.623605, 47.354244], [8.623683, 47.354268]]], "type": "MultiLineString"}, "id": "4697", "properties": {}, "type": "Feature"}, {"bbox": [8.474757, 47.415778, 8.476853, 47.416112], "geometry": {"coordinates": [[[8.476853, 47.415779], [8.476489, 47.415778], [8.476109, 47.415798], [8.475733, 47.415838], [8.475489, 47.415877], [8.475251, 47.415928], [8.47502, 47.415992], [8.474796, 47.416068], [8.474789, 47.416073], [8.474782, 47.416077], [8.474776, 47.416082], [8.474771, 47.416088], [8.474766, 47.416093], [8.474762, 47.416099], [8.474759, 47.416105], [8.474757, 47.416112]]], "type": "MultiLineString"}, "id": "4698", "properties": {}, "type": "Feature"}, {"bbox": [8.515398, 47.386648, 8.517559, 47.387907], "geometry": {"coordinates": [[[8.517553, 47.386648], [8.517554, 47.386681], [8.517559, 47.386809], [8.517559, 47.386821], [8.517558, 47.386832], [8.517555, 47.386843], [8.517551, 47.386854], [8.517545, 47.38686], [8.517538, 47.386866], [8.51753, 47.386872], [8.517522, 47.386877], [8.517513, 47.386882], [8.517504, 47.386886], [8.517431, 47.386916], [8.51684, 47.387181], [8.51664, 47.387313], [8.516615, 47.387331], [8.516584, 47.387354], [8.516488, 47.38742], [8.51558, 47.387826], [8.515398, 47.387907]]], "type": "MultiLineString"}, "id": "4703", "properties": {}, "type": "Feature"}, {"bbox": [8.545002, 47.365766, 8.547042, 47.366623], "geometry": {"coordinates": [[[8.545002, 47.366345], [8.545261, 47.366311], [8.545271, 47.366329], [8.545283, 47.366345], [8.545297, 47.366361], [8.545312, 47.366376], [8.54533, 47.36639], [8.54535, 47.366403], [8.545371, 47.366414], [8.545393, 47.366425], [8.545831, 47.366615], [8.545836, 47.366617], [8.545841, 47.366619], [8.545847, 47.36662], [8.545852, 47.366621], [8.545858, 47.366622], [8.545864, 47.366623], [8.545869, 47.366623], [8.545876, 47.366623], [8.545882, 47.366622], [8.545888, 47.366622], [8.545894, 47.36662], [8.545899, 47.366619], [8.545905, 47.366617], [8.54591, 47.366615], [8.545915, 47.366613], [8.54592, 47.36661], [8.545985, 47.366571], [8.546054, 47.366524], [8.54612, 47.366476], [8.546184, 47.366426], [8.546213, 47.366403], [8.546242, 47.366381], [8.546272, 47.366358], [8.546803, 47.365937], [8.546879, 47.365878], [8.546959, 47.36582], [8.547042, 47.365766]]], "type": "MultiLineString"}, "id": "4704", "properties": {}, "type": "Feature"}, {"bbox": [8.474887, 47.364946, 8.480724, 47.365974], "geometry": {"coordinates": [[[8.474887, 47.365974], [8.475022, 47.365961], [8.475155, 47.36594], [8.475285, 47.36591], [8.47541, 47.365872], [8.475906, 47.365699], [8.476509, 47.365497], [8.476857, 47.36539], [8.477216, 47.365302], [8.477583, 47.365231], [8.477788, 47.365195], [8.477882, 47.365186], [8.477975, 47.365176], [8.478068, 47.365166], [8.478159, 47.365156], [8.478252, 47.365148], [8.478344, 47.365142], [8.478432, 47.365135], [8.478519, 47.365122], [8.478603, 47.365104], [8.478753, 47.36509], [8.47877, 47.36509], [8.478788, 47.365089], [8.478805, 47.365087], [8.478821, 47.365083], [8.478838, 47.365079], [8.478953, 47.365046], [8.47907, 47.365016], [8.479189, 47.364989], [8.479197, 47.364987], [8.479205, 47.364985], [8.479213, 47.364984], [8.479322, 47.364964], [8.479433, 47.364951], [8.479546, 47.364946], [8.479627, 47.364947], [8.479708, 47.364954], [8.479787, 47.364965], [8.479887, 47.364983], [8.479986, 47.365], [8.480085, 47.365018], [8.480143, 47.36503], [8.4802, 47.365045], [8.480255, 47.365064], [8.480348, 47.365103], [8.480434, 47.365148], [8.480515, 47.365198], [8.480588, 47.365253], [8.480616, 47.365277], [8.48064, 47.365304], [8.480659, 47.365332], [8.480675, 47.365361], [8.480688, 47.365389], [8.480701, 47.365416], [8.480714, 47.365444], [8.480724, 47.365467]]], "type": "MultiLineString"}, "id": "4706", "properties": {}, "type": "Feature"}, {"bbox": [8.545097, 47.409859, 8.546052, 47.410116], "geometry": {"coordinates": [[[8.546052, 47.410116], [8.545967, 47.410073], [8.545097, 47.409859]]], "type": "MultiLineString"}, "id": "4707", "properties": {}, "type": "Feature"}, {"bbox": [8.489004, 47.408438, 8.49098, 47.410184], "geometry": {"coordinates": [[[8.489004, 47.408438], [8.489137, 47.408559], [8.489249, 47.408663], [8.489344, 47.408746], [8.489506, 47.408881], [8.489766, 47.409067], [8.489811, 47.409105], [8.48985, 47.409145], [8.489885, 47.409188], [8.489918, 47.409235], [8.48993, 47.409249], [8.489944, 47.409263], [8.489959, 47.409275], [8.489976, 47.409287], [8.489991, 47.409295], [8.490006, 47.409302], [8.490022, 47.409309], [8.490045, 47.409319], [8.490066, 47.40933], [8.490086, 47.409343], [8.490105, 47.409356], [8.490121, 47.409371], [8.490136, 47.409386], [8.490183, 47.40944], [8.490226, 47.409495], [8.490267, 47.409551], [8.49028, 47.409573], [8.49029, 47.409596], [8.490297, 47.409619], [8.490301, 47.409643], [8.490312, 47.409753], [8.490312, 47.409753], [8.490313, 47.409759], [8.490314, 47.409765], [8.490315, 47.409771], [8.490315, 47.409771], [8.490315, 47.409771], [8.49032, 47.409784], [8.490326, 47.409797], [8.490333, 47.40981], [8.490342, 47.409822], [8.490352, 47.409833], [8.490378, 47.409858], [8.490407, 47.409881], [8.490438, 47.409902], [8.490472, 47.409922], [8.490508, 47.40994], [8.490729, 47.41004], [8.490753, 47.410052], [8.490777, 47.410064], [8.490799, 47.410078], [8.490888, 47.410133], [8.49098, 47.410184]]], "type": "MultiLineString"}, "id": "4708", "properties": {}, "type": "Feature"}, {"bbox": [8.499803, 47.355605, 8.504139, 47.359798], "geometry": {"coordinates": [[[8.504139, 47.355605], [8.503888, 47.355891], [8.502896, 47.356993], [8.502742, 47.357168], [8.502645, 47.357276], [8.502401, 47.357526], [8.502389, 47.357598], [8.502091, 47.357893], [8.501949, 47.357987], [8.501591, 47.358363], [8.50157, 47.358432], [8.501094, 47.358857], [8.501023, 47.358854], [8.500986, 47.358872], [8.500387, 47.359399], [8.500004, 47.359627], [8.499901, 47.359677], [8.499803, 47.359798]]], "type": "MultiLineString"}, "id": "4709", "properties": {}, "type": "Feature"}, {"bbox": [8.508935, 47.368953, 8.510349, 47.369788], "geometry": {"coordinates": [[[8.510349, 47.369788], [8.510246, 47.36973], [8.509046, 47.369007], [8.508935, 47.368953]]], "type": "MultiLineString"}, "id": "4710", "properties": {}, "type": "Feature"}, {"bbox": [8.535198, 47.36853, 8.53722, 47.368911], "geometry": {"coordinates": [[[8.53722, 47.36853], [8.537213, 47.368549], [8.537203, 47.368567], [8.537191, 47.368585], [8.537176, 47.368602], [8.53716, 47.368618], [8.537142, 47.368633], [8.537121, 47.368646], [8.537099, 47.368659], [8.537076, 47.36867], [8.537051, 47.36868], [8.537025, 47.368688], [8.536853, 47.368732], [8.536676, 47.368764], [8.536495, 47.368785], [8.535366, 47.368871], [8.535322, 47.368877], [8.535279, 47.368886], [8.535237, 47.368897], [8.535198, 47.368911]]], "type": "MultiLineString"}, "id": "4711", "properties": {}, "type": "Feature"}, {"bbox": [8.562708, 47.356033, 8.566034, 47.356685], "geometry": {"coordinates": [[[8.562708, 47.356033], [8.562752, 47.356035], [8.562795, 47.356039], [8.562838, 47.356046], [8.562879, 47.356055], [8.56292, 47.356066], [8.562959, 47.356079], [8.562996, 47.356095], [8.563031, 47.356113], [8.563063, 47.356132], [8.563093, 47.356154], [8.563317, 47.356364], [8.563368, 47.356406], [8.563424, 47.356446], [8.563486, 47.356482], [8.563551, 47.356514], [8.563621, 47.356542], [8.563694, 47.356566], [8.56377, 47.356585], [8.563848, 47.356599], [8.563928, 47.356609], [8.564008, 47.356614], [8.564329, 47.356623], [8.56443, 47.356621], [8.564531, 47.356617], [8.564631, 47.356611], [8.564798, 47.356599], [8.564965, 47.356596], [8.565132, 47.356603], [8.565297, 47.356619], [8.565668, 47.356658], [8.566034, 47.356685]]], "type": "MultiLineString"}, "id": "4712", "properties": {}, "type": "Feature"}, {"bbox": [8.495083, 47.421091, 8.498749, 47.422102], "geometry": {"coordinates": [[[8.498749, 47.421091], [8.498167, 47.421331], [8.497833, 47.421467], [8.497481, 47.42158], [8.497115, 47.421669], [8.496737, 47.421734], [8.496427, 47.421777], [8.496416, 47.421778], [8.496406, 47.42178], [8.496396, 47.421782], [8.496386, 47.421785], [8.496377, 47.421788], [8.496368, 47.421792], [8.49636, 47.421796], [8.496352, 47.421801], [8.496345, 47.421806], [8.496338, 47.421812], [8.496332, 47.421818], [8.496327, 47.421824], [8.496323, 47.421831], [8.49632, 47.421837], [8.496253, 47.421934], [8.496249, 47.42194], [8.496243, 47.421946], [8.496237, 47.421952], [8.496231, 47.421958], [8.496223, 47.421963], [8.496215, 47.421967], [8.496206, 47.421971], [8.496197, 47.421975], [8.496188, 47.421978], [8.496178, 47.42198], [8.496167, 47.421982], [8.496157, 47.421983], [8.495345, 47.422096], [8.49533, 47.422099], [8.495316, 47.422101], [8.495301, 47.422102], [8.495286, 47.422102], [8.495271, 47.422101], [8.495256, 47.422099], [8.495241, 47.422097], [8.495189, 47.422079], [8.495136, 47.422062], [8.495083, 47.422045]]], "type": "MultiLineString"}, "id": "4715", "properties": {}, "type": "Feature"}, {"bbox": [8.605507, 47.354268, 8.624195, 47.355703], "geometry": {"coordinates": [[[8.605507, 47.35544], [8.605677, 47.355434], [8.606213, 47.355399], [8.606851, 47.355359], [8.607831, 47.355217], [8.608038, 47.355211], [8.608326, 47.355236], [8.609118, 47.355222], [8.609252, 47.355219], [8.609384, 47.355207], [8.609515, 47.355187], [8.609643, 47.35516], [8.610383, 47.354996], [8.610439, 47.354984], [8.610497, 47.354975], [8.610555, 47.35497], [8.610614, 47.354968], [8.610673, 47.35497], [8.610732, 47.354975], [8.611185, 47.35503], [8.611939, 47.355148], [8.612429, 47.355238], [8.612848, 47.355345], [8.612991, 47.35538], [8.613137, 47.355408], [8.613285, 47.355429], [8.613563, 47.355456], [8.614903, 47.355454], [8.615792, 47.355437], [8.61583, 47.355437], [8.615867, 47.35544], [8.615905, 47.355445], [8.615941, 47.355453], [8.615976, 47.355462], [8.61601, 47.355474], [8.6162, 47.355565], [8.616228, 47.355576], [8.616257, 47.355586], [8.616287, 47.355594], [8.616318, 47.355601], [8.61635, 47.355606], [8.616382, 47.355609], [8.616415, 47.35561], [8.61678, 47.355617], [8.617214, 47.355662], [8.617426, 47.355677], [8.618011, 47.3557], [8.618325, 47.355703], [8.61869, 47.355692], [8.618781, 47.355649], [8.618824, 47.35563], [8.618853, 47.355616], [8.618911, 47.35559], [8.618967, 47.355563], [8.619021, 47.355534], [8.619075, 47.355504], [8.619126, 47.355472], [8.619176, 47.35544], [8.619274, 47.355374], [8.619455, 47.355261], [8.619475, 47.355249], [8.619494, 47.355237], [8.619514, 47.355225], [8.619589, 47.355184], [8.619666, 47.355145], [8.619745, 47.355108], [8.61982, 47.355077], [8.619898, 47.355051], [8.61998, 47.35503], [8.620034, 47.355018], [8.620089, 47.355007], [8.620144, 47.354996], [8.620206, 47.354983], [8.620266, 47.354969], [8.620326, 47.354954], [8.620403, 47.354933], [8.620479, 47.354911], [8.620554, 47.354888], [8.620664, 47.354855], [8.620776, 47.354824], [8.620888, 47.354794], [8.62093, 47.354783], [8.620973, 47.354773], [8.621016, 47.354763], [8.621051, 47.354753], [8.621087, 47.354743], [8.621121, 47.354731], [8.621201, 47.354699], [8.621281, 47.354666], [8.62136, 47.354633], [8.621422, 47.354608], [8.621487, 47.354587], [8.621555, 47.354571], [8.621636, 47.354555], [8.621717, 47.35454], [8.621798, 47.354527], [8.621889, 47.354515], [8.621981, 47.354505], [8.622073, 47.354496], [8.622073, 47.354496], [8.622302, 47.354471], [8.622659, 47.354452], [8.622779, 47.354444], [8.622899, 47.354432], [8.623017, 47.354415], [8.623017, 47.354415], [8.623017, 47.354415], [8.623084, 47.354404], [8.62315, 47.354391], [8.623216, 47.354378], [8.623319, 47.354355], [8.62342, 47.354329], [8.62352, 47.354301], [8.62354, 47.354295], [8.623561, 47.354291], [8.623582, 47.354286], [8.623683, 47.354268], [8.624174, 47.354301], [8.624195, 47.354327]]], "type": "MultiLineString"}, "id": "4717", "properties": {}, "type": "Feature"}, {"bbox": [8.531896, 47.399212, 8.532661, 47.399537], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531898, 47.399225], [8.531902, 47.399237], [8.531908, 47.39925], [8.531915, 47.399262], [8.531924, 47.399273], [8.531934, 47.399285], [8.531945, 47.399295], [8.531958, 47.399305], [8.531972, 47.399313], [8.531988, 47.399321], [8.532004, 47.399328], [8.532021, 47.399334], [8.532039, 47.399339], [8.532196, 47.39935], [8.532353, 47.399353], [8.532511, 47.399349], [8.532524, 47.399351], [8.532537, 47.399353], [8.53255, 47.399355], [8.532562, 47.399359], [8.532574, 47.399363], [8.532585, 47.399368], [8.532596, 47.399374], [8.532605, 47.39938], [8.532614, 47.399387], [8.532633, 47.399437], [8.532649, 47.399487], [8.532661, 47.399537]]], "type": "MultiLineString"}, "id": "4722", "properties": {}, "type": "Feature"}, {"bbox": [8.509362, 47.421323, 8.510096, 47.421894], "geometry": {"coordinates": [[[8.509362, 47.421323], [8.50937, 47.421345], [8.509378, 47.421367], [8.509384, 47.421389], [8.509408, 47.42144], [8.509439, 47.42149], [8.509476, 47.421537], [8.509519, 47.421582], [8.509568, 47.421624], [8.509637, 47.421686], [8.509711, 47.421745], [8.509791, 47.421801], [8.509888, 47.421839], [8.50999, 47.42187], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "4723", "properties": {}, "type": "Feature"}, {"bbox": [8.575044, 47.404625, 8.575601, 47.405311], "geometry": {"coordinates": [[[8.575044, 47.405311], [8.575126, 47.405279], [8.57523, 47.405217], [8.575263, 47.405205], [8.57528, 47.405197], [8.575296, 47.405189], [8.575311, 47.40518], [8.575325, 47.40517], [8.575337, 47.405159], [8.575347, 47.405147], [8.575356, 47.405135], [8.575363, 47.405122], [8.575537, 47.404775], [8.575601, 47.404625]]], "type": "MultiLineString"}, "id": "4725", "properties": {}, "type": "Feature"}, {"bbox": [8.488273, 47.376089, 8.488965, 47.377018], "geometry": {"coordinates": [[[8.488273, 47.377018], [8.488303, 47.376978], [8.488336, 47.376938], [8.488371, 47.3769], [8.488404, 47.376837], [8.488434, 47.376774], [8.488462, 47.37671], [8.488502, 47.376643], [8.488547, 47.376578], [8.488598, 47.376515], [8.488722, 47.376374], [8.488845, 47.376232], [8.488965, 47.376089]]], "type": "MultiLineString"}, "id": "4726", "properties": {}, "type": "Feature"}, {"bbox": [8.543562, 47.392389, 8.54393, 47.392547], "geometry": {"coordinates": [[[8.543562, 47.392547], [8.54388, 47.392412], [8.543889, 47.392409], [8.543897, 47.392405], [8.543906, 47.392401], [8.543914, 47.392397], [8.543922, 47.392393], [8.54393, 47.392389]]], "type": "MultiLineString"}, "id": "4728", "properties": {}, "type": "Feature"}, {"bbox": [8.529948, 47.408821, 8.530238, 47.409488], "geometry": {"coordinates": [[[8.530144, 47.409488], [8.530161, 47.409481], [8.530177, 47.409474], [8.530192, 47.409465], [8.530206, 47.409455], [8.530218, 47.409444], [8.530229, 47.409433], [8.530238, 47.409421], [8.530173, 47.40925], [8.530041, 47.409079], [8.530048, 47.409026], [8.529951, 47.4089], [8.529949, 47.408892], [8.529948, 47.408884], [8.529948, 47.408876], [8.529949, 47.408867], [8.529951, 47.408859], [8.529953, 47.408851], [8.529957, 47.408843], [8.529962, 47.408835], [8.529968, 47.408828], [8.529974, 47.408821]]], "type": "MultiLineString"}, "id": "4731", "properties": {}, "type": "Feature"}, {"bbox": [8.510879, 47.423321, 8.51267, 47.42437], "geometry": {"coordinates": [[[8.510879, 47.423321], [8.510916, 47.423361], [8.510957, 47.423398], [8.511003, 47.423433], [8.511052, 47.423465], [8.511105, 47.423495], [8.512297, 47.423534], [8.512395, 47.423535], [8.512493, 47.42354], [8.51259, 47.423547], [8.512659, 47.423594], [8.51267, 47.42366], [8.51262, 47.423718], [8.512593, 47.423735], [8.512568, 47.423754], [8.512545, 47.423774], [8.512538, 47.423898], [8.512665, 47.423903], [8.512651, 47.424058], [8.512644, 47.424214], [8.512645, 47.42437]]], "type": "MultiLineString"}, "id": "4732", "properties": {}, "type": "Feature"}, {"bbox": [8.573472, 47.364862, 8.579, 47.367253], "geometry": {"coordinates": [[[8.573472, 47.364862], [8.574214, 47.364952], [8.574768, 47.365068], [8.574922, 47.365133], [8.575197, 47.365306], [8.575849, 47.365756], [8.575944, 47.365821], [8.576031, 47.365891], [8.576109, 47.365965], [8.576552, 47.366326], [8.576634, 47.366387], [8.576724, 47.366444], [8.576821, 47.366495], [8.576924, 47.36654], [8.577032, 47.366579], [8.577144, 47.366612], [8.57726, 47.366637], [8.577493, 47.366665], [8.577721, 47.366707], [8.577942, 47.366763], [8.578154, 47.366832], [8.578357, 47.366914], [8.578547, 47.367009], [8.579, 47.367253]]], "type": "MultiLineString"}, "id": "4733", "properties": {}, "type": "Feature"}, {"bbox": [8.516616, 47.373931, 8.517146, 47.374872], "geometry": {"coordinates": [[[8.517146, 47.373937], [8.516963, 47.373931], [8.516955, 47.373931], [8.516948, 47.373931], [8.51694, 47.373932], [8.516933, 47.373933], [8.516926, 47.373935], [8.516919, 47.373937], [8.516913, 47.37394], [8.516907, 47.373942], [8.516901, 47.373946], [8.516895, 47.373949], [8.51689, 47.373953], [8.51663, 47.374165], [8.516627, 47.374168], [8.516624, 47.37417], [8.516622, 47.374173], [8.51662, 47.374177], [8.516618, 47.37418], [8.516617, 47.374183], [8.516617, 47.374187], [8.516616, 47.37419], [8.516617, 47.374194], [8.516617, 47.374197], [8.516618, 47.3742], [8.51662, 47.374204], [8.516622, 47.374207], [8.516624, 47.37421], [8.516626, 47.374213], [8.516629, 47.374216], [8.516633, 47.374218], [8.516636, 47.37422], [8.516845, 47.374337], [8.516898, 47.374367], [8.516938, 47.374423], [8.516836, 47.374784], [8.516865, 47.374872]]], "type": "MultiLineString"}, "id": "4735", "properties": {}, "type": "Feature"}, {"bbox": [8.541742, 47.427333, 8.542771, 47.427915], "geometry": {"coordinates": [[[8.541742, 47.427333], [8.542062, 47.427561], [8.542344, 47.427657], [8.542771, 47.427915]]], "type": "MultiLineString"}, "id": "4736", "properties": {}, "type": "Feature"}, {"bbox": [8.537996, 47.376152, 8.538718, 47.37635], "geometry": {"coordinates": [[[8.538718, 47.376208], [8.538631, 47.376227], [8.53847, 47.376265], [8.538453, 47.376269], [8.538395, 47.376152], [8.537996, 47.376241], [8.538106, 47.37635]]], "type": "MultiLineString"}, "id": "4737", "properties": {}, "type": "Feature"}, {"bbox": [8.533598, 47.413081, 8.533606, 47.413158], "geometry": {"coordinates": [[[8.533606, 47.413158], [8.533598, 47.413081]]], "type": "MultiLineString"}, "id": "4738", "properties": {}, "type": "Feature"}, {"bbox": [8.520387, 47.339025, 8.520387, 47.339043], "geometry": {"coordinates": [[[8.520387, 47.339025], [8.520387, 47.339043]]], "type": "MultiLineString"}, "id": "4739", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.413137, 8.55323, 47.4144], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.552884, 47.414306], [8.553042, 47.41431], [8.55321, 47.413983], [8.55323, 47.413137], [8.553075, 47.413138]]], "type": "MultiLineString"}, "id": "4740", "properties": {}, "type": "Feature"}, {"bbox": [8.576007, 47.397749, 8.578854, 47.400455], "geometry": {"coordinates": [[[8.576007, 47.39792], [8.576461, 47.397816], [8.576551, 47.397797], [8.576643, 47.397783], [8.576737, 47.397775], [8.576831, 47.397772], [8.576925, 47.397775], [8.577019, 47.397784], [8.577123, 47.397795], [8.577228, 47.3978], [8.577333, 47.397799], [8.577438, 47.397792], [8.577524, 47.39778], [8.577611, 47.397769], [8.577698, 47.397758], [8.577745, 47.397752], [8.577794, 47.397749], [8.577843, 47.39775], [8.577891, 47.397753], [8.577922, 47.397764], [8.577952, 47.397777], [8.57798, 47.397792], [8.578006, 47.397808], [8.578029, 47.397826], [8.578091, 47.397892], [8.578144, 47.397961], [8.578191, 47.398033], [8.578209, 47.398061], [8.578223, 47.39809], [8.578233, 47.39812], [8.578239, 47.39815], [8.578241, 47.398181], [8.578239, 47.398211], [8.578241, 47.398275], [8.578241, 47.398339], [8.578241, 47.398403], [8.578241, 47.398436], [8.578245, 47.398469], [8.578253, 47.398502], [8.578265, 47.398535], [8.57828, 47.398566], [8.578299, 47.398597], [8.578344, 47.398663], [8.578387, 47.398729], [8.578426, 47.398796], [8.57844, 47.398836], [8.578449, 47.398876], [8.578451, 47.398917], [8.578449, 47.398958], [8.57844, 47.398998], [8.578426, 47.399038], [8.578359, 47.399149], [8.578307, 47.399264], [8.578271, 47.399381], [8.578264, 47.399413], [8.578261, 47.399445], [8.578262, 47.399476], [8.578267, 47.399508], [8.578276, 47.399539], [8.578289, 47.39957], [8.578306, 47.399599], [8.578326, 47.399628], [8.578382, 47.399691], [8.578437, 47.399754], [8.578491, 47.399817], [8.578547, 47.399879], [8.5786, 47.399943], [8.578648, 47.400008], [8.578735, 47.400166], [8.578768, 47.400268], [8.578801, 47.400388], [8.57881, 47.400416], [8.578854, 47.400455]]], "type": "MultiLineString"}, "id": "4742", "properties": {}, "type": "Feature"}, {"bbox": [8.48712, 47.403458, 8.487958, 47.403903], "geometry": {"coordinates": [[[8.487871, 47.403458], [8.487935, 47.403588], [8.487953, 47.403629], [8.487956, 47.403637], [8.487957, 47.403644], [8.487958, 47.403651], [8.487958, 47.403658], [8.487956, 47.403666], [8.487954, 47.403673], [8.487951, 47.40368], [8.487947, 47.403687], [8.487942, 47.403693], [8.487937, 47.4037], [8.487931, 47.403706], [8.487923, 47.403711], [8.487916, 47.403716], [8.487907, 47.403721], [8.487899, 47.403725], [8.487889, 47.403729], [8.487879, 47.403732], [8.487869, 47.403735], [8.48712, 47.403903]]], "type": "MultiLineString"}, "id": "4743", "properties": {}, "type": "Feature"}, {"bbox": [8.497493, 47.422004, 8.498577, 47.423305], "geometry": {"coordinates": [[[8.497872, 47.423305], [8.497853, 47.423284], [8.497834, 47.423262], [8.497817, 47.42324], [8.497702, 47.423061], [8.497595, 47.422878], [8.497498, 47.422694], [8.497495, 47.422686], [8.497494, 47.422678], [8.497493, 47.42267], [8.497494, 47.422662], [8.497495, 47.422654], [8.497498, 47.422646], [8.497501, 47.422639], [8.497505, 47.422631], [8.497511, 47.422624], [8.497517, 47.422618], [8.497524, 47.422611], [8.497532, 47.422605], [8.49754, 47.4226], [8.498522, 47.422271], [8.498529, 47.422269], [8.498535, 47.422267], [8.498541, 47.422264], [8.498547, 47.422261], [8.498553, 47.422258], [8.498558, 47.422254], [8.498562, 47.42225], [8.498566, 47.422246], [8.498569, 47.422241], [8.498572, 47.422237], [8.498574, 47.422232], [8.498576, 47.422227], [8.498577, 47.422222], [8.498577, 47.422217], [8.498577, 47.422212], [8.498576, 47.422207], [8.498575, 47.422202], [8.498572, 47.422197], [8.49857, 47.422193], [8.498543, 47.422154], [8.498516, 47.422115], [8.498487, 47.422077], [8.498472, 47.422054], [8.49846, 47.422029], [8.498451, 47.422004]]], "type": "MultiLineString"}, "id": "4744", "properties": {}, "type": "Feature"}, {"bbox": [8.530516, 47.410172, 8.531351, 47.410416], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.530521, 47.410414], [8.530526, 47.410412], [8.53053, 47.41041], [8.530534, 47.410408], [8.530538, 47.410406], [8.530541, 47.410403], [8.530544, 47.4104], [8.530547, 47.410397], [8.530549, 47.410394], [8.530551, 47.41039], [8.530552, 47.410387], [8.530553, 47.410383], [8.530556, 47.41038], [8.530559, 47.410377], [8.530562, 47.410375], [8.530566, 47.410372], [8.53057, 47.41037], [8.530574, 47.410368], [8.530578, 47.410366], [8.530583, 47.410364], [8.530588, 47.410363], [8.530593, 47.410362], [8.531273, 47.410249], [8.531283, 47.410246], [8.531293, 47.410242], [8.531302, 47.410238], [8.53131, 47.410233], [8.531318, 47.410227], [8.531325, 47.410221], [8.531331, 47.410215], [8.531337, 47.410208], [8.531341, 47.410201], [8.531345, 47.410194], [8.531348, 47.410187], [8.53135, 47.410179], [8.531351, 47.410172]]], "type": "MultiLineString"}, "id": "4746", "properties": {}, "type": "Feature"}, {"bbox": [8.522741, 47.42484, 8.525194, 47.425708], "geometry": {"coordinates": [[[8.522768, 47.42484], [8.522754, 47.424887], [8.522741, 47.4251], [8.522801, 47.425134], [8.522789, 47.425155], [8.522775, 47.425185], [8.522784, 47.425638], [8.522788, 47.425646], [8.522793, 47.425653], [8.522798, 47.425661], [8.522805, 47.425668], [8.522812, 47.425674], [8.52282, 47.42568], [8.522829, 47.425686], [8.522838, 47.425691], [8.522849, 47.425695], [8.522859, 47.425699], [8.52287, 47.425702], [8.522882, 47.425705], [8.522894, 47.425707], [8.522906, 47.425708], [8.522918, 47.425708], [8.52293, 47.425708], [8.525106, 47.425644], [8.525194, 47.425633]]], "type": "MultiLineString"}, "id": "4747", "properties": {}, "type": "Feature"}, {"bbox": [8.511643, 47.414894, 8.512443, 47.415165], "geometry": {"coordinates": [[[8.512443, 47.414905], [8.512436, 47.414902], [8.512429, 47.4149], [8.512422, 47.414897], [8.512414, 47.414896], [8.512406, 47.414895], [8.512398, 47.414894], [8.51239, 47.414894], [8.512383, 47.414894], [8.512375, 47.414895], [8.511874, 47.415102], [8.511732, 47.415162], [8.511717, 47.415142], [8.511693, 47.415152], [8.511665, 47.415165], [8.511643, 47.415141]]], "type": "MultiLineString"}, "id": "4748", "properties": {}, "type": "Feature"}, {"bbox": [8.527207, 47.343645, 8.527551, 47.34406], "geometry": {"coordinates": [[[8.527207, 47.343645], [8.527408, 47.343758], [8.527425, 47.34377], [8.52744, 47.343783], [8.527454, 47.343796], [8.527466, 47.343811], [8.527476, 47.343826], [8.527484, 47.343841], [8.52749, 47.343857], [8.527551, 47.34406]]], "type": "MultiLineString"}, "id": "4749", "properties": {}, "type": "Feature"}, {"bbox": [8.499147, 47.350407, 8.502484, 47.355917], "geometry": {"coordinates": [[[8.500087, 47.355917], [8.499986, 47.355857], [8.499773, 47.355742], [8.49973, 47.355717], [8.499691, 47.355689], [8.499655, 47.35566], [8.499624, 47.355628], [8.499282, 47.355254], [8.499211, 47.355176], [8.499193, 47.355155], [8.499178, 47.355132], [8.499166, 47.355109], [8.499156, 47.355085], [8.49915, 47.355061], [8.499147, 47.355036], [8.499147, 47.355011], [8.49915, 47.354987], [8.499156, 47.354962], [8.499166, 47.354938], [8.499178, 47.354915], [8.499193, 47.354892], [8.499211, 47.354871], [8.499847, 47.354172], [8.499928, 47.354075], [8.499998, 47.35404], [8.50005, 47.354012], [8.500099, 47.353982], [8.500143, 47.353948], [8.500182, 47.353912], [8.500217, 47.353874], [8.500246, 47.353834], [8.50027, 47.353792], [8.500289, 47.353749], [8.500302, 47.353705], [8.500309, 47.353661], [8.50031, 47.353616], [8.500305, 47.353571], [8.500295, 47.353527], [8.500278, 47.353484], [8.500109, 47.353106], [8.499993, 47.352855], [8.499972, 47.3528], [8.499958, 47.352744], [8.499951, 47.352687], [8.499952, 47.35263], [8.499961, 47.352573], [8.499971, 47.352536], [8.499985, 47.352498], [8.500002, 47.352462], [8.500056, 47.352354], [8.500084, 47.352308], [8.500117, 47.352263], [8.500157, 47.352221], [8.500202, 47.352181], [8.500252, 47.352144], [8.500334, 47.352088], [8.50035, 47.352079], [8.500367, 47.35207], [8.500385, 47.352062], [8.500405, 47.352056], [8.500424, 47.35205], [8.500445, 47.352046], [8.500466, 47.352043], [8.500487, 47.352042], [8.500509, 47.352041], [8.50053, 47.352042], [8.500551, 47.352045], [8.500572, 47.352048], [8.500592, 47.352053], [8.500791, 47.352107], [8.500851, 47.352121], [8.500912, 47.352132], [8.500975, 47.352139], [8.501038, 47.352142], [8.501101, 47.352142], [8.501165, 47.352138], [8.501262, 47.352126], [8.501357, 47.352107], [8.501449, 47.352083], [8.501537, 47.352053], [8.501621, 47.352017], [8.501642, 47.352007], [8.501715, 47.351968], [8.501782, 47.351926], [8.501844, 47.351879], [8.502162, 47.351611], [8.502191, 47.351585], [8.502216, 47.351557], [8.502238, 47.351527], [8.502255, 47.351497], [8.502269, 47.351466], [8.502278, 47.351433], [8.502284, 47.351401], [8.502285, 47.351368], [8.502282, 47.351335], [8.502275, 47.351303], [8.502263, 47.351271], [8.502248, 47.35124], [8.501903, 47.350634], [8.501896, 47.35062], [8.501891, 47.350606], [8.501888, 47.350592], [8.501886, 47.350577], [8.501887, 47.350563], [8.501889, 47.350549], [8.501893, 47.350535], [8.501899, 47.350521], [8.501906, 47.350507], [8.501916, 47.350494], [8.501926, 47.350482], [8.501939, 47.35047], [8.501953, 47.350459], [8.501968, 47.350449], [8.501984, 47.35044], [8.502001, 47.350432], [8.50202, 47.350425], [8.502039, 47.350419], [8.502059, 47.350414], [8.50208, 47.350411], [8.5021, 47.350408], [8.502122, 47.350407], [8.502143, 47.350407], [8.502164, 47.350408], [8.502185, 47.350411], [8.502205, 47.350414], [8.502236, 47.350422], [8.502265, 47.350431], [8.502294, 47.350443], [8.50232, 47.350456], [8.502345, 47.35047], [8.502368, 47.350486], [8.502388, 47.350503], [8.502407, 47.350522], [8.502422, 47.350541], [8.502435, 47.350562], [8.502446, 47.350583], [8.502453, 47.350604], [8.502458, 47.350626], [8.502484, 47.350744]]], "type": "MultiLineString"}, "id": "4753", "properties": {}, "type": "Feature"}, {"bbox": [8.506879, 47.42681, 8.511233, 47.427779], "geometry": {"coordinates": [[[8.506879, 47.42681], [8.507132, 47.426923], [8.507144, 47.426927], [8.507155, 47.426931], [8.507166, 47.426936], [8.507175, 47.426942], [8.507185, 47.426948], [8.507193, 47.426955], [8.5072, 47.426962], [8.507206, 47.42697], [8.507211, 47.426978], [8.507216, 47.426986], [8.507219, 47.426994], [8.507221, 47.427003], [8.507222, 47.427012], [8.507221, 47.42702], [8.50722, 47.427029], [8.507217, 47.427038], [8.507213, 47.427046], [8.507209, 47.427054], [8.507203, 47.427062], [8.507196, 47.427069], [8.507081, 47.427187], [8.507053, 47.427288], [8.507094, 47.427387], [8.507194, 47.427464], [8.507286, 47.427509], [8.507383, 47.427548], [8.507485, 47.427582], [8.50759, 47.427611], [8.50814, 47.427751], [8.50824, 47.427766], [8.508341, 47.427775], [8.508442, 47.427779], [8.508544, 47.427777], [8.508645, 47.427769], [8.508745, 47.427756], [8.509113, 47.427686], [8.509484, 47.427629], [8.50986, 47.427583], [8.510021, 47.427575], [8.510182, 47.427571], [8.510343, 47.427573], [8.510481, 47.427568], [8.510618, 47.427555], [8.510752, 47.427533], [8.511233, 47.427424]]], "type": "MultiLineString"}, "id": "4754", "properties": {}, "type": "Feature"}, {"bbox": [8.548504, 47.386938, 8.549304, 47.387256], "geometry": {"coordinates": [[[8.548504, 47.387109], [8.54863, 47.387094], [8.548638, 47.387092], [8.548647, 47.38709], [8.548655, 47.387087], [8.548663, 47.387083], [8.548671, 47.38708], [8.548678, 47.387075], [8.548684, 47.38707], [8.54869, 47.387065], [8.548694, 47.38706], [8.548699, 47.387054], [8.548702, 47.387048], [8.548705, 47.387042], [8.548707, 47.387036], [8.548708, 47.38703], [8.548708, 47.387023], [8.548707, 47.387016], [8.548708, 47.38701], [8.548709, 47.387003], [8.548711, 47.386996], [8.548714, 47.38699], [8.548717, 47.386983], [8.548722, 47.386977], [8.548727, 47.386972], [8.548733, 47.386966], [8.54874, 47.386961], [8.548747, 47.386957], [8.548755, 47.386952], [8.548764, 47.386949], [8.548772, 47.386946], [8.548782, 47.386943], [8.548791, 47.386941], [8.548801, 47.38694], [8.548811, 47.386939], [8.548821, 47.386938], [8.549014, 47.386953], [8.549025, 47.386957], [8.549035, 47.386961], [8.549045, 47.386966], [8.549054, 47.386971], [8.549062, 47.386977], [8.54907, 47.386983], [8.549076, 47.386989], [8.549082, 47.386996], [8.549087, 47.387004], [8.549092, 47.387011], [8.549095, 47.387019], [8.549097, 47.387027], [8.549098, 47.387035], [8.549083, 47.387133], [8.549082, 47.387136], [8.549082, 47.387138], [8.549082, 47.387141], [8.549082, 47.387143], [8.549083, 47.387146], [8.549084, 47.387148], [8.549085, 47.387151], [8.549087, 47.387153], [8.549089, 47.387155], [8.549091, 47.387157], [8.549093, 47.387159], [8.549096, 47.387161], [8.549099, 47.387163], [8.549102, 47.387164], [8.549105, 47.387166], [8.549109, 47.387167], [8.549112, 47.387168], [8.549116, 47.387168], [8.549119, 47.387169], [8.549217, 47.387178], [8.549226, 47.387179], [8.549234, 47.387181], [8.549243, 47.387183], [8.549251, 47.387185], [8.549258, 47.387188], [8.549266, 47.387192], [8.549272, 47.387196], [8.549279, 47.3872], [8.549284, 47.387205], [8.549289, 47.38721], [8.549294, 47.387215], [8.549297, 47.387221], [8.5493, 47.387226], [8.549302, 47.387232], [8.549304, 47.387238], [8.549304, 47.387244], [8.549304, 47.38725], [8.549303, 47.387256]]], "type": "MultiLineString"}, "id": "4756", "properties": {}, "type": "Feature"}, {"bbox": [8.590123, 47.356192, 8.590347, 47.356929], "geometry": {"coordinates": [[[8.590305, 47.356929], [8.590288, 47.356927], [8.590272, 47.356924], [8.590256, 47.35692], [8.590241, 47.356915], [8.590226, 47.35691], [8.590213, 47.356903], [8.5902, 47.356896], [8.590188, 47.356888], [8.590177, 47.356879], [8.590155, 47.356665], [8.590183, 47.356577], [8.590123, 47.356263], [8.590209, 47.356254], [8.590231, 47.356249], [8.590253, 47.356242], [8.590274, 47.356234], [8.590294, 47.356225], [8.590313, 47.356215], [8.59033, 47.356204], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "4757", "properties": {}, "type": "Feature"}, {"bbox": [8.564974, 47.359624, 8.565457, 47.359843], "geometry": {"coordinates": [[[8.564974, 47.359624], [8.565, 47.359634], [8.565025, 47.359645], [8.565049, 47.359658], [8.56507, 47.359673], [8.565158, 47.359724], [8.565252, 47.35977], [8.565352, 47.35981], [8.565457, 47.359843]]], "type": "MultiLineString"}, "id": "4758", "properties": {}, "type": "Feature"}, {"bbox": [8.54393, 47.392244, 8.544043, 47.392389], "geometry": {"coordinates": [[[8.54393, 47.392389], [8.54395, 47.392376], [8.543968, 47.392362], [8.543985, 47.392347], [8.544, 47.392332], [8.544013, 47.392315], [8.544024, 47.392298], [8.544032, 47.392281], [8.544039, 47.392262], [8.544043, 47.392244]]], "type": "MultiLineString"}, "id": "4759", "properties": {}, "type": "Feature"}, {"bbox": [8.507443, 47.398955, 8.507708, 47.399254], "geometry": {"coordinates": [[[8.507443, 47.398955], [8.507524, 47.398989], [8.5076, 47.399029], [8.50767, 47.399072], [8.507673, 47.399076], [8.507675, 47.399079], [8.507677, 47.399082], [8.507679, 47.399086], [8.50768, 47.39909], [8.50768, 47.399093], [8.50768, 47.399097], [8.50768, 47.399101], [8.507679, 47.399104], [8.507677, 47.399108], [8.507676, 47.399111], [8.507673, 47.399115], [8.507671, 47.399118], [8.507668, 47.399121], [8.507664, 47.399124], [8.50759, 47.399205], [8.507588, 47.399208], [8.507587, 47.399211], [8.507586, 47.399214], [8.507585, 47.399217], [8.507585, 47.39922], [8.507586, 47.399223], [8.507586, 47.399226], [8.507588, 47.399229], [8.507589, 47.399232], [8.507591, 47.399235], [8.507593, 47.399238], [8.507596, 47.39924], [8.507599, 47.399243], [8.507602, 47.399245], [8.507606, 47.399247], [8.507609, 47.399249], [8.507613, 47.39925], [8.507618, 47.399252], [8.507622, 47.399253], [8.507626, 47.399254], [8.507631, 47.399254], [8.50764, 47.399254], [8.507649, 47.399254], [8.507658, 47.399254], [8.507667, 47.399252], [8.507676, 47.399251], [8.507684, 47.399249], [8.507692, 47.399246], [8.5077, 47.399243], [8.507708, 47.39924]]], "type": "MultiLineString"}, "id": "4767", "properties": {}, "type": "Feature"}, {"bbox": [8.476517, 47.416865, 8.482596, 47.419646], "geometry": {"coordinates": [[[8.476517, 47.416865], [8.477043, 47.417173], [8.477051, 47.417178], [8.477145, 47.417263], [8.477323, 47.417506], [8.477376, 47.41758], [8.477501, 47.417673], [8.477611, 47.417768], [8.477905, 47.417925], [8.47807, 47.41804], [8.478268, 47.418177], [8.478481, 47.418387], [8.47871, 47.418572], [8.478891, 47.41872], [8.478991, 47.418794], [8.479059, 47.418835], [8.479559, 47.419134], [8.479682, 47.419214], [8.47982, 47.419304], [8.48002, 47.419434], [8.480039, 47.419445], [8.480217, 47.419543], [8.480262, 47.419568], [8.480296, 47.419585], [8.480333, 47.419601], [8.480372, 47.419614], [8.480412, 47.419625], [8.480453, 47.419634], [8.480496, 47.41964], [8.480539, 47.419644], [8.480582, 47.419646], [8.480625, 47.419644], [8.480693, 47.419639], [8.48076, 47.41963], [8.480826, 47.419617], [8.48089, 47.4196], [8.480902, 47.419597], [8.480914, 47.419593], [8.480926, 47.419589], [8.480986, 47.419568], [8.481044, 47.419543], [8.481098, 47.419515], [8.481149, 47.419484], [8.481196, 47.41945], [8.481478, 47.419233], [8.481995, 47.418809], [8.482329, 47.418561], [8.482596, 47.418425]]], "type": "MultiLineString"}, "id": "4769", "properties": {}, "type": "Feature"}, {"bbox": [8.517238, 47.393375, 8.518081, 47.394137], "geometry": {"coordinates": [[[8.518081, 47.394137], [8.518062, 47.394128], [8.518044, 47.394117], [8.518027, 47.394105], [8.518013, 47.394092], [8.517981, 47.394035], [8.517941, 47.393981], [8.517895, 47.393929], [8.517842, 47.39388], [8.517783, 47.393835], [8.51773, 47.3938], [8.517677, 47.393765], [8.517623, 47.393731], [8.517579, 47.3937], [8.517538, 47.393667], [8.517501, 47.393632], [8.517413, 47.393547], [8.517325, 47.393461], [8.517238, 47.393375]]], "type": "MultiLineString"}, "id": "4770", "properties": {}, "type": "Feature"}, {"bbox": [8.55383, 47.416953, 8.554752, 47.417498], "geometry": {"coordinates": [[[8.553833, 47.417498], [8.55383, 47.41742], [8.553836, 47.41741], [8.553843, 47.4174], [8.553851, 47.417391], [8.55386, 47.417382], [8.55387, 47.417373], [8.553882, 47.417365], [8.553894, 47.417358], [8.553908, 47.417352], [8.553921, 47.417346], [8.554561, 47.417076], [8.554581, 47.417069], [8.5546, 47.41706], [8.554618, 47.41705], [8.554634, 47.417039], [8.554649, 47.417027], [8.554752, 47.416953]]], "type": "MultiLineString"}, "id": "4771", "properties": {}, "type": "Feature"}, {"bbox": [8.509362, 47.419886, 8.51318, 47.421323], "geometry": {"coordinates": [[[8.51318, 47.419895], [8.513134, 47.419886], [8.513089, 47.419896], [8.51275, 47.420035], [8.512411, 47.420173], [8.512072, 47.420311], [8.511711, 47.420325], [8.511291, 47.420483], [8.511279, 47.420487], [8.511267, 47.420491], [8.511255, 47.420494], [8.511242, 47.420496], [8.511229, 47.420497], [8.511216, 47.420498], [8.511203, 47.420498], [8.51119, 47.420497], [8.511177, 47.420495], [8.511164, 47.420493], [8.511152, 47.420489], [8.51114, 47.420486], [8.511129, 47.420481], [8.511118, 47.420476], [8.511056, 47.420445], [8.511045, 47.42044], [8.511033, 47.420436], [8.51102, 47.420432], [8.511008, 47.42043], [8.510995, 47.420428], [8.510981, 47.420427], [8.510968, 47.420426], [8.510955, 47.420426], [8.510941, 47.420427], [8.510928, 47.420429], [8.510915, 47.420432], [8.510903, 47.420435], [8.510891, 47.420439], [8.509475, 47.420992], [8.509463, 47.420998], [8.509451, 47.421004], [8.509441, 47.421012], [8.509431, 47.421019], [8.509422, 47.421028], [8.509415, 47.421037], [8.509409, 47.421046], [8.509404, 47.421056], [8.5094, 47.421066], [8.509397, 47.421076], [8.509396, 47.421086], [8.509401, 47.42131], [8.509377, 47.42132], [8.509362, 47.421323]]], "type": "MultiLineString"}, "id": "4772", "properties": {}, "type": "Feature"}, {"bbox": [8.510373, 47.350053, 8.512823, 47.352956], "geometry": {"coordinates": [[[8.510547, 47.352956], [8.510554, 47.352688], [8.510583, 47.352662], [8.510608, 47.352634], [8.51063, 47.352605], [8.510648, 47.352574], [8.510662, 47.352543], [8.510672, 47.352511], [8.510679, 47.352478], [8.51075, 47.352024], [8.510753, 47.351964], [8.510748, 47.351903], [8.510735, 47.351843], [8.510714, 47.351784], [8.510618, 47.351665], [8.510601, 47.351645], [8.510587, 47.351624], [8.510576, 47.351602], [8.510567, 47.35158], [8.510562, 47.351557], [8.510559, 47.351533], [8.51056, 47.35151], [8.510563, 47.351487], [8.51057, 47.351464], [8.510582, 47.351398], [8.510583, 47.351382], [8.510581, 47.351366], [8.510578, 47.35135], [8.510572, 47.351335], [8.510564, 47.351319], [8.510554, 47.351305], [8.510455, 47.351191], [8.510373, 47.351143], [8.510438, 47.351104], [8.511451, 47.350653], [8.512602, 47.350149], [8.512772, 47.350075], [8.512823, 47.350053]]], "type": "MultiLineString"}, "id": "4773", "properties": {}, "type": "Feature"}, {"bbox": [8.49214, 47.358436, 8.497205, 47.363589], "geometry": {"coordinates": [[[8.497205, 47.358436], [8.497078, 47.358455], [8.496846, 47.35847], [8.496795, 47.358595], [8.496787, 47.358641], [8.496775, 47.358687], [8.496761, 47.358733], [8.496741, 47.358782], [8.496716, 47.358831], [8.496685, 47.358877], [8.496649, 47.358922], [8.496628, 47.358944], [8.496607, 47.358967], [8.496584, 47.358988], [8.496139, 47.359403], [8.495841, 47.359697], [8.495709, 47.359813], [8.495677, 47.359838], [8.495643, 47.359862], [8.495606, 47.359884], [8.495567, 47.359904], [8.495453, 47.359957], [8.495408, 47.35998], [8.495367, 47.360005], [8.495329, 47.360033], [8.495295, 47.360063], [8.495265, 47.360095], [8.495239, 47.360128], [8.49513, 47.360284], [8.495107, 47.360314], [8.495081, 47.360343], [8.495051, 47.360369], [8.495018, 47.360394], [8.494981, 47.360417], [8.494942, 47.360438], [8.494802, 47.360507], [8.494749, 47.360535], [8.494699, 47.360566], [8.494654, 47.360601], [8.494613, 47.360637], [8.494577, 47.360676], [8.494546, 47.360717], [8.494478, 47.360817], [8.494441, 47.360869], [8.494399, 47.360919], [8.494353, 47.360968], [8.493787, 47.361536], [8.493674, 47.361652], [8.493647, 47.361678], [8.493616, 47.361701], [8.493583, 47.361723], [8.493548, 47.361743], [8.49351, 47.361761], [8.49347, 47.361777], [8.493428, 47.36179], [8.493404, 47.361798], [8.493381, 47.361807], [8.493359, 47.361817], [8.493339, 47.361828], [8.49332, 47.36184], [8.493303, 47.361854], [8.493287, 47.361868], [8.493251, 47.361901], [8.493212, 47.361932], [8.493169, 47.36196], [8.493124, 47.361987], [8.493093, 47.362003], [8.492865, 47.362124], [8.49285, 47.362132], [8.492836, 47.362142], [8.492824, 47.362152], [8.492813, 47.362163], [8.492804, 47.362174], [8.492796, 47.362186], [8.492789, 47.362198], [8.492784, 47.362211], [8.492781, 47.362224], [8.492779, 47.362237], [8.492777, 47.362287], [8.492775, 47.362321], [8.492775, 47.362357], [8.492779, 47.362393], [8.492788, 47.362429], [8.492802, 47.362464], [8.4929, 47.362682], [8.492909, 47.362706], [8.492915, 47.362731], [8.492918, 47.362755], [8.492918, 47.36278], [8.492914, 47.362805], [8.492908, 47.36283], [8.492867, 47.362951], [8.492846, 47.363002], [8.492819, 47.363052], [8.492786, 47.3631], [8.492747, 47.363147], [8.492703, 47.36319], [8.492653, 47.363232], [8.492598, 47.36327], [8.492338, 47.363436], [8.492268, 47.363484], [8.492201, 47.363535], [8.49214, 47.363589]]], "type": "MultiLineString"}, "id": "4775", "properties": {}, "type": "Feature"}, {"bbox": [8.466388, 47.366529, 8.472294, 47.369454], "geometry": {"coordinates": [[[8.472277, 47.369454], [8.472294, 47.36941], [8.47229, 47.369394], [8.472285, 47.369379], [8.472277, 47.369363], [8.472267, 47.369349], [8.472256, 47.369334], [8.472242, 47.369321], [8.472227, 47.369308], [8.472211, 47.369297], [8.472193, 47.369286], [8.472174, 47.369276], [8.472154, 47.369268], [8.472132, 47.36926], [8.47211, 47.369254], [8.472087, 47.36925], [8.472064, 47.369246], [8.47204, 47.369244], [8.472016, 47.369244], [8.471993, 47.369245], [8.471969, 47.369247], [8.471946, 47.36925], [8.471923, 47.369255], [8.471821, 47.369277], [8.471717, 47.369294], [8.471612, 47.369306], [8.471543, 47.369309], [8.471474, 47.369309], [8.471406, 47.369306], [8.471338, 47.369298], [8.471219, 47.369282], [8.4711, 47.369266], [8.470982, 47.369249], [8.470835, 47.369229], [8.470689, 47.369211], [8.470542, 47.369194], [8.470428, 47.369179], [8.470316, 47.369156], [8.470208, 47.369126], [8.47013, 47.369101], [8.470052, 47.369076], [8.469975, 47.369049], [8.469865, 47.369009], [8.469757, 47.368968], [8.469649, 47.368927], [8.469473, 47.368858], [8.469297, 47.368788], [8.469123, 47.368717], [8.469023, 47.368676], [8.468924, 47.368635], [8.468824, 47.368594], [8.468746, 47.368561], [8.46867, 47.368526], [8.468596, 47.36849], [8.468508, 47.368444], [8.468424, 47.368395], [8.468342, 47.368345], [8.468243, 47.368282], [8.468142, 47.36822], [8.468039, 47.368159], [8.467993, 47.368134], [8.467944, 47.368112], [8.467892, 47.368094], [8.467831, 47.368076], [8.467769, 47.368061], [8.467706, 47.368049], [8.467657, 47.368041], [8.467609, 47.368033], [8.46756, 47.368026], [8.467499, 47.368017], [8.467439, 47.368007], [8.467378, 47.367997], [8.467331, 47.367988], [8.467284, 47.367978], [8.467237, 47.367967], [8.467193, 47.367956], [8.46715, 47.367943], [8.467108, 47.367929], [8.466666, 47.367766], [8.466614, 47.367741], [8.466567, 47.367713], [8.466523, 47.367683], [8.466495, 47.367661], [8.46647, 47.367638], [8.466448, 47.367613], [8.46643, 47.367588], [8.466414, 47.367561], [8.466402, 47.367533], [8.466394, 47.367505], [8.466389, 47.367477], [8.466388, 47.367433], [8.466393, 47.36739], [8.466403, 47.367347], [8.466419, 47.367305], [8.46644, 47.367264], [8.466466, 47.367224], [8.466896, 47.366644], [8.466904, 47.366632], [8.466911, 47.36662], [8.466916, 47.366607], [8.466919, 47.366594], [8.466921, 47.366581], [8.466921, 47.366568], [8.466919, 47.366554], [8.466916, 47.366541], [8.466911, 47.366529]]], "type": "MultiLineString"}, "id": "4777", "properties": {}, "type": "Feature"}, {"bbox": [8.487509, 47.415539, 8.489092, 47.417654], "geometry": {"coordinates": [[[8.489092, 47.415539], [8.48878, 47.41589], [8.488748, 47.415922], [8.488711, 47.415953], [8.488671, 47.41598], [8.488627, 47.416005], [8.487993, 47.416331], [8.48791, 47.416377], [8.487834, 47.416428], [8.487765, 47.416483], [8.487704, 47.416543], [8.48765, 47.416605], [8.487605, 47.416671], [8.487558, 47.416748], [8.487539, 47.416784], [8.487524, 47.416822], [8.487514, 47.41686], [8.487509, 47.416899], [8.48751, 47.416938], [8.487515, 47.416977], [8.487526, 47.417015], [8.487541, 47.417053], [8.487792, 47.41757], [8.487862, 47.417654]]], "type": "MultiLineString"}, "id": "4778", "properties": {}, "type": "Feature"}, {"bbox": [8.560546, 47.349636, 8.56142, 47.350311], "geometry": {"coordinates": [[[8.561239, 47.349659], [8.561245, 47.349655], [8.561252, 47.349651], [8.56126, 47.349647], [8.561268, 47.349644], [8.561276, 47.349642], [8.561285, 47.349639], [8.561294, 47.349638], [8.561303, 47.349637], [8.561312, 47.349636], [8.561321, 47.349637], [8.561331, 47.349637], [8.56134, 47.349638], [8.561348, 47.34964], [8.561357, 47.349642], [8.561365, 47.349645], [8.561373, 47.349648], [8.561381, 47.349652], [8.561388, 47.349656], [8.561394, 47.349661], [8.5614, 47.349666], [8.561405, 47.349671], [8.561409, 47.349676], [8.561413, 47.349682], [8.561416, 47.349688], [8.561418, 47.349694], [8.561419, 47.3497], [8.56142, 47.349706], [8.56142, 47.349713], [8.561419, 47.349719], [8.561417, 47.349725], [8.561414, 47.349731], [8.561411, 47.349737], [8.561061, 47.350132], [8.561035, 47.350152], [8.561007, 47.350169], [8.560976, 47.350185], [8.560943, 47.350199], [8.560909, 47.350211], [8.560873, 47.350221], [8.560836, 47.350229], [8.560798, 47.350234], [8.56076, 47.350238], [8.560732, 47.35024], [8.560706, 47.350244], [8.56068, 47.350249], [8.560654, 47.350256], [8.56063, 47.350264], [8.560607, 47.350274], [8.560585, 47.350285], [8.560565, 47.350297], [8.560546, 47.350311]]], "type": "MultiLineString"}, "id": "4779", "properties": {}, "type": "Feature"}, {"bbox": [8.492253, 47.36595, 8.492861, 47.366712], "geometry": {"coordinates": [[[8.492861, 47.366712], [8.492693, 47.366623], [8.492393, 47.366557], [8.492338, 47.366525], [8.492362, 47.366478], [8.492576, 47.366357], [8.492583, 47.366352], [8.49259, 47.366346], [8.492596, 47.36634], [8.492602, 47.366333], [8.492606, 47.366327], [8.49261, 47.36632], [8.492612, 47.366313], [8.492614, 47.366306], [8.492615, 47.366298], [8.492615, 47.366291], [8.492614, 47.366284], [8.492613, 47.366277], [8.49261, 47.36627], [8.492606, 47.366263], [8.492602, 47.366256], [8.492597, 47.36625], [8.492591, 47.366243], [8.492253, 47.36595]]], "type": "MultiLineString"}, "id": "4780", "properties": {}, "type": "Feature"}, {"bbox": [8.575544, 47.370651, 8.587307, 47.372734], "geometry": {"coordinates": [[[8.575544, 47.371736], [8.575622, 47.371721], [8.575767, 47.37162], [8.575827, 47.371582], [8.57589, 47.371547], [8.575958, 47.371516], [8.576029, 47.371489], [8.576088, 47.371468], [8.57615, 47.37145], [8.576214, 47.371435], [8.57628, 47.371424], [8.576346, 47.371417], [8.576414, 47.371414], [8.576498, 47.371408], [8.576582, 47.371397], [8.576663, 47.371381], [8.576742, 47.37136], [8.576849, 47.371326], [8.576954, 47.37129], [8.577059, 47.371253], [8.577234, 47.371191], [8.577407, 47.371127], [8.57758, 47.371063], [8.57776, 47.370992], [8.577941, 47.370923], [8.578123, 47.370856], [8.578225, 47.370835], [8.578365, 47.370805], [8.578622, 47.370744], [8.578676, 47.370735], [8.57873, 47.370729], [8.578785, 47.370726], [8.579094, 47.370711], [8.579405, 47.370703], [8.579715, 47.370704], [8.579777, 47.370702], [8.579838, 47.370698], [8.579899, 47.37069], [8.580092, 47.370663], [8.580132, 47.370657], [8.580172, 47.370653], [8.580213, 47.370651], [8.580253, 47.370652], [8.580294, 47.370656], [8.580463, 47.370674], [8.580586, 47.370683], [8.580709, 47.370689], [8.580833, 47.370689], [8.580986, 47.370695], [8.581138, 47.370702], [8.58129, 47.370712], [8.581397, 47.370721], [8.581504, 47.370731], [8.58161, 47.370741], [8.581719, 47.370751], [8.581873, 47.370781], [8.582002, 47.370805], [8.582133, 47.370826], [8.582264, 47.370842], [8.58234, 47.370846], [8.582416, 47.370846], [8.582491, 47.370842], [8.582566, 47.370833], [8.582627, 47.370826], [8.582688, 47.370822], [8.58275, 47.370821], [8.582837, 47.370822], [8.582923, 47.370828], [8.583009, 47.370837], [8.58336, 47.370878], [8.583429, 47.370888], [8.583496, 47.370902], [8.583562, 47.370921], [8.583615, 47.37094], [8.58367, 47.370956], [8.583728, 47.370968], [8.583786, 47.370977], [8.583846, 47.370983], [8.583906, 47.370984], [8.584068, 47.370997], [8.584229, 47.371018], [8.584387, 47.371047], [8.584461, 47.371063], [8.584538, 47.371076], [8.584616, 47.371084], [8.584694, 47.371088], [8.584773, 47.371087], [8.584851, 47.371082], [8.584929, 47.371072], [8.585005, 47.371058], [8.585217, 47.371037], [8.585254, 47.371033], [8.585291, 47.371031], [8.585328, 47.371032], [8.585365, 47.371034], [8.585402, 47.371038], [8.585438, 47.371045], [8.585474, 47.371053], [8.585508, 47.371064], [8.58554, 47.371076], [8.585728, 47.371161], [8.585786, 47.371189], [8.586205, 47.371432], [8.586541, 47.371647], [8.586611, 47.371696], [8.586674, 47.37175], [8.586729, 47.371807], [8.586775, 47.371868], [8.586813, 47.371931], [8.586966, 47.372223], [8.587001, 47.372289], [8.587038, 47.372354], [8.587078, 47.372419], [8.587093, 47.372443], [8.587217, 47.372636], [8.587307, 47.372734]]], "type": "MultiLineString"}, "id": "4781", "properties": {}, "type": "Feature"}, {"bbox": [8.519068, 47.42907, 8.519955, 47.431656], "geometry": {"coordinates": [[[8.519068, 47.42907], [8.519089, 47.429131], [8.519106, 47.429194], [8.519119, 47.429257], [8.519116, 47.429325], [8.51911, 47.429393], [8.5191, 47.429461], [8.519081, 47.429645], [8.519076, 47.429696], [8.519079, 47.429746], [8.519088, 47.429796], [8.519104, 47.429845], [8.519126, 47.429893], [8.519155, 47.42994], [8.51919, 47.429984], [8.519231, 47.430026], [8.519322, 47.430104], [8.519403, 47.430187], [8.519473, 47.430274], [8.519532, 47.430365], [8.519579, 47.43046], [8.519613, 47.430556], [8.51967, 47.430749], [8.519927, 47.431481], [8.519948, 47.43154], [8.519955, 47.431572], [8.519955, 47.431587], [8.519953, 47.431656]]], "type": "MultiLineString"}, "id": "4783", "properties": {}, "type": "Feature"}, {"bbox": [8.594282, 47.357778, 8.595392, 47.357968], "geometry": {"coordinates": [[[8.594282, 47.357782], [8.595073, 47.357947], [8.595273, 47.357967], [8.595279, 47.357968], [8.595286, 47.357968], [8.595293, 47.357967], [8.595299, 47.357967], [8.595306, 47.357965], [8.595312, 47.357964], [8.595318, 47.357962], [8.595324, 47.35796], [8.595329, 47.357957], [8.595334, 47.357954], [8.595339, 47.357951], [8.595343, 47.357948], [8.595347, 47.357944], [8.595351, 47.35794], [8.595354, 47.357936], [8.595356, 47.357932], [8.595392, 47.357778]]], "type": "MultiLineString"}, "id": "4784", "properties": {}, "type": "Feature"}, {"bbox": [8.50127, 47.419662, 8.502252, 47.420588], "geometry": {"coordinates": [[[8.50127, 47.420588], [8.501533, 47.420482], [8.501664, 47.420342], [8.501748, 47.420297], [8.501886, 47.420244], [8.502028, 47.420195], [8.502172, 47.42015], [8.502185, 47.420144], [8.502197, 47.420138], [8.502209, 47.420131], [8.502219, 47.420123], [8.502229, 47.420115], [8.502252, 47.420079], [8.502241, 47.420042], [8.501972, 47.419785], [8.501834, 47.419662]]], "type": "MultiLineString"}, "id": "4785", "properties": {}, "type": "Feature"}, {"bbox": [8.599177, 47.357257, 8.599763, 47.357848], "geometry": {"coordinates": [[[8.599177, 47.357257], [8.599181, 47.357268], [8.599187, 47.357279], [8.599194, 47.357289], [8.599202, 47.357299], [8.599211, 47.357308], [8.599394, 47.357488], [8.599578, 47.357668], [8.599763, 47.357848]]], "type": "MultiLineString"}, "id": "4787", "properties": {}, "type": "Feature"}, {"bbox": [8.491006, 47.423217, 8.491919, 47.423878], "geometry": {"coordinates": [[[8.491913, 47.423217], [8.491919, 47.423261], [8.491919, 47.423304], [8.491913, 47.423348], [8.491904, 47.423374], [8.491892, 47.423399], [8.491877, 47.423424], [8.491859, 47.423447], [8.491838, 47.42347], [8.491814, 47.423491], [8.491788, 47.423511], [8.491759, 47.423529], [8.491728, 47.423546], [8.491006, 47.423878]]], "type": "MultiLineString"}, "id": "4788", "properties": {}, "type": "Feature"}, {"bbox": [8.553596, 47.382033, 8.554929, 47.382285], "geometry": {"coordinates": [[[8.553596, 47.382033], [8.55377, 47.382192], [8.553866, 47.382228], [8.553962, 47.382276], [8.55402, 47.382279], [8.554298, 47.382249], [8.55447, 47.382186], [8.554697, 47.382202], [8.554929, 47.382285]]], "type": "MultiLineString"}, "id": "4790", "properties": {}, "type": "Feature"}, {"bbox": [8.526887, 47.396126, 8.528025, 47.397778], "geometry": {"coordinates": [[[8.526887, 47.396126], [8.526922, 47.396256], [8.52693, 47.396292], [8.527073, 47.3966], [8.527281, 47.397071], [8.52737, 47.397301], [8.527429, 47.397343], [8.52756, 47.397484], [8.527817, 47.397662], [8.528025, 47.397778]]], "type": "MultiLineString"}, "id": "4792", "properties": {}, "type": "Feature"}, {"bbox": [8.562224, 47.361275, 8.562816, 47.361854], "geometry": {"coordinates": [[[8.562816, 47.361275], [8.562788, 47.361448], [8.562763, 47.36162], [8.562741, 47.361793], [8.56274, 47.361799], [8.562737, 47.361805], [8.562734, 47.361811], [8.56273, 47.361816], [8.562726, 47.361821], [8.562721, 47.361826], [8.562715, 47.361831], [8.562709, 47.361835], [8.562702, 47.361839], [8.562695, 47.361843], [8.562688, 47.361846], [8.56268, 47.361848], [8.562671, 47.36185], [8.562663, 47.361852], [8.562654, 47.361853], [8.562645, 47.361854], [8.562637, 47.361854], [8.562628, 47.361854], [8.562619, 47.361853], [8.562487, 47.361835], [8.562356, 47.361817], [8.562224, 47.361798]]], "type": "MultiLineString"}, "id": "4794", "properties": {}, "type": "Feature"}, {"bbox": [8.51318, 47.419895, 8.513978, 47.420235], "geometry": {"coordinates": [[[8.513978, 47.420235], [8.513302, 47.419969], [8.513274, 47.419957], [8.513248, 47.419944], [8.513223, 47.419929], [8.5132, 47.419913], [8.51318, 47.419895]]], "type": "MultiLineString"}, "id": "4795", "properties": {}, "type": "Feature"}, {"bbox": [8.580004, 47.407941, 8.580329, 47.40858], "geometry": {"coordinates": [[[8.580054, 47.407941], [8.580329, 47.40847], [8.580017, 47.408553], [8.580015, 47.408554], [8.580013, 47.408556], [8.580011, 47.408557], [8.580009, 47.408559], [8.580008, 47.408561], [8.580007, 47.408563], [8.580006, 47.408565], [8.580005, 47.408567], [8.580004, 47.408569], [8.580004, 47.408571], [8.580004, 47.408574], [8.580005, 47.408576], [8.580005, 47.408578], [8.580006, 47.40858]]], "type": "MultiLineString"}, "id": "4796", "properties": {}, "type": "Feature"}, {"bbox": [8.565678, 47.408675, 8.566125, 47.409124], "geometry": {"coordinates": [[[8.565678, 47.409124], [8.565696, 47.409089], [8.565718, 47.409056], [8.565744, 47.409024], [8.565773, 47.408994], [8.565814, 47.408957], [8.565849, 47.408918], [8.565881, 47.408877], [8.56589, 47.408841], [8.565904, 47.408822], [8.565919, 47.408803], [8.565937, 47.408785], [8.565957, 47.408768], [8.565979, 47.408752], [8.566007, 47.408733], [8.566037, 47.408716], [8.56607, 47.4087], [8.566094, 47.408689], [8.566125, 47.408675]]], "type": "MultiLineString"}, "id": "4797", "properties": {}, "type": "Feature"}, {"bbox": [8.544043, 47.391051, 8.544872, 47.39227], "geometry": {"coordinates": [[[8.544043, 47.392244], [8.544612, 47.39227], [8.544659, 47.392249], [8.544691, 47.391953], [8.544718, 47.391685], [8.54474, 47.391558], [8.544758, 47.391486], [8.544772, 47.391432], [8.544872, 47.391123], [8.544806, 47.391087], [8.544156, 47.391051]]], "type": "MultiLineString"}, "id": "4798", "properties": {}, "type": "Feature"}, {"bbox": [8.477514, 47.389853, 8.478276, 47.390912], "geometry": {"coordinates": [[[8.477514, 47.389855], [8.477526, 47.389853], [8.477537, 47.389853], [8.477549, 47.389853], [8.477561, 47.389854], [8.477573, 47.389856], [8.477584, 47.389858], [8.477595, 47.389861], [8.477606, 47.389865], [8.477616, 47.389869], [8.477625, 47.389874], [8.477634, 47.389879], [8.477642, 47.389885], [8.47765, 47.389891], [8.477696, 47.390088], [8.477698, 47.390099], [8.477701, 47.390109], [8.477706, 47.39012], [8.477773, 47.390267], [8.477778, 47.390277], [8.477783, 47.390288], [8.477789, 47.390298], [8.477983, 47.390509], [8.477992, 47.390518], [8.478, 47.390528], [8.478006, 47.390537], [8.478011, 47.390547], [8.47811, 47.390724], [8.478117, 47.390735], [8.478125, 47.390747], [8.478133, 47.390758], [8.478276, 47.390912]]], "type": "MultiLineString"}, "id": "4800", "properties": {}, "type": "Feature"}, {"bbox": [8.506402, 47.380654, 8.506931, 47.381345], "geometry": {"coordinates": [[[8.506931, 47.381345], [8.506785, 47.381184], [8.506776, 47.381172], [8.506768, 47.38116], [8.506762, 47.381147], [8.506757, 47.381135], [8.50673, 47.381024], [8.506727, 47.381006], [8.50672, 47.380989], [8.506712, 47.380972], [8.506702, 47.380955], [8.506689, 47.380939], [8.506675, 47.380924], [8.506402, 47.380654]]], "type": "MultiLineString"}, "id": "4801", "properties": {}, "type": "Feature"}, {"bbox": [8.499892, 47.375044, 8.500753, 47.375773], "geometry": {"coordinates": [[[8.499892, 47.375044], [8.500171, 47.375292], [8.500458, 47.375535], [8.500753, 47.375773]]], "type": "MultiLineString"}, "id": "4804", "properties": {}, "type": "Feature"}, {"bbox": [8.581532, 47.402173, 8.582507, 47.402308], "geometry": {"coordinates": [[[8.581532, 47.402301], [8.581793, 47.402308], [8.581967, 47.402301], [8.582109, 47.402267], [8.582507, 47.402173]]], "type": "MultiLineString"}, "id": "4806", "properties": {}, "type": "Feature"}, {"bbox": [8.534232, 47.382682, 8.535056, 47.383121], "geometry": {"coordinates": [[[8.534232, 47.382682], [8.534261, 47.382684], [8.534289, 47.382688], [8.534317, 47.382694], [8.534344, 47.382701], [8.534369, 47.38271], [8.534394, 47.38272], [8.534595, 47.382845], [8.534797, 47.38297], [8.534998, 47.383094], [8.535016, 47.383104], [8.535036, 47.383113], [8.535056, 47.383121]]], "type": "MultiLineString"}, "id": "4807", "properties": {}, "type": "Feature"}, {"bbox": [8.574171, 47.358167, 8.575745, 47.358407], "geometry": {"coordinates": [[[8.574171, 47.358327], [8.57436, 47.358303], [8.574406, 47.358294], [8.5747, 47.358206], [8.574725, 47.3582], [8.574799, 47.358186], [8.57485, 47.358177], [8.574901, 47.35817], [8.574954, 47.358167], [8.575006, 47.358167], [8.575058, 47.35817], [8.57511, 47.358175], [8.575161, 47.358184], [8.57521, 47.358196], [8.575258, 47.35821], [8.575304, 47.358228], [8.575418, 47.358269], [8.575652, 47.358358], [8.575698, 47.358379], [8.575745, 47.358407]]], "type": "MultiLineString"}, "id": "4808", "properties": {}, "type": "Feature"}, {"bbox": [8.549427, 47.378011, 8.551193, 47.379114], "geometry": {"coordinates": [[[8.55119, 47.378011], [8.551193, 47.378038], [8.551193, 47.378065], [8.55119, 47.378092], [8.551184, 47.378119], [8.551174, 47.378145], [8.551161, 47.378171], [8.551144, 47.378195], [8.551125, 47.378219], [8.551103, 47.378242], [8.551078, 47.378263], [8.55001, 47.379096], [8.550005, 47.379099], [8.55, 47.379102], [8.549994, 47.379105], [8.549988, 47.379107], [8.549982, 47.379109], [8.549976, 47.379111], [8.549969, 47.379112], [8.549962, 47.379113], [8.549955, 47.379114], [8.549948, 47.379114], [8.549941, 47.379114], [8.549934, 47.379113], [8.549928, 47.379112], [8.549921, 47.37911], [8.549915, 47.379108], [8.549909, 47.379106], [8.549903, 47.379103], [8.549427, 47.378821]]], "type": "MultiLineString"}, "id": "4809", "properties": {}, "type": "Feature"}, {"bbox": [8.514422, 47.374271, 8.514896, 47.374438], "geometry": {"coordinates": [[[8.514422, 47.374398], [8.514471, 47.374361], [8.514602, 47.374432], [8.514605, 47.374434], [8.514608, 47.374435], [8.514612, 47.374436], [8.514616, 47.374437], [8.514619, 47.374437], [8.514623, 47.374438], [8.514627, 47.374438], [8.514631, 47.374438], [8.514635, 47.374437], [8.514638, 47.374437], [8.514642, 47.374436], [8.514646, 47.374435], [8.514649, 47.374434], [8.514652, 47.374432], [8.514655, 47.374431], [8.514658, 47.374429], [8.514896, 47.374271]]], "type": "MultiLineString"}, "id": "4810", "properties": {}, "type": "Feature"}, {"bbox": [8.595097, 47.396664, 8.596576, 47.397759], "geometry": {"coordinates": [[[8.595097, 47.397122], [8.595256, 47.397063], [8.595433, 47.397274], [8.595461, 47.397301], [8.595492, 47.397326], [8.595526, 47.39735], [8.596015, 47.39769], [8.596037, 47.397704], [8.596061, 47.397717], [8.596086, 47.397729], [8.596113, 47.397739], [8.596141, 47.397747], [8.59617, 47.397754], [8.596192, 47.397757], [8.596214, 47.397759], [8.596237, 47.397759], [8.596259, 47.397758], [8.596281, 47.397755], [8.596303, 47.397752], [8.596324, 47.397747], [8.596345, 47.397741], [8.596365, 47.397733], [8.596383, 47.397725], [8.596401, 47.397715], [8.596417, 47.397705], [8.596432, 47.397693], [8.596446, 47.397681], [8.5965, 47.3976], [8.596576, 47.397406], [8.596537, 47.397331], [8.596452, 47.397149], [8.596404, 47.397001], [8.596387, 47.396908], [8.596379, 47.396813], [8.596381, 47.396677], [8.596381, 47.396664], [8.596166, 47.396733], [8.595637, 47.396921], [8.595256, 47.397063]]], "type": "MultiLineString"}, "id": "4811", "properties": {}, "type": "Feature"}, {"bbox": [8.519235, 47.366432, 8.519958, 47.366569], "geometry": {"coordinates": [[[8.519958, 47.366529], [8.519904, 47.366539], [8.519596, 47.366569], [8.519327, 47.366554], [8.519324, 47.366512], [8.519235, 47.36648], [8.519272, 47.366432]]], "type": "MultiLineString"}, "id": "4812", "properties": {}, "type": "Feature"}, {"bbox": [8.539534, 47.370274, 8.541209, 47.370651], "geometry": {"coordinates": [[[8.541209, 47.370563], [8.541055, 47.370651], [8.540855, 47.370647], [8.540656, 47.370631], [8.540459, 47.370603], [8.540267, 47.370564], [8.540081, 47.370513], [8.539534, 47.370274]]], "type": "MultiLineString"}, "id": "4814", "properties": {}, "type": "Feature"}, {"bbox": [8.513481, 47.350835, 8.520833, 47.356319], "geometry": {"coordinates": [[[8.520833, 47.356319], [8.520803, 47.35619], [8.520765, 47.356095], [8.520732, 47.356014], [8.520717, 47.355976], [8.520692, 47.355911], [8.520669, 47.355847], [8.520649, 47.355781], [8.520346, 47.354769], [8.52015, 47.354118], [8.520143, 47.354097], [8.520132, 47.354077], [8.520119, 47.354057], [8.520104, 47.354038], [8.520086, 47.35402], [8.520066, 47.354003], [8.520044, 47.353988], [8.52002, 47.353974], [8.519994, 47.353961], [8.519898, 47.35392], [8.5198, 47.353883], [8.519699, 47.353849], [8.519208, 47.353694], [8.519147, 47.353674], [8.519012, 47.353628], [8.518882, 47.353577], [8.518756, 47.353521], [8.518279, 47.353293], [8.518245, 47.353278], [8.518209, 47.353266], [8.518171, 47.353255], [8.518132, 47.353246], [8.518093, 47.35324], [8.517983, 47.353227], [8.517521, 47.353169], [8.517349, 47.353141], [8.517182, 47.353103], [8.517021, 47.353055], [8.516868, 47.352996], [8.516723, 47.352928], [8.516588, 47.352851], [8.516356, 47.352705], [8.516295, 47.352669], [8.516231, 47.352635], [8.516164, 47.352603], [8.516164, 47.352603], [8.516141, 47.352593], [8.516141, 47.352593], [8.516053, 47.352558], [8.515962, 47.352528], [8.515868, 47.352502], [8.515364, 47.352375], [8.515152, 47.352316], [8.514949, 47.352245], [8.514755, 47.352162], [8.51417, 47.351891], [8.514082, 47.351847], [8.514, 47.351797], [8.513925, 47.351743], [8.513856, 47.351684], [8.513796, 47.351622], [8.513743, 47.351557], [8.513699, 47.351488], [8.513664, 47.351418], [8.513638, 47.351345], [8.51354, 47.351014], [8.513481, 47.350835]]], "type": "MultiLineString"}, "id": "4815", "properties": {}, "type": "Feature"}, {"bbox": [8.596697, 47.351524, 8.601412, 47.356774], "geometry": {"coordinates": [[[8.596697, 47.356774], [8.596773, 47.356709], [8.596853, 47.356647], [8.596936, 47.356587], [8.597067, 47.356495], [8.597203, 47.356406], [8.597344, 47.356321], [8.59791, 47.355914], [8.598622, 47.355125], [8.598809, 47.354878], [8.599228, 47.354326], [8.599355, 47.354146], [8.599348, 47.354078], [8.599342, 47.354011], [8.599551, 47.35388], [8.599674, 47.353682], [8.599711, 47.353511], [8.599713, 47.353169], [8.599736, 47.353028], [8.599772, 47.352909], [8.600041, 47.352598], [8.600392, 47.352219], [8.600675, 47.352034], [8.600943, 47.351838], [8.601032, 47.351766], [8.601412, 47.351524]]], "type": "MultiLineString"}, "id": "4823", "properties": {}, "type": "Feature"}, {"bbox": [8.521937, 47.406307, 8.525124, 47.408033], "geometry": {"coordinates": [[[8.525124, 47.406307], [8.525099, 47.406364], [8.524994, 47.406697], [8.524964, 47.406772], [8.524964, 47.406773], [8.524964, 47.406773], [8.524923, 47.406854], [8.524875, 47.406934], [8.52482, 47.407011], [8.52482, 47.407011], [8.52482, 47.407011], [8.524774, 47.407072], [8.524724, 47.407132], [8.524671, 47.407191], [8.524671, 47.407191], [8.524671, 47.407191], [8.524626, 47.407239], [8.524579, 47.407286], [8.52453, 47.407331], [8.524447, 47.407397], [8.524359, 47.40746], [8.524266, 47.40752], [8.524266, 47.40752], [8.524266, 47.40752], [8.524175, 47.407573], [8.524078, 47.407622], [8.523977, 47.407665], [8.52388, 47.407699], [8.52378, 47.40773], [8.523678, 47.407757], [8.523678, 47.407757], [8.523257, 47.407865], [8.523088, 47.407914], [8.523068, 47.407921], [8.522848, 47.407988], [8.522808, 47.408002], [8.522765, 47.408013], [8.522722, 47.408022], [8.522677, 47.408028], [8.522632, 47.408032], [8.522586, 47.408033], [8.52254, 47.408032], [8.522108, 47.408011], [8.521937, 47.407988]]], "type": "MultiLineString"}, "id": "4824", "properties": {}, "type": "Feature"}, {"bbox": [8.568413, 47.353651, 8.570041, 47.355534], "geometry": {"coordinates": [[[8.568593, 47.353651], [8.568418, 47.354334], [8.568413, 47.354403], [8.568413, 47.354473], [8.568421, 47.354542], [8.568457, 47.354741], [8.568468, 47.354784], [8.568484, 47.354827], [8.568505, 47.354869], [8.568532, 47.35491], [8.568563, 47.354949], [8.568599, 47.354986], [8.568639, 47.355021], [8.568749, 47.3551], [8.568861, 47.355177], [8.568977, 47.355252], [8.569118, 47.355327], [8.569269, 47.355394], [8.569427, 47.355451], [8.569593, 47.355498], [8.569764, 47.355534], [8.569772, 47.355534], [8.56978, 47.355534], [8.569788, 47.355533], [8.569796, 47.355532], [8.569803, 47.35553], [8.569811, 47.355527], [8.569818, 47.355525], [8.569824, 47.355522], [8.56983, 47.355518], [8.569836, 47.355514], [8.569841, 47.35551], [8.569846, 47.355506], [8.56985, 47.355501], [8.569853, 47.355496], [8.569856, 47.355491], [8.569858, 47.355486], [8.569859, 47.35548], [8.56986, 47.355475], [8.570041, 47.354718]]], "type": "MultiLineString"}, "id": "4829", "properties": {}, "type": "Feature"}, {"bbox": [8.494449, 47.378057, 8.496582, 47.37874], "geometry": {"coordinates": [[[8.496582, 47.378541], [8.49657, 47.378539], [8.496557, 47.378536], [8.496545, 47.378533], [8.496533, 47.378528], [8.496523, 47.378523], [8.496512, 47.378518], [8.496503, 47.378511], [8.496494, 47.378505], [8.496486, 47.378497], [8.49631, 47.378358], [8.496293, 47.378347], [8.496275, 47.378338], [8.496256, 47.378329], [8.496235, 47.378322], [8.496214, 47.378316], [8.496192, 47.378311], [8.49617, 47.378308], [8.496147, 47.378306], [8.496101, 47.378308], [8.496055, 47.378307], [8.496009, 47.378303], [8.495963, 47.378296], [8.495919, 47.378286], [8.495861, 47.378266], [8.495806, 47.378243], [8.495754, 47.378217], [8.495705, 47.378187], [8.495661, 47.378155], [8.495621, 47.37812], [8.49561, 47.37811], [8.495597, 47.3781], [8.495583, 47.378092], [8.495567, 47.378084], [8.495551, 47.378077], [8.495534, 47.378071], [8.495517, 47.378066], [8.495499, 47.378062], [8.49548, 47.378059], [8.495461, 47.378057], [8.495442, 47.378057], [8.495423, 47.378057], [8.495404, 47.378059], [8.495385, 47.378061], [8.495367, 47.378065], [8.495349, 47.37807], [8.495332, 47.378076], [8.495316, 47.378082], [8.495301, 47.37809], [8.495286, 47.378099], [8.495273, 47.378108], [8.495261, 47.378118], [8.495195, 47.378174], [8.495123, 47.378226], [8.495044, 47.378273], [8.494959, 47.378315], [8.49492, 47.378329], [8.494883, 47.378345], [8.494848, 47.378363], [8.494815, 47.378383], [8.494786, 47.378406], [8.49476, 47.37843], [8.494737, 47.378455], [8.494717, 47.378482], [8.494663, 47.378552], [8.494599, 47.378619], [8.494528, 47.378682], [8.494449, 47.37874]]], "type": "MultiLineString"}, "id": "4830", "properties": {}, "type": "Feature"}, {"bbox": [8.535634, 47.343962, 8.537067, 47.34534], "geometry": {"coordinates": [[[8.535634, 47.345287], [8.536069, 47.345335], [8.536088, 47.345281], [8.536157, 47.345263], [8.53663, 47.34534], [8.536791, 47.344951], [8.536802, 47.344944], [8.536812, 47.344936], [8.53682, 47.344928], [8.536828, 47.344919], [8.536835, 47.344909], [8.53684, 47.3449], [8.537066, 47.344322], [8.537067, 47.344319], [8.537067, 47.344316], [8.537067, 47.344313], [8.537066, 47.344311], [8.537065, 47.344308], [8.537064, 47.344305], [8.537063, 47.344303], [8.537061, 47.3443], [8.537059, 47.344298], [8.537056, 47.344296], [8.537054, 47.344294], [8.537051, 47.344292], [8.537048, 47.34429], [8.537044, 47.344289], [8.536937, 47.34425], [8.536796, 47.344193], [8.536795, 47.344159], [8.53679, 47.344011], [8.536808, 47.343962]]], "type": "MultiLineString"}, "id": "4831", "properties": {}, "type": "Feature"}, {"bbox": [8.596003, 47.358139, 8.597044, 47.358406], "geometry": {"coordinates": [[[8.596003, 47.358139], [8.596004, 47.358151], [8.596008, 47.358169], [8.596015, 47.358187], [8.596023, 47.358204], [8.596033, 47.358221], [8.596046, 47.358237], [8.59606, 47.358252], [8.596076, 47.358266], [8.596095, 47.35828], [8.596114, 47.358292], [8.596167, 47.358318], [8.596222, 47.358341], [8.59628, 47.358361], [8.596341, 47.358377], [8.596403, 47.35839], [8.596466, 47.358399], [8.596531, 47.358405], [8.596596, 47.358406], [8.596661, 47.358404], [8.597044, 47.358406]]], "type": "MultiLineString"}, "id": "4833", "properties": {}, "type": "Feature"}, {"bbox": [8.507429, 47.398166, 8.509091, 47.398955], "geometry": {"coordinates": [[[8.507443, 47.398955], [8.507444, 47.398947], [8.507445, 47.398939], [8.507444, 47.398931], [8.507442, 47.398924], [8.507431, 47.398892], [8.50743, 47.398891], [8.50743, 47.39889], [8.507429, 47.398888], [8.507429, 47.398887], [8.50743, 47.398885], [8.50743, 47.398884], [8.50743, 47.398882], [8.507431, 47.398881], [8.507432, 47.398879], [8.507433, 47.398878], [8.507434, 47.398877], [8.507436, 47.398875], [8.507437, 47.398874], [8.507439, 47.398873], [8.50744, 47.398872], [8.507534, 47.398821], [8.507627, 47.39877], [8.507721, 47.39872], [8.507753, 47.398702], [8.507786, 47.398685], [8.507819, 47.398668], [8.507883, 47.398636], [8.507949, 47.398604], [8.508016, 47.398573], [8.508072, 47.39855], [8.508129, 47.398527], [8.508186, 47.398504], [8.508284, 47.398467], [8.508382, 47.398429], [8.508479, 47.398391], [8.508519, 47.398376], [8.50856, 47.398361], [8.508601, 47.398347], [8.508804, 47.398281], [8.508822, 47.398274], [8.508839, 47.398268], [8.508856, 47.398261], [8.508935, 47.39823], [8.509013, 47.398198], [8.509091, 47.398166]]], "type": "MultiLineString"}, "id": "4835", "properties": {}, "type": "Feature"}, {"bbox": [8.479467, 47.379383, 8.4808, 47.380286], "geometry": {"coordinates": [[[8.4808, 47.380286], [8.480796, 47.380282], [8.480794, 47.380277], [8.480791, 47.380272], [8.48079, 47.380267], [8.480789, 47.380261], [8.480789, 47.380256], [8.480777, 47.38011], [8.480749, 47.380038], [8.480669, 47.379941], [8.479737, 47.379528], [8.479467, 47.379383]]], "type": "MultiLineString"}, "id": "4836", "properties": {}, "type": "Feature"}, {"bbox": [8.482559, 47.375545, 8.482878, 47.375989], "geometry": {"coordinates": [[[8.482878, 47.375545], [8.482769, 47.375679], [8.482665, 47.375815], [8.482566, 47.375952], [8.482563, 47.375957], [8.482561, 47.375961], [8.48256, 47.375966], [8.482559, 47.37597], [8.482559, 47.375975], [8.482559, 47.37598], [8.48256, 47.375985], [8.482562, 47.375989]]], "type": "MultiLineString"}, "id": "4840", "properties": {}, "type": "Feature"}, {"bbox": [8.494113, 47.371544, 8.497845, 47.372504], "geometry": {"coordinates": [[[8.494113, 47.372504], [8.494126, 47.372498], [8.494139, 47.372493], [8.494153, 47.372488], [8.494168, 47.372485], [8.494183, 47.372483], [8.494198, 47.372481], [8.494214, 47.37248], [8.494229, 47.372481], [8.494238, 47.372481], [8.494247, 47.37248], [8.494256, 47.372479], [8.494265, 47.372478], [8.494274, 47.372476], [8.494282, 47.372473], [8.49429, 47.37247], [8.494297, 47.372467], [8.494305, 47.372463], [8.494311, 47.372459], [8.494501, 47.372308], [8.494525, 47.37229], [8.494552, 47.372273], [8.494582, 47.372258], [8.495032, 47.372036], [8.495048, 47.372028], [8.495065, 47.372021], [8.495083, 47.372015], [8.495101, 47.37201], [8.49512, 47.372005], [8.495537, 47.371931], [8.495954, 47.371856], [8.496371, 47.37178], [8.49638, 47.371778], [8.496389, 47.371777], [8.496397, 47.371774], [8.496406, 47.371771], [8.496414, 47.371768], [8.496421, 47.371764], [8.496428, 47.37176], [8.496434, 47.371755], [8.49644, 47.37175], [8.496445, 47.371744], [8.496451, 47.371738], [8.496457, 47.371731], [8.496465, 47.371725], [8.496473, 47.371719], [8.496482, 47.371714], [8.496491, 47.37171], [8.496501, 47.371706], [8.496512, 47.371702], [8.496523, 47.3717], [8.496534, 47.371697], [8.497845, 47.371544]]], "type": "MultiLineString"}, "id": "4841", "properties": {}, "type": "Feature"}, {"bbox": [8.470923, 47.389678, 8.472737, 47.39091], "geometry": {"coordinates": [[[8.472737, 47.389678], [8.47271, 47.389737], [8.472675, 47.389793], [8.472633, 47.389847], [8.472531, 47.389931], [8.472419, 47.390009], [8.472299, 47.390081], [8.472167, 47.390148], [8.471986, 47.390249], [8.471805, 47.39035], [8.471625, 47.390451], [8.471502, 47.390523], [8.47138, 47.390596], [8.47126, 47.390671], [8.471145, 47.390749], [8.471033, 47.390829], [8.470923, 47.39091]]], "type": "MultiLineString"}, "id": "4842", "properties": {}, "type": "Feature"}, {"bbox": [8.556053, 47.413945, 8.556659, 47.414508], "geometry": {"coordinates": [[[8.556641, 47.414508], [8.556659, 47.414028], [8.556656, 47.41402], [8.556651, 47.414012], [8.556646, 47.414005], [8.55664, 47.413997], [8.556632, 47.413991], [8.556624, 47.413984], [8.556616, 47.413978], [8.556606, 47.413973], [8.556596, 47.413968], [8.556585, 47.413963], [8.556574, 47.41396], [8.556562, 47.413957], [8.55655, 47.413955], [8.556538, 47.413953], [8.556526, 47.413952], [8.556513, 47.413952], [8.556053, 47.413945]]], "type": "MultiLineString"}, "id": "4843", "properties": {}, "type": "Feature"}, {"bbox": [8.487631, 47.372016, 8.488659, 47.373047], "geometry": {"coordinates": [[[8.48864, 47.373047], [8.488659, 47.37284], [8.488657, 47.372831], [8.488655, 47.372822], [8.488652, 47.372812], [8.488647, 47.372803], [8.488641, 47.372795], [8.488635, 47.372786], [8.488627, 47.372778], [8.488618, 47.372771], [8.488293, 47.37253], [8.488075, 47.372357], [8.487854, 47.372186], [8.487631, 47.372016]]], "type": "MultiLineString"}, "id": "4844", "properties": {}, "type": "Feature"}, {"bbox": [8.505331, 47.369326, 8.505552, 47.370157], "geometry": {"coordinates": [[[8.505397, 47.370157], [8.505331, 47.370111], [8.505335, 47.370072], [8.505336, 47.37006], [8.505338, 47.370049], [8.50534, 47.370038], [8.505351, 47.369995], [8.505363, 47.369952], [8.505376, 47.36991], [8.505392, 47.36986], [8.505423, 47.369753], [8.505434, 47.369725], [8.505447, 47.369696], [8.505462, 47.369668], [8.505479, 47.369637], [8.505479, 47.369637], [8.505503, 47.36959], [8.505524, 47.369542], [8.505542, 47.369493], [8.505552, 47.369462], [8.505407, 47.369326]]], "type": "MultiLineString"}, "id": "4845", "properties": {}, "type": "Feature"}, {"bbox": [8.571178, 47.404943, 8.572924, 47.406602], "geometry": {"coordinates": [[[8.571178, 47.404943], [8.571463, 47.405218], [8.571515, 47.405268], [8.571562, 47.40532], [8.571601, 47.405375], [8.571633, 47.405431], [8.571658, 47.40549], [8.571676, 47.40555], [8.571686, 47.40561], [8.571688, 47.405671], [8.571692, 47.405739], [8.571706, 47.405806], [8.571728, 47.405872], [8.571759, 47.405937], [8.571798, 47.405999], [8.571806, 47.406014], [8.571812, 47.40603], [8.571816, 47.406046], [8.571818, 47.406062], [8.571817, 47.406079], [8.571815, 47.406095], [8.57181, 47.406111], [8.571804, 47.406127], [8.571795, 47.406142], [8.571784, 47.406156], [8.571772, 47.40617], [8.571758, 47.406183], [8.571742, 47.406195], [8.571724, 47.406207], [8.5718, 47.40626], [8.572021, 47.406432], [8.572039, 47.406443], [8.572057, 47.406452], [8.572078, 47.40646], [8.572099, 47.406466], [8.57212, 47.406471], [8.572143, 47.406475], [8.572924, 47.406602]]], "type": "MultiLineString"}, "id": "4854", "properties": {}, "type": "Feature"}, {"bbox": [8.491322, 47.379122, 8.492122, 47.37965], "geometry": {"coordinates": [[[8.491322, 47.379122], [8.491322, 47.379129], [8.491323, 47.379135], [8.491325, 47.379142], [8.491327, 47.379148], [8.491331, 47.379155], [8.491335, 47.379161], [8.49134, 47.379167], [8.491346, 47.379172], [8.491352, 47.379177], [8.491594, 47.379336], [8.491637, 47.379362], [8.491683, 47.379385], [8.491732, 47.379405], [8.491866, 47.379484], [8.491996, 47.379565], [8.492122, 47.37965]]], "type": "MultiLineString"}, "id": "4856", "properties": {}, "type": "Feature"}, {"bbox": [8.4959, 47.414178, 8.498574, 47.416043], "geometry": {"coordinates": [[[8.4959, 47.414178], [8.496078, 47.414272], [8.496285, 47.414436], [8.49635, 47.414495], [8.496408, 47.414557], [8.496459, 47.414621], [8.496502, 47.414689], [8.496543, 47.414765], [8.49658, 47.414842], [8.496612, 47.41492], [8.496726, 47.415212], [8.496745, 47.415252], [8.496769, 47.415291], [8.496799, 47.415329], [8.496834, 47.415364], [8.497401, 47.415888], [8.497423, 47.415906], [8.497448, 47.415923], [8.497474, 47.415938], [8.497584, 47.415997], [8.497606, 47.416008], [8.497629, 47.416018], [8.497654, 47.416026], [8.49768, 47.416032], [8.497706, 47.416037], [8.497733, 47.416041], [8.49776, 47.416043], [8.497788, 47.416043], [8.497815, 47.416042], [8.497842, 47.416039], [8.497869, 47.416034], [8.497895, 47.416028], [8.49792, 47.416021], [8.498106, 47.415958], [8.498133, 47.415948], [8.49816, 47.415936], [8.498185, 47.415924], [8.498443, 47.415789], [8.498458, 47.415781], [8.498471, 47.415772], [8.498483, 47.415763], [8.498493, 47.415752], [8.498503, 47.415741], [8.498511, 47.41573], [8.498517, 47.415718], [8.498522, 47.415706], [8.498525, 47.415694], [8.498527, 47.415681], [8.498527, 47.415668], [8.49851, 47.415396], [8.49848, 47.415164], [8.498473, 47.41512], [8.498466, 47.415077], [8.498456, 47.415033], [8.498444, 47.414961], [8.498441, 47.414889], [8.498445, 47.414816], [8.498458, 47.414745], [8.498574, 47.414259]]], "type": "MultiLineString"}, "id": "4857", "properties": {}, "type": "Feature"}, {"bbox": [8.50751, 47.410319, 8.512995, 47.41126], "geometry": {"coordinates": [[[8.50751, 47.410912], [8.507545, 47.41095], [8.507585, 47.410985], [8.507629, 47.411018], [8.507678, 47.411047], [8.507928, 47.411184], [8.507969, 47.411203], [8.508013, 47.411219], [8.508058, 47.411233], [8.508105, 47.411244], [8.508153, 47.411252], [8.508201, 47.411257], [8.508251, 47.41126], [8.5083, 47.41126], [8.50835, 47.411258], [8.509168, 47.411251], [8.5101, 47.411237], [8.510218, 47.411232], [8.510335, 47.411218], [8.510449, 47.411197], [8.51048, 47.411189], [8.510511, 47.411182], [8.510541, 47.411173], [8.511259, 47.410938], [8.512046, 47.41068], [8.512404, 47.410517], [8.512995, 47.410319]]], "type": "MultiLineString"}, "id": "4858", "properties": {}, "type": "Feature"}, {"bbox": [8.562365, 47.404667, 8.564095, 47.405286], "geometry": {"coordinates": [[[8.564095, 47.405286], [8.563748, 47.405135], [8.563632, 47.405084], [8.563598, 47.405069], [8.563565, 47.405051], [8.563535, 47.405031], [8.563507, 47.40501], [8.563482, 47.404988], [8.563459, 47.404964], [8.563368, 47.40487], [8.563347, 47.404848], [8.563322, 47.404827], [8.563296, 47.404807], [8.563267, 47.404789], [8.563235, 47.404773], [8.563202, 47.404758], [8.563168, 47.404746], [8.56296, 47.404685], [8.56292, 47.404677], [8.562879, 47.404671], [8.562837, 47.404668], [8.562795, 47.404667], [8.562753, 47.404668], [8.562711, 47.404672], [8.562365, 47.404714]]], "type": "MultiLineString"}, "id": "4859", "properties": {}, "type": "Feature"}, {"bbox": [8.559666, 47.388319, 8.563902, 47.393703], "geometry": {"coordinates": [[[8.563902, 47.388319], [8.563821, 47.388391], [8.563289, 47.388814], [8.562348, 47.389531], [8.562325, 47.389555], [8.562305, 47.38958], [8.562288, 47.389606], [8.562274, 47.389633], [8.562264, 47.389661], [8.562257, 47.389689], [8.562254, 47.389718], [8.562244, 47.38972], [8.562234, 47.389722], [8.562224, 47.389725], [8.562215, 47.389728], [8.562206, 47.389732], [8.562198, 47.389736], [8.562191, 47.389741], [8.562184, 47.389746], [8.562177, 47.389752], [8.562172, 47.389758], [8.562167, 47.389764], [8.562163, 47.389771], [8.56216, 47.389778], [8.562158, 47.389785], [8.562081, 47.390142], [8.562075, 47.390178], [8.562074, 47.390215], [8.562077, 47.390252], [8.562084, 47.390288], [8.562096, 47.390324], [8.562175, 47.390522], [8.562248, 47.390717], [8.562259, 47.390751], [8.562265, 47.390785], [8.562266, 47.390819], [8.562263, 47.390853], [8.562256, 47.390887], [8.562242, 47.39093], [8.562222, 47.390972], [8.562197, 47.391012], [8.562168, 47.391052], [8.562134, 47.391089], [8.562095, 47.391125], [8.562053, 47.391158], [8.562045, 47.391164], [8.562039, 47.39117], [8.562033, 47.391176], [8.562028, 47.391183], [8.562024, 47.39119], [8.562021, 47.391197], [8.562019, 47.391205], [8.562018, 47.391212], [8.562017, 47.39122], [8.562018, 47.391227], [8.56202, 47.391234], [8.562022, 47.391242], [8.562079, 47.391379], [8.562083, 47.391391], [8.562086, 47.391402], [8.562087, 47.391414], [8.562087, 47.391426], [8.562085, 47.391438], [8.562082, 47.39145], [8.562077, 47.391461], [8.561957, 47.391718], [8.561929, 47.391769], [8.561893, 47.391819], [8.561851, 47.391866], [8.561578, 47.392137], [8.561568, 47.392147], [8.561556, 47.392156], [8.561543, 47.392164], [8.56153, 47.392171], [8.561515, 47.392178], [8.5615, 47.392183], [8.561484, 47.392188], [8.561468, 47.392192], [8.561451, 47.392195], [8.561433, 47.392197], [8.561416, 47.392198], [8.56049, 47.392206], [8.560438, 47.392219], [8.559992, 47.392504], [8.559794, 47.392656], [8.559794, 47.392656], [8.559778, 47.392669], [8.559764, 47.392684], [8.559752, 47.3927], [8.559741, 47.392716], [8.559733, 47.392732], [8.559726, 47.392749], [8.559726, 47.39275], [8.559666, 47.393051], [8.559677, 47.393252], [8.559695, 47.393703]]], "type": "MultiLineString"}, "id": "4860", "properties": {}, "type": "Feature"}, {"bbox": [8.543695, 47.373401, 8.54404, 47.376726], "geometry": {"coordinates": [[[8.543733, 47.373401], [8.543718, 47.373429], [8.543695, 47.373549], [8.543695, 47.373723], [8.543708, 47.373818], [8.543729, 47.373976], [8.543798, 47.374262], [8.543837, 47.374485], [8.543836, 47.374727], [8.543839, 47.374883], [8.543836, 47.374963], [8.543873, 47.375203], [8.543942, 47.375421], [8.543997, 47.375551], [8.544023, 47.375652], [8.544037, 47.375754], [8.54404, 47.375856], [8.54403, 47.375959], [8.54403, 47.37596], [8.543947, 47.376487], [8.54395, 47.376726]]], "type": "MultiLineString"}, "id": "4862", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.36675, 8.545814, 47.367078], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545676, 47.366795], [8.545535, 47.366834], [8.54539, 47.366867], [8.545116, 47.366916], [8.544839, 47.366955], [8.544559, 47.366985], [8.544508, 47.366993], [8.544459, 47.367005], [8.544411, 47.367019], [8.544366, 47.367036], [8.544322, 47.367056], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "4865", "properties": {}, "type": "Feature"}, {"bbox": [8.530812, 47.348575, 8.530979, 47.348861], "geometry": {"coordinates": [[[8.530979, 47.348861], [8.530937, 47.34871], [8.530903, 47.348613], [8.530899, 47.348608], [8.530895, 47.348603], [8.53089, 47.348599], [8.530885, 47.348595], [8.530879, 47.348591], [8.530873, 47.348587], [8.530866, 47.348584], [8.530859, 47.348581], [8.530852, 47.348579], [8.530844, 47.348577], [8.530836, 47.348576], [8.530828, 47.348575], [8.53082, 47.348575], [8.530812, 47.348575]]], "type": "MultiLineString"}, "id": "4867", "properties": {}, "type": "Feature"}, {"bbox": [8.48971, 47.377215, 8.490657, 47.378398], "geometry": {"coordinates": [[[8.490657, 47.377215], [8.490517, 47.377511], [8.490506, 47.377534], [8.490492, 47.377556], [8.490475, 47.377577], [8.490456, 47.377598], [8.490435, 47.377617], [8.490411, 47.377635], [8.490385, 47.377651], [8.490356, 47.377666], [8.490327, 47.37768], [8.490138, 47.377788], [8.490098, 47.377807], [8.490061, 47.377828], [8.490026, 47.377852], [8.489995, 47.377877], [8.489967, 47.377904], [8.489942, 47.377932], [8.489921, 47.377962], [8.489904, 47.377993], [8.48978, 47.378308], [8.489776, 47.378321], [8.48977, 47.378334], [8.489763, 47.378346], [8.489755, 47.378358], [8.489745, 47.37837], [8.489733, 47.378381], [8.48972, 47.378391], [8.48971, 47.378398]]], "type": "MultiLineString"}, "id": "4869", "properties": {}, "type": "Feature"}, {"bbox": [8.517451, 47.399496, 8.51763, 47.399698], "geometry": {"coordinates": [[[8.517624, 47.399698], [8.517628, 47.399683], [8.51763, 47.399668], [8.517629, 47.399653], [8.517627, 47.399638], [8.517623, 47.399623], [8.517617, 47.399609], [8.51761, 47.399594], [8.5176, 47.399581], [8.517589, 47.399568], [8.517576, 47.399555], [8.517562, 47.399544], [8.517546, 47.399533], [8.51753, 47.399524], [8.517511, 47.399515], [8.517492, 47.399507], [8.517472, 47.399501], [8.517451, 47.399496]]], "type": "MultiLineString"}, "id": "4870", "properties": {}, "type": "Feature"}, {"bbox": [8.546128, 47.427388, 8.547062, 47.427492], "geometry": {"coordinates": [[[8.547062, 47.427492], [8.547005, 47.427483], [8.546954, 47.427445], [8.546793, 47.427442], [8.546633, 47.42743], [8.546476, 47.427408], [8.546419, 47.427398], [8.546361, 47.427391], [8.546303, 47.427388], [8.546244, 47.427388], [8.546186, 47.42739], [8.546128, 47.427397]]], "type": "MultiLineString"}, "id": "4871", "properties": {}, "type": "Feature"}, {"bbox": [8.58492, 47.401312, 8.585319, 47.401937], "geometry": {"coordinates": [[[8.58492, 47.401312], [8.585319, 47.401937]]], "type": "MultiLineString"}, "id": "4872", "properties": {}, "type": "Feature"}, {"bbox": [8.520194, 47.407465, 8.524977, 47.409021], "geometry": {"coordinates": [[[8.524977, 47.407465], [8.524778, 47.40782], [8.524646, 47.408014], [8.52462, 47.408051], [8.524585, 47.408081], [8.524547, 47.40811], [8.523532, 47.408755], [8.523487, 47.40878], [8.52344, 47.408802], [8.523389, 47.408821], [8.523337, 47.408838], [8.523282, 47.408851], [8.523227, 47.40886], [8.523032, 47.408879], [8.522967, 47.408883], [8.522901, 47.408886], [8.522836, 47.408888], [8.522814, 47.408888], [8.522734, 47.408885], [8.522654, 47.408881], [8.522574, 47.408874], [8.522574, 47.408874], [8.522531, 47.40887], [8.522488, 47.408864], [8.522446, 47.408858], [8.522404, 47.408855], [8.522361, 47.408853], [8.522319, 47.408853], [8.522275, 47.408855], [8.522232, 47.40886], [8.522189, 47.408868], [8.522148, 47.408878], [8.522108, 47.40889], [8.52207, 47.408905], [8.522034, 47.408923], [8.522, 47.408942], [8.52197, 47.408964], [8.521947, 47.408976], [8.521923, 47.408987], [8.521897, 47.408996], [8.52187, 47.409004], [8.521843, 47.40901], [8.521814, 47.409014], [8.52176, 47.409019], [8.521706, 47.409021], [8.521651, 47.409019], [8.521597, 47.409014], [8.521544, 47.409005], [8.521544, 47.409005], [8.521543, 47.409005], [8.521456, 47.408988], [8.52137, 47.408969], [8.521285, 47.408948], [8.521204, 47.408926], [8.521124, 47.408904], [8.521043, 47.408882], [8.521042, 47.408882], [8.521042, 47.408882], [8.520949, 47.408863], [8.520854, 47.408851], [8.520758, 47.408844], [8.520661, 47.408842], [8.52066, 47.408842], [8.520444, 47.408861], [8.520419, 47.408863], [8.520395, 47.408862], [8.520371, 47.408861], [8.520347, 47.408858], [8.520324, 47.408853], [8.520302, 47.408847], [8.52028, 47.40884], [8.52026, 47.408831], [8.520212, 47.408795], [8.520194, 47.408747]]], "type": "MultiLineString"}, "id": "4875", "properties": {}, "type": "Feature"}, {"bbox": [8.528032, 47.357482, 8.528635, 47.358012], "geometry": {"coordinates": [[[8.528032, 47.357482], [8.52818, 47.35766], [8.528237, 47.357666], [8.528563, 47.357684], [8.528635, 47.357707], [8.528604, 47.358012]]], "type": "MultiLineString"}, "id": "4876", "properties": {}, "type": "Feature"}, {"bbox": [8.476183, 47.397322, 8.476448, 47.397837], "geometry": {"coordinates": [[[8.476448, 47.397837], [8.476411, 47.397825], [8.476377, 47.39781], [8.476344, 47.397794], [8.476314, 47.397775], [8.476286, 47.397755], [8.476261, 47.397733], [8.476239, 47.39771], [8.47622, 47.397686], [8.476204, 47.39766], [8.476192, 47.397634], [8.476186, 47.397613], [8.476183, 47.397591], [8.476183, 47.39757], [8.476185, 47.397549], [8.47619, 47.397528], [8.476198, 47.397507], [8.476208, 47.397487], [8.476221, 47.397467], [8.476236, 47.397448], [8.476268, 47.397419], [8.476304, 47.397391], [8.476343, 47.397366], [8.476385, 47.397343], [8.47643, 47.397322]]], "type": "MultiLineString"}, "id": "4877", "properties": {}, "type": "Feature"}, {"bbox": [8.575489, 47.388335, 8.575628, 47.390056], "geometry": {"coordinates": [[[8.575497, 47.388335], [8.575503, 47.388391], [8.575504, 47.388447], [8.575502, 47.388503], [8.575489, 47.388681], [8.575489, 47.388859], [8.575501, 47.389036], [8.575512, 47.389141], [8.575527, 47.389246], [8.575548, 47.38935], [8.575569, 47.389458], [8.575588, 47.389567], [8.575604, 47.389675], [8.575621, 47.389751], [8.575628, 47.389828], [8.575625, 47.389904], [8.575612, 47.389981], [8.57559, 47.390056]]], "type": "MultiLineString"}, "id": "4878", "properties": {}, "type": "Feature"}, {"bbox": [8.511016, 47.388599, 8.511017, 47.388601], "geometry": {"coordinates": [[[8.511016, 47.388601], [8.511017, 47.388599]]], "type": "MultiLineString"}, "id": "4879", "properties": {}, "type": "Feature"}, {"bbox": [8.50524, 47.39056, 8.505809, 47.391584], "geometry": {"coordinates": [[[8.505445, 47.391584], [8.505522, 47.391558], [8.505595, 47.391527], [8.505664, 47.391492], [8.505728, 47.391453], [8.505786, 47.39141], [8.505794, 47.3914], [8.505799, 47.39139], [8.505804, 47.391379], [8.505807, 47.391368], [8.505808, 47.391356], [8.505809, 47.391345], [8.505807, 47.391334], [8.505805, 47.391323], [8.505801, 47.391312], [8.505795, 47.391301], [8.505653, 47.39111], [8.505593, 47.39104], [8.505531, 47.390971], [8.505466, 47.390903], [8.505383, 47.390791], [8.505307, 47.390677], [8.50524, 47.39056]]], "type": "MultiLineString"}, "id": "4880", "properties": {}, "type": "Feature"}, {"bbox": [8.476658, 47.379446, 8.477403, 47.380556], "geometry": {"coordinates": [[[8.477403, 47.380556], [8.477399, 47.380541], [8.477394, 47.380527], [8.477386, 47.380513], [8.477377, 47.3805], [8.477366, 47.380487], [8.477353, 47.380475], [8.476699, 47.379944], [8.476689, 47.379933], [8.47668, 47.379922], [8.476672, 47.37991], [8.476666, 47.379897], [8.476662, 47.379885], [8.476659, 47.379872], [8.476658, 47.379859], [8.476659, 47.379846], [8.476661, 47.379833], [8.476742, 47.379593], [8.476744, 47.379583], [8.476744, 47.379572], [8.476744, 47.379561], [8.476741, 47.37955], [8.476738, 47.37954], [8.476733, 47.37953], [8.476727, 47.37952], [8.47672, 47.37951], [8.476711, 47.379501], [8.476694, 47.379483], [8.476677, 47.379465], [8.47666, 47.379446]]], "type": "MultiLineString"}, "id": "4882", "properties": {}, "type": "Feature"}, {"bbox": [8.568725, 47.402991, 8.569488, 47.403913], "geometry": {"coordinates": [[[8.569488, 47.403913], [8.569467, 47.403908], [8.569446, 47.403901], [8.569426, 47.403893], [8.569408, 47.403883], [8.569391, 47.403873], [8.569375, 47.403861], [8.569361, 47.403849], [8.569349, 47.403836], [8.569307, 47.403691], [8.569077, 47.403366], [8.568764, 47.403111], [8.568725, 47.402991]]], "type": "MultiLineString"}, "id": "4883", "properties": {}, "type": "Feature"}, {"bbox": [8.594233, 47.360645, 8.598449, 47.363229], "geometry": {"coordinates": [[[8.59428, 47.360645], [8.594257, 47.360725], [8.594242, 47.360806], [8.594233, 47.360887], [8.59424, 47.360899], [8.594249, 47.36091], [8.594258, 47.360921], [8.59427, 47.360931], [8.594282, 47.36094], [8.594295, 47.360949], [8.59431, 47.360957], [8.594326, 47.360963], [8.594802, 47.361193], [8.59481, 47.361196], [8.594818, 47.3612], [8.594825, 47.361205], [8.594831, 47.361209], [8.594837, 47.361215], [8.594842, 47.36122], [8.594847, 47.361226], [8.594851, 47.361232], [8.594854, 47.361238], [8.594856, 47.361244], [8.594857, 47.36125], [8.594859, 47.361256], [8.594861, 47.361262], [8.594864, 47.361267], [8.594868, 47.361273], [8.594872, 47.361278], [8.594877, 47.361282], [8.594883, 47.361287], [8.594889, 47.361291], [8.594895, 47.361295], [8.594903, 47.361298], [8.594997, 47.361342], [8.595006, 47.36135], [8.595015, 47.361358], [8.595023, 47.361366], [8.595029, 47.361375], [8.595034, 47.361384], [8.595038, 47.361393], [8.595041, 47.361403], [8.595042, 47.361413], [8.595042, 47.361422], [8.595045, 47.36153], [8.595046, 47.361539], [8.595047, 47.361547], [8.595049, 47.361555], [8.595053, 47.361563], [8.595058, 47.361571], [8.595063, 47.361578], [8.595069, 47.361585], [8.595077, 47.361592], [8.595085, 47.361598], [8.595094, 47.361604], [8.595103, 47.361609], [8.595114, 47.361614], [8.595124, 47.361618], [8.595136, 47.361621], [8.595941, 47.361878], [8.596253, 47.361979], [8.596523, 47.362071], [8.596802, 47.362152], [8.597086, 47.362222], [8.597096, 47.362226], [8.597105, 47.362231], [8.597114, 47.362236], [8.597122, 47.362242], [8.597129, 47.362248], [8.597135, 47.362255], [8.597141, 47.362262], [8.597185, 47.362458], [8.597187, 47.362466], [8.597189, 47.362474], [8.597192, 47.362482], [8.597196, 47.362489], [8.597202, 47.362497], [8.597208, 47.362504], [8.597215, 47.36251], [8.597222, 47.362517], [8.597231, 47.362522], [8.59724, 47.362528], [8.597327, 47.362555], [8.597352, 47.362563], [8.597377, 47.362573], [8.5974, 47.362583], [8.597455, 47.362615], [8.597506, 47.362649], [8.597552, 47.362687], [8.597592, 47.362727], [8.597627, 47.36277], [8.597689, 47.362905], [8.597694, 47.362917], [8.597702, 47.362929], [8.597711, 47.36294], [8.597721, 47.36295], [8.597733, 47.36296], [8.597746, 47.362968], [8.59776, 47.362976], [8.597775, 47.362984], [8.597827, 47.363009], [8.597881, 47.363033], [8.597937, 47.363055], [8.598, 47.363076], [8.598062, 47.363099], [8.598121, 47.363125], [8.598228, 47.363163], [8.598337, 47.363198], [8.598449, 47.363229]]], "type": "MultiLineString"}, "id": "4884", "properties": {}, "type": "Feature"}, {"bbox": [8.539774, 47.399577, 8.540917, 47.401133], "geometry": {"coordinates": [[[8.540917, 47.401088], [8.540804, 47.401102], [8.540691, 47.401117], [8.540579, 47.401133], [8.540494, 47.401082], [8.540404, 47.401037], [8.540309, 47.400996], [8.540209, 47.400961], [8.540105, 47.400932], [8.539999, 47.400908], [8.539953, 47.400892], [8.539909, 47.400874], [8.539866, 47.400856], [8.539852, 47.400847], [8.539838, 47.400837], [8.539826, 47.400827], [8.539815, 47.400816], [8.539806, 47.400805], [8.539798, 47.400793], [8.539791, 47.400781], [8.539786, 47.400768], [8.539783, 47.400755], [8.539781, 47.400742], [8.539776, 47.400716], [8.539774, 47.40069], [8.539774, 47.400664], [8.539774, 47.400652], [8.539775, 47.40064], [8.539777, 47.400628], [8.539781, 47.400617], [8.539786, 47.400606], [8.539793, 47.400595], [8.539801, 47.400585], [8.539811, 47.400575], [8.539923, 47.40046], [8.540037, 47.400345], [8.540153, 47.400231], [8.540355, 47.400013], [8.540556, 47.399795], [8.540757, 47.399577]]], "type": "MultiLineString"}, "id": "4885", "properties": {}, "type": "Feature"}, {"bbox": [8.599933, 47.360078, 8.60041, 47.360761], "geometry": {"coordinates": [[[8.600038, 47.360078], [8.599935, 47.360368], [8.599933, 47.360382], [8.599933, 47.360395], [8.599934, 47.360409], [8.599937, 47.360423], [8.599942, 47.360436], [8.599949, 47.360449], [8.599957, 47.360462], [8.599967, 47.360474], [8.599979, 47.360485], [8.599992, 47.360496], [8.600006, 47.360506], [8.600021, 47.360515], [8.600038, 47.360523], [8.600055, 47.36053], [8.600073, 47.360536], [8.600093, 47.36054], [8.600112, 47.360544], [8.600212, 47.360567], [8.600311, 47.360591], [8.60041, 47.360616], [8.60037, 47.360761]]], "type": "MultiLineString"}, "id": "4886", "properties": {}, "type": "Feature"}, {"bbox": [8.469507, 47.361353, 8.475601, 47.364213], "geometry": {"coordinates": [[[8.469507, 47.364213], [8.469614, 47.364188], [8.469682, 47.364171], [8.470606, 47.363932], [8.471218, 47.36382], [8.471842, 47.363745], [8.472473, 47.363707], [8.473712, 47.363705], [8.473906, 47.363693], [8.474099, 47.363669], [8.474288, 47.363635], [8.474472, 47.363589], [8.47465, 47.363533], [8.474819, 47.363467], [8.47498, 47.363391], [8.475131, 47.363307], [8.475271, 47.363213], [8.475398, 47.363112], [8.475512, 47.363004], [8.475538, 47.362971], [8.475559, 47.362937], [8.475576, 47.362901], [8.475589, 47.362865], [8.475597, 47.362828], [8.475601, 47.36279], [8.4756, 47.362753], [8.475594, 47.362721], [8.475584, 47.36269], [8.47557, 47.362659], [8.475553, 47.36263], [8.475279, 47.362211], [8.475217, 47.362123], [8.475148, 47.362039], [8.475071, 47.361957], [8.4747, 47.361589], [8.474655, 47.361548], [8.474604, 47.36151], [8.474549, 47.361476], [8.474489, 47.361444], [8.474425, 47.361417], [8.47437, 47.361398], [8.474312, 47.361382], [8.474253, 47.361369], [8.474192, 47.36136], [8.474131, 47.361355], [8.474068, 47.361353], [8.473988, 47.361355], [8.473909, 47.361361], [8.473831, 47.361372], [8.473754, 47.361388], [8.473679, 47.361407], [8.473607, 47.361431], [8.473538, 47.361459], [8.473487, 47.361484], [8.473438, 47.361512], [8.473394, 47.361542], [8.473353, 47.361575], [8.473316, 47.36161], [8.473283, 47.361647], [8.473256, 47.361685], [8.473232, 47.361725], [8.473099, 47.361988], [8.472892, 47.362372], [8.472872, 47.362404], [8.472849, 47.362434], [8.472821, 47.362463], [8.47279, 47.362491], [8.472756, 47.362516], [8.472718, 47.362539], [8.472678, 47.362559], [8.472635, 47.362578], [8.47259, 47.362593], [8.472543, 47.362606], [8.472494, 47.362616], [8.472445, 47.362623], [8.472394, 47.362627], [8.471448, 47.362673], [8.471351, 47.362675], [8.471254, 47.362672], [8.471158, 47.362662], [8.471064, 47.362647], [8.470972, 47.362627], [8.470882, 47.362602], [8.470796, 47.362571], [8.470317, 47.362382]]], "type": "MultiLineString"}, "id": "4888", "properties": {}, "type": "Feature"}, {"bbox": [8.536125, 47.400055, 8.536396, 47.400329], "geometry": {"coordinates": [[[8.536396, 47.400055], [8.536125, 47.400329]]], "type": "MultiLineString"}, "id": "4889", "properties": {}, "type": "Feature"}, {"bbox": [8.482874, 47.411852, 8.491257, 47.419877], "geometry": {"coordinates": [[[8.491257, 47.411852], [8.491237, 47.411961], [8.491149, 47.412076], [8.490796, 47.412575], [8.49067, 47.412733], [8.49065, 47.41276], [8.490634, 47.412788], [8.490622, 47.412816], [8.490613, 47.412846], [8.490608, 47.412875], [8.490566, 47.413237], [8.490487, 47.413877], [8.490408, 47.414435], [8.490366, 47.41471], [8.490296, 47.415077], [8.490155, 47.415732], [8.490125, 47.415833], [8.490081, 47.415932], [8.490022, 47.416028], [8.489565, 47.416673], [8.489552, 47.41669], [8.489537, 47.416707], [8.489522, 47.416724], [8.489506, 47.41674], [8.48949, 47.416754], [8.489473, 47.416769], [8.489431, 47.416799], [8.489386, 47.416826], [8.489337, 47.416851], [8.489285, 47.416872], [8.4887, 47.417087], [8.488425, 47.417193], [8.488363, 47.417219], [8.488304, 47.417248], [8.488248, 47.417281], [8.488197, 47.417317], [8.48815, 47.417355], [8.488108, 47.417396], [8.487862, 47.417654], [8.487609, 47.417972], [8.48749, 47.418108], [8.487356, 47.418238], [8.487207, 47.41836], [8.487045, 47.418474], [8.48658, 47.418777], [8.486512, 47.418815], [8.486375, 47.418891], [8.486227, 47.418974], [8.48614, 47.419018], [8.486047, 47.419057], [8.48595, 47.41909], [8.48585, 47.419118], [8.485403, 47.419224], [8.485107, 47.4193], [8.484535, 47.419446], [8.483947, 47.419592], [8.483353, 47.419735], [8.483085, 47.419812], [8.482874, 47.419877]]], "type": "MultiLineString"}, "id": "4891", "properties": {}, "type": "Feature"}, {"bbox": [8.555971, 47.40498, 8.557309, 47.405939], "geometry": {"coordinates": [[[8.555971, 47.40498], [8.556435, 47.405567], [8.556821, 47.405727], [8.557309, 47.405939]]], "type": "MultiLineString"}, "id": "4892", "properties": {}, "type": "Feature"}, {"bbox": [8.600845, 47.354852, 8.60116, 47.355126], "geometry": {"coordinates": [[[8.600845, 47.355126], [8.600852, 47.35512], [8.600859, 47.355114], [8.600864, 47.355107], [8.600869, 47.3551], [8.600873, 47.355093], [8.600876, 47.355085], [8.600878, 47.355077], [8.600879, 47.355069], [8.600883, 47.354992], [8.600934, 47.354906], [8.601048, 47.354855], [8.601056, 47.354853], [8.601063, 47.354852], [8.60107, 47.354852], [8.601078, 47.354852], [8.601085, 47.354852], [8.601092, 47.354853], [8.601099, 47.354854], [8.601106, 47.354856], [8.601113, 47.354858], [8.60112, 47.35486], [8.601126, 47.354863], [8.601132, 47.354866], [8.601137, 47.354869], [8.601142, 47.354873], [8.601146, 47.354877], [8.60115, 47.354882], [8.601153, 47.354886], [8.601156, 47.354891], [8.601158, 47.354896], [8.601159, 47.354901], [8.60116, 47.354906]]], "type": "MultiLineString"}, "id": "4893", "properties": {}, "type": "Feature"}, {"bbox": [8.568656, 47.373542, 8.57592, 47.374605], "geometry": {"coordinates": [[[8.568656, 47.373542], [8.568777, 47.373609], [8.568831, 47.373656], [8.568956, 47.373833], [8.568986, 47.37388], [8.56901, 47.373929], [8.569026, 47.373979], [8.56903, 47.373991], [8.569036, 47.374003], [8.569043, 47.374015], [8.569052, 47.374026], [8.569062, 47.374037], [8.569073, 47.374047], [8.569085, 47.374056], [8.569099, 47.374064], [8.569114, 47.374072], [8.569129, 47.374079], [8.569146, 47.374085], [8.569207, 47.374102], [8.569269, 47.374115], [8.569334, 47.374125], [8.569399, 47.374131], [8.569465, 47.374133], [8.569597, 47.374133], [8.569621, 47.374134], [8.569645, 47.374136], [8.569668, 47.37414], [8.569692, 47.374145], [8.569714, 47.374151], [8.569736, 47.374158], [8.569756, 47.374167], [8.569942, 47.374252], [8.569963, 47.37426], [8.569985, 47.374268], [8.570008, 47.374274], [8.570031, 47.374279], [8.570055, 47.374283], [8.57008, 47.374285], [8.570104, 47.374285], [8.570129, 47.374285], [8.57038, 47.374271], [8.570583, 47.374264], [8.570786, 47.374264], [8.570989, 47.374272], [8.571755, 47.374314], [8.571785, 47.374326], [8.571792, 47.374334], [8.5718, 47.374341], [8.571809, 47.374349], [8.571819, 47.374355], [8.571829, 47.374362], [8.57184, 47.374367], [8.571852, 47.374372], [8.571865, 47.374376], [8.571878, 47.374379], [8.571943, 47.374394], [8.572072, 47.37442], [8.572204, 47.374437], [8.572338, 47.374447], [8.572797, 47.374467], [8.572918, 47.374474], [8.573039, 47.374481], [8.573159, 47.374491], [8.573989, 47.374561], [8.574075, 47.374567], [8.574161, 47.374571], [8.574248, 47.374573], [8.574571, 47.374576], [8.575231, 47.374592], [8.57586, 47.374605], [8.57592, 47.374605]]], "type": "MultiLineString"}, "id": "4894", "properties": {}, "type": "Feature"}, {"bbox": [8.539387, 47.414948, 8.540744, 47.415022], "geometry": {"coordinates": [[[8.540744, 47.414948], [8.540439, 47.414966], [8.539387, 47.415022]]], "type": "MultiLineString"}, "id": "4895", "properties": {}, "type": "Feature"}, {"bbox": [8.48756, 47.36791, 8.490829, 47.369769], "geometry": {"coordinates": [[[8.490829, 47.36791], [8.490817, 47.36792], [8.490787, 47.36794], [8.490754, 47.367959], [8.49072, 47.367976], [8.490683, 47.36799], [8.490644, 47.368002], [8.490604, 47.368012], [8.490563, 47.36802], [8.490521, 47.368025], [8.4904, 47.368037], [8.490277, 47.368043], [8.490155, 47.368044], [8.490095, 47.368049], [8.490037, 47.368058], [8.48998, 47.36807], [8.489827, 47.368117], [8.489673, 47.368161], [8.489517, 47.368203], [8.489396, 47.368252], [8.489282, 47.368308], [8.489176, 47.36837], [8.489078, 47.368439], [8.488989, 47.368513], [8.48891, 47.368592], [8.48886, 47.368649], [8.48881, 47.368705], [8.488761, 47.368762], [8.488749, 47.368772], [8.488735, 47.368782], [8.48872, 47.368791], [8.488705, 47.368799], [8.488688, 47.368805], [8.48867, 47.368811], [8.488652, 47.368816], [8.488633, 47.368819], [8.488613, 47.368822], [8.488565, 47.368824], [8.488516, 47.368825], [8.488468, 47.368823], [8.488455, 47.368825], [8.488442, 47.368828], [8.488429, 47.368832], [8.488418, 47.368836], [8.488406, 47.368841], [8.488396, 47.368847], [8.488386, 47.368854], [8.488377, 47.368861], [8.488369, 47.368868], [8.488363, 47.368876], [8.488357, 47.368884], [8.488349, 47.368918], [8.488338, 47.368951], [8.488322, 47.368984], [8.488303, 47.369015], [8.488079, 47.369198], [8.487851, 47.369378], [8.48762, 47.369556], [8.487607, 47.369567], [8.487595, 47.36958], [8.487585, 47.369593], [8.487576, 47.369606], [8.487569, 47.36962], [8.487564, 47.369635], [8.487561, 47.369649], [8.48756, 47.369664], [8.48756, 47.369679], [8.487563, 47.369693], [8.487567, 47.369708], [8.487573, 47.369722], [8.48758, 47.369736], [8.487603, 47.369749], [8.487628, 47.36976], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "4897", "properties": {}, "type": "Feature"}, {"bbox": [8.579, 47.364989, 8.588936, 47.367253], "geometry": {"coordinates": [[[8.579, 47.367253], [8.579143, 47.367195], [8.579216, 47.367159], [8.579405, 47.367071], [8.579637, 47.366991], [8.579839, 47.366943], [8.579933, 47.36692], [8.580228, 47.366873], [8.581002, 47.366803], [8.581096, 47.366794], [8.58119, 47.366783], [8.581284, 47.366771], [8.581585, 47.366731], [8.581942, 47.366683], [8.582299, 47.366629], [8.582653, 47.366565], [8.583002, 47.366491], [8.583144, 47.366448], [8.583282, 47.3664], [8.583417, 47.366346], [8.584117, 47.36605], [8.584969, 47.365678], [8.584969, 47.365678], [8.585026, 47.365656], [8.585086, 47.365637], [8.585147, 47.36562], [8.585147, 47.36562], [8.585203, 47.365607], [8.585254, 47.365595], [8.585307, 47.365584], [8.585377, 47.36557], [8.585377, 47.36557], [8.585419, 47.365563], [8.585461, 47.365558], [8.585503, 47.365554], [8.585538, 47.365552], [8.586643, 47.365508], [8.587179, 47.365499], [8.587752, 47.365525], [8.587881, 47.365534], [8.588094, 47.365547], [8.588239, 47.36541], [8.588486, 47.365165], [8.588522, 47.365135], [8.588562, 47.365107], [8.588605, 47.365081], [8.588652, 47.365058], [8.588701, 47.365038], [8.588753, 47.365021], [8.588806, 47.365007], [8.588862, 47.364997], [8.588918, 47.36499], [8.588936, 47.364989]]], "type": "MultiLineString"}, "id": "4898", "properties": {}, "type": "Feature"}, {"bbox": [8.513511, 47.381272, 8.513956, 47.381623], "geometry": {"coordinates": [[[8.513511, 47.381491], [8.513581, 47.381459], [8.513742, 47.381623], [8.513831, 47.381579], [8.513732, 47.381476], [8.513794, 47.381449], [8.513774, 47.381429], [8.513772, 47.381427], [8.513771, 47.381426], [8.51377, 47.381424], [8.513769, 47.381423], [8.513768, 47.381421], [8.513767, 47.381419], [8.513767, 47.381417], [8.513767, 47.381416], [8.513767, 47.381414], [8.513768, 47.381412], [8.513768, 47.38141], [8.513769, 47.381409], [8.51377, 47.381407], [8.513771, 47.381405], [8.513773, 47.381404], [8.513774, 47.381403], [8.513776, 47.381401], [8.513778, 47.3814], [8.51378, 47.381399], [8.513783, 47.381398], [8.513935, 47.381329], [8.513956, 47.381288], [8.513947, 47.381283], [8.513939, 47.381278], [8.513932, 47.381272]]], "type": "MultiLineString"}, "id": "4901", "properties": {}, "type": "Feature"}, {"bbox": [8.575367, 47.380741, 8.578435, 47.382778], "geometry": {"coordinates": [[[8.578435, 47.380741], [8.578076, 47.381435], [8.577786, 47.381974], [8.577675, 47.382173], [8.577608, 47.382204], [8.577537, 47.382231], [8.577464, 47.382254], [8.577388, 47.382274], [8.577299, 47.382294], [8.576753, 47.382417], [8.576592, 47.382452], [8.57643, 47.382485], [8.576267, 47.382516], [8.575894, 47.382584], [8.575852, 47.382591], [8.57581, 47.382595], [8.575768, 47.382598], [8.575625, 47.382604], [8.575539, 47.382608], [8.575367, 47.382778]]], "type": "MultiLineString"}, "id": "4903", "properties": {}, "type": "Feature"}, {"bbox": [8.602552, 47.352557, 8.604621, 47.35367], "geometry": {"coordinates": [[[8.602552, 47.352557], [8.602613, 47.352585], [8.60267, 47.352615], [8.602723, 47.352649], [8.602771, 47.352686], [8.602814, 47.352726], [8.60292, 47.352864], [8.602949, 47.352907], [8.602973, 47.352951], [8.602991, 47.352996], [8.603003, 47.353043], [8.603009, 47.35309], [8.603009, 47.353137], [8.603003, 47.353183], [8.602991, 47.35323], [8.602974, 47.353275], [8.602971, 47.353294], [8.602971, 47.353314], [8.602974, 47.353333], [8.602979, 47.353352], [8.602987, 47.353371], [8.602997, 47.353389], [8.603009, 47.353407], [8.603024, 47.353424], [8.60304, 47.353439], [8.603059, 47.353454], [8.60308, 47.353467], [8.603102, 47.35348], [8.603218, 47.353533], [8.603233, 47.353538], [8.603247, 47.353541], [8.603263, 47.353544], [8.603277, 47.353546], [8.603292, 47.353546], [8.603307, 47.353546], [8.603321, 47.353545], [8.603336, 47.353543], [8.603839, 47.353466], [8.603873, 47.353463], [8.603909, 47.353463], [8.603944, 47.353464], [8.603978, 47.353468], [8.604012, 47.353474], [8.604045, 47.353481], [8.604077, 47.353491], [8.604621, 47.35367]]], "type": "MultiLineString"}, "id": "4905", "properties": {}, "type": "Feature"}, {"bbox": [8.565802, 47.356685, 8.566189, 47.358157], "geometry": {"coordinates": [[[8.566034, 47.356685], [8.565974, 47.356758], [8.565805, 47.357052], [8.565802, 47.357062], [8.565805, 47.357064], [8.565803, 47.357087], [8.565805, 47.357133], [8.565811, 47.357156], [8.565819, 47.357184], [8.565828, 47.357208], [8.565841, 47.357231], [8.565895, 47.357319], [8.565916, 47.35736], [8.56593, 47.357393], [8.565941, 47.357423], [8.565957, 47.357482], [8.565965, 47.357537], [8.565967, 47.357593], [8.565964, 47.35765], [8.565947, 47.357802], [8.565948, 47.357831], [8.565957, 47.357872], [8.565965, 47.35789], [8.565974, 47.357909], [8.566, 47.357945], [8.566106, 47.358065], [8.566189, 47.358157]]], "type": "MultiLineString"}, "id": "4906", "properties": {}, "type": "Feature"}, {"bbox": [8.567451, 47.411182, 8.572614, 47.411985], "geometry": {"coordinates": [[[8.567451, 47.411945], [8.567628, 47.41198], [8.567767, 47.411985], [8.567784, 47.411983], [8.5678, 47.411981], [8.567817, 47.411978], [8.567838, 47.411973], [8.56786, 47.411968], [8.56788, 47.411962], [8.568214, 47.411826], [8.568588, 47.411681], [8.568683, 47.411646], [8.56878, 47.411613], [8.568877, 47.411581], [8.56901, 47.411537], [8.569144, 47.411496], [8.569279, 47.411456], [8.569647, 47.411368], [8.57005, 47.41127], [8.570091, 47.41126], [8.570193, 47.411235], [8.570478, 47.411186], [8.570485, 47.411185], [8.570493, 47.411183], [8.570501, 47.411183], [8.570509, 47.411183], [8.570516, 47.411183], [8.570524, 47.411184], [8.570532, 47.411185], [8.570539, 47.411186], [8.570546, 47.411189], [8.570553, 47.411191], [8.57056, 47.411194], [8.570567, 47.411198], [8.570575, 47.411201], [8.570583, 47.411203], [8.570591, 47.411205], [8.5706, 47.411207], [8.570609, 47.411208], [8.570617, 47.411209], [8.570626, 47.411209], [8.570635, 47.411209], [8.57111, 47.411216], [8.571136, 47.41122], [8.571163, 47.411223], [8.571189, 47.411223], [8.571216, 47.411223], [8.571243, 47.41122], [8.571269, 47.411216], [8.571294, 47.411211], [8.571319, 47.411204], [8.571343, 47.411196], [8.572214, 47.411262], [8.572297, 47.411255], [8.57238, 47.411244], [8.57246, 47.411227], [8.572539, 47.411207], [8.572614, 47.411182]]], "type": "MultiLineString"}, "id": "4907", "properties": {}, "type": "Feature"}, {"bbox": [8.520767, 47.41414, 8.52437, 47.415047], "geometry": {"coordinates": [[[8.520767, 47.41488], [8.520842, 47.414882], [8.520917, 47.414887], [8.520991, 47.414895], [8.521571, 47.415034], [8.52162, 47.415041], [8.521669, 47.415045], [8.521718, 47.415047], [8.521767, 47.415045], [8.521816, 47.415041], [8.521865, 47.415034], [8.521912, 47.415025], [8.521958, 47.415012], [8.522002, 47.414998], [8.52208, 47.414965], [8.522162, 47.414937], [8.522246, 47.414913], [8.522521, 47.414845], [8.522577, 47.414828], [8.522632, 47.414809], [8.522684, 47.414788], [8.522814, 47.414736], [8.522944, 47.414684], [8.523073, 47.41463], [8.523086, 47.414626], [8.523099, 47.414622], [8.523112, 47.414618], [8.523125, 47.414616], [8.523137, 47.414614], [8.52315, 47.414611], [8.523161, 47.414607], [8.52437, 47.41414]]], "type": "MultiLineString"}, "id": "4908", "properties": {}, "type": "Feature"}, {"bbox": [8.543528, 47.375936, 8.54403, 47.37596], "geometry": {"coordinates": [[[8.54403, 47.37596], [8.544026, 47.375956], [8.544021, 47.375953], [8.544016, 47.375949], [8.54401, 47.375946], [8.544004, 47.375944], [8.543998, 47.375941], [8.543991, 47.375939], [8.543745, 47.375936], [8.543528, 47.375942]]], "type": "MultiLineString"}, "id": "4909", "properties": {}, "type": "Feature"}, {"bbox": [8.566632, 47.413287, 8.567563, 47.416283], "geometry": {"coordinates": [[[8.567563, 47.413287], [8.567472, 47.413481], [8.567392, 47.413677], [8.567322, 47.413875], [8.567313, 47.414028], [8.567306, 47.414182], [8.567302, 47.414335], [8.567288, 47.414462], [8.567258, 47.414588], [8.567213, 47.414712], [8.567153, 47.414832], [8.567078, 47.414949], [8.566987, 47.415067], [8.566897, 47.415186], [8.566808, 47.415305], [8.566747, 47.415402], [8.566699, 47.415501], [8.566664, 47.415603], [8.566641, 47.415707], [8.566632, 47.415812], [8.566636, 47.415917], [8.566654, 47.416011], [8.566683, 47.416104], [8.566724, 47.416195], [8.566776, 47.416283]]], "type": "MultiLineString"}, "id": "4910", "properties": {}, "type": "Feature"}, {"bbox": [8.561028, 47.414226, 8.561068, 47.414799], "geometry": {"coordinates": [[[8.561053, 47.414226], [8.561028, 47.414694], [8.561068, 47.414799]]], "type": "MultiLineString"}, "id": "4911", "properties": {}, "type": "Feature"}, {"bbox": [8.486039, 47.37741, 8.486906, 47.378345], "geometry": {"coordinates": [[[8.486906, 47.37741], [8.486824, 47.377555], [8.486731, 47.377697], [8.486624, 47.377835], [8.486567, 47.37789], [8.486506, 47.377945], [8.486441, 47.377997], [8.486306, 47.378112], [8.486171, 47.378228], [8.486039, 47.378345]]], "type": "MultiLineString"}, "id": "4912", "properties": {}, "type": "Feature"}, {"bbox": [8.542871, 47.392262, 8.54328, 47.392662], "geometry": {"coordinates": [[[8.54328, 47.392662], [8.542871, 47.392262]]], "type": "MultiLineString"}, "id": "4913", "properties": {}, "type": "Feature"}, {"bbox": [8.553292, 47.399202, 8.553571, 47.399567], "geometry": {"coordinates": [[[8.553292, 47.399202], [8.553299, 47.399212], [8.553299, 47.399215], [8.553297, 47.399216], [8.55347, 47.399447], [8.553571, 47.399567]]], "type": "MultiLineString"}, "id": "4914", "properties": {}, "type": "Feature"}, {"bbox": [8.472942, 47.376658, 8.473998, 47.377293], "geometry": {"coordinates": [[[8.473998, 47.377293], [8.473771, 47.37715], [8.47354, 47.377008], [8.473308, 47.376869], [8.473186, 47.376798], [8.473065, 47.376728], [8.472942, 47.376658]]], "type": "MultiLineString"}, "id": "4916", "properties": {}, "type": "Feature"}, {"bbox": [8.486203, 47.407795, 8.488437, 47.408606], "geometry": {"coordinates": [[[8.486203, 47.408605], [8.486254, 47.408606], [8.486304, 47.408604], [8.486355, 47.408599], [8.486404, 47.408591], [8.486453, 47.40858], [8.4865, 47.408567], [8.486542, 47.408552], [8.486582, 47.408535], [8.48662, 47.408515], [8.486655, 47.408493], [8.486687, 47.408469], [8.486754, 47.408436], [8.486825, 47.408406], [8.486899, 47.40838], [8.488437, 47.407795]]], "type": "MultiLineString"}, "id": "4917", "properties": {}, "type": "Feature"}, {"bbox": [8.573132, 47.368482, 8.573735, 47.369514], "geometry": {"coordinates": [[[8.573735, 47.368482], [8.573683, 47.368539], [8.573633, 47.368597], [8.573587, 47.368656], [8.573565, 47.368698], [8.573543, 47.36874], [8.573524, 47.368783], [8.573489, 47.368812], [8.573456, 47.368841], [8.573422, 47.36887], [8.573419, 47.368895], [8.573418, 47.368919], [8.573419, 47.368943], [8.573396, 47.36896], [8.573372, 47.368976], [8.573347, 47.368992], [8.573344, 47.369006], [8.573343, 47.36902], [8.573343, 47.369034], [8.573345, 47.369047], [8.573328, 47.36907], [8.573309, 47.369092], [8.573288, 47.369113], [8.573281, 47.369136], [8.573276, 47.369159], [8.573271, 47.369182], [8.573274, 47.369209], [8.573276, 47.369236], [8.573278, 47.369262], [8.573259, 47.36929], [8.573237, 47.369316], [8.573214, 47.369342], [8.573196, 47.36939], [8.573177, 47.369437], [8.573158, 47.369484], [8.57315, 47.369494], [8.573142, 47.369505], [8.573132, 47.369514]]], "type": "MultiLineString"}, "id": "4918", "properties": {}, "type": "Feature"}, {"bbox": [8.547917, 47.399061, 8.553571, 47.399567], "geometry": {"coordinates": [[[8.553571, 47.399567], [8.553383, 47.399472], [8.553238, 47.399381], [8.553086, 47.399293], [8.552929, 47.399211], [8.552848, 47.399176], [8.552763, 47.399146], [8.552674, 47.39912], [8.552582, 47.3991], [8.552488, 47.399086], [8.552392, 47.399077], [8.551236, 47.399061], [8.550903, 47.399145], [8.550835, 47.399208], [8.550768, 47.399271], [8.5507, 47.399333], [8.550668, 47.399357], [8.550632, 47.399379], [8.550594, 47.399398], [8.550553, 47.399415], [8.55051, 47.39943], [8.550466, 47.399442], [8.55042, 47.399451], [8.550373, 47.399458], [8.550326, 47.399462], [8.550278, 47.399463], [8.55023, 47.399461], [8.550183, 47.399456], [8.550136, 47.399448], [8.550091, 47.399438], [8.550022, 47.399423], [8.549954, 47.399408], [8.549885, 47.399392], [8.549197, 47.399554], [8.549158, 47.399559], [8.549118, 47.399562], [8.549079, 47.399562], [8.549039, 47.399561], [8.549, 47.399557], [8.548962, 47.39955], [8.548924, 47.399541], [8.548888, 47.399531], [8.548853, 47.399518], [8.548821, 47.399503], [8.54879, 47.399486], [8.548761, 47.399467], [8.548735, 47.399447], [8.548712, 47.399425], [8.548691, 47.399402], [8.548674, 47.399378], [8.548656, 47.399362], [8.548636, 47.399347], [8.548615, 47.399333], [8.548592, 47.39932], [8.548567, 47.399309], [8.548541, 47.399299], [8.548514, 47.399291], [8.548017, 47.399161], [8.547917, 47.39922]]], "type": "MultiLineString"}, "id": "4919", "properties": {}, "type": "Feature"}, {"bbox": [8.543225, 47.384011, 8.543693, 47.384614], "geometry": {"coordinates": [[[8.543225, 47.384011], [8.543289, 47.384059], [8.543454, 47.3841], [8.543507, 47.38415], [8.543693, 47.384614]]], "type": "MultiLineString"}, "id": "4921", "properties": {}, "type": "Feature"}, {"bbox": [8.493987, 47.388574, 8.494281, 47.389249], "geometry": {"coordinates": [[[8.494281, 47.389249], [8.494267, 47.389233], [8.494256, 47.389217], [8.494246, 47.3892], [8.494239, 47.389183], [8.494157, 47.38898], [8.494073, 47.388777], [8.493987, 47.388574]]], "type": "MultiLineString"}, "id": "4922", "properties": {}, "type": "Feature"}, {"bbox": [8.474218, 47.38127, 8.476063, 47.382082], "geometry": {"coordinates": [[[8.476063, 47.382082], [8.475096, 47.381452], [8.475072, 47.381434], [8.475046, 47.381418], [8.475018, 47.381403], [8.474988, 47.38139], [8.474956, 47.38138], [8.47471, 47.381345], [8.474464, 47.381308], [8.474218, 47.38127]]], "type": "MultiLineString"}, "id": "4923", "properties": {}, "type": "Feature"}, {"bbox": [8.53857, 47.369488, 8.539393, 47.370092], "geometry": {"coordinates": [[[8.539393, 47.369604], [8.539349, 47.369616], [8.539304, 47.369625], [8.539258, 47.369632], [8.539211, 47.369635], [8.539164, 47.369636], [8.539117, 47.369634], [8.53907, 47.369629], [8.539024, 47.369621], [8.53898, 47.36961], [8.538844, 47.369572], [8.53871, 47.369531], [8.538578, 47.369488], [8.538573, 47.369507], [8.53857, 47.369526], [8.53857, 47.369545], [8.538572, 47.369564], [8.538576, 47.369583], [8.538583, 47.369601], [8.538592, 47.369619], [8.538604, 47.369636], [8.538617, 47.369653], [8.538633, 47.369669], [8.538651, 47.369684], [8.53867, 47.369698], [8.538691, 47.36971], [8.538714, 47.369721], [8.538738, 47.369731], [8.538763, 47.36974], [8.539007, 47.369811], [8.539029, 47.369819], [8.53905, 47.369829], [8.539069, 47.36984], [8.539087, 47.369852], [8.539104, 47.369865], [8.539119, 47.369879], [8.539131, 47.369893], [8.539142, 47.369909], [8.539152, 47.369925], [8.539158, 47.369941], [8.539163, 47.369958], [8.539191, 47.370092]]], "type": "MultiLineString"}, "id": "4935", "properties": {}, "type": "Feature"}, {"bbox": [8.541432, 47.412507, 8.541977, 47.413178], "geometry": {"coordinates": [[[8.541977, 47.412507], [8.541432, 47.413178]]], "type": "MultiLineString"}, "id": "4937", "properties": {}, "type": "Feature"}, {"bbox": [8.546606, 47.427988, 8.550061, 47.430553], "geometry": {"coordinates": [[[8.550061, 47.427988], [8.549864, 47.428038], [8.549122, 47.428124], [8.5491, 47.428128], [8.549078, 47.428134], [8.549058, 47.42814], [8.549038, 47.428148], [8.54902, 47.428158], [8.549003, 47.428168], [8.548987, 47.428179], [8.548964, 47.428204], [8.548944, 47.428231], [8.548927, 47.428258], [8.548914, 47.428287], [8.548908, 47.428623], [8.54891, 47.428631], [8.54891, 47.428639], [8.548909, 47.428647], [8.548907, 47.428655], [8.548905, 47.428663], [8.548901, 47.428671], [8.548896, 47.428678], [8.54889, 47.428685], [8.548884, 47.428692], [8.548877, 47.428698], [8.548868, 47.428704], [8.548859, 47.428709], [8.54885, 47.428714], [8.54884, 47.428718], [8.548829, 47.428722], [8.548818, 47.428725], [8.548807, 47.428727], [8.548795, 47.428728], [8.548784, 47.428729], [8.548772, 47.42873], [8.54876, 47.428729], [8.548711, 47.428719], [8.548662, 47.428706], [8.548615, 47.428692], [8.548403, 47.428576], [8.548396, 47.428573], [8.548387, 47.42857], [8.548379, 47.428568], [8.54837, 47.428567], [8.548361, 47.428565], [8.548352, 47.428565], [8.548343, 47.428565], [8.548334, 47.428566], [8.548325, 47.428567], [8.548316, 47.428569], [8.548308, 47.428571], [8.5483, 47.428574], [8.548292, 47.428577], [8.548285, 47.42858], [8.548278, 47.428585], [8.548272, 47.428589], [8.548266, 47.428594], [8.548261, 47.428599], [8.548257, 47.428604], [8.548253, 47.42861], [8.548079, 47.428827], [8.548071, 47.428838], [8.548062, 47.428849], [8.548052, 47.42886], [8.54804, 47.428869], [8.548027, 47.428878], [8.548013, 47.428887], [8.547997, 47.428894], [8.547981, 47.4289], [8.547897, 47.428929], [8.546643, 47.429451], [8.546638, 47.429452], [8.546633, 47.429454], [8.546629, 47.429457], [8.546625, 47.429459], [8.546621, 47.429462], [8.546617, 47.429465], [8.546614, 47.429468], [8.546612, 47.429472], [8.54661, 47.429475], [8.546608, 47.429479], [8.546607, 47.429482], [8.546606, 47.429486], [8.546606, 47.42949], [8.546606, 47.429494], [8.546607, 47.429498], [8.546608, 47.429501], [8.54661, 47.429505], [8.546613, 47.429508], [8.546615, 47.429512], [8.54683, 47.429749], [8.547533, 47.430525], [8.547541, 47.430534], [8.547547, 47.430543], [8.547553, 47.430553]]], "type": "MultiLineString"}, "id": "4938", "properties": {}, "type": "Feature"}, {"bbox": [8.511992, 47.426204, 8.514711, 47.428102], "geometry": {"coordinates": [[[8.514711, 47.426204], [8.513659, 47.427086], [8.513578, 47.427172], [8.513509, 47.427264], [8.513453, 47.427359], [8.513412, 47.427458], [8.51332, 47.427702], [8.513262, 47.427786], [8.513159, 47.427846], [8.51303, 47.427874], [8.512349, 47.427951], [8.512324, 47.427952], [8.512298, 47.42795], [8.512272, 47.427947], [8.512247, 47.427943], [8.512223, 47.427936], [8.51221, 47.427932], [8.512197, 47.427928], [8.512183, 47.427926], [8.512169, 47.427924], [8.512155, 47.427923], [8.51214, 47.427923], [8.512126, 47.427923], [8.512112, 47.427925], [8.512098, 47.427927], [8.512084, 47.42793], [8.512071, 47.427934], [8.512058, 47.427939], [8.512044, 47.42795], [8.512032, 47.427962], [8.512021, 47.427974], [8.512011, 47.427987], [8.512004, 47.428001], [8.511998, 47.428015], [8.511994, 47.428029], [8.511992, 47.428044], [8.511992, 47.428059], [8.511994, 47.428073], [8.511997, 47.428087], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "4939", "properties": {}, "type": "Feature"}, {"bbox": [8.522889, 47.393232, 8.524424, 47.394237], "geometry": {"coordinates": [[[8.524424, 47.393232], [8.52342, 47.393477], [8.523354, 47.393492], [8.52329, 47.393511], [8.523229, 47.393534], [8.523171, 47.393561], [8.523117, 47.393592], [8.522947, 47.393714], [8.522934, 47.393724], [8.522923, 47.393734], [8.522914, 47.393745], [8.522906, 47.393757], [8.522899, 47.393769], [8.522894, 47.393782], [8.522891, 47.393795], [8.522889, 47.393808], [8.522889, 47.393821], [8.522891, 47.393833], [8.522894, 47.393846], [8.522899, 47.393859], [8.522905, 47.393871], [8.523043, 47.394102], [8.523151, 47.394237]]], "type": "MultiLineString"}, "id": "4940", "properties": {}, "type": "Feature"}, {"bbox": [8.52313, 47.362935, 8.528831, 47.368682], "geometry": {"coordinates": [[[8.528831, 47.368682], [8.528512, 47.368651], [8.528256, 47.368483], [8.528125, 47.368479], [8.528047, 47.368378], [8.526104, 47.367111], [8.524948, 47.366343], [8.52487, 47.366273], [8.524794, 47.366202], [8.52472, 47.366129], [8.524358, 47.365792], [8.524036, 47.365435], [8.523758, 47.365063], [8.523524, 47.364676], [8.523336, 47.364278], [8.523236, 47.364141], [8.523199, 47.363932], [8.52313, 47.363536], [8.523174, 47.363412], [8.523146, 47.362935]]], "type": "MultiLineString"}, "id": "4941", "properties": {}, "type": "Feature"}, {"bbox": [8.499862, 47.421367, 8.507494, 47.423467], "geometry": {"coordinates": [[[8.507494, 47.421367], [8.506025, 47.421764], [8.504658, 47.422133], [8.503347, 47.422487], [8.503144, 47.422541], [8.503122, 47.422547], [8.503101, 47.422555], [8.50308, 47.422564], [8.503061, 47.422574], [8.503044, 47.422586], [8.503028, 47.422598], [8.503015, 47.422609], [8.503, 47.42262], [8.502984, 47.422629], [8.502967, 47.422638], [8.502949, 47.422645], [8.50293, 47.422652], [8.502911, 47.422657], [8.502048, 47.422887], [8.50008, 47.423409], [8.499862, 47.423467]]], "type": "MultiLineString"}, "id": "4942", "properties": {}, "type": "Feature"}, {"bbox": [8.574171, 47.358327, 8.576178, 47.35877], "geometry": {"coordinates": [[[8.574171, 47.358327], [8.57423, 47.358457], [8.574238, 47.358472], [8.574248, 47.358487], [8.57426, 47.358501], [8.574273, 47.358515], [8.574288, 47.358528], [8.574304, 47.358539], [8.574322, 47.35855], [8.574338, 47.358559], [8.574355, 47.358568], [8.574372, 47.358577], [8.574372, 47.358577], [8.574372, 47.358577], [8.574418, 47.358601], [8.574462, 47.358626], [8.574505, 47.358652], [8.574507, 47.358654], [8.57451, 47.358656], [8.574512, 47.358658], [8.574514, 47.35866], [8.574983, 47.358638], [8.575178, 47.358706], [8.575202, 47.358713], [8.575442, 47.358766], [8.57549, 47.358669], [8.575637, 47.358674], [8.575938, 47.358729], [8.576078, 47.35877], [8.576178, 47.358764]]], "type": "MultiLineString"}, "id": "4943", "properties": {}, "type": "Feature"}, {"bbox": [8.529267, 47.362251, 8.531046, 47.36241], "geometry": {"coordinates": [[[8.531046, 47.36241], [8.530484, 47.362384], [8.53046, 47.362384], [8.530437, 47.362381], [8.530413, 47.362378], [8.530391, 47.362373], [8.530369, 47.362366], [8.530348, 47.362359], [8.530328, 47.36235], [8.53031, 47.36234], [8.530292, 47.362329], [8.530272, 47.362315], [8.53025, 47.362302], [8.530226, 47.36229], [8.530201, 47.36228], [8.530174, 47.362271], [8.530147, 47.362264], [8.530119, 47.362258], [8.530091, 47.362254], [8.530062, 47.362252], [8.530032, 47.362251], [8.529267, 47.362261]]], "type": "MultiLineString"}, "id": "4944", "properties": {}, "type": "Feature"}, {"bbox": [8.539535, 47.373037, 8.541692, 47.373425], "geometry": {"coordinates": [[[8.541692, 47.373037], [8.541653, 47.373079], [8.54161, 47.373119], [8.541561, 47.373156], [8.541508, 47.373191], [8.541451, 47.373222], [8.54139, 47.373249], [8.540925, 47.373412], [8.540759, 47.373425], [8.540725, 47.373382], [8.540604, 47.373383], [8.540484, 47.373377], [8.540365, 47.373364], [8.540248, 47.373343], [8.540058, 47.373286], [8.539875, 47.373219], [8.5397, 47.373143], [8.539535, 47.373058]]], "type": "MultiLineString"}, "id": "4945", "properties": {}, "type": "Feature"}, {"bbox": [8.542931, 47.371181, 8.543946, 47.371519], "geometry": {"coordinates": [[[8.542931, 47.371181], [8.543104, 47.371213], [8.543608, 47.371356], [8.543936, 47.371479], [8.543946, 47.371519]]], "type": "MultiLineString"}, "id": "4947", "properties": {}, "type": "Feature"}, {"bbox": [8.505073, 47.323611, 8.507222, 47.32515], "geometry": {"coordinates": [[[8.507222, 47.32473], [8.506007, 47.325103], [8.505968, 47.325118], [8.505927, 47.325129], [8.505885, 47.325138], [8.505842, 47.325145], [8.505798, 47.325149], [8.505754, 47.32515], [8.50571, 47.325149], [8.505666, 47.325145], [8.505623, 47.325138], [8.505581, 47.325129], [8.50554, 47.325117], [8.505501, 47.325103], [8.505465, 47.325087], [8.505413, 47.325067], [8.505365, 47.325044], [8.505319, 47.325018], [8.505276, 47.32499], [8.505237, 47.32496], [8.5052, 47.324929], [8.505168, 47.324895], [8.505139, 47.32486], [8.505116, 47.324823], [8.505098, 47.324785], [8.505084, 47.324746], [8.505076, 47.324706], [8.505073, 47.324666], [8.505076, 47.324626], [8.505084, 47.324586], [8.505319, 47.323696], [8.505364, 47.323611]]], "type": "MultiLineString"}, "id": "4948", "properties": {}, "type": "Feature"}, {"bbox": [8.523017, 47.416403, 8.525443, 47.417024], "geometry": {"coordinates": [[[8.525414, 47.416403], [8.525443, 47.416592], [8.525194, 47.416899], [8.524386, 47.416942], [8.52433, 47.416944], [8.524308, 47.416948], [8.524285, 47.416952], [8.524262, 47.416955], [8.524239, 47.416956], [8.524072, 47.416968], [8.523334, 47.417013], [8.523288, 47.417016], [8.523243, 47.417016], [8.523198, 47.417014], [8.523168, 47.417011], [8.523137, 47.41701], [8.523107, 47.41701], [8.523076, 47.417013], [8.523046, 47.417017], [8.523017, 47.417024]]], "type": "MultiLineString"}, "id": "4949", "properties": {}, "type": "Feature"}, {"bbox": [8.587078, 47.370183, 8.588254, 47.372419], "geometry": {"coordinates": [[[8.587078, 47.372419], [8.587159, 47.372207], [8.587286, 47.37193], [8.587381, 47.371743], [8.587494, 47.37156], [8.587622, 47.371383], [8.587817, 47.371135], [8.587941, 47.370958], [8.588041, 47.370775], [8.588118, 47.370587], [8.588254, 47.370183]]], "type": "MultiLineString"}, "id": "4950", "properties": {}, "type": "Feature"}, {"bbox": [8.478632, 47.37073, 8.484565, 47.372591], "geometry": {"coordinates": [[[8.478678, 47.372591], [8.478665, 47.372571], [8.478651, 47.372552], [8.478635, 47.372533], [8.478633, 47.372529], [8.478632, 47.372525], [8.478632, 47.37252], [8.478632, 47.372516], [8.478632, 47.372512], [8.478633, 47.372507], [8.478635, 47.372503], [8.478637, 47.372499], [8.47864, 47.372495], [8.478643, 47.372491], [8.478647, 47.372487], [8.478651, 47.372484], [8.478656, 47.372481], [8.478661, 47.372478], [8.478666, 47.372476], [8.478672, 47.372473], [8.478678, 47.372472], [8.478684, 47.37247], [8.47869, 47.372469], [8.478697, 47.372468], [8.479354, 47.372419], [8.479435, 47.372409], [8.479515, 47.372394], [8.479592, 47.372375], [8.479667, 47.372351], [8.479739, 47.372323], [8.479807, 47.372292], [8.479871, 47.372256], [8.479931, 47.372217], [8.479985, 47.372175], [8.480034, 47.37213], [8.480463, 47.371631], [8.480587, 47.371496], [8.48072, 47.371366], [8.480861, 47.37124], [8.480895, 47.37123], [8.48093, 47.371222], [8.480965, 47.371216], [8.481002, 47.371213], [8.481208, 47.371195], [8.481328, 47.371201], [8.481446, 47.371214], [8.481562, 47.371235], [8.481645, 47.371246], [8.481729, 47.371251], [8.481813, 47.371251], [8.482731, 47.37122], [8.482861, 47.371209], [8.482989, 47.37119], [8.483114, 47.371163], [8.483235, 47.371129], [8.483377, 47.371077], [8.483522, 47.371029], [8.483668, 47.370983], [8.484399, 47.37077], [8.484454, 47.370755], [8.484509, 47.370742], [8.484565, 47.37073]]], "type": "MultiLineString"}, "id": "4955", "properties": {}, "type": "Feature"}, {"bbox": [8.474847, 47.374155, 8.475476, 47.375657], "geometry": {"coordinates": [[[8.475476, 47.374155], [8.475476, 47.374185], [8.475473, 47.374215], [8.475468, 47.374245], [8.475407, 47.374449], [8.475372, 47.374524], [8.475329, 47.374596], [8.475279, 47.374666], [8.475175, 47.374772], [8.475073, 47.374879], [8.474973, 47.374987], [8.474929, 47.375047], [8.474887, 47.375107], [8.474848, 47.375169], [8.474847, 47.375183], [8.474848, 47.375196], [8.474851, 47.37521], [8.474855, 47.375223], [8.474862, 47.375236], [8.474869, 47.375249], [8.474879, 47.375261], [8.474969, 47.375375], [8.47506, 47.37549], [8.475151, 47.375604], [8.475169, 47.375657]]], "type": "MultiLineString"}, "id": "4956", "properties": {}, "type": "Feature"}, {"bbox": [8.514351, 47.332492, 8.515712, 47.33278], "geometry": {"coordinates": [[[8.514351, 47.332671], [8.514412, 47.332659], [8.514552, 47.332633], [8.514569, 47.33263], [8.51461, 47.332627], [8.514645, 47.332627], [8.514772, 47.332625], [8.514784, 47.332597], [8.514827, 47.332573], [8.514928, 47.332561], [8.515033, 47.332547], [8.515429, 47.332495], [8.515445, 47.332493], [8.515461, 47.332492], [8.515478, 47.332492], [8.515494, 47.332493], [8.51551, 47.332496], [8.515525, 47.332499], [8.51554, 47.332503], [8.515555, 47.332508], [8.515569, 47.332513], [8.515582, 47.33252], [8.515594, 47.332527], [8.515605, 47.332535], [8.515712, 47.33278]]], "type": "MultiLineString"}, "id": "4957", "properties": {}, "type": "Feature"}, {"bbox": [8.578603, 47.399409, 8.582137, 47.401468], "geometry": {"coordinates": [[[8.578603, 47.401468], [8.578852, 47.401201], [8.579061, 47.40108], [8.579363, 47.400903], [8.579641, 47.400759], [8.579957, 47.400643], [8.580328, 47.400478], [8.580824, 47.400193], [8.581361, 47.399852], [8.581915, 47.399547], [8.582137, 47.399409]]], "type": "MultiLineString"}, "id": "4958", "properties": {}, "type": "Feature"}, {"bbox": [8.545243, 47.365316, 8.545761, 47.366311], "geometry": {"coordinates": [[[8.545761, 47.365316], [8.545472, 47.365806], [8.545271, 47.366147], [8.545261, 47.366165], [8.545253, 47.366184], [8.545247, 47.366203], [8.545243, 47.366225], [8.545243, 47.366247], [8.545246, 47.366268], [8.545252, 47.36629], [8.545261, 47.366311]]], "type": "MultiLineString"}, "id": "4963", "properties": {}, "type": "Feature"}, {"bbox": [8.544462, 47.368154, 8.545951, 47.369628], "geometry": {"coordinates": [[[8.545951, 47.368154], [8.54592, 47.368195], [8.545754, 47.368452], [8.545602, 47.368628], [8.545414, 47.368811], [8.545304, 47.368891], [8.544933, 47.369139], [8.544705, 47.36933], [8.544673, 47.369365], [8.544462, 47.369628]]], "type": "MultiLineString"}, "id": "4972", "properties": {}, "type": "Feature"}, {"bbox": [8.523146, 47.361038, 8.525091, 47.362935], "geometry": {"coordinates": [[[8.523146, 47.362935], [8.523218, 47.362915], [8.523269, 47.362868], [8.523342, 47.362854], [8.523352, 47.36285], [8.523361, 47.362846], [8.52337, 47.362841], [8.523378, 47.362836], [8.523386, 47.36283], [8.523392, 47.362824], [8.523398, 47.362817], [8.523404, 47.36281], [8.523408, 47.362803], [8.523411, 47.362796], [8.523413, 47.362788], [8.523441, 47.36266], [8.523472, 47.362589], [8.523488, 47.362528], [8.523509, 47.362473], [8.523535, 47.362434], [8.52359, 47.362386], [8.523658, 47.362349], [8.523738, 47.362321], [8.523768, 47.362317], [8.523947, 47.362333], [8.523956, 47.362333], [8.523965, 47.362333], [8.523973, 47.362333], [8.523982, 47.362332], [8.523991, 47.36233], [8.523999, 47.362328], [8.524007, 47.362326], [8.524015, 47.362323], [8.524022, 47.36232], [8.524029, 47.362316], [8.524076, 47.362288], [8.524107, 47.362264], [8.524124, 47.362243], [8.524139, 47.362222], [8.524151, 47.3622], [8.524182, 47.362138], [8.52421, 47.362077], [8.524235, 47.362014], [8.524309, 47.361771], [8.524365, 47.361639], [8.524389, 47.361604], [8.524489, 47.361487], [8.524536, 47.361434], [8.524586, 47.361382], [8.524638, 47.361332], [8.524705, 47.361268], [8.524727, 47.361247], [8.52478, 47.361205], [8.524802, 47.361191], [8.524888, 47.361145], [8.524919, 47.361134], [8.524944, 47.36112], [8.524974, 47.361103], [8.525091, 47.361038]]], "type": "MultiLineString"}, "id": "4974", "properties": {}, "type": "Feature"}, {"bbox": [8.486363, 47.381555, 8.487665, 47.382034], "geometry": {"coordinates": [[[8.487665, 47.381555], [8.487608, 47.38156], [8.486976, 47.381788], [8.486363, 47.382034]]], "type": "MultiLineString"}, "id": "4976", "properties": {}, "type": "Feature"}, {"bbox": [8.512856, 47.33633, 8.514263, 47.340599], "geometry": {"coordinates": [[[8.514263, 47.33633], [8.514197, 47.336369], [8.514137, 47.336412], [8.514081, 47.336458], [8.514032, 47.336507], [8.513989, 47.336559], [8.513953, 47.336613], [8.513923, 47.336669], [8.513901, 47.336726], [8.513885, 47.336785], [8.513877, 47.336844], [8.513877, 47.336903], [8.513914, 47.337165], [8.513988, 47.3376], [8.51403, 47.337811], [8.514032, 47.337818], [8.514045, 47.337879], [8.51405, 47.337942], [8.514046, 47.338004], [8.514034, 47.338066], [8.514013, 47.338126], [8.513985, 47.338185], [8.513948, 47.338243], [8.513904, 47.338297], [8.513845, 47.338394], [8.513798, 47.338494], [8.513765, 47.338596], [8.513746, 47.3387], [8.513741, 47.338804], [8.513749, 47.338909], [8.513601, 47.339106], [8.51356, 47.339191], [8.513484, 47.339348], [8.513313, 47.339687], [8.513101, 47.340114], [8.512902, 47.340507], [8.512856, 47.340599]]], "type": "MultiLineString"}, "id": "4978", "properties": {}, "type": "Feature"}, {"bbox": [8.4849, 47.417173, 8.485107, 47.4193], "geometry": {"coordinates": [[[8.4849, 47.417173], [8.484916, 47.41749], [8.484915, 47.417932], [8.484934, 47.418202], [8.484953, 47.418335], [8.485016, 47.418773], [8.485107, 47.4193]]], "type": "MultiLineString"}, "id": "4982", "properties": {}, "type": "Feature"}, {"bbox": [8.549859, 47.414813, 8.553916, 47.419436], "geometry": {"coordinates": [[[8.549859, 47.414813], [8.55005, 47.414995], [8.550943, 47.415835], [8.551092, 47.415976], [8.551223, 47.416125], [8.551335, 47.416282], [8.551427, 47.416444], [8.551472, 47.416587], [8.551534, 47.416727], [8.551614, 47.416863], [8.551709, 47.416994], [8.551886, 47.417203], [8.552669, 47.418054], [8.553042, 47.418485], [8.553333, 47.418802], [8.553625, 47.419119], [8.553916, 47.419436]]], "type": "MultiLineString"}, "id": "4983", "properties": {}, "type": "Feature"}, {"bbox": [8.582944, 47.394918, 8.590498, 47.406379], "geometry": {"coordinates": [[[8.58888, 47.406379], [8.588937, 47.4062], [8.588964, 47.406114], [8.589255, 47.405511], [8.589506, 47.405014], [8.590162, 47.4037], [8.590498, 47.403035], [8.590491, 47.402985], [8.590484, 47.402935], [8.590424, 47.402851], [8.589626, 47.401583], [8.58929, 47.40103], [8.589117, 47.400788], [8.589028, 47.400617], [8.588953, 47.400507], [8.588806, 47.400397], [8.588737, 47.400291], [8.588695, 47.400244], [8.588627, 47.400184], [8.588482, 47.3999], [8.588475, 47.399845], [8.588529, 47.399811], [8.588507, 47.399707], [8.588493, 47.399628], [8.588418, 47.399511], [8.588161, 47.399269], [8.588013, 47.399142], [8.587849, 47.398935], [8.58785, 47.398823], [8.587891, 47.398707], [8.587888, 47.39861], [8.587914, 47.398433], [8.587856, 47.398301], [8.587746, 47.398198], [8.587666, 47.398099], [8.587572, 47.398058], [8.587418, 47.398042], [8.587252, 47.398016], [8.587051, 47.397973], [8.586844, 47.397914], [8.586727, 47.397846], [8.586564, 47.397848], [8.586357, 47.397819], [8.586187, 47.397798], [8.585942, 47.397705], [8.585885, 47.397684], [8.585764, 47.397628], [8.585421, 47.397456], [8.585362, 47.397424], [8.585294, 47.397387], [8.585173, 47.397334], [8.585068, 47.397293], [8.584848, 47.397181], [8.58469, 47.397086], [8.584553, 47.396982], [8.584495, 47.396935], [8.584408, 47.396863], [8.584147, 47.396654], [8.584013, 47.396538], [8.583962, 47.396489], [8.583912, 47.39644], [8.583864, 47.396389], [8.583598, 47.396115], [8.583552, 47.396064], [8.58349, 47.395987], [8.583438, 47.395928], [8.583378, 47.395872], [8.583311, 47.39582], [8.583098, 47.395668], [8.58307, 47.395647], [8.583044, 47.395623], [8.583022, 47.395598], [8.583003, 47.395572], [8.582987, 47.395545], [8.582975, 47.395517], [8.582967, 47.395489], [8.582962, 47.39546], [8.58296, 47.395431], [8.58296, 47.395431], [8.58295, 47.39516], [8.582944, 47.394918]]], "type": "MultiLineString"}, "id": "4986", "properties": {}, "type": "Feature"}, {"bbox": [8.538481, 47.377415, 8.539276, 47.377625], "geometry": {"coordinates": [[[8.538481, 47.377625], [8.539027, 47.377476], [8.539276, 47.377415]]], "type": "MultiLineString"}, "id": "4998", "properties": {}, "type": "Feature"}, {"bbox": [8.54005, 47.42582, 8.540834, 47.427231], "geometry": {"coordinates": [[[8.54005, 47.427231], [8.540087, 47.427147], [8.540226, 47.426968], [8.540256, 47.426962], [8.540286, 47.426954], [8.540314, 47.426944], [8.540341, 47.426932], [8.540366, 47.426918], [8.540417, 47.426854], [8.540458, 47.426787], [8.540491, 47.426718], [8.540517, 47.42664], [8.540533, 47.426561], [8.540538, 47.426481], [8.540543, 47.426426], [8.540548, 47.426372], [8.540553, 47.426318], [8.54057, 47.426267], [8.540586, 47.426217], [8.540603, 47.426166], [8.540628, 47.426118], [8.540655, 47.42607], [8.540684, 47.426023], [8.540732, 47.425955], [8.540782, 47.425887], [8.540834, 47.42582]]], "type": "MultiLineString"}, "id": "5005", "properties": {}, "type": "Feature"}, {"bbox": [8.609922, 47.35691, 8.617341, 47.358003], "geometry": {"coordinates": [[[8.609922, 47.35691], [8.609973, 47.356915], [8.610024, 47.356921], [8.610074, 47.356929], [8.61015, 47.356942], [8.610227, 47.356949], [8.610305, 47.356952], [8.610383, 47.35695], [8.61046, 47.356943], [8.610565, 47.356937], [8.610669, 47.356936], [8.610773, 47.356942], [8.610876, 47.356955], [8.610977, 47.356973], [8.611694, 47.357054], [8.61244, 47.357061], [8.613071, 47.357008], [8.613861, 47.35705], [8.615215, 47.357292], [8.615885, 47.357436], [8.616617, 47.357785], [8.616664, 47.357809], [8.616715, 47.35783], [8.616768, 47.357849], [8.616822, 47.357864], [8.616879, 47.357876], [8.617267, 47.357964], [8.617341, 47.358003]]], "type": "MultiLineString"}, "id": "5006", "properties": {}, "type": "Feature"}, {"bbox": [8.53678, 47.428013, 8.540578, 47.42884], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.536805, 47.428767], [8.536832, 47.428783], [8.53686, 47.428796], [8.536891, 47.428808], [8.536923, 47.428819], [8.536955, 47.428827], [8.536989, 47.428833], [8.537024, 47.428838], [8.537059, 47.42884], [8.537094, 47.42884], [8.538672, 47.428729], [8.538971, 47.428565], [8.539532, 47.42824], [8.53976, 47.428099], [8.539934, 47.428013], [8.540033, 47.428026], [8.540578, 47.428479]]], "type": "MultiLineString"}, "id": "5007", "properties": {}, "type": "Feature"}, {"bbox": [8.513466, 47.358367, 8.515424, 47.359344], "geometry": {"coordinates": [[[8.515424, 47.358367], [8.515378, 47.35843], [8.51536, 47.358454], [8.515189, 47.358717], [8.515178, 47.358736], [8.515164, 47.358755], [8.515148, 47.358773], [8.515129, 47.358789], [8.515108, 47.358805], [8.514703, 47.359047], [8.51469, 47.359058], [8.514123, 47.358946], [8.514106, 47.358993], [8.514101, 47.359006], [8.514093, 47.359019], [8.514084, 47.359032], [8.514074, 47.359044], [8.514062, 47.359055], [8.514048, 47.359066], [8.514033, 47.359076], [8.514018, 47.359084], [8.514, 47.359092], [8.513982, 47.359099], [8.513964, 47.359105], [8.513944, 47.359109], [8.513924, 47.359113], [8.513904, 47.359115], [8.513883, 47.359116], [8.513765, 47.359119], [8.513742, 47.359121], [8.51372, 47.359124], [8.513698, 47.359129], [8.513677, 47.359135], [8.513656, 47.359142], [8.513637, 47.35915], [8.513618, 47.35916], [8.513601, 47.35917], [8.513586, 47.359181], [8.513571, 47.359194], [8.513559, 47.359207], [8.513548, 47.359221], [8.513539, 47.359235], [8.513532, 47.35925], [8.513466, 47.359344]]], "type": "MultiLineString"}, "id": "5008", "properties": {}, "type": "Feature"}, {"bbox": [8.500483, 47.382708, 8.500719, 47.382734], "geometry": {"coordinates": [[[8.500719, 47.382734], [8.500715, 47.382732], [8.500693, 47.382725], [8.500671, 47.382719], [8.500648, 47.382714], [8.500625, 47.382711], [8.500601, 47.382709], [8.500577, 47.382708], [8.500553, 47.382709], [8.500529, 47.382711], [8.500506, 47.382715], [8.500483, 47.38272]]], "type": "MultiLineString"}, "id": "5014", "properties": {}, "type": "Feature"}, {"bbox": [8.558801, 47.409951, 8.5612, 47.410083], "geometry": {"coordinates": [[[8.558801, 47.409997], [8.559106, 47.409977], [8.559412, 47.409962], [8.559719, 47.409951], [8.559899, 47.409951], [8.560079, 47.409954], [8.56026, 47.409958], [8.560577, 47.409986], [8.560891, 47.410028], [8.5612, 47.410083]]], "type": "MultiLineString"}, "id": "5017", "properties": {}, "type": "Feature"}, {"bbox": [8.572889, 47.372592, 8.574065, 47.372719], "geometry": {"coordinates": [[[8.574065, 47.372719], [8.573959, 47.372671], [8.573845, 47.372631], [8.573727, 47.372598], [8.573642, 47.372592], [8.573556, 47.372592], [8.573471, 47.372598], [8.573387, 47.372608], [8.57322, 47.372635], [8.573054, 47.372664], [8.572889, 47.372696]]], "type": "MultiLineString"}, "id": "5018", "properties": {}, "type": "Feature"}, {"bbox": [8.505364, 47.322025, 8.507881, 47.323611], "geometry": {"coordinates": [[[8.505364, 47.323611], [8.50542, 47.323524], [8.50551, 47.323377], [8.505518, 47.323346], [8.505522, 47.323339], [8.505528, 47.323333], [8.505535, 47.323327], [8.505542, 47.323321], [8.50555, 47.323316], [8.505558, 47.323311], [8.505567, 47.323307], [8.505577, 47.323304], [8.505587, 47.3233], [8.505597, 47.323298], [8.505608, 47.323296], [8.505619, 47.323295], [8.50563, 47.323294], [8.505641, 47.323294], [8.505652, 47.323295], [8.505663, 47.323296], [8.505673, 47.323298], [8.505885, 47.323326], [8.505894, 47.323327], [8.505903, 47.323326], [8.505912, 47.323325], [8.505921, 47.323324], [8.50593, 47.323322], [8.505938, 47.32332], [8.505946, 47.323317], [8.505954, 47.323313], [8.505961, 47.323309], [8.505968, 47.323305], [8.505974, 47.3233], [8.50598, 47.323296], [8.505984, 47.32329], [8.505989, 47.323285], [8.505992, 47.323279], [8.505995, 47.323273], [8.506031, 47.323188], [8.50604, 47.323175], [8.506051, 47.323162], [8.506064, 47.32315], [8.506077, 47.323139], [8.506092, 47.323128], [8.506741, 47.322714], [8.507121, 47.322475], [8.507403, 47.322297], [8.507747, 47.322086], [8.507881, 47.322025]]], "type": "MultiLineString"}, "id": "5019", "properties": {}, "type": "Feature"}, {"bbox": [8.465374, 47.366404, 8.479649, 47.372591], "geometry": {"coordinates": [[[8.478678, 47.372591], [8.478586, 47.372496], [8.478523, 47.372427], [8.478467, 47.372354], [8.478418, 47.37228], [8.478406, 47.372255], [8.478397, 47.372229], [8.478392, 47.372204], [8.478389, 47.372177], [8.47839, 47.372151], [8.478394, 47.372125], [8.478401, 47.372099], [8.478411, 47.372074], [8.478425, 47.37205], [8.478441, 47.372026], [8.478633, 47.371852], [8.478816, 47.371673], [8.47899, 47.37149], [8.479194, 47.371057], [8.479172, 47.370716], [8.479242, 47.370556], [8.479284, 47.370505], [8.479332, 47.370457], [8.479387, 47.370412], [8.479447, 47.370371], [8.479512, 47.370333], [8.479582, 47.370299], [8.479649, 47.37019], [8.479532, 47.370009], [8.479492, 47.369848], [8.479402, 47.369661], [8.479292, 47.36955], [8.479237, 47.369495], [8.479142, 47.369424], [8.479136, 47.369385], [8.47912, 47.36937], [8.479106, 47.369354], [8.479094, 47.369338], [8.479084, 47.36932], [8.479077, 47.369303], [8.479072, 47.369284], [8.479069, 47.369266], [8.478864, 47.369331], [8.478629, 47.369417], [8.478551, 47.369443], [8.478469, 47.369463], [8.478385, 47.369479], [8.477262, 47.369651], [8.477232, 47.369654], [8.477202, 47.369656], [8.477171, 47.369656], [8.477141, 47.369655], [8.477111, 47.369652], [8.477081, 47.369647], [8.477052, 47.36964], [8.477024, 47.369631], [8.476997, 47.369621], [8.476694, 47.369497], [8.476644, 47.369478], [8.476593, 47.369463], [8.476539, 47.36945], [8.476484, 47.369441], [8.476429, 47.369435], [8.476372, 47.369433], [8.476316, 47.369433], [8.47626, 47.369437], [8.476204, 47.369445], [8.47615, 47.369455], [8.476097, 47.369469], [8.476067, 47.369479], [8.476038, 47.369491], [8.476011, 47.369504], [8.475985, 47.369519], [8.475962, 47.369535], [8.475941, 47.369553], [8.475922, 47.369572], [8.475732, 47.369781], [8.47571, 47.369803], [8.475685, 47.369824], [8.475657, 47.369843], [8.475627, 47.369861], [8.475595, 47.369876], [8.475561, 47.36989], [8.475525, 47.369901], [8.475488, 47.36991], [8.47523, 47.369964], [8.474544, 47.370091], [8.474435, 47.37011], [8.474324, 47.370125], [8.474213, 47.370138], [8.473893, 47.370168], [8.473677, 47.370183], [8.473459, 47.370187], [8.473242, 47.370179], [8.472464, 47.370132], [8.472378, 47.370127], [8.472292, 47.370122], [8.472206, 47.370117], [8.471544, 47.370083], [8.471441, 47.370076], [8.471339, 47.370067], [8.471237, 47.370057], [8.471129, 47.370044], [8.471006, 47.370028], [8.470884, 47.370009], [8.470763, 47.369987], [8.470532, 47.369942], [8.470194, 47.369872], [8.470079, 47.369859], [8.47001, 47.369852], [8.469991, 47.369849], [8.469972, 47.369845], [8.469953, 47.36984], [8.469935, 47.369834], [8.469576, 47.369701], [8.4695, 47.369673], [8.469426, 47.369643], [8.469354, 47.369612], [8.468919, 47.369421], [8.46859, 47.369282], [8.468551, 47.369265], [8.468512, 47.369248], [8.468473, 47.36923], [8.468212, 47.36911], [8.467816, 47.368944], [8.467662, 47.36888], [8.467506, 47.368817], [8.46735, 47.368756], [8.467072, 47.36865], [8.466669, 47.368485], [8.46642, 47.368378], [8.466262, 47.368302], [8.466116, 47.368217], [8.465983, 47.368122], [8.465912, 47.368065], [8.465898, 47.368054], [8.465884, 47.368043], [8.465871, 47.368032], [8.465857, 47.368019], [8.465844, 47.368007], [8.46583, 47.367995], [8.465713, 47.367878], [8.465612, 47.367754], [8.465528, 47.367624], [8.46547, 47.367508], [8.465426, 47.36739], [8.465396, 47.36727], [8.465389, 47.367227], [8.465378, 47.367144], [8.465374, 47.36706], [8.465379, 47.366977], [8.465386, 47.366914], [8.465403, 47.366823], [8.465432, 47.366733], [8.465471, 47.366645], [8.465505, 47.366563], [8.465565, 47.366445], [8.465568, 47.36644], [8.465571, 47.366434], [8.465573, 47.366428], [8.465574, 47.366422], [8.465575, 47.366416], [8.465575, 47.36641], [8.465574, 47.366404]]], "type": "MultiLineString"}, "id": "5020", "properties": {}, "type": "Feature"}, {"bbox": [8.521616, 47.326989, 8.522785, 47.332071], "geometry": {"coordinates": [[[8.522785, 47.332071], [8.522711, 47.331719], [8.522707, 47.331449], [8.522708, 47.331193], [8.522699, 47.330965], [8.522673, 47.330735], [8.522664, 47.330648], [8.522654, 47.33056], [8.522635, 47.330385], [8.522602, 47.330121], [8.522609, 47.32986], [8.522573, 47.329602], [8.522538, 47.329339], [8.522503, 47.329079], [8.522448, 47.328809], [8.522414, 47.328724], [8.522382, 47.328642], [8.522348, 47.328557], [8.522307, 47.328422], [8.522266, 47.328291], [8.5222, 47.328007], [8.522127, 47.327728], [8.521991, 47.32744], [8.521886, 47.327296], [8.521786, 47.327159], [8.521705, 47.327049], [8.521616, 47.326989]]], "type": "MultiLineString"}, "id": "5022", "properties": {}, "type": "Feature"}, {"bbox": [8.504034, 47.43194, 8.510321, 47.433911], "geometry": {"coordinates": [[[8.504034, 47.433911], [8.504178, 47.433812], [8.504646, 47.433669], [8.505179, 47.433521], [8.506434, 47.433147], [8.510038, 47.432057], [8.510103, 47.432036], [8.510166, 47.432012], [8.510226, 47.431985], [8.510321, 47.43194]]], "type": "MultiLineString"}, "id": "5023", "properties": {}, "type": "Feature"}, {"bbox": [8.572901, 47.352413, 8.576318, 47.353017], "geometry": {"coordinates": [[[8.572901, 47.353017], [8.573002, 47.35288], [8.573005, 47.352877], [8.573008, 47.352874], [8.573011, 47.352871], [8.573015, 47.352868], [8.573019, 47.352866], [8.573024, 47.352864], [8.573028, 47.352862], [8.573033, 47.35286], [8.573039, 47.352859], [8.573044, 47.352858], [8.573049, 47.352857], [8.573055, 47.352857], [8.57306, 47.352857], [8.573066, 47.352857], [8.573071, 47.352857], [8.573117, 47.352865], [8.573638, 47.352954], [8.573737, 47.352965], [8.574073, 47.352992], [8.574091, 47.352993], [8.574109, 47.352993], [8.574127, 47.352992], [8.574145, 47.35299], [8.574163, 47.352987], [8.57418, 47.352983], [8.574196, 47.352977], [8.574212, 47.352971], [8.574227, 47.352964], [8.574241, 47.352955], [8.574334, 47.352893], [8.574417, 47.35281], [8.574485, 47.352731], [8.574555, 47.352676], [8.574647, 47.3526], [8.574747, 47.352484], [8.574855, 47.352418], [8.575, 47.352413], [8.575283, 47.352471], [8.575425, 47.352521], [8.575745, 47.35257], [8.576008, 47.35259], [8.576318, 47.352644]]], "type": "MultiLineString"}, "id": "5024", "properties": {}, "type": "Feature"}, {"bbox": [8.541474, 47.405894, 8.542079, 47.406704], "geometry": {"coordinates": [[[8.542079, 47.405894], [8.542025, 47.405977], [8.541807, 47.406298], [8.541664, 47.406467], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "5027", "properties": {}, "type": "Feature"}, {"bbox": [8.586839, 47.397659, 8.588245, 47.397856], "geometry": {"coordinates": [[[8.588245, 47.397659], [8.588072, 47.397763], [8.587465, 47.397856], [8.587201, 47.397797], [8.587011, 47.397788], [8.586921, 47.397783], [8.586893, 47.397794], [8.586839, 47.397758]]], "type": "MultiLineString"}, "id": "5028", "properties": {}, "type": "Feature"}, {"bbox": [8.516795, 47.36191, 8.517341, 47.363146], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517341, 47.363107], [8.517333, 47.363075], [8.517322, 47.363044], [8.517307, 47.363013], [8.517176, 47.362798], [8.517148, 47.362744], [8.517127, 47.362688], [8.517113, 47.362631], [8.517009, 47.362218], [8.51699, 47.362151], [8.516965, 47.362084], [8.516934, 47.362019], [8.516923, 47.362002], [8.51691, 47.361986], [8.516895, 47.36197], [8.516878, 47.361956], [8.516859, 47.361943], [8.516839, 47.36193], [8.516818, 47.361919], [8.516795, 47.36191]]], "type": "MultiLineString"}, "id": "5029", "properties": {}, "type": "Feature"}, {"bbox": [8.582507, 47.401995, 8.583285, 47.402173], "geometry": {"coordinates": [[[8.582507, 47.402173], [8.58268, 47.402133], [8.582803, 47.402103], [8.582852, 47.402092], [8.583036, 47.402075], [8.583165, 47.402032], [8.583285, 47.401995]]], "type": "MultiLineString"}, "id": "5030", "properties": {}, "type": "Feature"}, {"bbox": [8.49837, 47.427128, 8.505623, 47.428526], "geometry": {"coordinates": [[[8.505623, 47.428526], [8.505418, 47.428452], [8.505217, 47.428405], [8.505019, 47.428355], [8.504822, 47.428301], [8.504139, 47.428107], [8.504013, 47.428073], [8.503768, 47.428015], [8.503672, 47.427995], [8.503575, 47.427979], [8.503477, 47.427969], [8.503298, 47.427955], [8.503048, 47.427929], [8.502803, 47.427888], [8.502564, 47.427833], [8.502423, 47.427796], [8.502286, 47.427762], [8.502147, 47.42773], [8.502007, 47.427701], [8.501813, 47.427663], [8.501561, 47.42761], [8.501165, 47.427532], [8.500926, 47.427489], [8.500853, 47.427478], [8.500779, 47.427469], [8.500704, 47.427464], [8.500549, 47.427454], [8.500486, 47.42745], [8.500424, 47.427443], [8.500363, 47.427435], [8.49964, 47.427321], [8.499269, 47.427259], [8.498955, 47.427207], [8.498574, 47.427151], [8.49837, 47.427128]]], "type": "MultiLineString"}, "id": "5032", "properties": {}, "type": "Feature"}, {"bbox": [8.525158, 47.393814, 8.52646, 47.39416], "geometry": {"coordinates": [[[8.52646, 47.393814], [8.525986, 47.393945], [8.525906, 47.393966], [8.525824, 47.393987], [8.525743, 47.394006], [8.525405, 47.39409], [8.525158, 47.39416]]], "type": "MultiLineString"}, "id": "5034", "properties": {}, "type": "Feature"}, {"bbox": [8.521647, 47.325965, 8.524713, 47.329211], "geometry": {"coordinates": [[[8.524713, 47.329211], [8.524572, 47.329204], [8.524358, 47.329203], [8.524228, 47.329179], [8.524128, 47.329131], [8.52387, 47.328943], [8.523797, 47.32888], [8.523723, 47.328817], [8.523608, 47.328689], [8.523553, 47.32861], [8.523497, 47.328529], [8.523441, 47.328449], [8.523402, 47.328392], [8.523293, 47.328186], [8.523177, 47.327915], [8.522997, 47.327636], [8.52282, 47.327361], [8.522735, 47.327221], [8.52273, 47.327212], [8.522652, 47.327074], [8.522509, 47.326798], [8.522412, 47.326651], [8.522316, 47.326506], [8.522097, 47.326344], [8.521884, 47.326177], [8.521647, 47.325965]]], "type": "MultiLineString"}, "id": "5037", "properties": {}, "type": "Feature"}, {"bbox": [8.538481, 47.376864, 8.541137, 47.377625], "geometry": {"coordinates": [[[8.540511, 47.377135], [8.540973, 47.377043], [8.541084, 47.377147], [8.541137, 47.377139], [8.541084, 47.376967], [8.540292, 47.377088], [8.540187, 47.376942], [8.539949, 47.376989], [8.539849, 47.376864], [8.539883, 47.376994], [8.538786, 47.37727], [8.538899, 47.37746], [8.538481, 47.377625]]], "type": "MultiLineString"}, "id": "5038", "properties": {}, "type": "Feature"}, {"bbox": [8.517015, 47.398324, 8.51935, 47.399366], "geometry": {"coordinates": [[[8.51935, 47.399366], [8.519148, 47.399334], [8.518648, 47.39924], [8.517976, 47.399076], [8.517664, 47.399015], [8.517151, 47.398845], [8.517045, 47.398836], [8.517015, 47.398824], [8.5171, 47.398683], [8.517077, 47.398655], [8.517163, 47.398521], [8.517156, 47.398497], [8.517196, 47.398433], [8.517097, 47.398402], [8.517091, 47.398399], [8.517086, 47.398396], [8.517081, 47.398393], [8.517076, 47.398389], [8.517073, 47.398386], [8.517069, 47.398382], [8.517066, 47.398377], [8.517064, 47.398373], [8.517062, 47.398369], [8.517061, 47.398364], [8.51706, 47.398359], [8.51706, 47.398355], [8.517061, 47.39835], [8.517062, 47.398345], [8.517064, 47.398341], [8.517066, 47.398337], [8.517069, 47.398332], [8.517072, 47.398328], [8.517076, 47.398324]]], "type": "MultiLineString"}, "id": "5042", "properties": {}, "type": "Feature"}, {"bbox": [8.481386, 47.415751, 8.4831, 47.416792], "geometry": {"coordinates": [[[8.4831, 47.416792], [8.482055, 47.416736], [8.48205, 47.416736], [8.482045, 47.416735], [8.48204, 47.416734], [8.482036, 47.416733], [8.482031, 47.416732], [8.482027, 47.416731], [8.482022, 47.416729], [8.482018, 47.416727], [8.482015, 47.416724], [8.482011, 47.416722], [8.482008, 47.416719], [8.482006, 47.416716], [8.482003, 47.416713], [8.482001, 47.41671], [8.482, 47.416707], [8.481998, 47.416704], [8.481998, 47.4167], [8.481997, 47.416697], [8.481997, 47.416694], [8.481997, 47.416397], [8.481999, 47.416384], [8.482003, 47.416371], [8.482009, 47.416359], [8.482016, 47.416346], [8.482024, 47.416335], [8.482236, 47.416082], [8.482241, 47.416077], [8.482245, 47.416072], [8.482248, 47.416066], [8.48225, 47.416061], [8.482252, 47.416055], [8.482253, 47.41605], [8.482253, 47.416044], [8.482253, 47.416038], [8.482252, 47.416032], [8.48225, 47.416027], [8.482248, 47.416021], [8.482056, 47.415947], [8.481863, 47.415874], [8.48167, 47.415801], [8.481578, 47.415779], [8.481483, 47.415762], [8.481386, 47.415751]]], "type": "MultiLineString"}, "id": "5043", "properties": {}, "type": "Feature"}, {"bbox": [8.488413, 47.376258, 8.489319, 47.377661], "geometry": {"coordinates": [[[8.488413, 47.377661], [8.488434, 47.377641], [8.488453, 47.377619], [8.48847, 47.377596], [8.488495, 47.377552], [8.488518, 47.377507], [8.488537, 47.377461], [8.488564, 47.377388], [8.488593, 47.377316], [8.488621, 47.377243], [8.488623, 47.377238], [8.488626, 47.377233], [8.488629, 47.377228], [8.488633, 47.377223], [8.488637, 47.377219], [8.488642, 47.377214], [8.488647, 47.377211], [8.488653, 47.377207], [8.488659, 47.377204], [8.48873, 47.37718], [8.488803, 47.377158], [8.488877, 47.377139], [8.488886, 47.377136], [8.488895, 47.377132], [8.488903, 47.377129], [8.488911, 47.377124], [8.488918, 47.377119], [8.488925, 47.377114], [8.488931, 47.377109], [8.488936, 47.377103], [8.48894, 47.377097], [8.488977, 47.377022], [8.489015, 47.376948], [8.489053, 47.376874], [8.489072, 47.376848], [8.489108, 47.37681], [8.489116, 47.376799], [8.489124, 47.376789], [8.489131, 47.376777], [8.489149, 47.376748], [8.489165, 47.376719], [8.48918, 47.376689], [8.489185, 47.376678], [8.489189, 47.376667], [8.489191, 47.376655], [8.489192, 47.376644], [8.489191, 47.376632], [8.489188, 47.376621], [8.489171, 47.376581], [8.489151, 47.376542], [8.489131, 47.376503], [8.489128, 47.376494], [8.489126, 47.376486], [8.489125, 47.376477], [8.489125, 47.376468], [8.489133, 47.376442], [8.489138, 47.37643], [8.489145, 47.376419], [8.489154, 47.376408], [8.48919, 47.376376], [8.489225, 47.376343], [8.48926, 47.37631], [8.489319, 47.376258]]], "type": "MultiLineString"}, "id": "5046", "properties": {}, "type": "Feature"}, {"bbox": [8.481483, 47.372567, 8.483968, 47.373294], "geometry": {"coordinates": [[[8.483968, 47.372752], [8.483793, 47.372748], [8.483777, 47.372749], [8.483761, 47.372749], [8.483745, 47.372748], [8.483729, 47.372746], [8.483713, 47.372743], [8.483423, 47.372715], [8.483134, 47.372686], [8.482844, 47.372658], [8.482612, 47.372638], [8.482381, 47.372619], [8.482149, 47.372601], [8.482081, 47.372591], [8.482014, 47.37258], [8.481947, 47.372569], [8.481941, 47.372568], [8.481936, 47.372567], [8.48193, 47.372567], [8.481924, 47.372567], [8.481919, 47.372567], [8.481913, 47.372567], [8.481908, 47.372568], [8.481902, 47.37257], [8.481897, 47.372571], [8.481892, 47.372573], [8.481888, 47.372575], [8.481883, 47.372577], [8.481879, 47.37258], [8.481844, 47.372604], [8.481831, 47.372612], [8.481819, 47.372621], [8.481808, 47.372631], [8.481798, 47.372641], [8.481789, 47.372651], [8.481782, 47.372663], [8.481717, 47.372769], [8.481658, 47.372878], [8.481604, 47.372987], [8.481576, 47.37305], [8.481544, 47.373111], [8.48151, 47.373172], [8.481501, 47.373186], [8.481494, 47.373201], [8.481488, 47.373216], [8.481485, 47.373231], [8.481483, 47.373247], [8.481483, 47.373262], [8.481503, 47.373294]]], "type": "MultiLineString"}, "id": "5047", "properties": {}, "type": "Feature"}, {"bbox": [8.539783, 47.407844, 8.540417, 47.408029], "geometry": {"coordinates": [[[8.539783, 47.408029], [8.540235, 47.407876], [8.540279, 47.407864], [8.540324, 47.407855], [8.54037, 47.407848], [8.540417, 47.407844]]], "type": "MultiLineString"}, "id": "5048", "properties": {}, "type": "Feature"}, {"bbox": [8.477202, 47.381272, 8.478525, 47.381598], "geometry": {"coordinates": [[[8.478525, 47.381598], [8.477605, 47.381545], [8.477588, 47.381543], [8.477572, 47.381541], [8.477556, 47.381537], [8.477541, 47.381533], [8.477526, 47.381527], [8.477512, 47.381521], [8.477499, 47.381514], [8.477487, 47.381506], [8.477476, 47.381497], [8.477447, 47.381474], [8.477418, 47.38145], [8.477389, 47.381425], [8.477353, 47.381387], [8.477317, 47.381348], [8.477281, 47.381309], [8.477275, 47.381303], [8.477268, 47.381298], [8.47726, 47.381292], [8.477251, 47.381288], [8.477242, 47.381283], [8.477233, 47.38128], [8.477223, 47.381277], [8.477212, 47.381274], [8.477202, 47.381272]]], "type": "MultiLineString"}, "id": "5049", "properties": {}, "type": "Feature"}, {"bbox": [8.600838, 47.361189, 8.60161, 47.361656], "geometry": {"coordinates": [[[8.600917, 47.361189], [8.600838, 47.361511], [8.600839, 47.361517], [8.60084, 47.361523], [8.600842, 47.361529], [8.600845, 47.361535], [8.600849, 47.361541], [8.600853, 47.361546], [8.600858, 47.361551], [8.600864, 47.361556], [8.60087, 47.361561], [8.600877, 47.361565], [8.600885, 47.361569], [8.600892, 47.361572], [8.600901, 47.361575], [8.600909, 47.361577], [8.600918, 47.361579], [8.600927, 47.36158], [8.60161, 47.361656]]], "type": "MultiLineString"}, "id": "5050", "properties": {}, "type": "Feature"}, {"bbox": [8.591132, 47.373974, 8.591209, 47.374256], "geometry": {"coordinates": [[[8.591209, 47.373974], [8.591206, 47.373981], [8.591204, 47.373988], [8.591203, 47.373996], [8.591203, 47.374003], [8.591204, 47.374011], [8.591206, 47.374018], [8.591206, 47.374025], [8.591205, 47.374032], [8.591204, 47.374039], [8.591201, 47.374045], [8.591198, 47.374052], [8.591193, 47.374058], [8.591135, 47.374157], [8.591134, 47.374161], [8.591133, 47.374164], [8.591132, 47.374168], [8.591132, 47.374171], [8.591132, 47.374175], [8.591133, 47.374178], [8.591134, 47.374182], [8.591136, 47.374185], [8.591138, 47.374188], [8.591145, 47.374196], [8.591152, 47.374204], [8.591158, 47.374212], [8.591162, 47.37422], [8.591165, 47.374229], [8.591168, 47.374238], [8.591169, 47.374247], [8.591169, 47.374256]]], "type": "MultiLineString"}, "id": "5051", "properties": {}, "type": "Feature"}, {"bbox": [8.533787, 47.398183, 8.535014, 47.399359], "geometry": {"coordinates": [[[8.535014, 47.398183], [8.53494, 47.39828], [8.534854, 47.398285], [8.534668, 47.398352], [8.534582, 47.398432], [8.534475, 47.39858], [8.534244, 47.39883], [8.534001, 47.398934], [8.533881, 47.399005], [8.533821, 47.399064], [8.533787, 47.399157], [8.533888, 47.399283], [8.533939, 47.399359]]], "type": "MultiLineString"}, "id": "5054", "properties": {}, "type": "Feature"}, {"bbox": [8.550262, 47.399313, 8.553269, 47.401401], "geometry": {"coordinates": [[[8.550262, 47.40055], [8.55047, 47.400684], [8.550689, 47.400809], [8.550918, 47.400925], [8.55123, 47.40108], [8.551539, 47.401238], [8.551847, 47.401397], [8.551856, 47.401399], [8.551866, 47.4014], [8.551876, 47.401401], [8.551886, 47.401401], [8.551896, 47.401401], [8.551906, 47.4014], [8.551916, 47.401398], [8.551926, 47.401396], [8.551935, 47.401394], [8.551944, 47.40139], [8.551953, 47.401387], [8.551961, 47.401382], [8.551968, 47.401378], [8.551975, 47.401373], [8.551981, 47.401367], [8.552349, 47.401036], [8.552714, 47.400703], [8.553076, 47.400368], [8.553141, 47.400325], [8.553201, 47.400279], [8.553257, 47.40023], [8.553262, 47.400221], [8.553266, 47.400211], [8.553268, 47.4002], [8.553269, 47.40019], [8.553269, 47.40018], [8.553268, 47.40017], [8.553265, 47.40016], [8.553261, 47.40015], [8.553256, 47.40014], [8.553249, 47.400131], [8.553241, 47.400122], [8.553233, 47.400114], [8.553223, 47.400106], [8.553212, 47.400099], [8.5532, 47.400092], [8.553188, 47.400086], [8.55305, 47.400041], [8.552919, 47.399986], [8.552797, 47.399923], [8.552593, 47.399807], [8.552383, 47.399696], [8.552169, 47.399589], [8.552115, 47.399569], [8.552061, 47.39955], [8.552006, 47.399533], [8.551605, 47.399331], [8.551597, 47.399327], [8.551587, 47.399323], [8.551578, 47.39932], [8.551568, 47.399318], [8.551557, 47.399316], [8.551547, 47.399314], [8.551536, 47.399314], [8.551526, 47.399313], [8.551515, 47.399314], [8.551185, 47.399353]]], "type": "MultiLineString"}, "id": "5055", "properties": {}, "type": "Feature"}, {"bbox": [8.525739, 47.407109, 8.526659, 47.407429], "geometry": {"coordinates": [[[8.526659, 47.407267], [8.526608, 47.407259], [8.526557, 47.407248], [8.526508, 47.407235], [8.526351, 47.407194], [8.526194, 47.407153], [8.526036, 47.407113], [8.526029, 47.407112], [8.526022, 47.40711], [8.526014, 47.40711], [8.526006, 47.407109], [8.525999, 47.407109], [8.525991, 47.40711], [8.525984, 47.407111], [8.525977, 47.407112], [8.52597, 47.407114], [8.525963, 47.407116], [8.525956, 47.407119], [8.52595, 47.407122], [8.525944, 47.407125], [8.525939, 47.407129], [8.525934, 47.407133], [8.52593, 47.407137], [8.525926, 47.407141], [8.525923, 47.407146], [8.525864, 47.407241], [8.525803, 47.407336], [8.525739, 47.407429]]], "type": "MultiLineString"}, "id": "5056", "properties": {}, "type": "Feature"}, {"bbox": [8.551292, 47.39134, 8.551726, 47.392985], "geometry": {"coordinates": [[[8.551292, 47.392985], [8.551303, 47.392957], [8.55131, 47.392928], [8.551313, 47.392899], [8.551313, 47.39287], [8.551303, 47.392435], [8.551328, 47.392365], [8.551363, 47.392297], [8.551407, 47.392231], [8.55146, 47.392168], [8.551509, 47.392104], [8.551548, 47.392037], [8.551578, 47.391967], [8.551598, 47.391896], [8.551608, 47.391824], [8.551656, 47.391574], [8.551673, 47.391484], [8.551701, 47.391396], [8.551726, 47.39134]]], "type": "MultiLineString"}, "id": "5058", "properties": {}, "type": "Feature"}, {"bbox": [8.551726, 47.389677, 8.55253, 47.39134], "geometry": {"coordinates": [[[8.551726, 47.39134], [8.551739, 47.39131], [8.551789, 47.391226], [8.551849, 47.391145], [8.551919, 47.391069], [8.551998, 47.390996], [8.55244, 47.390681], [8.552455, 47.390671], [8.55247, 47.390661], [8.552483, 47.39065], [8.552495, 47.390638], [8.552505, 47.390626], [8.552514, 47.390613], [8.552521, 47.3906], [8.552526, 47.390586], [8.552529, 47.390572], [8.55253, 47.390557], [8.55253, 47.390543], [8.552528, 47.390529], [8.552524, 47.390515], [8.552453, 47.390344], [8.55243, 47.390277], [8.552415, 47.390209], [8.552407, 47.390141], [8.552409, 47.390072], [8.552418, 47.390004], [8.552435, 47.389937], [8.55245, 47.389834], [8.552459, 47.389731], [8.552459, 47.389677]]], "type": "MultiLineString"}, "id": "5060", "properties": {}, "type": "Feature"}, {"bbox": [8.497839, 47.384029, 8.498144, 47.384338], "geometry": {"coordinates": [[[8.498144, 47.384338], [8.497839, 47.384029]]], "type": "MultiLineString"}, "id": "5062", "properties": {}, "type": "Feature"}, {"bbox": [8.54859, 47.364351, 8.550094, 47.364841], "geometry": {"coordinates": [[[8.54859, 47.364439], [8.548745, 47.364466], [8.54945, 47.364754], [8.549669, 47.364841], [8.550094, 47.364351]]], "type": "MultiLineString"}, "id": "5064", "properties": {}, "type": "Feature"}, {"bbox": [8.517589, 47.366595, 8.518543, 47.366904], "geometry": {"coordinates": [[[8.518543, 47.366904], [8.518098, 47.366767], [8.518017, 47.366741], [8.517884, 47.366695], [8.517729, 47.366643], [8.517589, 47.366595]]], "type": "MultiLineString"}, "id": "5065", "properties": {}, "type": "Feature"}, {"bbox": [8.512005, 47.343508, 8.516798, 47.34797], "geometry": {"coordinates": [[[8.512005, 47.34797], [8.51201, 47.347939], [8.51202, 47.347909], [8.512033, 47.347879], [8.512051, 47.34785], [8.512072, 47.347823], [8.512096, 47.347796], [8.512124, 47.347772], [8.512154, 47.347749], [8.512348, 47.347616], [8.5128, 47.347327], [8.513088, 47.347125], [8.513405, 47.346884], [8.513734, 47.346672], [8.513895, 47.346564], [8.513934, 47.346538], [8.513986, 47.34649], [8.514079, 47.346418], [8.514126, 47.346379], [8.514169, 47.346338], [8.514208, 47.346296], [8.514285, 47.346201], [8.514354, 47.346102], [8.514413, 47.346002], [8.514492, 47.345853], [8.514545, 47.345748], [8.514572, 47.345681], [8.514585, 47.345633], [8.514863, 47.345088], [8.514865, 47.345063], [8.514859, 47.345021], [8.514816, 47.344955], [8.514622, 47.34479], [8.514572, 47.344739], [8.514534, 47.344688], [8.5145, 47.344637], [8.514462, 47.34457], [8.514435, 47.344495], [8.514416, 47.34442], [8.514405, 47.344363], [8.514408, 47.344299], [8.514421, 47.344215], [8.514461, 47.344127], [8.514536, 47.344013], [8.514599, 47.343947], [8.514666, 47.3439], [8.514733, 47.34386], [8.514798, 47.343834], [8.51487, 47.343821], [8.514974, 47.343815], [8.515278, 47.343809], [8.515359, 47.343802], [8.515432, 47.343791], [8.515503, 47.343773], [8.515591, 47.34376], [8.515688, 47.343756], [8.515784, 47.343761], [8.51609, 47.343698], [8.516487, 47.34367], [8.516736, 47.343576], [8.516798, 47.343508]]], "type": "MultiLineString"}, "id": "5074", "properties": {}, "type": "Feature"}, {"bbox": [8.54279, 47.372466, 8.543773, 47.372656], "geometry": {"coordinates": [[[8.54279, 47.372474], [8.542901, 47.372466], [8.542881, 47.37251], [8.543082, 47.372506], [8.543078, 47.372525], [8.543165, 47.372542], [8.543467, 47.37257], [8.543536, 47.372626], [8.543773, 47.372656]]], "type": "MultiLineString"}, "id": "5075", "properties": {}, "type": "Feature"}, {"bbox": [8.582711, 47.377725, 8.584019, 47.380851], "geometry": {"coordinates": [[[8.582711, 47.380851], [8.582791, 47.380751], [8.582895, 47.380566], [8.582923, 47.380522], [8.582957, 47.38048], [8.582997, 47.380441], [8.583043, 47.380404], [8.583171, 47.380311], [8.583234, 47.380259], [8.583289, 47.380205], [8.583336, 47.380146], [8.583375, 47.380086], [8.583526, 47.379815], [8.583562, 47.379742], [8.583588, 47.379667], [8.583604, 47.379591], [8.58361, 47.379514], [8.583614, 47.379247], [8.583586, 47.378964], [8.583583, 47.378884], [8.583591, 47.378804], [8.58361, 47.378725], [8.583639, 47.378648], [8.583678, 47.378572], [8.583728, 47.3785], [8.583927, 47.378239], [8.583959, 47.378191], [8.583984, 47.378142], [8.584003, 47.378092], [8.584014, 47.37804], [8.584019, 47.377988], [8.584017, 47.377936], [8.584007, 47.377885], [8.583966, 47.377725]]], "type": "MultiLineString"}, "id": "5076", "properties": {}, "type": "Feature"}, {"bbox": [8.534216, 47.380438, 8.534438, 47.380571], "geometry": {"coordinates": [[[8.534216, 47.380438], [8.534236, 47.380474], [8.53439, 47.380571], [8.534438, 47.380561]]], "type": "MultiLineString"}, "id": "5078", "properties": {}, "type": "Feature"}, {"bbox": [8.534133, 47.380278, 8.534219, 47.380438], "geometry": {"coordinates": [[[8.534219, 47.380278], [8.534133, 47.380296], [8.534216, 47.380438]]], "type": "MultiLineString"}, "id": "5080", "properties": {}, "type": "Feature"}, {"bbox": [8.55174, 47.394652, 8.552016, 47.394938], "geometry": {"coordinates": [[[8.55174, 47.394938], [8.551835, 47.394891], [8.551892, 47.394838], [8.551906, 47.394811], [8.551894, 47.394708], [8.551996, 47.394652], [8.552016, 47.39467]]], "type": "MultiLineString"}, "id": "5081", "properties": {}, "type": "Feature"}, {"bbox": [8.491185, 47.392401, 8.491226, 47.392468], "geometry": {"coordinates": [[[8.491226, 47.392468], [8.491185, 47.392401]]], "type": "MultiLineString"}, "id": "5083", "properties": {}, "type": "Feature"}, {"bbox": [8.530472, 47.338646, 8.530488, 47.338724], "geometry": {"coordinates": [[[8.530488, 47.338724], [8.530472, 47.338646]]], "type": "MultiLineString"}, "id": "5084", "properties": {}, "type": "Feature"}, {"bbox": [8.517384, 47.347835, 8.521, 47.349769], "geometry": {"coordinates": [[[8.521, 47.349769], [8.52079, 47.349629], [8.520732, 47.34959], [8.520688, 47.34955], [8.520646, 47.349509], [8.520601, 47.349454], [8.520557, 47.34939], [8.520522, 47.349323], [8.520465, 47.349126], [8.520441, 47.349062], [8.520406, 47.349003], [8.520372, 47.348953], [8.520319, 47.348895], [8.520239, 47.348828], [8.520135, 47.348756], [8.520032, 47.348698], [8.519923, 47.348653], [8.519819, 47.348617], [8.519516, 47.348534], [8.519436, 47.348507], [8.519341, 47.348467], [8.519276, 47.348432], [8.519216, 47.348388], [8.519165, 47.348345], [8.519113, 47.34829], [8.519012, 47.348141], [8.518983, 47.348101], [8.518948, 47.348064], [8.518904, 47.348032], [8.51886, 47.348006], [8.51879, 47.347985], [8.518302, 47.347876], [8.518168, 47.347852], [8.518066, 47.347839], [8.517969, 47.347835], [8.517885, 47.34784], [8.517792, 47.347861], [8.517713, 47.347895], [8.517611, 47.347971], [8.517555, 47.348024], [8.517525, 47.348151], [8.517505, 47.348224], [8.517443, 47.348415], [8.517392, 47.348588], [8.517384, 47.348715], [8.517398, 47.348981]]], "type": "MultiLineString"}, "id": "5085", "properties": {}, "type": "Feature"}, {"bbox": [8.58085, 47.379817, 8.581287, 47.381118], "geometry": {"coordinates": [[[8.58085, 47.381118], [8.580919, 47.381074], [8.58093, 47.381034], [8.580936, 47.38101], [8.58094, 47.380986], [8.580943, 47.380963], [8.580949, 47.380923], [8.580957, 47.380884], [8.580968, 47.380845], [8.581072, 47.380529], [8.581256, 47.380027], [8.581264, 47.380004], [8.581269, 47.379981], [8.581273, 47.379957], [8.581287, 47.379817]]], "type": "MultiLineString"}, "id": "5087", "properties": {}, "type": "Feature"}, {"bbox": [8.540602, 47.369743, 8.540786, 47.369883], "geometry": {"coordinates": [[[8.540602, 47.369743], [8.540786, 47.369883]]], "type": "MultiLineString"}, "id": "5088", "properties": {}, "type": "Feature"}, {"bbox": [8.489804, 47.3506, 8.490333, 47.350769], "geometry": {"coordinates": [[[8.489804, 47.350769], [8.489815, 47.35076], [8.489827, 47.350751], [8.48984, 47.350743], [8.489854, 47.350736], [8.489868, 47.35073], [8.489884, 47.350725], [8.4899, 47.35072], [8.489916, 47.350717], [8.490055, 47.350677], [8.490194, 47.350638], [8.490333, 47.3506]]], "type": "MultiLineString"}, "id": "5089", "properties": {}, "type": "Feature"}, {"bbox": [8.51211, 47.418291, 8.51318, 47.419895], "geometry": {"coordinates": [[[8.51211, 47.418395], [8.512123, 47.418411], [8.512435, 47.418291], [8.512444, 47.418301], [8.512672, 47.418536], [8.51283, 47.418464], [8.512992, 47.418618], [8.512679, 47.418927], [8.51267, 47.418951], [8.51274, 47.419091], [8.512659, 47.419126], [8.512873, 47.419372], [8.513057, 47.419593], [8.513019, 47.419608], [8.513057, 47.419662], [8.51316, 47.41986], [8.51318, 47.419895]]], "type": "MultiLineString"}, "id": "5091", "properties": {}, "type": "Feature"}, {"bbox": [8.553128, 47.400985, 8.554969, 47.402067], "geometry": {"coordinates": [[[8.553558, 47.402067], [8.553507, 47.402058], [8.553453, 47.402052], [8.553355, 47.402042], [8.55329, 47.402013], [8.553197, 47.40195], [8.55315, 47.401901], [8.553128, 47.401852], [8.553131, 47.401801], [8.553162, 47.401752], [8.553197, 47.401718], [8.55323, 47.401703], [8.5533, 47.401693], [8.553403, 47.401691], [8.553523, 47.401669], [8.553573, 47.401638], [8.55361, 47.401584], [8.553711, 47.401447], [8.553701, 47.401412], [8.553717, 47.40135], [8.554002, 47.401271], [8.55416, 47.401265], [8.554187, 47.401229], [8.554208, 47.401208], [8.554241, 47.401189], [8.5544, 47.401111], [8.554473, 47.401103], [8.554529, 47.401112], [8.554591, 47.401107], [8.55468, 47.401088], [8.554727, 47.401066], [8.55483, 47.401044], [8.554969, 47.400985]]], "type": "MultiLineString"}, "id": "5092", "properties": {}, "type": "Feature"}, {"bbox": [8.48295, 47.374692, 8.483351, 47.375083], "geometry": {"coordinates": [[[8.483351, 47.374692], [8.483244, 47.374781], [8.483125, 47.374862], [8.482995, 47.374935], [8.482988, 47.374939], [8.482982, 47.374942], [8.482976, 47.374946], [8.48297, 47.374951], [8.482966, 47.374955], [8.482961, 47.37496], [8.482958, 47.374965], [8.482955, 47.374971], [8.482953, 47.374976], [8.482951, 47.374982], [8.48295, 47.374987], [8.48295, 47.374993], [8.482951, 47.374999], [8.482952, 47.375004], [8.482955, 47.37501], [8.482958, 47.375015], [8.482961, 47.37502], [8.482965, 47.375025], [8.48297, 47.37503], [8.482975, 47.375034], [8.483002, 47.375048], [8.48303, 47.375059], [8.483059, 47.375069], [8.48309, 47.375077], [8.483122, 47.375083]]], "type": "MultiLineString"}, "id": "5093", "properties": {}, "type": "Feature"}, {"bbox": [8.497095, 47.403574, 8.497982, 47.403771], "geometry": {"coordinates": [[[8.497095, 47.403609], [8.497225, 47.403576], [8.497236, 47.403575], [8.497246, 47.403574], [8.497257, 47.403574], [8.497267, 47.403574], [8.497277, 47.403575], [8.497288, 47.403577], [8.497297, 47.403579], [8.497307, 47.403582], [8.497316, 47.403586], [8.497325, 47.40359], [8.497333, 47.403594], [8.497341, 47.403599], [8.497348, 47.403604], [8.497354, 47.40361], [8.49736, 47.403616], [8.497367, 47.403625], [8.497376, 47.403633], [8.497386, 47.403641], [8.497397, 47.403649], [8.497409, 47.403655], [8.497422, 47.403661], [8.497436, 47.403666], [8.49745, 47.40367], [8.497464, 47.403674], [8.497479, 47.403676], [8.497494, 47.403678], [8.49751, 47.403678], [8.497525, 47.403678], [8.49754, 47.403677], [8.497556, 47.403675], [8.49757, 47.403671], [8.497585, 47.403667], [8.497598, 47.403663], [8.497745, 47.403618], [8.497757, 47.403615], [8.497768, 47.403612], [8.49778, 47.403611], [8.497792, 47.40361], [8.497805, 47.403609], [8.497817, 47.40361], [8.497829, 47.403611], [8.497841, 47.403613], [8.497852, 47.403616], [8.497863, 47.403619], [8.497874, 47.403623], [8.497884, 47.403628], [8.497893, 47.403633], [8.497902, 47.403639], [8.49791, 47.403645], [8.497917, 47.403652], [8.497924, 47.403659], [8.497929, 47.403666], [8.497933, 47.403674], [8.497936, 47.403682], [8.497982, 47.403771]]], "type": "MultiLineString"}, "id": "5095", "properties": {}, "type": "Feature"}, {"bbox": [8.502284, 47.365799, 8.503768, 47.367957], "geometry": {"coordinates": [[[8.503709, 47.365799], [8.503768, 47.365889], [8.50376, 47.365895], [8.503732, 47.365918], [8.503703, 47.365943], [8.503554, 47.36599], [8.503158, 47.365944], [8.503143, 47.365941], [8.503128, 47.36594], [8.503112, 47.365939], [8.503097, 47.36594], [8.503082, 47.365942], [8.503067, 47.365944], [8.503052, 47.365947], [8.503042, 47.365954], [8.503032, 47.365961], [8.503024, 47.365969], [8.503016, 47.365978], [8.50301, 47.365987], [8.503005, 47.365996], [8.503001, 47.366005], [8.50289, 47.366287], [8.502889, 47.366483], [8.502787, 47.366595], [8.502715, 47.366902], [8.50268, 47.367021], [8.502615, 47.367245], [8.502413, 47.367562], [8.502284, 47.367907], [8.502353, 47.367957]]], "type": "MultiLineString"}, "id": "5096", "properties": {}, "type": "Feature"}, {"bbox": [8.474625, 47.382082, 8.476063, 47.383159], "geometry": {"coordinates": [[[8.474625, 47.383159], [8.47465, 47.383151], [8.474674, 47.383141], [8.474697, 47.38313], [8.474743, 47.383101], [8.474786, 47.383069], [8.474825, 47.383036], [8.474847, 47.383015], [8.474866, 47.382993], [8.474882, 47.38297], [8.474901, 47.382949], [8.474921, 47.38293], [8.474945, 47.382912], [8.475888, 47.382245], [8.475945, 47.38219], [8.476004, 47.382136], [8.476063, 47.382082]]], "type": "MultiLineString"}, "id": "5097", "properties": {}, "type": "Feature"}, {"bbox": [8.526569, 47.35036, 8.527766, 47.351051], "geometry": {"coordinates": [[[8.527766, 47.350397], [8.527679, 47.350382], [8.52755, 47.35036], [8.527475, 47.350365], [8.527461, 47.350367], [8.527448, 47.350369], [8.527436, 47.350373], [8.527423, 47.350377], [8.527418, 47.350379], [8.527413, 47.350381], [8.527408, 47.350384], [8.527404, 47.350387], [8.5274, 47.35039], [8.527397, 47.350393], [8.527394, 47.350397], [8.527391, 47.350401], [8.527389, 47.350405], [8.527292, 47.350581], [8.527234, 47.350638], [8.527215, 47.350655], [8.527194, 47.350672], [8.527172, 47.350688], [8.526869, 47.350871], [8.526779, 47.350895], [8.526672, 47.351029], [8.526569, 47.351051]]], "type": "MultiLineString"}, "id": "5098", "properties": {}, "type": "Feature"}, {"bbox": [8.52429, 47.42391, 8.525194, 47.425633], "geometry": {"coordinates": [[[8.5243, 47.42391], [8.52429, 47.424021], [8.524292, 47.424132], [8.524307, 47.424243], [8.524338, 47.424341], [8.524375, 47.424437], [8.524419, 47.424533], [8.524542, 47.424705], [8.524668, 47.424877], [8.524797, 47.425048], [8.524931, 47.425222], [8.525058, 47.425398], [8.525177, 47.425577], [8.525183, 47.425596], [8.525189, 47.425615], [8.525194, 47.425633]]], "type": "MultiLineString"}, "id": "5099", "properties": {}, "type": "Feature"}, {"bbox": [8.551987, 47.390612, 8.573616, 47.397106], "geometry": {"coordinates": [[[8.551987, 47.393174], [8.552032, 47.393185], [8.552049, 47.393188], [8.552946, 47.393315], [8.553041, 47.393332], [8.553073, 47.393343], [8.553106, 47.393363], [8.553136, 47.393384], [8.553164, 47.393407], [8.553188, 47.393431], [8.553209, 47.393457], [8.553226, 47.393484], [8.55324, 47.393512], [8.553249, 47.393541], [8.553292, 47.393703], [8.553309, 47.393733], [8.553329, 47.393762], [8.553353, 47.393789], [8.55338, 47.393815], [8.55341, 47.393839], [8.553442, 47.393862], [8.553566, 47.393919], [8.554484, 47.394251], [8.554491, 47.394254], [8.554707, 47.394354], [8.555362, 47.394682], [8.555412, 47.394704], [8.555464, 47.394723], [8.555518, 47.394739], [8.555574, 47.394751], [8.555632, 47.39476], [8.555691, 47.394765], [8.556156, 47.394792], [8.556223, 47.394793], [8.556291, 47.394791], [8.556359, 47.394785], [8.556425, 47.394775], [8.556749, 47.394714], [8.556803, 47.394706], [8.556858, 47.394701], [8.556913, 47.394699], [8.556968, 47.394701], [8.557022, 47.394706], [8.557122, 47.394718], [8.557153, 47.394723], [8.557183, 47.39473], [8.557212, 47.394738], [8.55724, 47.394748], [8.557267, 47.394759], [8.557292, 47.394772], [8.557315, 47.394787], [8.557336, 47.394802], [8.557356, 47.394819], [8.557373, 47.394837], [8.557388, 47.394856], [8.5574, 47.394876], [8.55741, 47.394896], [8.557418, 47.394917], [8.557422, 47.394938], [8.557424, 47.394959], [8.557424, 47.394981], [8.557421, 47.395002], [8.557415, 47.395023], [8.557406, 47.395044], [8.557395, 47.395064], [8.557254, 47.395288], [8.557238, 47.395316], [8.557226, 47.395344], [8.557218, 47.395373], [8.557213, 47.395402], [8.557212, 47.395432], [8.557214, 47.395461], [8.55722, 47.395491], [8.55723, 47.395519], [8.557243, 47.395548], [8.55726, 47.395575], [8.557279, 47.395601], [8.557303, 47.395626], [8.557571, 47.395893], [8.558298, 47.396589], [8.558704, 47.396971], [8.558731, 47.396994], [8.55876, 47.397015], [8.558793, 47.397035], [8.558828, 47.397052], [8.558865, 47.397067], [8.558904, 47.39708], [8.558945, 47.39709], [8.558986, 47.397098], [8.559029, 47.397103], [8.559072, 47.397106], [8.559115, 47.397106], [8.559158, 47.397103], [8.559201, 47.397098], [8.559723, 47.397016], [8.560536, 47.396863], [8.560665, 47.396834], [8.560788, 47.396798], [8.560907, 47.396754], [8.561019, 47.396703], [8.561319, 47.396551], [8.562035, 47.39621], [8.563243, 47.39563], [8.565155, 47.394711], [8.565364, 47.394602], [8.565559, 47.394481], [8.565738, 47.39435], [8.566455, 47.393781], [8.568364, 47.392266], [8.568923, 47.391821], [8.568933, 47.391812], [8.568945, 47.391804], [8.568956, 47.391796], [8.568996, 47.391771], [8.569039, 47.391748], [8.569085, 47.391729], [8.569153, 47.391707], [8.57071, 47.391284], [8.571767, 47.390996], [8.572245, 47.390867], [8.573158, 47.390629], [8.57319, 47.390622], [8.573223, 47.390616], [8.573256, 47.390613], [8.57329, 47.390612], [8.573324, 47.390612], [8.573357, 47.390615], [8.57339, 47.39062], [8.573422, 47.390626], [8.57349, 47.390642], [8.573525, 47.390657], [8.573558, 47.390675], [8.573589, 47.390694], [8.573616, 47.390716]]], "type": "MultiLineString"}, "id": "5100", "properties": {}, "type": "Feature"}, {"bbox": [8.504839, 47.408468, 8.505743, 47.409466], "geometry": {"coordinates": [[[8.505374, 47.408468], [8.505703, 47.408917], [8.505715, 47.408934], [8.505725, 47.408951], [8.505733, 47.40897], [8.505739, 47.408989], [8.505742, 47.409008], [8.505743, 47.409027], [8.505741, 47.409046], [8.505737, 47.409065], [8.505731, 47.409083], [8.505722, 47.409101], [8.505711, 47.409119], [8.505697, 47.409136], [8.505682, 47.409152], [8.505665, 47.409167], [8.505645, 47.409181], [8.505624, 47.409194], [8.505602, 47.409205], [8.505578, 47.409215], [8.505553, 47.409224], [8.505087, 47.409383], [8.504839, 47.409466]]], "type": "MultiLineString"}, "id": "5102", "properties": {}, "type": "Feature"}, {"bbox": [8.602271, 47.365042, 8.608067, 47.367554], "geometry": {"coordinates": [[[8.602271, 47.365042], [8.602378, 47.365143], [8.602525, 47.365218], [8.602586, 47.365255], [8.602726, 47.365301], [8.603012, 47.365365], [8.603287, 47.365482], [8.603568, 47.365641], [8.603985, 47.365897], [8.604296, 47.366055], [8.604805, 47.366526], [8.605297, 47.36694], [8.605376, 47.366992], [8.605462, 47.36704], [8.605553, 47.367082], [8.605649, 47.36712], [8.60575, 47.367152], [8.605854, 47.367177], [8.607642, 47.367454], [8.608067, 47.367554]]], "type": "MultiLineString"}, "id": "5103", "properties": {}, "type": "Feature"}, {"bbox": [8.448293, 47.37935, 8.459546, 47.379988], "geometry": {"coordinates": [[[8.459546, 47.379913], [8.459471, 47.379872], [8.459441, 47.379857], [8.459398, 47.379836], [8.459352, 47.379818], [8.459304, 47.379803], [8.459254, 47.37979], [8.459203, 47.379781], [8.459151, 47.379774], [8.459098, 47.379771], [8.459045, 47.379771], [8.458658, 47.379781], [8.458503, 47.379783], [8.458348, 47.379781], [8.458194, 47.379776], [8.457891, 47.379761], [8.457722, 47.379749], [8.457554, 47.379728], [8.457389, 47.379699], [8.456969, 47.379613], [8.456638, 47.37955], [8.456305, 47.379493], [8.45597, 47.379443], [8.45575, 47.379416], [8.455529, 47.379393], [8.455306, 47.379376], [8.45506, 47.379363], [8.454814, 47.379354], [8.454568, 47.37935], [8.454448, 47.379352], [8.454329, 47.379359], [8.45421, 47.379371], [8.453921, 47.379397], [8.453629, 47.379408], [8.453337, 47.379401], [8.452838, 47.379376], [8.452718, 47.379371], [8.452598, 47.379368], [8.452477, 47.379367], [8.451826, 47.379365], [8.451691, 47.379369], [8.451558, 47.379382], [8.451428, 47.379404], [8.451301, 47.379435], [8.450478, 47.379662], [8.449484, 47.379921], [8.4494, 47.379941], [8.449315, 47.379956], [8.449228, 47.379966], [8.449135, 47.379972], [8.448746, 47.379987], [8.44868, 47.379988], [8.448614, 47.379984], [8.448549, 47.379977], [8.448485, 47.379965], [8.448423, 47.37995], [8.448363, 47.379931], [8.448293, 47.379903]]], "type": "MultiLineString"}, "id": "5104", "properties": {}, "type": "Feature"}, {"bbox": [8.506152, 47.371975, 8.509233, 47.372673], "geometry": {"coordinates": [[[8.509233, 47.372109], [8.509214, 47.372114], [8.509168, 47.372124], [8.508892, 47.37231], [8.508827, 47.372341], [8.50866, 47.372237], [8.508456, 47.372091], [8.508275, 47.371975], [8.508155, 47.372014], [8.506837, 47.372673], [8.506601, 47.372483], [8.506577, 47.372457], [8.506287, 47.372226], [8.506166, 47.372137], [8.506164, 47.372136], [8.506163, 47.372135], [8.506161, 47.372133], [8.50616, 47.372132], [8.506159, 47.37213], [8.506158, 47.372129], [8.506158, 47.372127], [8.506157, 47.372126], [8.506157, 47.372124], [8.506157, 47.372123], [8.506157, 47.372121], [8.506157, 47.37212], [8.506158, 47.372118], [8.506159, 47.372117], [8.50616, 47.372115], [8.506161, 47.372114], [8.506162, 47.372113], [8.506163, 47.372111], [8.506165, 47.37211], [8.506167, 47.372109], [8.506169, 47.372108], [8.506246, 47.372067], [8.506152, 47.371986]]], "type": "MultiLineString"}, "id": "5107", "properties": {}, "type": "Feature"}, {"bbox": [8.503347, 47.371637, 8.5052, 47.372581], "geometry": {"coordinates": [[[8.5052, 47.371637], [8.505102, 47.371699], [8.504998, 47.371754], [8.504918, 47.371802], [8.504838, 47.371846], [8.504744, 47.371909], [8.504384, 47.3721], [8.504037, 47.372283], [8.503495, 47.372557], [8.503446, 47.372565], [8.503347, 47.372581]]], "type": "MultiLineString"}, "id": "5108", "properties": {}, "type": "Feature"}, {"bbox": [8.504237, 47.412071, 8.506182, 47.412667], "geometry": {"coordinates": [[[8.506182, 47.412667], [8.504932, 47.412412], [8.504799, 47.412374], [8.504672, 47.412327], [8.504551, 47.412274], [8.504438, 47.412213], [8.504333, 47.412145], [8.504237, 47.412071]]], "type": "MultiLineString"}, "id": "5109", "properties": {}, "type": "Feature"}, {"bbox": [8.512004, 47.411765, 8.513053, 47.412709], "geometry": {"coordinates": [[[8.513053, 47.411765], [8.513049, 47.41178], [8.513044, 47.411794], [8.513036, 47.411808], [8.513027, 47.411822], [8.513016, 47.411835], [8.513003, 47.411847], [8.512989, 47.411858], [8.512974, 47.411869], [8.512957, 47.411879], [8.512939, 47.411887], [8.51292, 47.411895], [8.512901, 47.411901], [8.51288, 47.411907], [8.512859, 47.411911], [8.512838, 47.411914], [8.512816, 47.411915], [8.51207, 47.411923], [8.512058, 47.412077], [8.512055, 47.412231], [8.51206, 47.412385], [8.512052, 47.412472], [8.512045, 47.41256], [8.512038, 47.412647], [8.512034, 47.41266], [8.512029, 47.412673], [8.512022, 47.412686], [8.512013, 47.412698], [8.512004, 47.412709]]], "type": "MultiLineString"}, "id": "5110", "properties": {}, "type": "Feature"}, {"bbox": [8.506714, 47.401686, 8.507527, 47.402535], "geometry": {"coordinates": [[[8.506714, 47.402535], [8.506743, 47.402496], [8.506767, 47.402456], [8.506786, 47.402414], [8.506799, 47.402371], [8.506813, 47.402336], [8.50683, 47.402301], [8.506852, 47.402268], [8.506911, 47.402188], [8.506958, 47.402133], [8.507012, 47.402083], [8.507073, 47.402035], [8.50714, 47.401992], [8.507212, 47.401954], [8.507245, 47.401934], [8.507275, 47.401912], [8.507301, 47.401889], [8.507527, 47.401686]]], "type": "MultiLineString"}, "id": "5111", "properties": {}, "type": "Feature"}, {"bbox": [8.517451, 47.339424, 8.517764, 47.340293], "geometry": {"coordinates": [[[8.517545, 47.339424], [8.517527, 47.339436], [8.51751, 47.33945], [8.517495, 47.339464], [8.517482, 47.339479], [8.517472, 47.339495], [8.517463, 47.339512], [8.517451, 47.339563], [8.517464, 47.33983], [8.517467, 47.33985], [8.517472, 47.33987], [8.51748, 47.33989], [8.517764, 47.340293]]], "type": "MultiLineString"}, "id": "5112", "properties": {}, "type": "Feature"}, {"bbox": [8.492862, 47.369976, 8.493689, 47.371037], "geometry": {"coordinates": [[[8.493689, 47.371037], [8.4935, 47.370863], [8.493316, 47.370687], [8.493138, 47.370508], [8.493134, 47.370498], [8.493131, 47.370487], [8.493129, 47.370476], [8.493129, 47.370465], [8.49313, 47.370454], [8.493133, 47.370443], [8.493136, 47.370432], [8.493141, 47.370422], [8.493148, 47.370412], [8.493155, 47.370402], [8.493161, 47.370393], [8.493165, 47.370383], [8.493168, 47.370373], [8.49317, 47.370362], [8.493171, 47.370352], [8.49317, 47.370341], [8.493168, 47.370331], [8.493165, 47.370321], [8.49316, 47.370311], [8.493143, 47.370282], [8.493124, 47.370253], [8.493102, 47.370226], [8.492862, 47.369976]]], "type": "MultiLineString"}, "id": "5113", "properties": {}, "type": "Feature"}, {"bbox": [8.501336, 47.371387, 8.502287, 47.371487], "geometry": {"coordinates": [[[8.502287, 47.371387], [8.502199, 47.371405], [8.502149, 47.371415], [8.502109, 47.371422], [8.502069, 47.371427], [8.502029, 47.37143], [8.501855, 47.37144], [8.501336, 47.371487]]], "type": "MultiLineString"}, "id": "5114", "properties": {}, "type": "Feature"}, {"bbox": [8.587307, 47.371753, 8.589901, 47.372734], "geometry": {"coordinates": [[[8.587307, 47.372734], [8.587351, 47.372695], [8.587394, 47.372656], [8.587435, 47.372616], [8.587514, 47.372543], [8.587582, 47.372464], [8.58764, 47.372382], [8.587734, 47.372232], [8.587824, 47.37208], [8.58791, 47.371927], [8.587925, 47.371904], [8.587943, 47.371883], [8.587963, 47.371862], [8.587986, 47.371843], [8.588012, 47.371825], [8.588039, 47.371809], [8.588069, 47.371794], [8.588101, 47.371782], [8.588134, 47.371772], [8.588168, 47.371763], [8.588204, 47.371757], [8.58824, 47.371753], [8.588793, 47.371801], [8.589347, 47.371848], [8.589901, 47.371893]]], "type": "MultiLineString"}, "id": "5115", "properties": {}, "type": "Feature"}, {"bbox": [8.514492, 47.385389, 8.517307, 47.386157], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.517109, 47.385465], [8.516082, 47.385728], [8.514828, 47.386065], [8.514492, 47.386157]]], "type": "MultiLineString"}, "id": "5119", "properties": {}, "type": "Feature"}, {"bbox": [8.514445, 47.386142, 8.515399, 47.387342], "geometry": {"coordinates": [[[8.515266, 47.386229], [8.515201, 47.38615], [8.515011, 47.386142], [8.51482, 47.386147], [8.514631, 47.386164], [8.514445, 47.386193], [8.515399, 47.387342]]], "type": "MultiLineString"}, "id": "5120", "properties": {}, "type": "Feature"}, {"bbox": [8.545629, 47.365279, 8.545761, 47.365316], "geometry": {"coordinates": [[[8.545629, 47.365279], [8.545761, 47.365316]]], "type": "MultiLineString"}, "id": "5121", "properties": {}, "type": "Feature"}, {"bbox": [8.54936, 47.386308, 8.550208, 47.390067], "geometry": {"coordinates": [[[8.550208, 47.386308], [8.550208, 47.386338], [8.55019, 47.386417], [8.550176, 47.386465], [8.550156, 47.386513], [8.55013, 47.386559], [8.550099, 47.386603], [8.550063, 47.386646], [8.550021, 47.386686], [8.549975, 47.386724], [8.549924, 47.386759], [8.549894, 47.386784], [8.549868, 47.38681], [8.549846, 47.386838], [8.549827, 47.386866], [8.549812, 47.386896], [8.5498, 47.386927], [8.549793, 47.386958], [8.54979, 47.38699], [8.549791, 47.387022], [8.549796, 47.387053], [8.549806, 47.387084], [8.549819, 47.387114], [8.549836, 47.387144], [8.549857, 47.387172], [8.549881, 47.387199], [8.549909, 47.387225], [8.54994, 47.387248], [8.549988, 47.387287], [8.550032, 47.387329], [8.550069, 47.387373], [8.550101, 47.387419], [8.550127, 47.387466], [8.550147, 47.387515], [8.550161, 47.387565], [8.550168, 47.387616], [8.550169, 47.387667], [8.550163, 47.387717], [8.550151, 47.387768], [8.550133, 47.387817], [8.55005, 47.388095], [8.549945, 47.388369], [8.549817, 47.388639], [8.54975, 47.388743], [8.549698, 47.388851], [8.54966, 47.388962], [8.549638, 47.389074], [8.54963, 47.389187], [8.549622, 47.38936], [8.549593, 47.389532], [8.549542, 47.389701], [8.549471, 47.389867], [8.54936, 47.390067]]], "type": "MultiLineString"}, "id": "5128", "properties": {}, "type": "Feature"}, {"bbox": [8.5612, 47.410083, 8.563371, 47.410267], "geometry": {"coordinates": [[[8.5612, 47.410083], [8.562062, 47.410202], [8.562355, 47.410234], [8.56265, 47.410256], [8.562946, 47.410267], [8.563008, 47.410265], [8.56307, 47.410259], [8.563131, 47.410249], [8.56319, 47.410237], [8.563247, 47.410221], [8.563303, 47.410202], [8.563319, 47.410197], [8.563336, 47.410194], [8.563353, 47.410192], [8.563371, 47.410191]]], "type": "MultiLineString"}, "id": "5131", "properties": {}, "type": "Feature"}, {"bbox": [8.543254, 47.393535, 8.544457, 47.39387], "geometry": {"coordinates": [[[8.543254, 47.39387], [8.543286, 47.393864], [8.543319, 47.393859], [8.543351, 47.393856], [8.543445, 47.393846], [8.543615, 47.393844], [8.543701, 47.393846], [8.543787, 47.393842], [8.543873, 47.393832], [8.543956, 47.393818], [8.543964, 47.393815], [8.543972, 47.393812], [8.54398, 47.393809], [8.543987, 47.393805], [8.543994, 47.393801], [8.543999, 47.393796], [8.544005, 47.393791], [8.544009, 47.393786], [8.544013, 47.39378], [8.544032, 47.393768], [8.544051, 47.393755], [8.544071, 47.393743], [8.544457, 47.393535]]], "type": "MultiLineString"}, "id": "5132", "properties": {}, "type": "Feature"}, {"bbox": [8.590078, 47.355467, 8.590354, 47.356192], "geometry": {"coordinates": [[[8.590078, 47.355467], [8.590094, 47.355474], [8.59011, 47.355483], [8.590124, 47.355492], [8.590137, 47.355502], [8.590149, 47.355513], [8.590159, 47.355525], [8.590168, 47.355537], [8.590175, 47.35555], [8.59018, 47.35559], [8.590211, 47.355681], [8.590333, 47.355869], [8.590354, 47.356086], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "5133", "properties": {}, "type": "Feature"}, {"bbox": [8.530077, 47.360833, 8.530358, 47.361564], "geometry": {"coordinates": [[[8.530358, 47.360833], [8.530244, 47.361116], [8.530245, 47.361248], [8.530239, 47.361386], [8.530232, 47.361428], [8.530219, 47.361469], [8.5302, 47.36151], [8.530195, 47.361517], [8.53019, 47.361523], [8.530183, 47.36153], [8.530176, 47.361536], [8.530168, 47.361541], [8.530159, 47.361546], [8.53015, 47.36155], [8.53014, 47.361554], [8.53013, 47.361557], [8.530119, 47.36156], [8.530108, 47.361562], [8.530077, 47.361564]]], "type": "MultiLineString"}, "id": "5134", "properties": {}, "type": "Feature"}, {"bbox": [8.542305, 47.423082, 8.543107, 47.423453], "geometry": {"coordinates": [[[8.542305, 47.423082], [8.542439, 47.423104], [8.54257, 47.423134], [8.542696, 47.423173], [8.542728, 47.423189], [8.542758, 47.423207], [8.542786, 47.423227], [8.542892, 47.423303], [8.542999, 47.423378], [8.543107, 47.423453]]], "type": "MultiLineString"}, "id": "5135", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.412231, 8.542205, 47.412507], "geometry": {"coordinates": [[[8.542205, 47.412231], [8.541977, 47.412507]]], "type": "MultiLineString"}, "id": "5143", "properties": {}, "type": "Feature"}, {"bbox": [8.563172, 47.411969, 8.563229, 47.413105], "geometry": {"coordinates": [[[8.563229, 47.411969], [8.563209, 47.412154], [8.563178, 47.412934], [8.563172, 47.413105]]], "type": "MultiLineString"}, "id": "5145", "properties": {}, "type": "Feature"}, {"bbox": [8.54777, 47.366361, 8.548314, 47.366502], "geometry": {"coordinates": [[[8.548314, 47.366361], [8.548128, 47.366441], [8.548094, 47.366447], [8.54806, 47.366451], [8.548025, 47.366453], [8.547991, 47.366452], [8.547956, 47.36645], [8.547928, 47.366447], [8.5479, 47.366443], [8.547872, 47.366438], [8.54777, 47.366502]]], "type": "MultiLineString"}, "id": "5158", "properties": {}, "type": "Feature"}, {"bbox": [8.512283, 47.359928, 8.514335, 47.360932], "geometry": {"coordinates": [[[8.514335, 47.360474], [8.513984, 47.360932], [8.512283, 47.36041], [8.512653, 47.359928]]], "type": "MultiLineString"}, "id": "5168", "properties": {}, "type": "Feature"}, {"bbox": [8.498489, 47.402761, 8.499673, 47.402978], "geometry": {"coordinates": [[[8.499673, 47.402761], [8.499503, 47.402815], [8.499039, 47.40293], [8.49896, 47.402949], [8.49876, 47.402978], [8.498489, 47.402792]]], "type": "MultiLineString"}, "id": "5169", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.379424, 8.545566, 47.380521], "geometry": {"coordinates": [[[8.545566, 47.379424], [8.545155, 47.379963], [8.545128, 47.380021], [8.544848, 47.380456], [8.544775, 47.380521]]], "type": "MultiLineString"}, "id": "5174", "properties": {}, "type": "Feature"}, {"bbox": [8.568593, 47.353651, 8.569649, 47.353767], "geometry": {"coordinates": [[[8.568593, 47.353651], [8.568618, 47.353658], [8.568644, 47.353663], [8.568671, 47.353667], [8.568997, 47.3537], [8.569323, 47.353733], [8.569649, 47.353767]]], "type": "MultiLineString"}, "id": "5175", "properties": {}, "type": "Feature"}, {"bbox": [8.547059, 47.370799, 8.547623, 47.370924], "geometry": {"coordinates": [[[8.547623, 47.370799], [8.54731, 47.370858], [8.547059, 47.370924]]], "type": "MultiLineString"}, "id": "5176", "properties": {}, "type": "Feature"}, {"bbox": [8.583176, 47.359614, 8.584984, 47.35974], "geometry": {"coordinates": [[[8.583176, 47.359614], [8.583522, 47.35974], [8.584984, 47.359727]]], "type": "MultiLineString"}, "id": "5179", "properties": {}, "type": "Feature"}, {"bbox": [8.50962, 47.388601, 8.511016, 47.390207], "geometry": {"coordinates": [[[8.510029, 47.390207], [8.509734, 47.38977], [8.50964, 47.389554], [8.509631, 47.389534], [8.509624, 47.389514], [8.509621, 47.389493], [8.50962, 47.389472], [8.509621, 47.389452], [8.509626, 47.389431], [8.509632, 47.389411], [8.509642, 47.389391], [8.509654, 47.389372], [8.509668, 47.389353], [8.509685, 47.389336], [8.509704, 47.389319], [8.509725, 47.389304], [8.509748, 47.38929], [8.509843, 47.389249], [8.509943, 47.389212], [8.510046, 47.389181], [8.51052, 47.389044], [8.510575, 47.389024], [8.510627, 47.389002], [8.510676, 47.388976], [8.510721, 47.388948], [8.510763, 47.388917], [8.5108, 47.388883], [8.510832, 47.388848], [8.510859, 47.38881], [8.511016, 47.388601]]], "type": "MultiLineString"}, "id": "5183", "properties": {}, "type": "Feature"}, {"bbox": [8.494899, 47.374855, 8.496076, 47.375321], "geometry": {"coordinates": [[[8.494899, 47.375321], [8.494998, 47.375281], [8.495597, 47.375024], [8.495644, 47.375026], [8.496076, 47.374855]]], "type": "MultiLineString"}, "id": "5187", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_c212099d04deb7043443e217d6c3144e_onEachFeature(feature, layer) {\n", + " function geo_json_a974ff9d5196392d1d03b7e35845a51b_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_c212099d04deb7043443e217d6c3144e = L.geoJson(null, {\n", - " onEachFeature: geo_json_c212099d04deb7043443e217d6c3144e_onEachFeature,\n", + " var geo_json_a974ff9d5196392d1d03b7e35845a51b = L.geoJson(null, {\n", + " onEachFeature: geo_json_a974ff9d5196392d1d03b7e35845a51b_onEachFeature,\n", " \n", " color: "blue",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_c212099d04deb7043443e217d6c3144e_add (data) {\n", - " geo_json_c212099d04deb7043443e217d6c3144e\n", + " function geo_json_a974ff9d5196392d1d03b7e35845a51b_add (data) {\n", + " geo_json_a974ff9d5196392d1d03b7e35845a51b\n", " .addData(data);\n", " }\n", - " geo_json_c212099d04deb7043443e217d6c3144e_add({"bbox": [8.489448, 47.32782, 8.573066, 47.428918], "features": [{"bbox": [8.489832, 47.425877, 8.49201, 47.426174], "geometry": {"coordinates": [[[8.489832, 47.425877], [8.490106, 47.42593], [8.490558, 47.425996], [8.491012, 47.426058], [8.491467, 47.426115], [8.491916, 47.426165], [8.49201, 47.426174]]], "type": "MultiLineString"}, "id": "462", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.573066, 47.411421], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.57253, 47.411245], [8.572589, 47.41126], [8.572647, 47.411277], [8.572786, 47.411326], [8.572925, 47.411374], [8.573066, 47.411421]]], "type": "MultiLineString"}, "id": "557", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522562, 47.348648], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.522562, 47.348648]]], "type": "MultiLineString"}, "id": "768", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.52412, 47.350575], [8.523774, 47.350158], [8.523385, 47.34976], [8.522954, 47.349382], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "770", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.350174, 8.525439, 47.354153], "geometry": {"coordinates": [[[8.524787, 47.350174], [8.524984, 47.350403], [8.525157, 47.350641], [8.525304, 47.350886], [8.525383, 47.351122], [8.525428, 47.351362], [8.525439, 47.351604], [8.525417, 47.351846], [8.525361, 47.352084], [8.524901, 47.353943], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "776", "properties": {}, "type": "Feature"}, {"bbox": [8.521938, 47.337288, 8.522723, 47.340986], "geometry": {"coordinates": [[[8.521938, 47.340986], [8.52207, 47.340589], [8.522176, 47.340188], [8.522256, 47.339784], [8.522478, 47.338292], [8.522531, 47.337954], [8.522613, 47.337619], [8.522723, 47.337288]]], "type": "MultiLineString"}, "id": "1232", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.524793, 47.350174], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.524622, 47.349976], [8.524793, 47.350142], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "1362", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572154, 47.411303], [8.572354, 47.411361], [8.57256, 47.411406], [8.572771, 47.411439], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "1618", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572959, 47.41148], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572013, 47.411282], [8.572068, 47.411308], [8.572126, 47.411331], [8.572398, 47.411396], [8.572676, 47.411446], [8.572959, 47.41148]]], "type": "MultiLineString"}, "id": "1663", "properties": {}, "type": "Feature"}, {"bbox": [8.493733, 47.425845, 8.498406, 47.426749], "geometry": {"coordinates": [[[8.493733, 47.425845], [8.494012, 47.425956], [8.494305, 47.426049], [8.494609, 47.426123], [8.494922, 47.426176], [8.495874, 47.426342], [8.496105, 47.426388], [8.496337, 47.426427], [8.496572, 47.42646], [8.496934, 47.426511], [8.497297, 47.426556], [8.497661, 47.426596], [8.497914, 47.426637], [8.498162, 47.426687], [8.498406, 47.426749]]], "type": "MultiLineString"}, "id": "1751", "properties": {}, "type": "Feature"}, {"bbox": [8.519241, 47.340986, 8.525016, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524151, 47.368262], [8.523806, 47.367908], [8.52359, 47.36768], [8.523395, 47.367443], [8.52322, 47.367199], [8.523076, 47.366956], [8.522955, 47.366707], [8.522858, 47.366454], [8.522779, 47.36619], [8.522725, 47.365923], [8.522696, 47.365654], [8.522662, 47.364671], [8.522641, 47.36389], [8.52264, 47.36361], [8.52265, 47.36333], [8.522671, 47.36305], [8.522701, 47.362739], [8.522748, 47.362428], [8.522813, 47.36212], [8.522943, 47.361502], [8.523009, 47.36115], [8.523109, 47.360742], [8.52322, 47.360335], [8.523344, 47.35993], [8.523789, 47.358609], [8.523929, 47.358207], [8.524052, 47.357802], [8.524158, 47.357395], [8.524238, 47.357019], [8.524303, 47.356641], [8.524353, 47.356262], [8.524485, 47.355241], [8.524531, 47.354871], [8.52458, 47.3545], [8.52463, 47.354129], [8.524679, 47.353795], [8.524764, 47.353611], [8.524892, 47.352927], [8.524952, 47.352634], [8.524993, 47.35234], [8.525016, 47.352044], [8.525006, 47.351769], [8.524963, 47.351496], [8.524888, 47.351226], [8.524775, 47.350936], [8.524624, 47.350654], [8.524436, 47.350383], [8.524287, 47.350195], [8.524118, 47.350015], [8.523931, 47.349843], [8.523757, 47.3497], [8.523577, 47.349561], [8.523391, 47.349425], [8.522913, 47.349082], [8.522434, 47.34874], [8.521778, 47.348271], [8.521362, 47.347973], [8.520947, 47.347673], [8.520535, 47.347371], [8.520393, 47.347269], [8.520259, 47.347161], [8.520135, 47.347049], [8.519946, 47.346875], [8.519777, 47.346691], [8.51963, 47.346499], [8.519506, 47.3463], [8.51941, 47.346115], [8.519337, 47.345926], [8.519286, 47.345733], [8.519246, 47.345477], [8.519241, 47.34522], [8.519273, 47.344964], [8.51934, 47.344711], [8.519446, 47.344468], [8.519576, 47.344232], [8.519729, 47.344002], [8.520006, 47.343672], [8.520302, 47.343349], [8.520615, 47.343034], [8.520826, 47.342811], [8.521024, 47.342583], [8.521209, 47.342349], [8.521459, 47.342026], [8.521664, 47.34169], [8.521825, 47.341342], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2133", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.572508, 47.411255], [8.572548, 47.411278], [8.57259, 47.411298], [8.572635, 47.411316], [8.572752, 47.411363], [8.572869, 47.411411], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "2135", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.327836, 8.530504, 47.328897], "geometry": {"coordinates": [[[8.530504, 47.327836], [8.530309, 47.328193], [8.5301, 47.328547], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2138", "properties": {}, "type": "Feature"}, {"bbox": [8.522891, 47.354153, 8.524804, 47.367222], "geometry": {"coordinates": [[[8.524804, 47.354153], [8.52476, 47.354496], [8.524715, 47.354839], [8.52467, 47.355183], [8.524528, 47.35626], [8.524472, 47.356644], [8.524395, 47.357025], [8.524298, 47.357405], [8.524187, 47.357828], [8.524063, 47.358248], [8.523924, 47.358667], [8.523491, 47.359934], [8.523369, 47.360344], [8.523253, 47.360755], [8.523143, 47.361166], [8.523022, 47.361707], [8.522964, 47.361972], [8.522922, 47.362239], [8.522896, 47.362506], [8.522891, 47.362711], [8.522904, 47.362915], [8.522937, 47.363118], [8.52308, 47.363844], [8.523122, 47.364044], [8.523177, 47.364243], [8.523245, 47.36444], [8.523308, 47.364589], [8.523378, 47.364737], [8.523457, 47.364882], [8.523513, 47.364979], [8.523556, 47.365079], [8.523586, 47.36518], [8.523603, 47.365284], [8.523605, 47.365388], [8.523595, 47.365491], [8.523566, 47.365587], [8.523526, 47.365681], [8.523475, 47.365772], [8.523414, 47.36586], [8.523322, 47.365985], [8.523247, 47.366115], [8.52319, 47.366249], [8.523153, 47.366387], [8.523149, 47.366471], [8.523157, 47.366555], [8.523177, 47.366638], [8.523207, 47.366719], [8.523249, 47.366799], [8.523328, 47.36694], [8.52341, 47.367081], [8.523492, 47.367222]]], "type": "MultiLineString"}, "id": "2633", "properties": {}, "type": "Feature"}, {"bbox": [8.526028, 47.328897, 8.529879, 47.332927], "geometry": {"coordinates": [[[8.529879, 47.328897], [8.529083, 47.33], [8.528144, 47.331051], [8.527072, 47.33204], [8.526028, 47.332927]]], "type": "MultiLineString"}, "id": "2634", "properties": {}, "type": "Feature"}, {"bbox": [8.528171, 47.32782, 8.530333, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528667, 47.330262], [8.529129, 47.329709], [8.529554, 47.329143], [8.529842, 47.32871], [8.530102, 47.328269], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2742", "properties": {}, "type": "Feature"}, {"bbox": [8.522723, 47.33282, 8.525829, 47.337288], "geometry": {"coordinates": [[[8.522723, 47.337288], [8.522952, 47.336651], [8.523237, 47.336024], [8.523578, 47.335411], [8.524216, 47.334503], [8.524968, 47.333638], [8.525829, 47.33282]]], "type": "MultiLineString"}, "id": "2769", "properties": {}, "type": "Feature"}, {"bbox": [8.522937, 47.332927, 8.526028, 47.337319], "geometry": {"coordinates": [[[8.526028, 47.332927], [8.525895, 47.333043], [8.525764, 47.33316], [8.525635, 47.333278], [8.52548, 47.333424], [8.525328, 47.333573], [8.52518, 47.333722], [8.524932, 47.333986], [8.524695, 47.334255], [8.52447, 47.334529], [8.524301, 47.334747], [8.524139, 47.334968], [8.523985, 47.335191], [8.523823, 47.335441], [8.52367, 47.335694], [8.523527, 47.335949], [8.523428, 47.336139], [8.523334, 47.336329], [8.523245, 47.336521], [8.523151, 47.336739], [8.523064, 47.336958], [8.522984, 47.337179], [8.522968, 47.337226], [8.522952, 47.337272], [8.522937, 47.337319]]], "type": "MultiLineString"}, "id": "2833", "properties": {}, "type": "Feature"}, {"bbox": [8.525829, 47.3308, 8.528171, 47.33282], "geometry": {"coordinates": [[[8.525829, 47.33282], [8.526611, 47.332202], [8.527406, 47.331522], [8.528171, 47.3308]]], "type": "MultiLineString"}, "id": "3148", "properties": {}, "type": "Feature"}, {"bbox": [8.489448, 47.425979, 8.491976, 47.426324], "geometry": {"coordinates": [[[8.491976, 47.426324], [8.491897, 47.426316], [8.49143, 47.426266], [8.490971, 47.426208], [8.490512, 47.426146], [8.490054, 47.42608], [8.489448, 47.425979]]], "type": "MultiLineString"}, "id": "3364", "properties": {}, "type": "Feature"}, {"bbox": [8.553246, 47.427199, 8.556453, 47.428808], "geometry": {"coordinates": [[[8.553246, 47.428808], [8.55409, 47.428362], [8.554943, 47.427924], [8.555806, 47.427494], [8.556019, 47.427393], [8.556235, 47.427294], [8.556453, 47.427199]]], "type": "MultiLineString"}, "id": "3429", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.337319, 8.522937, 47.347638], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.52285, 47.337572], [8.522782, 47.337829], [8.522733, 47.338087], [8.522617, 47.338716], [8.522522, 47.339348], [8.522448, 47.33998], [8.522392, 47.340233], [8.522324, 47.340485], [8.522244, 47.340735], [8.522142, 47.340981], [8.522029, 47.341225], [8.521907, 47.341467], [8.521779, 47.341698], [8.521638, 47.341925], [8.521483, 47.342148], [8.521285, 47.34242], [8.521067, 47.342684], [8.520828, 47.34294], [8.520327, 47.343462], [8.520199, 47.343601], [8.520074, 47.343741], [8.519952, 47.343882], [8.519714, 47.344203], [8.519624, 47.344362], [8.51954, 47.344524], [8.519465, 47.344686], [8.519402, 47.3449], [8.519364, 47.345116], [8.519352, 47.345334], [8.519367, 47.345551], [8.519407, 47.345767], [8.519472, 47.345979], [8.519577, 47.346219], [8.519717, 47.346449], [8.519891, 47.346669], [8.520131, 47.346903], [8.520395, 47.347125], [8.52068, 47.347335], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "3820", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.521611, 47.347863], [8.521852, 47.348016], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "3938", "properties": {}, "type": "Feature"}, {"bbox": [8.522913, 47.349082, 8.524888, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524888, 47.351904], [8.524834, 47.351578], [8.524735, 47.351256], [8.52459, 47.350943], [8.524368, 47.350575], [8.524103, 47.35022], [8.523797, 47.349881], [8.523552, 47.349654], [8.523291, 47.349436], [8.523015, 47.349226], [8.522913, 47.349082]]], "type": "MultiLineString"}, "id": "3985", "properties": {}, "type": "Feature"}, {"bbox": [8.522434, 47.34874, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.524154, 47.350532], [8.523919, 47.350227], [8.523661, 47.349931], [8.523381, 47.349644], [8.523011, 47.349304], [8.522756, 47.349097], [8.52247, 47.348879], [8.522434, 47.34874]]], "type": "MultiLineString"}, "id": "3986", "properties": {}, "type": "Feature"}, {"bbox": [8.52424, 47.350696, 8.52478, 47.353795], "geometry": {"coordinates": [[[8.524679, 47.353795], [8.524647, 47.353619], [8.524739, 47.352935], [8.52478, 47.352533], [8.524769, 47.352131], [8.524707, 47.351731], [8.524593, 47.351336], [8.524486, 47.35112], [8.524368, 47.350907], [8.52424, 47.350696]]], "type": "MultiLineString"}, "id": "3987", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523697, 47.349417], [8.524037, 47.349647], [8.524219, 47.349786], [8.524391, 47.349931], [8.524554, 47.350081], [8.524691, 47.350233], [8.524815, 47.350391], [8.524924, 47.350553], [8.525102, 47.350888], [8.525156, 47.350996], [8.525223, 47.351101], [8.525302, 47.351202], [8.525546, 47.351422], [8.525588, 47.35146], [8.525625, 47.3515], [8.525656, 47.351542], [8.525682, 47.351586], [8.525701, 47.351632], [8.525715, 47.351678], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "3988", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.427389, 8.556374, 47.428918], "geometry": {"coordinates": [[[8.556374, 47.427389], [8.556227, 47.427456], [8.556079, 47.427523], [8.555932, 47.42759], [8.555074, 47.428022], [8.554228, 47.428464], [8.553396, 47.428918]]], "type": "MultiLineString"}, "id": "3998", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.524787, 47.350174], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.522759, 47.348706], [8.523956, 47.34953], [8.524249, 47.349735], [8.524526, 47.34995], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "4108", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525137, 47.354153], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523828, 47.3496], [8.524182, 47.349931], [8.524496, 47.35028], [8.524695, 47.350558], [8.524857, 47.350846], [8.524984, 47.351143], [8.525072, 47.351445], [8.525125, 47.351765], [8.525137, 47.352086], [8.525107, 47.352407], [8.52507, 47.352621], [8.52503, 47.352834], [8.524987, 47.353047], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "4109", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.523438, 47.349289], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.523438, 47.349289]]], "type": "MultiLineString"}, "id": "4110", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_a974ff9d5196392d1d03b7e35845a51b_add({"bbox": [8.489448, 47.32782, 8.573066, 47.428918], "features": [{"bbox": [8.489832, 47.425877, 8.49201, 47.426174], "geometry": {"coordinates": [[[8.489832, 47.425877], [8.490106, 47.42593], [8.490558, 47.425996], [8.491012, 47.426058], [8.491467, 47.426115], [8.491916, 47.426165], [8.49201, 47.426174]]], "type": "MultiLineString"}, "id": "462", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.573066, 47.411421], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.57253, 47.411245], [8.572589, 47.41126], [8.572647, 47.411277], [8.572786, 47.411326], [8.572925, 47.411374], [8.573066, 47.411421]]], "type": "MultiLineString"}, "id": "557", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522562, 47.348648], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.522562, 47.348648]]], "type": "MultiLineString"}, "id": "768", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.52412, 47.350575], [8.523774, 47.350158], [8.523385, 47.34976], [8.522954, 47.349382], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "770", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.350174, 8.525439, 47.354153], "geometry": {"coordinates": [[[8.524787, 47.350174], [8.524984, 47.350403], [8.525157, 47.350641], [8.525304, 47.350886], [8.525383, 47.351122], [8.525428, 47.351362], [8.525439, 47.351604], [8.525417, 47.351846], [8.525361, 47.352084], [8.524901, 47.353943], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "776", "properties": {}, "type": "Feature"}, {"bbox": [8.521938, 47.337288, 8.522723, 47.340986], "geometry": {"coordinates": [[[8.521938, 47.340986], [8.52207, 47.340589], [8.522176, 47.340188], [8.522256, 47.339784], [8.522478, 47.338292], [8.522531, 47.337954], [8.522613, 47.337619], [8.522723, 47.337288]]], "type": "MultiLineString"}, "id": "1232", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.524793, 47.350174], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.524622, 47.349976], [8.524793, 47.350142], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "1362", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572154, 47.411303], [8.572354, 47.411361], [8.57256, 47.411406], [8.572771, 47.411439], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "1618", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572959, 47.41148], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572013, 47.411282], [8.572068, 47.411308], [8.572126, 47.411331], [8.572398, 47.411396], [8.572676, 47.411446], [8.572959, 47.41148]]], "type": "MultiLineString"}, "id": "1663", "properties": {}, "type": "Feature"}, {"bbox": [8.493733, 47.425845, 8.498406, 47.426749], "geometry": {"coordinates": [[[8.493733, 47.425845], [8.494012, 47.425956], [8.494305, 47.426049], [8.494609, 47.426123], [8.494922, 47.426176], [8.495874, 47.426342], [8.496105, 47.426388], [8.496337, 47.426427], [8.496572, 47.42646], [8.496934, 47.426511], [8.497297, 47.426556], [8.497661, 47.426596], [8.497914, 47.426637], [8.498162, 47.426687], [8.498406, 47.426749]]], "type": "MultiLineString"}, "id": "1751", "properties": {}, "type": "Feature"}, {"bbox": [8.519241, 47.340986, 8.525016, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524151, 47.368262], [8.523806, 47.367908], [8.52359, 47.36768], [8.523395, 47.367443], [8.52322, 47.367199], [8.523076, 47.366956], [8.522955, 47.366707], [8.522858, 47.366454], [8.522779, 47.36619], [8.522725, 47.365923], [8.522696, 47.365654], [8.522662, 47.364671], [8.522641, 47.36389], [8.52264, 47.36361], [8.52265, 47.36333], [8.522671, 47.36305], [8.522701, 47.362739], [8.522748, 47.362428], [8.522813, 47.36212], [8.522943, 47.361502], [8.523009, 47.36115], [8.523109, 47.360742], [8.52322, 47.360335], [8.523344, 47.35993], [8.523789, 47.358609], [8.523929, 47.358207], [8.524052, 47.357802], [8.524158, 47.357395], [8.524238, 47.357019], [8.524303, 47.356641], [8.524353, 47.356262], [8.524485, 47.355241], [8.524531, 47.354871], [8.52458, 47.3545], [8.52463, 47.354129], [8.524679, 47.353795], [8.524764, 47.353611], [8.524892, 47.352927], [8.524952, 47.352634], [8.524993, 47.35234], [8.525016, 47.352044], [8.525006, 47.351769], [8.524963, 47.351496], [8.524888, 47.351226], [8.524775, 47.350936], [8.524624, 47.350654], [8.524436, 47.350383], [8.524287, 47.350195], [8.524118, 47.350015], [8.523931, 47.349843], [8.523757, 47.3497], [8.523577, 47.349561], [8.523391, 47.349425], [8.522913, 47.349082], [8.522434, 47.34874], [8.521778, 47.348271], [8.521362, 47.347973], [8.520947, 47.347673], [8.520535, 47.347371], [8.520393, 47.347269], [8.520259, 47.347161], [8.520135, 47.347049], [8.519946, 47.346875], [8.519777, 47.346691], [8.51963, 47.346499], [8.519506, 47.3463], [8.51941, 47.346115], [8.519337, 47.345926], [8.519286, 47.345733], [8.519246, 47.345477], [8.519241, 47.34522], [8.519273, 47.344964], [8.51934, 47.344711], [8.519446, 47.344468], [8.519576, 47.344232], [8.519729, 47.344002], [8.520006, 47.343672], [8.520302, 47.343349], [8.520615, 47.343034], [8.520826, 47.342811], [8.521024, 47.342583], [8.521209, 47.342349], [8.521459, 47.342026], [8.521664, 47.34169], [8.521825, 47.341342], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2133", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.572508, 47.411255], [8.572548, 47.411278], [8.57259, 47.411298], [8.572635, 47.411316], [8.572752, 47.411363], [8.572869, 47.411411], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "2135", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.327836, 8.530504, 47.328897], "geometry": {"coordinates": [[[8.530504, 47.327836], [8.530309, 47.328193], [8.5301, 47.328547], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2138", "properties": {}, "type": "Feature"}, {"bbox": [8.522891, 47.354153, 8.524804, 47.367222], "geometry": {"coordinates": [[[8.524804, 47.354153], [8.52476, 47.354496], [8.524715, 47.354839], [8.52467, 47.355183], [8.524528, 47.35626], [8.524472, 47.356644], [8.524395, 47.357025], [8.524298, 47.357405], [8.524187, 47.357828], [8.524063, 47.358248], [8.523924, 47.358667], [8.523491, 47.359934], [8.523369, 47.360344], [8.523253, 47.360755], [8.523143, 47.361166], [8.523022, 47.361707], [8.522964, 47.361972], [8.522922, 47.362239], [8.522896, 47.362506], [8.522891, 47.362711], [8.522904, 47.362915], [8.522937, 47.363118], [8.52308, 47.363844], [8.523122, 47.364044], [8.523177, 47.364243], [8.523245, 47.36444], [8.523308, 47.364589], [8.523378, 47.364737], [8.523457, 47.364882], [8.523513, 47.364979], [8.523556, 47.365079], [8.523586, 47.36518], [8.523603, 47.365284], [8.523605, 47.365388], [8.523595, 47.365491], [8.523566, 47.365587], [8.523526, 47.365681], [8.523475, 47.365772], [8.523414, 47.36586], [8.523322, 47.365985], [8.523247, 47.366115], [8.52319, 47.366249], [8.523153, 47.366387], [8.523149, 47.366471], [8.523157, 47.366555], [8.523177, 47.366638], [8.523207, 47.366719], [8.523249, 47.366799], [8.523328, 47.36694], [8.52341, 47.367081], [8.523492, 47.367222]]], "type": "MultiLineString"}, "id": "2633", "properties": {}, "type": "Feature"}, {"bbox": [8.526028, 47.328897, 8.529879, 47.332927], "geometry": {"coordinates": [[[8.529879, 47.328897], [8.529083, 47.33], [8.528144, 47.331051], [8.527072, 47.33204], [8.526028, 47.332927]]], "type": "MultiLineString"}, "id": "2634", "properties": {}, "type": "Feature"}, {"bbox": [8.528171, 47.32782, 8.530333, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528667, 47.330262], [8.529129, 47.329709], [8.529554, 47.329143], [8.529842, 47.32871], [8.530102, 47.328269], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2742", "properties": {}, "type": "Feature"}, {"bbox": [8.522723, 47.33282, 8.525829, 47.337288], "geometry": {"coordinates": [[[8.522723, 47.337288], [8.522952, 47.336651], [8.523237, 47.336024], [8.523578, 47.335411], [8.524216, 47.334503], [8.524968, 47.333638], [8.525829, 47.33282]]], "type": "MultiLineString"}, "id": "2769", "properties": {}, "type": "Feature"}, {"bbox": [8.522937, 47.332927, 8.526028, 47.337319], "geometry": {"coordinates": [[[8.526028, 47.332927], [8.525895, 47.333043], [8.525764, 47.33316], [8.525635, 47.333278], [8.52548, 47.333424], [8.525328, 47.333573], [8.52518, 47.333722], [8.524932, 47.333986], [8.524695, 47.334255], [8.52447, 47.334529], [8.524301, 47.334747], [8.524139, 47.334968], [8.523985, 47.335191], [8.523823, 47.335441], [8.52367, 47.335694], [8.523527, 47.335949], [8.523428, 47.336139], [8.523334, 47.336329], [8.523245, 47.336521], [8.523151, 47.336739], [8.523064, 47.336958], [8.522984, 47.337179], [8.522968, 47.337226], [8.522952, 47.337272], [8.522937, 47.337319]]], "type": "MultiLineString"}, "id": "2833", "properties": {}, "type": "Feature"}, {"bbox": [8.525829, 47.3308, 8.528171, 47.33282], "geometry": {"coordinates": [[[8.525829, 47.33282], [8.526611, 47.332202], [8.527406, 47.331522], [8.528171, 47.3308]]], "type": "MultiLineString"}, "id": "3148", "properties": {}, "type": "Feature"}, {"bbox": [8.489448, 47.425979, 8.491976, 47.426324], "geometry": {"coordinates": [[[8.491976, 47.426324], [8.491897, 47.426316], [8.49143, 47.426266], [8.490971, 47.426208], [8.490512, 47.426146], [8.490054, 47.42608], [8.489448, 47.425979]]], "type": "MultiLineString"}, "id": "3364", "properties": {}, "type": "Feature"}, {"bbox": [8.553246, 47.427199, 8.556453, 47.428808], "geometry": {"coordinates": [[[8.553246, 47.428808], [8.55409, 47.428362], [8.554943, 47.427924], [8.555806, 47.427494], [8.556019, 47.427393], [8.556235, 47.427294], [8.556453, 47.427199]]], "type": "MultiLineString"}, "id": "3429", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.337319, 8.522937, 47.347638], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.52285, 47.337572], [8.522782, 47.337829], [8.522733, 47.338087], [8.522617, 47.338716], [8.522522, 47.339348], [8.522448, 47.33998], [8.522392, 47.340233], [8.522324, 47.340485], [8.522244, 47.340735], [8.522142, 47.340981], [8.522029, 47.341225], [8.521907, 47.341467], [8.521779, 47.341698], [8.521638, 47.341925], [8.521483, 47.342148], [8.521285, 47.34242], [8.521067, 47.342684], [8.520828, 47.34294], [8.520327, 47.343462], [8.520199, 47.343601], [8.520074, 47.343741], [8.519952, 47.343882], [8.519714, 47.344203], [8.519624, 47.344362], [8.51954, 47.344524], [8.519465, 47.344686], [8.519402, 47.3449], [8.519364, 47.345116], [8.519352, 47.345334], [8.519367, 47.345551], [8.519407, 47.345767], [8.519472, 47.345979], [8.519577, 47.346219], [8.519717, 47.346449], [8.519891, 47.346669], [8.520131, 47.346903], [8.520395, 47.347125], [8.52068, 47.347335], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "3820", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.521611, 47.347863], [8.521852, 47.348016], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "3938", "properties": {}, "type": "Feature"}, {"bbox": [8.522913, 47.349082, 8.524888, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524888, 47.351904], [8.524834, 47.351578], [8.524735, 47.351256], [8.52459, 47.350943], [8.524368, 47.350575], [8.524103, 47.35022], [8.523797, 47.349881], [8.523552, 47.349654], [8.523291, 47.349436], [8.523015, 47.349226], [8.522913, 47.349082]]], "type": "MultiLineString"}, "id": "3985", "properties": {}, "type": "Feature"}, {"bbox": [8.522434, 47.34874, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.524154, 47.350532], [8.523919, 47.350227], [8.523661, 47.349931], [8.523381, 47.349644], [8.523011, 47.349304], [8.522756, 47.349097], [8.52247, 47.348879], [8.522434, 47.34874]]], "type": "MultiLineString"}, "id": "3986", "properties": {}, "type": "Feature"}, {"bbox": [8.52424, 47.350696, 8.52478, 47.353795], "geometry": {"coordinates": [[[8.524679, 47.353795], [8.524647, 47.353619], [8.524739, 47.352935], [8.52478, 47.352533], [8.524769, 47.352131], [8.524707, 47.351731], [8.524593, 47.351336], [8.524486, 47.35112], [8.524368, 47.350907], [8.52424, 47.350696]]], "type": "MultiLineString"}, "id": "3987", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523697, 47.349417], [8.524037, 47.349647], [8.524219, 47.349786], [8.524391, 47.349931], [8.524554, 47.350081], [8.524691, 47.350233], [8.524815, 47.350391], [8.524924, 47.350553], [8.525102, 47.350888], [8.525156, 47.350996], [8.525223, 47.351101], [8.525302, 47.351202], [8.525546, 47.351422], [8.525588, 47.35146], [8.525625, 47.3515], [8.525656, 47.351542], [8.525682, 47.351586], [8.525701, 47.351632], [8.525715, 47.351678], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "3988", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.427389, 8.556374, 47.428918], "geometry": {"coordinates": [[[8.556374, 47.427389], [8.556227, 47.427456], [8.556079, 47.427523], [8.555932, 47.42759], [8.555074, 47.428022], [8.554228, 47.428464], [8.553396, 47.428918]]], "type": "MultiLineString"}, "id": "3998", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.524787, 47.350174], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.522759, 47.348706], [8.523956, 47.34953], [8.524249, 47.349735], [8.524526, 47.34995], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "4108", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525137, 47.354153], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523828, 47.3496], [8.524182, 47.349931], [8.524496, 47.35028], [8.524695, 47.350558], [8.524857, 47.350846], [8.524984, 47.351143], [8.525072, 47.351445], [8.525125, 47.351765], [8.525137, 47.352086], [8.525107, 47.352407], [8.52507, 47.352621], [8.52503, 47.352834], [8.524987, 47.353047], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "4109", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.523438, 47.349289], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.523438, 47.349289]]], "type": "MultiLineString"}, "id": "4110", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_7756f90630855e4ae3c10f473342d98b_onEachFeature(feature, layer) {\n", + " function geo_json_6bb1623050cb4e0ec89ed5a45da41c4b_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_7756f90630855e4ae3c10f473342d98b = L.geoJson(null, {\n", - " onEachFeature: geo_json_7756f90630855e4ae3c10f473342d98b_onEachFeature,\n", + " var geo_json_6bb1623050cb4e0ec89ed5a45da41c4b = L.geoJson(null, {\n", + " onEachFeature: geo_json_6bb1623050cb4e0ec89ed5a45da41c4b_onEachFeature,\n", " \n", " color: "green",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_7756f90630855e4ae3c10f473342d98b_add (data) {\n", - " geo_json_7756f90630855e4ae3c10f473342d98b\n", + " function geo_json_6bb1623050cb4e0ec89ed5a45da41c4b_add (data) {\n", + " geo_json_6bb1623050cb4e0ec89ed5a45da41c4b\n", " .addData(data);\n", " }\n", - " geo_json_7756f90630855e4ae3c10f473342d98b_add({"bbox": [8.473817, 47.329996, 8.588909, 47.430697], "features": [{"bbox": [8.52537, 47.344522, 8.526618, 47.346441], "geometry": {"coordinates": [[[8.526618, 47.344522], [8.526607, 47.344546], [8.526319, 47.345263], [8.526063, 47.345826], [8.525971, 47.345962], [8.525799, 47.346123], [8.52537, 47.346441]]], "type": "MultiLineString"}, "id": "0", "properties": {}, "type": "Feature"}, {"bbox": [8.507275, 47.362922, 8.507933, 47.363372], "geometry": {"coordinates": [[[8.507933, 47.363372], [8.507275, 47.362922]]], "type": "MultiLineString"}, "id": "6", "properties": {}, "type": "Feature"}, {"bbox": [8.571312, 47.404493, 8.571907, 47.404839], "geometry": {"coordinates": [[[8.571907, 47.404493], [8.571312, 47.404839]]], "type": "MultiLineString"}, "id": "20", "properties": {}, "type": "Feature"}, {"bbox": [8.556426, 47.355728, 8.557419, 47.356342], "geometry": {"coordinates": [[[8.556426, 47.355728], [8.556525, 47.355821], [8.557419, 47.356342]]], "type": "MultiLineString"}, "id": "49", "properties": {}, "type": "Feature"}, {"bbox": [8.530657, 47.369654, 8.530854, 47.36977], "geometry": {"coordinates": [[[8.530854, 47.36977], [8.530657, 47.369654]]], "type": "MultiLineString"}, "id": "73", "properties": {}, "type": "Feature"}, {"bbox": [8.516052, 47.379632, 8.516431, 47.379785], "geometry": {"coordinates": [[[8.516052, 47.379632], [8.516431, 47.379785]]], "type": "MultiLineString"}, "id": "108", "properties": {}, "type": "Feature"}, {"bbox": [8.506411, 47.357432, 8.507645, 47.358833], "geometry": {"coordinates": [[[8.507645, 47.357432], [8.506411, 47.358833]]], "type": "MultiLineString"}, "id": "116", "properties": {}, "type": "Feature"}, {"bbox": [8.522213, 47.372919, 8.524098, 47.374107], "geometry": {"coordinates": [[[8.524098, 47.372919], [8.522213, 47.374107]]], "type": "MultiLineString"}, "id": "119", "properties": {}, "type": "Feature"}, {"bbox": [8.55933, 47.364188, 8.559794, 47.364625], "geometry": {"coordinates": [[[8.55933, 47.364188], [8.559794, 47.364625]]], "type": "MultiLineString"}, "id": "152", "properties": {}, "type": "Feature"}, {"bbox": [8.506079, 47.421856, 8.506808, 47.423098], "geometry": {"coordinates": [[[8.506808, 47.423098], [8.506079, 47.421856]]], "type": "MultiLineString"}, "id": "153", "properties": {}, "type": "Feature"}, {"bbox": [8.504725, 47.400335, 8.505107, 47.400546], "geometry": {"coordinates": [[[8.505107, 47.400335], [8.504725, 47.400546]]], "type": "MultiLineString"}, "id": "154", "properties": {}, "type": "Feature"}, {"bbox": [8.516266, 47.389102, 8.517307, 47.389447], "geometry": {"coordinates": [[[8.516266, 47.389447], [8.516973, 47.389213], [8.517307, 47.389102]]], "type": "MultiLineString"}, "id": "155", "properties": {}, "type": "Feature"}, {"bbox": [8.485704, 47.382034, 8.486363, 47.382327], "geometry": {"coordinates": [[[8.486363, 47.382034], [8.486256, 47.382076], [8.485704, 47.382327]]], "type": "MultiLineString"}, "id": "158", "properties": {}, "type": "Feature"}, {"bbox": [8.512933, 47.415712, 8.513599, 47.416645], "geometry": {"coordinates": [[[8.512933, 47.415712], [8.513017, 47.415829], [8.513599, 47.416645]]], "type": "MultiLineString"}, "id": "163", "properties": {}, "type": "Feature"}, {"bbox": [8.485613, 47.387026, 8.486328, 47.387179], "geometry": {"coordinates": [[[8.486328, 47.387026], [8.485613, 47.387179]]], "type": "MultiLineString"}, "id": "172", "properties": {}, "type": "Feature"}, {"bbox": [8.504001, 47.363279, 8.505468, 47.364569], "geometry": {"coordinates": [[[8.505468, 47.363279], [8.504664, 47.363971], [8.504043, 47.364501], [8.504001, 47.364569]]], "type": "MultiLineString"}, "id": "186", "properties": {}, "type": "Feature"}, {"bbox": [8.503245, 47.360492, 8.504669, 47.361708], "geometry": {"coordinates": [[[8.504669, 47.360492], [8.503995, 47.361077], [8.503245, 47.361708]]], "type": "MultiLineString"}, "id": "191", "properties": {}, "type": "Feature"}, {"bbox": [8.498144, 47.384173, 8.499109, 47.384529], "geometry": {"coordinates": [[[8.499109, 47.384173], [8.498323, 47.384529], [8.498249, 47.384443], [8.498144, 47.384338]]], "type": "MultiLineString"}, "id": "201", "properties": {}, "type": "Feature"}, {"bbox": [8.525414, 47.416219, 8.527906, 47.416403], "geometry": {"coordinates": [[[8.527906, 47.416219], [8.527546, 47.416254], [8.526018, 47.416361], [8.525414, 47.416403]]], "type": "MultiLineString"}, "id": "216", "properties": {}, "type": "Feature"}, {"bbox": [8.512685, 47.372794, 8.513929, 47.373491], "geometry": {"coordinates": [[[8.513929, 47.373491], [8.512685, 47.372794]]], "type": "MultiLineString"}, "id": "218", "properties": {}, "type": "Feature"}, {"bbox": [8.527351, 47.391713, 8.528367, 47.392694], "geometry": {"coordinates": [[[8.527351, 47.391713], [8.527913, 47.392255], [8.528171, 47.392504], [8.528367, 47.392694]]], "type": "MultiLineString"}, "id": "224", "properties": {}, "type": "Feature"}, {"bbox": [8.527054, 47.383833, 8.529374, 47.384949], "geometry": {"coordinates": [[[8.529374, 47.383833], [8.528952, 47.384045], [8.528423, 47.384313], [8.527777, 47.384629], [8.527054, 47.384949]]], "type": "MultiLineString"}, "id": "228", "properties": {}, "type": "Feature"}, {"bbox": [8.58416, 47.399335, 8.585866, 47.400125], "geometry": {"coordinates": [[[8.585866, 47.399335], [8.585575, 47.399433], [8.585296, 47.399548], [8.585033, 47.399677], [8.58416, 47.400125]]], "type": "MultiLineString"}, "id": "229", "properties": {}, "type": "Feature"}, {"bbox": [8.48927, 47.375491, 8.492547, 47.377368], "geometry": {"coordinates": [[[8.492547, 47.377368], [8.49128, 47.376673], [8.491023, 47.376513], [8.48927, 47.375491]]], "type": "MultiLineString"}, "id": "234", "properties": {}, "type": "Feature"}, {"bbox": [8.538836, 47.396024, 8.538892, 47.396047], "geometry": {"coordinates": [[[8.538836, 47.396027], [8.538848, 47.396047], [8.538892, 47.396024]]], "type": "MultiLineString"}, "id": "243", "properties": {}, "type": "Feature"}, {"bbox": [8.516266, 47.389447, 8.51751, 47.391205], "geometry": {"coordinates": [[[8.516266, 47.389447], [8.516563, 47.389864], [8.516831, 47.390241], [8.51751, 47.391205]]], "type": "MultiLineString"}, "id": "251", "properties": {}, "type": "Feature"}, {"bbox": [8.506781, 47.357591, 8.508023, 47.359], "geometry": {"coordinates": [[[8.506781, 47.359], [8.508023, 47.357591]]], "type": "MultiLineString"}, "id": "261", "properties": {}, "type": "Feature"}, {"bbox": [8.528946, 47.382934, 8.530419, 47.384342], "geometry": {"coordinates": [[[8.528946, 47.382934], [8.529604, 47.383718], [8.529673, 47.383801], [8.530419, 47.384342]]], "type": "MultiLineString"}, "id": "264", "properties": {}, "type": "Feature"}, {"bbox": [8.571982, 47.359762, 8.572405, 47.359984], "geometry": {"coordinates": [[[8.571982, 47.359984], [8.572405, 47.359762]]], "type": "MultiLineString"}, "id": "286", "properties": {}, "type": "Feature"}, {"bbox": [8.525885, 47.41528, 8.527619, 47.416361], "geometry": {"coordinates": [[[8.527619, 47.415289], [8.527475, 47.41528], [8.525889, 47.415339], [8.525885, 47.415516], [8.525976, 47.416169], [8.526018, 47.416361]]], "type": "MultiLineString"}, "id": "293", "properties": {}, "type": "Feature"}, {"bbox": [8.54893, 47.382497, 8.549573, 47.382762], "geometry": {"coordinates": [[[8.54893, 47.382497], [8.549573, 47.382762]]], "type": "MultiLineString"}, "id": "311", "properties": {}, "type": "Feature"}, {"bbox": [8.517557, 47.366767, 8.518098, 47.367483], "geometry": {"coordinates": [[[8.518098, 47.366767], [8.518038, 47.366847], [8.517557, 47.367483]]], "type": "MultiLineString"}, "id": "317", "properties": {}, "type": "Feature"}, {"bbox": [8.556356, 47.36452, 8.557249, 47.364853], "geometry": {"coordinates": [[[8.556356, 47.36452], [8.557249, 47.364853]]], "type": "MultiLineString"}, "id": "318", "properties": {}, "type": "Feature"}, {"bbox": [8.545951, 47.367906, 8.54614, 47.368154], "geometry": {"coordinates": [[[8.54614, 47.367906], [8.545951, 47.368154]]], "type": "MultiLineString"}, "id": "339", "properties": {}, "type": "Feature"}, {"bbox": [8.478095, 47.385534, 8.479569, 47.38607], "geometry": {"coordinates": [[[8.479569, 47.385534], [8.479521, 47.385585], [8.478095, 47.38607]]], "type": "MultiLineString"}, "id": "343", "properties": {}, "type": "Feature"}, {"bbox": [8.552791, 47.421708, 8.553412, 47.421985], "geometry": {"coordinates": [[[8.552791, 47.421985], [8.553412, 47.421708]]], "type": "MultiLineString"}, "id": "348", "properties": {}, "type": "Feature"}, {"bbox": [8.516052, 47.379632, 8.516472, 47.379646], "geometry": {"coordinates": [[[8.516472, 47.379646], [8.516052, 47.379632]]], "type": "MultiLineString"}, "id": "359", "properties": {}, "type": "Feature"}, {"bbox": [8.572079, 47.357837, 8.572543, 47.357974], "geometry": {"coordinates": [[[8.572079, 47.357837], [8.572322, 47.357927], [8.572543, 47.357974]]], "type": "MultiLineString"}, "id": "363", "properties": {}, "type": "Feature"}, {"bbox": [8.535789, 47.378198, 8.5359, 47.37839], "geometry": {"coordinates": [[[8.535789, 47.378198], [8.5359, 47.37839]]], "type": "MultiLineString"}, "id": "392", "properties": {}, "type": "Feature"}, {"bbox": [8.487686, 47.37029, 8.489007, 47.371367], "geometry": {"coordinates": [[[8.487686, 47.371367], [8.487783, 47.371296], [8.489007, 47.37029]]], "type": "MultiLineString"}, "id": "395", "properties": {}, "type": "Feature"}, {"bbox": [8.564641, 47.362763, 8.565623, 47.363509], "geometry": {"coordinates": [[[8.564641, 47.363509], [8.564886, 47.363309], [8.565095, 47.363131], [8.565197, 47.36317], [8.565337, 47.363049], [8.565623, 47.362763]]], "type": "MultiLineString"}, "id": "399", "properties": {}, "type": "Feature"}, {"bbox": [8.532142, 47.378233, 8.53294, 47.378782], "geometry": {"coordinates": [[[8.532142, 47.378233], [8.53294, 47.378782]]], "type": "MultiLineString"}, "id": "406", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.409585, 8.544775, 47.40978], "geometry": {"coordinates": [[[8.544775, 47.40978], [8.544228, 47.409646], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "408", "properties": {}, "type": "Feature"}, {"bbox": [8.526073, 47.392102, 8.526817, 47.393003], "geometry": {"coordinates": [[[8.526073, 47.392102], [8.526817, 47.393003]]], "type": "MultiLineString"}, "id": "416", "properties": {}, "type": "Feature"}, {"bbox": [8.545231, 47.405207, 8.545914, 47.405681], "geometry": {"coordinates": [[[8.545898, 47.405207], [8.545914, 47.40558], [8.545516, 47.405633], [8.545231, 47.405681]]], "type": "MultiLineString"}, "id": "421", "properties": {}, "type": "Feature"}, {"bbox": [8.515839, 47.379632, 8.516052, 47.379947], "geometry": {"coordinates": [[[8.516052, 47.379632], [8.515839, 47.379947]]], "type": "MultiLineString"}, "id": "439", "properties": {}, "type": "Feature"}, {"bbox": [8.567282, 47.404875, 8.567443, 47.405386], "geometry": {"coordinates": [[[8.567282, 47.405386], [8.567438, 47.404892], [8.567443, 47.404875]]], "type": "MultiLineString"}, "id": "469", "properties": {}, "type": "Feature"}, {"bbox": [8.555733, 47.405127, 8.557398, 47.405864], "geometry": {"coordinates": [[[8.555733, 47.405864], [8.556435, 47.405567], [8.557203, 47.405227], [8.557398, 47.405127]]], "type": "MultiLineString"}, "id": "491", "properties": {}, "type": "Feature"}, {"bbox": [8.52677, 47.391896, 8.527873, 47.393296], "geometry": {"coordinates": [[[8.52677, 47.391896], [8.526829, 47.392005], [8.527444, 47.39276], [8.527812, 47.393221], [8.527873, 47.393296]]], "type": "MultiLineString"}, "id": "560", "properties": {}, "type": "Feature"}, {"bbox": [8.538107, 47.376442, 8.539475, 47.376775], "geometry": {"coordinates": [[[8.539475, 47.376442], [8.538901, 47.376579], [8.538806, 47.376602], [8.538287, 47.376725], [8.538107, 47.376775]]], "type": "MultiLineString"}, "id": "603", "properties": {}, "type": "Feature"}, {"bbox": [8.529527, 47.408596, 8.529974, 47.408821], "geometry": {"coordinates": [[[8.529974, 47.408821], [8.529527, 47.408596]]], "type": "MultiLineString"}, "id": "700", "properties": {}, "type": "Feature"}, {"bbox": [8.558815, 47.409441, 8.562087, 47.409502], "geometry": {"coordinates": [[[8.558815, 47.409502], [8.558957, 47.409477], [8.560253, 47.409496], [8.56047, 47.409441], [8.561246, 47.409447], [8.562087, 47.409465]]], "type": "MultiLineString"}, "id": "724", "properties": {}, "type": "Feature"}, {"bbox": [8.558894, 47.354327, 8.559292, 47.355088], "geometry": {"coordinates": [[[8.558894, 47.354327], [8.559292, 47.354535], [8.558942, 47.355001], [8.558946, 47.355088]]], "type": "MultiLineString"}, "id": "737", "properties": {}, "type": "Feature"}, {"bbox": [8.537622, 47.372287, 8.538331, 47.372317], "geometry": {"coordinates": [[[8.538331, 47.372317], [8.537628, 47.372298], [8.537626, 47.372294], [8.537624, 47.372289], [8.537622, 47.372287]]], "type": "MultiLineString"}, "id": "739", "properties": {}, "type": "Feature"}, {"bbox": [8.563949, 47.366365, 8.56442, 47.366586], "geometry": {"coordinates": [[[8.563949, 47.366365], [8.564363, 47.366564], [8.56442, 47.366586]]], "type": "MultiLineString"}, "id": "786", "properties": {}, "type": "Feature"}, {"bbox": [8.562411, 47.366105, 8.562897, 47.366584], "geometry": {"coordinates": [[[8.562411, 47.366105], [8.56259, 47.366281], [8.562897, 47.366584]]], "type": "MultiLineString"}, "id": "788", "properties": {}, "type": "Feature"}, {"bbox": [8.505686, 47.357122, 8.506906, 47.358506], "geometry": {"coordinates": [[[8.506906, 47.357122], [8.505686, 47.358506]]], "type": "MultiLineString"}, "id": "791", "properties": {}, "type": "Feature"}, {"bbox": [8.505468, 47.363279, 8.505863, 47.363516], "geometry": {"coordinates": [[[8.505863, 47.363516], [8.505468, 47.363279]]], "type": "MultiLineString"}, "id": "794", "properties": {}, "type": "Feature"}, {"bbox": [8.571907, 47.404257, 8.572311, 47.404493], "geometry": {"coordinates": [[[8.572311, 47.404257], [8.572304, 47.404262], [8.571907, 47.404493]]], "type": "MultiLineString"}, "id": "808", "properties": {}, "type": "Feature"}, {"bbox": [8.526372, 47.377011, 8.527403, 47.377384], "geometry": {"coordinates": [[[8.527403, 47.377011], [8.52693, 47.377175], [8.526799, 47.377224], [8.526372, 47.377384]]], "type": "MultiLineString"}, "id": "872", "properties": {}, "type": "Feature"}, {"bbox": [8.551181, 47.421985, 8.552791, 47.422702], "geometry": {"coordinates": [[[8.551181, 47.422702], [8.552791, 47.421985]]], "type": "MultiLineString"}, "id": "886", "properties": {}, "type": "Feature"}, {"bbox": [8.528288, 47.362613, 8.529264, 47.363529], "geometry": {"coordinates": [[[8.528288, 47.363529], [8.529181, 47.362622], [8.529264, 47.362613]]], "type": "MultiLineString"}, "id": "909", "properties": {}, "type": "Feature"}, {"bbox": [8.550493, 47.37944, 8.551023, 47.379916], "geometry": {"coordinates": [[[8.550493, 47.379916], [8.550751, 47.379684], [8.551023, 47.37944]]], "type": "MultiLineString"}, "id": "910", "properties": {}, "type": "Feature"}, {"bbox": [8.547811, 47.384522, 8.547892, 47.384891], "geometry": {"coordinates": [[[8.547811, 47.384522], [8.547821, 47.384646], [8.547848, 47.38477], [8.547892, 47.384891]]], "type": "MultiLineString"}, "id": "947", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.40978, 8.545097, 47.409859], "geometry": {"coordinates": [[[8.545097, 47.409859], [8.544775, 47.40978]]], "type": "MultiLineString"}, "id": "974", "properties": {}, "type": "Feature"}, {"bbox": [8.550782, 47.40447, 8.552381, 47.404758], "geometry": {"coordinates": [[[8.550782, 47.404758], [8.551256, 47.404722], [8.55152, 47.404686], [8.551778, 47.404633], [8.552027, 47.404564], [8.552381, 47.40447]]], "type": "MultiLineString"}, "id": "1008", "properties": {}, "type": "Feature"}, {"bbox": [8.552702, 47.404387, 8.553001, 47.404931], "geometry": {"coordinates": [[[8.552702, 47.404387], [8.552999, 47.404926], [8.553001, 47.404931]]], "type": "MultiLineString"}, "id": "1009", "properties": {}, "type": "Feature"}, {"bbox": [8.551825, 47.363138, 8.55335, 47.364187], "geometry": {"coordinates": [[[8.551825, 47.364187], [8.552069, 47.364006], [8.55237, 47.363783], [8.552606, 47.363607], [8.552981, 47.363313], [8.553195, 47.36319], [8.55335, 47.363138]]], "type": "MultiLineString"}, "id": "1051", "properties": {}, "type": "Feature"}, {"bbox": [8.547552, 47.384891, 8.547892, 47.385136], "geometry": {"coordinates": [[[8.547552, 47.385136], [8.547784, 47.384962], [8.547892, 47.384891]]], "type": "MultiLineString"}, "id": "1067", "properties": {}, "type": "Feature"}, {"bbox": [8.546939, 47.419173, 8.547623, 47.419722], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.54739, 47.419325], [8.546939, 47.419722]]], "type": "MultiLineString"}, "id": "1134", "properties": {}, "type": "Feature"}, {"bbox": [8.543284, 47.405681, 8.545231, 47.406309], "geometry": {"coordinates": [[[8.545231, 47.405681], [8.543284, 47.406309]]], "type": "MultiLineString"}, "id": "1150", "properties": {}, "type": "Feature"}, {"bbox": [8.523766, 47.348468, 8.524882, 47.34921], "geometry": {"coordinates": [[[8.524882, 47.34921], [8.523766, 47.348468]]], "type": "MultiLineString"}, "id": "1201", "properties": {}, "type": "Feature"}, {"bbox": [8.572311, 47.40418, 8.572416, 47.404257], "geometry": {"coordinates": [[[8.572416, 47.40418], [8.572311, 47.404257]]], "type": "MultiLineString"}, "id": "1209", "properties": {}, "type": "Feature"}, {"bbox": [8.528805, 47.393065, 8.529116, 47.393122], "geometry": {"coordinates": [[[8.528805, 47.393122], [8.529116, 47.393065]]], "type": "MultiLineString"}, "id": "1230", "properties": {}, "type": "Feature"}, {"bbox": [8.498266, 47.381148, 8.49949, 47.381697], "geometry": {"coordinates": [[[8.49949, 47.381148], [8.498955, 47.38138], [8.498811, 47.381446], [8.498266, 47.381697]]], "type": "MultiLineString"}, "id": "1271", "properties": {}, "type": "Feature"}, {"bbox": [8.543537, 47.40668, 8.544084, 47.407484], "geometry": {"coordinates": [[[8.543537, 47.40668], [8.544084, 47.407484]]], "type": "MultiLineString"}, "id": "1279", "properties": {}, "type": "Feature"}, {"bbox": [8.516505, 47.367124, 8.516578, 47.367147], "geometry": {"coordinates": [[[8.516578, 47.367147], [8.516517, 47.367127], [8.516505, 47.367124]]], "type": "MultiLineString"}, "id": "1296", "properties": {}, "type": "Feature"}, {"bbox": [8.498955, 47.38138, 8.500178, 47.382429], "geometry": {"coordinates": [[[8.500178, 47.382429], [8.499821, 47.382089], [8.499613, 47.382019], [8.498955, 47.38138]]], "type": "MultiLineString"}, "id": "1297", "properties": {}, "type": "Feature"}, {"bbox": [8.500634, 47.380116, 8.501869, 47.380658], "geometry": {"coordinates": [[[8.501869, 47.380116], [8.501586, 47.380248], [8.500634, 47.380658]]], "type": "MultiLineString"}, "id": "1305", "properties": {}, "type": "Feature"}, {"bbox": [8.49949, 47.381148, 8.500367, 47.381829], "geometry": {"coordinates": [[[8.500367, 47.381829], [8.500231, 47.381779], [8.499586, 47.381161], [8.49949, 47.381148]]], "type": "MultiLineString"}, "id": "1306", "properties": {}, "type": "Feature"}, {"bbox": [8.526192, 47.339286, 8.526595, 47.340827], "geometry": {"coordinates": [[[8.526192, 47.340827], [8.5264, 47.340342], [8.526448, 47.340212], [8.526483, 47.340079], [8.526504, 47.339945], [8.526595, 47.339286]]], "type": "MultiLineString"}, "id": "1312", "properties": {}, "type": "Feature"}, {"bbox": [8.553707, 47.35395, 8.555054, 47.354762], "geometry": {"coordinates": [[[8.553707, 47.35395], [8.553825, 47.354022], [8.554916, 47.354692], [8.555054, 47.354762]]], "type": "MultiLineString"}, "id": "1317", "properties": {}, "type": "Feature"}, {"bbox": [8.552917, 47.406998, 8.554289, 47.407345], "geometry": {"coordinates": [[[8.552917, 47.407345], [8.553887, 47.407112], [8.554289, 47.406998]]], "type": "MultiLineString"}, "id": "1325", "properties": {}, "type": "Feature"}, {"bbox": [8.516578, 47.367147, 8.517557, 47.367483], "geometry": {"coordinates": [[[8.517557, 47.367483], [8.516578, 47.367147]]], "type": "MultiLineString"}, "id": "1329", "properties": {}, "type": "Feature"}, {"bbox": [8.513894, 47.329996, 8.515213, 47.331906], "geometry": {"coordinates": [[[8.513894, 47.329996], [8.513914, 47.33013], [8.513951, 47.330261], [8.514007, 47.33039], [8.514079, 47.330515], [8.514168, 47.330634], [8.514358, 47.330861], [8.514398, 47.330898], [8.515213, 47.331906]]], "type": "MultiLineString"}, "id": "1332", "properties": {}, "type": "Feature"}, {"bbox": [8.478636, 47.386802, 8.478691, 47.386906], "geometry": {"coordinates": [[[8.478691, 47.386906], [8.478636, 47.386802]]], "type": "MultiLineString"}, "id": "1336", "properties": {}, "type": "Feature"}, {"bbox": [8.560341, 47.367959, 8.560743, 47.368346], "geometry": {"coordinates": [[[8.560341, 47.368346], [8.560743, 47.367959]]], "type": "MultiLineString"}, "id": "1358", "properties": {}, "type": "Feature"}, {"bbox": [8.55315, 47.422346, 8.553424, 47.422621], "geometry": {"coordinates": [[[8.55315, 47.422346], [8.553424, 47.422621]]], "type": "MultiLineString"}, "id": "1360", "properties": {}, "type": "Feature"}, {"bbox": [8.552791, 47.421985, 8.55315, 47.422346], "geometry": {"coordinates": [[[8.552791, 47.421985], [8.55315, 47.422346]]], "type": "MultiLineString"}, "id": "1363", "properties": {}, "type": "Feature"}, {"bbox": [8.548598, 47.419959, 8.549383, 47.420138], "geometry": {"coordinates": [[[8.548598, 47.420138], [8.549383, 47.419959], [8.549383, 47.419959]]], "type": "MultiLineString"}, "id": "1365", "properties": {}, "type": "Feature"}, {"bbox": [8.53791, 47.39513, 8.538836, 47.396027], "geometry": {"coordinates": [[[8.53791, 47.39513], [8.537967, 47.395179], [8.537932, 47.395212], [8.537975, 47.395229], [8.53883, 47.396018], [8.538836, 47.396027]]], "type": "MultiLineString"}, "id": "1381", "properties": {}, "type": "Feature"}, {"bbox": [8.553825, 47.35383, 8.555384, 47.354493], "geometry": {"coordinates": [[[8.553825, 47.354022], [8.554248, 47.35383], [8.555384, 47.354493]]], "type": "MultiLineString"}, "id": "1382", "properties": {}, "type": "Feature"}, {"bbox": [8.54408, 47.388507, 8.545131, 47.389221], "geometry": {"coordinates": [[[8.545131, 47.388507], [8.545054, 47.388559], [8.54408, 47.389221]]], "type": "MultiLineString"}, "id": "1386", "properties": {}, "type": "Feature"}, {"bbox": [8.551857, 47.407605, 8.553078, 47.407958], "geometry": {"coordinates": [[[8.551857, 47.407958], [8.552063, 47.40787], [8.553078, 47.407605]]], "type": "MultiLineString"}, "id": "1396", "properties": {}, "type": "Feature"}, {"bbox": [8.528382, 47.380035, 8.530281, 47.380713], "geometry": {"coordinates": [[[8.530281, 47.380035], [8.529009, 47.380519], [8.528382, 47.380713]]], "type": "MultiLineString"}, "id": "1412", "properties": {}, "type": "Feature"}, {"bbox": [8.53294, 47.378782, 8.533497, 47.379165], "geometry": {"coordinates": [[[8.53294, 47.378782], [8.533497, 47.379165]]], "type": "MultiLineString"}, "id": "1413", "properties": {}, "type": "Feature"}, {"bbox": [8.546349, 47.368229, 8.546834, 47.368788], "geometry": {"coordinates": [[[8.546834, 47.368229], [8.546349, 47.368788]]], "type": "MultiLineString"}, "id": "1416", "properties": {}, "type": "Feature"}, {"bbox": [8.538749, 47.420259, 8.538854, 47.420457], "geometry": {"coordinates": [[[8.538749, 47.420259], [8.538847, 47.420432], [8.538854, 47.420457]]], "type": "MultiLineString"}, "id": "1458", "properties": {}, "type": "Feature"}, {"bbox": [8.497491, 47.384529, 8.498323, 47.385239], "geometry": {"coordinates": [[[8.497742, 47.385239], [8.497491, 47.384976], [8.498036, 47.384718], [8.498135, 47.384614], [8.498323, 47.384529]]], "type": "MultiLineString"}, "id": "1486", "properties": {}, "type": "Feature"}, {"bbox": [8.57086, 47.361614, 8.571226, 47.362141], "geometry": {"coordinates": [[[8.571226, 47.361614], [8.57111, 47.361778], [8.57086, 47.362141]]], "type": "MultiLineString"}, "id": "1494", "properties": {}, "type": "Feature"}, {"bbox": [8.515637, 47.379342, 8.516052, 47.379638], "geometry": {"coordinates": [[[8.5157, 47.379342], [8.516052, 47.379632], [8.515637, 47.379638]]], "type": "MultiLineString"}, "id": "1509", "properties": {}, "type": "Feature"}, {"bbox": [8.525828, 47.35976, 8.526777, 47.359834], "geometry": {"coordinates": [[[8.526777, 47.359834], [8.525828, 47.35976]]], "type": "MultiLineString"}, "id": "1511", "properties": {}, "type": "Feature"}, {"bbox": [8.498526, 47.380854, 8.49949, 47.381446], "geometry": {"coordinates": [[[8.49949, 47.381148], [8.499209, 47.380854], [8.498526, 47.381149], [8.498811, 47.381446]]], "type": "MultiLineString"}, "id": "1515", "properties": {}, "type": "Feature"}, {"bbox": [8.520996, 47.378746, 8.521994, 47.379171], "geometry": {"coordinates": [[[8.521994, 47.378746], [8.521653, 47.378878], [8.52132, 47.37902], [8.520996, 47.379171]]], "type": "MultiLineString"}, "id": "1516", "properties": {}, "type": "Feature"}, {"bbox": [8.50472, 47.422239, 8.505556, 47.423666], "geometry": {"coordinates": [[[8.505556, 47.423666], [8.50472, 47.422239]]], "type": "MultiLineString"}, "id": "1527", "properties": {}, "type": "Feature"}, {"bbox": [8.548906, 47.382224, 8.549243, 47.382559], "geometry": {"coordinates": [[[8.548906, 47.382559], [8.54893, 47.382497], [8.549243, 47.382224]]], "type": "MultiLineString"}, "id": "1533", "properties": {}, "type": "Feature"}, {"bbox": [8.553032, 47.396715, 8.553442, 47.39746], "geometry": {"coordinates": [[[8.553032, 47.396715], [8.553442, 47.39746]]], "type": "MultiLineString"}, "id": "1536", "properties": {}, "type": "Feature"}, {"bbox": [8.50604, 47.357274, 8.507267, 47.358666], "geometry": {"coordinates": [[[8.50604, 47.358666], [8.507267, 47.357274]]], "type": "MultiLineString"}, "id": "1541", "properties": {}, "type": "Feature"}, {"bbox": [8.502099, 47.422975, 8.502928, 47.42439], "geometry": {"coordinates": [[[8.502928, 47.42439], [8.502099, 47.422975]]], "type": "MultiLineString"}, "id": "1544", "properties": {}, "type": "Feature"}, {"bbox": [8.538819, 47.394849, 8.539101, 47.395126], "geometry": {"coordinates": [[[8.539088, 47.395036], [8.538882, 47.394849], [8.538856, 47.394855], [8.538819, 47.394872], [8.539101, 47.395122], [8.539093, 47.395126]]], "type": "MultiLineString"}, "id": "1546", "properties": {}, "type": "Feature"}, {"bbox": [8.515375, 47.366831, 8.516505, 47.367124], "geometry": {"coordinates": [[[8.516505, 47.367124], [8.515375, 47.366831]]], "type": "MultiLineString"}, "id": "1576", "properties": {}, "type": "Feature"}, {"bbox": [8.551385, 47.422346, 8.55315, 47.423154], "geometry": {"coordinates": [[[8.551385, 47.423154], [8.55315, 47.422346]]], "type": "MultiLineString"}, "id": "1598", "properties": {}, "type": "Feature"}, {"bbox": [8.536749, 47.379731, 8.536921, 47.38002], "geometry": {"coordinates": [[[8.536749, 47.379731], [8.536921, 47.38002]]], "type": "MultiLineString"}, "id": "1602", "properties": {}, "type": "Feature"}, {"bbox": [8.534301, 47.380318, 8.534718, 47.380419], "geometry": {"coordinates": [[[8.534718, 47.380318], [8.534492, 47.380373], [8.534301, 47.380419]]], "type": "MultiLineString"}, "id": "1603", "properties": {}, "type": "Feature"}, {"bbox": [8.537189, 47.377184, 8.537852, 47.377777], "geometry": {"coordinates": [[[8.537189, 47.377184], [8.537852, 47.377777]]], "type": "MultiLineString"}, "id": "1610", "properties": {}, "type": "Feature"}, {"bbox": [8.526618, 47.344435, 8.52666, 47.344522], "geometry": {"coordinates": [[[8.52666, 47.344435], [8.526659, 47.344436], [8.526618, 47.344522]]], "type": "MultiLineString"}, "id": "1643", "properties": {}, "type": "Feature"}, {"bbox": [8.50468, 47.400546, 8.504725, 47.40057], "geometry": {"coordinates": [[[8.504725, 47.400546], [8.50468, 47.40057]]], "type": "MultiLineString"}, "id": "1644", "properties": {}, "type": "Feature"}, {"bbox": [8.507143, 47.357746, 8.508392, 47.359163], "geometry": {"coordinates": [[[8.508392, 47.357746], [8.507143, 47.359163]]], "type": "MultiLineString"}, "id": "1646", "properties": {}, "type": "Feature"}, {"bbox": [8.49666, 47.374919, 8.497954, 47.375484], "geometry": {"coordinates": [[[8.497954, 47.374919], [8.49666, 47.375484]]], "type": "MultiLineString"}, "id": "1672", "properties": {}, "type": "Feature"}, {"bbox": [8.51126, 47.356702, 8.511295, 47.356754], "geometry": {"coordinates": [[[8.511295, 47.356702], [8.51126, 47.356754]]], "type": "MultiLineString"}, "id": "1697", "properties": {}, "type": "Feature"}, {"bbox": [8.544599, 47.409032, 8.545471, 47.410737], "geometry": {"coordinates": [[[8.545447, 47.409032], [8.545458, 47.40906], [8.545466, 47.409089], [8.54547, 47.409118], [8.545471, 47.409147], [8.545468, 47.409177], [8.545461, 47.409206], [8.545451, 47.409234], [8.54542, 47.409288], [8.545097, 47.409859], [8.544832, 47.41033], [8.544638, 47.410673], [8.544599, 47.410737]]], "type": "MultiLineString"}, "id": "1707", "properties": {}, "type": "Feature"}, {"bbox": [8.52676, 47.342934, 8.528236, 47.344223], "geometry": {"coordinates": [[[8.528236, 47.342934], [8.52805, 47.343063], [8.527869, 47.343181], [8.527656, 47.343294], [8.52757, 47.343328], [8.527471, 47.343404], [8.527207, 47.343645], [8.52713, 47.343726], [8.526999, 47.343869], [8.526856, 47.344054], [8.526771, 47.344201], [8.52676, 47.344223]]], "type": "MultiLineString"}, "id": "1713", "properties": {}, "type": "Feature"}, {"bbox": [8.526708, 47.376184, 8.527793, 47.377224], "geometry": {"coordinates": [[[8.527793, 47.376184], [8.527758, 47.37622], [8.527719, 47.376253], [8.527676, 47.376285], [8.52763, 47.376315], [8.526767, 47.376693], [8.526757, 47.376698], [8.526748, 47.376704], [8.52674, 47.376711], [8.526732, 47.376718], [8.526726, 47.376725], [8.52672, 47.376733], [8.526715, 47.376741], [8.526712, 47.37675], [8.526709, 47.376758], [8.526708, 47.376767], [8.526718, 47.377034], [8.526724, 47.377074], [8.526735, 47.377113], [8.526751, 47.377151], [8.526773, 47.377188], [8.526799, 47.377224]]], "type": "MultiLineString"}, "id": "1787", "properties": {}, "type": "Feature"}, {"bbox": [8.55237, 47.363783, 8.552965, 47.364132], "geometry": {"coordinates": [[[8.55237, 47.363783], [8.552438, 47.363834], [8.552903, 47.364104], [8.552965, 47.364132]]], "type": "MultiLineString"}, "id": "1806", "properties": {}, "type": "Feature"}, {"bbox": [8.509798, 47.356754, 8.51126, 47.358314], "geometry": {"coordinates": [[[8.51126, 47.356754], [8.511094, 47.356999], [8.510639, 47.357594], [8.510504, 47.357736], [8.510353, 47.357894], [8.510185, 47.358044], [8.509999, 47.358184], [8.509798, 47.358314]]], "type": "MultiLineString"}, "id": "1852", "properties": {}, "type": "Feature"}, {"bbox": [8.529374, 47.383664, 8.529712, 47.383833], "geometry": {"coordinates": [[[8.529712, 47.383664], [8.529604, 47.383718], [8.529374, 47.383833]]], "type": "MultiLineString"}, "id": "1907", "properties": {}, "type": "Feature"}, {"bbox": [8.523176, 47.375895, 8.5234, 47.375955], "geometry": {"coordinates": [[[8.5234, 47.375895], [8.523291, 47.375933], [8.523216, 47.375941], [8.523176, 47.375955]]], "type": "MultiLineString"}, "id": "1910", "properties": {}, "type": "Feature"}, {"bbox": [8.562097, 47.360953, 8.56539, 47.361382], "geometry": {"coordinates": [[[8.562097, 47.361382], [8.562124, 47.36135], [8.562155, 47.36132], [8.562189, 47.361292], [8.562227, 47.361265], [8.562268, 47.361241], [8.562425, 47.361169], [8.562591, 47.361108], [8.562765, 47.361057], [8.562945, 47.361018], [8.56313, 47.36099], [8.563318, 47.360973], [8.564758, 47.360957], [8.56539, 47.360953]]], "type": "MultiLineString"}, "id": "1912", "properties": {}, "type": "Feature"}, {"bbox": [8.503505, 47.422641, 8.504401, 47.423962], "geometry": {"coordinates": [[[8.503505, 47.422641], [8.503642, 47.422775], [8.503675, 47.422809], [8.503706, 47.422845], [8.503733, 47.422881], [8.503757, 47.422917], [8.503778, 47.422954], [8.503796, 47.422991], [8.503811, 47.42302], [8.503826, 47.423048], [8.503843, 47.423077], [8.503848, 47.423084], [8.503853, 47.423092], [8.503857, 47.423099], [8.503857, 47.423099], [8.503941, 47.423205], [8.50399, 47.42327], [8.504036, 47.423337], [8.504078, 47.423405], [8.504401, 47.423962]]], "type": "MultiLineString"}, "id": "1917", "properties": {}, "type": "Feature"}, {"bbox": [8.526881, 47.356243, 8.526987, 47.356418], "geometry": {"coordinates": [[[8.526987, 47.356414], [8.526919, 47.356418], [8.52691, 47.356243], [8.526881, 47.356244]]], "type": "MultiLineString"}, "id": "1927", "properties": {}, "type": "Feature"}, {"bbox": [8.526249, 47.356265, 8.526278, 47.356464], "geometry": {"coordinates": [[[8.526278, 47.356265], [8.526249, 47.356266], [8.526258, 47.356464]]], "type": "MultiLineString"}, "id": "1928", "properties": {}, "type": "Feature"}, {"bbox": [8.503709, 47.365608, 8.506375, 47.366703], "geometry": {"coordinates": [[[8.505669, 47.366703], [8.505723, 47.366615], [8.506375, 47.365738], [8.506085, 47.365618], [8.504319, 47.365613], [8.504267, 47.365609], [8.504215, 47.365608], [8.504164, 47.365611], [8.504112, 47.365616], [8.504062, 47.365625], [8.504012, 47.365636], [8.503965, 47.36565], [8.503919, 47.365667], [8.503876, 47.365687], [8.503835, 47.365709], [8.503797, 47.365733], [8.503709, 47.365799]]], "type": "MultiLineString"}, "id": "1933", "properties": {}, "type": "Feature"}, {"bbox": [8.477064, 47.413605, 8.477449, 47.413708], "geometry": {"coordinates": [[[8.477449, 47.413605], [8.477244, 47.413666], [8.477064, 47.413708]]], "type": "MultiLineString"}, "id": "1935", "properties": {}, "type": "Feature"}, {"bbox": [8.538768, 47.39549, 8.53967, 47.396086], "geometry": {"coordinates": [[[8.538957, 47.396086], [8.538892, 47.396024], [8.53893, 47.396009], [8.538891, 47.395985], [8.53879, 47.395901], [8.53877, 47.39587], [8.538768, 47.395851], [8.538796, 47.395835], [8.5395, 47.39549], [8.539628, 47.395601], [8.539647, 47.395622], [8.53967, 47.395607]]], "type": "MultiLineString"}, "id": "1938", "properties": {}, "type": "Feature"}, {"bbox": [8.525959, 47.392504, 8.528171, 47.393442], "geometry": {"coordinates": [[[8.528171, 47.392504], [8.527444, 47.39276], [8.526817, 47.393003], [8.526073, 47.393277], [8.525959, 47.393442]]], "type": "MultiLineString"}, "id": "1943", "properties": {}, "type": "Feature"}, {"bbox": [8.478154, 47.386136, 8.478636, 47.386802], "geometry": {"coordinates": [[[8.478636, 47.386802], [8.478534, 47.386614], [8.478335, 47.386335], [8.478154, 47.386136]]], "type": "MultiLineString"}, "id": "1950", "properties": {}, "type": "Feature"}, {"bbox": [8.526278, 47.356244, 8.526881, 47.356265], "geometry": {"coordinates": [[[8.526881, 47.356244], [8.526278, 47.356265]]], "type": "MultiLineString"}, "id": "1959", "properties": {}, "type": "Feature"}, {"bbox": [8.53876, 47.394066, 8.539328, 47.394855], "geometry": {"coordinates": [[[8.539328, 47.394066], [8.538827, 47.394695], [8.53876, 47.394789], [8.538856, 47.394855]]], "type": "MultiLineString"}, "id": "1977", "properties": {}, "type": "Feature"}, {"bbox": [8.534541, 47.393906, 8.535437, 47.394852], "geometry": {"coordinates": [[[8.535437, 47.393906], [8.535317, 47.394019], [8.535196, 47.394155], [8.534685, 47.394711], [8.534556, 47.394839], [8.534541, 47.394852]]], "type": "MultiLineString"}, "id": "1993", "properties": {}, "type": "Feature"}, {"bbox": [8.537491, 47.385024, 8.538507, 47.385243], "geometry": {"coordinates": [[[8.538507, 47.385226], [8.538392, 47.385191], [8.538006, 47.385042], [8.537994, 47.385037], [8.537983, 47.385033], [8.53797, 47.38503], [8.537957, 47.385027], [8.537944, 47.385025], [8.537931, 47.385024], [8.537918, 47.385024], [8.537904, 47.385024], [8.537891, 47.385025], [8.537878, 47.385027], [8.537865, 47.38503], [8.537853, 47.385033], [8.537841, 47.385037], [8.537829, 47.385042], [8.537491, 47.385243]]], "type": "MultiLineString"}, "id": "1996", "properties": {}, "type": "Feature"}, {"bbox": [8.512351, 47.366891, 8.514606, 47.3687], "geometry": {"coordinates": [[[8.514606, 47.366891], [8.514498, 47.36696], [8.513806, 47.367506], [8.51299, 47.368152], [8.512753, 47.36835], [8.512426, 47.368634], [8.512351, 47.3687]]], "type": "MultiLineString"}, "id": "1997", "properties": {}, "type": "Feature"}, {"bbox": [8.557414, 47.406736, 8.557575, 47.408177], "geometry": {"coordinates": [[[8.557414, 47.406736], [8.557479, 47.406906], [8.55749, 47.406935], [8.55753, 47.407078], [8.557548, 47.407164], [8.557564, 47.407266], [8.557568, 47.407307], [8.557573, 47.407384], [8.557575, 47.407484], [8.557557, 47.407974], [8.557546, 47.408177]]], "type": "MultiLineString"}, "id": "2005", "properties": {}, "type": "Feature"}, {"bbox": [8.549383, 47.419959, 8.550329, 47.420932], "geometry": {"coordinates": [[[8.549383, 47.419959], [8.550095, 47.420645], [8.550177, 47.420739], [8.550255, 47.420834], [8.550329, 47.420932]]], "type": "MultiLineString"}, "id": "2009", "properties": {}, "type": "Feature"}, {"bbox": [8.526915, 47.356418, 8.526928, 47.356593], "geometry": {"coordinates": [[[8.526915, 47.356593], [8.526928, 47.356592], [8.526919, 47.356418]]], "type": "MultiLineString"}, "id": "2023", "properties": {}, "type": "Feature"}, {"bbox": [8.526273, 47.356593, 8.526915, 47.356597], "geometry": {"coordinates": [[[8.526273, 47.356597], [8.526915, 47.356593]]], "type": "MultiLineString"}, "id": "2024", "properties": {}, "type": "Feature"}, {"bbox": [8.526258, 47.356464, 8.526273, 47.356597], "geometry": {"coordinates": [[[8.526258, 47.356464], [8.526265, 47.356597], [8.526273, 47.356597]]], "type": "MultiLineString"}, "id": "2066", "properties": {}, "type": "Feature"}, {"bbox": [8.538056, 47.398798, 8.540413, 47.401233], "geometry": {"coordinates": [[[8.540413, 47.398798], [8.540303, 47.398895], [8.539871, 47.399347], [8.539068, 47.400178], [8.538251, 47.401026], [8.538056, 47.401233]]], "type": "MultiLineString"}, "id": "2076", "properties": {}, "type": "Feature"}, {"bbox": [8.519826, 47.338338, 8.520696, 47.339026], "geometry": {"coordinates": [[[8.519826, 47.338765], [8.519879, 47.338764], [8.51988, 47.338838], [8.519924, 47.338837], [8.519927, 47.339005], [8.520257, 47.339002], [8.520257, 47.339026], [8.520387, 47.339025], [8.520517, 47.339024], [8.520696, 47.339016], [8.520679, 47.338826], [8.520436, 47.338811], [8.520439, 47.338786], [8.520348, 47.33878], [8.52038, 47.338539], [8.520346, 47.338505], [8.520365, 47.338369], [8.519885, 47.338338], [8.519873, 47.338538], [8.519879, 47.338764]]], "type": "MultiLineString"}, "id": "2120", "properties": {}, "type": "Feature"}, {"bbox": [8.49895, 47.42382, 8.499811, 47.425289], "geometry": {"coordinates": [[[8.499811, 47.425289], [8.49895, 47.42382]]], "type": "MultiLineString"}, "id": "2149", "properties": {}, "type": "Feature"}, {"bbox": [8.547892, 47.384891, 8.547939, 47.385062], "geometry": {"coordinates": [[[8.547892, 47.384891], [8.547922, 47.385015], [8.547939, 47.385062]]], "type": "MultiLineString"}, "id": "2155", "properties": {}, "type": "Feature"}, {"bbox": [8.536458, 47.393689, 8.53664, 47.393935], "geometry": {"coordinates": [[[8.53664, 47.393689], [8.536585, 47.393773], [8.536524, 47.393855], [8.536458, 47.393935]]], "type": "MultiLineString"}, "id": "2174", "properties": {}, "type": "Feature"}, {"bbox": [8.491209, 47.37608, 8.491388, 47.376274], "geometry": {"coordinates": [[[8.491209, 47.376274], [8.491264, 47.376207], [8.491324, 47.376142], [8.491388, 47.37608]]], "type": "MultiLineString"}, "id": "2183", "properties": {}, "type": "Feature"}, {"bbox": [8.588838, 47.40312, 8.588909, 47.404009], "geometry": {"coordinates": [[[8.588838, 47.40312], [8.588883, 47.403398], [8.588904, 47.403527], [8.588909, 47.403657], [8.588898, 47.403786], [8.588871, 47.403914], [8.588838, 47.404009]]], "type": "MultiLineString"}, "id": "2186", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393122, 8.528805, 47.393195], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528805, 47.393122]]], "type": "MultiLineString"}, "id": "2216", "properties": {}, "type": "Feature"}, {"bbox": [8.513599, 47.416645, 8.513626, 47.416683], "geometry": {"coordinates": [[[8.513599, 47.416645], [8.513626, 47.416683]]], "type": "MultiLineString"}, "id": "2219", "properties": {}, "type": "Feature"}, {"bbox": [8.52666, 47.344223, 8.52676, 47.344435], "geometry": {"coordinates": [[[8.52676, 47.344223], [8.526733, 47.34428], [8.52666, 47.344435]]], "type": "MultiLineString"}, "id": "2262", "properties": {}, "type": "Feature"}, {"bbox": [8.539433, 47.410355, 8.539997, 47.410369], "geometry": {"coordinates": [[[8.539997, 47.410355], [8.539433, 47.410369]]], "type": "MultiLineString"}, "id": "2279", "properties": {}, "type": "Feature"}, {"bbox": [8.552381, 47.404147, 8.553593, 47.40447], "geometry": {"coordinates": [[[8.552381, 47.40447], [8.552702, 47.404387], [8.553279, 47.404225], [8.553593, 47.404147]]], "type": "MultiLineString"}, "id": "2292", "properties": {}, "type": "Feature"}, {"bbox": [8.540441, 47.393529, 8.540491, 47.393963], "geometry": {"coordinates": [[[8.540441, 47.393529], [8.540441, 47.393688], [8.540449, 47.393829], [8.540491, 47.393963]]], "type": "MultiLineString"}, "id": "2301", "properties": {}, "type": "Feature"}, {"bbox": [8.535968, 47.393935, 8.536458, 47.39439], "geometry": {"coordinates": [[[8.536458, 47.393935], [8.536316, 47.394096], [8.536152, 47.394248], [8.535968, 47.39439]]], "type": "MultiLineString"}, "id": "2321", "properties": {}, "type": "Feature"}, {"bbox": [8.526832, 47.339496, 8.527746, 47.341023], "geometry": {"coordinates": [[[8.526832, 47.341023], [8.527137, 47.340686], [8.527254, 47.340559], [8.527355, 47.340425], [8.527439, 47.340286], [8.527507, 47.340143], [8.527737, 47.339519], [8.527746, 47.339496]]], "type": "MultiLineString"}, "id": "2355", "properties": {}, "type": "Feature"}, {"bbox": [8.526178, 47.356463, 8.526258, 47.356464], "geometry": {"coordinates": [[[8.526178, 47.356463], [8.526258, 47.356464]]], "type": "MultiLineString"}, "id": "2360", "properties": {}, "type": "Feature"}, {"bbox": [8.535789, 47.378034, 8.536395, 47.378198], "geometry": {"coordinates": [[[8.535789, 47.378198], [8.536395, 47.378034]]], "type": "MultiLineString"}, "id": "2361", "properties": {}, "type": "Feature"}, {"bbox": [8.537391, 47.430011, 8.540104, 47.430697], "geometry": {"coordinates": [[[8.540104, 47.430011], [8.538975, 47.430491], [8.538568, 47.430545], [8.537568, 47.430687], [8.537391, 47.430697]]], "type": "MultiLineString"}, "id": "2371", "properties": {}, "type": "Feature"}, {"bbox": [8.52753, 47.415001, 8.528055, 47.416689], "geometry": {"coordinates": [[[8.52753, 47.415001], [8.527619, 47.415289], [8.527906, 47.416219], [8.528055, 47.416689]]], "type": "MultiLineString"}, "id": "2384", "properties": {}, "type": "Feature"}, {"bbox": [8.577241, 47.361115, 8.578021, 47.361824], "geometry": {"coordinates": [[[8.577241, 47.361824], [8.577244, 47.361822], [8.577267, 47.361808], [8.577288, 47.361793], [8.578021, 47.361115]]], "type": "MultiLineString"}, "id": "2385", "properties": {}, "type": "Feature"}, {"bbox": [8.499915, 47.423556, 8.50078, 47.425035], "geometry": {"coordinates": [[[8.50078, 47.425035], [8.499915, 47.423556]]], "type": "MultiLineString"}, "id": "2419", "properties": {}, "type": "Feature"}, {"bbox": [8.537967, 47.395126, 8.539093, 47.395497], "geometry": {"coordinates": [[[8.539093, 47.395126], [8.538365, 47.395497], [8.538307, 47.395451], [8.538207, 47.395359], [8.537994, 47.395167], [8.537967, 47.395179]]], "type": "MultiLineString"}, "id": "2420", "properties": {}, "type": "Feature"}, {"bbox": [8.56259, 47.365404, 8.564811, 47.366281], "geometry": {"coordinates": [[[8.56259, 47.366281], [8.562827, 47.36617], [8.563463, 47.365882], [8.564811, 47.365404]]], "type": "MultiLineString"}, "id": "2465", "properties": {}, "type": "Feature"}, {"bbox": [8.518101, 47.333969, 8.518478, 47.335046], "geometry": {"coordinates": [[[8.5183, 47.335046], [8.518298, 47.335022], [8.518299, 47.334999], [8.518303, 47.334976], [8.51831, 47.334953], [8.518319, 47.33493], [8.518332, 47.334909], [8.518446, 47.33466], [8.518464, 47.334602], [8.518475, 47.334543], [8.518478, 47.334484], [8.518474, 47.334424], [8.518462, 47.334366], [8.518443, 47.334308], [8.518416, 47.334251], [8.518383, 47.334196], [8.518343, 47.334143], [8.518296, 47.334093], [8.518242, 47.334051], [8.518183, 47.334012], [8.518119, 47.333977], [8.518101, 47.333969]]], "type": "MultiLineString"}, "id": "2489", "properties": {}, "type": "Feature"}, {"bbox": [8.538394, 47.420457, 8.539161, 47.421639], "geometry": {"coordinates": [[[8.538854, 47.420457], [8.539102, 47.421359], [8.539159, 47.421578], [8.53916, 47.421583], [8.539161, 47.421587], [8.53916, 47.421591], [8.53916, 47.421596], [8.539158, 47.4216], [8.539156, 47.421604], [8.539154, 47.421609], [8.539151, 47.421613], [8.539148, 47.421616], [8.539144, 47.42162], [8.539139, 47.421623], [8.539135, 47.421626], [8.53913, 47.421629], [8.539124, 47.421632], [8.539119, 47.421634], [8.539113, 47.421635], [8.539106, 47.421637], [8.5391, 47.421638], [8.539094, 47.421639], [8.539087, 47.421639], [8.539081, 47.421639], [8.539074, 47.421638], [8.539068, 47.421638], [8.539061, 47.421636], [8.539055, 47.421635], [8.539049, 47.421633], [8.538896, 47.421595], [8.53888, 47.42159], [8.538863, 47.421585], [8.538845, 47.421582], [8.538827, 47.42158], [8.538809, 47.421579], [8.538791, 47.421579], [8.538773, 47.42158], [8.538755, 47.421582], [8.538737, 47.421585], [8.538695, 47.421592], [8.538651, 47.421596], [8.538607, 47.421598], [8.538563, 47.421597], [8.53852, 47.421593], [8.538477, 47.421587], [8.538435, 47.421578], [8.538394, 47.421566]]], "type": "MultiLineString"}, "id": "2496", "properties": {}, "type": "Feature"}, {"bbox": [8.542655, 47.405119, 8.543537, 47.40668], "geometry": {"coordinates": [[[8.542681, 47.405119], [8.542655, 47.405405], [8.542832, 47.405652], [8.543284, 47.406309], [8.543537, 47.40668]]], "type": "MultiLineString"}, "id": "2528", "properties": {}, "type": "Feature"}, {"bbox": [8.552761, 47.361216, 8.552995, 47.361799], "geometry": {"coordinates": [[[8.552761, 47.361799], [8.552969, 47.361334], [8.552995, 47.361216]]], "type": "MultiLineString"}, "id": "2532", "properties": {}, "type": "Feature"}, {"bbox": [8.488429, 47.371434, 8.490248, 47.371961], "geometry": {"coordinates": [[[8.490248, 47.371434], [8.490242, 47.371437], [8.490181, 47.371478], [8.490006, 47.37163], [8.489822, 47.371777], [8.489631, 47.371919], [8.489601, 47.371931], [8.48957, 47.371941], [8.489538, 47.371949], [8.489505, 47.371955], [8.489471, 47.371959], [8.489437, 47.371961], [8.489403, 47.371961], [8.489368, 47.371959], [8.489335, 47.371955], [8.489301, 47.371949], [8.489269, 47.371941], [8.489238, 47.371931], [8.489209, 47.371919], [8.489181, 47.371905], [8.488927, 47.371762], [8.488676, 47.371616], [8.488429, 47.371468]]], "type": "MultiLineString"}, "id": "2642", "properties": {}, "type": "Feature"}, {"bbox": [8.551438, 47.427443, 8.551657, 47.42852], "geometry": {"coordinates": [[[8.551566, 47.427443], [8.551651, 47.427812], [8.551655, 47.42783], [8.551657, 47.427848], [8.551657, 47.427865], [8.551654, 47.427883], [8.551649, 47.427901], [8.551642, 47.427918], [8.551632, 47.427934], [8.55162, 47.42795], [8.551479, 47.428115], [8.55147, 47.428123], [8.551462, 47.428131], [8.551455, 47.42814], [8.551449, 47.428149], [8.551445, 47.428159], [8.551441, 47.428169], [8.551439, 47.428179], [8.551438, 47.428189], [8.551439, 47.428199], [8.551441, 47.428209], [8.551444, 47.428218], [8.551448, 47.428228], [8.55151, 47.42852]]], "type": "MultiLineString"}, "id": "2645", "properties": {}, "type": "Feature"}, {"bbox": [8.565374, 47.405109, 8.568467, 47.405642], "geometry": {"coordinates": [[[8.565374, 47.405109], [8.565689, 47.405129], [8.56589, 47.405152], [8.566041, 47.405176], [8.5664, 47.405243], [8.567034, 47.405355], [8.567282, 47.405386], [8.568087, 47.405544], [8.568312, 47.405581], [8.568353, 47.405592], [8.568391, 47.405606], [8.568428, 47.405622], [8.568462, 47.405639], [8.568467, 47.405642]]], "type": "MultiLineString"}, "id": "2672", "properties": {}, "type": "Feature"}, {"bbox": [8.516523, 47.366397, 8.516919, 47.367116], "geometry": {"coordinates": [[[8.516919, 47.366397], [8.516678, 47.366841], [8.516523, 47.367116]]], "type": "MultiLineString"}, "id": "2751", "properties": {}, "type": "Feature"}, {"bbox": [8.479864, 47.381098, 8.481977, 47.383105], "geometry": {"coordinates": [[[8.481977, 47.381098], [8.481045, 47.381973], [8.480027, 47.382929], [8.479864, 47.383105]]], "type": "MultiLineString"}, "id": "2760", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393195, 8.52921, 47.393562], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528542, 47.393221], [8.528687, 47.393256], [8.528827, 47.393299], [8.529053, 47.393377], [8.52906, 47.39338], [8.529067, 47.393383], [8.529074, 47.393387], [8.52908, 47.393391], [8.529085, 47.393395], [8.52909, 47.393399], [8.529095, 47.393404], [8.529099, 47.393409], [8.52921, 47.393562]]], "type": "MultiLineString"}, "id": "2793", "properties": {}, "type": "Feature"}, {"bbox": [8.570862, 47.403438, 8.571432, 47.403701], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571358, 47.403683], [8.571287, 47.403661], [8.571219, 47.403634], [8.571154, 47.403604], [8.571093, 47.403571], [8.571036, 47.403533], [8.570862, 47.403438]]], "type": "MultiLineString"}, "id": "2868", "properties": {}, "type": "Feature"}, {"bbox": [8.522526, 47.375235, 8.522767, 47.375322], "geometry": {"coordinates": [[[8.522767, 47.375235], [8.522624, 47.375282], [8.522526, 47.375322]]], "type": "MultiLineString"}, "id": "2882", "properties": {}, "type": "Feature"}, {"bbox": [8.506647, 47.419518, 8.508268, 47.41998], "geometry": {"coordinates": [[[8.508268, 47.419518], [8.508186, 47.41955], [8.508103, 47.419581], [8.50802, 47.419611], [8.506825, 47.419973], [8.50681, 47.419976], [8.506795, 47.419978], [8.506779, 47.41998], [8.506763, 47.41998], [8.506748, 47.41998], [8.506732, 47.419978], [8.506717, 47.419976], [8.506702, 47.419973], [8.506687, 47.419969], [8.506673, 47.419964], [8.50666, 47.419958], [8.506647, 47.419952]]], "type": "MultiLineString"}, "id": "2906", "properties": {}, "type": "Feature"}, {"bbox": [8.513206, 47.372334, 8.513309, 47.372392], "geometry": {"coordinates": [[[8.513309, 47.372392], [8.513206, 47.372334]]], "type": "MultiLineString"}, "id": "2909", "properties": {}, "type": "Feature"}, {"bbox": [8.490248, 47.371266, 8.490955, 47.371434], "geometry": {"coordinates": [[[8.490955, 47.371267], [8.490869, 47.371266], [8.490783, 47.371271], [8.490698, 47.37128], [8.490615, 47.371295], [8.490533, 47.371314], [8.490455, 47.371339], [8.49038, 47.371367], [8.490309, 47.3714], [8.490248, 47.371434]]], "type": "MultiLineString"}, "id": "2931", "properties": {}, "type": "Feature"}, {"bbox": [8.538108, 47.410369, 8.539433, 47.410407], "geometry": {"coordinates": [[[8.539433, 47.410369], [8.538953, 47.410404], [8.538851, 47.410407], [8.538693, 47.410403], [8.538315, 47.410387], [8.53828, 47.410385], [8.538108, 47.410375]]], "type": "MultiLineString"}, "id": "3014", "properties": {}, "type": "Feature"}, {"bbox": [8.536738, 47.394918, 8.538078, 47.395744], "geometry": {"coordinates": [[[8.538078, 47.394918], [8.537957, 47.395074], [8.53791, 47.39513], [8.537319, 47.395433], [8.536802, 47.39569], [8.536756, 47.395729], [8.536738, 47.395744]]], "type": "MultiLineString"}, "id": "3037", "properties": {}, "type": "Feature"}, {"bbox": [8.489438, 47.376575, 8.489983, 47.377569], "geometry": {"coordinates": [[[8.489983, 47.376575], [8.489813, 47.376762], [8.489678, 47.376974], [8.489477, 47.377498], [8.489466, 47.377522], [8.489453, 47.377546], [8.489438, 47.377569]]], "type": "MultiLineString"}, "id": "3066", "properties": {}, "type": "Feature"}, {"bbox": [8.544871, 47.400781, 8.546475, 47.401132], "geometry": {"coordinates": [[[8.544871, 47.401132], [8.545243, 47.400865], [8.54528, 47.400846], [8.54532, 47.400829], [8.545361, 47.400815], [8.545404, 47.400803], [8.545448, 47.400793], [8.545493, 47.400786], [8.545539, 47.400782], [8.545585, 47.400781], [8.545632, 47.400782], [8.545678, 47.400786], [8.545723, 47.400792], [8.545767, 47.400802], [8.545811, 47.400813], [8.545852, 47.400827], [8.546475, 47.401059]]], "type": "MultiLineString"}, "id": "3073", "properties": {}, "type": "Feature"}, {"bbox": [8.538566, 47.375913, 8.539283, 47.377253], "geometry": {"coordinates": [[[8.538566, 47.375913], [8.538598, 47.375969], [8.538718, 47.376208], [8.538868, 47.376522], [8.538901, 47.376579], [8.539145, 47.377055], [8.539283, 47.377253]]], "type": "MultiLineString"}, "id": "3080", "properties": {}, "type": "Feature"}, {"bbox": [8.563318, 47.360973, 8.563443, 47.361332], "geometry": {"coordinates": [[[8.563318, 47.360973], [8.563427, 47.361234], [8.563443, 47.361332]]], "type": "MultiLineString"}, "id": "3082", "properties": {}, "type": "Feature"}, {"bbox": [8.52354, 47.376417, 8.523767, 47.376496], "geometry": {"coordinates": [[[8.523767, 47.376417], [8.523661, 47.376454], [8.52354, 47.376496]]], "type": "MultiLineString"}, "id": "3103", "properties": {}, "type": "Feature"}, {"bbox": [8.521827, 47.374725, 8.522624, 47.375282], "geometry": {"coordinates": [[[8.521827, 47.374725], [8.521962, 47.374821], [8.522142, 47.374932], [8.522334, 47.375033], [8.522394, 47.375068], [8.52245, 47.375105], [8.522501, 47.375146], [8.522547, 47.375189], [8.522588, 47.375235], [8.522624, 47.375282]]], "type": "MultiLineString"}, "id": "3170", "properties": {}, "type": "Feature"}, {"bbox": [8.508502, 47.370806, 8.509142, 47.371721], "geometry": {"coordinates": [[[8.508502, 47.370806], [8.508731, 47.37102], [8.508752, 47.371039], [8.508772, 47.37106], [8.508788, 47.371082], [8.508803, 47.371104], [8.508825, 47.371142], [8.50885, 47.371179], [8.508876, 47.371215], [8.509121, 47.371482], [8.509128, 47.371494], [8.509134, 47.371506], [8.509138, 47.371519], [8.509141, 47.371531], [8.509142, 47.371544], [8.509141, 47.371557], [8.509139, 47.37157], [8.509135, 47.371582], [8.509091, 47.371721]]], "type": "MultiLineString"}, "id": "3213", "properties": {}, "type": "Feature"}, {"bbox": [8.484645, 47.380943, 8.484874, 47.381601], "geometry": {"coordinates": [[[8.484874, 47.381601], [8.484864, 47.381594], [8.484854, 47.381588], [8.484846, 47.38158], [8.484838, 47.381572], [8.484832, 47.381564], [8.484827, 47.381556], [8.484823, 47.381547], [8.48482, 47.381538], [8.484774, 47.381329], [8.484712, 47.381122], [8.484645, 47.380943]]], "type": "MultiLineString"}, "id": "3229", "properties": {}, "type": "Feature"}, {"bbox": [8.503399, 47.364904, 8.505166, 47.36491], "geometry": {"coordinates": [[[8.505166, 47.36491], [8.504596, 47.364905], [8.503399, 47.364904]]], "type": "MultiLineString"}, "id": "3258", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.411307, 8.542577, 47.411871], "geometry": {"coordinates": [[[8.542577, 47.411871], [8.542566, 47.411868], [8.542555, 47.411865], [8.542545, 47.411861], [8.542535, 47.411856], [8.542526, 47.411851], [8.542517, 47.411845], [8.54251, 47.411839], [8.542503, 47.411832], [8.542497, 47.411825], [8.542491, 47.411818], [8.542487, 47.411811], [8.542484, 47.411803], [8.542482, 47.411795], [8.54248, 47.411787], [8.54248, 47.411779], [8.542481, 47.411771], [8.542482, 47.411763], [8.542509, 47.411668], [8.542512, 47.411657], [8.542513, 47.411646], [8.542512, 47.411635], [8.54251, 47.411625], [8.542507, 47.411614], [8.542503, 47.411604], [8.542497, 47.411594], [8.54249, 47.411584], [8.542482, 47.411575], [8.542472, 47.411566], [8.542462, 47.411558], [8.54245, 47.41155], [8.542438, 47.411543], [8.541977, 47.411307]]], "type": "MultiLineString"}, "id": "3269", "properties": {}, "type": "Feature"}, {"bbox": [8.539997, 47.410355, 8.541977, 47.411307], "geometry": {"coordinates": [[[8.541977, 47.411307], [8.541259, 47.410933], [8.541173, 47.410885], [8.540898, 47.410712], [8.540827, 47.410674], [8.540791, 47.410656], [8.540754, 47.410639], [8.540715, 47.410623], [8.540081, 47.410376], [8.540061, 47.410369], [8.54004, 47.410363], [8.540019, 47.410359], [8.539997, 47.410355]]], "type": "MultiLineString"}, "id": "3270", "properties": {}, "type": "Feature"}, {"bbox": [8.484361, 47.386908, 8.485613, 47.387318], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.48559, 47.387184], [8.485566, 47.387188], [8.485542, 47.38719], [8.485518, 47.387191], [8.485494, 47.38719], [8.48547, 47.387188], [8.485446, 47.387185], [8.485422, 47.38718], [8.4854, 47.387174], [8.485378, 47.387167], [8.485357, 47.387159], [8.485011, 47.386908], [8.484361, 47.387318]]], "type": "MultiLineString"}, "id": "3275", "properties": {}, "type": "Feature"}, {"bbox": [8.497742, 47.38434, 8.500164, 47.385239], "geometry": {"coordinates": [[[8.500164, 47.38434], [8.499934, 47.384442], [8.498785, 47.384933], [8.497742, 47.385239], [8.497742, 47.385239]]], "type": "MultiLineString"}, "id": "3335", "properties": {}, "type": "Feature"}, {"bbox": [8.528176, 47.414287, 8.529366, 47.41442], "geometry": {"coordinates": [[[8.529366, 47.414287], [8.529331, 47.414299], [8.529294, 47.414309], [8.529255, 47.414316], [8.529216, 47.414322], [8.529177, 47.414325], [8.529137, 47.414325], [8.528892, 47.414335], [8.528649, 47.414359], [8.52841, 47.414399], [8.528176, 47.41442]]], "type": "MultiLineString"}, "id": "3371", "properties": {}, "type": "Feature"}, {"bbox": [8.531079, 47.378879, 8.531184, 47.379004], "geometry": {"coordinates": [[[8.531079, 47.378879], [8.531184, 47.379004]]], "type": "MultiLineString"}, "id": "3384", "properties": {}, "type": "Feature"}, {"bbox": [8.535542, 47.377665, 8.536485, 47.378213], "geometry": {"coordinates": [[[8.536485, 47.37801], [8.536395, 47.378034], [8.535988, 47.377665], [8.535542, 47.377891], [8.535627, 47.378034], [8.535732, 47.378213], [8.535789, 47.378198]]], "type": "MultiLineString"}, "id": "3418", "properties": {}, "type": "Feature"}, {"bbox": [8.531536, 47.348081, 8.531886, 47.349083], "geometry": {"coordinates": [[[8.531886, 47.349083], [8.531656, 47.348742], [8.531617, 47.34867], [8.53154, 47.348519], [8.531536, 47.348388], [8.531544, 47.348326], [8.531564, 47.348238], [8.531619, 47.348233], [8.531625, 47.348208], [8.53166, 47.348081]]], "type": "MultiLineString"}, "id": "3427", "properties": {}, "type": "Feature"}, {"bbox": [8.505399, 47.401656, 8.505718, 47.401846], "geometry": {"coordinates": [[[8.505399, 47.401656], [8.505718, 47.401846]]], "type": "MultiLineString"}, "id": "3451", "properties": {}, "type": "Feature"}, {"bbox": [8.491023, 47.376274, 8.491209, 47.376513], "geometry": {"coordinates": [[[8.491023, 47.376513], [8.491209, 47.376274]]], "type": "MultiLineString"}, "id": "3508", "properties": {}, "type": "Feature"}, {"bbox": [8.483816, 47.381601, 8.484874, 47.382495], "geometry": {"coordinates": [[[8.483816, 47.382495], [8.484141, 47.382236], [8.484466, 47.381978], [8.484792, 47.38172], [8.484808, 47.381707], [8.484823, 47.381694], [8.484836, 47.38168], [8.484847, 47.381665], [8.484857, 47.381649], [8.484865, 47.381633], [8.48487, 47.381617], [8.484874, 47.381601]]], "type": "MultiLineString"}, "id": "3540", "properties": {}, "type": "Feature"}, {"bbox": [8.503077, 47.401656, 8.505399, 47.402423], "geometry": {"coordinates": [[[8.503077, 47.402423], [8.504375, 47.402011], [8.50488, 47.401883], [8.505063, 47.401818], [8.505237, 47.401743], [8.505399, 47.401656]]], "type": "MultiLineString"}, "id": "3562", "properties": {}, "type": "Feature"}, {"bbox": [8.562708, 47.355217, 8.563196, 47.356033], "geometry": {"coordinates": [[[8.562708, 47.356033], [8.563196, 47.355217]]], "type": "MultiLineString"}, "id": "3564", "properties": {}, "type": "Feature"}, {"bbox": [8.532243, 47.388537, 8.533999, 47.389125], "geometry": {"coordinates": [[[8.533999, 47.388537], [8.533865, 47.388547], [8.533659, 47.388575], [8.533457, 47.388617], [8.533261, 47.388671], [8.533074, 47.388738], [8.532897, 47.388815], [8.532779, 47.388865], [8.532658, 47.388916], [8.532518, 47.388984], [8.53238, 47.389053], [8.532243, 47.389125]]], "type": "MultiLineString"}, "id": "3651", "properties": {}, "type": "Feature"}, {"bbox": [8.537557, 47.375741, 8.539266, 47.376159], "geometry": {"coordinates": [[[8.539266, 47.375741], [8.538566, 47.375913], [8.538436, 47.375943], [8.537758, 47.376102], [8.537557, 47.376159]]], "type": "MultiLineString"}, "id": "3697", "properties": {}, "type": "Feature"}, {"bbox": [8.539088, 47.395036, 8.539741, 47.395669], "geometry": {"coordinates": [[[8.539741, 47.395669], [8.53967, 47.395607], [8.539701, 47.395591], [8.539554, 47.395467], [8.539505, 47.395379], [8.539459, 47.395345], [8.539463, 47.395335], [8.539466, 47.395325], [8.539467, 47.395315], [8.539468, 47.395304], [8.539467, 47.395294], [8.539464, 47.395284], [8.539461, 47.395274], [8.539456, 47.395264], [8.53945, 47.395254], [8.539442, 47.395245], [8.539434, 47.395237], [8.539424, 47.395228], [8.539414, 47.395221], [8.539403, 47.395214], [8.53939, 47.395208], [8.539377, 47.395202], [8.539364, 47.395197], [8.53935, 47.395193], [8.539335, 47.39519], [8.53932, 47.395188], [8.539305, 47.395187], [8.53929, 47.395186], [8.539153, 47.395094], [8.539088, 47.395036]]], "type": "MultiLineString"}, "id": "3698", "properties": {}, "type": "Feature"}, {"bbox": [8.473817, 47.389876, 8.475096, 47.390382], "geometry": {"coordinates": [[[8.475096, 47.389876], [8.47504, 47.389947], [8.473817, 47.390382]]], "type": "MultiLineString"}, "id": "3702", "properties": {}, "type": "Feature"}, {"bbox": [8.550595, 47.403105, 8.553041, 47.403568], "geometry": {"coordinates": [[[8.550595, 47.403568], [8.550987, 47.403527], [8.551206, 47.403508], [8.551207, 47.403509], [8.55132, 47.403496], [8.551504, 47.403472], [8.551618, 47.403455], [8.551728, 47.403436], [8.55175, 47.403433], [8.551912, 47.403403], [8.55203, 47.403379], [8.552089, 47.403367], [8.552293, 47.403319], [8.552458, 47.403277], [8.552901, 47.403157], [8.553041, 47.403105]]], "type": "MultiLineString"}, "id": "3722", "properties": {}, "type": "Feature"}, {"bbox": [8.523291, 47.375933, 8.524021, 47.377005], "geometry": {"coordinates": [[[8.523291, 47.375933], [8.523661, 47.376454], [8.523982, 47.37691], [8.524021, 47.377005]]], "type": "MultiLineString"}, "id": "3724", "properties": {}, "type": "Feature"}, {"bbox": [8.504596, 47.363283, 8.506237, 47.364905], "geometry": {"coordinates": [[[8.506237, 47.363283], [8.505863, 47.363516], [8.505062, 47.364193], [8.504601, 47.364583], [8.504596, 47.364905]]], "type": "MultiLineString"}, "id": "3740", "properties": {}, "type": "Feature"}, {"bbox": [8.538233, 47.409405, 8.539433, 47.410369], "geometry": {"coordinates": [[[8.539433, 47.410369], [8.539359, 47.410232], [8.538233, 47.409405]]], "type": "MultiLineString"}, "id": "3742", "properties": {}, "type": "Feature"}, {"bbox": [8.484519, 47.382327, 8.485704, 47.383209], "geometry": {"coordinates": [[[8.485704, 47.382327], [8.485554, 47.382404], [8.485407, 47.382482], [8.485263, 47.382563], [8.484907, 47.38275], [8.484863, 47.382776], [8.484822, 47.382804], [8.484786, 47.382834], [8.484553, 47.38302], [8.484547, 47.383024], [8.484541, 47.383029], [8.484536, 47.383034], [8.484531, 47.383039], [8.484527, 47.383045], [8.484524, 47.383051], [8.484521, 47.383057], [8.48452, 47.383063], [8.484519, 47.383069], [8.484519, 47.383075], [8.484519, 47.383081], [8.484521, 47.383088], [8.484523, 47.383094], [8.484526, 47.3831], [8.484529, 47.383105], [8.484534, 47.383111], [8.484598, 47.383209]]], "type": "MultiLineString"}, "id": "3808", "properties": {}, "type": "Feature"}, {"bbox": [8.529068, 47.413626, 8.529366, 47.414287], "geometry": {"coordinates": [[[8.529068, 47.413626], [8.52914, 47.413695], [8.529148, 47.413771], [8.529152, 47.413899], [8.529155, 47.41394], [8.529162, 47.413981], [8.529174, 47.414021], [8.529191, 47.41406], [8.529213, 47.414099], [8.529239, 47.414136], [8.529366, 47.414287]]], "type": "MultiLineString"}, "id": "3825", "properties": {}, "type": "Feature"}, {"bbox": [8.501561, 47.40057, 8.50468, 47.402063], "geometry": {"coordinates": [[[8.50468, 47.40057], [8.504314, 47.400777], [8.50398, 47.401007], [8.50368, 47.401259], [8.503634, 47.401301], [8.503583, 47.401341], [8.503527, 47.401378], [8.503466, 47.401412], [8.503402, 47.401442], [8.503335, 47.401469], [8.503264, 47.401491], [8.502358, 47.401757], [8.502197, 47.401802], [8.501561, 47.402063]]], "type": "MultiLineString"}, "id": "3856", "properties": {}, "type": "Feature"}, {"bbox": [8.502514, 47.396079, 8.503908, 47.396906], "geometry": {"coordinates": [[[8.503908, 47.396079], [8.503822, 47.396102], [8.50323, 47.396404], [8.503064, 47.396489], [8.502909, 47.396582], [8.502765, 47.396683], [8.502633, 47.396791], [8.502514, 47.396906]]], "type": "MultiLineString"}, "id": "3887", "properties": {}, "type": "Feature"}, {"bbox": [8.571685, 47.359085, 8.573059, 47.35976], "geometry": {"coordinates": [[[8.571685, 47.35976], [8.572105, 47.359505], [8.572269, 47.359406], [8.572449, 47.359307], [8.572642, 47.359221], [8.572846, 47.359146], [8.573059, 47.359085]]], "type": "MultiLineString"}, "id": "3896", "properties": {}, "type": "Feature"}, {"bbox": [8.531968, 47.377623, 8.536033, 47.379035], "geometry": {"coordinates": [[[8.536033, 47.377623], [8.535586, 47.377849], [8.53538, 47.377953], [8.535471, 47.378084], [8.535001, 47.378234], [8.534537, 47.378401], [8.534167, 47.378501], [8.533751, 47.378614], [8.53294, 47.378782], [8.532403, 47.378893], [8.531968, 47.379035]]], "type": "MultiLineString"}, "id": "3901", "properties": {}, "type": "Feature"}, {"bbox": [8.528367, 47.392694, 8.528805, 47.393122], "geometry": {"coordinates": [[[8.528367, 47.392694], [8.528737, 47.393052], [8.528805, 47.393122]]], "type": "MultiLineString"}, "id": "3909", "properties": {}, "type": "Feature"}, {"bbox": [8.550687, 47.403428, 8.55398, 47.404161], "geometry": {"coordinates": [[[8.550687, 47.404161], [8.550868, 47.404141], [8.55124, 47.404113], [8.551572, 47.404071], [8.551897, 47.404007], [8.552212, 47.403922], [8.55298, 47.40371], [8.553251, 47.403639], [8.553525, 47.403575], [8.553804, 47.403519], [8.553828, 47.403514], [8.553851, 47.403507], [8.553873, 47.403499], [8.553894, 47.40349], [8.553914, 47.40348], [8.553933, 47.403468], [8.55395, 47.403456], [8.553966, 47.403442], [8.55398, 47.403428]]], "type": "MultiLineString"}, "id": "3952", "properties": {}, "type": "Feature"}, {"bbox": [8.474252, 47.414666, 8.475206, 47.415191], "geometry": {"coordinates": [[[8.475206, 47.414666], [8.475007, 47.414845], [8.474948, 47.414889], [8.474707, 47.415005], [8.474697, 47.415008], [8.474489, 47.415076], [8.474361, 47.415131], [8.474252, 47.415191]]], "type": "MultiLineString"}, "id": "3983", "properties": {}, "type": "Feature"}, {"bbox": [8.539871, 47.399347, 8.54097, 47.399662], "geometry": {"coordinates": [[[8.539871, 47.399347], [8.540043, 47.399407], [8.54022, 47.399459], [8.540404, 47.399502], [8.540591, 47.399534], [8.540647, 47.399547], [8.540702, 47.399562], [8.540757, 47.399577], [8.54097, 47.399662]]], "type": "MultiLineString"}, "id": "4036", "properties": {}, "type": "Feature"}, {"bbox": [8.55933, 47.36286, 8.560821, 47.364189], "geometry": {"coordinates": [[[8.55933, 47.364189], [8.55933, 47.364188], [8.560184, 47.363277], [8.56026, 47.363197], [8.560334, 47.363128], [8.560416, 47.363063], [8.560507, 47.363003], [8.560605, 47.362949], [8.56071, 47.362902], [8.560821, 47.36286]]], "type": "MultiLineString"}, "id": "4100", "properties": {}, "type": "Feature"}, {"bbox": [8.528621, 47.338247, 8.528834, 47.339669], "geometry": {"coordinates": [[[8.528621, 47.339669], [8.528746, 47.33889], [8.528777, 47.338604], [8.528816, 47.338367], [8.528834, 47.338248], [8.528834, 47.338247]]], "type": "MultiLineString"}, "id": "4105", "properties": {}, "type": "Feature"}, {"bbox": [8.530281, 47.37839, 8.5359, 47.380035], "geometry": {"coordinates": [[[8.5359, 47.37839], [8.534469, 47.378778], [8.534182, 47.378869], [8.533906, 47.378974], [8.533643, 47.379093], [8.533497, 47.379165], [8.533362, 47.379224], [8.53322, 47.379274], [8.533071, 47.379314], [8.532295, 47.379511], [8.531605, 47.379691], [8.53148, 47.379498], [8.53133, 47.379512], [8.530281, 47.380035]]], "type": "MultiLineString"}, "id": "4140", "properties": {}, "type": "Feature"}, {"bbox": [8.56878, 47.364583, 8.569164, 47.365014], "geometry": {"coordinates": [[[8.56878, 47.364583], [8.568988, 47.364961], [8.569026, 47.365014], [8.569164, 47.36498]]], "type": "MultiLineString"}, "id": "4142", "properties": {}, "type": "Feature"}, {"bbox": [8.488971, 47.377569, 8.489438, 47.377791], "geometry": {"coordinates": [[[8.489438, 47.377569], [8.489438, 47.377569], [8.489405, 47.377602], [8.489369, 47.377633], [8.489329, 47.377663], [8.489285, 47.377689], [8.489239, 47.377714], [8.489189, 47.377735], [8.489137, 47.377754], [8.489083, 47.377769], [8.489028, 47.377782], [8.488971, 47.377791]]], "type": "MultiLineString"}, "id": "4170", "properties": {}, "type": "Feature"}, {"bbox": [8.480075, 47.405949, 8.481082, 47.406656], "geometry": {"coordinates": [[[8.481082, 47.405949], [8.480895, 47.40611], [8.480658, 47.40639], [8.480611, 47.406433], [8.480558, 47.406474], [8.480501, 47.406512], [8.480438, 47.406546], [8.480372, 47.406577], [8.480302, 47.406603], [8.480229, 47.406625], [8.480153, 47.406643], [8.480075, 47.406656]]], "type": "MultiLineString"}, "id": "4174", "properties": {}, "type": "Feature"}, {"bbox": [8.529303, 47.409481, 8.530144, 47.409774], "geometry": {"coordinates": [[[8.530144, 47.409488], [8.530137, 47.409486], [8.530128, 47.409484], [8.53012, 47.409482], [8.530112, 47.409481], [8.530103, 47.409481], [8.530094, 47.409481], [8.530086, 47.409481], [8.530077, 47.409482], [8.530069, 47.409484], [8.53006, 47.409486], [8.530053, 47.409488], [8.530045, 47.409491], [8.529576, 47.409665], [8.529303, 47.409774]]], "type": "MultiLineString"}, "id": "4195", "properties": {}, "type": "Feature"}, {"bbox": [8.533268, 47.377523, 8.534469, 47.378778], "geometry": {"coordinates": [[[8.533268, 47.377523], [8.533277, 47.377681], [8.534167, 47.378501], [8.534469, 47.378778]]], "type": "MultiLineString"}, "id": "4214", "properties": {}, "type": "Feature"}, {"bbox": [8.562897, 47.36556, 8.565164, 47.366584], "geometry": {"coordinates": [[[8.562897, 47.366584], [8.563766, 47.366203], [8.563898, 47.366137], [8.565164, 47.36556]]], "type": "MultiLineString"}, "id": "4216", "properties": {}, "type": "Feature"}, {"bbox": [8.570148, 47.35976, 8.571982, 47.360994], "geometry": {"coordinates": [[[8.570148, 47.360658], [8.57038, 47.360524], [8.570469, 47.360468], [8.571685, 47.35976], [8.571982, 47.359984], [8.571941, 47.360017], [8.571913, 47.360057], [8.571454, 47.360593], [8.571431, 47.360624], [8.571415, 47.360648], [8.571401, 47.360674], [8.571391, 47.3607], [8.571384, 47.360727], [8.571381, 47.360754], [8.57138, 47.360781], [8.571384, 47.360809], [8.57139, 47.360835], [8.5714, 47.360862], [8.571487, 47.360994]]], "type": "MultiLineString"}, "id": "4253", "properties": {}, "type": "Feature"}, {"bbox": [8.530144, 47.409488, 8.530537, 47.410416], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.530522, 47.410409], [8.530527, 47.410403], [8.53053, 47.410396], [8.530533, 47.410389], [8.530535, 47.410382], [8.530537, 47.410375], [8.530537, 47.410367], [8.530536, 47.41036], [8.530213, 47.409541], [8.53021, 47.409535], [8.530206, 47.409529], [8.530202, 47.409523], [8.530197, 47.409517], [8.530191, 47.409512], [8.530185, 47.409507], [8.530178, 47.409502], [8.53017, 47.409498], [8.530162, 47.409494], [8.530153, 47.409491], [8.530144, 47.409488]]], "type": "MultiLineString"}, "id": "4260", "properties": {}, "type": "Feature"}, {"bbox": [8.53133, 47.379464, 8.531437, 47.379512], "geometry": {"coordinates": [[[8.531437, 47.379464], [8.53133, 47.379512]]], "type": "MultiLineString"}, "id": "4277", "properties": {}, "type": "Feature"}, {"bbox": [8.538078, 47.394853, 8.538128, 47.394918], "geometry": {"coordinates": [[[8.538128, 47.394853], [8.538078, 47.394918]]], "type": "MultiLineString"}, "id": "4294", "properties": {}, "type": "Feature"}, {"bbox": [8.529974, 47.408541, 8.530988, 47.408828], "geometry": {"coordinates": [[[8.530988, 47.408559], [8.530853, 47.408541], [8.530763, 47.408566], [8.530074, 47.408824], [8.530062, 47.408826], [8.530049, 47.408827], [8.530037, 47.408828], [8.530024, 47.408828], [8.530011, 47.408827], [8.529999, 47.408826], [8.529986, 47.408824], [8.529974, 47.408821]]], "type": "MultiLineString"}, "id": "4306", "properties": {}, "type": "Feature"}, {"bbox": [8.478095, 47.38607, 8.478154, 47.386136], "geometry": {"coordinates": [[[8.478154, 47.386136], [8.478095, 47.38607]]], "type": "MultiLineString"}, "id": "4323", "properties": {}, "type": "Feature"}, {"bbox": [8.516034, 47.379187, 8.516052, 47.379632], "geometry": {"coordinates": [[[8.516034, 47.379187], [8.516052, 47.379632]]], "type": "MultiLineString"}, "id": "4331", "properties": {}, "type": "Feature"}, {"bbox": [8.509721, 47.354709, 8.510551, 47.356235], "geometry": {"coordinates": [[[8.510551, 47.354709], [8.5105, 47.354781], [8.510472, 47.354833], [8.509721, 47.356235]]], "type": "MultiLineString"}, "id": "4332", "properties": {}, "type": "Feature"}, {"bbox": [8.525588, 47.354421, 8.526058, 47.35675], "geometry": {"coordinates": [[[8.525744, 47.35675], [8.525754, 47.356723], [8.52578, 47.356615], [8.525792, 47.356506], [8.52579, 47.356397], [8.525588, 47.354511], [8.525588, 47.354504], [8.525589, 47.354496], [8.525591, 47.354489], [8.525593, 47.354482], [8.525597, 47.354475], [8.525601, 47.354468], [8.525607, 47.354462], [8.525613, 47.354456], [8.52562, 47.35445], [8.525627, 47.354445], [8.525635, 47.35444], [8.525644, 47.354435], [8.525653, 47.354432], [8.525663, 47.354428], [8.525673, 47.354426], [8.525684, 47.354424], [8.525694, 47.354422], [8.525705, 47.354421], [8.525716, 47.354421], [8.525727, 47.354422], [8.525737, 47.354423], [8.525748, 47.354425], [8.525758, 47.354427], [8.525768, 47.35443], [8.525778, 47.354434], [8.525787, 47.354438], [8.525795, 47.354442], [8.525803, 47.354447], [8.52581, 47.354453], [8.525816, 47.354459], [8.525822, 47.354465], [8.525827, 47.354472], [8.525831, 47.354479], [8.525834, 47.354486], [8.525934, 47.354823], [8.525936, 47.354829], [8.525939, 47.354835], [8.525943, 47.35484], [8.525948, 47.354846], [8.525953, 47.354851], [8.525959, 47.354856], [8.525965, 47.35486], [8.525972, 47.354864], [8.525979, 47.354868], [8.525987, 47.354871], [8.525995, 47.354873], [8.526004, 47.354876], [8.526013, 47.354877], [8.526022, 47.354879], [8.526031, 47.354879], [8.52604, 47.354879], [8.526049, 47.354879], [8.526058, 47.354878]]], "type": "MultiLineString"}, "id": "4336", "properties": {}, "type": "Feature"}, {"bbox": [8.562369, 47.355967, 8.562708, 47.356042], "geometry": {"coordinates": [[[8.562369, 47.355967], [8.56259, 47.356042], [8.562629, 47.356037], [8.562669, 47.356034], [8.562708, 47.356033]]], "type": "MultiLineString"}, "id": "4338", "properties": {}, "type": "Feature"}, {"bbox": [8.570068, 47.403237, 8.57025, 47.403852], "geometry": {"coordinates": [[[8.570068, 47.403852], [8.570091, 47.40374], [8.57025, 47.403425], [8.570225, 47.403279], [8.57022, 47.403251], [8.570219, 47.403237]]], "type": "MultiLineString"}, "id": "4351", "properties": {}, "type": "Feature"}, {"bbox": [8.553442, 47.39746, 8.55461, 47.39846], "geometry": {"coordinates": [[[8.553442, 47.39746], [8.553483, 47.397535], [8.55351, 47.397579], [8.553542, 47.397622], [8.553579, 47.397662], [8.553621, 47.397701], [8.553667, 47.397737], [8.553718, 47.39777], [8.553773, 47.3978], [8.553831, 47.397826], [8.553893, 47.39785], [8.553957, 47.39787], [8.554023, 47.397886], [8.55408, 47.397901], [8.554136, 47.39792], [8.554188, 47.397941], [8.554238, 47.397966], [8.554284, 47.397994], [8.554327, 47.398024], [8.554365, 47.398057], [8.554399, 47.398092], [8.554429, 47.398129], [8.554453, 47.398167], [8.55461, 47.39846]]], "type": "MultiLineString"}, "id": "4359", "properties": {}, "type": "Feature"}, {"bbox": [8.529544, 47.414568, 8.530028, 47.415885], "geometry": {"coordinates": [[[8.529544, 47.414568], [8.529563, 47.414616], [8.529579, 47.414664], [8.529594, 47.414712], [8.529597, 47.414719], [8.529602, 47.414726], [8.529607, 47.414733], [8.529613, 47.41474], [8.529619, 47.414746], [8.529627, 47.414752], [8.529635, 47.414757], [8.529644, 47.414762], [8.529653, 47.414766], [8.529663, 47.41477], [8.529674, 47.414773], [8.529684, 47.414775], [8.529695, 47.414777], [8.529705, 47.414779], [8.529714, 47.414782], [8.529723, 47.414785], [8.529732, 47.414789], [8.529741, 47.414793], [8.529748, 47.414798], [8.529755, 47.414803], [8.529761, 47.414809], [8.529767, 47.414815], [8.529771, 47.414821], [8.529775, 47.414828], [8.529778, 47.414835], [8.52978, 47.414842], [8.529892, 47.415278], [8.530016, 47.415732], [8.530024, 47.415783], [8.530028, 47.415834], [8.530026, 47.415885]]], "type": "MultiLineString"}, "id": "4391", "properties": {}, "type": "Feature"}, {"bbox": [8.527939, 47.356195, 8.529199, 47.356912], "geometry": {"coordinates": [[[8.529199, 47.356911], [8.529011, 47.356912], [8.528572, 47.356882], [8.527939, 47.356788], [8.527953, 47.356674], [8.527994, 47.356348], [8.528001, 47.356308], [8.528014, 47.356269], [8.528032, 47.35623], [8.528054, 47.356195]]], "type": "MultiLineString"}, "id": "4420", "properties": {}, "type": "Feature"}, {"bbox": [8.529745, 47.410416, 8.530516, 47.410585], "geometry": {"coordinates": [[[8.529745, 47.410585], [8.529854, 47.410558], [8.530422, 47.410456], [8.530434, 47.410454], [8.530445, 47.410452], [8.530456, 47.41045], [8.530466, 47.410446], [8.530476, 47.410443], [8.530485, 47.410438], [8.530494, 47.410433], [8.530502, 47.410428], [8.53051, 47.410422], [8.530516, 47.410416]]], "type": "MultiLineString"}, "id": "4449", "properties": {}, "type": "Feature"}, {"bbox": [8.524804, 47.337032, 8.524813, 47.33821], "geometry": {"coordinates": [[[8.524804, 47.33821], [8.524807, 47.337577], [8.524813, 47.337289], [8.524813, 47.337032]]], "type": "MultiLineString"}, "id": "4489", "properties": {}, "type": "Feature"}, {"bbox": [8.53664, 47.393506, 8.53673, 47.393689], "geometry": {"coordinates": [[[8.53673, 47.393506], [8.536711, 47.393567], [8.536689, 47.393608], [8.536665, 47.393649], [8.53664, 47.393689]]], "type": "MultiLineString"}, "id": "4490", "properties": {}, "type": "Feature"}, {"bbox": [8.537468, 47.385243, 8.539833, 47.385863], "geometry": {"coordinates": [[[8.537491, 47.385243], [8.537484, 47.385253], [8.537478, 47.385263], [8.537474, 47.385273], [8.537471, 47.385284], [8.537469, 47.385295], [8.537468, 47.385306], [8.537469, 47.385317], [8.537472, 47.385327], [8.537475, 47.385338], [8.53748, 47.385349], [8.537486, 47.385359], [8.537494, 47.385368], [8.537502, 47.385377], [8.537512, 47.385386], [8.537523, 47.385394], [8.537535, 47.385402], [8.537547, 47.385408], [8.537561, 47.385414], [8.537575, 47.385419], [8.53759, 47.385424], [8.538227, 47.385552], [8.538546, 47.38561], [8.539677, 47.385833], [8.539833, 47.385863]]], "type": "MultiLineString"}, "id": "4511", "properties": {}, "type": "Feature"}, {"bbox": [8.498323, 47.384529, 8.498785, 47.384933], "geometry": {"coordinates": [[[8.498785, 47.384933], [8.498434, 47.384569], [8.498323, 47.384529]]], "type": "MultiLineString"}, "id": "4527", "properties": {}, "type": "Feature"}, {"bbox": [8.480693, 47.386896, 8.481903, 47.387408], "geometry": {"coordinates": [[[8.481903, 47.386896], [8.481713, 47.386979], [8.480693, 47.387408]]], "type": "MultiLineString"}, "id": "4530", "properties": {}, "type": "Feature"}, {"bbox": [8.569749, 47.403132, 8.570862, 47.403438], "geometry": {"coordinates": [[[8.570862, 47.403438], [8.570818, 47.403415], [8.570801, 47.403405], [8.570784, 47.403397], [8.570765, 47.40339], [8.570746, 47.403384], [8.570726, 47.403379], [8.570705, 47.403375], [8.570684, 47.403373], [8.570663, 47.403372], [8.570642, 47.403372], [8.57062, 47.403373], [8.570599, 47.403375], [8.570579, 47.403379], [8.570559, 47.403384], [8.570539, 47.40339], [8.57025, 47.403425], [8.570157, 47.403422], [8.569919, 47.403331], [8.569892, 47.403283], [8.569859, 47.403237], [8.56982, 47.403193], [8.569775, 47.403151], [8.569749, 47.403132]]], "type": "MultiLineString"}, "id": "4540", "properties": {}, "type": "Feature"}, {"bbox": [8.535279, 47.330202, 8.536054, 47.33199], "geometry": {"coordinates": [[[8.535339, 47.33199], [8.535298, 47.331918], [8.535292, 47.33191], [8.535287, 47.331902], [8.535284, 47.331894], [8.535281, 47.331886], [8.53528, 47.331877], [8.535279, 47.331868], [8.53528, 47.33186], [8.535306, 47.331782], [8.535404, 47.331567], [8.535494, 47.331388], [8.536021, 47.330388], [8.536054, 47.330313], [8.536046, 47.330202]]], "type": "MultiLineString"}, "id": "4624", "properties": {}, "type": "Feature"}, {"bbox": [8.534301, 47.380419, 8.534438, 47.380561], "geometry": {"coordinates": [[[8.534301, 47.380419], [8.534316, 47.380446], [8.534334, 47.380472], [8.534356, 47.380496], [8.534381, 47.38052], [8.534408, 47.380541], [8.534438, 47.380561]]], "type": "MultiLineString"}, "id": "4630", "properties": {}, "type": "Feature"}, {"bbox": [8.534062, 47.380419, 8.534301, 47.380479], "geometry": {"coordinates": [[[8.534301, 47.380419], [8.534216, 47.380438], [8.534062, 47.380479]]], "type": "MultiLineString"}, "id": "4631", "properties": {}, "type": "Feature"}, {"bbox": [8.488194, 47.377018, 8.488413, 47.377661], "geometry": {"coordinates": [[[8.488413, 47.377661], [8.488387, 47.377648], [8.488363, 47.377633], [8.48834, 47.377616], [8.48831, 47.377592], [8.488282, 47.377566], [8.488258, 47.377539], [8.488238, 47.37751], [8.488221, 47.37748], [8.488209, 47.377449], [8.4882, 47.377418], [8.488195, 47.377386], [8.488194, 47.377354], [8.488197, 47.377322], [8.488204, 47.377291], [8.488273, 47.377018]]], "type": "MultiLineString"}, "id": "4656", "properties": {}, "type": "Feature"}, {"bbox": [8.531099, 47.378944, 8.532058, 47.379464], "geometry": {"coordinates": [[[8.531968, 47.379035], [8.53191, 47.378944], [8.531403, 47.379049], [8.53127, 47.378963], [8.531184, 47.379004], [8.531099, 47.379045], [8.531187, 47.379135], [8.531437, 47.379464], [8.532058, 47.379177], [8.531968, 47.379035]]], "type": "MultiLineString"}, "id": "4702", "properties": {}, "type": "Feature"}, {"bbox": [8.573269, 47.358161, 8.574171, 47.35833], "geometry": {"coordinates": [[[8.573269, 47.358161], [8.57327, 47.358162], [8.573317, 47.358175], [8.573369, 47.35819], [8.573629, 47.358251], [8.573654, 47.358256], [8.574015, 47.358314], [8.574151, 47.35833], [8.574171, 47.358327]]], "type": "MultiLineString"}, "id": "4729", "properties": {}, "type": "Feature"}, {"bbox": [8.573182, 47.40344, 8.573973, 47.404068], "geometry": {"coordinates": [[[8.573182, 47.404068], [8.573359, 47.403982], [8.573527, 47.403887], [8.573684, 47.403783], [8.573827, 47.403671], [8.573958, 47.403552], [8.573962, 47.403545], [8.573966, 47.403539], [8.573969, 47.403532], [8.573971, 47.403525], [8.573972, 47.403518], [8.573973, 47.403512], [8.573972, 47.403505], [8.573971, 47.403498], [8.573968, 47.403491], [8.573965, 47.403484], [8.573961, 47.403478], [8.573956, 47.403472], [8.573951, 47.403466], [8.573944, 47.40346], [8.573937, 47.403455], [8.57393, 47.403451], [8.573921, 47.403447], [8.573913, 47.403443], [8.573904, 47.40344]]], "type": "MultiLineString"}, "id": "4730", "properties": {}, "type": "Feature"}, {"bbox": [8.49056, 47.375289, 8.491388, 47.37608], "geometry": {"coordinates": [[[8.491388, 47.37608], [8.490784, 47.375634], [8.490782, 47.375632], [8.490748, 47.375606], [8.490717, 47.375579], [8.49069, 47.37555], [8.490666, 47.375519], [8.490646, 47.375487], [8.49063, 47.375455], [8.49056, 47.375289]]], "type": "MultiLineString"}, "id": "4741", "properties": {}, "type": "Feature"}, {"bbox": [8.534295, 47.393549, 8.536573, 47.394811], "geometry": {"coordinates": [[[8.534295, 47.393549], [8.534445, 47.393616], [8.534632, 47.393698], [8.535275, 47.393967], [8.535317, 47.394019], [8.535407, 47.394099], [8.535968, 47.39439], [8.536224, 47.394573], [8.536573, 47.394811]]], "type": "MultiLineString"}, "id": "4791", "properties": {}, "type": "Feature"}, {"bbox": [8.543924, 47.425874, 8.546463, 47.42643], "geometry": {"coordinates": [[[8.546463, 47.426417], [8.546346, 47.42643], [8.545335, 47.426271], [8.544913, 47.426185], [8.544798, 47.426164], [8.544686, 47.426137], [8.544578, 47.426104], [8.544474, 47.426066], [8.544374, 47.426021], [8.544231, 47.425964], [8.54408, 47.425914], [8.543924, 47.425874]]], "type": "MultiLineString"}, "id": "4799", "properties": {}, "type": "Feature"}, {"bbox": [8.488413, 47.377661, 8.488971, 47.377792], "geometry": {"coordinates": [[[8.488971, 47.377791], [8.488903, 47.377792], [8.488837, 47.377788], [8.48877, 47.377781], [8.488705, 47.37777], [8.488642, 47.377755], [8.48858, 47.377737], [8.488522, 47.377715], [8.488466, 47.37769], [8.488413, 47.377661]]], "type": "MultiLineString"}, "id": "4803", "properties": {}, "type": "Feature"}, {"bbox": [8.549074, 47.403888, 8.550642, 47.404098], "geometry": {"coordinates": [[[8.550642, 47.403888], [8.549485, 47.403971], [8.54941, 47.403981], [8.549337, 47.403996], [8.549266, 47.404015], [8.549199, 47.404039], [8.549134, 47.404067], [8.549074, 47.404098]]], "type": "MultiLineString"}, "id": "4817", "properties": {}, "type": "Feature"}, {"bbox": [8.536749, 47.379548, 8.537415, 47.379731], "geometry": {"coordinates": [[[8.537415, 47.379548], [8.536749, 47.379731]]], "type": "MultiLineString"}, "id": "4827", "properties": {}, "type": "Feature"}, {"bbox": [8.529746, 47.379527, 8.530281, 47.380035], "geometry": {"coordinates": [[[8.529746, 47.379527], [8.530281, 47.380035]]], "type": "MultiLineString"}, "id": "4848", "properties": {}, "type": "Feature"}, {"bbox": [8.530876, 47.408159, 8.53232, 47.410172], "geometry": {"coordinates": [[[8.53232, 47.409999], [8.531351, 47.410172], [8.530928, 47.409093], [8.530903, 47.409034], [8.530886, 47.408974], [8.530877, 47.408913], [8.530876, 47.408852], [8.530883, 47.408791], [8.530898, 47.408731], [8.53092, 47.408672], [8.530951, 47.408615], [8.530988, 47.408559], [8.531083, 47.408453], [8.531184, 47.408349], [8.531291, 47.408248], [8.531313, 47.408229], [8.531337, 47.408212], [8.531363, 47.408197], [8.53139, 47.408183], [8.53142, 47.40817], [8.531451, 47.408159]]], "type": "MultiLineString"}, "id": "4853", "properties": {}, "type": "Feature"}, {"bbox": [8.530649, 47.348861, 8.531244, 47.350126], "geometry": {"coordinates": [[[8.530649, 47.350126], [8.530697, 47.350107], [8.530779, 47.35007], [8.530855, 47.350027], [8.530925, 47.349981], [8.53099, 47.34993], [8.531048, 47.349876], [8.531093, 47.349834], [8.531132, 47.349789], [8.531166, 47.349742], [8.531194, 47.349694], [8.531216, 47.349644], [8.531232, 47.349593], [8.531241, 47.349541], [8.531244, 47.349489], [8.53124, 47.349437], [8.53123, 47.349385], [8.531213, 47.349334], [8.53098, 47.348864], [8.530979, 47.348861]]], "type": "MultiLineString"}, "id": "4868", "properties": {}, "type": "Feature"}, {"bbox": [8.545929, 47.425197, 8.546314, 47.425776], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546113, 47.425208], [8.546105, 47.425209], [8.546096, 47.42521], [8.546088, 47.425212], [8.54608, 47.425214], [8.546072, 47.425217], [8.546065, 47.42522], [8.546058, 47.425223], [8.546052, 47.425227], [8.546046, 47.425232], [8.546041, 47.425236], [8.546036, 47.425241], [8.546032, 47.425247], [8.546029, 47.425252], [8.546027, 47.425258], [8.546025, 47.425263], [8.546024, 47.425269], [8.546024, 47.425275], [8.545929, 47.425776]]], "type": "MultiLineString"}, "id": "4920", "properties": {}, "type": "Feature"}, {"bbox": [8.494636, 47.40309, 8.496176, 47.403656], "geometry": {"coordinates": [[[8.496176, 47.40309], [8.495876, 47.403184], [8.49567, 47.403251], [8.495515, 47.403305], [8.495376, 47.40336], [8.495245, 47.403425], [8.495125, 47.403498], [8.495081, 47.403527], [8.495034, 47.403554], [8.494983, 47.403578], [8.49493, 47.403599], [8.494875, 47.403617], [8.494817, 47.403632], [8.494758, 47.403643], [8.494698, 47.403651], [8.494636, 47.403656]]], "type": "MultiLineString"}, "id": "4925", "properties": {}, "type": "Feature"}, {"bbox": [8.519909, 47.371442, 8.520801, 47.371757], "geometry": {"coordinates": [[[8.520801, 47.371757], [8.519909, 47.371442]]], "type": "MultiLineString"}, "id": "4929", "properties": {}, "type": "Feature"}, {"bbox": [8.546825, 47.419173, 8.547623, 47.41925], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547585, 47.419192], [8.547544, 47.419208], [8.547502, 47.419222], [8.547457, 47.419233], [8.547412, 47.419241], [8.547365, 47.419246], [8.547318, 47.419248], [8.547275, 47.41925], [8.547225, 47.419249], [8.547159, 47.419242], [8.546825, 47.419198]]], "type": "MultiLineString"}, "id": "4930", "properties": {}, "type": "Feature"}, {"bbox": [8.531194, 47.335349, 8.531969, 47.336723], "geometry": {"coordinates": [[[8.531969, 47.336723], [8.531905, 47.336627], [8.531437, 47.336235], [8.53138, 47.336178], [8.53133, 47.336117], [8.531287, 47.336055], [8.531252, 47.33599], [8.531224, 47.335924], [8.531205, 47.335856], [8.531194, 47.335787], [8.531196, 47.335758], [8.531203, 47.335728], [8.531213, 47.335699], [8.531227, 47.335671], [8.531245, 47.335644], [8.531266, 47.335618], [8.531291, 47.335593], [8.531318, 47.33557], [8.531349, 47.335549], [8.531645, 47.335349]]], "type": "MultiLineString"}, "id": "4979", "properties": {}, "type": "Feature"}, {"bbox": [8.529366, 47.414287, 8.529544, 47.414568], "geometry": {"coordinates": [[[8.529366, 47.414287], [8.529488, 47.414383], [8.529544, 47.414568]]], "type": "MultiLineString"}, "id": "5004", "properties": {}, "type": "Feature"}, {"bbox": [8.475206, 47.413708, 8.477064, 47.414666], "geometry": {"coordinates": [[[8.477064, 47.413708], [8.477033, 47.413716], [8.476817, 47.413753], [8.476597, 47.413778], [8.476374, 47.41379], [8.476314, 47.413874], [8.476242, 47.413954], [8.47616, 47.414029], [8.476068, 47.414098], [8.475982, 47.414157], [8.475539, 47.414418], [8.475444, 47.414472], [8.475357, 47.414532], [8.475277, 47.414597], [8.475206, 47.414666]]], "type": "MultiLineString"}, "id": "5036", "properties": {}, "type": "Feature"}, {"bbox": [8.543775, 47.425094, 8.546314, 47.425312], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546192, 47.425195], [8.54607, 47.425188], [8.545949, 47.425175], [8.545384, 47.425107], [8.545356, 47.425102], [8.545327, 47.425097], [8.545297, 47.425095], [8.545267, 47.425094], [8.545238, 47.425095], [8.545208, 47.425097], [8.545179, 47.425102], [8.54516, 47.425104], [8.544453, 47.425195], [8.544342, 47.425212], [8.544221, 47.425233], [8.543775, 47.425312]]], "type": "MultiLineString"}, "id": "5044", "properties": {}, "type": "Feature"}, {"bbox": [8.559523, 47.407413, 8.560396, 47.40744], "geometry": {"coordinates": [[[8.559523, 47.407413], [8.559654, 47.407416], [8.559823, 47.40743], [8.560394, 47.40744], [8.560396, 47.40744]]], "type": "MultiLineString"}, "id": "5063", "properties": {}, "type": "Feature"}, {"bbox": [8.529116, 47.39298, 8.529365, 47.393515], "geometry": {"coordinates": [[[8.529152, 47.39298], [8.529136, 47.393017], [8.529116, 47.393065], [8.529197, 47.393229], [8.529277, 47.393401], [8.529365, 47.393515]]], "type": "MultiLineString"}, "id": "5066", "properties": {}, "type": "Feature"}, {"bbox": [8.524882, 47.349021, 8.526599, 47.349217], "geometry": {"coordinates": [[[8.526599, 47.349021], [8.526099, 47.349087], [8.52597, 47.349108], [8.525463, 47.349196], [8.52527, 47.349213], [8.525076, 47.349217], [8.524882, 47.34921]]], "type": "MultiLineString"}, "id": "5073", "properties": {}, "type": "Feature"}, {"bbox": [8.572543, 47.357974, 8.573269, 47.358161], "geometry": {"coordinates": [[[8.572543, 47.357974], [8.572817, 47.358033], [8.573269, 47.358161]]], "type": "MultiLineString"}, "id": "5118", "properties": {}, "type": "Feature"}, {"bbox": [8.558894, 47.352783, 8.559435, 47.354327], "geometry": {"coordinates": [[[8.558894, 47.354327], [8.559352, 47.354006], [8.559368, 47.353994], [8.559382, 47.353981], [8.559395, 47.353968], [8.559406, 47.353953], [8.559415, 47.353938], [8.559423, 47.353923], [8.559429, 47.353907], [8.559433, 47.353891], [8.559435, 47.353875], [8.559435, 47.353859], [8.559223, 47.352783]]], "type": "MultiLineString"}, "id": "5136", "properties": {}, "type": "Feature"}, {"bbox": [8.540889, 47.421475, 8.542494, 47.421626], "geometry": {"coordinates": [[[8.542494, 47.421626], [8.542411, 47.421614], [8.54233, 47.421598], [8.542252, 47.421578], [8.542176, 47.421553], [8.542123, 47.421531], [8.542067, 47.421513], [8.54201, 47.421498], [8.54195, 47.421487], [8.54189, 47.421479], [8.541828, 47.421475], [8.541767, 47.421475], [8.541705, 47.421479], [8.541644, 47.421486], [8.541585, 47.421497], [8.541377, 47.421529], [8.541165, 47.42155], [8.540952, 47.421561], [8.540889, 47.421555]]], "type": "MultiLineString"}, "id": "5138", "properties": {}, "type": "Feature"}, {"bbox": [8.545162, 47.412614, 8.54538, 47.412992], "geometry": {"coordinates": [[[8.545162, 47.412614], [8.545286, 47.412662], [8.545296, 47.412667], [8.545306, 47.412672], [8.545315, 47.412678], [8.545324, 47.412684], [8.545331, 47.412691], [8.545338, 47.412698], [8.545344, 47.412705], [8.545349, 47.412713], [8.545353, 47.412721], [8.545356, 47.412729], [8.545358, 47.412738], [8.54538, 47.412992]]], "type": "MultiLineString"}, "id": "5142", "properties": {}, "type": "Feature"}, {"bbox": [8.544284, 47.412376, 8.545162, 47.412614], "geometry": {"coordinates": [[[8.545162, 47.412614], [8.544623, 47.412419], [8.544575, 47.412404], [8.544525, 47.412392], [8.544473, 47.412383], [8.544421, 47.412377], [8.544414, 47.412376], [8.544407, 47.412376], [8.544399, 47.412377], [8.544392, 47.412378], [8.544385, 47.412379], [8.544379, 47.412381], [8.544372, 47.412383], [8.544366, 47.412385], [8.54436, 47.412388], [8.544355, 47.412391], [8.54435, 47.412395], [8.544345, 47.412399], [8.544332, 47.412412], [8.54432, 47.412425], [8.54431, 47.41244], [8.544301, 47.412455], [8.544295, 47.41247], [8.54429, 47.412486], [8.544284, 47.412512]]], "type": "MultiLineString"}, "id": "5148", "properties": {}, "type": "Feature"}, {"bbox": [8.536455, 47.379731, 8.536749, 47.379813], "geometry": {"coordinates": [[[8.536749, 47.379731], [8.536455, 47.379813]]], "type": "MultiLineString"}, "id": "5157", "properties": {}, "type": "Feature"}, {"bbox": [8.507351, 47.362068, 8.50741, 47.362115], "geometry": {"coordinates": [[[8.50741, 47.362068], [8.507351, 47.362115]]], "type": "MultiLineString"}, "id": "5159", "properties": {}, "type": "Feature"}, {"bbox": [8.505994, 47.36308, 8.506048, 47.363118], "geometry": {"coordinates": [[[8.506048, 47.36308], [8.505994, 47.363118]]], "type": "MultiLineString"}, "id": "5160", "properties": {}, "type": "Feature"}, {"bbox": [8.506048, 47.362115, 8.507351, 47.36308], "geometry": {"coordinates": [[[8.507351, 47.362115], [8.507071, 47.362339], [8.506724, 47.362605], [8.506602, 47.362694], [8.506048, 47.36308]]], "type": "MultiLineString"}, "id": "5161", "properties": {}, "type": "Feature"}, {"bbox": [8.527561, 47.395777, 8.529071, 47.396015], "geometry": {"coordinates": [[[8.527561, 47.396015], [8.527567, 47.396014], [8.528896, 47.395802], [8.529059, 47.395778], [8.529071, 47.395777]]], "type": "MultiLineString"}, "id": "5167", "properties": {}, "type": "Feature"}, {"bbox": [8.516831, 47.389823, 8.518049, 47.390241], "geometry": {"coordinates": [[[8.518049, 47.389823], [8.517514, 47.390012], [8.516831, 47.390241]]], "type": "MultiLineString"}, "id": "5173", "properties": {}, "type": "Feature"}, {"bbox": [8.512013, 47.37305, 8.51248, 47.373312], "geometry": {"coordinates": [[[8.51248, 47.373312], [8.512406, 47.37327], [8.512246, 47.373181], [8.512087, 47.373092], [8.512013, 47.37305]]], "type": "MultiLineString"}, "id": "5182", "properties": {}, "type": "Feature"}, {"bbox": [8.512246, 47.372176, 8.513392, 47.373181], "geometry": {"coordinates": [[[8.513392, 47.372176], [8.513206, 47.372334], [8.512685, 47.372794], [8.512246, 47.373181]]], "type": "MultiLineString"}, "id": "5184", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_6bb1623050cb4e0ec89ed5a45da41c4b_add({"bbox": [8.473817, 47.329996, 8.588909, 47.430697], "features": [{"bbox": [8.52537, 47.344522, 8.526618, 47.346441], "geometry": {"coordinates": [[[8.526618, 47.344522], [8.526607, 47.344546], [8.526319, 47.345263], [8.526063, 47.345826], [8.525971, 47.345962], [8.525799, 47.346123], [8.52537, 47.346441]]], "type": "MultiLineString"}, "id": "0", "properties": {}, "type": "Feature"}, {"bbox": [8.507275, 47.362922, 8.507933, 47.363372], "geometry": {"coordinates": [[[8.507933, 47.363372], [8.507275, 47.362922]]], "type": "MultiLineString"}, "id": "6", "properties": {}, "type": "Feature"}, {"bbox": [8.571312, 47.404493, 8.571907, 47.404839], "geometry": {"coordinates": [[[8.571907, 47.404493], [8.571312, 47.404839]]], "type": "MultiLineString"}, "id": "20", "properties": {}, "type": "Feature"}, {"bbox": [8.556426, 47.355728, 8.557419, 47.356342], "geometry": {"coordinates": [[[8.556426, 47.355728], [8.556525, 47.355821], [8.557419, 47.356342]]], "type": "MultiLineString"}, "id": "49", "properties": {}, "type": "Feature"}, {"bbox": [8.530657, 47.369654, 8.530854, 47.36977], "geometry": {"coordinates": [[[8.530854, 47.36977], [8.530657, 47.369654]]], "type": "MultiLineString"}, "id": "73", "properties": {}, "type": "Feature"}, {"bbox": [8.516052, 47.379632, 8.516431, 47.379785], "geometry": {"coordinates": [[[8.516052, 47.379632], [8.516431, 47.379785]]], "type": "MultiLineString"}, "id": "108", "properties": {}, "type": "Feature"}, {"bbox": [8.506411, 47.357432, 8.507645, 47.358833], "geometry": {"coordinates": [[[8.507645, 47.357432], [8.506411, 47.358833]]], "type": "MultiLineString"}, "id": "116", "properties": {}, "type": "Feature"}, {"bbox": [8.522213, 47.372919, 8.524098, 47.374107], "geometry": {"coordinates": [[[8.524098, 47.372919], [8.522213, 47.374107]]], "type": "MultiLineString"}, "id": "119", "properties": {}, "type": "Feature"}, {"bbox": [8.55933, 47.364188, 8.559794, 47.364625], "geometry": {"coordinates": [[[8.55933, 47.364188], [8.559794, 47.364625]]], "type": "MultiLineString"}, "id": "152", "properties": {}, "type": "Feature"}, {"bbox": [8.506079, 47.421856, 8.506808, 47.423098], "geometry": {"coordinates": [[[8.506808, 47.423098], [8.506079, 47.421856]]], "type": "MultiLineString"}, "id": "153", "properties": {}, "type": "Feature"}, {"bbox": [8.504725, 47.400335, 8.505107, 47.400546], "geometry": {"coordinates": [[[8.505107, 47.400335], [8.504725, 47.400546]]], "type": "MultiLineString"}, "id": "154", "properties": {}, "type": "Feature"}, {"bbox": [8.516266, 47.389102, 8.517307, 47.389447], "geometry": {"coordinates": [[[8.516266, 47.389447], [8.516973, 47.389213], [8.517307, 47.389102]]], "type": "MultiLineString"}, "id": "155", "properties": {}, "type": "Feature"}, {"bbox": [8.485704, 47.382034, 8.486363, 47.382327], "geometry": {"coordinates": [[[8.486363, 47.382034], [8.486256, 47.382076], [8.485704, 47.382327]]], "type": "MultiLineString"}, "id": "158", "properties": {}, "type": "Feature"}, {"bbox": [8.512933, 47.415712, 8.513599, 47.416645], "geometry": {"coordinates": [[[8.512933, 47.415712], [8.513017, 47.415829], [8.513599, 47.416645]]], "type": "MultiLineString"}, "id": "163", "properties": {}, "type": "Feature"}, {"bbox": [8.485613, 47.387026, 8.486328, 47.387179], "geometry": {"coordinates": [[[8.486328, 47.387026], [8.485613, 47.387179]]], "type": "MultiLineString"}, "id": "172", "properties": {}, "type": "Feature"}, {"bbox": [8.504001, 47.363279, 8.505468, 47.364569], "geometry": {"coordinates": [[[8.505468, 47.363279], [8.504664, 47.363971], [8.504043, 47.364501], [8.504001, 47.364569]]], "type": "MultiLineString"}, "id": "186", "properties": {}, "type": "Feature"}, {"bbox": [8.503245, 47.360492, 8.504669, 47.361708], "geometry": {"coordinates": [[[8.504669, 47.360492], [8.503995, 47.361077], [8.503245, 47.361708]]], "type": "MultiLineString"}, "id": "191", "properties": {}, "type": "Feature"}, {"bbox": [8.498144, 47.384173, 8.499109, 47.384529], "geometry": {"coordinates": [[[8.499109, 47.384173], [8.498323, 47.384529], [8.498249, 47.384443], [8.498144, 47.384338]]], "type": "MultiLineString"}, "id": "201", "properties": {}, "type": "Feature"}, {"bbox": [8.525414, 47.416219, 8.527906, 47.416403], "geometry": {"coordinates": [[[8.527906, 47.416219], [8.527546, 47.416254], [8.526018, 47.416361], [8.525414, 47.416403]]], "type": "MultiLineString"}, "id": "216", "properties": {}, "type": "Feature"}, {"bbox": [8.512685, 47.372794, 8.513929, 47.373491], "geometry": {"coordinates": [[[8.513929, 47.373491], [8.512685, 47.372794]]], "type": "MultiLineString"}, "id": "218", "properties": {}, "type": "Feature"}, {"bbox": [8.527351, 47.391713, 8.528367, 47.392694], "geometry": {"coordinates": [[[8.527351, 47.391713], [8.527913, 47.392255], [8.528171, 47.392504], [8.528367, 47.392694]]], "type": "MultiLineString"}, "id": "224", "properties": {}, "type": "Feature"}, {"bbox": [8.527054, 47.383833, 8.529374, 47.384949], "geometry": {"coordinates": [[[8.529374, 47.383833], [8.528952, 47.384045], [8.528423, 47.384313], [8.527777, 47.384629], [8.527054, 47.384949]]], "type": "MultiLineString"}, "id": "228", "properties": {}, "type": "Feature"}, {"bbox": [8.58416, 47.399335, 8.585866, 47.400125], "geometry": {"coordinates": [[[8.585866, 47.399335], [8.585575, 47.399433], [8.585296, 47.399548], [8.585033, 47.399677], [8.58416, 47.400125]]], "type": "MultiLineString"}, "id": "229", "properties": {}, "type": "Feature"}, {"bbox": [8.48927, 47.375491, 8.492547, 47.377368], "geometry": {"coordinates": [[[8.492547, 47.377368], [8.49128, 47.376673], [8.491023, 47.376513], [8.48927, 47.375491]]], "type": "MultiLineString"}, "id": "234", "properties": {}, "type": "Feature"}, {"bbox": [8.538836, 47.396024, 8.538892, 47.396047], "geometry": {"coordinates": [[[8.538836, 47.396027], [8.538848, 47.396047], [8.538892, 47.396024]]], "type": "MultiLineString"}, "id": "243", "properties": {}, "type": "Feature"}, {"bbox": [8.516266, 47.389447, 8.51751, 47.391205], "geometry": {"coordinates": [[[8.516266, 47.389447], [8.516563, 47.389864], [8.516831, 47.390241], [8.51751, 47.391205]]], "type": "MultiLineString"}, "id": "251", "properties": {}, "type": "Feature"}, {"bbox": [8.506781, 47.357591, 8.508023, 47.359], "geometry": {"coordinates": [[[8.506781, 47.359], [8.508023, 47.357591]]], "type": "MultiLineString"}, "id": "261", "properties": {}, "type": "Feature"}, {"bbox": [8.528946, 47.382934, 8.530419, 47.384342], "geometry": {"coordinates": [[[8.528946, 47.382934], [8.529604, 47.383718], [8.529673, 47.383801], [8.530419, 47.384342]]], "type": "MultiLineString"}, "id": "264", "properties": {}, "type": "Feature"}, {"bbox": [8.571982, 47.359762, 8.572405, 47.359984], "geometry": {"coordinates": [[[8.571982, 47.359984], [8.572405, 47.359762]]], "type": "MultiLineString"}, "id": "286", "properties": {}, "type": "Feature"}, {"bbox": [8.525885, 47.41528, 8.527619, 47.416361], "geometry": {"coordinates": [[[8.527619, 47.415289], [8.527475, 47.41528], [8.525889, 47.415339], [8.525885, 47.415516], [8.525976, 47.416169], [8.526018, 47.416361]]], "type": "MultiLineString"}, "id": "293", "properties": {}, "type": "Feature"}, {"bbox": [8.54893, 47.382497, 8.549573, 47.382762], "geometry": {"coordinates": [[[8.54893, 47.382497], [8.549573, 47.382762]]], "type": "MultiLineString"}, "id": "311", "properties": {}, "type": "Feature"}, {"bbox": [8.517557, 47.366767, 8.518098, 47.367483], "geometry": {"coordinates": [[[8.518098, 47.366767], [8.518038, 47.366847], [8.517557, 47.367483]]], "type": "MultiLineString"}, "id": "317", "properties": {}, "type": "Feature"}, {"bbox": [8.556356, 47.36452, 8.557249, 47.364853], "geometry": {"coordinates": [[[8.556356, 47.36452], [8.557249, 47.364853]]], "type": "MultiLineString"}, "id": "318", "properties": {}, "type": "Feature"}, {"bbox": [8.545951, 47.367906, 8.54614, 47.368154], "geometry": {"coordinates": [[[8.54614, 47.367906], [8.545951, 47.368154]]], "type": "MultiLineString"}, "id": "339", "properties": {}, "type": "Feature"}, {"bbox": [8.478095, 47.385534, 8.479569, 47.38607], "geometry": {"coordinates": [[[8.479569, 47.385534], [8.479521, 47.385585], [8.478095, 47.38607]]], "type": "MultiLineString"}, "id": "343", "properties": {}, "type": "Feature"}, {"bbox": [8.552791, 47.421708, 8.553412, 47.421985], "geometry": {"coordinates": [[[8.552791, 47.421985], [8.553412, 47.421708]]], "type": "MultiLineString"}, "id": "348", "properties": {}, "type": "Feature"}, {"bbox": [8.516052, 47.379632, 8.516472, 47.379646], "geometry": {"coordinates": [[[8.516472, 47.379646], [8.516052, 47.379632]]], "type": "MultiLineString"}, "id": "359", "properties": {}, "type": "Feature"}, {"bbox": [8.572079, 47.357837, 8.572543, 47.357974], "geometry": {"coordinates": [[[8.572079, 47.357837], [8.572322, 47.357927], [8.572543, 47.357974]]], "type": "MultiLineString"}, "id": "363", "properties": {}, "type": "Feature"}, {"bbox": [8.535789, 47.378198, 8.5359, 47.37839], "geometry": {"coordinates": [[[8.535789, 47.378198], [8.5359, 47.37839]]], "type": "MultiLineString"}, "id": "392", "properties": {}, "type": "Feature"}, {"bbox": [8.487686, 47.37029, 8.489007, 47.371367], "geometry": {"coordinates": [[[8.487686, 47.371367], [8.487783, 47.371296], [8.489007, 47.37029]]], "type": "MultiLineString"}, "id": "395", "properties": {}, "type": "Feature"}, {"bbox": [8.564641, 47.362763, 8.565623, 47.363509], "geometry": {"coordinates": [[[8.564641, 47.363509], [8.564886, 47.363309], [8.565095, 47.363131], [8.565197, 47.36317], [8.565337, 47.363049], [8.565623, 47.362763]]], "type": "MultiLineString"}, "id": "399", "properties": {}, "type": "Feature"}, {"bbox": [8.532142, 47.378233, 8.53294, 47.378782], "geometry": {"coordinates": [[[8.532142, 47.378233], [8.53294, 47.378782]]], "type": "MultiLineString"}, "id": "406", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.409585, 8.544775, 47.40978], "geometry": {"coordinates": [[[8.544775, 47.40978], [8.544228, 47.409646], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "408", "properties": {}, "type": "Feature"}, {"bbox": [8.526073, 47.392102, 8.526817, 47.393003], "geometry": {"coordinates": [[[8.526073, 47.392102], [8.526817, 47.393003]]], "type": "MultiLineString"}, "id": "416", "properties": {}, "type": "Feature"}, {"bbox": [8.545231, 47.405207, 8.545914, 47.405681], "geometry": {"coordinates": [[[8.545898, 47.405207], [8.545914, 47.40558], [8.545516, 47.405633], [8.545231, 47.405681]]], "type": "MultiLineString"}, "id": "421", "properties": {}, "type": "Feature"}, {"bbox": [8.515839, 47.379632, 8.516052, 47.379947], "geometry": {"coordinates": [[[8.516052, 47.379632], [8.515839, 47.379947]]], "type": "MultiLineString"}, "id": "439", "properties": {}, "type": "Feature"}, {"bbox": [8.567282, 47.404875, 8.567443, 47.405386], "geometry": {"coordinates": [[[8.567282, 47.405386], [8.567438, 47.404892], [8.567443, 47.404875]]], "type": "MultiLineString"}, "id": "469", "properties": {}, "type": "Feature"}, {"bbox": [8.555733, 47.405127, 8.557398, 47.405864], "geometry": {"coordinates": [[[8.555733, 47.405864], [8.556435, 47.405567], [8.557203, 47.405227], [8.557398, 47.405127]]], "type": "MultiLineString"}, "id": "491", "properties": {}, "type": "Feature"}, {"bbox": [8.52677, 47.391896, 8.527873, 47.393296], "geometry": {"coordinates": [[[8.52677, 47.391896], [8.526829, 47.392005], [8.527444, 47.39276], [8.527812, 47.393221], [8.527873, 47.393296]]], "type": "MultiLineString"}, "id": "560", "properties": {}, "type": "Feature"}, {"bbox": [8.538107, 47.376442, 8.539475, 47.376775], "geometry": {"coordinates": [[[8.539475, 47.376442], [8.538901, 47.376579], [8.538806, 47.376602], [8.538287, 47.376725], [8.538107, 47.376775]]], "type": "MultiLineString"}, "id": "603", "properties": {}, "type": "Feature"}, {"bbox": [8.529527, 47.408596, 8.529974, 47.408821], "geometry": {"coordinates": [[[8.529974, 47.408821], [8.529527, 47.408596]]], "type": "MultiLineString"}, "id": "700", "properties": {}, "type": "Feature"}, {"bbox": [8.558815, 47.409441, 8.562087, 47.409502], "geometry": {"coordinates": [[[8.558815, 47.409502], [8.558957, 47.409477], [8.560253, 47.409496], [8.56047, 47.409441], [8.561246, 47.409447], [8.562087, 47.409465]]], "type": "MultiLineString"}, "id": "724", "properties": {}, "type": "Feature"}, {"bbox": [8.558894, 47.354327, 8.559292, 47.355088], "geometry": {"coordinates": [[[8.558894, 47.354327], [8.559292, 47.354535], [8.558942, 47.355001], [8.558946, 47.355088]]], "type": "MultiLineString"}, "id": "737", "properties": {}, "type": "Feature"}, {"bbox": [8.537622, 47.372287, 8.538331, 47.372317], "geometry": {"coordinates": [[[8.538331, 47.372317], [8.537628, 47.372298], [8.537626, 47.372294], [8.537624, 47.372289], [8.537622, 47.372287]]], "type": "MultiLineString"}, "id": "739", "properties": {}, "type": "Feature"}, {"bbox": [8.563949, 47.366365, 8.56442, 47.366586], "geometry": {"coordinates": [[[8.563949, 47.366365], [8.564363, 47.366564], [8.56442, 47.366586]]], "type": "MultiLineString"}, "id": "786", "properties": {}, "type": "Feature"}, {"bbox": [8.562411, 47.366105, 8.562897, 47.366584], "geometry": {"coordinates": [[[8.562411, 47.366105], [8.56259, 47.366281], [8.562897, 47.366584]]], "type": "MultiLineString"}, "id": "788", "properties": {}, "type": "Feature"}, {"bbox": [8.505686, 47.357122, 8.506906, 47.358506], "geometry": {"coordinates": [[[8.506906, 47.357122], [8.505686, 47.358506]]], "type": "MultiLineString"}, "id": "791", "properties": {}, "type": "Feature"}, {"bbox": [8.505468, 47.363279, 8.505863, 47.363516], "geometry": {"coordinates": [[[8.505863, 47.363516], [8.505468, 47.363279]]], "type": "MultiLineString"}, "id": "794", "properties": {}, "type": "Feature"}, {"bbox": [8.571907, 47.404257, 8.572311, 47.404493], "geometry": {"coordinates": [[[8.572311, 47.404257], [8.572304, 47.404262], [8.571907, 47.404493]]], "type": "MultiLineString"}, "id": "808", "properties": {}, "type": "Feature"}, {"bbox": [8.526372, 47.377011, 8.527403, 47.377384], "geometry": {"coordinates": [[[8.527403, 47.377011], [8.52693, 47.377175], [8.526799, 47.377224], [8.526372, 47.377384]]], "type": "MultiLineString"}, "id": "872", "properties": {}, "type": "Feature"}, {"bbox": [8.551181, 47.421985, 8.552791, 47.422702], "geometry": {"coordinates": [[[8.551181, 47.422702], [8.552791, 47.421985]]], "type": "MultiLineString"}, "id": "886", "properties": {}, "type": "Feature"}, {"bbox": [8.528288, 47.362613, 8.529264, 47.363529], "geometry": {"coordinates": [[[8.528288, 47.363529], [8.529181, 47.362622], [8.529264, 47.362613]]], "type": "MultiLineString"}, "id": "909", "properties": {}, "type": "Feature"}, {"bbox": [8.550493, 47.37944, 8.551023, 47.379916], "geometry": {"coordinates": [[[8.550493, 47.379916], [8.550751, 47.379684], [8.551023, 47.37944]]], "type": "MultiLineString"}, "id": "910", "properties": {}, "type": "Feature"}, {"bbox": [8.547811, 47.384522, 8.547892, 47.384891], "geometry": {"coordinates": [[[8.547811, 47.384522], [8.547821, 47.384646], [8.547848, 47.38477], [8.547892, 47.384891]]], "type": "MultiLineString"}, "id": "947", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.40978, 8.545097, 47.409859], "geometry": {"coordinates": [[[8.545097, 47.409859], [8.544775, 47.40978]]], "type": "MultiLineString"}, "id": "974", "properties": {}, "type": "Feature"}, {"bbox": [8.550782, 47.40447, 8.552381, 47.404758], "geometry": {"coordinates": [[[8.550782, 47.404758], [8.551256, 47.404722], [8.55152, 47.404686], [8.551778, 47.404633], [8.552027, 47.404564], [8.552381, 47.40447]]], "type": "MultiLineString"}, "id": "1008", "properties": {}, "type": "Feature"}, {"bbox": [8.552702, 47.404387, 8.553001, 47.404931], "geometry": {"coordinates": [[[8.552702, 47.404387], [8.552999, 47.404926], [8.553001, 47.404931]]], "type": "MultiLineString"}, "id": "1009", "properties": {}, "type": "Feature"}, {"bbox": [8.551825, 47.363138, 8.55335, 47.364187], "geometry": {"coordinates": [[[8.551825, 47.364187], [8.552069, 47.364006], [8.55237, 47.363783], [8.552606, 47.363607], [8.552981, 47.363313], [8.553195, 47.36319], [8.55335, 47.363138]]], "type": "MultiLineString"}, "id": "1051", "properties": {}, "type": "Feature"}, {"bbox": [8.547552, 47.384891, 8.547892, 47.385136], "geometry": {"coordinates": [[[8.547552, 47.385136], [8.547784, 47.384962], [8.547892, 47.384891]]], "type": "MultiLineString"}, "id": "1067", "properties": {}, "type": "Feature"}, {"bbox": [8.546939, 47.419173, 8.547623, 47.419722], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.54739, 47.419325], [8.546939, 47.419722]]], "type": "MultiLineString"}, "id": "1134", "properties": {}, "type": "Feature"}, {"bbox": [8.543284, 47.405681, 8.545231, 47.406309], "geometry": {"coordinates": [[[8.545231, 47.405681], [8.543284, 47.406309]]], "type": "MultiLineString"}, "id": "1150", "properties": {}, "type": "Feature"}, {"bbox": [8.523766, 47.348468, 8.524882, 47.34921], "geometry": {"coordinates": [[[8.524882, 47.34921], [8.523766, 47.348468]]], "type": "MultiLineString"}, "id": "1201", "properties": {}, "type": "Feature"}, {"bbox": [8.572311, 47.40418, 8.572416, 47.404257], "geometry": {"coordinates": [[[8.572416, 47.40418], [8.572311, 47.404257]]], "type": "MultiLineString"}, "id": "1209", "properties": {}, "type": "Feature"}, {"bbox": [8.528805, 47.393065, 8.529116, 47.393122], "geometry": {"coordinates": [[[8.528805, 47.393122], [8.529116, 47.393065]]], "type": "MultiLineString"}, "id": "1230", "properties": {}, "type": "Feature"}, {"bbox": [8.498266, 47.381148, 8.49949, 47.381697], "geometry": {"coordinates": [[[8.49949, 47.381148], [8.498955, 47.38138], [8.498811, 47.381446], [8.498266, 47.381697]]], "type": "MultiLineString"}, "id": "1271", "properties": {}, "type": "Feature"}, {"bbox": [8.543537, 47.40668, 8.544084, 47.407484], "geometry": {"coordinates": [[[8.543537, 47.40668], [8.544084, 47.407484]]], "type": "MultiLineString"}, "id": "1279", "properties": {}, "type": "Feature"}, {"bbox": [8.516505, 47.367124, 8.516578, 47.367147], "geometry": {"coordinates": [[[8.516578, 47.367147], [8.516517, 47.367127], [8.516505, 47.367124]]], "type": "MultiLineString"}, "id": "1296", "properties": {}, "type": "Feature"}, {"bbox": [8.498955, 47.38138, 8.500178, 47.382429], "geometry": {"coordinates": [[[8.500178, 47.382429], [8.499821, 47.382089], [8.499613, 47.382019], [8.498955, 47.38138]]], "type": "MultiLineString"}, "id": "1297", "properties": {}, "type": "Feature"}, {"bbox": [8.500634, 47.380116, 8.501869, 47.380658], "geometry": {"coordinates": [[[8.501869, 47.380116], [8.501586, 47.380248], [8.500634, 47.380658]]], "type": "MultiLineString"}, "id": "1305", "properties": {}, "type": "Feature"}, {"bbox": [8.49949, 47.381148, 8.500367, 47.381829], "geometry": {"coordinates": [[[8.500367, 47.381829], [8.500231, 47.381779], [8.499586, 47.381161], [8.49949, 47.381148]]], "type": "MultiLineString"}, "id": "1306", "properties": {}, "type": "Feature"}, {"bbox": [8.526192, 47.339286, 8.526595, 47.340827], "geometry": {"coordinates": [[[8.526192, 47.340827], [8.5264, 47.340342], [8.526448, 47.340212], [8.526483, 47.340079], [8.526504, 47.339945], [8.526595, 47.339286]]], "type": "MultiLineString"}, "id": "1312", "properties": {}, "type": "Feature"}, {"bbox": [8.553707, 47.35395, 8.555054, 47.354762], "geometry": {"coordinates": [[[8.553707, 47.35395], [8.553825, 47.354022], [8.554916, 47.354692], [8.555054, 47.354762]]], "type": "MultiLineString"}, "id": "1317", "properties": {}, "type": "Feature"}, {"bbox": [8.552917, 47.406998, 8.554289, 47.407345], "geometry": {"coordinates": [[[8.552917, 47.407345], [8.553887, 47.407112], [8.554289, 47.406998]]], "type": "MultiLineString"}, "id": "1325", "properties": {}, "type": "Feature"}, {"bbox": [8.516578, 47.367147, 8.517557, 47.367483], "geometry": {"coordinates": [[[8.517557, 47.367483], [8.516578, 47.367147]]], "type": "MultiLineString"}, "id": "1329", "properties": {}, "type": "Feature"}, {"bbox": [8.513894, 47.329996, 8.515213, 47.331906], "geometry": {"coordinates": [[[8.513894, 47.329996], [8.513914, 47.33013], [8.513951, 47.330261], [8.514007, 47.33039], [8.514079, 47.330515], [8.514168, 47.330634], [8.514358, 47.330861], [8.514398, 47.330898], [8.515213, 47.331906]]], "type": "MultiLineString"}, "id": "1332", "properties": {}, "type": "Feature"}, {"bbox": [8.478636, 47.386802, 8.478691, 47.386906], "geometry": {"coordinates": [[[8.478691, 47.386906], [8.478636, 47.386802]]], "type": "MultiLineString"}, "id": "1336", "properties": {}, "type": "Feature"}, {"bbox": [8.560341, 47.367959, 8.560743, 47.368346], "geometry": {"coordinates": [[[8.560341, 47.368346], [8.560743, 47.367959]]], "type": "MultiLineString"}, "id": "1358", "properties": {}, "type": "Feature"}, {"bbox": [8.55315, 47.422346, 8.553424, 47.422621], "geometry": {"coordinates": [[[8.55315, 47.422346], [8.553424, 47.422621]]], "type": "MultiLineString"}, "id": "1360", "properties": {}, "type": "Feature"}, {"bbox": [8.552791, 47.421985, 8.55315, 47.422346], "geometry": {"coordinates": [[[8.552791, 47.421985], [8.55315, 47.422346]]], "type": "MultiLineString"}, "id": "1363", "properties": {}, "type": "Feature"}, {"bbox": [8.548598, 47.419959, 8.549383, 47.420138], "geometry": {"coordinates": [[[8.548598, 47.420138], [8.549383, 47.419959], [8.549383, 47.419959]]], "type": "MultiLineString"}, "id": "1365", "properties": {}, "type": "Feature"}, {"bbox": [8.53791, 47.39513, 8.538836, 47.396027], "geometry": {"coordinates": [[[8.53791, 47.39513], [8.537967, 47.395179], [8.537932, 47.395212], [8.537975, 47.395229], [8.53883, 47.396018], [8.538836, 47.396027]]], "type": "MultiLineString"}, "id": "1381", "properties": {}, "type": "Feature"}, {"bbox": [8.553825, 47.35383, 8.555384, 47.354493], "geometry": {"coordinates": [[[8.553825, 47.354022], [8.554248, 47.35383], [8.555384, 47.354493]]], "type": "MultiLineString"}, "id": "1382", "properties": {}, "type": "Feature"}, {"bbox": [8.54408, 47.388507, 8.545131, 47.389221], "geometry": {"coordinates": [[[8.545131, 47.388507], [8.545054, 47.388559], [8.54408, 47.389221]]], "type": "MultiLineString"}, "id": "1386", "properties": {}, "type": "Feature"}, {"bbox": [8.551857, 47.407605, 8.553078, 47.407958], "geometry": {"coordinates": [[[8.551857, 47.407958], [8.552063, 47.40787], [8.553078, 47.407605]]], "type": "MultiLineString"}, "id": "1396", "properties": {}, "type": "Feature"}, {"bbox": [8.528382, 47.380035, 8.530281, 47.380713], "geometry": {"coordinates": [[[8.530281, 47.380035], [8.529009, 47.380519], [8.528382, 47.380713]]], "type": "MultiLineString"}, "id": "1412", "properties": {}, "type": "Feature"}, {"bbox": [8.53294, 47.378782, 8.533497, 47.379165], "geometry": {"coordinates": [[[8.53294, 47.378782], [8.533497, 47.379165]]], "type": "MultiLineString"}, "id": "1413", "properties": {}, "type": "Feature"}, {"bbox": [8.546349, 47.368229, 8.546834, 47.368788], "geometry": {"coordinates": [[[8.546834, 47.368229], [8.546349, 47.368788]]], "type": "MultiLineString"}, "id": "1416", "properties": {}, "type": "Feature"}, {"bbox": [8.538749, 47.420259, 8.538854, 47.420457], "geometry": {"coordinates": [[[8.538749, 47.420259], [8.538847, 47.420432], [8.538854, 47.420457]]], "type": "MultiLineString"}, "id": "1458", "properties": {}, "type": "Feature"}, {"bbox": [8.497491, 47.384529, 8.498323, 47.385239], "geometry": {"coordinates": [[[8.497742, 47.385239], [8.497491, 47.384976], [8.498036, 47.384718], [8.498135, 47.384614], [8.498323, 47.384529]]], "type": "MultiLineString"}, "id": "1486", "properties": {}, "type": "Feature"}, {"bbox": [8.57086, 47.361614, 8.571226, 47.362141], "geometry": {"coordinates": [[[8.571226, 47.361614], [8.57111, 47.361778], [8.57086, 47.362141]]], "type": "MultiLineString"}, "id": "1494", "properties": {}, "type": "Feature"}, {"bbox": [8.515637, 47.379342, 8.516052, 47.379638], "geometry": {"coordinates": [[[8.5157, 47.379342], [8.516052, 47.379632], [8.515637, 47.379638]]], "type": "MultiLineString"}, "id": "1509", "properties": {}, "type": "Feature"}, {"bbox": [8.525828, 47.35976, 8.526777, 47.359834], "geometry": {"coordinates": [[[8.526777, 47.359834], [8.525828, 47.35976]]], "type": "MultiLineString"}, "id": "1511", "properties": {}, "type": "Feature"}, {"bbox": [8.498526, 47.380854, 8.49949, 47.381446], "geometry": {"coordinates": [[[8.49949, 47.381148], [8.499209, 47.380854], [8.498526, 47.381149], [8.498811, 47.381446]]], "type": "MultiLineString"}, "id": "1515", "properties": {}, "type": "Feature"}, {"bbox": [8.520996, 47.378746, 8.521994, 47.379171], "geometry": {"coordinates": [[[8.521994, 47.378746], [8.521653, 47.378878], [8.52132, 47.37902], [8.520996, 47.379171]]], "type": "MultiLineString"}, "id": "1516", "properties": {}, "type": "Feature"}, {"bbox": [8.50472, 47.422239, 8.505556, 47.423666], "geometry": {"coordinates": [[[8.505556, 47.423666], [8.50472, 47.422239]]], "type": "MultiLineString"}, "id": "1527", "properties": {}, "type": "Feature"}, {"bbox": [8.548906, 47.382224, 8.549243, 47.382559], "geometry": {"coordinates": [[[8.548906, 47.382559], [8.54893, 47.382497], [8.549243, 47.382224]]], "type": "MultiLineString"}, "id": "1533", "properties": {}, "type": "Feature"}, {"bbox": [8.553032, 47.396715, 8.553442, 47.39746], "geometry": {"coordinates": [[[8.553032, 47.396715], [8.553442, 47.39746]]], "type": "MultiLineString"}, "id": "1536", "properties": {}, "type": "Feature"}, {"bbox": [8.50604, 47.357274, 8.507267, 47.358666], "geometry": {"coordinates": [[[8.50604, 47.358666], [8.507267, 47.357274]]], "type": "MultiLineString"}, "id": "1541", "properties": {}, "type": "Feature"}, {"bbox": [8.502099, 47.422975, 8.502928, 47.42439], "geometry": {"coordinates": [[[8.502928, 47.42439], [8.502099, 47.422975]]], "type": "MultiLineString"}, "id": "1544", "properties": {}, "type": "Feature"}, {"bbox": [8.538819, 47.394849, 8.539101, 47.395126], "geometry": {"coordinates": [[[8.539088, 47.395036], [8.538882, 47.394849], [8.538856, 47.394855], [8.538819, 47.394872], [8.539101, 47.395122], [8.539093, 47.395126]]], "type": "MultiLineString"}, "id": "1546", "properties": {}, "type": "Feature"}, {"bbox": [8.515375, 47.366831, 8.516505, 47.367124], "geometry": {"coordinates": [[[8.516505, 47.367124], [8.515375, 47.366831]]], "type": "MultiLineString"}, "id": "1576", "properties": {}, "type": "Feature"}, {"bbox": [8.551385, 47.422346, 8.55315, 47.423154], "geometry": {"coordinates": [[[8.551385, 47.423154], [8.55315, 47.422346]]], "type": "MultiLineString"}, "id": "1598", "properties": {}, "type": "Feature"}, {"bbox": [8.536749, 47.379731, 8.536921, 47.38002], "geometry": {"coordinates": [[[8.536749, 47.379731], [8.536921, 47.38002]]], "type": "MultiLineString"}, "id": "1602", "properties": {}, "type": "Feature"}, {"bbox": [8.534301, 47.380318, 8.534718, 47.380419], "geometry": {"coordinates": [[[8.534718, 47.380318], [8.534492, 47.380373], [8.534301, 47.380419]]], "type": "MultiLineString"}, "id": "1603", "properties": {}, "type": "Feature"}, {"bbox": [8.537189, 47.377184, 8.537852, 47.377777], "geometry": {"coordinates": [[[8.537189, 47.377184], [8.537852, 47.377777]]], "type": "MultiLineString"}, "id": "1610", "properties": {}, "type": "Feature"}, {"bbox": [8.526618, 47.344435, 8.52666, 47.344522], "geometry": {"coordinates": [[[8.52666, 47.344435], [8.526659, 47.344436], [8.526618, 47.344522]]], "type": "MultiLineString"}, "id": "1643", "properties": {}, "type": "Feature"}, {"bbox": [8.50468, 47.400546, 8.504725, 47.40057], "geometry": {"coordinates": [[[8.504725, 47.400546], [8.50468, 47.40057]]], "type": "MultiLineString"}, "id": "1644", "properties": {}, "type": "Feature"}, {"bbox": [8.507143, 47.357746, 8.508392, 47.359163], "geometry": {"coordinates": [[[8.508392, 47.357746], [8.507143, 47.359163]]], "type": "MultiLineString"}, "id": "1646", "properties": {}, "type": "Feature"}, {"bbox": [8.49666, 47.374919, 8.497954, 47.375484], "geometry": {"coordinates": [[[8.497954, 47.374919], [8.49666, 47.375484]]], "type": "MultiLineString"}, "id": "1672", "properties": {}, "type": "Feature"}, {"bbox": [8.51126, 47.356702, 8.511295, 47.356754], "geometry": {"coordinates": [[[8.511295, 47.356702], [8.51126, 47.356754]]], "type": "MultiLineString"}, "id": "1697", "properties": {}, "type": "Feature"}, {"bbox": [8.544599, 47.409032, 8.545471, 47.410737], "geometry": {"coordinates": [[[8.545447, 47.409032], [8.545458, 47.40906], [8.545466, 47.409089], [8.54547, 47.409118], [8.545471, 47.409147], [8.545468, 47.409177], [8.545461, 47.409206], [8.545451, 47.409234], [8.54542, 47.409288], [8.545097, 47.409859], [8.544832, 47.41033], [8.544638, 47.410673], [8.544599, 47.410737]]], "type": "MultiLineString"}, "id": "1707", "properties": {}, "type": "Feature"}, {"bbox": [8.52676, 47.342934, 8.528236, 47.344223], "geometry": {"coordinates": [[[8.528236, 47.342934], [8.52805, 47.343063], [8.527869, 47.343181], [8.527656, 47.343294], [8.52757, 47.343328], [8.527471, 47.343404], [8.527207, 47.343645], [8.52713, 47.343726], [8.526999, 47.343869], [8.526856, 47.344054], [8.526771, 47.344201], [8.52676, 47.344223]]], "type": "MultiLineString"}, "id": "1713", "properties": {}, "type": "Feature"}, {"bbox": [8.526708, 47.376184, 8.527793, 47.377224], "geometry": {"coordinates": [[[8.527793, 47.376184], [8.527758, 47.37622], [8.527719, 47.376253], [8.527676, 47.376285], [8.52763, 47.376315], [8.526767, 47.376693], [8.526757, 47.376698], [8.526748, 47.376704], [8.52674, 47.376711], [8.526732, 47.376718], [8.526726, 47.376725], [8.52672, 47.376733], [8.526715, 47.376741], [8.526712, 47.37675], [8.526709, 47.376758], [8.526708, 47.376767], [8.526718, 47.377034], [8.526724, 47.377074], [8.526735, 47.377113], [8.526751, 47.377151], [8.526773, 47.377188], [8.526799, 47.377224]]], "type": "MultiLineString"}, "id": "1787", "properties": {}, "type": "Feature"}, {"bbox": [8.55237, 47.363783, 8.552965, 47.364132], "geometry": {"coordinates": [[[8.55237, 47.363783], [8.552438, 47.363834], [8.552903, 47.364104], [8.552965, 47.364132]]], "type": "MultiLineString"}, "id": "1806", "properties": {}, "type": "Feature"}, {"bbox": [8.509798, 47.356754, 8.51126, 47.358314], "geometry": {"coordinates": [[[8.51126, 47.356754], [8.511094, 47.356999], [8.510639, 47.357594], [8.510504, 47.357736], [8.510353, 47.357894], [8.510185, 47.358044], [8.509999, 47.358184], [8.509798, 47.358314]]], "type": "MultiLineString"}, "id": "1852", "properties": {}, "type": "Feature"}, {"bbox": [8.529374, 47.383664, 8.529712, 47.383833], "geometry": {"coordinates": [[[8.529712, 47.383664], [8.529604, 47.383718], [8.529374, 47.383833]]], "type": "MultiLineString"}, "id": "1907", "properties": {}, "type": "Feature"}, {"bbox": [8.523176, 47.375895, 8.5234, 47.375955], "geometry": {"coordinates": [[[8.5234, 47.375895], [8.523291, 47.375933], [8.523216, 47.375941], [8.523176, 47.375955]]], "type": "MultiLineString"}, "id": "1910", "properties": {}, "type": "Feature"}, {"bbox": [8.562097, 47.360953, 8.56539, 47.361382], "geometry": {"coordinates": [[[8.562097, 47.361382], [8.562124, 47.36135], [8.562155, 47.36132], [8.562189, 47.361292], [8.562227, 47.361265], [8.562268, 47.361241], [8.562425, 47.361169], [8.562591, 47.361108], [8.562765, 47.361057], [8.562945, 47.361018], [8.56313, 47.36099], [8.563318, 47.360973], [8.564758, 47.360957], [8.56539, 47.360953]]], "type": "MultiLineString"}, "id": "1912", "properties": {}, "type": "Feature"}, {"bbox": [8.503505, 47.422641, 8.504401, 47.423962], "geometry": {"coordinates": [[[8.503505, 47.422641], [8.503642, 47.422775], [8.503675, 47.422809], [8.503706, 47.422845], [8.503733, 47.422881], [8.503757, 47.422917], [8.503778, 47.422954], [8.503796, 47.422991], [8.503811, 47.42302], [8.503826, 47.423048], [8.503843, 47.423077], [8.503848, 47.423084], [8.503853, 47.423092], [8.503857, 47.423099], [8.503857, 47.423099], [8.503941, 47.423205], [8.50399, 47.42327], [8.504036, 47.423337], [8.504078, 47.423405], [8.504401, 47.423962]]], "type": "MultiLineString"}, "id": "1917", "properties": {}, "type": "Feature"}, {"bbox": [8.526881, 47.356243, 8.526987, 47.356418], "geometry": {"coordinates": [[[8.526987, 47.356414], [8.526919, 47.356418], [8.52691, 47.356243], [8.526881, 47.356244]]], "type": "MultiLineString"}, "id": "1927", "properties": {}, "type": "Feature"}, {"bbox": [8.526249, 47.356265, 8.526278, 47.356464], "geometry": {"coordinates": [[[8.526278, 47.356265], [8.526249, 47.356266], [8.526258, 47.356464]]], "type": "MultiLineString"}, "id": "1928", "properties": {}, "type": "Feature"}, {"bbox": [8.503709, 47.365608, 8.506375, 47.366703], "geometry": {"coordinates": [[[8.505669, 47.366703], [8.505723, 47.366615], [8.506375, 47.365738], [8.506085, 47.365618], [8.504319, 47.365613], [8.504267, 47.365609], [8.504215, 47.365608], [8.504164, 47.365611], [8.504112, 47.365616], [8.504062, 47.365625], [8.504012, 47.365636], [8.503965, 47.36565], [8.503919, 47.365667], [8.503876, 47.365687], [8.503835, 47.365709], [8.503797, 47.365733], [8.503709, 47.365799]]], "type": "MultiLineString"}, "id": "1933", "properties": {}, "type": "Feature"}, {"bbox": [8.477064, 47.413605, 8.477449, 47.413708], "geometry": {"coordinates": [[[8.477449, 47.413605], [8.477244, 47.413666], [8.477064, 47.413708]]], "type": "MultiLineString"}, "id": "1935", "properties": {}, "type": "Feature"}, {"bbox": [8.538768, 47.39549, 8.53967, 47.396086], "geometry": {"coordinates": [[[8.538957, 47.396086], [8.538892, 47.396024], [8.53893, 47.396009], [8.538891, 47.395985], [8.53879, 47.395901], [8.53877, 47.39587], [8.538768, 47.395851], [8.538796, 47.395835], [8.5395, 47.39549], [8.539628, 47.395601], [8.539647, 47.395622], [8.53967, 47.395607]]], "type": "MultiLineString"}, "id": "1938", "properties": {}, "type": "Feature"}, {"bbox": [8.525959, 47.392504, 8.528171, 47.393442], "geometry": {"coordinates": [[[8.528171, 47.392504], [8.527444, 47.39276], [8.526817, 47.393003], [8.526073, 47.393277], [8.525959, 47.393442]]], "type": "MultiLineString"}, "id": "1943", "properties": {}, "type": "Feature"}, {"bbox": [8.478154, 47.386136, 8.478636, 47.386802], "geometry": {"coordinates": [[[8.478636, 47.386802], [8.478534, 47.386614], [8.478335, 47.386335], [8.478154, 47.386136]]], "type": "MultiLineString"}, "id": "1950", "properties": {}, "type": "Feature"}, {"bbox": [8.526278, 47.356244, 8.526881, 47.356265], "geometry": {"coordinates": [[[8.526881, 47.356244], [8.526278, 47.356265]]], "type": "MultiLineString"}, "id": "1959", "properties": {}, "type": "Feature"}, {"bbox": [8.53876, 47.394066, 8.539328, 47.394855], "geometry": {"coordinates": [[[8.539328, 47.394066], [8.538827, 47.394695], [8.53876, 47.394789], [8.538856, 47.394855]]], "type": "MultiLineString"}, "id": "1977", "properties": {}, "type": "Feature"}, {"bbox": [8.534541, 47.393906, 8.535437, 47.394852], "geometry": {"coordinates": [[[8.535437, 47.393906], [8.535317, 47.394019], [8.535196, 47.394155], [8.534685, 47.394711], [8.534556, 47.394839], [8.534541, 47.394852]]], "type": "MultiLineString"}, "id": "1993", "properties": {}, "type": "Feature"}, {"bbox": [8.537491, 47.385024, 8.538507, 47.385243], "geometry": {"coordinates": [[[8.538507, 47.385226], [8.538392, 47.385191], [8.538006, 47.385042], [8.537994, 47.385037], [8.537983, 47.385033], [8.53797, 47.38503], [8.537957, 47.385027], [8.537944, 47.385025], [8.537931, 47.385024], [8.537918, 47.385024], [8.537904, 47.385024], [8.537891, 47.385025], [8.537878, 47.385027], [8.537865, 47.38503], [8.537853, 47.385033], [8.537841, 47.385037], [8.537829, 47.385042], [8.537491, 47.385243]]], "type": "MultiLineString"}, "id": "1996", "properties": {}, "type": "Feature"}, {"bbox": [8.512351, 47.366891, 8.514606, 47.3687], "geometry": {"coordinates": [[[8.514606, 47.366891], [8.514498, 47.36696], [8.513806, 47.367506], [8.51299, 47.368152], [8.512753, 47.36835], [8.512426, 47.368634], [8.512351, 47.3687]]], "type": "MultiLineString"}, "id": "1997", "properties": {}, "type": "Feature"}, {"bbox": [8.557414, 47.406736, 8.557575, 47.408177], "geometry": {"coordinates": [[[8.557414, 47.406736], [8.557479, 47.406906], [8.55749, 47.406935], [8.55753, 47.407078], [8.557548, 47.407164], [8.557564, 47.407266], [8.557568, 47.407307], [8.557573, 47.407384], [8.557575, 47.407484], [8.557557, 47.407974], [8.557546, 47.408177]]], "type": "MultiLineString"}, "id": "2005", "properties": {}, "type": "Feature"}, {"bbox": [8.549383, 47.419959, 8.550329, 47.420932], "geometry": {"coordinates": [[[8.549383, 47.419959], [8.550095, 47.420645], [8.550177, 47.420739], [8.550255, 47.420834], [8.550329, 47.420932]]], "type": "MultiLineString"}, "id": "2009", "properties": {}, "type": "Feature"}, {"bbox": [8.526915, 47.356418, 8.526928, 47.356593], "geometry": {"coordinates": [[[8.526915, 47.356593], [8.526928, 47.356592], [8.526919, 47.356418]]], "type": "MultiLineString"}, "id": "2023", "properties": {}, "type": "Feature"}, {"bbox": [8.526273, 47.356593, 8.526915, 47.356597], "geometry": {"coordinates": [[[8.526273, 47.356597], [8.526915, 47.356593]]], "type": "MultiLineString"}, "id": "2024", "properties": {}, "type": "Feature"}, {"bbox": [8.526258, 47.356464, 8.526273, 47.356597], "geometry": {"coordinates": [[[8.526258, 47.356464], [8.526265, 47.356597], [8.526273, 47.356597]]], "type": "MultiLineString"}, "id": "2066", "properties": {}, "type": "Feature"}, {"bbox": [8.538056, 47.398798, 8.540413, 47.401233], "geometry": {"coordinates": [[[8.540413, 47.398798], [8.540303, 47.398895], [8.539871, 47.399347], [8.539068, 47.400178], [8.538251, 47.401026], [8.538056, 47.401233]]], "type": "MultiLineString"}, "id": "2076", "properties": {}, "type": "Feature"}, {"bbox": [8.519826, 47.338338, 8.520696, 47.339026], "geometry": {"coordinates": [[[8.519826, 47.338765], [8.519879, 47.338764], [8.51988, 47.338838], [8.519924, 47.338837], [8.519927, 47.339005], [8.520257, 47.339002], [8.520257, 47.339026], [8.520387, 47.339025], [8.520517, 47.339024], [8.520696, 47.339016], [8.520679, 47.338826], [8.520436, 47.338811], [8.520439, 47.338786], [8.520348, 47.33878], [8.52038, 47.338539], [8.520346, 47.338505], [8.520365, 47.338369], [8.519885, 47.338338], [8.519873, 47.338538], [8.519879, 47.338764]]], "type": "MultiLineString"}, "id": "2120", "properties": {}, "type": "Feature"}, {"bbox": [8.49895, 47.42382, 8.499811, 47.425289], "geometry": {"coordinates": [[[8.499811, 47.425289], [8.49895, 47.42382]]], "type": "MultiLineString"}, "id": "2149", "properties": {}, "type": "Feature"}, {"bbox": [8.547892, 47.384891, 8.547939, 47.385062], "geometry": {"coordinates": [[[8.547892, 47.384891], [8.547922, 47.385015], [8.547939, 47.385062]]], "type": "MultiLineString"}, "id": "2155", "properties": {}, "type": "Feature"}, {"bbox": [8.536458, 47.393689, 8.53664, 47.393935], "geometry": {"coordinates": [[[8.53664, 47.393689], [8.536585, 47.393773], [8.536524, 47.393855], [8.536458, 47.393935]]], "type": "MultiLineString"}, "id": "2174", "properties": {}, "type": "Feature"}, {"bbox": [8.491209, 47.37608, 8.491388, 47.376274], "geometry": {"coordinates": [[[8.491209, 47.376274], [8.491264, 47.376207], [8.491324, 47.376142], [8.491388, 47.37608]]], "type": "MultiLineString"}, "id": "2183", "properties": {}, "type": "Feature"}, {"bbox": [8.588838, 47.40312, 8.588909, 47.404009], "geometry": {"coordinates": [[[8.588838, 47.40312], [8.588883, 47.403398], [8.588904, 47.403527], [8.588909, 47.403657], [8.588898, 47.403786], [8.588871, 47.403914], [8.588838, 47.404009]]], "type": "MultiLineString"}, "id": "2186", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393122, 8.528805, 47.393195], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528805, 47.393122]]], "type": "MultiLineString"}, "id": "2216", "properties": {}, "type": "Feature"}, {"bbox": [8.513599, 47.416645, 8.513626, 47.416683], "geometry": {"coordinates": [[[8.513599, 47.416645], [8.513626, 47.416683]]], "type": "MultiLineString"}, "id": "2219", "properties": {}, "type": "Feature"}, {"bbox": [8.52666, 47.344223, 8.52676, 47.344435], "geometry": {"coordinates": [[[8.52676, 47.344223], [8.526733, 47.34428], [8.52666, 47.344435]]], "type": "MultiLineString"}, "id": "2262", "properties": {}, "type": "Feature"}, {"bbox": [8.539433, 47.410355, 8.539997, 47.410369], "geometry": {"coordinates": [[[8.539997, 47.410355], [8.539433, 47.410369]]], "type": "MultiLineString"}, "id": "2279", "properties": {}, "type": "Feature"}, {"bbox": [8.552381, 47.404147, 8.553593, 47.40447], "geometry": {"coordinates": [[[8.552381, 47.40447], [8.552702, 47.404387], [8.553279, 47.404225], [8.553593, 47.404147]]], "type": "MultiLineString"}, "id": "2292", "properties": {}, "type": "Feature"}, {"bbox": [8.540441, 47.393529, 8.540491, 47.393963], "geometry": {"coordinates": [[[8.540441, 47.393529], [8.540441, 47.393688], [8.540449, 47.393829], [8.540491, 47.393963]]], "type": "MultiLineString"}, "id": "2301", "properties": {}, "type": "Feature"}, {"bbox": [8.535968, 47.393935, 8.536458, 47.39439], "geometry": {"coordinates": [[[8.536458, 47.393935], [8.536316, 47.394096], [8.536152, 47.394248], [8.535968, 47.39439]]], "type": "MultiLineString"}, "id": "2321", "properties": {}, "type": "Feature"}, {"bbox": [8.526832, 47.339496, 8.527746, 47.341023], "geometry": {"coordinates": [[[8.526832, 47.341023], [8.527137, 47.340686], [8.527254, 47.340559], [8.527355, 47.340425], [8.527439, 47.340286], [8.527507, 47.340143], [8.527737, 47.339519], [8.527746, 47.339496]]], "type": "MultiLineString"}, "id": "2355", "properties": {}, "type": "Feature"}, {"bbox": [8.526178, 47.356463, 8.526258, 47.356464], "geometry": {"coordinates": [[[8.526178, 47.356463], [8.526258, 47.356464]]], "type": "MultiLineString"}, "id": "2360", "properties": {}, "type": "Feature"}, {"bbox": [8.535789, 47.378034, 8.536395, 47.378198], "geometry": {"coordinates": [[[8.535789, 47.378198], [8.536395, 47.378034]]], "type": "MultiLineString"}, "id": "2361", "properties": {}, "type": "Feature"}, {"bbox": [8.537391, 47.430011, 8.540104, 47.430697], "geometry": {"coordinates": [[[8.540104, 47.430011], [8.538975, 47.430491], [8.538568, 47.430545], [8.537568, 47.430687], [8.537391, 47.430697]]], "type": "MultiLineString"}, "id": "2371", "properties": {}, "type": "Feature"}, {"bbox": [8.52753, 47.415001, 8.528055, 47.416689], "geometry": {"coordinates": [[[8.52753, 47.415001], [8.527619, 47.415289], [8.527906, 47.416219], [8.528055, 47.416689]]], "type": "MultiLineString"}, "id": "2384", "properties": {}, "type": "Feature"}, {"bbox": [8.577241, 47.361115, 8.578021, 47.361824], "geometry": {"coordinates": [[[8.577241, 47.361824], [8.577244, 47.361822], [8.577267, 47.361808], [8.577288, 47.361793], [8.578021, 47.361115]]], "type": "MultiLineString"}, "id": "2385", "properties": {}, "type": "Feature"}, {"bbox": [8.499915, 47.423556, 8.50078, 47.425035], "geometry": {"coordinates": [[[8.50078, 47.425035], [8.499915, 47.423556]]], "type": "MultiLineString"}, "id": "2419", "properties": {}, "type": "Feature"}, {"bbox": [8.537967, 47.395126, 8.539093, 47.395497], "geometry": {"coordinates": [[[8.539093, 47.395126], [8.538365, 47.395497], [8.538307, 47.395451], [8.538207, 47.395359], [8.537994, 47.395167], [8.537967, 47.395179]]], "type": "MultiLineString"}, "id": "2420", "properties": {}, "type": "Feature"}, {"bbox": [8.56259, 47.365404, 8.564811, 47.366281], "geometry": {"coordinates": [[[8.56259, 47.366281], [8.562827, 47.36617], [8.563463, 47.365882], [8.564811, 47.365404]]], "type": "MultiLineString"}, "id": "2465", "properties": {}, "type": "Feature"}, {"bbox": [8.518101, 47.333969, 8.518478, 47.335046], "geometry": {"coordinates": [[[8.5183, 47.335046], [8.518298, 47.335022], [8.518299, 47.334999], [8.518303, 47.334976], [8.51831, 47.334953], [8.518319, 47.33493], [8.518332, 47.334909], [8.518446, 47.33466], [8.518464, 47.334602], [8.518475, 47.334543], [8.518478, 47.334484], [8.518474, 47.334424], [8.518462, 47.334366], [8.518443, 47.334308], [8.518416, 47.334251], [8.518383, 47.334196], [8.518343, 47.334143], [8.518296, 47.334093], [8.518242, 47.334051], [8.518183, 47.334012], [8.518119, 47.333977], [8.518101, 47.333969]]], "type": "MultiLineString"}, "id": "2489", "properties": {}, "type": "Feature"}, {"bbox": [8.538394, 47.420457, 8.539161, 47.421639], "geometry": {"coordinates": [[[8.538854, 47.420457], [8.539102, 47.421359], [8.539159, 47.421578], [8.53916, 47.421583], [8.539161, 47.421587], [8.53916, 47.421591], [8.53916, 47.421596], [8.539158, 47.4216], [8.539156, 47.421604], [8.539154, 47.421609], [8.539151, 47.421613], [8.539148, 47.421616], [8.539144, 47.42162], [8.539139, 47.421623], [8.539135, 47.421626], [8.53913, 47.421629], [8.539124, 47.421632], [8.539119, 47.421634], [8.539113, 47.421635], [8.539106, 47.421637], [8.5391, 47.421638], [8.539094, 47.421639], [8.539087, 47.421639], [8.539081, 47.421639], [8.539074, 47.421638], [8.539068, 47.421638], [8.539061, 47.421636], [8.539055, 47.421635], [8.539049, 47.421633], [8.538896, 47.421595], [8.53888, 47.42159], [8.538863, 47.421585], [8.538845, 47.421582], [8.538827, 47.42158], [8.538809, 47.421579], [8.538791, 47.421579], [8.538773, 47.42158], [8.538755, 47.421582], [8.538737, 47.421585], [8.538695, 47.421592], [8.538651, 47.421596], [8.538607, 47.421598], [8.538563, 47.421597], [8.53852, 47.421593], [8.538477, 47.421587], [8.538435, 47.421578], [8.538394, 47.421566]]], "type": "MultiLineString"}, "id": "2496", "properties": {}, "type": "Feature"}, {"bbox": [8.542655, 47.405119, 8.543537, 47.40668], "geometry": {"coordinates": [[[8.542681, 47.405119], [8.542655, 47.405405], [8.542832, 47.405652], [8.543284, 47.406309], [8.543537, 47.40668]]], "type": "MultiLineString"}, "id": "2528", "properties": {}, "type": "Feature"}, {"bbox": [8.552761, 47.361216, 8.552995, 47.361799], "geometry": {"coordinates": [[[8.552761, 47.361799], [8.552969, 47.361334], [8.552995, 47.361216]]], "type": "MultiLineString"}, "id": "2532", "properties": {}, "type": "Feature"}, {"bbox": [8.488429, 47.371434, 8.490248, 47.371961], "geometry": {"coordinates": [[[8.490248, 47.371434], [8.490242, 47.371437], [8.490181, 47.371478], [8.490006, 47.37163], [8.489822, 47.371777], [8.489631, 47.371919], [8.489601, 47.371931], [8.48957, 47.371941], [8.489538, 47.371949], [8.489505, 47.371955], [8.489471, 47.371959], [8.489437, 47.371961], [8.489403, 47.371961], [8.489368, 47.371959], [8.489335, 47.371955], [8.489301, 47.371949], [8.489269, 47.371941], [8.489238, 47.371931], [8.489209, 47.371919], [8.489181, 47.371905], [8.488927, 47.371762], [8.488676, 47.371616], [8.488429, 47.371468]]], "type": "MultiLineString"}, "id": "2642", "properties": {}, "type": "Feature"}, {"bbox": [8.551438, 47.427443, 8.551657, 47.42852], "geometry": {"coordinates": [[[8.551566, 47.427443], [8.551651, 47.427812], [8.551655, 47.42783], [8.551657, 47.427848], [8.551657, 47.427865], [8.551654, 47.427883], [8.551649, 47.427901], [8.551642, 47.427918], [8.551632, 47.427934], [8.55162, 47.42795], [8.551479, 47.428115], [8.55147, 47.428123], [8.551462, 47.428131], [8.551455, 47.42814], [8.551449, 47.428149], [8.551445, 47.428159], [8.551441, 47.428169], [8.551439, 47.428179], [8.551438, 47.428189], [8.551439, 47.428199], [8.551441, 47.428209], [8.551444, 47.428218], [8.551448, 47.428228], [8.55151, 47.42852]]], "type": "MultiLineString"}, "id": "2645", "properties": {}, "type": "Feature"}, {"bbox": [8.565374, 47.405109, 8.568467, 47.405642], "geometry": {"coordinates": [[[8.565374, 47.405109], [8.565689, 47.405129], [8.56589, 47.405152], [8.566041, 47.405176], [8.5664, 47.405243], [8.567034, 47.405355], [8.567282, 47.405386], [8.568087, 47.405544], [8.568312, 47.405581], [8.568353, 47.405592], [8.568391, 47.405606], [8.568428, 47.405622], [8.568462, 47.405639], [8.568467, 47.405642]]], "type": "MultiLineString"}, "id": "2672", "properties": {}, "type": "Feature"}, {"bbox": [8.516523, 47.366397, 8.516919, 47.367116], "geometry": {"coordinates": [[[8.516919, 47.366397], [8.516678, 47.366841], [8.516523, 47.367116]]], "type": "MultiLineString"}, "id": "2751", "properties": {}, "type": "Feature"}, {"bbox": [8.479864, 47.381098, 8.481977, 47.383105], "geometry": {"coordinates": [[[8.481977, 47.381098], [8.481045, 47.381973], [8.480027, 47.382929], [8.479864, 47.383105]]], "type": "MultiLineString"}, "id": "2760", "properties": {}, "type": "Feature"}, {"bbox": [8.528393, 47.393195, 8.52921, 47.393562], "geometry": {"coordinates": [[[8.528393, 47.393195], [8.528542, 47.393221], [8.528687, 47.393256], [8.528827, 47.393299], [8.529053, 47.393377], [8.52906, 47.39338], [8.529067, 47.393383], [8.529074, 47.393387], [8.52908, 47.393391], [8.529085, 47.393395], [8.52909, 47.393399], [8.529095, 47.393404], [8.529099, 47.393409], [8.52921, 47.393562]]], "type": "MultiLineString"}, "id": "2793", "properties": {}, "type": "Feature"}, {"bbox": [8.570862, 47.403438, 8.571432, 47.403701], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571358, 47.403683], [8.571287, 47.403661], [8.571219, 47.403634], [8.571154, 47.403604], [8.571093, 47.403571], [8.571036, 47.403533], [8.570862, 47.403438]]], "type": "MultiLineString"}, "id": "2868", "properties": {}, "type": "Feature"}, {"bbox": [8.522526, 47.375235, 8.522767, 47.375322], "geometry": {"coordinates": [[[8.522767, 47.375235], [8.522624, 47.375282], [8.522526, 47.375322]]], "type": "MultiLineString"}, "id": "2882", "properties": {}, "type": "Feature"}, {"bbox": [8.506647, 47.419518, 8.508268, 47.41998], "geometry": {"coordinates": [[[8.508268, 47.419518], [8.508186, 47.41955], [8.508103, 47.419581], [8.50802, 47.419611], [8.506825, 47.419973], [8.50681, 47.419976], [8.506795, 47.419978], [8.506779, 47.41998], [8.506763, 47.41998], [8.506748, 47.41998], [8.506732, 47.419978], [8.506717, 47.419976], [8.506702, 47.419973], [8.506687, 47.419969], [8.506673, 47.419964], [8.50666, 47.419958], [8.506647, 47.419952]]], "type": "MultiLineString"}, "id": "2906", "properties": {}, "type": "Feature"}, {"bbox": [8.513206, 47.372334, 8.513309, 47.372392], "geometry": {"coordinates": [[[8.513309, 47.372392], [8.513206, 47.372334]]], "type": "MultiLineString"}, "id": "2909", "properties": {}, "type": "Feature"}, {"bbox": [8.490248, 47.371266, 8.490955, 47.371434], "geometry": {"coordinates": [[[8.490955, 47.371267], [8.490869, 47.371266], [8.490783, 47.371271], [8.490698, 47.37128], [8.490615, 47.371295], [8.490533, 47.371314], [8.490455, 47.371339], [8.49038, 47.371367], [8.490309, 47.3714], [8.490248, 47.371434]]], "type": "MultiLineString"}, "id": "2931", "properties": {}, "type": "Feature"}, {"bbox": [8.538108, 47.410369, 8.539433, 47.410407], "geometry": {"coordinates": [[[8.539433, 47.410369], [8.538953, 47.410404], [8.538851, 47.410407], [8.538693, 47.410403], [8.538315, 47.410387], [8.53828, 47.410385], [8.538108, 47.410375]]], "type": "MultiLineString"}, "id": "3014", "properties": {}, "type": "Feature"}, {"bbox": [8.536738, 47.394918, 8.538078, 47.395744], "geometry": {"coordinates": [[[8.538078, 47.394918], [8.537957, 47.395074], [8.53791, 47.39513], [8.537319, 47.395433], [8.536802, 47.39569], [8.536756, 47.395729], [8.536738, 47.395744]]], "type": "MultiLineString"}, "id": "3037", "properties": {}, "type": "Feature"}, {"bbox": [8.489438, 47.376575, 8.489983, 47.377569], "geometry": {"coordinates": [[[8.489983, 47.376575], [8.489813, 47.376762], [8.489678, 47.376974], [8.489477, 47.377498], [8.489466, 47.377522], [8.489453, 47.377546], [8.489438, 47.377569]]], "type": "MultiLineString"}, "id": "3066", "properties": {}, "type": "Feature"}, {"bbox": [8.544871, 47.400781, 8.546475, 47.401132], "geometry": {"coordinates": [[[8.544871, 47.401132], [8.545243, 47.400865], [8.54528, 47.400846], [8.54532, 47.400829], [8.545361, 47.400815], [8.545404, 47.400803], [8.545448, 47.400793], [8.545493, 47.400786], [8.545539, 47.400782], [8.545585, 47.400781], [8.545632, 47.400782], [8.545678, 47.400786], [8.545723, 47.400792], [8.545767, 47.400802], [8.545811, 47.400813], [8.545852, 47.400827], [8.546475, 47.401059]]], "type": "MultiLineString"}, "id": "3073", "properties": {}, "type": "Feature"}, {"bbox": [8.538566, 47.375913, 8.539283, 47.377253], "geometry": {"coordinates": [[[8.538566, 47.375913], [8.538598, 47.375969], [8.538718, 47.376208], [8.538868, 47.376522], [8.538901, 47.376579], [8.539145, 47.377055], [8.539283, 47.377253]]], "type": "MultiLineString"}, "id": "3080", "properties": {}, "type": "Feature"}, {"bbox": [8.563318, 47.360973, 8.563443, 47.361332], "geometry": {"coordinates": [[[8.563318, 47.360973], [8.563427, 47.361234], [8.563443, 47.361332]]], "type": "MultiLineString"}, "id": "3082", "properties": {}, "type": "Feature"}, {"bbox": [8.52354, 47.376417, 8.523767, 47.376496], "geometry": {"coordinates": [[[8.523767, 47.376417], [8.523661, 47.376454], [8.52354, 47.376496]]], "type": "MultiLineString"}, "id": "3103", "properties": {}, "type": "Feature"}, {"bbox": [8.521827, 47.374725, 8.522624, 47.375282], "geometry": {"coordinates": [[[8.521827, 47.374725], [8.521962, 47.374821], [8.522142, 47.374932], [8.522334, 47.375033], [8.522394, 47.375068], [8.52245, 47.375105], [8.522501, 47.375146], [8.522547, 47.375189], [8.522588, 47.375235], [8.522624, 47.375282]]], "type": "MultiLineString"}, "id": "3170", "properties": {}, "type": "Feature"}, {"bbox": [8.508502, 47.370806, 8.509142, 47.371721], "geometry": {"coordinates": [[[8.508502, 47.370806], [8.508731, 47.37102], [8.508752, 47.371039], [8.508772, 47.37106], [8.508788, 47.371082], [8.508803, 47.371104], [8.508825, 47.371142], [8.50885, 47.371179], [8.508876, 47.371215], [8.509121, 47.371482], [8.509128, 47.371494], [8.509134, 47.371506], [8.509138, 47.371519], [8.509141, 47.371531], [8.509142, 47.371544], [8.509141, 47.371557], [8.509139, 47.37157], [8.509135, 47.371582], [8.509091, 47.371721]]], "type": "MultiLineString"}, "id": "3213", "properties": {}, "type": "Feature"}, {"bbox": [8.484645, 47.380943, 8.484874, 47.381601], "geometry": {"coordinates": [[[8.484874, 47.381601], [8.484864, 47.381594], [8.484854, 47.381588], [8.484846, 47.38158], [8.484838, 47.381572], [8.484832, 47.381564], [8.484827, 47.381556], [8.484823, 47.381547], [8.48482, 47.381538], [8.484774, 47.381329], [8.484712, 47.381122], [8.484645, 47.380943]]], "type": "MultiLineString"}, "id": "3229", "properties": {}, "type": "Feature"}, {"bbox": [8.503399, 47.364904, 8.505166, 47.36491], "geometry": {"coordinates": [[[8.505166, 47.36491], [8.504596, 47.364905], [8.503399, 47.364904]]], "type": "MultiLineString"}, "id": "3258", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.411307, 8.542577, 47.411871], "geometry": {"coordinates": [[[8.542577, 47.411871], [8.542566, 47.411868], [8.542555, 47.411865], [8.542545, 47.411861], [8.542535, 47.411856], [8.542526, 47.411851], [8.542517, 47.411845], [8.54251, 47.411839], [8.542503, 47.411832], [8.542497, 47.411825], [8.542491, 47.411818], [8.542487, 47.411811], [8.542484, 47.411803], [8.542482, 47.411795], [8.54248, 47.411787], [8.54248, 47.411779], [8.542481, 47.411771], [8.542482, 47.411763], [8.542509, 47.411668], [8.542512, 47.411657], [8.542513, 47.411646], [8.542512, 47.411635], [8.54251, 47.411625], [8.542507, 47.411614], [8.542503, 47.411604], [8.542497, 47.411594], [8.54249, 47.411584], [8.542482, 47.411575], [8.542472, 47.411566], [8.542462, 47.411558], [8.54245, 47.41155], [8.542438, 47.411543], [8.541977, 47.411307]]], "type": "MultiLineString"}, "id": "3269", "properties": {}, "type": "Feature"}, {"bbox": [8.539997, 47.410355, 8.541977, 47.411307], "geometry": {"coordinates": [[[8.541977, 47.411307], [8.541259, 47.410933], [8.541173, 47.410885], [8.540898, 47.410712], [8.540827, 47.410674], [8.540791, 47.410656], [8.540754, 47.410639], [8.540715, 47.410623], [8.540081, 47.410376], [8.540061, 47.410369], [8.54004, 47.410363], [8.540019, 47.410359], [8.539997, 47.410355]]], "type": "MultiLineString"}, "id": "3270", "properties": {}, "type": "Feature"}, {"bbox": [8.484361, 47.386908, 8.485613, 47.387318], "geometry": {"coordinates": [[[8.485613, 47.387179], [8.48559, 47.387184], [8.485566, 47.387188], [8.485542, 47.38719], [8.485518, 47.387191], [8.485494, 47.38719], [8.48547, 47.387188], [8.485446, 47.387185], [8.485422, 47.38718], [8.4854, 47.387174], [8.485378, 47.387167], [8.485357, 47.387159], [8.485011, 47.386908], [8.484361, 47.387318]]], "type": "MultiLineString"}, "id": "3275", "properties": {}, "type": "Feature"}, {"bbox": [8.497742, 47.38434, 8.500164, 47.385239], "geometry": {"coordinates": [[[8.500164, 47.38434], [8.499934, 47.384442], [8.498785, 47.384933], [8.497742, 47.385239], [8.497742, 47.385239]]], "type": "MultiLineString"}, "id": "3335", "properties": {}, "type": "Feature"}, {"bbox": [8.528176, 47.414287, 8.529366, 47.41442], "geometry": {"coordinates": [[[8.529366, 47.414287], [8.529331, 47.414299], [8.529294, 47.414309], [8.529255, 47.414316], [8.529216, 47.414322], [8.529177, 47.414325], [8.529137, 47.414325], [8.528892, 47.414335], [8.528649, 47.414359], [8.52841, 47.414399], [8.528176, 47.41442]]], "type": "MultiLineString"}, "id": "3371", "properties": {}, "type": "Feature"}, {"bbox": [8.531079, 47.378879, 8.531184, 47.379004], "geometry": {"coordinates": [[[8.531079, 47.378879], [8.531184, 47.379004]]], "type": "MultiLineString"}, "id": "3384", "properties": {}, "type": "Feature"}, {"bbox": [8.535542, 47.377665, 8.536485, 47.378213], "geometry": {"coordinates": [[[8.536485, 47.37801], [8.536395, 47.378034], [8.535988, 47.377665], [8.535542, 47.377891], [8.535627, 47.378034], [8.535732, 47.378213], [8.535789, 47.378198]]], "type": "MultiLineString"}, "id": "3418", "properties": {}, "type": "Feature"}, {"bbox": [8.531536, 47.348081, 8.531886, 47.349083], "geometry": {"coordinates": [[[8.531886, 47.349083], [8.531656, 47.348742], [8.531617, 47.34867], [8.53154, 47.348519], [8.531536, 47.348388], [8.531544, 47.348326], [8.531564, 47.348238], [8.531619, 47.348233], [8.531625, 47.348208], [8.53166, 47.348081]]], "type": "MultiLineString"}, "id": "3427", "properties": {}, "type": "Feature"}, {"bbox": [8.505399, 47.401656, 8.505718, 47.401846], "geometry": {"coordinates": [[[8.505399, 47.401656], [8.505718, 47.401846]]], "type": "MultiLineString"}, "id": "3451", "properties": {}, "type": "Feature"}, {"bbox": [8.491023, 47.376274, 8.491209, 47.376513], "geometry": {"coordinates": [[[8.491023, 47.376513], [8.491209, 47.376274]]], "type": "MultiLineString"}, "id": "3508", "properties": {}, "type": "Feature"}, {"bbox": [8.483816, 47.381601, 8.484874, 47.382495], "geometry": {"coordinates": [[[8.483816, 47.382495], [8.484141, 47.382236], [8.484466, 47.381978], [8.484792, 47.38172], [8.484808, 47.381707], [8.484823, 47.381694], [8.484836, 47.38168], [8.484847, 47.381665], [8.484857, 47.381649], [8.484865, 47.381633], [8.48487, 47.381617], [8.484874, 47.381601]]], "type": "MultiLineString"}, "id": "3540", "properties": {}, "type": "Feature"}, {"bbox": [8.503077, 47.401656, 8.505399, 47.402423], "geometry": {"coordinates": [[[8.503077, 47.402423], [8.504375, 47.402011], [8.50488, 47.401883], [8.505063, 47.401818], [8.505237, 47.401743], [8.505399, 47.401656]]], "type": "MultiLineString"}, "id": "3562", "properties": {}, "type": "Feature"}, {"bbox": [8.562708, 47.355217, 8.563196, 47.356033], "geometry": {"coordinates": [[[8.562708, 47.356033], [8.563196, 47.355217]]], "type": "MultiLineString"}, "id": "3564", "properties": {}, "type": "Feature"}, {"bbox": [8.532243, 47.388537, 8.533999, 47.389125], "geometry": {"coordinates": [[[8.533999, 47.388537], [8.533865, 47.388547], [8.533659, 47.388575], [8.533457, 47.388617], [8.533261, 47.388671], [8.533074, 47.388738], [8.532897, 47.388815], [8.532779, 47.388865], [8.532658, 47.388916], [8.532518, 47.388984], [8.53238, 47.389053], [8.532243, 47.389125]]], "type": "MultiLineString"}, "id": "3651", "properties": {}, "type": "Feature"}, {"bbox": [8.537557, 47.375741, 8.539266, 47.376159], "geometry": {"coordinates": [[[8.539266, 47.375741], [8.538566, 47.375913], [8.538436, 47.375943], [8.537758, 47.376102], [8.537557, 47.376159]]], "type": "MultiLineString"}, "id": "3697", "properties": {}, "type": "Feature"}, {"bbox": [8.539088, 47.395036, 8.539741, 47.395669], "geometry": {"coordinates": [[[8.539741, 47.395669], [8.53967, 47.395607], [8.539701, 47.395591], [8.539554, 47.395467], [8.539505, 47.395379], [8.539459, 47.395345], [8.539463, 47.395335], [8.539466, 47.395325], [8.539467, 47.395315], [8.539468, 47.395304], [8.539467, 47.395294], [8.539464, 47.395284], [8.539461, 47.395274], [8.539456, 47.395264], [8.53945, 47.395254], [8.539442, 47.395245], [8.539434, 47.395237], [8.539424, 47.395228], [8.539414, 47.395221], [8.539403, 47.395214], [8.53939, 47.395208], [8.539377, 47.395202], [8.539364, 47.395197], [8.53935, 47.395193], [8.539335, 47.39519], [8.53932, 47.395188], [8.539305, 47.395187], [8.53929, 47.395186], [8.539153, 47.395094], [8.539088, 47.395036]]], "type": "MultiLineString"}, "id": "3698", "properties": {}, "type": "Feature"}, {"bbox": [8.473817, 47.389876, 8.475096, 47.390382], "geometry": {"coordinates": [[[8.475096, 47.389876], [8.47504, 47.389947], [8.473817, 47.390382]]], "type": "MultiLineString"}, "id": "3702", "properties": {}, "type": "Feature"}, {"bbox": [8.550595, 47.403105, 8.553041, 47.403568], "geometry": {"coordinates": [[[8.550595, 47.403568], [8.550987, 47.403527], [8.551206, 47.403508], [8.551207, 47.403509], [8.55132, 47.403496], [8.551504, 47.403472], [8.551618, 47.403455], [8.551728, 47.403436], [8.55175, 47.403433], [8.551912, 47.403403], [8.55203, 47.403379], [8.552089, 47.403367], [8.552293, 47.403319], [8.552458, 47.403277], [8.552901, 47.403157], [8.553041, 47.403105]]], "type": "MultiLineString"}, "id": "3722", "properties": {}, "type": "Feature"}, {"bbox": [8.523291, 47.375933, 8.524021, 47.377005], "geometry": {"coordinates": [[[8.523291, 47.375933], [8.523661, 47.376454], [8.523982, 47.37691], [8.524021, 47.377005]]], "type": "MultiLineString"}, "id": "3724", "properties": {}, "type": "Feature"}, {"bbox": [8.504596, 47.363283, 8.506237, 47.364905], "geometry": {"coordinates": [[[8.506237, 47.363283], [8.505863, 47.363516], [8.505062, 47.364193], [8.504601, 47.364583], [8.504596, 47.364905]]], "type": "MultiLineString"}, "id": "3740", "properties": {}, "type": "Feature"}, {"bbox": [8.538233, 47.409405, 8.539433, 47.410369], "geometry": {"coordinates": [[[8.539433, 47.410369], [8.539359, 47.410232], [8.538233, 47.409405]]], "type": "MultiLineString"}, "id": "3742", "properties": {}, "type": "Feature"}, {"bbox": [8.484519, 47.382327, 8.485704, 47.383209], "geometry": {"coordinates": [[[8.485704, 47.382327], [8.485554, 47.382404], [8.485407, 47.382482], [8.485263, 47.382563], [8.484907, 47.38275], [8.484863, 47.382776], [8.484822, 47.382804], [8.484786, 47.382834], [8.484553, 47.38302], [8.484547, 47.383024], [8.484541, 47.383029], [8.484536, 47.383034], [8.484531, 47.383039], [8.484527, 47.383045], [8.484524, 47.383051], [8.484521, 47.383057], [8.48452, 47.383063], [8.484519, 47.383069], [8.484519, 47.383075], [8.484519, 47.383081], [8.484521, 47.383088], [8.484523, 47.383094], [8.484526, 47.3831], [8.484529, 47.383105], [8.484534, 47.383111], [8.484598, 47.383209]]], "type": "MultiLineString"}, "id": "3808", "properties": {}, "type": "Feature"}, {"bbox": [8.529068, 47.413626, 8.529366, 47.414287], "geometry": {"coordinates": [[[8.529068, 47.413626], [8.52914, 47.413695], [8.529148, 47.413771], [8.529152, 47.413899], [8.529155, 47.41394], [8.529162, 47.413981], [8.529174, 47.414021], [8.529191, 47.41406], [8.529213, 47.414099], [8.529239, 47.414136], [8.529366, 47.414287]]], "type": "MultiLineString"}, "id": "3825", "properties": {}, "type": "Feature"}, {"bbox": [8.501561, 47.40057, 8.50468, 47.402063], "geometry": {"coordinates": [[[8.50468, 47.40057], [8.504314, 47.400777], [8.50398, 47.401007], [8.50368, 47.401259], [8.503634, 47.401301], [8.503583, 47.401341], [8.503527, 47.401378], [8.503466, 47.401412], [8.503402, 47.401442], [8.503335, 47.401469], [8.503264, 47.401491], [8.502358, 47.401757], [8.502197, 47.401802], [8.501561, 47.402063]]], "type": "MultiLineString"}, "id": "3856", "properties": {}, "type": "Feature"}, {"bbox": [8.502514, 47.396079, 8.503908, 47.396906], "geometry": {"coordinates": [[[8.503908, 47.396079], [8.503822, 47.396102], [8.50323, 47.396404], [8.503064, 47.396489], [8.502909, 47.396582], [8.502765, 47.396683], [8.502633, 47.396791], [8.502514, 47.396906]]], "type": "MultiLineString"}, "id": "3887", "properties": {}, "type": "Feature"}, {"bbox": [8.571685, 47.359085, 8.573059, 47.35976], "geometry": {"coordinates": [[[8.571685, 47.35976], [8.572105, 47.359505], [8.572269, 47.359406], [8.572449, 47.359307], [8.572642, 47.359221], [8.572846, 47.359146], [8.573059, 47.359085]]], "type": "MultiLineString"}, "id": "3896", "properties": {}, "type": "Feature"}, {"bbox": [8.531968, 47.377623, 8.536033, 47.379035], "geometry": {"coordinates": [[[8.536033, 47.377623], [8.535586, 47.377849], [8.53538, 47.377953], [8.535471, 47.378084], [8.535001, 47.378234], [8.534537, 47.378401], [8.534167, 47.378501], [8.533751, 47.378614], [8.53294, 47.378782], [8.532403, 47.378893], [8.531968, 47.379035]]], "type": "MultiLineString"}, "id": "3901", "properties": {}, "type": "Feature"}, {"bbox": [8.528367, 47.392694, 8.528805, 47.393122], "geometry": {"coordinates": [[[8.528367, 47.392694], [8.528737, 47.393052], [8.528805, 47.393122]]], "type": "MultiLineString"}, "id": "3909", "properties": {}, "type": "Feature"}, {"bbox": [8.550687, 47.403428, 8.55398, 47.404161], "geometry": {"coordinates": [[[8.550687, 47.404161], [8.550868, 47.404141], [8.55124, 47.404113], [8.551572, 47.404071], [8.551897, 47.404007], [8.552212, 47.403922], [8.55298, 47.40371], [8.553251, 47.403639], [8.553525, 47.403575], [8.553804, 47.403519], [8.553828, 47.403514], [8.553851, 47.403507], [8.553873, 47.403499], [8.553894, 47.40349], [8.553914, 47.40348], [8.553933, 47.403468], [8.55395, 47.403456], [8.553966, 47.403442], [8.55398, 47.403428]]], "type": "MultiLineString"}, "id": "3952", "properties": {}, "type": "Feature"}, {"bbox": [8.474252, 47.414666, 8.475206, 47.415191], "geometry": {"coordinates": [[[8.475206, 47.414666], [8.475007, 47.414845], [8.474948, 47.414889], [8.474707, 47.415005], [8.474697, 47.415008], [8.474489, 47.415076], [8.474361, 47.415131], [8.474252, 47.415191]]], "type": "MultiLineString"}, "id": "3983", "properties": {}, "type": "Feature"}, {"bbox": [8.539871, 47.399347, 8.54097, 47.399662], "geometry": {"coordinates": [[[8.539871, 47.399347], [8.540043, 47.399407], [8.54022, 47.399459], [8.540404, 47.399502], [8.540591, 47.399534], [8.540647, 47.399547], [8.540702, 47.399562], [8.540757, 47.399577], [8.54097, 47.399662]]], "type": "MultiLineString"}, "id": "4036", "properties": {}, "type": "Feature"}, {"bbox": [8.55933, 47.36286, 8.560821, 47.364189], "geometry": {"coordinates": [[[8.55933, 47.364189], [8.55933, 47.364188], [8.560184, 47.363277], [8.56026, 47.363197], [8.560334, 47.363128], [8.560416, 47.363063], [8.560507, 47.363003], [8.560605, 47.362949], [8.56071, 47.362902], [8.560821, 47.36286]]], "type": "MultiLineString"}, "id": "4100", "properties": {}, "type": "Feature"}, {"bbox": [8.528621, 47.338247, 8.528834, 47.339669], "geometry": {"coordinates": [[[8.528621, 47.339669], [8.528746, 47.33889], [8.528777, 47.338604], [8.528816, 47.338367], [8.528834, 47.338248], [8.528834, 47.338247]]], "type": "MultiLineString"}, "id": "4105", "properties": {}, "type": "Feature"}, {"bbox": [8.530281, 47.37839, 8.5359, 47.380035], "geometry": {"coordinates": [[[8.5359, 47.37839], [8.534469, 47.378778], [8.534182, 47.378869], [8.533906, 47.378974], [8.533643, 47.379093], [8.533497, 47.379165], [8.533362, 47.379224], [8.53322, 47.379274], [8.533071, 47.379314], [8.532295, 47.379511], [8.531605, 47.379691], [8.53148, 47.379498], [8.53133, 47.379512], [8.530281, 47.380035]]], "type": "MultiLineString"}, "id": "4140", "properties": {}, "type": "Feature"}, {"bbox": [8.56878, 47.364583, 8.569164, 47.365014], "geometry": {"coordinates": [[[8.56878, 47.364583], [8.568988, 47.364961], [8.569026, 47.365014], [8.569164, 47.36498]]], "type": "MultiLineString"}, "id": "4142", "properties": {}, "type": "Feature"}, {"bbox": [8.488971, 47.377569, 8.489438, 47.377791], "geometry": {"coordinates": [[[8.489438, 47.377569], [8.489438, 47.377569], [8.489405, 47.377602], [8.489369, 47.377633], [8.489329, 47.377663], [8.489285, 47.377689], [8.489239, 47.377714], [8.489189, 47.377735], [8.489137, 47.377754], [8.489083, 47.377769], [8.489028, 47.377782], [8.488971, 47.377791]]], "type": "MultiLineString"}, "id": "4170", "properties": {}, "type": "Feature"}, {"bbox": [8.480075, 47.405949, 8.481082, 47.406656], "geometry": {"coordinates": [[[8.481082, 47.405949], [8.480895, 47.40611], [8.480658, 47.40639], [8.480611, 47.406433], [8.480558, 47.406474], [8.480501, 47.406512], [8.480438, 47.406546], [8.480372, 47.406577], [8.480302, 47.406603], [8.480229, 47.406625], [8.480153, 47.406643], [8.480075, 47.406656]]], "type": "MultiLineString"}, "id": "4174", "properties": {}, "type": "Feature"}, {"bbox": [8.529303, 47.409481, 8.530144, 47.409774], "geometry": {"coordinates": [[[8.530144, 47.409488], [8.530137, 47.409486], [8.530128, 47.409484], [8.53012, 47.409482], [8.530112, 47.409481], [8.530103, 47.409481], [8.530094, 47.409481], [8.530086, 47.409481], [8.530077, 47.409482], [8.530069, 47.409484], [8.53006, 47.409486], [8.530053, 47.409488], [8.530045, 47.409491], [8.529576, 47.409665], [8.529303, 47.409774]]], "type": "MultiLineString"}, "id": "4195", "properties": {}, "type": "Feature"}, {"bbox": [8.533268, 47.377523, 8.534469, 47.378778], "geometry": {"coordinates": [[[8.533268, 47.377523], [8.533277, 47.377681], [8.534167, 47.378501], [8.534469, 47.378778]]], "type": "MultiLineString"}, "id": "4214", "properties": {}, "type": "Feature"}, {"bbox": [8.562897, 47.36556, 8.565164, 47.366584], "geometry": {"coordinates": [[[8.562897, 47.366584], [8.563766, 47.366203], [8.563898, 47.366137], [8.565164, 47.36556]]], "type": "MultiLineString"}, "id": "4216", "properties": {}, "type": "Feature"}, {"bbox": [8.570148, 47.35976, 8.571982, 47.360994], "geometry": {"coordinates": [[[8.570148, 47.360658], [8.57038, 47.360524], [8.570469, 47.360468], [8.571685, 47.35976], [8.571982, 47.359984], [8.571941, 47.360017], [8.571913, 47.360057], [8.571454, 47.360593], [8.571431, 47.360624], [8.571415, 47.360648], [8.571401, 47.360674], [8.571391, 47.3607], [8.571384, 47.360727], [8.571381, 47.360754], [8.57138, 47.360781], [8.571384, 47.360809], [8.57139, 47.360835], [8.5714, 47.360862], [8.571487, 47.360994]]], "type": "MultiLineString"}, "id": "4253", "properties": {}, "type": "Feature"}, {"bbox": [8.530144, 47.409488, 8.530537, 47.410416], "geometry": {"coordinates": [[[8.530516, 47.410416], [8.530522, 47.410409], [8.530527, 47.410403], [8.53053, 47.410396], [8.530533, 47.410389], [8.530535, 47.410382], [8.530537, 47.410375], [8.530537, 47.410367], [8.530536, 47.41036], [8.530213, 47.409541], [8.53021, 47.409535], [8.530206, 47.409529], [8.530202, 47.409523], [8.530197, 47.409517], [8.530191, 47.409512], [8.530185, 47.409507], [8.530178, 47.409502], [8.53017, 47.409498], [8.530162, 47.409494], [8.530153, 47.409491], [8.530144, 47.409488]]], "type": "MultiLineString"}, "id": "4260", "properties": {}, "type": "Feature"}, {"bbox": [8.53133, 47.379464, 8.531437, 47.379512], "geometry": {"coordinates": [[[8.531437, 47.379464], [8.53133, 47.379512]]], "type": "MultiLineString"}, "id": "4277", "properties": {}, "type": "Feature"}, {"bbox": [8.538078, 47.394853, 8.538128, 47.394918], "geometry": {"coordinates": [[[8.538128, 47.394853], [8.538078, 47.394918]]], "type": "MultiLineString"}, "id": "4294", "properties": {}, "type": "Feature"}, {"bbox": [8.529974, 47.408541, 8.530988, 47.408828], "geometry": {"coordinates": [[[8.530988, 47.408559], [8.530853, 47.408541], [8.530763, 47.408566], [8.530074, 47.408824], [8.530062, 47.408826], [8.530049, 47.408827], [8.530037, 47.408828], [8.530024, 47.408828], [8.530011, 47.408827], [8.529999, 47.408826], [8.529986, 47.408824], [8.529974, 47.408821]]], "type": "MultiLineString"}, "id": "4306", "properties": {}, "type": "Feature"}, {"bbox": [8.478095, 47.38607, 8.478154, 47.386136], "geometry": {"coordinates": [[[8.478154, 47.386136], [8.478095, 47.38607]]], "type": "MultiLineString"}, "id": "4323", "properties": {}, "type": "Feature"}, {"bbox": [8.516034, 47.379187, 8.516052, 47.379632], "geometry": {"coordinates": [[[8.516034, 47.379187], [8.516052, 47.379632]]], "type": "MultiLineString"}, "id": "4331", "properties": {}, "type": "Feature"}, {"bbox": [8.509721, 47.354709, 8.510551, 47.356235], "geometry": {"coordinates": [[[8.510551, 47.354709], [8.5105, 47.354781], [8.510472, 47.354833], [8.509721, 47.356235]]], "type": "MultiLineString"}, "id": "4332", "properties": {}, "type": "Feature"}, {"bbox": [8.525588, 47.354421, 8.526058, 47.35675], "geometry": {"coordinates": [[[8.525744, 47.35675], [8.525754, 47.356723], [8.52578, 47.356615], [8.525792, 47.356506], [8.52579, 47.356397], [8.525588, 47.354511], [8.525588, 47.354504], [8.525589, 47.354496], [8.525591, 47.354489], [8.525593, 47.354482], [8.525597, 47.354475], [8.525601, 47.354468], [8.525607, 47.354462], [8.525613, 47.354456], [8.52562, 47.35445], [8.525627, 47.354445], [8.525635, 47.35444], [8.525644, 47.354435], [8.525653, 47.354432], [8.525663, 47.354428], [8.525673, 47.354426], [8.525684, 47.354424], [8.525694, 47.354422], [8.525705, 47.354421], [8.525716, 47.354421], [8.525727, 47.354422], [8.525737, 47.354423], [8.525748, 47.354425], [8.525758, 47.354427], [8.525768, 47.35443], [8.525778, 47.354434], [8.525787, 47.354438], [8.525795, 47.354442], [8.525803, 47.354447], [8.52581, 47.354453], [8.525816, 47.354459], [8.525822, 47.354465], [8.525827, 47.354472], [8.525831, 47.354479], [8.525834, 47.354486], [8.525934, 47.354823], [8.525936, 47.354829], [8.525939, 47.354835], [8.525943, 47.35484], [8.525948, 47.354846], [8.525953, 47.354851], [8.525959, 47.354856], [8.525965, 47.35486], [8.525972, 47.354864], [8.525979, 47.354868], [8.525987, 47.354871], [8.525995, 47.354873], [8.526004, 47.354876], [8.526013, 47.354877], [8.526022, 47.354879], [8.526031, 47.354879], [8.52604, 47.354879], [8.526049, 47.354879], [8.526058, 47.354878]]], "type": "MultiLineString"}, "id": "4336", "properties": {}, "type": "Feature"}, {"bbox": [8.562369, 47.355967, 8.562708, 47.356042], "geometry": {"coordinates": [[[8.562369, 47.355967], [8.56259, 47.356042], [8.562629, 47.356037], [8.562669, 47.356034], [8.562708, 47.356033]]], "type": "MultiLineString"}, "id": "4338", "properties": {}, "type": "Feature"}, {"bbox": [8.570068, 47.403237, 8.57025, 47.403852], "geometry": {"coordinates": [[[8.570068, 47.403852], [8.570091, 47.40374], [8.57025, 47.403425], [8.570225, 47.403279], [8.57022, 47.403251], [8.570219, 47.403237]]], "type": "MultiLineString"}, "id": "4351", "properties": {}, "type": "Feature"}, {"bbox": [8.553442, 47.39746, 8.55461, 47.39846], "geometry": {"coordinates": [[[8.553442, 47.39746], [8.553483, 47.397535], [8.55351, 47.397579], [8.553542, 47.397622], [8.553579, 47.397662], [8.553621, 47.397701], [8.553667, 47.397737], [8.553718, 47.39777], [8.553773, 47.3978], [8.553831, 47.397826], [8.553893, 47.39785], [8.553957, 47.39787], [8.554023, 47.397886], [8.55408, 47.397901], [8.554136, 47.39792], [8.554188, 47.397941], [8.554238, 47.397966], [8.554284, 47.397994], [8.554327, 47.398024], [8.554365, 47.398057], [8.554399, 47.398092], [8.554429, 47.398129], [8.554453, 47.398167], [8.55461, 47.39846]]], "type": "MultiLineString"}, "id": "4359", "properties": {}, "type": "Feature"}, {"bbox": [8.529544, 47.414568, 8.530028, 47.415885], "geometry": {"coordinates": [[[8.529544, 47.414568], [8.529563, 47.414616], [8.529579, 47.414664], [8.529594, 47.414712], [8.529597, 47.414719], [8.529602, 47.414726], [8.529607, 47.414733], [8.529613, 47.41474], [8.529619, 47.414746], [8.529627, 47.414752], [8.529635, 47.414757], [8.529644, 47.414762], [8.529653, 47.414766], [8.529663, 47.41477], [8.529674, 47.414773], [8.529684, 47.414775], [8.529695, 47.414777], [8.529705, 47.414779], [8.529714, 47.414782], [8.529723, 47.414785], [8.529732, 47.414789], [8.529741, 47.414793], [8.529748, 47.414798], [8.529755, 47.414803], [8.529761, 47.414809], [8.529767, 47.414815], [8.529771, 47.414821], [8.529775, 47.414828], [8.529778, 47.414835], [8.52978, 47.414842], [8.529892, 47.415278], [8.530016, 47.415732], [8.530024, 47.415783], [8.530028, 47.415834], [8.530026, 47.415885]]], "type": "MultiLineString"}, "id": "4391", "properties": {}, "type": "Feature"}, {"bbox": [8.527939, 47.356195, 8.529199, 47.356912], "geometry": {"coordinates": [[[8.529199, 47.356911], [8.529011, 47.356912], [8.528572, 47.356882], [8.527939, 47.356788], [8.527953, 47.356674], [8.527994, 47.356348], [8.528001, 47.356308], [8.528014, 47.356269], [8.528032, 47.35623], [8.528054, 47.356195]]], "type": "MultiLineString"}, "id": "4420", "properties": {}, "type": "Feature"}, {"bbox": [8.529745, 47.410416, 8.530516, 47.410585], "geometry": {"coordinates": [[[8.529745, 47.410585], [8.529854, 47.410558], [8.530422, 47.410456], [8.530434, 47.410454], [8.530445, 47.410452], [8.530456, 47.41045], [8.530466, 47.410446], [8.530476, 47.410443], [8.530485, 47.410438], [8.530494, 47.410433], [8.530502, 47.410428], [8.53051, 47.410422], [8.530516, 47.410416]]], "type": "MultiLineString"}, "id": "4449", "properties": {}, "type": "Feature"}, {"bbox": [8.524804, 47.337032, 8.524813, 47.33821], "geometry": {"coordinates": [[[8.524804, 47.33821], [8.524807, 47.337577], [8.524813, 47.337289], [8.524813, 47.337032]]], "type": "MultiLineString"}, "id": "4489", "properties": {}, "type": "Feature"}, {"bbox": [8.53664, 47.393506, 8.53673, 47.393689], "geometry": {"coordinates": [[[8.53673, 47.393506], [8.536711, 47.393567], [8.536689, 47.393608], [8.536665, 47.393649], [8.53664, 47.393689]]], "type": "MultiLineString"}, "id": "4490", "properties": {}, "type": "Feature"}, {"bbox": [8.537468, 47.385243, 8.539833, 47.385863], "geometry": {"coordinates": [[[8.537491, 47.385243], [8.537484, 47.385253], [8.537478, 47.385263], [8.537474, 47.385273], [8.537471, 47.385284], [8.537469, 47.385295], [8.537468, 47.385306], [8.537469, 47.385317], [8.537472, 47.385327], [8.537475, 47.385338], [8.53748, 47.385349], [8.537486, 47.385359], [8.537494, 47.385368], [8.537502, 47.385377], [8.537512, 47.385386], [8.537523, 47.385394], [8.537535, 47.385402], [8.537547, 47.385408], [8.537561, 47.385414], [8.537575, 47.385419], [8.53759, 47.385424], [8.538227, 47.385552], [8.538546, 47.38561], [8.539677, 47.385833], [8.539833, 47.385863]]], "type": "MultiLineString"}, "id": "4511", "properties": {}, "type": "Feature"}, {"bbox": [8.498323, 47.384529, 8.498785, 47.384933], "geometry": {"coordinates": [[[8.498785, 47.384933], [8.498434, 47.384569], [8.498323, 47.384529]]], "type": "MultiLineString"}, "id": "4527", "properties": {}, "type": "Feature"}, {"bbox": [8.480693, 47.386896, 8.481903, 47.387408], "geometry": {"coordinates": [[[8.481903, 47.386896], [8.481713, 47.386979], [8.480693, 47.387408]]], "type": "MultiLineString"}, "id": "4530", "properties": {}, "type": "Feature"}, {"bbox": [8.569749, 47.403132, 8.570862, 47.403438], "geometry": {"coordinates": [[[8.570862, 47.403438], [8.570818, 47.403415], [8.570801, 47.403405], [8.570784, 47.403397], [8.570765, 47.40339], [8.570746, 47.403384], [8.570726, 47.403379], [8.570705, 47.403375], [8.570684, 47.403373], [8.570663, 47.403372], [8.570642, 47.403372], [8.57062, 47.403373], [8.570599, 47.403375], [8.570579, 47.403379], [8.570559, 47.403384], [8.570539, 47.40339], [8.57025, 47.403425], [8.570157, 47.403422], [8.569919, 47.403331], [8.569892, 47.403283], [8.569859, 47.403237], [8.56982, 47.403193], [8.569775, 47.403151], [8.569749, 47.403132]]], "type": "MultiLineString"}, "id": "4540", "properties": {}, "type": "Feature"}, {"bbox": [8.535279, 47.330202, 8.536054, 47.33199], "geometry": {"coordinates": [[[8.535339, 47.33199], [8.535298, 47.331918], [8.535292, 47.33191], [8.535287, 47.331902], [8.535284, 47.331894], [8.535281, 47.331886], [8.53528, 47.331877], [8.535279, 47.331868], [8.53528, 47.33186], [8.535306, 47.331782], [8.535404, 47.331567], [8.535494, 47.331388], [8.536021, 47.330388], [8.536054, 47.330313], [8.536046, 47.330202]]], "type": "MultiLineString"}, "id": "4624", "properties": {}, "type": "Feature"}, {"bbox": [8.534301, 47.380419, 8.534438, 47.380561], "geometry": {"coordinates": [[[8.534301, 47.380419], [8.534316, 47.380446], [8.534334, 47.380472], [8.534356, 47.380496], [8.534381, 47.38052], [8.534408, 47.380541], [8.534438, 47.380561]]], "type": "MultiLineString"}, "id": "4630", "properties": {}, "type": "Feature"}, {"bbox": [8.534062, 47.380419, 8.534301, 47.380479], "geometry": {"coordinates": [[[8.534301, 47.380419], [8.534216, 47.380438], [8.534062, 47.380479]]], "type": "MultiLineString"}, "id": "4631", "properties": {}, "type": "Feature"}, {"bbox": [8.488194, 47.377018, 8.488413, 47.377661], "geometry": {"coordinates": [[[8.488413, 47.377661], [8.488387, 47.377648], [8.488363, 47.377633], [8.48834, 47.377616], [8.48831, 47.377592], [8.488282, 47.377566], [8.488258, 47.377539], [8.488238, 47.37751], [8.488221, 47.37748], [8.488209, 47.377449], [8.4882, 47.377418], [8.488195, 47.377386], [8.488194, 47.377354], [8.488197, 47.377322], [8.488204, 47.377291], [8.488273, 47.377018]]], "type": "MultiLineString"}, "id": "4656", "properties": {}, "type": "Feature"}, {"bbox": [8.531099, 47.378944, 8.532058, 47.379464], "geometry": {"coordinates": [[[8.531968, 47.379035], [8.53191, 47.378944], [8.531403, 47.379049], [8.53127, 47.378963], [8.531184, 47.379004], [8.531099, 47.379045], [8.531187, 47.379135], [8.531437, 47.379464], [8.532058, 47.379177], [8.531968, 47.379035]]], "type": "MultiLineString"}, "id": "4702", "properties": {}, "type": "Feature"}, {"bbox": [8.573269, 47.358161, 8.574171, 47.35833], "geometry": {"coordinates": [[[8.573269, 47.358161], [8.57327, 47.358162], [8.573317, 47.358175], [8.573369, 47.35819], [8.573629, 47.358251], [8.573654, 47.358256], [8.574015, 47.358314], [8.574151, 47.35833], [8.574171, 47.358327]]], "type": "MultiLineString"}, "id": "4729", "properties": {}, "type": "Feature"}, {"bbox": [8.573182, 47.40344, 8.573973, 47.404068], "geometry": {"coordinates": [[[8.573182, 47.404068], [8.573359, 47.403982], [8.573527, 47.403887], [8.573684, 47.403783], [8.573827, 47.403671], [8.573958, 47.403552], [8.573962, 47.403545], [8.573966, 47.403539], [8.573969, 47.403532], [8.573971, 47.403525], [8.573972, 47.403518], [8.573973, 47.403512], [8.573972, 47.403505], [8.573971, 47.403498], [8.573968, 47.403491], [8.573965, 47.403484], [8.573961, 47.403478], [8.573956, 47.403472], [8.573951, 47.403466], [8.573944, 47.40346], [8.573937, 47.403455], [8.57393, 47.403451], [8.573921, 47.403447], [8.573913, 47.403443], [8.573904, 47.40344]]], "type": "MultiLineString"}, "id": "4730", "properties": {}, "type": "Feature"}, {"bbox": [8.49056, 47.375289, 8.491388, 47.37608], "geometry": {"coordinates": [[[8.491388, 47.37608], [8.490784, 47.375634], [8.490782, 47.375632], [8.490748, 47.375606], [8.490717, 47.375579], [8.49069, 47.37555], [8.490666, 47.375519], [8.490646, 47.375487], [8.49063, 47.375455], [8.49056, 47.375289]]], "type": "MultiLineString"}, "id": "4741", "properties": {}, "type": "Feature"}, {"bbox": [8.534295, 47.393549, 8.536573, 47.394811], "geometry": {"coordinates": [[[8.534295, 47.393549], [8.534445, 47.393616], [8.534632, 47.393698], [8.535275, 47.393967], [8.535317, 47.394019], [8.535407, 47.394099], [8.535968, 47.39439], [8.536224, 47.394573], [8.536573, 47.394811]]], "type": "MultiLineString"}, "id": "4791", "properties": {}, "type": "Feature"}, {"bbox": [8.543924, 47.425874, 8.546463, 47.42643], "geometry": {"coordinates": [[[8.546463, 47.426417], [8.546346, 47.42643], [8.545335, 47.426271], [8.544913, 47.426185], [8.544798, 47.426164], [8.544686, 47.426137], [8.544578, 47.426104], [8.544474, 47.426066], [8.544374, 47.426021], [8.544231, 47.425964], [8.54408, 47.425914], [8.543924, 47.425874]]], "type": "MultiLineString"}, "id": "4799", "properties": {}, "type": "Feature"}, {"bbox": [8.488413, 47.377661, 8.488971, 47.377792], "geometry": {"coordinates": [[[8.488971, 47.377791], [8.488903, 47.377792], [8.488837, 47.377788], [8.48877, 47.377781], [8.488705, 47.37777], [8.488642, 47.377755], [8.48858, 47.377737], [8.488522, 47.377715], [8.488466, 47.37769], [8.488413, 47.377661]]], "type": "MultiLineString"}, "id": "4803", "properties": {}, "type": "Feature"}, {"bbox": [8.549074, 47.403888, 8.550642, 47.404098], "geometry": {"coordinates": [[[8.550642, 47.403888], [8.549485, 47.403971], [8.54941, 47.403981], [8.549337, 47.403996], [8.549266, 47.404015], [8.549199, 47.404039], [8.549134, 47.404067], [8.549074, 47.404098]]], "type": "MultiLineString"}, "id": "4817", "properties": {}, "type": "Feature"}, {"bbox": [8.536749, 47.379548, 8.537415, 47.379731], "geometry": {"coordinates": [[[8.537415, 47.379548], [8.536749, 47.379731]]], "type": "MultiLineString"}, "id": "4827", "properties": {}, "type": "Feature"}, {"bbox": [8.529746, 47.379527, 8.530281, 47.380035], "geometry": {"coordinates": [[[8.529746, 47.379527], [8.530281, 47.380035]]], "type": "MultiLineString"}, "id": "4848", "properties": {}, "type": "Feature"}, {"bbox": [8.530876, 47.408159, 8.53232, 47.410172], "geometry": {"coordinates": [[[8.53232, 47.409999], [8.531351, 47.410172], [8.530928, 47.409093], [8.530903, 47.409034], [8.530886, 47.408974], [8.530877, 47.408913], [8.530876, 47.408852], [8.530883, 47.408791], [8.530898, 47.408731], [8.53092, 47.408672], [8.530951, 47.408615], [8.530988, 47.408559], [8.531083, 47.408453], [8.531184, 47.408349], [8.531291, 47.408248], [8.531313, 47.408229], [8.531337, 47.408212], [8.531363, 47.408197], [8.53139, 47.408183], [8.53142, 47.40817], [8.531451, 47.408159]]], "type": "MultiLineString"}, "id": "4853", "properties": {}, "type": "Feature"}, {"bbox": [8.530649, 47.348861, 8.531244, 47.350126], "geometry": {"coordinates": [[[8.530649, 47.350126], [8.530697, 47.350107], [8.530779, 47.35007], [8.530855, 47.350027], [8.530925, 47.349981], [8.53099, 47.34993], [8.531048, 47.349876], [8.531093, 47.349834], [8.531132, 47.349789], [8.531166, 47.349742], [8.531194, 47.349694], [8.531216, 47.349644], [8.531232, 47.349593], [8.531241, 47.349541], [8.531244, 47.349489], [8.53124, 47.349437], [8.53123, 47.349385], [8.531213, 47.349334], [8.53098, 47.348864], [8.530979, 47.348861]]], "type": "MultiLineString"}, "id": "4868", "properties": {}, "type": "Feature"}, {"bbox": [8.545929, 47.425197, 8.546314, 47.425776], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546113, 47.425208], [8.546105, 47.425209], [8.546096, 47.42521], [8.546088, 47.425212], [8.54608, 47.425214], [8.546072, 47.425217], [8.546065, 47.42522], [8.546058, 47.425223], [8.546052, 47.425227], [8.546046, 47.425232], [8.546041, 47.425236], [8.546036, 47.425241], [8.546032, 47.425247], [8.546029, 47.425252], [8.546027, 47.425258], [8.546025, 47.425263], [8.546024, 47.425269], [8.546024, 47.425275], [8.545929, 47.425776]]], "type": "MultiLineString"}, "id": "4920", "properties": {}, "type": "Feature"}, {"bbox": [8.494636, 47.40309, 8.496176, 47.403656], "geometry": {"coordinates": [[[8.496176, 47.40309], [8.495876, 47.403184], [8.49567, 47.403251], [8.495515, 47.403305], [8.495376, 47.40336], [8.495245, 47.403425], [8.495125, 47.403498], [8.495081, 47.403527], [8.495034, 47.403554], [8.494983, 47.403578], [8.49493, 47.403599], [8.494875, 47.403617], [8.494817, 47.403632], [8.494758, 47.403643], [8.494698, 47.403651], [8.494636, 47.403656]]], "type": "MultiLineString"}, "id": "4925", "properties": {}, "type": "Feature"}, {"bbox": [8.519909, 47.371442, 8.520801, 47.371757], "geometry": {"coordinates": [[[8.520801, 47.371757], [8.519909, 47.371442]]], "type": "MultiLineString"}, "id": "4929", "properties": {}, "type": "Feature"}, {"bbox": [8.546825, 47.419173, 8.547623, 47.41925], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547585, 47.419192], [8.547544, 47.419208], [8.547502, 47.419222], [8.547457, 47.419233], [8.547412, 47.419241], [8.547365, 47.419246], [8.547318, 47.419248], [8.547275, 47.41925], [8.547225, 47.419249], [8.547159, 47.419242], [8.546825, 47.419198]]], "type": "MultiLineString"}, "id": "4930", "properties": {}, "type": "Feature"}, {"bbox": [8.531194, 47.335349, 8.531969, 47.336723], "geometry": {"coordinates": [[[8.531969, 47.336723], [8.531905, 47.336627], [8.531437, 47.336235], [8.53138, 47.336178], [8.53133, 47.336117], [8.531287, 47.336055], [8.531252, 47.33599], [8.531224, 47.335924], [8.531205, 47.335856], [8.531194, 47.335787], [8.531196, 47.335758], [8.531203, 47.335728], [8.531213, 47.335699], [8.531227, 47.335671], [8.531245, 47.335644], [8.531266, 47.335618], [8.531291, 47.335593], [8.531318, 47.33557], [8.531349, 47.335549], [8.531645, 47.335349]]], "type": "MultiLineString"}, "id": "4979", "properties": {}, "type": "Feature"}, {"bbox": [8.529366, 47.414287, 8.529544, 47.414568], "geometry": {"coordinates": [[[8.529366, 47.414287], [8.529488, 47.414383], [8.529544, 47.414568]]], "type": "MultiLineString"}, "id": "5004", "properties": {}, "type": "Feature"}, {"bbox": [8.475206, 47.413708, 8.477064, 47.414666], "geometry": {"coordinates": [[[8.477064, 47.413708], [8.477033, 47.413716], [8.476817, 47.413753], [8.476597, 47.413778], [8.476374, 47.41379], [8.476314, 47.413874], [8.476242, 47.413954], [8.47616, 47.414029], [8.476068, 47.414098], [8.475982, 47.414157], [8.475539, 47.414418], [8.475444, 47.414472], [8.475357, 47.414532], [8.475277, 47.414597], [8.475206, 47.414666]]], "type": "MultiLineString"}, "id": "5036", "properties": {}, "type": "Feature"}, {"bbox": [8.543775, 47.425094, 8.546314, 47.425312], "geometry": {"coordinates": [[[8.546314, 47.425197], [8.546192, 47.425195], [8.54607, 47.425188], [8.545949, 47.425175], [8.545384, 47.425107], [8.545356, 47.425102], [8.545327, 47.425097], [8.545297, 47.425095], [8.545267, 47.425094], [8.545238, 47.425095], [8.545208, 47.425097], [8.545179, 47.425102], [8.54516, 47.425104], [8.544453, 47.425195], [8.544342, 47.425212], [8.544221, 47.425233], [8.543775, 47.425312]]], "type": "MultiLineString"}, "id": "5044", "properties": {}, "type": "Feature"}, {"bbox": [8.559523, 47.407413, 8.560396, 47.40744], "geometry": {"coordinates": [[[8.559523, 47.407413], [8.559654, 47.407416], [8.559823, 47.40743], [8.560394, 47.40744], [8.560396, 47.40744]]], "type": "MultiLineString"}, "id": "5063", "properties": {}, "type": "Feature"}, {"bbox": [8.529116, 47.39298, 8.529365, 47.393515], "geometry": {"coordinates": [[[8.529152, 47.39298], [8.529136, 47.393017], [8.529116, 47.393065], [8.529197, 47.393229], [8.529277, 47.393401], [8.529365, 47.393515]]], "type": "MultiLineString"}, "id": "5066", "properties": {}, "type": "Feature"}, {"bbox": [8.524882, 47.349021, 8.526599, 47.349217], "geometry": {"coordinates": [[[8.526599, 47.349021], [8.526099, 47.349087], [8.52597, 47.349108], [8.525463, 47.349196], [8.52527, 47.349213], [8.525076, 47.349217], [8.524882, 47.34921]]], "type": "MultiLineString"}, "id": "5073", "properties": {}, "type": "Feature"}, {"bbox": [8.572543, 47.357974, 8.573269, 47.358161], "geometry": {"coordinates": [[[8.572543, 47.357974], [8.572817, 47.358033], [8.573269, 47.358161]]], "type": "MultiLineString"}, "id": "5118", "properties": {}, "type": "Feature"}, {"bbox": [8.558894, 47.352783, 8.559435, 47.354327], "geometry": {"coordinates": [[[8.558894, 47.354327], [8.559352, 47.354006], [8.559368, 47.353994], [8.559382, 47.353981], [8.559395, 47.353968], [8.559406, 47.353953], [8.559415, 47.353938], [8.559423, 47.353923], [8.559429, 47.353907], [8.559433, 47.353891], [8.559435, 47.353875], [8.559435, 47.353859], [8.559223, 47.352783]]], "type": "MultiLineString"}, "id": "5136", "properties": {}, "type": "Feature"}, {"bbox": [8.540889, 47.421475, 8.542494, 47.421626], "geometry": {"coordinates": [[[8.542494, 47.421626], [8.542411, 47.421614], [8.54233, 47.421598], [8.542252, 47.421578], [8.542176, 47.421553], [8.542123, 47.421531], [8.542067, 47.421513], [8.54201, 47.421498], [8.54195, 47.421487], [8.54189, 47.421479], [8.541828, 47.421475], [8.541767, 47.421475], [8.541705, 47.421479], [8.541644, 47.421486], [8.541585, 47.421497], [8.541377, 47.421529], [8.541165, 47.42155], [8.540952, 47.421561], [8.540889, 47.421555]]], "type": "MultiLineString"}, "id": "5138", "properties": {}, "type": "Feature"}, {"bbox": [8.545162, 47.412614, 8.54538, 47.412992], "geometry": {"coordinates": [[[8.545162, 47.412614], [8.545286, 47.412662], [8.545296, 47.412667], [8.545306, 47.412672], [8.545315, 47.412678], [8.545324, 47.412684], [8.545331, 47.412691], [8.545338, 47.412698], [8.545344, 47.412705], [8.545349, 47.412713], [8.545353, 47.412721], [8.545356, 47.412729], [8.545358, 47.412738], [8.54538, 47.412992]]], "type": "MultiLineString"}, "id": "5142", "properties": {}, "type": "Feature"}, {"bbox": [8.544284, 47.412376, 8.545162, 47.412614], "geometry": {"coordinates": [[[8.545162, 47.412614], [8.544623, 47.412419], [8.544575, 47.412404], [8.544525, 47.412392], [8.544473, 47.412383], [8.544421, 47.412377], [8.544414, 47.412376], [8.544407, 47.412376], [8.544399, 47.412377], [8.544392, 47.412378], [8.544385, 47.412379], [8.544379, 47.412381], [8.544372, 47.412383], [8.544366, 47.412385], [8.54436, 47.412388], [8.544355, 47.412391], [8.54435, 47.412395], [8.544345, 47.412399], [8.544332, 47.412412], [8.54432, 47.412425], [8.54431, 47.41244], [8.544301, 47.412455], [8.544295, 47.41247], [8.54429, 47.412486], [8.544284, 47.412512]]], "type": "MultiLineString"}, "id": "5148", "properties": {}, "type": "Feature"}, {"bbox": [8.536455, 47.379731, 8.536749, 47.379813], "geometry": {"coordinates": [[[8.536749, 47.379731], [8.536455, 47.379813]]], "type": "MultiLineString"}, "id": "5157", "properties": {}, "type": "Feature"}, {"bbox": [8.507351, 47.362068, 8.50741, 47.362115], "geometry": {"coordinates": [[[8.50741, 47.362068], [8.507351, 47.362115]]], "type": "MultiLineString"}, "id": "5159", "properties": {}, "type": "Feature"}, {"bbox": [8.505994, 47.36308, 8.506048, 47.363118], "geometry": {"coordinates": [[[8.506048, 47.36308], [8.505994, 47.363118]]], "type": "MultiLineString"}, "id": "5160", "properties": {}, "type": "Feature"}, {"bbox": [8.506048, 47.362115, 8.507351, 47.36308], "geometry": {"coordinates": [[[8.507351, 47.362115], [8.507071, 47.362339], [8.506724, 47.362605], [8.506602, 47.362694], [8.506048, 47.36308]]], "type": "MultiLineString"}, "id": "5161", "properties": {}, "type": "Feature"}, {"bbox": [8.527561, 47.395777, 8.529071, 47.396015], "geometry": {"coordinates": [[[8.527561, 47.396015], [8.527567, 47.396014], [8.528896, 47.395802], [8.529059, 47.395778], [8.529071, 47.395777]]], "type": "MultiLineString"}, "id": "5167", "properties": {}, "type": "Feature"}, {"bbox": [8.516831, 47.389823, 8.518049, 47.390241], "geometry": {"coordinates": [[[8.518049, 47.389823], [8.517514, 47.390012], [8.516831, 47.390241]]], "type": "MultiLineString"}, "id": "5173", "properties": {}, "type": "Feature"}, {"bbox": [8.512013, 47.37305, 8.51248, 47.373312], "geometry": {"coordinates": [[[8.51248, 47.373312], [8.512406, 47.37327], [8.512246, 47.373181], [8.512087, 47.373092], [8.512013, 47.37305]]], "type": "MultiLineString"}, "id": "5182", "properties": {}, "type": "Feature"}, {"bbox": [8.512246, 47.372176, 8.513392, 47.373181], "geometry": {"coordinates": [[[8.513392, 47.372176], [8.513206, 47.372334], [8.512685, 47.372794], [8.512246, 47.373181]]], "type": "MultiLineString"}, "id": "5184", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_ca795cd708893b90b17073f048956295_onEachFeature(feature, layer) {\n", + " function geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_ca795cd708893b90b17073f048956295 = L.geoJson(null, {\n", - " onEachFeature: geo_json_ca795cd708893b90b17073f048956295_onEachFeature,\n", + " var geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16 = L.geoJson(null, {\n", + " onEachFeature: geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16_onEachFeature,\n", " \n", " color: "orange",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_ca795cd708893b90b17073f048956295_add (data) {\n", - " geo_json_ca795cd708893b90b17073f048956295\n", + " function geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16_add (data) {\n", + " geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16\n", " .addData(data);\n", " }\n", - " geo_json_ca795cd708893b90b17073f048956295_add({"bbox": [8.465219, 47.322732, 8.609922, 47.431186], "features": [{"bbox": [8.526294, 47.38038, 8.526913, 47.380991], "geometry": {"coordinates": [[[8.526294, 47.38038], [8.526697, 47.380714], [8.526913, 47.380991]]], "type": "MultiLineString"}, "id": "2", "properties": {}, "type": "Feature"}, {"bbox": [8.529712, 47.38331, 8.530426, 47.383664], "geometry": {"coordinates": [[[8.530426, 47.38331], [8.529712, 47.383664]]], "type": "MultiLineString"}, "id": "8", "properties": {}, "type": "Feature"}, {"bbox": [8.560362, 47.406659, 8.560408, 47.408223], "geometry": {"coordinates": [[[8.560408, 47.406659], [8.560394, 47.40744], [8.560362, 47.408223]]], "type": "MultiLineString"}, "id": "10", "properties": {}, "type": "Feature"}, {"bbox": [8.556746, 47.378131, 8.5575, 47.378283], "geometry": {"coordinates": [[[8.556746, 47.378131], [8.5575, 47.378283]]], "type": "MultiLineString"}, "id": "13", "properties": {}, "type": "Feature"}, {"bbox": [8.549788, 47.359601, 8.550858, 47.35983], "geometry": {"coordinates": [[[8.549788, 47.359601], [8.549795, 47.359601], [8.550858, 47.35983]]], "type": "MultiLineString"}, "id": "14", "properties": {}, "type": "Feature"}, {"bbox": [8.523533, 47.373119, 8.52424, 47.373605], "geometry": {"coordinates": [[[8.52424, 47.373119], [8.523533, 47.373605]]], "type": "MultiLineString"}, "id": "15", "properties": {}, "type": "Feature"}, {"bbox": [8.525769, 47.377626, 8.526264, 47.378218], "geometry": {"coordinates": [[[8.525769, 47.377626], [8.526264, 47.378218]]], "type": "MultiLineString"}, "id": "18", "properties": {}, "type": "Feature"}, {"bbox": [8.5148, 47.371934, 8.516492, 47.373999], "geometry": {"coordinates": [[[8.516492, 47.371934], [8.515732, 47.372636], [8.514988, 47.373334], [8.5148, 47.373999]]], "type": "MultiLineString"}, "id": "22", "properties": {}, "type": "Feature"}, {"bbox": [8.532199, 47.369381, 8.532998, 47.370024], "geometry": {"coordinates": [[[8.532998, 47.370024], [8.532199, 47.369381]]], "type": "MultiLineString"}, "id": "23", "properties": {}, "type": "Feature"}, {"bbox": [8.554234, 47.367853, 8.555784, 47.369171], "geometry": {"coordinates": [[[8.554234, 47.369171], [8.555784, 47.367853]]], "type": "MultiLineString"}, "id": "33", "properties": {}, "type": "Feature"}, {"bbox": [8.545087, 47.416297, 8.54608, 47.416323], "geometry": {"coordinates": [[[8.545087, 47.416297], [8.545247, 47.4163], [8.54608, 47.416323]]], "type": "MultiLineString"}, "id": "37", "properties": {}, "type": "Feature"}, {"bbox": [8.540488, 47.386318, 8.540704, 47.387935], "geometry": {"coordinates": [[[8.540704, 47.386318], [8.540688, 47.386425], [8.540585, 47.387294], [8.540541, 47.387793], [8.540488, 47.387935]]], "type": "MultiLineString"}, "id": "38", "properties": {}, "type": "Feature"}, {"bbox": [8.556995, 47.356394, 8.5573, 47.356615], "geometry": {"coordinates": [[[8.556995, 47.356394], [8.5573, 47.356615]]], "type": "MultiLineString"}, "id": "41", "properties": {}, "type": "Feature"}, {"bbox": [8.529308, 47.33987, 8.529619, 47.340748], "geometry": {"coordinates": [[[8.529619, 47.340748], [8.529308, 47.339977], [8.529308, 47.33987]]], "type": "MultiLineString"}, "id": "42", "properties": {}, "type": "Feature"}, {"bbox": [8.521371, 47.359848, 8.522947, 47.360073], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522755, 47.360073], [8.521981, 47.359947], [8.521371, 47.359848]]], "type": "MultiLineString"}, "id": "51", "properties": {}, "type": "Feature"}, {"bbox": [8.516642, 47.369725, 8.51757, 47.370568], "geometry": {"coordinates": [[[8.51757, 47.370568], [8.516642, 47.369725]]], "type": "MultiLineString"}, "id": "52", "properties": {}, "type": "Feature"}, {"bbox": [8.552444, 47.357813, 8.554003, 47.358239], "geometry": {"coordinates": [[[8.552444, 47.357813], [8.554003, 47.358239]]], "type": "MultiLineString"}, "id": "53", "properties": {}, "type": "Feature"}, {"bbox": [8.550094, 47.363659, 8.55071, 47.364351], "geometry": {"coordinates": [[[8.550094, 47.364351], [8.550161, 47.364255], [8.55071, 47.363659]]], "type": "MultiLineString"}, "id": "54", "properties": {}, "type": "Feature"}, {"bbox": [8.541628, 47.388476, 8.542347, 47.38875], "geometry": {"coordinates": [[[8.541628, 47.388476], [8.542187, 47.388687], [8.542347, 47.38875]]], "type": "MultiLineString"}, "id": "55", "properties": {}, "type": "Feature"}, {"bbox": [8.51233, 47.377452, 8.513397, 47.378251], "geometry": {"coordinates": [[[8.51233, 47.377452], [8.513397, 47.378251]]], "type": "MultiLineString"}, "id": "56", "properties": {}, "type": "Feature"}, {"bbox": [8.550419, 47.401981, 8.551467, 47.402198], "geometry": {"coordinates": [[[8.550419, 47.402198], [8.550591, 47.402185], [8.551467, 47.401981]]], "type": "MultiLineString"}, "id": "57", "properties": {}, "type": "Feature"}, {"bbox": [8.505445, 47.391584, 8.507126, 47.39263], "geometry": {"coordinates": [[[8.507126, 47.39263], [8.505445, 47.391584]]], "type": "MultiLineString"}, "id": "58", "properties": {}, "type": "Feature"}, {"bbox": [8.555004, 47.370399, 8.555862, 47.370737], "geometry": {"coordinates": [[[8.555004, 47.370399], [8.555862, 47.370737]]], "type": "MultiLineString"}, "id": "59", "properties": {}, "type": "Feature"}, {"bbox": [8.55549, 47.357466, 8.555794, 47.357518], "geometry": {"coordinates": [[[8.55549, 47.357466], [8.555711, 47.357518], [8.555794, 47.357512]]], "type": "MultiLineString"}, "id": "61", "properties": {}, "type": "Feature"}, {"bbox": [8.481337, 47.385146, 8.481953, 47.385946], "geometry": {"coordinates": [[[8.481953, 47.385946], [8.481624, 47.38552], [8.481337, 47.385146]]], "type": "MultiLineString"}, "id": "65", "properties": {}, "type": "Feature"}, {"bbox": [8.525816, 47.408585, 8.526308, 47.408814], "geometry": {"coordinates": [[[8.525816, 47.408585], [8.526308, 47.408814]]], "type": "MultiLineString"}, "id": "66", "properties": {}, "type": "Feature"}, {"bbox": [8.546838, 47.407641, 8.546953, 47.407664], "geometry": {"coordinates": [[[8.546838, 47.407641], [8.546953, 47.407664]]], "type": "MultiLineString"}, "id": "68", "properties": {}, "type": "Feature"}, {"bbox": [8.539419, 47.412679, 8.540145, 47.413455], "geometry": {"coordinates": [[[8.540145, 47.412679], [8.540048, 47.412705], [8.539419, 47.413455]]], "type": "MultiLineString"}, "id": "75", "properties": {}, "type": "Feature"}, {"bbox": [8.484598, 47.383209, 8.485921, 47.384759], "geometry": {"coordinates": [[[8.485921, 47.384759], [8.485702, 47.384423], [8.485572, 47.384271], [8.485221, 47.383935], [8.484924, 47.383675], [8.484802, 47.383526], [8.484598, 47.383209]]], "type": "MultiLineString"}, "id": "76", "properties": {}, "type": "Feature"}, {"bbox": [8.535232, 47.381952, 8.535993, 47.382427], "geometry": {"coordinates": [[[8.535232, 47.381952], [8.535993, 47.382427]]], "type": "MultiLineString"}, "id": "79", "properties": {}, "type": "Feature"}, {"bbox": [8.531702, 47.360378, 8.532397, 47.360477], "geometry": {"coordinates": [[[8.532397, 47.360477], [8.531702, 47.360378]]], "type": "MultiLineString"}, "id": "80", "properties": {}, "type": "Feature"}, {"bbox": [8.539747, 47.387852, 8.540364, 47.388969], "geometry": {"coordinates": [[[8.540118, 47.387852], [8.540128, 47.387932], [8.539758, 47.388777], [8.539747, 47.388838], [8.540364, 47.388969]]], "type": "MultiLineString"}, "id": "81", "properties": {}, "type": "Feature"}, {"bbox": [8.55946, 47.367329, 8.559788, 47.36749], "geometry": {"coordinates": [[[8.55946, 47.367329], [8.559711, 47.367449], [8.559788, 47.36749]]], "type": "MultiLineString"}, "id": "87", "properties": {}, "type": "Feature"}, {"bbox": [8.496799, 47.424215, 8.497746, 47.425672], "geometry": {"coordinates": [[[8.497746, 47.425672], [8.496906, 47.424378], [8.496799, 47.424215]]], "type": "MultiLineString"}, "id": "89", "properties": {}, "type": "Feature"}, {"bbox": [8.483049, 47.406832, 8.484317, 47.407331], "geometry": {"coordinates": [[[8.484317, 47.406832], [8.483049, 47.407331]]], "type": "MultiLineString"}, "id": "91", "properties": {}, "type": "Feature"}, {"bbox": [8.514808, 47.41461, 8.515154, 47.415096], "geometry": {"coordinates": [[[8.515154, 47.415096], [8.514808, 47.41461]]], "type": "MultiLineString"}, "id": "93", "properties": {}, "type": "Feature"}, {"bbox": [8.539949, 47.374577, 8.53998, 47.374972], "geometry": {"coordinates": [[[8.53998, 47.374972], [8.539949, 47.374577]]], "type": "MultiLineString"}, "id": "96", "properties": {}, "type": "Feature"}, {"bbox": [8.511942, 47.377607, 8.513051, 47.378397], "geometry": {"coordinates": [[[8.513051, 47.378397], [8.511942, 47.377607]]], "type": "MultiLineString"}, "id": "97", "properties": {}, "type": "Feature"}, {"bbox": [8.551204, 47.35867, 8.551396, 47.359122], "geometry": {"coordinates": [[[8.551204, 47.359122], [8.551396, 47.35867]]], "type": "MultiLineString"}, "id": "100", "properties": {}, "type": "Feature"}, {"bbox": [8.519349, 47.374977, 8.521408, 47.377923], "geometry": {"coordinates": [[[8.519349, 47.374977], [8.519911, 47.376084], [8.519935, 47.376113], [8.519962, 47.37614], [8.519993, 47.376166], [8.520028, 47.37619], [8.520323, 47.376417], [8.520335, 47.376426], [8.520346, 47.376435], [8.520356, 47.376445], [8.520364, 47.376456], [8.520645, 47.37685], [8.521033, 47.377393], [8.521408, 47.377923]]], "type": "MultiLineString"}, "id": "101", "properties": {}, "type": "Feature"}, {"bbox": [8.520459, 47.374728, 8.52235, 47.377593], "geometry": {"coordinates": [[[8.520459, 47.374728], [8.520909, 47.375593], [8.520989, 47.375704], [8.521581, 47.376523], [8.52197, 47.377048], [8.522317, 47.377516], [8.52235, 47.377593]]], "type": "MultiLineString"}, "id": "103", "properties": {}, "type": "Feature"}, {"bbox": [8.53015, 47.374003, 8.530819, 47.374326], "geometry": {"coordinates": [[[8.53015, 47.374003], [8.530819, 47.374326]]], "type": "MultiLineString"}, "id": "105", "properties": {}, "type": "Feature"}, {"bbox": [8.528748, 47.373701, 8.529718, 47.374454], "geometry": {"coordinates": [[[8.529718, 47.373701], [8.528857, 47.374371], [8.528748, 47.374454]]], "type": "MultiLineString"}, "id": "106", "properties": {}, "type": "Feature"}, {"bbox": [8.511043, 47.368936, 8.51237, 47.369696], "geometry": {"coordinates": [[[8.51237, 47.369696], [8.511043, 47.368936]]], "type": "MultiLineString"}, "id": "112", "properties": {}, "type": "Feature"}, {"bbox": [8.508539, 47.383143, 8.51006, 47.383798], "geometry": {"coordinates": [[[8.51006, 47.383143], [8.508539, 47.383798]]], "type": "MultiLineString"}, "id": "113", "properties": {}, "type": "Feature"}, {"bbox": [8.507787, 47.421066, 8.508767, 47.421856], "geometry": {"coordinates": [[[8.507787, 47.421856], [8.507947, 47.421788], [8.508767, 47.421066]]], "type": "MultiLineString"}, "id": "114", "properties": {}, "type": "Feature"}, {"bbox": [8.540988, 47.411357, 8.54133, 47.41177], "geometry": {"coordinates": [[[8.54133, 47.411357], [8.540988, 47.41177]]], "type": "MultiLineString"}, "id": "115", "properties": {}, "type": "Feature"}, {"bbox": [8.476874, 47.383389, 8.477671, 47.384206], "geometry": {"coordinates": [[[8.476874, 47.384206], [8.477671, 47.383389]]], "type": "MultiLineString"}, "id": "122", "properties": {}, "type": "Feature"}, {"bbox": [8.557929, 47.3785, 8.558372, 47.379348], "geometry": {"coordinates": [[[8.558372, 47.3785], [8.558315, 47.378575], [8.557976, 47.379283], [8.557929, 47.379348]]], "type": "MultiLineString"}, "id": "130", "properties": {}, "type": "Feature"}, {"bbox": [8.544221, 47.41536, 8.545236, 47.415639], "geometry": {"coordinates": [[[8.545236, 47.415639], [8.544221, 47.41536]]], "type": "MultiLineString"}, "id": "143", "properties": {}, "type": "Feature"}, {"bbox": [8.554119, 47.355696, 8.555443, 47.356143], "geometry": {"coordinates": [[[8.554119, 47.355696], [8.555443, 47.356143]]], "type": "MultiLineString"}, "id": "145", "properties": {}, "type": "Feature"}, {"bbox": [8.535588, 47.409956, 8.535803, 47.410475], "geometry": {"coordinates": [[[8.535588, 47.409956], [8.535803, 47.410475]]], "type": "MultiLineString"}, "id": "160", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.42424, 8.540756, 47.424702], "geometry": {"coordinates": [[[8.540226, 47.42424], [8.540756, 47.424702]]], "type": "MultiLineString"}, "id": "170", "properties": {}, "type": "Feature"}, {"bbox": [8.534764, 47.341014, 8.536021, 47.341271], "geometry": {"coordinates": [[[8.536021, 47.341271], [8.534764, 47.341014]]], "type": "MultiLineString"}, "id": "175", "properties": {}, "type": "Feature"}, {"bbox": [8.542855, 47.408845, 8.543367, 47.409243], "geometry": {"coordinates": [[[8.542855, 47.408845], [8.543367, 47.409243]]], "type": "MultiLineString"}, "id": "178", "properties": {}, "type": "Feature"}, {"bbox": [8.553874, 47.369458, 8.554732, 47.370614], "geometry": {"coordinates": [[[8.553874, 47.370614], [8.554267, 47.37009], [8.554732, 47.369458]]], "type": "MultiLineString"}, "id": "182", "properties": {}, "type": "Feature"}, {"bbox": [8.513936, 47.374979, 8.514891, 47.375543], "geometry": {"coordinates": [[[8.514891, 47.375543], [8.513936, 47.374979]]], "type": "MultiLineString"}, "id": "183", "properties": {}, "type": "Feature"}, {"bbox": [8.548201, 47.417484, 8.549156, 47.417889], "geometry": {"coordinates": [[[8.548201, 47.417889], [8.548909, 47.417606], [8.548924, 47.417598], [8.549155, 47.417484], [8.549156, 47.417484]]], "type": "MultiLineString"}, "id": "184", "properties": {}, "type": "Feature"}, {"bbox": [8.531514, 47.35971, 8.531968, 47.359824], "geometry": {"coordinates": [[[8.531968, 47.359824], [8.531514, 47.35971]]], "type": "MultiLineString"}, "id": "187", "properties": {}, "type": "Feature"}, {"bbox": [8.507613, 47.39924, 8.507892, 47.399977], "geometry": {"coordinates": [[[8.507708, 47.39924], [8.507892, 47.399401], [8.507613, 47.399977]]], "type": "MultiLineString"}, "id": "188", "properties": {}, "type": "Feature"}, {"bbox": [8.51074, 47.42252, 8.512118, 47.423055], "geometry": {"coordinates": [[[8.51074, 47.423055], [8.511071, 47.422929], [8.512118, 47.42252]]], "type": "MultiLineString"}, "id": "198", "properties": {}, "type": "Feature"}, {"bbox": [8.516034, 47.375641, 8.516642, 47.379187], "geometry": {"coordinates": [[[8.516642, 47.375641], [8.516597, 47.375799], [8.516517, 47.376285], [8.516391, 47.377008], [8.51633, 47.377377], [8.516264, 47.377781], [8.516149, 47.37849], [8.516111, 47.37872], [8.516034, 47.379187]]], "type": "MultiLineString"}, "id": "200", "properties": {}, "type": "Feature"}, {"bbox": [8.571958, 47.413738, 8.573424, 47.414277], "geometry": {"coordinates": [[[8.571958, 47.413738], [8.57251, 47.414277], [8.572667, 47.414236], [8.573424, 47.413864]]], "type": "MultiLineString"}, "id": "203", "properties": {}, "type": "Feature"}, {"bbox": [8.525398, 47.385975, 8.526813, 47.386602], "geometry": {"coordinates": [[[8.526813, 47.385975], [8.526612, 47.386027], [8.525398, 47.386602]]], "type": "MultiLineString"}, "id": "204", "properties": {}, "type": "Feature"}, {"bbox": [8.560396, 47.40744, 8.562057, 47.407501], "geometry": {"coordinates": [[[8.560396, 47.40744], [8.561895, 47.407466], [8.562057, 47.407501]]], "type": "MultiLineString"}, "id": "205", "properties": {}, "type": "Feature"}, {"bbox": [8.563865, 47.40985, 8.564775, 47.410192], "geometry": {"coordinates": [[[8.563865, 47.40985], [8.564674, 47.410164], [8.564707, 47.410175], [8.564741, 47.410184], [8.564775, 47.410192]]], "type": "MultiLineString"}, "id": "207", "properties": {}, "type": "Feature"}, {"bbox": [8.497676, 47.401882, 8.497857, 47.402026], "geometry": {"coordinates": [[[8.497676, 47.401882], [8.497704, 47.401892], [8.49773, 47.401904], [8.497754, 47.401918], [8.497777, 47.401933], [8.497798, 47.40195], [8.497816, 47.401967], [8.497832, 47.401986], [8.497846, 47.402005], [8.497857, 47.402026]]], "type": "MultiLineString"}, "id": "212", "properties": {}, "type": "Feature"}, {"bbox": [8.578796, 47.356757, 8.579431, 47.356941], "geometry": {"coordinates": [[[8.578796, 47.356757], [8.578874, 47.356828], [8.579431, 47.356941]]], "type": "MultiLineString"}, "id": "220", "properties": {}, "type": "Feature"}, {"bbox": [8.545189, 47.410918, 8.546819, 47.411259], "geometry": {"coordinates": [[[8.546819, 47.411259], [8.546572, 47.411234], [8.545963, 47.411145], [8.545927, 47.411139], [8.545891, 47.411132], [8.545856, 47.411123], [8.545791, 47.411103], [8.545189, 47.410918]]], "type": "MultiLineString"}, "id": "226", "properties": {}, "type": "Feature"}, {"bbox": [8.496704, 47.383155, 8.497351, 47.383499], "geometry": {"coordinates": [[[8.497351, 47.383155], [8.497304, 47.383217], [8.496704, 47.383499]]], "type": "MultiLineString"}, "id": "233", "properties": {}, "type": "Feature"}, {"bbox": [8.532082, 47.358608, 8.534475, 47.358942], "geometry": {"coordinates": [[[8.534475, 47.358942], [8.533678, 47.358832], [8.533093, 47.358755], [8.532283, 47.358626], [8.532082, 47.358608]]], "type": "MultiLineString"}, "id": "236", "properties": {}, "type": "Feature"}, {"bbox": [8.526904, 47.35914, 8.527771, 47.359249], "geometry": {"coordinates": [[[8.527771, 47.359249], [8.527025, 47.359188], [8.526904, 47.35914]]], "type": "MultiLineString"}, "id": "241", "properties": {}, "type": "Feature"}, {"bbox": [8.529812, 47.374266, 8.530421, 47.374644], "geometry": {"coordinates": [[[8.529812, 47.374266], [8.530421, 47.374644]]], "type": "MultiLineString"}, "id": "244", "properties": {}, "type": "Feature"}, {"bbox": [8.521762, 47.389739, 8.522557, 47.390119], "geometry": {"coordinates": [[[8.522557, 47.389739], [8.521762, 47.390119]]], "type": "MultiLineString"}, "id": "246", "properties": {}, "type": "Feature"}, {"bbox": [8.477053, 47.389038, 8.477514, 47.389855], "geometry": {"coordinates": [[[8.477514, 47.389855], [8.477375, 47.389508], [8.477296, 47.389355], [8.477108, 47.389093], [8.477053, 47.389038]]], "type": "MultiLineString"}, "id": "248", "properties": {}, "type": "Feature"}, {"bbox": [8.541742, 47.426908, 8.542747, 47.427333], "geometry": {"coordinates": [[[8.541742, 47.427333], [8.541822, 47.427327], [8.5419, 47.427316], [8.541977, 47.427301], [8.542052, 47.427282], [8.542124, 47.427259], [8.542192, 47.427231], [8.542747, 47.426908]]], "type": "MultiLineString"}, "id": "249", "properties": {}, "type": "Feature"}, {"bbox": [8.574624, 47.384142, 8.57546, 47.386406], "geometry": {"coordinates": [[[8.574624, 47.384142], [8.574691, 47.384187], [8.574751, 47.384237], [8.574805, 47.384289], [8.574852, 47.384345], [8.574893, 47.384403], [8.574925, 47.384463], [8.574951, 47.384525], [8.574968, 47.384588], [8.575324, 47.385914], [8.57546, 47.386406]]], "type": "MultiLineString"}, "id": "252", "properties": {}, "type": "Feature"}, {"bbox": [8.570096, 47.362256, 8.573332, 47.364628], "geometry": {"coordinates": [[[8.570096, 47.364628], [8.571066, 47.363849], [8.571269, 47.363679], [8.571482, 47.363507], [8.571687, 47.363351], [8.571873, 47.363213], [8.572077, 47.363074], [8.572229, 47.36297], [8.572495, 47.362793], [8.573184, 47.362351], [8.573332, 47.362256]]], "type": "MultiLineString"}, "id": "253", "properties": {}, "type": "Feature"}, {"bbox": [8.548847, 47.416338, 8.549156, 47.416792], "geometry": {"coordinates": [[[8.548847, 47.416338], [8.5489, 47.416356], [8.548959, 47.416464], [8.549156, 47.416792]]], "type": "MultiLineString"}, "id": "255", "properties": {}, "type": "Feature"}, {"bbox": [8.573216, 47.347864, 8.574392, 47.349231], "geometry": {"coordinates": [[[8.573216, 47.349231], [8.573359, 47.349146], [8.57349, 47.349053], [8.573611, 47.348954], [8.573719, 47.348848], [8.573975, 47.34853], [8.5742, 47.348202], [8.574392, 47.347864]]], "type": "MultiLineString"}, "id": "257", "properties": {}, "type": "Feature"}, {"bbox": [8.544009, 47.378735, 8.544287, 47.378885], "geometry": {"coordinates": [[[8.544287, 47.378736], [8.54406, 47.378735], [8.544009, 47.378885]]], "type": "MultiLineString"}, "id": "260", "properties": {}, "type": "Feature"}, {"bbox": [8.591865, 47.399556, 8.592582, 47.400398], "geometry": {"coordinates": [[[8.591865, 47.399556], [8.592088, 47.399691], [8.592127, 47.399717], [8.592163, 47.399745], [8.592194, 47.399775], [8.592222, 47.399807], [8.592245, 47.399841], [8.592582, 47.400398]]], "type": "MultiLineString"}, "id": "263", "properties": {}, "type": "Feature"}, {"bbox": [8.538034, 47.387008, 8.538337, 47.387546], "geometry": {"coordinates": [[[8.538034, 47.387546], [8.538337, 47.387008]]], "type": "MultiLineString"}, "id": "270", "properties": {}, "type": "Feature"}, {"bbox": [8.516315, 47.396453, 8.521094, 47.397399], "geometry": {"coordinates": [[[8.521094, 47.396453], [8.521064, 47.396625], [8.521058, 47.396641], [8.521051, 47.396656], [8.521041, 47.39667], [8.52103, 47.396684], [8.521016, 47.396697], [8.521001, 47.396709], [8.520985, 47.39672], [8.520967, 47.39673], [8.520948, 47.396739], [8.520927, 47.396747], [8.520906, 47.396753], [8.520884, 47.396758], [8.520862, 47.396762], [8.519692, 47.396942], [8.519174, 47.397029], [8.518661, 47.397132], [8.518155, 47.397249], [8.517566, 47.39733], [8.517043, 47.397371], [8.516688, 47.397399], [8.516315, 47.397395]]], "type": "MultiLineString"}, "id": "271", "properties": {}, "type": "Feature"}, {"bbox": [8.49241, 47.376479, 8.493132, 47.377047], "geometry": {"coordinates": [[[8.493132, 47.377047], [8.49241, 47.376479]]], "type": "MultiLineString"}, "id": "272", "properties": {}, "type": "Feature"}, {"bbox": [8.537968, 47.396186, 8.539433, 47.398338], "geometry": {"coordinates": [[[8.53877, 47.396186], [8.539325, 47.396708], [8.539433, 47.396823], [8.539015, 47.397268], [8.538546, 47.397726], [8.537968, 47.398338]]], "type": "MultiLineString"}, "id": "288", "properties": {}, "type": "Feature"}, {"bbox": [8.521146, 47.370698, 8.522118, 47.371487], "geometry": {"coordinates": [[[8.522118, 47.370698], [8.521843, 47.370921], [8.521146, 47.371487]]], "type": "MultiLineString"}, "id": "289", "properties": {}, "type": "Feature"}, {"bbox": [8.566924, 47.364948, 8.567035, 47.365003], "geometry": {"coordinates": [[[8.566924, 47.364948], [8.567035, 47.365003]]], "type": "MultiLineString"}, "id": "290", "properties": {}, "type": "Feature"}, {"bbox": [8.528423, 47.384313, 8.528632, 47.384609], "geometry": {"coordinates": [[[8.528632, 47.384609], [8.528423, 47.384313]]], "type": "MultiLineString"}, "id": "292", "properties": {}, "type": "Feature"}, {"bbox": [8.515801, 47.366105, 8.517589, 47.366595], "geometry": {"coordinates": [[[8.517589, 47.366595], [8.517435, 47.366542], [8.517273, 47.366491], [8.517147, 47.366456], [8.517026, 47.366424], [8.516919, 47.366397], [8.516812, 47.366369], [8.51591, 47.366135], [8.515801, 47.366105]]], "type": "MultiLineString"}, "id": "295", "properties": {}, "type": "Feature"}, {"bbox": [8.557055, 47.356942, 8.558179, 47.357319], "geometry": {"coordinates": [[[8.557055, 47.356942], [8.557275, 47.356993], [8.558179, 47.357319]]], "type": "MultiLineString"}, "id": "303", "properties": {}, "type": "Feature"}, {"bbox": [8.545249, 47.381733, 8.547567, 47.382089], "geometry": {"coordinates": [[[8.545249, 47.381769], [8.545544, 47.381733], [8.546274, 47.381884], [8.547334, 47.382089], [8.547503, 47.382035], [8.547567, 47.381992]]], "type": "MultiLineString"}, "id": "305", "properties": {}, "type": "Feature"}, {"bbox": [8.513533, 47.330898, 8.514398, 47.331242], "geometry": {"coordinates": [[[8.514398, 47.330898], [8.513533, 47.331242], [8.513533, 47.331242]]], "type": "MultiLineString"}, "id": "306", "properties": {}, "type": "Feature"}, {"bbox": [8.493285, 47.399491, 8.495084, 47.399705], "geometry": {"coordinates": [[[8.495084, 47.399491], [8.495024, 47.399499], [8.494682, 47.399533], [8.494652, 47.399533], [8.494444, 47.399551], [8.494322, 47.399564], [8.494051, 47.399598], [8.493486, 47.399662], [8.493285, 47.399705]]], "type": "MultiLineString"}, "id": "307", "properties": {}, "type": "Feature"}, {"bbox": [8.483488, 47.390993, 8.483697, 47.391307], "geometry": {"coordinates": [[[8.483488, 47.390993], [8.483697, 47.391307]]], "type": "MultiLineString"}, "id": "314", "properties": {}, "type": "Feature"}, {"bbox": [8.600038, 47.360078, 8.602454, 47.360735], "geometry": {"coordinates": [[[8.600038, 47.360078], [8.602454, 47.360735]]], "type": "MultiLineString"}, "id": "323", "properties": {}, "type": "Feature"}, {"bbox": [8.501703, 47.369904, 8.501963, 47.370573], "geometry": {"coordinates": [[[8.501963, 47.370573], [8.501703, 47.369904]]], "type": "MultiLineString"}, "id": "324", "properties": {}, "type": "Feature"}, {"bbox": [8.563857, 47.409549, 8.564038, 47.409642], "geometry": {"coordinates": [[[8.563857, 47.409549], [8.564038, 47.409642]]], "type": "MultiLineString"}, "id": "327", "properties": {}, "type": "Feature"}, {"bbox": [8.514183, 47.357801, 8.514684, 47.357926], "geometry": {"coordinates": [[[8.514684, 47.357926], [8.514513, 47.357892], [8.514345, 47.357851], [8.514183, 47.357801]]], "type": "MultiLineString"}, "id": "329", "properties": {}, "type": "Feature"}, {"bbox": [8.530502, 47.40306, 8.530536, 47.403363], "geometry": {"coordinates": [[[8.530502, 47.40306], [8.530517, 47.403162], [8.530528, 47.403264], [8.530536, 47.403363]]], "type": "MultiLineString"}, "id": "330", "properties": {}, "type": "Feature"}, {"bbox": [8.500062, 47.401442, 8.501041, 47.401813], "geometry": {"coordinates": [[[8.501041, 47.401442], [8.500631, 47.401612], [8.500062, 47.401813]]], "type": "MultiLineString"}, "id": "333", "properties": {}, "type": "Feature"}, {"bbox": [8.553001, 47.404931, 8.553465, 47.405888], "geometry": {"coordinates": [[[8.553001, 47.404931], [8.553287, 47.405521], [8.553465, 47.405888]]], "type": "MultiLineString"}, "id": "334", "properties": {}, "type": "Feature"}, {"bbox": [8.541511, 47.411357, 8.542068, 47.411913], "geometry": {"coordinates": [[[8.541511, 47.411855], [8.541664, 47.411913], [8.542068, 47.411436], [8.541935, 47.411357]]], "type": "MultiLineString"}, "id": "335", "properties": {}, "type": "Feature"}, {"bbox": [8.540288, 47.411499, 8.540988, 47.41177], "geometry": {"coordinates": [[[8.540988, 47.41177], [8.540288, 47.411499]]], "type": "MultiLineString"}, "id": "336", "properties": {}, "type": "Feature"}, {"bbox": [8.555959, 47.416029, 8.556502, 47.416934], "geometry": {"coordinates": [[[8.555959, 47.416934], [8.556502, 47.416029]]], "type": "MultiLineString"}, "id": "346", "properties": {}, "type": "Feature"}, {"bbox": [8.512824, 47.366394, 8.514104, 47.367348], "geometry": {"coordinates": [[[8.514104, 47.366394], [8.513968, 47.366493], [8.512824, 47.367348]]], "type": "MultiLineString"}, "id": "350", "properties": {}, "type": "Feature"}, {"bbox": [8.526336, 47.409919, 8.526732, 47.410236], "geometry": {"coordinates": [[[8.526732, 47.410236], [8.526481, 47.410037], [8.526336, 47.409919]]], "type": "MultiLineString"}, "id": "354", "properties": {}, "type": "Feature"}, {"bbox": [8.547043, 47.418525, 8.547434, 47.418546], "geometry": {"coordinates": [[[8.547434, 47.418525], [8.547043, 47.418546]]], "type": "MultiLineString"}, "id": "355", "properties": {}, "type": "Feature"}, {"bbox": [8.49686, 47.401938, 8.496876, 47.402125], "geometry": {"coordinates": [[[8.496876, 47.402125], [8.49686, 47.401938]]], "type": "MultiLineString"}, "id": "358", "properties": {}, "type": "Feature"}, {"bbox": [8.516789, 47.333568, 8.517229, 47.333698], "geometry": {"coordinates": [[[8.517229, 47.333698], [8.516789, 47.333568]]], "type": "MultiLineString"}, "id": "366", "properties": {}, "type": "Feature"}, {"bbox": [8.510096, 47.421535, 8.51101, 47.421894], "geometry": {"coordinates": [[[8.51101, 47.421535], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "368", "properties": {}, "type": "Feature"}, {"bbox": [8.569375, 47.406552, 8.570218, 47.406948], "geometry": {"coordinates": [[[8.570218, 47.406552], [8.569375, 47.406948]]], "type": "MultiLineString"}, "id": "369", "properties": {}, "type": "Feature"}, {"bbox": [8.47656, 47.38854, 8.478052, 47.38928], "geometry": {"coordinates": [[[8.478052, 47.38854], [8.477053, 47.389038], [8.47656, 47.38928]]], "type": "MultiLineString"}, "id": "370", "properties": {}, "type": "Feature"}, {"bbox": [8.536819, 47.371786, 8.537622, 47.372287], "geometry": {"coordinates": [[[8.537622, 47.372287], [8.537621, 47.372285], [8.537617, 47.372281], [8.537613, 47.372277], [8.537608, 47.372274], [8.537603, 47.372271], [8.5375, 47.372223], [8.537401, 47.37217], [8.537307, 47.372113], [8.536819, 47.371786]]], "type": "MultiLineString"}, "id": "372", "properties": {}, "type": "Feature"}, {"bbox": [8.478276, 47.390769, 8.478633, 47.390912], "geometry": {"coordinates": [[[8.478633, 47.390769], [8.478276, 47.390912]]], "type": "MultiLineString"}, "id": "377", "properties": {}, "type": "Feature"}, {"bbox": [8.492279, 47.369976, 8.492862, 47.370245], "geometry": {"coordinates": [[[8.492862, 47.369976], [8.492279, 47.370245]]], "type": "MultiLineString"}, "id": "384", "properties": {}, "type": "Feature"}, {"bbox": [8.496499, 47.42586, 8.496825, 47.425929], "geometry": {"coordinates": [[[8.496825, 47.42586], [8.496499, 47.425929]]], "type": "MultiLineString"}, "id": "389", "properties": {}, "type": "Feature"}, {"bbox": [8.547623, 47.419173, 8.548034, 47.419589], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547752, 47.419316], [8.547889, 47.419454], [8.548034, 47.419589]]], "type": "MultiLineString"}, "id": "391", "properties": {}, "type": "Feature"}, {"bbox": [8.483352, 47.390441, 8.484391, 47.390712], "geometry": {"coordinates": [[[8.484391, 47.390441], [8.483516, 47.39068], [8.483352, 47.390712]]], "type": "MultiLineString"}, "id": "400", "properties": {}, "type": "Feature"}, {"bbox": [8.534001, 47.40054, 8.534439, 47.40067], "geometry": {"coordinates": [[[8.534001, 47.40067], [8.534313, 47.400568], [8.534354, 47.400557], [8.534397, 47.400548], [8.534439, 47.40054]]], "type": "MultiLineString"}, "id": "401", "properties": {}, "type": "Feature"}, {"bbox": [8.543566, 47.427357, 8.545146, 47.427779], "geometry": {"coordinates": [[[8.543566, 47.427357], [8.54384, 47.42744], [8.54452, 47.427529], [8.544971, 47.427644], [8.54507, 47.427755], [8.545146, 47.427779]]], "type": "MultiLineString"}, "id": "404", "properties": {}, "type": "Feature"}, {"bbox": [8.527497, 47.339785, 8.529022, 47.341281], "geometry": {"coordinates": [[[8.527497, 47.341281], [8.528207, 47.340583], [8.529022, 47.339785]]], "type": "MultiLineString"}, "id": "417", "properties": {}, "type": "Feature"}, {"bbox": [8.557364, 47.354743, 8.557998, 47.355089], "geometry": {"coordinates": [[[8.557364, 47.354743], [8.557599, 47.354844], [8.557998, 47.355089]]], "type": "MultiLineString"}, "id": "425", "properties": {}, "type": "Feature"}, {"bbox": [8.540875, 47.388426, 8.541556, 47.389231], "geometry": {"coordinates": [[[8.540875, 47.388426], [8.540913, 47.388454], [8.540946, 47.388485], [8.540975, 47.388519], [8.541, 47.388553], [8.541556, 47.389231]]], "type": "MultiLineString"}, "id": "426", "properties": {}, "type": "Feature"}, {"bbox": [8.556338, 47.376717, 8.557057, 47.377443], "geometry": {"coordinates": [[[8.557057, 47.377443], [8.556903, 47.377333], [8.556338, 47.376882], [8.556678, 47.376717], [8.556776, 47.376733]]], "type": "MultiLineString"}, "id": "427", "properties": {}, "type": "Feature"}, {"bbox": [8.525683, 47.343363, 8.526351, 47.344019], "geometry": {"coordinates": [[[8.525683, 47.344019], [8.526351, 47.343363]]], "type": "MultiLineString"}, "id": "429", "properties": {}, "type": "Feature"}, {"bbox": [8.524193, 47.410553, 8.525735, 47.411394], "geometry": {"coordinates": [[[8.525735, 47.411394], [8.525597, 47.41134], [8.524412, 47.410679], [8.524193, 47.410553]]], "type": "MultiLineString"}, "id": "431", "properties": {}, "type": "Feature"}, {"bbox": [8.531028, 47.358608, 8.532082, 47.360957], "geometry": {"coordinates": [[[8.531028, 47.360957], [8.531149, 47.360598], [8.531514, 47.35971], [8.531592, 47.359559], [8.531811, 47.359218], [8.531961, 47.358836], [8.532082, 47.358608]]], "type": "MultiLineString"}, "id": "434", "properties": {}, "type": "Feature"}, {"bbox": [8.5506, 47.38133, 8.551155, 47.38174], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.551155, 47.38133]]], "type": "MultiLineString"}, "id": "435", "properties": {}, "type": "Feature"}, {"bbox": [8.539909, 47.405038, 8.540698, 47.405542], "geometry": {"coordinates": [[[8.539909, 47.405038], [8.540698, 47.405542]]], "type": "MultiLineString"}, "id": "440", "properties": {}, "type": "Feature"}, {"bbox": [8.54144, 47.411855, 8.541511, 47.411941], "geometry": {"coordinates": [[[8.54144, 47.411941], [8.541511, 47.411855]]], "type": "MultiLineString"}, "id": "442", "properties": {}, "type": "Feature"}, {"bbox": [8.487277, 47.384351, 8.48828, 47.387268], "geometry": {"coordinates": [[[8.48828, 47.387268], [8.488231, 47.38714], [8.488094, 47.386739], [8.488057, 47.386629], [8.487534, 47.385103], [8.487428, 47.384793], [8.487277, 47.384351]]], "type": "MultiLineString"}, "id": "444", "properties": {}, "type": "Feature"}, {"bbox": [8.521707, 47.359947, 8.521981, 47.361264], "geometry": {"coordinates": [[[8.521707, 47.361264], [8.521881, 47.360429], [8.521981, 47.359947]]], "type": "MultiLineString"}, "id": "445", "properties": {}, "type": "Feature"}, {"bbox": [8.567542, 47.403817, 8.56759, 47.40429], "geometry": {"coordinates": [[[8.567555, 47.40429], [8.567566, 47.404199], [8.56759, 47.403954], [8.567542, 47.403817]]], "type": "MultiLineString"}, "id": "448", "properties": {}, "type": "Feature"}, {"bbox": [8.523767, 47.375899, 8.525344, 47.376417], "geometry": {"coordinates": [[[8.525344, 47.375899], [8.524393, 47.376198], [8.523767, 47.376417]]], "type": "MultiLineString"}, "id": "453", "properties": {}, "type": "Feature"}, {"bbox": [8.524922, 47.346887, 8.526855, 47.348099], "geometry": {"coordinates": [[[8.526855, 47.346936], [8.526698, 47.3469], [8.52668, 47.346895], [8.526661, 47.346891], [8.526641, 47.346888], [8.526621, 47.346887], [8.526601, 47.346887], [8.526582, 47.346888], [8.526562, 47.34689], [8.526543, 47.346894], [8.526524, 47.346898], [8.526506, 47.346904], [8.526489, 47.346911], [8.526472, 47.346918], [8.526457, 47.346927], [8.526443, 47.346937], [8.525547, 47.347627], [8.525318, 47.347793], [8.524922, 47.348099]]], "type": "MultiLineString"}, "id": "459", "properties": {}, "type": "Feature"}, {"bbox": [8.48439, 47.388246, 8.486462, 47.391481], "geometry": {"coordinates": [[[8.486462, 47.391481], [8.485948, 47.390667], [8.485763, 47.390374], [8.485578, 47.390087], [8.485363, 47.389754], [8.485089, 47.38933], [8.485009, 47.389206], [8.484705, 47.388734], [8.48439, 47.388246]]], "type": "MultiLineString"}, "id": "460", "properties": {}, "type": "Feature"}, {"bbox": [8.479128, 47.374269, 8.482626, 47.377507], "geometry": {"coordinates": [[[8.482626, 47.374269], [8.482092, 47.374553], [8.481873, 47.374761], [8.481768, 47.374862], [8.481563, 47.375079], [8.481355, 47.375294], [8.481142, 47.375507], [8.480517, 47.376306], [8.480418, 47.376427], [8.480288, 47.376555], [8.47942, 47.377277], [8.479128, 47.377507]]], "type": "MultiLineString"}, "id": "461", "properties": {}, "type": "Feature"}, {"bbox": [8.502116, 47.404405, 8.503534, 47.405021], "geometry": {"coordinates": [[[8.503534, 47.404405], [8.503499, 47.404427], [8.503462, 47.404446], [8.503422, 47.404462], [8.502882, 47.404656], [8.502796, 47.404688], [8.502713, 47.404723], [8.502633, 47.404762], [8.502116, 47.405021]]], "type": "MultiLineString"}, "id": "464", "properties": {}, "type": "Feature"}, {"bbox": [8.547074, 47.389451, 8.547841, 47.39216], "geometry": {"coordinates": [[[8.547074, 47.389451], [8.547156, 47.389729], [8.547273, 47.390149], [8.547566, 47.391189], [8.547807, 47.39204], [8.547841, 47.39216]]], "type": "MultiLineString"}, "id": "465", "properties": {}, "type": "Feature"}, {"bbox": [8.548657, 47.360265, 8.548781, 47.36029], "geometry": {"coordinates": [[[8.548657, 47.360265], [8.548781, 47.36029]]], "type": "MultiLineString"}, "id": "472", "properties": {}, "type": "Feature"}, {"bbox": [8.557177, 47.356786, 8.557886, 47.356962], "geometry": {"coordinates": [[[8.557177, 47.356825], [8.557279, 47.356786], [8.557886, 47.356962]]], "type": "MultiLineString"}, "id": "473", "properties": {}, "type": "Feature"}, {"bbox": [8.550783, 47.357352, 8.552444, 47.357813], "geometry": {"coordinates": [[[8.550783, 47.357352], [8.551084, 47.357442], [8.551831, 47.357646], [8.552444, 47.357813]]], "type": "MultiLineString"}, "id": "474", "properties": {}, "type": "Feature"}, {"bbox": [8.556653, 47.369314, 8.557234, 47.370009], "geometry": {"coordinates": [[[8.556653, 47.370009], [8.55672, 47.369971], [8.556987, 47.369746], [8.556988, 47.369745], [8.557069, 47.369663], [8.557146, 47.369579], [8.557219, 47.369494], [8.557229, 47.369458], [8.557234, 47.369422], [8.557234, 47.369386], [8.55723, 47.369349], [8.55722, 47.369314]]], "type": "MultiLineString"}, "id": "477", "properties": {}, "type": "Feature"}, {"bbox": [8.490312, 47.377987, 8.492903, 47.379847], "geometry": {"coordinates": [[[8.492903, 47.377987], [8.491322, 47.379122], [8.490312, 47.379847]]], "type": "MultiLineString"}, "id": "479", "properties": {}, "type": "Feature"}, {"bbox": [8.55254, 47.367488, 8.554011, 47.368056], "geometry": {"coordinates": [[[8.55254, 47.367492], [8.552654, 47.367488], [8.552746, 47.367522], [8.554011, 47.368056]]], "type": "MultiLineString"}, "id": "483", "properties": {}, "type": "Feature"}, {"bbox": [8.504205, 47.404757, 8.504978, 47.405203], "geometry": {"coordinates": [[[8.504205, 47.404757], [8.50438, 47.404859], [8.504385, 47.404861], [8.504649, 47.405022], [8.504978, 47.405203]]], "type": "MultiLineString"}, "id": "489", "properties": {}, "type": "Feature"}, {"bbox": [8.523727, 47.372396, 8.525044, 47.374258], "geometry": {"coordinates": [[[8.523727, 47.372396], [8.524098, 47.372919], [8.52424, 47.373119], [8.524358, 47.373287], [8.524699, 47.373769], [8.524764, 47.373857], [8.525044, 47.374258]]], "type": "MultiLineString"}, "id": "492", "properties": {}, "type": "Feature"}, {"bbox": [8.518982, 47.371487, 8.521146, 47.373249], "geometry": {"coordinates": [[[8.521146, 47.371487], [8.520811, 47.371761], [8.520716, 47.371853], [8.520452, 47.372067], [8.520333, 47.372156], [8.520233, 47.372231], [8.519626, 47.372725], [8.519457, 47.372845], [8.51914, 47.373117], [8.518982, 47.373249]]], "type": "MultiLineString"}, "id": "493", "properties": {}, "type": "Feature"}, {"bbox": [8.5234, 47.375383, 8.524952, 47.375895], "geometry": {"coordinates": [[[8.524952, 47.375383], [8.524763, 47.375445], [8.524221, 47.375625], [8.524029, 47.375688], [8.523838, 47.375751], [8.523415, 47.375891], [8.5234, 47.375895]]], "type": "MultiLineString"}, "id": "495", "properties": {}, "type": "Feature"}, {"bbox": [8.529963, 47.393309, 8.530489, 47.39414], "geometry": {"coordinates": [[[8.529963, 47.393309], [8.530054, 47.393449], [8.530254, 47.393769], [8.530489, 47.39414]]], "type": "MultiLineString"}, "id": "501", "properties": {}, "type": "Feature"}, {"bbox": [8.504539, 47.399887, 8.505107, 47.400335], "geometry": {"coordinates": [[[8.504539, 47.399887], [8.504654, 47.399982], [8.505107, 47.400335]]], "type": "MultiLineString"}, "id": "502", "properties": {}, "type": "Feature"}, {"bbox": [8.519822, 47.365648, 8.521554, 47.365864], "geometry": {"coordinates": [[[8.521554, 47.365673], [8.521507, 47.365663], [8.521459, 47.365655], [8.52141, 47.36565], [8.52136, 47.365648], [8.521311, 47.365648], [8.521261, 47.365651], [8.519822, 47.365864]]], "type": "MultiLineString"}, "id": "506", "properties": {}, "type": "Feature"}, {"bbox": [8.51516, 47.37231, 8.516676, 47.373169], "geometry": {"coordinates": [[[8.516676, 47.373169], [8.515732, 47.372636], [8.51516, 47.37231]]], "type": "MultiLineString"}, "id": "507", "properties": {}, "type": "Feature"}, {"bbox": [8.523685, 47.369412, 8.524749, 47.370432], "geometry": {"coordinates": [[[8.524749, 47.370432], [8.52467, 47.37034], [8.523685, 47.369412]]], "type": "MultiLineString"}, "id": "508", "properties": {}, "type": "Feature"}, {"bbox": [8.530913, 47.365285, 8.531651, 47.366257], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.531618, 47.365395], [8.530913, 47.366257]]], "type": "MultiLineString"}, "id": "509", "properties": {}, "type": "Feature"}, {"bbox": [8.516898, 47.371577, 8.517559, 47.372176], "geometry": {"coordinates": [[[8.517559, 47.371577], [8.516898, 47.372176]]], "type": "MultiLineString"}, "id": "510", "properties": {}, "type": "Feature"}, {"bbox": [8.51974, 47.363917, 8.52035, 47.366915], "geometry": {"coordinates": [[[8.520166, 47.366915], [8.52014, 47.366904], [8.520116, 47.366892], [8.520094, 47.366878], [8.520074, 47.366863], [8.520056, 47.366846], [8.520041, 47.366829], [8.520027, 47.366811], [8.520017, 47.366792], [8.520009, 47.366772], [8.519958, 47.366529], [8.519859, 47.366048], [8.519822, 47.365864], [8.51974, 47.365459], [8.519742, 47.365402], [8.519748, 47.365345], [8.519758, 47.365288], [8.519771, 47.365237], [8.519788, 47.365187], [8.519807, 47.365137], [8.52035, 47.363917]]], "type": "MultiLineString"}, "id": "511", "properties": {}, "type": "Feature"}, {"bbox": [8.525639, 47.369596, 8.528676, 47.371288], "geometry": {"coordinates": [[[8.528676, 47.369596], [8.527421, 47.370285], [8.52666, 47.370719], [8.5262, 47.370975], [8.525639, 47.371288]]], "type": "MultiLineString"}, "id": "512", "properties": {}, "type": "Feature"}, {"bbox": [8.557943, 47.358158, 8.558973, 47.359328], "geometry": {"coordinates": [[[8.557943, 47.359328], [8.558078, 47.359172], [8.558158, 47.35908], [8.558239, 47.358984], [8.55884, 47.35832], [8.558973, 47.358158]]], "type": "MultiLineString"}, "id": "519", "properties": {}, "type": "Feature"}, {"bbox": [8.545223, 47.4024, 8.54642, 47.402978], "geometry": {"coordinates": [[[8.54642, 47.4024], [8.545223, 47.402978]]], "type": "MultiLineString"}, "id": "522", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.370763, 8.528776, 47.371438], "geometry": {"coordinates": [[[8.528776, 47.371438], [8.528614, 47.371315], [8.528233, 47.370988], [8.528139, 47.370894], [8.527985, 47.370763]]], "type": "MultiLineString"}, "id": "528", "properties": {}, "type": "Feature"}, {"bbox": [8.512582, 47.372737, 8.512685, 47.372794], "geometry": {"coordinates": [[[8.512685, 47.372794], [8.512582, 47.372737]]], "type": "MultiLineString"}, "id": "537", "properties": {}, "type": "Feature"}, {"bbox": [8.511295, 47.355219, 8.512182, 47.356702], "geometry": {"coordinates": [[[8.512182, 47.355219], [8.512101, 47.355324], [8.511589, 47.356269], [8.511529, 47.356368], [8.511468, 47.356464], [8.511363, 47.356613], [8.511295, 47.356702]]], "type": "MultiLineString"}, "id": "538", "properties": {}, "type": "Feature"}, {"bbox": [8.478691, 47.386906, 8.480437, 47.388478], "geometry": {"coordinates": [[[8.480437, 47.388478], [8.479567, 47.387732], [8.479407, 47.387626], [8.478712, 47.387013], [8.478691, 47.386906]]], "type": "MultiLineString"}, "id": "539", "properties": {}, "type": "Feature"}, {"bbox": [8.499148, 47.397671, 8.502251, 47.39901], "geometry": {"coordinates": [[[8.502251, 47.397671], [8.501988, 47.397894], [8.501697, 47.3981], [8.501381, 47.398289], [8.501174, 47.398372], [8.500965, 47.398452], [8.500755, 47.39853], [8.500496, 47.398623], [8.500232, 47.398708], [8.499963, 47.398786], [8.499148, 47.39901]]], "type": "MultiLineString"}, "id": "540", "properties": {}, "type": "Feature"}, {"bbox": [8.503659, 47.359965, 8.506017, 47.361195], "geometry": {"coordinates": [[[8.506017, 47.361195], [8.505819, 47.361098], [8.504669, 47.360492], [8.503808, 47.360039], [8.503659, 47.359965]]], "type": "MultiLineString"}, "id": "542", "properties": {}, "type": "Feature"}, {"bbox": [8.5661, 47.372496, 8.566751, 47.375013], "geometry": {"coordinates": [[[8.566108, 47.372496], [8.5661, 47.372561], [8.566146, 47.372657], [8.566478, 47.3733], [8.566583, 47.373952], [8.56675, 47.374877], [8.566751, 47.374905], [8.566748, 47.374932], [8.566742, 47.37496], [8.566732, 47.374986], [8.56672, 47.375013]]], "type": "MultiLineString"}, "id": "548", "properties": {}, "type": "Feature"}, {"bbox": [8.563229, 47.410891, 8.563293, 47.411969], "geometry": {"coordinates": [[[8.563293, 47.410891], [8.56326, 47.41105], [8.563236, 47.411677], [8.563229, 47.411969]]], "type": "MultiLineString"}, "id": "551", "properties": {}, "type": "Feature"}, {"bbox": [8.532213, 47.389125, 8.532243, 47.389141], "geometry": {"coordinates": [[[8.532243, 47.389125], [8.532213, 47.389141]]], "type": "MultiLineString"}, "id": "569", "properties": {}, "type": "Feature"}, {"bbox": [8.5585, 47.362637, 8.559331, 47.363196], "geometry": {"coordinates": [[[8.5585, 47.362637], [8.55866, 47.362729], [8.559331, 47.363196]]], "type": "MultiLineString"}, "id": "580", "properties": {}, "type": "Feature"}, {"bbox": [8.526732, 47.410236, 8.52708, 47.410511], "geometry": {"coordinates": [[[8.52708, 47.410511], [8.526732, 47.410236]]], "type": "MultiLineString"}, "id": "589", "properties": {}, "type": "Feature"}, {"bbox": [8.499966, 47.40488, 8.500189, 47.405175], "geometry": {"coordinates": [[[8.499966, 47.40488], [8.500189, 47.405175]]], "type": "MultiLineString"}, "id": "590", "properties": {}, "type": "Feature"}, {"bbox": [8.53678, 47.428751, 8.538328, 47.429995], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.53799, 47.429823], [8.538055, 47.42987], [8.538134, 47.429927], [8.538328, 47.429995]]], "type": "MultiLineString"}, "id": "596", "properties": {}, "type": "Feature"}, {"bbox": [8.572016, 47.352662, 8.572472, 47.354016], "geometry": {"coordinates": [[[8.572472, 47.352662], [8.572315, 47.352716], [8.572266, 47.352752], [8.572236, 47.352796], [8.572226, 47.35283], [8.572016, 47.353797], [8.572052, 47.354016]]], "type": "MultiLineString"}, "id": "599", "properties": {}, "type": "Feature"}, {"bbox": [8.514757, 47.333941, 8.515282, 47.335173], "geometry": {"coordinates": [[[8.515282, 47.333941], [8.515173, 47.334078], [8.51508, 47.33422], [8.515005, 47.334367], [8.514948, 47.334518], [8.514757, 47.335173]]], "type": "MultiLineString"}, "id": "601", "properties": {}, "type": "Feature"}, {"bbox": [8.541439, 47.376023, 8.541858, 47.376998], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541725, 47.37608], [8.541472, 47.376874], [8.541439, 47.376998]]], "type": "MultiLineString"}, "id": "602", "properties": {}, "type": "Feature"}, {"bbox": [8.547567, 47.381608, 8.548182, 47.381992], "geometry": {"coordinates": [[[8.547567, 47.381992], [8.547619, 47.381925], [8.547984, 47.381669], [8.548182, 47.381608]]], "type": "MultiLineString"}, "id": "605", "properties": {}, "type": "Feature"}, {"bbox": [8.557185, 47.361941, 8.5585, 47.362637], "geometry": {"coordinates": [[[8.557185, 47.361941], [8.557304, 47.362022], [8.558048, 47.36241], [8.558304, 47.362543], [8.5585, 47.362637]]], "type": "MultiLineString"}, "id": "607", "properties": {}, "type": "Feature"}, {"bbox": [8.507403, 47.355768, 8.508368, 47.356936], "geometry": {"coordinates": [[[8.508368, 47.355768], [8.507403, 47.356936]]], "type": "MultiLineString"}, "id": "608", "properties": {}, "type": "Feature"}, {"bbox": [8.526126, 47.342613, 8.52757, 47.343328], "geometry": {"coordinates": [[[8.52757, 47.343328], [8.526801, 47.342947], [8.526126, 47.342613]]], "type": "MultiLineString"}, "id": "609", "properties": {}, "type": "Feature"}, {"bbox": [8.53189, 47.344495, 8.532923, 47.347226], "geometry": {"coordinates": [[[8.53189, 47.347226], [8.53205, 47.346573], [8.532232, 47.346008], [8.532384, 47.345592], [8.532624, 47.344877], [8.532655, 47.344809], [8.532696, 47.344743], [8.532744, 47.34468], [8.532923, 47.344495]]], "type": "MultiLineString"}, "id": "612", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.38174, 8.5506, 47.38367], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.55027, 47.382], [8.54998, 47.382261], [8.549846, 47.382398], [8.549573, 47.382762], [8.549217, 47.383299], [8.549121, 47.383399], [8.549042, 47.38367]]], "type": "MultiLineString"}, "id": "613", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506785, 47.426789], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506785, 47.426789]]], "type": "MultiLineString"}, "id": "618", "properties": {}, "type": "Feature"}, {"bbox": [8.484176, 47.389754, 8.485363, 47.390118], "geometry": {"coordinates": [[[8.485363, 47.389754], [8.484989, 47.389869], [8.484176, 47.390118]]], "type": "MultiLineString"}, "id": "622", "properties": {}, "type": "Feature"}, {"bbox": [8.499433, 47.401222, 8.500062, 47.401813], "geometry": {"coordinates": [[[8.499433, 47.401222], [8.499599, 47.40133], [8.499922, 47.401723], [8.500062, 47.401813]]], "type": "MultiLineString"}, "id": "633", "properties": {}, "type": "Feature"}, {"bbox": [8.554875, 47.357332, 8.55549, 47.357973], "geometry": {"coordinates": [[[8.554875, 47.357332], [8.555049, 47.357335], [8.55549, 47.357466], [8.555177, 47.357973]]], "type": "MultiLineString"}, "id": "635", "properties": {}, "type": "Feature"}, {"bbox": [8.558712, 47.410815, 8.558777, 47.412297], "geometry": {"coordinates": [[[8.558777, 47.410815], [8.558762, 47.410965], [8.558742, 47.411599], [8.558712, 47.412297]]], "type": "MultiLineString"}, "id": "636", "properties": {}, "type": "Feature"}, {"bbox": [8.539934, 47.387153, 8.540585, 47.387294], "geometry": {"coordinates": [[[8.539934, 47.387153], [8.540585, 47.387294]]], "type": "MultiLineString"}, "id": "638", "properties": {}, "type": "Feature"}, {"bbox": [8.487079, 47.370921, 8.488128, 47.371705], "geometry": {"coordinates": [[[8.488128, 47.371705], [8.487816, 47.371471], [8.487686, 47.371367], [8.487079, 47.370921]]], "type": "MultiLineString"}, "id": "639", "properties": {}, "type": "Feature"}, {"bbox": [8.560341, 47.368346, 8.561937, 47.369839], "geometry": {"coordinates": [[[8.560341, 47.368346], [8.561466, 47.369412], [8.561654, 47.369585], [8.561748, 47.36967], [8.561842, 47.369755], [8.561937, 47.369839]]], "type": "MultiLineString"}, "id": "640", "properties": {}, "type": "Feature"}, {"bbox": [8.550472, 47.362341, 8.552096, 47.363051], "geometry": {"coordinates": [[[8.550472, 47.362341], [8.550592, 47.362367], [8.550943, 47.362457], [8.551219, 47.362542], [8.551531, 47.362635], [8.552096, 47.362805], [8.551928, 47.363051]]], "type": "MultiLineString"}, "id": "641", "properties": {}, "type": "Feature"}, {"bbox": [8.547657, 47.361832, 8.550582, 47.362214], "geometry": {"coordinates": [[[8.547657, 47.361832], [8.549131, 47.362005], [8.54933, 47.362012], [8.550425, 47.362193], [8.550582, 47.362214]]], "type": "MultiLineString"}, "id": "642", "properties": {}, "type": "Feature"}, {"bbox": [8.556286, 47.360911, 8.558063, 47.362976], "geometry": {"coordinates": [[[8.556286, 47.362976], [8.556361, 47.36289], [8.557185, 47.361941], [8.558063, 47.360911]]], "type": "MultiLineString"}, "id": "643", "properties": {}, "type": "Feature"}, {"bbox": [8.563229, 47.410767, 8.567693, 47.412117], "geometry": {"coordinates": [[[8.563229, 47.411969], [8.563434, 47.412021], [8.563645, 47.412061], [8.56386, 47.412088], [8.564078, 47.412103], [8.564297, 47.412105], [8.565307, 47.412095], [8.565474, 47.41209], [8.565642, 47.412095], [8.565808, 47.412107], [8.566095, 47.412117], [8.566381, 47.412113], [8.566667, 47.412094], [8.56687, 47.412075], [8.567069, 47.412044], [8.567264, 47.412], [8.567451, 47.411945], [8.567481, 47.411928], [8.567509, 47.41191], [8.567534, 47.41189], [8.567557, 47.411869], [8.567577, 47.411847], [8.567594, 47.411823], [8.567607, 47.411799], [8.567618, 47.411774], [8.567625, 47.411748], [8.567629, 47.411722], [8.567675, 47.410852], [8.567693, 47.410767]]], "type": "MultiLineString"}, "id": "645", "properties": {}, "type": "Feature"}, {"bbox": [8.560851, 47.372814, 8.561521, 47.373509], "geometry": {"coordinates": [[[8.560851, 47.372814], [8.561125, 47.373097], [8.561345, 47.373369], [8.561521, 47.373509]]], "type": "MultiLineString"}, "id": "646", "properties": {}, "type": "Feature"}, {"bbox": [8.553865, 47.380618, 8.554916, 47.381445], "geometry": {"coordinates": [[[8.553865, 47.380618], [8.554059, 47.380719], [8.55424, 47.380829], [8.554408, 47.38095], [8.55456, 47.381079], [8.554697, 47.381216], [8.554916, 47.381445]]], "type": "MultiLineString"}, "id": "647", "properties": {}, "type": "Feature"}, {"bbox": [8.490312, 47.379847, 8.491491, 47.381083], "geometry": {"coordinates": [[[8.491491, 47.381083], [8.491429, 47.381024], [8.49135, 47.380943], [8.491308, 47.380899], [8.490312, 47.379847]]], "type": "MultiLineString"}, "id": "648", "properties": {}, "type": "Feature"}, {"bbox": [8.551305, 47.356633, 8.554432, 47.357753], "geometry": {"coordinates": [[[8.551305, 47.356633], [8.552167, 47.356965], [8.552894, 47.357245], [8.553059, 47.357308], [8.554155, 47.357668], [8.554432, 47.357753]]], "type": "MultiLineString"}, "id": "649", "properties": {}, "type": "Feature"}, {"bbox": [8.546211, 47.389203, 8.547074, 47.389451], "geometry": {"coordinates": [[[8.546211, 47.389203], [8.546212, 47.389204], [8.546357, 47.389271], [8.547074, 47.389451]]], "type": "MultiLineString"}, "id": "651", "properties": {}, "type": "Feature"}, {"bbox": [8.554782, 47.369208, 8.554799, 47.369316], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554782, 47.369208]]], "type": "MultiLineString"}, "id": "652", "properties": {}, "type": "Feature"}, {"bbox": [8.558663, 47.376017, 8.55913, 47.37618], "geometry": {"coordinates": [[[8.558663, 47.37618], [8.55913, 47.376017]]], "type": "MultiLineString"}, "id": "653", "properties": {}, "type": "Feature"}, {"bbox": [8.559783, 47.371063, 8.560449, 47.371864], "geometry": {"coordinates": [[[8.560449, 47.371063], [8.560444, 47.371122], [8.560432, 47.371181], [8.560412, 47.371239], [8.560386, 47.371295], [8.560353, 47.37135], [8.560313, 47.371403], [8.560267, 47.371454], [8.560215, 47.371502], [8.559834, 47.371804], [8.559783, 47.371864]]], "type": "MultiLineString"}, "id": "654", "properties": {}, "type": "Feature"}, {"bbox": [8.544957, 47.393793, 8.546042, 47.393841], "geometry": {"coordinates": [[[8.544957, 47.393795], [8.54514, 47.393793], [8.546042, 47.393841]]], "type": "MultiLineString"}, "id": "655", "properties": {}, "type": "Feature"}, {"bbox": [8.483109, 47.384348, 8.484522, 47.384716], "geometry": {"coordinates": [[[8.484522, 47.384348], [8.484099, 47.384476], [8.483397, 47.384688], [8.483109, 47.384716]]], "type": "MultiLineString"}, "id": "656", "properties": {}, "type": "Feature"}, {"bbox": [8.556149, 47.356008, 8.557177, 47.356825], "geometry": {"coordinates": [[[8.556149, 47.356008], [8.557177, 47.356825]]], "type": "MultiLineString"}, "id": "657", "properties": {}, "type": "Feature"}, {"bbox": [8.525348, 47.369921, 8.527285, 47.371237], "geometry": {"coordinates": [[[8.527285, 47.371237], [8.52666, 47.370719], [8.526283, 47.370422], [8.525348, 47.369921]]], "type": "MultiLineString"}, "id": "660", "properties": {}, "type": "Feature"}, {"bbox": [8.545186, 47.395072, 8.54631, 47.395399], "geometry": {"coordinates": [[[8.545186, 47.395072], [8.545485, 47.395134], [8.54631, 47.395399]]], "type": "MultiLineString"}, "id": "661", "properties": {}, "type": "Feature"}, {"bbox": [8.542967, 47.384539, 8.543959, 47.385302], "geometry": {"coordinates": [[[8.542967, 47.384539], [8.543174, 47.384651], [8.543959, 47.385302]]], "type": "MultiLineString"}, "id": "664", "properties": {}, "type": "Feature"}, {"bbox": [8.493619, 47.371031, 8.495609, 47.371701], "geometry": {"coordinates": [[[8.493619, 47.371701], [8.494847, 47.371263], [8.495609, 47.371031]]], "type": "MultiLineString"}, "id": "665", "properties": {}, "type": "Feature"}, {"bbox": [8.55186, 47.355873, 8.555227, 47.356963], "geometry": {"coordinates": [[[8.55186, 47.355873], [8.552767, 47.356163], [8.553545, 47.356417], [8.555227, 47.356963]]], "type": "MultiLineString"}, "id": "666", "properties": {}, "type": "Feature"}, {"bbox": [8.528776, 47.371438, 8.529531, 47.372033], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529376, 47.371946], [8.528809, 47.371464], [8.528776, 47.371438]]], "type": "MultiLineString"}, "id": "668", "properties": {}, "type": "Feature"}, {"bbox": [8.528423, 47.332432, 8.528949, 47.334912], "geometry": {"coordinates": [[[8.52889, 47.334912], [8.528949, 47.334792], [8.528916, 47.333733], [8.528858, 47.333397], [8.528756, 47.333067], [8.52861, 47.332744], [8.528423, 47.332432]]], "type": "MultiLineString"}, "id": "671", "properties": {}, "type": "Feature"}, {"bbox": [8.52641, 47.379667, 8.526414, 47.37967], "geometry": {"coordinates": [[[8.52641, 47.379667], [8.526414, 47.37967]]], "type": "MultiLineString"}, "id": "676", "properties": {}, "type": "Feature"}, {"bbox": [8.486393, 47.38397, 8.486691, 47.384528], "geometry": {"coordinates": [[[8.486691, 47.384528], [8.486573, 47.384347], [8.486474, 47.38416], [8.486393, 47.38397]]], "type": "MultiLineString"}, "id": "684", "properties": {}, "type": "Feature"}, {"bbox": [8.530117, 47.364452, 8.531651, 47.365285], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.531274, 47.365021], [8.531114, 47.364929], [8.530715, 47.364701], [8.530521, 47.364613], [8.530321, 47.36453], [8.530117, 47.364452]]], "type": "MultiLineString"}, "id": "685", "properties": {}, "type": "Feature"}, {"bbox": [8.55533, 47.35655, 8.555998, 47.356984], "geometry": {"coordinates": [[[8.55533, 47.356855], [8.555752, 47.356984], [8.555784, 47.356972], [8.555998, 47.356727], [8.555621, 47.35655]]], "type": "MultiLineString"}, "id": "690", "properties": {}, "type": "Feature"}, {"bbox": [8.533999, 47.388531, 8.535524, 47.388869], "geometry": {"coordinates": [[[8.535524, 47.388869], [8.535304, 47.388777], [8.535073, 47.388699], [8.534833, 47.388635], [8.534585, 47.388585], [8.534332, 47.38855], [8.534075, 47.388531], [8.533999, 47.388537]]], "type": "MultiLineString"}, "id": "691", "properties": {}, "type": "Feature"}, {"bbox": [8.530691, 47.414446, 8.53216, 47.414645], "geometry": {"coordinates": [[[8.53216, 47.414446], [8.532043, 47.414472], [8.530754, 47.414645], [8.530691, 47.414639]]], "type": "MultiLineString"}, "id": "692", "properties": {}, "type": "Feature"}, {"bbox": [8.520808, 47.423852, 8.522802, 47.423885], "geometry": {"coordinates": [[[8.522802, 47.423885], [8.520808, 47.423852]]], "type": "MultiLineString"}, "id": "693", "properties": {}, "type": "Feature"}, {"bbox": [8.517229, 47.333698, 8.518101, 47.333969], "geometry": {"coordinates": [[[8.518101, 47.333969], [8.51805, 47.333946], [8.517978, 47.333919], [8.517903, 47.333896], [8.517229, 47.333698]]], "type": "MultiLineString"}, "id": "696", "properties": {}, "type": "Feature"}, {"bbox": [8.497789, 47.383079, 8.498495, 47.383707], "geometry": {"coordinates": [[[8.498495, 47.383707], [8.497789, 47.383079]]], "type": "MultiLineString"}, "id": "699", "properties": {}, "type": "Feature"}, {"bbox": [8.516477, 47.331849, 8.516708, 47.332763], "geometry": {"coordinates": [[[8.516545, 47.332763], [8.516506, 47.332604], [8.516483, 47.332444], [8.516477, 47.332284], [8.51648, 47.332244], [8.516486, 47.332204], [8.516498, 47.332165], [8.516514, 47.332126], [8.516535, 47.332089], [8.516708, 47.331849]]], "type": "MultiLineString"}, "id": "701", "properties": {}, "type": "Feature"}, {"bbox": [8.488432, 47.374427, 8.489052, 47.374745], "geometry": {"coordinates": [[[8.489052, 47.374745], [8.488989, 47.374726], [8.488928, 47.374705], [8.488868, 47.374681], [8.488722, 47.374597], [8.488577, 47.374512], [8.488432, 47.374427]]], "type": "MultiLineString"}, "id": "702", "properties": {}, "type": "Feature"}, {"bbox": [8.536307, 47.390067, 8.537743, 47.390189], "geometry": {"coordinates": [[[8.536307, 47.390067], [8.536436, 47.390068], [8.537279, 47.390084], [8.537483, 47.390087], [8.537515, 47.390091], [8.537546, 47.390097], [8.537577, 47.390104], [8.537606, 47.390113], [8.537634, 47.390124], [8.537661, 47.390137], [8.537685, 47.390151], [8.537743, 47.390189]]], "type": "MultiLineString"}, "id": "703", "properties": {}, "type": "Feature"}, {"bbox": [8.525941, 47.35907, 8.526904, 47.35914], "geometry": {"coordinates": [[[8.526904, 47.35914], [8.526697, 47.359131], [8.525941, 47.35907]]], "type": "MultiLineString"}, "id": "704", "properties": {}, "type": "Feature"}, {"bbox": [8.562198, 47.377381, 8.563508, 47.377668], "geometry": {"coordinates": [[[8.562198, 47.377668], [8.56231, 47.377652], [8.562644, 47.377571], [8.563508, 47.377381]]], "type": "MultiLineString"}, "id": "705", "properties": {}, "type": "Feature"}, {"bbox": [8.555215, 47.364439, 8.556806, 47.365283], "geometry": {"coordinates": [[[8.555215, 47.364439], [8.555385, 47.364532], [8.556023, 47.364906], [8.556806, 47.365283]]], "type": "MultiLineString"}, "id": "706", "properties": {}, "type": "Feature"}, {"bbox": [8.477477, 47.387626, 8.479407, 47.38808], "geometry": {"coordinates": [[[8.479407, 47.387626], [8.478528, 47.387833], [8.477477, 47.38808]]], "type": "MultiLineString"}, "id": "707", "properties": {}, "type": "Feature"}, {"bbox": [8.566202, 47.364451, 8.566327, 47.364594], "geometry": {"coordinates": [[[8.566202, 47.364451], [8.566247, 47.364498], [8.566289, 47.364545], [8.566327, 47.364594]]], "type": "MultiLineString"}, "id": "709", "properties": {}, "type": "Feature"}, {"bbox": [8.492347, 47.37874, 8.494449, 47.380252], "geometry": {"coordinates": [[[8.494449, 47.37874], [8.494241, 47.378878], [8.493241, 47.379541], [8.493156, 47.379624], [8.492595, 47.380079], [8.492347, 47.380252]]], "type": "MultiLineString"}, "id": "710", "properties": {}, "type": "Feature"}, {"bbox": [8.563881, 47.361548, 8.565303, 47.362569], "geometry": {"coordinates": [[[8.563881, 47.362569], [8.565303, 47.361548]]], "type": "MultiLineString"}, "id": "711", "properties": {}, "type": "Feature"}, {"bbox": [8.554256, 47.410731, 8.55431, 47.412223], "geometry": {"coordinates": [[[8.554307, 47.410731], [8.55431, 47.410837], [8.554256, 47.412223]]], "type": "MultiLineString"}, "id": "717", "properties": {}, "type": "Feature"}, {"bbox": [8.520033, 47.388192, 8.521309, 47.389505], "geometry": {"coordinates": [[[8.520033, 47.388192], [8.520267, 47.388431], [8.520525, 47.388696], [8.520761, 47.388939], [8.521309, 47.389505]]], "type": "MultiLineString"}, "id": "718", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.412507, 8.544166, 47.413241], "geometry": {"coordinates": [[[8.544166, 47.413241], [8.543567, 47.413063], [8.54302, 47.412872], [8.541977, 47.412507]]], "type": "MultiLineString"}, "id": "720", "properties": {}, "type": "Feature"}, {"bbox": [8.520286, 47.370186, 8.521077, 47.371133], "geometry": {"coordinates": [[[8.521077, 47.370186], [8.520286, 47.371133]]], "type": "MultiLineString"}, "id": "723", "properties": {}, "type": "Feature"}, {"bbox": [8.568616, 47.350594, 8.569194, 47.350784], "geometry": {"coordinates": [[[8.568616, 47.350594], [8.568814, 47.35065], [8.569006, 47.350714], [8.569194, 47.350784]]], "type": "MultiLineString"}, "id": "725", "properties": {}, "type": "Feature"}, {"bbox": [8.480845, 47.384508, 8.481337, 47.385146], "geometry": {"coordinates": [[[8.481337, 47.385146], [8.480845, 47.384508]]], "type": "MultiLineString"}, "id": "726", "properties": {}, "type": "Feature"}, {"bbox": [8.482175, 47.390674, 8.483352, 47.390976], "geometry": {"coordinates": [[[8.483352, 47.390712], [8.483344, 47.390706], [8.483335, 47.3907], [8.483326, 47.390695], [8.483316, 47.39069], [8.483305, 47.390686], [8.483294, 47.390682], [8.483283, 47.390679], [8.483271, 47.390677], [8.483259, 47.390675], [8.483247, 47.390674], [8.483234, 47.390674], [8.483222, 47.390675], [8.48321, 47.390676], [8.482175, 47.390976]]], "type": "MultiLineString"}, "id": "729", "properties": {}, "type": "Feature"}, {"bbox": [8.525982, 47.371447, 8.527246, 47.371836], "geometry": {"coordinates": [[[8.527246, 47.371447], [8.527162, 47.371468], [8.526347, 47.371668], [8.526293, 47.371679], [8.526241, 47.371693], [8.526191, 47.371711], [8.526143, 47.371731], [8.526098, 47.371753], [8.526056, 47.371779], [8.526017, 47.371806], [8.525982, 47.371836]]], "type": "MultiLineString"}, "id": "730", "properties": {}, "type": "Feature"}, {"bbox": [8.531922, 47.391815, 8.533001, 47.392389], "geometry": {"coordinates": [[[8.531922, 47.391815], [8.532031, 47.391884], [8.533001, 47.392389]]], "type": "MultiLineString"}, "id": "732", "properties": {}, "type": "Feature"}, {"bbox": [8.528464, 47.414882, 8.529007, 47.415282], "geometry": {"coordinates": [[[8.528464, 47.415282], [8.528749, 47.414927], [8.528751, 47.414925], [8.528753, 47.414923], [8.528755, 47.414922], [8.528758, 47.41492], [8.528761, 47.414919], [8.528764, 47.414917], [8.528767, 47.414916], [8.528771, 47.414915], [8.528774, 47.414915], [8.528778, 47.414914], [8.528781, 47.414914], [8.529007, 47.414882]]], "type": "MultiLineString"}, "id": "735", "properties": {}, "type": "Feature"}, {"bbox": [8.589764, 47.356929, 8.590637, 47.358145], "geometry": {"coordinates": [[[8.590305, 47.356929], [8.590637, 47.357287], [8.590381, 47.357483], [8.590149, 47.357692], [8.589943, 47.357913], [8.589764, 47.358145]]], "type": "MultiLineString"}, "id": "740", "properties": {}, "type": "Feature"}, {"bbox": [8.481263, 47.390976, 8.482175, 47.39124], "geometry": {"coordinates": [[[8.482175, 47.390976], [8.481871, 47.391064], [8.481567, 47.391152], [8.481263, 47.39124]]], "type": "MultiLineString"}, "id": "743", "properties": {}, "type": "Feature"}, {"bbox": [8.484983, 47.384351, 8.487277, 47.385041], "geometry": {"coordinates": [[[8.487277, 47.384351], [8.486691, 47.384528], [8.485921, 47.384759], [8.485797, 47.384797], [8.484983, 47.385041]]], "type": "MultiLineString"}, "id": "746", "properties": {}, "type": "Feature"}, {"bbox": [8.567035, 47.365003, 8.567195, 47.365082], "geometry": {"coordinates": [[[8.567035, 47.365003], [8.567195, 47.365082]]], "type": "MultiLineString"}, "id": "747", "properties": {}, "type": "Feature"}, {"bbox": [8.571877, 47.414277, 8.57251, 47.414841], "geometry": {"coordinates": [[[8.571877, 47.414841], [8.572278, 47.414447], [8.57251, 47.414277]]], "type": "MultiLineString"}, "id": "748", "properties": {}, "type": "Feature"}, {"bbox": [8.521559, 47.393825, 8.52209, 47.394513], "geometry": {"coordinates": [[[8.521559, 47.393825], [8.521585, 47.393837], [8.521609, 47.393851], [8.521631, 47.393866], [8.521651, 47.393882], [8.521669, 47.393899], [8.521685, 47.393918], [8.521739, 47.393989], [8.52209, 47.394513]]], "type": "MultiLineString"}, "id": "753", "properties": {}, "type": "Feature"}, {"bbox": [8.554732, 47.369316, 8.554799, 47.369458], "geometry": {"coordinates": [[[8.554732, 47.369458], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "756", "properties": {}, "type": "Feature"}, {"bbox": [8.5546, 47.36923, 8.554799, 47.369316], "geometry": {"coordinates": [[[8.5546, 47.36923], [8.554633, 47.369237], [8.554665, 47.369246], [8.554695, 47.369256], [8.554724, 47.369269], [8.554751, 47.369283], [8.554776, 47.369299], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "757", "properties": {}, "type": "Feature"}, {"bbox": [8.556068, 47.366921, 8.558577, 47.369212], "geometry": {"coordinates": [[[8.556068, 47.369212], [8.556152, 47.369132], [8.556942, 47.368411], [8.558577, 47.366921]]], "type": "MultiLineString"}, "id": "758", "properties": {}, "type": "Feature"}, {"bbox": [8.551671, 47.422621, 8.553424, 47.423445], "geometry": {"coordinates": [[[8.551671, 47.423445], [8.553424, 47.422621]]], "type": "MultiLineString"}, "id": "777", "properties": {}, "type": "Feature"}, {"bbox": [8.532199, 47.369163, 8.532539, 47.369381], "geometry": {"coordinates": [[[8.532539, 47.369163], [8.532199, 47.369381]]], "type": "MultiLineString"}, "id": "779", "properties": {}, "type": "Feature"}, {"bbox": [8.558742, 47.411599, 8.563236, 47.411677], "geometry": {"coordinates": [[[8.558742, 47.411599], [8.559536, 47.411611], [8.561094, 47.411648], [8.562091, 47.411659], [8.563236, 47.411677]]], "type": "MultiLineString"}, "id": "780", "properties": {}, "type": "Feature"}, {"bbox": [8.484957, 47.374859, 8.485489, 47.375374], "geometry": {"coordinates": [[[8.485489, 47.375374], [8.484964, 47.374866], [8.484957, 47.374859]]], "type": "MultiLineString"}, "id": "785", "properties": {}, "type": "Feature"}, {"bbox": [8.549383, 47.419564, 8.550647, 47.419959], "geometry": {"coordinates": [[[8.549383, 47.419959], [8.550099, 47.419805], [8.550202, 47.419779], [8.550302, 47.419747], [8.550396, 47.419709], [8.550486, 47.419665], [8.55057, 47.419617], [8.550647, 47.419564]]], "type": "MultiLineString"}, "id": "787", "properties": {}, "type": "Feature"}, {"bbox": [8.507596, 47.355402, 8.510184, 47.356394], "geometry": {"coordinates": [[[8.510184, 47.356394], [8.509721, 47.356235], [8.509332, 47.356102], [8.50874, 47.355901], [8.508368, 47.355768], [8.508046, 47.355609], [8.507596, 47.355402]]], "type": "MultiLineString"}, "id": "789", "properties": {}, "type": "Feature"}, {"bbox": [8.554808, 47.379853, 8.555652, 47.381113], "geometry": {"coordinates": [[[8.554808, 47.379853], [8.554852, 47.379879], [8.554893, 47.379908], [8.554929, 47.379939], [8.554962, 47.379972], [8.554989, 47.380007], [8.555652, 47.381113]]], "type": "MultiLineString"}, "id": "790", "properties": {}, "type": "Feature"}, {"bbox": [8.517664, 47.363128, 8.518006, 47.363567], "geometry": {"coordinates": [[[8.518006, 47.363128], [8.517886, 47.363268], [8.517664, 47.363567]]], "type": "MultiLineString"}, "id": "793", "properties": {}, "type": "Feature"}, {"bbox": [8.492145, 47.367183, 8.492485, 47.367528], "geometry": {"coordinates": [[[8.492145, 47.367528], [8.492222, 47.367492], [8.492485, 47.367183]]], "type": "MultiLineString"}, "id": "799", "properties": {}, "type": "Feature"}, {"bbox": [8.547614, 47.416214, 8.549361, 47.416656], "geometry": {"coordinates": [[[8.547614, 47.416656], [8.547766, 47.416643], [8.548847, 47.416338], [8.549361, 47.416214]]], "type": "MultiLineString"}, "id": "803", "properties": {}, "type": "Feature"}, {"bbox": [8.538561, 47.410355, 8.539997, 47.412071], "geometry": {"coordinates": [[[8.539997, 47.410355], [8.539678, 47.410745], [8.539347, 47.41116], [8.538561, 47.412071]]], "type": "MultiLineString"}, "id": "807", "properties": {}, "type": "Feature"}, {"bbox": [8.530536, 47.403367, 8.533609, 47.40446], "geometry": {"coordinates": [[[8.533609, 47.40446], [8.532858, 47.404185], [8.5319, 47.403856], [8.53113, 47.40358], [8.530536, 47.403367]]], "type": "MultiLineString"}, "id": "811", "properties": {}, "type": "Feature"}, {"bbox": [8.562347, 47.366586, 8.56442, 47.368714], "geometry": {"coordinates": [[[8.562347, 47.368714], [8.563638, 47.367395], [8.56442, 47.366586]]], "type": "MultiLineString"}, "id": "812", "properties": {}, "type": "Feature"}, {"bbox": [8.549212, 47.425964, 8.549316, 47.42642], "geometry": {"coordinates": [[[8.549212, 47.42642], [8.549271, 47.426312], [8.549287, 47.426284], [8.5493, 47.426256], [8.549309, 47.426227], [8.549314, 47.426197], [8.549316, 47.426167], [8.549314, 47.426138], [8.549311, 47.42608], [8.54931, 47.426022], [8.549308, 47.425964]]], "type": "MultiLineString"}, "id": "814", "properties": {}, "type": "Feature"}, {"bbox": [8.528857, 47.374371, 8.530608, 47.375605], "geometry": {"coordinates": [[[8.528857, 47.374371], [8.529284, 47.374667], [8.529875, 47.375081], [8.530608, 47.375605]]], "type": "MultiLineString"}, "id": "822", "properties": {}, "type": "Feature"}, {"bbox": [8.522802, 47.423885, 8.5243, 47.42391], "geometry": {"coordinates": [[[8.5243, 47.42391], [8.522802, 47.423885]]], "type": "MultiLineString"}, "id": "825", "properties": {}, "type": "Feature"}, {"bbox": [8.584088, 47.35131, 8.584614, 47.351433], "geometry": {"coordinates": [[[8.584088, 47.351311], [8.584121, 47.35131], [8.584154, 47.35131], [8.584186, 47.351313], [8.584218, 47.351318], [8.584355, 47.351348], [8.58438, 47.351355], [8.584614, 47.351433]]], "type": "MultiLineString"}, "id": "832", "properties": {}, "type": "Feature"}, {"bbox": [8.557486, 47.370118, 8.558206, 47.370924], "geometry": {"coordinates": [[[8.557486, 47.370924], [8.557969, 47.370488], [8.558206, 47.370118]]], "type": "MultiLineString"}, "id": "836", "properties": {}, "type": "Feature"}, {"bbox": [8.528512, 47.360572, 8.528522, 47.361265], "geometry": {"coordinates": [[[8.528512, 47.360572], [8.528522, 47.361265]]], "type": "MultiLineString"}, "id": "837", "properties": {}, "type": "Feature"}, {"bbox": [8.533943, 47.38981, 8.535852, 47.391318], "geometry": {"coordinates": [[[8.535852, 47.38981], [8.534727, 47.390692], [8.533943, 47.391318]]], "type": "MultiLineString"}, "id": "846", "properties": {}, "type": "Feature"}, {"bbox": [8.533103, 47.363583, 8.535188, 47.36659], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535135, 47.363684], [8.535082, 47.363785], [8.535027, 47.363885], [8.534573, 47.364529], [8.534527, 47.364595], [8.534165, 47.365108], [8.533842, 47.365568], [8.53352, 47.366026], [8.533269, 47.366384], [8.533219, 47.366454], [8.533163, 47.366523], [8.533103, 47.36659]]], "type": "MultiLineString"}, "id": "847", "properties": {}, "type": "Feature"}, {"bbox": [8.512673, 47.331466, 8.512958, 47.331585], "geometry": {"coordinates": [[[8.512958, 47.331466], [8.512673, 47.331585]]], "type": "MultiLineString"}, "id": "856", "properties": {}, "type": "Feature"}, {"bbox": [8.504827, 47.381345, 8.506931, 47.382256], "geometry": {"coordinates": [[[8.506931, 47.381345], [8.504827, 47.382256]]], "type": "MultiLineString"}, "id": "857", "properties": {}, "type": "Feature"}, {"bbox": [8.531061, 47.338395, 8.532094, 47.338607], "geometry": {"coordinates": [[[8.531061, 47.338607], [8.532094, 47.338395]]], "type": "MultiLineString"}, "id": "858", "properties": {}, "type": "Feature"}, {"bbox": [8.489007, 47.369946, 8.489435, 47.37029], "geometry": {"coordinates": [[[8.489007, 47.37029], [8.489008, 47.370289], [8.489435, 47.369946]]], "type": "MultiLineString"}, "id": "871", "properties": {}, "type": "Feature"}, {"bbox": [8.548893, 47.421536, 8.549208, 47.421902], "geometry": {"coordinates": [[[8.548902, 47.421536], [8.548893, 47.421612], [8.549208, 47.421902]]], "type": "MultiLineString"}, "id": "873", "properties": {}, "type": "Feature"}, {"bbox": [8.565623, 47.362013, 8.566359, 47.362763], "geometry": {"coordinates": [[[8.565623, 47.362763], [8.566293, 47.362092], [8.566359, 47.362013]]], "type": "MultiLineString"}, "id": "891", "properties": {}, "type": "Feature"}, {"bbox": [8.536921, 47.38002, 8.537304, 47.380419], "geometry": {"coordinates": [[[8.536921, 47.38002], [8.537054, 47.380249], [8.537304, 47.380419]]], "type": "MultiLineString"}, "id": "892", "properties": {}, "type": "Feature"}, {"bbox": [8.535345, 47.424121, 8.535414, 47.425352], "geometry": {"coordinates": [[[8.535345, 47.424121], [8.535383, 47.425243], [8.535414, 47.425352]]], "type": "MultiLineString"}, "id": "896", "properties": {}, "type": "Feature"}, {"bbox": [8.517548, 47.336228, 8.517726, 47.33638], "geometry": {"coordinates": [[[8.517548, 47.33638], [8.517573, 47.336353], [8.517601, 47.336326], [8.51763, 47.3363], [8.51766, 47.336275], [8.517692, 47.336251], [8.517726, 47.336228]]], "type": "MultiLineString"}, "id": "897", "properties": {}, "type": "Feature"}, {"bbox": [8.531688, 47.380561, 8.534438, 47.382431], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.533528, 47.381114], [8.533006, 47.381495], [8.532947, 47.381536], [8.532312, 47.381989], [8.531762, 47.382376], [8.531688, 47.382431]]], "type": "MultiLineString"}, "id": "899", "properties": {}, "type": "Feature"}, {"bbox": [8.572271, 47.409729, 8.572311, 47.410623], "geometry": {"coordinates": [[[8.572284, 47.409729], [8.572286, 47.409842], [8.572271, 47.410046], [8.572276, 47.410246], [8.572311, 47.410623]]], "type": "MultiLineString"}, "id": "904", "properties": {}, "type": "Feature"}, {"bbox": [8.568764, 47.36261, 8.569293, 47.363255], "geometry": {"coordinates": [[[8.568828, 47.363255], [8.568816, 47.363247], [8.568805, 47.363239], [8.568795, 47.36323], [8.568786, 47.36322], [8.568779, 47.36321], [8.568773, 47.363199], [8.568769, 47.363188], [8.568766, 47.363177], [8.568764, 47.363166], [8.568764, 47.363154], [8.568765, 47.363143], [8.568768, 47.363132], [8.568772, 47.363121], [8.568778, 47.36311], [8.568945, 47.362941], [8.569117, 47.362774], [8.569293, 47.36261]]], "type": "MultiLineString"}, "id": "905", "properties": {}, "type": "Feature"}, {"bbox": [8.557257, 47.38289, 8.557376, 47.38314], "geometry": {"coordinates": [[[8.557257, 47.38289], [8.557285, 47.382976], [8.557324, 47.383059], [8.557376, 47.38314]]], "type": "MultiLineString"}, "id": "906", "properties": {}, "type": "Feature"}, {"bbox": [8.560821, 47.362378, 8.561395, 47.36286], "geometry": {"coordinates": [[[8.560821, 47.36286], [8.560834, 47.362831], [8.560851, 47.362802], [8.560873, 47.362774], [8.560898, 47.362748], [8.561395, 47.362378]]], "type": "MultiLineString"}, "id": "908", "properties": {}, "type": "Feature"}, {"bbox": [8.503272, 47.40355, 8.503738, 47.403802], "geometry": {"coordinates": [[[8.503272, 47.403802], [8.503738, 47.40355]]], "type": "MultiLineString"}, "id": "921", "properties": {}, "type": "Feature"}, {"bbox": [8.543574, 47.409694, 8.543882, 47.410452], "geometry": {"coordinates": [[[8.543839, 47.409694], [8.543882, 47.409795], [8.543866, 47.409884], [8.543577, 47.410398], [8.543574, 47.410452]]], "type": "MultiLineString"}, "id": "925", "properties": {}, "type": "Feature"}, {"bbox": [8.517491, 47.363567, 8.517664, 47.363803], "geometry": {"coordinates": [[[8.517664, 47.363567], [8.517625, 47.363619], [8.517491, 47.363803]]], "type": "MultiLineString"}, "id": "926", "properties": {}, "type": "Feature"}, {"bbox": [8.550168, 47.426713, 8.555078, 47.427592], "geometry": {"coordinates": [[[8.555078, 47.426713], [8.554544, 47.427045], [8.554421, 47.427106], [8.554277, 47.42714], [8.554082, 47.427163], [8.551566, 47.427443], [8.550814, 47.427521], [8.550168, 47.427592]]], "type": "MultiLineString"}, "id": "928", "properties": {}, "type": "Feature"}, {"bbox": [8.507302, 47.413655, 8.509638, 47.414681], "geometry": {"coordinates": [[[8.509638, 47.413655], [8.509427, 47.413747], [8.507302, 47.414681]]], "type": "MultiLineString"}, "id": "929", "properties": {}, "type": "Feature"}, {"bbox": [8.544298, 47.410653, 8.544599, 47.410737], "geometry": {"coordinates": [[[8.544599, 47.410737], [8.544298, 47.410653]]], "type": "MultiLineString"}, "id": "930", "properties": {}, "type": "Feature"}, {"bbox": [8.546011, 47.410199, 8.546182, 47.410301], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546158, 47.410205], [8.546135, 47.410213], [8.546113, 47.410222], [8.546092, 47.410232], [8.546072, 47.410244], [8.546054, 47.410257], [8.546038, 47.410271], [8.546024, 47.410285], [8.546011, 47.410301]]], "type": "MultiLineString"}, "id": "932", "properties": {}, "type": "Feature"}, {"bbox": [8.543265, 47.410452, 8.543574, 47.410932], "geometry": {"coordinates": [[[8.543574, 47.410452], [8.543265, 47.410932]]], "type": "MultiLineString"}, "id": "935", "properties": {}, "type": "Feature"}, {"bbox": [8.540682, 47.400729, 8.542393, 47.40251], "geometry": {"coordinates": [[[8.542393, 47.400729], [8.542244, 47.400856], [8.54082, 47.402363], [8.540682, 47.40251]]], "type": "MultiLineString"}, "id": "936", "properties": {}, "type": "Feature"}, {"bbox": [8.50874, 47.354405, 8.509778, 47.355901], "geometry": {"coordinates": [[[8.509778, 47.354405], [8.50874, 47.355901]]], "type": "MultiLineString"}, "id": "939", "properties": {}, "type": "Feature"}, {"bbox": [8.530746, 47.36659, 8.533103, 47.368496], "geometry": {"coordinates": [[[8.533103, 47.36659], [8.533066, 47.366626], [8.533028, 47.366662], [8.532988, 47.366698], [8.531706, 47.367726], [8.530746, 47.368496]]], "type": "MultiLineString"}, "id": "940", "properties": {}, "type": "Feature"}, {"bbox": [8.525684, 47.343042, 8.52713, 47.343726], "geometry": {"coordinates": [[[8.52713, 47.343726], [8.526351, 47.343363], [8.525824, 47.343117], [8.525684, 47.343042]]], "type": "MultiLineString"}, "id": "941", "properties": {}, "type": "Feature"}, {"bbox": [8.529934, 47.344289, 8.531407, 47.348227], "geometry": {"coordinates": [[[8.529934, 47.344289], [8.531148, 47.344771], [8.531194, 47.3448], [8.531237, 47.344831], [8.531275, 47.344865], [8.531309, 47.344901], [8.531338, 47.344938], [8.531363, 47.344978], [8.531382, 47.345018], [8.531396, 47.34506], [8.531404, 47.345102], [8.531407, 47.345145], [8.531405, 47.345188], [8.531348, 47.345739], [8.531341, 47.345783], [8.531329, 47.345827], [8.531312, 47.34587], [8.530789, 47.346915], [8.530687, 47.347048], [8.530612, 47.34719], [8.530557, 47.347336], [8.530522, 47.347484], [8.530507, 47.347635], [8.530513, 47.347785], [8.530538, 47.347935], [8.530584, 47.348083], [8.53065, 47.348227]]], "type": "MultiLineString"}, "id": "944", "properties": {}, "type": "Feature"}, {"bbox": [8.557672, 47.356384, 8.558668, 47.356681], "geometry": {"coordinates": [[[8.557672, 47.356384], [8.558144, 47.356478], [8.558668, 47.356681]]], "type": "MultiLineString"}, "id": "945", "properties": {}, "type": "Feature"}, {"bbox": [8.481386, 47.41575, 8.482636, 47.415751], "geometry": {"coordinates": [[[8.481386, 47.415751], [8.482636, 47.41575]]], "type": "MultiLineString"}, "id": "948", "properties": {}, "type": "Feature"}, {"bbox": [8.522768, 47.423885, 8.522802, 47.42484], "geometry": {"coordinates": [[[8.522802, 47.423885], [8.522777, 47.424339], [8.52278, 47.424518], [8.522797, 47.424741], [8.522768, 47.42484]]], "type": "MultiLineString"}, "id": "952", "properties": {}, "type": "Feature"}, {"bbox": [8.511174, 47.416306, 8.514701, 47.417887], "geometry": {"coordinates": [[[8.514701, 47.416306], [8.514571, 47.416351], [8.513916, 47.416577], [8.513738, 47.41664], [8.513703, 47.416654], [8.513627, 47.416684], [8.512904, 47.416992], [8.512204, 47.417324], [8.511531, 47.41768], [8.511293, 47.417819], [8.511174, 47.417887]]], "type": "MultiLineString"}, "id": "953", "properties": {}, "type": "Feature"}, {"bbox": [8.545363, 47.38221, 8.546759, 47.382799], "geometry": {"coordinates": [[[8.545363, 47.38221], [8.545545, 47.382263], [8.546672, 47.382773], [8.546759, 47.382799]]], "type": "MultiLineString"}, "id": "955", "properties": {}, "type": "Feature"}, {"bbox": [8.530117, 47.361003, 8.531227, 47.364452], "geometry": {"coordinates": [[[8.530117, 47.364452], [8.530231, 47.364235], [8.530784, 47.36303], [8.530862, 47.362796], [8.531046, 47.36241], [8.531187, 47.361258], [8.531227, 47.361003]]], "type": "MultiLineString"}, "id": "961", "properties": {}, "type": "Feature"}, {"bbox": [8.521703, 47.361263, 8.522624, 47.361363], "geometry": {"coordinates": [[[8.522624, 47.361363], [8.522456, 47.361335], [8.521707, 47.361264], [8.521703, 47.361263]]], "type": "MultiLineString"}, "id": "962", "properties": {}, "type": "Feature"}, {"bbox": [8.592582, 47.400398, 8.593068, 47.401203], "geometry": {"coordinates": [[[8.592582, 47.400398], [8.592819, 47.40079], [8.593068, 47.401203]]], "type": "MultiLineString"}, "id": "964", "properties": {}, "type": "Feature"}, {"bbox": [8.505698, 47.400031, 8.506515, 47.401236], "geometry": {"coordinates": [[[8.506515, 47.400031], [8.506492, 47.400145], [8.506455, 47.400258], [8.506404, 47.400367], [8.50634, 47.400474], [8.505698, 47.401236]]], "type": "MultiLineString"}, "id": "976", "properties": {}, "type": "Feature"}, {"bbox": [8.475195, 47.38547, 8.475615, 47.386039], "geometry": {"coordinates": [[[8.475615, 47.386039], [8.475195, 47.38547]]], "type": "MultiLineString"}, "id": "979", "properties": {}, "type": "Feature"}, {"bbox": [8.541044, 47.375903, 8.541858, 47.376023], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541702, 47.376], [8.541044, 47.375903]]], "type": "MultiLineString"}, "id": "981", "properties": {}, "type": "Feature"}, {"bbox": [8.540966, 47.375891, 8.541044, 47.375903], "geometry": {"coordinates": [[[8.540966, 47.375891], [8.541044, 47.375903]]], "type": "MultiLineString"}, "id": "982", "properties": {}, "type": "Feature"}, {"bbox": [8.539483, 47.411614, 8.540205, 47.41242], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.539561, 47.412395], [8.539483, 47.41242]]], "type": "MultiLineString"}, "id": "983", "properties": {}, "type": "Feature"}, {"bbox": [8.530026, 47.415885, 8.531102, 47.416081], "geometry": {"coordinates": [[[8.531102, 47.416081], [8.53094, 47.416041], [8.530775, 47.41601], [8.530607, 47.415987], [8.530412, 47.415958], [8.530218, 47.415924], [8.530026, 47.415885]]], "type": "MultiLineString"}, "id": "984", "properties": {}, "type": "Feature"}, {"bbox": [8.508697, 47.353972, 8.511018, 47.354879], "geometry": {"coordinates": [[[8.511018, 47.354879], [8.510551, 47.354709], [8.509778, 47.354405], [8.509421, 47.354262], [8.508697, 47.353972]]], "type": "MultiLineString"}, "id": "986", "properties": {}, "type": "Feature"}, {"bbox": [8.569188, 47.363517, 8.56995, 47.364461], "geometry": {"coordinates": [[[8.56995, 47.363517], [8.569805, 47.363698], [8.569357, 47.364207], [8.569192, 47.364396], [8.569188, 47.364461]]], "type": "MultiLineString"}, "id": "987", "properties": {}, "type": "Feature"}, {"bbox": [8.519931, 47.366211, 8.522268, 47.368547], "geometry": {"coordinates": [[[8.522268, 47.366211], [8.521825, 47.366659], [8.52133, 47.367153], [8.520828, 47.367643], [8.520017, 47.368449], [8.519931, 47.368547]]], "type": "MultiLineString"}, "id": "992", "properties": {}, "type": "Feature"}, {"bbox": [8.521423, 47.36816, 8.523944, 47.370337], "geometry": {"coordinates": [[[8.523944, 47.36816], [8.523829, 47.368277], [8.523134, 47.368875], [8.522956, 47.369021], [8.522113, 47.369745], [8.522089, 47.369766], [8.521423, 47.370337]]], "type": "MultiLineString"}, "id": "993", "properties": {}, "type": "Feature"}, {"bbox": [8.554885, 47.358026, 8.555368, 47.358977], "geometry": {"coordinates": [[[8.554885, 47.358977], [8.555368, 47.358026]]], "type": "MultiLineString"}, "id": "1006", "properties": {}, "type": "Feature"}, {"bbox": [8.542915, 47.395803, 8.543185, 47.396407], "geometry": {"coordinates": [[[8.542915, 47.395803], [8.54301, 47.396003], [8.543101, 47.396205], [8.543185, 47.396407]]], "type": "MultiLineString"}, "id": "1012", "properties": {}, "type": "Feature"}, {"bbox": [8.526656, 47.375407, 8.526852, 47.375548], "geometry": {"coordinates": [[[8.526656, 47.375407], [8.526852, 47.375548]]], "type": "MultiLineString"}, "id": "1015", "properties": {}, "type": "Feature"}, {"bbox": [8.54065, 47.411941, 8.54144, 47.412876], "geometry": {"coordinates": [[[8.54144, 47.411941], [8.54065, 47.412876]]], "type": "MultiLineString"}, "id": "1017", "properties": {}, "type": "Feature"}, {"bbox": [8.511616, 47.367745, 8.512293, 47.36826], "geometry": {"coordinates": [[[8.512293, 47.367745], [8.511731, 47.368167], [8.511616, 47.36826]]], "type": "MultiLineString"}, "id": "1020", "properties": {}, "type": "Feature"}, {"bbox": [8.535345, 47.424118, 8.537544, 47.424763], "geometry": {"coordinates": [[[8.537544, 47.424763], [8.537502, 47.424745], [8.537458, 47.42473], [8.537411, 47.424717], [8.537364, 47.424707], [8.537315, 47.4247], [8.53685, 47.424606], [8.536401, 47.424482], [8.535971, 47.42433], [8.535564, 47.42415], [8.535539, 47.42414], [8.535513, 47.424132], [8.535486, 47.424126], [8.535458, 47.424122], [8.53543, 47.424119], [8.535402, 47.424118], [8.535373, 47.424119], [8.535345, 47.424121]]], "type": "MultiLineString"}, "id": "1021", "properties": {}, "type": "Feature"}, {"bbox": [8.549661, 47.420677, 8.551688, 47.421178], "geometry": {"coordinates": [[[8.549661, 47.421178], [8.549919, 47.421067], [8.550014, 47.421031], [8.550126, 47.420992], [8.55026, 47.42095], [8.550329, 47.420932], [8.550515, 47.420886], [8.550703, 47.420846], [8.550895, 47.420814], [8.551334, 47.420739], [8.551483, 47.420714], [8.551688, 47.420677]]], "type": "MultiLineString"}, "id": "1022", "properties": {}, "type": "Feature"}, {"bbox": [8.527258, 47.383899, 8.527574, 47.38434], "geometry": {"coordinates": [[[8.527258, 47.383899], [8.527574, 47.38434]]], "type": "MultiLineString"}, "id": "1023", "properties": {}, "type": "Feature"}, {"bbox": [8.528323, 47.345226, 8.529425, 47.34559], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529329, 47.345522], [8.528323, 47.345226]]], "type": "MultiLineString"}, "id": "1024", "properties": {}, "type": "Feature"}, {"bbox": [8.555739, 47.417888, 8.559885, 47.419583], "geometry": {"coordinates": [[[8.555739, 47.419583], [8.559716, 47.418007], [8.559885, 47.417888]]], "type": "MultiLineString"}, "id": "1025", "properties": {}, "type": "Feature"}, {"bbox": [8.542281, 47.428645, 8.543575, 47.430787], "geometry": {"coordinates": [[[8.543575, 47.428645], [8.543551, 47.428871], [8.54354, 47.428962], [8.543518, 47.429052], [8.543485, 47.429141], [8.54344, 47.429227], [8.543385, 47.429311], [8.543319, 47.429391], [8.542281, 47.430787]]], "type": "MultiLineString"}, "id": "1026", "properties": {}, "type": "Feature"}, {"bbox": [8.555247, 47.366822, 8.555925, 47.367142], "geometry": {"coordinates": [[[8.555247, 47.366822], [8.555925, 47.367142]]], "type": "MultiLineString"}, "id": "1027", "properties": {}, "type": "Feature"}, {"bbox": [8.494599, 47.38032, 8.496467, 47.381329], "geometry": {"coordinates": [[[8.496467, 47.38032], [8.495984, 47.380581], [8.495566, 47.380807], [8.494599, 47.381329]]], "type": "MultiLineString"}, "id": "1033", "properties": {}, "type": "Feature"}, {"bbox": [8.56651, 47.349993, 8.567888, 47.351767], "geometry": {"coordinates": [[[8.56651, 47.351767], [8.566658, 47.351547], [8.567525, 47.350409], [8.567608, 47.350337], [8.567702, 47.350234], [8.567888, 47.349993]]], "type": "MultiLineString"}, "id": "1037", "properties": {}, "type": "Feature"}, {"bbox": [8.565735, 47.375271, 8.56596, 47.376006], "geometry": {"coordinates": [[[8.56596, 47.375271], [8.565876, 47.375411], [8.565811, 47.375556], [8.565765, 47.375704], [8.56574, 47.375855], [8.565735, 47.376006]]], "type": "MultiLineString"}, "id": "1040", "properties": {}, "type": "Feature"}, {"bbox": [8.553353, 47.375425, 8.555241, 47.376838], "geometry": {"coordinates": [[[8.553353, 47.376], [8.553431, 47.375998], [8.553507, 47.375991], [8.553583, 47.375979], [8.553656, 47.375962], [8.553726, 47.375941], [8.554813, 47.375459], [8.554835, 47.37545], [8.554858, 47.375442], [8.554882, 47.375436], [8.554906, 47.375431], [8.554931, 47.375427], [8.554956, 47.375425], [8.554982, 47.375425], [8.555007, 47.375425], [8.555033, 47.375428], [8.555057, 47.375432], [8.555082, 47.375437], [8.555105, 47.375444], [8.555241, 47.375505], [8.555209, 47.375659], [8.554767, 47.376621], [8.554694, 47.376838]]], "type": "MultiLineString"}, "id": "1041", "properties": {}, "type": "Feature"}, {"bbox": [8.551075, 47.360198, 8.551388, 47.360864], "geometry": {"coordinates": [[[8.551075, 47.360864], [8.551125, 47.360787], [8.551388, 47.360198]]], "type": "MultiLineString"}, "id": "1048", "properties": {}, "type": "Feature"}, {"bbox": [8.528632, 47.384609, 8.529992, 47.385838], "geometry": {"coordinates": [[[8.529992, 47.385838], [8.529163, 47.385322], [8.529132, 47.385297], [8.529105, 47.38527], [8.52908, 47.385242], [8.528632, 47.384609]]], "type": "MultiLineString"}, "id": "1050", "properties": {}, "type": "Feature"}, {"bbox": [8.513959, 47.415398, 8.514571, 47.416351], "geometry": {"coordinates": [[[8.513959, 47.415398], [8.51403, 47.415521], [8.514499, 47.416244], [8.514571, 47.416351]]], "type": "MultiLineString"}, "id": "1052", "properties": {}, "type": "Feature"}, {"bbox": [8.520989, 47.375322, 8.522526, 47.375704], "geometry": {"coordinates": [[[8.522526, 47.375322], [8.522445, 47.375356], [8.522032, 47.375446], [8.520989, 47.375704]]], "type": "MultiLineString"}, "id": "1055", "properties": {}, "type": "Feature"}, {"bbox": [8.482418, 47.396148, 8.482972, 47.397161], "geometry": {"coordinates": [[[8.482972, 47.397161], [8.482418, 47.396148]]], "type": "MultiLineString"}, "id": "1060", "properties": {}, "type": "Feature"}, {"bbox": [8.514003, 47.376666, 8.515084, 47.377537], "geometry": {"coordinates": [[[8.515084, 47.377537], [8.514518, 47.37708], [8.514003, 47.376666]]], "type": "MultiLineString"}, "id": "1063", "properties": {}, "type": "Feature"}, {"bbox": [8.52267, 47.409321, 8.524372, 47.410336], "geometry": {"coordinates": [[[8.524372, 47.410336], [8.524218, 47.410243], [8.5232, 47.409638], [8.52267, 47.409321]]], "type": "MultiLineString"}, "id": "1068", "properties": {}, "type": "Feature"}, {"bbox": [8.482626, 47.374014, 8.48351, 47.374269], "geometry": {"coordinates": [[[8.48351, 47.374137], [8.483451, 47.374103], [8.483389, 47.374072], [8.483325, 47.374042], [8.483303, 47.374034], [8.48328, 47.374027], [8.483257, 47.374022], [8.483233, 47.374018], [8.483209, 47.374015], [8.483184, 47.374014], [8.483159, 47.374014], [8.483135, 47.374015], [8.48311, 47.374018], [8.483087, 47.374022], [8.483063, 47.374028], [8.483041, 47.374035], [8.483019, 47.374043], [8.482884, 47.374115], [8.482752, 47.37419], [8.482626, 47.374269]]], "type": "MultiLineString"}, "id": "1070", "properties": {}, "type": "Feature"}, {"bbox": [8.517987, 47.394777, 8.518096, 47.3953], "geometry": {"coordinates": [[[8.518004, 47.394777], [8.517987, 47.394827], [8.518047, 47.394962], [8.518071, 47.395111], [8.518096, 47.3953]]], "type": "MultiLineString"}, "id": "1072", "properties": {}, "type": "Feature"}, {"bbox": [8.477807, 47.385252, 8.478095, 47.38607], "geometry": {"coordinates": [[[8.478095, 47.38607], [8.477995, 47.385923], [8.477901, 47.385704], [8.477838, 47.385479], [8.477807, 47.385252]]], "type": "MultiLineString"}, "id": "1074", "properties": {}, "type": "Feature"}, {"bbox": [8.5575, 47.378283, 8.559203, 47.378671], "geometry": {"coordinates": [[[8.5575, 47.378283], [8.558372, 47.3785], [8.559203, 47.378671]]], "type": "MultiLineString"}, "id": "1075", "properties": {}, "type": "Feature"}, {"bbox": [8.550897, 47.382737, 8.552622, 47.38363], "geometry": {"coordinates": [[[8.550897, 47.382737], [8.551583, 47.383095], [8.551705, 47.383159], [8.552622, 47.38363]]], "type": "MultiLineString"}, "id": "1076", "properties": {}, "type": "Feature"}, {"bbox": [8.523922, 47.375016, 8.52469, 47.375525], "geometry": {"coordinates": [[[8.52469, 47.375016], [8.523922, 47.375525]]], "type": "MultiLineString"}, "id": "1078", "properties": {}, "type": "Feature"}, {"bbox": [8.547581, 47.420251, 8.548902, 47.421536], "geometry": {"coordinates": [[[8.547581, 47.420251], [8.547728, 47.420406], [8.54836, 47.421022], [8.548902, 47.421536]]], "type": "MultiLineString"}, "id": "1080", "properties": {}, "type": "Feature"}, {"bbox": [8.527482, 47.394139, 8.528258, 47.39521], "geometry": {"coordinates": [[[8.527482, 47.394139], [8.52786, 47.394662], [8.528258, 47.39521]]], "type": "MultiLineString"}, "id": "1085", "properties": {}, "type": "Feature"}, {"bbox": [8.535894, 47.381449, 8.537605, 47.382513], "geometry": {"coordinates": [[[8.535894, 47.381449], [8.536669, 47.381932], [8.537605, 47.382513]]], "type": "MultiLineString"}, "id": "1086", "properties": {}, "type": "Feature"}, {"bbox": [8.536003, 47.386995, 8.537108, 47.387225], "geometry": {"coordinates": [[[8.536003, 47.386995], [8.536541, 47.38711], [8.537108, 47.387225]]], "type": "MultiLineString"}, "id": "1088", "properties": {}, "type": "Feature"}, {"bbox": [8.520994, 47.372345, 8.523499, 47.374148], "geometry": {"coordinates": [[[8.523499, 47.372345], [8.521597, 47.373703], [8.520994, 47.374148]]], "type": "MultiLineString"}, "id": "1089", "properties": {}, "type": "Feature"}, {"bbox": [8.525698, 47.411752, 8.527174, 47.413879], "geometry": {"coordinates": [[[8.525698, 47.411752], [8.526098, 47.412286], [8.526776, 47.413187], [8.526986, 47.413468], [8.527064, 47.413589], [8.527174, 47.413879]]], "type": "MultiLineString"}, "id": "1092", "properties": {}, "type": "Feature"}, {"bbox": [8.535374, 47.369261, 8.536085, 47.369697], "geometry": {"coordinates": [[[8.536085, 47.369261], [8.536014, 47.369302], [8.535374, 47.369697]]], "type": "MultiLineString"}, "id": "1096", "properties": {}, "type": "Feature"}, {"bbox": [8.562358, 47.380667, 8.56371, 47.381057], "geometry": {"coordinates": [[[8.562358, 47.380667], [8.562515, 47.380717], [8.562918, 47.380841], [8.56371, 47.381057]]], "type": "MultiLineString"}, "id": "1097", "properties": {}, "type": "Feature"}, {"bbox": [8.578494, 47.403617, 8.581729, 47.404705], "geometry": {"coordinates": [[[8.578494, 47.403617], [8.578494, 47.403943], [8.578711, 47.404009], [8.581369, 47.404617], [8.581729, 47.404705]]], "type": "MultiLineString"}, "id": "1100", "properties": {}, "type": "Feature"}, {"bbox": [8.568467, 47.405642, 8.568774, 47.40598], "geometry": {"coordinates": [[[8.568467, 47.405642], [8.568495, 47.405659], [8.568524, 47.405681], [8.568551, 47.405704], [8.568574, 47.405729], [8.568631, 47.405799], [8.568774, 47.40598]]], "type": "MultiLineString"}, "id": "1101", "properties": {}, "type": "Feature"}, {"bbox": [8.53998, 47.374972, 8.54007, 47.375057], "geometry": {"coordinates": [[[8.54007, 47.375057], [8.540056, 47.375052], [8.540044, 47.375045], [8.540032, 47.375038], [8.540021, 47.37503], [8.540011, 47.375021], [8.540003, 47.375012], [8.539995, 47.375002], [8.539989, 47.374992], [8.539984, 47.374982], [8.53998, 47.374972]]], "type": "MultiLineString"}, "id": "1104", "properties": {}, "type": "Feature"}, {"bbox": [8.519733, 47.36851, 8.521813, 47.368676], "geometry": {"coordinates": [[[8.521813, 47.368676], [8.521522, 47.368641], [8.521225, 47.368636], [8.521074, 47.368635], [8.520923, 47.368633], [8.520439, 47.368627], [8.520309, 47.368613], [8.520099, 47.368578], [8.519931, 47.368547], [8.519733, 47.36851]]], "type": "MultiLineString"}, "id": "1105", "properties": {}, "type": "Feature"}, {"bbox": [8.513392, 47.370986, 8.514814, 47.372176], "geometry": {"coordinates": [[[8.514814, 47.370986], [8.514261, 47.37144], [8.513392, 47.372176]]], "type": "MultiLineString"}, "id": "1106", "properties": {}, "type": "Feature"}, {"bbox": [8.521143, 47.369141, 8.522113, 47.369745], "geometry": {"coordinates": [[[8.522113, 47.369745], [8.521143, 47.369141]]], "type": "MultiLineString"}, "id": "1107", "properties": {}, "type": "Feature"}, {"bbox": [8.530337, 47.368496, 8.530746, 47.368834], "geometry": {"coordinates": [[[8.530746, 47.368496], [8.530337, 47.368834]]], "type": "MultiLineString"}, "id": "1108", "properties": {}, "type": "Feature"}, {"bbox": [8.568533, 47.359352, 8.568775, 47.36001], "geometry": {"coordinates": [[[8.568533, 47.359352], [8.56858, 47.35947], [8.568717, 47.359872], [8.568775, 47.36001]]], "type": "MultiLineString"}, "id": "1109", "properties": {}, "type": "Feature"}, {"bbox": [8.530084, 47.338607, 8.531061, 47.338807], "geometry": {"coordinates": [[[8.530084, 47.338807], [8.530488, 47.338724], [8.531061, 47.338607]]], "type": "MultiLineString"}, "id": "1111", "properties": {}, "type": "Feature"}, {"bbox": [8.556003, 47.353955, 8.557283, 47.355056], "geometry": {"coordinates": [[[8.556003, 47.355056], [8.556504, 47.354626], [8.557283, 47.353955]]], "type": "MultiLineString"}, "id": "1112", "properties": {}, "type": "Feature"}, {"bbox": [8.513688, 47.369757, 8.514383, 47.370351], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.51427, 47.370215], [8.513689, 47.369758], [8.513688, 47.369757]]], "type": "MultiLineString"}, "id": "1131", "properties": {}, "type": "Feature"}, {"bbox": [8.576936, 47.40192, 8.577688, 47.402251], "geometry": {"coordinates": [[[8.576936, 47.402251], [8.577001, 47.40222], [8.577688, 47.40192]]], "type": "MultiLineString"}, "id": "1137", "properties": {}, "type": "Feature"}, {"bbox": [8.529365, 47.393244, 8.530239, 47.393515], "geometry": {"coordinates": [[[8.530239, 47.393244], [8.530182, 47.393253], [8.530125, 47.393263], [8.530069, 47.393273], [8.529963, 47.393309], [8.529365, 47.393515]]], "type": "MultiLineString"}, "id": "1144", "properties": {}, "type": "Feature"}, {"bbox": [8.533937, 47.364095, 8.536229, 47.367236], "geometry": {"coordinates": [[[8.536229, 47.364095], [8.53522, 47.365467], [8.534536, 47.366402], [8.534024, 47.367114], [8.533937, 47.367236]]], "type": "MultiLineString"}, "id": "1153", "properties": {}, "type": "Feature"}, {"bbox": [8.560826, 47.367457, 8.560918, 47.367568], "geometry": {"coordinates": [[[8.560826, 47.367568], [8.560918, 47.367457]]], "type": "MultiLineString"}, "id": "1154", "properties": {}, "type": "Feature"}, {"bbox": [8.563287, 47.353523, 8.564137, 47.354323], "geometry": {"coordinates": [[[8.563287, 47.354323], [8.5634, 47.354201], [8.563545, 47.354061], [8.564137, 47.353523]]], "type": "MultiLineString"}, "id": "1155", "properties": {}, "type": "Feature"}, {"bbox": [8.56651, 47.351421, 8.568398, 47.351767], "geometry": {"coordinates": [[[8.56651, 47.351767], [8.568051, 47.351504], [8.56817, 47.351484], [8.568286, 47.351456], [8.568398, 47.351421]]], "type": "MultiLineString"}, "id": "1156", "properties": {}, "type": "Feature"}, {"bbox": [8.522545, 47.396988, 8.522748, 47.398004], "geometry": {"coordinates": [[[8.522748, 47.396988], [8.522714, 47.397073], [8.522689, 47.397237], [8.522691, 47.397353], [8.52268, 47.397498], [8.522637, 47.397727], [8.522588, 47.397872], [8.522545, 47.398004]]], "type": "MultiLineString"}, "id": "1157", "properties": {}, "type": "Feature"}, {"bbox": [8.577064, 47.406606, 8.578532, 47.407297], "geometry": {"coordinates": [[[8.578532, 47.406606], [8.578381, 47.406688], [8.577064, 47.407297]]], "type": "MultiLineString"}, "id": "1158", "properties": {}, "type": "Feature"}, {"bbox": [8.521597, 47.373703, 8.522278, 47.374352], "geometry": {"coordinates": [[[8.521597, 47.373703], [8.522213, 47.374107], [8.52224, 47.374138], [8.522278, 47.374352]]], "type": "MultiLineString"}, "id": "1159", "properties": {}, "type": "Feature"}, {"bbox": [8.552737, 47.388649, 8.552825, 47.389011], "geometry": {"coordinates": [[[8.552737, 47.388649], [8.552745, 47.388861], [8.552823, 47.389008], [8.552825, 47.389011]]], "type": "MultiLineString"}, "id": "1163", "properties": {}, "type": "Feature"}, {"bbox": [8.551292, 47.392985, 8.551987, 47.393174], "geometry": {"coordinates": [[[8.551292, 47.392985], [8.551361, 47.393006], [8.551423, 47.393019], [8.551486, 47.393032], [8.551509, 47.393038], [8.551865, 47.393146], [8.551987, 47.393174]]], "type": "MultiLineString"}, "id": "1164", "properties": {}, "type": "Feature"}, {"bbox": [8.510744, 47.375893, 8.512736, 47.37728], "geometry": {"coordinates": [[[8.510744, 47.375893], [8.511624, 47.376506], [8.512635, 47.37721], [8.512736, 47.37728]]], "type": "MultiLineString"}, "id": "1168", "properties": {}, "type": "Feature"}, {"bbox": [8.547062, 47.427492, 8.550168, 47.427694], "geometry": {"coordinates": [[[8.550168, 47.427592], [8.549383, 47.427673], [8.549309, 47.427679], [8.549236, 47.427683], [8.549162, 47.427685], [8.548884, 47.427694], [8.548605, 47.427687], [8.548329, 47.427665], [8.547885, 47.427613], [8.547444, 47.427552], [8.547062, 47.427492]]], "type": "MultiLineString"}, "id": "1169", "properties": {}, "type": "Feature"}, {"bbox": [8.524731, 47.33821, 8.524808, 47.339016], "geometry": {"coordinates": [[[8.524731, 47.339016], [8.524748, 47.33884], [8.524808, 47.33846], [8.524804, 47.33821]]], "type": "MultiLineString"}, "id": "1171", "properties": {}, "type": "Feature"}, {"bbox": [8.513689, 47.367116, 8.516523, 47.369758], "geometry": {"coordinates": [[[8.516523, 47.367116], [8.516517, 47.367127], [8.516175, 47.367736], [8.516094, 47.367855], [8.516047, 47.367936], [8.515963, 47.368], [8.515764, 47.368157], [8.515428, 47.368405], [8.514776, 47.368914], [8.514664, 47.369006], [8.513804, 47.36967], [8.513689, 47.369758]]], "type": "MultiLineString"}, "id": "1177", "properties": {}, "type": "Feature"}, {"bbox": [8.540597, 47.430381, 8.542281, 47.430787], "geometry": {"coordinates": [[[8.542281, 47.430787], [8.541844, 47.430719], [8.541416, 47.430629], [8.540999, 47.430516], [8.540597, 47.430381]]], "type": "MultiLineString"}, "id": "1178", "properties": {}, "type": "Feature"}, {"bbox": [8.572304, 47.404262, 8.572711, 47.404717], "geometry": {"coordinates": [[[8.572711, 47.404717], [8.572601, 47.404535], [8.572431, 47.404379], [8.572304, 47.404262]]], "type": "MultiLineString"}, "id": "1182", "properties": {}, "type": "Feature"}, {"bbox": [8.484329, 47.388734, 8.484989, 47.389869], "geometry": {"coordinates": [[[8.484989, 47.389869], [8.484329, 47.388858], [8.484705, 47.388734]]], "type": "MultiLineString"}, "id": "1183", "properties": {}, "type": "Feature"}, {"bbox": [8.480362, 47.412216, 8.481075, 47.412418], "geometry": {"coordinates": [[[8.481075, 47.412216], [8.480362, 47.412418]]], "type": "MultiLineString"}, "id": "1184", "properties": {}, "type": "Feature"}, {"bbox": [8.525845, 47.379957, 8.525846, 47.379958], "geometry": {"coordinates": [[[8.525845, 47.379957], [8.525846, 47.379958]]], "type": "MultiLineString"}, "id": "1186", "properties": {}, "type": "Feature"}, {"bbox": [8.538337, 47.387008, 8.539002, 47.38721], "geometry": {"coordinates": [[[8.538337, 47.387008], [8.538896, 47.387162], [8.53892, 47.387169], [8.538942, 47.387177], [8.538964, 47.387187], [8.538983, 47.387198], [8.539002, 47.38721]]], "type": "MultiLineString"}, "id": "1187", "properties": {}, "type": "Feature"}, {"bbox": [8.53248, 47.36563, 8.533518, 47.366025], "geometry": {"coordinates": [[[8.533518, 47.366025], [8.532564, 47.365688], [8.53248, 47.36563]]], "type": "MultiLineString"}, "id": "1188", "properties": {}, "type": "Feature"}, {"bbox": [8.529236, 47.341524, 8.529393, 47.34188], "geometry": {"coordinates": [[[8.529393, 47.341524], [8.529359, 47.341637], [8.52929, 47.341792], [8.529236, 47.34188]]], "type": "MultiLineString"}, "id": "1190", "properties": {}, "type": "Feature"}, {"bbox": [8.550647, 47.419564, 8.551475, 47.420316], "geometry": {"coordinates": [[[8.550647, 47.419564], [8.550834, 47.419705], [8.550973, 47.419847], [8.551426, 47.420272], [8.551475, 47.420316]]], "type": "MultiLineString"}, "id": "1192", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.37675, 8.525612, 47.377689], "geometry": {"coordinates": [[[8.524787, 47.37675], [8.525243, 47.377268], [8.525612, 47.377689]]], "type": "MultiLineString"}, "id": "1199", "properties": {}, "type": "Feature"}, {"bbox": [8.548271, 47.383943, 8.548331, 47.384421], "geometry": {"coordinates": [[[8.548271, 47.383943], [8.548305, 47.384153], [8.548331, 47.384421]]], "type": "MultiLineString"}, "id": "1200", "properties": {}, "type": "Feature"}, {"bbox": [8.561467, 47.366365, 8.563949, 47.368298], "geometry": {"coordinates": [[[8.561467, 47.368298], [8.562591, 47.366998], [8.562749, 47.366924], [8.563949, 47.366365]]], "type": "MultiLineString"}, "id": "1205", "properties": {}, "type": "Feature"}, {"bbox": [8.56417, 47.370064, 8.565105, 47.370814], "geometry": {"coordinates": [[[8.56417, 47.370064], [8.565105, 47.370814]]], "type": "MultiLineString"}, "id": "1206", "properties": {}, "type": "Feature"}, {"bbox": [8.568708, 47.366405, 8.569467, 47.366643], "geometry": {"coordinates": [[[8.569465, 47.366405], [8.569467, 47.366406], [8.569304, 47.366434], [8.569145, 47.366471], [8.568992, 47.366519], [8.568846, 47.366576], [8.568708, 47.366643]]], "type": "MultiLineString"}, "id": "1208", "properties": {}, "type": "Feature"}, {"bbox": [8.559766, 47.365389, 8.561023, 47.366694], "geometry": {"coordinates": [[[8.559766, 47.366694], [8.561023, 47.365389]]], "type": "MultiLineString"}, "id": "1212", "properties": {}, "type": "Feature"}, {"bbox": [8.541127, 47.366672, 8.541545, 47.368059], "geometry": {"coordinates": [[[8.541545, 47.366672], [8.541337, 47.367362], [8.541127, 47.368059]]], "type": "MultiLineString"}, "id": "1215", "properties": {}, "type": "Feature"}, {"bbox": [8.541806, 47.382699, 8.542468, 47.382769], "geometry": {"coordinates": [[[8.541806, 47.382699], [8.542019, 47.382709], [8.542245, 47.382733], [8.542468, 47.382769]]], "type": "MultiLineString"}, "id": "1216", "properties": {}, "type": "Feature"}, {"bbox": [8.562087, 47.408952, 8.562721, 47.409466], "geometry": {"coordinates": [[[8.562087, 47.409465], [8.562122, 47.409466], [8.562721, 47.408952]]], "type": "MultiLineString"}, "id": "1217", "properties": {}, "type": "Feature"}, {"bbox": [8.526983, 47.338248, 8.529428, 47.338288], "geometry": {"coordinates": [[[8.529428, 47.338288], [8.528834, 47.338248], [8.526983, 47.338252]]], "type": "MultiLineString"}, "id": "1220", "properties": {}, "type": "Feature"}, {"bbox": [8.497438, 47.358013, 8.498487, 47.358817], "geometry": {"coordinates": [[[8.498487, 47.358013], [8.498482, 47.358017], [8.498465, 47.358059], [8.498145, 47.358299], [8.497867, 47.35852], [8.497528, 47.35878], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "1224", "properties": {}, "type": "Feature"}, {"bbox": [8.54197, 47.408178, 8.542855, 47.408845], "geometry": {"coordinates": [[[8.54197, 47.408178], [8.54267, 47.408717], [8.542855, 47.408845]]], "type": "MultiLineString"}, "id": "1233", "properties": {}, "type": "Feature"}, {"bbox": [8.524714, 47.339016, 8.524762, 47.340956], "geometry": {"coordinates": [[[8.524721, 47.340956], [8.524744, 47.340467], [8.524762, 47.339872], [8.524758, 47.339699], [8.524743, 47.339527], [8.524719, 47.339355], [8.524714, 47.339242], [8.524719, 47.339129], [8.524731, 47.339016]]], "type": "MultiLineString"}, "id": "1238", "properties": {}, "type": "Feature"}, {"bbox": [8.48518, 47.370987, 8.485701, 47.373017], "geometry": {"coordinates": [[[8.485303, 47.373017], [8.485403, 47.372874], [8.485487, 47.372725], [8.485555, 47.372573], [8.485628, 47.372385], [8.485677, 47.372192], [8.485701, 47.371998], [8.4857, 47.371803], [8.485674, 47.371609], [8.48518, 47.370987]]], "type": "MultiLineString"}, "id": "1239", "properties": {}, "type": "Feature"}, {"bbox": [8.518049, 47.388939, 8.520761, 47.389823], "geometry": {"coordinates": [[[8.520761, 47.388939], [8.518052, 47.389822], [8.518049, 47.389823]]], "type": "MultiLineString"}, "id": "1242", "properties": {}, "type": "Feature"}, {"bbox": [8.543025, 47.374355, 8.543528, 47.375942], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.54312, 47.374743], [8.543149, 47.37486], [8.543387, 47.375497], [8.543413, 47.375567], [8.543423, 47.375593], [8.543528, 47.375942]]], "type": "MultiLineString"}, "id": "1243", "properties": {}, "type": "Feature"}, {"bbox": [8.550275, 47.362567, 8.552434, 47.36322], "geometry": {"coordinates": [[[8.550275, 47.362567], [8.550433, 47.362599], [8.551058, 47.362793], [8.551762, 47.362992], [8.551928, 47.363051], [8.552434, 47.36322]]], "type": "MultiLineString"}, "id": "1244", "properties": {}, "type": "Feature"}, {"bbox": [8.545131, 47.387122, 8.545952, 47.388507], "geometry": {"coordinates": [[[8.545952, 47.387122], [8.545818, 47.387374], [8.545248, 47.388413], [8.545131, 47.388507]]], "type": "MultiLineString"}, "id": "1245", "properties": {}, "type": "Feature"}, {"bbox": [8.549069, 47.3597, 8.552194, 47.360358], "geometry": {"coordinates": [[[8.549069, 47.3597], [8.550503, 47.360008], [8.550687, 47.360046], [8.551388, 47.360198], [8.552044, 47.360339], [8.552194, 47.360358]]], "type": "MultiLineString"}, "id": "1246", "properties": {}, "type": "Feature"}, {"bbox": [8.51101, 47.420706, 8.513121, 47.421535], "geometry": {"coordinates": [[[8.513121, 47.420706], [8.51101, 47.421535]]], "type": "MultiLineString"}, "id": "1247", "properties": {}, "type": "Feature"}, {"bbox": [8.540159, 47.394708, 8.541027, 47.395428], "geometry": {"coordinates": [[[8.540159, 47.395428], [8.540265, 47.395363], [8.541027, 47.394708]]], "type": "MultiLineString"}, "id": "1248", "properties": {}, "type": "Feature"}, {"bbox": [8.559014, 47.368419, 8.559738, 47.368737], "geometry": {"coordinates": [[[8.559014, 47.368419], [8.559738, 47.368737]]], "type": "MultiLineString"}, "id": "1249", "properties": {}, "type": "Feature"}, {"bbox": [8.548316, 47.360745, 8.551269, 47.361424], "geometry": {"coordinates": [[[8.548316, 47.360745], [8.548523, 47.36079], [8.549862, 47.361096], [8.551269, 47.361424]]], "type": "MultiLineString"}, "id": "1257", "properties": {}, "type": "Feature"}, {"bbox": [8.55693, 47.355194, 8.557741, 47.355546], "geometry": {"coordinates": [[[8.55693, 47.355194], [8.55712, 47.35527], [8.557615, 47.355505], [8.557741, 47.355546]]], "type": "MultiLineString"}, "id": "1258", "properties": {}, "type": "Feature"}, {"bbox": [8.56752, 47.36323, 8.568453, 47.363678], "geometry": {"coordinates": [[[8.56752, 47.36323], [8.568453, 47.363678]]], "type": "MultiLineString"}, "id": "1259", "properties": {}, "type": "Feature"}, {"bbox": [8.550966, 47.362992, 8.551762, 47.363771], "geometry": {"coordinates": [[[8.550966, 47.363771], [8.551762, 47.362992]]], "type": "MultiLineString"}, "id": "1260", "properties": {}, "type": "Feature"}, {"bbox": [8.561017, 47.378215, 8.561726, 47.379107], "geometry": {"coordinates": [[[8.561017, 47.378215], [8.561624, 47.378714], [8.561726, 47.379107]]], "type": "MultiLineString"}, "id": "1261", "properties": {}, "type": "Feature"}, {"bbox": [8.57154, 47.381487, 8.577279, 47.384704], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571664, 47.381513], [8.571916, 47.38201], [8.572318, 47.382805], [8.572397, 47.382933], [8.572492, 47.383056], [8.572604, 47.383172], [8.572731, 47.38328], [8.572873, 47.38338], [8.573028, 47.38347], [8.573127, 47.383521], [8.573231, 47.383567], [8.573338, 47.38361], [8.573373, 47.383623], [8.574124, 47.383912], [8.574202, 47.383942], [8.57434, 47.384011], [8.574481, 47.384077], [8.574624, 47.384142], [8.574811, 47.384111], [8.575001, 47.384092], [8.575193, 47.384084], [8.575385, 47.384088], [8.575576, 47.384103], [8.575764, 47.384129], [8.575948, 47.384167], [8.576126, 47.384216], [8.576405, 47.384298], [8.57667, 47.384399], [8.576919, 47.384517], [8.577042, 47.384576], [8.577162, 47.384639], [8.577279, 47.384704]]], "type": "MultiLineString"}, "id": "1262", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.38367, 8.549788, 47.383891], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.549788, 47.383891]]], "type": "MultiLineString"}, "id": "1263", "properties": {}, "type": "Feature"}, {"bbox": [8.549531, 47.383417, 8.550895, 47.383877], "geometry": {"coordinates": [[[8.549531, 47.383417], [8.54979, 47.383507], [8.550778, 47.38384], [8.550895, 47.383877]]], "type": "MultiLineString"}, "id": "1264", "properties": {}, "type": "Feature"}, {"bbox": [8.539083, 47.389465, 8.53968, 47.389524], "geometry": {"coordinates": [[[8.539083, 47.389465], [8.539201, 47.389465], [8.53932, 47.389472], [8.539436, 47.389486], [8.53968, 47.389524]]], "type": "MultiLineString"}, "id": "1265", "properties": {}, "type": "Feature"}, {"bbox": [8.495294, 47.379396, 8.499939, 47.382991], "geometry": {"coordinates": [[[8.499939, 47.382991], [8.499084, 47.38233], [8.498266, 47.381697], [8.496467, 47.38032], [8.496361, 47.380224], [8.495294, 47.379396]]], "type": "MultiLineString"}, "id": "1266", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.383143, 8.511199, 47.384207], "geometry": {"coordinates": [[[8.511199, 47.384207], [8.510577, 47.383626], [8.51006, 47.383143]]], "type": "MultiLineString"}, "id": "1267", "properties": {}, "type": "Feature"}, {"bbox": [8.508916, 47.3771, 8.509883, 47.377844], "geometry": {"coordinates": [[[8.509883, 47.377844], [8.509696, 47.377703], [8.509601, 47.377614], [8.508916, 47.3771]]], "type": "MultiLineString"}, "id": "1268", "properties": {}, "type": "Feature"}, {"bbox": [8.527009, 47.358451, 8.527621, 47.358588], "geometry": {"coordinates": [[[8.527009, 47.358451], [8.527246, 47.358477], [8.527343, 47.358496], [8.527621, 47.358588]]], "type": "MultiLineString"}, "id": "1270", "properties": {}, "type": "Feature"}, {"bbox": [8.588131, 47.401222, 8.588838, 47.40312], "geometry": {"coordinates": [[[8.588131, 47.401222], [8.588383, 47.401595], [8.588527, 47.401839], [8.588636, 47.402091], [8.588711, 47.402349], [8.588838, 47.403118], [8.588838, 47.40312]]], "type": "MultiLineString"}, "id": "1275", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.385143, 8.52693, 47.385397], "geometry": {"coordinates": [[[8.52693, 47.385397], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "1277", "properties": {}, "type": "Feature"}, {"bbox": [8.520098, 47.378299, 8.520188, 47.378382], "geometry": {"coordinates": [[[8.520098, 47.378299], [8.520188, 47.378382]]], "type": "MultiLineString"}, "id": "1281", "properties": {}, "type": "Feature"}, {"bbox": [8.52693, 47.385397, 8.528422, 47.386999], "geometry": {"coordinates": [[[8.528422, 47.386999], [8.527814, 47.38635], [8.52693, 47.385397]]], "type": "MultiLineString"}, "id": "1287", "properties": {}, "type": "Feature"}, {"bbox": [8.572167, 47.363095, 8.573761, 47.364313], "geometry": {"coordinates": [[[8.573761, 47.363095], [8.573192, 47.363478], [8.57266, 47.363884], [8.572167, 47.364313]]], "type": "MultiLineString"}, "id": "1290", "properties": {}, "type": "Feature"}, {"bbox": [8.518006, 47.362747, 8.519057, 47.363128], "geometry": {"coordinates": [[[8.519057, 47.362747], [8.518819, 47.362819], [8.518111, 47.363091], [8.518077, 47.363105], [8.518042, 47.363117], [8.518006, 47.363128]]], "type": "MultiLineString"}, "id": "1291", "properties": {}, "type": "Feature"}, {"bbox": [8.558141, 47.355088, 8.558946, 47.356139], "geometry": {"coordinates": [[[8.558141, 47.356139], [8.558934, 47.35514], [8.558946, 47.355088]]], "type": "MultiLineString"}, "id": "1293", "properties": {}, "type": "Feature"}, {"bbox": [8.559083, 47.366395, 8.561075, 47.367267], "geometry": {"coordinates": [[[8.559083, 47.366395], [8.559766, 47.366694], [8.560403, 47.366973], [8.561075, 47.367267]]], "type": "MultiLineString"}, "id": "1301", "properties": {}, "type": "Feature"}, {"bbox": [8.548214, 47.383399, 8.549121, 47.383401], "geometry": {"coordinates": [[[8.548214, 47.383399], [8.548663, 47.383401], [8.549121, 47.383399]]], "type": "MultiLineString"}, "id": "1302", "properties": {}, "type": "Feature"}, {"bbox": [8.552554, 47.379177, 8.554173, 47.380371], "geometry": {"coordinates": [[[8.552554, 47.379177], [8.553085, 47.379605], [8.553215, 47.37967], [8.553327, 47.379754], [8.55403, 47.380275], [8.554173, 47.380371]]], "type": "MultiLineString"}, "id": "1303", "properties": {}, "type": "Feature"}, {"bbox": [8.509902, 47.376446, 8.51162, 47.377736], "geometry": {"coordinates": [[[8.509902, 47.376446], [8.510685, 47.377017], [8.51162, 47.377736]]], "type": "MultiLineString"}, "id": "1304", "properties": {}, "type": "Feature"}, {"bbox": [8.510279, 47.36826, 8.511616, 47.369894], "geometry": {"coordinates": [[[8.511616, 47.36826], [8.511464, 47.368425], [8.511072, 47.368901], [8.511043, 47.368936], [8.510405, 47.369713], [8.510386, 47.369738], [8.510367, 47.369763], [8.510349, 47.369788], [8.510324, 47.369823], [8.510301, 47.369858], [8.510279, 47.369894]]], "type": "MultiLineString"}, "id": "1310", "properties": {}, "type": "Feature"}, {"bbox": [8.525008, 47.341281, 8.527497, 47.343695], "geometry": {"coordinates": [[[8.525008, 47.343695], [8.525684, 47.343042], [8.526126, 47.342613], [8.526618, 47.342138], [8.527497, 47.341281]]], "type": "MultiLineString"}, "id": "1311", "properties": {}, "type": "Feature"}, {"bbox": [8.512958, 47.331271, 8.513423, 47.331466], "geometry": {"coordinates": [[[8.513423, 47.331271], [8.512958, 47.331466]]], "type": "MultiLineString"}, "id": "1313", "properties": {}, "type": "Feature"}, {"bbox": [8.51972, 47.376496, 8.52354, 47.377918], "geometry": {"coordinates": [[[8.52354, 47.376496], [8.522852, 47.376737], [8.522846, 47.376738], [8.52197, 47.377048], [8.52153, 47.37721], [8.521365, 47.377271], [8.521199, 47.377333], [8.521033, 47.377393], [8.51972, 47.377918]]], "type": "MultiLineString"}, "id": "1314", "properties": {}, "type": "Feature"}, {"bbox": [8.495245, 47.376111, 8.497331, 47.378114], "geometry": {"coordinates": [[[8.497331, 47.378114], [8.495245, 47.376111]]], "type": "MultiLineString"}, "id": "1315", "properties": {}, "type": "Feature"}, {"bbox": [8.547124, 47.384449, 8.547811, 47.384522], "geometry": {"coordinates": [[[8.547124, 47.384449], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "1318", "properties": {}, "type": "Feature"}, {"bbox": [8.524074, 47.408927, 8.525305, 47.409339], "geometry": {"coordinates": [[[8.525305, 47.409204], [8.524729, 47.408927], [8.524395, 47.409112], [8.524074, 47.409339]]], "type": "MultiLineString"}, "id": "1320", "properties": {}, "type": "Feature"}, {"bbox": [8.552965, 47.364132, 8.554025, 47.364433], "geometry": {"coordinates": [[[8.552965, 47.364132], [8.553474, 47.364433], [8.553726, 47.364273], [8.553861, 47.364213], [8.554025, 47.364172]]], "type": "MultiLineString"}, "id": "1327", "properties": {}, "type": "Feature"}, {"bbox": [8.524229, 47.39227, 8.524368, 47.392321], "geometry": {"coordinates": [[[8.524368, 47.39227], [8.52434, 47.392282], [8.524229, 47.392321]]], "type": "MultiLineString"}, "id": "1330", "properties": {}, "type": "Feature"}, {"bbox": [8.542749, 47.402689, 8.544026, 47.404506], "geometry": {"coordinates": [[[8.542749, 47.402689], [8.542984, 47.402904], [8.543391, 47.403269], [8.543621, 47.403506], [8.543759, 47.403696], [8.543818, 47.403796], [8.543683, 47.403943], [8.544026, 47.404506]]], "type": "MultiLineString"}, "id": "1333", "properties": {}, "type": "Feature"}, {"bbox": [8.557827, 47.364936, 8.559491, 47.366585], "geometry": {"coordinates": [[[8.557827, 47.366585], [8.559491, 47.364936]]], "type": "MultiLineString"}, "id": "1334", "properties": {}, "type": "Feature"}, {"bbox": [8.554988, 47.369323, 8.556653, 47.370009], "geometry": {"coordinates": [[[8.554988, 47.369323], [8.5554, 47.36947], [8.555719, 47.369581], [8.555852, 47.369627], [8.556539, 47.369957], [8.556653, 47.370009]]], "type": "MultiLineString"}, "id": "1335", "properties": {}, "type": "Feature"}, {"bbox": [8.509438, 47.42569, 8.510016, 47.426367], "geometry": {"coordinates": [[[8.509438, 47.42569], [8.509594, 47.425887], [8.509802, 47.426131], [8.509911, 47.426253], [8.510016, 47.426367]]], "type": "MultiLineString"}, "id": "1337", "properties": {}, "type": "Feature"}, {"bbox": [8.52513, 47.359001, 8.525941, 47.35907], "geometry": {"coordinates": [[[8.525941, 47.35907], [8.52513, 47.359001]]], "type": "MultiLineString"}, "id": "1345", "properties": {}, "type": "Feature"}, {"bbox": [8.508878, 47.383626, 8.510577, 47.384195], "geometry": {"coordinates": [[[8.510577, 47.383626], [8.510502, 47.383654], [8.510241, 47.383743], [8.509981, 47.383822], [8.508952, 47.38417], [8.508878, 47.384195]]], "type": "MultiLineString"}, "id": "1347", "properties": {}, "type": "Feature"}, {"bbox": [8.476858, 47.390912, 8.478276, 47.391626], "geometry": {"coordinates": [[[8.478276, 47.390912], [8.478082, 47.390986], [8.477891, 47.391064], [8.477704, 47.391146], [8.477475, 47.391256], [8.477305, 47.39135], [8.476858, 47.391626]]], "type": "MultiLineString"}, "id": "1348", "properties": {}, "type": "Feature"}, {"bbox": [8.551344, 47.373076, 8.55241, 47.374073], "geometry": {"coordinates": [[[8.551612, 47.373076], [8.551344, 47.373441], [8.552036, 47.373859], [8.55241, 47.374073]]], "type": "MultiLineString"}, "id": "1351", "properties": {}, "type": "Feature"}, {"bbox": [8.525651, 47.38435, 8.526379, 47.384933], "geometry": {"coordinates": [[[8.526379, 47.384933], [8.52607, 47.384804], [8.525651, 47.38435]]], "type": "MultiLineString"}, "id": "1352", "properties": {}, "type": "Feature"}, {"bbox": [8.525865, 47.409236, 8.526544, 47.40982], "geometry": {"coordinates": [[[8.525865, 47.40982], [8.526025, 47.409676], [8.526544, 47.409236]]], "type": "MultiLineString"}, "id": "1353", "properties": {}, "type": "Feature"}, {"bbox": [8.540145, 47.41177, 8.540988, 47.412679], "geometry": {"coordinates": [[[8.540988, 47.41177], [8.540821, 47.411951], [8.540478, 47.412367], [8.540238, 47.412658], [8.540145, 47.412679]]], "type": "MultiLineString"}, "id": "1355", "properties": {}, "type": "Feature"}, {"bbox": [8.556866, 47.353116, 8.558206, 47.353874], "geometry": {"coordinates": [[[8.556866, 47.353138], [8.557183, 47.353116], [8.558081, 47.353781], [8.558206, 47.353874]]], "type": "MultiLineString"}, "id": "1356", "properties": {}, "type": "Feature"}, {"bbox": [8.543528, 47.375942, 8.543665, 47.376386], "geometry": {"coordinates": [[[8.543528, 47.375942], [8.543577, 47.37609], [8.543623, 47.376238], [8.543665, 47.376386]]], "type": "MultiLineString"}, "id": "1357", "properties": {}, "type": "Feature"}, {"bbox": [8.560839, 47.368004, 8.561467, 47.368298], "geometry": {"coordinates": [[[8.560839, 47.368004], [8.561359, 47.368247], [8.561467, 47.368298]]], "type": "MultiLineString"}, "id": "1367", "properties": {}, "type": "Feature"}, {"bbox": [8.488673, 47.39449, 8.489068, 47.395233], "geometry": {"coordinates": [[[8.488673, 47.39449], [8.488707, 47.394569], [8.489068, 47.395233]]], "type": "MultiLineString"}, "id": "1374", "properties": {}, "type": "Feature"}, {"bbox": [8.467081, 47.38901, 8.46804, 47.389824], "geometry": {"coordinates": [[[8.46804, 47.38901], [8.467853, 47.389141], [8.467512, 47.389282], [8.467185, 47.38949], [8.467081, 47.389612], [8.467432, 47.389824]]], "type": "MultiLineString"}, "id": "1375", "properties": {}, "type": "Feature"}, {"bbox": [8.536826, 47.369653, 8.536913, 47.369707], "geometry": {"coordinates": [[[8.536913, 47.369707], [8.536826, 47.369653]]], "type": "MultiLineString"}, "id": "1377", "properties": {}, "type": "Feature"}, {"bbox": [8.519306, 47.3774, 8.520098, 47.378299], "geometry": {"coordinates": [[[8.519306, 47.3774], [8.519435, 47.377576], [8.519573, 47.377748], [8.51972, 47.377918], [8.519868, 47.378076], [8.520024, 47.378231], [8.520098, 47.378299]]], "type": "MultiLineString"}, "id": "1383", "properties": {}, "type": "Feature"}, {"bbox": [8.557728, 47.369134, 8.558541, 47.369963], "geometry": {"coordinates": [[[8.557728, 47.369963], [8.558541, 47.369134]]], "type": "MultiLineString"}, "id": "1389", "properties": {}, "type": "Feature"}, {"bbox": [8.548235, 47.363144, 8.549071, 47.363466], "geometry": {"coordinates": [[[8.548235, 47.363144], [8.549071, 47.363466]]], "type": "MultiLineString"}, "id": "1392", "properties": {}, "type": "Feature"}, {"bbox": [8.515401, 47.3693, 8.517295, 47.37048], "geometry": {"coordinates": [[[8.517295, 47.3693], [8.516642, 47.369725], [8.515401, 47.37048]]], "type": "MultiLineString"}, "id": "1397", "properties": {}, "type": "Feature"}, {"bbox": [8.557769, 47.352521, 8.558802, 47.353241], "geometry": {"coordinates": [[[8.557769, 47.352521], [8.557899, 47.352626], [8.558802, 47.353241]]], "type": "MultiLineString"}, "id": "1401", "properties": {}, "type": "Feature"}, {"bbox": [8.528614, 47.371291, 8.528929, 47.371315], "geometry": {"coordinates": [[[8.528929, 47.371291], [8.528614, 47.371315]]], "type": "MultiLineString"}, "id": "1410", "properties": {}, "type": "Feature"}, {"bbox": [8.529807, 47.410748, 8.529897, 47.410987], "geometry": {"coordinates": [[[8.529807, 47.410748], [8.529897, 47.410987]]], "type": "MultiLineString"}, "id": "1411", "properties": {}, "type": "Feature"}, {"bbox": [8.491013, 47.404101, 8.491639, 47.405065], "geometry": {"coordinates": [[[8.491013, 47.404101], [8.491043, 47.404152], [8.491218, 47.404444], [8.491406, 47.404732], [8.491607, 47.405016], [8.491639, 47.405065]]], "type": "MultiLineString"}, "id": "1418", "properties": {}, "type": "Feature"}, {"bbox": [8.548504, 47.387109, 8.548544, 47.387698], "geometry": {"coordinates": [[[8.548504, 47.387109], [8.548544, 47.387698]]], "type": "MultiLineString"}, "id": "1420", "properties": {}, "type": "Feature"}, {"bbox": [8.517076, 47.398324, 8.517998, 47.398549], "geometry": {"coordinates": [[[8.517998, 47.398549], [8.517813, 47.398524], [8.517076, 47.398324]]], "type": "MultiLineString"}, "id": "1422", "properties": {}, "type": "Feature"}, {"bbox": [8.537058, 47.394385, 8.538128, 47.394853], "geometry": {"coordinates": [[[8.537058, 47.394385], [8.538128, 47.394853]]], "type": "MultiLineString"}, "id": "1424", "properties": {}, "type": "Feature"}, {"bbox": [8.555241, 47.37441, 8.55641, 47.375505], "geometry": {"coordinates": [[[8.555241, 47.375505], [8.555427, 47.375278], [8.556211, 47.3746], [8.55641, 47.37441]]], "type": "MultiLineString"}, "id": "1425", "properties": {}, "type": "Feature"}, {"bbox": [8.528929, 47.371223, 8.529755, 47.371291], "geometry": {"coordinates": [[[8.529755, 47.371223], [8.529739, 47.371226], [8.529722, 47.371229], [8.529705, 47.371231], [8.528929, 47.371291]]], "type": "MultiLineString"}, "id": "1439", "properties": {}, "type": "Feature"}, {"bbox": [8.543574, 47.410452, 8.544298, 47.410653], "geometry": {"coordinates": [[[8.544298, 47.410653], [8.543574, 47.410452]]], "type": "MultiLineString"}, "id": "1444", "properties": {}, "type": "Feature"}, {"bbox": [8.536869, 47.387432, 8.537703, 47.388559], "geometry": {"coordinates": [[[8.537703, 47.387432], [8.537354, 47.38791], [8.536869, 47.388559]]], "type": "MultiLineString"}, "id": "1452", "properties": {}, "type": "Feature"}, {"bbox": [8.567209, 47.365467, 8.568011, 47.36645], "geometry": {"coordinates": [[[8.568011, 47.365467], [8.567209, 47.36645]]], "type": "MultiLineString"}, "id": "1453", "properties": {}, "type": "Feature"}, {"bbox": [8.572416, 47.404075, 8.572559, 47.40418], "geometry": {"coordinates": [[[8.572559, 47.404075], [8.572416, 47.40418]]], "type": "MultiLineString"}, "id": "1455", "properties": {}, "type": "Feature"}, {"bbox": [8.492073, 47.407728, 8.493228, 47.408166], "geometry": {"coordinates": [[[8.493228, 47.407728], [8.492744, 47.40797], [8.492073, 47.408166]]], "type": "MultiLineString"}, "id": "1456", "properties": {}, "type": "Feature"}, {"bbox": [8.541073, 47.401079, 8.543721, 47.402973], "geometry": {"coordinates": [[[8.543721, 47.401079], [8.543076, 47.401467], [8.542658, 47.401719], [8.542266, 47.40199], [8.5419, 47.402277], [8.541073, 47.402973]]], "type": "MultiLineString"}, "id": "1462", "properties": {}, "type": "Feature"}, {"bbox": [8.508742, 47.35274, 8.509328, 47.3539], "geometry": {"coordinates": [[[8.509328, 47.35274], [8.509159, 47.35316], [8.508949, 47.353571], [8.508742, 47.3539]]], "type": "MultiLineString"}, "id": "1463", "properties": {}, "type": "Feature"}, {"bbox": [8.546479, 47.407362, 8.546961, 47.407641], "geometry": {"coordinates": [[[8.546961, 47.407362], [8.546479, 47.40757], [8.546838, 47.407641]]], "type": "MultiLineString"}, "id": "1471", "properties": {}, "type": "Feature"}, {"bbox": [8.538018, 47.369021, 8.538578, 47.369488], "geometry": {"coordinates": [[[8.538578, 47.369488], [8.538417, 47.36932], [8.538018, 47.369021]]], "type": "MultiLineString"}, "id": "1473", "properties": {}, "type": "Feature"}, {"bbox": [8.55758, 47.355947, 8.558879, 47.356407], "geometry": {"coordinates": [[[8.55758, 47.355947], [8.557647, 47.355972], [8.558141, 47.356139], [8.558879, 47.356407]]], "type": "MultiLineString"}, "id": "1474", "properties": {}, "type": "Feature"}, {"bbox": [8.498238, 47.382811, 8.498978, 47.38347], "geometry": {"coordinates": [[[8.498978, 47.38347], [8.498238, 47.382811]]], "type": "MultiLineString"}, "id": "1477", "properties": {}, "type": "Feature"}, {"bbox": [8.557911, 47.370412, 8.559211, 47.371426], "geometry": {"coordinates": [[[8.557911, 47.371426], [8.558044, 47.37133], [8.558906, 47.370812], [8.559009, 47.370726], [8.559211, 47.370412]]], "type": "MultiLineString"}, "id": "1480", "properties": {}, "type": "Feature"}, {"bbox": [8.566819, 47.359625, 8.566941, 47.359957], "geometry": {"coordinates": [[[8.566819, 47.359625], [8.566941, 47.359957]]], "type": "MultiLineString"}, "id": "1481", "properties": {}, "type": "Feature"}, {"bbox": [8.553416, 47.360388, 8.553695, 47.360736], "geometry": {"coordinates": [[[8.553416, 47.360736], [8.553692, 47.360392], [8.553695, 47.360388]]], "type": "MultiLineString"}, "id": "1484", "properties": {}, "type": "Feature"}, {"bbox": [8.503534, 47.402406, 8.505192, 47.404405], "geometry": {"coordinates": [[[8.503534, 47.404405], [8.504494, 47.403595], [8.504317, 47.403432], [8.504317, 47.403309], [8.504382, 47.403246], [8.505147, 47.402685], [8.505177, 47.402658], [8.505192, 47.402621], [8.505183, 47.402586], [8.505163, 47.402558], [8.505009, 47.402406], [8.504367, 47.402695], [8.504275, 47.402683]]], "type": "MultiLineString"}, "id": "1485", "properties": {}, "type": "Feature"}, {"bbox": [8.540491, 47.393963, 8.541072, 47.394669], "geometry": {"coordinates": [[[8.540491, 47.393963], [8.540491, 47.393963], [8.540549, 47.394093], [8.540624, 47.39422], [8.540714, 47.394342], [8.54082, 47.394458], [8.540939, 47.394567], [8.541072, 47.394669]]], "type": "MultiLineString"}, "id": "1487", "properties": {}, "type": "Feature"}, {"bbox": [8.471296, 47.389278, 8.472746, 47.389885], "geometry": {"coordinates": [[[8.472746, 47.389278], [8.471548, 47.389768], [8.471464, 47.389807], [8.47138, 47.389845], [8.471296, 47.389885]]], "type": "MultiLineString"}, "id": "1490", "properties": {}, "type": "Feature"}, {"bbox": [8.53712, 47.375729, 8.537298, 47.375785], "geometry": {"coordinates": [[[8.53712, 47.375729], [8.537217, 47.375745], [8.537298, 47.375785]]], "type": "MultiLineString"}, "id": "1495", "properties": {}, "type": "Feature"}, {"bbox": [8.500634, 47.36111, 8.502165, 47.362077], "geometry": {"coordinates": [[[8.502165, 47.36111], [8.501854, 47.361335], [8.500634, 47.362077]]], "type": "MultiLineString"}, "id": "1500", "properties": {}, "type": "Feature"}, {"bbox": [8.551942, 47.405521, 8.553287, 47.405831], "geometry": {"coordinates": [[[8.551942, 47.405831], [8.553287, 47.405521]]], "type": "MultiLineString"}, "id": "1502", "properties": {}, "type": "Feature"}, {"bbox": [8.51757, 47.370568, 8.521177, 47.372622], "geometry": {"coordinates": [[[8.521177, 47.372622], [8.520333, 47.372156], [8.520211, 47.372088], [8.519555, 47.371728], [8.518979, 47.371412], [8.518785, 47.371304], [8.51757, 47.370568]]], "type": "MultiLineString"}, "id": "1506", "properties": {}, "type": "Feature"}, {"bbox": [8.556057, 47.405939, 8.557309, 47.406427], "geometry": {"coordinates": [[[8.556057, 47.406427], [8.557199, 47.405992], [8.557309, 47.405939]]], "type": "MultiLineString"}, "id": "1513", "properties": {}, "type": "Feature"}, {"bbox": [8.561243, 47.380681, 8.561533, 47.380904], "geometry": {"coordinates": [[[8.561243, 47.380681], [8.561533, 47.380904]]], "type": "MultiLineString"}, "id": "1522", "properties": {}, "type": "Feature"}, {"bbox": [8.479191, 47.380648, 8.481308, 47.382396], "geometry": {"coordinates": [[[8.481308, 47.380648], [8.480236, 47.381532], [8.479191, 47.382396]]], "type": "MultiLineString"}, "id": "1524", "properties": {}, "type": "Feature"}, {"bbox": [8.561624, 47.377992, 8.562911, 47.378714], "geometry": {"coordinates": [[[8.562911, 47.377992], [8.561745, 47.378655], [8.561624, 47.378714]]], "type": "MultiLineString"}, "id": "1525", "properties": {}, "type": "Feature"}, {"bbox": [8.530657, 47.369267, 8.531126, 47.369654], "geometry": {"coordinates": [[[8.531126, 47.369267], [8.530657, 47.369654]]], "type": "MultiLineString"}, "id": "1532", "properties": {}, "type": "Feature"}, {"bbox": [8.556599, 47.3575, 8.557783, 47.357836], "geometry": {"coordinates": [[[8.556599, 47.357527], [8.556911, 47.3575], [8.557783, 47.357836]]], "type": "MultiLineString"}, "id": "1537", "properties": {}, "type": "Feature"}, {"bbox": [8.596593, 47.353804, 8.597579, 47.354556], "geometry": {"coordinates": [[[8.597579, 47.354556], [8.596593, 47.353804]]], "type": "MultiLineString"}, "id": "1543", "properties": {}, "type": "Feature"}, {"bbox": [8.53166, 47.347226, 8.53189, 47.348081], "geometry": {"coordinates": [[[8.53166, 47.348081], [8.531852, 47.347384], [8.53189, 47.347226]]], "type": "MultiLineString"}, "id": "1549", "properties": {}, "type": "Feature"}, {"bbox": [8.556988, 47.369745, 8.559211, 47.370412], "geometry": {"coordinates": [[[8.556988, 47.369745], [8.557728, 47.369963], [8.558206, 47.370118], [8.558396, 47.370171], [8.559211, 47.370412]]], "type": "MultiLineString"}, "id": "1553", "properties": {}, "type": "Feature"}, {"bbox": [8.549051, 47.42642, 8.549212, 47.426671], "geometry": {"coordinates": [[[8.549051, 47.426671], [8.549132, 47.426565], [8.549212, 47.42642]]], "type": "MultiLineString"}, "id": "1556", "properties": {}, "type": "Feature"}, {"bbox": [8.527379, 47.377011, 8.527789, 47.377417], "geometry": {"coordinates": [[[8.527403, 47.377011], [8.527379, 47.377075], [8.527789, 47.377417]]], "type": "MultiLineString"}, "id": "1559", "properties": {}, "type": "Feature"}, {"bbox": [8.546711, 47.363915, 8.54859, 47.364439], "geometry": {"coordinates": [[[8.546711, 47.363915], [8.547472, 47.364114], [8.548479, 47.364428], [8.54859, 47.364439]]], "type": "MultiLineString"}, "id": "1561", "properties": {}, "type": "Feature"}, {"bbox": [8.524358, 47.371836, 8.525982, 47.373287], "geometry": {"coordinates": [[[8.525982, 47.371836], [8.525237, 47.372711], [8.524662, 47.373181], [8.524591, 47.373214], [8.524517, 47.373243], [8.524439, 47.373267], [8.524358, 47.373287]]], "type": "MultiLineString"}, "id": "1562", "properties": {}, "type": "Feature"}, {"bbox": [8.545332, 47.383482, 8.546165, 47.383827], "geometry": {"coordinates": [[[8.545332, 47.383482], [8.545516, 47.383549], [8.546165, 47.383827]]], "type": "MultiLineString"}, "id": "1563", "properties": {}, "type": "Feature"}, {"bbox": [8.504494, 47.403595, 8.505232, 47.404079], "geometry": {"coordinates": [[[8.504494, 47.403595], [8.504584, 47.403634], [8.505163, 47.404059], [8.505232, 47.404079]]], "type": "MultiLineString"}, "id": "1566", "properties": {}, "type": "Feature"}, {"bbox": [8.48844, 47.384971, 8.489224, 47.38695], "geometry": {"coordinates": [[[8.489224, 47.38695], [8.489089, 47.386531], [8.488855, 47.3858], [8.488504, 47.385024], [8.488498, 47.385015], [8.488491, 47.385007], [8.488482, 47.384998], [8.488473, 47.384991], [8.488463, 47.384983], [8.488452, 47.384977], [8.48844, 47.384971]]], "type": "MultiLineString"}, "id": "1569", "properties": {}, "type": "Feature"}, {"bbox": [8.508655, 47.356235, 8.509721, 47.357456], "geometry": {"coordinates": [[[8.509721, 47.356235], [8.508655, 47.357456]]], "type": "MultiLineString"}, "id": "1570", "properties": {}, "type": "Feature"}, {"bbox": [8.566521, 47.360669, 8.567148, 47.361053], "geometry": {"coordinates": [[[8.566521, 47.360669], [8.567148, 47.361053]]], "type": "MultiLineString"}, "id": "1571", "properties": {}, "type": "Feature"}, {"bbox": [8.554358, 47.364341, 8.554431, 47.364725], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554358, 47.36461], [8.554399, 47.364396], [8.554405, 47.364379], [8.554412, 47.364361], [8.554418, 47.364344], [8.554419, 47.364341]]], "type": "MultiLineString"}, "id": "1575", "properties": {}, "type": "Feature"}, {"bbox": [8.544934, 47.402018, 8.545961, 47.402589], "geometry": {"coordinates": [[[8.545961, 47.402018], [8.54513, 47.402494], [8.544934, 47.402589]]], "type": "MultiLineString"}, "id": "1579", "properties": {}, "type": "Feature"}, {"bbox": [8.522767, 47.374509, 8.524298, 47.375235], "geometry": {"coordinates": [[[8.524298, 47.374509], [8.523584, 47.375009], [8.523359, 47.37504], [8.522767, 47.375235]]], "type": "MultiLineString"}, "id": "1580", "properties": {}, "type": "Feature"}, {"bbox": [8.517209, 47.372851, 8.518177, 47.373651], "geometry": {"coordinates": [[[8.518177, 47.372851], [8.518086, 47.372912], [8.517462, 47.373438], [8.517209, 47.373651]]], "type": "MultiLineString"}, "id": "1581", "properties": {}, "type": "Feature"}, {"bbox": [8.551667, 47.405252, 8.552192, 47.406339], "geometry": {"coordinates": [[[8.551667, 47.405252], [8.551762, 47.405454], [8.551942, 47.405831], [8.552191, 47.406336], [8.552192, 47.406339]]], "type": "MultiLineString"}, "id": "1586", "properties": {}, "type": "Feature"}, {"bbox": [8.558777, 47.408199, 8.558858, 47.410815], "geometry": {"coordinates": [[[8.558858, 47.408199], [8.55884, 47.408896], [8.558815, 47.409502], [8.558801, 47.409997], [8.558777, 47.410815]]], "type": "MultiLineString"}, "id": "1587", "properties": {}, "type": "Feature"}, {"bbox": [8.474249, 47.386802, 8.474905, 47.387791], "geometry": {"coordinates": [[[8.474905, 47.387791], [8.474249, 47.387077], [8.474893, 47.386802]]], "type": "MultiLineString"}, "id": "1591", "properties": {}, "type": "Feature"}, {"bbox": [8.536361, 47.388449, 8.538836, 47.389341], "geometry": {"coordinates": [[[8.536361, 47.388473], [8.536494, 47.388453], [8.536508, 47.388451], [8.536522, 47.388449], [8.536537, 47.388449], [8.536552, 47.38845], [8.536566, 47.388451], [8.53658, 47.388453], [8.536594, 47.388457], [8.536607, 47.388461], [8.53662, 47.388465], [8.536869, 47.388559], [8.537653, 47.388853], [8.53821, 47.389063], [8.538684, 47.38924], [8.538836, 47.389341]]], "type": "MultiLineString"}, "id": "1592", "properties": {}, "type": "Feature"}, {"bbox": [8.528178, 47.383269, 8.530465, 47.385484], "geometry": {"coordinates": [[[8.528178, 47.383269], [8.528679, 47.383795], [8.528855, 47.383967], [8.528883, 47.383995], [8.528916, 47.384021], [8.528952, 47.384045], [8.529795, 47.384833], [8.529847, 47.384893], [8.530465, 47.385484]]], "type": "MultiLineString"}, "id": "1593", "properties": {}, "type": "Feature"}, {"bbox": [8.526577, 47.394742, 8.52971, 47.39581], "geometry": {"coordinates": [[[8.52971, 47.394742], [8.528258, 47.39521], [8.527764, 47.395382], [8.526903, 47.395663], [8.526716, 47.395728], [8.526666, 47.395752], [8.526619, 47.395779], [8.526577, 47.39581]]], "type": "MultiLineString"}, "id": "1595", "properties": {}, "type": "Feature"}, {"bbox": [8.526472, 47.412157, 8.527097, 47.412916], "geometry": {"coordinates": [[[8.526472, 47.412157], [8.526532, 47.412253], [8.526588, 47.412334], [8.526627, 47.412384], [8.526847, 47.412696], [8.526924, 47.412773], [8.527007, 47.412846], [8.527097, 47.412916]]], "type": "MultiLineString"}, "id": "1596", "properties": {}, "type": "Feature"}, {"bbox": [8.561009, 47.411648, 8.561094, 47.412735], "geometry": {"coordinates": [[[8.561094, 47.411648], [8.561009, 47.412735]]], "type": "MultiLineString"}, "id": "1597", "properties": {}, "type": "Feature"}, {"bbox": [8.535057, 47.410591, 8.53531, 47.411124], "geometry": {"coordinates": [[[8.535057, 47.410591], [8.53531, 47.411124]]], "type": "MultiLineString"}, "id": "1606", "properties": {}, "type": "Feature"}, {"bbox": [8.504494, 47.403117, 8.505382, 47.403595], "geometry": {"coordinates": [[[8.504494, 47.403595], [8.504586, 47.403568], [8.504944, 47.40336], [8.505382, 47.403117]]], "type": "MultiLineString"}, "id": "1607", "properties": {}, "type": "Feature"}, {"bbox": [8.541474, 47.406704, 8.542411, 47.408033], "geometry": {"coordinates": [[[8.542411, 47.408033], [8.542272, 47.407818], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "1612", "properties": {}, "type": "Feature"}, {"bbox": [8.558452, 47.40323, 8.559282, 47.403901], "geometry": {"coordinates": [[[8.558452, 47.403901], [8.559255, 47.403314], [8.559282, 47.40323]]], "type": "MultiLineString"}, "id": "1613", "properties": {}, "type": "Feature"}, {"bbox": [8.52766, 47.374793, 8.529738, 47.376179], "geometry": {"coordinates": [[[8.52766, 47.374793], [8.527868, 47.374932], [8.528001, 47.37502], [8.528321, 47.375234], [8.528437, 47.375311], [8.529067, 47.375729], [8.529738, 47.376179]]], "type": "MultiLineString"}, "id": "1615", "properties": {}, "type": "Feature"}, {"bbox": [8.541337, 47.367362, 8.541734, 47.367368], "geometry": {"coordinates": [[[8.541734, 47.367368], [8.541337, 47.367362]]], "type": "MultiLineString"}, "id": "1616", "properties": {}, "type": "Feature"}, {"bbox": [8.507787, 47.421847, 8.510096, 47.422217], "geometry": {"coordinates": [[[8.507787, 47.421856], [8.507815, 47.421851], [8.507844, 47.421848], [8.507873, 47.421847], [8.507902, 47.421848], [8.507931, 47.42185], [8.50796, 47.421854], [8.507988, 47.421859], [8.508015, 47.421866], [8.508042, 47.421875], [8.508067, 47.421885], [8.508238, 47.421963], [8.508466, 47.422064], [8.508752, 47.422173], [8.508794, 47.422187], [8.508838, 47.422198], [8.508884, 47.422207], [8.50893, 47.422213], [8.508977, 47.422216], [8.509024, 47.422217], [8.509071, 47.422214], [8.509117, 47.422209], [8.509163, 47.422201], [8.50936, 47.422135], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "1617", "properties": {}, "type": "Feature"}, {"bbox": [8.549952, 47.404451, 8.557004, 47.405622], "geometry": {"coordinates": [[[8.557004, 47.404647], [8.55667, 47.404486], [8.556658, 47.404479], [8.556646, 47.404472], [8.556632, 47.404467], [8.556618, 47.404462], [8.556604, 47.404458], [8.556589, 47.404455], [8.556573, 47.404453], [8.556558, 47.404451], [8.556542, 47.404451], [8.556526, 47.404451], [8.556511, 47.404452], [8.555843, 47.404504], [8.555572, 47.404527], [8.555152, 47.404571], [8.554963, 47.404598], [8.554299, 47.404681], [8.553644, 47.404791], [8.552999, 47.404926], [8.552876, 47.404953], [8.552142, 47.405128], [8.551806, 47.405215], [8.551667, 47.405252], [8.551093, 47.405404], [8.551028, 47.405421], [8.550962, 47.405437], [8.550896, 47.405452], [8.550815, 47.405469], [8.550734, 47.405485], [8.550652, 47.405499], [8.550118, 47.405593], [8.549952, 47.405622]]], "type": "MultiLineString"}, "id": "1620", "properties": {}, "type": "Feature"}, {"bbox": [8.568774, 47.40598, 8.569375, 47.406948], "geometry": {"coordinates": [[[8.568774, 47.40598], [8.568922, 47.406166], [8.568986, 47.406277], [8.569263, 47.406773], [8.569375, 47.406948]]], "type": "MultiLineString"}, "id": "1621", "properties": {}, "type": "Feature"}, {"bbox": [8.56371, 47.380106, 8.564171, 47.381057], "geometry": {"coordinates": [[[8.564171, 47.380106], [8.56414, 47.380243], [8.56371, 47.381057]]], "type": "MultiLineString"}, "id": "1622", "properties": {}, "type": "Feature"}, {"bbox": [8.529999, 47.342545, 8.53347, 47.345019], "geometry": {"coordinates": [[[8.53347, 47.345019], [8.533445, 47.344971], [8.533413, 47.344924], [8.533375, 47.34488], [8.533231, 47.344748], [8.53308, 47.34462], [8.532923, 47.344495], [8.532844, 47.344435], [8.532764, 47.344376], [8.532682, 47.344318], [8.53262, 47.344287], [8.532555, 47.34426], [8.532487, 47.344236], [8.532416, 47.344216], [8.532383, 47.344209], [8.532349, 47.344202], [8.532315, 47.344196], [8.531391, 47.3441], [8.531253, 47.344085], [8.529999, 47.34394], [8.530026, 47.34384], [8.530061, 47.34374], [8.530103, 47.343642], [8.530119, 47.343606], [8.530139, 47.343571], [8.530163, 47.343537], [8.530192, 47.343505], [8.530224, 47.343475], [8.530801, 47.342922], [8.53084, 47.342872], [8.530873, 47.342821], [8.530899, 47.342767], [8.530917, 47.342713], [8.530929, 47.342657], [8.530933, 47.342601], [8.53093, 47.342545]]], "type": "MultiLineString"}, "id": "1624", "properties": {}, "type": "Feature"}, {"bbox": [8.482712, 47.394126, 8.483939, 47.39559], "geometry": {"coordinates": [[[8.483939, 47.394126], [8.483595, 47.394415], [8.483192, 47.39478], [8.483142, 47.394838], [8.483093, 47.394898], [8.483046, 47.394957], [8.482743, 47.395391], [8.482731, 47.395409], [8.482723, 47.395428], [8.482717, 47.395447], [8.482713, 47.395466], [8.482712, 47.395485], [8.482713, 47.395505], [8.482717, 47.395524], [8.482723, 47.395543], [8.482732, 47.395561], [8.482748, 47.39559]]], "type": "MultiLineString"}, "id": "1627", "properties": {}, "type": "Feature"}, {"bbox": [8.531516, 47.36107, 8.532866, 47.361283], "geometry": {"coordinates": [[[8.532866, 47.361283], [8.532159, 47.361172], [8.531516, 47.36107]]], "type": "MultiLineString"}, "id": "1629", "properties": {}, "type": "Feature"}, {"bbox": [8.519758, 47.365088, 8.521385, 47.365288], "geometry": {"coordinates": [[[8.521385, 47.365088], [8.521094, 47.365091], [8.519758, 47.365288]]], "type": "MultiLineString"}, "id": "1630", "properties": {}, "type": "Feature"}, {"bbox": [8.528408, 47.369874, 8.529117, 47.370617], "geometry": {"coordinates": [[[8.529117, 47.369874], [8.528984, 47.369999], [8.528408, 47.370617]]], "type": "MultiLineString"}, "id": "1631", "properties": {}, "type": "Feature"}, {"bbox": [8.56765, 47.359493, 8.567962, 47.360257], "geometry": {"coordinates": [[[8.567962, 47.360257], [8.567865, 47.36013], [8.56765, 47.359493]]], "type": "MultiLineString"}, "id": "1632", "properties": {}, "type": "Feature"}, {"bbox": [8.553144, 47.354301, 8.556149, 47.356008], "geometry": {"coordinates": [[[8.553144, 47.354301], [8.55451, 47.355243], [8.554725, 47.355321], [8.554843, 47.355377], [8.555984, 47.355913], [8.556041, 47.355941], [8.556094, 47.355971], [8.556144, 47.356004], [8.556149, 47.356008]]], "type": "MultiLineString"}, "id": "1635", "properties": {}, "type": "Feature"}, {"bbox": [8.580605, 47.36001, 8.581708, 47.360887], "geometry": {"coordinates": [[[8.580605, 47.360145], [8.581708, 47.36001], [8.581695, 47.360119], [8.581515, 47.36051], [8.581279, 47.360887]]], "type": "MultiLineString"}, "id": "1636", "properties": {}, "type": "Feature"}, {"bbox": [8.555178, 47.371652, 8.556268, 47.372138], "geometry": {"coordinates": [[[8.555178, 47.371652], [8.556268, 47.372138]]], "type": "MultiLineString"}, "id": "1637", "properties": {}, "type": "Feature"}, {"bbox": [8.524884, 47.336172, 8.526144, 47.336524], "geometry": {"coordinates": [[[8.526144, 47.336524], [8.526068, 47.336491], [8.525908, 47.336412], [8.525738, 47.336344], [8.52556, 47.336286], [8.525375, 47.336239], [8.525185, 47.336203], [8.52499, 47.336179], [8.524884, 47.336172]]], "type": "MultiLineString"}, "id": "1638", "properties": {}, "type": "Feature"}, {"bbox": [8.516472, 47.378634, 8.519511, 47.379646], "geometry": {"coordinates": [[[8.519511, 47.378634], [8.518956, 47.378841], [8.518482, 47.379014], [8.518447, 47.379027], [8.518412, 47.379039], [8.518377, 47.379051], [8.518062, 47.379159], [8.517744, 47.379263], [8.517424, 47.379363], [8.516713, 47.379574], [8.516472, 47.379646]]], "type": "MultiLineString"}, "id": "1641", "properties": {}, "type": "Feature"}, {"bbox": [8.537173, 47.400751, 8.538672, 47.401625], "geometry": {"coordinates": [[[8.537173, 47.400751], [8.537332, 47.400808], [8.537484, 47.400873], [8.537627, 47.400946], [8.537761, 47.401027], [8.538056, 47.401233], [8.538316, 47.401396], [8.538402, 47.401446], [8.538558, 47.401534], [8.538672, 47.401625]]], "type": "MultiLineString"}, "id": "1645", "properties": {}, "type": "Feature"}, {"bbox": [8.560785, 47.381873, 8.562551, 47.383054], "geometry": {"coordinates": [[[8.562551, 47.381873], [8.562216, 47.382072], [8.561531, 47.382565], [8.560785, 47.383054]]], "type": "MultiLineString"}, "id": "1651", "properties": {}, "type": "Feature"}, {"bbox": [8.480959, 47.374617, 8.481768, 47.374862], "geometry": {"coordinates": [[[8.481768, 47.374862], [8.481396, 47.374724], [8.481376, 47.374635], [8.481008, 47.374622], [8.480959, 47.374617]]], "type": "MultiLineString"}, "id": "1654", "properties": {}, "type": "Feature"}, {"bbox": [8.517462, 47.373438, 8.518217, 47.37387], "geometry": {"coordinates": [[[8.518217, 47.37387], [8.517462, 47.373438]]], "type": "MultiLineString"}, "id": "1655", "properties": {}, "type": "Feature"}, {"bbox": [8.546439, 47.384754, 8.547369, 47.385274], "geometry": {"coordinates": [[[8.546439, 47.384754], [8.546574, 47.384819], [8.547369, 47.385274]]], "type": "MultiLineString"}, "id": "1656", "properties": {}, "type": "Feature"}, {"bbox": [8.541648, 47.385286, 8.542339, 47.385498], "geometry": {"coordinates": [[[8.541648, 47.385286], [8.542339, 47.385498]]], "type": "MultiLineString"}, "id": "1660", "properties": {}, "type": "Feature"}, {"bbox": [8.587475, 47.397074, 8.588245, 47.397659], "geometry": {"coordinates": [[[8.587475, 47.397074], [8.588245, 47.397659]]], "type": "MultiLineString"}, "id": "1661", "properties": {}, "type": "Feature"}, {"bbox": [8.536903, 47.430189, 8.537, 47.43057], "geometry": {"coordinates": [[[8.536903, 47.430189], [8.536949, 47.430408], [8.537, 47.430564], [8.537, 47.43057]]], "type": "MultiLineString"}, "id": "1666", "properties": {}, "type": "Feature"}, {"bbox": [8.533095, 47.364229, 8.534573, 47.364529], "geometry": {"coordinates": [[[8.534573, 47.364529], [8.533863, 47.364385], [8.533095, 47.364229]]], "type": "MultiLineString"}, "id": "1669", "properties": {}, "type": "Feature"}, {"bbox": [8.534994, 47.408999, 8.535393, 47.409991], "geometry": {"coordinates": [[[8.534994, 47.408999], [8.535138, 47.409352], [8.535393, 47.409991]]], "type": "MultiLineString"}, "id": "1670", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.369758, 8.513689, 47.370226], "geometry": {"coordinates": [[[8.513689, 47.369758], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "1671", "properties": {}, "type": "Feature"}, {"bbox": [8.510585, 47.362508, 8.512189, 47.362907], "geometry": {"coordinates": [[[8.512189, 47.362907], [8.510585, 47.362508]]], "type": "MultiLineString"}, "id": "1678", "properties": {}, "type": "Feature"}, {"bbox": [8.539015, 47.397268, 8.539621, 47.397542], "geometry": {"coordinates": [[[8.539015, 47.397268], [8.539621, 47.397542]]], "type": "MultiLineString"}, "id": "1690", "properties": {}, "type": "Feature"}, {"bbox": [8.554963, 47.404598, 8.555284, 47.40523], "geometry": {"coordinates": [[[8.554963, 47.404598], [8.554993, 47.404711], [8.555056, 47.404857], [8.55514, 47.404999], [8.555243, 47.405134], [8.555284, 47.40523]]], "type": "MultiLineString"}, "id": "1693", "properties": {}, "type": "Feature"}, {"bbox": [8.515761, 47.412806, 8.517258, 47.413603], "geometry": {"coordinates": [[[8.517258, 47.412806], [8.516856, 47.413059], [8.516776, 47.413097], [8.515841, 47.413603], [8.515761, 47.413601]]], "type": "MultiLineString"}, "id": "1698", "properties": {}, "type": "Feature"}, {"bbox": [8.490681, 47.403802, 8.503272, 47.407827], "geometry": {"coordinates": [[[8.503272, 47.403802], [8.503266, 47.403816], [8.503257, 47.40383], [8.503247, 47.403844], [8.503235, 47.403856], [8.503222, 47.403869], [8.503207, 47.40388], [8.50319, 47.40389], [8.503173, 47.403899], [8.503154, 47.403908], [8.503135, 47.403915], [8.502909, 47.404007], [8.502689, 47.404104], [8.502476, 47.404209], [8.501833, 47.404518], [8.501586, 47.404633], [8.501566, 47.404642], [8.501545, 47.40465], [8.501523, 47.404657], [8.501501, 47.404662], [8.501477, 47.404666], [8.501454, 47.404669], [8.501405, 47.404704], [8.50137, 47.404727], [8.501334, 47.404749], [8.501296, 47.404769], [8.500936, 47.404921], [8.500778, 47.404987], [8.500727, 47.404992], [8.500596, 47.405038], [8.500189, 47.405175], [8.499951, 47.40526], [8.499426, 47.405417], [8.499273, 47.405463], [8.498667, 47.405635], [8.497932, 47.40583], [8.49719, 47.406012], [8.496442, 47.406181], [8.496194, 47.406231], [8.495943, 47.406272], [8.495689, 47.406304], [8.49535, 47.406334], [8.495016, 47.406382], [8.494688, 47.406449], [8.494369, 47.406533], [8.493929, 47.406668], [8.493509, 47.406831], [8.493114, 47.40702], [8.492747, 47.407233], [8.492676, 47.40727], [8.492602, 47.407304], [8.492525, 47.407335], [8.492318, 47.407413], [8.492102, 47.407478], [8.491878, 47.407531], [8.490681, 47.407827]]], "type": "MultiLineString"}, "id": "1701", "properties": {}, "type": "Feature"}, {"bbox": [8.473208, 47.382049, 8.477774, 47.384741], "geometry": {"coordinates": [[[8.477774, 47.384741], [8.477579, 47.384585], [8.477362, 47.384443], [8.477127, 47.384316], [8.476874, 47.384206], [8.476695, 47.384175], [8.476512, 47.384155], [8.476328, 47.384148], [8.476143, 47.384152], [8.476065, 47.384149], [8.475987, 47.384141], [8.47591, 47.384128], [8.475836, 47.384111], [8.475764, 47.384089], [8.475695, 47.384063], [8.47563, 47.384033], [8.47557, 47.383999], [8.475513, 47.383962], [8.47534, 47.383801], [8.474625, 47.383159], [8.474318, 47.382891], [8.474037, 47.382655], [8.474004, 47.382637], [8.47397, 47.38262], [8.473936, 47.382603], [8.473711, 47.382427], [8.473488, 47.38225], [8.473267, 47.382072], [8.473208, 47.382049]]], "type": "MultiLineString"}, "id": "1703", "properties": {}, "type": "Feature"}, {"bbox": [8.566034, 47.356685, 8.568354, 47.357297], "geometry": {"coordinates": [[[8.566034, 47.356685], [8.566202, 47.356722], [8.566324, 47.356753], [8.566526, 47.356807], [8.568136, 47.357239], [8.568354, 47.357297]]], "type": "MultiLineString"}, "id": "1705", "properties": {}, "type": "Feature"}, {"bbox": [8.552419, 47.380197, 8.553592, 47.380838], "geometry": {"coordinates": [[[8.552419, 47.380197], [8.553592, 47.380838]]], "type": "MultiLineString"}, "id": "1723", "properties": {}, "type": "Feature"}, {"bbox": [8.494229, 47.375321, 8.494899, 47.375717], "geometry": {"coordinates": [[[8.494229, 47.375717], [8.494424, 47.375526], [8.494503, 47.375481], [8.494899, 47.375321]]], "type": "MultiLineString"}, "id": "1724", "properties": {}, "type": "Feature"}, {"bbox": [8.528236, 47.34188, 8.529236, 47.342934], "geometry": {"coordinates": [[[8.529236, 47.34188], [8.52909, 47.342117], [8.528842, 47.342421], [8.528673, 47.342597], [8.528509, 47.342729], [8.528356, 47.342849], [8.528236, 47.342934]]], "type": "MultiLineString"}, "id": "1727", "properties": {}, "type": "Feature"}, {"bbox": [8.553465, 47.405888, 8.554946, 47.408134], "geometry": {"coordinates": [[[8.553465, 47.405888], [8.553559, 47.405999], [8.55402, 47.406541], [8.554096, 47.406661], [8.554289, 47.406998], [8.55488, 47.408019], [8.554946, 47.408134]]], "type": "MultiLineString"}, "id": "1728", "properties": {}, "type": "Feature"}, {"bbox": [8.552192, 47.406339, 8.553406, 47.408108], "geometry": {"coordinates": [[[8.552192, 47.406339], [8.552278, 47.406393], [8.552635, 47.406895], [8.552685, 47.406977], [8.552917, 47.407345], [8.553078, 47.407605], [8.553406, 47.408108]]], "type": "MultiLineString"}, "id": "1729", "properties": {}, "type": "Feature"}, {"bbox": [8.511325, 47.361676, 8.517318, 47.363146], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517161, 47.363116], [8.515626, 47.362735], [8.515073, 47.362619], [8.514802, 47.362551], [8.511325, 47.361676]]], "type": "MultiLineString"}, "id": "1732", "properties": {}, "type": "Feature"}, {"bbox": [8.516642, 47.372557, 8.517529, 47.375641], "geometry": {"coordinates": [[[8.517529, 47.372557], [8.517377, 47.373021], [8.517295, 47.373311], [8.517209, 47.373651], [8.517146, 47.373937], [8.516992, 47.374449], [8.516865, 47.374872], [8.516642, 47.375641]]], "type": "MultiLineString"}, "id": "1733", "properties": {}, "type": "Feature"}, {"bbox": [8.552204, 47.383175, 8.553242, 47.383943], "geometry": {"coordinates": [[[8.553242, 47.383175], [8.553122, 47.383275], [8.552622, 47.38363], [8.552204, 47.383943]]], "type": "MultiLineString"}, "id": "1736", "properties": {}, "type": "Feature"}, {"bbox": [8.580022, 47.357005, 8.580266, 47.357136], "geometry": {"coordinates": [[[8.580022, 47.357005], [8.580047, 47.357007], [8.580072, 47.357011], [8.580095, 47.357017], [8.580119, 47.357024], [8.580141, 47.357032], [8.580162, 47.357041], [8.580181, 47.357052], [8.5802, 47.357064], [8.580216, 47.357076], [8.580232, 47.35709], [8.580245, 47.357105], [8.580257, 47.35712], [8.580266, 47.357136]]], "type": "MultiLineString"}, "id": "1745", "properties": {}, "type": "Feature"}, {"bbox": [8.525772, 47.390731, 8.52806, 47.391773], "geometry": {"coordinates": [[[8.52806, 47.390731], [8.527283, 47.391044], [8.527114, 47.391117], [8.526866, 47.391236], [8.526377, 47.391496], [8.526292, 47.391562], [8.526277, 47.391576], [8.526212, 47.391605], [8.525772, 47.391773]]], "type": "MultiLineString"}, "id": "1746", "properties": {}, "type": "Feature"}, {"bbox": [8.569583, 47.367619, 8.570302, 47.368669], "geometry": {"coordinates": [[[8.569599, 47.368669], [8.569592, 47.368655], [8.569587, 47.368642], [8.569585, 47.368628], [8.569583, 47.368614], [8.569584, 47.3686], [8.569586, 47.368586], [8.569591, 47.368572], [8.569596, 47.368559], [8.569604, 47.368546], [8.569613, 47.368533], [8.570302, 47.367619]]], "type": "MultiLineString"}, "id": "1749", "properties": {}, "type": "Feature"}, {"bbox": [8.502572, 47.3652, 8.511104, 47.367927], "geometry": {"coordinates": [[[8.511104, 47.367927], [8.510628, 47.367879], [8.509555, 47.367676], [8.508727, 47.367528], [8.507909, 47.367353], [8.507105, 47.367154], [8.506948, 47.367127], [8.506514, 47.366996], [8.506088, 47.366854], [8.505669, 47.366703], [8.505125, 47.366485], [8.504598, 47.36625], [8.504087, 47.365999], [8.504073, 47.365991], [8.503709, 47.365799], [8.502572, 47.3652]]], "type": "MultiLineString"}, "id": "1756", "properties": {}, "type": "Feature"}, {"bbox": [8.560402, 47.381467, 8.561513, 47.382111], "geometry": {"coordinates": [[[8.560402, 47.382111], [8.560478, 47.382057], [8.56055, 47.382001], [8.560616, 47.381942], [8.560673, 47.381893], [8.560735, 47.381848], [8.560803, 47.381807], [8.560876, 47.38177], [8.560953, 47.381737], [8.561513, 47.381467]]], "type": "MultiLineString"}, "id": "1758", "properties": {}, "type": "Feature"}, {"bbox": [8.525821, 47.372819, 8.52627, 47.373852], "geometry": {"coordinates": [[[8.525821, 47.372819], [8.525946, 47.373048], [8.52627, 47.373852]]], "type": "MultiLineString"}, "id": "1759", "properties": {}, "type": "Feature"}, {"bbox": [8.570218, 47.405449, 8.571182, 47.406552], "geometry": {"coordinates": [[[8.570717, 47.405449], [8.571032, 47.405895], [8.571113, 47.40601], [8.571182, 47.406083], [8.570764, 47.406296], [8.570218, 47.406552]]], "type": "MultiLineString"}, "id": "1760", "properties": {}, "type": "Feature"}, {"bbox": [8.531421, 47.34069, 8.532453, 47.340892], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.532368, 47.340698], [8.532281, 47.340692], [8.532194, 47.34069], [8.532107, 47.340694], [8.532021, 47.340704], [8.531936, 47.340718], [8.531854, 47.340738], [8.531775, 47.340762], [8.531699, 47.340792], [8.531627, 47.340825], [8.531597, 47.340842], [8.531565, 47.340856], [8.531531, 47.340868], [8.531495, 47.340878], [8.531459, 47.340886], [8.531421, 47.340892]]], "type": "MultiLineString"}, "id": "1769", "properties": {}, "type": "Feature"}, {"bbox": [8.556374, 47.370261, 8.560851, 47.372814], "geometry": {"coordinates": [[[8.556374, 47.370261], [8.556445, 47.370298], [8.556707, 47.370423], [8.556882, 47.370514], [8.55705, 47.370604], [8.557207, 47.370703], [8.557353, 47.370809], [8.557486, 47.370924], [8.557809, 47.371356], [8.557911, 47.371426], [8.558179, 47.371529], [8.558738, 47.371764], [8.558917, 47.371844], [8.559447, 47.371814], [8.559496, 47.371812], [8.559546, 47.371813], [8.559596, 47.371818], [8.559645, 47.371825], [8.559692, 47.371835], [8.559738, 47.371848], [8.559783, 47.371864], [8.560073, 47.372107], [8.560288, 47.372317], [8.560851, 47.372814]]], "type": "MultiLineString"}, "id": "1778", "properties": {}, "type": "Feature"}, {"bbox": [8.567691, 47.363255, 8.568828, 47.364867], "geometry": {"coordinates": [[[8.567691, 47.364867], [8.567756, 47.3647], [8.568155, 47.36411], [8.568453, 47.363678], [8.568828, 47.363255]]], "type": "MultiLineString"}, "id": "1780", "properties": {}, "type": "Feature"}, {"bbox": [8.55047, 47.408108, 8.563857, 47.409549], "geometry": {"coordinates": [[[8.55047, 47.408615], [8.550651, 47.408609], [8.550831, 47.408592], [8.551008, 47.408564], [8.551181, 47.408526], [8.552212, 47.40825], [8.552459, 47.408189], [8.552771, 47.408142], [8.553087, 47.408115], [8.553406, 47.408108], [8.553441, 47.408108], [8.553475, 47.408109], [8.55351, 47.40811], [8.554946, 47.408134], [8.555023, 47.408136], [8.556262, 47.408156], [8.556578, 47.408161], [8.557546, 47.408177], [8.558583, 47.408194], [8.558714, 47.408196], [8.558858, 47.408199], [8.558958, 47.4082], [8.56024, 47.408221], [8.560362, 47.408223], [8.560483, 47.408225], [8.560777, 47.40823], [8.560957, 47.40824], [8.561135, 47.408262], [8.561309, 47.408296], [8.561468, 47.408338], [8.561621, 47.40839], [8.561766, 47.408451], [8.561902, 47.408521], [8.562721, 47.408952], [8.562783, 47.408985], [8.563816, 47.409528], [8.563857, 47.409549]]], "type": "MultiLineString"}, "id": "1782", "properties": {}, "type": "Feature"}, {"bbox": [8.52501, 47.378786, 8.527199, 47.379952], "geometry": {"coordinates": [[[8.527199, 47.378786], [8.526057, 47.379386], [8.525521, 47.379674], [8.52501, 47.379952]]], "type": "MultiLineString"}, "id": "1785", "properties": {}, "type": "Feature"}, {"bbox": [8.521546, 47.410547, 8.523927, 47.411159], "geometry": {"coordinates": [[[8.523927, 47.410868], [8.523599, 47.410723], [8.523258, 47.410547], [8.52286, 47.410927], [8.522807, 47.410973], [8.522748, 47.411015], [8.522683, 47.411054], [8.522614, 47.411088], [8.52254, 47.411117], [8.522462, 47.411142], [8.522415, 47.411151], [8.522368, 47.411156], [8.52232, 47.411159], [8.522271, 47.411159], [8.522223, 47.411156], [8.522176, 47.41115], [8.522129, 47.411141], [8.521839, 47.410952], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "1791", "properties": {}, "type": "Feature"}, {"bbox": [8.599763, 47.356831, 8.600219, 47.357848], "geometry": {"coordinates": [[[8.599956, 47.356831], [8.600046, 47.356915], [8.600083, 47.356947], [8.600116, 47.35698], [8.600146, 47.357015], [8.60017, 47.357052], [8.60019, 47.35709], [8.600204, 47.357129], [8.600214, 47.357169], [8.600219, 47.35721], [8.600219, 47.35725], [8.600213, 47.35729], [8.600203, 47.35733], [8.600187, 47.357369], [8.600166, 47.357407], [8.600049, 47.357561], [8.599914, 47.357708], [8.599763, 47.357848]]], "type": "MultiLineString"}, "id": "1794", "properties": {}, "type": "Feature"}, {"bbox": [8.506826, 47.398917, 8.509822, 47.401806], "geometry": {"coordinates": [[[8.509792, 47.398917], [8.509817, 47.399018], [8.50982, 47.399031], [8.509822, 47.399044], [8.509821, 47.399058], [8.50982, 47.399071], [8.509816, 47.399084], [8.509811, 47.399097], [8.509804, 47.39911], [8.509796, 47.399122], [8.509786, 47.399133], [8.509635, 47.399259], [8.509508, 47.399368], [8.509329, 47.399539], [8.509215, 47.399674], [8.508989, 47.399929], [8.508917, 47.400023], [8.508726, 47.4002], [8.508583, 47.40035], [8.507905, 47.400864], [8.507629, 47.40106], [8.507467, 47.401184], [8.507324, 47.401307], [8.50715, 47.401475], [8.506847, 47.401785], [8.506826, 47.401806]]], "type": "MultiLineString"}, "id": "1798", "properties": {}, "type": "Feature"}, {"bbox": [8.55641, 47.372317, 8.560288, 47.37441], "geometry": {"coordinates": [[[8.55641, 47.37441], [8.556612, 47.374234], [8.55733, 47.373604], [8.557535, 47.373398], [8.557854, 47.373129], [8.557896, 47.373097], [8.557942, 47.373067], [8.557992, 47.373041], [8.558045, 47.373017], [8.558101, 47.372997], [8.558159, 47.37298], [8.55822, 47.372967], [8.558281, 47.372958], [8.558344, 47.372952], [8.558408, 47.372951], [8.558471, 47.372953], [8.558534, 47.372959], [8.558595, 47.372969], [8.558651, 47.372976], [8.558708, 47.37298], [8.558764, 47.372981], [8.558821, 47.372979], [8.558877, 47.372973], [8.558933, 47.372965], [8.558987, 47.372953], [8.559039, 47.372938], [8.55909, 47.37292], [8.559108, 47.372912], [8.560146, 47.372403], [8.560288, 47.372317]]], "type": "MultiLineString"}, "id": "1800", "properties": {}, "type": "Feature"}, {"bbox": [8.569482, 47.414542, 8.571021, 47.414691], "geometry": {"coordinates": [[[8.571021, 47.414691], [8.570846, 47.414659], [8.570445, 47.414581], [8.570356, 47.414563], [8.570265, 47.414551], [8.570173, 47.414544], [8.57008, 47.414542], [8.569987, 47.414546], [8.569482, 47.414564]]], "type": "MultiLineString"}, "id": "1803", "properties": {}, "type": "Feature"}, {"bbox": [8.472072, 47.390242, 8.474384, 47.390955], "geometry": {"coordinates": [[[8.474384, 47.390752], [8.474281, 47.390725], [8.473817, 47.390382], [8.473785, 47.390357], [8.473749, 47.390334], [8.473711, 47.390314], [8.47367, 47.390296], [8.473627, 47.39028], [8.473582, 47.390267], [8.473536, 47.390256], [8.473488, 47.390249], [8.47344, 47.390244], [8.473391, 47.390242], [8.473342, 47.390243], [8.473294, 47.390247], [8.473246, 47.390254], [8.473199, 47.390264], [8.473154, 47.390277], [8.47311, 47.390292], [8.473069, 47.390309], [8.47303, 47.390329], [8.472994, 47.390352], [8.472961, 47.390376], [8.472677, 47.390578], [8.47238, 47.390771], [8.472072, 47.390955]]], "type": "MultiLineString"}, "id": "1817", "properties": {}, "type": "Feature"}, {"bbox": [8.565303, 47.360292, 8.567019, 47.361548], "geometry": {"coordinates": [[[8.565303, 47.361548], [8.565326, 47.361531], [8.565497, 47.361406], [8.565626, 47.361311], [8.566521, 47.360669], [8.56673, 47.36052], [8.56683, 47.360446], [8.566927, 47.360371], [8.567019, 47.360292]]], "type": "MultiLineString"}, "id": "1823", "properties": {}, "type": "Feature"}, {"bbox": [8.531384, 47.36337, 8.53353, 47.363924], "geometry": {"coordinates": [[[8.53353, 47.36337], [8.533416, 47.363373], [8.533302, 47.363383], [8.53319, 47.363399], [8.53308, 47.363423], [8.532011, 47.363744], [8.531384, 47.363924]]], "type": "MultiLineString"}, "id": "1824", "properties": {}, "type": "Feature"}, {"bbox": [8.484755, 47.407938, 8.486203, 47.410186], "geometry": {"coordinates": [[[8.484836, 47.407938], [8.484897, 47.407959], [8.484954, 47.407984], [8.485008, 47.408012], [8.485057, 47.408044], [8.48511, 47.408073], [8.485167, 47.4081], [8.485227, 47.408124], [8.485289, 47.408144], [8.485707, 47.408257], [8.485801, 47.408284], [8.48589, 47.408317], [8.485975, 47.408355], [8.486056, 47.408397], [8.486083, 47.408416], [8.486107, 47.408436], [8.48613, 47.408458], [8.486149, 47.40848], [8.486166, 47.408504], [8.48618, 47.408528], [8.486191, 47.408553], [8.486198, 47.408579], [8.486203, 47.408605], [8.4862, 47.408627], [8.486195, 47.408649], [8.486187, 47.40867], [8.486176, 47.408691], [8.486162, 47.40871], [8.486147, 47.40873], [8.486129, 47.408748], [8.486108, 47.408765], [8.485765, 47.409036], [8.485423, 47.409308], [8.48508, 47.409581], [8.485021, 47.409628], [8.484967, 47.409679], [8.48492, 47.409733], [8.48488, 47.409789], [8.484847, 47.409847], [8.484763, 47.410078], [8.484758, 47.410096], [8.484755, 47.410114], [8.484755, 47.410133], [8.484757, 47.410151], [8.484761, 47.410169], [8.484764, 47.41018], [8.484764, 47.410186]]], "type": "MultiLineString"}, "id": "1825", "properties": {}, "type": "Feature"}, {"bbox": [8.539266, 47.375675, 8.540898, 47.376056], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540846, 47.376019], [8.539548, 47.375675], [8.539266, 47.375741]]], "type": "MultiLineString"}, "id": "1826", "properties": {}, "type": "Feature"}, {"bbox": [8.528053, 47.377945, 8.529117, 47.378943], "geometry": {"coordinates": [[[8.528053, 47.377945], [8.52858, 47.378443], [8.529117, 47.378943]]], "type": "MultiLineString"}, "id": "1827", "properties": {}, "type": "Feature"}, {"bbox": [8.558585, 47.352312, 8.559116, 47.352904], "geometry": {"coordinates": [[[8.558954, 47.352312], [8.558771, 47.352445], [8.558744, 47.352481], [8.558585, 47.352617], [8.559116, 47.352904]]], "type": "MultiLineString"}, "id": "1829", "properties": {}, "type": "Feature"}, {"bbox": [8.522589, 47.342518, 8.522657, 47.343594], "geometry": {"coordinates": [[[8.522619, 47.343594], [8.522592, 47.343492], [8.522589, 47.343481], [8.522657, 47.342518]]], "type": "MultiLineString"}, "id": "1831", "properties": {}, "type": "Feature"}, {"bbox": [8.540407, 47.417721, 8.542113, 47.418201], "geometry": {"coordinates": [[[8.542113, 47.418201], [8.542007, 47.418161], [8.541438, 47.417856], [8.541344, 47.417813], [8.541311, 47.417798], [8.541275, 47.417785], [8.541238, 47.417775], [8.541199, 47.417767], [8.54116, 47.417761], [8.54112, 47.417759], [8.540707, 47.417735], [8.540407, 47.417721]]], "type": "MultiLineString"}, "id": "1832", "properties": {}, "type": "Feature"}, {"bbox": [8.516768, 47.370663, 8.520406, 47.373157], "geometry": {"coordinates": [[[8.520406, 47.373157], [8.519626, 47.372725], [8.518858, 47.372299], [8.518171, 47.371906], [8.517559, 47.371577], [8.517291, 47.37143], [8.517247, 47.371405], [8.517206, 47.371377], [8.517168, 47.371348], [8.517134, 47.371316], [8.517104, 47.371282], [8.517078, 47.371247], [8.516798, 47.370881], [8.516784, 47.370851], [8.516775, 47.37082], [8.516769, 47.370788], [8.516768, 47.370756], [8.516771, 47.370725], [8.516778, 47.370693], [8.51679, 47.370663]]], "type": "MultiLineString"}, "id": "1833", "properties": {}, "type": "Feature"}, {"bbox": [8.573332, 47.362256, 8.573761, 47.363095], "geometry": {"coordinates": [[[8.573332, 47.362256], [8.573517, 47.36245], [8.57357, 47.36267], [8.573652, 47.362885], [8.573761, 47.363095]]], "type": "MultiLineString"}, "id": "1834", "properties": {}, "type": "Feature"}, {"bbox": [8.528744, 47.374518, 8.532429, 47.376792], "geometry": {"coordinates": [[[8.532429, 47.374518], [8.531811, 47.374818], [8.531713, 47.374874], [8.53066, 47.37557], [8.530608, 47.375605], [8.530495, 47.375679], [8.529738, 47.376179], [8.529615, 47.37626], [8.529474, 47.376353], [8.528868, 47.376753], [8.52885, 47.376762], [8.52883, 47.37677], [8.52881, 47.376777], [8.528789, 47.376783], [8.528767, 47.376788], [8.528744, 47.376792]]], "type": "MultiLineString"}, "id": "1836", "properties": {}, "type": "Feature"}, {"bbox": [8.501041, 47.401442, 8.503077, 47.402423], "geometry": {"coordinates": [[[8.501041, 47.401442], [8.501103, 47.401522], [8.501458, 47.401966], [8.501494, 47.402004], [8.501526, 47.402036], [8.501561, 47.402063], [8.501597, 47.402084], [8.501636, 47.402103], [8.501678, 47.40212], [8.501721, 47.402134], [8.501766, 47.402145], [8.501812, 47.402153], [8.501859, 47.402159], [8.501907, 47.402161], [8.501955, 47.402161], [8.502003, 47.402158], [8.502285, 47.402147], [8.502349, 47.402146], [8.502413, 47.40215], [8.502475, 47.402157], [8.502537, 47.402168], [8.502597, 47.402182], [8.502655, 47.4022], [8.502711, 47.402221], [8.502764, 47.402245], [8.502985, 47.402385], [8.503077, 47.402423]]], "type": "MultiLineString"}, "id": "1837", "properties": {}, "type": "Feature"}, {"bbox": [8.53983, 47.426636, 8.544382, 47.431186], "geometry": {"coordinates": [[[8.544382, 47.426636], [8.544111, 47.427083], [8.544047, 47.427156], [8.543947, 47.427208], [8.543566, 47.427357], [8.543441, 47.427405], [8.543323, 47.427454], [8.543212, 47.427511], [8.543109, 47.427574], [8.543015, 47.427643], [8.542932, 47.427718], [8.542874, 47.427782], [8.54282, 47.427848], [8.542771, 47.427915], [8.542754, 47.42794], [8.542738, 47.427965], [8.542722, 47.427991], [8.542681, 47.428098], [8.542575, 47.42844], [8.542526, 47.428595], [8.5425, 47.428606], [8.542489, 47.428612], [8.542479, 47.428619], [8.542469, 47.428626], [8.542461, 47.428634], [8.542453, 47.428643], [8.542445, 47.428652], [8.542437, 47.428661], [8.542429, 47.42867], [8.54242, 47.428679], [8.542412, 47.428689], [8.542389, 47.428713], [8.542366, 47.428737], [8.542344, 47.428761], [8.542324, 47.428782], [8.542304, 47.428802], [8.542284, 47.428822], [8.541886, 47.429209], [8.541579, 47.429483], [8.541062, 47.429924], [8.540674, 47.430255], [8.540597, 47.430381], [8.540131, 47.430949], [8.540081, 47.431016], [8.54005, 47.43105], [8.540014, 47.431082], [8.539974, 47.431112], [8.539931, 47.431139], [8.539884, 47.431163], [8.539834, 47.431185], [8.53983, 47.431186]]], "type": "MultiLineString"}, "id": "1840", "properties": {}, "type": "Feature"}, {"bbox": [8.56909, 47.378185, 8.571536, 47.378627], "geometry": {"coordinates": [[[8.56909, 47.378627], [8.569127, 47.378502], [8.56913, 47.378488], [8.569134, 47.378473], [8.569141, 47.378459], [8.569149, 47.378446], [8.569159, 47.378433], [8.569171, 47.378421], [8.569184, 47.378409], [8.569198, 47.378398], [8.569214, 47.378389], [8.569231, 47.37838], [8.569249, 47.378372], [8.569268, 47.378365], [8.569288, 47.378359], [8.569308, 47.378355], [8.569329, 47.378352], [8.570466, 47.378201], [8.570546, 47.37819], [8.570627, 47.378185], [8.570709, 47.378185], [8.57079, 47.37819], [8.57087, 47.3782], [8.570948, 47.378215], [8.571464, 47.378332], [8.571536, 47.378353]]], "type": "MultiLineString"}, "id": "1853", "properties": {}, "type": "Feature"}, {"bbox": [8.556376, 47.406635, 8.562774, 47.406992], "geometry": {"coordinates": [[[8.556376, 47.406992], [8.556712, 47.40689], [8.557059, 47.406804], [8.557414, 47.406736], [8.557859, 47.406677], [8.558311, 47.406643], [8.558764, 47.406635], [8.560408, 47.406659], [8.56262, 47.406697], [8.562774, 47.406734]]], "type": "MultiLineString"}, "id": "1855", "properties": {}, "type": "Feature"}, {"bbox": [8.544979, 47.377149, 8.547323, 47.380882], "geometry": {"coordinates": [[[8.547323, 47.377149], [8.547149, 47.377472], [8.547117, 47.377529], [8.546653, 47.378272], [8.546628, 47.378312], [8.546397, 47.378681], [8.546148, 47.379077], [8.545869, 47.379528], [8.545507, 47.380014], [8.545449, 47.380114], [8.545149, 47.380609], [8.545, 47.380857], [8.544979, 47.380882]]], "type": "MultiLineString"}, "id": "1861", "properties": {}, "type": "Feature"}, {"bbox": [8.551116, 47.386631, 8.553783, 47.390772], "geometry": {"coordinates": [[[8.551116, 47.389598], [8.55114, 47.389597], [8.551165, 47.389597], [8.551189, 47.389599], [8.551213, 47.389602], [8.551237, 47.389606], [8.55126, 47.389612], [8.551282, 47.38962], [8.551303, 47.389628], [8.551323, 47.389638], [8.551341, 47.389649], [8.551358, 47.389661], [8.551373, 47.389674], [8.551387, 47.389688], [8.551399, 47.389703], [8.551408, 47.389718], [8.551416, 47.389734], [8.551422, 47.38975], [8.551438, 47.389834], [8.551528, 47.390608], [8.551531, 47.390623], [8.551536, 47.390639], [8.551543, 47.390653], [8.551551, 47.390668], [8.551562, 47.390682], [8.551574, 47.390695], [8.551587, 47.390707], [8.551603, 47.390719], [8.551619, 47.390729], [8.551637, 47.390739], [8.551657, 47.390747], [8.551677, 47.390754], [8.551698, 47.39076], [8.55172, 47.390765], [8.551742, 47.390769], [8.551764, 47.390771], [8.551787, 47.390772], [8.55181, 47.390771], [8.551833, 47.390769], [8.551855, 47.390766], [8.551877, 47.390761], [8.551898, 47.390755], [8.551918, 47.390748], [8.551938, 47.39074], [8.551956, 47.390731], [8.551973, 47.39072], [8.551988, 47.390709], [8.552002, 47.390697], [8.552015, 47.390684], [8.552025, 47.39067], [8.552034, 47.390656], [8.552041, 47.390641], [8.552046, 47.390626], [8.552049, 47.390611], [8.552051, 47.390595], [8.552016, 47.390015], [8.55198, 47.389652], [8.551924, 47.389289], [8.551848, 47.388929], [8.55182, 47.388819], [8.551808, 47.388741], [8.551806, 47.388662], [8.551814, 47.388584], [8.551832, 47.388506], [8.55186, 47.38843], [8.551977, 47.388168], [8.552044, 47.388019], [8.552067, 47.387969], [8.552097, 47.387921], [8.552133, 47.387875], [8.552175, 47.387832], [8.552223, 47.387791], [8.552305, 47.387732], [8.55238, 47.387669], [8.552447, 47.387602], [8.552487, 47.387551], [8.55252, 47.387497], [8.552547, 47.387441], [8.552565, 47.387384], [8.552572, 47.387353], [8.552577, 47.387323], [8.55258, 47.387292], [8.552595, 47.387123], [8.552608, 47.387031], [8.55263, 47.386939], [8.552659, 47.386848], [8.552684, 47.386782], [8.552688, 47.386768], [8.552694, 47.386754], [8.552701, 47.38674], [8.55271, 47.386726], [8.552721, 47.386713], [8.552734, 47.3867], [8.552749, 47.386688], [8.552765, 47.386678], [8.552782, 47.386668], [8.5528, 47.386659], [8.55282, 47.386651], [8.55284, 47.386644], [8.552861, 47.386639], [8.552883, 47.386635], [8.552905, 47.386632], [8.552928, 47.386631], [8.55295, 47.386631], [8.552973, 47.386632], [8.552995, 47.386635], [8.553017, 47.386639], [8.553038, 47.386644], [8.553059, 47.38665], [8.553078, 47.386658], [8.553097, 47.386667], [8.553114, 47.386676], [8.55313, 47.386687], [8.553145, 47.386699], [8.553158, 47.386711], [8.553169, 47.386725], [8.553179, 47.386739], [8.553186, 47.386753], [8.553192, 47.386768], [8.553196, 47.386783], [8.553198, 47.386798], [8.553198, 47.386813], [8.553196, 47.386829], [8.553193, 47.386844], [8.553187, 47.386859], [8.553115, 47.386991], [8.553097, 47.387036], [8.553085, 47.387082], [8.55308, 47.387128], [8.553081, 47.387174], [8.5531, 47.387285], [8.553101, 47.387331], [8.553097, 47.387377], [8.553089, 47.387422], [8.55307, 47.387479], [8.553044, 47.387534], [8.553009, 47.387587], [8.552823, 47.387815], [8.552789, 47.387851], [8.55276, 47.38789], [8.552736, 47.38793], [8.552718, 47.387972], [8.552704, 47.388015], [8.552697, 47.388058], [8.552673, 47.388557], [8.552676, 47.38857], [8.55268, 47.388582], [8.552686, 47.388595], [8.552694, 47.388607], [8.552703, 47.388618], [8.552713, 47.388629], [8.552724, 47.388639], [8.552737, 47.388649], [8.552766, 47.388629], [8.552791, 47.388607], [8.552813, 47.388584], [8.552832, 47.38856], [8.552847, 47.388534], [8.552859, 47.388508], [8.552868, 47.388481], [8.552872, 47.388453], [8.552893, 47.388393], [8.552921, 47.388335], [8.552957, 47.388278], [8.553, 47.388224], [8.553441, 47.387756], [8.553477, 47.387725], [8.553517, 47.387695], [8.55356, 47.387668], [8.553632, 47.387629], [8.553707, 47.387591], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "1862", "properties": {}, "type": "Feature"}, {"bbox": [8.507376, 47.419988, 8.509512, 47.421008], "geometry": {"coordinates": [[[8.509512, 47.419988], [8.509511, 47.419989], [8.509445, 47.420087], [8.509372, 47.420184], [8.509291, 47.420277], [8.509228, 47.420335], [8.509159, 47.42039], [8.509085, 47.420443], [8.509085, 47.420443], [8.509084, 47.420444], [8.509084, 47.420445], [8.509078, 47.420454], [8.509071, 47.420464], [8.509063, 47.420473], [8.509053, 47.420482], [8.509043, 47.42049], [8.509031, 47.420497], [8.508953, 47.420542], [8.508869, 47.420583], [8.50878, 47.420619], [8.508767, 47.420623], [8.508753, 47.420628], [8.508739, 47.420633], [8.508682, 47.42065], [8.508624, 47.420666], [8.508566, 47.420682], [8.507376, 47.421008]]], "type": "MultiLineString"}, "id": "1864", "properties": {}, "type": "Feature"}, {"bbox": [8.534997, 47.389308, 8.536312, 47.389938], "geometry": {"coordinates": [[[8.534997, 47.389308], [8.535194, 47.389436], [8.535852, 47.38981], [8.53591, 47.389839], [8.536024, 47.389904], [8.536038, 47.389911], [8.536053, 47.389918], [8.536069, 47.389924], [8.536085, 47.389929], [8.536102, 47.389933], [8.536119, 47.389936], [8.536137, 47.389937], [8.536155, 47.389938], [8.536173, 47.389938], [8.536312, 47.389937]]], "type": "MultiLineString"}, "id": "1866", "properties": {}, "type": "Feature"}, {"bbox": [8.46804, 47.38901, 8.46932, 47.389396], "geometry": {"coordinates": [[[8.46932, 47.389396], [8.469018, 47.389274], [8.468702, 47.389168], [8.468376, 47.38908], [8.46804, 47.38901]]], "type": "MultiLineString"}, "id": "1872", "properties": {}, "type": "Feature"}, {"bbox": [8.526349, 47.353446, 8.527047, 47.353499], "geometry": {"coordinates": [[[8.527047, 47.353499], [8.526349, 47.353446]]], "type": "MultiLineString"}, "id": "1874", "properties": {}, "type": "Feature"}, {"bbox": [8.54418, 47.412614, 8.545162, 47.413043], "geometry": {"coordinates": [[[8.54418, 47.413043], [8.544272, 47.413024], [8.544336, 47.413011], [8.544448, 47.41297], [8.545162, 47.412614]]], "type": "MultiLineString"}, "id": "1875", "properties": {}, "type": "Feature"}, {"bbox": [8.494172, 47.387138, 8.497275, 47.38748], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.494318, 47.387305], [8.495772, 47.387378], [8.497081, 47.38748], [8.497275, 47.387411]]], "type": "MultiLineString"}, "id": "1877", "properties": {}, "type": "Feature"}, {"bbox": [8.542981, 47.423006, 8.543977, 47.426387], "geometry": {"coordinates": [[[8.543271, 47.423006], [8.543107, 47.423453], [8.543001, 47.423728], [8.542987, 47.423789], [8.542981, 47.423851], [8.542982, 47.423912], [8.542992, 47.423974], [8.54301, 47.424034], [8.543036, 47.424093], [8.54307, 47.424151], [8.543164, 47.424296], [8.543421, 47.42469], [8.54353, 47.424856], [8.54374, 47.42522], [8.543753, 47.42525], [8.543765, 47.425281], [8.543775, 47.425312], [8.543784, 47.425343], [8.543791, 47.425374], [8.543796, 47.425405], [8.543917, 47.425842], [8.543924, 47.425874], [8.543977, 47.426103], [8.543977, 47.426136], [8.543973, 47.426169], [8.543964, 47.426202], [8.543951, 47.426234], [8.54393, 47.426274], [8.543905, 47.426313], [8.543874, 47.426351], [8.54384, 47.426387]]], "type": "MultiLineString"}, "id": "1878", "properties": {}, "type": "Feature"}, {"bbox": [8.496527, 47.385164, 8.500916, 47.386451], "geometry": {"coordinates": [[[8.500916, 47.385164], [8.500246, 47.385363], [8.497921, 47.386044], [8.496527, 47.386451]]], "type": "MultiLineString"}, "id": "1880", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.426198, 8.536957, 47.428751], "geometry": {"coordinates": [[[8.536485, 47.426198], [8.536487, 47.426204], [8.536578, 47.426482], [8.53672, 47.426928], [8.536939, 47.427616], [8.53695, 47.427661], [8.536956, 47.427706], [8.536957, 47.427752], [8.536956, 47.427778], [8.536953, 47.427805], [8.536949, 47.427832], [8.536854, 47.428334], [8.536841, 47.428388], [8.536828, 47.428442], [8.536814, 47.428496], [8.53678, 47.428751]]], "type": "MultiLineString"}, "id": "1883", "properties": {}, "type": "Feature"}, {"bbox": [8.502432, 47.356971, 8.506546, 47.361258], "geometry": {"coordinates": [[[8.506546, 47.356971], [8.506456, 47.35706], [8.505326, 47.358344], [8.504853, 47.358891], [8.504329, 47.359417], [8.503757, 47.35992], [8.503659, 47.359965], [8.503563, 47.360023], [8.503474, 47.360086], [8.503392, 47.360153], [8.503319, 47.360225], [8.503255, 47.3603], [8.5032, 47.360379], [8.503155, 47.360461], [8.503135, 47.360532], [8.503107, 47.360602], [8.50307, 47.360671], [8.503026, 47.360737], [8.502973, 47.3608], [8.502914, 47.360861], [8.502432, 47.361258]]], "type": "MultiLineString"}, "id": "1892", "properties": {}, "type": "Feature"}, {"bbox": [8.484357, 47.375667, 8.484738, 47.377024], "geometry": {"coordinates": [[[8.484616, 47.377024], [8.484738, 47.376339], [8.484721, 47.376034], [8.484715, 47.375996], [8.484704, 47.375958], [8.484688, 47.375921], [8.484668, 47.375885], [8.484642, 47.37585], [8.484613, 47.375817], [8.484579, 47.375786], [8.484541, 47.375757], [8.4845, 47.37573], [8.484455, 47.375706], [8.484407, 47.375685], [8.484357, 47.375667]]], "type": "MultiLineString"}, "id": "1899", "properties": {}, "type": "Feature"}, {"bbox": [8.566827, 47.402268, 8.569749, 47.403132], "geometry": {"coordinates": [[[8.569749, 47.403132], [8.569724, 47.403113], [8.569669, 47.403078], [8.569233, 47.402785], [8.569197, 47.402764], [8.56916, 47.402746], [8.56912, 47.40273], [8.569078, 47.402717], [8.569035, 47.402706], [8.56899, 47.402697], [8.568945, 47.402691], [8.568862, 47.402679], [8.568777, 47.402671], [8.568693, 47.402667], [8.568653, 47.402667], [8.568613, 47.402667], [8.568574, 47.402669], [8.568416, 47.40267], [8.568258, 47.402662], [8.568101, 47.402646], [8.567429, 47.402516], [8.56722, 47.402443], [8.567019, 47.40236], [8.566827, 47.402268]]], "type": "MultiLineString"}, "id": "1911", "properties": {}, "type": "Feature"}, {"bbox": [8.56995, 47.362141, 8.57086, 47.363517], "geometry": {"coordinates": [[[8.57086, 47.362141], [8.57086, 47.362141], [8.570528, 47.362611], [8.570428, 47.362755], [8.570328, 47.3629], [8.570236, 47.363046], [8.570132, 47.363213], [8.570089, 47.363283], [8.569992, 47.363455], [8.56995, 47.363517]]], "type": "MultiLineString"}, "id": "1913", "properties": {}, "type": "Feature"}, {"bbox": [8.502087, 47.420982, 8.503505, 47.422641], "geometry": {"coordinates": [[[8.502087, 47.420982], [8.502183, 47.421106], [8.502821, 47.421936], [8.503182, 47.422326], [8.503347, 47.422487], [8.503505, 47.422641]]], "type": "MultiLineString"}, "id": "1915", "properties": {}, "type": "Feature"}, {"bbox": [8.504401, 47.423962, 8.504442, 47.424033], "geometry": {"coordinates": [[[8.504401, 47.423962], [8.504442, 47.424033]]], "type": "MultiLineString"}, "id": "1916", "properties": {}, "type": "Feature"}, {"bbox": [8.527357, 47.377807, 8.529852, 47.379054], "geometry": {"coordinates": [[[8.529852, 47.377807], [8.52858, 47.378443], [8.528475, 47.378496], [8.527357, 47.379054]]], "type": "MultiLineString"}, "id": "1918", "properties": {}, "type": "Feature"}, {"bbox": [8.550495, 47.362125, 8.551476, 47.363564], "geometry": {"coordinates": [[[8.550495, 47.363564], [8.550717, 47.36324], [8.551019, 47.362822], [8.551058, 47.362793], [8.551106, 47.362761], [8.551219, 47.362588], [8.551219, 47.362542], [8.551242, 47.362495], [8.551476, 47.362125]]], "type": "MultiLineString"}, "id": "1921", "properties": {}, "type": "Feature"}, {"bbox": [8.536154, 47.429936, 8.540674, 47.430345], "geometry": {"coordinates": [[[8.540674, 47.430255], [8.540297, 47.430079], [8.540235, 47.430054], [8.54017, 47.430031], [8.540104, 47.430011], [8.539987, 47.429981], [8.539867, 47.429959], [8.539744, 47.429944], [8.53962, 47.429936], [8.539512, 47.429937], [8.539405, 47.42994], [8.539298, 47.429945], [8.53905, 47.429957], [8.538328, 47.429995], [8.537934, 47.429987], [8.537817, 47.429995], [8.536903, 47.430189], [8.536815, 47.430208], [8.536514, 47.430264], [8.536218, 47.430329], [8.536154, 47.430345]]], "type": "MultiLineString"}, "id": "1923", "properties": {}, "type": "Feature"}, {"bbox": [8.48309, 47.373943, 8.483788, 47.374536], "geometry": {"coordinates": [[[8.48309, 47.374536], [8.48351, 47.374137], [8.483788, 47.373943]]], "type": "MultiLineString"}, "id": "1932", "properties": {}, "type": "Feature"}, {"bbox": [8.548663, 47.382559, 8.548906, 47.383401], "geometry": {"coordinates": [[[8.548663, 47.383401], [8.548905, 47.38256], [8.548906, 47.382559]]], "type": "MultiLineString"}, "id": "1936", "properties": {}, "type": "Feature"}, {"bbox": [8.491448, 47.375615, 8.494846, 47.376275], "geometry": {"coordinates": [[[8.491448, 47.376044], [8.491478, 47.376027], [8.491576, 47.37598], [8.49168, 47.37594], [8.491789, 47.375906], [8.491902, 47.37588], [8.492739, 47.375751], [8.493497, 47.375634], [8.49358, 47.375622], [8.493665, 47.375616], [8.493749, 47.375615], [8.493834, 47.375619], [8.493917, 47.375629], [8.493999, 47.375643], [8.494079, 47.375663], [8.494156, 47.375687], [8.494229, 47.375717], [8.494302, 47.375753], [8.49437, 47.375793], [8.494432, 47.375838], [8.494487, 47.375887], [8.494846, 47.376275]]], "type": "MultiLineString"}, "id": "1940", "properties": {}, "type": "Feature"}, {"bbox": [8.539962, 47.367905, 8.541785, 47.368094], "geometry": {"coordinates": [[[8.541785, 47.368094], [8.541127, 47.368059], [8.540985, 47.368053], [8.540536, 47.367991], [8.540127, 47.367934], [8.539962, 47.367905]]], "type": "MultiLineString"}, "id": "1948", "properties": {}, "type": "Feature"}, {"bbox": [8.545661, 47.382089, 8.547334, 47.384965], "geometry": {"coordinates": [[[8.547334, 47.382089], [8.546759, 47.382799], [8.546735, 47.382893], [8.546165, 47.383827], [8.546132, 47.383901], [8.545663, 47.384697], [8.545661, 47.384708], [8.545661, 47.38472], [8.545663, 47.384732], [8.545666, 47.384744], [8.545671, 47.384755], [8.545678, 47.384766], [8.545685, 47.384777], [8.545689, 47.384784], [8.545694, 47.384792], [8.5457, 47.384799], [8.545707, 47.384806], [8.545715, 47.384812], [8.545723, 47.384818], [8.545733, 47.384823], [8.545743, 47.384828], [8.545753, 47.384832], [8.546053, 47.384956], [8.546067, 47.384959], [8.546082, 47.384962], [8.546097, 47.384964], [8.546112, 47.384965], [8.546127, 47.384965], [8.546142, 47.384965], [8.546157, 47.384963], [8.546172, 47.384961], [8.546187, 47.384957], [8.5462, 47.384953], [8.546214, 47.384948], [8.546227, 47.384943], [8.546238, 47.384936], [8.54625, 47.384929], [8.546439, 47.384754], [8.546589, 47.384592]]], "type": "MultiLineString"}, "id": "1951", "properties": {}, "type": "Feature"}, {"bbox": [8.546779, 47.417327, 8.547751, 47.418507], "geometry": {"coordinates": [[[8.546779, 47.417327], [8.546865, 47.417413], [8.547689, 47.418273], [8.547709, 47.418302], [8.547725, 47.418332], [8.547736, 47.418363], [8.547743, 47.418394], [8.547746, 47.418426], [8.547751, 47.418507]]], "type": "MultiLineString"}, "id": "1952", "properties": {}, "type": "Feature"}, {"bbox": [8.528854, 47.343938, 8.52996, 47.344144], "geometry": {"coordinates": [[[8.52996, 47.344144], [8.529619, 47.344072], [8.529465, 47.344044], [8.528854, 47.343938]]], "type": "MultiLineString"}, "id": "1956", "properties": {}, "type": "Feature"}, {"bbox": [8.532697, 47.329829, 8.536046, 47.330202], "geometry": {"coordinates": [[[8.532697, 47.329829], [8.532903, 47.329872], [8.533166, 47.329926], [8.533433, 47.329971], [8.533702, 47.330009], [8.533947, 47.330035], [8.534194, 47.330054], [8.534442, 47.330068], [8.534962, 47.330087], [8.535327, 47.330108], [8.535689, 47.330147], [8.536046, 47.330202]]], "type": "MultiLineString"}, "id": "1957", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.392996, 8.531765, 47.393214], "geometry": {"coordinates": [[[8.531765, 47.392996], [8.531572, 47.39305], [8.531373, 47.393094], [8.53117, 47.393127], [8.530612, 47.393205], [8.530571, 47.393208], [8.53053, 47.393211], [8.530489, 47.393214]]], "type": "MultiLineString"}, "id": "1958", "properties": {}, "type": "Feature"}, {"bbox": [8.519511, 47.377593, 8.52235, 47.378634], "geometry": {"coordinates": [[[8.52235, 47.377593], [8.521476, 47.377897], [8.521408, 47.377923], [8.521157, 47.378019], [8.520288, 47.378342], [8.520188, 47.378382], [8.520135, 47.378402], [8.519882, 47.378495], [8.519659, 47.378578], [8.519511, 47.378634]]], "type": "MultiLineString"}, "id": "1960", "properties": {}, "type": "Feature"}, {"bbox": [8.559716, 47.379633, 8.560577, 47.380167], "geometry": {"coordinates": [[[8.559716, 47.379633], [8.560002, 47.379689], [8.560023, 47.379693], [8.560042, 47.379698], [8.560061, 47.379705], [8.560079, 47.379713], [8.560096, 47.379722], [8.560111, 47.379732], [8.560125, 47.379742], [8.560138, 47.379754], [8.560149, 47.379766], [8.560255, 47.379894], [8.5604, 47.380029], [8.560577, 47.380167]]], "type": "MultiLineString"}, "id": "1963", "properties": {}, "type": "Feature"}, {"bbox": [8.545992, 47.387698, 8.548544, 47.393841], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.547891, 47.388024], [8.547849, 47.388058], [8.547679, 47.388353], [8.547074, 47.389451], [8.546641, 47.390235], [8.546127, 47.391437], [8.54602, 47.391692], [8.546003, 47.391755], [8.545993, 47.391818], [8.545992, 47.391882], [8.546, 47.391946], [8.546016, 47.392009], [8.54604, 47.392071], [8.546072, 47.392131], [8.546112, 47.392189], [8.546149, 47.392241], [8.546178, 47.392294], [8.5462, 47.39235], [8.546215, 47.392406], [8.546223, 47.392463], [8.546223, 47.39252], [8.546182, 47.39283], [8.546052, 47.393735], [8.546042, 47.393841]]], "type": "MultiLineString"}, "id": "1964", "properties": {}, "type": "Feature"}, {"bbox": [8.53672, 47.426928, 8.538922, 47.427782], "geometry": {"coordinates": [[[8.53672, 47.426928], [8.537087, 47.426969], [8.538157, 47.427107], [8.538189, 47.427112], [8.538428, 47.427152], [8.53866, 47.427208], [8.538883, 47.427278], [8.538895, 47.427296], [8.538906, 47.427315], [8.538913, 47.427335], [8.538919, 47.427354], [8.538922, 47.427374], [8.538922, 47.427394], [8.53892, 47.427414], [8.538915, 47.427434], [8.538908, 47.427454], [8.538899, 47.427473], [8.538887, 47.427491], [8.538873, 47.427509], [8.538857, 47.427525], [8.538838, 47.427541], [8.538818, 47.427556], [8.538796, 47.427569], [8.538773, 47.427581], [8.538748, 47.427592], [8.538615, 47.427634], [8.53848, 47.427672], [8.538343, 47.427706], [8.53807, 47.427747], [8.537793, 47.427773], [8.537514, 47.427782], [8.537235, 47.427775], [8.536957, 47.427752]]], "type": "MultiLineString"}, "id": "1969", "properties": {}, "type": "Feature"}, {"bbox": [8.576059, 47.406302, 8.577842, 47.408068], "geometry": {"coordinates": [[[8.576059, 47.406302], [8.576574, 47.406809], [8.576803, 47.407044], [8.577064, 47.407297], [8.57775, 47.407985], [8.577842, 47.408068]]], "type": "MultiLineString"}, "id": "1972", "properties": {}, "type": "Feature"}, {"bbox": [8.497588, 47.374191, 8.499873, 47.376553], "geometry": {"coordinates": [[[8.499873, 47.376553], [8.499434, 47.376299], [8.499031, 47.376019], [8.498666, 47.375716], [8.498406, 47.37546], [8.498168, 47.375194], [8.497954, 47.374919], [8.497635, 47.374327], [8.497588, 47.374191]]], "type": "MultiLineString"}, "id": "1976", "properties": {}, "type": "Feature"}, {"bbox": [8.514456, 47.37777, 8.516264, 47.378477], "geometry": {"coordinates": [[[8.516264, 47.377781], [8.516068, 47.37777], [8.516055, 47.37777], [8.516041, 47.377771], [8.516028, 47.377772], [8.516015, 47.377774], [8.516002, 47.377777], [8.51599, 47.377781], [8.515978, 47.377785], [8.515967, 47.37779], [8.514812, 47.378306], [8.514456, 47.378477]]], "type": "MultiLineString"}, "id": "1984", "properties": {}, "type": "Feature"}, {"bbox": [8.565246, 47.370108, 8.566405, 47.371234], "geometry": {"coordinates": [[[8.565246, 47.370766], [8.565323, 47.370831], [8.56561, 47.371182], [8.565619, 47.37119], [8.565628, 47.371198], [8.565639, 47.371205], [8.56565, 47.371211], [8.565662, 47.371217], [8.565675, 47.371222], [8.565688, 47.371226], [8.565702, 47.371229], [8.565716, 47.371232], [8.565731, 47.371233], [8.565745, 47.371234], [8.56576, 47.371234], [8.565775, 47.371233], [8.565789, 47.371231], [8.565803, 47.371229], [8.565817, 47.371225], [8.56583, 47.371221], [8.565843, 47.371216], [8.565855, 47.371211], [8.565866, 47.371204], [8.565968, 47.371089], [8.566053, 47.370967], [8.566121, 47.370841], [8.566172, 47.370711], [8.56637, 47.370215], [8.566405, 47.370108]]], "type": "MultiLineString"}, "id": "1986", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.393214, 8.53214, 47.395678], "geometry": {"coordinates": [[[8.530489, 47.393214], [8.530572, 47.393257], [8.53069, 47.393443], [8.530836, 47.393675], [8.530982, 47.393908], [8.531032, 47.393975], [8.531081, 47.394042], [8.531333, 47.394462], [8.53167, 47.394996], [8.531799, 47.395199], [8.531954, 47.395444], [8.53214, 47.395678]]], "type": "MultiLineString"}, "id": "1989", "properties": {}, "type": "Feature"}, {"bbox": [8.58292, 47.396868, 8.585925, 47.400374], "geometry": {"coordinates": [[[8.58292, 47.396868], [8.584817, 47.397973], [8.585344, 47.398291], [8.58548, 47.398424], [8.585553, 47.398653], [8.585643, 47.39888], [8.585749, 47.399104], [8.585866, 47.399335], [8.585913, 47.399435], [8.585921, 47.399465], [8.585924, 47.399495], [8.585925, 47.399526], [8.585921, 47.399556], [8.585914, 47.399586], [8.585844, 47.39976], [8.585714, 47.400083], [8.585707, 47.400115], [8.585703, 47.400147], [8.585703, 47.40018], [8.585707, 47.400212], [8.585714, 47.400245], [8.585775, 47.400374]]], "type": "MultiLineString"}, "id": "1994", "properties": {}, "type": "Feature"}, {"bbox": [8.550711, 47.405864, 8.555733, 47.407252], "geometry": {"coordinates": [[[8.550711, 47.407252], [8.551211, 47.407159], [8.552553, 47.40691], [8.552635, 47.406895], [8.552998, 47.40684], [8.553352, 47.406762], [8.553693, 47.406662], [8.55402, 47.406541], [8.554603, 47.40633], [8.555174, 47.406104], [8.555733, 47.405864]]], "type": "MultiLineString"}, "id": "1995", "properties": {}, "type": "Feature"}, {"bbox": [8.523939, 47.378908, 8.524952, 47.379443], "geometry": {"coordinates": [[[8.524952, 47.378908], [8.52476, 47.379009], [8.524281, 47.379263], [8.523939, 47.379443]]], "type": "MultiLineString"}, "id": "2006", "properties": {}, "type": "Feature"}, {"bbox": [8.564722, 47.370917, 8.566684, 47.372496], "geometry": {"coordinates": [[[8.564722, 47.370917], [8.564813, 47.371151], [8.564862, 47.371237], [8.564922, 47.371319], [8.564994, 47.371397], [8.565077, 47.37147], [8.565169, 47.371537], [8.565474, 47.371749], [8.565599, 47.371823], [8.565732, 47.371891], [8.565872, 47.371951], [8.56602, 47.372003], [8.566173, 47.372046], [8.566547, 47.372126], [8.566565, 47.372133], [8.566583, 47.37214], [8.566599, 47.372149], [8.566614, 47.372158], [8.566628, 47.372169], [8.566641, 47.37218], [8.566652, 47.372192], [8.566662, 47.372204], [8.566669, 47.372217], [8.566676, 47.372231], [8.56668, 47.372245], [8.566683, 47.372259], [8.566684, 47.372273], [8.566683, 47.372287], [8.56668, 47.372301], [8.566675, 47.372314], [8.566669, 47.372328], [8.566661, 47.372341], [8.566652, 47.372353], [8.566641, 47.372365], [8.566628, 47.372376], [8.566614, 47.372387], [8.566599, 47.372396], [8.566582, 47.372405], [8.566565, 47.372412], [8.566546, 47.372419], [8.566527, 47.372424], [8.566508, 47.372429], [8.566487, 47.372432], [8.56619, 47.372441], [8.566184, 47.372441], [8.566177, 47.372441], [8.56617, 47.372441], [8.566164, 47.372442], [8.566158, 47.372444], [8.566152, 47.372445], [8.566146, 47.372447], [8.56614, 47.37245], [8.566135, 47.372452], [8.56613, 47.372456], [8.566125, 47.372459], [8.566121, 47.372462], [8.566118, 47.372466], [8.566115, 47.37247], [8.566112, 47.372474], [8.56611, 47.372479], [8.566109, 47.372483], [8.566108, 47.372487], [8.566107, 47.372492], [8.566108, 47.372496]]], "type": "MultiLineString"}, "id": "2007", "properties": {}, "type": "Feature"}, {"bbox": [8.517307, 47.388192, 8.520033, 47.389102], "geometry": {"coordinates": [[[8.517307, 47.389102], [8.518563, 47.388684], [8.519442, 47.388393], [8.519833, 47.388273], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "2014", "properties": {}, "type": "Feature"}, {"bbox": [8.512443, 47.414905, 8.512933, 47.415712], "geometry": {"coordinates": [[[8.512933, 47.415712], [8.512906, 47.415574], [8.512729, 47.415271], [8.512443, 47.414905]]], "type": "MultiLineString"}, "id": "2019", "properties": {}, "type": "Feature"}, {"bbox": [8.49141, 47.387378, 8.495772, 47.389022], "geometry": {"coordinates": [[[8.495772, 47.387378], [8.495708, 47.387418], [8.49564, 47.387456], [8.495569, 47.387491], [8.495053, 47.387682], [8.494831, 47.387754], [8.494476, 47.387829], [8.493752, 47.388075], [8.492878, 47.38839], [8.49141, 47.389022]]], "type": "MultiLineString"}, "id": "2020", "properties": {}, "type": "Feature"}, {"bbox": [8.500916, 47.383244, 8.50609, 47.385164], "geometry": {"coordinates": [[[8.50609, 47.383244], [8.504158, 47.384074], [8.503355, 47.384419], [8.503255, 47.38446], [8.503153, 47.384499], [8.50305, 47.384536], [8.502972, 47.38456], [8.502893, 47.384583], [8.502815, 47.384606], [8.501124, 47.385102], [8.500916, 47.385164]]], "type": "MultiLineString"}, "id": "2021", "properties": {}, "type": "Feature"}, {"bbox": [8.49924, 47.383339, 8.502451, 47.386835], "geometry": {"coordinates": [[[8.502451, 47.386835], [8.502118, 47.386472], [8.500916, 47.385164], [8.50027, 47.384455], [8.500164, 47.38434], [8.49924, 47.383339]]], "type": "MultiLineString"}, "id": "2022", "properties": {}, "type": "Feature"}, {"bbox": [8.541221, 47.408156, 8.546687, 47.409941], "geometry": {"coordinates": [[[8.546687, 47.408214], [8.546255, 47.408159], [8.546217, 47.408156], [8.546178, 47.408156], [8.54614, 47.408158], [8.546102, 47.408161], [8.546064, 47.408167], [8.546028, 47.408175], [8.545992, 47.408185], [8.545958, 47.408197], [8.545925, 47.408211], [8.545845, 47.408244], [8.544935, 47.408627], [8.544377, 47.408857], [8.54344, 47.409242], [8.543367, 47.409243], [8.542287, 47.409597], [8.541221, 47.409941]]], "type": "MultiLineString"}, "id": "2027", "properties": {}, "type": "Feature"}, {"bbox": [8.533377, 47.394852, 8.534541, 47.39678], "geometry": {"coordinates": [[[8.534541, 47.394852], [8.534356, 47.395004], [8.534135, 47.395156], [8.533895, 47.395294], [8.533838, 47.395321], [8.533784, 47.395351], [8.533734, 47.395385], [8.533688, 47.395421], [8.533647, 47.395459], [8.533611, 47.3955], [8.533581, 47.395543], [8.533555, 47.395587], [8.533536, 47.395633], [8.533522, 47.39568], [8.533392, 47.396061], [8.533382, 47.3961], [8.533377, 47.396141], [8.533377, 47.396181], [8.533383, 47.396222], [8.533394, 47.396261], [8.53341, 47.3963], [8.533431, 47.396338], [8.533458, 47.396374], [8.533488, 47.396409], [8.533524, 47.396442], [8.533563, 47.396472], [8.533607, 47.3965], [8.533898, 47.396681], [8.533963, 47.39678]]], "type": "MultiLineString"}, "id": "2030", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.395678, 8.53214, 47.396972], "geometry": {"coordinates": [[[8.53214, 47.395678], [8.532099, 47.395682], [8.532059, 47.395687], [8.532019, 47.395696], [8.531981, 47.395706], [8.531944, 47.395719], [8.531909, 47.395734], [8.531876, 47.39575], [8.531846, 47.395769], [8.531818, 47.39579], [8.531792, 47.395812], [8.53178, 47.395844], [8.531773, 47.395894], [8.531759, 47.395943], [8.531739, 47.395991], [8.531712, 47.396037], [8.53168, 47.396082], [8.531642, 47.396124], [8.531599, 47.396165], [8.531551, 47.396202], [8.531498, 47.396237], [8.531441, 47.396268], [8.530736, 47.396588], [8.530654, 47.396631], [8.530578, 47.396678], [8.530508, 47.39673], [8.530445, 47.396785], [8.530389, 47.396845], [8.530341, 47.396907], [8.530302, 47.396972]]], "type": "MultiLineString"}, "id": "2031", "properties": {}, "type": "Feature"}, {"bbox": [8.582695, 47.358576, 8.583129, 47.359204], "geometry": {"coordinates": [[[8.583117, 47.358576], [8.583129, 47.358646], [8.583103, 47.358703], [8.583073, 47.358745], [8.582863, 47.358998], [8.582695, 47.359204]]], "type": "MultiLineString"}, "id": "2043", "properties": {}, "type": "Feature"}, {"bbox": [8.582208, 47.403058, 8.589591, 47.403597], "geometry": {"coordinates": [[[8.582208, 47.403597], [8.582566, 47.403566], [8.584269, 47.403442], [8.585712, 47.40334], [8.586073, 47.403315], [8.586511, 47.40328], [8.588838, 47.403118], [8.589591, 47.403058]]], "type": "MultiLineString"}, "id": "2044", "properties": {}, "type": "Feature"}, {"bbox": [8.504938, 47.399364, 8.505288, 47.399463], "geometry": {"coordinates": [[[8.504938, 47.399463], [8.504938, 47.399463], [8.505185, 47.399374], [8.505288, 47.399364]]], "type": "MultiLineString"}, "id": "2045", "properties": {}, "type": "Feature"}, {"bbox": [8.48361, 47.376877, 8.485114, 47.377571], "geometry": {"coordinates": [[[8.48361, 47.376877], [8.483836, 47.376924], [8.483958, 47.376941], [8.484078, 47.376965], [8.484195, 47.376995], [8.484307, 47.377032], [8.484415, 47.377075], [8.484517, 47.377125], [8.484612, 47.37718], [8.4847, 47.37724], [8.48478, 47.377305], [8.485029, 47.377571], [8.485114, 47.377523]]], "type": "MultiLineString"}, "id": "2046", "properties": {}, "type": "Feature"}, {"bbox": [8.55537, 47.364103, 8.556668, 47.365458], "geometry": {"coordinates": [[[8.55537, 47.365458], [8.555497, 47.365349], [8.556023, 47.364906], [8.55615, 47.364784], [8.556262, 47.364655], [8.556356, 47.36452], [8.556496, 47.364255], [8.556523, 47.364188], [8.55654, 47.364159], [8.556545, 47.364152], [8.55655, 47.364145], [8.556557, 47.364138], [8.556564, 47.364132], [8.556572, 47.364127], [8.556581, 47.364121], [8.556591, 47.364117], [8.556601, 47.364113], [8.556611, 47.364109], [8.556622, 47.364107], [8.556633, 47.364105], [8.556645, 47.364103], [8.556656, 47.364103], [8.556668, 47.364103]]], "type": "MultiLineString"}, "id": "2049", "properties": {}, "type": "Feature"}, {"bbox": [8.55451, 47.35301, 8.556866, 47.355243], "geometry": {"coordinates": [[[8.55451, 47.355243], [8.554734, 47.355023], [8.555054, 47.354762], [8.555069, 47.354749], [8.555384, 47.354493], [8.555485, 47.354411], [8.555743, 47.354201], [8.555824, 47.354135], [8.556546, 47.353546], [8.556627, 47.353476], [8.55667, 47.35345], [8.556708, 47.353422], [8.556743, 47.353391], [8.556775, 47.353359], [8.556801, 47.353325], [8.556824, 47.353289], [8.556842, 47.353252], [8.556855, 47.353215], [8.556863, 47.353176], [8.556866, 47.353138], [8.556864, 47.353095], [8.556856, 47.353052], [8.556842, 47.35301]]], "type": "MultiLineString"}, "id": "2050", "properties": {}, "type": "Feature"}, {"bbox": [8.562333, 47.383073, 8.562827, 47.383356], "geometry": {"coordinates": [[[8.562827, 47.383356], [8.562732, 47.383284], [8.562608, 47.38321], [8.562333, 47.383073]]], "type": "MultiLineString"}, "id": "2060", "properties": {}, "type": "Feature"}, {"bbox": [8.53211, 47.331233, 8.533624, 47.334637], "geometry": {"coordinates": [[[8.533624, 47.334637], [8.533435, 47.334569], [8.533247, 47.334501], [8.533059, 47.334431], [8.533005, 47.334419], [8.532953, 47.334403], [8.532903, 47.334384], [8.532856, 47.334362], [8.532812, 47.334337], [8.532771, 47.334309], [8.532735, 47.334279], [8.532702, 47.334247], [8.532674, 47.334213], [8.532323, 47.333733], [8.532178, 47.333536], [8.532158, 47.333502], [8.532141, 47.333467], [8.53213, 47.333431], [8.532122, 47.333395], [8.532119, 47.333358], [8.53211, 47.332731], [8.532118, 47.332689], [8.532132, 47.332647], [8.532151, 47.332607], [8.532175, 47.332567], [8.532204, 47.33253], [8.532238, 47.332494], [8.532277, 47.33246], [8.532298, 47.332443], [8.532316, 47.332426], [8.532333, 47.332407], [8.532347, 47.332387], [8.532358, 47.332367], [8.532553, 47.331907], [8.532627, 47.331685], [8.532668, 47.33146], [8.532676, 47.331233]]], "type": "MultiLineString"}, "id": "2067", "properties": {}, "type": "Feature"}, {"bbox": [8.515456, 47.379637, 8.518957, 47.381326], "geometry": {"coordinates": [[[8.518957, 47.379637], [8.518178, 47.380026], [8.517268, 47.380484], [8.51717, 47.380511], [8.515643, 47.381284], [8.515619, 47.381295], [8.515594, 47.381304], [8.515568, 47.381312], [8.515541, 47.381318], [8.515513, 47.381322], [8.515484, 47.381325], [8.515456, 47.381326]]], "type": "MultiLineString"}, "id": "2068", "properties": {}, "type": "Feature"}, {"bbox": [8.553953, 47.401648, 8.556163, 47.402204], "geometry": {"coordinates": [[[8.556163, 47.402189], [8.556104, 47.402198], [8.556043, 47.402203], [8.555983, 47.402204], [8.555922, 47.402201], [8.555862, 47.402195], [8.555479, 47.402114], [8.555109, 47.402009], [8.554756, 47.401881], [8.554421, 47.401731], [8.554133, 47.401664], [8.553953, 47.401648]]], "type": "MultiLineString"}, "id": "2069", "properties": {}, "type": "Feature"}, {"bbox": [8.525243, 47.376877, 8.526019, 47.377268], "geometry": {"coordinates": [[[8.526019, 47.376877], [8.525243, 47.377268]]], "type": "MultiLineString"}, "id": "2070", "properties": {}, "type": "Feature"}, {"bbox": [8.527403, 47.376427, 8.528195, 47.377011], "geometry": {"coordinates": [[[8.528195, 47.376427], [8.527403, 47.377011]]], "type": "MultiLineString"}, "id": "2071", "properties": {}, "type": "Feature"}, {"bbox": [8.523727, 47.371474, 8.524866, 47.372396], "geometry": {"coordinates": [[[8.524866, 47.371474], [8.523896, 47.372323], [8.523727, 47.372396]]], "type": "MultiLineString"}, "id": "2072", "properties": {}, "type": "Feature"}, {"bbox": [8.521446, 47.386063, 8.5231, 47.386777], "geometry": {"coordinates": [[[8.523099, 47.386777], [8.5231, 47.386771], [8.5231, 47.386765], [8.5231, 47.386759], [8.523099, 47.386753], [8.523098, 47.386748], [8.523095, 47.386742], [8.523092, 47.386737], [8.523088, 47.386731], [8.523084, 47.386726], [8.523079, 47.386722], [8.523073, 47.386717], [8.523067, 47.386713], [8.52306, 47.38671], [8.523053, 47.386706], [8.523045, 47.386704], [8.522613, 47.386546], [8.522207, 47.38636], [8.52183, 47.386148], [8.521739, 47.386118], [8.521643, 47.386094], [8.521546, 47.386075], [8.521446, 47.386063]]], "type": "MultiLineString"}, "id": "2074", "properties": {}, "type": "Feature"}, {"bbox": [8.525722, 47.360358, 8.526674, 47.360431], "geometry": {"coordinates": [[[8.526674, 47.360431], [8.525722, 47.360358]]], "type": "MultiLineString"}, "id": "2075", "properties": {}, "type": "Feature"}, {"bbox": [8.598788, 47.363651, 8.602271, 47.365042], "geometry": {"coordinates": [[[8.598788, 47.363651], [8.599015, 47.363725], [8.599097, 47.363756], [8.599612, 47.363946], [8.600131, 47.36413], [8.600656, 47.364308], [8.600936, 47.36441], [8.601203, 47.364527], [8.601454, 47.36466], [8.602013, 47.364968], [8.602073, 47.364992], [8.602137, 47.365013], [8.602203, 47.36503], [8.602271, 47.365042]]], "type": "MultiLineString"}, "id": "2080", "properties": {}, "type": "Feature"}, {"bbox": [8.563448, 47.404043, 8.567325, 47.406605], "geometry": {"coordinates": [[[8.563448, 47.404043], [8.563471, 47.404065], [8.563497, 47.404084], [8.563525, 47.404102], [8.563556, 47.404119], [8.563588, 47.404133], [8.563622, 47.404145], [8.563658, 47.404156], [8.563695, 47.404164], [8.563733, 47.40417], [8.563771, 47.404173], [8.56381, 47.404175], [8.563849, 47.404174], [8.563887, 47.40417], [8.564321, 47.404101], [8.564378, 47.404096], [8.564435, 47.404094], [8.564492, 47.404096], [8.564549, 47.404101], [8.564605, 47.40411], [8.564659, 47.404121], [8.564712, 47.404136], [8.564763, 47.404155], [8.564811, 47.404175], [8.564856, 47.404199], [8.564898, 47.404226], [8.564936, 47.404254], [8.564971, 47.404285], [8.565002, 47.404318], [8.565028, 47.404352], [8.56505, 47.404388], [8.565067, 47.404425], [8.565079, 47.404463], [8.565219, 47.404988], [8.565225, 47.405026], [8.565233, 47.405063], [8.565245, 47.4051], [8.56527, 47.405163], [8.565304, 47.405224], [8.565345, 47.405283], [8.565394, 47.405339], [8.56545, 47.405392], [8.565512, 47.405442], [8.566785, 47.406242], [8.56711, 47.406453], [8.567325, 47.406605]]], "type": "MultiLineString"}, "id": "2082", "properties": {}, "type": "Feature"}, {"bbox": [8.480579, 47.381884, 8.483322, 47.384132], "geometry": {"coordinates": [[[8.483322, 47.381884], [8.482349, 47.382914], [8.482247, 47.383021], [8.482145, 47.383128], [8.482044, 47.383235], [8.481931, 47.383353], [8.481808, 47.383466], [8.481675, 47.383573], [8.481585, 47.383646], [8.481493, 47.383718], [8.4814, 47.383788], [8.481372, 47.383808], [8.481343, 47.383829], [8.481315, 47.383849], [8.48108, 47.383955], [8.480834, 47.38405], [8.480579, 47.384132]]], "type": "MultiLineString"}, "id": "2083", "properties": {}, "type": "Feature"}, {"bbox": [8.527574, 47.38434, 8.528017, 47.384959], "geometry": {"coordinates": [[[8.527574, 47.38434], [8.527575, 47.384341], [8.527777, 47.384629], [8.527809, 47.384673], [8.527842, 47.384717], [8.527875, 47.384761], [8.528017, 47.384959]]], "type": "MultiLineString"}, "id": "2092", "properties": {}, "type": "Feature"}, {"bbox": [8.499158, 47.395204, 8.515033, 47.402037], "geometry": {"coordinates": [[[8.515033, 47.395204], [8.514525, 47.3953], [8.514023, 47.39541], [8.513527, 47.395533], [8.513055, 47.395629], [8.512576, 47.39571], [8.512093, 47.395777], [8.51195, 47.395794], [8.511807, 47.39581], [8.511663, 47.395825], [8.511636, 47.395828], [8.511609, 47.39583], [8.511582, 47.395833], [8.510774, 47.39591], [8.510534, 47.395939], [8.510297, 47.395977], [8.510063, 47.396023], [8.509887, 47.396064], [8.509713, 47.396109], [8.509542, 47.39616], [8.509412, 47.396198], [8.508573, 47.396453], [8.508297, 47.396539], [8.50827, 47.396548], [8.508242, 47.396557], [8.508214, 47.396566], [8.508069, 47.396618], [8.507925, 47.396674], [8.507786, 47.396733], [8.506833, 47.397141], [8.506771, 47.397168], [8.505633, 47.397654], [8.505493, 47.397718], [8.505357, 47.397786], [8.505226, 47.397857], [8.505035, 47.397977], [8.504858, 47.398107], [8.504698, 47.398245], [8.504553, 47.398392], [8.504438, 47.398546], [8.50431, 47.398695], [8.504171, 47.398839], [8.504119, 47.398888], [8.504067, 47.398937], [8.504013, 47.398985], [8.503808, 47.39915], [8.503582, 47.399301], [8.503337, 47.399439], [8.503179, 47.399509], [8.502864, 47.399648], [8.50239, 47.399823], [8.502281, 47.399864], [8.50126, 47.40024], [8.500391, 47.400586], [8.500212, 47.400659], [8.500045, 47.400742], [8.49989, 47.400837], [8.499749, 47.400941], [8.499591, 47.401081], [8.499433, 47.401222], [8.499358, 47.401288], [8.499307, 47.401338], [8.499262, 47.401392], [8.499225, 47.401448], [8.499197, 47.401506], [8.499176, 47.401566], [8.499164, 47.401627], [8.499158, 47.401673], [8.499158, 47.401718], [8.499163, 47.401763], [8.499173, 47.401808], [8.499189, 47.401853], [8.49929, 47.402037]]], "type": "MultiLineString"}, "id": "2094", "properties": {}, "type": "Feature"}, {"bbox": [8.539615, 47.368828, 8.541836, 47.369146], "geometry": {"coordinates": [[[8.541836, 47.369146], [8.540951, 47.369011], [8.540846, 47.368997], [8.540226, 47.368912], [8.539615, 47.368828]]], "type": "MultiLineString"}, "id": "2095", "properties": {}, "type": "Feature"}, {"bbox": [8.503836, 47.381443, 8.50839, 47.385075], "geometry": {"coordinates": [[[8.503836, 47.381443], [8.503996, 47.38159], [8.504827, 47.382256], [8.504948, 47.382351], [8.50609, 47.383244], [8.506241, 47.383357], [8.506984, 47.383946], [8.507387, 47.38426], [8.507756, 47.384549], [8.50839, 47.385075]]], "type": "MultiLineString"}, "id": "2096", "properties": {}, "type": "Feature"}, {"bbox": [8.590622, 47.356768, 8.597885, 47.358776], "geometry": {"coordinates": [[[8.590622, 47.358776], [8.591102, 47.358324], [8.591188, 47.358242], [8.591267, 47.358171], [8.591353, 47.358103], [8.591446, 47.35804], [8.592429, 47.357467], [8.592597, 47.357384], [8.592769, 47.357306], [8.592945, 47.357232], [8.593385, 47.357073], [8.593524, 47.35703], [8.593664, 47.356989], [8.593806, 47.35695], [8.59387, 47.356933], [8.593937, 47.35692], [8.594005, 47.356911], [8.594074, 47.356905], [8.594143, 47.356904], [8.594212, 47.356906], [8.594281, 47.356913], [8.594349, 47.356923], [8.594415, 47.356937], [8.595224, 47.357113], [8.595343, 47.35714], [8.595562, 47.357129], [8.595681, 47.357118], [8.595797, 47.3571], [8.595911, 47.357075], [8.596022, 47.357045], [8.596128, 47.357008], [8.596236, 47.356966], [8.596338, 47.356918], [8.596433, 47.356864], [8.59652, 47.356804], [8.596531, 47.356797], [8.596542, 47.356791], [8.596555, 47.356785], [8.596568, 47.356781], [8.596581, 47.356777], [8.596595, 47.356773], [8.596609, 47.356771], [8.596624, 47.356769], [8.596639, 47.356768], [8.596654, 47.356768], [8.596668, 47.356769], [8.596683, 47.356771], [8.596697, 47.356774], [8.59685, 47.356826], [8.596995, 47.356886], [8.597133, 47.356953], [8.597169, 47.356968], [8.597206, 47.356981], [8.597244, 47.356991], [8.597284, 47.357], [8.597484, 47.357032], [8.59754, 47.357041], [8.597595, 47.357053], [8.597648, 47.357069], [8.597699, 47.357088], [8.597746, 47.35711], [8.59779, 47.357136], [8.597822, 47.357151], [8.597853, 47.357165], [8.597885, 47.35718]]], "type": "MultiLineString"}, "id": "2100", "properties": {}, "type": "Feature"}, {"bbox": [8.490829, 47.367416, 8.492145, 47.36791], "geometry": {"coordinates": [[[8.49197, 47.367905], [8.491975, 47.367882], [8.491979, 47.367859], [8.491981, 47.367837], [8.492031, 47.367749], [8.492081, 47.367661], [8.492132, 47.367573], [8.492137, 47.367562], [8.492141, 47.367551], [8.492144, 47.367539], [8.492145, 47.367528], [8.492132, 47.367478], [8.492092, 47.367436], [8.492053, 47.367427], [8.492012, 47.367421], [8.491971, 47.367417], [8.491929, 47.367416], [8.491887, 47.367417], [8.491846, 47.36742], [8.491805, 47.367426], [8.491765, 47.367434], [8.491563, 47.367513], [8.491359, 47.36759], [8.491155, 47.367667], [8.491097, 47.367694], [8.491043, 47.367724], [8.490993, 47.367758], [8.490946, 47.367794], [8.490905, 47.367833], [8.490868, 47.367874], [8.490844, 47.367897], [8.490829, 47.36791]]], "type": "MultiLineString"}, "id": "2103", "properties": {}, "type": "Feature"}, {"bbox": [8.472718, 47.391742, 8.473683, 47.392262], "geometry": {"coordinates": [[[8.472718, 47.391742], [8.472765, 47.391783], [8.472817, 47.391821], [8.472874, 47.391856], [8.472935, 47.391887], [8.472999, 47.391915], [8.473067, 47.391939], [8.473137, 47.39196], [8.473261, 47.392006], [8.473379, 47.392061], [8.473489, 47.392122], [8.473591, 47.392189], [8.473683, 47.392262]]], "type": "MultiLineString"}, "id": "2105", "properties": {}, "type": "Feature"}, {"bbox": [8.567897, 47.413457, 8.572267, 47.416989], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.571958, 47.413738], [8.571929, 47.413766], [8.571021, 47.414691], [8.570532, 47.415293], [8.570183, 47.415606], [8.570005, 47.415758], [8.569701, 47.41598], [8.569295, 47.41618], [8.568742, 47.416438], [8.5683, 47.416644], [8.568197, 47.416695], [8.568033, 47.416782], [8.567978, 47.416858], [8.567897, 47.416989]]], "type": "MultiLineString"}, "id": "2109", "properties": {}, "type": "Feature"}, {"bbox": [8.567341, 47.402516, 8.567542, 47.403817], "geometry": {"coordinates": [[[8.567542, 47.403817], [8.567498, 47.403664], [8.567468, 47.403592], [8.567375, 47.403295], [8.567356, 47.403221], [8.567346, 47.403159], [8.567341, 47.40309], [8.567346, 47.403003], [8.567363, 47.402868], [8.567361, 47.402843], [8.567375, 47.402747], [8.567382, 47.402722], [8.567399, 47.402595], [8.567429, 47.402516]]], "type": "MultiLineString"}, "id": "2110", "properties": {}, "type": "Feature"}, {"bbox": [8.536792, 47.372298, 8.537628, 47.373127], "geometry": {"coordinates": [[[8.537628, 47.372298], [8.537628, 47.372309], [8.537627, 47.372319], [8.537624, 47.372329], [8.53762, 47.372339], [8.537615, 47.372348], [8.537608, 47.372358], [8.5376, 47.372367], [8.537591, 47.372375], [8.537235, 47.372628], [8.536964, 47.372817], [8.536919, 47.372847], [8.536879, 47.372878], [8.536842, 47.372913], [8.536826, 47.372938], [8.536812, 47.372964], [8.536802, 47.372991], [8.536795, 47.373018], [8.536792, 47.373045], [8.536792, 47.373073], [8.536795, 47.3731], [8.536802, 47.373127]]], "type": "MultiLineString"}, "id": "2121", "properties": {}, "type": "Feature"}, {"bbox": [8.561272, 47.355598, 8.562369, 47.355967], "geometry": {"coordinates": [[[8.561272, 47.355598], [8.562369, 47.355967]]], "type": "MultiLineString"}, "id": "2128", "properties": {}, "type": "Feature"}, {"bbox": [8.48478, 47.410556, 8.48603, 47.410969], "geometry": {"coordinates": [[[8.48603, 47.41063], [8.485871, 47.410563], [8.485855, 47.41056], [8.485839, 47.410558], [8.485822, 47.410556], [8.485805, 47.410556], [8.485788, 47.410556], [8.485772, 47.410558], [8.485755, 47.410561], [8.48574, 47.410565], [8.485724, 47.410569], [8.48571, 47.410575], [8.484892, 47.410909], [8.484861, 47.410921], [8.484832, 47.410936], [8.484805, 47.410951], [8.48478, 47.410969]]], "type": "MultiLineString"}, "id": "2130", "properties": {}, "type": "Feature"}, {"bbox": [8.498275, 47.402967, 8.499026, 47.403692], "geometry": {"coordinates": [[[8.498275, 47.402967], [8.498357, 47.403115], [8.49853, 47.403309], [8.498679, 47.403437], [8.498968, 47.403675], [8.499026, 47.403692]]], "type": "MultiLineString"}, "id": "2146", "properties": {}, "type": "Feature"}, {"bbox": [8.510016, 47.426367, 8.510756, 47.427089], "geometry": {"coordinates": [[[8.510016, 47.426367], [8.510024, 47.426374], [8.51014, 47.426494], [8.510272, 47.426643], [8.510411, 47.42679], [8.510558, 47.426932], [8.510756, 47.427089]]], "type": "MultiLineString"}, "id": "2147", "properties": {}, "type": "Feature"}, {"bbox": [8.567325, 47.405751, 8.569386, 47.406605], "geometry": {"coordinates": [[[8.569386, 47.405751], [8.568922, 47.405919], [8.568774, 47.40598], [8.568345, 47.406159], [8.568038, 47.406282], [8.567737, 47.406412], [8.567442, 47.406547], [8.567325, 47.406605]]], "type": "MultiLineString"}, "id": "2148", "properties": {}, "type": "Feature"}, {"bbox": [8.486861, 47.388258, 8.491048, 47.389774], "geometry": {"coordinates": [[[8.491048, 47.388258], [8.490821, 47.388346], [8.490555, 47.388436], [8.48991, 47.388671], [8.489755, 47.388727], [8.488982, 47.389007], [8.48803, 47.389351], [8.486861, 47.389774]]], "type": "MultiLineString"}, "id": "2151", "properties": {}, "type": "Feature"}, {"bbox": [8.547939, 47.385062, 8.548236, 47.385521], "geometry": {"coordinates": [[[8.547939, 47.385062], [8.547967, 47.385137], [8.548029, 47.385256], [8.548105, 47.385371], [8.548196, 47.38548], [8.548236, 47.385521]]], "type": "MultiLineString"}, "id": "2156", "properties": {}, "type": "Feature"}, {"bbox": [8.523881, 47.411917, 8.528669, 47.413628], "geometry": {"coordinates": [[[8.528669, 47.411927], [8.528527, 47.411917], [8.527966, 47.411953], [8.527858, 47.411959], [8.527385, 47.412001], [8.527025, 47.412052], [8.526677, 47.412108], [8.526472, 47.412157], [8.526098, 47.412286], [8.525824, 47.412381], [8.525511, 47.41249], [8.525339, 47.412555], [8.525157, 47.412633], [8.524986, 47.412722], [8.524829, 47.412822], [8.524131, 47.413301], [8.524068, 47.413354], [8.524013, 47.413412], [8.523967, 47.413472], [8.523928, 47.413535], [8.523881, 47.413628]]], "type": "MultiLineString"}, "id": "2160", "properties": {}, "type": "Feature"}, {"bbox": [8.494172, 47.386451, 8.496527, 47.387138], "geometry": {"coordinates": [[[8.496527, 47.386451], [8.49552, 47.386742], [8.494172, 47.387138]]], "type": "MultiLineString"}, "id": "2161", "properties": {}, "type": "Feature"}, {"bbox": [8.531651, 47.365285, 8.532288, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.531651, 47.365285]]], "type": "MultiLineString"}, "id": "2162", "properties": {}, "type": "Feature"}, {"bbox": [8.5174, 47.361261, 8.519057, 47.362747], "geometry": {"coordinates": [[[8.519057, 47.362747], [8.517982, 47.361773], [8.517752, 47.361582], [8.5174, 47.361261]]], "type": "MultiLineString"}, "id": "2165", "properties": {}, "type": "Feature"}, {"bbox": [8.518557, 47.370286, 8.522185, 47.371932], "geometry": {"coordinates": [[[8.522185, 47.371932], [8.521661, 47.371695], [8.521327, 47.371556], [8.521146, 47.371487], [8.520979, 47.371424], [8.520448, 47.371203], [8.520286, 47.371133], [8.519814, 47.370899], [8.519352, 47.37067], [8.519142, 47.370567], [8.518557, 47.370286]]], "type": "MultiLineString"}, "id": "2166", "properties": {}, "type": "Feature"}, {"bbox": [8.535443, 47.364868, 8.537776, 47.367886], "geometry": {"coordinates": [[[8.537776, 47.364868], [8.536871, 47.366051], [8.536194, 47.366967], [8.535564, 47.36778], [8.535443, 47.367886]]], "type": "MultiLineString"}, "id": "2167", "properties": {}, "type": "Feature"}, {"bbox": [8.520801, 47.371757, 8.521718, 47.372264], "geometry": {"coordinates": [[[8.521718, 47.372264], [8.520811, 47.371761], [8.520801, 47.371757]]], "type": "MultiLineString"}, "id": "2168", "properties": {}, "type": "Feature"}, {"bbox": [8.560554, 47.367568, 8.560826, 47.367879], "geometry": {"coordinates": [[[8.560554, 47.367879], [8.560634, 47.3678], [8.560826, 47.367568]]], "type": "MultiLineString"}, "id": "2169", "properties": {}, "type": "Feature"}, {"bbox": [8.571133, 47.34709, 8.571625, 47.348154], "geometry": {"coordinates": [[[8.571133, 47.348154], [8.571303, 47.347801], [8.571467, 47.347446], [8.571625, 47.34709]]], "type": "MultiLineString"}, "id": "2170", "properties": {}, "type": "Feature"}, {"bbox": [8.498358, 47.39901, 8.499148, 47.399238], "geometry": {"coordinates": [[[8.499148, 47.39901], [8.499124, 47.399016], [8.498605, 47.399179], [8.498358, 47.399238]]], "type": "MultiLineString"}, "id": "2171", "properties": {}, "type": "Feature"}, {"bbox": [8.530239, 47.393214, 8.530489, 47.393244], "geometry": {"coordinates": [[[8.530489, 47.393214], [8.530239, 47.393244]]], "type": "MultiLineString"}, "id": "2175", "properties": {}, "type": "Feature"}, {"bbox": [8.526646, 47.394139, 8.527482, 47.394431], "geometry": {"coordinates": [[[8.527482, 47.394139], [8.526958, 47.394323], [8.526863, 47.394356], [8.526646, 47.394431]]], "type": "MultiLineString"}, "id": "2176", "properties": {}, "type": "Feature"}, {"bbox": [8.561937, 47.369839, 8.563065, 47.370539], "geometry": {"coordinates": [[[8.561937, 47.369839], [8.562214, 47.370088], [8.562359, 47.370199], [8.562518, 47.3703], [8.562689, 47.37039], [8.562872, 47.37047], [8.563065, 47.370539]]], "type": "MultiLineString"}, "id": "2177", "properties": {}, "type": "Feature"}, {"bbox": [8.516978, 47.423793, 8.520808, 47.423852], "geometry": {"coordinates": [[[8.520808, 47.423852], [8.517091, 47.423797], [8.516978, 47.423793]]], "type": "MultiLineString"}, "id": "2178", "properties": {}, "type": "Feature"}, {"bbox": [8.501606, 47.369654, 8.501703, 47.369904], "geometry": {"coordinates": [[[8.501703, 47.369904], [8.501606, 47.369654]]], "type": "MultiLineString"}, "id": "2180", "properties": {}, "type": "Feature"}, {"bbox": [8.507362, 47.355294, 8.507596, 47.355402], "geometry": {"coordinates": [[[8.507596, 47.355402], [8.507362, 47.355294]]], "type": "MultiLineString"}, "id": "2181", "properties": {}, "type": "Feature"}, {"bbox": [8.586005, 47.404009, 8.588838, 47.405917], "geometry": {"coordinates": [[[8.588838, 47.404009], [8.588828, 47.404041], [8.588097, 47.405522], [8.588077, 47.405566], [8.588051, 47.405608], [8.58802, 47.405649], [8.587984, 47.405687], [8.587943, 47.405724], [8.587897, 47.405758], [8.587848, 47.405789], [8.587795, 47.405817], [8.587738, 47.405842], [8.587681, 47.405864], [8.587622, 47.405881], [8.58756, 47.405896], [8.587497, 47.405906], [8.587433, 47.405914], [8.587368, 47.405917], [8.587303, 47.405917], [8.587238, 47.405914], [8.586822, 47.405869], [8.586411, 47.405811], [8.586005, 47.405738]]], "type": "MultiLineString"}, "id": "2187", "properties": {}, "type": "Feature"}, {"bbox": [8.56539, 47.360333, 8.565497, 47.361406], "geometry": {"coordinates": [[[8.565398, 47.360333], [8.565403, 47.360475], [8.56539, 47.360953], [8.565395, 47.361319], [8.565404, 47.361334], [8.565416, 47.361348], [8.565428, 47.361362], [8.565443, 47.361375], [8.56546, 47.361386], [8.565477, 47.361397], [8.565497, 47.361406]]], "type": "MultiLineString"}, "id": "2190", "properties": {}, "type": "Feature"}, {"bbox": [8.548272, 47.384421, 8.548475, 47.386066], "geometry": {"coordinates": [[[8.548331, 47.384421], [8.548376, 47.384797], [8.548443, 47.385238], [8.548469, 47.385484], [8.548475, 47.385614], [8.548469, 47.385663], [8.548459, 47.385712], [8.548446, 47.385761], [8.548416, 47.385841], [8.548377, 47.385918], [8.548329, 47.385993], [8.548272, 47.386066]]], "type": "MultiLineString"}, "id": "2192", "properties": {}, "type": "Feature"}, {"bbox": [8.558577, 47.363019, 8.563258, 47.366921], "geometry": {"coordinates": [[[8.558577, 47.366921], [8.558691, 47.366806], [8.559083, 47.366395], [8.559852, 47.365591], [8.560289, 47.365172], [8.560374, 47.36509], [8.560439, 47.365034], [8.561496, 47.364278], [8.561639, 47.364175], [8.561764, 47.364085], [8.563102, 47.363126], [8.563258, 47.363019]]], "type": "MultiLineString"}, "id": "2196", "properties": {}, "type": "Feature"}, {"bbox": [8.526836, 47.34559, 8.529425, 47.354797], "geometry": {"coordinates": [[[8.526836, 47.354797], [8.52689, 47.354451], [8.527013, 47.353705], [8.527047, 47.353499], [8.527091, 47.353233], [8.52715, 47.352875], [8.527265, 47.352171], [8.527309, 47.351826], [8.527344, 47.351659], [8.527388, 47.351492], [8.52744, 47.351327], [8.527736, 47.350483], [8.527766, 47.350397], [8.527805, 47.350274], [8.527839, 47.350151], [8.527868, 47.350028], [8.527888, 47.349923], [8.527905, 47.349817], [8.527918, 47.349712], [8.527937, 47.349533], [8.528043, 47.348507], [8.528059, 47.348341], [8.528156, 47.347403], [8.528168, 47.347334], [8.528189, 47.347266], [8.52822, 47.3472], [8.528261, 47.347136], [8.52831, 47.347075], [8.528777, 47.346571], [8.528783, 47.346564], [8.528802, 47.346545], [8.528833, 47.346509], [8.528865, 47.346474], [8.528896, 47.346438], [8.528975, 47.346342], [8.52905, 47.346244], [8.52912, 47.346145], [8.529236, 47.345964], [8.529337, 47.345779], [8.529425, 47.34559]]], "type": "MultiLineString"}, "id": "2197", "properties": {}, "type": "Feature"}, {"bbox": [8.486189, 47.396733, 8.493623, 47.397744], "geometry": {"coordinates": [[[8.493623, 47.396982], [8.493442, 47.397034], [8.493255, 47.397076], [8.493064, 47.397108], [8.493006, 47.397114], [8.492948, 47.397119], [8.492889, 47.397124], [8.492831, 47.397128], [8.492772, 47.397132], [8.492714, 47.397135], [8.491438, 47.397196], [8.491168, 47.397214], [8.490901, 47.397243], [8.490637, 47.397284], [8.488913, 47.397581], [8.488086, 47.397722], [8.48801, 47.397732], [8.487934, 47.397739], [8.487857, 47.397744], [8.48775, 47.397744], [8.487644, 47.397739], [8.487539, 47.397726], [8.487436, 47.397708], [8.487336, 47.397683], [8.48724, 47.397652], [8.487148, 47.397615], [8.487061, 47.397573], [8.486953, 47.397506], [8.486854, 47.397433], [8.486765, 47.397354], [8.486688, 47.39727], [8.486189, 47.396733]]], "type": "MultiLineString"}, "id": "2199", "properties": {}, "type": "Feature"}, {"bbox": [8.542108, 47.383104, 8.545346, 47.387706], "geometry": {"coordinates": [[[8.545346, 47.383104], [8.544969, 47.383308], [8.544895, 47.383351], [8.54465, 47.383489], [8.544601, 47.383517], [8.544557, 47.383547], [8.544516, 47.383581], [8.544481, 47.383617], [8.544452, 47.383649], [8.544427, 47.383683], [8.544406, 47.383718], [8.54439, 47.383754], [8.544378, 47.383791], [8.544187, 47.384556], [8.544053, 47.385093], [8.543959, 47.385302], [8.543921, 47.385377], [8.543651, 47.385705], [8.543611, 47.385757], [8.543224, 47.386236], [8.542943, 47.38658], [8.542588, 47.387024], [8.542317, 47.387407], [8.542108, 47.387706]]], "type": "MultiLineString"}, "id": "2200", "properties": {}, "type": "Feature"}, {"bbox": [8.505525, 47.368452, 8.506164, 47.368538], "geometry": {"coordinates": [[[8.506164, 47.368538], [8.505525, 47.368452]]], "type": "MultiLineString"}, "id": "2208", "properties": {}, "type": "Feature"}, {"bbox": [8.540996, 47.383846, 8.542619, 47.385603], "geometry": {"coordinates": [[[8.542105, 47.383859], [8.54213, 47.383854], [8.542155, 47.38385], [8.542181, 47.383847], [8.542206, 47.383846], [8.542232, 47.383847], [8.542258, 47.383849], [8.542283, 47.383853], [8.542308, 47.383858], [8.542332, 47.383864], [8.542356, 47.383872], [8.542378, 47.383881], [8.542399, 47.383891], [8.542587, 47.384044], [8.542596, 47.384055], [8.542604, 47.384066], [8.54261, 47.384078], [8.542614, 47.38409], [8.542617, 47.384102], [8.542619, 47.384115], [8.542619, 47.384127], [8.542617, 47.384139], [8.542614, 47.384151], [8.542609, 47.384163], [8.542602, 47.384175], [8.541648, 47.385286], [8.54155, 47.385401], [8.541523, 47.38543], [8.541494, 47.385458], [8.541461, 47.385484], [8.541424, 47.385508], [8.541384, 47.38553], [8.541342, 47.38555], [8.541297, 47.385567], [8.54125, 47.385582], [8.541202, 47.385594], [8.541173, 47.385599], [8.541143, 47.385602], [8.541113, 47.385603], [8.541083, 47.385603], [8.541054, 47.3856], [8.541024, 47.385596], [8.540996, 47.385589]]], "type": "MultiLineString"}, "id": "2209", "properties": {}, "type": "Feature"}, {"bbox": [8.488378, 47.369919, 8.489533, 47.370567], "geometry": {"coordinates": [[[8.489533, 47.370567], [8.489008, 47.370289], [8.488378, 47.369919]]], "type": "MultiLineString"}, "id": "2210", "properties": {}, "type": "Feature"}, {"bbox": [8.559455, 47.37577, 8.56358, 47.379109], "geometry": {"coordinates": [[[8.559455, 47.379109], [8.559639, 47.379003], [8.561017, 47.378215], [8.561072, 47.378183], [8.561608, 47.377877], [8.561713, 47.37782], [8.561826, 47.377771], [8.561945, 47.377729], [8.562069, 47.377694], [8.562198, 47.377668], [8.5622, 47.377667], [8.562203, 47.377667], [8.562206, 47.377666], [8.56223, 47.377658], [8.562253, 47.377649], [8.562275, 47.377637], [8.562295, 47.377625], [8.562313, 47.377612], [8.562329, 47.377597], [8.562344, 47.377581], [8.562356, 47.377565], [8.562366, 47.377548], [8.562373, 47.37753], [8.562546, 47.377108], [8.562592, 47.377011], [8.56265, 47.376917], [8.56272, 47.376827], [8.562802, 47.376741], [8.562895, 47.376661], [8.563452, 47.37621], [8.563492, 47.376178], [8.56358, 47.37577]]], "type": "MultiLineString"}, "id": "2211", "properties": {}, "type": "Feature"}, {"bbox": [8.509874, 47.358445, 8.509998, 47.35855], "geometry": {"coordinates": [[[8.509998, 47.358445], [8.509874, 47.35855]]], "type": "MultiLineString"}, "id": "2212", "properties": {}, "type": "Feature"}, {"bbox": [8.540042, 47.395428, 8.540159, 47.395499], "geometry": {"coordinates": [[[8.540042, 47.395499], [8.540159, 47.395428]]], "type": "MultiLineString"}, "id": "2214", "properties": {}, "type": "Feature"}, {"bbox": [8.554799, 47.369316, 8.554988, 47.369323], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554988, 47.369323]]], "type": "MultiLineString"}, "id": "2218", "properties": {}, "type": "Feature"}, {"bbox": [8.483314, 47.388822, 8.485246, 47.391726], "geometry": {"coordinates": [[[8.485246, 47.391726], [8.484968, 47.391308], [8.484391, 47.390441], [8.484321, 47.390336], [8.484176, 47.390118], [8.483314, 47.388822]]], "type": "MultiLineString"}, "id": "2223", "properties": {}, "type": "Feature"}, {"bbox": [8.546572, 47.405245, 8.548372, 47.405902], "geometry": {"coordinates": [[[8.546572, 47.405245], [8.546711, 47.405254], [8.546848, 47.405271], [8.546983, 47.405295], [8.547114, 47.405327], [8.54724, 47.405367], [8.547362, 47.405413], [8.548229, 47.40578], [8.548372, 47.405902]]], "type": "MultiLineString"}, "id": "2225", "properties": {}, "type": "Feature"}, {"bbox": [8.524541, 47.340956, 8.524721, 47.343468], "geometry": {"coordinates": [[[8.524541, 47.343468], [8.524568, 47.343397], [8.524583, 47.343332], [8.524621, 47.342894], [8.524638, 47.342363], [8.524653, 47.342256], [8.524721, 47.340956]]], "type": "MultiLineString"}, "id": "2226", "properties": {}, "type": "Feature"}, {"bbox": [8.546476, 47.417521, 8.547434, 47.418525], "geometry": {"coordinates": [[[8.546476, 47.417521], [8.546711, 47.4177], [8.547404, 47.418335], [8.547434, 47.418525]]], "type": "MultiLineString"}, "id": "2228", "properties": {}, "type": "Feature"}, {"bbox": [8.518177, 47.371133, 8.520286, 47.372851], "geometry": {"coordinates": [[[8.520286, 47.371133], [8.519938, 47.371416], [8.519907, 47.371441], [8.519555, 47.371728], [8.518858, 47.372299], [8.518177, 47.372851]]], "type": "MultiLineString"}, "id": "2231", "properties": {}, "type": "Feature"}, {"bbox": [8.538445, 47.41763, 8.540407, 47.417721], "geometry": {"coordinates": [[[8.540407, 47.417721], [8.538445, 47.41763]]], "type": "MultiLineString"}, "id": "2236", "properties": {}, "type": "Feature"}, {"bbox": [8.547173, 47.36304, 8.548122, 47.363289], "geometry": {"coordinates": [[[8.547173, 47.36304], [8.548122, 47.363289]]], "type": "MultiLineString"}, "id": "2237", "properties": {}, "type": "Feature"}, {"bbox": [8.491491, 47.381083, 8.491597, 47.381178], "geometry": {"coordinates": [[[8.491597, 47.381178], [8.491513, 47.381104], [8.491491, 47.381083]]], "type": "MultiLineString"}, "id": "2238", "properties": {}, "type": "Feature"}, {"bbox": [8.589219, 47.356436, 8.589323, 47.356975], "geometry": {"coordinates": [[[8.589298, 47.356975], [8.589253, 47.35688], [8.589223, 47.356783], [8.589219, 47.356732], [8.589221, 47.35668], [8.589229, 47.35663], [8.589244, 47.35658], [8.589264, 47.35653], [8.589291, 47.356483], [8.589323, 47.356436]]], "type": "MultiLineString"}, "id": "2239", "properties": {}, "type": "Feature"}, {"bbox": [8.545524, 47.414977, 8.546655, 47.415028], "geometry": {"coordinates": [[[8.545524, 47.414995], [8.545633, 47.414977], [8.546655, 47.415028]]], "type": "MultiLineString"}, "id": "2241", "properties": {}, "type": "Feature"}, {"bbox": [8.521014, 47.366227, 8.521825, 47.366659], "geometry": {"coordinates": [[[8.521825, 47.366659], [8.521014, 47.366227]]], "type": "MultiLineString"}, "id": "2242", "properties": {}, "type": "Feature"}, {"bbox": [8.52756, 47.37139, 8.528132, 47.371841], "geometry": {"coordinates": [[[8.528132, 47.371841], [8.52756, 47.37139]]], "type": "MultiLineString"}, "id": "2243", "properties": {}, "type": "Feature"}, {"bbox": [8.585293, 47.356963, 8.586229, 47.358301], "geometry": {"coordinates": [[[8.585293, 47.358301], [8.585295, 47.358171], [8.586065, 47.357145], [8.586229, 47.356963]]], "type": "MultiLineString"}, "id": "2244", "properties": {}, "type": "Feature"}, {"bbox": [8.550433, 47.412163, 8.558712, 47.412297], "geometry": {"coordinates": [[[8.550433, 47.412175], [8.550686, 47.412163], [8.552534, 47.412194], [8.552953, 47.412201], [8.554124, 47.412221], [8.554256, 47.412223], [8.554387, 47.412225], [8.558712, 47.412297]]], "type": "MultiLineString"}, "id": "2248", "properties": {}, "type": "Feature"}, {"bbox": [8.471045, 47.391834, 8.47175, 47.392376], "geometry": {"coordinates": [[[8.47175, 47.392376], [8.471045, 47.391834]]], "type": "MultiLineString"}, "id": "2249", "properties": {}, "type": "Feature"}, {"bbox": [8.507647, 47.417509, 8.508057, 47.417785], "geometry": {"coordinates": [[[8.508057, 47.417509], [8.507941, 47.417568], [8.507833, 47.417634], [8.507735, 47.417707], [8.507647, 47.417785]]], "type": "MultiLineString"}, "id": "2252", "properties": {}, "type": "Feature"}, {"bbox": [8.565258, 47.407865, 8.565443, 47.407999], "geometry": {"coordinates": [[[8.565258, 47.407865], [8.565443, 47.407999]]], "type": "MultiLineString"}, "id": "2254", "properties": {}, "type": "Feature"}, {"bbox": [8.59169, 47.355267, 8.592676, 47.355742], "geometry": {"coordinates": [[[8.59169, 47.355742], [8.591726, 47.355702], [8.591767, 47.355665], [8.591814, 47.35563], [8.591915, 47.35557], [8.592022, 47.355515], [8.592133, 47.355464], [8.592676, 47.355267]]], "type": "MultiLineString"}, "id": "2257", "properties": {}, "type": "Feature"}, {"bbox": [8.521371, 47.35893, 8.521916, 47.359848], "geometry": {"coordinates": [[[8.521371, 47.359848], [8.521746, 47.359026], [8.521916, 47.35893]]], "type": "MultiLineString"}, "id": "2258", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.330786, 8.536471, 47.331143], "geometry": {"coordinates": [[[8.53634, 47.331143], [8.536345, 47.331105], [8.536354, 47.331067], [8.536368, 47.331031], [8.536471, 47.330786]]], "type": "MultiLineString"}, "id": "2266", "properties": {}, "type": "Feature"}, {"bbox": [8.543671, 47.419286, 8.5439, 47.419631], "geometry": {"coordinates": [[[8.5439, 47.419286], [8.543671, 47.419631]]], "type": "MultiLineString"}, "id": "2270", "properties": {}, "type": "Feature"}, {"bbox": [8.573132, 47.369514, 8.5737, 47.369723], "geometry": {"coordinates": [[[8.573132, 47.369514], [8.573324, 47.369581], [8.573513, 47.36965], [8.5737, 47.369723]]], "type": "MultiLineString"}, "id": "2272", "properties": {}, "type": "Feature"}, {"bbox": [8.512118, 47.421942, 8.513578, 47.42252], "geometry": {"coordinates": [[[8.512118, 47.42252], [8.513578, 47.421942]]], "type": "MultiLineString"}, "id": "2273", "properties": {}, "type": "Feature"}, {"bbox": [8.469634, 47.391759, 8.470565, 47.392537], "geometry": {"coordinates": [[[8.469634, 47.391759], [8.469708, 47.391845], [8.469788, 47.391929], [8.469874, 47.39201], [8.470095, 47.392191], [8.470326, 47.392367], [8.470565, 47.392537]]], "type": "MultiLineString"}, "id": "2276", "properties": {}, "type": "Feature"}, {"bbox": [8.512296, 47.331585, 8.512673, 47.331743], "geometry": {"coordinates": [[[8.512673, 47.331585], [8.512296, 47.331743]]], "type": "MultiLineString"}, "id": "2278", "properties": {}, "type": "Feature"}, {"bbox": [8.530071, 47.350126, 8.530649, 47.350253], "geometry": {"coordinates": [[[8.530071, 47.350253], [8.530228, 47.350227], [8.530429, 47.35019], [8.530522, 47.350168], [8.530612, 47.35014], [8.530649, 47.350126]]], "type": "MultiLineString"}, "id": "2290", "properties": {}, "type": "Feature"}, {"bbox": [8.53838, 47.421562, 8.538976, 47.422295], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.538876, 47.42193], [8.538865, 47.421895], [8.53885, 47.42186], [8.538831, 47.421826], [8.538807, 47.421793], [8.538779, 47.421762], [8.538748, 47.421732], [8.538636, 47.421671], [8.538518, 47.421616], [8.538394, 47.421566], [8.53838, 47.421562]]], "type": "MultiLineString"}, "id": "2291", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.375013, 8.526071, 47.375383], "geometry": {"coordinates": [[[8.526071, 47.375013], [8.525193, 47.375303], [8.524952, 47.375383]]], "type": "MultiLineString"}, "id": "2293", "properties": {}, "type": "Feature"}, {"bbox": [8.530386, 47.375824, 8.533762, 47.378303], "geometry": {"coordinates": [[[8.533762, 47.375824], [8.533587, 47.375986], [8.533078, 47.376418], [8.532918, 47.376539], [8.532853, 47.376587], [8.532384, 47.376914], [8.531847, 47.377287], [8.531311, 47.377659], [8.530391, 47.378299], [8.530386, 47.378303]]], "type": "MultiLineString"}, "id": "2296", "properties": {}, "type": "Feature"}, {"bbox": [8.514383, 47.370351, 8.514617, 47.370381], "geometry": {"coordinates": [[[8.514617, 47.370381], [8.514383, 47.370351]]], "type": "MultiLineString"}, "id": "2297", "properties": {}, "type": "Feature"}, {"bbox": [8.543254, 47.39387, 8.543316, 47.393975], "geometry": {"coordinates": [[[8.543254, 47.39387], [8.543316, 47.393975]]], "type": "MultiLineString"}, "id": "2308", "properties": {}, "type": "Feature"}, {"bbox": [8.54819, 47.379916, 8.550493, 47.382028], "geometry": {"coordinates": [[[8.54819, 47.382028], [8.548393, 47.381879], [8.549309, 47.381], [8.549496, 47.380825], [8.550017, 47.380345], [8.550493, 47.379916]]], "type": "MultiLineString"}, "id": "2323", "properties": {}, "type": "Feature"}, {"bbox": [8.532741, 47.382567, 8.533628, 47.383148], "geometry": {"coordinates": [[[8.532741, 47.382567], [8.532809, 47.382628], [8.533628, 47.383148]]], "type": "MultiLineString"}, "id": "2324", "properties": {}, "type": "Feature"}, {"bbox": [8.530938, 47.38261, 8.531962, 47.383382], "geometry": {"coordinates": [[[8.531962, 47.38261], [8.531913, 47.382649], [8.531279, 47.383122], [8.530938, 47.383382]]], "type": "MultiLineString"}, "id": "2326", "properties": {}, "type": "Feature"}, {"bbox": [8.530426, 47.382431, 8.531688, 47.38331], "geometry": {"coordinates": [[[8.531688, 47.382431], [8.531679, 47.382437], [8.531612, 47.382483], [8.531061, 47.38287], [8.53097, 47.38293], [8.530489, 47.383268], [8.530426, 47.38331]]], "type": "MultiLineString"}, "id": "2327", "properties": {}, "type": "Feature"}, {"bbox": [8.506294, 47.398663, 8.513115, 47.40004], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506526, 47.398859], [8.506545, 47.398869], [8.506563, 47.398881], [8.506579, 47.398894], [8.506593, 47.398908], [8.506605, 47.398922], [8.506616, 47.398937], [8.506624, 47.398953], [8.506631, 47.398969], [8.506635, 47.398986], [8.506638, 47.399003], [8.506638, 47.399019], [8.506636, 47.399036], [8.506632, 47.399053], [8.506462, 47.399419], [8.50641, 47.39954], [8.506317, 47.399752], [8.506308, 47.399768], [8.506301, 47.399785], [8.506296, 47.399802], [8.506294, 47.399819], [8.506294, 47.399838], [8.506296, 47.399857], [8.5063, 47.399875], [8.506307, 47.399893], [8.506317, 47.399911], [8.506328, 47.399928], [8.506342, 47.399944], [8.506358, 47.399959], [8.506376, 47.399973], [8.506395, 47.399986], [8.506417, 47.399998], [8.506439, 47.400009], [8.506464, 47.400018], [8.506489, 47.400025], [8.506515, 47.400031], [8.506541, 47.400036], [8.506567, 47.400038], [8.506594, 47.40004], [8.50662, 47.400039], [8.506647, 47.400037], [8.506673, 47.400034], [8.506699, 47.400029], [8.506724, 47.400022], [8.506748, 47.400014], [8.506771, 47.400005], [8.506792, 47.399994], [8.506812, 47.399982], [8.506831, 47.399969], [8.506847, 47.399955], [8.507062, 47.399743], [8.507081, 47.399725], [8.507215, 47.399591], [8.507365, 47.399465], [8.50753, 47.399348], [8.507708, 47.39924], [8.507888, 47.399133], [8.508257, 47.398955], [8.508322, 47.398927], [8.508389, 47.398904], [8.508459, 47.398884], [8.508532, 47.398868], [8.508606, 47.398856], [8.508638, 47.398851], [8.50867, 47.398848], [8.508702, 47.398846], [8.508734, 47.398846], [8.508766, 47.398847], [8.508798, 47.398849], [8.508937, 47.398872], [8.509212, 47.398921], [8.509251, 47.398927], [8.509291, 47.398932], [8.509331, 47.398935], [8.509417, 47.398939], [8.509503, 47.39894], [8.50959, 47.398938], [8.509658, 47.398934], [8.509725, 47.398927], [8.509792, 47.398917], [8.509929, 47.398894], [8.51104, 47.398728], [8.511283, 47.398696], [8.511529, 47.398675], [8.511776, 47.398665], [8.511824, 47.398664], [8.511872, 47.398663], [8.51192, 47.398663], [8.512232, 47.398674], [8.512541, 47.398699], [8.512847, 47.398738], [8.512875, 47.398743], [8.512901, 47.39875], [8.512927, 47.398758], [8.512951, 47.398768], [8.512974, 47.398779], [8.512996, 47.398792], [8.513016, 47.398805], [8.513035, 47.39882], [8.513051, 47.398836], [8.513065, 47.398853], [8.513078, 47.39887], [8.513088, 47.398888], [8.513115, 47.398974]]], "type": "MultiLineString"}, "id": "2328", "properties": {}, "type": "Feature"}, {"bbox": [8.540416, 47.407537, 8.546479, 47.40947], "geometry": {"coordinates": [[[8.546479, 47.40757], [8.546366, 47.407548], [8.546302, 47.40754], [8.546237, 47.407537], [8.546172, 47.407538], [8.546108, 47.407542], [8.546044, 47.40755], [8.545982, 47.407562], [8.545921, 47.407578], [8.545863, 47.407597], [8.545807, 47.40762], [8.545503, 47.407746], [8.5449, 47.408007], [8.544586, 47.408138], [8.543198, 47.408719], [8.543087, 47.408765], [8.542972, 47.408807], [8.542855, 47.408845], [8.542784, 47.408867], [8.542712, 47.408887], [8.542639, 47.408907], [8.540416, 47.40947]]], "type": "MultiLineString"}, "id": "2331", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.385143, 8.526786, 47.385518], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526786, 47.385518]]], "type": "MultiLineString"}, "id": "2333", "properties": {}, "type": "Feature"}, {"bbox": [8.542302, 47.403535, 8.54274, 47.40392], "geometry": {"coordinates": [[[8.54274, 47.403535], [8.542612, 47.403621], [8.542496, 47.403714], [8.542392, 47.403814], [8.542302, 47.40392]]], "type": "MultiLineString"}, "id": "2335", "properties": {}, "type": "Feature"}, {"bbox": [8.550451, 47.392402, 8.550818, 47.392533], "geometry": {"coordinates": [[[8.550818, 47.392402], [8.5507, 47.392451], [8.550578, 47.392495], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "2344", "properties": {}, "type": "Feature"}, {"bbox": [8.566898, 47.346904, 8.567099, 47.34712], "geometry": {"coordinates": [[[8.566898, 47.34712], [8.567099, 47.346904]]], "type": "MultiLineString"}, "id": "2347", "properties": {}, "type": "Feature"}, {"bbox": [8.563293, 47.410261, 8.563551, 47.410891], "geometry": {"coordinates": [[[8.563551, 47.410261], [8.563441, 47.410466], [8.563354, 47.410677], [8.563293, 47.410891]]], "type": "MultiLineString"}, "id": "2353", "properties": {}, "type": "Feature"}, {"bbox": [8.584913, 47.405537, 8.585159, 47.406035], "geometry": {"coordinates": [[[8.585159, 47.405537], [8.584913, 47.406035]]], "type": "MultiLineString"}, "id": "2354", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.342955, 8.520014, 47.343169], "geometry": {"coordinates": [[[8.51938, 47.343169], [8.519587, 47.343163], [8.519629, 47.343161], [8.519671, 47.343156], [8.519713, 47.343148], [8.519753, 47.343138], [8.519791, 47.343126], [8.519828, 47.343111], [8.519863, 47.343094], [8.519896, 47.343075], [8.519925, 47.343054], [8.519952, 47.343032], [8.519976, 47.343008], [8.519997, 47.342982], [8.520014, 47.342955]]], "type": "MultiLineString"}, "id": "2356", "properties": {}, "type": "Feature"}, {"bbox": [8.475461, 47.413287, 8.475857, 47.413987], "geometry": {"coordinates": [[[8.475857, 47.413287], [8.475844, 47.413388], [8.47578, 47.413547], [8.475695, 47.4137], [8.475588, 47.413848], [8.475461, 47.413987]]], "type": "MultiLineString"}, "id": "2358", "properties": {}, "type": "Feature"}, {"bbox": [8.495954, 47.425929, 8.496499, 47.426047], "geometry": {"coordinates": [[[8.495954, 47.426047], [8.496499, 47.425929]]], "type": "MultiLineString"}, "id": "2359", "properties": {}, "type": "Feature"}, {"bbox": [8.527403, 47.376792, 8.528744, 47.377011], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.527403, 47.377011]]], "type": "MultiLineString"}, "id": "2372", "properties": {}, "type": "Feature"}, {"bbox": [8.595392, 47.357767, 8.596001, 47.35785], "geometry": {"coordinates": [[[8.595392, 47.357778], [8.595425, 47.357767], [8.596001, 47.35785]]], "type": "MultiLineString"}, "id": "2375", "properties": {}, "type": "Feature"}, {"bbox": [8.516488, 47.392076, 8.517689, 47.392417], "geometry": {"coordinates": [[[8.517689, 47.392076], [8.517416, 47.392155], [8.516823, 47.392325], [8.516488, 47.392417]]], "type": "MultiLineString"}, "id": "2386", "properties": {}, "type": "Feature"}, {"bbox": [8.536796, 47.375729, 8.53712, 47.375788], "geometry": {"coordinates": [[[8.53712, 47.375729], [8.537011, 47.375745], [8.536902, 47.375765], [8.536796, 47.375788]]], "type": "MultiLineString"}, "id": "2389", "properties": {}, "type": "Feature"}, {"bbox": [8.569375, 47.406948, 8.569897, 47.407829], "geometry": {"coordinates": [[[8.569375, 47.406948], [8.569897, 47.407829]]], "type": "MultiLineString"}, "id": "2395", "properties": {}, "type": "Feature"}, {"bbox": [8.58205, 47.396868, 8.58292, 47.397297], "geometry": {"coordinates": [[[8.58205, 47.397297], [8.582217, 47.397209], [8.582402, 47.397117], [8.58292, 47.396868]]], "type": "MultiLineString"}, "id": "2396", "properties": {}, "type": "Feature"}, {"bbox": [8.528464, 47.415282, 8.530026, 47.415885], "geometry": {"coordinates": [[[8.530026, 47.415885], [8.529927, 47.415856], [8.529829, 47.415824], [8.529734, 47.415789], [8.528464, 47.415282]]], "type": "MultiLineString"}, "id": "2398", "properties": {}, "type": "Feature"}, {"bbox": [8.531706, 47.367726, 8.534234, 47.368602], "geometry": {"coordinates": [[[8.534234, 47.368602], [8.534079, 47.368554], [8.533269, 47.36828], [8.533178, 47.368249], [8.533092, 47.36822], [8.531778, 47.367773], [8.531706, 47.367726]]], "type": "MultiLineString"}, "id": "2412", "properties": {}, "type": "Feature"}, {"bbox": [8.526934, 47.351791, 8.527309, 47.351826], "geometry": {"coordinates": [[[8.527309, 47.351826], [8.526934, 47.351791]]], "type": "MultiLineString"}, "id": "2415", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.393474, 8.533591, 47.39414], "geometry": {"coordinates": [[[8.533591, 47.39377], [8.533419, 47.39371], [8.532779, 47.393474], [8.532192, 47.393645], [8.531032, 47.393975], [8.530489, 47.39414]]], "type": "MultiLineString"}, "id": "2416", "properties": {}, "type": "Feature"}, {"bbox": [8.551145, 47.368332, 8.5546, 47.36923], "geometry": {"coordinates": [[[8.551145, 47.368332], [8.551367, 47.368399], [8.552091, 47.368657], [8.552785, 47.368904], [8.553078, 47.368984], [8.553673, 47.36908], [8.554234, 47.369171], [8.554405, 47.369198], [8.5546, 47.36923]]], "type": "MultiLineString"}, "id": "2421", "properties": {}, "type": "Feature"}, {"bbox": [8.560385, 47.351824, 8.560817, 47.35437], "geometry": {"coordinates": [[[8.560724, 47.35437], [8.560569, 47.354295], [8.560512, 47.354265], [8.560483, 47.354213], [8.560462, 47.353618], [8.560422, 47.352478], [8.560817, 47.35206], [8.560385, 47.351824]]], "type": "MultiLineString"}, "id": "2425", "properties": {}, "type": "Feature"}, {"bbox": [8.548544, 47.387682, 8.54934, 47.387721], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.548706, 47.387682], [8.54934, 47.387721]]], "type": "MultiLineString"}, "id": "2436", "properties": {}, "type": "Feature"}, {"bbox": [8.500772, 47.419662, 8.501834, 47.420154], "geometry": {"coordinates": [[[8.501834, 47.419662], [8.501481, 47.419827], [8.501128, 47.419991], [8.500772, 47.420154]]], "type": "MultiLineString"}, "id": "2449", "properties": {}, "type": "Feature"}, {"bbox": [8.568354, 47.357191, 8.571058, 47.357356], "geometry": {"coordinates": [[[8.568354, 47.357297], [8.568684, 47.357334], [8.569018, 47.357354], [8.569353, 47.357356], [8.569814, 47.357347], [8.570518, 47.357312], [8.570891, 47.35721], [8.570956, 47.357197], [8.571058, 47.357191]]], "type": "MultiLineString"}, "id": "2454", "properties": {}, "type": "Feature"}, {"bbox": [8.505925, 47.364993, 8.50873, 47.369389], "geometry": {"coordinates": [[[8.50873, 47.364993], [8.508645, 47.365086], [8.508085, 47.365695], [8.508027, 47.365759], [8.5078, 47.366009], [8.507598, 47.366253], [8.507359, 47.366536], [8.507142, 47.366828], [8.506948, 47.367127], [8.506852, 47.36726], [8.506723, 47.367447], [8.506673, 47.367527], [8.506624, 47.367608], [8.506576, 47.367689], [8.506517, 47.367793], [8.50646, 47.367899], [8.506405, 47.368005], [8.506358, 47.368099], [8.50629, 47.368245], [8.506226, 47.368391], [8.506164, 47.368538], [8.506155, 47.368561], [8.506146, 47.368583], [8.506137, 47.368605], [8.506079, 47.368771], [8.506021, 47.368937], [8.505981, 47.369087], [8.505949, 47.369238], [8.505925, 47.369389]]], "type": "MultiLineString"}, "id": "2463", "properties": {}, "type": "Feature"}, {"bbox": [8.553222, 47.369533, 8.55373, 47.370387], "geometry": {"coordinates": [[[8.553222, 47.370387], [8.55373, 47.369692], [8.553726, 47.369533]]], "type": "MultiLineString"}, "id": "2466", "properties": {}, "type": "Feature"}, {"bbox": [8.501834, 47.417821, 8.504241, 47.419662], "geometry": {"coordinates": [[[8.504241, 47.417821], [8.504229, 47.417857], [8.504211, 47.417892], [8.50419, 47.417926], [8.504165, 47.417959], [8.504136, 47.41799], [8.504103, 47.41802], [8.503679, 47.418476], [8.503357, 47.418771], [8.502995, 47.419043], [8.502596, 47.41929], [8.502163, 47.419509], [8.501834, 47.419662]]], "type": "MultiLineString"}, "id": "2468", "properties": {}, "type": "Feature"}, {"bbox": [8.506996, 47.414837, 8.510665, 47.417246], "geometry": {"coordinates": [[[8.506996, 47.417246], [8.507284, 47.417074], [8.507836, 47.416721], [8.508369, 47.416366], [8.508737, 47.416117], [8.509124, 47.41589], [8.5095, 47.415678], [8.509632, 47.415593], [8.509755, 47.415501], [8.509867, 47.415403], [8.510073, 47.415198], [8.510204, 47.415067], [8.510329, 47.41493], [8.510354, 47.414912], [8.510381, 47.414896], [8.510411, 47.414882], [8.510442, 47.41487], [8.510474, 47.414859], [8.510508, 47.414851], [8.510543, 47.414844], [8.510578, 47.41484], [8.510614, 47.414838], [8.51065, 47.414839], [8.510665, 47.414837]]], "type": "MultiLineString"}, "id": "2473", "properties": {}, "type": "Feature"}, {"bbox": [8.541862, 47.369868, 8.543312, 47.37009], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.542012, 47.369892], [8.542948, 47.369986], [8.543026, 47.369998], [8.543101, 47.370015], [8.543175, 47.370035], [8.543245, 47.370061], [8.543312, 47.37009]]], "type": "MultiLineString"}, "id": "2474", "properties": {}, "type": "Feature"}, {"bbox": [8.558396, 47.3683, 8.560341, 47.370171], "geometry": {"coordinates": [[[8.558396, 47.370171], [8.55913, 47.369399], [8.559738, 47.368737], [8.560184, 47.3683], [8.560341, 47.368346]]], "type": "MultiLineString"}, "id": "2475", "properties": {}, "type": "Feature"}, {"bbox": [8.509575, 47.382691, 8.51006, 47.383143], "geometry": {"coordinates": [[[8.51006, 47.383143], [8.509693, 47.382806], [8.509575, 47.382691]]], "type": "MultiLineString"}, "id": "2477", "properties": {}, "type": "Feature"}, {"bbox": [8.485592, 47.394769, 8.49094, 47.396118], "geometry": {"coordinates": [[[8.49094, 47.394777], [8.490833, 47.394769], [8.489887, 47.395018], [8.489068, 47.395233], [8.488475, 47.395374], [8.48614, 47.395983], [8.485805, 47.396061], [8.485592, 47.396118]]], "type": "MultiLineString"}, "id": "2479", "properties": {}, "type": "Feature"}, {"bbox": [8.521307, 47.389505, 8.521836, 47.39022], "geometry": {"coordinates": [[[8.521309, 47.389505], [8.521307, 47.389524], [8.521435, 47.389657], [8.52143, 47.389677], [8.521429, 47.389698], [8.52143, 47.389718], [8.521434, 47.389738], [8.52144, 47.389758], [8.521449, 47.389778], [8.521461, 47.389797], [8.521475, 47.389815], [8.521491, 47.389832], [8.521762, 47.390119], [8.521836, 47.39022]]], "type": "MultiLineString"}, "id": "2481", "properties": {}, "type": "Feature"}, {"bbox": [8.552897, 47.398273, 8.553893, 47.39891], "geometry": {"coordinates": [[[8.552897, 47.398273], [8.552937, 47.398283], [8.552975, 47.398295], [8.553011, 47.398309], [8.553046, 47.398324], [8.553078, 47.398342], [8.553109, 47.398362], [8.553136, 47.398383], [8.55373, 47.398801], [8.553893, 47.39891]]], "type": "MultiLineString"}, "id": "2482", "properties": {}, "type": "Feature"}, {"bbox": [8.540438, 47.390451, 8.542697, 47.393529], "geometry": {"coordinates": [[[8.542697, 47.390451], [8.542629, 47.390485], [8.541602, 47.391281], [8.541003, 47.391764], [8.540855, 47.391924], [8.540728, 47.392092], [8.540623, 47.392267], [8.540542, 47.392448], [8.540486, 47.392633], [8.540459, 47.392758], [8.540444, 47.392884], [8.540438, 47.393011], [8.540441, 47.393529]]], "type": "MultiLineString"}, "id": "2483", "properties": {}, "type": "Feature"}, {"bbox": [8.50078, 47.425035, 8.502591, 47.42615], "geometry": {"coordinates": [[[8.502591, 47.42615], [8.502491, 47.426079], [8.500951, 47.425197], [8.500921, 47.425182], [8.500893, 47.425165], [8.500868, 47.425146], [8.500844, 47.425126], [8.500824, 47.425105], [8.500806, 47.425083], [8.500791, 47.425059], [8.50078, 47.425035]]], "type": "MultiLineString"}, "id": "2484", "properties": {}, "type": "Feature"}, {"bbox": [8.541865, 47.416213, 8.545087, 47.416297], "geometry": {"coordinates": [[[8.545087, 47.416297], [8.544165, 47.416274], [8.541992, 47.416213], [8.541921, 47.416223], [8.541865, 47.416254]]], "type": "MultiLineString"}, "id": "2485", "properties": {}, "type": "Feature"}, {"bbox": [8.546563, 47.412037, 8.550433, 47.412205], "geometry": {"coordinates": [[[8.546563, 47.412037], [8.547375, 47.412164], [8.547639, 47.412194], [8.547906, 47.412205], [8.548173, 47.412198], [8.548402, 47.412183], [8.548405, 47.412183], [8.548808, 47.412157], [8.549332, 47.412144], [8.549499, 47.412149], [8.550433, 47.412175]]], "type": "MultiLineString"}, "id": "2486", "properties": {}, "type": "Feature"}, {"bbox": [8.481953, 47.385946, 8.485257, 47.387996], "geometry": {"coordinates": [[[8.485257, 47.387996], [8.48509, 47.387811], [8.485021, 47.387742], [8.484944, 47.387676], [8.48486, 47.387615], [8.484618, 47.387463], [8.484564, 47.387431], [8.484495, 47.387394], [8.484428, 47.387356], [8.484361, 47.387318], [8.484309, 47.387288], [8.484258, 47.387257], [8.484208, 47.387226], [8.484183, 47.38721], [8.484159, 47.387195], [8.484135, 47.387179], [8.483755, 47.386935], [8.483616, 47.386846], [8.483495, 47.386773], [8.483367, 47.386705], [8.483235, 47.386641], [8.482784, 47.386425], [8.482096, 47.386057], [8.482046, 47.386022], [8.481998, 47.385985], [8.481953, 47.385946]]], "type": "MultiLineString"}, "id": "2491", "properties": {}, "type": "Feature"}, {"bbox": [8.495103, 47.40687, 8.496673, 47.406994], "geometry": {"coordinates": [[[8.495103, 47.406892], [8.4952, 47.40693], [8.495356, 47.406961], [8.495516, 47.406982], [8.495678, 47.406993], [8.495841, 47.406994], [8.496003, 47.406985], [8.496163, 47.406966], [8.496321, 47.406937], [8.496473, 47.406898], [8.496673, 47.40687]]], "type": "MultiLineString"}, "id": "2494", "properties": {}, "type": "Feature"}, {"bbox": [8.543977, 47.421022, 8.54836, 47.423943], "geometry": {"coordinates": [[[8.54836, 47.421022], [8.547419, 47.421511], [8.546421, 47.422039], [8.544786, 47.422905], [8.544346, 47.423135], [8.54428, 47.423178], [8.544218, 47.423225], [8.544163, 47.423276], [8.544115, 47.423329], [8.544073, 47.423385], [8.544039, 47.423443], [8.544012, 47.423503], [8.543992, 47.423564], [8.54398, 47.423626], [8.543977, 47.423689], [8.543981, 47.423751], [8.543992, 47.423814], [8.544039, 47.423943]]], "type": "MultiLineString"}, "id": "2498", "properties": {}, "type": "Feature"}, {"bbox": [8.547992, 47.361282, 8.549475, 47.36157], "geometry": {"coordinates": [[[8.547992, 47.361282], [8.549475, 47.36157]]], "type": "MultiLineString"}, "id": "2499", "properties": {}, "type": "Feature"}, {"bbox": [8.557779, 47.35432, 8.561075, 47.355885], "geometry": {"coordinates": [[[8.557779, 47.35432], [8.557968, 47.354442], [8.558232, 47.354636], [8.55835, 47.354708], [8.558436, 47.35476], [8.558596, 47.354878], [8.558704, 47.354954], [8.558821, 47.355024], [8.558946, 47.355088], [8.559673, 47.355363], [8.559864, 47.355435], [8.560655, 47.355728], [8.561075, 47.355885]]], "type": "MultiLineString"}, "id": "2500", "properties": {}, "type": "Feature"}, {"bbox": [8.555495, 47.358223, 8.556108, 47.359615], "geometry": {"coordinates": [[[8.55609, 47.358223], [8.556019, 47.35834], [8.555505, 47.359264], [8.555498, 47.359279], [8.555495, 47.359292], [8.555495, 47.359309], [8.555499, 47.359323], [8.555504, 47.359333], [8.555523, 47.359358], [8.555571, 47.359383], [8.555849, 47.359508], [8.556108, 47.359615]]], "type": "MultiLineString"}, "id": "2501", "properties": {}, "type": "Feature"}, {"bbox": [8.55147, 47.358737, 8.557098, 47.364012], "geometry": {"coordinates": [[[8.55147, 47.364012], [8.552383, 47.363257], [8.5524, 47.363244], [8.552417, 47.363232], [8.552434, 47.36322], [8.55262, 47.363084], [8.552801, 47.362945], [8.552979, 47.362803], [8.553091, 47.36271], [8.553201, 47.362616], [8.55331, 47.362521], [8.553475, 47.362371], [8.553636, 47.362218], [8.553793, 47.362063], [8.553814, 47.362042], [8.553834, 47.36202], [8.553855, 47.361999], [8.554315, 47.361537], [8.554354, 47.361523], [8.55439, 47.361506], [8.554425, 47.361487], [8.554457, 47.361467], [8.554486, 47.361444], [8.554513, 47.36142], [8.554536, 47.361395], [8.554767, 47.361125], [8.554947, 47.360869], [8.555462, 47.360311], [8.55552, 47.360248], [8.556027, 47.359699], [8.556052, 47.35967], [8.556079, 47.359642], [8.556108, 47.359615], [8.55614, 47.359589], [8.556174, 47.359565], [8.556211, 47.359542], [8.556614, 47.359331], [8.556643, 47.359308], [8.556669, 47.359284], [8.556692, 47.359258], [8.556711, 47.359231], [8.556867, 47.359033], [8.557098, 47.358737]]], "type": "MultiLineString"}, "id": "2502", "properties": {}, "type": "Feature"}, {"bbox": [8.537375, 47.424702, 8.540756, 47.425218], "geometry": {"coordinates": [[[8.540756, 47.424702], [8.540572, 47.424802], [8.540482, 47.424849], [8.540386, 47.424891], [8.540285, 47.424927], [8.54018, 47.424958], [8.540072, 47.424982], [8.539961, 47.425], [8.539849, 47.425011], [8.539735, 47.425016], [8.539562, 47.425019], [8.53939, 47.425033], [8.539221, 47.425057], [8.539066, 47.425081], [8.538904, 47.425109], [8.538369, 47.425202], [8.538358, 47.425204], [8.538299, 47.425212], [8.538238, 47.425217], [8.538177, 47.425218], [8.538117, 47.425215], [8.538056, 47.42521], [8.537997, 47.4252], [8.537939, 47.425188], [8.537883, 47.425172], [8.537829, 47.425153], [8.537778, 47.425131], [8.537729, 47.425106], [8.537375, 47.424897]]], "type": "MultiLineString"}, "id": "2503", "properties": {}, "type": "Feature"}, {"bbox": [8.4869, 47.370051, 8.491742, 47.375564], "geometry": {"coordinates": [[[8.4869, 47.375564], [8.48699, 47.37529], [8.487082, 47.375036], [8.487103, 47.37499], [8.48713, 47.374945], [8.487162, 47.374901], [8.487199, 47.374859], [8.487241, 47.37482], [8.487291, 47.37478], [8.487347, 47.374742], [8.487408, 47.374708], [8.487472, 47.374678], [8.487541, 47.374652], [8.487612, 47.37463], [8.487686, 47.374612], [8.488099, 47.374527], [8.488213, 47.3745], [8.488325, 47.374466], [8.488432, 47.374427], [8.48847, 47.374417], [8.488507, 47.374405], [8.488541, 47.37439], [8.488574, 47.374373], [8.488604, 47.374355], [8.488632, 47.374334], [8.489591, 47.37365], [8.490394, 47.373089], [8.490494, 47.37301], [8.490584, 47.372925], [8.490664, 47.372835], [8.490733, 47.372742], [8.490817, 47.372585], [8.49089, 47.372426], [8.490952, 47.372265], [8.491048, 47.372034], [8.491072, 47.371946], [8.491086, 47.371857], [8.491089, 47.371767], [8.49108, 47.371678], [8.491061, 47.371589], [8.49099, 47.371401], [8.490975, 47.371356], [8.490963, 47.371312], [8.490955, 47.371267], [8.490949, 47.371222], [8.490947, 47.371176], [8.490948, 47.371131], [8.490957, 47.371059], [8.490975, 47.370987], [8.491001, 47.370917], [8.491036, 47.370848], [8.491079, 47.370782], [8.491129, 47.370718], [8.491187, 47.370657], [8.491501, 47.370369], [8.491565, 47.370313], [8.491621, 47.370253], [8.491669, 47.37019], [8.491709, 47.370125], [8.49174, 47.370057], [8.491742, 47.370051]]], "type": "MultiLineString"}, "id": "2504", "properties": {}, "type": "Feature"}, {"bbox": [8.485592, 47.395233, 8.489366, 47.396733], "geometry": {"coordinates": [[[8.489068, 47.395233], [8.489348, 47.395733], [8.489355, 47.395745], [8.48936, 47.395758], [8.489364, 47.395771], [8.489366, 47.395784], [8.489366, 47.395797], [8.489364, 47.39581], [8.489361, 47.395823], [8.489357, 47.395836], [8.489351, 47.395849], [8.489343, 47.395861], [8.489333, 47.395872], [8.489323, 47.395883], [8.489311, 47.395894], [8.489297, 47.395903], [8.489283, 47.395912], [8.489267, 47.39592], [8.489251, 47.395927], [8.489233, 47.395933], [8.489215, 47.395938], [8.486189, 47.396733], [8.485992, 47.396507], [8.485592, 47.396118]]], "type": "MultiLineString"}, "id": "2505", "properties": {}, "type": "Feature"}, {"bbox": [8.536312, 47.387005, 8.539671, 47.389937], "geometry": {"coordinates": [[[8.539671, 47.387008], [8.539635, 47.387005], [8.539599, 47.387005], [8.539563, 47.387007], [8.539528, 47.387012], [8.539493, 47.387018], [8.539459, 47.387027], [8.539175, 47.387139], [8.539117, 47.387161], [8.539059, 47.387185], [8.539002, 47.38721], [8.538979, 47.387223], [8.538958, 47.387238], [8.538939, 47.387254], [8.538892, 47.387299], [8.538845, 47.387344], [8.538798, 47.38739], [8.538545, 47.387657], [8.538497, 47.387705], [8.53846, 47.387746], [8.538058, 47.388298], [8.537653, 47.388853], [8.537338, 47.38911], [8.536632, 47.389688], [8.536312, 47.389937]]], "type": "MultiLineString"}, "id": "2516", "properties": {}, "type": "Feature"}, {"bbox": [8.521408, 47.377923, 8.522298, 47.379172], "geometry": {"coordinates": [[[8.521408, 47.377923], [8.521478, 47.378019], [8.52186, 47.378558], [8.521994, 47.378746], [8.522298, 47.379172]]], "type": "MultiLineString"}, "id": "2517", "properties": {}, "type": "Feature"}, {"bbox": [8.538394, 47.419042, 8.538748, 47.421566], "geometry": {"coordinates": [[[8.538432, 47.419042], [8.538488, 47.419621], [8.538514, 47.419747], [8.538547, 47.419866], [8.538684, 47.420137], [8.538748, 47.420256], [8.538601, 47.420338], [8.538591, 47.420344], [8.538582, 47.42035], [8.538573, 47.420356], [8.538565, 47.420364], [8.538558, 47.420371], [8.538552, 47.420379], [8.538547, 47.420387], [8.538543, 47.420396], [8.53854, 47.420405], [8.538539, 47.420413], [8.538538, 47.420422], [8.538538, 47.420431], [8.538505, 47.420784], [8.538451, 47.421182], [8.538394, 47.421566]]], "type": "MultiLineString"}, "id": "2518", "properties": {}, "type": "Feature"}, {"bbox": [8.553051, 47.355324, 8.554119, 47.355696], "geometry": {"coordinates": [[[8.553051, 47.355324], [8.553053, 47.355324], [8.553269, 47.35541], [8.554119, 47.355696]]], "type": "MultiLineString"}, "id": "2526", "properties": {}, "type": "Feature"}, {"bbox": [8.54828, 47.41557, 8.548847, 47.416338], "geometry": {"coordinates": [[[8.54828, 47.41557], [8.548774, 47.416305], [8.548777, 47.416309], [8.548782, 47.416313], [8.548787, 47.416318], [8.548792, 47.416321], [8.548798, 47.416325], [8.548804, 47.416328], [8.54881, 47.41633], [8.548817, 47.416333], [8.548824, 47.416335], [8.548832, 47.416336], [8.548839, 47.416337], [8.548847, 47.416338]]], "type": "MultiLineString"}, "id": "2527", "properties": {}, "type": "Feature"}, {"bbox": [8.569404, 47.380047, 8.570829, 47.381004], "geometry": {"coordinates": [[[8.570829, 47.380047], [8.570474, 47.380131], [8.570326, 47.380183], [8.570185, 47.380243], [8.570051, 47.380311], [8.569927, 47.380387], [8.569812, 47.380469], [8.569708, 47.380558], [8.569616, 47.380652], [8.569535, 47.380751], [8.569467, 47.380855], [8.569412, 47.380962], [8.569404, 47.381004]]], "type": "MultiLineString"}, "id": "2529", "properties": {}, "type": "Feature"}, {"bbox": [8.591389, 47.396576, 8.594578, 47.398448], "geometry": {"coordinates": [[[8.591389, 47.398448], [8.591438, 47.398254], [8.591476, 47.398216], [8.591668, 47.398059], [8.591677, 47.398042], [8.591821, 47.39784], [8.59184, 47.397817], [8.591935, 47.397704], [8.591985, 47.397646], [8.59201, 47.39762], [8.59217, 47.39746], [8.592224, 47.397411], [8.592376, 47.39728], [8.592409, 47.397255], [8.592615, 47.397102], [8.592835, 47.39696], [8.59288, 47.396933], [8.593095, 47.396814], [8.593136, 47.396792], [8.593394, 47.396669], [8.59345, 47.396648], [8.593496, 47.396634], [8.593543, 47.396622], [8.593592, 47.396612], [8.593657, 47.396604], [8.593789, 47.396595], [8.593847, 47.396589], [8.59394, 47.396576], [8.59409, 47.3967], [8.594121, 47.396731], [8.59441, 47.397039], [8.594578, 47.397224]]], "type": "MultiLineString"}, "id": "2530", "properties": {}, "type": "Feature"}, {"bbox": [8.561309, 47.405792, 8.563505, 47.408296], "geometry": {"coordinates": [[[8.563375, 47.405792], [8.563481, 47.405883], [8.563488, 47.405892], [8.563494, 47.405901], [8.563499, 47.405911], [8.563502, 47.405921], [8.563505, 47.405931], [8.563505, 47.405942], [8.563505, 47.405952], [8.563503, 47.405962], [8.563501, 47.405972], [8.563497, 47.405981], [8.563492, 47.40599], [8.563486, 47.405998], [8.563479, 47.406007], [8.563471, 47.406015], [8.56322, 47.406283], [8.563068, 47.406423], [8.562774, 47.406734], [8.562432, 47.407123], [8.562057, 47.407501], [8.561729, 47.407857], [8.561309, 47.408296]]], "type": "MultiLineString"}, "id": "2531", "properties": {}, "type": "Feature"}, {"bbox": [8.490667, 47.401566, 8.49686, 47.402902], "geometry": {"coordinates": [[[8.49686, 47.401938], [8.495605, 47.4016], [8.495488, 47.401582], [8.495369, 47.40157], [8.495249, 47.401566], [8.495129, 47.401569], [8.49501, 47.401579], [8.494893, 47.401597], [8.49448, 47.401666], [8.494065, 47.401727], [8.493648, 47.401782], [8.492607, 47.401897], [8.492447, 47.401915], [8.491769, 47.402013], [8.491115, 47.402129], [8.490667, 47.402218], [8.490953, 47.402822], [8.490992, 47.402902]]], "type": "MultiLineString"}, "id": "2533", "properties": {}, "type": "Feature"}, {"bbox": [8.521309, 47.383926, 8.530956, 47.389505], "geometry": {"coordinates": [[[8.530956, 47.383926], [8.530419, 47.384342], [8.529795, 47.384833], [8.529163, 47.385322], [8.528584, 47.385779], [8.528485, 47.385845], [8.527879, 47.386319], [8.527814, 47.38635], [8.527136, 47.38667], [8.526941, 47.386764], [8.526814, 47.386836], [8.525884, 47.387279], [8.525438, 47.387496], [8.525416, 47.387507], [8.524726, 47.387843], [8.523357, 47.388509], [8.521309, 47.389505]]], "type": "MultiLineString"}, "id": "2534", "properties": {}, "type": "Feature"}, {"bbox": [8.549001, 47.424097, 8.550897, 47.425502], "geometry": {"coordinates": [[[8.549001, 47.424097], [8.549324, 47.424249], [8.549741, 47.424463], [8.549844, 47.424525], [8.549939, 47.424593], [8.550025, 47.424666], [8.550102, 47.424744], [8.550422, 47.42504], [8.550897, 47.425502]]], "type": "MultiLineString"}, "id": "2535", "properties": {}, "type": "Feature"}, {"bbox": [8.50871, 47.424637, 8.509092, 47.424794], "geometry": {"coordinates": [[[8.509092, 47.424637], [8.509037, 47.424672], [8.508978, 47.424703], [8.508915, 47.424731], [8.508849, 47.424756], [8.508781, 47.424777], [8.50871, 47.424794]]], "type": "MultiLineString"}, "id": "2536", "properties": {}, "type": "Feature"}, {"bbox": [8.508027, 47.365759, 8.509628, 47.367676], "geometry": {"coordinates": [[[8.509555, 47.367676], [8.509585, 47.36761], [8.509607, 47.367543], [8.509622, 47.367475], [8.509628, 47.367406], [8.509625, 47.367338], [8.509615, 47.367269], [8.509596, 47.367202], [8.509487, 47.366847], [8.509452, 47.366758], [8.509406, 47.366671], [8.509348, 47.366586], [8.509281, 47.366506], [8.509203, 47.36643], [8.509116, 47.366358], [8.50902, 47.366292], [8.508712, 47.366095], [8.50838, 47.365917], [8.508027, 47.365759]]], "type": "MultiLineString"}, "id": "2543", "properties": {}, "type": "Feature"}, {"bbox": [8.54274, 47.403269, 8.543391, 47.403535], "geometry": {"coordinates": [[[8.543391, 47.403269], [8.543249, 47.403307], [8.543111, 47.403353], [8.54298, 47.403406], [8.542856, 47.403467], [8.54274, 47.403535]]], "type": "MultiLineString"}, "id": "2544", "properties": {}, "type": "Feature"}, {"bbox": [8.524726, 47.387843, 8.525603, 47.388674], "geometry": {"coordinates": [[[8.525603, 47.388674], [8.524726, 47.387843]]], "type": "MultiLineString"}, "id": "2550", "properties": {}, "type": "Feature"}, {"bbox": [8.533113, 47.390845, 8.534441, 47.391601], "geometry": {"coordinates": [[[8.533113, 47.390845], [8.533896, 47.391291], [8.533943, 47.391318], [8.534441, 47.391601]]], "type": "MultiLineString"}, "id": "2551", "properties": {}, "type": "Feature"}, {"bbox": [8.554843, 47.35438, 8.556068, 47.355377], "geometry": {"coordinates": [[[8.554843, 47.355377], [8.55492, 47.355314], [8.555339, 47.354977], [8.556068, 47.35438]]], "type": "MultiLineString"}, "id": "2557", "properties": {}, "type": "Feature"}, {"bbox": [8.487822, 47.402687, 8.488293, 47.403403], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.488042, 47.403012], [8.488164, 47.403189], [8.488249, 47.403329], [8.488293, 47.403403]]], "type": "MultiLineString"}, "id": "2560", "properties": {}, "type": "Feature"}, {"bbox": [8.531835, 47.388188, 8.532591, 47.388442], "geometry": {"coordinates": [[[8.531835, 47.38823], [8.531845, 47.388237], [8.531856, 47.388243], [8.531868, 47.388248], [8.531881, 47.388253], [8.531894, 47.388257], [8.531907, 47.388261], [8.531921, 47.388263], [8.531935, 47.388265], [8.531949, 47.388266], [8.531964, 47.388266], [8.531978, 47.388265], [8.531992, 47.388263], [8.532006, 47.388261], [8.53202, 47.388258], [8.532033, 47.388254], [8.532216, 47.388194], [8.532224, 47.388191], [8.532233, 47.38819], [8.532241, 47.388189], [8.53225, 47.388188], [8.532259, 47.388188], [8.532267, 47.388188], [8.532276, 47.388189], [8.532284, 47.38819], [8.532292, 47.388192], [8.5323, 47.388194], [8.532308, 47.388197], [8.532315, 47.388201], [8.532322, 47.388204], [8.532328, 47.388208], [8.532334, 47.388213], [8.532591, 47.388442]]], "type": "MultiLineString"}, "id": "2561", "properties": {}, "type": "Feature"}, {"bbox": [8.531273, 47.389708, 8.532307, 47.390367], "geometry": {"coordinates": [[[8.531273, 47.389708], [8.531447, 47.389819], [8.532253, 47.390308], [8.532307, 47.390367]]], "type": "MultiLineString"}, "id": "2565", "properties": {}, "type": "Feature"}, {"bbox": [8.516431, 47.379785, 8.518073, 47.381083], "geometry": {"coordinates": [[[8.516431, 47.379785], [8.516506, 47.379902], [8.516526, 47.379927], [8.51655, 47.379951], [8.516577, 47.379974], [8.517112, 47.380368], [8.517268, 47.380484], [8.518073, 47.381083]]], "type": "MultiLineString"}, "id": "2566", "properties": {}, "type": "Feature"}, {"bbox": [8.556014, 47.379278, 8.558402, 47.380011], "geometry": {"coordinates": [[[8.556014, 47.380011], [8.557167, 47.379365], [8.557215, 47.379344], [8.557266, 47.379325], [8.557319, 47.379309], [8.557373, 47.379297], [8.557429, 47.379287], [8.557486, 47.379281], [8.557544, 47.379278], [8.557602, 47.379278], [8.557659, 47.379282], [8.557716, 47.379289], [8.557772, 47.379299], [8.557827, 47.379313], [8.557879, 47.379329], [8.557929, 47.379348], [8.55797, 47.379365], [8.558009, 47.379384], [8.558045, 47.379405], [8.558079, 47.379428], [8.558109, 47.379453], [8.558137, 47.379479], [8.558402, 47.379707]]], "type": "MultiLineString"}, "id": "2572", "properties": {}, "type": "Feature"}, {"bbox": [8.56479, 47.378437, 8.567211, 47.379824], "geometry": {"coordinates": [[[8.567211, 47.378437], [8.567172, 47.378634], [8.566603, 47.379121], [8.566516, 47.379182], [8.566421, 47.379238], [8.566319, 47.379288], [8.566211, 47.379332], [8.566097, 47.379369], [8.56598, 47.379398], [8.565299, 47.37959], [8.565123, 47.379661], [8.564953, 47.37974], [8.56479, 47.379824]]], "type": "MultiLineString"}, "id": "2573", "properties": {}, "type": "Feature"}, {"bbox": [8.596011, 47.357, 8.597284, 47.357723], "geometry": {"coordinates": [[[8.596011, 47.357723], [8.59605, 47.357716], [8.596098, 47.357712], [8.596145, 47.357695], [8.596363, 47.357537], [8.596741, 47.357284], [8.597159, 47.357143], [8.597208, 47.357118], [8.597237, 47.357088], [8.597284, 47.357]]], "type": "MultiLineString"}, "id": "2575", "properties": {}, "type": "Feature"}, {"bbox": [8.51522, 47.415344, 8.51836, 47.418542], "geometry": {"coordinates": [[[8.51836, 47.415344], [8.51802, 47.415651], [8.517908, 47.415768], [8.517895, 47.415781], [8.517881, 47.415793], [8.517866, 47.415805], [8.517768, 47.415878], [8.51736, 47.416166], [8.517281, 47.416216], [8.517197, 47.416261], [8.517107, 47.416302], [8.517012, 47.416338], [8.516599, 47.416477], [8.516558, 47.416492], [8.516519, 47.416509], [8.516482, 47.416529], [8.516447, 47.41655], [8.516416, 47.416574], [8.515933, 47.416968], [8.515904, 47.416996], [8.515879, 47.417025], [8.515856, 47.417056], [8.515838, 47.417087], [8.515609, 47.417618], [8.515592, 47.417659], [8.515576, 47.4177], [8.515562, 47.417742], [8.515449, 47.418074], [8.51543, 47.418117], [8.515336, 47.418318], [8.515241, 47.418503], [8.51522, 47.418542]]], "type": "MultiLineString"}, "id": "2576", "properties": {}, "type": "Feature"}, {"bbox": [8.542316, 47.404106, 8.543088, 47.404895], "geometry": {"coordinates": [[[8.542571, 47.404895], [8.542328, 47.404494], [8.542323, 47.404484], [8.542319, 47.404473], [8.542317, 47.404463], [8.542316, 47.404452], [8.542316, 47.404441], [8.542318, 47.40443], [8.542321, 47.404419], [8.542326, 47.404407], [8.542332, 47.404396], [8.54234, 47.404386], [8.54235, 47.404376], [8.54236, 47.404366], [8.542415, 47.404325], [8.54249, 47.404283], [8.542545, 47.404259], [8.5426, 47.40424], [8.542684, 47.404216], [8.543088, 47.404106]]], "type": "MultiLineString"}, "id": "2578", "properties": {}, "type": "Feature"}, {"bbox": [8.541438, 47.417183, 8.541951, 47.417856], "geometry": {"coordinates": [[[8.541951, 47.417183], [8.541935, 47.417222], [8.541925, 47.417261], [8.54192, 47.417301], [8.541921, 47.417341], [8.541913, 47.417377], [8.541901, 47.417413], [8.541883, 47.417448], [8.541861, 47.417482], [8.541835, 47.417514], [8.541804, 47.417544], [8.54177, 47.417572], [8.541731, 47.417599], [8.54169, 47.417622], [8.541645, 47.417643], [8.541438, 47.417856]]], "type": "MultiLineString"}, "id": "2579", "properties": {}, "type": "Feature"}, {"bbox": [8.505236, 47.416603, 8.506671, 47.417119], "geometry": {"coordinates": [[[8.506671, 47.416603], [8.506174, 47.41664], [8.506113, 47.416645], [8.506052, 47.416654], [8.505994, 47.416667], [8.505937, 47.416683], [8.505883, 47.416703], [8.505832, 47.416726], [8.505784, 47.416752], [8.50574, 47.416781], [8.505236, 47.417119]]], "type": "MultiLineString"}, "id": "2592", "properties": {}, "type": "Feature"}, {"bbox": [8.524731, 47.339016, 8.530014, 47.339989], "geometry": {"coordinates": [[[8.530014, 47.339989], [8.529821, 47.339935], [8.52969, 47.33993], [8.52956, 47.339918], [8.529433, 47.339898], [8.529308, 47.33987], [8.529022, 47.339785], [8.528621, 47.339669], [8.528183, 47.339535], [8.527762, 47.339449], [8.526595, 47.339286], [8.525802, 47.339175], [8.524731, 47.339016]]], "type": "MultiLineString"}, "id": "2595", "properties": {}, "type": "Feature"}, {"bbox": [8.531968, 47.359824, 8.534246, 47.360287], "geometry": {"coordinates": [[[8.534246, 47.360287], [8.53326, 47.360102], [8.532573, 47.359966], [8.532115, 47.359878], [8.531968, 47.359824]]], "type": "MultiLineString"}, "id": "2596", "properties": {}, "type": "Feature"}, {"bbox": [8.531886, 47.349083, 8.532356, 47.349581], "geometry": {"coordinates": [[[8.532356, 47.349581], [8.532192, 47.349527], [8.532118, 47.349408], [8.532055, 47.349313], [8.531896, 47.349097], [8.531886, 47.349083]]], "type": "MultiLineString"}, "id": "2597", "properties": {}, "type": "Feature"}, {"bbox": [8.524412, 47.357802, 8.52553, 47.360662], "geometry": {"coordinates": [[[8.524412, 47.360662], [8.524817, 47.360295], [8.52513, 47.359001], [8.525169, 47.358815], [8.525372, 47.357996], [8.525378, 47.357971], [8.525387, 47.357947], [8.5254, 47.357923], [8.525415, 47.3579], [8.525433, 47.357878], [8.525453, 47.357857], [8.525476, 47.357837], [8.525502, 47.357818], [8.52553, 47.357802]]], "type": "MultiLineString"}, "id": "2598", "properties": {}, "type": "Feature"}, {"bbox": [8.550188, 47.370134, 8.552498, 47.370665], "geometry": {"coordinates": [[[8.550188, 47.37032], [8.550357, 47.370602], [8.550364, 47.37061], [8.550373, 47.370617], [8.550382, 47.370625], [8.550392, 47.370631], [8.550403, 47.370637], [8.550415, 47.370643], [8.550427, 47.370647], [8.550439, 47.370651], [8.550453, 47.370654], [8.550466, 47.370657], [8.550547, 47.370664], [8.550628, 47.370665], [8.55071, 47.370661], [8.55079, 47.370652], [8.550869, 47.370638], [8.551123, 47.370569], [8.552084, 47.370251], [8.552498, 47.370134]]], "type": "MultiLineString"}, "id": "2599", "properties": {}, "type": "Feature"}, {"bbox": [8.495412, 47.404907, 8.496928, 47.405254], "geometry": {"coordinates": [[[8.495412, 47.405254], [8.495504, 47.405237], [8.495576, 47.405222], [8.496213, 47.405048], [8.496529, 47.404975], [8.496842, 47.404921], [8.496925, 47.404907], [8.496928, 47.404907]]], "type": "MultiLineString"}, "id": "2601", "properties": {}, "type": "Feature"}, {"bbox": [8.508156, 47.367927, 8.511104, 47.369649], "geometry": {"coordinates": [[[8.511104, 47.367927], [8.511089, 47.36795], [8.511071, 47.367971], [8.511051, 47.367992], [8.511027, 47.368011], [8.511002, 47.368028], [8.510974, 47.368044], [8.510944, 47.368058], [8.510912, 47.36807], [8.510879, 47.36808], [8.510421, 47.368233], [8.509975, 47.368403], [8.509543, 47.368588], [8.509481, 47.368617], [8.508935, 47.368953], [8.508586, 47.369179], [8.508474, 47.369261], [8.508375, 47.36935], [8.508288, 47.369445], [8.508215, 47.369545], [8.508156, 47.369649]]], "type": "MultiLineString"}, "id": "2607", "properties": {}, "type": "Feature"}, {"bbox": [8.511908, 47.369193, 8.512988, 47.37007], "geometry": {"coordinates": [[[8.512988, 47.369193], [8.512849, 47.369308], [8.512481, 47.369606], [8.51237, 47.369696], [8.511908, 47.37007]]], "type": "MultiLineString"}, "id": "2608", "properties": {}, "type": "Feature"}, {"bbox": [8.512293, 47.367348, 8.512824, 47.367745], "geometry": {"coordinates": [[[8.512824, 47.367348], [8.512293, 47.367745]]], "type": "MultiLineString"}, "id": "2609", "properties": {}, "type": "Feature"}, {"bbox": [8.516998, 47.368461, 8.518557, 47.370286], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.51822, 47.370087], [8.517909, 47.36987], [8.517626, 47.369636], [8.517373, 47.369387], [8.517347, 47.369358], [8.517321, 47.369329], [8.517295, 47.3693], [8.516998, 47.368874], [8.517183, 47.368461]]], "type": "MultiLineString"}, "id": "2610", "properties": {}, "type": "Feature"}, {"bbox": [8.519954, 47.367167, 8.522186, 47.368368], "geometry": {"coordinates": [[[8.522186, 47.368368], [8.521646, 47.368085], [8.520828, 47.367643], [8.519954, 47.367167]]], "type": "MultiLineString"}, "id": "2611", "properties": {}, "type": "Feature"}, {"bbox": [8.505397, 47.370157, 8.508502, 47.370806], "geometry": {"coordinates": [[[8.508502, 47.370806], [8.508291, 47.370604], [8.508254, 47.370573], [8.508213, 47.370544], [8.508169, 47.370518], [8.508122, 47.370494], [8.508073, 47.370472], [8.508021, 47.370454], [8.507966, 47.370439], [8.50791, 47.370426], [8.507776, 47.370405], [8.507033, 47.370311], [8.506173, 47.370228], [8.505596, 47.370175], [8.50553, 47.370169], [8.505463, 47.370163], [8.505397, 47.370157]]], "type": "MultiLineString"}, "id": "2612", "properties": {}, "type": "Feature"}, {"bbox": [8.523134, 47.368875, 8.523862, 47.36927], "geometry": {"coordinates": [[[8.523862, 47.36927], [8.523134, 47.368875]]], "type": "MultiLineString"}, "id": "2613", "properties": {}, "type": "Feature"}, {"bbox": [8.522956, 47.369021, 8.523685, 47.369412], "geometry": {"coordinates": [[[8.523685, 47.369412], [8.523548, 47.369341], [8.522956, 47.369021]]], "type": "MultiLineString"}, "id": "2614", "properties": {}, "type": "Feature"}, {"bbox": [8.529755, 47.371074, 8.53031, 47.371223], "geometry": {"coordinates": [[[8.53031, 47.371074], [8.530128, 47.371127], [8.529942, 47.371177], [8.529755, 47.371223]]], "type": "MultiLineString"}, "id": "2615", "properties": {}, "type": "Feature"}, {"bbox": [8.532849, 47.368698, 8.534045, 47.369102], "geometry": {"coordinates": [[[8.534045, 47.369102], [8.532849, 47.368698]]], "type": "MultiLineString"}, "id": "2616", "properties": {}, "type": "Feature"}, {"bbox": [8.530854, 47.36977, 8.532141, 47.370524], "geometry": {"coordinates": [[[8.532141, 47.370524], [8.531669, 47.370222], [8.531321, 47.370011], [8.531, 47.369856], [8.530854, 47.36977]]], "type": "MultiLineString"}, "id": "2617", "properties": {}, "type": "Feature"}, {"bbox": [8.532539, 47.367236, 8.533937, 47.369163], "geometry": {"coordinates": [[[8.533937, 47.367236], [8.533828, 47.367389], [8.533291, 47.368117], [8.533221, 47.368188], [8.533178, 47.368249], [8.533134, 47.36831], [8.53312, 47.36833], [8.532873, 47.368665], [8.532849, 47.368698], [8.532579, 47.369069], [8.532539, 47.369163]]], "type": "MultiLineString"}, "id": "2618", "properties": {}, "type": "Feature"}, {"bbox": [8.546099, 47.404355, 8.548288, 47.404626], "geometry": {"coordinates": [[[8.548288, 47.404605], [8.548179, 47.404619], [8.548142, 47.404623], [8.548104, 47.404626], [8.548067, 47.404626], [8.548029, 47.404624], [8.547992, 47.404619], [8.547955, 47.404613], [8.54792, 47.404604], [8.546729, 47.404368], [8.546685, 47.404361], [8.54664, 47.404357], [8.546596, 47.404355], [8.546551, 47.404357], [8.546506, 47.404361], [8.546463, 47.404368], [8.54642, 47.404378], [8.546099, 47.404464]]], "type": "MultiLineString"}, "id": "2624", "properties": {}, "type": "Feature"}, {"bbox": [8.597885, 47.355605, 8.601715, 47.357401], "geometry": {"coordinates": [[[8.597885, 47.35718], [8.598253, 47.357326], [8.59831, 47.357347], [8.598369, 47.357366], [8.598431, 47.35738], [8.598494, 47.357391], [8.598558, 47.357398], [8.598623, 47.357401], [8.598688, 47.357401], [8.598752, 47.357396], [8.598816, 47.357388], [8.598879, 47.357376], [8.59894, 47.35736], [8.598998, 47.357341], [8.599054, 47.357319], [8.599107, 47.357293], [8.599177, 47.357257], [8.599956, 47.356831], [8.601409, 47.356024], [8.601471, 47.35598], [8.601527, 47.355933], [8.601576, 47.355882], [8.601617, 47.355828], [8.60165, 47.355771], [8.601715, 47.355605]]], "type": "MultiLineString"}, "id": "2632", "properties": {}, "type": "Feature"}, {"bbox": [8.515253, 47.328593, 8.515636, 47.330199], "geometry": {"coordinates": [[[8.515253, 47.330199], [8.515417, 47.329979], [8.515491, 47.329872], [8.51555, 47.329761], [8.515594, 47.329648], [8.515623, 47.329532], [8.515636, 47.329414], [8.515634, 47.329297], [8.515617, 47.32918], [8.515458, 47.328593]]], "type": "MultiLineString"}, "id": "2635", "properties": {}, "type": "Feature"}, {"bbox": [8.515073, 47.326178, 8.517813, 47.327559], "geometry": {"coordinates": [[[8.515073, 47.326178], [8.515165, 47.326207], [8.515299, 47.32625], [8.515365, 47.326264], [8.515432, 47.326275], [8.5155, 47.326282], [8.515568, 47.326286], [8.516267, 47.326328], [8.516279, 47.32633], [8.516333, 47.326334], [8.516387, 47.326342], [8.51644, 47.326352], [8.516491, 47.326365], [8.51654, 47.326382], [8.516588, 47.3264], [8.517427, 47.326705], [8.517467, 47.32672], [8.517475, 47.326723], [8.517525, 47.326745], [8.517573, 47.32677], [8.517617, 47.326797], [8.517657, 47.326827], [8.517693, 47.32686], [8.517725, 47.326894], [8.517752, 47.32693], [8.517775, 47.326968], [8.517792, 47.327007], [8.517804, 47.327046], [8.517812, 47.327087], [8.517813, 47.327127], [8.51781, 47.327168], [8.517765, 47.327391], [8.517756, 47.327421], [8.517701, 47.327559]]], "type": "MultiLineString"}, "id": "2636", "properties": {}, "type": "Feature"}, {"bbox": [8.499716, 47.3778, 8.507853, 47.378631], "geometry": {"coordinates": [[[8.507853, 47.3778], [8.507538, 47.377926], [8.506526, 47.37849], [8.506447, 47.378527], [8.506365, 47.378558], [8.506278, 47.378584], [8.506188, 47.378604], [8.506095, 47.378619], [8.506002, 47.378628], [8.505907, 47.378631], [8.503536, 47.378532], [8.500806, 47.378424], [8.500663, 47.378418], [8.50052, 47.378421], [8.500377, 47.378432], [8.500237, 47.378451], [8.5001, 47.378479], [8.499966, 47.378514], [8.499838, 47.378558], [8.499716, 47.378609]]], "type": "MultiLineString"}, "id": "2638", "properties": {}, "type": "Feature"}, {"bbox": [8.474705, 47.387918, 8.477268, 47.38978], "geometry": {"coordinates": [[[8.477268, 47.387918], [8.477035, 47.388041], [8.476739, 47.388177], [8.475873, 47.388519], [8.47546, 47.38873], [8.475337, 47.388822], [8.475227, 47.388921], [8.475128, 47.389025], [8.475043, 47.389135], [8.474971, 47.389249], [8.474881, 47.389426], [8.474793, 47.389603], [8.474705, 47.38978]]], "type": "MultiLineString"}, "id": "2639", "properties": {}, "type": "Feature"}, {"bbox": [8.51513, 47.363803, 8.517491, 47.367252], "geometry": {"coordinates": [[[8.517491, 47.363803], [8.515874, 47.365991], [8.515849, 47.366029], [8.515825, 47.366067], [8.515801, 47.366105], [8.515641, 47.366371], [8.515375, 47.366831], [8.515165, 47.367187], [8.51513, 47.367252]]], "type": "MultiLineString"}, "id": "2641", "properties": {}, "type": "Feature"}, {"bbox": [8.536477, 47.369475, 8.536826, 47.369653], "geometry": {"coordinates": [[[8.536826, 47.369653], [8.536824, 47.369652], [8.536533, 47.369491], [8.536526, 47.369488], [8.536519, 47.369484], [8.536511, 47.369481], [8.536503, 47.369479], [8.536495, 47.369477], [8.536486, 47.369475], [8.536478, 47.369475], [8.536477, 47.369475]]], "type": "MultiLineString"}, "id": "2643", "properties": {}, "type": "Feature"}, {"bbox": [8.529873, 47.364929, 8.531114, 47.365634], "geometry": {"coordinates": [[[8.531114, 47.364929], [8.531011, 47.364996], [8.530845, 47.365124], [8.530662, 47.365241], [8.530463, 47.365347], [8.530075, 47.365508], [8.529873, 47.365634]]], "type": "MultiLineString"}, "id": "2651", "properties": {}, "type": "Feature"}, {"bbox": [8.572368, 47.348828, 8.577378, 47.350137], "geometry": {"coordinates": [[[8.572368, 47.348828], [8.572599, 47.348881], [8.572672, 47.3489], [8.572744, 47.348923], [8.572813, 47.348949], [8.572894, 47.348986], [8.57297, 47.349027], [8.573041, 47.349073], [8.573106, 47.349122], [8.573165, 47.349175], [8.573216, 47.349231], [8.573225, 47.349242], [8.573234, 47.349253], [8.573243, 47.349264], [8.573588, 47.349648], [8.573673, 47.349701], [8.573763, 47.34975], [8.57386, 47.349793], [8.573961, 47.34983], [8.574067, 47.349862], [8.574176, 47.349887], [8.574288, 47.349906], [8.574402, 47.349918], [8.574517, 47.349923], [8.574632, 47.349922], [8.574747, 47.349914], [8.57486, 47.3499], [8.575501, 47.349797], [8.575616, 47.349783], [8.575732, 47.349775], [8.575848, 47.349774], [8.575975, 47.34978], [8.576101, 47.349793], [8.576224, 47.349814], [8.576345, 47.349842], [8.577378, 47.350137]]], "type": "MultiLineString"}, "id": "2653", "properties": {}, "type": "Feature"}, {"bbox": [8.579958, 47.351042, 8.582491, 47.351835], "geometry": {"coordinates": [[[8.579958, 47.351042], [8.579976, 47.351077], [8.579999, 47.35111], [8.580026, 47.351143], [8.580057, 47.351173], [8.580092, 47.351201], [8.580131, 47.351227], [8.580174, 47.351251], [8.580219, 47.351271], [8.580433, 47.351358], [8.580658, 47.351432], [8.58089, 47.351493], [8.58167, 47.351724], [8.581784, 47.351752], [8.5819, 47.351772], [8.582018, 47.351786], [8.582138, 47.351793], [8.582491, 47.351835]]], "type": "MultiLineString"}, "id": "2654", "properties": {}, "type": "Feature"}, {"bbox": [8.575237, 47.353611, 8.578921, 47.354334], "geometry": {"coordinates": [[[8.575237, 47.3543], [8.575496, 47.354334], [8.5756, 47.354331], [8.575703, 47.354323], [8.575804, 47.354307], [8.575903, 47.354286], [8.575998, 47.354258], [8.576805, 47.354022], [8.576871, 47.354004], [8.577045, 47.353961], [8.577224, 47.353928], [8.577407, 47.353907], [8.577592, 47.353896], [8.577777, 47.353896], [8.577962, 47.353907], [8.578144, 47.353929], [8.578547, 47.354005], [8.578793, 47.353741], [8.578921, 47.353611]]], "type": "MultiLineString"}, "id": "2655", "properties": {}, "type": "Feature"}, {"bbox": [8.512189, 47.362551, 8.514802, 47.363374], "geometry": {"coordinates": [[[8.514802, 47.362551], [8.514421, 47.363223], [8.514412, 47.363241], [8.514401, 47.363257], [8.514388, 47.363273], [8.514373, 47.363288], [8.514356, 47.363302], [8.514337, 47.363316], [8.514317, 47.363328], [8.514295, 47.363338], [8.514272, 47.363348], [8.514248, 47.363356], [8.514223, 47.363362], [8.514196, 47.363368], [8.51417, 47.363371], [8.514143, 47.363373], [8.514115, 47.363374], [8.514088, 47.363372], [8.514061, 47.36337], [8.514035, 47.363365], [8.514009, 47.363359], [8.512189, 47.362907]]], "type": "MultiLineString"}, "id": "2659", "properties": {}, "type": "Feature"}, {"bbox": [8.510135, 47.370585, 8.514064, 47.372872], "geometry": {"coordinates": [[[8.514064, 47.370585], [8.513532, 47.371032], [8.512482, 47.371926], [8.511745, 47.372274], [8.511139, 47.37256], [8.510135, 47.372872]]], "type": "MultiLineString"}, "id": "2661", "properties": {}, "type": "Feature"}, {"bbox": [8.525477, 47.380137, 8.527985, 47.380972], "geometry": {"coordinates": [[[8.527985, 47.380137], [8.527776, 47.380201], [8.527485, 47.38034], [8.526697, 47.380714], [8.526216, 47.38095], [8.526207, 47.380955], [8.526196, 47.380959], [8.526186, 47.380963], [8.526174, 47.380966], [8.526163, 47.380969], [8.526151, 47.38097], [8.526139, 47.380971], [8.526127, 47.380972], [8.526115, 47.380972], [8.525573, 47.380935], [8.525561, 47.380934], [8.525549, 47.380932], [8.525537, 47.38093], [8.525526, 47.380927], [8.525515, 47.380923], [8.525504, 47.380919], [8.525494, 47.380914], [8.525485, 47.380908], [8.525477, 47.380902]]], "type": "MultiLineString"}, "id": "2671", "properties": {}, "type": "Feature"}, {"bbox": [8.566341, 47.368007, 8.568189, 47.37], "geometry": {"coordinates": [[[8.566341, 47.37], [8.566477, 47.369911], [8.566739, 47.36926], [8.566778, 47.36917], [8.566828, 47.369055], [8.566895, 47.368917], [8.566978, 47.368794], [8.567103, 47.368641], [8.567431, 47.368294], [8.567491, 47.368241], [8.567557, 47.368191], [8.56763, 47.368146], [8.567708, 47.368105], [8.567792, 47.368069], [8.56788, 47.368039], [8.567912, 47.368028], [8.567945, 47.36802], [8.567979, 47.368014], [8.568014, 47.36801], [8.568049, 47.368007], [8.568084, 47.368007], [8.568119, 47.368008], [8.568154, 47.368012], [8.568189, 47.368017]]], "type": "MultiLineString"}, "id": "2673", "properties": {}, "type": "Feature"}, {"bbox": [8.533159, 47.404945, 8.536132, 47.406982], "geometry": {"coordinates": [[[8.533159, 47.404945], [8.533464, 47.405078], [8.534138, 47.405372], [8.534171, 47.405386], [8.534203, 47.405402], [8.534233, 47.405419], [8.534261, 47.405438], [8.534287, 47.405458], [8.53431, 47.40548], [8.534374, 47.40557], [8.535008, 47.406648], [8.535095, 47.406796], [8.535121, 47.406824], [8.53515, 47.40685], [8.535183, 47.406874], [8.535219, 47.406897], [8.535257, 47.406916], [8.535298, 47.406934], [8.535341, 47.406949], [8.535386, 47.406961], [8.535432, 47.406971], [8.53548, 47.406977], [8.535528, 47.406981], [8.535576, 47.406982], [8.535624, 47.40698], [8.535672, 47.406975], [8.535719, 47.406967], [8.535765, 47.406956], [8.536132, 47.406856]]], "type": "MultiLineString"}, "id": "2675", "properties": {}, "type": "Feature"}, {"bbox": [8.535695, 47.408244, 8.536948, 47.408585], "geometry": {"coordinates": [[[8.536948, 47.408244], [8.536774, 47.408276], [8.535695, 47.408585]]], "type": "MultiLineString"}, "id": "2676", "properties": {}, "type": "Feature"}, {"bbox": [8.522551, 47.407896, 8.526352, 47.41284], "geometry": {"coordinates": [[[8.526352, 47.407896], [8.526281, 47.408004], [8.526205, 47.40811], [8.526122, 47.408213], [8.525816, 47.408585], [8.525305, 47.409204], [8.525161, 47.409379], [8.525056, 47.409507], [8.524372, 47.410336], [8.524193, 47.410553], [8.524015, 47.410769], [8.523985, 47.410802], [8.523956, 47.410835], [8.523927, 47.410868], [8.523787, 47.41105], [8.523667, 47.411239], [8.523569, 47.411433], [8.523495, 47.411615], [8.523436, 47.411737], [8.523363, 47.411855], [8.523275, 47.411969], [8.523207, 47.412043], [8.523133, 47.412115], [8.523053, 47.412184], [8.522677, 47.412501], [8.522651, 47.412523], [8.522629, 47.412546], [8.522609, 47.41257], [8.522592, 47.412595], [8.522578, 47.412621], [8.522567, 47.412648], [8.522557, 47.41268], [8.522552, 47.412712], [8.522551, 47.412744], [8.522554, 47.412777], [8.522562, 47.412809], [8.522573, 47.41284]]], "type": "MultiLineString"}, "id": "2677", "properties": {}, "type": "Feature"}, {"bbox": [8.486758, 47.392605, 8.48715, 47.394522], "geometry": {"coordinates": [[[8.48715, 47.394522], [8.487116, 47.39451], [8.487085, 47.394496], [8.487055, 47.394481], [8.487027, 47.394464], [8.487002, 47.394445], [8.486979, 47.394424], [8.486959, 47.394403], [8.486942, 47.39438], [8.486873, 47.39426], [8.48682, 47.394136], [8.486783, 47.39401], [8.486762, 47.393882], [8.486758, 47.393753], [8.486794, 47.392605]]], "type": "MultiLineString"}, "id": "2681", "properties": {}, "type": "Feature"}, {"bbox": [8.511711, 47.37525, 8.51382, 47.376757], "geometry": {"coordinates": [[[8.51382, 47.376757], [8.513591, 47.376593], [8.512581, 47.375871], [8.511711, 47.37525]]], "type": "MultiLineString"}, "id": "2682", "properties": {}, "type": "Feature"}, {"bbox": [8.527691, 47.373144, 8.527977, 47.373181], "geometry": {"coordinates": [[[8.527977, 47.373181], [8.52788, 47.373172], [8.527785, 47.373159], [8.527691, 47.373144]]], "type": "MultiLineString"}, "id": "2685", "properties": {}, "type": "Feature"}, {"bbox": [8.585749, 47.398881, 8.586103, 47.399104], "geometry": {"coordinates": [[[8.585749, 47.399104], [8.585838, 47.399061], [8.585922, 47.399014], [8.585999, 47.398962], [8.58607, 47.398906], [8.586103, 47.398881]]], "type": "MultiLineString"}, "id": "2686", "properties": {}, "type": "Feature"}, {"bbox": [8.493699, 47.399993, 8.49417, 47.400218], "geometry": {"coordinates": [[[8.49417, 47.400218], [8.494004, 47.400147], [8.493742, 47.400015], [8.493699, 47.399993]]], "type": "MultiLineString"}, "id": "2687", "properties": {}, "type": "Feature"}, {"bbox": [8.526722, 47.376792, 8.528744, 47.377977], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.528737, 47.376819], [8.528726, 47.376846], [8.528712, 47.376872], [8.528695, 47.376897], [8.528675, 47.376921], [8.528652, 47.376944], [8.528626, 47.376966], [8.528597, 47.376985], [8.528567, 47.377004], [8.528314, 47.377143], [8.527789, 47.377417], [8.527683, 47.377472], [8.526722, 47.377977]]], "type": "MultiLineString"}, "id": "2688", "properties": {}, "type": "Feature"}, {"bbox": [8.506445, 47.426789, 8.506785, 47.427234], "geometry": {"coordinates": [[[8.506785, 47.426789], [8.506754, 47.42684], [8.506721, 47.426891], [8.506687, 47.426941], [8.506445, 47.427234]]], "type": "MultiLineString"}, "id": "2689", "properties": {}, "type": "Feature"}, {"bbox": [8.518661, 47.375955, 8.523176, 47.377647], "geometry": {"coordinates": [[[8.523176, 47.375955], [8.522505, 47.376195], [8.521581, 47.376523], [8.520721, 47.376831], [8.520645, 47.37685], [8.520021, 47.377092], [8.519946, 47.377175], [8.519399, 47.377387], [8.519306, 47.3774], [8.519114, 47.377475], [8.518808, 47.377594], [8.518661, 47.377647]]], "type": "MultiLineString"}, "id": "2690", "properties": {}, "type": "Feature"}, {"bbox": [8.573051, 47.405434, 8.574737, 47.406073], "geometry": {"coordinates": [[[8.573051, 47.406073], [8.573259, 47.405968], [8.574598, 47.40549], [8.574737, 47.405434]]], "type": "MultiLineString"}, "id": "2691", "properties": {}, "type": "Feature"}, {"bbox": [8.524296, 47.395856, 8.524645, 47.396597], "geometry": {"coordinates": [[[8.524296, 47.395856], [8.524311, 47.395889], [8.524615, 47.396539], [8.524645, 47.396597]]], "type": "MultiLineString"}, "id": "2692", "properties": {}, "type": "Feature"}, {"bbox": [8.564142, 47.375013, 8.56672, 47.375497], "geometry": {"coordinates": [[[8.564142, 47.375497], [8.564224, 47.375472], [8.564308, 47.375451], [8.564393, 47.375434], [8.565773, 47.375289], [8.56596, 47.375271], [8.566271, 47.375241], [8.566319, 47.375236], [8.566366, 47.375227], [8.566412, 47.375216], [8.566457, 47.375202], [8.566499, 47.375186], [8.56654, 47.375167], [8.566577, 47.375146], [8.566612, 47.375123], [8.566644, 47.375098], [8.566673, 47.375071], [8.566698, 47.375042], [8.56672, 47.375013]]], "type": "MultiLineString"}, "id": "2695", "properties": {}, "type": "Feature"}, {"bbox": [8.574381, 47.407044, 8.576803, 47.407823], "geometry": {"coordinates": [[[8.574381, 47.407823], [8.574956, 47.407651], [8.575046, 47.407621], [8.575133, 47.407585], [8.575214, 47.407545], [8.5753, 47.407507], [8.57539, 47.407473], [8.575482, 47.407443], [8.576803, 47.407044]]], "type": "MultiLineString"}, "id": "2696", "properties": {}, "type": "Feature"}, {"bbox": [8.54323, 47.386432, 8.544984, 47.387354], "geometry": {"coordinates": [[[8.54323, 47.387354], [8.543275, 47.387302], [8.543948, 47.386467], [8.543954, 47.386462], [8.54396, 47.386457], [8.543967, 47.386452], [8.543975, 47.386447], [8.543984, 47.386444], [8.543992, 47.38644], [8.544001, 47.386438], [8.544011, 47.386435], [8.544021, 47.386434], [8.54403, 47.386433], [8.544039, 47.386432], [8.544048, 47.386432], [8.544057, 47.386432], [8.544066, 47.386433], [8.544075, 47.386435], [8.544084, 47.386437], [8.544092, 47.38644], [8.5449, 47.386751], [8.544984, 47.386777]]], "type": "MultiLineString"}, "id": "2721", "properties": {}, "type": "Feature"}, {"bbox": [8.512443, 47.412812, 8.516776, 47.414905], "geometry": {"coordinates": [[[8.516776, 47.413097], [8.51634, 47.412812], [8.51591, 47.413041], [8.515864, 47.413063], [8.515816, 47.413083], [8.515765, 47.413099], [8.515712, 47.413113], [8.515658, 47.413123], [8.515603, 47.41313], [8.515547, 47.413133], [8.51549, 47.413133], [8.515453, 47.413134], [8.515416, 47.413138], [8.51538, 47.413144], [8.515345, 47.413151], [8.515311, 47.413161], [8.515278, 47.413173], [8.515247, 47.413187], [8.515217, 47.413202], [8.51519, 47.413219], [8.515165, 47.413238], [8.515142, 47.413258], [8.515122, 47.413279], [8.515105, 47.413302], [8.515091, 47.413325], [8.515079, 47.413349], [8.514985, 47.413584], [8.514941, 47.413668], [8.514887, 47.413748], [8.514822, 47.413825], [8.514748, 47.413898], [8.514665, 47.413967], [8.514582, 47.414023], [8.514491, 47.414073], [8.514394, 47.414117], [8.514291, 47.414155], [8.513689, 47.414383], [8.513633, 47.414405], [8.5133, 47.414539], [8.51295, 47.414685], [8.512698, 47.414795], [8.512443, 47.414905]]], "type": "MultiLineString"}, "id": "2725", "properties": {}, "type": "Feature"}, {"bbox": [8.537298, 47.375785, 8.538733, 47.377374], "geometry": {"coordinates": [[[8.537298, 47.375785], [8.53734, 47.375822], [8.537378, 47.37586], [8.537412, 47.375901], [8.537441, 47.375943], [8.537557, 47.376159], [8.537611, 47.376248], [8.537677, 47.376333], [8.537754, 47.376414], [8.537819, 47.37648], [8.538107, 47.376775], [8.538452, 47.377128], [8.538486, 47.377157], [8.538521, 47.377186], [8.538555, 47.377215], [8.538607, 47.377251], [8.538654, 47.37729], [8.538696, 47.377331], [8.538733, 47.377374]]], "type": "MultiLineString"}, "id": "2726", "properties": {}, "type": "Feature"}, {"bbox": [8.515192, 47.377647, 8.518661, 47.378989], "geometry": {"coordinates": [[[8.518661, 47.377647], [8.518592, 47.377691], [8.518243, 47.377833], [8.517902, 47.377984], [8.517569, 47.378143], [8.517147, 47.378331], [8.516712, 47.378504], [8.516264, 47.378661], [8.516111, 47.37872], [8.515192, 47.378989]]], "type": "MultiLineString"}, "id": "2728", "properties": {}, "type": "Feature"}, {"bbox": [8.470077, 47.392376, 8.472105, 47.393561], "geometry": {"coordinates": [[[8.47175, 47.392376], [8.471837, 47.392404], [8.471988, 47.39252], [8.472105, 47.392626], [8.471807, 47.392807], [8.471475, 47.39298], [8.470077, 47.393561]]], "type": "MultiLineString"}, "id": "2732", "properties": {}, "type": "Feature"}, {"bbox": [8.526144, 47.336524, 8.527762, 47.339496], "geometry": {"coordinates": [[[8.527746, 47.339496], [8.527762, 47.339449], [8.527753, 47.339441], [8.527745, 47.339432], [8.527739, 47.339423], [8.527734, 47.339414], [8.52773, 47.339404], [8.527727, 47.339394], [8.527726, 47.339384], [8.527726, 47.339374], [8.527727, 47.339364], [8.527726, 47.339356], [8.527725, 47.339349], [8.527722, 47.339341], [8.527718, 47.339334], [8.527549, 47.339111], [8.527145, 47.338542], [8.527133, 47.338524], [8.527122, 47.338505], [8.527111, 47.338487], [8.526983, 47.338252], [8.526954, 47.338198], [8.526915, 47.338078], [8.52689, 47.337955], [8.526879, 47.337832], [8.526882, 47.337404], [8.526889, 47.337298], [8.526899, 47.337237], [8.526908, 47.337193], [8.526965, 47.336961], [8.52697, 47.336927], [8.52697, 47.336847], [8.526144, 47.336524]]], "type": "MultiLineString"}, "id": "2752", "properties": {}, "type": "Feature"}, {"bbox": [8.544569, 47.381767, 8.54562, 47.387482], "geometry": {"coordinates": [[[8.545249, 47.381769], [8.545258, 47.381768], [8.545267, 47.381767], [8.545275, 47.381768], [8.545284, 47.381768], [8.545293, 47.38177], [8.545301, 47.381771], [8.545309, 47.381774], [8.545317, 47.381776], [8.545325, 47.38178], [8.545332, 47.381783], [8.545338, 47.381787], [8.545345, 47.381791], [8.54535, 47.381796], [8.545355, 47.381801], [8.545359, 47.381806], [8.545363, 47.381812], [8.545366, 47.381818], [8.545368, 47.381823], [8.545369, 47.381829], [8.54537, 47.381835], [8.54537, 47.381841], [8.545364, 47.382149], [8.545363, 47.38221], [8.545361, 47.38231], [8.545351, 47.382831], [8.545349, 47.382984], [8.545346, 47.383104], [8.545337, 47.38343], [8.545337, 47.383447], [8.545335, 47.383465], [8.545332, 47.383482], [8.545305, 47.383565], [8.544861, 47.384942], [8.544854, 47.38496], [8.544849, 47.384979], [8.544846, 47.384998], [8.544846, 47.385017], [8.544848, 47.385036], [8.544853, 47.385058], [8.544861, 47.385079], [8.544872, 47.3851], [8.544886, 47.38512], [8.544902, 47.385139], [8.54548, 47.385842], [8.54562, 47.386021], [8.544984, 47.386777], [8.544972, 47.386791], [8.544936, 47.386836], [8.544585, 47.387272], [8.544578, 47.387284], [8.544574, 47.387295], [8.544571, 47.387308], [8.544569, 47.38732], [8.544569, 47.387332], [8.544571, 47.387344], [8.544575, 47.387357], [8.54458, 47.387368], [8.54461, 47.387422], [8.544645, 47.387482]]], "type": "MultiLineString"}, "id": "2755", "properties": {}, "type": "Feature"}, {"bbox": [8.542427, 47.381752, 8.543225, 47.384011], "geometry": {"coordinates": [[[8.542639, 47.381752], [8.5426, 47.381898], [8.542533, 47.382247], [8.542428, 47.382707], [8.542427, 47.382712], [8.542427, 47.382718], [8.542427, 47.382723], [8.542428, 47.382729], [8.54243, 47.382734], [8.542433, 47.382739], [8.542436, 47.382744], [8.54244, 47.382749], [8.542444, 47.382754], [8.54245, 47.382758], [8.542455, 47.382762], [8.542461, 47.382765], [8.542468, 47.382769], [8.542482, 47.382777], [8.542496, 47.382784], [8.542512, 47.38279], [8.542528, 47.382796], [8.542539, 47.3828], [8.54255, 47.382805], [8.542559, 47.38281], [8.542569, 47.382816], [8.542577, 47.382823], [8.542584, 47.38283], [8.542591, 47.382837], [8.542596, 47.382845], [8.542601, 47.382853], [8.542604, 47.382861], [8.542606, 47.38287], [8.542607, 47.382878], [8.542607, 47.382887], [8.542583, 47.382998], [8.542568, 47.38311], [8.542562, 47.383222], [8.542569, 47.383281], [8.542585, 47.38334], [8.542609, 47.383397], [8.54264, 47.383452], [8.542679, 47.383506], [8.542725, 47.383556], [8.542777, 47.383604], [8.543225, 47.384011]]], "type": "MultiLineString"}, "id": "2756", "properties": {}, "type": "Feature"}, {"bbox": [8.552501, 47.396482, 8.553032, 47.396715], "geometry": {"coordinates": [[[8.552501, 47.396511], [8.552572, 47.396484], [8.552607, 47.396482], [8.552643, 47.396482], [8.552678, 47.396483], [8.552713, 47.396487], [8.552747, 47.396493], [8.55278, 47.396501], [8.552813, 47.396511], [8.552843, 47.396523], [8.552872, 47.396537], [8.5529, 47.396552], [8.552925, 47.396569], [8.552947, 47.396588], [8.552968, 47.396607], [8.552985, 47.396628], [8.553, 47.39665], [8.553012, 47.396673], [8.553021, 47.396696], [8.553032, 47.396715]]], "type": "MultiLineString"}, "id": "2757", "properties": {}, "type": "Feature"}, {"bbox": [8.54816, 47.38039, 8.551155, 47.38133], "geometry": {"coordinates": [[[8.54816, 47.38039], [8.548455, 47.380511], [8.548763, 47.380611], [8.549068, 47.380706], [8.549334, 47.380785], [8.549496, 47.380825], [8.550551, 47.381086], [8.551155, 47.38133]]], "type": "MultiLineString"}, "id": "2758", "properties": {}, "type": "Feature"}, {"bbox": [8.512824, 47.328575, 8.514409, 47.334288], "geometry": {"coordinates": [[[8.51403, 47.334288], [8.514046, 47.334287], [8.514063, 47.334285], [8.514079, 47.334282], [8.514094, 47.334278], [8.514109, 47.334273], [8.514123, 47.334267], [8.514137, 47.334261], [8.514149, 47.334253], [8.514161, 47.334246], [8.514172, 47.334237], [8.514181, 47.334228], [8.514189, 47.334218], [8.514196, 47.334208], [8.514202, 47.334197], [8.514206, 47.334186], [8.514343, 47.3337], [8.514349, 47.333559], [8.514394, 47.333338], [8.514409, 47.333115], [8.514395, 47.332892], [8.514351, 47.332671], [8.514291, 47.332486], [8.51421, 47.332304], [8.514108, 47.332127], [8.514098, 47.332111], [8.513899, 47.331821], [8.513673, 47.331541], [8.513423, 47.331271], [8.513305, 47.331146], [8.513202, 47.331015], [8.513115, 47.330879], [8.513044, 47.330738], [8.512988, 47.330588], [8.51295, 47.330436], [8.512931, 47.330282], [8.512931, 47.330127], [8.51295, 47.329973], [8.512976, 47.329715], [8.512976, 47.329457], [8.512949, 47.329199], [8.512916, 47.329061], [8.512879, 47.328923], [8.512838, 47.328786], [8.512828, 47.328744], [8.512824, 47.328702], [8.512825, 47.328659], [8.512831, 47.328617], [8.512843, 47.328575]]], "type": "MultiLineString"}, "id": "2759", "properties": {}, "type": "Feature"}, {"bbox": [8.489052, 47.373231, 8.494553, 47.374763], "geometry": {"coordinates": [[[8.494553, 47.373231], [8.494132, 47.373358], [8.49372, 47.373498], [8.493318, 47.373652], [8.493061, 47.373761], [8.492799, 47.373863], [8.492532, 47.373959], [8.492322, 47.374028], [8.492109, 47.374093], [8.491893, 47.374154], [8.491521, 47.374234], [8.491145, 47.374303], [8.490764, 47.37436], [8.490526, 47.374399], [8.490294, 47.374451], [8.490069, 47.374516], [8.489853, 47.374592], [8.489645, 47.37468], [8.489592, 47.374702], [8.489537, 47.374721], [8.489479, 47.374736], [8.48942, 47.374748], [8.489359, 47.374757], [8.489297, 47.374762], [8.489235, 47.374763], [8.489174, 47.374761], [8.489112, 47.374755], [8.489052, 47.374745]]], "type": "MultiLineString"}, "id": "2761", "properties": {}, "type": "Feature"}, {"bbox": [8.481236, 47.376786, 8.483221, 47.378155], "geometry": {"coordinates": [[[8.483221, 47.378155], [8.483026, 47.378052], [8.482651, 47.377815], [8.482061, 47.377323], [8.481384, 47.376865], [8.481236, 47.376786]]], "type": "MultiLineString"}, "id": "2762", "properties": {}, "type": "Feature"}, {"bbox": [8.485257, 47.387996, 8.485992, 47.389159], "geometry": {"coordinates": [[[8.485992, 47.389159], [8.485974, 47.389122], [8.485957, 47.389085], [8.48594, 47.389048], [8.48552, 47.388215], [8.485513, 47.388191], [8.485502, 47.388167], [8.485489, 47.388145], [8.485472, 47.388122], [8.485453, 47.388101], [8.485432, 47.388082], [8.485408, 47.388063], [8.485381, 47.388046], [8.485353, 47.388031], [8.485322, 47.388017], [8.48529, 47.388006], [8.485257, 47.387996]]], "type": "MultiLineString"}, "id": "2763", "properties": {}, "type": "Feature"}, {"bbox": [8.546173, 47.415392, 8.548352, 47.417715], "geometry": {"coordinates": [[[8.546173, 47.417715], [8.546476, 47.417521], [8.546779, 47.417327], [8.547325, 47.417015], [8.547397, 47.416943], [8.547614, 47.416656], [8.547641, 47.416568], [8.547674, 47.416515], [8.548098, 47.415853], [8.54828, 47.41557], [8.548352, 47.415392]]], "type": "MultiLineString"}, "id": "2764", "properties": {}, "type": "Feature"}, {"bbox": [8.573051, 47.406073, 8.57542, 47.409542], "geometry": {"coordinates": [[[8.573051, 47.406073], [8.573259, 47.406233], [8.573331, 47.4063], [8.573405, 47.406366], [8.573479, 47.406432], [8.573655, 47.406617], [8.573802, 47.406814], [8.57392, 47.40702], [8.573979, 47.407131], [8.574132, 47.407394], [8.574381, 47.407823], [8.57496, 47.408836], [8.575014, 47.408923], [8.57542, 47.409542]]], "type": "MultiLineString"}, "id": "2765", "properties": {}, "type": "Feature"}, {"bbox": [8.517432, 47.374166, 8.519175, 47.375264], "geometry": {"coordinates": [[[8.519175, 47.374166], [8.518835, 47.374208], [8.51834, 47.37458], [8.517487, 47.375223], [8.517432, 47.375264]]], "type": "MultiLineString"}, "id": "2771", "properties": {}, "type": "Feature"}, {"bbox": [8.506685, 47.426665, 8.506848, 47.426765], "geometry": {"coordinates": [[[8.506848, 47.426665], [8.506779, 47.426765], [8.506685, 47.426731]]], "type": "MultiLineString"}, "id": "2774", "properties": {}, "type": "Feature"}, {"bbox": [8.525924, 47.369441, 8.527985, 47.370763], "geometry": {"coordinates": [[[8.527985, 47.370763], [8.527421, 47.370285], [8.527143, 47.370048], [8.527105, 47.37002], [8.527065, 47.369992], [8.527023, 47.369966], [8.526428, 47.369645], [8.525924, 47.369441]]], "type": "MultiLineString"}, "id": "2777", "properties": {}, "type": "Feature"}, {"bbox": [8.541027, 47.393946, 8.54418, 47.394708], "geometry": {"coordinates": [[[8.541027, 47.394708], [8.541072, 47.394669], [8.54171, 47.394142], [8.541727, 47.394128], [8.541747, 47.394115], [8.541768, 47.394104], [8.54179, 47.394093], [8.541814, 47.394084], [8.541839, 47.394077], [8.541895, 47.39406], [8.541952, 47.394047], [8.542011, 47.394037], [8.542071, 47.394029], [8.543316, 47.393975], [8.54418, 47.393946]]], "type": "MultiLineString"}, "id": "2779", "properties": {}, "type": "Feature"}, {"bbox": [8.507126, 47.392204, 8.510044, 47.39263], "geometry": {"coordinates": [[[8.510044, 47.392204], [8.509415, 47.392247], [8.508036, 47.392334], [8.50792, 47.392346], [8.507806, 47.392365], [8.507694, 47.39239], [8.507586, 47.392421], [8.507482, 47.392458], [8.507357, 47.392509], [8.507238, 47.392566], [8.507126, 47.39263]]], "type": "MultiLineString"}, "id": "2782", "properties": {}, "type": "Feature"}, {"bbox": [8.583331, 47.360645, 8.59131, 47.361176], "geometry": {"coordinates": [[[8.583331, 47.360645], [8.583729, 47.36069], [8.584129, 47.360723], [8.584532, 47.360743], [8.584587, 47.360741], [8.584643, 47.360737], [8.584698, 47.360729], [8.584751, 47.360719], [8.584901, 47.360751], [8.586634, 47.360713], [8.5869, 47.36072], [8.587114, 47.360731], [8.58722, 47.360739], [8.587661, 47.36078], [8.588075, 47.360836], [8.589031, 47.36097], [8.589204, 47.360991], [8.590428, 47.361157], [8.590527, 47.361166], [8.590625, 47.361172], [8.590724, 47.361176], [8.590791, 47.361174], [8.590857, 47.361169], [8.590923, 47.361159], [8.590986, 47.361145], [8.591048, 47.361128], [8.591107, 47.361107], [8.591164, 47.361082], [8.591216, 47.361054], [8.591265, 47.361023], [8.59131, 47.360989]]], "type": "MultiLineString"}, "id": "2783", "properties": {}, "type": "Feature"}, {"bbox": [8.544586, 47.408138, 8.544641, 47.408288], "geometry": {"coordinates": [[[8.544586, 47.408138], [8.544601, 47.408155], [8.544614, 47.408172], [8.544625, 47.408191], [8.544633, 47.40821], [8.544638, 47.408229], [8.544641, 47.408248], [8.544641, 47.408268], [8.544639, 47.408288]]], "type": "MultiLineString"}, "id": "2798", "properties": {}, "type": "Feature"}, {"bbox": [8.544377, 47.408288, 8.544639, 47.408857], "geometry": {"coordinates": [[[8.544639, 47.408288], [8.544377, 47.408857]]], "type": "MultiLineString"}, "id": "2799", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.408857, 8.544377, 47.409585], "geometry": {"coordinates": [[[8.544377, 47.408857], [8.544291, 47.409044], [8.544106, 47.409446], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "2800", "properties": {}, "type": "Feature"}, {"bbox": [8.547983, 47.402512, 8.553455, 47.403337], "geometry": {"coordinates": [[[8.553455, 47.402512], [8.553048, 47.402516], [8.552575, 47.402557], [8.552248, 47.402619], [8.551417, 47.402813], [8.551185, 47.402852], [8.550949, 47.402876], [8.55071, 47.402887], [8.550471, 47.402884], [8.550319, 47.402879], [8.550103, 47.402855], [8.549885, 47.402845], [8.549667, 47.402848], [8.54945, 47.402865], [8.549235, 47.402895], [8.549026, 47.402938], [8.548824, 47.402994], [8.548106, 47.40329], [8.547983, 47.403337]]], "type": "MultiLineString"}, "id": "2807", "properties": {}, "type": "Feature"}, {"bbox": [8.558518, 47.379824, 8.56479, 47.382251], "geometry": {"coordinates": [[[8.56479, 47.379824], [8.564171, 47.380106], [8.563928, 47.380188], [8.562358, 47.380667], [8.561533, 47.380904], [8.561035, 47.381097], [8.560409, 47.381328], [8.560082, 47.381467], [8.559773, 47.381624], [8.559484, 47.381798], [8.558895, 47.38217], [8.55882, 47.382213], [8.558725, 47.38225], [8.558615, 47.382251], [8.558518, 47.382217]]], "type": "MultiLineString"}, "id": "2808", "properties": {}, "type": "Feature"}, {"bbox": [8.515033, 47.393824, 8.521559, 47.395204], "geometry": {"coordinates": [[[8.521559, 47.393825], [8.521499, 47.393824], [8.521439, 47.393827], [8.521379, 47.393834], [8.521321, 47.393844], [8.521264, 47.393857], [8.52072, 47.394033], [8.519749, 47.394341], [8.519431, 47.394438], [8.519109, 47.394528], [8.518783, 47.39461], [8.518525, 47.39467], [8.518266, 47.394725], [8.518004, 47.394777], [8.517754, 47.394821], [8.517503, 47.394861], [8.51725, 47.394897], [8.515771, 47.39509], [8.515524, 47.395125], [8.515278, 47.395163], [8.515033, 47.395204]]], "type": "MultiLineString"}, "id": "2812", "properties": {}, "type": "Feature"}, {"bbox": [8.483344, 47.390712, 8.483488, 47.390993], "geometry": {"coordinates": [[[8.483352, 47.390712], [8.483348, 47.390723], [8.483345, 47.390735], [8.483344, 47.390746], [8.483344, 47.390757], [8.483346, 47.390768], [8.483349, 47.39078], [8.483353, 47.390791], [8.483488, 47.390993]]], "type": "MultiLineString"}, "id": "2814", "properties": {}, "type": "Feature"}, {"bbox": [8.549243, 47.379177, 8.552554, 47.382224], "geometry": {"coordinates": [[[8.549243, 47.382224], [8.549719, 47.38181], [8.550469, 47.381153], [8.550551, 47.381086], [8.551083, 47.380481], [8.551585, 47.379908], [8.551698, 47.379806], [8.552424, 47.379263], [8.552554, 47.379177]]], "type": "MultiLineString"}, "id": "2830", "properties": {}, "type": "Feature"}, {"bbox": [8.546874, 47.415769, 8.548098, 47.416725], "geometry": {"coordinates": [[[8.546874, 47.416725], [8.547365, 47.416187], [8.547683, 47.415803], [8.547693, 47.415797], [8.547704, 47.415791], [8.547716, 47.415785], [8.547728, 47.415781], [8.547741, 47.415777], [8.547755, 47.415774], [8.547768, 47.415771], [8.547782, 47.41577], [8.547797, 47.415769], [8.547811, 47.415769], [8.547825, 47.41577], [8.547839, 47.415772], [8.547852, 47.415775], [8.547865, 47.415778], [8.548098, 47.415853]]], "type": "MultiLineString"}, "id": "2831", "properties": {}, "type": "Feature"}, {"bbox": [8.535704, 47.398203, 8.537407, 47.400506], "geometry": {"coordinates": [[[8.537407, 47.400506], [8.536712, 47.40021], [8.536396, 47.400055], [8.536252, 47.399977], [8.536119, 47.399892], [8.535996, 47.399799], [8.535885, 47.3997], [8.535845, 47.399668], [8.53581, 47.399632], [8.53578, 47.399595], [8.535754, 47.399557], [8.535734, 47.399517], [8.535719, 47.399475], [8.535709, 47.399434], [8.535704, 47.399391], [8.535705, 47.399349], [8.535712, 47.399307], [8.535723, 47.399265], [8.535741, 47.399224], [8.535763, 47.399185], [8.53579, 47.399146], [8.535822, 47.39911], [8.535859, 47.399076], [8.536217, 47.398769], [8.536272, 47.398717], [8.536322, 47.398663], [8.536365, 47.398606], [8.536402, 47.398547], [8.536431, 47.398486], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "2846", "properties": {}, "type": "Feature"}, {"bbox": [8.521232, 47.343333, 8.528788, 47.344436], "geometry": {"coordinates": [[[8.528788, 47.344066], [8.528662, 47.344029], [8.527746, 47.344024], [8.527551, 47.34406], [8.527427, 47.344095], [8.526877, 47.344362], [8.526659, 47.344436], [8.526449, 47.344384], [8.525683, 47.344019], [8.525008, 47.343695], [8.524541, 47.343468], [8.524475, 47.343442], [8.524407, 47.343418], [8.524337, 47.343396], [8.52422, 47.34337], [8.524099, 47.343351], [8.523976, 47.343338], [8.523853, 47.343333], [8.523729, 47.343336], [8.523606, 47.343346], [8.523398, 47.343375], [8.523194, 47.343417], [8.522996, 47.343471], [8.522619, 47.343594], [8.522378, 47.343679], [8.522126, 47.34375], [8.521866, 47.343804], [8.5216, 47.343841], [8.521329, 47.343862], [8.521232, 47.343829]]], "type": "MultiLineString"}, "id": "2847", "properties": {}, "type": "Feature"}, {"bbox": [8.538778, 47.41242, 8.539483, 47.413211], "geometry": {"coordinates": [[[8.539483, 47.41242], [8.539396, 47.412454], [8.538858, 47.413081], [8.538778, 47.413211]]], "type": "MultiLineString"}, "id": "2849", "properties": {}, "type": "Feature"}, {"bbox": [8.535339, 47.395499, 8.540042, 47.397977], "geometry": {"coordinates": [[[8.540042, 47.395499], [8.539741, 47.395669], [8.538957, 47.396086], [8.53877, 47.396186], [8.537782, 47.39667], [8.53762, 47.396751], [8.537235, 47.396944], [8.536632, 47.397248], [8.535798, 47.397694], [8.535481, 47.397871], [8.535339, 47.397977]]], "type": "MultiLineString"}, "id": "2851", "properties": {}, "type": "Feature"}, {"bbox": [8.536396, 47.398469, 8.537833, 47.400055], "geometry": {"coordinates": [[[8.537833, 47.398469], [8.537807, 47.398525], [8.537411, 47.399065], [8.536939, 47.399577], [8.536396, 47.400055]]], "type": "MultiLineString"}, "id": "2852", "properties": {}, "type": "Feature"}, {"bbox": [8.541875, 47.399597, 8.542741, 47.400092], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.542488, 47.399691], [8.542297, 47.39983], [8.541931, 47.400053], [8.541903, 47.400072], [8.541875, 47.400092]]], "type": "MultiLineString"}, "id": "2854", "properties": {}, "type": "Feature"}, {"bbox": [8.540487, 47.420898, 8.542557, 47.421626], "geometry": {"coordinates": [[[8.542494, 47.421626], [8.542555, 47.421103], [8.542557, 47.421095], [8.542557, 47.421087], [8.542556, 47.421079], [8.542554, 47.421071], [8.542552, 47.421063], [8.542548, 47.421055], [8.542543, 47.421047], [8.542537, 47.42104], [8.542531, 47.421033], [8.542523, 47.421027], [8.542515, 47.421021], [8.542506, 47.421016], [8.542497, 47.421011], [8.542486, 47.421006], [8.542476, 47.421003], [8.542464, 47.421], [8.542453, 47.420997], [8.542441, 47.420995], [8.542429, 47.420994], [8.541614, 47.420932], [8.54124, 47.420908], [8.540863, 47.420898], [8.540487, 47.420904]]], "type": "MultiLineString"}, "id": "2858", "properties": {}, "type": "Feature"}, {"bbox": [8.52786, 47.394026, 8.529508, 47.394662], "geometry": {"coordinates": [[[8.529508, 47.394026], [8.52945, 47.394057], [8.527907, 47.394655], [8.52786, 47.394662]]], "type": "MultiLineString"}, "id": "2859", "properties": {}, "type": "Feature"}, {"bbox": [8.525161, 47.409379, 8.525923, 47.410169], "geometry": {"coordinates": [[[8.525161, 47.409379], [8.525865, 47.40982], [8.525923, 47.409859], [8.525505, 47.410169]]], "type": "MultiLineString"}, "id": "2860", "properties": {}, "type": "Feature"}, {"bbox": [8.532158, 47.406648, 8.535008, 47.407794], "geometry": {"coordinates": [[[8.535008, 47.406648], [8.534973, 47.406659], [8.534864, 47.406688], [8.533048, 47.407332], [8.533016, 47.407344], [8.532985, 47.407358], [8.532956, 47.407374], [8.532929, 47.407391], [8.532904, 47.407409], [8.532882, 47.407429], [8.532862, 47.40745], [8.532807, 47.407511], [8.532783, 47.407536], [8.532756, 47.407559], [8.532726, 47.40758], [8.532694, 47.4076], [8.532658, 47.407617], [8.532621, 47.407632], [8.532201, 47.407779], [8.532158, 47.407794]]], "type": "MultiLineString"}, "id": "2861", "properties": {}, "type": "Feature"}, {"bbox": [8.569507, 47.404839, 8.571312, 47.405708], "geometry": {"coordinates": [[[8.571312, 47.404839], [8.571214, 47.404895], [8.571178, 47.404943], [8.570924, 47.405086], [8.570815, 47.405148], [8.570703, 47.405208], [8.570588, 47.405267], [8.570337, 47.405385], [8.570077, 47.405495], [8.569809, 47.405596], [8.569591, 47.405677], [8.569507, 47.405708]]], "type": "MultiLineString"}, "id": "2864", "properties": {}, "type": "Feature"}, {"bbox": [8.529308, 47.338288, 8.529428, 47.33987], "geometry": {"coordinates": [[[8.529308, 47.33987], [8.529323, 47.339747], [8.529416, 47.33842], [8.529428, 47.338288]]], "type": "MultiLineString"}, "id": "2865", "properties": {}, "type": "Feature"}, {"bbox": [8.560678, 47.360521, 8.561133, 47.361604], "geometry": {"coordinates": [[[8.560863, 47.361604], [8.560839, 47.361596], [8.560816, 47.361587], [8.560794, 47.361576], [8.560774, 47.361564], [8.560755, 47.361551], [8.560738, 47.361536], [8.560723, 47.361521], [8.56071, 47.361505], [8.560699, 47.361488], [8.56069, 47.361471], [8.560684, 47.361453], [8.560679, 47.361435], [8.560678, 47.361417], [8.560678, 47.361399], [8.561034, 47.36076], [8.561121, 47.360598], [8.561127, 47.360583], [8.561131, 47.360567], [8.561133, 47.360552], [8.561133, 47.360536], [8.561131, 47.360521]]], "type": "MultiLineString"}, "id": "2869", "properties": {}, "type": "Feature"}, {"bbox": [8.542032, 47.409694, 8.543839, 47.410375], "geometry": {"coordinates": [[[8.543839, 47.409694], [8.543718, 47.409748], [8.543224, 47.409941], [8.542636, 47.410184], [8.542328, 47.410285], [8.542229, 47.410315], [8.54213, 47.410344], [8.542032, 47.410375]]], "type": "MultiLineString"}, "id": "2870", "properties": {}, "type": "Feature"}, {"bbox": [8.567464, 47.378627, 8.56909, 47.379485], "geometry": {"coordinates": [[[8.56909, 47.378627], [8.569076, 47.378685], [8.569055, 47.378742], [8.569027, 47.378798], [8.568992, 47.378852], [8.568951, 47.378904], [8.568903, 47.378954], [8.568849, 47.379], [8.56879, 47.379043], [8.568726, 47.379083], [8.568656, 47.379119], [8.568583, 47.379151], [8.568506, 47.379178], [8.567623, 47.379465], [8.567598, 47.379472], [8.567572, 47.379478], [8.567546, 47.379482], [8.567519, 47.379485], [8.567492, 47.379485], [8.567464, 47.379484]]], "type": "MultiLineString"}, "id": "2887", "properties": {}, "type": "Feature"}, {"bbox": [8.568027, 47.377357, 8.568329, 47.378552], "geometry": {"coordinates": [[[8.568281, 47.378552], [8.56832, 47.37835], [8.568329, 47.378279], [8.568328, 47.378208], [8.568318, 47.378137], [8.568298, 47.378067], [8.568269, 47.377998], [8.568231, 47.377932], [8.568171, 47.377856], [8.568121, 47.377777], [8.568082, 47.377696], [8.568053, 47.377613], [8.568035, 47.377528], [8.568027, 47.377442], [8.568031, 47.377357]]], "type": "MultiLineString"}, "id": "2888", "properties": {}, "type": "Feature"}, {"bbox": [8.552557, 47.360553, 8.55285, 47.361206], "geometry": {"coordinates": [[[8.552557, 47.361206], [8.552565, 47.361127], [8.55285, 47.360553]]], "type": "MultiLineString"}, "id": "2889", "properties": {}, "type": "Feature"}, {"bbox": [8.557376, 47.382111, 8.56109, 47.384153], "geometry": {"coordinates": [[[8.557376, 47.38314], [8.557555, 47.383257], [8.557561, 47.38326], [8.557568, 47.383264], [8.557574, 47.383267], [8.557582, 47.383269], [8.557589, 47.383272], [8.557597, 47.383273], [8.557605, 47.383274], [8.557613, 47.383275], [8.557621, 47.383275], [8.557629, 47.383275], [8.557638, 47.383274], [8.557646, 47.383273], [8.557779, 47.38324], [8.557907, 47.383198], [8.558029, 47.383149], [8.558145, 47.383092], [8.558252, 47.383029], [8.558467, 47.382901], [8.558699, 47.382788], [8.558946, 47.38269], [8.559281, 47.382589], [8.559432, 47.382539], [8.559576, 47.382482], [8.559713, 47.382416], [8.560172, 47.382184], [8.560214, 47.382164], [8.560258, 47.382147], [8.560305, 47.382132], [8.560353, 47.38212], [8.560402, 47.382111], [8.560596, 47.382246], [8.560609, 47.38226], [8.560619, 47.382275], [8.560628, 47.38229], [8.560635, 47.382306], [8.56064, 47.382323], [8.560643, 47.382339], [8.560644, 47.382356], [8.560642, 47.382372], [8.560639, 47.382389], [8.560633, 47.382405], [8.560626, 47.382421], [8.560616, 47.382436], [8.560605, 47.382451], [8.560591, 47.382465], [8.560576, 47.382478], [8.56056, 47.38249], [8.560542, 47.382501], [8.560522, 47.382511], [8.560502, 47.38252], [8.560335, 47.382596], [8.56018, 47.382682], [8.560038, 47.382779], [8.559784, 47.383006], [8.55977, 47.383025], [8.559758, 47.383045], [8.559749, 47.383066], [8.559743, 47.383088], [8.55974, 47.383109], [8.559739, 47.383131], [8.559742, 47.383152], [8.559747, 47.383174], [8.559755, 47.383195], [8.559766, 47.383215], [8.559779, 47.383235], [8.55987, 47.383309], [8.560035, 47.383407], [8.560785, 47.383054], [8.560989, 47.383204], [8.561007, 47.383222], [8.561023, 47.383241], [8.561036, 47.383261], [8.561047, 47.383282], [8.561055, 47.383303], [8.56106, 47.383324], [8.561087, 47.383529], [8.56109, 47.383556], [8.561089, 47.383582], [8.561085, 47.383608], [8.561078, 47.383634], [8.561065, 47.38367], [8.561048, 47.383706], [8.561026, 47.38374], [8.561, 47.383773], [8.56097, 47.383804], [8.560936, 47.383833], [8.560926, 47.383841], [8.560916, 47.38385], [8.560908, 47.383859], [8.560901, 47.383868], [8.560895, 47.383878], [8.56089, 47.383888], [8.560887, 47.383899], [8.560885, 47.383909], [8.560884, 47.38392], [8.560885, 47.383931], [8.560887, 47.383941], [8.560891, 47.383952], [8.560896, 47.383962], [8.560902, 47.383972], [8.560909, 47.383981], [8.560918, 47.38399], [8.561072, 47.384153]]], "type": "MultiLineString"}, "id": "2891", "properties": {}, "type": "Feature"}, {"bbox": [8.470923, 47.39091, 8.472334, 47.391993], "geometry": {"coordinates": [[[8.472334, 47.391993], [8.471187, 47.391139], [8.471039, 47.391049], [8.471024, 47.391041], [8.471011, 47.391033], [8.470999, 47.391023], [8.470988, 47.391013], [8.470978, 47.391002], [8.47097, 47.390991], [8.470963, 47.390979], [8.470951, 47.390956], [8.470938, 47.390933], [8.470923, 47.39091]]], "type": "MultiLineString"}, "id": "2893", "properties": {}, "type": "Feature"}, {"bbox": [8.517183, 47.363783, 8.519015, 47.368461], "geometry": {"coordinates": [[[8.517183, 47.368461], [8.517377, 47.368288], [8.518007, 47.367648], [8.518543, 47.366904], [8.518927, 47.366387], [8.518977, 47.366317], [8.518988, 47.366303], [8.518998, 47.366288], [8.519005, 47.366273], [8.51901, 47.366258], [8.519013, 47.366242], [8.519015, 47.366226], [8.519014, 47.36621], [8.519011, 47.366194], [8.519007, 47.366178], [8.519, 47.366163], [8.518991, 47.366148], [8.518642, 47.365612], [8.518618, 47.365575], [8.518598, 47.365536], [8.518584, 47.365495], [8.518575, 47.365455], [8.518572, 47.365414], [8.518582, 47.364703], [8.51858, 47.364687], [8.518577, 47.364671], [8.518571, 47.364655], [8.518563, 47.36464], [8.518553, 47.364625], [8.518541, 47.36461], [8.518528, 47.364597], [8.518513, 47.364584], [8.518497, 47.364572], [8.518479, 47.364561], [8.51846, 47.364551], [8.518439, 47.364542], [8.518418, 47.364535], [8.518224, 47.364464], [8.518059, 47.364405], [8.518025, 47.364395], [8.517775, 47.364307], [8.51775, 47.364298], [8.517725, 47.364288], [8.517703, 47.364276], [8.517681, 47.364263], [8.517662, 47.364248], [8.517645, 47.364233], [8.517629, 47.364217], [8.517616, 47.364199], [8.517605, 47.364181], [8.517597, 47.364163], [8.51759, 47.364144], [8.517587, 47.364124], [8.517585, 47.364096], [8.517595, 47.363802], [8.517562, 47.363783], [8.517491, 47.363803]]], "type": "MultiLineString"}, "id": "2894", "properties": {}, "type": "Feature"}, {"bbox": [8.48401, 47.408901, 8.488584, 47.412154], "geometry": {"coordinates": [[[8.488575, 47.408901], [8.488581, 47.408933], [8.488584, 47.408965], [8.488583, 47.408997], [8.488471, 47.409108], [8.488352, 47.409215], [8.488228, 47.409319], [8.48816, 47.4094], [8.488103, 47.409484], [8.488058, 47.409571], [8.488023, 47.40966], [8.488001, 47.409751], [8.487996, 47.40987], [8.488008, 47.409988], [8.488037, 47.410105], [8.488057, 47.410181], [8.488061, 47.410204], [8.488062, 47.410227], [8.488059, 47.41025], [8.488054, 47.410273], [8.488045, 47.410295], [8.488028, 47.410325], [8.488007, 47.410353], [8.487982, 47.41038], [8.487954, 47.410405], [8.487901, 47.410444], [8.487844, 47.41048], [8.487783, 47.410514], [8.48728, 47.410735], [8.487191, 47.410776], [8.487106, 47.41082], [8.487025, 47.410868], [8.486613, 47.411122], [8.486525, 47.411189], [8.486444, 47.41126], [8.48637, 47.411335], [8.486129, 47.411577], [8.486027, 47.411683], [8.486018, 47.411679], [8.486008, 47.411675], [8.485998, 47.411672], [8.485988, 47.411669], [8.485977, 47.411667], [8.485966, 47.411666], [8.485955, 47.411665], [8.485943, 47.411665], [8.485932, 47.411665], [8.485921, 47.411667], [8.48591, 47.411668], [8.485617, 47.411729], [8.485328, 47.411799], [8.485044, 47.411879], [8.484829, 47.411948], [8.484615, 47.412018], [8.484402, 47.412089], [8.484222, 47.412145], [8.484201, 47.412149], [8.484179, 47.412152], [8.484157, 47.412154], [8.484135, 47.412154], [8.484113, 47.412153], [8.484091, 47.412151], [8.48407, 47.412147], [8.484049, 47.412142], [8.484029, 47.412136], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "2895", "properties": {}, "type": "Feature"}, {"bbox": [8.53517, 47.419042, 8.538432, 47.419968], "geometry": {"coordinates": [[[8.538432, 47.419042], [8.53824, 47.419046], [8.537085, 47.419071], [8.536767, 47.41909], [8.53645, 47.419116], [8.536135, 47.419149], [8.53608, 47.419156], [8.536027, 47.419166], [8.535975, 47.419179], [8.535925, 47.419195], [8.535878, 47.419214], [8.535833, 47.419236], [8.535791, 47.41926], [8.535753, 47.419287], [8.535718, 47.419317], [8.535687, 47.419348], [8.53517, 47.419968]]], "type": "MultiLineString"}, "id": "2896", "properties": {}, "type": "Feature"}, {"bbox": [8.569325, 47.403913, 8.569516, 47.405751], "geometry": {"coordinates": [[[8.569488, 47.403913], [8.569505, 47.403983], [8.569514, 47.404054], [8.569516, 47.404125], [8.569331, 47.405457], [8.569325, 47.405506], [8.569326, 47.405556], [8.569332, 47.405606], [8.569344, 47.405655], [8.569363, 47.405704], [8.569386, 47.405751]]], "type": "MultiLineString"}, "id": "2898", "properties": {}, "type": "Feature"}, {"bbox": [8.529425, 47.344868, 8.529734, 47.34559], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529489, 47.345445], [8.529598, 47.34519], [8.529706, 47.344935], [8.529734, 47.344868]]], "type": "MultiLineString"}, "id": "2899", "properties": {}, "type": "Feature"}, {"bbox": [8.514064, 47.370351, 8.514383, 47.370585], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.514064, 47.370585]]], "type": "MultiLineString"}, "id": "2901", "properties": {}, "type": "Feature"}, {"bbox": [8.537817, 47.411803, 8.541432, 47.413178], "geometry": {"coordinates": [[[8.541432, 47.413178], [8.54065, 47.412876], [8.540145, 47.412679], [8.539868, 47.412559], [8.539483, 47.41242], [8.538561, 47.412071], [8.537817, 47.411803]]], "type": "MultiLineString"}, "id": "2902", "properties": {}, "type": "Feature"}, {"bbox": [8.543576, 47.367078, 8.544316, 47.368987], "geometry": {"coordinates": [[[8.543576, 47.368987], [8.54379, 47.36849], [8.543893, 47.368318], [8.544054, 47.367998], [8.544271, 47.367552], [8.54429, 47.367506], [8.544305, 47.367458], [8.544313, 47.36741], [8.544316, 47.367362], [8.544314, 47.367314], [8.544305, 47.367266], [8.544289, 47.36722], [8.54428, 47.367173], [8.544278, 47.367125], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "2903", "properties": {}, "type": "Feature"}, {"bbox": [8.56479, 47.379824, 8.571352, 47.381651], "geometry": {"coordinates": [[[8.56479, 47.379824], [8.565015, 47.379893], [8.565075, 47.379908], [8.565179, 47.379932], [8.565529, 47.380007], [8.565534, 47.380007], [8.565763, 47.380067], [8.566042, 47.380151], [8.566254, 47.380201], [8.566309, 47.380212], [8.566954, 47.380334], [8.5671, 47.380358], [8.567171, 47.380369], [8.567397, 47.380408], [8.567709, 47.380498], [8.568233, 47.380649], [8.568327, 47.380678], [8.568768, 47.380814], [8.569298, 47.380977], [8.569404, 47.381004], [8.569871, 47.381122], [8.570391, 47.381261], [8.570434, 47.381274], [8.570475, 47.381289], [8.570516, 47.381305], [8.571352, 47.381651]]], "type": "MultiLineString"}, "id": "2907", "properties": {}, "type": "Feature"}, {"bbox": [8.530676, 47.336616, 8.533204, 47.341869], "geometry": {"coordinates": [[[8.530676, 47.341869], [8.530743, 47.341838], [8.530805, 47.341803], [8.530863, 47.341764], [8.530916, 47.341722], [8.530963, 47.341677], [8.531005, 47.341629], [8.531116, 47.341503], [8.531213, 47.34137], [8.531294, 47.341233], [8.531358, 47.341092], [8.531406, 47.340948], [8.531421, 47.340892], [8.531456, 47.340767], [8.531515, 47.340549], [8.532046, 47.3386], [8.532061, 47.338521], [8.532094, 47.338395], [8.532123, 47.338301], [8.532268, 47.337788], [8.532292, 47.337704], [8.532324, 47.337622], [8.532364, 47.337541], [8.532439, 47.337402], [8.532529, 47.337267], [8.532632, 47.337136], [8.532724, 47.337036], [8.532824, 47.336939], [8.532933, 47.336846], [8.533204, 47.336616]]], "type": "MultiLineString"}, "id": "2908", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.411273, 8.541977, 47.411855], "geometry": {"coordinates": [[[8.541977, 47.411307], [8.541935, 47.411357], [8.541787, 47.411273], [8.541349, 47.41179], [8.541511, 47.411855]]], "type": "MultiLineString"}, "id": "2919", "properties": {}, "type": "Feature"}, {"bbox": [8.525772, 47.391773, 8.526073, 47.392102], "geometry": {"coordinates": [[[8.525772, 47.391773], [8.526073, 47.392102]]], "type": "MultiLineString"}, "id": "2925", "properties": {}, "type": "Feature"}, {"bbox": [8.497438, 47.358817, 8.504661, 47.362487], "geometry": {"coordinates": [[[8.504661, 47.362487], [8.504126, 47.362195], [8.503968, 47.362109], [8.503727, 47.361976], [8.503245, 47.361708], [8.503118, 47.361637], [8.502794, 47.361458], [8.502432, 47.361258], [8.502165, 47.36111], [8.500114, 47.359972], [8.499803, 47.359798], [8.499589, 47.359681], [8.499376, 47.359564], [8.499113, 47.359423], [8.498831, 47.3593], [8.498535, 47.359194], [8.498225, 47.359107], [8.497685, 47.358966], [8.497628, 47.358943], [8.497574, 47.358916], [8.497524, 47.358886], [8.497479, 47.358853], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "2927", "properties": {}, "type": "Feature"}, {"bbox": [8.589204, 47.359976, 8.589557, 47.360991], "geometry": {"coordinates": [[[8.589557, 47.359976], [8.589514, 47.360059], [8.589499, 47.360088], [8.589255, 47.360884], [8.589204, 47.360991]]], "type": "MultiLineString"}, "id": "2928", "properties": {}, "type": "Feature"}, {"bbox": [8.547871, 47.401863, 8.549771, 47.402619], "geometry": {"coordinates": [[[8.547871, 47.402619], [8.548081, 47.40258], [8.54849, 47.402423], [8.548936, 47.402249], [8.549059, 47.4022], [8.549208, 47.402138], [8.54931, 47.402092], [8.549434, 47.402035], [8.549592, 47.401956], [8.549771, 47.401863]]], "type": "MultiLineString"}, "id": "2936", "properties": {}, "type": "Feature"}, {"bbox": [8.533963, 47.396089, 8.53616, 47.396907], "geometry": {"coordinates": [[[8.53616, 47.396089], [8.535645, 47.39635], [8.535017, 47.396671], [8.534667, 47.39685], [8.534643, 47.396862], [8.534617, 47.396874], [8.53459, 47.396883], [8.534562, 47.396891], [8.534533, 47.396898], [8.534503, 47.396903], [8.534472, 47.396906], [8.534442, 47.396907], [8.534411, 47.396907], [8.534381, 47.396905], [8.534351, 47.396901], [8.534126, 47.396866], [8.533963, 47.39678]]], "type": "MultiLineString"}, "id": "2938", "properties": {}, "type": "Feature"}, {"bbox": [8.532126, 47.398717, 8.532831, 47.398824], "geometry": {"coordinates": [[[8.532126, 47.398824], [8.53214, 47.398809], [8.532156, 47.398794], [8.532175, 47.39878], [8.532195, 47.398767], [8.532216, 47.398756], [8.532239, 47.398745], [8.532263, 47.398737], [8.532289, 47.39873], [8.532315, 47.398724], [8.532341, 47.39872], [8.532369, 47.398717], [8.532396, 47.398717], [8.532423, 47.398718], [8.532451, 47.39872], [8.532477, 47.398724], [8.532503, 47.39873], [8.532831, 47.398758]]], "type": "MultiLineString"}, "id": "2940", "properties": {}, "type": "Feature"}, {"bbox": [8.563637, 47.346451, 8.565151, 47.348365], "geometry": {"coordinates": [[[8.563637, 47.348365], [8.564436, 47.347488], [8.564519, 47.347391], [8.564595, 47.347292], [8.564663, 47.34719], [8.56494, 47.346709], [8.565, 47.346619], [8.565071, 47.346533], [8.565151, 47.346451]]], "type": "MultiLineString"}, "id": "2943", "properties": {}, "type": "Feature"}, {"bbox": [8.545415, 47.392413, 8.549096, 47.395966], "geometry": {"coordinates": [[[8.545415, 47.395966], [8.545643, 47.395916], [8.545814, 47.395873], [8.54587, 47.395852], [8.545924, 47.395827], [8.545975, 47.3958], [8.546022, 47.39577], [8.546065, 47.395737], [8.546105, 47.395702], [8.546139, 47.395665], [8.54617, 47.395626], [8.54631, 47.395399], [8.546364, 47.395312], [8.547184, 47.393984], [8.547193, 47.393969], [8.547203, 47.393953], [8.547212, 47.393938], [8.547382, 47.393701], [8.547584, 47.393478], [8.547818, 47.393268], [8.548081, 47.393076], [8.549096, 47.392413]]], "type": "MultiLineString"}, "id": "2944", "properties": {}, "type": "Feature"}, {"bbox": [8.583948, 47.355772, 8.585623, 47.356819], "geometry": {"coordinates": [[[8.583948, 47.356795], [8.584309, 47.356819], [8.584586, 47.356744], [8.58479, 47.356615], [8.584924, 47.356475], [8.585183, 47.356151], [8.58535, 47.355975], [8.585576, 47.355801], [8.585623, 47.355772]]], "type": "MultiLineString"}, "id": "2945", "properties": {}, "type": "Feature"}, {"bbox": [8.514343, 47.3337, 8.5183, 47.335046], "geometry": {"coordinates": [[[8.5183, 47.335046], [8.518275, 47.335024], [8.518248, 47.335005], [8.518218, 47.334986], [8.518186, 47.33497], [8.518152, 47.334956], [8.517692, 47.334793], [8.517457, 47.334726], [8.517218, 47.334667], [8.516974, 47.334618], [8.516848, 47.334595], [8.516726, 47.334565], [8.516607, 47.334529], [8.516494, 47.334485], [8.516387, 47.334435], [8.515896, 47.334178], [8.515753, 47.334107], [8.515602, 47.334043], [8.515445, 47.333988], [8.515282, 47.333941], [8.515164, 47.333906], [8.514775, 47.333793], [8.514343, 47.3337]]], "type": "MultiLineString"}, "id": "2946", "properties": {}, "type": "Feature"}, {"bbox": [8.548732, 47.410416, 8.549515, 47.412149], "geometry": {"coordinates": [[[8.548732, 47.410416], [8.548874, 47.410662], [8.549203, 47.411156], [8.549361, 47.411402], [8.549415, 47.411486], [8.549458, 47.411573], [8.549489, 47.411662], [8.549508, 47.411753], [8.549515, 47.411844], [8.549509, 47.411936], [8.549499, 47.412149]]], "type": "MultiLineString"}, "id": "2954", "properties": {}, "type": "Feature"}, {"bbox": [8.544106, 47.413914, 8.544261, 47.417233], "geometry": {"coordinates": [[[8.544211, 47.413914], [8.544225, 47.414036], [8.544254, 47.414416], [8.544261, 47.414597], [8.544259, 47.414673], [8.544257, 47.414782], [8.544226, 47.415276], [8.544221, 47.41536], [8.544216, 47.415444], [8.544165, 47.416274], [8.544159, 47.416386], [8.544106, 47.417233]]], "type": "MultiLineString"}, "id": "2955", "properties": {}, "type": "Feature"}, {"bbox": [8.542716, 47.399597, 8.547215, 47.407362], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.542716, 47.399758], [8.543059, 47.400195], [8.543721, 47.401079], [8.54408, 47.401519], [8.544372, 47.401893], [8.544934, 47.402589], [8.545223, 47.402978], [8.545289, 47.403089], [8.545356, 47.4032], [8.545422, 47.403311], [8.545845, 47.404014], [8.546099, 47.404464], [8.546572, 47.405245], [8.546669, 47.405418], [8.547154, 47.40623], [8.547169, 47.406282], [8.547158, 47.406331], [8.547178, 47.406367], [8.547194, 47.406403], [8.547206, 47.40644], [8.547212, 47.406478], [8.547215, 47.406516], [8.547212, 47.406554], [8.547209, 47.406574], [8.547205, 47.406593], [8.5472, 47.406613], [8.546961, 47.407362]]], "type": "MultiLineString"}, "id": "2959", "properties": {}, "type": "Feature"}, {"bbox": [8.563709, 47.405095, 8.565374, 47.405611], "geometry": {"coordinates": [[[8.563709, 47.405611], [8.564095, 47.405286], [8.564134, 47.405255], [8.564178, 47.405225], [8.564225, 47.405199], [8.564276, 47.405176], [8.564329, 47.405156], [8.564385, 47.405139], [8.564443, 47.405126], [8.564502, 47.405116], [8.564563, 47.405111], [8.564803, 47.405101], [8.564967, 47.405096], [8.56501, 47.405095], [8.565245, 47.4051], [8.565374, 47.405109]]], "type": "MultiLineString"}, "id": "2960", "properties": {}, "type": "Feature"}, {"bbox": [8.546314, 47.424988, 8.548212, 47.425197], "geometry": {"coordinates": [[[8.548212, 47.425], [8.548168, 47.424993], [8.548122, 47.424989], [8.548076, 47.424988], [8.54803, 47.424989], [8.547984, 47.424993], [8.547939, 47.425], [8.547896, 47.42501], [8.547793, 47.425036], [8.547688, 47.425057], [8.547581, 47.425072], [8.546789, 47.425159], [8.546584, 47.425183], [8.546542, 47.425184], [8.546466, 47.425191], [8.54639, 47.425195], [8.546314, 47.425197]]], "type": "MultiLineString"}, "id": "2964", "properties": {}, "type": "Feature"}, {"bbox": [8.538976, 47.422295, 8.540226, 47.42424], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.539019, 47.42241], [8.53913, 47.422751], [8.539197, 47.422901], [8.539276, 47.423049], [8.539368, 47.423193], [8.539785, 47.423754], [8.539975, 47.423985], [8.540055, 47.424072], [8.540138, 47.424157], [8.540226, 47.42424]]], "type": "MultiLineString"}, "id": "2965", "properties": {}, "type": "Feature"}, {"bbox": [8.52923, 47.389141, 8.532213, 47.392168], "geometry": {"coordinates": [[[8.532213, 47.389141], [8.532045, 47.389233], [8.531851, 47.389346], [8.531662, 47.389461], [8.531273, 47.389708], [8.531269, 47.389711], [8.531265, 47.389713], [8.530613, 47.390123], [8.530394, 47.390255], [8.529537, 47.390745], [8.529268, 47.390905], [8.529261, 47.39091], [8.529254, 47.390915], [8.529248, 47.39092], [8.529243, 47.390926], [8.529239, 47.390932], [8.529235, 47.390939], [8.529233, 47.390945], [8.529231, 47.390952], [8.52923, 47.390959], [8.52923, 47.390966], [8.529231, 47.390973], [8.529233, 47.390979], [8.529235, 47.390986], [8.529239, 47.390992], [8.529243, 47.390999], [8.529286, 47.391066], [8.529426, 47.39124], [8.529687, 47.391601], [8.529915, 47.391969], [8.529952, 47.392022], [8.529995, 47.392074], [8.530045, 47.392123], [8.530101, 47.392168]]], "type": "MultiLineString"}, "id": "2966", "properties": {}, "type": "Feature"}, {"bbox": [8.513978, 47.418542, 8.51522, 47.420235], "geometry": {"coordinates": [[[8.51522, 47.418542], [8.515142, 47.418688], [8.51504, 47.418872], [8.514876, 47.419151], [8.514689, 47.419424], [8.51448, 47.419689], [8.513978, 47.420235]]], "type": "MultiLineString"}, "id": "2967", "properties": {}, "type": "Feature"}, {"bbox": [8.515734, 47.329254, 8.516889, 47.330693], "geometry": {"coordinates": [[[8.515734, 47.330693], [8.515828, 47.330621], [8.515978, 47.330524], [8.516115, 47.330419], [8.516238, 47.330307], [8.516395, 47.330087], [8.516757, 47.32949], [8.516889, 47.329254]]], "type": "MultiLineString"}, "id": "2970", "properties": {}, "type": "Feature"}, {"bbox": [8.514353, 47.328396, 8.516889, 47.329522], "geometry": {"coordinates": [[[8.514353, 47.329522], [8.514547, 47.329394], [8.514572, 47.329371], [8.514595, 47.329347], [8.514615, 47.329321], [8.514631, 47.329295], [8.514644, 47.329267], [8.514653, 47.329239], [8.514658, 47.329211], [8.51466, 47.329182], [8.514658, 47.329153], [8.514653, 47.329125], [8.514555, 47.328591], [8.514556, 47.328575], [8.514558, 47.328559], [8.514562, 47.328543], [8.514569, 47.328527], [8.514577, 47.328512], [8.514587, 47.328497], [8.514599, 47.328483], [8.514612, 47.32847], [8.514628, 47.328458], [8.514645, 47.328446], [8.514663, 47.328436], [8.514682, 47.328426], [8.514703, 47.328418], [8.514724, 47.328411], [8.514746, 47.328406], [8.514769, 47.328401], [8.514793, 47.328398], [8.514816, 47.328396], [8.51484, 47.328396], [8.514864, 47.328397], [8.514887, 47.3284], [8.514911, 47.328404], [8.514933, 47.328409], [8.514955, 47.328415], [8.514976, 47.328423], [8.515458, 47.328593], [8.515939, 47.328754], [8.516756, 47.328982], [8.516644, 47.329172], [8.516889, 47.329254]]], "type": "MultiLineString"}, "id": "2971", "properties": {}, "type": "Feature"}, {"bbox": [8.53093, 47.33354, 8.54039, 47.343079], "geometry": {"coordinates": [[[8.53093, 47.342545], [8.531212, 47.342557], [8.531282, 47.34256], [8.531352, 47.342567], [8.53142, 47.342579], [8.531487, 47.342595], [8.531578, 47.342622], [8.531653, 47.34265], [8.531726, 47.34268], [8.531797, 47.342712], [8.53192, 47.342765], [8.532047, 47.342815], [8.532176, 47.342862], [8.532419, 47.342936], [8.532512, 47.342965], [8.532886, 47.343064], [8.532907, 47.343069], [8.532928, 47.343073], [8.53295, 47.343077], [8.532972, 47.343078], [8.532994, 47.343079], [8.533016, 47.343079], [8.533038, 47.343077], [8.53306, 47.343074], [8.533109, 47.343064], [8.533156, 47.343053], [8.533202, 47.343038], [8.533249, 47.34302], [8.533293, 47.343], [8.533334, 47.342977], [8.533373, 47.342952], [8.533409, 47.342925], [8.533441, 47.342896], [8.533469, 47.342866], [8.534157, 47.342001], [8.534181, 47.341971], [8.534268, 47.341854], [8.534504, 47.341517], [8.534567, 47.341421], [8.534622, 47.341324], [8.53467, 47.341224], [8.534739, 47.341072], [8.534747, 47.341052], [8.534756, 47.341033], [8.534764, 47.341014], [8.534776, 47.340982], [8.534789, 47.34095], [8.5348, 47.340918], [8.534883, 47.340721], [8.534926, 47.34063], [8.534974, 47.34054], [8.535026, 47.340451], [8.535246, 47.340096], [8.53576, 47.339261], [8.535886, 47.339057], [8.535925, 47.33899], [8.535955, 47.338921], [8.535976, 47.338851], [8.535989, 47.338779], [8.535994, 47.338707], [8.535989, 47.338636], [8.53596, 47.338378], [8.535995, 47.338263], [8.536243, 47.337892], [8.536249, 47.337883], [8.536324, 47.337774], [8.53649, 47.33755], [8.536828, 47.337078], [8.537014, 47.33683], [8.537388, 47.336331], [8.53786, 47.335705], [8.537913, 47.335635], [8.538168, 47.335298], [8.538333, 47.335111], [8.538511, 47.334928], [8.5387, 47.334752], [8.538966, 47.334554], [8.539006, 47.334525], [8.539951, 47.33383], [8.540019, 47.333781], [8.540088, 47.333733], [8.540158, 47.333686], [8.540234, 47.333636], [8.540312, 47.333588], [8.54039, 47.33354]]], "type": "MultiLineString"}, "id": "2972", "properties": {}, "type": "Feature"}, {"bbox": [8.511369, 47.329831, 8.514765, 47.330003], "geometry": {"coordinates": [[[8.514765, 47.329871], [8.514708, 47.329895], [8.514648, 47.329915], [8.514586, 47.329931], [8.514522, 47.329942], [8.513894, 47.329996], [8.513579, 47.330003], [8.513264, 47.329995], [8.51295, 47.329973], [8.51252, 47.329941], [8.51209, 47.329904], [8.511662, 47.329862], [8.511369, 47.329831]]], "type": "MultiLineString"}, "id": "2973", "properties": {}, "type": "Feature"}, {"bbox": [8.519571, 47.365673, 8.521554, 47.368781], "geometry": {"coordinates": [[[8.519571, 47.368781], [8.519631, 47.368692], [8.519685, 47.368602], [8.519733, 47.36851], [8.519726, 47.368438], [8.51972, 47.368367], [8.519715, 47.368295], [8.519721, 47.367764], [8.519868, 47.367322], [8.519893, 47.36727], [8.519922, 47.367218], [8.519954, 47.367167], [8.520016, 47.36708], [8.520087, 47.366996], [8.520166, 47.366915], [8.520235, 47.366852], [8.520309, 47.366792], [8.520389, 47.366735], [8.520449, 47.366685], [8.521014, 47.366227], [8.521242, 47.366042], [8.52146, 47.365864], [8.521483, 47.365839], [8.521503, 47.365813], [8.52152, 47.365787], [8.521533, 47.365759], [8.521544, 47.365731], [8.521551, 47.365702], [8.521554, 47.365673]]], "type": "MultiLineString"}, "id": "2974", "properties": {}, "type": "Feature"}, {"bbox": [8.510096, 47.421894, 8.511754, 47.424748], "geometry": {"coordinates": [[[8.510096, 47.421894], [8.510669, 47.422918], [8.51074, 47.423055], [8.510879, 47.423321], [8.511155, 47.4238], [8.511232, 47.423943], [8.51131, 47.424086], [8.511388, 47.42423], [8.511449, 47.424343], [8.511494, 47.424413], [8.511541, 47.424481], [8.511591, 47.424549], [8.511643, 47.424616], [8.511697, 47.424682], [8.511754, 47.424748]]], "type": "MultiLineString"}, "id": "2975", "properties": {}, "type": "Feature"}, {"bbox": [8.590637, 47.356894, 8.591622, 47.357302], "geometry": {"coordinates": [[[8.590637, 47.357287], [8.590669, 47.357294], [8.590701, 47.357298], [8.590734, 47.357301], [8.590767, 47.357302], [8.590801, 47.357301], [8.590833, 47.357298], [8.590866, 47.357293], [8.590897, 47.357286], [8.590928, 47.357277], [8.590957, 47.357266], [8.591622, 47.356894]]], "type": "MultiLineString"}, "id": "2976", "properties": {}, "type": "Feature"}, {"bbox": [8.574124, 47.382778, 8.575367, 47.383912], "geometry": {"coordinates": [[[8.575367, 47.382778], [8.575007, 47.383133], [8.574916, 47.383244], [8.574819, 47.383353], [8.574718, 47.383459], [8.57423, 47.383877], [8.574219, 47.383883], [8.574207, 47.38389], [8.574194, 47.383895], [8.574181, 47.3839], [8.574167, 47.383904], [8.574153, 47.383908], [8.574139, 47.38391], [8.574124, 47.383912]]], "type": "MultiLineString"}, "id": "2984", "properties": {}, "type": "Feature"}, {"bbox": [8.531386, 47.410511, 8.532956, 47.413301], "geometry": {"coordinates": [[[8.532533, 47.410511], [8.532753, 47.411063], [8.532781, 47.411104], [8.532815, 47.411143], [8.532853, 47.41118], [8.532874, 47.411197], [8.532892, 47.411215], [8.532909, 47.411233], [8.532923, 47.411253], [8.532935, 47.411273], [8.532944, 47.411294], [8.53295, 47.411316], [8.532954, 47.411337], [8.532956, 47.411359], [8.532954, 47.411381], [8.532949, 47.4114], [8.532942, 47.411419], [8.532932, 47.411438], [8.53292, 47.411456], [8.532906, 47.411473], [8.532889, 47.411489], [8.532871, 47.411504], [8.53285, 47.411517], [8.532828, 47.41153], [8.532804, 47.411541], [8.532778, 47.41155], [8.532752, 47.411558], [8.532203, 47.411708], [8.531903, 47.411794], [8.531729, 47.411836], [8.531687, 47.411848], [8.531647, 47.411862], [8.531609, 47.411878], [8.531573, 47.411897], [8.53154, 47.411918], [8.53151, 47.41194], [8.531483, 47.411965], [8.531459, 47.411991], [8.531436, 47.412025], [8.531417, 47.412061], [8.531402, 47.412097], [8.531392, 47.412134], [8.531386, 47.412171], [8.531452, 47.412811], [8.531531, 47.413301]]], "type": "MultiLineString"}, "id": "2989", "properties": {}, "type": "Feature"}, {"bbox": [8.530671, 47.407541, 8.532533, 47.410511], "geometry": {"coordinates": [[[8.530671, 47.407541], [8.530829, 47.407621], [8.530976, 47.407709], [8.531112, 47.407804], [8.531236, 47.407908], [8.531347, 47.408017], [8.531451, 47.408159], [8.531595, 47.408357], [8.531648, 47.408445], [8.53173, 47.408584], [8.531895, 47.408907], [8.531963, 47.409065], [8.532074, 47.409349], [8.53232, 47.409999], [8.532533, 47.410511]]], "type": "MultiLineString"}, "id": "2999", "properties": {}, "type": "Feature"}, {"bbox": [8.550419, 47.401372, 8.551447, 47.406596], "geometry": {"coordinates": [[[8.55052, 47.401372], [8.550522, 47.401451], [8.550469, 47.401737], [8.550419, 47.402198], [8.550421, 47.402541], [8.550471, 47.402884], [8.55055, 47.403315], [8.550595, 47.403568], [8.550642, 47.403888], [8.550687, 47.404161], [8.550705, 47.404271], [8.550749, 47.404607], [8.550782, 47.404758], [8.550804, 47.404892], [8.550841, 47.405178], [8.550896, 47.405452], [8.550958, 47.405589], [8.551447, 47.406596]]], "type": "MultiLineString"}, "id": "3001", "properties": {}, "type": "Feature"}, {"bbox": [8.546655, 47.415028, 8.548539, 47.415393], "geometry": {"coordinates": [[[8.546655, 47.415028], [8.548201, 47.415377], [8.54823, 47.415384], [8.54826, 47.415389], [8.548291, 47.415392], [8.548321, 47.415393], [8.548352, 47.415392], [8.548401, 47.415384], [8.548449, 47.415373], [8.548495, 47.415359], [8.548539, 47.415343]]], "type": "MultiLineString"}, "id": "3007", "properties": {}, "type": "Feature"}, {"bbox": [8.561489, 47.354323, 8.563287, 47.355088], "geometry": {"coordinates": [[[8.561489, 47.355088], [8.56263, 47.355084], [8.562647, 47.355084], [8.562664, 47.355083], [8.56268, 47.355081], [8.562697, 47.355079], [8.562713, 47.355075], [8.562728, 47.35507], [8.562743, 47.355065], [8.562757, 47.355059], [8.562771, 47.355052], [8.562783, 47.355044], [8.562794, 47.355035], [8.562805, 47.355026], [8.562814, 47.355016], [8.562821, 47.355006], [8.562828, 47.354996], [8.562833, 47.354985], [8.56286, 47.354942], [8.563146, 47.354495], [8.563267, 47.354345], [8.563287, 47.354323]]], "type": "MultiLineString"}, "id": "3008", "properties": {}, "type": "Feature"}, {"bbox": [8.492127, 47.375484, 8.49666, 47.377602], "geometry": {"coordinates": [[[8.49666, 47.375484], [8.495245, 47.376111], [8.494846, 47.376275], [8.493721, 47.376763], [8.493132, 47.377047], [8.492842, 47.377206], [8.492547, 47.377368], [8.492127, 47.377602]]], "type": "MultiLineString"}, "id": "3012", "properties": {}, "type": "Feature"}, {"bbox": [8.481702, 47.378155, 8.483221, 47.379242], "geometry": {"coordinates": [[[8.483221, 47.378155], [8.482971, 47.3782], [8.481702, 47.379242]]], "type": "MultiLineString"}, "id": "3013", "properties": {}, "type": "Feature"}, {"bbox": [8.534463, 47.372823, 8.536897, 47.375551], "geometry": {"coordinates": [[[8.534463, 47.372823], [8.534631, 47.373209], [8.534675, 47.373284], [8.534728, 47.373355], [8.534792, 47.373423], [8.534813, 47.373442], [8.534835, 47.373461], [8.534858, 47.37348], [8.535297, 47.373928], [8.535581, 47.374219], [8.535764, 47.374405], [8.535906, 47.37455], [8.536268, 47.374918], [8.53643, 47.375083], [8.536854, 47.37551], [8.536897, 47.375551]]], "type": "MultiLineString"}, "id": "3016", "properties": {}, "type": "Feature"}, {"bbox": [8.485303, 47.373017, 8.487241, 47.37482], "geometry": {"coordinates": [[[8.487241, 47.37482], [8.486528, 47.374365], [8.486439, 47.374289], [8.486362, 47.374207], [8.486295, 47.37412], [8.486241, 47.37403], [8.4862, 47.373936], [8.486158, 47.373838], [8.486105, 47.373743], [8.48604, 47.373651], [8.485963, 47.373563], [8.485876, 47.37348], [8.485329, 47.373084], [8.485303, 47.373017]]], "type": "MultiLineString"}, "id": "3017", "properties": {}, "type": "Feature"}, {"bbox": [8.501528, 47.399259, 8.503179, 47.399509], "geometry": {"coordinates": [[[8.501528, 47.399388], [8.50173, 47.39933], [8.501927, 47.399279], [8.501998, 47.399268], [8.50207, 47.399262], [8.502142, 47.399259], [8.502231, 47.39926], [8.50232, 47.399267], [8.502408, 47.39928], [8.502493, 47.399298], [8.502576, 47.399322], [8.502793, 47.399392], [8.503179, 47.399509]]], "type": "MultiLineString"}, "id": "3018", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.365249, 8.533842, 47.365568], "geometry": {"coordinates": [[[8.533842, 47.365568], [8.532676, 47.365249]]], "type": "MultiLineString"}, "id": "3025", "properties": {}, "type": "Feature"}, {"bbox": [8.591786, 47.397224, 8.594967, 47.399006], "geometry": {"coordinates": [[[8.591786, 47.399006], [8.592043, 47.39893], [8.592352, 47.398897], [8.593959, 47.398465], [8.594714, 47.398225], [8.594967, 47.398155], [8.594782, 47.397846], [8.594637, 47.397581], [8.594704, 47.397459], [8.594578, 47.397224]]], "type": "MultiLineString"}, "id": "3029", "properties": {}, "type": "Feature"}, {"bbox": [8.513853, 47.380167, 8.515375, 47.381602], "geometry": {"coordinates": [[[8.515375, 47.381602], [8.514702, 47.381515], [8.514697, 47.381514], [8.514692, 47.381513], [8.514687, 47.381512], [8.514683, 47.38151], [8.514679, 47.381508], [8.514675, 47.381506], [8.514671, 47.381504], [8.514668, 47.381501], [8.514665, 47.381499], [8.514662, 47.381496], [8.51466, 47.381493], [8.514658, 47.38149], [8.514657, 47.381486], [8.514656, 47.381483], [8.514655, 47.38148], [8.514655, 47.381476], [8.514655, 47.381473], [8.514656, 47.38147], [8.514664, 47.381428], [8.514665, 47.381422], [8.514666, 47.381416], [8.514665, 47.38141], [8.514664, 47.381404], [8.514662, 47.381398], [8.51466, 47.381392], [8.514656, 47.381386], [8.514652, 47.381381], [8.514647, 47.381376], [8.514642, 47.381371], [8.514636, 47.381366], [8.51463, 47.381362], [8.514622, 47.381358], [8.514615, 47.381355], [8.514607, 47.381352], [8.514599, 47.38135], [8.51459, 47.381348], [8.514015, 47.38127], [8.514008, 47.381269], [8.514001, 47.381268], [8.513994, 47.381266], [8.513988, 47.381263], [8.513982, 47.381261], [8.513976, 47.381258], [8.513971, 47.381254], [8.513968, 47.381251], [8.513965, 47.381248], [8.513963, 47.381245], [8.513962, 47.381241], [8.513961, 47.381238], [8.51396, 47.381234], [8.51396, 47.38123], [8.51396, 47.381227], [8.51396, 47.381223], [8.514109, 47.380656], [8.514112, 47.380628], [8.51411, 47.3806], [8.514106, 47.380572], [8.514097, 47.380544], [8.514085, 47.380517], [8.513904, 47.380244], [8.513853, 47.380167]]], "type": "MultiLineString"}, "id": "3030", "properties": {}, "type": "Feature"}, {"bbox": [8.566125, 47.408675, 8.567643, 47.40999], "geometry": {"coordinates": [[[8.567643, 47.40999], [8.567522, 47.409903], [8.566463, 47.408963], [8.566125, 47.408675]]], "type": "MultiLineString"}, "id": "3032", "properties": {}, "type": "Feature"}, {"bbox": [8.512581, 47.372557, 8.517529, 47.375871], "geometry": {"coordinates": [[[8.517529, 47.372557], [8.516928, 47.373003], [8.516676, 47.373169], [8.515768, 47.37377], [8.515152, 47.374176], [8.514951, 47.374307], [8.514634, 47.374517], [8.514547, 47.374576], [8.513936, 47.374979], [8.513488, 47.375274], [8.512681, 47.375805], [8.512581, 47.375871]]], "type": "MultiLineString"}, "id": "3033", "properties": {}, "type": "Feature"}, {"bbox": [8.508539, 47.383798, 8.509401, 47.384772], "geometry": {"coordinates": [[[8.509401, 47.384772], [8.509322, 47.384678], [8.509148, 47.384501], [8.508878, 47.384195], [8.508539, 47.383798]]], "type": "MultiLineString"}, "id": "3050", "properties": {}, "type": "Feature"}, {"bbox": [8.581377, 47.35571, 8.583533, 47.357651], "geometry": {"coordinates": [[[8.581377, 47.357643], [8.581532, 47.357651], [8.581691, 47.357651], [8.582082, 47.357634], [8.582084, 47.357634], [8.58216, 47.357625], [8.582235, 47.357612], [8.582308, 47.357594], [8.582378, 47.357572], [8.582445, 47.357545], [8.582508, 47.357514], [8.582567, 47.35748], [8.582621, 47.357442], [8.58267, 47.357401], [8.582713, 47.357358], [8.58275, 47.357311], [8.582781, 47.357263], [8.582805, 47.357213], [8.583076, 47.356545], [8.583156, 47.356342], [8.583259, 47.356144], [8.583386, 47.355952], [8.583463, 47.355837], [8.583533, 47.35571]]], "type": "MultiLineString"}, "id": "3054", "properties": {}, "type": "Feature"}, {"bbox": [8.500943, 47.416546, 8.506106, 47.418237], "geometry": {"coordinates": [[[8.506106, 47.418233], [8.506079, 47.418236], [8.506051, 47.418237], [8.506023, 47.418237], [8.505996, 47.418234], [8.505968, 47.418231], [8.505942, 47.418225], [8.505916, 47.418218], [8.505891, 47.41821], [8.505867, 47.4182], [8.505445, 47.417995], [8.505219, 47.417906], [8.504984, 47.417831], [8.50474, 47.417768], [8.504684, 47.417761], [8.504626, 47.417758], [8.504569, 47.417757], [8.504512, 47.41776], [8.504455, 47.417766], [8.504399, 47.417775], [8.504345, 47.417787], [8.504292, 47.417803], [8.504241, 47.417821], [8.50404, 47.417857], [8.503912, 47.417885], [8.503781, 47.417906], [8.503648, 47.417919], [8.503514, 47.417923], [8.503379, 47.417919], [8.503246, 47.417907], [8.503115, 47.417887], [8.502987, 47.417859], [8.502863, 47.417823], [8.502745, 47.41778], [8.502432, 47.417662], [8.501799, 47.417431], [8.50169, 47.417387], [8.501588, 47.417338], [8.501493, 47.417282], [8.501406, 47.417221], [8.501315, 47.417139], [8.501231, 47.417053], [8.50114, 47.416925], [8.500944, 47.416548], [8.500943, 47.416546]]], "type": "MultiLineString"}, "id": "3063", "properties": {}, "type": "Feature"}, {"bbox": [8.546274, 47.380378, 8.547321, 47.381884], "geometry": {"coordinates": [[[8.547321, 47.380378], [8.547111, 47.380399], [8.5471, 47.380403], [8.547089, 47.380407], [8.547079, 47.380412], [8.547069, 47.380418], [8.547061, 47.380424], [8.547053, 47.380431], [8.547046, 47.380438], [8.54704, 47.380445], [8.547034, 47.380453], [8.54703, 47.380461], [8.547029, 47.380463], [8.546274, 47.381884]]], "type": "MultiLineString"}, "id": "3065", "properties": {}, "type": "Feature"}, {"bbox": [8.566478, 47.367202, 8.568909, 47.3733], "geometry": {"coordinates": [[[8.566478, 47.3733], [8.567046, 47.372889], [8.567502, 47.372548], [8.567607, 47.372472], [8.567687, 47.372414], [8.567786, 47.372349], [8.567894, 47.37229], [8.568008, 47.372237], [8.568129, 47.372191], [8.568495, 47.372059], [8.568553, 47.372035], [8.568608, 47.372008], [8.568659, 47.371977], [8.568707, 47.371944], [8.56875, 47.371908], [8.568788, 47.37187], [8.568822, 47.37183], [8.56885, 47.371788], [8.568873, 47.371744], [8.568891, 47.3717], [8.568902, 47.371654], [8.568909, 47.371608], [8.568909, 47.371562], [8.568903, 47.371516], [8.568892, 47.37147], [8.568875, 47.371426], [8.568853, 47.371382], [8.568825, 47.37134], [8.568642, 47.371099], [8.56836, 47.370711], [8.568218, 47.370495], [8.568099, 47.370273], [8.568005, 47.370045], [8.567947, 47.36987], [8.5679, 47.369693], [8.567864, 47.369514], [8.567847, 47.369309], [8.567852, 47.369103], [8.567878, 47.368897], [8.567947, 47.368594], [8.568003, 47.368448], [8.568189, 47.368017], [8.568372, 47.367731], [8.568596, 47.367458], [8.56886, 47.367202]]], "type": "MultiLineString"}, "id": "3071", "properties": {}, "type": "Feature"}, {"bbox": [8.563452, 47.37621, 8.565657, 47.377813], "geometry": {"coordinates": [[[8.563452, 47.37621], [8.563771, 47.376276], [8.564226, 47.37641], [8.565363, 47.376741], [8.565391, 47.37675], [8.565418, 47.37676], [8.565443, 47.376771], [8.565466, 47.376784], [8.565488, 47.376798], [8.565508, 47.376814], [8.565525, 47.376831], [8.56554, 47.376849], [8.565553, 47.376867], [8.565564, 47.376886], [8.565572, 47.376906], [8.565577, 47.376926], [8.565657, 47.377408], [8.565656, 47.377433], [8.565653, 47.377458], [8.565646, 47.377482], [8.565636, 47.377506], [8.565623, 47.377529], [8.565607, 47.377552], [8.565589, 47.377573], [8.565567, 47.377594], [8.565543, 47.377612], [8.565517, 47.37763], [8.565489, 47.377646], [8.565458, 47.37766], [8.565071, 47.377813]]], "type": "MultiLineString"}, "id": "3072", "properties": {}, "type": "Feature"}, {"bbox": [8.596011, 47.357008, 8.596245, 47.357723], "geometry": {"coordinates": [[[8.596128, 47.357008], [8.596149, 47.357052], [8.596245, 47.357163], [8.596049, 47.357271], [8.596039, 47.35751], [8.596042, 47.357698], [8.596011, 47.357723]]], "type": "MultiLineString"}, "id": "3074", "properties": {}, "type": "Feature"}, {"bbox": [8.525439, 47.339175, 8.525802, 47.340915], "geometry": {"coordinates": [[[8.525439, 47.340915], [8.525511, 47.34072], [8.525636, 47.34043], [8.525703, 47.340249], [8.525747, 47.340065], [8.525766, 47.339879], [8.525802, 47.339175]]], "type": "MultiLineString"}, "id": "3077", "properties": {}, "type": "Feature"}, {"bbox": [8.514081, 47.366366, 8.516094, 47.367855], "geometry": {"coordinates": [[[8.516094, 47.367855], [8.515845, 47.367752], [8.515562, 47.367575], [8.515503, 47.367533], [8.515127, 47.367258], [8.514647, 47.366923], [8.514633, 47.366912], [8.51462, 47.366902], [8.514606, 47.366891], [8.514561, 47.366853], [8.514519, 47.366813], [8.514478, 47.366773], [8.514235, 47.366517], [8.514104, 47.366394], [8.514081, 47.366366]]], "type": "MultiLineString"}, "id": "3078", "properties": {}, "type": "Feature"}, {"bbox": [8.501528, 47.396246, 8.505013, 47.399388], "geometry": {"coordinates": [[[8.505013, 47.396246], [8.504778, 47.396461], [8.503979, 47.397057], [8.503793, 47.397266], [8.503387, 47.397771], [8.503063, 47.398268], [8.503003, 47.398358], [8.502981, 47.398378], [8.502956, 47.398398], [8.502929, 47.398416], [8.5029, 47.398432], [8.502869, 47.398447], [8.502836, 47.398459], [8.502801, 47.39847], [8.50242, 47.398599], [8.502388, 47.398611], [8.502358, 47.398624], [8.50233, 47.39864], [8.502305, 47.398657], [8.502282, 47.398676], [8.502116, 47.398807], [8.501845, 47.399069], [8.501701, 47.399217], [8.501528, 47.399388]]], "type": "MultiLineString"}, "id": "3090", "properties": {}, "type": "Feature"}, {"bbox": [8.538651, 47.40349, 8.547735, 47.407874], "geometry": {"coordinates": [[[8.547735, 47.40349], [8.54708, 47.403677], [8.545845, 47.404014], [8.545149, 47.404212], [8.544026, 47.404506], [8.542749, 47.404853], [8.542571, 47.404895], [8.542162, 47.404991], [8.541733, 47.405102], [8.541563, 47.405149], [8.541398, 47.405202], [8.541238, 47.405263], [8.541052, 47.40535], [8.540872, 47.405444], [8.540698, 47.405542], [8.540573, 47.405624], [8.540505, 47.405672], [8.540116, 47.405961], [8.539968, 47.40608], [8.539794, 47.406237], [8.539679, 47.406357], [8.539573, 47.406481], [8.539478, 47.406609], [8.539301, 47.406885], [8.539127, 47.40716], [8.538956, 47.407437], [8.538651, 47.407874]]], "type": "MultiLineString"}, "id": "3094", "properties": {}, "type": "Feature"}, {"bbox": [8.556374, 47.370009, 8.556653, 47.370261], "geometry": {"coordinates": [[[8.556374, 47.370261], [8.55641, 47.370249], [8.556445, 47.370234], [8.556477, 47.370218], [8.556508, 47.3702], [8.556536, 47.370181], [8.556562, 47.370159], [8.556585, 47.370137], [8.556605, 47.370113], [8.556622, 47.370088], [8.556635, 47.370062], [8.556646, 47.370036], [8.556653, 47.370009]]], "type": "MultiLineString"}, "id": "3097", "properties": {}, "type": "Feature"}, {"bbox": [8.50486, 47.423914, 8.506484, 47.424216], "geometry": {"coordinates": [[[8.506484, 47.424172], [8.506401, 47.424188], [8.50633, 47.424201], [8.506257, 47.424211], [8.506183, 47.424216], [8.506109, 47.424216], [8.506035, 47.424212], [8.505726, 47.424184], [8.505154, 47.424118], [8.50512, 47.424111], [8.505087, 47.424102], [8.505055, 47.42409], [8.505028, 47.424078], [8.505002, 47.424064], [8.504978, 47.424048], [8.504957, 47.424031], [8.50486, 47.423914]]], "type": "MultiLineString"}, "id": "3099", "properties": {}, "type": "Feature"}, {"bbox": [8.533863, 47.363409, 8.534381, 47.364385], "geometry": {"coordinates": [[[8.534381, 47.363409], [8.533863, 47.364385]]], "type": "MultiLineString"}, "id": "3105", "properties": {}, "type": "Feature"}, {"bbox": [8.563551, 47.407999, 8.565443, 47.410261], "geometry": {"coordinates": [[[8.565443, 47.407999], [8.565252, 47.408222], [8.565001, 47.408513], [8.5649, 47.408631], [8.564783, 47.408767], [8.564038, 47.409642], [8.563865, 47.40985], [8.563668, 47.410087], [8.563627, 47.410144], [8.563588, 47.410203], [8.563551, 47.410261]]], "type": "MultiLineString"}, "id": "3106", "properties": {}, "type": "Feature"}, {"bbox": [8.484237, 47.375386, 8.484549, 47.375863], "geometry": {"coordinates": [[[8.484237, 47.375863], [8.484254, 47.375833], [8.484357, 47.375667], [8.484408, 47.375584], [8.484483, 47.375481], [8.484549, 47.375386]]], "type": "MultiLineString"}, "id": "3107", "properties": {}, "type": "Feature"}, {"bbox": [8.519861, 47.410758, 8.522129, 47.411831], "geometry": {"coordinates": [[[8.522129, 47.411141], [8.521809, 47.411206], [8.521793, 47.411212], [8.521378, 47.411414], [8.521187, 47.411506], [8.520954, 47.411619], [8.520733, 47.411703], [8.520704, 47.411712], [8.52046, 47.411774], [8.520327, 47.411803], [8.520198, 47.411827], [8.520173, 47.41183], [8.520148, 47.411831], [8.520123, 47.41183], [8.520098, 47.411828], [8.520073, 47.411824], [8.520049, 47.411819], [8.520026, 47.411813], [8.520004, 47.411805], [8.519982, 47.411796], [8.519962, 47.411785], [8.519944, 47.411774], [8.519927, 47.411761], [8.519912, 47.411748], [8.519898, 47.411733], [8.519887, 47.411718], [8.519878, 47.411702], [8.51987, 47.411686], [8.519865, 47.411669], [8.519862, 47.411653], [8.519861, 47.411635], [8.519863, 47.411618], [8.519867, 47.411602], [8.519872, 47.411585], [8.51988, 47.411569], [8.519891, 47.411553], [8.519903, 47.411538], [8.519917, 47.411524], [8.519932, 47.411511], [8.51995, 47.411499], [8.519969, 47.411488], [8.520338, 47.411317], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "3110", "properties": {}, "type": "Feature"}, {"bbox": [8.544084, 47.407484, 8.5449, 47.408007], "geometry": {"coordinates": [[[8.544084, 47.407484], [8.544226, 47.407687], [8.54424, 47.4077], [8.544255, 47.407713], [8.544272, 47.407724], [8.54429, 47.407735], [8.544309, 47.407744], [8.54433, 47.407752], [8.544351, 47.407759], [8.544374, 47.407765], [8.544396, 47.407769], [8.54442, 47.407773], [8.544715, 47.407835], [8.5449, 47.408007]]], "type": "MultiLineString"}, "id": "3111", "properties": {}, "type": "Feature"}, {"bbox": [8.523584, 47.375009, 8.524787, 47.37675], "geometry": {"coordinates": [[[8.523584, 47.375009], [8.523922, 47.375525], [8.524029, 47.375688], [8.524393, 47.376198], [8.524787, 47.37675]]], "type": "MultiLineString"}, "id": "3114", "properties": {}, "type": "Feature"}, {"bbox": [8.513591, 47.374197, 8.516531, 47.376593], "geometry": {"coordinates": [[[8.516531, 47.374197], [8.515524, 47.375017], [8.514891, 47.375543], [8.514506, 47.375863], [8.513591, 47.376593]]], "type": "MultiLineString"}, "id": "3121", "properties": {}, "type": "Feature"}, {"bbox": [8.516735, 47.377039, 8.519767, 47.380407], "geometry": {"coordinates": [[[8.519767, 47.380407], [8.519538, 47.380194], [8.519311, 47.37998], [8.519087, 47.379764], [8.519043, 47.379722], [8.519, 47.379679], [8.518957, 47.379637], [8.518761, 47.379443], [8.518568, 47.379247], [8.518377, 47.379051], [8.518253, 47.378946], [8.518009, 47.378685], [8.517781, 47.378417], [8.517569, 47.378143], [8.516781, 47.377125], [8.516735, 47.377039]]], "type": "MultiLineString"}, "id": "3122", "properties": {}, "type": "Feature"}, {"bbox": [8.55231, 47.382622, 8.554045, 47.383644], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552391, 47.382692], [8.552592, 47.38283], [8.552951, 47.383074], [8.552986, 47.383096], [8.553024, 47.383115], [8.553064, 47.383132], [8.553107, 47.383147], [8.553151, 47.383159], [8.553196, 47.383168], [8.553242, 47.383175], [8.553306, 47.383196], [8.553366, 47.383221], [8.553424, 47.383249], [8.553478, 47.38328], [8.553528, 47.383313], [8.553573, 47.38335], [8.554045, 47.383644]]], "type": "MultiLineString"}, "id": "3124", "properties": {}, "type": "Feature"}, {"bbox": [8.480984, 47.376157, 8.48324, 47.37863], "geometry": {"coordinates": [[[8.48324, 47.376157], [8.483095, 47.376368], [8.482869, 47.376647], [8.482392, 47.377082], [8.482061, 47.377323], [8.481857, 47.377493], [8.481482, 47.377883], [8.481322, 47.378072], [8.480984, 47.37863]]], "type": "MultiLineString"}, "id": "3125", "properties": {}, "type": "Feature"}, {"bbox": [8.555284, 47.40523, 8.556596, 47.408161], "geometry": {"coordinates": [[[8.555284, 47.40523], [8.555308, 47.405303], [8.555707, 47.405823], [8.555733, 47.405864], [8.555809, 47.40599], [8.555978, 47.406287], [8.556057, 47.406427], [8.556207, 47.406692], [8.556329, 47.406907], [8.556376, 47.406992], [8.556425, 47.407076], [8.556497, 47.407208], [8.556537, 47.407289], [8.556563, 47.407354], [8.556581, 47.407419], [8.556592, 47.407486], [8.556596, 47.407552], [8.556579, 47.40806], [8.556578, 47.408161]]], "type": "MultiLineString"}, "id": "3133", "properties": {}, "type": "Feature"}, {"bbox": [8.494523, 47.422812, 8.494724, 47.423586], "geometry": {"coordinates": [[[8.494605, 47.422812], [8.494532, 47.423261], [8.494526, 47.423289], [8.494523, 47.423318], [8.494523, 47.423346], [8.494528, 47.423375], [8.494537, 47.423403], [8.494549, 47.42343], [8.494564, 47.423456], [8.494583, 47.423482], [8.494606, 47.423506], [8.494631, 47.423528], [8.49466, 47.423549], [8.494691, 47.423569], [8.494724, 47.423586]]], "type": "MultiLineString"}, "id": "3137", "properties": {}, "type": "Feature"}, {"bbox": [8.537108, 47.387225, 8.539375, 47.387998], "geometry": {"coordinates": [[[8.537108, 47.387225], [8.537605, 47.387398], [8.537703, 47.387432], [8.537932, 47.387512], [8.538034, 47.387546], [8.538497, 47.387705], [8.539212, 47.38795], [8.539375, 47.387998]]], "type": "MultiLineString"}, "id": "3138", "properties": {}, "type": "Feature"}, {"bbox": [8.569386, 47.405708, 8.569507, 47.405751], "geometry": {"coordinates": [[[8.569507, 47.405708], [8.569386, 47.405751]]], "type": "MultiLineString"}, "id": "3140", "properties": {}, "type": "Feature"}, {"bbox": [8.540988, 47.41177, 8.542205, 47.412231], "geometry": {"coordinates": [[[8.542205, 47.412231], [8.54144, 47.411941], [8.540988, 47.41177]]], "type": "MultiLineString"}, "id": "3155", "properties": {}, "type": "Feature"}, {"bbox": [8.537279, 47.389063, 8.53821, 47.390084], "geometry": {"coordinates": [[[8.53821, 47.389063], [8.538021, 47.389246], [8.537527, 47.389664], [8.537362, 47.389804], [8.537345, 47.38982], [8.537331, 47.389836], [8.537318, 47.389853], [8.537309, 47.389871], [8.537301, 47.389889], [8.537297, 47.389908], [8.537294, 47.389927], [8.537279, 47.390084]]], "type": "MultiLineString"}, "id": "3158", "properties": {}, "type": "Feature"}, {"bbox": [8.550243, 47.369022, 8.552288, 47.369868], "geometry": {"coordinates": [[[8.550243, 47.369022], [8.551844, 47.369694], [8.552, 47.369757], [8.552288, 47.369868]]], "type": "MultiLineString"}, "id": "3159", "properties": {}, "type": "Feature"}, {"bbox": [8.557958, 47.368868, 8.55913, 47.369399], "geometry": {"coordinates": [[[8.557958, 47.368868], [8.558541, 47.369134], [8.55913, 47.369399]]], "type": "MultiLineString"}, "id": "3160", "properties": {}, "type": "Feature"}, {"bbox": [8.527246, 47.371372, 8.52772, 47.371447], "geometry": {"coordinates": [[[8.52772, 47.371372], [8.527666, 47.371377], [8.527613, 47.371383], [8.52756, 47.37139], [8.527425, 47.37141], [8.527292, 47.371436], [8.527246, 47.371447]]], "type": "MultiLineString"}, "id": "3162", "properties": {}, "type": "Feature"}, {"bbox": [8.577974, 47.355647, 8.580016, 47.357811], "geometry": {"coordinates": [[[8.577974, 47.357811], [8.577983, 47.35768], [8.578006, 47.357616], [8.578029, 47.357561], [8.578076, 47.357471], [8.578119, 47.357403], [8.578141, 47.357369], [8.578173, 47.357327], [8.578233, 47.357253], [8.57831, 47.357167], [8.578365, 47.357111], [8.578411, 47.357068], [8.578521, 47.356969], [8.578631, 47.356881], [8.578661, 47.356858], [8.578796, 47.356757], [8.578909, 47.356684], [8.579016, 47.356607], [8.579116, 47.356525], [8.580016, 47.355647]]], "type": "MultiLineString"}, "id": "3166", "properties": {}, "type": "Feature"}, {"bbox": [8.547575, 47.386066, 8.548272, 47.386786], "geometry": {"coordinates": [[[8.548272, 47.386066], [8.548244, 47.386097], [8.548214, 47.386128], [8.548182, 47.386158], [8.54815, 47.38619], [8.547684, 47.386651], [8.547644, 47.386695], [8.547608, 47.38674], [8.547575, 47.386786]]], "type": "MultiLineString"}, "id": "3167", "properties": {}, "type": "Feature"}, {"bbox": [8.554901, 47.372023, 8.557535, 47.373398], "geometry": {"coordinates": [[[8.554901, 47.372023], [8.555928, 47.372556], [8.55603, 47.372608], [8.556924, 47.37307], [8.557535, 47.373398]]], "type": "MultiLineString"}, "id": "3168", "properties": {}, "type": "Feature"}, {"bbox": [8.493228, 47.407198, 8.494963, 47.407728], "geometry": {"coordinates": [[[8.494963, 47.407198], [8.494917, 47.407201], [8.494871, 47.407206], [8.494826, 47.407214], [8.494782, 47.407225], [8.494739, 47.407238], [8.494699, 47.407253], [8.494543, 47.407306], [8.494381, 47.407348], [8.494213, 47.407379], [8.494042, 47.407399], [8.493926, 47.40742], [8.493813, 47.407448], [8.493704, 47.407483], [8.4936, 47.407523], [8.493501, 47.40757], [8.493409, 47.407622], [8.493228, 47.407728]]], "type": "MultiLineString"}, "id": "3169", "properties": {}, "type": "Feature"}, {"bbox": [8.565755, 47.365082, 8.571188, 47.372135], "geometry": {"coordinates": [[[8.567195, 47.365082], [8.567102, 47.365224], [8.56654, 47.366108], [8.5665, 47.366171], [8.56646, 47.366234], [8.56604, 47.366894], [8.566003, 47.366951], [8.565971, 47.367009], [8.565946, 47.367069], [8.565929, 47.367123], [8.565917, 47.367178], [8.56591, 47.367233], [8.565898, 47.367368], [8.565809, 47.368257], [8.565806, 47.368282], [8.565758, 47.368764], [8.565755, 47.368839], [8.565762, 47.368915], [8.565778, 47.36899], [8.565803, 47.369064], [8.565838, 47.369136], [8.566252, 47.369848], [8.566341, 47.37], [8.566405, 47.370108], [8.566559, 47.37037], [8.567054, 47.371213], [8.567076, 47.371242], [8.567102, 47.371269], [8.567131, 47.371295], [8.567163, 47.371318], [8.567198, 47.37134], [8.567236, 47.371359], [8.567276, 47.371376], [8.567319, 47.371391], [8.567363, 47.371403], [8.567408, 47.371412], [8.567455, 47.371419], [8.567502, 47.371423], [8.567549, 47.371424], [8.567596, 47.371422], [8.567643, 47.371417], [8.567689, 47.37141], [8.567734, 47.371399], [8.567778, 47.371387], [8.568642, 47.371099], [8.568741, 47.371066], [8.569087, 47.370951], [8.569245, 47.370902], [8.569409, 47.370863], [8.569577, 47.370833], [8.569748, 47.370814], [8.569921, 47.370806], [8.57012, 47.370809], [8.570317, 47.370825], [8.570511, 47.370854], [8.57098, 47.370942], [8.571006, 47.37095], [8.571031, 47.370959], [8.571054, 47.370969], [8.571077, 47.370981], [8.571097, 47.370994], [8.571115, 47.371008], [8.571132, 47.371023], [8.571147, 47.371039], [8.571159, 47.371056], [8.57117, 47.371073], [8.571178, 47.371091], [8.571184, 47.37111], [8.571187, 47.371128], [8.571188, 47.371147], [8.571187, 47.371166], [8.571183, 47.371185], [8.571176, 47.371203], [8.571168, 47.371221], [8.571157, 47.371239], [8.571144, 47.371255], [8.571129, 47.371271], [8.571112, 47.371286], [8.571093, 47.3713], [8.571031, 47.371333], [8.570507, 47.371597], [8.570415, 47.371649], [8.570331, 47.371707], [8.570254, 47.371769], [8.570186, 47.371836], [8.570128, 47.371906], [8.570079, 47.371981], [8.570036, 47.372057], [8.57, 47.372135]]], "type": "MultiLineString"}, "id": "3175", "properties": {}, "type": "Feature"}, {"bbox": [8.529981, 47.334768, 8.533204, 47.336616], "geometry": {"coordinates": [[[8.533204, 47.336616], [8.533055, 47.336468], [8.53271, 47.336188], [8.532433, 47.335948], [8.532184, 47.33574], [8.531921, 47.335541], [8.531645, 47.335349], [8.531627, 47.335337], [8.531609, 47.335325], [8.531591, 47.335313], [8.531201, 47.335082], [8.53105, 47.334993], [8.530956, 47.334942], [8.530857, 47.334896], [8.530751, 47.334858], [8.530641, 47.334826], [8.530527, 47.3348], [8.53041, 47.334782], [8.530292, 47.334772], [8.530172, 47.334768], [8.530065, 47.334801], [8.529981, 47.334827]]], "type": "MultiLineString"}, "id": "3176", "properties": {}, "type": "Feature"}, {"bbox": [8.548194, 47.377376, 8.548385, 47.377806], "geometry": {"coordinates": [[[8.548385, 47.377376], [8.548194, 47.377806]]], "type": "MultiLineString"}, "id": "3177", "properties": {}, "type": "Feature"}, {"bbox": [8.556262, 47.374571, 8.557356, 47.375725], "geometry": {"coordinates": [[[8.557356, 47.374571], [8.557259, 47.3747], [8.557181, 47.374817], [8.556726, 47.375261], [8.556262, 47.375725]]], "type": "MultiLineString"}, "id": "3182", "properties": {}, "type": "Feature"}, {"bbox": [8.580054, 47.406276, 8.582905, 47.407941], "geometry": {"coordinates": [[[8.580054, 47.407941], [8.580639, 47.407784], [8.58078, 47.407741], [8.580901, 47.4077], [8.581006, 47.407662], [8.581045, 47.407646], [8.581222, 47.407571], [8.582182, 47.407139], [8.582279, 47.407094], [8.58237, 47.407043], [8.582453, 47.406987], [8.582528, 47.406925], [8.582595, 47.406859], [8.582652, 47.40679], [8.582797, 47.40654], [8.582905, 47.406276]]], "type": "MultiLineString"}, "id": "3186", "properties": {}, "type": "Feature"}, {"bbox": [8.48613, 47.382781, 8.487277, 47.384351], "geometry": {"coordinates": [[[8.487277, 47.384351], [8.487153, 47.383993], [8.48709, 47.383852], [8.487011, 47.383714], [8.486916, 47.383582], [8.486806, 47.383454], [8.48613, 47.382781]]], "type": "MultiLineString"}, "id": "3187", "properties": {}, "type": "Feature"}, {"bbox": [8.536111, 47.402976, 8.542162, 47.404991], "geometry": {"coordinates": [[[8.536111, 47.402998], [8.536504, 47.402976], [8.537144, 47.403021], [8.537443, 47.403073], [8.537734, 47.403145], [8.538013, 47.403235], [8.538702, 47.403464], [8.539774, 47.403821], [8.540163, 47.403969], [8.540532, 47.404139], [8.540877, 47.404331], [8.540981, 47.404403], [8.541395, 47.40464], [8.541684, 47.404806], [8.541902, 47.404917], [8.542162, 47.404991]]], "type": "MultiLineString"}, "id": "3194", "properties": {}, "type": "Feature"}, {"bbox": [8.512729, 47.413656, 8.518519, 47.415271], "geometry": {"coordinates": [[[8.518519, 47.413656], [8.518331, 47.41371], [8.517902, 47.413812], [8.517123, 47.414015], [8.515616, 47.414393], [8.515102, 47.414519], [8.514808, 47.41461], [8.513933, 47.414881], [8.512864, 47.415221], [8.512823, 47.415236], [8.512729, 47.415271]]], "type": "MultiLineString"}, "id": "3195", "properties": {}, "type": "Feature"}, {"bbox": [8.481296, 47.405857, 8.483634, 47.406609], "geometry": {"coordinates": [[[8.481296, 47.406609], [8.482033, 47.406351], [8.482059, 47.406341], [8.482339, 47.406219], [8.482371, 47.406205], [8.482403, 47.406193], [8.482437, 47.406182], [8.482626, 47.406141], [8.48278, 47.406113], [8.483094, 47.406071], [8.483131, 47.406065], [8.483167, 47.406058], [8.483203, 47.40605], [8.483381, 47.405988], [8.483497, 47.405932], [8.483563, 47.405893], [8.483634, 47.405857]]], "type": "MultiLineString"}, "id": "3196", "properties": {}, "type": "Feature"}, {"bbox": [8.489523, 47.403244, 8.48976, 47.403773], "geometry": {"coordinates": [[[8.489523, 47.403244], [8.489554, 47.403318], [8.48973, 47.40374], [8.489735, 47.403748], [8.489742, 47.403756], [8.489749, 47.403764], [8.489757, 47.403771], [8.48976, 47.403773]]], "type": "MultiLineString"}, "id": "3197", "properties": {}, "type": "Feature"}, {"bbox": [8.495632, 47.402367, 8.496491, 47.403887], "geometry": {"coordinates": [[[8.495632, 47.402367], [8.495675, 47.402423], [8.496062, 47.402926], [8.496176, 47.40309], [8.496238, 47.403179], [8.496284, 47.403266], [8.496321, 47.403356], [8.496348, 47.403448], [8.496393, 47.403636], [8.496425, 47.403716], [8.496491, 47.403887]]], "type": "MultiLineString"}, "id": "3198", "properties": {}, "type": "Feature"}, {"bbox": [8.491801, 47.40542, 8.495483, 47.406715], "geometry": {"coordinates": [[[8.495483, 47.40542], [8.495411, 47.405453], [8.495017, 47.405604], [8.494984, 47.405616], [8.494621, 47.405735], [8.494453, 47.405785], [8.492836, 47.40627], [8.492779, 47.406287], [8.492584, 47.406348], [8.492395, 47.406417], [8.492214, 47.406496], [8.491801, 47.406715]]], "type": "MultiLineString"}, "id": "3199", "properties": {}, "type": "Feature"}, {"bbox": [8.503484, 47.404757, 8.504205, 47.405792], "geometry": {"coordinates": [[[8.504205, 47.404757], [8.50409, 47.404847], [8.503649, 47.40527], [8.503583, 47.405339], [8.503528, 47.405413], [8.503484, 47.40549], [8.503564, 47.405539], [8.503621, 47.405577], [8.503682, 47.405612], [8.503747, 47.405643], [8.503815, 47.405671], [8.504077, 47.405755], [8.504105, 47.405777], [8.504122, 47.405792]]], "type": "MultiLineString"}, "id": "3200", "properties": {}, "type": "Feature"}, {"bbox": [8.53821, 47.38851, 8.538692, 47.389063], "geometry": {"coordinates": [[[8.538692, 47.38851], [8.538668, 47.388546], [8.538642, 47.38858], [8.53827, 47.389023], [8.53821, 47.389063]]], "type": "MultiLineString"}, "id": "3205", "properties": {}, "type": "Feature"}, {"bbox": [8.512758, 47.322732, 8.518347, 47.332973], "geometry": {"coordinates": [[[8.518347, 47.332973], [8.517879, 47.332652], [8.517305, 47.332137], [8.517244, 47.332089], [8.517177, 47.332045], [8.517104, 47.332005], [8.517028, 47.331969], [8.516946, 47.331938], [8.516708, 47.331849], [8.516661, 47.331831], [8.516616, 47.331809], [8.516575, 47.331784], [8.516538, 47.331758], [8.516504, 47.331729], [8.516465, 47.331698], [8.516405, 47.331646], [8.516352, 47.331592], [8.516306, 47.331534], [8.516267, 47.331474], [8.516178, 47.33131], [8.516082, 47.33115], [8.515974, 47.330994], [8.515856, 47.330841], [8.515734, 47.330693], [8.515629, 47.330582], [8.515351, 47.330292], [8.51532, 47.33026], [8.515287, 47.330229], [8.515253, 47.330199], [8.515184, 47.330144], [8.515111, 47.330091], [8.515033, 47.330042], [8.514858, 47.329933], [8.514827, 47.329913], [8.514796, 47.329892], [8.514765, 47.329871], [8.514661, 47.329796], [8.514564, 47.329717], [8.514473, 47.329634], [8.514353, 47.329522], [8.514233, 47.329409], [8.513859, 47.329042], [8.513761, 47.328959], [8.513654, 47.328882], [8.513537, 47.328811], [8.513411, 47.328748], [8.513278, 47.328692], [8.513138, 47.328645], [8.512993, 47.328605], [8.512843, 47.328575], [8.5128, 47.328451], [8.512772, 47.328325], [8.512758, 47.328198], [8.51276, 47.32807], [8.512776, 47.327943], [8.512786, 47.327839], [8.512796, 47.32774], [8.512817, 47.327642], [8.51285, 47.327545], [8.512896, 47.32745], [8.512952, 47.327359], [8.51302, 47.327271], [8.513099, 47.327187], [8.513188, 47.327108], [8.513286, 47.327034], [8.513392, 47.326966], [8.513486, 47.326915], [8.513584, 47.326869], [8.513686, 47.326828], [8.51377, 47.326797], [8.514065, 47.32669], [8.514361, 47.326584], [8.514657, 47.326479], [8.514741, 47.32644], [8.51482, 47.326396], [8.514894, 47.326347], [8.514961, 47.326294], [8.51502, 47.326238], [8.515073, 47.326178], [8.515116, 47.326119], [8.515151, 47.326059], [8.515179, 47.325996], [8.515849, 47.324626], [8.515882, 47.324545], [8.515905, 47.324461], [8.515916, 47.324377], [8.515916, 47.324292], [8.515905, 47.324208], [8.515863, 47.324105], [8.51581, 47.324004], [8.515745, 47.323907], [8.515669, 47.323813], [8.515582, 47.323724], [8.51554, 47.323685], [8.515453, 47.32364], [8.515369, 47.323592], [8.515288, 47.323542], [8.514983, 47.323366], [8.514693, 47.323179], [8.514418, 47.322981], [8.514406, 47.322732]]], "type": "MultiLineString"}, "id": "3211", "properties": {}, "type": "Feature"}, {"bbox": [8.53722, 47.366555, 8.538548, 47.36853], "geometry": {"coordinates": [[[8.538202, 47.366555], [8.538548, 47.366682], [8.537899, 47.367513], [8.537302, 47.368312], [8.53722, 47.36853]]], "type": "MultiLineString"}, "id": "3212", "properties": {}, "type": "Feature"}, {"bbox": [8.557309, 47.405839, 8.565258, 47.407865], "geometry": {"coordinates": [[[8.557309, 47.405939], [8.557437, 47.405945], [8.557632, 47.405985], [8.557831, 47.406013], [8.558033, 47.40603], [8.558236, 47.406036], [8.55844, 47.406029], [8.558641, 47.406012], [8.560482, 47.405847], [8.560705, 47.405839], [8.560754, 47.405839], [8.561035, 47.405844], [8.561314, 47.405864], [8.56159, 47.4059], [8.56186, 47.405951], [8.562123, 47.406018], [8.562377, 47.406099], [8.56262, 47.406194], [8.562851, 47.406302], [8.563068, 47.406423], [8.563298, 47.406572], [8.56464, 47.407445], [8.56507, 47.407733], [8.565258, 47.407865]]], "type": "MultiLineString"}, "id": "3222", "properties": {}, "type": "Feature"}, {"bbox": [8.516992, 47.373249, 8.518982, 47.37462], "geometry": {"coordinates": [[[8.518982, 47.373249], [8.518217, 47.37387], [8.517753, 47.374247], [8.517291, 47.37462], [8.516992, 47.374449]]], "type": "MultiLineString"}, "id": "3223", "properties": {}, "type": "Feature"}, {"bbox": [8.487534, 47.384957, 8.48844, 47.385103], "geometry": {"coordinates": [[[8.48844, 47.384971], [8.488429, 47.384967], [8.488418, 47.384963], [8.488406, 47.384961], [8.488394, 47.384959], [8.488381, 47.384957], [8.488369, 47.384957], [8.488356, 47.384957], [8.488344, 47.384958], [8.488331, 47.384959], [8.487534, 47.385103]]], "type": "MultiLineString"}, "id": "3226", "properties": {}, "type": "Feature"}, {"bbox": [8.469388, 47.391287, 8.469634, 47.391759], "geometry": {"coordinates": [[[8.469398, 47.391287], [8.469392, 47.391312], [8.469389, 47.391337], [8.469388, 47.391362], [8.469391, 47.391387], [8.469397, 47.391412], [8.469406, 47.391436], [8.469418, 47.39146], [8.46948, 47.391563], [8.469552, 47.391663], [8.469634, 47.391759]]], "type": "MultiLineString"}, "id": "3230", "properties": {}, "type": "Feature"}, {"bbox": [8.506613, 47.354949, 8.507362, 47.355294], "geometry": {"coordinates": [[[8.507362, 47.355294], [8.506613, 47.354949]]], "type": "MultiLineString"}, "id": "3231", "properties": {}, "type": "Feature"}, {"bbox": [8.508798, 47.397716, 8.517076, 47.398849], "geometry": {"coordinates": [[[8.517076, 47.398324], [8.5169, 47.398281], [8.516719, 47.398245], [8.516536, 47.398218], [8.516472, 47.39821], [8.516408, 47.398201], [8.516345, 47.398192], [8.516048, 47.398143], [8.515753, 47.398088], [8.515461, 47.398028], [8.515133, 47.397954], [8.514801, 47.39789], [8.514466, 47.397834], [8.514332, 47.397816], [8.514196, 47.397802], [8.51406, 47.397791], [8.513132, 47.397727], [8.51298, 47.39772], [8.512828, 47.397716], [8.512675, 47.397716], [8.512502, 47.397719], [8.512328, 47.397726], [8.512155, 47.397737], [8.511559, 47.397794], [8.511381, 47.39782], [8.511206, 47.397854], [8.511035, 47.397897], [8.510989, 47.397909], [8.510472, 47.398055], [8.509752, 47.398258], [8.509611, 47.398303], [8.509475, 47.398354], [8.509346, 47.398414], [8.509225, 47.39848], [8.509112, 47.398552], [8.509008, 47.398631], [8.508842, 47.398777], [8.50883, 47.39879], [8.50882, 47.398804], [8.508811, 47.398819], [8.508804, 47.398834], [8.508798, 47.398849]]], "type": "MultiLineString"}, "id": "3235", "properties": {}, "type": "Feature"}, {"bbox": [8.552167, 47.356163, 8.552767, 47.356965], "geometry": {"coordinates": [[[8.552167, 47.356965], [8.552191, 47.3569], [8.552767, 47.356163]]], "type": "MultiLineString"}, "id": "3238", "properties": {}, "type": "Feature"}, {"bbox": [8.564565, 47.367069, 8.565946, 47.369412], "geometry": {"coordinates": [[[8.564565, 47.369412], [8.564691, 47.369226], [8.564854, 47.368754], [8.565082, 47.368136], [8.565212, 47.367884], [8.565245, 47.367831], [8.565653, 47.367235], [8.565672, 47.367211], [8.565693, 47.367189], [8.565718, 47.367168], [8.565744, 47.367148], [8.565774, 47.367131], [8.565805, 47.367114], [8.565838, 47.3671], [8.565873, 47.367087], [8.565909, 47.367077], [8.565946, 47.367069]]], "type": "MultiLineString"}, "id": "3241", "properties": {}, "type": "Feature"}, {"bbox": [8.558973, 47.34712, 8.566898, 47.358158], "geometry": {"coordinates": [[[8.558973, 47.358158], [8.559156, 47.357936], [8.559748, 47.357193], [8.559838, 47.357085], [8.559934, 47.356979], [8.560038, 47.356876], [8.560505, 47.356432], [8.560674, 47.356272], [8.561008, 47.35596], [8.561031, 47.355935], [8.561053, 47.35591], [8.561075, 47.355885], [8.561138, 47.355807], [8.561196, 47.355726], [8.561248, 47.355644], [8.561272, 47.355598], [8.561431, 47.355296], [8.56146, 47.355228], [8.56148, 47.355159], [8.561489, 47.355088], [8.56149, 47.355024], [8.561483, 47.354961], [8.561468, 47.354898], [8.561472, 47.354611], [8.561506, 47.354325], [8.561569, 47.354041], [8.561583, 47.353992], [8.561599, 47.353943], [8.561616, 47.353894], [8.561639, 47.353833], [8.561664, 47.353773], [8.56169, 47.353713], [8.561733, 47.353623], [8.56178, 47.353534], [8.561831, 47.353446], [8.561988, 47.353156], [8.562181, 47.352877], [8.562407, 47.35261], [8.562846, 47.352129], [8.562938, 47.352024], [8.563023, 47.351916], [8.563101, 47.351805], [8.563196, 47.351651], [8.563242, 47.351576], [8.564075, 47.350205], [8.564137, 47.350108], [8.564213, 47.350016], [8.564301, 47.349928], [8.564779, 47.349532], [8.564813, 47.349504], [8.564845, 47.349475], [8.564875, 47.349446], [8.564911, 47.349406], [8.564944, 47.349366], [8.564974, 47.349324], [8.565116, 47.349132], [8.565628, 47.348526], [8.566898, 47.34712]]], "type": "MultiLineString"}, "id": "3248", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.40856, 8.546589, 47.409585], "geometry": {"coordinates": [[[8.546589, 47.40856], [8.545651, 47.408948], [8.545447, 47.409032], [8.545218, 47.409127], [8.544356, 47.409483], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "3253", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.373072, 8.548136, 47.375364], "geometry": {"coordinates": [[[8.547431, 47.373079], [8.54745, 47.373076], [8.547469, 47.373074], [8.547489, 47.373072], [8.547509, 47.373073], [8.547529, 47.373074], [8.547549, 47.373076], [8.547568, 47.37308], [8.547587, 47.373084], [8.547678, 47.373122], [8.547765, 47.373166], [8.547846, 47.373214], [8.547921, 47.373266], [8.547989, 47.373322], [8.54805, 47.373382], [8.548072, 47.373406], [8.54809, 47.373431], [8.548106, 47.373458], [8.548118, 47.373484], [8.548127, 47.373512], [8.548133, 47.37354], [8.548136, 47.373568], [8.548134, 47.373596], [8.548119, 47.373685], [8.548094, 47.373773], [8.54806, 47.37386], [8.547973, 47.374072], [8.547927, 47.374177], [8.547864, 47.374306], [8.547845, 47.374343], [8.547568, 47.374866], [8.547358, 47.375256], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "3255", "properties": {}, "type": "Feature"}, {"bbox": [8.571058, 47.35427, 8.573631, 47.357191], "geometry": {"coordinates": [[[8.571058, 47.357191], [8.571235, 47.35703], [8.57196, 47.356295], [8.572051, 47.356198], [8.572658, 47.35543], [8.572819, 47.355213], [8.572958, 47.354989], [8.573076, 47.35476], [8.573105, 47.354705], [8.573141, 47.354652], [8.573184, 47.354601], [8.573232, 47.354553], [8.573287, 47.354508], [8.573631, 47.35427]]], "type": "MultiLineString"}, "id": "3257", "properties": {}, "type": "Feature"}, {"bbox": [8.557006, 47.363498, 8.558941, 47.366219], "geometry": {"coordinates": [[[8.557006, 47.366219], [8.558596, 47.364672], [8.558922, 47.363734], [8.558941, 47.363498]]], "type": "MultiLineString"}, "id": "3259", "properties": {}, "type": "Feature"}, {"bbox": [8.568327, 47.379294, 8.570475, 47.380678], "geometry": {"coordinates": [[[8.570475, 47.379294], [8.570228, 47.379345], [8.569989, 47.379409], [8.569758, 47.379487], [8.569538, 47.379578], [8.56933, 47.379681], [8.569136, 47.379796], [8.568956, 47.379922], [8.568794, 47.380057], [8.568648, 47.380202], [8.568522, 47.380354], [8.568414, 47.380513], [8.568327, 47.380678]]], "type": "MultiLineString"}, "id": "3260", "properties": {}, "type": "Feature"}, {"bbox": [8.531699, 47.399212, 8.532, 47.401156], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531887, 47.39925], [8.531882, 47.39929], [8.531882, 47.399329], [8.531886, 47.399368], [8.531965, 47.399802], [8.531994, 47.399995], [8.532, 47.400188], [8.531981, 47.40038], [8.531938, 47.400571], [8.531872, 47.400759], [8.531699, 47.401156]]], "type": "MultiLineString"}, "id": "3261", "properties": {}, "type": "Feature"}, {"bbox": [8.531896, 47.398824, 8.532126, 47.399212], "geometry": {"coordinates": [[[8.532126, 47.398824], [8.532105, 47.39885], [8.531945, 47.399107], [8.531925, 47.399141], [8.531909, 47.399176], [8.531896, 47.399212]]], "type": "MultiLineString"}, "id": "3262", "properties": {}, "type": "Feature"}, {"bbox": [8.495895, 47.402024, 8.49929, 47.402183], "geometry": {"coordinates": [[[8.49929, 47.402037], [8.499193, 47.40206], [8.499094, 47.402077], [8.498992, 47.402089], [8.49889, 47.402094], [8.498787, 47.402092], [8.498684, 47.402085], [8.497935, 47.402024], [8.497909, 47.402024], [8.497883, 47.402024], [8.497857, 47.402026], [8.497808, 47.402031], [8.497759, 47.402039], [8.497712, 47.40205], [8.497465, 47.402117], [8.497372, 47.40214], [8.49727, 47.402161], [8.497165, 47.402175], [8.497059, 47.402182], [8.496952, 47.402183], [8.496879, 47.402181], [8.496697, 47.402176], [8.495895, 47.402158]]], "type": "MultiLineString"}, "id": "3265", "properties": {}, "type": "Feature"}, {"bbox": [8.550622, 47.389116, 8.550926, 47.389681], "geometry": {"coordinates": [[[8.550926, 47.389681], [8.550837, 47.38965], [8.550713, 47.389605], [8.550668, 47.389548], [8.550635, 47.389479], [8.550622, 47.389395], [8.550627, 47.389116]]], "type": "MultiLineString"}, "id": "3279", "properties": {}, "type": "Feature"}, {"bbox": [8.519476, 47.393633, 8.52476, 47.395281], "geometry": {"coordinates": [[[8.52476, 47.393633], [8.524509, 47.393732], [8.524308, 47.393811], [8.52411, 47.393893], [8.523915, 47.39398], [8.523708, 47.39408], [8.523489, 47.394169], [8.52326, 47.394245], [8.523151, 47.394237], [8.523012, 47.394275], [8.522565, 47.394403], [8.52209, 47.394513], [8.52184, 47.394583], [8.521211, 47.394749], [8.521081, 47.39479], [8.520954, 47.394834], [8.52083, 47.394882], [8.520132, 47.395169], [8.520024, 47.395207], [8.519913, 47.395241], [8.5198, 47.395271], [8.519785, 47.395275], [8.51977, 47.395278], [8.519755, 47.39528], [8.519739, 47.395281], [8.519723, 47.395281], [8.519708, 47.39528], [8.519692, 47.395278], [8.519677, 47.395276], [8.519662, 47.395273], [8.519648, 47.395268], [8.519634, 47.395263], [8.519621, 47.395257], [8.519608, 47.395251], [8.519476, 47.395158]]], "type": "MultiLineString"}, "id": "3280", "properties": {}, "type": "Feature"}, {"bbox": [8.575745, 47.358301, 8.583851, 47.358764], "geometry": {"coordinates": [[[8.575745, 47.358407], [8.575899, 47.358497], [8.576071, 47.358663], [8.576113, 47.358705], [8.576178, 47.358764], [8.57639, 47.35876], [8.576488, 47.358688], [8.576654, 47.358538], [8.576782, 47.358469], [8.576815, 47.358455], [8.576915, 47.358428], [8.576936, 47.358424], [8.577575, 47.358335], [8.578074, 47.358458], [8.578353, 47.358496], [8.579313, 47.35852], [8.579351, 47.358521], [8.579649, 47.35846], [8.58014, 47.358361], [8.580254, 47.358339], [8.58037, 47.358324], [8.580487, 47.358315], [8.580722, 47.358314], [8.580865, 47.35831], [8.581062, 47.358304], [8.581391, 47.358301], [8.581654, 47.358313], [8.581938, 47.35836], [8.582097, 47.358371], [8.582542, 47.358321], [8.582581, 47.358318], [8.582685, 47.358315], [8.582916, 47.35832], [8.58368, 47.358343], [8.583738, 47.35835], [8.583795, 47.358361], [8.583851, 47.358376]]], "type": "MultiLineString"}, "id": "3282", "properties": {}, "type": "Feature"}, {"bbox": [8.528575, 47.360635, 8.529283, 47.363963], "geometry": {"coordinates": [[[8.528575, 47.363963], [8.528741, 47.363856], [8.528892, 47.36374], [8.529025, 47.363614], [8.529139, 47.36348], [8.529187, 47.363403], [8.529226, 47.363324], [8.529255, 47.363243], [8.529274, 47.363161], [8.529283, 47.363077], [8.529281, 47.362994], [8.529264, 47.362613], [8.529267, 47.362261], [8.529221, 47.360815], [8.529246, 47.360635]]], "type": "MultiLineString"}, "id": "3283", "properties": {}, "type": "Feature"}, {"bbox": [8.531401, 47.362111, 8.533857, 47.362489], "geometry": {"coordinates": [[[8.533857, 47.362489], [8.533746, 47.362473], [8.533634, 47.362455], [8.533524, 47.362435], [8.532522, 47.362282], [8.531401, 47.362111]]], "type": "MultiLineString"}, "id": "3284", "properties": {}, "type": "Feature"}, {"bbox": [8.560053, 47.348365, 8.563637, 47.352008], "geometry": {"coordinates": [[[8.560053, 47.352008], [8.560096, 47.351991], [8.560199, 47.351941], [8.560296, 47.351885], [8.560385, 47.351824], [8.56039, 47.35182], [8.560395, 47.351816], [8.560401, 47.351811], [8.56049, 47.351742], [8.560616, 47.351638], [8.560736, 47.351531], [8.56085, 47.35142], [8.56095, 47.351317], [8.561348, 47.350881], [8.562229, 47.349912], [8.563285, 47.348752], [8.563637, 47.348365]]], "type": "MultiLineString"}, "id": "3285", "properties": {}, "type": "Feature"}, {"bbox": [8.543305, 47.412504, 8.544284, 47.412638], "geometry": {"coordinates": [[[8.543305, 47.412516], [8.543647, 47.412638], [8.543855, 47.412504], [8.543976, 47.41255], [8.544284, 47.412512]]], "type": "MultiLineString"}, "id": "3287", "properties": {}, "type": "Feature"}, {"bbox": [8.526986, 47.412085, 8.52883, 47.413468], "geometry": {"coordinates": [[[8.52883, 47.412085], [8.528598, 47.412274], [8.528133, 47.412674], [8.52751, 47.413183], [8.527464, 47.413228], [8.527312, 47.413317], [8.527203, 47.41337], [8.527046, 47.413441], [8.526986, 47.413468]]], "type": "MultiLineString"}, "id": "3288", "properties": {}, "type": "Feature"}, {"bbox": [8.530265, 47.413467, 8.531102, 47.416081], "geometry": {"coordinates": [[[8.530265, 47.413467], [8.530375, 47.413579], [8.530377, 47.413587], [8.530396, 47.413628], [8.530414, 47.413678], [8.530691, 47.414639], [8.530771, 47.414936], [8.530823, 47.415096], [8.531057, 47.415907], [8.531102, 47.416081]]], "type": "MultiLineString"}, "id": "3294", "properties": {}, "type": "Feature"}, {"bbox": [8.566799, 47.376473, 8.567675, 47.377376], "geometry": {"coordinates": [[[8.566799, 47.377376], [8.56693, 47.377335], [8.567021, 47.377279], [8.567124, 47.377186], [8.567288, 47.37691], [8.567496, 47.376648], [8.567675, 47.376473]]], "type": "MultiLineString"}, "id": "3295", "properties": {}, "type": "Feature"}, {"bbox": [8.558641, 47.406012, 8.558766, 47.408196], "geometry": {"coordinates": [[[8.558641, 47.406012], [8.558716, 47.406314], [8.558764, 47.406529], [8.558766, 47.406565], [8.558764, 47.406635], [8.558736, 47.40739], [8.558711, 47.40814], [8.558714, 47.408196]]], "type": "MultiLineString"}, "id": "3296", "properties": {}, "type": "Feature"}, {"bbox": [8.524644, 47.393195, 8.528393, 47.393515], "geometry": {"coordinates": [[[8.524644, 47.393412], [8.524659, 47.393412], [8.524673, 47.393412], [8.524688, 47.39341], [8.524702, 47.393408], [8.524716, 47.393405], [8.524729, 47.393401], [8.524742, 47.393397], [8.524754, 47.393391], [8.524766, 47.393385], [8.524776, 47.393379], [8.524786, 47.393371], [8.524795, 47.393363], [8.524802, 47.393355], [8.524809, 47.393346], [8.524814, 47.393337], [8.524818, 47.393328], [8.524821, 47.393318], [8.52498, 47.393283], [8.525147, 47.393291], [8.525959, 47.393442], [8.526255, 47.393499], [8.526371, 47.39351], [8.526489, 47.393515], [8.526607, 47.393512], [8.526724, 47.393501], [8.526839, 47.393484], [8.527873, 47.393296], [8.528393, 47.393195]]], "type": "MultiLineString"}, "id": "3298", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.359219, 8.569762, 47.360521], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.56147, 47.360468], [8.56241, 47.360319], [8.563904, 47.360079], [8.565457, 47.359843], [8.566819, 47.359625], [8.56765, 47.359493], [8.568533, 47.359352], [8.569327, 47.359225], [8.569342, 47.359222], [8.569357, 47.35922], [8.569372, 47.359219], [8.569387, 47.359219], [8.569402, 47.35922], [8.569417, 47.359221], [8.569432, 47.359223], [8.569447, 47.359227], [8.569461, 47.359231], [8.569474, 47.359235], [8.569487, 47.359241], [8.569499, 47.359247], [8.56951, 47.359254], [8.569622, 47.35933], [8.569762, 47.359347]]], "type": "MultiLineString"}, "id": "3299", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.378908, 8.525423, 47.379316], "geometry": {"coordinates": [[[8.524952, 47.378908], [8.525423, 47.379316]]], "type": "MultiLineString"}, "id": "3302", "properties": {}, "type": "Feature"}, {"bbox": [8.485172, 47.404599, 8.487157, 47.405221], "geometry": {"coordinates": [[[8.487157, 47.405221], [8.487133, 47.405189], [8.486751, 47.404684], [8.486738, 47.404671], [8.486723, 47.404658], [8.486706, 47.404647], [8.486688, 47.404636], [8.486668, 47.404626], [8.486648, 47.404618], [8.486626, 47.40461], [8.486604, 47.404604], [8.486573, 47.404601], [8.486541, 47.404599], [8.486509, 47.404599], [8.486477, 47.4046], [8.486446, 47.404604], [8.486415, 47.404609], [8.486384, 47.404616], [8.486355, 47.404624], [8.48554, 47.404909], [8.48534, 47.404951], [8.485172, 47.405005]]], "type": "MultiLineString"}, "id": "3305", "properties": {}, "type": "Feature"}, {"bbox": [8.484549, 47.375374, 8.488134, 47.375749], "geometry": {"coordinates": [[[8.488134, 47.375749], [8.487947, 47.375709], [8.487756, 47.37568], [8.487562, 47.375661], [8.487464, 47.37565], [8.487367, 47.375635], [8.48727, 47.375619], [8.487073, 47.37559], [8.4869, 47.375564], [8.486489, 47.375509], [8.485489, 47.375374], [8.484549, 47.375386]]], "type": "MultiLineString"}, "id": "3310", "properties": {}, "type": "Feature"}, {"bbox": [8.482626, 47.374269, 8.484549, 47.375386], "geometry": {"coordinates": [[[8.484549, 47.375386], [8.484549, 47.375386], [8.484433, 47.375332], [8.48432, 47.375274], [8.484211, 47.375213], [8.483351, 47.374692], [8.48309, 47.374536], [8.482787, 47.374355], [8.482765, 47.374344], [8.482626, 47.374269]]], "type": "MultiLineString"}, "id": "3311", "properties": {}, "type": "Feature"}, {"bbox": [8.561467, 47.368298, 8.56417, 47.370064], "geometry": {"coordinates": [[[8.561467, 47.368298], [8.561576, 47.36835], [8.562347, 47.368714], [8.562567, 47.368819], [8.562641, 47.368856], [8.562711, 47.368898], [8.562775, 47.368943], [8.562799, 47.368963], [8.562823, 47.368983], [8.562846, 47.369004], [8.563214, 47.369301], [8.56417, 47.370064]]], "type": "MultiLineString"}, "id": "3313", "properties": {}, "type": "Feature"}, {"bbox": [8.595896, 47.358292, 8.599132, 47.360152], "geometry": {"coordinates": [[[8.595896, 47.360152], [8.596022, 47.359942], [8.596046, 47.359903], [8.596088, 47.359822], [8.596218, 47.359562], [8.596324, 47.359365], [8.596353, 47.359317], [8.596439, 47.359187], [8.596548, 47.359031], [8.596895, 47.358533], [8.596918, 47.358504], [8.596944, 47.358477], [8.596975, 47.358451], [8.597008, 47.358428], [8.597044, 47.358406], [8.597101, 47.358379], [8.597161, 47.358355], [8.597223, 47.358335], [8.597288, 47.358318], [8.597355, 47.358306], [8.597423, 47.358297], [8.597492, 47.358292], [8.597562, 47.358292], [8.597631, 47.358295], [8.597699, 47.358303], [8.597766, 47.358314], [8.597832, 47.358329], [8.597895, 47.358348], [8.598493, 47.358576], [8.598907, 47.358735], [8.599068, 47.358793], [8.599107, 47.358799], [8.599132, 47.358803]]], "type": "MultiLineString"}, "id": "3315", "properties": {}, "type": "Feature"}, {"bbox": [8.535032, 47.41082, 8.538043, 47.41116], "geometry": {"coordinates": [[[8.538043, 47.410822], [8.53792, 47.410841], [8.537789, 47.410826], [8.537657, 47.41082], [8.537525, 47.410821], [8.537393, 47.410832], [8.537264, 47.41085], [8.537137, 47.410877], [8.536917, 47.41092], [8.536694, 47.410956], [8.536469, 47.410986], [8.53531, 47.411124], [8.535032, 47.41116]]], "type": "MultiLineString"}, "id": "3316", "properties": {}, "type": "Feature"}, {"bbox": [8.576429, 47.357004, 8.580022, 47.361372], "geometry": {"coordinates": [[[8.576637, 47.361372], [8.57655, 47.361259], [8.576508, 47.361197], [8.576474, 47.361133], [8.576449, 47.361066], [8.576433, 47.360999], [8.576429, 47.360918], [8.576435, 47.360838], [8.57645, 47.360759], [8.576474, 47.36068], [8.576508, 47.360603], [8.576668, 47.360235], [8.576702, 47.36019], [8.576901, 47.359735], [8.577027, 47.359441], [8.577263, 47.358994], [8.577283, 47.358951], [8.577296, 47.358906], [8.577304, 47.358861], [8.577307, 47.358816], [8.577303, 47.35877], [8.577307, 47.358745], [8.577314, 47.35872], [8.577324, 47.358696], [8.577337, 47.358672], [8.577352, 47.35865], [8.57737, 47.358628], [8.577546, 47.358456], [8.577558, 47.358433], [8.577566, 47.358409], [8.577572, 47.358385], [8.577575, 47.35836], [8.577575, 47.358335], [8.577566, 47.358302], [8.577561, 47.358268], [8.57756, 47.358235], [8.577564, 47.358201], [8.577573, 47.358168], [8.577586, 47.358135], [8.577603, 47.358103], [8.577624, 47.358073], [8.57765, 47.358043], [8.577679, 47.358016], [8.577712, 47.357991], [8.577974, 47.357811], [8.579875, 47.357018], [8.579904, 47.357012], [8.579933, 47.357008], [8.579963, 47.357005], [8.579993, 47.357004], [8.580022, 47.357005]]], "type": "MultiLineString"}, "id": "3322", "properties": {}, "type": "Feature"}, {"bbox": [8.584887, 47.358301, 8.592996, 47.360119], "geometry": {"coordinates": [[[8.585293, 47.358301], [8.585247, 47.35848], [8.585008, 47.358928], [8.584955, 47.359038], [8.584914, 47.35915], [8.584888, 47.359264], [8.584887, 47.359295], [8.584891, 47.359326], [8.584898, 47.359356], [8.58491, 47.359386], [8.584925, 47.359415], [8.584943, 47.359443], [8.584966, 47.35947], [8.584991, 47.359495], [8.58502, 47.359519], [8.585051, 47.359541], [8.585086, 47.359561], [8.585122, 47.359579], [8.585158, 47.359594], [8.585196, 47.359607], [8.585235, 47.359617], [8.585443, 47.35966], [8.585656, 47.359691], [8.585872, 47.359708], [8.586089, 47.359712], [8.586184, 47.359712], [8.58702, 47.359702], [8.587543, 47.359707], [8.588064, 47.359743], [8.588578, 47.359809], [8.589557, 47.359976], [8.58997, 47.360042], [8.590238, 47.360072], [8.590509, 47.36009], [8.590781, 47.360098], [8.591008, 47.360119], [8.591243, 47.360108], [8.591475, 47.360085], [8.591703, 47.360048], [8.591927, 47.359998], [8.592188, 47.359938], [8.592439, 47.35986], [8.592677, 47.359765], [8.592738, 47.359732], [8.592794, 47.359695], [8.592845, 47.359655], [8.592891, 47.359612], [8.592932, 47.359566], [8.592967, 47.359519], [8.592996, 47.35947]]], "type": "MultiLineString"}, "id": "3323", "properties": {}, "type": "Feature"}, {"bbox": [8.536288, 47.383754, 8.540585, 47.388242], "geometry": {"coordinates": [[[8.540585, 47.383804], [8.540559, 47.383791], [8.540532, 47.383781], [8.540503, 47.383771], [8.540473, 47.383764], [8.540442, 47.383759], [8.54041, 47.383755], [8.540378, 47.383754], [8.540347, 47.383754], [8.540315, 47.383756], [8.539772, 47.383835], [8.53976, 47.38384], [8.539747, 47.383845], [8.539735, 47.38385], [8.539702, 47.383866], [8.539671, 47.383884], [8.539642, 47.383905], [8.539616, 47.383926], [8.539593, 47.383949], [8.539574, 47.383974], [8.539171, 47.384432], [8.538735, 47.384943], [8.538714, 47.384969], [8.538507, 47.385226], [8.53826, 47.385516], [8.538227, 47.385552], [8.538208, 47.385572], [8.538085, 47.385748], [8.538051, 47.385796], [8.538018, 47.385843], [8.537984, 47.38589], [8.53778, 47.386196], [8.537649, 47.386406], [8.537108, 47.387225], [8.537022, 47.387299], [8.536296, 47.388235], [8.536288, 47.388242]]], "type": "MultiLineString"}, "id": "3326", "properties": {}, "type": "Feature"}, {"bbox": [8.541823, 47.376023, 8.541975, 47.376963], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541975, 47.376105], [8.541829, 47.376576], [8.541823, 47.376655], [8.541827, 47.376733], [8.541841, 47.376811], [8.541864, 47.376888], [8.541897, 47.376963]]], "type": "MultiLineString"}, "id": "3329", "properties": {}, "type": "Feature"}, {"bbox": [8.523935, 47.347565, 8.527868, 47.350028], "geometry": {"coordinates": [[[8.527868, 47.350028], [8.527695, 47.349906], [8.52766, 47.349833], [8.527621, 47.349752], [8.527573, 47.349673], [8.527515, 47.349598], [8.527447, 47.349526], [8.527371, 47.349458], [8.527286, 47.349395], [8.527194, 47.349337], [8.526599, 47.349021], [8.525812, 47.348582], [8.524922, 47.348099], [8.523935, 47.347565]]], "type": "MultiLineString"}, "id": "3332", "properties": {}, "type": "Feature"}, {"bbox": [8.54154, 47.387959, 8.544214, 47.395803], "geometry": {"coordinates": [[[8.544214, 47.387959], [8.544175, 47.388092], [8.543889, 47.389159], [8.54376, 47.389622], [8.5437, 47.389823], [8.543456, 47.390716], [8.543414, 47.390831], [8.543357, 47.390943], [8.543285, 47.391051], [8.543199, 47.391155], [8.5431, 47.391253], [8.542989, 47.391345], [8.542942, 47.391381], [8.542892, 47.391415], [8.54284, 47.391447], [8.542692, 47.391538], [8.542318, 47.391758], [8.542188, 47.391845], [8.542069, 47.391939], [8.54196, 47.392039], [8.541863, 47.392144], [8.541808, 47.392215], [8.541757, 47.392289], [8.541711, 47.392363], [8.541661, 47.392458], [8.541618, 47.392555], [8.541583, 47.392654], [8.541559, 47.392755], [8.541545, 47.392856], [8.54154, 47.392958], [8.541546, 47.39316], [8.541568, 47.393363], [8.541614, 47.393564], [8.541681, 47.393763], [8.54169, 47.393783], [8.541698, 47.393803], [8.541707, 47.393823], [8.541839, 47.394077], [8.542748, 47.395519], [8.542915, 47.395803]]], "type": "MultiLineString"}, "id": "3333", "properties": {}, "type": "Feature"}, {"bbox": [8.576229, 47.402251, 8.576936, 47.403067], "geometry": {"coordinates": [[[8.576541, 47.403067], [8.576229, 47.402772], [8.576277, 47.402736], [8.576323, 47.402698], [8.576365, 47.402658], [8.57661, 47.40246], [8.576711, 47.402385], [8.576819, 47.402315], [8.576936, 47.402251]]], "type": "MultiLineString"}, "id": "3338", "properties": {}, "type": "Feature"}, {"bbox": [8.539707, 47.402096, 8.541784, 47.403452], "geometry": {"coordinates": [[[8.539707, 47.402096], [8.540212, 47.402311], [8.540682, 47.40251], [8.541073, 47.402973], [8.541095, 47.403018], [8.541122, 47.403061], [8.541155, 47.403103], [8.541193, 47.403143], [8.541236, 47.40318], [8.541284, 47.403215], [8.541336, 47.403246], [8.541391, 47.403275], [8.541451, 47.4033], [8.541784, 47.403452]]], "type": "MultiLineString"}, "id": "3341", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.322981, 8.514418, 47.326966], "geometry": {"coordinates": [[[8.513392, 47.326966], [8.513303, 47.326828], [8.513276, 47.326776], [8.513257, 47.326721], [8.513245, 47.326666], [8.513241, 47.326611], [8.513245, 47.326555], [8.513256, 47.3265], [8.513275, 47.326446], [8.513352, 47.326178], [8.513403, 47.325907], [8.513428, 47.325634], [8.513435, 47.325357], [8.513435, 47.325307], [8.51343, 47.325257], [8.513422, 47.325208], [8.513408, 47.325155], [8.513398, 47.325109], [8.513393, 47.325062], [8.513392, 47.325014], [8.513423, 47.324807], [8.513481, 47.324601], [8.513564, 47.3244], [8.513673, 47.324205], [8.513868, 47.323895], [8.513953, 47.323732], [8.514015, 47.323564], [8.514052, 47.323393], [8.514061, 47.323328], [8.514077, 47.323263], [8.5141, 47.3232], [8.514131, 47.323138], [8.514418, 47.322981]]], "type": "MultiLineString"}, "id": "3348", "properties": {}, "type": "Feature"}, {"bbox": [8.515259, 47.379947, 8.515839, 47.382034], "geometry": {"coordinates": [[[8.515839, 47.379947], [8.515456, 47.381326], [8.515375, 47.381602], [8.515266, 47.381976], [8.515259, 47.382034]]], "type": "MultiLineString"}, "id": "3350", "properties": {}, "type": "Feature"}, {"bbox": [8.535733, 47.375946, 8.536129, 47.376071], "geometry": {"coordinates": [[[8.536129, 47.375946], [8.535994, 47.375984], [8.535862, 47.376026], [8.535733, 47.376071]]], "type": "MultiLineString"}, "id": "3353", "properties": {}, "type": "Feature"}, {"bbox": [8.490673, 47.400711, 8.494559, 47.401589], "geometry": {"coordinates": [[[8.494559, 47.400711], [8.494557, 47.400725], [8.494553, 47.40074], [8.494547, 47.400754], [8.494539, 47.400767], [8.494529, 47.40078], [8.494518, 47.400793], [8.494505, 47.400804], [8.494491, 47.400815], [8.494475, 47.400825], [8.494458, 47.400834], [8.49444, 47.400842], [8.494421, 47.400848], [8.494401, 47.400854], [8.4942, 47.400911], [8.494083, 47.400942], [8.494006, 47.400963], [8.493825, 47.401008], [8.493773, 47.401019], [8.493722, 47.401031], [8.493619, 47.401053], [8.493491, 47.401078], [8.493441, 47.401087], [8.493144, 47.401139], [8.492767, 47.401199], [8.492756, 47.401206], [8.492383, 47.401264], [8.492259, 47.401285], [8.492175, 47.401299], [8.491883, 47.401351], [8.490972, 47.401528], [8.490673, 47.401589]]], "type": "MultiLineString"}, "id": "3354", "properties": {}, "type": "Feature"}, {"bbox": [8.57761, 47.360199, 8.579409, 47.362394], "geometry": {"coordinates": [[[8.579409, 47.360199], [8.57922, 47.360574], [8.578993, 47.360938], [8.578731, 47.361292], [8.57858, 47.361476], [8.578422, 47.361648], [8.578353, 47.361719], [8.578192, 47.361879], [8.57787, 47.36219], [8.57761, 47.362394]]], "type": "MultiLineString"}, "id": "3356", "properties": {}, "type": "Feature"}, {"bbox": [8.579409, 47.354566, 8.584877, 47.360199], "geometry": {"coordinates": [[[8.579409, 47.360199], [8.579541, 47.360011], [8.579708, 47.359762], [8.580319, 47.359004], [8.580431, 47.358862], [8.58047, 47.358813], [8.58054, 47.358724], [8.580865, 47.35831], [8.581002, 47.358135], [8.581377, 47.357643], [8.581463, 47.35753], [8.581928, 47.35692], [8.582145, 47.356623], [8.582214, 47.356522], [8.582269, 47.356418], [8.58231, 47.35631], [8.582337, 47.3562], [8.582349, 47.356089], [8.582346, 47.355978], [8.582342, 47.355929], [8.58234, 47.355881], [8.582338, 47.355832], [8.582347, 47.355803], [8.582359, 47.355774], [8.582375, 47.355746], [8.582395, 47.355719], [8.582419, 47.355694], [8.582446, 47.35567], [8.582932, 47.355327], [8.583773, 47.35468], [8.583806, 47.354659], [8.583841, 47.354641], [8.583879, 47.354624], [8.583918, 47.35461], [8.58396, 47.354599], [8.584003, 47.35459], [8.584047, 47.354584], [8.584101, 47.354574], [8.584157, 47.354568], [8.584213, 47.354566], [8.584269, 47.354566], [8.584325, 47.35457], [8.584381, 47.354577], [8.584435, 47.354588], [8.584488, 47.354601], [8.584538, 47.354618], [8.584587, 47.354638], [8.584632, 47.35466], [8.584675, 47.354685], [8.584714, 47.354713], [8.58475, 47.354742], [8.584782, 47.354774], [8.584809, 47.354807], [8.584832, 47.354842], [8.584851, 47.354878], [8.584864, 47.354916], [8.584873, 47.354953], [8.584877, 47.354992], [8.584877, 47.35503], [8.584871, 47.355068], [8.58486, 47.355106], [8.584845, 47.355142], [8.584825, 47.355178], [8.5848, 47.355213], [8.584771, 47.355246], [8.584537, 47.355529], [8.584343, 47.355827], [8.584191, 47.356135], [8.584079, 47.356349], [8.583998, 47.35657], [8.583948, 47.356795], [8.583879, 47.357152], [8.583829, 47.35751], [8.583797, 47.357869], [8.583795, 47.357921], [8.583799, 47.357973], [8.58381, 47.358024], [8.583827, 47.358075], [8.583851, 47.358125], [8.583881, 47.358173], [8.583917, 47.358219], [8.583958, 47.358263], [8.584005, 47.358304], [8.584057, 47.358342]]], "type": "MultiLineString"}, "id": "3357", "properties": {}, "type": "Feature"}, {"bbox": [8.472465, 47.388734, 8.476016, 47.390069], "geometry": {"coordinates": [[[8.476016, 47.390069], [8.475991, 47.390054], [8.475964, 47.390041], [8.475936, 47.390029], [8.475906, 47.390018], [8.475875, 47.39001], [8.475844, 47.390003], [8.475811, 47.389998], [8.475778, 47.389995], [8.475633, 47.38998], [8.475489, 47.38996], [8.475346, 47.389935], [8.475263, 47.389915], [8.475179, 47.389896], [8.475096, 47.389876], [8.474965, 47.389845], [8.474835, 47.389813], [8.474705, 47.38978], [8.474663, 47.38977], [8.474621, 47.389759], [8.47458, 47.389748], [8.474395, 47.389708], [8.474207, 47.389673], [8.474017, 47.389645], [8.473365, 47.389567], [8.473283, 47.389553], [8.473203, 47.389534], [8.473126, 47.38951], [8.473052, 47.389482], [8.472983, 47.38945], [8.472927, 47.389421], [8.472875, 47.389389], [8.472827, 47.389355], [8.472784, 47.389318], [8.472746, 47.389278], [8.47271, 47.389232], [8.47268, 47.389184], [8.472656, 47.389135], [8.472465, 47.388734]]], "type": "MultiLineString"}, "id": "3365", "properties": {}, "type": "Feature"}, {"bbox": [8.533204, 47.333283, 8.535841, 47.336616], "geometry": {"coordinates": [[[8.533204, 47.336616], [8.53349, 47.336372], [8.53351, 47.336356], [8.533733, 47.336164], [8.533928, 47.335958], [8.534094, 47.335741], [8.534229, 47.335514], [8.534492, 47.335073], [8.534675, 47.334766], [8.535009, 47.334301], [8.535411, 47.33375], [8.535506, 47.333635], [8.53556, 47.333575], [8.535662, 47.333466], [8.535841, 47.333283]]], "type": "MultiLineString"}, "id": "3366", "properties": {}, "type": "Feature"}, {"bbox": [8.550451, 47.392533, 8.553292, 47.399202], "geometry": {"coordinates": [[[8.550451, 47.392533], [8.550721, 47.392844], [8.550934, 47.39313], [8.551084, 47.393342], [8.551196, 47.393575], [8.55129, 47.393763], [8.551396, 47.394022], [8.551688, 47.394798], [8.55174, 47.394938], [8.551801, 47.395067], [8.552153, 47.395802], [8.552501, 47.396511], [8.552542, 47.396637], [8.552562, 47.396701], [8.552602, 47.396859], [8.552621, 47.397005], [8.552639, 47.397406], [8.552663, 47.397537], [8.552793, 47.397995], [8.552897, 47.398273], [8.552961, 47.398427], [8.553184, 47.399009], [8.553287, 47.399194], [8.553292, 47.399202]]], "type": "MultiLineString"}, "id": "3368", "properties": {}, "type": "Feature"}, {"bbox": [8.497362, 47.403194, 8.502542, 47.405031], "geometry": {"coordinates": [[[8.502542, 47.403194], [8.502242, 47.403394], [8.501937, 47.403591], [8.501627, 47.403784], [8.501313, 47.403941], [8.500983, 47.404082], [8.50064, 47.404207], [8.50028, 47.404316], [8.499915, 47.404417], [8.499544, 47.404508], [8.499123, 47.404609], [8.498693, 47.40469], [8.498256, 47.40475], [8.497474, 47.404844], [8.497476, 47.404887], [8.497417, 47.405019], [8.497362, 47.405031]]], "type": "MultiLineString"}, "id": "3373", "properties": {}, "type": "Feature"}, {"bbox": [8.554914, 47.378707, 8.556708, 47.38064], "geometry": {"coordinates": [[[8.554914, 47.378707], [8.555046, 47.378845], [8.555208, 47.379044], [8.555396, 47.379291], [8.555414, 47.379312], [8.555524, 47.379431], [8.555619, 47.379586], [8.555733, 47.379735], [8.555865, 47.379877], [8.556014, 47.380011], [8.556223, 47.380208], [8.556708, 47.38064]]], "type": "MultiLineString"}, "id": "3374", "properties": {}, "type": "Feature"}, {"bbox": [8.549616, 47.358951, 8.552938, 47.359501], "geometry": {"coordinates": [[[8.549616, 47.358951], [8.549825, 47.358984], [8.551204, 47.359122], [8.551396, 47.359146], [8.551613, 47.359206], [8.552938, 47.359501]]], "type": "MultiLineString"}, "id": "3376", "properties": {}, "type": "Feature"}, {"bbox": [8.563285, 47.348752, 8.568616, 47.350594], "geometry": {"coordinates": [[[8.563285, 47.348752], [8.563469, 47.348825], [8.564215, 47.349169], [8.564773, 47.349419], [8.564875, 47.349446], [8.564996, 47.349474], [8.565871, 47.349763], [8.567608, 47.350337], [8.567893, 47.350422], [8.568185, 47.350497], [8.568482, 47.350561], [8.568526, 47.350572], [8.568571, 47.350583], [8.568616, 47.350594]]], "type": "MultiLineString"}, "id": "3377", "properties": {}, "type": "Feature"}, {"bbox": [8.557098, 47.353872, 8.561616, 47.358737], "geometry": {"coordinates": [[[8.557098, 47.358737], [8.557783, 47.357836], [8.55781, 47.357801], [8.558179, 47.357319], [8.558668, 47.356681], [8.558879, 47.356407], [8.559287, 47.35587], [8.559673, 47.355363], [8.559815, 47.355257], [8.560471, 47.354627], [8.560724, 47.35437], [8.56092, 47.354185], [8.561123, 47.353993], [8.561183, 47.353939], [8.561195, 47.353928], [8.561208, 47.353919], [8.561223, 47.35391], [8.561238, 47.353901], [8.561254, 47.353894], [8.561272, 47.353888], [8.56129, 47.353883], [8.561308, 47.353878], [8.561327, 47.353875], [8.561347, 47.353873], [8.561366, 47.353872], [8.561386, 47.353872], [8.561405, 47.353874], [8.561616, 47.353894]]], "type": "MultiLineString"}, "id": "3378", "properties": {}, "type": "Feature"}, {"bbox": [8.498618, 47.3776, 8.503267, 47.381145], "geometry": {"coordinates": [[[8.503267, 47.381145], [8.503168, 47.381078], [8.502115, 47.380292], [8.50194, 47.380165], [8.501869, 47.380116], [8.500437, 47.379129], [8.500194, 47.378957], [8.499954, 47.378784], [8.499716, 47.378609], [8.499474, 47.378415], [8.499241, 47.378216], [8.499019, 47.378011], [8.498764, 47.37777], [8.498618, 47.3776]]], "type": "MultiLineString"}, "id": "3380", "properties": {}, "type": "Feature"}, {"bbox": [8.525223, 47.379423, 8.525845, 47.379957], "geometry": {"coordinates": [[[8.525223, 47.379423], [8.525521, 47.379674], [8.525845, 47.379957]]], "type": "MultiLineString"}, "id": "3382", "properties": {}, "type": "Feature"}, {"bbox": [8.514263, 47.335046, 8.519244, 47.33633], "geometry": {"coordinates": [[[8.519244, 47.335116], [8.519141, 47.335096], [8.519024, 47.335081], [8.518655, 47.335062], [8.5183, 47.335046], [8.518227, 47.335082], [8.51815, 47.335114], [8.51807, 47.335142], [8.517986, 47.335165], [8.517724, 47.335252], [8.517462, 47.33534], [8.517202, 47.33543], [8.517062, 47.33548], [8.516916, 47.33552], [8.516766, 47.335551], [8.516612, 47.335573], [8.516436, 47.335597], [8.516262, 47.335627], [8.516091, 47.335665], [8.515783, 47.335745], [8.515487, 47.335843], [8.515203, 47.335957], [8.514888, 47.336079], [8.514575, 47.336204], [8.514263, 47.33633]]], "type": "MultiLineString"}, "id": "3383", "properties": {}, "type": "Feature"}, {"bbox": [8.53271, 47.331143, 8.53634, 47.336188], "geometry": {"coordinates": [[[8.53271, 47.336188], [8.532834, 47.335799], [8.532966, 47.335516], [8.532975, 47.335502], [8.533061, 47.335372], [8.53311, 47.335309], [8.533561, 47.334729], [8.533624, 47.334637], [8.533998, 47.334173], [8.534126, 47.334015], [8.534154, 47.333976], [8.534317, 47.333755], [8.534374, 47.333677], [8.534522, 47.33345], [8.534652, 47.333208], [8.534671, 47.333174], [8.534693, 47.333141], [8.534781, 47.333036], [8.534855, 47.332824], [8.535067, 47.33235], [8.535143, 47.332225], [8.535233, 47.332105], [8.535339, 47.33199], [8.535494, 47.33187], [8.535659, 47.331755], [8.535832, 47.331647], [8.53596, 47.33156], [8.536076, 47.331465], [8.536179, 47.331363], [8.536267, 47.331255], [8.53634, 47.331143]]], "type": "MultiLineString"}, "id": "3385", "properties": {}, "type": "Feature"}, {"bbox": [8.525415, 47.391373, 8.528509, 47.393442], "geometry": {"coordinates": [[[8.528509, 47.391373], [8.527351, 47.391713], [8.52677, 47.391896], [8.526591, 47.391948], [8.526073, 47.392102], [8.525515, 47.392367], [8.525495, 47.392382], [8.525477, 47.392398], [8.525461, 47.392415], [8.525447, 47.392433], [8.525436, 47.392452], [8.525427, 47.392471], [8.52542, 47.392491], [8.525416, 47.392511], [8.525415, 47.392532], [8.525417, 47.392552], [8.525421, 47.392572], [8.525428, 47.392592], [8.525437, 47.392611], [8.525449, 47.39263], [8.525463, 47.392647], [8.525955, 47.39326], [8.525959, 47.393442]]], "type": "MultiLineString"}, "id": "3386", "properties": {}, "type": "Feature"}, {"bbox": [8.523147, 47.378304, 8.524077, 47.378677], "geometry": {"coordinates": [[[8.524077, 47.378304], [8.523147, 47.378677]]], "type": "MultiLineString"}, "id": "3387", "properties": {}, "type": "Feature"}, {"bbox": [8.465219, 47.392605, 8.486794, 47.398289], "geometry": {"coordinates": [[[8.486794, 47.392605], [8.485545, 47.392897], [8.485057, 47.392974], [8.483475, 47.393377], [8.481306, 47.39393], [8.480058, 47.394258], [8.476706, 47.395175], [8.475806, 47.395417], [8.471615, 47.396548], [8.471155, 47.396656], [8.468846, 47.397278], [8.468858, 47.397298], [8.468282, 47.397454], [8.468194, 47.397484], [8.468137, 47.397512], [8.468064, 47.397537], [8.467989, 47.39756], [8.467912, 47.397581], [8.467663, 47.39765], [8.466737, 47.397899], [8.465591, 47.398191], [8.465219, 47.398289]]], "type": "MultiLineString"}, "id": "3397", "properties": {}, "type": "Feature"}, {"bbox": [8.531765, 47.392996, 8.532558, 47.394232], "geometry": {"coordinates": [[[8.531765, 47.392996], [8.531879, 47.393152], [8.532192, 47.393645], [8.532276, 47.393786], [8.532524, 47.394178], [8.532558, 47.394232]]], "type": "MultiLineString"}, "id": "3399", "properties": {}, "type": "Feature"}, {"bbox": [8.488042, 47.40273, 8.489812, 47.403194], "geometry": {"coordinates": [[[8.489812, 47.403194], [8.489777, 47.403111], [8.489637, 47.402755], [8.489636, 47.402752], [8.489634, 47.402749], [8.489632, 47.402747], [8.489629, 47.402744], [8.489627, 47.402742], [8.489624, 47.40274], [8.48962, 47.402738], [8.489617, 47.402736], [8.489613, 47.402734], [8.489609, 47.402733], [8.489605, 47.402732], [8.489601, 47.402731], [8.489597, 47.402731], [8.489593, 47.40273], [8.489588, 47.40273], [8.489584, 47.402731], [8.48958, 47.402731], [8.489575, 47.402732], [8.488145, 47.40299], [8.488042, 47.403012]]], "type": "MultiLineString"}, "id": "3401", "properties": {}, "type": "Feature"}, {"bbox": [8.53616, 47.395744, 8.536738, 47.396089], "geometry": {"coordinates": [[[8.536738, 47.395744], [8.53667, 47.395823], [8.536569, 47.395881], [8.53616, 47.396089]]], "type": "MultiLineString"}, "id": "3403", "properties": {}, "type": "Feature"}, {"bbox": [8.576874, 47.398448, 8.591922, 47.403862], "geometry": {"coordinates": [[[8.576874, 47.403862], [8.577018, 47.403843], [8.578494, 47.403617], [8.578998, 47.403487], [8.581773, 47.402682], [8.582177, 47.402572], [8.582586, 47.402472], [8.583, 47.402381], [8.583396, 47.402303], [8.583792, 47.402227], [8.58419, 47.402155], [8.584581, 47.402081], [8.584774, 47.402046], [8.584956, 47.402012], [8.585138, 47.401975], [8.585319, 47.401937], [8.58545, 47.401907], [8.585582, 47.401877], [8.585712, 47.401845], [8.586164, 47.401734], [8.587026, 47.401521], [8.587584, 47.401383], [8.587714, 47.401349], [8.587843, 47.401312], [8.587971, 47.401274], [8.588024, 47.401257], [8.588078, 47.40124], [8.588131, 47.401222], [8.588196, 47.401199], [8.588262, 47.401176], [8.588326, 47.401152], [8.5886, 47.401041], [8.588864, 47.40092], [8.589117, 47.400788], [8.589244, 47.400718], [8.589427, 47.400619], [8.589561, 47.400545], [8.589699, 47.400475], [8.58984, 47.400407], [8.589992, 47.400339], [8.590147, 47.400274], [8.590306, 47.400214], [8.590467, 47.400156], [8.590631, 47.400103], [8.590797, 47.400054], [8.590931, 47.400018], [8.591192, 47.399947], [8.591357, 47.399903], [8.591425, 47.399883], [8.591491, 47.399859], [8.591553, 47.399832], [8.591611, 47.399801], [8.591666, 47.399766], [8.591716, 47.399729], [8.591761, 47.399689], [8.591801, 47.399647], [8.591836, 47.399603], [8.591865, 47.399556], [8.591891, 47.399504], [8.591909, 47.39945], [8.591919, 47.399395], [8.591922, 47.39934], [8.591918, 47.399285], [8.591906, 47.39923], [8.591886, 47.399176], [8.59186, 47.399124], [8.591786, 47.399006], [8.591653, 47.398792], [8.591574, 47.398674], [8.591486, 47.398559], [8.591389, 47.398448]]], "type": "MultiLineString"}, "id": "3405", "properties": {}, "type": "Feature"}, {"bbox": [8.548538, 47.355243, 8.55451, 47.36276], "geometry": {"coordinates": [[[8.548538, 47.36276], [8.548629, 47.36264], [8.54887, 47.362334], [8.549131, 47.362005], [8.549475, 47.36157], [8.549491, 47.361549], [8.549862, 47.361096], [8.54989, 47.361062], [8.550221, 47.360642], [8.550262, 47.360587], [8.550281, 47.360561], [8.550687, 47.360046], [8.550858, 47.35983], [8.550866, 47.35982], [8.551353, 47.359201], [8.551396, 47.359146], [8.551439, 47.359091], [8.551716, 47.358738], [8.552444, 47.357813], [8.552768, 47.357403], [8.552894, 47.357245], [8.553219, 47.356831], [8.553545, 47.356417], [8.553715, 47.3562], [8.554052, 47.355773], [8.554119, 47.355696], [8.554211, 47.35559], [8.55451, 47.355243]]], "type": "MultiLineString"}, "id": "3406", "properties": {}, "type": "Feature"}, {"bbox": [8.549932, 47.362957, 8.550717, 47.36324], "geometry": {"coordinates": [[[8.549932, 47.362957], [8.550717, 47.36324]]], "type": "MultiLineString"}, "id": "3407", "properties": {}, "type": "Feature"}, {"bbox": [8.553219, 47.356831, 8.554875, 47.357332], "geometry": {"coordinates": [[[8.553219, 47.356831], [8.553339, 47.356864], [8.554686, 47.357308], [8.554875, 47.357332]]], "type": "MultiLineString"}, "id": "3408", "properties": {}, "type": "Feature"}, {"bbox": [8.551269, 47.361424, 8.553793, 47.362063], "geometry": {"coordinates": [[[8.551269, 47.361424], [8.551362, 47.36147], [8.552761, 47.361799], [8.553235, 47.361915], [8.553793, 47.362063]]], "type": "MultiLineString"}, "id": "3409", "properties": {}, "type": "Feature"}, {"bbox": [8.551396, 47.35867, 8.553306, 47.359055], "geometry": {"coordinates": [[[8.551396, 47.35867], [8.551716, 47.358738], [8.551951, 47.358783], [8.553306, 47.359055]]], "type": "MultiLineString"}, "id": "3410", "properties": {}, "type": "Feature"}, {"bbox": [8.554947, 47.360869, 8.556332, 47.361503], "geometry": {"coordinates": [[[8.554947, 47.360869], [8.555619, 47.361189], [8.555703, 47.361201], [8.556332, 47.361503]]], "type": "MultiLineString"}, "id": "3411", "properties": {}, "type": "Feature"}, {"bbox": [8.549073, 47.363891, 8.550665, 47.364612], "geometry": {"coordinates": [[[8.549073, 47.363891], [8.550094, 47.364351], [8.550665, 47.364612]]], "type": "MultiLineString"}, "id": "3412", "properties": {}, "type": "Feature"}, {"bbox": [8.563258, 47.362569, 8.563881, 47.363019], "geometry": {"coordinates": [[[8.563258, 47.363019], [8.563573, 47.36279], [8.563881, 47.362569]]], "type": "MultiLineString"}, "id": "3413", "properties": {}, "type": "Feature"}, {"bbox": [8.568576, 47.360102, 8.571487, 47.360994], "geometry": {"coordinates": [[[8.568576, 47.360102], [8.568807, 47.36022], [8.569052, 47.360339], [8.569156, 47.360381], [8.569282, 47.360429], [8.569558, 47.360509], [8.569608, 47.360522], [8.569974, 47.360615], [8.570148, 47.360658], [8.570304, 47.360683], [8.57046, 47.360703], [8.570618, 47.360718], [8.570723, 47.360726], [8.570827, 47.36074], [8.570928, 47.360761], [8.571026, 47.360788], [8.571312, 47.36089], [8.571487, 47.360994]]], "type": "MultiLineString"}, "id": "3414", "properties": {}, "type": "Feature"}, {"bbox": [8.559491, 47.362598, 8.562027, 47.364936], "geometry": {"coordinates": [[[8.559491, 47.364936], [8.559794, 47.364625], [8.560732, 47.36369], [8.560821, 47.363632], [8.561353, 47.363327], [8.561396, 47.363303], [8.561436, 47.363276], [8.561472, 47.363247], [8.561505, 47.363216], [8.561534, 47.363183], [8.561558, 47.363149], [8.562027, 47.362598]]], "type": "MultiLineString"}, "id": "3415", "properties": {}, "type": "Feature"}, {"bbox": [8.552979, 47.362803, 8.554418, 47.364344], "geometry": {"coordinates": [[[8.552979, 47.362803], [8.553305, 47.363078], [8.55335, 47.363138], [8.553615, 47.363407], [8.553707, 47.363502], [8.553747, 47.363526], [8.553783, 47.363552], [8.553815, 47.36358], [8.553844, 47.36361], [8.553868, 47.363641], [8.553889, 47.363674], [8.553904, 47.363708], [8.553916, 47.363743], [8.553989, 47.36408], [8.553992, 47.364099], [8.553997, 47.364118], [8.554004, 47.364137], [8.554013, 47.364154], [8.554025, 47.364172], [8.554056, 47.364199], [8.554091, 47.364225], [8.55413, 47.364248], [8.554171, 47.364269], [8.554215, 47.364287], [8.554261, 47.364302], [8.554418, 47.364344]]], "type": "MultiLineString"}, "id": "3416", "properties": {}, "type": "Feature"}, {"bbox": [8.571226, 47.360994, 8.571529, 47.361614], "geometry": {"coordinates": [[[8.571487, 47.360994], [8.571501, 47.361017], [8.571513, 47.361041], [8.571521, 47.361065], [8.571527, 47.36109], [8.571529, 47.361115], [8.571528, 47.36114], [8.571524, 47.361165], [8.571517, 47.36119], [8.571507, 47.361214], [8.571493, 47.361237], [8.571226, 47.361614]]], "type": "MultiLineString"}, "id": "3417", "properties": {}, "type": "Feature"}, {"bbox": [8.563065, 47.370539, 8.565023, 47.37229], "geometry": {"coordinates": [[[8.563065, 47.370539], [8.563172, 47.370578], [8.563546, 47.370838], [8.563618, 47.370916], [8.564245, 47.371547], [8.564609, 47.371915], [8.564884, 47.372195], [8.564927, 47.372229], [8.564973, 47.372261], [8.565023, 47.37229]]], "type": "MultiLineString"}, "id": "3420", "properties": {}, "type": "Feature"}, {"bbox": [8.573517, 47.361728, 8.574084, 47.36245], "geometry": {"coordinates": [[[8.574084, 47.361728], [8.574069, 47.361733], [8.574054, 47.361739], [8.57404, 47.361745], [8.574027, 47.361752], [8.574015, 47.361761], [8.574004, 47.361769], [8.573994, 47.361779], [8.573985, 47.361789], [8.573978, 47.361799], [8.573972, 47.36181], [8.573968, 47.361821], [8.573965, 47.361832], [8.573964, 47.361844], [8.573964, 47.361855], [8.573965, 47.361867], [8.573968, 47.361878], [8.574004, 47.36199], [8.574053, 47.362119], [8.574058, 47.362137], [8.57406, 47.362156], [8.574061, 47.362174], [8.574058, 47.362193], [8.574054, 47.362211], [8.574047, 47.362229], [8.574038, 47.362246], [8.574026, 47.362263], [8.574013, 47.362279], [8.573998, 47.362295], [8.57398, 47.362309], [8.573961, 47.362322], [8.573941, 47.362334], [8.573919, 47.362345], [8.573895, 47.362355], [8.573871, 47.362363], [8.573845, 47.36237], [8.573617, 47.362425], [8.573517, 47.36245]]], "type": "MultiLineString"}, "id": "3421", "properties": {}, "type": "Feature"}, {"bbox": [8.530144, 47.353099, 8.530848, 47.353946], "geometry": {"coordinates": [[[8.530848, 47.353887], [8.530426, 47.353946], [8.530419, 47.353946], [8.530413, 47.353946], [8.530406, 47.353946], [8.530399, 47.353945], [8.530393, 47.353944], [8.530386, 47.353943], [8.53038, 47.353941], [8.530374, 47.353938], [8.530368, 47.353936], [8.530363, 47.353933], [8.530358, 47.35393], [8.530354, 47.353926], [8.53035, 47.353922], [8.530347, 47.353918], [8.530344, 47.353914], [8.530341, 47.35391], [8.53034, 47.353906], [8.530338, 47.353901], [8.530338, 47.353896], [8.530144, 47.353208], [8.530144, 47.353204], [8.530144, 47.3532], [8.530144, 47.353196], [8.530146, 47.353192], [8.530147, 47.353188], [8.53015, 47.353184], [8.530152, 47.353181], [8.530155, 47.353177], [8.530159, 47.353174], [8.530163, 47.353171], [8.530167, 47.353169], [8.530172, 47.353166], [8.530177, 47.353164], [8.530182, 47.353162], [8.530188, 47.353161], [8.530621, 47.353099]]], "type": "MultiLineString"}, "id": "3424", "properties": {}, "type": "Feature"}, {"bbox": [8.547092, 47.379139, 8.547835, 47.384522], "geometry": {"coordinates": [[[8.547092, 47.379139], [8.547156, 47.379308], [8.54727, 47.37996], [8.547284, 47.38004], [8.547261, 47.38008], [8.547321, 47.380378], [8.547342, 47.380442], [8.547584, 47.381949], [8.547567, 47.381992], [8.547602, 47.382106], [8.547592, 47.382412], [8.547612, 47.382593], [8.547624, 47.383075], [8.547835, 47.383713], [8.547824, 47.384107], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "3426", "properties": {}, "type": "Feature"}, {"bbox": [8.561642, 47.366639, 8.563638, 47.367395], "geometry": {"coordinates": [[[8.561642, 47.366639], [8.561815, 47.366705], [8.562591, 47.366998], [8.563638, 47.367395]]], "type": "MultiLineString"}, "id": "3434", "properties": {}, "type": "Feature"}, {"bbox": [8.534524, 47.392747, 8.537591, 47.393561], "geometry": {"coordinates": [[[8.534524, 47.392747], [8.535762, 47.393374], [8.535815, 47.393399], [8.535872, 47.393421], [8.535931, 47.393439], [8.535995, 47.393453], [8.536061, 47.393463], [8.536129, 47.393468], [8.53673, 47.393506], [8.536818, 47.393511], [8.537591, 47.393561]]], "type": "MultiLineString"}, "id": "3435", "properties": {}, "type": "Feature"}, {"bbox": [8.545018, 47.373075, 8.547441, 47.376527], "geometry": {"coordinates": [[[8.547424, 47.373075], [8.547431, 47.373079], [8.547434, 47.373086], [8.547438, 47.373093], [8.54744, 47.3731], [8.547441, 47.373107], [8.547441, 47.373114], [8.547441, 47.373121], [8.547439, 47.373128], [8.547437, 47.373135], [8.547434, 47.373142], [8.54743, 47.373149], [8.546755, 47.373935], [8.54626, 47.374518], [8.545953, 47.374938], [8.545858, 47.375077], [8.545707, 47.375297], [8.545127, 47.376189], [8.545046, 47.376315], [8.545036, 47.376332], [8.545028, 47.37635], [8.545022, 47.376367], [8.545019, 47.376385], [8.545018, 47.376403], [8.545019, 47.376422], [8.545022, 47.37644], [8.545027, 47.376457], [8.545029, 47.376471], [8.54503, 47.376485], [8.545029, 47.3765], [8.545026, 47.376514], [8.545021, 47.376527]]], "type": "MultiLineString"}, "id": "3436", "properties": {}, "type": "Feature"}, {"bbox": [8.571912, 47.402772, 8.576229, 47.403447], "geometry": {"coordinates": [[[8.571912, 47.402981], [8.572184, 47.403011], [8.572453, 47.403055], [8.572716, 47.403113], [8.573762, 47.403411], [8.573808, 47.403423], [8.573855, 47.403433], [8.573904, 47.40344], [8.573966, 47.403445], [8.574029, 47.403447], [8.574093, 47.403446], [8.574155, 47.40344], [8.574217, 47.403431], [8.574278, 47.403419], [8.574646, 47.403324], [8.574944, 47.403246], [8.575902, 47.402925], [8.576018, 47.402881], [8.576128, 47.40283], [8.576229, 47.402772]]], "type": "MultiLineString"}, "id": "3438", "properties": {}, "type": "Feature"}, {"bbox": [8.576541, 47.403067, 8.580054, 47.407961], "geometry": {"coordinates": [[[8.576541, 47.403067], [8.576668, 47.403173], [8.576874, 47.403862], [8.576894, 47.404026], [8.576896, 47.40419], [8.576881, 47.404353], [8.57685, 47.404734], [8.576834, 47.404841], [8.576885, 47.404917], [8.577002, 47.405086], [8.578059, 47.406121], [8.578532, 47.406606], [8.579387, 47.407438], [8.579496, 47.407559], [8.579797, 47.407856], [8.579879, 47.407933], [8.579885, 47.407938], [8.579891, 47.407942], [8.579898, 47.407946], [8.579905, 47.407949], [8.579912, 47.407952], [8.57992, 47.407955], [8.579928, 47.407957], [8.579937, 47.407959], [8.579945, 47.40796], [8.579954, 47.407961], [8.579963, 47.407961], [8.579971, 47.40796], [8.57998, 47.40796], [8.579988, 47.407958], [8.579997, 47.407956], [8.580054, 47.407941]]], "type": "MultiLineString"}, "id": "3442", "properties": {}, "type": "Feature"}, {"bbox": [8.5279, 47.39051, 8.529258, 47.39298], "geometry": {"coordinates": [[[8.5279, 47.39051], [8.52806, 47.390731], [8.528509, 47.391373], [8.528531, 47.391405], [8.528597, 47.391493], [8.528657, 47.391583], [8.528711, 47.391675], [8.528876, 47.391978], [8.528912, 47.392045], [8.529241, 47.39265], [8.529248, 47.392662], [8.529253, 47.392675], [8.529256, 47.392689], [8.529258, 47.392702], [8.529258, 47.392716], [8.529256, 47.392729], [8.529252, 47.392743], [8.529152, 47.39298]]], "type": "MultiLineString"}, "id": "3444", "properties": {}, "type": "Feature"}, {"bbox": [8.502591, 47.42615, 8.506685, 47.426731], "geometry": {"coordinates": [[[8.506685, 47.426731], [8.5065, 47.426693], [8.506078, 47.42657], [8.505851, 47.426485], [8.505835, 47.426478], [8.50551, 47.426342], [8.505132, 47.426257], [8.504883, 47.426236], [8.504024, 47.426175], [8.502885, 47.426154], [8.502591, 47.42615]]], "type": "MultiLineString"}, "id": "3447", "properties": {}, "type": "Feature"}, {"bbox": [8.506079, 47.368771, 8.508586, 47.369179], "geometry": {"coordinates": [[[8.508586, 47.369179], [8.508502, 47.369137], [8.508413, 47.3691], [8.50832, 47.369068], [8.508222, 47.369043], [8.508121, 47.369024], [8.50744, 47.368942], [8.506759, 47.368857], [8.506079, 47.368771]]], "type": "MultiLineString"}, "id": "3448", "properties": {}, "type": "Feature"}, {"bbox": [8.553673, 47.366219, 8.557006, 47.36908], "geometry": {"coordinates": [[[8.553673, 47.36908], [8.553935, 47.368857], [8.555182, 47.36779], [8.555355, 47.367646], [8.555744, 47.367302], [8.555925, 47.367142], [8.557006, 47.366219]]], "type": "MultiLineString"}, "id": "3449", "properties": {}, "type": "Feature"}, {"bbox": [8.563291, 47.3657, 8.563949, 47.366365], "geometry": {"coordinates": [[[8.563291, 47.3657], [8.563463, 47.365882], [8.56373, 47.366156], [8.563766, 47.366203], [8.563949, 47.366365]]], "type": "MultiLineString"}, "id": "3450", "properties": {}, "type": "Feature"}, {"bbox": [8.535437, 47.391822, 8.538556, 47.393906], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538492, 47.391836], [8.538427, 47.391828], [8.538361, 47.391823], [8.538294, 47.391822], [8.538228, 47.391825], [8.538163, 47.391832], [8.538098, 47.391842], [8.538035, 47.391857], [8.537974, 47.391875], [8.537916, 47.391896], [8.537861, 47.391921], [8.537783, 47.391965], [8.537496, 47.392167], [8.53631, 47.393106], [8.535931, 47.393439], [8.535437, 47.393906]]], "type": "MultiLineString"}, "id": "3454", "properties": {}, "type": "Feature"}, {"bbox": [8.560403, 47.363509, 8.564641, 47.366973], "geometry": {"coordinates": [[[8.560403, 47.366973], [8.560501, 47.366879], [8.561663, 47.365661], [8.56174, 47.3656], [8.562325, 47.365122], [8.562851, 47.364718], [8.56291, 47.364659], [8.564134, 47.363838], [8.564551, 47.363565], [8.564641, 47.363509]]], "type": "MultiLineString"}, "id": "3455", "properties": {}, "type": "Feature"}, {"bbox": [8.552288, 47.366285, 8.555785, 47.369868], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552362, 47.369698], [8.553078, 47.368984], [8.554011, 47.368056], [8.554727, 47.367344], [8.554826, 47.367242], [8.555247, 47.366822], [8.555308, 47.366761], [8.555785, 47.366285]]], "type": "MultiLineString"}, "id": "3456", "properties": {}, "type": "Feature"}, {"bbox": [8.56798, 47.362767, 8.573472, 47.364862], "geometry": {"coordinates": [[[8.56798, 47.362767], [8.568344, 47.362955], [8.568828, 47.363255], [8.569516, 47.363399], [8.56995, 47.363517], [8.571066, 47.363849], [8.571176, 47.363884], [8.572167, 47.364313], [8.572506, 47.364468], [8.57256, 47.364493], [8.572775, 47.364599], [8.572813, 47.364617], [8.572909, 47.364658], [8.573089, 47.364723], [8.573472, 47.364862]]], "type": "MultiLineString"}, "id": "3457", "properties": {}, "type": "Feature"}, {"bbox": [8.556208, 47.362123, 8.56072, 47.365865], "geometry": {"coordinates": [[[8.556208, 47.365865], [8.556765, 47.365323], [8.556806, 47.365283], [8.556895, 47.365197], [8.557249, 47.364853], [8.557327, 47.364777], [8.557706, 47.364409], [8.557889, 47.364312], [8.558697, 47.363694], [8.558941, 47.363498], [8.559331, 47.363196], [8.56072, 47.362123]]], "type": "MultiLineString"}, "id": "3458", "properties": {}, "type": "Feature"}, {"bbox": [8.5506, 47.38174, 8.551746, 47.3823], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.550973, 47.381924], [8.551458, 47.382164], [8.551746, 47.3823]]], "type": "MultiLineString"}, "id": "3459", "properties": {}, "type": "Feature"}, {"bbox": [8.543889, 47.389159, 8.545635, 47.390262], "geometry": {"coordinates": [[[8.543889, 47.389159], [8.543915, 47.389161], [8.543941, 47.389166], [8.543967, 47.389172], [8.543992, 47.389179], [8.544016, 47.389187], [8.544039, 47.389197], [8.54406, 47.389208], [8.54408, 47.389221], [8.544645, 47.3896], [8.545437, 47.390141], [8.545635, 47.390262]]], "type": "MultiLineString"}, "id": "3460", "properties": {}, "type": "Feature"}, {"bbox": [8.532288, 47.365855, 8.53459, 47.367657], "geometry": {"coordinates": [[[8.53459, 47.367657], [8.534492, 47.367616], [8.534393, 47.367565], [8.534302, 47.367508], [8.533937, 47.367236], [8.533587, 47.366975], [8.533215, 47.366702], [8.533174, 47.366666], [8.533137, 47.366628], [8.533103, 47.36659], [8.532479, 47.366027], [8.532288, 47.365855]]], "type": "MultiLineString"}, "id": "3461", "properties": {}, "type": "Feature"}, {"bbox": [8.540549, 47.376679, 8.540695, 47.377011], "geometry": {"coordinates": [[[8.540573, 47.376679], [8.540563, 47.376702], [8.540555, 47.37673], [8.54055, 47.376758], [8.540549, 47.376786], [8.540552, 47.376814], [8.540558, 47.376841], [8.540568, 47.376869], [8.540581, 47.376895], [8.540598, 47.376921], [8.540618, 47.376946], [8.540641, 47.376969], [8.540667, 47.376991], [8.540695, 47.377011]]], "type": "MultiLineString"}, "id": "3462", "properties": {}, "type": "Feature"}, {"bbox": [8.510258, 47.361315, 8.517752, 47.362898], "geometry": {"coordinates": [[[8.517752, 47.361582], [8.517587, 47.361662], [8.517537, 47.361689], [8.517483, 47.361713], [8.517426, 47.361734], [8.517367, 47.361752], [8.517306, 47.361766], [8.517172, 47.36179], [8.517036, 47.361809], [8.516899, 47.361822], [8.516684, 47.36183], [8.51647, 47.361823], [8.516258, 47.361802], [8.513038, 47.361356], [8.512844, 47.361338], [8.5127, 47.361322], [8.512554, 47.361315], [8.512408, 47.361317], [8.512263, 47.361328], [8.51212, 47.361347], [8.51198, 47.361375], [8.511844, 47.361411], [8.511661, 47.361491], [8.511488, 47.361579], [8.511325, 47.361676], [8.511202, 47.361787], [8.510872, 47.362171], [8.510585, 47.362508], [8.510258, 47.362898]]], "type": "MultiLineString"}, "id": "3463", "properties": {}, "type": "Feature"}, {"bbox": [8.486757, 47.406745, 8.487711, 47.406936], "geometry": {"coordinates": [[[8.487711, 47.406879], [8.487697, 47.40686], [8.487679, 47.406841], [8.48766, 47.406824], [8.487639, 47.406807], [8.487615, 47.406792], [8.48759, 47.406778], [8.487564, 47.406765], [8.487532, 47.406757], [8.487499, 47.406751], [8.487465, 47.406747], [8.487431, 47.406745], [8.487397, 47.406745], [8.487363, 47.406748], [8.48733, 47.406752], [8.487297, 47.406758], [8.487265, 47.406766], [8.487234, 47.406776], [8.486757, 47.406936]]], "type": "MultiLineString"}, "id": "3465", "properties": {}, "type": "Feature"}, {"bbox": [8.507222, 47.324639, 8.510403, 47.324799], "geometry": {"coordinates": [[[8.510403, 47.32465], [8.510264, 47.324642], [8.510124, 47.324639], [8.509984, 47.324642], [8.509338, 47.324658], [8.509128, 47.32467], [8.508921, 47.324694], [8.508717, 47.324732], [8.50863, 47.324756], [8.508539, 47.324775], [8.508446, 47.324788], [8.508352, 47.324796], [8.508258, 47.324799], [8.508163, 47.324796], [8.508069, 47.324788], [8.507976, 47.324774], [8.50769, 47.324725], [8.507597, 47.324715], [8.507503, 47.32471], [8.507409, 47.324711], [8.507315, 47.324718], [8.507222, 47.32473]]], "type": "MultiLineString"}, "id": "3466", "properties": {}, "type": "Feature"}, {"bbox": [8.481089, 47.402158, 8.495887, 47.40701], "geometry": {"coordinates": [[[8.495887, 47.402158], [8.495878, 47.402228], [8.495849, 47.402271], [8.495798, 47.402304], [8.495632, 47.402367], [8.495544, 47.402404], [8.495457, 47.402442], [8.495371, 47.402481], [8.494191, 47.403057], [8.494053, 47.403118], [8.493907, 47.403171], [8.493755, 47.403216], [8.492565, 47.403539], [8.4924, 47.403586], [8.49224, 47.403638], [8.492084, 47.403697], [8.491644, 47.403874], [8.491437, 47.403953], [8.491226, 47.404029], [8.491013, 47.404101], [8.490922, 47.404129], [8.49083, 47.404156], [8.490738, 47.404182], [8.490684, 47.404196], [8.490631, 47.40421], [8.490578, 47.404224], [8.490019, 47.404375], [8.489065, 47.404613], [8.488774, 47.404692], [8.488486, 47.404775], [8.4882, 47.404861], [8.488056, 47.404908], [8.487913, 47.404956], [8.487771, 47.405006], [8.487157, 47.405221], [8.486117, 47.405586], [8.48602, 47.405621], [8.485922, 47.405654], [8.485822, 47.405687], [8.485361, 47.405829], [8.485308, 47.405845], [8.485254, 47.40586], [8.4852, 47.405875], [8.484757, 47.405974], [8.484496, 47.406036], [8.484239, 47.406105], [8.483986, 47.406181], [8.483813, 47.406234], [8.483627, 47.40629], [8.483444, 47.406349], [8.483263, 47.406411], [8.482544, 47.406676], [8.482055, 47.40686], [8.481836, 47.406945], [8.481762, 47.406973], [8.481726, 47.406985], [8.481688, 47.406995], [8.48165, 47.407002], [8.48161, 47.407007], [8.48157, 47.40701], [8.48153, 47.40701], [8.48149, 47.407008], [8.481433, 47.406997], [8.481376, 47.406984], [8.481322, 47.406967], [8.48127, 47.406948], [8.48122, 47.406926], [8.481173, 47.406901], [8.48113, 47.406873], [8.481089, 47.406843]]], "type": "MultiLineString"}, "id": "3475", "properties": {}, "type": "Feature"}, {"bbox": [8.528466, 47.353432, 8.529344, 47.353452], "geometry": {"coordinates": [[[8.529344, 47.353452], [8.528466, 47.353432]]], "type": "MultiLineString"}, "id": "3477", "properties": {}, "type": "Feature"}, {"bbox": [8.511018, 47.354879, 8.513399, 47.355534], "geometry": {"coordinates": [[[8.513399, 47.355534], [8.513159, 47.355504], [8.512182, 47.355219], [8.511734, 47.355088], [8.511018, 47.354879]]], "type": "MultiLineString"}, "id": "3478", "properties": {}, "type": "Feature"}, {"bbox": [8.521881, 47.360429, 8.522809, 47.360515], "geometry": {"coordinates": [[[8.522809, 47.360515], [8.521881, 47.360429]]], "type": "MultiLineString"}, "id": "3479", "properties": {}, "type": "Feature"}, {"bbox": [8.505326, 47.358344, 8.50761, 47.359374], "geometry": {"coordinates": [[[8.50761, 47.359374], [8.507143, 47.359163], [8.506781, 47.359], [8.506411, 47.358833], [8.50604, 47.358666], [8.505686, 47.358506], [8.505326, 47.358344]]], "type": "MultiLineString"}, "id": "3480", "properties": {}, "type": "Feature"}, {"bbox": [8.506017, 47.361195, 8.508495, 47.362841], "geometry": {"coordinates": [[[8.508495, 47.362841], [8.50838, 47.362774], [8.507918, 47.362428], [8.50741, 47.362068], [8.507191, 47.361908], [8.506585, 47.361466], [8.506017, 47.361195]]], "type": "MultiLineString"}, "id": "3481", "properties": {}, "type": "Feature"}, {"bbox": [8.510184, 47.356394, 8.514183, 47.357801], "geometry": {"coordinates": [[[8.514183, 47.357801], [8.514097, 47.35777], [8.514014, 47.357738], [8.513933, 47.357703], [8.513208, 47.357374], [8.512883, 47.357224], [8.51254, 47.357092], [8.512183, 47.356979], [8.511446, 47.356756], [8.511319, 47.35671], [8.511295, 47.356702], [8.510915, 47.356596], [8.510184, 47.356394]]], "type": "MultiLineString"}, "id": "3482", "properties": {}, "type": "Feature"}, {"bbox": [8.509004, 47.357768, 8.5174, 47.361356], "geometry": {"coordinates": [[[8.5174, 47.361261], [8.517097, 47.361356], [8.516455, 47.361137], [8.51445, 47.36051], [8.514335, 47.360474], [8.513511, 47.360217], [8.512942, 47.360039], [8.512703, 47.359952], [8.512653, 47.359928], [8.512491, 47.359853], [8.512315, 47.359768], [8.512126, 47.359674], [8.512078, 47.35965], [8.511777, 47.359497], [8.511573, 47.359384], [8.511393, 47.359284], [8.511238, 47.359195], [8.510981, 47.359043], [8.510536, 47.358774], [8.510444, 47.358718], [8.510267, 47.35861], [8.509998, 47.358445], [8.509798, 47.358314], [8.509662, 47.358225], [8.509446, 47.358074], [8.509279, 47.357954], [8.509125, 47.357844], [8.509004, 47.357768]]], "type": "MultiLineString"}, "id": "3483", "properties": {}, "type": "Feature"}, {"bbox": [8.526618, 47.342138, 8.528236, 47.342934], "geometry": {"coordinates": [[[8.528236, 47.342934], [8.526618, 47.342138]]], "type": "MultiLineString"}, "id": "3490", "properties": {}, "type": "Feature"}, {"bbox": [8.528207, 47.340583, 8.530182, 47.340818], "geometry": {"coordinates": [[[8.530182, 47.340635], [8.529619, 47.340748], [8.52944, 47.340778], [8.529246, 47.340814], [8.529222, 47.340817], [8.529199, 47.340818], [8.529175, 47.340818], [8.529151, 47.340816], [8.529127, 47.340813], [8.529104, 47.340809], [8.528341, 47.34063], [8.52827, 47.340606], [8.528207, 47.340583]]], "type": "MultiLineString"}, "id": "3491", "properties": {}, "type": "Feature"}, {"bbox": [8.532011, 47.358832, 8.533678, 47.363744], "geometry": {"coordinates": [[[8.532011, 47.363744], [8.532073, 47.363563], [8.532522, 47.362282], [8.532866, 47.361283], [8.53326, 47.360102], [8.53326, 47.360011], [8.533678, 47.358832]]], "type": "MultiLineString"}, "id": "3492", "properties": {}, "type": "Feature"}, {"bbox": [8.516058, 47.332763, 8.516794, 47.335665], "geometry": {"coordinates": [[[8.516091, 47.335665], [8.516059, 47.335563], [8.516058, 47.335548], [8.516058, 47.335533], [8.516138, 47.335127], [8.516163, 47.33502], [8.516193, 47.334901], [8.516228, 47.334787], [8.516261, 47.334683], [8.516282, 47.334623], [8.516296, 47.334591], [8.516311, 47.334562], [8.516387, 47.334435], [8.516458, 47.334309], [8.516603, 47.33407], [8.516714, 47.333822], [8.516789, 47.333568], [8.516794, 47.333467], [8.516784, 47.333366], [8.51676, 47.333266], [8.516722, 47.333168], [8.516607, 47.332937], [8.516584, 47.332879], [8.516563, 47.332821], [8.516545, 47.332763]]], "type": "MultiLineString"}, "id": "3498", "properties": {}, "type": "Feature"}, {"bbox": [8.516855, 47.33638, 8.517548, 47.337766], "geometry": {"coordinates": [[[8.516855, 47.337766], [8.516918, 47.337655], [8.516976, 47.337521], [8.517278, 47.336839], [8.517335, 47.336732], [8.517392, 47.336625], [8.51745, 47.336518], [8.517463, 47.336494], [8.517478, 47.33647], [8.517494, 47.336447], [8.517511, 47.336424], [8.517529, 47.336402], [8.517548, 47.33638]]], "type": "MultiLineString"}, "id": "3499", "properties": {}, "type": "Feature"}, {"bbox": [8.524281, 47.379263, 8.525508, 47.38041], "geometry": {"coordinates": [[[8.524281, 47.379263], [8.524721, 47.379693], [8.52501, 47.379952], [8.525508, 47.38041]]], "type": "MultiLineString"}, "id": "3500", "properties": {}, "type": "Feature"}, {"bbox": [8.548781, 47.36029, 8.551604, 47.361038], "geometry": {"coordinates": [[[8.548781, 47.36029], [8.550262, 47.360587], [8.551075, 47.360864], [8.551478, 47.361012], [8.551604, 47.361038]]], "type": "MultiLineString"}, "id": "3502", "properties": {}, "type": "Feature"}, {"bbox": [8.56115, 47.368714, 8.562347, 47.370979], "geometry": {"coordinates": [[[8.561506, 47.370979], [8.56141, 47.370891], [8.561362, 47.370859], [8.561319, 47.370825], [8.56128, 47.370788], [8.561245, 47.370749], [8.561216, 47.370708], [8.561192, 47.370666], [8.561173, 47.370623], [8.56116, 47.370578], [8.561152, 47.370533], [8.56115, 47.370488], [8.561153, 47.370443], [8.561162, 47.370398], [8.561177, 47.370354], [8.561197, 47.37031], [8.561222, 47.370268], [8.561654, 47.369585], [8.561958, 47.369112], [8.562347, 47.368714]]], "type": "MultiLineString"}, "id": "3503", "properties": {}, "type": "Feature"}, {"bbox": [8.560315, 47.376719, 8.563799, 47.378805], "geometry": {"coordinates": [[[8.560315, 47.376719], [8.560348, 47.376844], [8.56056, 47.377044], [8.560626, 47.377092], [8.560697, 47.377135], [8.560774, 47.377174], [8.560856, 47.377208], [8.560942, 47.377236], [8.561031, 47.377259], [8.561435, 47.377375], [8.561824, 47.377512], [8.562198, 47.377668], [8.562435, 47.377759], [8.562638, 47.377826], [8.562715, 47.377863], [8.562767, 47.377892], [8.562784, 47.377903], [8.562911, 47.377992], [8.563103, 47.378164], [8.563373, 47.378405], [8.563701, 47.378695], [8.563799, 47.378805]]], "type": "MultiLineString"}, "id": "3504", "properties": {}, "type": "Feature"}, {"bbox": [8.546953, 47.383651, 8.54823, 47.384193], "geometry": {"coordinates": [[[8.546953, 47.384193], [8.547049, 47.384103], [8.547158, 47.384018], [8.547278, 47.383941], [8.547408, 47.383872], [8.547546, 47.383811], [8.547692, 47.38376], [8.547835, 47.383713], [8.547914, 47.383688], [8.54823, 47.383651]]], "type": "MultiLineString"}, "id": "3505", "properties": {}, "type": "Feature"}, {"bbox": [8.567195, 47.364854, 8.570475, 47.365641], "geometry": {"coordinates": [[[8.567195, 47.365082], [8.567379, 47.365156], [8.568011, 47.365467], [8.568362, 47.365608], [8.568393, 47.365618], [8.568426, 47.365627], [8.56846, 47.365634], [8.568495, 47.365638], [8.56853, 47.365641], [8.568565, 47.365641], [8.5686, 47.365639], [8.568635, 47.365635], [8.568669, 47.365628], [8.568702, 47.36562], [8.568909, 47.365573], [8.569003, 47.365554], [8.5691, 47.365556], [8.569151, 47.365571], [8.56919, 47.365579], [8.569229, 47.365584], [8.569269, 47.365587], [8.56931, 47.365588], [8.56935, 47.365586], [8.56939, 47.365582], [8.569429, 47.365576], [8.569467, 47.365567], [8.569504, 47.365557], [8.56954, 47.365544], [8.569573, 47.365529], [8.569605, 47.365512], [8.569635, 47.365493], [8.569661, 47.365473], [8.569686, 47.365451], [8.56992, 47.365225], [8.570282, 47.364965], [8.570475, 47.364854]]], "type": "MultiLineString"}, "id": "3506", "properties": {}, "type": "Feature"}, {"bbox": [8.505107, 47.399819, 8.506294, 47.400335], "geometry": {"coordinates": [[[8.506294, 47.399819], [8.506031, 47.399924], [8.505578, 47.400129], [8.505107, 47.400335]]], "type": "MultiLineString"}, "id": "3507", "properties": {}, "type": "Feature"}, {"bbox": [8.540756, 47.421178, 8.549661, 47.424874], "geometry": {"coordinates": [[[8.549661, 47.421178], [8.548902, 47.421536], [8.547122, 47.422563], [8.546412, 47.422968], [8.545913, 47.423221], [8.54539, 47.423451], [8.544845, 47.423656], [8.544039, 47.423943], [8.543205, 47.424235], [8.543164, 47.424296], [8.541943, 47.42473], [8.541664, 47.424802], [8.541192, 47.424867], [8.541168, 47.424871], [8.541145, 47.424873], [8.541121, 47.424874], [8.541097, 47.424873], [8.541073, 47.424871], [8.54105, 47.424868], [8.541027, 47.424863], [8.541005, 47.424857], [8.540984, 47.42485], [8.540963, 47.424841], [8.540944, 47.424831], [8.540756, 47.424702]]], "type": "MultiLineString"}, "id": "3509", "properties": {}, "type": "Feature"}, {"bbox": [8.542238, 47.421626, 8.542494, 47.423082], "geometry": {"coordinates": [[[8.542305, 47.423082], [8.542268, 47.42296], [8.542246, 47.422836], [8.542238, 47.422711], [8.542246, 47.422587], [8.542469, 47.421709], [8.542494, 47.421626]]], "type": "MultiLineString"}, "id": "3510", "properties": {}, "type": "Feature"}, {"bbox": [8.542101, 47.417488, 8.545557, 47.418327], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545507, 47.417562], [8.545451, 47.417634], [8.545388, 47.417704], [8.545247, 47.417824], [8.545093, 47.417937], [8.544928, 47.418043], [8.544778, 47.418124], [8.544619, 47.418197], [8.544454, 47.418263], [8.544348, 47.418289], [8.544239, 47.418308], [8.544129, 47.418321], [8.544016, 47.418327], [8.543904, 47.418326], [8.543792, 47.418319], [8.542113, 47.418201], [8.542101, 47.418258]]], "type": "MultiLineString"}, "id": "3511", "properties": {}, "type": "Feature"}, {"bbox": [8.529365, 47.393515, 8.530341, 47.396972], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.529499, 47.393994], [8.529508, 47.394026], [8.529543, 47.394153], [8.529694, 47.394687], [8.52971, 47.394742], [8.529738, 47.394846], [8.530008, 47.395815], [8.530264, 47.396703], [8.530269, 47.396715], [8.530275, 47.396726], [8.530283, 47.396737], [8.530292, 47.396747], [8.530302, 47.396756], [8.53031, 47.396762], [8.530317, 47.396768], [8.530323, 47.396774], [8.530328, 47.396781], [8.530333, 47.396788], [8.530336, 47.396795], [8.530339, 47.396803], [8.53034, 47.39681], [8.530341, 47.396818], [8.53034, 47.396825], [8.530302, 47.396972]]], "type": "MultiLineString"}, "id": "3514", "properties": {}, "type": "Feature"}, {"bbox": [8.542157, 47.425479, 8.546128, 47.427397], "geometry": {"coordinates": [[[8.542157, 47.425479], [8.542158, 47.425497], [8.542161, 47.425514], [8.542167, 47.42553], [8.542175, 47.425547], [8.542185, 47.425563], [8.542197, 47.425578], [8.54221, 47.425592], [8.542226, 47.425606], [8.542243, 47.425619], [8.542339, 47.425686], [8.542575, 47.425809], [8.54384, 47.426387], [8.543993, 47.426457], [8.544382, 47.426636], [8.544487, 47.426685], [8.545108, 47.42697], [8.545758, 47.427269], [8.546128, 47.427397]]], "type": "MultiLineString"}, "id": "3516", "properties": {}, "type": "Feature"}, {"bbox": [8.595315, 47.35714, 8.595477, 47.358432], "geometry": {"coordinates": [[[8.595343, 47.35714], [8.595315, 47.357295], [8.595392, 47.357778], [8.595407, 47.357883], [8.595411, 47.357988], [8.595404, 47.358094], [8.595389, 47.35829], [8.595389, 47.358305], [8.595391, 47.358321], [8.595395, 47.358337], [8.595401, 47.358352], [8.595409, 47.358367], [8.595419, 47.358382], [8.595431, 47.358395], [8.595444, 47.358408], [8.59546, 47.358421], [8.595477, 47.358432]]], "type": "MultiLineString"}, "id": "3528", "properties": {}, "type": "Feature"}, {"bbox": [8.530259, 47.339792, 8.530508, 47.340827], "geometry": {"coordinates": [[[8.530259, 47.340827], [8.530448, 47.340675], [8.530508, 47.34046], [8.530503, 47.340443], [8.530304, 47.339792]]], "type": "MultiLineString"}, "id": "3529", "properties": {}, "type": "Feature"}, {"bbox": [8.533204, 47.336616, 8.536249, 47.337883], "geometry": {"coordinates": [[[8.536249, 47.337883], [8.536031, 47.337812], [8.535944, 47.337793], [8.535855, 47.337779], [8.535765, 47.337771], [8.535674, 47.337768], [8.535583, 47.33777], [8.53482, 47.337801], [8.534796, 47.337801], [8.534773, 47.337799], [8.53475, 47.337796], [8.534727, 47.337792], [8.534705, 47.337786], [8.534684, 47.337779], [8.534664, 47.337771], [8.534645, 47.337762], [8.534627, 47.337752], [8.53461, 47.33774], [8.534595, 47.337728], [8.534581, 47.337715], [8.534284, 47.337464], [8.534166, 47.337363], [8.53396, 47.337201], [8.533688, 47.336997], [8.533279, 47.336703], [8.533204, 47.336616]]], "type": "MultiLineString"}, "id": "3530", "properties": {}, "type": "Feature"}, {"bbox": [8.532923, 47.342867, 8.534851, 47.344495], "geometry": {"coordinates": [[[8.532923, 47.344495], [8.53322, 47.344181], [8.533998, 47.343412], [8.534193, 47.343235], [8.534356, 47.343124], [8.534707, 47.342921], [8.534799, 47.342885], [8.534849, 47.342868], [8.534851, 47.342867]]], "type": "MultiLineString"}, "id": "3531", "properties": {}, "type": "Feature"}, {"bbox": [8.492532, 47.373959, 8.494473, 47.374679], "geometry": {"coordinates": [[[8.494473, 47.374679], [8.494372, 47.374407], [8.493459, 47.37401], [8.493218, 47.374276], [8.493093, 47.37436], [8.49296, 47.374385], [8.492805, 47.374327], [8.492795, 47.374282], [8.492656, 47.374118], [8.492532, 47.373959]]], "type": "MultiLineString"}, "id": "3533", "properties": {}, "type": "Feature"}, {"bbox": [8.493266, 47.377416, 8.494133, 47.378166], "geometry": {"coordinates": [[[8.494133, 47.377416], [8.49393, 47.377529], [8.49365, 47.377806], [8.493266, 47.378166]]], "type": "MultiLineString"}, "id": "3534", "properties": {}, "type": "Feature"}, {"bbox": [8.534443, 47.40087, 8.535599, 47.401291], "geometry": {"coordinates": [[[8.535599, 47.40087], [8.535445, 47.400948], [8.535146, 47.401057], [8.534718, 47.401193], [8.534443, 47.401291]]], "type": "MultiLineString"}, "id": "3535", "properties": {}, "type": "Feature"}, {"bbox": [8.541948, 47.426408, 8.543566, 47.427357], "geometry": {"coordinates": [[[8.543566, 47.427357], [8.543393, 47.427233], [8.54319, 47.427103], [8.542747, 47.426908], [8.542285, 47.42668], [8.542215, 47.42665], [8.542149, 47.426616], [8.542088, 47.426577], [8.542032, 47.426535], [8.541982, 47.42649], [8.541973, 47.42648], [8.541965, 47.42647], [8.541959, 47.426459], [8.541954, 47.426448], [8.54195, 47.426437], [8.541948, 47.426426], [8.541948, 47.426414], [8.541948, 47.426408]]], "type": "MultiLineString"}, "id": "3536", "properties": {}, "type": "Feature"}, {"bbox": [8.488094, 47.386261, 8.490224, 47.386739], "geometry": {"coordinates": [[[8.490224, 47.386261], [8.489089, 47.386531], [8.488094, 47.386739]]], "type": "MultiLineString"}, "id": "3537", "properties": {}, "type": "Feature"}, {"bbox": [8.506848, 47.42569, 8.509438, 47.426665], "geometry": {"coordinates": [[[8.509438, 47.42569], [8.509145, 47.425794], [8.50908, 47.425814], [8.509012, 47.425831], [8.508943, 47.425843], [8.508369, 47.425937], [8.507492, 47.426079], [8.507436, 47.426094], [8.507382, 47.426111], [8.507331, 47.426132], [8.507283, 47.426156], [8.507266, 47.426169], [8.507252, 47.426183], [8.507239, 47.426198], [8.506848, 47.426665]]], "type": "MultiLineString"}, "id": "3542", "properties": {}, "type": "Feature"}, {"bbox": [8.499577, 47.419298, 8.501569, 47.42085], "geometry": {"coordinates": [[[8.501569, 47.42085], [8.501469, 47.420763], [8.50137, 47.420676], [8.50127, 47.420588], [8.500772, 47.420154], [8.500647, 47.420047], [8.500531, 47.419936], [8.500422, 47.419821], [8.500385, 47.419777], [8.500347, 47.419734], [8.500308, 47.419692], [8.499682, 47.419349], [8.499577, 47.419298]]], "type": "MultiLineString"}, "id": "3543", "properties": {}, "type": "Feature"}, {"bbox": [8.507432, 47.418827, 8.509095, 47.420443], "geometry": {"coordinates": [[[8.507432, 47.418827], [8.507592, 47.418947], [8.508268, 47.419518], [8.508776, 47.420015], [8.508883, 47.420122], [8.508983, 47.420232], [8.509076, 47.420345], [8.509083, 47.420355], [8.509088, 47.420365], [8.509092, 47.420376], [8.509094, 47.420387], [8.509095, 47.420399], [8.509095, 47.42041], [8.509093, 47.420421], [8.50909, 47.420432], [8.509085, 47.420443]]], "type": "MultiLineString"}, "id": "3544", "properties": {}, "type": "Feature"}, {"bbox": [8.493949, 47.403986, 8.496216, 47.409459], "geometry": {"coordinates": [[[8.496216, 47.403986], [8.496192, 47.404026], [8.496162, 47.404064], [8.496129, 47.4041], [8.49609, 47.404134], [8.496048, 47.404165], [8.496001, 47.404194], [8.495951, 47.40422], [8.495845, 47.404278], [8.495748, 47.404344], [8.49566, 47.404415], [8.495643, 47.404432], [8.495626, 47.404449], [8.495609, 47.404466], [8.49555, 47.404535], [8.495501, 47.404607], [8.495461, 47.404682], [8.495431, 47.404758], [8.495412, 47.404837], [8.495402, 47.404916], [8.495397, 47.404992], [8.495395, 47.40508], [8.495399, 47.405167], [8.495412, 47.405254], [8.49543, 47.40531], [8.495454, 47.405366], [8.495483, 47.40542], [8.495529, 47.405494], [8.495582, 47.405565], [8.495641, 47.405635], [8.495769, 47.405785], [8.495794, 47.405821], [8.495815, 47.405858], [8.495831, 47.405896], [8.495842, 47.405935], [8.495848, 47.405974], [8.495849, 47.406014], [8.495846, 47.406053], [8.495837, 47.406092], [8.495824, 47.406131], [8.495806, 47.406168], [8.495783, 47.406204], [8.495756, 47.406239], [8.495724, 47.406273], [8.495689, 47.406304], [8.495501, 47.406442], [8.495413, 47.406507], [8.495333, 47.406577], [8.495262, 47.406651], [8.495199, 47.406728], [8.495146, 47.406809], [8.495103, 47.406892], [8.495075, 47.406951], [8.494963, 47.407198], [8.494677, 47.407871], [8.494523, 47.408182], [8.494393, 47.408435], [8.494278, 47.408649], [8.494155, 47.408924], [8.493969, 47.409355], [8.493949, 47.409459]]], "type": "MultiLineString"}, "id": "3545", "properties": {}, "type": "Feature"}, {"bbox": [8.556653, 47.370009, 8.562651, 47.371451], "geometry": {"coordinates": [[[8.556653, 47.370009], [8.55674, 47.370048], [8.55715, 47.370214], [8.557414, 47.370318], [8.557687, 47.370409], [8.557969, 47.370488], [8.558003, 47.370497], [8.558037, 47.370505], [8.558071, 47.370513], [8.558789, 47.370686], [8.559009, 47.370726], [8.559062, 47.370737], [8.559116, 47.370747], [8.55917, 47.370756], [8.559673, 47.370847], [8.559926, 47.370886], [8.560183, 47.370915], [8.560441, 47.370935], [8.560861, 47.370943], [8.56132, 47.370947], [8.561358, 47.370949], [8.561396, 47.370954], [8.561434, 47.37096], [8.56147, 47.370969], [8.561506, 47.370979], [8.561623, 47.371007], [8.561735, 47.371042], [8.561843, 47.371085], [8.562138, 47.37122], [8.562651, 47.371451]]], "type": "MultiLineString"}, "id": "3546", "properties": {}, "type": "Feature"}, {"bbox": [8.55839, 47.371844, 8.561521, 47.373898], "geometry": {"coordinates": [[[8.558917, 47.371844], [8.558908, 47.371948], [8.558901, 47.371979], [8.558877, 47.372057], [8.558627, 47.372891], [8.558595, 47.372969], [8.558558, 47.373068], [8.558398, 47.373573], [8.558393, 47.373596], [8.55839, 47.373619], [8.55839, 47.373642], [8.558393, 47.373665], [8.558398, 47.373688], [8.558407, 47.373711], [8.558419, 47.373733], [8.558433, 47.373754], [8.55845, 47.373774], [8.55847, 47.373793], [8.558492, 47.373811], [8.558516, 47.373827], [8.558542, 47.373842], [8.55857, 47.373856], [8.558599, 47.373868], [8.55863, 47.373878], [8.558662, 47.373886], [8.558695, 47.373892], [8.558729, 47.373896], [8.558763, 47.373898], [8.558797, 47.373898], [8.558831, 47.373897], [8.558865, 47.373893], [8.558898, 47.373887], [8.559289, 47.37381], [8.561, 47.373472], [8.561091, 47.373454], [8.561136, 47.373447], [8.56118, 47.373443], [8.561226, 47.373441], [8.561271, 47.373443], [8.561316, 47.373447], [8.56136, 47.373454], [8.561403, 47.373464], [8.561444, 47.373477], [8.561484, 47.373491], [8.561521, 47.373509]]], "type": "MultiLineString"}, "id": "3547", "properties": {}, "type": "Feature"}, {"bbox": [8.559141, 47.375236, 8.560414, 47.375321], "geometry": {"coordinates": [[[8.559141, 47.375236], [8.55984, 47.375278], [8.560007, 47.375288], [8.560414, 47.375321]]], "type": "MultiLineString"}, "id": "3548", "properties": {}, "type": "Feature"}, {"bbox": [8.556365, 47.380795, 8.557257, 47.38289], "geometry": {"coordinates": [[[8.556365, 47.380795], [8.556603, 47.381038], [8.556637, 47.381078], [8.556666, 47.38112], [8.556688, 47.381164], [8.556705, 47.381208], [8.556768, 47.381401], [8.556831, 47.381641], [8.556996, 47.382218], [8.557086, 47.382486], [8.557108, 47.382541], [8.557161, 47.382652], [8.557161, 47.382652], [8.557195, 47.38273], [8.557257, 47.38289]]], "type": "MultiLineString"}, "id": "3549", "properties": {}, "type": "Feature"}, {"bbox": [8.551741, 47.369212, 8.556068, 47.374781], "geometry": {"coordinates": [[[8.551787, 47.374781], [8.551768, 47.374746], [8.551754, 47.374709], [8.551745, 47.374672], [8.551741, 47.374634], [8.551741, 47.374596], [8.551747, 47.374559], [8.551757, 47.374522], [8.551773, 47.374485], [8.551793, 47.37445], [8.552045, 47.373912], [8.552041, 47.373894], [8.552038, 47.373876], [8.552036, 47.373859], [8.552035, 47.373823], [8.552039, 47.373788], [8.552048, 47.373753], [8.552061, 47.373719], [8.552079, 47.373686], [8.552286, 47.373407], [8.552398, 47.37329], [8.552793, 47.37285], [8.554137, 47.371356], [8.554591, 47.370865], [8.555004, 47.370399], [8.555507, 47.369829], [8.555719, 47.369581], [8.555796, 47.369497], [8.555955, 47.369319], [8.556068, 47.369212]]], "type": "MultiLineString"}, "id": "3550", "properties": {}, "type": "Feature"}, {"bbox": [8.552922, 47.371546, 8.556759, 47.375339], "geometry": {"coordinates": [[[8.552922, 47.375339], [8.553319, 47.375014], [8.554025, 47.374369], [8.5546, 47.373832], [8.555755, 47.372718], [8.555928, 47.372556], [8.556268, 47.372138], [8.556422, 47.371996], [8.556721, 47.37167], [8.556729, 47.371663], [8.556737, 47.371656], [8.556743, 47.371648], [8.556748, 47.37164], [8.556753, 47.371632], [8.556756, 47.371623], [8.556758, 47.371614], [8.556759, 47.371605], [8.556758, 47.371596], [8.556757, 47.371588], [8.556755, 47.371579], [8.556751, 47.37157], [8.556746, 47.371562], [8.556741, 47.371554], [8.556734, 47.371546]]], "type": "MultiLineString"}, "id": "3551", "properties": {}, "type": "Feature"}, {"bbox": [8.522709, 47.395375, 8.526041, 47.396198], "geometry": {"coordinates": [[[8.526041, 47.395375], [8.525945, 47.395405], [8.525607, 47.395515], [8.525022, 47.39569], [8.524966, 47.395707], [8.524908, 47.395723], [8.52485, 47.395737], [8.524296, 47.395856], [8.523354, 47.396058], [8.52277, 47.396184], [8.522709, 47.396198]]], "type": "MultiLineString"}, "id": "3555", "properties": {}, "type": "Feature"}, {"bbox": [8.506538, 47.411662, 8.50972, 47.416369], "geometry": {"coordinates": [[[8.509701, 47.411662], [8.509713, 47.412318], [8.50972, 47.412955], [8.509704, 47.413174], [8.509679, 47.413393], [8.509646, 47.413611], [8.509638, 47.413655], [8.509609, 47.413786], [8.50946, 47.414495], [8.50944, 47.414559], [8.509405, 47.414639], [8.509359, 47.414717], [8.509302, 47.414791], [8.509236, 47.414862], [8.509161, 47.414928], [8.509078, 47.41499], [8.508986, 47.415046], [8.508572, 47.415297], [8.508189, 47.415524], [8.50797, 47.415653], [8.507745, 47.415777], [8.507517, 47.415898], [8.506807, 47.416266], [8.506721, 47.416305], [8.506631, 47.416339], [8.506538, 47.416369]]], "type": "MultiLineString"}, "id": "3556", "properties": {}, "type": "Feature"}, {"bbox": [8.501927, 47.399279, 8.502197, 47.399722], "geometry": {"coordinates": [[[8.501927, 47.399279], [8.501962, 47.399337], [8.502058, 47.399485], [8.502197, 47.399722]]], "type": "MultiLineString"}, "id": "3557", "properties": {}, "type": "Feature"}, {"bbox": [8.51976, 47.337077, 8.520045, 47.342955], "geometry": {"coordinates": [[[8.520014, 47.342955], [8.520025, 47.342939], [8.520033, 47.342922], [8.520039, 47.342904], [8.520043, 47.342887], [8.520045, 47.342869], [8.520045, 47.342851], [8.520043, 47.342833], [8.519971, 47.342477], [8.519965, 47.342408], [8.519899, 47.341127], [8.519881, 47.340767], [8.519876, 47.340674], [8.519844, 47.340021], [8.519829, 47.339002], [8.519826, 47.338765], [8.51976, 47.337077]]], "type": "MultiLineString"}, "id": "3569", "properties": {}, "type": "Feature"}, {"bbox": [8.545382, 47.391006, 8.550451, 47.392553], "geometry": {"coordinates": [[[8.545382, 47.391006], [8.545564, 47.39113], [8.545824, 47.391272], [8.546127, 47.391437], [8.546475, 47.391621], [8.546777, 47.391772], [8.547096, 47.391907], [8.547429, 47.392025], [8.547565, 47.392073], [8.547702, 47.392118], [8.547841, 47.39216], [8.54809, 47.392228], [8.548343, 47.392288], [8.548601, 47.392339], [8.548766, 47.392364], [8.548931, 47.392389], [8.549096, 47.392413], [8.549891, 47.392524], [8.549983, 47.392539], [8.550076, 47.392549], [8.55017, 47.392553], [8.550265, 47.392552], [8.550359, 47.392545], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "3576", "properties": {}, "type": "Feature"}, {"bbox": [8.545952, 47.386131, 8.546324, 47.387122], "geometry": {"coordinates": [[[8.546324, 47.386131], [8.546305, 47.386157], [8.546288, 47.386183], [8.546273, 47.38621], [8.546, 47.386992], [8.545952, 47.387122]]], "type": "MultiLineString"}, "id": "3577", "properties": {}, "type": "Feature"}, {"bbox": [8.516051, 47.394749, 8.523588, 47.39619], "geometry": {"coordinates": [[[8.523588, 47.394749], [8.523463, 47.394785], [8.523196, 47.394856], [8.522144, 47.395141], [8.521718, 47.395261], [8.520286, 47.395621], [8.518513, 47.396067], [8.518348, 47.396106], [8.518178, 47.396135], [8.518005, 47.396155], [8.517842, 47.396171], [8.517678, 47.39618], [8.517513, 47.396183], [8.516239, 47.39619], [8.51606, 47.396178], [8.516051, 47.396176]]], "type": "MultiLineString"}, "id": "3582", "properties": {}, "type": "Feature"}, {"bbox": [8.548272, 47.386066, 8.548504, 47.387109], "geometry": {"coordinates": [[[8.548272, 47.386066], [8.548314, 47.386099], [8.548351, 47.386134], [8.548383, 47.386172], [8.548411, 47.386211], [8.548434, 47.386251], [8.548452, 47.386293], [8.548465, 47.386336], [8.548472, 47.386379], [8.548474, 47.386422], [8.548494, 47.386651], [8.548504, 47.38688], [8.548504, 47.387109]]], "type": "MultiLineString"}, "id": "3586", "properties": {}, "type": "Feature"}, {"bbox": [8.547382, 47.387081, 8.549096, 47.392413], "geometry": {"coordinates": [[[8.547382, 47.387081], [8.547501, 47.387113], [8.547515, 47.387118], [8.547529, 47.387123], [8.547541, 47.387129], [8.547553, 47.387136], [8.547564, 47.387143], [8.547574, 47.387151], [8.547583, 47.38716], [8.54759, 47.387169], [8.547596, 47.387179], [8.547601, 47.387189], [8.547605, 47.387199], [8.547809, 47.387919], [8.547849, 47.388058], [8.547932, 47.388349], [8.548377, 47.38992], [8.548401, 47.390002], [8.548424, 47.390084], [8.549052, 47.392297], [8.549096, 47.392413]]], "type": "MultiLineString"}, "id": "3587", "properties": {}, "type": "Feature"}, {"bbox": [8.50609, 47.380532, 8.512578, 47.383244], "geometry": {"coordinates": [[[8.512578, 47.380532], [8.511671, 47.380886], [8.509879, 47.381628], [8.509199, 47.381911], [8.508999, 47.381994], [8.508208, 47.382323], [8.507185, 47.382752], [8.506194, 47.383166], [8.50609, 47.383244]]], "type": "MultiLineString"}, "id": "3588", "properties": {}, "type": "Feature"}, {"bbox": [8.550276, 47.382622, 8.55231, 47.384427], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552217, 47.382705], [8.551705, 47.383159], [8.550895, 47.383877], [8.550276, 47.384427]]], "type": "MultiLineString"}, "id": "3589", "properties": {}, "type": "Feature"}, {"bbox": [8.548331, 47.384394, 8.551548, 47.386625], "geometry": {"coordinates": [[[8.548331, 47.384421], [8.548358, 47.384414], [8.548385, 47.384408], [8.548414, 47.384404], [8.548442, 47.384402], [8.548471, 47.384402], [8.5485, 47.384403], [8.548529, 47.384406], [8.548557, 47.384411], [8.548584, 47.384418], [8.54861, 47.384426], [8.548663, 47.384455], [8.548713, 47.384487], [8.548758, 47.384522], [8.548799, 47.384559], [8.548836, 47.384598], [8.548876, 47.384649], [8.54891, 47.384702], [8.548937, 47.384758], [8.548955, 47.384814], [8.549042, 47.385356], [8.549046, 47.385371], [8.549053, 47.385386], [8.549061, 47.3854], [8.549071, 47.385414], [8.549082, 47.385427], [8.549096, 47.38544], [8.549111, 47.385452], [8.549127, 47.385462], [8.549144, 47.385472], [8.549163, 47.385481], [8.549183, 47.385489], [8.549204, 47.385495], [8.549225, 47.3855], [8.549247, 47.385504], [8.54927, 47.385507], [8.549292, 47.385508], [8.549315, 47.385508], [8.549338, 47.385507], [8.54936, 47.385504], [8.549382, 47.3855], [8.549404, 47.385495], [8.549424, 47.385489], [8.549444, 47.385481], [8.549463, 47.385472], [8.549481, 47.385462], [8.549497, 47.385452], [8.549512, 47.38544], [8.549525, 47.385427], [8.549537, 47.385414], [8.549547, 47.3854], [8.549555, 47.385386], [8.549561, 47.385371], [8.549565, 47.385356], [8.549594, 47.385124], [8.549612, 47.385023], [8.549643, 47.384924], [8.549686, 47.384826], [8.54974, 47.384732], [8.549868, 47.384524], [8.549887, 47.384492], [8.549899, 47.384479], [8.549911, 47.384466], [8.549926, 47.384454], [8.549942, 47.384443], [8.549959, 47.384433], [8.549977, 47.384424], [8.549996, 47.384416], [8.550017, 47.384409], [8.550038, 47.384404], [8.55006, 47.384399], [8.550082, 47.384396], [8.550104, 47.384394], [8.550127, 47.384394], [8.55015, 47.384395], [8.550172, 47.384397], [8.550194, 47.3844], [8.550216, 47.384405], [8.550237, 47.384411], [8.550257, 47.384418], [8.550276, 47.384427], [8.550294, 47.384436], [8.55031, 47.384446], [8.550325, 47.384457], [8.550339, 47.384469], [8.550351, 47.384482], [8.550361, 47.384495], [8.55037, 47.384509], [8.550377, 47.384523], [8.550382, 47.384538], [8.550386, 47.384553], [8.550387, 47.384568], [8.550387, 47.384583], [8.550384, 47.384598], [8.55038, 47.384613], [8.550374, 47.384627], [8.550367, 47.384641], [8.550242, 47.384841], [8.550209, 47.384898], [8.550182, 47.384957], [8.550161, 47.385016], [8.550143, 47.385082], [8.55013, 47.385147], [8.550123, 47.385214], [8.550119, 47.385312], [8.550121, 47.38541], [8.55013, 47.385508], [8.550153, 47.385928], [8.550157, 47.385944], [8.550164, 47.38596], [8.550172, 47.385975], [8.550182, 47.38599], [8.550194, 47.386004], [8.550208, 47.386017], [8.550224, 47.386029], [8.550241, 47.386041], [8.550259, 47.38605], [8.550277, 47.386059], [8.550297, 47.386067], [8.550318, 47.386073], [8.55034, 47.386078], [8.550362, 47.386082], [8.550384, 47.386084], [8.550407, 47.386085], [8.55043, 47.386085], [8.550452, 47.386084], [8.550475, 47.386081], [8.550497, 47.386077], [8.550518, 47.386072], [8.550539, 47.386065], [8.550558, 47.386057], [8.550577, 47.386048], [8.550594, 47.386038], [8.550611, 47.386027], [8.550625, 47.386016], [8.550638, 47.386003], [8.55065, 47.38599], [8.55066, 47.385976], [8.550667, 47.385961], [8.550674, 47.385946], [8.550678, 47.385931], [8.55068, 47.385915], [8.55068, 47.3859], [8.550662, 47.385584], [8.550661, 47.385519], [8.55067, 47.385454], [8.550687, 47.38539], [8.550712, 47.385327], [8.550747, 47.385267], [8.550789, 47.385208], [8.550839, 47.385153], [8.551028, 47.384954], [8.55104, 47.384941], [8.551055, 47.384928], [8.551071, 47.384917], [8.551088, 47.384906], [8.551106, 47.384897], [8.551126, 47.384888], [8.551147, 47.384881], [8.551169, 47.384875], [8.551191, 47.384871], [8.551214, 47.384867], [8.551237, 47.384865], [8.55126, 47.384865], [8.551283, 47.384866], [8.551306, 47.384868], [8.551329, 47.384872], [8.551351, 47.384877], [8.551372, 47.384883], [8.551393, 47.384891], [8.551412, 47.384899], [8.551431, 47.384909], [8.551448, 47.38492], [8.551463, 47.384932], [8.551477, 47.384945], [8.551489, 47.384958], [8.551499, 47.384972], [8.551508, 47.384987], [8.551514, 47.385002], [8.551519, 47.385018], [8.551521, 47.385033], [8.551522, 47.385049], [8.55152, 47.385065], [8.551517, 47.385081], [8.551511, 47.385096], [8.551504, 47.385111], [8.551494, 47.385125], [8.551425, 47.385233], [8.551371, 47.385345], [8.551331, 47.38546], [8.551307, 47.385576], [8.551244, 47.385953], [8.551233, 47.38606], [8.551237, 47.386197], [8.551262, 47.386332], [8.551306, 47.386465], [8.551313, 47.386483], [8.551323, 47.386501], [8.551335, 47.386518], [8.551349, 47.386534], [8.551365, 47.386549], [8.551383, 47.386563], [8.551402, 47.386576], [8.551424, 47.386587], [8.551446, 47.386598], [8.55147, 47.386607], [8.551495, 47.386614], [8.551521, 47.38662], [8.551548, 47.386625]]], "type": "MultiLineString"}, "id": "3590", "properties": {}, "type": "Feature"}, {"bbox": [8.494553, 47.372668, 8.500869, 47.37381], "geometry": {"coordinates": [[[8.500859, 47.37381], [8.500865, 47.373785], [8.500869, 47.37376], [8.500869, 47.373735], [8.500867, 47.373711], [8.500861, 47.373686], [8.500852, 47.373662], [8.500841, 47.373638], [8.500517, 47.373209], [8.500454, 47.373142], [8.500383, 47.373078], [8.500304, 47.373019], [8.500219, 47.372964], [8.500127, 47.372914], [8.500029, 47.37287], [8.499926, 47.372831], [8.499667, 47.372769], [8.499401, 47.372721], [8.49913, 47.372688], [8.498856, 47.37267], [8.498581, 47.372668], [8.498306, 47.37268], [8.498051, 47.372698], [8.497799, 47.372729], [8.497551, 47.372773], [8.497208, 47.372835], [8.496867, 47.3729], [8.496527, 47.372967], [8.496104, 47.373045], [8.495675, 47.373105], [8.495241, 47.373149], [8.495009, 47.373167], [8.49478, 47.373194], [8.494553, 47.373231]]], "type": "MultiLineString"}, "id": "3591", "properties": {}, "type": "Feature"}, {"bbox": [8.494381, 47.379936, 8.495566, 47.380807], "geometry": {"coordinates": [[[8.495566, 47.380807], [8.494381, 47.379936]]], "type": "MultiLineString"}, "id": "3592", "properties": {}, "type": "Feature"}, {"bbox": [8.483733, 47.375717, 8.484236, 47.375864], "geometry": {"coordinates": [[[8.484236, 47.375864], [8.483853, 47.375762], [8.483826, 47.375754], [8.4838, 47.375745], [8.483773, 47.375736], [8.483752, 47.375725], [8.483733, 47.375717]]], "type": "MultiLineString"}, "id": "3594", "properties": {}, "type": "Feature"}, {"bbox": [8.562651, 47.369412, 8.565246, 47.371451], "geometry": {"coordinates": [[[8.562651, 47.371451], [8.562791, 47.371417], [8.562811, 47.371409], [8.562838, 47.371395], [8.563007, 47.371257], [8.563168, 47.371135], [8.563421, 47.370974], [8.563491, 47.370931], [8.563503, 47.370927], [8.563514, 47.370923], [8.563527, 47.370919], [8.563539, 47.370916], [8.563552, 47.370914], [8.563565, 47.370913], [8.563579, 47.370913], [8.563592, 47.370913], [8.563605, 47.370914], [8.563618, 47.370916], [8.563635, 47.370924], [8.563653, 47.370931], [8.563672, 47.370937], [8.563692, 47.370942], [8.563712, 47.370945], [8.563733, 47.370948], [8.563754, 47.370949], [8.563775, 47.370948], [8.564375, 47.370931], [8.564722, 47.370917], [8.564822, 47.370899], [8.564919, 47.370876], [8.565014, 47.370847], [8.565105, 47.370814], [8.565246, 47.370766], [8.565195, 47.370436], [8.565177, 47.370337], [8.565146, 47.370239], [8.565103, 47.370144], [8.565047, 47.370051], [8.56498, 47.369962], [8.564632, 47.369582], [8.564607, 47.369541], [8.564587, 47.369499], [8.564573, 47.369456], [8.564565, 47.369412], [8.564204, 47.369417]]], "type": "MultiLineString"}, "id": "3595", "properties": {}, "type": "Feature"}, {"bbox": [8.509729, 47.370226, 8.513241, 47.372469], "geometry": {"coordinates": [[[8.513241, 47.370226], [8.513082, 47.37038], [8.512631, 47.370888], [8.512299, 47.371136], [8.511832, 47.37145], [8.510392, 47.372141], [8.509729, 47.372469]]], "type": "MultiLineString"}, "id": "3600", "properties": {}, "type": "Feature"}, {"bbox": [8.477899, 47.416116, 8.478718, 47.417092], "geometry": {"coordinates": [[[8.478718, 47.416116], [8.478272, 47.416597], [8.477937, 47.416915], [8.477934, 47.416922], [8.477916, 47.416963], [8.477904, 47.417006], [8.477899, 47.417049], [8.477899, 47.417092]]], "type": "MultiLineString"}, "id": "3601", "properties": {}, "type": "Feature"}, {"bbox": [8.528704, 47.350484, 8.529853, 47.359029], "geometry": {"coordinates": [[[8.528704, 47.359029], [8.528717, 47.359009], [8.52873, 47.358988], [8.528741, 47.358966], [8.529361, 47.357654], [8.529378, 47.357619], [8.52939, 47.357583], [8.529398, 47.357546], [8.529401, 47.357509], [8.529399, 47.357472], [8.529392, 47.357435], [8.52939, 47.357426], [8.529387, 47.357416], [8.529384, 47.357407], [8.529238, 47.357009], [8.529224, 47.356977], [8.529211, 47.356944], [8.529199, 47.356911], [8.529179, 47.35683], [8.529169, 47.356748], [8.529169, 47.356666], [8.52918, 47.356584], [8.529381, 47.355506], [8.529406, 47.355409], [8.5294, 47.355381], [8.52937, 47.354267], [8.529344, 47.353452], [8.52963, 47.35323], [8.529676, 47.353194], [8.529717, 47.353156], [8.529753, 47.353116], [8.529784, 47.353073], [8.52981, 47.353029], [8.529829, 47.352984], [8.529843, 47.352938], [8.529851, 47.352891], [8.529853, 47.352844], [8.529849, 47.352797], [8.529839, 47.35275], [8.529823, 47.352704], [8.529801, 47.352659], [8.529356, 47.351982], [8.529283, 47.351881], [8.529223, 47.351776], [8.529176, 47.351668], [8.529144, 47.351557], [8.529113, 47.351436], [8.529097, 47.351314], [8.529097, 47.351192], [8.529112, 47.35107], [8.529142, 47.35095], [8.529276, 47.350484]]], "type": "MultiLineString"}, "id": "3602", "properties": {}, "type": "Feature"}, {"bbox": [8.523151, 47.394237, 8.523588, 47.394749], "geometry": {"coordinates": [[[8.523151, 47.394237], [8.523241, 47.394307], [8.523581, 47.394724], [8.523588, 47.394749]]], "type": "MultiLineString"}, "id": "3604", "properties": {}, "type": "Feature"}, {"bbox": [8.566727, 47.376163, 8.567307, 47.378437], "geometry": {"coordinates": [[[8.567307, 47.376163], [8.567217, 47.376298], [8.567185, 47.37635], [8.567147, 47.376401], [8.567102, 47.376449], [8.567052, 47.376495], [8.566997, 47.376537], [8.566936, 47.376577], [8.566892, 47.376613], [8.566852, 47.376651], [8.566817, 47.376692], [8.566788, 47.376734], [8.566764, 47.376779], [8.566746, 47.376824], [8.566733, 47.37687], [8.566727, 47.376917], [8.566727, 47.376964], [8.566732, 47.377011], [8.566752, 47.377144], [8.566775, 47.37727], [8.566799, 47.377376], [8.566839, 47.377624], [8.566861, 47.377746], [8.566917, 47.377941], [8.567, 47.378131], [8.56711, 47.378315], [8.567211, 47.378437]]], "type": "MultiLineString"}, "id": "3609", "properties": {}, "type": "Feature"}, {"bbox": [8.565023, 47.37229, 8.568656, 47.373542], "geometry": {"coordinates": [[[8.565023, 47.37229], [8.565079, 47.372318], [8.565139, 47.372342], [8.565201, 47.372364], [8.565266, 47.372381], [8.565332, 47.372395], [8.565854, 47.37247], [8.565938, 47.372483], [8.566023, 47.372492], [8.566108, 47.372496], [8.566109, 47.372501], [8.56611, 47.372505], [8.566112, 47.372509], [8.566115, 47.372512], [8.566118, 47.372516], [8.566121, 47.372519], [8.566125, 47.372523], [8.566129, 47.372526], [8.566134, 47.372528], [8.566139, 47.372531], [8.566144, 47.372533], [8.566149, 47.372535], [8.566155, 47.372536], [8.566254, 47.372568], [8.567046, 47.372889], [8.567686, 47.373148], [8.567806, 47.373198], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "3610", "properties": {}, "type": "Feature"}, {"bbox": [8.567379, 47.364435, 8.573472, 47.365156], "geometry": {"coordinates": [[[8.567379, 47.365156], [8.567691, 47.364867], [8.567795, 47.364814], [8.567906, 47.364767], [8.568022, 47.364726], [8.568142, 47.364693], [8.568266, 47.364666], [8.56844, 47.364646], [8.568612, 47.364619], [8.56878, 47.364583], [8.569188, 47.364461], [8.56923, 47.36445], [8.569273, 47.364442], [8.569317, 47.364437], [8.569362, 47.364435], [8.569407, 47.364435], [8.569451, 47.364438], [8.569495, 47.364443], [8.569538, 47.364452], [8.570096, 47.364628], [8.570475, 47.364854], [8.570544, 47.364875], [8.570616, 47.364892], [8.57069, 47.364905], [8.570765, 47.364914], [8.570841, 47.364918], [8.570917, 47.364917], [8.57131, 47.364932], [8.571443, 47.364943], [8.571492, 47.364949], [8.57177, 47.364991], [8.572092, 47.365034], [8.572111, 47.365037], [8.572131, 47.365039], [8.572151, 47.36504], [8.572171, 47.365039], [8.572191, 47.365037], [8.572211, 47.365034], [8.57223, 47.36503], [8.572249, 47.365025], [8.572266, 47.365019], [8.572283, 47.365011], [8.572299, 47.365003], [8.572532, 47.364895], [8.572594, 47.36487], [8.57266, 47.364849], [8.572727, 47.364831], [8.572797, 47.364817], [8.572868, 47.364807], [8.57294, 47.364801], [8.573013, 47.3648], [8.573086, 47.364802], [8.573472, 47.364862]]], "type": "MultiLineString"}, "id": "3611", "properties": {}, "type": "Feature"}, {"bbox": [8.528896, 47.346438, 8.532833, 47.347353], "geometry": {"coordinates": [[[8.532833, 47.347353], [8.532022, 47.347244], [8.53189, 47.347226], [8.531757, 47.347208], [8.530916, 47.347095], [8.530838, 47.347083], [8.530761, 47.347067], [8.530687, 47.347048], [8.53059, 47.347015], [8.530498, 47.346977], [8.530411, 47.346934], [8.529882, 47.346625], [8.529801, 47.346586], [8.529715, 47.346552], [8.529625, 47.346524], [8.529531, 47.346501], [8.529435, 47.346484], [8.529337, 47.346473], [8.528896, 47.346438]]], "type": "MultiLineString"}, "id": "3614", "properties": {}, "type": "Feature"}, {"bbox": [8.526674, 47.360431, 8.531516, 47.36107], "geometry": {"coordinates": [[[8.531516, 47.36107], [8.531227, 47.361003], [8.531028, 47.360957], [8.530965, 47.360943], [8.530358, 47.360833], [8.529359, 47.360652], [8.529246, 47.360635], [8.529185, 47.360627], [8.529123, 47.360621], [8.529061, 47.360615], [8.528512, 47.360572], [8.52733, 47.360481], [8.526796, 47.360439], [8.526674, 47.360431]]], "type": "MultiLineString"}, "id": "3615", "properties": {}, "type": "Feature"}, {"bbox": [8.526836, 47.354797, 8.532213, 47.356598], "geometry": {"coordinates": [[[8.532213, 47.356598], [8.532188, 47.356597], [8.532164, 47.356595], [8.532139, 47.356592], [8.532115, 47.356587], [8.532092, 47.356581], [8.53207, 47.356574], [8.532048, 47.356565], [8.532028, 47.356556], [8.532009, 47.356545], [8.531992, 47.356533], [8.531976, 47.35652], [8.531433, 47.356005], [8.531371, 47.355939], [8.531317, 47.35587], [8.531274, 47.355798], [8.531241, 47.355723], [8.531218, 47.355647], [8.531155, 47.355359], [8.531139, 47.355227], [8.531127, 47.355219], [8.531115, 47.355212], [8.531102, 47.355206], [8.531088, 47.355201], [8.531074, 47.355196], [8.531059, 47.355193], [8.531044, 47.35519], [8.531028, 47.355188], [8.530741, 47.355188], [8.530644, 47.355188], [8.530547, 47.355194], [8.530451, 47.355205], [8.530357, 47.355222], [8.530265, 47.355243], [8.530176, 47.35527], [8.5298, 47.35541], [8.529712, 47.35544], [8.529621, 47.355465], [8.529527, 47.355484], [8.529381, 47.355506], [8.528581, 47.355584], [8.528414, 47.355597], [8.528247, 47.35561], [8.528198, 47.355604], [8.52815, 47.355596], [8.528103, 47.355584], [8.528057, 47.355569], [8.528014, 47.355552], [8.527974, 47.355532], [8.527641, 47.355359], [8.527394, 47.35523], [8.527326, 47.355194], [8.527261, 47.355154], [8.527201, 47.355112], [8.527172, 47.355088], [8.527144, 47.355064], [8.527117, 47.355039], [8.526836, 47.354797]]], "type": "MultiLineString"}, "id": "3616", "properties": {}, "type": "Feature"}, {"bbox": [8.567864, 47.368652, 8.57151, 47.369514], "geometry": {"coordinates": [[[8.567864, 47.369514], [8.568092, 47.369479], [8.568118, 47.369472], [8.568142, 47.369464], [8.568166, 47.369454], [8.568188, 47.369444], [8.568208, 47.369432], [8.568911, 47.368978], [8.569275, 47.368743], [8.569295, 47.36873], [8.569316, 47.368719], [8.569339, 47.368708], [8.569363, 47.368699], [8.569388, 47.368692], [8.569414, 47.368686], [8.569599, 47.368669], [8.569722, 47.368653], [8.569743, 47.368652], [8.569763, 47.368652], [8.569784, 47.368653], [8.569805, 47.368655], [8.569825, 47.368659], [8.569844, 47.368664], [8.569863, 47.36867], [8.569881, 47.368677], [8.570435, 47.368856], [8.571219, 47.369109], [8.571333, 47.369142], [8.57139, 47.369159], [8.57143, 47.369169], [8.57147, 47.369178], [8.57151, 47.369187]]], "type": "MultiLineString"}, "id": "3617", "properties": {}, "type": "Feature"}, {"bbox": [8.552212, 47.370261, 8.556374, 47.374837], "geometry": {"coordinates": [[[8.552212, 47.374837], [8.553161, 47.373955], [8.553272, 47.373843], [8.553518, 47.373575], [8.553625, 47.373464], [8.554204, 47.372843], [8.554458, 47.37257], [8.554534, 47.372488], [8.554606, 47.372404], [8.554675, 47.372319], [8.554901, 47.372023], [8.555095, 47.371768], [8.555178, 47.371652], [8.555508, 47.371186], [8.555573, 47.371093], [8.555862, 47.370737], [8.556281, 47.370284], [8.556374, 47.370261]]], "type": "MultiLineString"}, "id": "3618", "properties": {}, "type": "Feature"}, {"bbox": [8.534581, 47.33561, 8.536929, 47.337715], "geometry": {"coordinates": [[[8.534581, 47.337715], [8.534582, 47.337644], [8.534712, 47.337565], [8.534904, 47.337426], [8.535083, 47.337279], [8.53525, 47.337125], [8.535447, 47.336884], [8.535463, 47.336859], [8.535475, 47.336833], [8.535484, 47.336806], [8.53549, 47.336779], [8.535491, 47.336752], [8.535489, 47.336724], [8.535487, 47.336572], [8.535489, 47.336549], [8.535495, 47.336526], [8.535503, 47.336503], [8.535514, 47.336481], [8.535529, 47.336459], [8.535545, 47.336439], [8.535565, 47.336419], [8.535587, 47.336401], [8.535611, 47.336385], [8.535637, 47.336369], [8.535666, 47.336356], [8.535695, 47.336344], [8.535727, 47.336334], [8.535759, 47.336326], [8.536047, 47.336261], [8.536088, 47.336251], [8.536128, 47.336238], [8.536166, 47.336222], [8.536202, 47.336205], [8.536235, 47.336185], [8.536266, 47.336164], [8.536295, 47.336141], [8.53661, 47.335876], [8.536929, 47.33561]]], "type": "MultiLineString"}, "id": "3621", "properties": {}, "type": "Feature"}, {"bbox": [8.539675, 47.390593, 8.543254, 47.39387], "geometry": {"coordinates": [[[8.539675, 47.390593], [8.540284, 47.391129], [8.540388, 47.391208], [8.541003, 47.391764], [8.541414, 47.392104], [8.541711, 47.392363], [8.541803, 47.392444], [8.542066, 47.392664], [8.542507, 47.393045], [8.542724, 47.393245], [8.543254, 47.39387]]], "type": "MultiLineString"}, "id": "3623", "properties": {}, "type": "Feature"}, {"bbox": [8.539804, 47.38606, 8.541571, 47.386681], "geometry": {"coordinates": [[[8.539804, 47.38606], [8.539847, 47.386061], [8.53989, 47.386064], [8.539932, 47.38607], [8.539973, 47.386077], [8.540521, 47.38624], [8.540704, 47.386318], [8.540798, 47.386357], [8.541438, 47.38663], [8.541571, 47.386681]]], "type": "MultiLineString"}, "id": "3624", "properties": {}, "type": "Feature"}, {"bbox": [8.478525, 47.380216, 8.480845, 47.384508], "geometry": {"coordinates": [[[8.480845, 47.384508], [8.480579, 47.384132], [8.480432, 47.38393], [8.4804, 47.383821], [8.480221, 47.383531], [8.480046, 47.383297], [8.479864, 47.383105], [8.479404, 47.382621], [8.479191, 47.382396], [8.479041, 47.382236], [8.478883, 47.38208], [8.478718, 47.381927], [8.478678, 47.381897], [8.478642, 47.381865], [8.47861, 47.381831], [8.478583, 47.381795], [8.478561, 47.381757], [8.478544, 47.381718], [8.478532, 47.381679], [8.478526, 47.381638], [8.478525, 47.381598], [8.478559, 47.38152], [8.478602, 47.381445], [8.478655, 47.381373], [8.478716, 47.381304], [8.478823, 47.381215], [8.478929, 47.381126], [8.479036, 47.381036], [8.479243, 47.38084], [8.479736, 47.380216]]], "type": "MultiLineString"}, "id": "3625", "properties": {}, "type": "Feature"}, {"bbox": [8.562775, 47.368067, 8.564216, 47.368943], "geometry": {"coordinates": [[[8.562775, 47.368943], [8.562952, 47.368887], [8.563128, 47.368827], [8.5633, 47.368764], [8.563412, 47.368716], [8.563519, 47.368663], [8.563619, 47.368604], [8.563712, 47.368539], [8.564047, 47.368246], [8.564216, 47.368067]]], "type": "MultiLineString"}, "id": "3630", "properties": {}, "type": "Feature"}, {"bbox": [8.566129, 47.360257, 8.567962, 47.361906], "geometry": {"coordinates": [[[8.566129, 47.361906], [8.567011, 47.361173], [8.567148, 47.361053], [8.567802, 47.36047], [8.567865, 47.360403], [8.567918, 47.360332], [8.567962, 47.360257]]], "type": "MultiLineString"}, "id": "3631", "properties": {}, "type": "Feature"}, {"bbox": [8.506506, 47.396949, 8.514921, 47.398849], "geometry": {"coordinates": [[[8.514921, 47.397024], [8.514885, 47.397026], [8.51485, 47.397026], [8.514815, 47.397027], [8.51464, 47.397018], [8.513678, 47.396957], [8.5135, 47.396949], [8.513321, 47.39695], [8.513143, 47.396959], [8.512693, 47.396992], [8.511756, 47.397062], [8.511324, 47.397108], [8.5109, 47.397177], [8.510486, 47.39727], [8.510084, 47.397386], [8.510054, 47.397396], [8.510024, 47.397406], [8.509994, 47.397416], [8.509476, 47.397571], [8.50897, 47.397743], [8.508478, 47.397932], [8.508116, 47.3981], [8.506716, 47.398751], [8.506648, 47.398786], [8.506578, 47.398819], [8.506506, 47.398849]]], "type": "MultiLineString"}, "id": "3642", "properties": {}, "type": "Feature"}, {"bbox": [8.53621, 47.389314, 8.539075, 47.391341], "geometry": {"coordinates": [[[8.539075, 47.389314], [8.539014, 47.389316], [8.538954, 47.389321], [8.538894, 47.38933], [8.538836, 47.389341], [8.538733, 47.389418], [8.537743, 47.390189], [8.537656, 47.390257], [8.536567, 47.391104], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "3643", "properties": {}, "type": "Feature"}, {"bbox": [8.536687, 47.365389, 8.538822, 47.36828], "geometry": {"coordinates": [[[8.538822, 47.365389], [8.538016, 47.366469], [8.537994, 47.366508], [8.537372, 47.367346], [8.537254, 47.367544], [8.536773, 47.368184], [8.536747, 47.368217], [8.536719, 47.368249], [8.536687, 47.36828]]], "type": "MultiLineString"}, "id": "3652", "properties": {}, "type": "Feature"}, {"bbox": [8.524191, 47.384974, 8.527129, 47.387813], "geometry": {"coordinates": [[[8.527129, 47.387813], [8.526041, 47.387453], [8.526018, 47.387445], [8.525997, 47.387436], [8.525977, 47.387425], [8.525959, 47.387413], [8.525946, 47.387402], [8.525934, 47.38739], [8.525923, 47.387378], [8.525914, 47.387365], [8.525906, 47.387352], [8.525884, 47.387279], [8.525398, 47.386602], [8.52489, 47.385935], [8.524191, 47.384974]]], "type": "MultiLineString"}, "id": "3658", "properties": {}, "type": "Feature"}, {"bbox": [8.550818, 47.381229, 8.555465, 47.392402], "geometry": {"coordinates": [[[8.555395, 47.381229], [8.555411, 47.381244], [8.555426, 47.38126], [8.555438, 47.381276], [8.555448, 47.381293], [8.555456, 47.381311], [8.555461, 47.381329], [8.555464, 47.381348], [8.555465, 47.381366], [8.555463, 47.381385], [8.555458, 47.381403], [8.555452, 47.381421], [8.555442, 47.381438], [8.555345, 47.381596], [8.555107, 47.382001], [8.554996, 47.382177], [8.554929, 47.382285], [8.55423, 47.383406], [8.554217, 47.383429], [8.554203, 47.383452], [8.554188, 47.383475], [8.554146, 47.383533], [8.554098, 47.38359], [8.554045, 47.383644], [8.554023, 47.383664], [8.554001, 47.383684], [8.553978, 47.383704], [8.553904, 47.383761], [8.55383, 47.383818], [8.553748, 47.383882], [8.552301, 47.384998], [8.552148, 47.385112], [8.552083, 47.385163], [8.552024, 47.385217], [8.551973, 47.385275], [8.55193, 47.385336], [8.551895, 47.385399], [8.551869, 47.385464], [8.551613, 47.386405], [8.551548, 47.386625], [8.551481, 47.386854], [8.551477, 47.386901], [8.551471, 47.386978], [8.551287, 47.388039], [8.551276, 47.3881], [8.551269, 47.388141], [8.551157, 47.388769], [8.551142, 47.388906], [8.551122, 47.389435], [8.551116, 47.389598], [8.551093, 47.389601], [8.55107, 47.389605], [8.551048, 47.389611], [8.551027, 47.389617], [8.551007, 47.389625], [8.550988, 47.389634], [8.55097, 47.389645], [8.550954, 47.389656], [8.550939, 47.389668], [8.550926, 47.389681], [8.550914, 47.389696], [8.550904, 47.389712], [8.550895, 47.389728], [8.550889, 47.389744], [8.550885, 47.389761], [8.550883, 47.389778], [8.550883, 47.389795], [8.550882, 47.389882], [8.550875, 47.390111], [8.550873, 47.390153], [8.550872, 47.390195], [8.550873, 47.390237], [8.550913, 47.390977], [8.550926, 47.391209], [8.550955, 47.391741], [8.550979, 47.392175], [8.550979, 47.392199], [8.550975, 47.392223], [8.550969, 47.392246], [8.550959, 47.392269], [8.550947, 47.392291], [8.550932, 47.392312], [8.550914, 47.392333], [8.550893, 47.392352], [8.55087, 47.39237], [8.550845, 47.392387], [8.550818, 47.392402]]], "type": "MultiLineString"}, "id": "3659", "properties": {}, "type": "Feature"}, {"bbox": [8.522118, 47.368849, 8.524814, 47.370698], "geometry": {"coordinates": [[[8.524814, 47.368849], [8.524761, 47.368974], [8.524757, 47.368983], [8.524751, 47.368992], [8.524744, 47.369001], [8.524737, 47.369009], [8.524728, 47.369017], [8.524718, 47.369024], [8.524708, 47.36903], [8.524696, 47.369036], [8.524684, 47.369042], [8.524671, 47.369046], [8.524658, 47.36905], [8.524016, 47.369193], [8.523997, 47.369199], [8.523977, 47.369206], [8.523959, 47.369214], [8.523942, 47.369223], [8.523862, 47.36927], [8.523845, 47.36928], [8.523829, 47.369291], [8.523814, 47.369302], [8.523685, 47.369412], [8.523487, 47.369583], [8.522716, 47.370211], [8.522214, 47.370621], [8.522118, 47.370698]]], "type": "MultiLineString"}, "id": "3663", "properties": {}, "type": "Feature"}, {"bbox": [8.494191, 47.403057, 8.494636, 47.403656], "geometry": {"coordinates": [[[8.494191, 47.403057], [8.49425, 47.403091], [8.494574, 47.403617], [8.494636, 47.403656]]], "type": "MultiLineString"}, "id": "3664", "properties": {}, "type": "Feature"}, {"bbox": [8.525847, 47.33507, 8.527609, 47.339286], "geometry": {"coordinates": [[[8.526595, 47.339286], [8.526588, 47.339281], [8.526581, 47.339276], [8.526575, 47.33927], [8.52657, 47.339264], [8.526566, 47.339258], [8.526562, 47.339252], [8.526559, 47.339245], [8.526557, 47.339238], [8.526556, 47.339232], [8.526556, 47.339225], [8.526555, 47.339217], [8.526554, 47.339209], [8.526551, 47.339202], [8.526548, 47.339194], [8.526543, 47.339187], [8.526538, 47.33918], [8.526381, 47.339007], [8.526225, 47.338827], [8.526096, 47.338638], [8.525993, 47.338441], [8.525918, 47.338239], [8.525884, 47.338132], [8.52586, 47.338023], [8.525847, 47.337914], [8.525848, 47.337431], [8.525856, 47.337244], [8.525891, 47.337058], [8.52595, 47.336875], [8.526035, 47.336696], [8.526144, 47.336524], [8.526222, 47.336421], [8.526308, 47.336321], [8.526424, 47.336208], [8.527565, 47.335175], [8.527609, 47.33507]]], "type": "MultiLineString"}, "id": "3679", "properties": {}, "type": "Feature"}, {"bbox": [8.562566, 47.363657, 8.564134, 47.364527], "geometry": {"coordinates": [[[8.562566, 47.364527], [8.562782, 47.364349], [8.563535, 47.363722], [8.563547, 47.363712], [8.563559, 47.363703], [8.563573, 47.363694], [8.563587, 47.363686], [8.563603, 47.363679], [8.563619, 47.363673], [8.563636, 47.363667], [8.563654, 47.363663], [8.563672, 47.36366], [8.563691, 47.363658], [8.563709, 47.363657], [8.563828, 47.363667], [8.563847, 47.363669], [8.563866, 47.363672], [8.563885, 47.363676], [8.563903, 47.363682], [8.56392, 47.363688], [8.563936, 47.363695], [8.563951, 47.363704], [8.563965, 47.363713], [8.564134, 47.363838]]], "type": "MultiLineString"}, "id": "3691", "properties": {}, "type": "Feature"}, {"bbox": [8.54998, 47.382261, 8.550897, 47.382737], "geometry": {"coordinates": [[[8.54998, 47.382261], [8.550897, 47.382737]]], "type": "MultiLineString"}, "id": "3694", "properties": {}, "type": "Feature"}, {"bbox": [8.554996, 47.381641, 8.556831, 47.382264], "geometry": {"coordinates": [[[8.556831, 47.381641], [8.556669, 47.381674], [8.556512, 47.381716], [8.55636, 47.381767], [8.556215, 47.381825], [8.556077, 47.381892], [8.555948, 47.381965], [8.555539, 47.382205], [8.555518, 47.382217], [8.555496, 47.382228], [8.555472, 47.382238], [8.555447, 47.382246], [8.555422, 47.382253], [8.555395, 47.382258], [8.555368, 47.382262], [8.55534, 47.382264], [8.555313, 47.382264], [8.555285, 47.382263], [8.555258, 47.38226], [8.555231, 47.382255], [8.554996, 47.382177]]], "type": "MultiLineString"}, "id": "3695", "properties": {}, "type": "Feature"}, {"bbox": [8.54727, 47.37996, 8.54816, 47.38039], "geometry": {"coordinates": [[[8.54727, 47.37996], [8.547455, 47.380017], [8.547932, 47.380299], [8.54816, 47.38039]]], "type": "MultiLineString"}, "id": "3696", "properties": {}, "type": "Feature"}, {"bbox": [8.475615, 47.386039, 8.479087, 47.389319], "geometry": {"coordinates": [[[8.479087, 47.389319], [8.478052, 47.38854], [8.477477, 47.38808], [8.477268, 47.387918], [8.476647, 47.387434], [8.476123, 47.386725], [8.475615, 47.386039]]], "type": "MultiLineString"}, "id": "3699", "properties": {}, "type": "Feature"}, {"bbox": [8.481822, 47.385946, 8.483786, 47.388544], "geometry": {"coordinates": [[[8.483786, 47.388544], [8.483523, 47.388446], [8.483334, 47.388384], [8.483281, 47.38836], [8.483231, 47.388333], [8.483185, 47.388304], [8.483143, 47.388271], [8.483034, 47.388186], [8.482559, 47.387854], [8.482373, 47.38773], [8.482363, 47.387678], [8.482347, 47.387627], [8.482325, 47.387577], [8.482297, 47.387528], [8.482262, 47.387481], [8.481973, 47.387023], [8.481948, 47.386981], [8.481924, 47.386939], [8.481903, 47.386896], [8.481894, 47.386876], [8.481886, 47.386856], [8.481878, 47.386836], [8.481859, 47.386766], [8.481847, 47.386695], [8.481841, 47.386624], [8.481822, 47.38615], [8.481823, 47.386127], [8.481827, 47.386104], [8.481833, 47.386082], [8.481843, 47.38606], [8.481855, 47.386038], [8.48187, 47.386018], [8.481887, 47.385998], [8.481907, 47.38598], [8.481929, 47.385962], [8.481953, 47.385946]]], "type": "MultiLineString"}, "id": "3700", "properties": {}, "type": "Feature"}, {"bbox": [8.477774, 47.384741, 8.481357, 47.38612], "geometry": {"coordinates": [[[8.481357, 47.38612], [8.481092, 47.385991], [8.48008, 47.385688], [8.479569, 47.385534], [8.479378, 47.385477], [8.4791, 47.385397], [8.478826, 47.385311], [8.478557, 47.385219], [8.478403, 47.38515], [8.478256, 47.385074], [8.478118, 47.384991], [8.478063, 47.384952], [8.477774, 47.384741]]], "type": "MultiLineString"}, "id": "3701", "properties": {}, "type": "Feature"}, {"bbox": [8.494533, 47.381261, 8.497417, 47.384235], "geometry": {"coordinates": [[[8.497417, 47.384235], [8.496704, 47.383499], [8.49597, 47.382741], [8.494824, 47.38156], [8.494599, 47.381329], [8.494533, 47.381261]]], "type": "MultiLineString"}, "id": "3703", "properties": {}, "type": "Feature"}, {"bbox": [8.507101, 47.37972, 8.509199, 47.381911], "geometry": {"coordinates": [[[8.507101, 47.37972], [8.507829, 47.380453], [8.508202, 47.380795], [8.509199, 47.381911]]], "type": "MultiLineString"}, "id": "3704", "properties": {}, "type": "Feature"}, {"bbox": [8.513509, 47.373888, 8.516642, 47.375641], "geometry": {"coordinates": [[[8.516642, 47.375641], [8.516313, 47.37546], [8.515524, 47.375017], [8.514724, 47.374571], [8.514634, 47.374517], [8.514422, 47.374398], [8.513509, 47.373888]]], "type": "MultiLineString"}, "id": "3705", "properties": {}, "type": "Feature"}, {"bbox": [8.512513, 47.374688, 8.515027, 47.37619], "geometry": {"coordinates": [[[8.515027, 47.37619], [8.514506, 47.375863], [8.513488, 47.375274], [8.512513, 47.374688]]], "type": "MultiLineString"}, "id": "3706", "properties": {}, "type": "Feature"}, {"bbox": [8.531857, 47.407652, 8.533356, 47.410361], "geometry": {"coordinates": [[[8.531857, 47.407652], [8.531892, 47.407661], [8.531937, 47.407672], [8.53198, 47.407686], [8.532021, 47.407703], [8.53206, 47.407723], [8.532096, 47.407745], [8.532128, 47.407768], [8.532158, 47.407794], [8.532191, 47.407861], [8.532252, 47.407943], [8.532428, 47.408178], [8.532577, 47.408421], [8.532695, 47.408672], [8.532971, 47.40937], [8.533106, 47.409724], [8.533356, 47.410361]]], "type": "MultiLineString"}, "id": "3708", "properties": {}, "type": "Feature"}, {"bbox": [8.540573, 47.376056, 8.540898, 47.376679], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540819, 47.37627], [8.540587, 47.376651], [8.540583, 47.376659], [8.540578, 47.376667], [8.540575, 47.376675], [8.540573, 47.376679]]], "type": "MultiLineString"}, "id": "3712", "properties": {}, "type": "Feature"}, {"bbox": [8.524191, 47.382562, 8.529792, 47.384974], "geometry": {"coordinates": [[[8.529792, 47.382562], [8.528946, 47.382934], [8.528178, 47.383269], [8.52745, 47.383587], [8.527241, 47.383646], [8.525651, 47.38435], [8.524191, 47.384974]]], "type": "MultiLineString"}, "id": "3714", "properties": {}, "type": "Feature"}, {"bbox": [8.520206, 47.396102, 8.527032, 47.396749], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.526887, 47.396126], [8.526682, 47.396167], [8.524813, 47.396557], [8.524645, 47.396597], [8.523895, 47.396749], [8.522895, 47.39664], [8.522391, 47.39659], [8.521094, 47.396453], [8.520585, 47.396392], [8.520517, 47.396383], [8.52045, 47.396369], [8.520385, 47.396351], [8.520322, 47.39633], [8.520263, 47.396304], [8.520206, 47.396276]]], "type": "MultiLineString"}, "id": "3715", "properties": {}, "type": "Feature"}, {"bbox": [8.512578, 47.379638, 8.515637, 47.380532], "geometry": {"coordinates": [[[8.515637, 47.379638], [8.515368, 47.379718], [8.513853, 47.380167], [8.512578, 47.380532]]], "type": "MultiLineString"}, "id": "3718", "properties": {}, "type": "Feature"}, {"bbox": [8.480362, 47.412418, 8.483779, 47.41293], "geometry": {"coordinates": [[[8.483779, 47.412501], [8.483495, 47.412509], [8.482554, 47.412817], [8.482458, 47.412848], [8.482396, 47.412872], [8.482331, 47.412892], [8.482263, 47.412908], [8.482194, 47.41292], [8.482123, 47.412927], [8.482052, 47.41293], [8.48198, 47.412928], [8.481909, 47.412922], [8.48184, 47.412912], [8.481771, 47.412897], [8.480624, 47.412598], [8.480577, 47.41258], [8.480533, 47.412558], [8.480492, 47.412535], [8.480454, 47.412509], [8.480419, 47.41248], [8.480389, 47.41245], [8.480362, 47.412418]]], "type": "MultiLineString"}, "id": "3720", "properties": {}, "type": "Feature"}, {"bbox": [8.552701, 47.379707, 8.558558, 47.38674], "geometry": {"coordinates": [[[8.558402, 47.379707], [8.558509, 47.37983], [8.558529, 47.379867], [8.558543, 47.379905], [8.558553, 47.379943], [8.558558, 47.379983], [8.558558, 47.380022], [8.558553, 47.380061], [8.558544, 47.3801], [8.558529, 47.380137], [8.558253, 47.380634], [8.557664, 47.381691], [8.557648, 47.381718], [8.557567, 47.381852], [8.557525, 47.3819], [8.557483, 47.381942], [8.557432, 47.381986], [8.55736, 47.382041], [8.557275, 47.382092], [8.557209, 47.382128], [8.55715, 47.382155], [8.557106, 47.382174], [8.556996, 47.382218], [8.556865, 47.382262], [8.556835, 47.382273], [8.55676, 47.382303], [8.556649, 47.382352], [8.556567, 47.382393], [8.556525, 47.382416], [8.556442, 47.382466], [8.55636, 47.38252], [8.556246, 47.382608], [8.555935, 47.382862], [8.555425, 47.383279], [8.555398, 47.383302], [8.555373, 47.383326], [8.555361, 47.38334], [8.555342, 47.383368], [8.55533, 47.383391], [8.55532, 47.383421], [8.555315, 47.383447], [8.555314, 47.38347], [8.555316, 47.383494], [8.55532, 47.383518], [8.555327, 47.383616], [8.555326, 47.383647], [8.555319, 47.383685], [8.555305, 47.383734], [8.555285, 47.383781], [8.555257, 47.383827], [8.555236, 47.383855], [8.555205, 47.38389], [8.555153, 47.38394], [8.554744, 47.384306], [8.554677, 47.384364], [8.554568, 47.384464], [8.554492, 47.384532], [8.554457, 47.384566], [8.554441, 47.384584], [8.554414, 47.38462], [8.554402, 47.38464], [8.55438, 47.384692], [8.554378, 47.384702], [8.55438, 47.384724], [8.554391, 47.384749], [8.554401, 47.384774], [8.55423, 47.384906], [8.55419, 47.384936], [8.553693, 47.385341], [8.553574, 47.385446], [8.553531, 47.385485], [8.553497, 47.38552], [8.553428, 47.385595], [8.553364, 47.385674], [8.553323, 47.385729], [8.553265, 47.385815], [8.553205, 47.385914], [8.552829, 47.386525], [8.552757, 47.386636], [8.552701, 47.38674]]], "type": "MultiLineString"}, "id": "3726", "properties": {}, "type": "Feature"}, {"bbox": [8.585319, 47.401937, 8.586087, 47.40485], "geometry": {"coordinates": [[[8.585319, 47.401937], [8.585419, 47.401965], [8.585691, 47.402479], [8.585955, 47.402977], [8.586007, 47.403087], [8.586046, 47.4032], [8.586073, 47.403315], [8.586087, 47.403446], [8.586084, 47.403579], [8.586063, 47.40371], [8.585503, 47.404843], [8.5855, 47.40485]]], "type": "MultiLineString"}, "id": "3728", "properties": {}, "type": "Feature"}, {"bbox": [8.508913, 47.376506, 8.511624, 47.378028], "geometry": {"coordinates": [[[8.511624, 47.376506], [8.510685, 47.377017], [8.509601, 47.377614], [8.509082, 47.377908], [8.509022, 47.377946], [8.508966, 47.377986], [8.508913, 47.378028]]], "type": "MultiLineString"}, "id": "3738", "properties": {}, "type": "Feature"}, {"bbox": [8.511212, 47.377124, 8.515992, 47.37913], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.515986, 47.377136], [8.515979, 47.377147], [8.51597, 47.377159], [8.515959, 47.377169], [8.515947, 47.377179], [8.515934, 47.377188], [8.51592, 47.377196], [8.515905, 47.377204], [8.515889, 47.37721], [8.515084, 47.377537], [8.513854, 47.378058], [8.513397, 47.378251], [8.513185, 47.378347], [8.513051, 47.378397], [8.511349, 47.379114], [8.511212, 47.37913]]], "type": "MultiLineString"}, "id": "3739", "properties": {}, "type": "Feature"}, {"bbox": [8.475857, 47.413287, 8.480504, 47.414583], "geometry": {"coordinates": [[[8.480504, 47.414583], [8.480146, 47.41447], [8.479516, 47.414264], [8.479346, 47.414211], [8.477815, 47.413711], [8.477694, 47.413674], [8.477572, 47.413639], [8.477449, 47.413605], [8.477365, 47.413583], [8.47728, 47.413562], [8.477195, 47.413542], [8.47706, 47.413509], [8.476881, 47.413467], [8.476598, 47.413407], [8.476312, 47.413355], [8.476024, 47.413309], [8.475857, 47.413287]]], "type": "MultiLineString"}, "id": "3743", "properties": {}, "type": "Feature"}, {"bbox": [8.550441, 47.37265, 8.551504, 47.373039], "geometry": {"coordinates": [[[8.550441, 47.37265], [8.550713, 47.372755], [8.551468, 47.373027], [8.551504, 47.373039]]], "type": "MultiLineString"}, "id": "3744", "properties": {}, "type": "Feature"}, {"bbox": [8.54608, 47.416323, 8.548601, 47.418525], "geometry": {"coordinates": [[[8.54608, 47.416323], [8.546177, 47.416437], [8.546874, 47.416725], [8.547318, 47.416904], [8.547397, 47.416943], [8.547443, 47.417052], [8.547767, 47.417396], [8.548201, 47.417889], [8.548592, 47.41836], [8.548596, 47.418366], [8.548598, 47.418372], [8.5486, 47.418378], [8.548601, 47.418385], [8.548601, 47.418391], [8.548601, 47.418397], [8.548599, 47.418403], [8.548597, 47.41841], [8.548594, 47.418416], [8.54859, 47.418421], [8.548585, 47.418427], [8.54858, 47.418432], [8.548574, 47.418437], [8.548568, 47.418441], [8.54856, 47.418445], [8.548553, 47.418449], [8.548545, 47.418452], [8.548536, 47.418455], [8.548528, 47.418457], [8.548495, 47.418465], [8.548462, 47.418472], [8.548428, 47.418476], [8.548394, 47.418478], [8.547751, 47.418507], [8.547434, 47.418525]]], "type": "MultiLineString"}, "id": "3750", "properties": {}, "type": "Feature"}, {"bbox": [8.562246, 47.364803, 8.563289, 47.36575], "geometry": {"coordinates": [[[8.562246, 47.36575], [8.562317, 47.365692], [8.56298, 47.365164], [8.563007, 47.365139], [8.56303, 47.365114], [8.56318, 47.364934], [8.563289, 47.364803]]], "type": "MultiLineString"}, "id": "3753", "properties": {}, "type": "Feature"}, {"bbox": [8.553646, 47.386339, 8.55424, 47.387556], "geometry": {"coordinates": [[[8.55424, 47.386339], [8.553867, 47.386738], [8.553809, 47.386803], [8.553759, 47.386871], [8.553718, 47.386941], [8.553686, 47.387014], [8.553663, 47.387089], [8.55365, 47.387164], [8.553646, 47.38724], [8.553648, 47.387288], [8.553656, 47.387335], [8.55367, 47.387382], [8.553689, 47.387428], [8.553715, 47.387472], [8.553746, 47.387515], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "3760", "properties": {}, "type": "Feature"}, {"bbox": [8.469398, 47.389885, 8.471296, 47.391287], "geometry": {"coordinates": [[[8.471296, 47.389885], [8.47125, 47.389908], [8.471203, 47.389931], [8.471157, 47.389954], [8.470996, 47.390041], [8.470841, 47.390132], [8.47069, 47.390228], [8.470634, 47.390267], [8.470577, 47.390305], [8.47052, 47.390344], [8.470281, 47.390528], [8.469481, 47.391179], [8.46946, 47.391199], [8.46944, 47.391219], [8.469424, 47.391241], [8.46941, 47.391264], [8.469398, 47.391287]]], "type": "MultiLineString"}, "id": "3764", "properties": {}, "type": "Feature"}, {"bbox": [8.478691, 47.386868, 8.479804, 47.38719], "geometry": {"coordinates": [[[8.478691, 47.386906], [8.478884, 47.386873], [8.478914, 47.38687], [8.478944, 47.386868], [8.478974, 47.386868], [8.479004, 47.386871], [8.479033, 47.386875], [8.479341, 47.387164], [8.479346, 47.387168], [8.479351, 47.387172], [8.479356, 47.387176], [8.479362, 47.387179], [8.479369, 47.387182], [8.479375, 47.387184], [8.479382, 47.387186], [8.479389, 47.387188], [8.479397, 47.387189], [8.479404, 47.38719], [8.479412, 47.38719], [8.47942, 47.38719], [8.479427, 47.387189], [8.479434, 47.387188], [8.479804, 47.387036]]], "type": "MultiLineString"}, "id": "3765", "properties": {}, "type": "Feature"}, {"bbox": [8.483475, 47.393377, 8.484642, 47.395113], "geometry": {"coordinates": [[[8.484642, 47.395113], [8.484567, 47.395027], [8.484299, 47.394655], [8.483939, 47.394126], [8.483909, 47.394082], [8.483475, 47.393377]]], "type": "MultiLineString"}, "id": "3767", "properties": {}, "type": "Feature"}, {"bbox": [8.484642, 47.395113, 8.485592, 47.396118], "geometry": {"coordinates": [[[8.485592, 47.396118], [8.485426, 47.395927], [8.485023, 47.395546], [8.484642, 47.395113]]], "type": "MultiLineString"}, "id": "3768", "properties": {}, "type": "Feature"}, {"bbox": [8.527586, 47.359029, 8.528704, 47.35979], "geometry": {"coordinates": [[[8.527586, 47.359766], [8.527872, 47.359789], [8.527896, 47.35979], [8.52792, 47.359789], [8.527944, 47.359787], [8.527968, 47.359783], [8.527991, 47.359778], [8.528014, 47.359772], [8.528035, 47.359764], [8.528055, 47.359755], [8.528074, 47.359744], [8.528092, 47.359733], [8.528108, 47.35972], [8.528122, 47.359707], [8.528155, 47.35967], [8.528664, 47.359079], [8.528677, 47.359065], [8.528689, 47.359049], [8.5287, 47.359034], [8.528701, 47.359033], [8.528702, 47.359031], [8.528704, 47.359029]]], "type": "MultiLineString"}, "id": "3782", "properties": {}, "type": "Feature"}, {"bbox": [8.514617, 47.368874, 8.516998, 47.370381], "geometry": {"coordinates": [[[8.516998, 47.368874], [8.516902, 47.368878], [8.516807, 47.368888], [8.516714, 47.368904], [8.516623, 47.368926], [8.516536, 47.368953], [8.516453, 47.368985], [8.516374, 47.369022], [8.516301, 47.369064], [8.514772, 47.370243], [8.514617, 47.370381]]], "type": "MultiLineString"}, "id": "3783", "properties": {}, "type": "Feature"}, {"bbox": [8.528133, 47.412674, 8.529068, 47.413626], "geometry": {"coordinates": [[[8.528133, 47.412674], [8.528273, 47.412752], [8.528402, 47.41283], [8.528519, 47.412916], [8.528625, 47.413009], [8.528719, 47.413107], [8.5288, 47.413211], [8.528867, 47.413319], [8.528921, 47.41343], [8.528972, 47.413572], [8.529068, 47.413626]]], "type": "MultiLineString"}, "id": "3784", "properties": {}, "type": "Feature"}, {"bbox": [8.481006, 47.381503, 8.482589, 47.383788], "geometry": {"coordinates": [[[8.482589, 47.381503], [8.481647, 47.382288], [8.481619, 47.382342], [8.481565, 47.382428], [8.48104, 47.383082], [8.481024, 47.383119], [8.481013, 47.383157], [8.481007, 47.383196], [8.481006, 47.383234], [8.481009, 47.383273], [8.481017, 47.383311], [8.481031, 47.383349], [8.481048, 47.383386], [8.481071, 47.383422], [8.481097, 47.383456], [8.4814, 47.383788]]], "type": "MultiLineString"}, "id": "3785", "properties": {}, "type": "Feature"}, {"bbox": [8.574712, 47.374595, 8.579742, 47.377449], "geometry": {"coordinates": [[[8.574712, 47.377449], [8.574751, 47.377428], [8.57479, 47.377403], [8.574826, 47.377375], [8.575433, 47.376759], [8.575527, 47.37668], [8.57563, 47.376607], [8.575743, 47.37654], [8.575864, 47.376481], [8.575993, 47.376429], [8.576128, 47.376386], [8.577186, 47.376093], [8.577232, 47.376072], [8.577275, 47.37605], [8.577315, 47.376025], [8.577351, 47.375997], [8.577384, 47.375968], [8.577569, 47.375809], [8.577759, 47.375654], [8.577953, 47.375501], [8.578058, 47.375434], [8.578169, 47.375369], [8.578284, 47.375307], [8.578333, 47.375281], [8.579621, 47.374653], [8.579742, 47.374595]]], "type": "MultiLineString"}, "id": "3793", "properties": {}, "type": "Feature"}, {"bbox": [8.543576, 47.367474, 8.545177, 47.368987], "geometry": {"coordinates": [[[8.545177, 47.367474], [8.545123, 47.367552], [8.54507, 47.367623], [8.545008, 47.367691], [8.544937, 47.367754], [8.544892, 47.367793], [8.544639, 47.36803], [8.544313, 47.368336], [8.544164, 47.368475], [8.543839, 47.368758], [8.543576, 47.368987]]], "type": "MultiLineString"}, "id": "3795", "properties": {}, "type": "Feature"}, {"bbox": [8.527097, 47.411953, 8.527982, 47.412916], "geometry": {"coordinates": [[[8.527966, 47.411953], [8.527972, 47.412038], [8.527982, 47.412135], [8.527982, 47.412144], [8.527981, 47.412152], [8.527979, 47.412161], [8.527976, 47.412169], [8.527972, 47.412178], [8.527967, 47.412186], [8.527961, 47.412193], [8.527954, 47.4122], [8.527946, 47.412207], [8.52718, 47.412847], [8.527097, 47.412916]]], "type": "MultiLineString"}, "id": "3800", "properties": {}, "type": "Feature"}, {"bbox": [8.522439, 47.395679, 8.522895, 47.39664], "geometry": {"coordinates": [[[8.522439, 47.395679], [8.522462, 47.395735], [8.522709, 47.396198], [8.522893, 47.396543], [8.522895, 47.39664]]], "type": "MultiLineString"}, "id": "3801", "properties": {}, "type": "Feature"}, {"bbox": [8.512736, 47.37728, 8.5157, 47.379342], "geometry": {"coordinates": [[[8.512736, 47.37728], [8.513096, 47.37753], [8.513352, 47.377707], [8.513854, 47.378058], [8.514128, 47.378248], [8.514456, 47.378477], [8.514669, 47.378625], [8.515192, 47.378989], [8.51531, 47.379072], [8.5157, 47.379342]]], "type": "MultiLineString"}, "id": "3802", "properties": {}, "type": "Feature"}, {"bbox": [8.563397, 47.372418, 8.565638, 47.373445], "geometry": {"coordinates": [[[8.563397, 47.372418], [8.56358, 47.372434], [8.563761, 47.372461], [8.563937, 47.372499], [8.564108, 47.372547], [8.564272, 47.372604], [8.564428, 47.372671], [8.564575, 47.372747], [8.565587, 47.373398], [8.565597, 47.373403], [8.565606, 47.37341], [8.565615, 47.373416], [8.565622, 47.373423], [8.565629, 47.373431], [8.565635, 47.373439], [8.565638, 47.373445]]], "type": "MultiLineString"}, "id": "3812", "properties": {}, "type": "Feature"}, {"bbox": [8.540647, 47.388323, 8.541333, 47.388427], "geometry": {"coordinates": [[[8.540647, 47.388323], [8.54069, 47.388335], [8.540731, 47.388348], [8.54077, 47.388365], [8.540808, 47.388383], [8.540843, 47.388403], [8.540875, 47.388426], [8.541039, 47.388385], [8.541168, 47.388399], [8.541333, 47.388427]]], "type": "MultiLineString"}, "id": "3817", "properties": {}, "type": "Feature"}, {"bbox": [8.541571, 47.386681, 8.544033, 47.387779], "geometry": {"coordinates": [[[8.541571, 47.386681], [8.54167, 47.38672], [8.542482, 47.386982], [8.542518, 47.386996], [8.542553, 47.38701], [8.542588, 47.387024], [8.542644, 47.387048], [8.542697, 47.387074], [8.54275, 47.387101], [8.543172, 47.387324], [8.54323, 47.387354], [8.543342, 47.387413], [8.543876, 47.387697], [8.544033, 47.387779]]], "type": "MultiLineString"}, "id": "3818", "properties": {}, "type": "Feature"}, {"bbox": [8.532971, 47.408999, 8.534994, 47.40937], "geometry": {"coordinates": [[[8.534994, 47.408999], [8.534773, 47.409044], [8.532971, 47.40937]]], "type": "MultiLineString"}, "id": "3823", "properties": {}, "type": "Feature"}, {"bbox": [8.555339, 47.354977, 8.556614, 47.35553], "geometry": {"coordinates": [[[8.555339, 47.354977], [8.555432, 47.355029], [8.556477, 47.355512], [8.556614, 47.35553]]], "type": "MultiLineString"}, "id": "3828", "properties": {}, "type": "Feature"}, {"bbox": [8.547623, 47.418929, 8.548735, 47.419286], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547753, 47.419182], [8.54784, 47.419269], [8.547861, 47.419275], [8.547883, 47.41928], [8.547906, 47.419283], [8.547928, 47.419285], [8.547951, 47.419286], [8.547974, 47.419286], [8.547997, 47.419284], [8.548019, 47.419281], [8.548041, 47.419276], [8.548285, 47.419172], [8.548516, 47.419055], [8.548735, 47.418929]]], "type": "MultiLineString"}, "id": "3831", "properties": {}, "type": "Feature"}, {"bbox": [8.586488, 47.39942, 8.586943, 47.399625], "geometry": {"coordinates": [[[8.586943, 47.39942], [8.586795, 47.399492], [8.586643, 47.39956], [8.586488, 47.399625]]], "type": "MultiLineString"}, "id": "3841", "properties": {}, "type": "Feature"}, {"bbox": [8.569725, 47.372135, 8.57, 47.372898], "geometry": {"coordinates": [[[8.57, 47.372135], [8.569988, 47.372163], [8.569977, 47.372192], [8.569967, 47.37222], [8.569727, 47.372765], [8.569725, 47.372785], [8.569725, 47.372804], [8.569729, 47.372824], [8.569734, 47.372843], [8.569742, 47.372862], [8.569753, 47.372881], [8.569766, 47.372898]]], "type": "MultiLineString"}, "id": "3842", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.4144, 8.55519, 47.416618], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.553217, 47.414892], [8.55406, 47.415766], [8.554296, 47.416005], [8.554565, 47.416229], [8.554863, 47.416433], [8.55519, 47.416618]]], "type": "MultiLineString"}, "id": "3844", "properties": {}, "type": "Feature"}, {"bbox": [8.479637, 47.403609, 8.497095, 47.409989], "geometry": {"coordinates": [[[8.497095, 47.403609], [8.496873, 47.403649], [8.49665, 47.403685], [8.496425, 47.403716], [8.496256, 47.40372], [8.496088, 47.403734], [8.495922, 47.403756], [8.495759, 47.403787], [8.495594, 47.403817], [8.495428, 47.403845], [8.495261, 47.403871], [8.49513, 47.403895], [8.495, 47.40392], [8.494871, 47.403948], [8.494786, 47.403972], [8.494741, 47.403984], [8.494633, 47.404019], [8.493957, 47.404266], [8.493852, 47.4043], [8.493823, 47.404306], [8.493631, 47.404366], [8.492833, 47.404682], [8.492443, 47.404821], [8.492045, 47.404949], [8.491639, 47.405065], [8.491057, 47.405236], [8.490406, 47.405426], [8.490205, 47.405484], [8.490009, 47.405537], [8.489775, 47.405596], [8.489292, 47.405708], [8.489186, 47.405734], [8.489083, 47.405767], [8.488985, 47.405804], [8.488891, 47.405848], [8.488802, 47.405896], [8.488687, 47.405982], [8.488583, 47.406076], [8.488493, 47.406175], [8.488415, 47.406279], [8.488365, 47.406366], [8.488304, 47.406449], [8.488233, 47.406529], [8.488151, 47.406604], [8.488061, 47.406674], [8.487961, 47.406738], [8.487881, 47.406787], [8.487797, 47.406835], [8.487711, 47.406879], [8.487004, 47.40727], [8.486901, 47.407315], [8.486797, 47.407357], [8.48669, 47.407398], [8.486517, 47.407476], [8.486331, 47.407534], [8.486141, 47.407588], [8.48593, 47.407643], [8.485465, 47.407759], [8.484922, 47.407913], [8.484836, 47.407938], [8.484814, 47.407947], [8.484317, 47.408154], [8.483981, 47.408306], [8.483188, 47.408676], [8.483032, 47.408749], [8.482846, 47.408825], [8.482651, 47.408889], [8.482448, 47.408942], [8.481888, 47.409073], [8.481649, 47.409134], [8.481415, 47.409202], [8.481186, 47.409279], [8.480926, 47.409377], [8.480678, 47.409488], [8.480441, 47.409609], [8.480191, 47.409753], [8.479923, 47.40988], [8.479637, 47.409989]]], "type": "MultiLineString"}, "id": "3849", "properties": {}, "type": "Feature"}, {"bbox": [8.596752, 47.353921, 8.601275, 47.355267], "geometry": {"coordinates": [[[8.601275, 47.353921], [8.60101, 47.353935], [8.599348, 47.354078], [8.599064, 47.354103], [8.598785, 47.354145], [8.598512, 47.354203], [8.598247, 47.354277], [8.598014, 47.354358], [8.597791, 47.354451], [8.597579, 47.354556], [8.597321, 47.354742], [8.597085, 47.354941], [8.596873, 47.355151], [8.596752, 47.355267]]], "type": "MultiLineString"}, "id": "3851", "properties": {}, "type": "Feature"}, {"bbox": [8.485362, 47.399703, 8.493699, 47.402742], "geometry": {"coordinates": [[[8.493699, 47.399993], [8.49368, 47.399984], [8.493623, 47.399948], [8.493572, 47.399909], [8.493526, 47.399867], [8.493423, 47.399754], [8.493413, 47.399746], [8.493402, 47.399738], [8.493389, 47.399731], [8.493376, 47.399725], [8.493362, 47.399719], [8.493348, 47.399715], [8.493333, 47.399711], [8.493317, 47.399708], [8.493301, 47.399706], [8.493285, 47.399705], [8.492885, 47.39972], [8.49257, 47.399747], [8.492379, 47.399754], [8.492188, 47.399751], [8.491998, 47.39974], [8.491491, 47.399706], [8.491435, 47.399703], [8.491378, 47.399703], [8.491322, 47.399707], [8.491266, 47.399714], [8.491212, 47.399724], [8.490776, 47.399847], [8.490628, 47.399886], [8.490539, 47.399914], [8.490475, 47.399935], [8.490368, 47.399977], [8.490329, 47.399994], [8.490142, 47.40008], [8.489844, 47.400219], [8.489691, 47.40031], [8.489638, 47.400335], [8.488737, 47.400764], [8.488316, 47.400984], [8.488126, 47.401072], [8.48781, 47.401274], [8.486942, 47.401838], [8.486427, 47.402149], [8.4859, 47.402451], [8.485362, 47.402742]]], "type": "MultiLineString"}, "id": "3854", "properties": {}, "type": "Feature"}, {"bbox": [8.525193, 47.377384, 8.526372, 47.377857], "geometry": {"coordinates": [[[8.526372, 47.377384], [8.525769, 47.377626], [8.525612, 47.377689], [8.525193, 47.377857]]], "type": "MultiLineString"}, "id": "3855", "properties": {}, "type": "Feature"}, {"bbox": [8.497676, 47.399388, 8.501528, 47.401882], "geometry": {"coordinates": [[[8.501528, 47.399388], [8.500734, 47.399693], [8.499609, 47.400144], [8.499545, 47.400169], [8.499496, 47.40019], [8.499334, 47.400261], [8.499181, 47.400341], [8.499039, 47.40043], [8.498907, 47.400525], [8.498786, 47.400628], [8.498552, 47.400854], [8.498357, 47.401075], [8.498233, 47.401219], [8.49798, 47.40153], [8.497884, 47.401632], [8.497727, 47.40181], [8.497676, 47.401882]]], "type": "MultiLineString"}, "id": "3859", "properties": {}, "type": "Feature"}, {"bbox": [8.584088, 47.351136, 8.584271, 47.351311], "geometry": {"coordinates": [[[8.584088, 47.351311], [8.584121, 47.351295], [8.584151, 47.351276], [8.584178, 47.351256], [8.584203, 47.351235], [8.584225, 47.351211], [8.584244, 47.351187], [8.584259, 47.351162], [8.584271, 47.351136]]], "type": "MultiLineString"}, "id": "3860", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.331007, 8.536804, 47.331143], "geometry": {"coordinates": [[[8.53634, 47.331143], [8.536355, 47.331124], [8.536373, 47.331106], [8.536393, 47.331089], [8.536414, 47.331074], [8.536438, 47.33106], [8.536464, 47.331047], [8.536491, 47.331037], [8.536519, 47.331027], [8.536548, 47.33102], [8.53658, 47.331014], [8.536612, 47.33101], [8.536644, 47.331008], [8.536677, 47.331007], [8.536709, 47.331009], [8.536741, 47.331013], [8.536773, 47.331018], [8.536804, 47.331026]]], "type": "MultiLineString"}, "id": "3861", "properties": {}, "type": "Feature"}, {"bbox": [8.4778, 47.384952, 8.478063, 47.385252], "geometry": {"coordinates": [[[8.477807, 47.385252], [8.477803, 47.385198], [8.477801, 47.385187], [8.4778, 47.385177], [8.477801, 47.385166], [8.477803, 47.385156], [8.477807, 47.385146], [8.477811, 47.385136], [8.477817, 47.385127], [8.477824, 47.385117], [8.477832, 47.385109], [8.477842, 47.3851], [8.477852, 47.385093], [8.478063, 47.384952]]], "type": "MultiLineString"}, "id": "3866", "properties": {}, "type": "Feature"}, {"bbox": [8.499608, 47.3652, 8.502572, 47.366964], "geometry": {"coordinates": [[[8.499608, 47.366964], [8.500564, 47.365373], [8.500624, 47.365308], [8.500668, 47.365285], [8.500697, 47.365272], [8.500726, 47.365262], [8.500755, 47.365254], [8.500788, 47.365249], [8.500853, 47.365244], [8.500943, 47.365242], [8.502238, 47.365246], [8.502341, 47.365245], [8.502362, 47.365246], [8.502572, 47.3652]]], "type": "MultiLineString"}, "id": "3871", "properties": {}, "type": "Feature"}, {"bbox": [8.588245, 47.397659, 8.588409, 47.397841], "geometry": {"coordinates": [[[8.588245, 47.397659], [8.588282, 47.397684], [8.588316, 47.397712], [8.588345, 47.397742], [8.588371, 47.397774], [8.588392, 47.397807], [8.588409, 47.397841]]], "type": "MultiLineString"}, "id": "3875", "properties": {}, "type": "Feature"}, {"bbox": [8.59131, 47.359998, 8.591927, 47.360989], "geometry": {"coordinates": [[[8.59131, 47.360989], [8.591398, 47.360907], [8.591478, 47.36082], [8.591548, 47.36073], [8.591651, 47.360574], [8.591736, 47.360413], [8.591804, 47.360248], [8.591878, 47.360045], [8.591882, 47.360038], [8.591886, 47.360031], [8.591891, 47.360025], [8.591896, 47.360019], [8.591903, 47.360013], [8.59191, 47.360008], [8.591918, 47.360003], [8.591927, 47.359998]]], "type": "MultiLineString"}, "id": "3876", "properties": {}, "type": "Feature"}, {"bbox": [8.531936, 47.381063, 8.534548, 47.382455], "geometry": {"coordinates": [[[8.531936, 47.381063], [8.53206, 47.381129], [8.532066, 47.381132], [8.532072, 47.381134], [8.532079, 47.381137], [8.532086, 47.381138], [8.532093, 47.38114], [8.5321, 47.381141], [8.532108, 47.381142], [8.532115, 47.381142], [8.532122, 47.381141], [8.53213, 47.381141], [8.532137, 47.381139], [8.532144, 47.381138], [8.532151, 47.381136], [8.532157, 47.381133], [8.532163, 47.38113], [8.532229, 47.38109], [8.532235, 47.381087], [8.532241, 47.381083], [8.532248, 47.38108], [8.532256, 47.381077], [8.532263, 47.381075], [8.532271, 47.381073], [8.532279, 47.381072], [8.532287, 47.381071], [8.532295, 47.381071], [8.532303, 47.381071], [8.532311, 47.381072], [8.532319, 47.381073], [8.532327, 47.381074], [8.532335, 47.381076], [8.532342, 47.381078], [8.532349, 47.381081], [8.532356, 47.381085], [8.532362, 47.381088], [8.532368, 47.381092], [8.532944, 47.381444], [8.533006, 47.381495], [8.533634, 47.381886], [8.534548, 47.382455]]], "type": "MultiLineString"}, "id": "3882", "properties": {}, "type": "Feature"}, {"bbox": [8.532368, 47.38002, 8.536921, 47.382861], "geometry": {"coordinates": [[[8.536921, 47.38002], [8.535182, 47.381008], [8.533634, 47.381886], [8.53351, 47.381971], [8.533322, 47.382114], [8.533272, 47.382152], [8.532872, 47.382464], [8.532741, 47.382567], [8.532368, 47.382861]]], "type": "MultiLineString"}, "id": "3883", "properties": {}, "type": "Feature"}, {"bbox": [8.530819, 47.373815, 8.531953, 47.374326], "geometry": {"coordinates": [[[8.531953, 47.373815], [8.531752, 47.373875], [8.531559, 47.373945], [8.531375, 47.374025], [8.530944, 47.374237], [8.530901, 47.374266], [8.53086, 47.374296], [8.530819, 47.374326]]], "type": "MultiLineString"}, "id": "3884", "properties": {}, "type": "Feature"}, {"bbox": [8.503908, 47.396079, 8.504316, 47.396528], "geometry": {"coordinates": [[[8.504316, 47.396528], [8.503908, 47.396079]]], "type": "MultiLineString"}, "id": "3886", "properties": {}, "type": "Feature"}, {"bbox": [8.531347, 47.404896, 8.53498, 47.408017], "geometry": {"coordinates": [[[8.53498, 47.404896], [8.534598, 47.405001], [8.534573, 47.40501], [8.53455, 47.405021], [8.534528, 47.405032], [8.534508, 47.405045], [8.534489, 47.405059], [8.534472, 47.405074], [8.534257, 47.405312], [8.534241, 47.405325], [8.534223, 47.405337], [8.534204, 47.405348], [8.534183, 47.405357], [8.534161, 47.405366], [8.534138, 47.405372], [8.534129, 47.40537], [8.53412, 47.405368], [8.53411, 47.405367], [8.534101, 47.405366], [8.534091, 47.405366], [8.534081, 47.405367], [8.534072, 47.405368], [8.534063, 47.40537], [8.534054, 47.405372], [8.534045, 47.405375], [8.534037, 47.405378], [8.534029, 47.405382], [8.534022, 47.405386], [8.534015, 47.405391], [8.533154, 47.406289], [8.532017, 47.40748], [8.531857, 47.407652], [8.531681, 47.407835], [8.531647, 47.407866], [8.531608, 47.407895], [8.531566, 47.407921], [8.531521, 47.407944], [8.531473, 47.407965], [8.531347, 47.408017]]], "type": "MultiLineString"}, "id": "3888", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.377977, 8.526722, 47.378908], "geometry": {"coordinates": [[[8.526722, 47.377977], [8.526264, 47.378218], [8.525749, 47.378489], [8.525629, 47.378552], [8.52506, 47.378851], [8.524952, 47.378908]]], "type": "MultiLineString"}, "id": "3889", "properties": {}, "type": "Feature"}, {"bbox": [8.528017, 47.384959, 8.529065, 47.386521], "geometry": {"coordinates": [[[8.528017, 47.384959], [8.528539, 47.385685], [8.528584, 47.385779], [8.52861, 47.38584], [8.52874, 47.386021], [8.52878, 47.386095], [8.528816, 47.38617], [8.528847, 47.386246], [8.528909, 47.386414], [8.529065, 47.386521]]], "type": "MultiLineString"}, "id": "3895", "properties": {}, "type": "Feature"}, {"bbox": [8.551155, 47.376436, 8.5582, 47.38133], "geometry": {"coordinates": [[[8.551155, 47.38133], [8.551338, 47.381195], [8.5515, 47.381049], [8.55164, 47.380893], [8.55187, 47.380646], [8.55213, 47.380414], [8.552419, 47.380197], [8.553215, 47.37967], [8.553947, 47.379219], [8.554077, 47.379137], [8.554717, 47.378792], [8.554914, 47.378707], [8.555089, 47.378636], [8.555271, 47.378575], [8.555461, 47.378525], [8.556075, 47.378399], [8.55629, 47.378354], [8.556392, 47.378321], [8.55649, 47.378282], [8.556582, 47.378237], [8.556668, 47.378187], [8.556746, 47.378131], [8.556791, 47.378092], [8.556831, 47.378051], [8.556866, 47.378008], [8.556894, 47.377963], [8.556916, 47.377916], [8.557044, 47.377563], [8.557052, 47.377523], [8.557057, 47.377483], [8.557057, 47.377443], [8.557194, 47.37726], [8.557271, 47.377167], [8.557624, 47.376884], [8.55783, 47.376711], [8.558014, 47.376567], [8.558115, 47.376483], [8.5582, 47.376436]]], "type": "MultiLineString"}, "id": "3905", "properties": {}, "type": "Feature"}, {"bbox": [8.525526, 47.351791, 8.526934, 47.361295], "geometry": {"coordinates": [[[8.525526, 47.361295], [8.525582, 47.36112], [8.525625, 47.360942], [8.525656, 47.360764], [8.525722, 47.360358], [8.525738, 47.360307], [8.525821, 47.359803], [8.525828, 47.35976], [8.525941, 47.35907], [8.526079, 47.358227], [8.526088, 47.358074], [8.526181, 47.356572], [8.526178, 47.356463], [8.526171, 47.356227], [8.526058, 47.354878], [8.526016, 47.354383], [8.526055, 47.354329], [8.526119, 47.354142], [8.52633, 47.353502], [8.526349, 47.353446], [8.526383, 47.353351], [8.526934, 47.351791]]], "type": "MultiLineString"}, "id": "3907", "properties": {}, "type": "Feature"}, {"bbox": [8.570167, 47.39901, 8.573345, 47.403237], "geometry": {"coordinates": [[[8.570219, 47.403237], [8.570218, 47.403223], [8.57022, 47.403195], [8.570226, 47.403167], [8.570236, 47.40314], [8.57025, 47.403113], [8.570267, 47.403087], [8.570462, 47.402825], [8.57046, 47.402775], [8.570452, 47.402725], [8.570439, 47.402676], [8.57042, 47.402627], [8.570188, 47.402245], [8.570178, 47.402221], [8.570172, 47.402197], [8.570168, 47.402172], [8.570167, 47.402147], [8.57017, 47.402122], [8.570175, 47.402097], [8.570184, 47.402073], [8.570195, 47.40205], [8.570209, 47.402027], [8.570227, 47.402005], [8.570246, 47.401984], [8.570353, 47.401903], [8.570778, 47.401653], [8.571079, 47.401377], [8.572053, 47.400534], [8.572262, 47.400355], [8.572448, 47.400165], [8.572612, 47.399966], [8.57275, 47.399758], [8.572864, 47.399544], [8.572873, 47.399507], [8.572887, 47.399472], [8.572906, 47.399438], [8.572929, 47.399405], [8.572957, 47.399373], [8.572989, 47.399344], [8.573345, 47.39901]]], "type": "MultiLineString"}, "id": "3911", "properties": {}, "type": "Feature"}, {"bbox": [8.55424, 47.385469, 8.555851, 47.386466], "geometry": {"coordinates": [[[8.55424, 47.386339], [8.554351, 47.386371], [8.554554, 47.38646], [8.55456, 47.386462], [8.554567, 47.386463], [8.554573, 47.386465], [8.55458, 47.386466], [8.554587, 47.386466], [8.554594, 47.386466], [8.554601, 47.386466], [8.554608, 47.386465], [8.554615, 47.386464], [8.554622, 47.386462], [8.554628, 47.38646], [8.554635, 47.386458], [8.554641, 47.386455], [8.554646, 47.386453], [8.554651, 47.386449], [8.554656, 47.386446], [8.55466, 47.386442], [8.555084, 47.386142], [8.555235, 47.386066], [8.555494, 47.385754], [8.555851, 47.385469]]], "type": "MultiLineString"}, "id": "3915", "properties": {}, "type": "Feature"}, {"bbox": [8.52294, 47.340197, 8.530459, 47.341594], "geometry": {"coordinates": [[[8.530459, 47.341323], [8.529393, 47.341524], [8.529325, 47.341537], [8.52919, 47.341564], [8.529052, 47.341582], [8.528913, 47.341592], [8.528772, 47.341594], [8.528517, 47.341584], [8.528469, 47.341582], [8.528422, 47.341579], [8.528375, 47.341573], [8.528313, 47.341563], [8.528253, 47.341549], [8.528195, 47.341533], [8.527777, 47.341374], [8.527529, 47.341293], [8.527497, 47.341281], [8.526832, 47.341023], [8.526537, 47.340909], [8.526513, 47.340901], [8.52649, 47.340893], [8.526466, 47.340885], [8.526391, 47.340864], [8.526315, 47.340845], [8.526237, 47.34083], [8.526222, 47.340829], [8.526207, 47.340828], [8.526192, 47.340827], [8.52608, 47.340824], [8.525967, 47.340828], [8.525855, 47.340837], [8.525745, 47.340853], [8.525637, 47.340875], [8.525572, 47.340889], [8.525506, 47.340903], [8.525439, 47.340915], [8.525304, 47.340935], [8.525167, 47.340951], [8.525029, 47.340961], [8.524721, 47.340956], [8.524413, 47.340951], [8.524032, 47.340958], [8.523982, 47.340957], [8.523932, 47.340953], [8.523883, 47.340945], [8.523835, 47.340935], [8.523787, 47.340922], [8.523741, 47.340906], [8.523698, 47.340888], [8.523657, 47.340867], [8.523619, 47.340843], [8.523584, 47.340818], [8.523553, 47.34079], [8.523525, 47.340761], [8.523287, 47.340497], [8.52294, 47.340197]]], "type": "MultiLineString"}, "id": "3922", "properties": {}, "type": "Feature"}, {"bbox": [8.602959, 47.356441, 8.604386, 47.357359], "geometry": {"coordinates": [[[8.602959, 47.356441], [8.603063, 47.356534], [8.603158, 47.356632], [8.603242, 47.356735], [8.603274, 47.35676], [8.603308, 47.356784], [8.603343, 47.356806], [8.603419, 47.356835], [8.603495, 47.356863], [8.60357, 47.356892], [8.603816, 47.357023], [8.604057, 47.357157], [8.604293, 47.357295], [8.604386, 47.357359]]], "type": "MultiLineString"}, "id": "3926", "properties": {}, "type": "Feature"}, {"bbox": [8.5148, 47.373999, 8.515054, 47.374159], "geometry": {"coordinates": [[[8.515054, 47.374159], [8.514833, 47.374035], [8.514821, 47.374023], [8.51481, 47.374011], [8.5148, 47.373999]]], "type": "MultiLineString"}, "id": "3936", "properties": {}, "type": "Feature"}, {"bbox": [8.528049, 47.411321, 8.530265, 47.413467], "geometry": {"coordinates": [[[8.528049, 47.411321], [8.528669, 47.411927], [8.52883, 47.412085], [8.529635, 47.412868], [8.529877, 47.413078], [8.530265, 47.413467]]], "type": "MultiLineString"}, "id": "3944", "properties": {}, "type": "Feature"}, {"bbox": [8.567092, 47.359347, 8.569983, 47.362353], "geometry": {"coordinates": [[[8.567092, 47.362353], [8.567188, 47.362265], [8.569093, 47.360441], [8.569156, 47.360381], [8.569259, 47.360282], [8.569941, 47.359629], [8.569951, 47.359619], [8.56996, 47.359609], [8.569967, 47.359598], [8.569973, 47.359587], [8.569978, 47.359576], [8.569981, 47.359564], [8.569983, 47.359552], [8.569983, 47.35954], [8.569981, 47.359528], [8.569978, 47.359517], [8.569974, 47.359505], [8.569968, 47.359494], [8.569961, 47.359483], [8.569952, 47.359473], [8.569942, 47.359463], [8.569931, 47.359454], [8.569762, 47.359347]]], "type": "MultiLineString"}, "id": "3951", "properties": {}, "type": "Feature"}, {"bbox": [8.543088, 47.403943, 8.543683, 47.404106], "geometry": {"coordinates": [[[8.543088, 47.404106], [8.543683, 47.403943]]], "type": "MultiLineString"}, "id": "3969", "properties": {}, "type": "Feature"}, {"bbox": [8.598493, 47.357848, 8.599763, 47.358576], "geometry": {"coordinates": [[[8.599763, 47.357848], [8.599591, 47.357983], [8.599405, 47.358108], [8.599205, 47.358223], [8.598992, 47.358327], [8.598493, 47.358576]]], "type": "MultiLineString"}, "id": "3972", "properties": {}, "type": "Feature"}, {"bbox": [8.57151, 47.369187, 8.573132, 47.369514], "geometry": {"coordinates": [[[8.57151, 47.369187], [8.571578, 47.369204], [8.571646, 47.369221], [8.571715, 47.369237], [8.571819, 47.369261], [8.571923, 47.369284], [8.572028, 47.369306], [8.572223, 47.369335], [8.572418, 47.369365], [8.572613, 47.369393], [8.572787, 47.369433], [8.57296, 47.369473], [8.573132, 47.369514]]], "type": "MultiLineString"}, "id": "4004", "properties": {}, "type": "Feature"}, {"bbox": [8.59169, 47.355728, 8.592418, 47.355988], "geometry": {"coordinates": [[[8.59169, 47.355742], [8.591721, 47.355735], [8.591752, 47.355731], [8.591784, 47.355729], [8.591817, 47.355728], [8.591849, 47.35573], [8.591881, 47.355734], [8.591912, 47.35574], [8.591942, 47.355747], [8.592105, 47.355824], [8.592264, 47.355904], [8.592418, 47.355988]]], "type": "MultiLineString"}, "id": "4008", "properties": {}, "type": "Feature"}, {"bbox": [8.532172, 47.380991, 8.538128, 47.384632], "geometry": {"coordinates": [[[8.538128, 47.380991], [8.538045, 47.38101], [8.537966, 47.381033], [8.537889, 47.381062], [8.537817, 47.381094], [8.537749, 47.381131], [8.537174, 47.381556], [8.536669, 47.381932], [8.535993, 47.382427], [8.535349, 47.382904], [8.535056, 47.383121], [8.534015, 47.383892], [8.533867, 47.384002], [8.533524, 47.38425], [8.53305, 47.384601], [8.533037, 47.384608], [8.533024, 47.384614], [8.533009, 47.384619], [8.532995, 47.384624], [8.532979, 47.384627], [8.532963, 47.38463], [8.532947, 47.384632], [8.532931, 47.384632], [8.532915, 47.384632], [8.532899, 47.384631], [8.532883, 47.384628], [8.532868, 47.384625], [8.532852, 47.384621], [8.532838, 47.384616], [8.532824, 47.38461], [8.532811, 47.384603], [8.532799, 47.384596], [8.532763, 47.384576], [8.532172, 47.384207]]], "type": "MultiLineString"}, "id": "4018", "properties": {}, "type": "Feature"}, {"bbox": [8.528669, 47.410346, 8.538108, 47.411927], "geometry": {"coordinates": [[[8.538108, 47.410375], [8.537709, 47.410353], [8.537555, 47.410347], [8.537414, 47.410346], [8.537298, 47.410349], [8.537225, 47.410353], [8.537087, 47.410363], [8.53612, 47.41044], [8.536096, 47.410442], [8.53586, 47.410465], [8.535803, 47.410475], [8.535057, 47.410591], [8.53484, 47.410638], [8.534778, 47.410651], [8.534492, 47.410713], [8.534178, 47.410785], [8.534037, 47.410818], [8.533868, 47.410861], [8.533571, 47.410939], [8.533477, 47.410962], [8.533363, 47.410986], [8.533275, 47.411004], [8.53314, 47.411026], [8.532982, 47.411046], [8.532896, 47.411055], [8.532753, 47.411063], [8.532485, 47.411098], [8.532297, 47.411123], [8.532102, 47.41116], [8.531933, 47.411199], [8.531681, 47.411262], [8.531526, 47.411304], [8.531363, 47.41135], [8.530794, 47.411506], [8.530175, 47.411675], [8.530061, 47.411695], [8.528998, 47.411888], [8.528842, 47.411916], [8.52878, 47.411926], [8.528669, 47.411927]]], "type": "MultiLineString"}, "id": "4019", "properties": {}, "type": "Feature"}, {"bbox": [8.528834, 47.334912, 8.52889, 47.338247], "geometry": {"coordinates": [[[8.528834, 47.338247], [8.528862, 47.338111], [8.528881, 47.337827], [8.528885, 47.337029], [8.528879, 47.336919], [8.528885, 47.336836], [8.52889, 47.334912]]], "type": "MultiLineString"}, "id": "4021", "properties": {}, "type": "Feature"}, {"bbox": [8.544165, 47.412512, 8.544284, 47.413914], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.544242, 47.412689], [8.544207, 47.412866], [8.54418, 47.413043], [8.544173, 47.413109], [8.544168, 47.413175], [8.544166, 47.413241], [8.544165, 47.41328], [8.544166, 47.41332], [8.544167, 47.413359], [8.544197, 47.413795], [8.544211, 47.413914]]], "type": "MultiLineString"}, "id": "4023", "properties": {}, "type": "Feature"}, {"bbox": [8.547111, 47.36276, 8.548538, 47.364572], "geometry": {"coordinates": [[[8.547111, 47.364572], [8.547472, 47.364114], [8.548122, 47.363289], [8.548144, 47.363259], [8.548235, 47.363144], [8.548538, 47.36276]]], "type": "MultiLineString"}, "id": "4026", "properties": {}, "type": "Feature"}, {"bbox": [8.539572, 47.405902, 8.548372, 47.408962], "geometry": {"coordinates": [[[8.548372, 47.405902], [8.548142, 47.406004], [8.547158, 47.406331], [8.546763, 47.406474], [8.546119, 47.406739], [8.545934, 47.406816], [8.545519, 47.406988], [8.545378, 47.407044], [8.545235, 47.407099], [8.545091, 47.407152], [8.544084, 47.407484], [8.543338, 47.407728], [8.543263, 47.407753], [8.543118, 47.4078], [8.542536, 47.407992], [8.542411, 47.408033], [8.54197, 47.408178], [8.54179, 47.408236], [8.541192, 47.408432], [8.540282, 47.40873], [8.539572, 47.408962]]], "type": "MultiLineString"}, "id": "4028", "properties": {}, "type": "Feature"}, {"bbox": [8.485089, 47.389026, 8.486752, 47.38933], "geometry": {"coordinates": [[[8.486752, 47.389026], [8.486174, 47.38913], [8.486113, 47.38914], [8.486053, 47.38915], [8.485992, 47.389159], [8.485089, 47.38933]]], "type": "MultiLineString"}, "id": "4030", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394777, 8.494073, 47.398041], "geometry": {"coordinates": [[[8.494073, 47.398041], [8.494051, 47.39798], [8.494015, 47.397884], [8.493812, 47.397337], [8.493767, 47.397232], [8.493732, 47.397145], [8.493683, 47.397062], [8.493623, 47.396982], [8.493513, 47.396856], [8.493394, 47.396733], [8.493268, 47.396615], [8.491207, 47.395], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "4032", "properties": {}, "type": "Feature"}, {"bbox": [8.522657, 47.342358, 8.52363, 47.343346], "geometry": {"coordinates": [[[8.523606, 47.343346], [8.523605, 47.343258], [8.52363, 47.342422], [8.523626, 47.342414], [8.523622, 47.342407], [8.523616, 47.342401], [8.523609, 47.342394], [8.523602, 47.342388], [8.523594, 47.342383], [8.523586, 47.342377], [8.523576, 47.342373], [8.523566, 47.342369], [8.523556, 47.342365], [8.523545, 47.342363], [8.523535, 47.34236], [8.523523, 47.342359], [8.523512, 47.342358], [8.5235, 47.342358], [8.523489, 47.342358], [8.523478, 47.342359], [8.523467, 47.342361], [8.523456, 47.342363], [8.523445, 47.342366], [8.523361, 47.342383], [8.523278, 47.342403], [8.523196, 47.342426], [8.523122, 47.342449], [8.523044, 47.342467], [8.522964, 47.34248], [8.522883, 47.342487], [8.522801, 47.34249], [8.52272, 47.342487], [8.522715, 47.342487], [8.522711, 47.342487], [8.522706, 47.342487], [8.522701, 47.342487], [8.522697, 47.342488], [8.522693, 47.342489], [8.522688, 47.34249], [8.522684, 47.342491], [8.52268, 47.342493], [8.522677, 47.342495], [8.522673, 47.342497], [8.52267, 47.342499], [8.522667, 47.342501], [8.522665, 47.342504], [8.522662, 47.342507], [8.52266, 47.342509], [8.522659, 47.342512], [8.522658, 47.342515], [8.522657, 47.342518]]], "type": "MultiLineString"}, "id": "4033", "properties": {}, "type": "Feature"}, {"bbox": [8.551023, 47.378722, 8.551986, 47.37944], "geometry": {"coordinates": [[[8.551023, 47.37944], [8.551317, 47.379185], [8.551639, 47.378945], [8.551986, 47.378722]]], "type": "MultiLineString"}, "id": "4037", "properties": {}, "type": "Feature"}, {"bbox": [8.552288, 47.369868, 8.557911, 47.371546], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552406, 47.370085], [8.552412, 47.370092], [8.552418, 47.370099], [8.552426, 47.370105], [8.552434, 47.370111], [8.552444, 47.370117], [8.552454, 47.370121], [8.552464, 47.370125], [8.552475, 47.370129], [8.552486, 47.370132], [8.552498, 47.370134], [8.553222, 47.370387], [8.553807, 47.370591], [8.553874, 47.370614], [8.554591, 47.370865], [8.555369, 47.371136], [8.555508, 47.371186], [8.555928, 47.371313], [8.555994, 47.371332], [8.556649, 47.371519], [8.556734, 47.371546], [8.556825, 47.371546], [8.556923, 47.371541], [8.557721, 47.371473], [8.557744, 47.37147], [8.557756, 47.371467], [8.557911, 47.371426]]], "type": "MultiLineString"}, "id": "4038", "properties": {}, "type": "Feature"}, {"bbox": [8.509512, 47.415031, 8.518248, 47.419988], "geometry": {"coordinates": [[[8.518248, 47.415031], [8.518208, 47.415041], [8.517685, 47.415205], [8.517185, 47.415399], [8.516948, 47.415489], [8.516797, 47.415551], [8.516592, 47.415634], [8.515951, 47.415875], [8.514838, 47.416259], [8.514701, 47.416306], [8.514794, 47.416472], [8.514769, 47.416531], [8.51476, 47.416546], [8.514616, 47.416739], [8.514555, 47.416811], [8.514505, 47.416867], [8.514429, 47.41694], [8.514371, 47.417006], [8.514234, 47.417102], [8.514185, 47.417139], [8.513293, 47.417736], [8.513124, 47.41785], [8.512953, 47.417963], [8.512781, 47.418074], [8.512707, 47.418115], [8.512632, 47.418156], [8.512556, 47.418195], [8.512411, 47.418266], [8.512262, 47.418332], [8.51211, 47.418395], [8.512012, 47.418438], [8.511476, 47.418676], [8.511461, 47.418684], [8.511434, 47.418707], [8.511422, 47.418713], [8.511345, 47.41875], [8.511267, 47.418786], [8.511248, 47.418797], [8.511166, 47.418842], [8.51104, 47.418923], [8.510867, 47.419054], [8.510721, 47.419148], [8.510617, 47.419226], [8.510509, 47.419291], [8.510429, 47.419332], [8.510321, 47.419378], [8.510053, 47.419482], [8.510001, 47.419504], [8.509968, 47.419521], [8.509935, 47.419538], [8.509846, 47.419592], [8.509783, 47.419645], [8.509747, 47.419679], [8.509714, 47.419715], [8.509695, 47.419739], [8.509512, 47.419988]]], "type": "MultiLineString"}, "id": "4039", "properties": {}, "type": "Feature"}, {"bbox": [8.534439, 47.400525, 8.535599, 47.40087], "geometry": {"coordinates": [[[8.534439, 47.40054], [8.534506, 47.400531], [8.534572, 47.400526], [8.53464, 47.400525], [8.534707, 47.400527], [8.534774, 47.400534], [8.534839, 47.400544], [8.534904, 47.400557], [8.534966, 47.400574], [8.535599, 47.40087]]], "type": "MultiLineString"}, "id": "4040", "properties": {}, "type": "Feature"}, {"bbox": [8.590803, 47.398954, 8.591786, 47.399947], "geometry": {"coordinates": [[[8.591192, 47.399947], [8.591015, 47.399657], [8.590874, 47.399464], [8.590806, 47.399344], [8.590803, 47.399285], [8.590877, 47.399258], [8.591686, 47.398954], [8.591786, 47.399006]]], "type": "MultiLineString"}, "id": "4042", "properties": {}, "type": "Feature"}, {"bbox": [8.508669, 47.415876, 8.510669, 47.417229], "geometry": {"coordinates": [[[8.510669, 47.415876], [8.510649, 47.415877], [8.510629, 47.41588], [8.510609, 47.415884], [8.51059, 47.415889], [8.510571, 47.415896], [8.510554, 47.415903], [8.510537, 47.415912], [8.510522, 47.415921], [8.510508, 47.415932], [8.510496, 47.415943], [8.510384, 47.416059], [8.510179, 47.416261], [8.509951, 47.416452], [8.509702, 47.41663], [8.509433, 47.416794], [8.509146, 47.416943], [8.509118, 47.41696], [8.509044, 47.417008], [8.508776, 47.417212], [8.50876, 47.417218], [8.508742, 47.417222], [8.508724, 47.417226], [8.508706, 47.417228], [8.508687, 47.417229], [8.508669, 47.417229]]], "type": "MultiLineString"}, "id": "4049", "properties": {}, "type": "Feature"}, {"bbox": [8.489729, 47.407827, 8.490718, 47.408613], "geometry": {"coordinates": [[[8.490681, 47.407827], [8.490694, 47.407859], [8.490706, 47.407891], [8.490717, 47.407923], [8.490718, 47.407938], [8.490717, 47.407952], [8.490714, 47.407967], [8.49071, 47.407981], [8.490704, 47.407995], [8.490696, 47.408009], [8.490686, 47.408022], [8.490675, 47.408034], [8.490662, 47.408046], [8.490648, 47.408057], [8.490632, 47.408067], [8.490495, 47.408149], [8.490359, 47.408231], [8.490224, 47.408314], [8.490107, 47.408395], [8.489984, 47.408471], [8.489856, 47.408543], [8.489729, 47.408613]]], "type": "MultiLineString"}, "id": "4051", "properties": {}, "type": "Feature"}, {"bbox": [8.508667, 47.417229, 8.509276, 47.417711], "geometry": {"coordinates": [[[8.508669, 47.417229], [8.508667, 47.417237], [8.508667, 47.417244], [8.508667, 47.417252], [8.508669, 47.41726], [8.508672, 47.417267], [8.508675, 47.417275], [8.50868, 47.417282], [8.508685, 47.417289], [8.508692, 47.417295], [8.509175, 47.417651], [8.509207, 47.417672], [8.509241, 47.417692], [8.509276, 47.417711]]], "type": "MultiLineString"}, "id": "4052", "properties": {}, "type": "Feature"}, {"bbox": [8.502251, 47.394793, 8.513371, 47.397671], "geometry": {"coordinates": [[[8.513371, 47.394793], [8.513119, 47.394841], [8.512866, 47.394886], [8.512612, 47.394927], [8.512174, 47.394992], [8.512013, 47.395015], [8.511852, 47.395034], [8.511689, 47.39505], [8.511352, 47.395076], [8.509919, 47.395188], [8.509857, 47.395193], [8.509796, 47.395197], [8.509734, 47.3952], [8.509331, 47.395213], [8.508929, 47.395231], [8.508527, 47.395251], [8.508435, 47.395254], [8.508345, 47.395261], [8.508255, 47.395271], [8.508166, 47.395284], [8.508078, 47.395301], [8.507991, 47.395321], [8.507528, 47.395435], [8.506853, 47.395619], [8.506363, 47.395784], [8.505936, 47.395931], [8.505228, 47.396176], [8.505156, 47.396199], [8.505084, 47.396222], [8.505013, 47.396246], [8.504795, 47.396324], [8.504581, 47.396409], [8.504372, 47.396499], [8.504316, 47.396528], [8.504203, 47.396586], [8.503007, 47.397239], [8.50254, 47.397477], [8.502442, 47.397529], [8.502352, 47.397588], [8.502271, 47.397652], [8.502264, 47.397658], [8.502258, 47.397664], [8.502251, 47.397671]]], "type": "MultiLineString"}, "id": "4064", "properties": {}, "type": "Feature"}, {"bbox": [8.552194, 47.360358, 8.554722, 47.363609], "geometry": {"coordinates": [[[8.552194, 47.360358], [8.55285, 47.360553], [8.553096, 47.360625], [8.553203, 47.360662], [8.553309, 47.360699], [8.553416, 47.360736], [8.553568, 47.360816], [8.553713, 47.360903], [8.553849, 47.360995], [8.553965, 47.361087], [8.55407, 47.361185], [8.554162, 47.361288], [8.554241, 47.361396], [8.554315, 47.361537], [8.554386, 47.361672], [8.554619, 47.362152], [8.554671, 47.362279], [8.554704, 47.362409], [8.554718, 47.36254], [8.55472, 47.363324], [8.554721, 47.363332], [8.554721, 47.36334], [8.554721, 47.363348], [8.554722, 47.363435], [8.554717, 47.363522], [8.554707, 47.363609]]], "type": "MultiLineString"}, "id": "4073", "properties": {}, "type": "Feature"}, {"bbox": [8.551504, 47.373039, 8.553396, 47.373548], "geometry": {"coordinates": [[[8.551504, 47.373039], [8.551612, 47.373076], [8.551657, 47.373091], [8.552398, 47.37329], [8.55257, 47.373337], [8.553033, 47.373461], [8.553183, 47.373501], [8.553396, 47.373548]]], "type": "MultiLineString"}, "id": "4075", "properties": {}, "type": "Feature"}, {"bbox": [8.546589, 47.406968, 8.550461, 47.40856], "geometry": {"coordinates": [[[8.546589, 47.40856], [8.54678, 47.408458], [8.546962, 47.408349], [8.547133, 47.408232], [8.54716, 47.408212], [8.547186, 47.408192], [8.547212, 47.408172], [8.547338, 47.40806], [8.547462, 47.407947], [8.547583, 47.407833], [8.547636, 47.407784], [8.547695, 47.407739], [8.54776, 47.407697], [8.54783, 47.407659], [8.548079, 47.407558], [8.548133, 47.407542], [8.548189, 47.407528], [8.548245, 47.407515], [8.54833, 47.407499], [8.548416, 47.407486], [8.548504, 47.407477], [8.548833, 47.407452], [8.549001, 47.407439], [8.549149, 47.407417], [8.549293, 47.407387], [8.549433, 47.407349], [8.549568, 47.407303], [8.549619, 47.407283], [8.550121, 47.407092], [8.550433, 47.406981], [8.550461, 47.406968]]], "type": "MultiLineString"}, "id": "4076", "properties": {}, "type": "Feature"}, {"bbox": [8.528001, 47.374454, 8.528748, 47.37502], "geometry": {"coordinates": [[[8.528748, 47.374454], [8.528001, 47.37502]]], "type": "MultiLineString"}, "id": "4082", "properties": {}, "type": "Feature"}, {"bbox": [8.478633, 47.390441, 8.479199, 47.390769], "geometry": {"coordinates": [[[8.479199, 47.390441], [8.47889, 47.390638], [8.478809, 47.390686], [8.478723, 47.39073], [8.478633, 47.390769]]], "type": "MultiLineString"}, "id": "4084", "properties": {}, "type": "Feature"}, {"bbox": [8.527014, 47.377307, 8.529307, 47.378473], "geometry": {"coordinates": [[[8.529307, 47.377307], [8.528158, 47.377891], [8.528053, 47.377945], [8.52718, 47.378388], [8.527014, 47.378473]]], "type": "MultiLineString"}, "id": "4097", "properties": {}, "type": "Feature"}, {"bbox": [8.527174, 47.413879, 8.52753, 47.415001], "geometry": {"coordinates": [[[8.527174, 47.413879], [8.527217, 47.414008], [8.527288, 47.414238], [8.52738, 47.414532], [8.527492, 47.414887], [8.52753, 47.415001]]], "type": "MultiLineString"}, "id": "4099", "properties": {}, "type": "Feature"}, {"bbox": [8.514921, 47.395122, 8.524473, 47.397024], "geometry": {"coordinates": [[[8.524473, 47.395122], [8.524375, 47.395147], [8.523231, 47.395469], [8.522508, 47.395662], [8.522439, 47.395679], [8.522312, 47.395709], [8.520886, 47.396093], [8.520662, 47.396158], [8.520435, 47.396219], [8.520206, 47.396276], [8.520039, 47.396315], [8.51987, 47.396351], [8.5197, 47.396386], [8.518858, 47.396547], [8.518047, 47.396705], [8.51801, 47.396712], [8.517972, 47.396718], [8.517934, 47.396724], [8.517857, 47.396735], [8.51778, 47.396745], [8.517703, 47.396752], [8.515693, 47.396961], [8.515437, 47.396991], [8.51518, 47.397012], [8.514921, 47.397024]]], "type": "MultiLineString"}, "id": "4102", "properties": {}, "type": "Feature"}, {"bbox": [8.576637, 47.361372, 8.577241, 47.361872], "geometry": {"coordinates": [[[8.576637, 47.361372], [8.576661, 47.361398], [8.576682, 47.361426], [8.576699, 47.361455], [8.576713, 47.361484], [8.576723, 47.361514], [8.576729, 47.361545], [8.576732, 47.361576], [8.57673, 47.361607], [8.576725, 47.361638], [8.576725, 47.361658], [8.576727, 47.361678], [8.576732, 47.361697], [8.576739, 47.361716], [8.576748, 47.361735], [8.57676, 47.361753], [8.576774, 47.361771], [8.57679, 47.361787], [8.576808, 47.361802], [8.576829, 47.361817], [8.576851, 47.36183], [8.576874, 47.361842], [8.576899, 47.361852], [8.576925, 47.361861], [8.576954, 47.361866], [8.576985, 47.36187], [8.577015, 47.361872], [8.577046, 47.361872], [8.577076, 47.36187], [8.577106, 47.361867], [8.577136, 47.361861], [8.577165, 47.361854], [8.577192, 47.361845], [8.577219, 47.361834], [8.577241, 47.361824]]], "type": "MultiLineString"}, "id": "4103", "properties": {}, "type": "Feature"}, {"bbox": [8.553783, 47.378437, 8.567472, 47.387556], "geometry": {"coordinates": [[[8.567211, 47.378437], [8.567337, 47.378719], [8.567424, 47.379008], [8.567472, 47.379301], [8.567464, 47.379484], [8.567453, 47.379614], [8.567397, 47.380408], [8.567378, 47.380441], [8.567356, 47.380473], [8.567329, 47.380503], [8.567298, 47.380531], [8.567264, 47.380557], [8.567227, 47.380582], [8.567186, 47.380604], [8.566703, 47.380833], [8.566219, 47.381015], [8.565759, 47.381171], [8.565312, 47.381344], [8.56488, 47.381533], [8.564858, 47.381544], [8.564835, 47.381555], [8.564813, 47.381566], [8.564634, 47.381654], [8.564459, 47.381745], [8.564288, 47.381839], [8.563574, 47.382239], [8.563135, 47.3825], [8.562721, 47.382778], [8.562333, 47.383073], [8.5623, 47.3831], [8.562267, 47.383127], [8.562234, 47.383154], [8.562056, 47.383304], [8.561885, 47.383457], [8.561721, 47.383614], [8.561365, 47.383963], [8.561301, 47.384017], [8.56123, 47.384066], [8.561154, 47.384112], [8.561072, 47.384153], [8.560998, 47.384188], [8.560921, 47.384219], [8.560839, 47.384246], [8.560756, 47.384268], [8.560415, 47.384316], [8.560165, 47.384349], [8.560005, 47.384379], [8.55985, 47.384418], [8.5597, 47.384466], [8.559556, 47.384522], [8.559419, 47.384586], [8.558636, 47.38501], [8.558505, 47.385081], [8.556367, 47.386198], [8.556217, 47.386277], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "4106", "properties": {}, "type": "Feature"}, {"bbox": [8.517183, 47.368461, 8.519571, 47.36881], "geometry": {"coordinates": [[[8.519571, 47.368781], [8.519538, 47.368791], [8.519504, 47.368799], [8.51947, 47.368805], [8.519434, 47.368808], [8.519399, 47.36881], [8.519363, 47.368809], [8.519328, 47.368806], [8.519293, 47.368802], [8.519259, 47.368795], [8.519225, 47.368786], [8.519005, 47.368727], [8.518734, 47.368668], [8.518359, 47.36858], [8.517973, 47.368515], [8.51758, 47.368476], [8.517183, 47.368461]]], "type": "MultiLineString"}, "id": "4107", "properties": {}, "type": "Feature"}, {"bbox": [8.530479, 47.401156, 8.531699, 47.40306], "geometry": {"coordinates": [[[8.531699, 47.401156], [8.531551, 47.401419], [8.531365, 47.40167], [8.531143, 47.401907], [8.53073, 47.402308], [8.530666, 47.402373], [8.530611, 47.402441], [8.530565, 47.402513], [8.530529, 47.402587], [8.530502, 47.402663], [8.530485, 47.40274], [8.530479, 47.402818], [8.530483, 47.402896], [8.530502, 47.40306]]], "type": "MultiLineString"}, "id": "4129", "properties": {}, "type": "Feature"}, {"bbox": [8.58516, 47.405535, 8.586005, 47.405738], "geometry": {"coordinates": [[[8.586005, 47.405738], [8.58572, 47.405677], [8.585438, 47.40561], [8.58516, 47.405535]]], "type": "MultiLineString"}, "id": "4134", "properties": {}, "type": "Feature"}, {"bbox": [8.528195, 47.374326, 8.530819, 47.376427], "geometry": {"coordinates": [[[8.530819, 47.374326], [8.5308, 47.37434], [8.530781, 47.374355], [8.530763, 47.374369], [8.530557, 47.374535], [8.530421, 47.374644], [8.530284, 47.374753], [8.529875, 47.375081], [8.529067, 47.375729], [8.528862, 47.375893], [8.528656, 47.376057], [8.528397, 47.376268], [8.528195, 47.376427]]], "type": "MultiLineString"}, "id": "4141", "properties": {}, "type": "Feature"}, {"bbox": [8.574575, 47.363395, 8.575456, 47.363742], "geometry": {"coordinates": [[[8.574575, 47.363526], [8.574577, 47.36353], [8.574589, 47.363554], [8.574604, 47.363577], [8.574622, 47.3636], [8.574643, 47.363621], [8.574667, 47.363641], [8.574693, 47.363659], [8.574721, 47.363676], [8.574751, 47.363691], [8.574783, 47.363705], [8.574816, 47.363716], [8.574851, 47.363726], [8.574887, 47.363733], [8.574923, 47.363738], [8.574961, 47.363741], [8.574998, 47.363742], [8.575035, 47.363741], [8.575073, 47.363737], [8.575111, 47.363731], [8.575147, 47.363723], [8.575182, 47.363713], [8.575216, 47.363701], [8.575248, 47.363687], [8.575278, 47.36367], [8.575306, 47.363653], [8.575331, 47.363633], [8.575354, 47.363612], [8.575374, 47.36359], [8.575391, 47.363567], [8.575406, 47.363543], [8.575416, 47.363518], [8.575456, 47.363395]]], "type": "MultiLineString"}, "id": "4145", "properties": {}, "type": "Feature"}, {"bbox": [8.539481, 47.382717, 8.54211, 47.387809], "geometry": {"coordinates": [[[8.541502, 47.382717], [8.541521, 47.382724], [8.541538, 47.382731], [8.541554, 47.38274], [8.541569, 47.38275], [8.541582, 47.382761], [8.541594, 47.382772], [8.541605, 47.382784], [8.541614, 47.382797], [8.541621, 47.38281], [8.541627, 47.382823], [8.541677, 47.383042], [8.541691, 47.383121], [8.541713, 47.383198], [8.541743, 47.383274], [8.541797, 47.383381], [8.541861, 47.383484], [8.541935, 47.383585], [8.542047, 47.383727], [8.542067, 47.383758], [8.542084, 47.383791], [8.542096, 47.383825], [8.542105, 47.383859], [8.542109, 47.383894], [8.54211, 47.383929], [8.542106, 47.383964], [8.542098, 47.383998], [8.542065, 47.384069], [8.541904, 47.384354], [8.541825, 47.38449], [8.541617, 47.384787], [8.541394, 47.385108], [8.541272, 47.38526], [8.540996, 47.385589], [8.540922, 47.385678], [8.540785, 47.385861], [8.540572, 47.386164], [8.540521, 47.38624], [8.539967, 47.387103], [8.539934, 47.387153], [8.53983, 47.387315], [8.539481, 47.387809]]], "type": "MultiLineString"}, "id": "4150", "properties": {}, "type": "Feature"}, {"bbox": [8.583524, 47.396752, 8.587711, 47.399487], "geometry": {"coordinates": [[[8.583524, 47.399487], [8.584289, 47.399099], [8.584692, 47.398878], [8.585018, 47.398688], [8.58548, 47.398424], [8.58588, 47.398168], [8.586229, 47.397918], [8.586357, 47.397819], [8.586559, 47.397657], [8.586722, 47.397538], [8.587014, 47.397357], [8.587314, 47.397176], [8.587475, 47.397074], [8.587537, 47.397015], [8.587592, 47.396953], [8.587639, 47.396889], [8.587679, 47.396821], [8.587711, 47.396752]]], "type": "MultiLineString"}, "id": "4156", "properties": {}, "type": "Feature"}, {"bbox": [8.55424, 47.379362, 8.559817, 47.386339], "geometry": {"coordinates": [[[8.559817, 47.379362], [8.559781, 47.37945], [8.559716, 47.379633], [8.558903, 47.381588], [8.558801, 47.381805], [8.558672, 47.382015], [8.558518, 47.382217], [8.558393, 47.382356], [8.558257, 47.382487], [8.558109, 47.382613], [8.557949, 47.382731], [8.557376, 47.38314], [8.557226, 47.383244], [8.556523, 47.38373], [8.556391, 47.383824], [8.55636, 47.383845], [8.55633, 47.383866], [8.556301, 47.383887], [8.556111, 47.38403], [8.555933, 47.38418], [8.555767, 47.384336], [8.555654, 47.384453], [8.555548, 47.384573], [8.555449, 47.384696], [8.555344, 47.384842], [8.555278, 47.384933], [8.55462, 47.385867], [8.554502, 47.386028], [8.554375, 47.386185], [8.55424, 47.386339]]], "type": "MultiLineString"}, "id": "4160", "properties": {}, "type": "Feature"}, {"bbox": [8.552485, 47.363502, 8.553707, 47.364513], "geometry": {"coordinates": [[[8.552485, 47.364513], [8.552749, 47.364294], [8.552965, 47.364132], [8.553016, 47.364071], [8.553707, 47.363502]]], "type": "MultiLineString"}, "id": "4171", "properties": {}, "type": "Feature"}, {"bbox": [8.57392, 47.406302, 8.576059, 47.40702], "geometry": {"coordinates": [[[8.57392, 47.40702], [8.574037, 47.406979], [8.576059, 47.406302]]], "type": "MultiLineString"}, "id": "4176", "properties": {}, "type": "Feature"}, {"bbox": [8.549506, 47.404607, 8.550749, 47.404699], "geometry": {"coordinates": [[[8.549506, 47.404699], [8.549752, 47.40468], [8.550749, 47.404607]]], "type": "MultiLineString"}, "id": "4177", "properties": {}, "type": "Feature"}, {"bbox": [8.528054, 47.351557, 8.529144, 47.356195], "geometry": {"coordinates": [[[8.528054, 47.356195], [8.528056, 47.356193], [8.528084, 47.356157], [8.528117, 47.356124], [8.528146, 47.356096], [8.528172, 47.356067], [8.528194, 47.356037], [8.528212, 47.356006], [8.528226, 47.355974], [8.528237, 47.355941], [8.528335, 47.355672], [8.528414, 47.355597], [8.528452, 47.354132], [8.528466, 47.353432], [8.52845, 47.353252], [8.528292, 47.352108], [8.528287, 47.352061], [8.528287, 47.352015], [8.528294, 47.351969], [8.528304, 47.351931], [8.528319, 47.351894], [8.528339, 47.351859], [8.528363, 47.351824], [8.528392, 47.351791], [8.528424, 47.35176], [8.52846, 47.351731], [8.5285, 47.351704], [8.528543, 47.351679], [8.528589, 47.351657], [8.528637, 47.351638], [8.528688, 47.351622], [8.528741, 47.351608], [8.528795, 47.351598], [8.529144, 47.351557]]], "type": "MultiLineString"}, "id": "4178", "properties": {}, "type": "Feature"}, {"bbox": [8.539245, 47.410369, 8.54133, 47.411361], "geometry": {"coordinates": [[[8.54133, 47.411357], [8.541276, 47.411361], [8.540404, 47.411026], [8.53975, 47.410773], [8.539678, 47.410745], [8.539437, 47.410656], [8.539245, 47.410581], [8.539433, 47.410369]]], "type": "MultiLineString"}, "id": "4179", "properties": {}, "type": "Feature"}, {"bbox": [8.505255, 47.39882, 8.506506, 47.399556], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506484, 47.398841], [8.50646, 47.398833], [8.506436, 47.398828], [8.506412, 47.398824], [8.506387, 47.398821], [8.506361, 47.39882], [8.506336, 47.39882], [8.50631, 47.398822], [8.506285, 47.398825], [8.506261, 47.39883], [8.506237, 47.398837], [8.506215, 47.398845], [8.506193, 47.398854], [8.506173, 47.398864], [8.506154, 47.398876], [8.506136, 47.398888], [8.506121, 47.398902], [8.505706, 47.399263], [8.505565, 47.399367], [8.505415, 47.399465], [8.505255, 47.399556]]], "type": "MultiLineString"}, "id": "4180", "properties": {}, "type": "Feature"}, {"bbox": [8.542526, 47.42858, 8.545214, 47.428758], "geometry": {"coordinates": [[[8.545214, 47.428758], [8.543713, 47.428655], [8.543575, 47.428645], [8.543436, 47.428636], [8.542632, 47.428581], [8.542617, 47.42858], [8.542601, 47.42858], [8.542586, 47.428581], [8.54257, 47.428583], [8.542555, 47.428586], [8.54254, 47.42859], [8.542526, 47.428595]]], "type": "MultiLineString"}, "id": "4181", "properties": {}, "type": "Feature"}, {"bbox": [8.541556, 47.389231, 8.544457, 47.393535], "geometry": {"coordinates": [[[8.541556, 47.389231], [8.5419, 47.389567], [8.542158, 47.389829], [8.542177, 47.389848], [8.542352, 47.390012], [8.542455, 47.390109], [8.542567, 47.390224], [8.542619, 47.390297], [8.542663, 47.390373], [8.542697, 47.390451], [8.542722, 47.390531], [8.542738, 47.390613], [8.542743, 47.390696], [8.542738, 47.390744], [8.542731, 47.390792], [8.542721, 47.39084], [8.54265, 47.391157], [8.542645, 47.391223], [8.542645, 47.391289], [8.542649, 47.391355], [8.542657, 47.391417], [8.542671, 47.391478], [8.542692, 47.391538], [8.542735, 47.391616], [8.542786, 47.39169], [8.542847, 47.391762], [8.54318, 47.392128], [8.543562, 47.392547], [8.544381, 47.393443], [8.544407, 47.393473], [8.544433, 47.393504], [8.544457, 47.393535]]], "type": "MultiLineString"}, "id": "4183", "properties": {}, "type": "Feature"}, {"bbox": [8.548385, 47.374668, 8.549597, 47.377376], "geometry": {"coordinates": [[[8.549597, 47.374668], [8.549478, 47.374936], [8.549273, 47.375404], [8.549117, 47.375748], [8.548604, 47.376882], [8.548385, 47.377376]]], "type": "MultiLineString"}, "id": "4185", "properties": {}, "type": "Feature"}, {"bbox": [8.501703, 47.369844, 8.505397, 47.370157], "geometry": {"coordinates": [[[8.505397, 47.370157], [8.505203, 47.370142], [8.505009, 47.370128], [8.504815, 47.370117], [8.504382, 47.370096], [8.50395, 47.370068], [8.50352, 47.370032], [8.501915, 47.369844], [8.501891, 47.369844], [8.501868, 47.369845], [8.501844, 47.369848], [8.501821, 47.369852], [8.501799, 47.369858], [8.501778, 47.369865], [8.501757, 47.369873], [8.501738, 47.369882], [8.501719, 47.369893], [8.501703, 47.369904]]], "type": "MultiLineString"}, "id": "4189", "properties": {}, "type": "Feature"}, {"bbox": [8.5012, 47.368822, 8.501606, 47.369654], "geometry": {"coordinates": [[[8.501606, 47.369654], [8.501362, 47.369025], [8.50134, 47.368981], [8.501313, 47.368938], [8.50128, 47.368898], [8.501243, 47.368859], [8.5012, 47.368822]]], "type": "MultiLineString"}, "id": "4190", "properties": {}, "type": "Feature"}, {"bbox": [8.585844, 47.399625, 8.586488, 47.39976], "geometry": {"coordinates": [[[8.586488, 47.399625], [8.586388, 47.399662], [8.586285, 47.399694], [8.586178, 47.399719], [8.586068, 47.399739], [8.585956, 47.399753], [8.585844, 47.39976]]], "type": "MultiLineString"}, "id": "4191", "properties": {}, "type": "Feature"}, {"bbox": [8.482072, 47.396118, 8.485592, 47.397474], "geometry": {"coordinates": [[[8.485592, 47.396118], [8.485277, 47.396201], [8.484988, 47.396297], [8.484704, 47.3964], [8.484428, 47.396511], [8.483592, 47.396887], [8.482972, 47.397161], [8.482679, 47.397274], [8.482379, 47.397379], [8.482072, 47.397474]]], "type": "MultiLineString"}, "id": "4198", "properties": {}, "type": "Feature"}, {"bbox": [8.573719, 47.348787, 8.576225, 47.349068], "geometry": {"coordinates": [[[8.573719, 47.348848], [8.573849, 47.348894], [8.573985, 47.348932], [8.574125, 47.348962], [8.574541, 47.349042], [8.574639, 47.349057], [8.574739, 47.349066], [8.574839, 47.349068], [8.57494, 47.349064], [8.575039, 47.349055], [8.575137, 47.349039], [8.575232, 47.349018], [8.575325, 47.34899], [8.575413, 47.348958], [8.575533, 47.348912], [8.575658, 47.348875], [8.575788, 47.348846], [8.575922, 47.348826], [8.576057, 47.348814], [8.5761, 47.348811], [8.576143, 47.348806], [8.576184, 47.348798], [8.576225, 47.348787]]], "type": "MultiLineString"}, "id": "4199", "properties": {}, "type": "Feature"}, {"bbox": [8.537944, 47.401409, 8.545238, 47.406501], "geometry": {"coordinates": [[[8.545238, 47.401409], [8.544372, 47.401893], [8.543862, 47.402136], [8.542749, 47.402689], [8.542519, 47.402818], [8.542305, 47.40296], [8.542111, 47.403113], [8.541936, 47.403278], [8.541784, 47.403452], [8.541689, 47.403546], [8.541481, 47.403783], [8.5414, 47.403871], [8.541328, 47.403943], [8.541233, 47.404041], [8.541129, 47.404141], [8.540971, 47.404285], [8.540877, 47.404331], [8.54042, 47.404682], [8.539909, 47.405038], [8.539445, 47.405401], [8.539388, 47.40545], [8.53818, 47.406314], [8.537944, 47.406501]]], "type": "MultiLineString"}, "id": "4203", "properties": {}, "type": "Feature"}, {"bbox": [8.505448, 47.395271, 8.50829, 47.396907], "geometry": {"coordinates": [[[8.508255, 47.395271], [8.508288, 47.395413], [8.50829, 47.395439], [8.508288, 47.395464], [8.508283, 47.395489], [8.508276, 47.395513], [8.508265, 47.395537], [8.508251, 47.395561], [8.508234, 47.395583], [8.508214, 47.395604], [8.508191, 47.395624], [8.508166, 47.395643], [8.508139, 47.39566], [8.508109, 47.395675], [8.507755, 47.395835], [8.507161, 47.396101], [8.506903, 47.396218], [8.506443, 47.396428], [8.505914, 47.396682], [8.505448, 47.396907]]], "type": "MultiLineString"}, "id": "4207", "properties": {}, "type": "Feature"}, {"bbox": [8.476853, 47.414583, 8.481421, 47.416688], "geometry": {"coordinates": [[[8.480504, 47.414583], [8.480747, 47.414669], [8.481059, 47.414774], [8.481105, 47.414792], [8.481149, 47.414812], [8.481191, 47.414834], [8.481229, 47.414858], [8.481265, 47.414885], [8.481297, 47.414913], [8.481326, 47.414944], [8.481351, 47.414975], [8.481376, 47.415017], [8.481395, 47.415059], [8.481409, 47.415103], [8.481418, 47.415147], [8.481421, 47.415191], [8.481386, 47.415751], [8.481362, 47.415999], [8.481345, 47.416205], [8.481334, 47.416253], [8.481316, 47.4163], [8.481292, 47.416346], [8.481262, 47.41639], [8.481227, 47.416433], [8.481186, 47.416473], [8.48114, 47.41651], [8.48109, 47.416545], [8.481035, 47.416576], [8.480976, 47.416604], [8.480914, 47.416628], [8.480849, 47.416648], [8.480781, 47.416664], [8.480712, 47.416677], [8.480641, 47.416685], [8.48057, 47.416688], [8.480498, 47.416687], [8.480427, 47.416682], [8.480357, 47.416673], [8.480288, 47.41666], [8.480221, 47.416642], [8.480157, 47.416621], [8.479174, 47.41628], [8.478718, 47.416116], [8.478475, 47.416034], [8.478183, 47.415945], [8.477879, 47.415877], [8.477567, 47.415828], [8.477249, 47.415801], [8.47687, 47.415779], [8.476853, 47.415779]]], "type": "MultiLineString"}, "id": "4210", "properties": {}, "type": "Feature"}, {"bbox": [8.543421, 47.377806, 8.548194, 47.383295], "geometry": {"coordinates": [[[8.548194, 47.377806], [8.54786, 47.378197], [8.547183, 47.379027], [8.547092, 47.379139], [8.546923, 47.379347], [8.546576, 47.379783], [8.546556, 47.379808], [8.546043, 47.380548], [8.545861, 47.38081], [8.545281, 47.381644], [8.54527, 47.381663], [8.545261, 47.381684], [8.545254, 47.381705], [8.54525, 47.381726], [8.545248, 47.381747], [8.545249, 47.381769], [8.54524, 47.38177], [8.545231, 47.381772], [8.545223, 47.381774], [8.545214, 47.381777], [8.545207, 47.381781], [8.545199, 47.381785], [8.545193, 47.381789], [8.545186, 47.381794], [8.545181, 47.381799], [8.545176, 47.381804], [8.545127, 47.381886], [8.544981, 47.382098], [8.544897, 47.382191], [8.544779, 47.382323], [8.543963, 47.383002], [8.543671, 47.383242], [8.543421, 47.383295]]], "type": "MultiLineString"}, "id": "4217", "properties": {}, "type": "Feature"}, {"bbox": [8.525438, 47.35675, 8.526088, 47.358074], "geometry": {"coordinates": [[[8.526088, 47.358074], [8.526013, 47.358059], [8.52594, 47.358039], [8.52587, 47.358016], [8.525803, 47.357989], [8.525739, 47.357958], [8.52568, 47.357923], [8.525625, 47.357886], [8.525575, 47.357845], [8.52553, 47.357802], [8.525498, 47.35775], [8.525473, 47.357697], [8.525455, 47.357643], [8.525443, 47.357588], [8.525438, 47.357532], [8.52544, 47.357477], [8.525448, 47.357422], [8.525464, 47.357367], [8.525662, 47.356932], [8.525715, 47.356829], [8.525744, 47.35675]]], "type": "MultiLineString"}, "id": "4218", "properties": {}, "type": "Feature"}, {"bbox": [8.506546, 47.356971, 8.508886, 47.35793], "geometry": {"coordinates": [[[8.508886, 47.35793], [8.508709, 47.357879], [8.508392, 47.357746], [8.508023, 47.357591], [8.507645, 47.357432], [8.507267, 47.357274], [8.506906, 47.357122], [8.506546, 47.356971]]], "type": "MultiLineString"}, "id": "4219", "properties": {}, "type": "Feature"}, {"bbox": [8.482309, 47.402742, 8.485362, 47.403969], "geometry": {"coordinates": [[[8.485362, 47.402742], [8.484572, 47.403115], [8.483745, 47.403449], [8.482885, 47.403742], [8.482623, 47.403861], [8.48256, 47.403822], [8.482482, 47.403875], [8.482399, 47.403924], [8.482309, 47.403969]]], "type": "MultiLineString"}, "id": "4224", "properties": {}, "type": "Feature"}, {"bbox": [8.556627, 47.353476, 8.557779, 47.35432], "geometry": {"coordinates": [[[8.556627, 47.353476], [8.556709, 47.353533], [8.557237, 47.353921], [8.557283, 47.353955], [8.557779, 47.35432]]], "type": "MultiLineString"}, "id": "4225", "properties": {}, "type": "Feature"}, {"bbox": [8.513614, 47.420235, 8.513978, 47.420512], "geometry": {"coordinates": [[[8.513978, 47.420235], [8.513932, 47.420289], [8.513879, 47.42034], [8.513821, 47.420389], [8.513757, 47.420434], [8.513688, 47.420475], [8.513614, 47.420512]]], "type": "MultiLineString"}, "id": "4230", "properties": {}, "type": "Feature"}, {"bbox": [8.525198, 47.373387, 8.525702, 47.374069], "geometry": {"coordinates": [[[8.525198, 47.373387], [8.525702, 47.374069]]], "type": "MultiLineString"}, "id": "4241", "properties": {}, "type": "Feature"}, {"bbox": [8.49417, 47.400218, 8.494559, 47.400711], "geometry": {"coordinates": [[[8.49417, 47.400218], [8.494267, 47.400311], [8.494546, 47.400661], [8.494559, 47.400711]]], "type": "MultiLineString"}, "id": "4242", "properties": {}, "type": "Feature"}, {"bbox": [8.56077, 47.36286, 8.5645, 47.365266], "geometry": {"coordinates": [[[8.560821, 47.36286], [8.560813, 47.362885], [8.560808, 47.362911], [8.560806, 47.362936], [8.560807, 47.362961], [8.560816, 47.363036], [8.56077, 47.363511], [8.560774, 47.363537], [8.560781, 47.363562], [8.560791, 47.363586], [8.560804, 47.363609], [8.560821, 47.363632], [8.56084, 47.363653], [8.560861, 47.363672], [8.560884, 47.36369], [8.56091, 47.363707], [8.561639, 47.364175], [8.561749, 47.364216], [8.562566, 47.364527], [8.56291, 47.364659], [8.563289, 47.364803], [8.5645, 47.365266]]], "type": "MultiLineString"}, "id": "4245", "properties": {}, "type": "Feature"}, {"bbox": [8.557706, 47.364409, 8.562788, 47.36591], "geometry": {"coordinates": [[[8.557706, 47.364409], [8.557914, 47.36447], [8.558596, 47.364672], [8.558883, 47.364757], [8.559491, 47.364936], [8.560162, 47.365133], [8.560289, 47.365172], [8.560418, 47.36521], [8.561023, 47.365389], [8.561103, 47.365412], [8.56174, 47.3656], [8.562246, 47.36575], [8.562376, 47.365789], [8.562788, 47.36591]]], "type": "MultiLineString"}, "id": "4246", "properties": {}, "type": "Feature"}, {"bbox": [8.496876, 47.402125, 8.496879, 47.402181], "geometry": {"coordinates": [[[8.496879, 47.402181], [8.496876, 47.402127], [8.496876, 47.402125]]], "type": "MultiLineString"}, "id": "4247", "properties": {}, "type": "Feature"}, {"bbox": [8.514247, 47.323374, 8.514793, 47.325524], "geometry": {"coordinates": [[[8.514247, 47.325524], [8.51429, 47.32528], [8.514402, 47.325002], [8.51445, 47.324866], [8.514562, 47.324525], [8.514734, 47.324005], [8.514761, 47.323944], [8.51478, 47.323881], [8.514791, 47.323818], [8.514793, 47.323754], [8.514787, 47.32369], [8.514772, 47.323627], [8.514749, 47.323565], [8.514718, 47.323505], [8.514679, 47.323447], [8.514633, 47.323392], [8.514586, 47.323374]]], "type": "MultiLineString"}, "id": "4248", "properties": {}, "type": "Feature"}, {"bbox": [8.527007, 47.357411, 8.528116, 47.360481], "geometry": {"coordinates": [[[8.52733, 47.360481], [8.527586, 47.359766], [8.527771, 47.359249], [8.527964, 47.358709], [8.527991, 47.358643], [8.52808, 47.358466], [8.528095, 47.358438], [8.528106, 47.358409], [8.528113, 47.358379], [8.528116, 47.358349], [8.528116, 47.358319], [8.528112, 47.358289], [8.528072, 47.358083], [8.528069, 47.358036], [8.52807, 47.358004], [8.528093, 47.357843], [8.528112, 47.357679], [8.528032, 47.357482], [8.527834, 47.35745], [8.527007, 47.357411]]], "type": "MultiLineString"}, "id": "4249", "properties": {}, "type": "Feature"}, {"bbox": [8.507579, 47.362841, 8.508495, 47.364189], "geometry": {"coordinates": [[[8.507579, 47.364189], [8.50766, 47.363909], [8.507778, 47.363636], [8.507933, 47.363372], [8.508102, 47.363186], [8.50829, 47.363009], [8.508495, 47.362841]]], "type": "MultiLineString"}, "id": "4250", "properties": {}, "type": "Feature"}, {"bbox": [8.554782, 47.366585, 8.557827, 47.369208], "geometry": {"coordinates": [[[8.554782, 47.369208], [8.554858, 47.369124], [8.556146, 47.368027], [8.557827, 47.366585]]], "type": "MultiLineString"}, "id": "4254", "properties": {}, "type": "Feature"}, {"bbox": [8.515027, 47.37619, 8.515995, 47.377124], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.515995, 47.377111], [8.515995, 47.377098], [8.515994, 47.377085], [8.515991, 47.377072], [8.515986, 47.37706], [8.51598, 47.377048], [8.515972, 47.377036], [8.515528, 47.376609], [8.515149, 47.376255], [8.515027, 47.37619]]], "type": "MultiLineString"}, "id": "4275", "properties": {}, "type": "Feature"}, {"bbox": [8.470565, 47.388478, 8.480437, 47.39272], "geometry": {"coordinates": [[[8.480437, 47.388478], [8.480392, 47.388504], [8.480348, 47.388532], [8.480305, 47.38856], [8.479759, 47.388898], [8.479087, 47.389319], [8.478966, 47.389395], [8.478743, 47.389521], [8.47861, 47.389584], [8.478469, 47.389638], [8.478321, 47.389683], [8.47794, 47.389775], [8.477729, 47.389819], [8.477658, 47.389832], [8.477586, 47.389844], [8.477514, 47.389855], [8.477299, 47.38988], [8.477245, 47.389887], [8.477081, 47.389905], [8.476606, 47.389958], [8.476394, 47.389984], [8.476363, 47.389988], [8.476333, 47.389992], [8.476303, 47.389996], [8.476205, 47.390016], [8.476109, 47.390041], [8.476016, 47.390069], [8.475395, 47.390342], [8.474384, 47.390752], [8.474214, 47.390815], [8.474053, 47.390887], [8.473901, 47.390968], [8.473761, 47.391058], [8.472718, 47.391742], [8.472334, 47.391993], [8.472225, 47.392065], [8.47175, 47.392376], [8.471594, 47.392477], [8.471431, 47.392574], [8.471263, 47.392666], [8.471229, 47.39268], [8.471193, 47.392693], [8.471155, 47.392703], [8.471117, 47.392711], [8.471077, 47.392717], [8.471037, 47.39272], [8.470989, 47.392719], [8.470942, 47.392715], [8.470895, 47.392709], [8.470849, 47.392699], [8.470805, 47.392687], [8.470762, 47.392672], [8.470691, 47.392631], [8.470625, 47.392586], [8.470565, 47.392537]]], "type": "MultiLineString"}, "id": "4278", "properties": {}, "type": "Feature"}, {"bbox": [8.538058, 47.388298, 8.539099, 47.388646], "geometry": {"coordinates": [[[8.538058, 47.388298], [8.538111, 47.388316], [8.538385, 47.388407], [8.538692, 47.38851], [8.538908, 47.388582], [8.539099, 47.388646]]], "type": "MultiLineString"}, "id": "4279", "properties": {}, "type": "Feature"}, {"bbox": [8.539481, 47.387809, 8.540702, 47.388198], "geometry": {"coordinates": [[[8.539481, 47.387809], [8.539619, 47.387842], [8.539663, 47.387848], [8.539708, 47.387851], [8.539753, 47.387852], [8.540118, 47.387852], [8.540383, 47.387855], [8.540488, 47.387935], [8.54055, 47.387983], [8.540609, 47.388051], [8.54066, 47.388123], [8.540702, 47.388198]]], "type": "MultiLineString"}, "id": "4281", "properties": {}, "type": "Feature"}, {"bbox": [8.525193, 47.377857, 8.525749, 47.378489], "geometry": {"coordinates": [[[8.525193, 47.377857], [8.525749, 47.378489]]], "type": "MultiLineString"}, "id": "4285", "properties": {}, "type": "Feature"}, {"bbox": [8.527435, 47.34406, 8.527551, 47.344681], "geometry": {"coordinates": [[[8.527435, 47.344681], [8.527438, 47.344671], [8.527457, 47.344542], [8.527465, 47.344141], [8.527551, 47.34406]]], "type": "MultiLineString"}, "id": "4288", "properties": {}, "type": "Feature"}, {"bbox": [8.552248, 47.402619, 8.555843, 47.404504], "geometry": {"coordinates": [[[8.552248, 47.402619], [8.552423, 47.402757], [8.552614, 47.402884], [8.552821, 47.403001], [8.553041, 47.403105], [8.553339, 47.403232], [8.553653, 47.40334], [8.55398, 47.403428], [8.554379, 47.403529], [8.554883, 47.403666], [8.555018, 47.403713], [8.555147, 47.403768], [8.555267, 47.403831], [8.55538, 47.403901], [8.555476, 47.403974], [8.555564, 47.404053], [8.555642, 47.404136], [8.555709, 47.404224], [8.555765, 47.404314], [8.55581, 47.404408], [8.555843, 47.404504]]], "type": "MultiLineString"}, "id": "4289", "properties": {}, "type": "Feature"}, {"bbox": [8.505288, 47.396136, 8.515034, 47.399364], "geometry": {"coordinates": [[[8.515034, 47.396136], [8.514661, 47.396212], [8.514281, 47.396272], [8.513896, 47.396315], [8.512675, 47.396403], [8.511919, 47.39646], [8.511462, 47.396495], [8.510932, 47.396555], [8.51041, 47.396642], [8.509901, 47.396757], [8.509561, 47.396852], [8.509419, 47.396887], [8.508877, 47.397051], [8.508801, 47.397075], [8.508727, 47.397101], [8.508653, 47.397127], [8.508536, 47.397173], [8.508421, 47.397222], [8.50831, 47.397274], [8.508018, 47.397424], [8.507589, 47.397638], [8.507383, 47.397741], [8.506873, 47.398006], [8.506364, 47.398273], [8.505857, 47.398541], [8.50576, 47.398597], [8.50567, 47.398658], [8.505589, 47.398725], [8.505517, 47.398796], [8.505454, 47.398872], [8.505403, 47.398951], [8.505361, 47.399033], [8.505331, 47.399117], [8.505288, 47.399364]]], "type": "MultiLineString"}, "id": "4290", "properties": {}, "type": "Feature"}, {"bbox": [8.56675, 47.373542, 8.568656, 47.374878], "geometry": {"coordinates": [[[8.56675, 47.374877], [8.566759, 47.374878], [8.566768, 47.374878], [8.566777, 47.374877], [8.566786, 47.374876], [8.566795, 47.374874], [8.566803, 47.374872], [8.566811, 47.37487], [8.566819, 47.374866], [8.566827, 47.374863], [8.566834, 47.374859], [8.56684, 47.374854], [8.566846, 47.374849], [8.566878, 47.374807], [8.567071, 47.374531], [8.56717, 47.37439], [8.567257, 47.374285], [8.567357, 47.374186], [8.56747, 47.374094], [8.567595, 47.374009], [8.567731, 47.373932], [8.567877, 47.373864], [8.568494, 47.373601], [8.568549, 47.373582], [8.568603, 47.373563], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "4291", "properties": {}, "type": "Feature"}, {"bbox": [8.538888, 47.389829, 8.542158, 47.392259], "geometry": {"coordinates": [[[8.542158, 47.389829], [8.540388, 47.391208], [8.539418, 47.391994], [8.53919, 47.392171], [8.539159, 47.392189], [8.539124, 47.392206], [8.539088, 47.39222], [8.539051, 47.392233], [8.539011, 47.392243], [8.538971, 47.39225], [8.53893, 47.392256], [8.538888, 47.392259]]], "type": "MultiLineString"}, "id": "4292", "properties": {}, "type": "Feature"}, {"bbox": [8.542347, 47.38875, 8.545382, 47.391006], "geometry": {"coordinates": [[[8.542347, 47.38875], [8.542457, 47.388837], [8.543263, 47.389479], [8.5437, 47.389823], [8.543988, 47.390046], [8.544513, 47.390441], [8.544792, 47.390634], [8.545021, 47.390776], [8.545179, 47.390868], [8.545382, 47.391006]]], "type": "MultiLineString"}, "id": "4293", "properties": {}, "type": "Feature"}, {"bbox": [8.46988, 47.385041, 8.484983, 47.389207], "geometry": {"coordinates": [[[8.484983, 47.385041], [8.484545, 47.385173], [8.482218, 47.385872], [8.48213, 47.385896], [8.482041, 47.385921], [8.481953, 47.385946], [8.481753, 47.386003], [8.481554, 47.386061], [8.481357, 47.38612], [8.481353, 47.386121], [8.481348, 47.386123], [8.481344, 47.386124], [8.480355, 47.386402], [8.47884, 47.386865], [8.478691, 47.386906], [8.478442, 47.386975], [8.478266, 47.387019], [8.47809, 47.387064], [8.477913, 47.387109], [8.477592, 47.387191], [8.47727, 47.387273], [8.476949, 47.387355], [8.476848, 47.387382], [8.476748, 47.387408], [8.476647, 47.387434], [8.476528, 47.387459], [8.476409, 47.387483], [8.476288, 47.387503], [8.475526, 47.387641], [8.475315, 47.387683], [8.475108, 47.387733], [8.474905, 47.387791], [8.474828, 47.387815], [8.474752, 47.38784], [8.474677, 47.387866], [8.474589, 47.387898], [8.474502, 47.387932], [8.474416, 47.387967], [8.473106, 47.388502], [8.472956, 47.388561], [8.472794, 47.388621], [8.472631, 47.388679], [8.472465, 47.388734], [8.472316, 47.388784], [8.471239, 47.389109], [8.471086, 47.389148], [8.470929, 47.389179], [8.470769, 47.389201], [8.470652, 47.389207], [8.470535, 47.389206], [8.470418, 47.389198], [8.470303, 47.389182], [8.470191, 47.389159], [8.470082, 47.389129], [8.469978, 47.389092], [8.46988, 47.389049]]], "type": "MultiLineString"}, "id": "4295", "properties": {}, "type": "Feature"}, {"bbox": [8.493145, 47.369169, 8.496289, 47.371207], "geometry": {"coordinates": [[[8.493145, 47.371207], [8.493689, 47.371037], [8.494063, 47.370892], [8.494341, 47.370777], [8.494848, 47.370555], [8.494894, 47.370536], [8.495412, 47.370331], [8.495597, 47.370251], [8.495774, 47.370163], [8.495942, 47.370066], [8.496208, 47.369898], [8.496267, 47.369838], [8.496289, 47.369768], [8.496287, 47.369748], [8.496283, 47.369728], [8.496276, 47.369709], [8.496267, 47.36969], [8.496256, 47.369671], [8.496242, 47.369654], [8.496227, 47.369637], [8.496209, 47.369621], [8.496189, 47.369606], [8.496167, 47.369592], [8.496144, 47.36958], [8.496119, 47.369569], [8.496093, 47.36956], [8.496066, 47.369552], [8.495786, 47.369462], [8.49552, 47.369353], [8.49527, 47.369228], [8.495238, 47.369213], [8.495205, 47.369199], [8.49517, 47.369187], [8.495134, 47.369177], [8.495097, 47.369169]]], "type": "MultiLineString"}, "id": "4296", "properties": {}, "type": "Feature"}, {"bbox": [8.5535, 47.366743, 8.556942, 47.368411], "geometry": {"coordinates": [[[8.5535, 47.366743], [8.553619, 47.36681], [8.554727, 47.367344], [8.555063, 47.367506], [8.555355, 47.367646], [8.555784, 47.367853], [8.556146, 47.368027], [8.556942, 47.368411]]], "type": "MultiLineString"}, "id": "4297", "properties": {}, "type": "Feature"}, {"bbox": [8.528997, 47.365634, 8.531735, 47.367893], "geometry": {"coordinates": [[[8.531706, 47.367726], [8.531735, 47.367604], [8.531632, 47.366868], [8.531618, 47.366844], [8.531561, 47.366725], [8.531534, 47.36666], [8.531457, 47.366593], [8.530913, 47.366257], [8.530201, 47.365805], [8.529873, 47.365634], [8.529629, 47.365854], [8.52961, 47.365871], [8.529594, 47.365888], [8.529572, 47.365918], [8.529058, 47.366744], [8.529036, 47.366783], [8.529019, 47.366817], [8.52901, 47.366846], [8.529002, 47.366876], [8.528997, 47.366929], [8.529002, 47.366981], [8.52901, 47.367018], [8.529029, 47.367068], [8.529047, 47.367096], [8.529086, 47.36715], [8.529127, 47.367193], [8.529171, 47.367231], [8.529246, 47.367283], [8.529878, 47.367706], [8.529992, 47.367807], [8.529857, 47.367893]]], "type": "MultiLineString"}, "id": "4300", "properties": {}, "type": "Feature"}, {"bbox": [8.577378, 47.350137, 8.579958, 47.351042], "geometry": {"coordinates": [[[8.577378, 47.350137], [8.577534, 47.350252], [8.579748, 47.35084], [8.579783, 47.350856], [8.579815, 47.350873], [8.579845, 47.350893], [8.579872, 47.350915], [8.579896, 47.350938], [8.579917, 47.350962], [8.579934, 47.350988], [8.579948, 47.351014], [8.579958, 47.351042]]], "type": "MultiLineString"}, "id": "4301", "properties": {}, "type": "Feature"}, {"bbox": [8.600457, 47.355365, 8.605507, 47.355645], "geometry": {"coordinates": [[[8.600457, 47.355365], [8.600742, 47.355415], [8.601549, 47.355569], [8.601715, 47.355605], [8.601881, 47.355627], [8.602048, 47.355641], [8.602217, 47.355645], [8.602379, 47.355645], [8.60254, 47.35564], [8.602702, 47.355631], [8.603936, 47.355496], [8.604109, 47.355475], [8.604272, 47.355463], [8.604435, 47.355455], [8.604599, 47.355451], [8.605138, 47.355452], [8.605507, 47.35544]]], "type": "MultiLineString"}, "id": "4302", "properties": {}, "type": "Feature"}, {"bbox": [8.587914, 47.355598, 8.596403, 47.358245], "geometry": {"coordinates": [[[8.587914, 47.358245], [8.58807, 47.358093], [8.588821, 47.357252], [8.588851, 47.357213], [8.588886, 47.357176], [8.588925, 47.357141], [8.588969, 47.357109], [8.589016, 47.357079], [8.589067, 47.357052], [8.589121, 47.357028], [8.589177, 47.357007], [8.589236, 47.356989], [8.589298, 47.356975], [8.590305, 47.356929], [8.590514, 47.356888], [8.590717, 47.356835], [8.590913, 47.35677], [8.591099, 47.356695], [8.591276, 47.356608], [8.592269, 47.356069], [8.592418, 47.355988], [8.592616, 47.355906], [8.592824, 47.355835], [8.59304, 47.355777], [8.593263, 47.355732], [8.593461, 47.355712], [8.593662, 47.355703], [8.593862, 47.355707], [8.594062, 47.355722], [8.594259, 47.35575], [8.594451, 47.355789], [8.594855, 47.355874], [8.594977, 47.355901], [8.595103, 47.355922], [8.595231, 47.355935], [8.59536, 47.355941], [8.595489, 47.35594], [8.595617, 47.355931], [8.595745, 47.355915], [8.595869, 47.355892], [8.595991, 47.355847], [8.596106, 47.355794], [8.596214, 47.355735], [8.596313, 47.35567], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "4303", "properties": {}, "type": "Feature"}, {"bbox": [8.604109, 47.355475, 8.609922, 47.35691], "geometry": {"coordinates": [[[8.604109, 47.355475], [8.60413, 47.355507], [8.604147, 47.355539], [8.604161, 47.355572], [8.604184, 47.355615], [8.60421, 47.355657], [8.60424, 47.355698], [8.604268, 47.355731], [8.604298, 47.355764], [8.60433, 47.355795], [8.604425, 47.355868], [8.604523, 47.355939], [8.604625, 47.356007], [8.604749, 47.356082], [8.604857, 47.356139], [8.604967, 47.356193], [8.60508, 47.356246], [8.605144, 47.35626], [8.60521, 47.35627], [8.605276, 47.356276], [8.605344, 47.356278], [8.605411, 47.356276], [8.605631, 47.356272], [8.605852, 47.356261], [8.606071, 47.356246], [8.606206, 47.356237], [8.60634, 47.356228], [8.606475, 47.35622], [8.606525, 47.356219], [8.606575, 47.356218], [8.606625, 47.356219], [8.606744, 47.356211], [8.606864, 47.356203], [8.606983, 47.356194], [8.607003, 47.356195], [8.607024, 47.356197], [8.607044, 47.3562], [8.607064, 47.356204], [8.607083, 47.35621], [8.607122, 47.356229], [8.607164, 47.356245], [8.607208, 47.356258], [8.607254, 47.356268], [8.607818, 47.356374], [8.60797, 47.356423], [8.608197, 47.356498], [8.608317, 47.356549], [8.608636, 47.356642], [8.608854, 47.356689], [8.609149, 47.356791], [8.609176, 47.356801], [8.609205, 47.356809], [8.609235, 47.356816], [8.609266, 47.356821], [8.609297, 47.356824], [8.609328, 47.356825], [8.609359, 47.356824], [8.609391, 47.356821], [8.609484, 47.35682], [8.609578, 47.356822], [8.609672, 47.356828], [8.609715, 47.356833], [8.609758, 47.35684], [8.6098, 47.356849], [8.609817, 47.356852], [8.609833, 47.356856], [8.609849, 47.356862], [8.609863, 47.356868], [8.609877, 47.356875], [8.60989, 47.356883], [8.609902, 47.356891], [8.609913, 47.356901], [8.609922, 47.35691]]], "type": "MultiLineString"}, "id": "4311", "properties": {}, "type": "Feature"}, {"bbox": [8.517998, 47.396749, 8.523926, 47.398549], "geometry": {"coordinates": [[[8.523895, 47.396749], [8.523903, 47.396759], [8.523911, 47.39677], [8.523917, 47.396781], [8.523921, 47.396792], [8.523924, 47.396804], [8.523926, 47.396815], [8.523926, 47.396827], [8.523924, 47.396839], [8.523921, 47.396851], [8.523916, 47.396862], [8.52391, 47.396873], [8.523903, 47.396884], [8.523894, 47.396894], [8.523884, 47.396903], [8.523873, 47.396912], [8.523861, 47.396921], [8.523848, 47.396928], [8.523833, 47.396935], [8.523818, 47.396941], [8.523803, 47.396946], [8.523786, 47.39695], [8.523624, 47.396975], [8.523459, 47.39699], [8.523293, 47.396995], [8.523127, 47.396991], [8.522748, 47.396988], [8.522421, 47.397006], [8.522098, 47.397042], [8.521781, 47.397097], [8.521472, 47.39717], [8.521061, 47.397276], [8.520646, 47.397374], [8.520227, 47.397464], [8.51975, 47.397578], [8.519283, 47.39771], [8.518829, 47.397859], [8.518685, 47.397922], [8.518549, 47.397992], [8.518422, 47.398069], [8.518304, 47.398153], [8.518198, 47.398244], [8.518102, 47.39834], [8.518066, 47.39839], [8.518036, 47.398441], [8.518013, 47.398494], [8.517998, 47.398549]]], "type": "MultiLineString"}, "id": "4316", "properties": {}, "type": "Feature"}, {"bbox": [8.566583, 47.371796, 8.571838, 47.373952], "geometry": {"coordinates": [[[8.566583, 47.373952], [8.567556, 47.373247], [8.567686, 47.373148], [8.568016, 47.372903], [8.568136, 47.372821], [8.568228, 47.372768], [8.568326, 47.37272], [8.56843, 47.372678], [8.568767, 47.372549], [8.569809, 47.372152], [8.569831, 47.372145], [8.569854, 47.372139], [8.569878, 47.372134], [8.569902, 47.372131], [8.569927, 47.37213], [8.569951, 47.37213], [8.569976, 47.372132], [8.57, 47.372135], [8.570137, 47.372151], [8.570373, 47.372198], [8.570384, 47.3722], [8.570395, 47.372202], [8.570407, 47.372202], [8.570419, 47.372202], [8.57043, 47.372201], [8.570442, 47.3722], [8.570453, 47.372197], [8.570464, 47.372194], [8.570474, 47.372191], [8.570484, 47.372187], [8.570608, 47.372134], [8.570717, 47.372092], [8.571267, 47.371931], [8.571505, 47.371864], [8.571838, 47.371796]]], "type": "MultiLineString"}, "id": "4318", "properties": {}, "type": "Feature"}, {"bbox": [8.491388, 47.376044, 8.491448, 47.37608], "geometry": {"coordinates": [[[8.491388, 47.37608], [8.491448, 47.376044]]], "type": "MultiLineString"}, "id": "4322", "properties": {}, "type": "Feature"}, {"bbox": [8.535335, 47.422954, 8.535359, 47.424121], "geometry": {"coordinates": [[[8.535359, 47.422954], [8.535335, 47.423168], [8.53535, 47.423714], [8.535345, 47.424121]]], "type": "MultiLineString"}, "id": "4324", "properties": {}, "type": "Feature"}, {"bbox": [8.547469, 47.425877, 8.549162, 47.427685], "geometry": {"coordinates": [[[8.547469, 47.425877], [8.547987, 47.426268], [8.548074, 47.426324], [8.548167, 47.426375], [8.548267, 47.426419], [8.548372, 47.426458], [8.548777, 47.426571], [8.549051, 47.426671], [8.549162, 47.427685]]], "type": "MultiLineString"}, "id": "4325", "properties": {}, "type": "Feature"}, {"bbox": [8.509438, 47.423649, 8.516978, 47.42569], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.516816, 47.423787], [8.516444, 47.423764], [8.516072, 47.423733], [8.515702, 47.423696], [8.51547, 47.423667], [8.515235, 47.423651], [8.514999, 47.423649], [8.514728, 47.423672], [8.514462, 47.42371], [8.514201, 47.423763], [8.513948, 47.42383], [8.513703, 47.423912], [8.513344, 47.424057], [8.512991, 47.42421], [8.512645, 47.42437], [8.511754, 47.424748], [8.511577, 47.424824], [8.511401, 47.424901], [8.511225, 47.424978], [8.510341, 47.425362], [8.509438, 47.42569]]], "type": "MultiLineString"}, "id": "4326", "properties": {}, "type": "Feature"}, {"bbox": [8.556776, 47.37541, 8.558232, 47.377167], "geometry": {"coordinates": [[[8.558232, 47.37541], [8.558112, 47.375519], [8.557475, 47.376147], [8.55716, 47.376457], [8.557132, 47.376493], [8.557099, 47.376528], [8.557061, 47.37656], [8.557019, 47.376589], [8.556973, 47.376616], [8.556776, 47.376733], [8.557271, 47.377167]]], "type": "MultiLineString"}, "id": "4335", "properties": {}, "type": "Feature"}, {"bbox": [8.488045, 47.410295, 8.488244, 47.410488], "geometry": {"coordinates": [[[8.488244, 47.410488], [8.488234, 47.410457], [8.488208, 47.4104], [8.488198, 47.410386], [8.488187, 47.410372], [8.488174, 47.410359], [8.48816, 47.410347], [8.488144, 47.410335], [8.488126, 47.410325], [8.488107, 47.410316], [8.488087, 47.410308], [8.488067, 47.410301], [8.488045, 47.410295]]], "type": "MultiLineString"}, "id": "4337", "properties": {}, "type": "Feature"}, {"bbox": [8.533001, 47.392389, 8.534256, 47.393008], "geometry": {"coordinates": [[[8.533001, 47.392389], [8.534256, 47.393008]]], "type": "MultiLineString"}, "id": "4341", "properties": {}, "type": "Feature"}, {"bbox": [8.510044, 47.391729, 8.513625, 47.392204], "geometry": {"coordinates": [[[8.513625, 47.391729], [8.513242, 47.391837], [8.512917, 47.391926], [8.512581, 47.391997], [8.512238, 47.392049], [8.51189, 47.39208], [8.511873, 47.392082], [8.51166, 47.392099], [8.51154, 47.392109], [8.510189, 47.392195], [8.510044, 47.392204]]], "type": "MultiLineString"}, "id": "4343", "properties": {}, "type": "Feature"}, {"bbox": [8.505555, 47.39263, 8.507126, 47.393874], "geometry": {"coordinates": [[[8.507126, 47.39263], [8.507056, 47.392674], [8.506989, 47.392722], [8.506925, 47.392771], [8.505633, 47.393702], [8.505615, 47.393718], [8.5056, 47.393736], [8.505586, 47.393754], [8.505575, 47.393773], [8.505566, 47.393793], [8.50556, 47.393813], [8.505556, 47.393833], [8.505555, 47.393854], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "4344", "properties": {}, "type": "Feature"}, {"bbox": [8.554419, 47.360591, 8.557086, 47.364341], "geometry": {"coordinates": [[[8.554419, 47.364341], [8.554457, 47.364254], [8.554504, 47.364166], [8.554559, 47.36408], [8.554626, 47.363926], [8.554675, 47.363768], [8.554707, 47.363609], [8.554773, 47.363559], [8.554832, 47.363504], [8.554883, 47.363446], [8.554926, 47.363386], [8.554959, 47.363322], [8.55529, 47.362701], [8.555331, 47.362622], [8.555414, 47.362466], [8.555502, 47.362323], [8.555605, 47.362186], [8.555723, 47.362053], [8.556332, 47.361503], [8.556545, 47.361318], [8.556695, 47.361169], [8.556826, 47.361013], [8.55694, 47.36085], [8.556995, 47.360765], [8.557044, 47.360679], [8.557086, 47.360591]]], "type": "MultiLineString"}, "id": "4348", "properties": {}, "type": "Feature"}, {"bbox": [8.495786, 47.366964, 8.499608, 47.367962], "geometry": {"coordinates": [[[8.495786, 47.367528], [8.496369, 47.367714], [8.49644, 47.367732], [8.496754, 47.367805], [8.497062, 47.367867], [8.497273, 47.367901], [8.497606, 47.367947], [8.497662, 47.367953], [8.497722, 47.367958], [8.497783, 47.367961], [8.497867, 47.367962], [8.497952, 47.367959], [8.498036, 47.367952], [8.498118, 47.367942], [8.498191, 47.367931], [8.498263, 47.367916], [8.498333, 47.367898], [8.4984, 47.367878], [8.498476, 47.36785], [8.498516, 47.367835], [8.498594, 47.3678], [8.498668, 47.367762], [8.499077, 47.367522], [8.499217, 47.367433], [8.499358, 47.367343], [8.499426, 47.367255], [8.499472, 47.367188], [8.499608, 47.366964]]], "type": "MultiLineString"}, "id": "4352", "properties": {}, "type": "Feature"}, {"bbox": [8.505557, 47.392417, 8.516488, 47.393874], "geometry": {"coordinates": [[[8.516488, 47.392417], [8.515591, 47.392665], [8.512923, 47.39343], [8.512863, 47.393446], [8.512801, 47.393461], [8.51274, 47.393476], [8.512255, 47.393572], [8.511758, 47.393638], [8.511255, 47.393673], [8.510318, 47.393706], [8.509159, 47.393745], [8.508173, 47.393779], [8.50763, 47.393798], [8.506628, 47.393832], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "4361", "properties": {}, "type": "Feature"}, {"bbox": [8.527382, 47.373603, 8.530472, 47.375911], "geometry": {"coordinates": [[[8.530472, 47.373603], [8.53044, 47.373622], [8.530409, 47.373643], [8.530381, 47.373665], [8.530356, 47.373689], [8.530334, 47.373715], [8.530315, 47.373741], [8.5303, 47.373768], [8.530283, 47.373819], [8.530259, 47.373868], [8.530229, 47.373915], [8.530192, 47.373961], [8.53015, 47.374003], [8.530014, 47.374112], [8.529812, 47.374266], [8.529284, 47.374667], [8.528437, 47.375311], [8.528288, 47.375397], [8.527382, 47.375911]]], "type": "MultiLineString"}, "id": "4363", "properties": {}, "type": "Feature"}, {"bbox": [8.513614, 47.420512, 8.514424, 47.421801], "geometry": {"coordinates": [[[8.513614, 47.420512], [8.513644, 47.420869], [8.513646, 47.420899], [8.513652, 47.42093], [8.513662, 47.42096], [8.513676, 47.420989], [8.513694, 47.421018], [8.513716, 47.421045], [8.514238, 47.421594], [8.514302, 47.421662], [8.514365, 47.421731], [8.514424, 47.421801]]], "type": "MultiLineString"}, "id": "4365", "properties": {}, "type": "Feature"}, {"bbox": [8.52753, 47.414993, 8.528464, 47.415282], "geometry": {"coordinates": [[[8.528464, 47.415282], [8.528136, 47.41515], [8.527996, 47.415093], [8.527849, 47.415043], [8.527697, 47.415001], [8.527674, 47.414997], [8.52765, 47.414994], [8.527626, 47.414993], [8.527602, 47.414993], [8.527578, 47.414994], [8.527554, 47.414997], [8.52753, 47.415001]]], "type": "MultiLineString"}, "id": "4370", "properties": {}, "type": "Feature"}, {"bbox": [8.554662, 47.353549, 8.555743, 47.354201], "geometry": {"coordinates": [[[8.554662, 47.353549], [8.554995, 47.353772], [8.555743, 47.354201]]], "type": "MultiLineString"}, "id": "4372", "properties": {}, "type": "Feature"}, {"bbox": [8.548219, 47.370893, 8.550441, 47.37265], "geometry": {"coordinates": [[[8.548219, 47.370893], [8.54824, 47.370898], [8.548261, 47.370905], [8.548281, 47.370912], [8.548301, 47.37092], [8.548319, 47.37093], [8.548335, 47.37094], [8.548351, 47.370952], [8.548365, 47.370964], [8.548377, 47.370977], [8.549339, 47.372037], [8.549512, 47.372227], [8.549554, 47.372268], [8.549602, 47.372306], [8.549654, 47.372341], [8.54971, 47.372373], [8.54977, 47.372401], [8.549833, 47.372426], [8.550441, 47.37265]]], "type": "MultiLineString"}, "id": "4380", "properties": {}, "type": "Feature"}, {"bbox": [8.530311, 47.351796, 8.530922, 47.352331], "geometry": {"coordinates": [[[8.530922, 47.352331], [8.530889, 47.35229], [8.53086, 47.352258], [8.530608, 47.351992], [8.530311, 47.351796]]], "type": "MultiLineString"}, "id": "4382", "properties": {}, "type": "Feature"}, {"bbox": [8.516399, 47.358927, 8.5174, 47.361261], "geometry": {"coordinates": [[[8.5174, 47.361261], [8.51707, 47.360967], [8.516976, 47.360875], [8.516894, 47.360779], [8.516823, 47.360679], [8.516779, 47.360604], [8.516742, 47.360527], [8.516711, 47.36045], [8.516621, 47.360196], [8.516552, 47.359939], [8.516504, 47.359681], [8.516431, 47.359296], [8.5164, 47.359121], [8.516399, 47.359072], [8.516404, 47.359023], [8.516415, 47.358974], [8.516432, 47.358927]]], "type": "MultiLineString"}, "id": "4393", "properties": {}, "type": "Feature"}, {"bbox": [8.526282, 47.361998, 8.533729, 47.369703], "geometry": {"coordinates": [[[8.533729, 47.369703], [8.53365, 47.369649], [8.533615, 47.369614], [8.533577, 47.369582], [8.533536, 47.369551], [8.533481, 47.369521], [8.533196, 47.369402], [8.532856, 47.369274], [8.532539, 47.369163], [8.532301, 47.369098], [8.532099, 47.369021], [8.532048, 47.368998], [8.531998, 47.368975], [8.531949, 47.36895], [8.530746, 47.368496], [8.530655, 47.368464], [8.530568, 47.368426], [8.530486, 47.368384], [8.530409, 47.368338], [8.530338, 47.368288], [8.530273, 47.368234], [8.530175, 47.368151], [8.530077, 47.368068], [8.529978, 47.367985], [8.529939, 47.367954], [8.529898, 47.367923], [8.529857, 47.367893], [8.529653, 47.367761], [8.529432, 47.367642], [8.529196, 47.367537], [8.528947, 47.367448], [8.528749, 47.367381], [8.528553, 47.367312], [8.528359, 47.367241], [8.528202, 47.367164], [8.528055, 47.367079], [8.527918, 47.366987], [8.527794, 47.366886], [8.527702, 47.3668], [8.527619, 47.366709], [8.527545, 47.366615], [8.526782, 47.365612], [8.526681, 47.365485], [8.526602, 47.365387], [8.526403, 47.365131], [8.526361, 47.365069], [8.526328, 47.365005], [8.526303, 47.364939], [8.526288, 47.364872], [8.526282, 47.364804], [8.526285, 47.364736], [8.526332, 47.364221], [8.526396, 47.363346], [8.526496, 47.361998]]], "type": "MultiLineString"}, "id": "4395", "properties": {}, "type": "Feature"}, {"bbox": [8.590622, 47.358776, 8.59337, 47.35958], "geometry": {"coordinates": [[[8.590622, 47.358776], [8.590909, 47.358826], [8.591708, 47.358995], [8.591917, 47.359042], [8.592119, 47.359102], [8.592312, 47.359173], [8.592442, 47.35923], [8.592617, 47.35932], [8.592803, 47.3594], [8.592996, 47.35947], [8.593081, 47.359496], [8.593167, 47.359521], [8.593254, 47.359544], [8.59337, 47.35958]]], "type": "MultiLineString"}, "id": "4396", "properties": {}, "type": "Feature"}, {"bbox": [8.517726, 47.33614, 8.518219, 47.336228], "geometry": {"coordinates": [[[8.517726, 47.336228], [8.517751, 47.336211], [8.517779, 47.336196], [8.517809, 47.336182], [8.51784, 47.33617], [8.517873, 47.33616], [8.517906, 47.336152], [8.517941, 47.336146], [8.517977, 47.336142], [8.518012, 47.33614], [8.518048, 47.336141], [8.518084, 47.336143], [8.518119, 47.336148], [8.518154, 47.336155], [8.518187, 47.336163], [8.518219, 47.336174]]], "type": "MultiLineString"}, "id": "4402", "properties": {}, "type": "Feature"}, {"bbox": [8.473683, 47.392133, 8.474388, 47.39229], "geometry": {"coordinates": [[[8.473683, 47.392262], [8.4737, 47.39227], [8.473718, 47.392276], [8.473737, 47.392281], [8.473756, 47.392285], [8.473776, 47.392288], [8.473796, 47.392289], [8.473816, 47.39229], [8.473837, 47.392289], [8.473857, 47.392287], [8.473876, 47.392284], [8.473896, 47.39228], [8.473914, 47.392275], [8.473932, 47.392268], [8.473949, 47.392261], [8.473965, 47.392253], [8.474111, 47.392169], [8.474139, 47.392158], [8.474169, 47.392149], [8.474199, 47.392143], [8.47423, 47.392137], [8.474262, 47.392134], [8.474293, 47.392133], [8.474325, 47.392133], [8.474357, 47.392136], [8.474388, 47.39214]]], "type": "MultiLineString"}, "id": "4407", "properties": {}, "type": "Feature"}, {"bbox": [8.601281, 47.354385, 8.603231, 47.354931], "geometry": {"coordinates": [[[8.601281, 47.354749], [8.601437, 47.35476], [8.601458, 47.354761], [8.601479, 47.35476], [8.6015, 47.354758], [8.601521, 47.354755], [8.601542, 47.354751], [8.601561, 47.354746], [8.60158, 47.354739], [8.601598, 47.354732], [8.602551, 47.354385], [8.603231, 47.354931]]], "type": "MultiLineString"}, "id": "4411", "properties": {}, "type": "Feature"}, {"bbox": [8.538128, 47.393682, 8.539237, 47.394853], "geometry": {"coordinates": [[[8.539237, 47.393682], [8.538942, 47.393743], [8.538904, 47.393842], [8.538128, 47.394853]]], "type": "MultiLineString"}, "id": "4414", "properties": {}, "type": "Feature"}, {"bbox": [8.520315, 47.367437, 8.523277, 47.369694], "geometry": {"coordinates": [[[8.523277, 47.367437], [8.522723, 47.367909], [8.522662, 47.367962], [8.522186, 47.368368], [8.52216, 47.36839], [8.5219, 47.368599], [8.521813, 47.368676], [8.521369, 47.368984], [8.521143, 47.369141], [8.521014, 47.36923], [8.520391, 47.369662], [8.520315, 47.369694]]], "type": "MultiLineString"}, "id": "4416", "properties": {}, "type": "Feature"}, {"bbox": [8.546641, 47.389891, 8.549202, 47.390235], "geometry": {"coordinates": [[[8.546641, 47.390235], [8.547267, 47.39015], [8.547273, 47.390149], [8.548401, 47.390002], [8.549202, 47.389891]]], "type": "MultiLineString"}, "id": "4418", "properties": {}, "type": "Feature"}, {"bbox": [8.553571, 47.399567, 8.562067, 47.404198], "geometry": {"coordinates": [[[8.553571, 47.399567], [8.553928, 47.399938], [8.554183, 47.400196], [8.554289, 47.400303], [8.554934, 47.40095], [8.554969, 47.400985], [8.55517, 47.401186], [8.555629, 47.401647], [8.555644, 47.401662], [8.555904, 47.401924], [8.555917, 47.401937], [8.555952, 47.401971], [8.556163, 47.402189], [8.556299, 47.402318], [8.556452, 47.402439], [8.55662, 47.402549], [8.556802, 47.402649], [8.556997, 47.402738], [8.557202, 47.402814], [8.557417, 47.402877], [8.557589, 47.402912], [8.557763, 47.402944], [8.557938, 47.402972], [8.558634, 47.403069], [8.558804, 47.403093], [8.558969, 47.403128], [8.559129, 47.403174], [8.559282, 47.40323], [8.559467, 47.403326], [8.559579, 47.403394], [8.559768, 47.403509], [8.559862, 47.403563], [8.559943, 47.403612], [8.560031, 47.403656], [8.560124, 47.403694], [8.560221, 47.403726], [8.560323, 47.403751], [8.560453, 47.403783], [8.560588, 47.40381], [8.561338, 47.403926], [8.561478, 47.403947], [8.561606, 47.403969], [8.561668, 47.403982], [8.561728, 47.403998], [8.561786, 47.404018], [8.561842, 47.404041], [8.561894, 47.404067], [8.561943, 47.404096], [8.561988, 47.404128], [8.56203, 47.404161], [8.562067, 47.404198]]], "type": "MultiLineString"}, "id": "4424", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.373548, 8.559543, 47.375933], "geometry": {"coordinates": [[[8.553396, 47.373548], [8.553518, 47.373575], [8.5546, 47.373832], [8.554742, 47.373865], [8.554854, 47.373893], [8.554963, 47.373924], [8.55507, 47.373959], [8.556133, 47.374338], [8.556223, 47.374366], [8.556315, 47.37439], [8.55641, 47.37441], [8.556454, 47.374418], [8.556498, 47.374425], [8.556543, 47.37443], [8.557169, 47.37453], [8.557232, 47.374543], [8.557294, 47.374556], [8.557356, 47.374571], [8.557411, 47.374585], [8.557466, 47.3746], [8.55752, 47.374616], [8.558105, 47.374779], [8.558225, 47.374811], [8.558341, 47.374847], [8.558454, 47.374888], [8.55857, 47.374937], [8.558681, 47.37499], [8.558787, 47.375048], [8.559023, 47.375178], [8.559064, 47.375196], [8.559103, 47.375216], [8.559141, 47.375236], [8.559197, 47.375271], [8.559248, 47.37531], [8.559295, 47.375351], [8.559337, 47.375394], [8.559373, 47.375439], [8.559403, 47.375487], [8.559428, 47.375536], [8.559527, 47.375775], [8.559534, 47.375792], [8.55954, 47.37581], [8.559542, 47.375828], [8.559543, 47.375846], [8.559541, 47.375864], [8.559536, 47.375882], [8.559529, 47.3759], [8.55952, 47.375917], [8.559509, 47.375933]]], "type": "MultiLineString"}, "id": "4430", "properties": {}, "type": "Feature"}, {"bbox": [8.590347, 47.355742, 8.59169, 47.356192], "geometry": {"coordinates": [[[8.590347, 47.356192], [8.590612, 47.356167], [8.590713, 47.356155], [8.590811, 47.356137], [8.590907, 47.356113], [8.590999, 47.356084], [8.591087, 47.35605], [8.591171, 47.356011], [8.591313, 47.355935], [8.591454, 47.355858], [8.591595, 47.355781], [8.591625, 47.355767], [8.591657, 47.355754], [8.59169, 47.355742]]], "type": "MultiLineString"}, "id": "4432", "properties": {}, "type": "Feature"}, {"bbox": [8.490539, 47.405065, 8.491639, 47.405671], "geometry": {"coordinates": [[[8.490539, 47.40567], [8.490569, 47.405671], [8.490599, 47.405671], [8.490628, 47.405668], [8.490657, 47.405663], [8.491569, 47.405364], [8.491574, 47.405362], [8.49158, 47.40536], [8.491585, 47.405357], [8.491589, 47.405354], [8.491594, 47.405351], [8.491597, 47.405348], [8.491601, 47.405344], [8.491604, 47.405341], [8.491606, 47.405337], [8.491608, 47.405333], [8.49161, 47.405329], [8.491611, 47.405324], [8.491611, 47.40532], [8.491611, 47.405316], [8.49161, 47.405312], [8.491609, 47.405308], [8.491608, 47.405304], [8.491605, 47.4053], [8.491603, 47.405296], [8.491534, 47.405198], [8.49153, 47.405192], [8.491526, 47.405186], [8.491523, 47.40518], [8.491521, 47.405174], [8.49152, 47.405168], [8.49152, 47.405161], [8.49152, 47.405155], [8.491521, 47.405148], [8.491523, 47.405142], [8.491526, 47.405136], [8.491529, 47.40513], [8.491534, 47.405124], [8.491539, 47.405119], [8.491545, 47.405114], [8.491551, 47.405109], [8.491639, 47.405065]]], "type": "MultiLineString"}, "id": "4436", "properties": {}, "type": "Feature"}, {"bbox": [8.54097, 47.399662, 8.543076, 47.401467], "geometry": {"coordinates": [[[8.54097, 47.399662], [8.541221, 47.399761], [8.541875, 47.400092], [8.541979, 47.400175], [8.542251, 47.400502], [8.542393, 47.400729], [8.542741, 47.401149], [8.542839, 47.401261], [8.542951, 47.401368], [8.543076, 47.401467]]], "type": "MultiLineString"}, "id": "4439", "properties": {}, "type": "Feature"}, {"bbox": [8.529792, 47.381063, 8.532018, 47.382562], "geometry": {"coordinates": [[[8.531936, 47.381063], [8.532005, 47.381138], [8.532009, 47.381143], [8.532012, 47.381147], [8.532014, 47.381151], [8.532016, 47.381156], [8.532017, 47.381161], [8.532018, 47.381165], [8.532018, 47.38117], [8.532017, 47.381175], [8.532016, 47.38118], [8.532014, 47.381184], [8.532011, 47.381189], [8.532008, 47.381193], [8.532005, 47.381197], [8.532, 47.381201], [8.531996, 47.381205], [8.531991, 47.381208], [8.531985, 47.381211], [8.531045, 47.38179], [8.530353, 47.382212], [8.52985, 47.38252], [8.529792, 47.382562]]], "type": "MultiLineString"}, "id": "4440", "properties": {}, "type": "Feature"}, {"bbox": [8.531247, 47.383115, 8.532774, 47.384264], "geometry": {"coordinates": [[[8.532774, 47.383115], [8.532723, 47.383154], [8.532084, 47.383629], [8.531378, 47.384148], [8.531299, 47.38422], [8.531247, 47.384264]]], "type": "MultiLineString"}, "id": "4441", "properties": {}, "type": "Feature"}, {"bbox": [8.529939, 47.381733, 8.53256, 47.38392], "geometry": {"coordinates": [[[8.529939, 47.381733], [8.529971, 47.381768], [8.530318, 47.382171], [8.530353, 47.382212], [8.530404, 47.382275], [8.530921, 47.382873], [8.53097, 47.38293], [8.531072, 47.382996], [8.53122, 47.383087], [8.531279, 47.383122], [8.531309, 47.383141], [8.53163, 47.383344], [8.531678, 47.383375], [8.531728, 47.383405], [8.532084, 47.383629], [8.532464, 47.383864], [8.53256, 47.38392]]], "type": "MultiLineString"}, "id": "4442", "properties": {}, "type": "Feature"}, {"bbox": [8.534438, 47.380561, 8.535894, 47.381449], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.534567, 47.380641], [8.534868, 47.380817], [8.535182, 47.381008], [8.535894, 47.381449]]], "type": "MultiLineString"}, "id": "4443", "properties": {}, "type": "Feature"}, {"bbox": [8.530762, 47.381498, 8.533261, 47.383431], "geometry": {"coordinates": [[[8.530762, 47.381498], [8.530793, 47.381529], [8.531007, 47.381749], [8.531045, 47.38179], [8.531099, 47.38185], [8.531552, 47.382329], [8.531679, 47.382437], [8.53181, 47.382516], [8.531962, 47.38261], [8.531986, 47.382626], [8.532368, 47.382861], [8.532774, 47.383115], [8.533261, 47.383431]]], "type": "MultiLineString"}, "id": "4444", "properties": {}, "type": "Feature"}, {"bbox": [8.530956, 47.382861, 8.532368, 47.383926], "geometry": {"coordinates": [[[8.532368, 47.382861], [8.53232, 47.382898], [8.531678, 47.383375], [8.531051, 47.38384], [8.530956, 47.383926]]], "type": "MultiLineString"}, "id": "4445", "properties": {}, "type": "Feature"}, {"bbox": [8.480063, 47.403969, 8.482309, 47.405153], "geometry": {"coordinates": [[[8.480063, 47.405153], [8.480091, 47.405033], [8.480093, 47.405024], [8.480097, 47.405015], [8.480102, 47.405007], [8.480107, 47.404999], [8.480114, 47.404991], [8.480122, 47.404984], [8.48013, 47.404977], [8.48014, 47.40497], [8.48015, 47.404965], [8.480161, 47.40496], [8.480173, 47.404955], [8.480185, 47.404951], [8.480197, 47.404948], [8.48021, 47.404946], [8.480223, 47.404945], [8.480237, 47.404944], [8.480696, 47.404915], [8.480757, 47.404907], [8.480817, 47.404896], [8.480876, 47.404881], [8.480932, 47.404863], [8.480986, 47.404841], [8.481036, 47.404817], [8.481083, 47.404789], [8.481126, 47.404758], [8.481165, 47.404725], [8.481199, 47.40469], [8.481229, 47.404652], [8.481253, 47.404614], [8.481383, 47.404366], [8.481392, 47.404351], [8.481403, 47.404337], [8.481416, 47.404324], [8.481431, 47.404312], [8.481447, 47.4043], [8.481464, 47.404289], [8.481569, 47.404242], [8.481678, 47.4042], [8.481791, 47.404163], [8.482005, 47.404085], [8.482108, 47.404048], [8.482209, 47.40401], [8.482309, 47.403969]]], "type": "MultiLineString"}, "id": "4447", "properties": {}, "type": "Feature"}, {"bbox": [8.508217, 47.400023, 8.509111, 47.40109], "geometry": {"coordinates": [[[8.508917, 47.400023], [8.509052, 47.400138], [8.509069, 47.400158], [8.509083, 47.400179], [8.509094, 47.4002], [8.509103, 47.400222], [8.509109, 47.400244], [8.509111, 47.400267], [8.509111, 47.40029], [8.509108, 47.400313], [8.509102, 47.400335], [8.509093, 47.400357], [8.509081, 47.400378], [8.509066, 47.400399], [8.509049, 47.400418], [8.508907, 47.40055], [8.508754, 47.400677], [8.508591, 47.400798], [8.508217, 47.40109]]], "type": "MultiLineString"}, "id": "4448", "properties": {}, "type": "Feature"}, {"bbox": [8.496825, 47.422649, 8.507959, 47.42586], "geometry": {"coordinates": [[[8.507959, 47.422649], [8.507882, 47.42267], [8.507807, 47.422691], [8.507732, 47.422714], [8.507589, 47.422759], [8.507449, 47.422809], [8.507312, 47.422861], [8.506808, 47.423098], [8.506598, 47.423199], [8.506386, 47.423299], [8.506172, 47.423397], [8.505968, 47.423488], [8.505763, 47.423578], [8.505556, 47.423666], [8.505415, 47.423723], [8.505271, 47.423777], [8.505125, 47.423829], [8.505038, 47.423858], [8.504949, 47.423887], [8.50486, 47.423914], [8.5048, 47.423932], [8.50474, 47.42395], [8.504679, 47.423968], [8.5046, 47.42399], [8.504521, 47.424012], [8.504442, 47.424033], [8.504386, 47.424048], [8.50433, 47.424062], [8.504274, 47.424076], [8.50421, 47.424091], [8.504146, 47.424106], [8.504082, 47.42412], [8.503893, 47.424162], [8.503705, 47.424205], [8.503517, 47.424248], [8.50332, 47.424294], [8.503124, 47.424341], [8.502928, 47.42439], [8.502744, 47.424441], [8.50256, 47.424495], [8.502378, 47.42455], [8.50221, 47.424602], [8.502042, 47.424655], [8.501876, 47.424709], [8.501671, 47.424774], [8.501464, 47.424838], [8.501257, 47.4249], [8.501098, 47.424946], [8.500939, 47.424991], [8.50078, 47.425035], [8.500458, 47.425122], [8.500135, 47.425206], [8.499811, 47.425289], [8.499333, 47.425403], [8.498848, 47.425503], [8.498357, 47.425586], [8.497874, 47.425647], [8.497746, 47.425672], [8.497347, 47.425751], [8.496825, 47.42586]]], "type": "MultiLineString"}, "id": "4451", "properties": {}, "type": "Feature"}, {"bbox": [8.510669, 47.415876, 8.511367, 47.41644], "geometry": {"coordinates": [[[8.511367, 47.41644], [8.51084, 47.415944], [8.510827, 47.415933], [8.510814, 47.415922], [8.510799, 47.415913], [8.510782, 47.415905], [8.510765, 47.415897], [8.510747, 47.41589], [8.510729, 47.415885], [8.510709, 47.415881], [8.510689, 47.415878], [8.510669, 47.415876]]], "type": "MultiLineString"}, "id": "4452", "properties": {}, "type": "Feature"}, {"bbox": [8.475754, 47.414471, 8.480552, 47.415356], "geometry": {"coordinates": [[[8.480552, 47.414471], [8.480504, 47.414583], [8.480269, 47.414963], [8.480237, 47.415011], [8.480198, 47.415056], [8.480153, 47.415099], [8.480104, 47.415139], [8.480049, 47.415176], [8.47999, 47.41521], [8.479926, 47.41524], [8.479864, 47.415269], [8.479799, 47.415294], [8.47973, 47.415315], [8.479659, 47.415332], [8.479587, 47.415344], [8.479512, 47.415353], [8.479438, 47.415356], [8.479362, 47.415356], [8.479288, 47.415351], [8.479214, 47.415341], [8.478874, 47.415289], [8.47793, 47.415151], [8.477444, 47.415084], [8.477234, 47.415064], [8.476875, 47.415037], [8.476515, 47.415014], [8.476154, 47.414995], [8.4761, 47.414994], [8.476046, 47.414989], [8.475993, 47.414981], [8.475941, 47.414971], [8.475891, 47.414957], [8.475843, 47.41494], [8.475797, 47.41492], [8.475754, 47.414898]]], "type": "MultiLineString"}, "id": "4453", "properties": {}, "type": "Feature"}, {"bbox": [8.550099, 47.419805, 8.550837, 47.420621], "geometry": {"coordinates": [[[8.550099, 47.419805], [8.550189, 47.419891], [8.550797, 47.420517], [8.550837, 47.420621]]], "type": "MultiLineString"}, "id": "4460", "properties": {}, "type": "Feature"}, {"bbox": [8.553555, 47.376606, 8.555886, 47.379853], "geometry": {"coordinates": [[[8.555296, 47.376606], [8.555843, 47.377198], [8.555857, 47.37722], [8.555869, 47.377242], [8.555878, 47.377266], [8.555883, 47.377289], [8.555886, 47.377313], [8.555885, 47.377337], [8.555882, 47.37736], [8.555875, 47.377384], [8.555866, 47.377407], [8.555853, 47.377429], [8.555838, 47.377451], [8.55582, 47.377471], [8.5558, 47.377491], [8.555777, 47.377509], [8.555752, 47.377525], [8.555724, 47.377541], [8.555695, 47.377554], [8.555665, 47.377566], [8.555633, 47.377575], [8.555599, 47.377583], [8.555565, 47.377589], [8.555561, 47.37759], [8.555557, 47.37759], [8.555552, 47.377591], [8.555024, 47.37767], [8.554931, 47.377687], [8.554841, 47.377711], [8.554754, 47.37774], [8.554671, 47.377775], [8.554594, 47.377814], [8.554522, 47.377858], [8.554457, 47.377907], [8.554398, 47.377959], [8.554098, 47.378251], [8.553619, 47.378716], [8.553603, 47.378732], [8.55359, 47.378748], [8.553578, 47.378765], [8.553569, 47.378783], [8.553562, 47.378801], [8.553557, 47.37882], [8.553555, 47.378839], [8.553555, 47.378857], [8.553557, 47.378876], [8.553562, 47.378895], [8.553568, 47.378913], [8.553578, 47.378931], [8.553589, 47.378948], [8.553602, 47.378964], [8.553618, 47.37898], [8.553635, 47.378995], [8.553654, 47.379008], [8.553812, 47.379121], [8.553947, 47.379219], [8.554121, 47.379345], [8.554808, 47.379853]]], "type": "MultiLineString"}, "id": "4461", "properties": {}, "type": "Feature"}, {"bbox": [8.510403, 47.32465, 8.51445, 47.325155], "geometry": {"coordinates": [[[8.51445, 47.324866], [8.514327, 47.324847], [8.514299, 47.324843], [8.51427, 47.324841], [8.514242, 47.324841], [8.514214, 47.324842], [8.514185, 47.324845], [8.514158, 47.32485], [8.514131, 47.324856], [8.514105, 47.324864], [8.51408, 47.324873], [8.514056, 47.324884], [8.514034, 47.324896], [8.514014, 47.324909], [8.513995, 47.324924], [8.513946, 47.324965], [8.513892, 47.325003], [8.513833, 47.325037], [8.51377, 47.325067], [8.513702, 47.325094], [8.513632, 47.325116], [8.513559, 47.325134], [8.513484, 47.325147], [8.513408, 47.325155], [8.512999, 47.325137], [8.512596, 47.325091], [8.512201, 47.325018], [8.512181, 47.325014], [8.510981, 47.324741], [8.510792, 47.3247], [8.510599, 47.32467], [8.510403, 47.32465]]], "type": "MultiLineString"}, "id": "4464", "properties": {}, "type": "Feature"}, {"bbox": [8.49929, 47.402037, 8.499379, 47.402347], "geometry": {"coordinates": [[[8.49929, 47.402037], [8.499376, 47.402245], [8.499378, 47.402254], [8.499379, 47.402264], [8.499379, 47.402273], [8.499378, 47.402283], [8.499375, 47.402292], [8.499371, 47.402301], [8.499366, 47.40231], [8.49936, 47.402318], [8.499353, 47.402326], [8.499344, 47.402334], [8.499335, 47.402341], [8.499325, 47.402347]]], "type": "MultiLineString"}, "id": "4467", "properties": {}, "type": "Feature"}, {"bbox": [8.489771, 47.407631, 8.490681, 47.407847], "geometry": {"coordinates": [[[8.490681, 47.407827], [8.490619, 47.407837], [8.490557, 47.407844], [8.490493, 47.407847], [8.490429, 47.407846], [8.490366, 47.407841], [8.490304, 47.407832], [8.490243, 47.40782], [8.490184, 47.407803], [8.490127, 47.407784], [8.490073, 47.407761], [8.49001, 47.407731], [8.489947, 47.407703], [8.489882, 47.407675], [8.489845, 47.40766], [8.489808, 47.407645], [8.489771, 47.407631]]], "type": "MultiLineString"}, "id": "4472", "properties": {}, "type": "Feature"}, {"bbox": [8.555916, 47.38289, 8.557257, 47.383641], "geometry": {"coordinates": [[[8.555916, 47.383641], [8.556165, 47.383442], [8.556346, 47.38333], [8.556743, 47.383006], [8.556773, 47.382985], [8.556805, 47.382966], [8.556839, 47.38295], [8.556875, 47.382935], [8.556912, 47.382922], [8.556952, 47.382912], [8.556992, 47.382903], [8.55708, 47.382895], [8.557168, 47.382891], [8.557257, 47.38289]]], "type": "MultiLineString"}, "id": "4475", "properties": {}, "type": "Feature"}, {"bbox": [8.561212, 47.361275, 8.56798, 47.362767], "geometry": {"coordinates": [[[8.561212, 47.361603], [8.5614, 47.3616], [8.562097, 47.361382], [8.562189, 47.361354], [8.562342, 47.361321], [8.562498, 47.361297], [8.562656, 47.361282], [8.562816, 47.361275], [8.563026, 47.361288], [8.563235, 47.361307], [8.563443, 47.361332], [8.563517, 47.361341], [8.565064, 47.361515], [8.565145, 47.361521], [8.565225, 47.361532], [8.565303, 47.361548], [8.565374, 47.361567], [8.565443, 47.361591], [8.565508, 47.361619], [8.566129, 47.361906], [8.566359, 47.362013], [8.566962, 47.362292], [8.567092, 47.362353], [8.567172, 47.36239], [8.56798, 47.362767]]], "type": "MultiLineString"}, "id": "4478", "properties": {}, "type": "Feature"}, {"bbox": [8.536129, 47.375788, 8.536796, 47.375946], "geometry": {"coordinates": [[[8.536796, 47.375788], [8.536738, 47.375802], [8.5364, 47.37588], [8.536129, 47.375946]]], "type": "MultiLineString"}, "id": "4479", "properties": {}, "type": "Feature"}, {"bbox": [8.481856, 47.373838, 8.482626, 47.374269], "geometry": {"coordinates": [[[8.482626, 47.374269], [8.48259, 47.37425], [8.482369, 47.374148], [8.482334, 47.374131], [8.482301, 47.374112], [8.482269, 47.374091], [8.482198, 47.374039], [8.482131, 47.373984], [8.482067, 47.373927], [8.482004, 47.373896], [8.481939, 47.373867], [8.48187, 47.373843], [8.481856, 47.373838]]], "type": "MultiLineString"}, "id": "4480", "properties": {}, "type": "Feature"}, {"bbox": [8.476829, 47.38607, 8.478095, 47.386489], "geometry": {"coordinates": [[[8.478095, 47.38607], [8.477073, 47.386407], [8.476829, 47.386489]]], "type": "MultiLineString"}, "id": "4488", "properties": {}, "type": "Feature"}, {"bbox": [8.502287, 47.371387, 8.503929, 47.373231], "geometry": {"coordinates": [[[8.503929, 47.373231], [8.50376, 47.373024], [8.503581, 47.372821], [8.503391, 47.372622], [8.503376, 47.372609], [8.503361, 47.372595], [8.503347, 47.372581], [8.503322, 47.372558], [8.503298, 47.372535], [8.503275, 47.372511], [8.50295, 47.372216], [8.502931, 47.372198], [8.50291, 47.37218], [8.502889, 47.372162], [8.502737, 47.372015], [8.502599, 47.371861], [8.502476, 47.371702], [8.502406, 47.371599], [8.502343, 47.371494], [8.502287, 47.371387]]], "type": "MultiLineString"}, "id": "4493", "properties": {}, "type": "Feature"}, {"bbox": [8.529232, 47.381908, 8.531333, 47.384362], "geometry": {"coordinates": [[[8.529232, 47.381908], [8.529792, 47.382562], [8.530345, 47.383207], [8.530426, 47.38331], [8.530665, 47.383583], [8.530956, 47.383926], [8.531247, 47.384264], [8.531333, 47.384362]]], "type": "MultiLineString"}, "id": "4495", "properties": {}, "type": "Feature"}, {"bbox": [8.55519, 47.416618, 8.560808, 47.418183], "geometry": {"coordinates": [[[8.55519, 47.416618], [8.555435, 47.416735], [8.555692, 47.416841], [8.555959, 47.416934], [8.556074, 47.416967], [8.55619, 47.416998], [8.556308, 47.417027], [8.557712, 47.417365], [8.559885, 47.417888], [8.560297, 47.417987], [8.560435, 47.418023], [8.560566, 47.418068], [8.560691, 47.418121], [8.560808, 47.418183]]], "type": "MultiLineString"}, "id": "4496", "properties": {}, "type": "Feature"}, {"bbox": [8.569814, 47.354016, 8.572092, 47.357347], "geometry": {"coordinates": [[[8.569814, 47.357347], [8.569933, 47.357211], [8.570452, 47.35665], [8.570552, 47.35655], [8.571299, 47.355778], [8.571336, 47.355747], [8.571705, 47.35541], [8.571792, 47.355319], [8.571823, 47.355282], [8.571881, 47.355204], [8.57192, 47.355146], [8.571955, 47.355085], [8.571996, 47.355003], [8.572013, 47.354962], [8.572048, 47.354856], [8.572082, 47.354706], [8.572086, 47.354673], [8.572092, 47.354554], [8.572084, 47.354262], [8.572052, 47.354016]]], "type": "MultiLineString"}, "id": "4497", "properties": {}, "type": "Feature"}, {"bbox": [8.564775, 47.40999, 8.567643, 47.410216], "geometry": {"coordinates": [[[8.564775, 47.410192], [8.564835, 47.410203], [8.564896, 47.410211], [8.564958, 47.410216], [8.565907, 47.410178], [8.567363, 47.41011], [8.567643, 47.40999]]], "type": "MultiLineString"}, "id": "4498", "properties": {}, "type": "Feature"}, {"bbox": [8.549777, 47.423346, 8.554082, 47.427163], "geometry": {"coordinates": [[[8.549777, 47.423346], [8.550062, 47.423485], [8.55033, 47.423638], [8.55058, 47.423804], [8.551287, 47.424476], [8.551785, 47.424966], [8.5521, 47.425138], [8.553006, 47.425993], [8.553279, 47.426263], [8.553567, 47.426526], [8.553869, 47.426781], [8.553932, 47.426851], [8.553985, 47.426925], [8.554029, 47.427002], [8.554061, 47.427082], [8.554082, 47.427163]]], "type": "MultiLineString"}, "id": "4500", "properties": {}, "type": "Feature"}, {"bbox": [8.538748, 47.418258, 8.542101, 47.420259], "geometry": {"coordinates": [[[8.542101, 47.418258], [8.542037, 47.418559], [8.541678, 47.418584], [8.54132, 47.418619], [8.540965, 47.418663], [8.540762, 47.418695], [8.540561, 47.418733], [8.540362, 47.418774], [8.540269, 47.418792], [8.540179, 47.418815], [8.540092, 47.418844], [8.54001, 47.418877], [8.539931, 47.418915], [8.539858, 47.418957], [8.53979, 47.419004], [8.539728, 47.419054], [8.539673, 47.419108], [8.538934, 47.419988], [8.538816, 47.420158], [8.538748, 47.420256], [8.538749, 47.420259]]], "type": "MultiLineString"}, "id": "4501", "properties": {}, "type": "Feature"}, {"bbox": [8.506585, 47.35855, 8.509874, 47.361466], "geometry": {"coordinates": [[[8.509874, 47.35855], [8.509703, 47.358689], [8.50965, 47.358733], [8.5096, 47.358779], [8.509528, 47.358851], [8.509425, 47.358965], [8.508762, 47.359717], [8.508747, 47.359732], [8.508723, 47.359764], [8.508691, 47.359805], [8.508387, 47.359786], [8.508323, 47.359797], [8.508274, 47.359846], [8.507416, 47.360823], [8.507344, 47.360901], [8.507295, 47.36095], [8.507244, 47.360997], [8.507188, 47.361042], [8.507131, 47.361086], [8.506585, 47.361466]]], "type": "MultiLineString"}, "id": "4515", "properties": {}, "type": "Feature"}, {"bbox": [8.507994, 47.3525, 8.511813, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511547, 47.353266], [8.511264, 47.35315], [8.510965, 47.353053], [8.510828, 47.353015], [8.510689, 47.352983], [8.510547, 47.352956], [8.510442, 47.35294], [8.510172, 47.352891], [8.509328, 47.35274], [8.507994, 47.3525]]], "type": "MultiLineString"}, "id": "4519", "properties": {}, "type": "Feature"}, {"bbox": [8.542781, 47.377776, 8.543712, 47.380439], "geometry": {"coordinates": [[[8.543712, 47.377776], [8.543693, 47.377895], [8.543616, 47.378352], [8.543573, 47.378662], [8.543554, 47.378801], [8.543537, 47.378872], [8.543533, 47.378889], [8.54351, 47.378963], [8.543484, 47.379037], [8.543456, 47.37911], [8.543391, 47.379264], [8.543229, 47.379646], [8.54317, 47.379785], [8.543059, 47.38], [8.542781, 47.380439]]], "type": "MultiLineString"}, "id": "4521", "properties": {}, "type": "Feature"}, {"bbox": [8.572454, 47.354898, 8.574772, 47.357535], "geometry": {"coordinates": [[[8.572544, 47.357535], [8.572527, 47.357525], [8.572511, 47.357513], [8.572497, 47.3575], [8.572485, 47.357487], [8.572475, 47.357473], [8.572467, 47.357458], [8.572461, 47.357443], [8.572456, 47.357427], [8.572454, 47.357412], [8.572454, 47.357396], [8.572531, 47.357054], [8.57257, 47.356891], [8.572628, 47.356731], [8.572704, 47.356574], [8.572798, 47.356422], [8.572961, 47.356165], [8.573172, 47.355902], [8.573421, 47.355655], [8.573706, 47.355426], [8.574523, 47.354898], [8.574772, 47.354901]]], "type": "MultiLineString"}, "id": "4526", "properties": {}, "type": "Feature"}, {"bbox": [8.53459, 47.367657, 8.538018, 47.369021], "geometry": {"coordinates": [[[8.538018, 47.369021], [8.537892, 47.368932], [8.53778, 47.36885], [8.537664, 47.368772], [8.537543, 47.368698], [8.537484, 47.368663], [8.537423, 47.368629], [8.537361, 47.368597], [8.53722, 47.36853], [8.536687, 47.36828], [8.536497, 47.368196], [8.536267, 47.368107], [8.536028, 47.368031], [8.53578, 47.367968], [8.535667, 47.367942], [8.535555, 47.367914], [8.535443, 47.367886], [8.53535, 47.367862], [8.535258, 47.367837], [8.535166, 47.367811], [8.534806, 47.367724], [8.534735, 47.367705], [8.534665, 47.367684], [8.534597, 47.36766], [8.53459, 47.367657]]], "type": "MultiLineString"}, "id": "4531", "properties": {}, "type": "Feature"}, {"bbox": [8.538275, 47.416931, 8.538445, 47.418388], "geometry": {"coordinates": [[[8.538275, 47.416931], [8.538356, 47.417575], [8.538445, 47.41763], [8.538403, 47.417981], [8.538368, 47.41819], [8.538372, 47.418388]]], "type": "MultiLineString"}, "id": "4532", "properties": {}, "type": "Feature"}, {"bbox": [8.520449, 47.366685, 8.522723, 47.367909], "geometry": {"coordinates": [[[8.522723, 47.367909], [8.522175, 47.367612], [8.52133, 47.367153], [8.520449, 47.366685]]], "type": "MultiLineString"}, "id": "4533", "properties": {}, "type": "Feature"}, {"bbox": [8.511054, 47.370647, 8.513206, 47.372334], "geometry": {"coordinates": [[[8.513206, 47.372334], [8.512482, 47.371926], [8.511833, 47.371451], [8.511832, 47.37145], [8.511832, 47.37145], [8.511054, 47.370647]]], "type": "MultiLineString"}, "id": "4534", "properties": {}, "type": "Feature"}, {"bbox": [8.512631, 47.370888, 8.515406, 47.372072], "geometry": {"coordinates": [[[8.515406, 47.372072], [8.514261, 47.37144], [8.513532, 47.371032], [8.513511, 47.371013], [8.513487, 47.370994], [8.51346, 47.370977], [8.513432, 47.370962], [8.513402, 47.370948], [8.51337, 47.370936], [8.513337, 47.370926], [8.513303, 47.370918], [8.513268, 47.370912], [8.513232, 47.370908], [8.513196, 47.370907], [8.513007, 47.370903], [8.512819, 47.370897], [8.512631, 47.370888]]], "type": "MultiLineString"}, "id": "4535", "properties": {}, "type": "Feature"}, {"bbox": [8.525044, 47.374258, 8.526656, 47.375407], "geometry": {"coordinates": [[[8.525044, 47.374258], [8.525066, 47.374297], [8.525092, 47.374335], [8.525123, 47.374371], [8.525158, 47.374405], [8.526071, 47.375013], [8.526555, 47.375335], [8.526656, 47.375407]]], "type": "MultiLineString"}, "id": "4538", "properties": {}, "type": "Feature"}, {"bbox": [8.585159, 47.40485, 8.5855, 47.405537], "geometry": {"coordinates": [[[8.5855, 47.40485], [8.58516, 47.405535], [8.585159, 47.405537]]], "type": "MultiLineString"}, "id": "4541", "properties": {}, "type": "Feature"}, {"bbox": [8.480605, 47.390336, 8.481594, 47.391815], "geometry": {"coordinates": [[[8.481552, 47.391815], [8.48159, 47.391716], [8.481592, 47.39171], [8.481593, 47.391705], [8.481594, 47.391699], [8.481593, 47.391693], [8.481592, 47.391688], [8.48159, 47.391682], [8.481587, 47.391677], [8.481584, 47.391671], [8.481337, 47.391324], [8.481263, 47.39124], [8.480662, 47.390394], [8.480605, 47.390336]]], "type": "MultiLineString"}, "id": "4542", "properties": {}, "type": "Feature"}, {"bbox": [8.541726, 47.36674, 8.541862, 47.369868], "geometry": {"coordinates": [[[8.541802, 47.36674], [8.541741, 47.366936], [8.541731, 47.366983], [8.541726, 47.36703], [8.541728, 47.367077], [8.541734, 47.367368], [8.541785, 47.368094], [8.541851, 47.369055], [8.541836, 47.369146], [8.541828, 47.369193], [8.541855, 47.369791], [8.541862, 47.369868]]], "type": "MultiLineString"}, "id": "4543", "properties": {}, "type": "Feature"}, {"bbox": [8.522185, 47.371932, 8.527691, 47.373144], "geometry": {"coordinates": [[[8.527691, 47.373144], [8.527632, 47.373137], [8.527299, 47.373079], [8.526167, 47.372882], [8.525821, 47.372819], [8.525237, 47.372711], [8.524687, 47.372597], [8.524029, 47.372457], [8.523928, 47.372437], [8.523827, 47.372417], [8.523727, 47.372396], [8.523651, 47.372379], [8.523575, 47.372362], [8.523499, 47.372345], [8.523304, 47.372298], [8.523111, 47.37225], [8.522919, 47.372199], [8.522844, 47.372179], [8.522769, 47.372158], [8.522695, 47.372137], [8.522354, 47.371994], [8.522185, 47.371932]]], "type": "MultiLineString"}, "id": "4546", "properties": {}, "type": "Feature"}, {"bbox": [8.532591, 47.388442, 8.532779, 47.388865], "geometry": {"coordinates": [[[8.532591, 47.388442], [8.532707, 47.388546], [8.532721, 47.388561], [8.532732, 47.388577], [8.532742, 47.388593], [8.532749, 47.38861], [8.532753, 47.388628], [8.532755, 47.388645], [8.532779, 47.388865]]], "type": "MultiLineString"}, "id": "4549", "properties": {}, "type": "Feature"}, {"bbox": [8.495905, 47.424596, 8.496825, 47.42586], "geometry": {"coordinates": [[[8.496825, 47.42586], [8.496696, 47.425619], [8.496594, 47.425447], [8.496172, 47.424829], [8.496149, 47.424798], [8.496121, 47.424769], [8.496089, 47.424741], [8.495905, 47.424596]]], "type": "MultiLineString"}, "id": "4574", "properties": {}, "type": "Feature"}, {"bbox": [8.534846, 47.369475, 8.536478, 47.370456], "geometry": {"coordinates": [[[8.536478, 47.369475], [8.536469, 47.369475], [8.536461, 47.369476], [8.536453, 47.369478], [8.536445, 47.36948], [8.536437, 47.369483], [8.53643, 47.369486], [8.536423, 47.369489], [8.536417, 47.369493], [8.536241, 47.369601], [8.535693, 47.369939], [8.535635, 47.369974], [8.534902, 47.370423], [8.534846, 47.370456]]], "type": "MultiLineString"}, "id": "4575", "properties": {}, "type": "Feature"}, {"bbox": [8.577339, 47.351311, 8.584088, 47.353043], "geometry": {"coordinates": [[[8.577339, 47.353043], [8.577824, 47.35298], [8.578024, 47.352987], [8.578657, 47.352993], [8.578732, 47.352993], [8.578806, 47.352988], [8.57888, 47.352979], [8.578953, 47.352966], [8.580213, 47.352713], [8.580432, 47.352654], [8.580643, 47.352584], [8.580846, 47.352504], [8.581087, 47.352381], [8.581947, 47.35204], [8.582491, 47.351835], [8.583447, 47.351509], [8.583743, 47.35141], [8.583964, 47.351338], [8.583994, 47.351328], [8.584024, 47.351321], [8.584056, 47.351315], [8.584088, 47.351311]]], "type": "MultiLineString"}, "id": "4576", "properties": {}, "type": "Feature"}, {"bbox": [8.580125, 47.35989, 8.580615, 47.36116], "geometry": {"coordinates": [[[8.580179, 47.35989], [8.58026, 47.359986], [8.580288, 47.360012], [8.580319, 47.360036], [8.580353, 47.360059], [8.58039, 47.360079], [8.58043, 47.360098], [8.580471, 47.360113], [8.580514, 47.360127], [8.580559, 47.360137], [8.580605, 47.360145], [8.580614, 47.3602], [8.580615, 47.360255], [8.580609, 47.36031], [8.580595, 47.360364], [8.580574, 47.360417], [8.580545, 47.360469], [8.580125, 47.36116]]], "type": "MultiLineString"}, "id": "4578", "properties": {}, "type": "Feature"}, {"bbox": [8.52506, 47.334827, 8.529981, 47.335382], "geometry": {"coordinates": [[[8.529981, 47.334827], [8.529861, 47.334864], [8.529768, 47.334873], [8.529675, 47.33488], [8.529581, 47.334884], [8.529211, 47.33489], [8.529103, 47.334893], [8.528996, 47.334901], [8.52889, 47.334912], [8.528818, 47.334921], [8.528746, 47.334933], [8.528675, 47.334946], [8.528415, 47.334999], [8.52815, 47.335038], [8.52788, 47.335061], [8.527609, 47.33507], [8.527494, 47.335061], [8.527379, 47.335052], [8.527265, 47.335041], [8.527135, 47.33503], [8.527005, 47.335028], [8.526875, 47.335034], [8.526746, 47.335048], [8.52662, 47.33507], [8.526497, 47.3351], [8.525826, 47.335312], [8.525716, 47.33534], [8.525602, 47.335361], [8.525486, 47.335375], [8.525369, 47.335382], [8.525251, 47.335381], [8.52506, 47.335374]]], "type": "MultiLineString"}, "id": "4579", "properties": {}, "type": "Feature"}, {"bbox": [8.542205, 47.411871, 8.542577, 47.412231], "geometry": {"coordinates": [[[8.542577, 47.411871], [8.542537, 47.411891], [8.542501, 47.411913], [8.542467, 47.411937], [8.542437, 47.411963], [8.54241, 47.411991], [8.542205, 47.412231]]], "type": "MultiLineString"}, "id": "4580", "properties": {}, "type": "Feature"}, {"bbox": [8.542453, 47.412516, 8.543305, 47.41361], "geometry": {"coordinates": [[[8.543305, 47.412516], [8.543252, 47.412565], [8.54302, 47.412872], [8.542453, 47.41361]]], "type": "MultiLineString"}, "id": "4590", "properties": {}, "type": "Feature"}, {"bbox": [8.527482, 47.393515, 8.529365, 47.394139], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.52921, 47.393562], [8.52896, 47.393635], [8.528327, 47.39385], [8.527694, 47.394065], [8.527482, 47.394139]]], "type": "MultiLineString"}, "id": "4602", "properties": {}, "type": "Feature"}, {"bbox": [8.481029, 47.373459, 8.481856, 47.373838], "geometry": {"coordinates": [[[8.481856, 47.373838], [8.481798, 47.373822], [8.481724, 47.373805], [8.481604, 47.373763], [8.48149, 47.373715], [8.481382, 47.373661], [8.481269, 47.373598], [8.481158, 47.373535], [8.481049, 47.373469], [8.481029, 47.373459]]], "type": "MultiLineString"}, "id": "4603", "properties": {}, "type": "Feature"}, {"bbox": [8.53645, 47.422295, 8.538976, 47.426198], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.53892, 47.422313], [8.538866, 47.422333], [8.538816, 47.422357], [8.538768, 47.422383], [8.538723, 47.422411], [8.538682, 47.422442], [8.538645, 47.422476], [8.538605, 47.422516], [8.538571, 47.422559], [8.538542, 47.422604], [8.538519, 47.422651], [8.538503, 47.422698], [8.538493, 47.422747], [8.53835, 47.423761], [8.538337, 47.423823], [8.538312, 47.423907], [8.53828, 47.423991], [8.53824, 47.424073], [8.538167, 47.424194], [8.538078, 47.424309], [8.537972, 47.424418], [8.537841, 47.42454], [8.537699, 47.424655], [8.537544, 47.424763], [8.537375, 47.424897], [8.537048, 47.425157], [8.536972, 47.42523], [8.536902, 47.425306], [8.536838, 47.425384], [8.536699, 47.425531], [8.536578, 47.425686], [8.536478, 47.425848], [8.536462, 47.425905], [8.536452, 47.425964], [8.53645, 47.426023], [8.536455, 47.426082], [8.536462, 47.426119], [8.536471, 47.426156], [8.536484, 47.426193], [8.536485, 47.426198]]], "type": "MultiLineString"}, "id": "4604", "properties": {}, "type": "Feature"}, {"bbox": [8.524298, 47.374509, 8.525726, 47.376439], "geometry": {"coordinates": [[[8.524298, 47.374509], [8.524339, 47.374555], [8.524381, 47.3746], [8.524424, 47.374645], [8.52469, 47.375016], [8.524952, 47.375383], [8.525076, 47.375534], [8.52524, 47.375761], [8.525344, 47.375899], [8.52548, 47.376065], [8.52565, 47.376308], [8.525726, 47.376439]]], "type": "MultiLineString"}, "id": "4605", "properties": {}, "type": "Feature"}, {"bbox": [8.576225, 47.34848, 8.576559, 47.348787], "geometry": {"coordinates": [[[8.576225, 47.348787], [8.576262, 47.348775], [8.576297, 47.34876], [8.576329, 47.348744], [8.57636, 47.348725], [8.576388, 47.348705], [8.576414, 47.348683], [8.576436, 47.348659], [8.576455, 47.348635], [8.576559, 47.34848]]], "type": "MultiLineString"}, "id": "4607", "properties": {}, "type": "Feature"}, {"bbox": [8.575848, 47.349445, 8.576153, 47.349774], "geometry": {"coordinates": [[[8.575848, 47.349774], [8.576153, 47.349446], [8.576153, 47.349445]]], "type": "MultiLineString"}, "id": "4608", "properties": {}, "type": "Feature"}, {"bbox": [8.525394, 47.354035, 8.526836, 47.354797], "geometry": {"coordinates": [[[8.526836, 47.354797], [8.526016, 47.354383], [8.525602, 47.354171], [8.525535, 47.354137], [8.525494, 47.354115], [8.525458, 47.35409], [8.525424, 47.354064], [8.525394, 47.354035]]], "type": "MultiLineString"}, "id": "4612", "properties": {}, "type": "Feature"}, {"bbox": [8.526451, 47.354797, 8.527019, 47.361998], "geometry": {"coordinates": [[[8.526496, 47.361998], [8.526474, 47.361943], [8.52646, 47.361886], [8.526452, 47.361829], [8.526451, 47.361772], [8.526458, 47.361714], [8.526472, 47.361658], [8.526542, 47.36128], [8.526524, 47.361238], [8.526674, 47.360431], [8.526777, 47.359834], [8.526866, 47.359322], [8.526878, 47.359262], [8.526891, 47.359201], [8.526904, 47.35914], [8.52691, 47.359115], [8.526916, 47.359089], [8.526922, 47.359063], [8.52696, 47.358869], [8.526989, 47.358674], [8.527009, 47.358479], [8.527009, 47.358475], [8.527009, 47.358451], [8.527008, 47.358331], [8.527008, 47.358263], [8.527007, 47.357411], [8.527019, 47.357277], [8.527016, 47.356958], [8.527005, 47.356651], [8.526987, 47.356414], [8.526901, 47.355285], [8.526884, 47.35524], [8.526861, 47.354967], [8.526836, 47.354797]]], "type": "MultiLineString"}, "id": "4614", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.358432, 8.595477, 47.359878], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595428, 47.358477], [8.595385, 47.358526], [8.595348, 47.358577], [8.595318, 47.358629], [8.59527, 47.358744], [8.595214, 47.358856], [8.595151, 47.358967], [8.594878, 47.359379], [8.59457, 47.359878]]], "type": "MultiLineString"}, "id": "4615", "properties": {}, "type": "Feature"}, {"bbox": [8.479199, 47.390441, 8.479433, 47.390602], "geometry": {"coordinates": [[[8.479433, 47.390602], [8.479349, 47.390552], [8.479271, 47.390498], [8.479199, 47.390441]]], "type": "MultiLineString"}, "id": "4616", "properties": {}, "type": "Feature"}, {"bbox": [8.524653, 47.340885, 8.526466, 47.342276], "geometry": {"coordinates": [[[8.526466, 47.340885], [8.526387, 47.340992], [8.525833, 47.342016], [8.525795, 47.342081], [8.52575, 47.342145], [8.5257, 47.342207], [8.525693, 47.342216], [8.525684, 47.342224], [8.525675, 47.342231], [8.525664, 47.342238], [8.525653, 47.342245], [8.525641, 47.34225], [8.525628, 47.342255], [8.525614, 47.342259], [8.5256, 47.342262], [8.525586, 47.342265], [8.525531, 47.342271], [8.525476, 47.342275], [8.525421, 47.342276], [8.525366, 47.342273], [8.524653, 47.342256]]], "type": "MultiLineString"}, "id": "4623", "properties": {}, "type": "Feature"}, {"bbox": [8.479743, 47.375988, 8.483937, 47.378017], "geometry": {"coordinates": [[[8.483937, 47.376349], [8.48324, 47.376157], [8.482735, 47.376029], [8.482679, 47.376013], [8.482621, 47.376], [8.482562, 47.375989], [8.482538, 47.375988], [8.482513, 47.375988], [8.482489, 47.37599], [8.482465, 47.375993], [8.482442, 47.375997], [8.482419, 47.376003], [8.482397, 47.37601], [8.482376, 47.376018], [8.482356, 47.376027], [8.482337, 47.376038], [8.48232, 47.376049], [8.482304, 47.376061], [8.48229, 47.376075], [8.482068, 47.376301], [8.482024, 47.37634], [8.481975, 47.376376], [8.481922, 47.376409], [8.481864, 47.376439], [8.481803, 47.376465], [8.481738, 47.376487], [8.481671, 47.376505], [8.481626, 47.376518], [8.481583, 47.376534], [8.481542, 47.376552], [8.481504, 47.376572], [8.481468, 47.376595], [8.481436, 47.37662], [8.481407, 47.376647], [8.481236, 47.376786], [8.479743, 47.378017]]], "type": "MultiLineString"}, "id": "4626", "properties": {}, "type": "Feature"}, {"bbox": [8.4808, 47.380286, 8.483649, 47.381966], "geometry": {"coordinates": [[[8.483649, 47.381966], [8.483457, 47.38194], [8.483322, 47.381884], [8.483071, 47.381751], [8.482589, 47.381503], [8.481977, 47.381098], [8.481308, 47.380648], [8.480957, 47.380415], [8.480832, 47.380332], [8.480823, 47.380324], [8.480815, 47.380315], [8.480809, 47.380306], [8.480804, 47.380296], [8.4808, 47.380286]]], "type": "MultiLineString"}, "id": "4627", "properties": {}, "type": "Feature"}, {"bbox": [8.538883, 47.427231, 8.54005, 47.427418], "geometry": {"coordinates": [[[8.538883, 47.427278], [8.53935, 47.4274], [8.539374, 47.427406], [8.5394, 47.427412], [8.539426, 47.427415], [8.539452, 47.427418], [8.539479, 47.427418], [8.539506, 47.427418], [8.539532, 47.427415], [8.539558, 47.427412], [8.539583, 47.427406], [8.539608, 47.4274], [8.539632, 47.427392], [8.539655, 47.427382], [8.53978, 47.427295], [8.539805, 47.427281], [8.539832, 47.427269], [8.53986, 47.427258], [8.53989, 47.427249], [8.539921, 47.427242], [8.539952, 47.427236], [8.539985, 47.427233], [8.540017, 47.427231], [8.54005, 47.427231]]], "type": "MultiLineString"}, "id": "4632", "properties": {}, "type": "Feature"}, {"bbox": [8.54087, 47.383451, 8.542105, 47.383859], "geometry": {"coordinates": [[[8.54087, 47.383451], [8.541014, 47.383488], [8.54109, 47.383512], [8.541163, 47.38354], [8.541231, 47.383573], [8.541295, 47.383609], [8.541354, 47.38365], [8.541383, 47.38367], [8.541415, 47.383688], [8.541448, 47.383705], [8.541484, 47.38372], [8.541521, 47.383732], [8.54156, 47.383743], [8.541995, 47.383858], [8.542105, 47.383859]]], "type": "MultiLineString"}, "id": "4634", "properties": {}, "type": "Feature"}, {"bbox": [8.551211, 47.407159, 8.553879, 47.409431], "geometry": {"coordinates": [[[8.551211, 47.407159], [8.551254, 47.407225], [8.551445, 47.407519], [8.551561, 47.407674], [8.551699, 47.407821], [8.551857, 47.407958], [8.551967, 47.408046], [8.551989, 47.408061], [8.552136, 47.408162], [8.552212, 47.40825], [8.552865, 47.408591], [8.553094, 47.40872], [8.553305, 47.408861], [8.553497, 47.409015], [8.553576, 47.409087], [8.55365, 47.409162], [8.553721, 47.409238], [8.553879, 47.409431]]], "type": "MultiLineString"}, "id": "4635", "properties": {}, "type": "Feature"}, {"bbox": [8.555785, 47.365865, 8.556208, 47.366285], "geometry": {"coordinates": [[[8.555785, 47.366285], [8.556208, 47.365865]]], "type": "MultiLineString"}, "id": "4643", "properties": {}, "type": "Feature"}, {"bbox": [8.54007, 47.375057, 8.540997, 47.376056], "geometry": {"coordinates": [[[8.54007, 47.375057], [8.540783, 47.375402], [8.540811, 47.375417], [8.540837, 47.375434], [8.540861, 47.375451], [8.540898, 47.37549], [8.540929, 47.375531], [8.540955, 47.375574], [8.540974, 47.375618], [8.540988, 47.375663], [8.540996, 47.375709], [8.540997, 47.375755], [8.540993, 47.375801], [8.540982, 47.375846], [8.540966, 47.375891], [8.540898, 47.376056]]], "type": "MultiLineString"}, "id": "4645", "properties": {}, "type": "Feature"}, {"bbox": [8.52772, 47.370617, 8.528408, 47.371372], "geometry": {"coordinates": [[[8.528408, 47.370617], [8.528236, 47.370802], [8.528139, 47.370894], [8.528062, 47.370984], [8.52777, 47.371315], [8.52772, 47.371372]]], "type": "MultiLineString"}, "id": "4648", "properties": {}, "type": "Feature"}, {"bbox": [8.531382, 47.363924, 8.531651, 47.365285], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.53161, 47.364914], [8.531563, 47.364691], [8.531537, 47.364576], [8.531475, 47.36445], [8.531428, 47.364321], [8.531397, 47.36419], [8.531382, 47.364057], [8.531384, 47.363924]]], "type": "MultiLineString"}, "id": "4651", "properties": {}, "type": "Feature"}, {"bbox": [8.49929, 47.401813, 8.500062, 47.402037], "geometry": {"coordinates": [[[8.500062, 47.401813], [8.499951, 47.401841], [8.499842, 47.401872], [8.499733, 47.401905], [8.499586, 47.40195], [8.499439, 47.401994], [8.49929, 47.402037]]], "type": "MultiLineString"}, "id": "4654", "properties": {}, "type": "Feature"}, {"bbox": [8.529926, 47.386983, 8.534913, 47.393244], "geometry": {"coordinates": [[[8.534913, 47.386983], [8.534862, 47.387014], [8.534809, 47.387043], [8.534753, 47.38707], [8.534698, 47.387114], [8.534649, 47.387161], [8.534606, 47.38721], [8.534568, 47.387261], [8.534537, 47.387314], [8.534396, 47.387596], [8.534386, 47.387617], [8.534302, 47.3878], [8.534229, 47.387985], [8.534169, 47.388172], [8.534116, 47.388371], [8.534075, 47.388531], [8.534034, 47.388693], [8.534012, 47.388784], [8.533979, 47.388875], [8.533934, 47.388962], [8.533876, 47.389046], [8.533808, 47.389127], [8.533729, 47.389203], [8.533615, 47.389298], [8.533126, 47.389698], [8.532307, 47.390367], [8.531062, 47.391383], [8.530993, 47.391439], [8.530977, 47.391453], [8.530101, 47.392168], [8.529991, 47.392299], [8.529965, 47.392347], [8.529945, 47.392396], [8.529932, 47.392447], [8.529926, 47.392497], [8.529926, 47.392548], [8.529932, 47.392599], [8.529946, 47.39265], [8.529966, 47.392699], [8.530093, 47.392959], [8.530239, 47.393244]]], "type": "MultiLineString"}, "id": "4655", "properties": {}, "type": "Feature"}, {"bbox": [8.492862, 47.369164, 8.495097, 47.369976], "geometry": {"coordinates": [[[8.495097, 47.369169], [8.495066, 47.369166], [8.495034, 47.369164], [8.495002, 47.369164], [8.49497, 47.369166], [8.494938, 47.369171], [8.494908, 47.369177], [8.494878, 47.369185], [8.494849, 47.369194], [8.494822, 47.369206], [8.494477, 47.369364], [8.494118, 47.369507], [8.493745, 47.369632], [8.493439, 47.369733], [8.493144, 47.369848], [8.492862, 47.369976]]], "type": "MultiLineString"}, "id": "4661", "properties": {}, "type": "Feature"}, {"bbox": [8.52184, 47.394583, 8.522439, 47.395679], "geometry": {"coordinates": [[[8.52184, 47.394583], [8.521868, 47.394635], [8.522144, 47.395141], [8.522439, 47.395679]]], "type": "MultiLineString"}, "id": "4667", "properties": {}, "type": "Feature"}, {"bbox": [8.526786, 47.385518, 8.527129, 47.387813], "geometry": {"coordinates": [[[8.526786, 47.385518], [8.526813, 47.385975], [8.526941, 47.386764], [8.527061, 47.38752], [8.527062, 47.387539], [8.527066, 47.387558], [8.527072, 47.387577], [8.527129, 47.387813]]], "type": "MultiLineString"}, "id": "4668", "properties": {}, "type": "Feature"}, {"bbox": [8.517318, 47.363128, 8.518006, 47.363175], "geometry": {"coordinates": [[[8.518006, 47.363128], [8.51797, 47.363138], [8.517933, 47.363146], [8.517895, 47.363153], [8.517887, 47.363155], [8.517879, 47.363156], [8.517871, 47.363157], [8.517839, 47.363161], [8.517808, 47.363163], [8.517777, 47.363165], [8.517746, 47.363167], [8.517715, 47.363169], [8.517685, 47.363171], [8.517658, 47.363172], [8.51763, 47.363173], [8.517603, 47.363174], [8.517603, 47.363174], [8.517603, 47.363174], [8.517567, 47.363175], [8.517532, 47.363174], [8.517497, 47.363173], [8.517462, 47.36317], [8.517428, 47.363167], [8.517394, 47.363162], [8.517318, 47.363146]]], "type": "MultiLineString"}, "id": "4670", "properties": {}, "type": "Feature"}, {"bbox": [8.596548, 47.359031, 8.600038, 47.360078], "geometry": {"coordinates": [[[8.596548, 47.359031], [8.597126, 47.359224], [8.597712, 47.359408], [8.598305, 47.359582], [8.598882, 47.359749], [8.599459, 47.359914], [8.600038, 47.360078]]], "type": "MultiLineString"}, "id": "4674", "properties": {}, "type": "Feature"}, {"bbox": [8.499889, 47.402781, 8.504205, 47.404757], "geometry": {"coordinates": [[[8.499889, 47.402907], [8.499896, 47.40291], [8.499934, 47.402921], [8.499973, 47.402929], [8.500014, 47.402935], [8.500055, 47.402938], [8.500096, 47.402939], [8.500138, 47.402937], [8.500179, 47.402933], [8.500651, 47.402873], [8.501508, 47.402788], [8.501557, 47.402783], [8.501607, 47.402781], [8.501656, 47.402781], [8.501706, 47.402785], [8.501755, 47.402791], [8.501803, 47.4028], [8.50185, 47.402812], [8.501895, 47.402826], [8.501938, 47.402843], [8.501979, 47.402863], [8.502542, 47.403194], [8.502702, 47.403309], [8.503068, 47.403596], [8.503127, 47.403643], [8.503182, 47.403694], [8.50323, 47.403747], [8.503272, 47.403802], [8.503315, 47.403871], [8.503348, 47.403943], [8.503371, 47.404017], [8.503419, 47.40423], [8.503428, 47.404262], [8.503442, 47.404293], [8.503459, 47.404323], [8.503481, 47.404352], [8.503506, 47.404379], [8.503534, 47.404405], [8.503563, 47.404427], [8.503594, 47.404448], [8.503627, 47.404466], [8.504015, 47.404646], [8.504205, 47.404757]]], "type": "MultiLineString"}, "id": "4681", "properties": {}, "type": "Feature"}, {"bbox": [8.521169, 47.410523, 8.521546, 47.410758], "geometry": {"coordinates": [[[8.521169, 47.410523], [8.521173, 47.410524], [8.521182, 47.410526], [8.52119, 47.410528], [8.521198, 47.410532], [8.521206, 47.410535], [8.521213, 47.41054], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "4682", "properties": {}, "type": "Feature"}, {"bbox": [8.568511, 47.366643, 8.56886, 47.367202], "geometry": {"coordinates": [[[8.568708, 47.366643], [8.568604, 47.3667], [8.568589, 47.366708], [8.568575, 47.366717], [8.568562, 47.366727], [8.56855, 47.366737], [8.56854, 47.366748], [8.568531, 47.36676], [8.568524, 47.366772], [8.568518, 47.366784], [8.568514, 47.366797], [8.568512, 47.36681], [8.568511, 47.366823], [8.568512, 47.366836], [8.568515, 47.366849], [8.568519, 47.366861], [8.568525, 47.366874], [8.568532, 47.366886], [8.568541, 47.366897], [8.568552, 47.366908], [8.568564, 47.366919], [8.56886, 47.367202]]], "type": "MultiLineString"}, "id": "4686", "properties": {}, "type": "Feature"}, {"bbox": [8.483813, 47.406234, 8.484317, 47.406832], "geometry": {"coordinates": [[[8.483813, 47.406234], [8.483846, 47.406278], [8.483993, 47.406467], [8.48415, 47.406651], [8.484317, 47.406832]]], "type": "MultiLineString"}, "id": "4699", "properties": {}, "type": "Feature"}, {"bbox": [8.522032, 47.375446, 8.523202, 47.377289], "geometry": {"coordinates": [[[8.522032, 47.375446], [8.522417, 47.376021], [8.522495, 47.376139], [8.522505, 47.376195], [8.522852, 47.376737], [8.523202, 47.377289]]], "type": "MultiLineString"}, "id": "4700", "properties": {}, "type": "Feature"}, {"bbox": [8.587711, 47.39618, 8.588027, 47.396752], "geometry": {"coordinates": [[[8.587711, 47.396752], [8.587741, 47.396654], [8.587782, 47.396544], [8.587837, 47.396437], [8.587905, 47.396333], [8.587984, 47.396233], [8.588027, 47.39618]]], "type": "MultiLineString"}, "id": "4705", "properties": {}, "type": "Feature"}, {"bbox": [8.534718, 47.379813, 8.536455, 47.380318], "geometry": {"coordinates": [[[8.536455, 47.379813], [8.536307, 47.379854], [8.536232, 47.379867], [8.536061, 47.379927], [8.535944, 47.379963], [8.535933, 47.379966], [8.535922, 47.37997], [8.535912, 47.379975], [8.535903, 47.37998], [8.535895, 47.379984], [8.535887, 47.379989], [8.535879, 47.379993], [8.53587, 47.379996], [8.53586, 47.379999], [8.534917, 47.380269], [8.534718, 47.380318]]], "type": "MultiLineString"}, "id": "4713", "properties": {}, "type": "Feature"}, {"bbox": [8.514424, 47.421801, 8.516978, 47.423793], "geometry": {"coordinates": [[[8.514424, 47.421801], [8.514752, 47.422205], [8.515025, 47.422516], [8.515062, 47.422554], [8.515145, 47.422632], [8.515233, 47.422708], [8.515328, 47.422781], [8.515457, 47.422868], [8.515583, 47.422947], [8.515786, 47.423062], [8.515988, 47.423168], [8.516041, 47.423195], [8.516492, 47.423431], [8.516533, 47.423454], [8.516574, 47.423477], [8.516613, 47.423502], [8.516744, 47.423593], [8.516866, 47.42369], [8.516978, 47.423793]]], "type": "MultiLineString"}, "id": "4716", "properties": {}, "type": "Feature"}, {"bbox": [8.526817, 47.342493, 8.53093, 47.348341], "geometry": {"coordinates": [[[8.528059, 47.348341], [8.527996, 47.348332], [8.527934, 47.34832], [8.527875, 47.348304], [8.527817, 47.348284], [8.527762, 47.348262], [8.527711, 47.348235], [8.527663, 47.348206], [8.527536, 47.348105], [8.527089, 47.34772], [8.527012, 47.347641], [8.526958, 47.347573], [8.526912, 47.347502], [8.526874, 47.347429], [8.526846, 47.347354], [8.526827, 47.347278], [8.526817, 47.347201], [8.526817, 47.347123], [8.526826, 47.347046], [8.526845, 47.34697], [8.526848, 47.346959], [8.526851, 47.346947], [8.526855, 47.346936], [8.526863, 47.346916], [8.526873, 47.346896], [8.526884, 47.346877], [8.526922, 47.346811], [8.526965, 47.346747], [8.527014, 47.346684], [8.527583, 47.346063], [8.527616, 47.346027], [8.528085, 47.345518], [8.528119, 47.34548], [8.528191, 47.345397], [8.528259, 47.345312], [8.528323, 47.345226], [8.528439, 47.345044], [8.528535, 47.344857], [8.52861, 47.344666], [8.528771, 47.344189], [8.528788, 47.344066], [8.528854, 47.343938], [8.528861, 47.343927], [8.528906, 47.343844], [8.528955, 47.343763], [8.529008, 47.343683], [8.529114, 47.343546], [8.529237, 47.343416], [8.529376, 47.343294], [8.52953, 47.343181], [8.529698, 47.343077], [8.529921, 47.342946], [8.529951, 47.342925], [8.53003, 47.342878], [8.530053, 47.342848], [8.530618, 47.342528], [8.530634, 47.34252], [8.53065, 47.342514], [8.530667, 47.342507], [8.530685, 47.342502], [8.530703, 47.342499], [8.530722, 47.342496], [8.530741, 47.342494], [8.53076, 47.342493], [8.530779, 47.342494], [8.530798, 47.342495], [8.530817, 47.342498], [8.530835, 47.342502], [8.530853, 47.342507], [8.53087, 47.342513], [8.530887, 47.342519], [8.530902, 47.342527], [8.530917, 47.342536], [8.53093, 47.342545]]], "type": "MultiLineString"}, "id": "4718", "properties": {}, "type": "Feature"}, {"bbox": [8.510202, 47.37007, 8.511908, 47.371028], "geometry": {"coordinates": [[[8.511908, 47.37007], [8.511054, 47.370647], [8.510202, 47.371028]]], "type": "MultiLineString"}, "id": "4719", "properties": {}, "type": "Feature"}, {"bbox": [8.521074, 47.366945, 8.522924, 47.368635], "geometry": {"coordinates": [[[8.522924, 47.366945], [8.522175, 47.367612], [8.521646, 47.368085], [8.521102, 47.36854], [8.521074, 47.368635]]], "type": "MultiLineString"}, "id": "4720", "properties": {}, "type": "Feature"}, {"bbox": [8.514424, 47.373018, 8.516992, 47.374449], "geometry": {"coordinates": [[[8.516992, 47.374449], [8.516938, 47.374423], [8.516531, 47.374197], [8.516396, 47.374121], [8.515768, 47.37377], [8.514988, 47.373334], [8.514424, 47.373018]]], "type": "MultiLineString"}, "id": "4721", "properties": {}, "type": "Feature"}, {"bbox": [8.508057, 47.417227, 8.508669, 47.417509], "geometry": {"coordinates": [[[8.508669, 47.417229], [8.508656, 47.417228], [8.508642, 47.417227], [8.508629, 47.417228], [8.508615, 47.417229], [8.508602, 47.417231], [8.508589, 47.417234], [8.508577, 47.417238], [8.508565, 47.417243], [8.508554, 47.417248], [8.508544, 47.417254], [8.508057, 47.417509]]], "type": "MultiLineString"}, "id": "4724", "properties": {}, "type": "Feature"}, {"bbox": [8.525508, 47.38041, 8.525612, 47.380414], "geometry": {"coordinates": [[[8.525508, 47.38041], [8.525512, 47.380413], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4727", "properties": {}, "type": "Feature"}, {"bbox": [8.522748, 47.396988, 8.524969, 47.397546], "geometry": {"coordinates": [[[8.522748, 47.396988], [8.522872, 47.397094], [8.523178, 47.397376], [8.52322, 47.397406], [8.523265, 47.397434], [8.523314, 47.39746], [8.523366, 47.397482], [8.52342, 47.397501], [8.523477, 47.397517], [8.523536, 47.39753], [8.523596, 47.397539], [8.523657, 47.397544], [8.523718, 47.397546], [8.523779, 47.397544], [8.52384, 47.397539], [8.5239, 47.39753], [8.524969, 47.397321]]], "type": "MultiLineString"}, "id": "4734", "properties": {}, "type": "Feature"}, {"bbox": [8.588401, 47.355935, 8.589323, 47.356436], "geometry": {"coordinates": [[[8.589323, 47.356436], [8.589307, 47.356428], [8.589292, 47.356418], [8.589278, 47.356408], [8.589265, 47.356397], [8.589254, 47.356385], [8.589244, 47.356372], [8.589236, 47.356359], [8.58923, 47.356346], [8.589134, 47.356224], [8.589038, 47.356101], [8.588941, 47.355978], [8.588936, 47.355972], [8.588931, 47.355967], [8.588924, 47.355961], [8.588917, 47.355956], [8.58891, 47.355952], [8.588901, 47.355948], [8.588893, 47.355944], [8.588884, 47.355941], [8.588874, 47.355939], [8.588864, 47.355937], [8.588855, 47.355936], [8.588844, 47.355935], [8.588834, 47.355935], [8.588824, 47.355935], [8.588814, 47.355937], [8.588805, 47.355938], [8.588795, 47.35594], [8.588664, 47.355987], [8.588532, 47.356034], [8.588401, 47.356081]]], "type": "MultiLineString"}, "id": "4745", "properties": {}, "type": "Feature"}, {"bbox": [8.522716, 47.370211, 8.52367, 47.370704], "geometry": {"coordinates": [[[8.52367, 47.370704], [8.523668, 47.370698], [8.523665, 47.370693], [8.523661, 47.370687], [8.523656, 47.370682], [8.523651, 47.370677], [8.523646, 47.370673], [8.52364, 47.370669], [8.523633, 47.370665], [8.523626, 47.370662], [8.523619, 47.370659], [8.523224, 47.370493], [8.522716, 47.370211]]], "type": "MultiLineString"}, "id": "4750", "properties": {}, "type": "Feature"}, {"bbox": [8.535374, 47.369697, 8.536084, 47.37023], "geometry": {"coordinates": [[[8.536084, 47.37023], [8.536005, 47.370169], [8.535741, 47.369971], [8.535693, 47.369939], [8.53565, 47.369901], [8.535374, 47.369697]]], "type": "MultiLineString"}, "id": "4751", "properties": {}, "type": "Feature"}, {"bbox": [8.530337, 47.368834, 8.532577, 47.37026], "geometry": {"coordinates": [[[8.532577, 47.37026], [8.531824, 47.369649], [8.531126, 47.369267], [8.530337, 47.368834]]], "type": "MultiLineString"}, "id": "4752", "properties": {}, "type": "Feature"}, {"bbox": [8.499325, 47.402347, 8.499889, 47.402907], "geometry": {"coordinates": [[[8.499325, 47.402347], [8.499376, 47.402408], [8.499423, 47.40247], [8.499466, 47.402534], [8.499636, 47.402726], [8.499673, 47.402761], [8.499743, 47.40283], [8.499769, 47.402849], [8.499797, 47.402867], [8.499827, 47.402883], [8.499859, 47.402897], [8.499889, 47.402907]]], "type": "MultiLineString"}, "id": "4760", "properties": {}, "type": "Feature"}, {"bbox": [8.5279, 47.38674, 8.53441, 47.39051], "geometry": {"coordinates": [[[8.53441, 47.38674], [8.534378, 47.386761], [8.534227, 47.386873], [8.534018, 47.387027], [8.533531, 47.387387], [8.53331, 47.387547], [8.533123, 47.387664], [8.532922, 47.38777], [8.53271, 47.387865], [8.532027, 47.388144], [8.531962, 47.388172], [8.531898, 47.388201], [8.531835, 47.38823], [8.531644, 47.388323], [8.531459, 47.388422], [8.531282, 47.388527], [8.530572, 47.388996], [8.530403, 47.389107], [8.530127, 47.38929], [8.529407, 47.389768], [8.529098, 47.389962], [8.528768, 47.39014], [8.528417, 47.390299], [8.528401, 47.390306], [8.528384, 47.390313], [8.528368, 47.39032], [8.527957, 47.390487], [8.5279, 47.39051]]], "type": "MultiLineString"}, "id": "4761", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.370226, 8.514383, 47.370351], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "4762", "properties": {}, "type": "Feature"}, {"bbox": [8.542339, 47.385136, 8.547552, 47.386131], "geometry": {"coordinates": [[[8.542339, 47.385498], [8.542491, 47.385519], [8.542945, 47.385591], [8.543486, 47.385678], [8.543651, 47.385705], [8.543811, 47.385731], [8.544212, 47.385795], [8.545211, 47.385955], [8.54562, 47.386021], [8.546324, 47.386131], [8.546473, 47.385996], [8.546839, 47.385707], [8.547369, 47.385274], [8.547552, 47.385136]]], "type": "MultiLineString"}, "id": "4766", "properties": {}, "type": "Feature"}, {"bbox": [8.565252, 47.408222, 8.566125, 47.408675], "geometry": {"coordinates": [[[8.566125, 47.408675], [8.566068, 47.408623], [8.566005, 47.408575], [8.565936, 47.40853], [8.565863, 47.408489], [8.565785, 47.408452], [8.565252, 47.408222]]], "type": "MultiLineString"}, "id": "4768", "properties": {}, "type": "Feature"}, {"bbox": [8.602702, 47.355631, 8.602959, 47.356441], "geometry": {"coordinates": [[[8.602702, 47.355631], [8.602793, 47.3559], [8.602879, 47.35617], [8.602959, 47.356441]]], "type": "MultiLineString"}, "id": "4774", "properties": {}, "type": "Feature"}, {"bbox": [8.529276, 47.349632, 8.529695, 47.350484], "geometry": {"coordinates": [[[8.529276, 47.350484], [8.529501, 47.349701], [8.529509, 47.349691], [8.529519, 47.349682], [8.52953, 47.349674], [8.529541, 47.349666], [8.529554, 47.349658], [8.529568, 47.349652], [8.529582, 47.349646], [8.529597, 47.349642], [8.529613, 47.349638], [8.529629, 47.349635], [8.529645, 47.349633], [8.529662, 47.349632], [8.529678, 47.349632], [8.529695, 47.349633]]], "type": "MultiLineString"}, "id": "4776", "properties": {}, "type": "Feature"}, {"bbox": [8.580016, 47.3552, 8.581382, 47.355647], "geometry": {"coordinates": [[[8.580016, 47.355647], [8.580175, 47.355501], [8.580355, 47.355366], [8.580553, 47.355244], [8.580595, 47.35523], [8.580638, 47.355218], [8.580683, 47.35521], [8.580728, 47.355204], [8.580775, 47.355201], [8.580797, 47.3552], [8.58082, 47.3552], [8.580843, 47.355201], [8.580865, 47.355204], [8.580888, 47.355208], [8.580909, 47.355213], [8.58093, 47.355219], [8.58095, 47.355227], [8.580969, 47.355235], [8.581382, 47.355431]]], "type": "MultiLineString"}, "id": "4782", "properties": {}, "type": "Feature"}, {"bbox": [8.589323, 47.356192, 8.590347, 47.356436], "geometry": {"coordinates": [[[8.589323, 47.356436], [8.589357, 47.356405], [8.589396, 47.356375], [8.589438, 47.356348], [8.589483, 47.356324], [8.589532, 47.356302], [8.589582, 47.356283], [8.589636, 47.356267], [8.58969, 47.356255], [8.589747, 47.356246], [8.589804, 47.35624], [8.590235, 47.356202], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "4786", "properties": {}, "type": "Feature"}, {"bbox": [8.501963, 47.370573, 8.502287, 47.371387], "geometry": {"coordinates": [[[8.502287, 47.371387], [8.502229, 47.371256], [8.502197, 47.371175], [8.501963, 47.370573]]], "type": "MultiLineString"}, "id": "4802", "properties": {}, "type": "Feature"}, {"bbox": [8.544457, 47.393535, 8.544955, 47.39392], "geometry": {"coordinates": [[[8.544457, 47.393535], [8.544493, 47.39359], [8.544525, 47.393645], [8.544553, 47.393702], [8.544568, 47.393729], [8.544587, 47.393754], [8.544609, 47.393778], [8.544633, 47.393801], [8.544661, 47.393823], [8.544691, 47.393842], [8.544724, 47.39386], [8.544759, 47.393875], [8.544795, 47.393889], [8.544834, 47.3939], [8.544873, 47.393909], [8.544914, 47.393916], [8.544955, 47.39392]]], "type": "MultiLineString"}, "id": "4805", "properties": {}, "type": "Feature"}, {"bbox": [8.520033, 47.385258, 8.526385, 47.388192], "geometry": {"coordinates": [[[8.526385, 47.385258], [8.52489, 47.385935], [8.523099, 47.386777], [8.522048, 47.387265], [8.521671, 47.387432], [8.520398, 47.388023], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "4816", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.409585, 8.544095, 47.409694], "geometry": {"coordinates": [[[8.544095, 47.409585], [8.543839, 47.409694]]], "type": "MultiLineString"}, "id": "4818", "properties": {}, "type": "Feature"}, {"bbox": [8.532946, 47.36485, 8.538016, 47.366469], "geometry": {"coordinates": [[[8.538016, 47.366469], [8.536871, 47.366051], [8.535991, 47.365731], [8.53522, 47.365467], [8.534165, 47.365108], [8.532946, 47.36485]]], "type": "MultiLineString"}, "id": "4819", "properties": {}, "type": "Feature"}, {"bbox": [8.527285, 47.371237, 8.52756, 47.37139], "geometry": {"coordinates": [[[8.52756, 47.37139], [8.527542, 47.37139], [8.527525, 47.371388], [8.527507, 47.371385], [8.52749, 47.371381], [8.527474, 47.371376], [8.527459, 47.37137], [8.527444, 47.371364], [8.52743, 47.371356], [8.527418, 47.371348], [8.527285, 47.371237]]], "type": "MultiLineString"}, "id": "4821", "properties": {}, "type": "Feature"}, {"bbox": [8.529035, 47.409442, 8.529807, 47.410748], "geometry": {"coordinates": [[[8.529035, 47.409442], [8.529303, 47.409774], [8.529486, 47.410035], [8.529633, 47.410306], [8.529745, 47.410585], [8.529807, 47.410748]]], "type": "MultiLineString"}, "id": "4822", "properties": {}, "type": "Feature"}, {"bbox": [8.542571, 47.411777, 8.544366, 47.412516], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.54424, 47.412451], [8.544302, 47.412377], [8.544366, 47.412302], [8.544298, 47.412278], [8.544235, 47.412256], [8.54355, 47.412016], [8.54346, 47.411984], [8.543392, 47.411958], [8.543305, 47.411925], [8.54324, 47.412002], [8.543196, 47.411985], [8.542655, 47.411777], [8.542577, 47.411871], [8.542571, 47.412012], [8.542807, 47.412102], [8.542667, 47.412277], [8.543305, 47.412516]]], "type": "MultiLineString"}, "id": "4825", "properties": {}, "type": "Feature"}, {"bbox": [8.529232, 47.380479, 8.534062, 47.381908], "geometry": {"coordinates": [[[8.534062, 47.380479], [8.533261, 47.380695], [8.532705, 47.380854], [8.532217, 47.380987], [8.531936, 47.381063], [8.531192, 47.381264], [8.531145, 47.381277], [8.531099, 47.381293], [8.531056, 47.381312], [8.531016, 47.381334], [8.53093, 47.381394], [8.530878, 47.381432], [8.530822, 47.381466], [8.530762, 47.381498], [8.530735, 47.381508], [8.530707, 47.381518], [8.530679, 47.381527], [8.529939, 47.381733], [8.529456, 47.381862], [8.529423, 47.38187], [8.529391, 47.381876], [8.529358, 47.381882], [8.529316, 47.38189], [8.529274, 47.381899], [8.529232, 47.381908]]], "type": "MultiLineString"}, "id": "4826", "properties": {}, "type": "Feature"}, {"bbox": [8.595562, 47.357129, 8.596021, 47.358139], "geometry": {"coordinates": [[[8.595562, 47.357129], [8.595583, 47.357214], [8.595616, 47.357297], [8.595659, 47.357378], [8.595713, 47.357456], [8.595777, 47.35753], [8.595851, 47.3576], [8.595934, 47.357665], [8.595952, 47.357675], [8.595969, 47.357686], [8.595984, 47.357697], [8.595998, 47.35771], [8.596011, 47.357723], [8.596016, 47.357736], [8.596019, 47.357749], [8.596021, 47.357763], [8.596021, 47.357776], [8.59602, 47.35779], [8.596017, 47.357803], [8.596012, 47.357817], [8.596001, 47.35785], [8.595988, 47.357907], [8.595982, 47.357963], [8.595982, 47.35802], [8.595989, 47.358077], [8.596003, 47.358133], [8.596003, 47.358139]]], "type": "MultiLineString"}, "id": "4832", "properties": {}, "type": "Feature"}, {"bbox": [8.568398, 47.351421, 8.574772, 47.354901], "geometry": {"coordinates": [[[8.568398, 47.351421], [8.569503, 47.351978], [8.569552, 47.352006], [8.569602, 47.352034], [8.569652, 47.352061], [8.56969, 47.352076], [8.56973, 47.352088], [8.569771, 47.352099], [8.569814, 47.352107], [8.571695, 47.3523], [8.571789, 47.352317], [8.57188, 47.352339], [8.571969, 47.352366], [8.572053, 47.352398], [8.572134, 47.352435], [8.57221, 47.352476], [8.572281, 47.352521], [8.572346, 47.352569], [8.572375, 47.352591], [8.572472, 47.352662], [8.572604, 47.352759], [8.572666, 47.352804], [8.572726, 47.352852], [8.572782, 47.352901], [8.572823, 47.352939], [8.572863, 47.352978], [8.572901, 47.353017], [8.573004, 47.35314], [8.573091, 47.353269], [8.573161, 47.353403], [8.573214, 47.35354], [8.573286, 47.35379], [8.573307, 47.353865], [8.573337, 47.353939], [8.573375, 47.354012], [8.573423, 47.354081], [8.573479, 47.354148], [8.573543, 47.354212], [8.573572, 47.354232], [8.573601, 47.354251], [8.573631, 47.35427], [8.573692, 47.354307], [8.573756, 47.354342], [8.573822, 47.354375], [8.57464, 47.354828], [8.574772, 47.354901]]], "type": "MultiLineString"}, "id": "4834", "properties": {}, "type": "Feature"}, {"bbox": [8.543367, 47.409243, 8.543839, 47.409694], "geometry": {"coordinates": [[[8.543367, 47.409243], [8.5438, 47.409581], [8.543839, 47.409694]]], "type": "MultiLineString"}, "id": "4838", "properties": {}, "type": "Feature"}, {"bbox": [8.512988, 47.367252, 8.51513, 47.369193], "geometry": {"coordinates": [[[8.51513, 47.367252], [8.515127, 47.367258], [8.514357, 47.367973], [8.513823, 47.368469], [8.513544, 47.368728], [8.512988, 47.369193]]], "type": "MultiLineString"}, "id": "4839", "properties": {}, "type": "Feature"}, {"bbox": [8.581145, 47.401716, 8.582208, 47.405884], "geometry": {"coordinates": [[[8.581162, 47.401716], [8.581532, 47.402301], [8.581773, 47.402682], [8.581855, 47.402809], [8.582101, 47.403199], [8.582141, 47.403276], [8.582172, 47.403354], [8.582194, 47.403434], [8.582206, 47.403515], [8.582208, 47.403597], [8.582199, 47.403688], [8.582177, 47.403778], [8.582144, 47.403866], [8.581776, 47.40461], [8.581729, 47.404705], [8.581703, 47.404755], [8.581145, 47.405884]]], "type": "MultiLineString"}, "id": "4850", "properties": {}, "type": "Feature"}, {"bbox": [8.567325, 47.406605, 8.579387, 47.409331], "geometry": {"coordinates": [[[8.567325, 47.406605], [8.567509, 47.406736], [8.56773, 47.406905], [8.567944, 47.407079], [8.568149, 47.407257], [8.569465, 47.408394], [8.569685, 47.408584], [8.569787, 47.408669], [8.569897, 47.408749], [8.570013, 47.408824], [8.570055, 47.408849], [8.570098, 47.408874], [8.570141, 47.408898], [8.570327, 47.408989], [8.570524, 47.40907], [8.57073, 47.409138], [8.570945, 47.409195], [8.571115, 47.409229], [8.571289, 47.409256], [8.571465, 47.409275], [8.571815, 47.409304], [8.571897, 47.409311], [8.572029, 47.409321], [8.572161, 47.409328], [8.572293, 47.409331], [8.572541, 47.409325], [8.572787, 47.409305], [8.573029, 47.409272], [8.573267, 47.409224], [8.573766, 47.409113], [8.574811, 47.408873], [8.57496, 47.408836], [8.57508, 47.408806], [8.57566, 47.408655], [8.576456, 47.408441], [8.576913, 47.408318], [8.577842, 47.408068], [8.578127, 47.407979], [8.578404, 47.407879], [8.578671, 47.407768], [8.579387, 47.407438]]], "type": "MultiLineString"}, "id": "4851", "properties": {}, "type": "Feature"}, {"bbox": [8.506931, 47.380795, 8.508202, 47.381345], "geometry": {"coordinates": [[[8.508202, 47.380795], [8.507781, 47.380981], [8.507357, 47.381165], [8.506931, 47.381345]]], "type": "MultiLineString"}, "id": "4852", "properties": {}, "type": "Feature"}, {"bbox": [8.504082, 47.42412, 8.505988, 47.426342], "geometry": {"coordinates": [[[8.504082, 47.42412], [8.504104, 47.424154], [8.504131, 47.424186], [8.504162, 47.424216], [8.504196, 47.424245], [8.504234, 47.424271], [8.504783, 47.42453], [8.505337, 47.424783], [8.505896, 47.425031], [8.505911, 47.425038], [8.505925, 47.425046], [8.505938, 47.425056], [8.505949, 47.425065], [8.505959, 47.425076], [8.505968, 47.425087], [8.505975, 47.425099], [8.505981, 47.425111], [8.505985, 47.425123], [8.505987, 47.425135], [8.505988, 47.425148], [8.505987, 47.425161], [8.505985, 47.425173], [8.505981, 47.425185], [8.505937, 47.42529], [8.505906, 47.425397], [8.505889, 47.425505], [8.505884, 47.425613], [8.505892, 47.425722], [8.505893, 47.425778], [8.505858, 47.425841], [8.505571, 47.426252], [8.50551, 47.426342]]], "type": "MultiLineString"}, "id": "4855", "properties": {}, "type": "Feature"}, {"bbox": [8.555743, 47.354201, 8.557131, 47.354984], "geometry": {"coordinates": [[[8.555743, 47.354201], [8.555842, 47.354252], [8.556068, 47.35438], [8.556504, 47.354626], [8.557131, 47.354984]]], "type": "MultiLineString"}, "id": "4861", "properties": {}, "type": "Feature"}, {"bbox": [8.538043, 47.410791, 8.540288, 47.411614], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.540288, 47.411499], [8.539347, 47.41116], [8.539232, 47.411118], [8.538644, 47.410896], [8.538157, 47.410791], [8.538043, 47.410822]]], "type": "MultiLineString"}, "id": "4864", "properties": {}, "type": "Feature"}, {"bbox": [8.491048, 47.387138, 8.494172, 47.388258], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.493984, 47.387193], [8.493658, 47.3873], [8.492822, 47.387603], [8.491547, 47.388064], [8.491211, 47.388195], [8.491048, 47.388258]]], "type": "MultiLineString"}, "id": "4866", "properties": {}, "type": "Feature"}, {"bbox": [8.550828, 47.361931, 8.55331, 47.362521], "geometry": {"coordinates": [[[8.550828, 47.361931], [8.55094, 47.361981], [8.551106, 47.362044], [8.551476, 47.362125], [8.552122, 47.362259], [8.553178, 47.362491], [8.55331, 47.362521]]], "type": "MultiLineString"}, "id": "4874", "properties": {}, "type": "Feature"}, {"bbox": [8.551604, 47.360736, 8.553416, 47.361218], "geometry": {"coordinates": [[[8.551604, 47.361038], [8.551914, 47.361114], [8.552232, 47.36117], [8.552557, 47.361206], [8.552703, 47.361215], [8.552849, 47.361218], [8.552995, 47.361216], [8.553126, 47.361207], [8.553137, 47.361206], [8.553148, 47.361204], [8.553158, 47.361202], [8.553168, 47.361199], [8.553178, 47.361195], [8.553187, 47.361191], [8.553196, 47.361186], [8.553204, 47.361181], [8.553211, 47.361176], [8.553218, 47.36117], [8.553224, 47.361164], [8.553229, 47.361157], [8.553233, 47.36115], [8.553236, 47.361143], [8.553287, 47.360954], [8.553376, 47.36079], [8.553416, 47.360736]]], "type": "MultiLineString"}, "id": "4887", "properties": {}, "type": "Feature"}, {"bbox": [8.547767, 47.416792, 8.549156, 47.417396], "geometry": {"coordinates": [[[8.547767, 47.417396], [8.547874, 47.417353], [8.547976, 47.417305], [8.548072, 47.417251], [8.54815, 47.417203], [8.548233, 47.417159], [8.548321, 47.41712], [8.549044, 47.416838], [8.549156, 47.416792]]], "type": "MultiLineString"}, "id": "4890", "properties": {}, "type": "Feature"}, {"bbox": [8.524403, 47.378473, 8.527014, 47.379863], "geometry": {"coordinates": [[[8.527014, 47.378473], [8.526908, 47.378529], [8.526688, 47.378646], [8.525892, 47.379071], [8.525763, 47.37915], [8.525763, 47.37915], [8.525423, 47.379316], [8.525223, 47.379423], [8.524721, 47.379693], [8.524403, 47.379863]]], "type": "MultiLineString"}, "id": "4896", "properties": {}, "type": "Feature"}, {"bbox": [8.559228, 47.351736, 8.559807, 47.351944], "geometry": {"coordinates": [[[8.559228, 47.351736], [8.559343, 47.35178], [8.559807, 47.351944]]], "type": "MultiLineString"}, "id": "4899", "properties": {}, "type": "Feature"}, {"bbox": [8.555331, 47.362622, 8.557379, 47.363384], "geometry": {"coordinates": [[[8.555331, 47.362622], [8.556286, 47.362976], [8.557379, 47.363384]]], "type": "MultiLineString"}, "id": "4900", "properties": {}, "type": "Feature"}, {"bbox": [8.572278, 47.404717, 8.573055, 47.409729], "geometry": {"coordinates": [[[8.572711, 47.404717], [8.572978, 47.405573], [8.572999, 47.40565], [8.573019, 47.405728], [8.573037, 47.405806], [8.573051, 47.405895], [8.573055, 47.405984], [8.573051, 47.406073], [8.573009, 47.406265], [8.572941, 47.406538], [8.572924, 47.406602], [8.572734, 47.40731], [8.572342, 47.408888], [8.572293, 47.409331], [8.572278, 47.409468], [8.572284, 47.409729]]], "type": "MultiLineString"}, "id": "4902", "properties": {}, "type": "Feature"}, {"bbox": [8.566528, 47.362353, 8.567092, 47.363955], "geometry": {"coordinates": [[[8.566821, 47.363955], [8.566604, 47.363774], [8.566585, 47.363753], [8.56657, 47.36373], [8.566557, 47.363706], [8.566548, 47.363682], [8.566542, 47.363657], [8.566539, 47.363632], [8.566528, 47.36351], [8.56653, 47.363388], [8.566545, 47.363266], [8.566554, 47.363222], [8.566565, 47.363177], [8.566577, 47.363132], [8.566638, 47.362965], [8.566721, 47.362802], [8.566825, 47.362645], [8.566949, 47.362495], [8.567092, 47.362353]]], "type": "MultiLineString"}, "id": "4904", "properties": {}, "type": "Feature"}, {"bbox": [8.504074, 47.368268, 8.505525, 47.368452], "geometry": {"coordinates": [[[8.505525, 47.368452], [8.505253, 47.368419], [8.504265, 47.368301], [8.504074, 47.368268]]], "type": "MultiLineString"}, "id": "4915", "properties": {}, "type": "Feature"}, {"bbox": [8.515593, 47.390241, 8.516831, 47.39129], "geometry": {"coordinates": [[[8.516831, 47.390241], [8.515593, 47.390652], [8.515658, 47.390765], [8.515742, 47.3909], [8.515764, 47.390929], [8.515782, 47.39096], [8.515795, 47.390992], [8.515804, 47.391024], [8.515808, 47.391057], [8.515808, 47.39129]]], "type": "MultiLineString"}, "id": "4924", "properties": {}, "type": "Feature"}, {"bbox": [8.493749, 47.403656, 8.494636, 47.404808], "geometry": {"coordinates": [[[8.494636, 47.403656], [8.494474, 47.403667], [8.494397, 47.40367], [8.494321, 47.403677], [8.494246, 47.403689], [8.494172, 47.403705], [8.494101, 47.403725], [8.494033, 47.40375], [8.493968, 47.403778], [8.493906, 47.403809], [8.493875, 47.403832], [8.493846, 47.403857], [8.49382, 47.403883], [8.493797, 47.403911], [8.493778, 47.40394], [8.493763, 47.403969], [8.493751, 47.404], [8.493749, 47.404071], [8.493755, 47.404142], [8.493767, 47.404212], [8.493771, 47.404229], [8.493777, 47.404245], [8.493786, 47.404262], [8.493796, 47.404277], [8.493809, 47.404292], [8.493823, 47.404306], [8.493862, 47.404362], [8.493911, 47.40445], [8.493968, 47.404572], [8.493982, 47.404615], [8.493989, 47.404655], [8.494047, 47.404808]]], "type": "MultiLineString"}, "id": "4926", "properties": {}, "type": "Feature"}, {"bbox": [8.540465, 47.419563, 8.546939, 47.42152], "geometry": {"coordinates": [[[8.546939, 47.419722], [8.546715, 47.419918], [8.546696, 47.419929], [8.546676, 47.419939], [8.546655, 47.419947], [8.546632, 47.419954], [8.546609, 47.41996], [8.546586, 47.419963], [8.546563, 47.419966], [8.546539, 47.419967], [8.546515, 47.419967], [8.546491, 47.419965], [8.546468, 47.419962], [8.545871, 47.419886], [8.544336, 47.419691], [8.544115, 47.419667], [8.543894, 47.419647], [8.543671, 47.419631], [8.543589, 47.419628], [8.543507, 47.419627], [8.543425, 47.419626], [8.542256, 47.419577], [8.542092, 47.419565], [8.541927, 47.419563], [8.541763, 47.419571], [8.5416, 47.41959], [8.541441, 47.41962], [8.541318, 47.419653], [8.541201, 47.419694], [8.541089, 47.419742], [8.540984, 47.419796], [8.540887, 47.419857], [8.540798, 47.419923], [8.540718, 47.419994], [8.540648, 47.42007], [8.540589, 47.42015], [8.54054, 47.420234], [8.540503, 47.42032], [8.540477, 47.420408], [8.540474, 47.420428], [8.540472, 47.420448], [8.54047, 47.420468], [8.540465, 47.420549], [8.540465, 47.420631], [8.540471, 47.420712], [8.540487, 47.420904], [8.540529, 47.4214], [8.540522, 47.42144], [8.540515, 47.42148], [8.540506, 47.42152]]], "type": "MultiLineString"}, "id": "4927", "properties": {}, "type": "Feature"}, {"bbox": [8.519272, 47.371227, 8.519909, 47.371442], "geometry": {"coordinates": [[[8.519909, 47.371442], [8.519907, 47.371441], [8.519808, 47.371412], [8.519272, 47.371227]]], "type": "MultiLineString"}, "id": "4928", "properties": {}, "type": "Feature"}, {"bbox": [8.5439, 47.419049, 8.546825, 47.419286], "geometry": {"coordinates": [[[8.546825, 47.419198], [8.546119, 47.419104], [8.54582, 47.419068], [8.545765, 47.419069], [8.545759, 47.419068], [8.545604, 47.419096], [8.54551, 47.419112], [8.544541, 47.419062], [8.544277, 47.419049], [8.544277, 47.419049], [8.544218, 47.41905], [8.544158, 47.419053], [8.544099, 47.419057], [8.544075, 47.419072], [8.544053, 47.419089], [8.544033, 47.419107], [8.544015, 47.419126], [8.544, 47.419146], [8.543987, 47.419167], [8.5439, 47.419286]]], "type": "MultiLineString"}, "id": "4931", "properties": {}, "type": "Feature"}, {"bbox": [8.559788, 47.36749, 8.560839, 47.368004], "geometry": {"coordinates": [[[8.559788, 47.36749], [8.560409, 47.367821], [8.560554, 47.367879], [8.560743, 47.367959], [8.560839, 47.368004]]], "type": "MultiLineString"}, "id": "4932", "properties": {}, "type": "Feature"}, {"bbox": [8.568398, 47.348502, 8.570929, 47.351421], "geometry": {"coordinates": [[[8.568398, 47.351421], [8.568504, 47.35138], [8.568605, 47.351333], [8.568699, 47.351279], [8.568785, 47.351221], [8.568864, 47.351157], [8.569194, 47.350784], [8.569217, 47.350758], [8.569884, 47.349987], [8.570115, 47.349698], [8.570335, 47.349405], [8.570545, 47.349109], [8.570929, 47.348502]]], "type": "MultiLineString"}, "id": "4933", "properties": {}, "type": "Feature"}, {"bbox": [8.564137, 47.351767, 8.56651, 47.353523], "geometry": {"coordinates": [[[8.564137, 47.353523], [8.564825, 47.352898], [8.564882, 47.352854], [8.564942, 47.352811], [8.565005, 47.352771], [8.565062, 47.352738], [8.565121, 47.352707], [8.565182, 47.352677], [8.565432, 47.352563], [8.565618, 47.352469], [8.565792, 47.352366], [8.565953, 47.352254], [8.5661, 47.352133], [8.56651, 47.351767]]], "type": "MultiLineString"}, "id": "4934", "properties": {}, "type": "Feature"}, {"bbox": [8.595477, 47.354906, 8.60116, 47.358432], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595516, 47.358399], [8.595559, 47.358369], [8.595604, 47.35834], [8.595983, 47.358145], [8.596003, 47.358133], [8.596086, 47.358084], [8.596189, 47.35802], [8.596286, 47.357952], [8.596377, 47.35788], [8.596474, 47.357804], [8.59658, 47.357734], [8.596693, 47.35767], [8.596814, 47.357613], [8.596952, 47.357561], [8.597368, 47.35744], [8.597464, 47.357408], [8.597556, 47.357372], [8.597644, 47.35733], [8.597726, 47.357284], [8.597781, 47.35725], [8.597834, 47.357216], [8.597885, 47.35718], [8.597963, 47.357118], [8.598036, 47.357054], [8.598103, 47.356986], [8.598319, 47.356728], [8.598428, 47.356605], [8.598551, 47.356489], [8.598687, 47.35638], [8.598836, 47.356279], [8.598984, 47.356191], [8.6001, 47.355576], [8.600228, 47.3555], [8.600457, 47.355365], [8.600845, 47.355126], [8.600957, 47.355058], [8.601063, 47.354984], [8.60116, 47.354906]]], "type": "MultiLineString"}, "id": "4936", "properties": {}, "type": "Feature"}, {"bbox": [8.528816, 47.409232, 8.529035, 47.409442], "geometry": {"coordinates": [[[8.528816, 47.409232], [8.528963, 47.409352], [8.529035, 47.409442]]], "type": "MultiLineString"}, "id": "4946", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.385844, 8.494172, 47.387138], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.493674, 47.38651], [8.493202, 47.385915], [8.492955, 47.385844]]], "type": "MultiLineString"}, "id": "4951", "properties": {}, "type": "Feature"}, {"bbox": [8.500719, 47.382734, 8.50503, 47.386073], "geometry": {"coordinates": [[[8.50503, 47.386073], [8.504581, 47.385724], [8.50305, 47.384536], [8.502916, 47.384444], [8.501961, 47.383693], [8.500735, 47.38274], [8.500719, 47.382734]]], "type": "MultiLineString"}, "id": "4952", "properties": {}, "type": "Feature"}, {"bbox": [8.495772, 47.387378, 8.496513, 47.388588], "geometry": {"coordinates": [[[8.496513, 47.388588], [8.496241, 47.388136], [8.496149, 47.387888], [8.495881, 47.387448], [8.495867, 47.387433], [8.495851, 47.38742], [8.495834, 47.387408], [8.495814, 47.387396], [8.495794, 47.387386], [8.495772, 47.387378]]], "type": "MultiLineString"}, "id": "4953", "properties": {}, "type": "Feature"}, {"bbox": [8.525612, 47.379414, 8.52757, 47.380414], "geometry": {"coordinates": [[[8.52757, 47.379414], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4954", "properties": {}, "type": "Feature"}, {"bbox": [8.496491, 47.402347, 8.499325, 47.403887], "geometry": {"coordinates": [[[8.499325, 47.402347], [8.499315, 47.402353], [8.499304, 47.402357], [8.499292, 47.402362], [8.498761, 47.402631], [8.498667, 47.402683], [8.498577, 47.402736], [8.498489, 47.402792], [8.498461, 47.40281], [8.498434, 47.402829], [8.498406, 47.402848], [8.498365, 47.402889], [8.498321, 47.402928], [8.498275, 47.402967], [8.498119, 47.40308], [8.497951, 47.403185], [8.497773, 47.403281], [8.497095, 47.403609], [8.496681, 47.403795], [8.49662, 47.403827], [8.496556, 47.403858], [8.496491, 47.403887]]], "type": "MultiLineString"}, "id": "4959", "properties": {}, "type": "Feature"}, {"bbox": [8.53517, 47.419968, 8.53838, 47.421562], "geometry": {"coordinates": [[[8.53838, 47.421562], [8.538252, 47.421519], [8.538106, 47.421478], [8.537955, 47.421445], [8.537813, 47.421398], [8.537673, 47.421347], [8.537537, 47.421291], [8.537388, 47.421227], [8.537247, 47.421155], [8.537115, 47.421076], [8.537058, 47.421038], [8.536189, 47.420469], [8.536006, 47.420355], [8.535818, 47.420246], [8.535623, 47.420141], [8.535423, 47.420036], [8.535395, 47.420022], [8.535364, 47.42001], [8.535333, 47.419999], [8.5353, 47.419991], [8.535256, 47.419983], [8.535213, 47.419975], [8.53517, 47.419968]]], "type": "MultiLineString"}, "id": "4960", "properties": {}, "type": "Feature"}, {"bbox": [8.53043, 47.388242, 8.536288, 47.393214], "geometry": {"coordinates": [[[8.536288, 47.388242], [8.535797, 47.388641], [8.535741, 47.388688], [8.535524, 47.388869], [8.534997, 47.389308], [8.534825, 47.389452], [8.53444, 47.389765], [8.533113, 47.390845], [8.531922, 47.391815], [8.531806, 47.391909], [8.530495, 47.392978], [8.530481, 47.392987], [8.53047, 47.392998], [8.530459, 47.393009], [8.53045, 47.39302], [8.530443, 47.393032], [8.530437, 47.393045], [8.530433, 47.393058], [8.530431, 47.393071], [8.53043, 47.393084], [8.530431, 47.393097], [8.530434, 47.39311], [8.530439, 47.393123], [8.530457, 47.393155], [8.530489, 47.393214]]], "type": "MultiLineString"}, "id": "4961", "properties": {}, "type": "Feature"}, {"bbox": [8.513626, 47.416683, 8.514371, 47.417006], "geometry": {"coordinates": [[[8.513626, 47.416683], [8.513627, 47.416684], [8.513663, 47.416716], [8.513704, 47.416746], [8.513747, 47.416773], [8.513795, 47.416797], [8.513845, 47.416819], [8.513898, 47.416837], [8.514371, 47.417006]]], "type": "MultiLineString"}, "id": "4962", "properties": {}, "type": "Feature"}, {"bbox": [8.518133, 47.368668, 8.518799, 47.369701], "geometry": {"coordinates": [[[8.518799, 47.369701], [8.518776, 47.3697], [8.518753, 47.369699], [8.51873, 47.369696], [8.518707, 47.369692], [8.518686, 47.369686], [8.518664, 47.369679], [8.518644, 47.369671], [8.518625, 47.369662], [8.518608, 47.369652], [8.518591, 47.369641], [8.518188, 47.369314], [8.518175, 47.369301], [8.518164, 47.369288], [8.518154, 47.369274], [8.518146, 47.36926], [8.51814, 47.369245], [8.518135, 47.36923], [8.518133, 47.369214], [8.518133, 47.369199], [8.518734, 47.368668]]], "type": "MultiLineString"}, "id": "4966", "properties": {}, "type": "Feature"}, {"bbox": [8.524749, 47.370432, 8.526034, 47.371836], "geometry": {"coordinates": [[[8.525982, 47.371836], [8.525996, 47.37182], [8.526008, 47.371803], [8.526017, 47.371786], [8.526025, 47.371768], [8.52603, 47.371749], [8.526033, 47.371731], [8.526034, 47.371712], [8.526033, 47.371693], [8.526029, 47.371675], [8.526022, 47.371657], [8.526014, 47.371639], [8.525639, 47.371288], [8.524943, 47.370616], [8.524749, 47.370432]]], "type": "MultiLineString"}, "id": "4967", "properties": {}, "type": "Feature"}, {"bbox": [8.60116, 47.353461, 8.602074, 47.354906], "geometry": {"coordinates": [[[8.60116, 47.354906], [8.601188, 47.354882], [8.601213, 47.354858], [8.601235, 47.354832], [8.601254, 47.354805], [8.601269, 47.354777], [8.601281, 47.354749], [8.601299, 47.354712], [8.601312, 47.354674], [8.60132, 47.354635], [8.601324, 47.354597], [8.601322, 47.354558], [8.601224, 47.354039], [8.601221, 47.354027], [8.60122, 47.354016], [8.601221, 47.354004], [8.601223, 47.353993], [8.601226, 47.353981], [8.601231, 47.35397], [8.601237, 47.353959], [8.601245, 47.353949], [8.601254, 47.353939], [8.601264, 47.35393], [8.601275, 47.353921], [8.601287, 47.353913], [8.601301, 47.353906], [8.601315, 47.3539], [8.60133, 47.353895], [8.601345, 47.35389], [8.601454, 47.353859], [8.601558, 47.353821], [8.601658, 47.353778], [8.601752, 47.35373], [8.60184, 47.353677], [8.601898, 47.353639], [8.60195, 47.353599], [8.601997, 47.353555], [8.602039, 47.353509], [8.602074, 47.353461]]], "type": "MultiLineString"}, "id": "4968", "properties": {}, "type": "Feature"}, {"bbox": [8.513371, 47.392766, 8.523047, 47.394793], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.522889, 47.392776], [8.522732, 47.392793], [8.522577, 47.392819], [8.521644, 47.393091], [8.520789, 47.393356], [8.519667, 47.393683], [8.51903, 47.393869], [8.518335, 47.394071], [8.518251, 47.394095], [8.518167, 47.394117], [8.518081, 47.394137], [8.517925, 47.39417], [8.517767, 47.394198], [8.517607, 47.39422], [8.514946, 47.394496], [8.51487, 47.394503], [8.514645, 47.394526], [8.514424, 47.394562], [8.514209, 47.394613], [8.513931, 47.394676], [8.513652, 47.394737], [8.513371, 47.394793]]], "type": "MultiLineString"}, "id": "4971", "properties": {}, "type": "Feature"}, {"bbox": [8.536085, 47.369261, 8.536477, 47.369475], "geometry": {"coordinates": [[[8.536477, 47.369475], [8.536085, 47.369261]]], "type": "MultiLineString"}, "id": "4977", "properties": {}, "type": "Feature"}, {"bbox": [8.531201, 47.333733, 8.532323, 47.335082], "geometry": {"coordinates": [[[8.531201, 47.335082], [8.531272, 47.334972], [8.53133, 47.334859], [8.531374, 47.334743], [8.531404, 47.334624], [8.531427, 47.334444], [8.531432, 47.334263], [8.53142, 47.334082], [8.531416, 47.334057], [8.531414, 47.334033], [8.531416, 47.334008], [8.531421, 47.333984], [8.531429, 47.33396], [8.531441, 47.333937], [8.531455, 47.333915], [8.531472, 47.333893], [8.531492, 47.333873], [8.531515, 47.333854], [8.53154, 47.333836], [8.531567, 47.33382], [8.531596, 47.333805], [8.531627, 47.333793], [8.531659, 47.333782], [8.531693, 47.333774], [8.531728, 47.333767], [8.531763, 47.333763], [8.532323, 47.333733]]], "type": "MultiLineString"}, "id": "4980", "properties": {}, "type": "Feature"}, {"bbox": [8.485674, 47.367905, 8.493052, 47.371609], "geometry": {"coordinates": [[[8.493052, 47.368708], [8.492746, 47.368456], [8.492656, 47.368399], [8.492606, 47.368375], [8.492559, 47.368348], [8.492515, 47.368319], [8.492475, 47.368287], [8.492439, 47.368253], [8.492407, 47.368218], [8.492379, 47.36818], [8.492338, 47.368131], [8.49229, 47.368085], [8.492236, 47.368041], [8.492176, 47.368001], [8.492112, 47.367965], [8.492043, 47.367933], [8.49197, 47.367905], [8.490227, 47.368583], [8.48973, 47.368841], [8.489444, 47.369049], [8.488378, 47.369919], [8.487203, 47.370873], [8.487079, 47.370921], [8.486852, 47.371002], [8.486649, 47.371114], [8.485832, 47.371554], [8.485674, 47.371609]]], "type": "MultiLineString"}, "id": "4981", "properties": {}, "type": "Feature"}, {"bbox": [8.536402, 47.40156, 8.537293, 47.403021], "geometry": {"coordinates": [[[8.536402, 47.40156], [8.536578, 47.401624], [8.536678, 47.401663], [8.536773, 47.401708], [8.536862, 47.401758], [8.536944, 47.401814], [8.537019, 47.401874], [8.537086, 47.401939], [8.537144, 47.402007], [8.537193, 47.402078], [8.537233, 47.402152], [8.537263, 47.402228], [8.537283, 47.402305], [8.537293, 47.402384], [8.537293, 47.402463], [8.537283, 47.402541], [8.537263, 47.402619], [8.537144, 47.403021]]], "type": "MultiLineString"}, "id": "4985", "properties": {}, "type": "Feature"}, {"bbox": [8.528896, 47.346438, 8.531139, 47.355227], "geometry": {"coordinates": [[[8.531139, 47.355227], [8.531119, 47.355066], [8.531092, 47.354867], [8.531079, 47.354774], [8.531061, 47.354682], [8.531039, 47.35459], [8.530848, 47.353887], [8.530621, 47.353099], [8.530619, 47.353034], [8.530396, 47.352241], [8.530367, 47.352153], [8.530342, 47.352064], [8.53032, 47.351975], [8.530318, 47.351966], [8.530316, 47.351956], [8.530313, 47.351947], [8.530311, 47.351796], [8.53031, 47.35171], [8.530272, 47.351033], [8.530267, 47.350838], [8.530263, 47.350767], [8.530244, 47.350646], [8.53021, 47.350527], [8.530161, 47.35041], [8.530098, 47.350297], [8.530071, 47.350253], [8.529695, 47.349633], [8.529456, 47.349178], [8.529271, 47.34873], [8.529258, 47.348689], [8.529246, 47.348647], [8.529236, 47.348606], [8.529226, 47.348547], [8.529219, 47.348488], [8.529216, 47.348428], [8.529215, 47.348355], [8.529219, 47.348281], [8.529228, 47.348207], [8.52931, 47.347813], [8.529316, 47.347686], [8.529305, 47.34756], [8.529277, 47.347435], [8.529226, 47.347339], [8.529035, 47.346899], [8.52904, 47.346872], [8.528996, 47.346768], [8.528957, 47.346661], [8.528896, 47.346438]]], "type": "MultiLineString"}, "id": "4987", "properties": {}, "type": "Feature"}, {"bbox": [8.524817, 47.360295, 8.525722, 47.360358], "geometry": {"coordinates": [[[8.525722, 47.360358], [8.524817, 47.360295]]], "type": "MultiLineString"}, "id": "4988", "properties": {}, "type": "Feature"}, {"bbox": [8.52715, 47.352875, 8.527754, 47.355359], "geometry": {"coordinates": [[[8.527641, 47.355359], [8.527676, 47.355238], [8.527693, 47.354768], [8.5277, 47.354571], [8.52772, 47.354011], [8.527727, 47.353802], [8.527752, 47.353014], [8.527754, 47.353006], [8.527754, 47.352998], [8.527754, 47.35299], [8.527752, 47.352982], [8.527749, 47.352974], [8.527746, 47.352966], [8.527741, 47.352959], [8.527735, 47.352951], [8.527729, 47.352945], [8.527722, 47.352938], [8.527714, 47.352932], [8.527705, 47.352927], [8.527695, 47.352922], [8.527685, 47.352917], [8.527674, 47.352913], [8.527663, 47.35291], [8.527652, 47.352908], [8.52764, 47.352906], [8.527628, 47.352905], [8.527279, 47.352879], [8.52715, 47.352875]]], "type": "MultiLineString"}, "id": "4990", "properties": {}, "type": "Feature"}, {"bbox": [8.553497, 47.408807, 8.55884, 47.409015], "geometry": {"coordinates": [[[8.553497, 47.409015], [8.553919, 47.40892], [8.554354, 47.408854], [8.554796, 47.408816], [8.555241, 47.408807], [8.556162, 47.40882], [8.556344, 47.408849], [8.55884, 47.408896]]], "type": "MultiLineString"}, "id": "4991", "properties": {}, "type": "Feature"}, {"bbox": [8.526088, 47.358074, 8.527008, 47.358265], "geometry": {"coordinates": [[[8.527008, 47.358263], [8.526804, 47.358265], [8.526735, 47.358257], [8.526668, 47.358246], [8.526602, 47.35823], [8.526212, 47.35812], [8.526088, 47.358074]]], "type": "MultiLineString"}, "id": "4992", "properties": {}, "type": "Feature"}, {"bbox": [8.506448, 47.419122, 8.509438, 47.42569], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.506505, 47.419322], [8.506514, 47.419646], [8.506525, 47.419713], [8.506538, 47.419763], [8.506557, 47.419813], [8.506582, 47.41986], [8.506612, 47.419907], [8.506647, 47.419952], [8.507376, 47.421008], [8.507382, 47.421017], [8.507394, 47.421034], [8.507403, 47.421052], [8.50741, 47.42107], [8.507414, 47.421088], [8.507416, 47.421107], [8.507415, 47.421126], [8.507412, 47.421156], [8.507412, 47.421187], [8.507417, 47.421218], [8.507426, 47.421248], [8.507439, 47.421277], [8.507494, 47.421367], [8.507713, 47.421727], [8.507739, 47.42177], [8.507764, 47.421813], [8.507787, 47.421856], [8.507874, 47.422117], [8.507932, 47.422382], [8.507959, 47.422649], [8.507999, 47.422806], [8.508038, 47.422963], [8.508075, 47.42312], [8.508107, 47.423252], [8.508146, 47.423383], [8.508194, 47.423512], [8.50828, 47.423739], [8.508509, 47.424342], [8.508526, 47.424395], [8.508543, 47.424448], [8.50856, 47.4245], [8.508605, 47.424599], [8.508655, 47.424697], [8.50871, 47.424794], [8.508793, 47.424924], [8.508885, 47.425052], [8.508986, 47.425177], [8.50927, 47.425499], [8.509438, 47.42569]]], "type": "MultiLineString"}, "id": "4996", "properties": {}, "type": "Feature"}, {"bbox": [8.516776, 47.413092, 8.517902, 47.413812], "geometry": {"coordinates": [[[8.517902, 47.413812], [8.516889, 47.413104], [8.516879, 47.413101], [8.516868, 47.413098], [8.516857, 47.413095], [8.516845, 47.413094], [8.516834, 47.413093], [8.516822, 47.413092], [8.516811, 47.413092], [8.516799, 47.413093], [8.516788, 47.413095], [8.516776, 47.413097]]], "type": "MultiLineString"}, "id": "4997", "properties": {}, "type": "Feature"}, {"bbox": [8.538976, 47.419589, 8.548034, 47.423094], "geometry": {"coordinates": [[[8.548034, 47.419589], [8.547886, 47.419689], [8.547581, 47.420251], [8.547546, 47.420314], [8.547532, 47.420335], [8.547517, 47.420355], [8.547501, 47.420375], [8.54747, 47.420408], [8.547435, 47.42044], [8.547397, 47.42047], [8.5469, 47.420849], [8.546806, 47.42092], [8.545792, 47.421682], [8.545711, 47.421732], [8.545629, 47.421781], [8.545544, 47.421828], [8.544307, 47.42248], [8.543574, 47.422867], [8.543479, 47.42292], [8.543378, 47.422967], [8.543271, 47.423006], [8.543163, 47.423037], [8.543052, 47.423062], [8.542938, 47.423079], [8.542822, 47.42309], [8.54265, 47.423094], [8.542477, 47.423092], [8.542305, 47.423082], [8.542154, 47.423069], [8.542004, 47.423049], [8.541857, 47.423024], [8.541662, 47.42298], [8.541471, 47.422927], [8.541288, 47.422865], [8.540485, 47.422562], [8.540187, 47.422449], [8.53989, 47.422336], [8.53981, 47.422309], [8.539726, 47.422286], [8.53964, 47.422268], [8.539552, 47.422255], [8.539463, 47.422248], [8.539374, 47.422245], [8.539284, 47.422248], [8.539195, 47.422255], [8.539107, 47.422268], [8.539062, 47.422275], [8.539019, 47.422285], [8.538976, 47.422295]]], "type": "MultiLineString"}, "id": "5000", "properties": {}, "type": "Feature"}, {"bbox": [8.556599, 47.354327, 8.558894, 47.358442], "geometry": {"coordinates": [[[8.556898, 47.358442], [8.55687, 47.358299], [8.556852, 47.358155], [8.556842, 47.358011], [8.556835, 47.357966], [8.556822, 47.357922], [8.556804, 47.357879], [8.556781, 47.357837], [8.556753, 47.357796], [8.556715, 47.357749], [8.556638, 47.357653], [8.556625, 47.357633], [8.556614, 47.357612], [8.556606, 47.357591], [8.556601, 47.35757], [8.556599, 47.357549], [8.556599, 47.357527], [8.556601, 47.357508], [8.556605, 47.35749], [8.556612, 47.357472], [8.556621, 47.357454], [8.556632, 47.357437], [8.556932, 47.357059], [8.557055, 47.356942], [8.557177, 47.356825], [8.55722, 47.356756], [8.557261, 47.356685], [8.5573, 47.356615], [8.557313, 47.356589], [8.557327, 47.356562], [8.55734, 47.356536], [8.557411, 47.356361], [8.557419, 47.356342], [8.557462, 47.356236], [8.557547, 47.356026], [8.55758, 47.355947], [8.5576, 47.355898], [8.557741, 47.355546], [8.55777, 47.355456], [8.557809, 47.355367], [8.557857, 47.355281], [8.557916, 47.355198], [8.557998, 47.355089], [8.558243, 47.354769], [8.558257, 47.354756], [8.558273, 47.354745], [8.55829, 47.354734], [8.558309, 47.354724], [8.558329, 47.354715], [8.55835, 47.354708], [8.558894, 47.354327]]], "type": "MultiLineString"}, "id": "5002", "properties": {}, "type": "Feature"}, {"bbox": [8.553593, 47.403901, 8.55538, 47.404147], "geometry": {"coordinates": [[[8.553593, 47.404147], [8.553628, 47.404138], [8.553982, 47.404064], [8.554342, 47.404002], [8.554685, 47.403956], [8.555031, 47.403922], [8.55538, 47.403901]]], "type": "MultiLineString"}, "id": "5003", "properties": {}, "type": "Feature"}, {"bbox": [8.543312, 47.368987, 8.543576, 47.37009], "geometry": {"coordinates": [[[8.543576, 47.368987], [8.543552, 47.36902], [8.543532, 47.369053], [8.543516, 47.369088], [8.543505, 47.369123], [8.543498, 47.369159], [8.543495, 47.369195], [8.543497, 47.369231], [8.543503, 47.369267], [8.54351, 47.36939], [8.543505, 47.369512], [8.543488, 47.369634], [8.543448, 47.369789], [8.54339, 47.369941], [8.543312, 47.37009]]], "type": "MultiLineString"}, "id": "5011", "properties": {}, "type": "Feature"}, {"bbox": [8.522799, 47.340107, 8.52294, 47.340197], "geometry": {"coordinates": [[[8.52294, 47.340197], [8.522799, 47.340107]]], "type": "MultiLineString"}, "id": "5012", "properties": {}, "type": "Feature"}, {"bbox": [8.529734, 47.34394, 8.529999, 47.344868], "geometry": {"coordinates": [[[8.529734, 47.344868], [8.529813, 47.34468], [8.529847, 47.344599], [8.529878, 47.344517], [8.529907, 47.344434], [8.529916, 47.344386], [8.529925, 47.344337], [8.529934, 47.344289], [8.529943, 47.344241], [8.529952, 47.344192], [8.52996, 47.344144], [8.529967, 47.344104], [8.529975, 47.344063], [8.529982, 47.344023], [8.529987, 47.343995], [8.529992, 47.343968], [8.529999, 47.34394]]], "type": "MultiLineString"}, "id": "5013", "properties": {}, "type": "Feature"}, {"bbox": [8.584713, 47.359579, 8.585122, 47.360719], "geometry": {"coordinates": [[[8.585122, 47.359579], [8.584984, 47.359727], [8.584916, 47.359801], [8.584857, 47.359878], [8.584808, 47.359959], [8.584769, 47.360041], [8.58474, 47.360126], [8.584721, 47.360212], [8.584713, 47.360299], [8.584716, 47.360386], [8.584729, 47.360472], [8.584753, 47.360558], [8.584751, 47.360719]]], "type": "MultiLineString"}, "id": "5021", "properties": {}, "type": "Feature"}, {"bbox": [8.549771, 47.401727, 8.550469, 47.401863], "geometry": {"coordinates": [[[8.549771, 47.401863], [8.54983, 47.401832], [8.549892, 47.401804], [8.549958, 47.40178], [8.550027, 47.401761], [8.550098, 47.401746], [8.550171, 47.401735], [8.550245, 47.401728], [8.55032, 47.401727], [8.550395, 47.401729], [8.550469, 47.401737]]], "type": "MultiLineString"}, "id": "5031", "properties": {}, "type": "Feature"}, {"bbox": [8.522545, 47.396972, 8.530309, 47.398152], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.530306, 47.396987], [8.530309, 47.397002], [8.530309, 47.397018], [8.530307, 47.397033], [8.530304, 47.397049], [8.530299, 47.397064], [8.530291, 47.397079], [8.530282, 47.397093], [8.530271, 47.397107], [8.530259, 47.39712], [8.530245, 47.397132], [8.530229, 47.397143], [8.530212, 47.397154], [8.530194, 47.397163], [8.530174, 47.397172], [8.529916, 47.397265], [8.52985, 47.397283], [8.529783, 47.397297], [8.529713, 47.397308], [8.529643, 47.397314], [8.529572, 47.397317], [8.529501, 47.397315], [8.529431, 47.397309], [8.528496, 47.397199], [8.528003, 47.39714], [8.527945, 47.397135], [8.527886, 47.397134], [8.527828, 47.397137], [8.52777, 47.397142], [8.527714, 47.397151], [8.527658, 47.397164], [8.527605, 47.39718], [8.527553, 47.397198], [8.527505, 47.39722], [8.527459, 47.397245], [8.52737, 47.397301], [8.527341, 47.397319], [8.527284, 47.397353], [8.527147, 47.397426], [8.527001, 47.397489], [8.526847, 47.397544], [8.526686, 47.397588], [8.526578, 47.397613], [8.525234, 47.397894], [8.524541, 47.398039], [8.524334, 47.398082], [8.524133, 47.398118], [8.523929, 47.398141], [8.523722, 47.398152], [8.523515, 47.398151], [8.523309, 47.398137], [8.523105, 47.398111], [8.522545, 47.398004]]], "type": "MultiLineString"}, "id": "5033", "properties": {}, "type": "Feature"}, {"bbox": [8.487655, 47.368975, 8.489444, 47.369794], "geometry": {"coordinates": [[[8.489444, 47.369049], [8.489418, 47.369034], [8.489389, 47.36902], [8.489359, 47.369008], [8.489327, 47.368997], [8.489294, 47.368989], [8.48926, 47.368982], [8.489226, 47.368978], [8.489191, 47.368975], [8.489155, 47.368975], [8.48912, 47.368977], [8.489086, 47.36898], [8.489051, 47.368986], [8.489018, 47.368994], [8.488986, 47.369003], [8.488955, 47.369015], [8.488926, 47.369028], [8.488898, 47.369043], [8.488872, 47.369059], [8.488608, 47.369296], [8.488336, 47.369528], [8.488057, 47.369756], [8.488024, 47.369767], [8.487991, 47.369777], [8.487956, 47.369784], [8.48792, 47.369789], [8.487884, 47.369793], [8.487848, 47.369794], [8.487812, 47.369793], [8.487776, 47.369791], [8.48774, 47.369786], [8.487711, 47.369782], [8.487682, 47.369777], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "5035", "properties": {}, "type": "Feature"}, {"bbox": [8.586103, 47.398629, 8.586943, 47.39942], "geometry": {"coordinates": [[[8.586103, 47.398881], [8.586408, 47.398649], [8.586417, 47.398645], [8.586427, 47.39864], [8.586437, 47.398637], [8.586448, 47.398634], [8.586459, 47.398632], [8.58647, 47.39863], [8.586481, 47.39863], [8.586493, 47.398629], [8.586504, 47.39863], [8.586516, 47.398631], [8.586527, 47.398633], [8.586537, 47.398635], [8.586548, 47.398638], [8.586558, 47.398642], [8.586568, 47.398646], [8.586577, 47.398651], [8.586585, 47.398656], [8.586689, 47.398809], [8.58677, 47.398969], [8.586829, 47.399133], [8.586943, 47.39942]]], "type": "MultiLineString"}, "id": "5039", "properties": {}, "type": "Feature"}, {"bbox": [8.568986, 47.405767, 8.569923, 47.406277], "geometry": {"coordinates": [[[8.568986, 47.406277], [8.569078, 47.406257], [8.569132, 47.406239], [8.569216, 47.406208], [8.569328, 47.406163], [8.569365, 47.406148], [8.569484, 47.406098], [8.569617, 47.406039], [8.569923, 47.405889], [8.569813, 47.405767]]], "type": "MultiLineString"}, "id": "5040", "properties": {}, "type": "Feature"}, {"bbox": [8.481096, 47.375507, 8.481668, 47.375844], "geometry": {"coordinates": [[[8.481142, 47.375507], [8.481098, 47.375587], [8.481097, 47.375591], [8.481096, 47.375595], [8.481096, 47.375599], [8.481097, 47.375603], [8.481098, 47.375607], [8.4811, 47.37561], [8.481102, 47.375614], [8.481105, 47.375618], [8.481108, 47.375621], [8.481111, 47.375624], [8.481115, 47.375627], [8.481119, 47.37563], [8.481124, 47.375632], [8.481129, 47.375635], [8.481134, 47.375637], [8.481139, 47.375638], [8.481668, 47.375844]]], "type": "MultiLineString"}, "id": "5041", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.369186, 8.57151, 47.370112], "geometry": {"coordinates": [[[8.57151, 47.369187], [8.571493, 47.369186], [8.571476, 47.369186], [8.571459, 47.369188], [8.571442, 47.36919], [8.571425, 47.369193], [8.571281, 47.369313], [8.571144, 47.369437], [8.571013, 47.369564], [8.570925, 47.369669], [8.570837, 47.369774], [8.570748, 47.369879], [8.570687, 47.369958], [8.570624, 47.370035], [8.570557, 47.370112]]], "type": "MultiLineString"}, "id": "5052", "properties": {}, "type": "Feature"}, {"bbox": [8.510669, 47.415138, 8.511643, 47.415876], "geometry": {"coordinates": [[[8.511643, 47.415141], [8.51164, 47.415138], [8.511486, 47.415197], [8.511333, 47.41526], [8.511188, 47.415332], [8.511052, 47.415411], [8.510927, 47.415499], [8.510863, 47.415553], [8.510804, 47.41561], [8.510751, 47.415669], [8.510725, 47.415708], [8.510704, 47.415749], [8.510687, 47.41579], [8.510676, 47.415833], [8.510669, 47.415876]]], "type": "MultiLineString"}, "id": "5053", "properties": {}, "type": "Feature"}, {"bbox": [8.495358, 47.399238, 8.498358, 47.399797], "geometry": {"coordinates": [[[8.498358, 47.399238], [8.498066, 47.399308], [8.497512, 47.399401], [8.496813, 47.39952], [8.496111, 47.399639], [8.495761, 47.3997], [8.495625, 47.399728], [8.49549, 47.39976], [8.495358, 47.399797]]], "type": "MultiLineString"}, "id": "5057", "properties": {}, "type": "Feature"}, {"bbox": [8.524813, 47.335374, 8.52506, 47.337032], "geometry": {"coordinates": [[[8.524813, 47.337032], [8.524814, 47.33683], [8.524816, 47.336758], [8.524824, 47.336562], [8.524847, 47.336367], [8.524884, 47.336172], [8.524915, 47.336017], [8.525028, 47.335459], [8.52506, 47.335374]]], "type": "MultiLineString"}, "id": "5059", "properties": {}, "type": "Feature"}, {"bbox": [8.524368, 47.39051, 8.5279, 47.39227], "geometry": {"coordinates": [[[8.5279, 47.39051], [8.527784, 47.390549], [8.527343, 47.390721], [8.527249, 47.390759], [8.527157, 47.3908], [8.527066, 47.390842], [8.526713, 47.391011], [8.526646, 47.391042], [8.526578, 47.391072], [8.526508, 47.391101], [8.526064, 47.391279], [8.525571, 47.391477], [8.525348, 47.391584], [8.525142, 47.391705], [8.524954, 47.391839], [8.524744, 47.392027], [8.52468, 47.392081], [8.524613, 47.392134], [8.524542, 47.392184], [8.524445, 47.392237], [8.524368, 47.39227]]], "type": "MultiLineString"}, "id": "5061", "properties": {}, "type": "Feature"}, {"bbox": [8.539393, 47.369604, 8.540602, 47.369759], "geometry": {"coordinates": [[[8.540602, 47.369743], [8.540596, 47.369746], [8.540589, 47.36975], [8.540582, 47.369752], [8.540575, 47.369755], [8.540567, 47.369756], [8.54056, 47.369758], [8.540552, 47.369759], [8.540543, 47.369759], [8.540535, 47.369759], [8.540527, 47.369758], [8.540519, 47.369757], [8.539982, 47.369684], [8.539393, 47.369604]]], "type": "MultiLineString"}, "id": "5067", "properties": {}, "type": "Feature"}, {"bbox": [8.545512, 47.410301, 8.546502, 47.412263], "geometry": {"coordinates": [[[8.546011, 47.410301], [8.545963, 47.410425], [8.545926, 47.410552], [8.545901, 47.410679], [8.545866, 47.410821], [8.545829, 47.410962], [8.545791, 47.411103], [8.545573, 47.411585], [8.545563, 47.41162], [8.545553, 47.411655], [8.545544, 47.411691], [8.545512, 47.411882], [8.545513, 47.411892], [8.545514, 47.411902], [8.545517, 47.411912], [8.545521, 47.411921], [8.545526, 47.411931], [8.545532, 47.41194], [8.54554, 47.411948], [8.545548, 47.411957], [8.545558, 47.411964], [8.545568, 47.411972], [8.545579, 47.411978], [8.545591, 47.411984], [8.545604, 47.411989], [8.545617, 47.411993], [8.546502, 47.412263]]], "type": "MultiLineString"}, "id": "5068", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.376527, 8.545595, 47.378443], "geometry": {"coordinates": [[[8.545021, 47.376527], [8.545015, 47.376539], [8.545008, 47.37655], [8.545, 47.376561], [8.544991, 47.376572], [8.544968, 47.376601], [8.544949, 47.376632], [8.544934, 47.376663], [8.544923, 47.376696], [8.544915, 47.376728], [8.544912, 47.376762], [8.544877, 47.377114], [8.544822, 47.377665], [8.544817, 47.377751], [8.544816, 47.377766], [8.544775, 47.378127], [8.544775, 47.378136], [8.544776, 47.378144], [8.544778, 47.378152], [8.544781, 47.378159], [8.544784, 47.378167], [8.544789, 47.378175], [8.544795, 47.378182], [8.544801, 47.378188], [8.544809, 47.378195], [8.544817, 47.378201], [8.544826, 47.378206], [8.544835, 47.378211], [8.544845, 47.378215], [8.544856, 47.378219], [8.544867, 47.378222], [8.545595, 47.378443]]], "type": "MultiLineString"}, "id": "5069", "properties": {}, "type": "Feature"}, {"bbox": [8.540602, 47.368059, 8.541127, 47.369743], "geometry": {"coordinates": [[[8.541127, 47.368059], [8.540969, 47.368585], [8.540846, 47.368997], [8.540739, 47.369351], [8.540632, 47.369706], [8.540631, 47.369711], [8.540629, 47.369716], [8.540626, 47.369721], [8.540622, 47.369726], [8.540618, 47.369731], [8.540613, 47.369735], [8.540608, 47.369739], [8.540602, 47.369743]]], "type": "MultiLineString"}, "id": "5070", "properties": {}, "type": "Feature"}, {"bbox": [8.548879, 47.364012, 8.55147, 47.366131], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.548955, 47.3661], [8.549028, 47.366065], [8.549096, 47.366026], [8.54916, 47.365984], [8.549842, 47.365323], [8.550149, 47.365008], [8.550219, 47.364946], [8.550292, 47.364885], [8.550368, 47.364827], [8.550665, 47.364612], [8.551307, 47.364147], [8.55147, 47.364012]]], "type": "MultiLineString"}, "id": "5071", "properties": {}, "type": "Feature"}, {"bbox": [8.560621, 47.361895, 8.566202, 47.364451], "geometry": {"coordinates": [[[8.560638, 47.361895], [8.56063, 47.361913], [8.560625, 47.361932], [8.560622, 47.361951], [8.560621, 47.36197], [8.560623, 47.361989], [8.560627, 47.362008], [8.560634, 47.362026], [8.560643, 47.362044], [8.560654, 47.362062], [8.560668, 47.362079], [8.560683, 47.362094], [8.560701, 47.362109], [8.56072, 47.362123], [8.561395, 47.362378], [8.561757, 47.362504], [8.561947, 47.36257], [8.561975, 47.36258], [8.562027, 47.362598], [8.563044, 47.36295], [8.563258, 47.363019], [8.564513, 47.363465], [8.564556, 47.36348], [8.564599, 47.363494], [8.564641, 47.363509], [8.564892, 47.363608], [8.56513, 47.36372], [8.565354, 47.363845], [8.565562, 47.363981], [8.565754, 47.364129], [8.566202, 47.364451]]], "type": "MultiLineString"}, "id": "5072", "properties": {}, "type": "Feature"}, {"bbox": [8.505942, 47.3563, 8.509088, 47.357647], "geometry": {"coordinates": [[[8.509088, 47.357647], [8.508655, 47.357456], [8.508278, 47.357305], [8.507403, 47.356936], [8.506672, 47.356629], [8.506261, 47.356455], [8.506215, 47.356429], [8.506048, 47.356356], [8.506009, 47.356336], [8.505942, 47.3563]]], "type": "MultiLineString"}, "id": "5077", "properties": {}, "type": "Feature"}, {"bbox": [8.516735, 47.376611, 8.518329, 47.377039], "geometry": {"coordinates": [[[8.518329, 47.376611], [8.516793, 47.376997], [8.516735, 47.377039]]], "type": "MultiLineString"}, "id": "5086", "properties": {}, "type": "Feature"}, {"bbox": [8.526884, 47.381908, 8.529232, 47.384838], "geometry": {"coordinates": [[[8.529232, 47.381908], [8.528757, 47.382091], [8.528662, 47.382134], [8.528461, 47.38233], [8.528432, 47.38236], [8.52833, 47.382468], [8.528238, 47.382568], [8.528068, 47.38276], [8.528034, 47.382801], [8.527671, 47.383262], [8.527593, 47.383371], [8.52745, 47.383587], [8.527258, 47.383899], [8.52707, 47.384255], [8.526884, 47.384838]]], "type": "MultiLineString"}, "id": "5094", "properties": {}, "type": "Feature"}, {"bbox": [8.55174, 47.394938, 8.552605, 47.395493], "geometry": {"coordinates": [[[8.55174, 47.394938], [8.551836, 47.394949], [8.552165, 47.395164], [8.552557, 47.395461], [8.552605, 47.395493]]], "type": "MultiLineString"}, "id": "5101", "properties": {}, "type": "Feature"}, {"bbox": [8.524132, 47.372293, 8.526678, 47.374289], "geometry": {"coordinates": [[[8.526678, 47.372293], [8.525821, 47.372819], [8.525818, 47.372843], [8.525811, 47.372867], [8.525801, 47.372891], [8.525789, 47.372914], [8.525773, 47.372937], [8.525754, 47.372958], [8.525732, 47.372978], [8.525708, 47.372996], [8.525198, 47.373387], [8.525034, 47.373512], [8.524699, 47.373769], [8.524554, 47.373879], [8.524248, 47.374113], [8.524225, 47.374129], [8.524205, 47.374147], [8.524187, 47.374165], [8.524172, 47.374184], [8.524158, 47.374204], [8.524148, 47.374225], [8.52414, 47.374246], [8.524134, 47.374267], [8.524132, 47.374289]]], "type": "MultiLineString"}, "id": "5105", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.387779, 8.546211, 47.389203], "geometry": {"coordinates": [[[8.544033, 47.387779], [8.544033, 47.387779], [8.544105, 47.387837], [8.544179, 47.387895], [8.544187, 47.387902], [8.544194, 47.387909], [8.5442, 47.387917], [8.544204, 47.387925], [8.544208, 47.387933], [8.544211, 47.387941], [8.544213, 47.38795], [8.544214, 47.387959], [8.544284, 47.387982], [8.544351, 47.388008], [8.544416, 47.388037], [8.545131, 47.388507], [8.545593, 47.38884], [8.54605, 47.389126], [8.546211, 47.389203]]], "type": "MultiLineString"}, "id": "5124", "properties": {}, "type": "Feature"}, {"bbox": [8.542639, 47.379933, 8.54415, 47.381913], "geometry": {"coordinates": [[[8.54415, 47.379937], [8.544117, 47.379934], [8.544083, 47.379933], [8.544049, 47.379934], [8.544015, 47.379937], [8.543982, 47.379942], [8.54395, 47.379949], [8.543918, 47.379957], [8.543888, 47.379968], [8.54386, 47.37998], [8.543833, 47.379994], [8.543808, 47.38001], [8.543785, 47.380027], [8.543764, 47.380045], [8.543745, 47.380064], [8.543541, 47.380363], [8.543454, 47.380494], [8.543287, 47.380752], [8.543188, 47.380903], [8.543042, 47.381122], [8.543014, 47.381161], [8.542915, 47.381287], [8.542851, 47.381367], [8.542762, 47.381474], [8.542719, 47.381575], [8.542689, 47.381633], [8.542662, 47.381692], [8.542639, 47.381752], [8.54296, 47.3818], [8.54352, 47.381913]]], "type": "MultiLineString"}, "id": "5125", "properties": {}, "type": "Feature"}, {"bbox": [8.514518, 47.376271, 8.516517, 47.37708], "geometry": {"coordinates": [[[8.516517, 47.376285], [8.51631, 47.376271], [8.516302, 47.376271], [8.516293, 47.376271], [8.516285, 47.376272], [8.516277, 47.376273], [8.516269, 47.376274], [8.516262, 47.376276], [8.516254, 47.376278], [8.516247, 47.376281], [8.51624, 47.376284], [8.515528, 47.376609], [8.514518, 47.37708]]], "type": "MultiLineString"}, "id": "5126", "properties": {}, "type": "Feature"}, {"bbox": [8.479759, 47.388898, 8.480421, 47.390095], "geometry": {"coordinates": [[[8.480421, 47.390095], [8.480205, 47.38981], [8.480022, 47.389514], [8.479873, 47.38921], [8.479759, 47.388898]]], "type": "MultiLineString"}, "id": "5127", "properties": {}, "type": "Feature"}, {"bbox": [8.540187, 47.42152, 8.540889, 47.422449], "geometry": {"coordinates": [[[8.540889, 47.421555], [8.540506, 47.42152], [8.5405, 47.421549], [8.540492, 47.421578], [8.540484, 47.421606], [8.540433, 47.421958], [8.540411, 47.422086], [8.540397, 47.422136], [8.540376, 47.422186], [8.54035, 47.422234], [8.540187, 47.422449]]], "type": "MultiLineString"}, "id": "5139", "properties": {}, "type": "Feature"}, {"bbox": [8.506106, 47.41565, 8.506996, 47.419122], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.506318, 47.418833], [8.506117, 47.418329], [8.50611, 47.418297], [8.506106, 47.418265], [8.506106, 47.418233], [8.50611, 47.418201], [8.506118, 47.41817], [8.50613, 47.418139], [8.506146, 47.418108], [8.506166, 47.418079], [8.506189, 47.41805], [8.506215, 47.418023], [8.506786, 47.41753], [8.506821, 47.417498], [8.506856, 47.417467], [8.506891, 47.417436], [8.506922, 47.4174], [8.506948, 47.417364], [8.50697, 47.417325], [8.506985, 47.417286], [8.506996, 47.417246], [8.506994, 47.417219], [8.50699, 47.417192], [8.506982, 47.417166], [8.506972, 47.41714], [8.506958, 47.417115], [8.506904, 47.417016], [8.506673, 47.416607], [8.506671, 47.416603], [8.506573, 47.416429], [8.506538, 47.416369], [8.506328, 47.41601], [8.506261, 47.415864], [8.506215, 47.415715], [8.506204, 47.41565]]], "type": "MultiLineString"}, "id": "5140", "properties": {}, "type": "Feature"}, {"bbox": [8.506182, 47.41224, 8.506378, 47.41565], "geometry": {"coordinates": [[[8.506204, 47.41565], [8.506189, 47.415563], [8.506184, 47.415411], [8.5062, 47.415258], [8.506224, 47.415149], [8.506275, 47.41492], [8.506332, 47.414659], [8.506369, 47.414433], [8.506378, 47.414207], [8.506359, 47.413981], [8.506324, 47.413779], [8.506239, 47.413314], [8.506203, 47.413099], [8.506184, 47.412884], [8.506182, 47.412667], [8.506203, 47.41224]]], "type": "MultiLineString"}, "id": "5141", "properties": {}, "type": "Feature"}, {"bbox": [8.541432, 47.413178, 8.543073, 47.413976], "geometry": {"coordinates": [[[8.543073, 47.413976], [8.542672, 47.413693], [8.542453, 47.41361], [8.541948, 47.41342], [8.541509, 47.413275], [8.541432, 47.413178]]], "type": "MultiLineString"}, "id": "5144", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.413178, 8.541518, 47.41405], "geometry": {"coordinates": [[[8.541432, 47.413178], [8.54142, 47.413246], [8.541479, 47.413836], [8.541518, 47.41405]]], "type": "MultiLineString"}, "id": "5147", "properties": {}, "type": "Feature"}, {"bbox": [8.584605, 47.406035, 8.584913, 47.406657], "geometry": {"coordinates": [[[8.584913, 47.406035], [8.584605, 47.406657]]], "type": "MultiLineString"}, "id": "5151", "properties": {}, "type": "Feature"}, {"bbox": [8.570929, 47.348154, 8.571133, 47.348502], "geometry": {"coordinates": [[[8.570929, 47.348502], [8.571133, 47.348154]]], "type": "MultiLineString"}, "id": "5153", "properties": {}, "type": "Feature"}, {"bbox": [8.559014, 47.367879, 8.560554, 47.368419], "geometry": {"coordinates": [[[8.559014, 47.368419], [8.559187, 47.368365], [8.559364, 47.368317], [8.559544, 47.368273], [8.559765, 47.368216], [8.559933, 47.368173], [8.560098, 47.368126], [8.560259, 47.368074], [8.560311, 47.368055], [8.560361, 47.368032], [8.560407, 47.368006], [8.56045, 47.367978], [8.560489, 47.367947], [8.560523, 47.367914], [8.560554, 47.367879]]], "type": "MultiLineString"}, "id": "5154", "properties": {}, "type": "Feature"}, {"bbox": [8.48059, 47.373278, 8.481029, 47.373459], "geometry": {"coordinates": [[[8.481029, 47.373459], [8.480904, 47.373396], [8.480751, 47.373333], [8.48059, 47.373279], [8.48059, 47.373278]]], "type": "MultiLineString"}, "id": "5156", "properties": {}, "type": "Feature"}, {"bbox": [8.477724, 47.390821, 8.479148, 47.3919], "geometry": {"coordinates": [[[8.479148, 47.390821], [8.47892, 47.39099], [8.478701, 47.391164], [8.478491, 47.391344], [8.478122, 47.391668], [8.478033, 47.391734], [8.477937, 47.391795], [8.477833, 47.39185], [8.477724, 47.3919]]], "type": "MultiLineString"}, "id": "5162", "properties": {}, "type": "Feature"}, {"bbox": [8.487774, 47.392414, 8.488871, 47.393111], "geometry": {"coordinates": [[[8.488871, 47.393111], [8.487927, 47.392467], [8.487904, 47.392454], [8.487881, 47.392443], [8.487856, 47.392433], [8.487829, 47.392425], [8.487802, 47.392419], [8.487774, 47.392414]]], "type": "MultiLineString"}, "id": "5163", "properties": {}, "type": "Feature"}, {"bbox": [8.486794, 47.392409, 8.487774, 47.392605], "geometry": {"coordinates": [[[8.487774, 47.392414], [8.487746, 47.392411], [8.487717, 47.392409], [8.487688, 47.39241], [8.48766, 47.392412], [8.487631, 47.392415], [8.487604, 47.392421], [8.487371, 47.392465], [8.486794, 47.392605]]], "type": "MultiLineString"}, "id": "5164", "properties": {}, "type": "Feature"}, {"bbox": [8.527032, 47.396015, 8.527561, 47.396138], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.527057, 47.396112], [8.527083, 47.39612], [8.52711, 47.396127], [8.527138, 47.396132], [8.527167, 47.396136], [8.527195, 47.396138], [8.527224, 47.396138], [8.527253, 47.396136], [8.527282, 47.396133], [8.52731, 47.396128], [8.527337, 47.396122], [8.527364, 47.396114], [8.527389, 47.396104], [8.527413, 47.396093], [8.527435, 47.39608], [8.527456, 47.396067], [8.527475, 47.396052], [8.527486, 47.396044], [8.527498, 47.396037], [8.52751, 47.396031], [8.527524, 47.396026], [8.527538, 47.396021], [8.527552, 47.396017], [8.527561, 47.396015]]], "type": "MultiLineString"}, "id": "5165", "properties": {}, "type": "Feature"}, {"bbox": [8.529071, 47.395662, 8.53214, 47.395818], "geometry": {"coordinates": [[[8.529071, 47.395777], [8.529224, 47.395764], [8.52939, 47.39576], [8.529556, 47.395766], [8.529708, 47.395776], [8.529859, 47.395792], [8.530008, 47.395815], [8.530639, 47.395818], [8.530777, 47.395815], [8.530914, 47.395804], [8.531048, 47.395783], [8.531441, 47.395711], [8.53156, 47.395689], [8.531627, 47.395677], [8.531697, 47.395668], [8.531768, 47.395663], [8.531839, 47.395662], [8.53191, 47.395664], [8.53214, 47.395678]]], "type": "MultiLineString"}, "id": "5166", "properties": {}, "type": "Feature"}, {"bbox": [8.532159, 47.358755, 8.533093, 47.361172], "geometry": {"coordinates": [[[8.532159, 47.361172], [8.532397, 47.360477], [8.532573, 47.359966], [8.532732, 47.359615], [8.532957, 47.359084], [8.533093, 47.358755]]], "type": "MultiLineString"}, "id": "5170", "properties": {}, "type": "Feature"}, {"bbox": [8.478321, 47.389683, 8.479199, 47.390441], "geometry": {"coordinates": [[[8.479199, 47.390441], [8.478321, 47.389683]]], "type": "MultiLineString"}, "id": "5171", "properties": {}, "type": "Feature"}, {"bbox": [8.511745, 47.372274, 8.512582, 47.372737], "geometry": {"coordinates": [[[8.512582, 47.372737], [8.511745, 47.372274]]], "type": "MultiLineString"}, "id": "5172", "properties": {}, "type": "Feature"}, {"bbox": [8.543819, 47.412512, 8.544284, 47.412701], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.544023, 47.412568], [8.543819, 47.412701]]], "type": "MultiLineString"}, "id": "5178", "properties": {}, "type": "Feature"}, {"bbox": [8.51248, 47.373312, 8.513509, 47.373888], "geometry": {"coordinates": [[[8.513509, 47.373888], [8.51248, 47.373312]]], "type": "MultiLineString"}, "id": "5180", "properties": {}, "type": "Feature"}, {"bbox": [8.509807, 47.370148, 8.512013, 47.37305], "geometry": {"coordinates": [[[8.512013, 47.37305], [8.511673, 47.372859], [8.511139, 47.37256], [8.510942, 47.37245], [8.510392, 47.372141], [8.510367, 47.371955], [8.510212, 47.37108], [8.510202, 47.371028], [8.510083, 47.370438], [8.51008, 47.370425], [8.510076, 47.370412], [8.510069, 47.370399], [8.510061, 47.370387], [8.510051, 47.370376], [8.51004, 47.370365], [8.509807, 47.370148]]], "type": "MultiLineString"}, "id": "5181", "properties": {}, "type": "Feature"}, {"bbox": [8.596755, 47.360397, 8.598851, 47.363838], "geometry": {"coordinates": [[[8.596802, 47.360397], [8.596787, 47.360418], [8.596775, 47.36044], [8.596766, 47.360462], [8.596759, 47.360485], [8.596756, 47.360509], [8.596755, 47.360532], [8.596758, 47.360555], [8.596763, 47.360579], [8.596771, 47.360601], [8.596782, 47.360623], [8.596796, 47.360645], [8.596813, 47.360665], [8.596832, 47.360685], [8.596853, 47.360703], [8.59704, 47.360864], [8.597099, 47.360924], [8.59715, 47.360988], [8.597194, 47.361054], [8.59723, 47.361121], [8.597258, 47.361191], [8.597321, 47.361376], [8.597361, 47.36148], [8.59741, 47.361581], [8.597467, 47.361681], [8.597784, 47.362195], [8.59825, 47.362951], [8.598312, 47.363045], [8.598378, 47.363138], [8.598449, 47.363229], [8.598653, 47.363466], [8.598706, 47.363525], [8.598751, 47.363586], [8.598788, 47.363651], [8.59882, 47.363723], [8.598844, 47.363797], [8.598851, 47.363838]]], "type": "MultiLineString"}, "id": "5185", "properties": {}, "type": "Feature"}, {"bbox": [8.515034, 47.392766, 8.523047, 47.396136], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.521559, 47.393825], [8.521283, 47.394013], [8.519698, 47.395017], [8.519574, 47.3951], [8.519542, 47.395119], [8.519509, 47.395139], [8.519476, 47.395158], [8.519279, 47.395257], [8.51907, 47.395344], [8.51885, 47.395418], [8.518621, 47.395477], [8.518384, 47.395522], [8.518143, 47.395551], [8.518082, 47.395556], [8.51802, 47.39556], [8.517958, 47.395564], [8.517599, 47.395567], [8.517242, 47.395594], [8.516891, 47.395644], [8.516548, 47.395715], [8.515619, 47.395978], [8.51558, 47.395989], [8.5154, 47.396042], [8.515218, 47.396091], [8.515034, 47.396136]]], "type": "MultiLineString"}, "id": "5186", "properties": {}, "type": "Feature"}, {"bbox": [8.524077, 47.378304, 8.52476, 47.379009], "geometry": {"coordinates": [[[8.524077, 47.378304], [8.52476, 47.379009]]], "type": "MultiLineString"}, "id": "5188", "properties": {}, "type": "Feature"}, {"bbox": [8.525763, 47.37915, 8.52641, 47.379667], "geometry": {"coordinates": [[[8.525763, 47.37915], [8.526057, 47.379386], [8.52641, 47.379667]]], "type": "MultiLineString"}, "id": "5189", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16_add({"bbox": [8.465219, 47.322732, 8.609922, 47.431186], "features": [{"bbox": [8.526294, 47.38038, 8.526913, 47.380991], "geometry": {"coordinates": [[[8.526294, 47.38038], [8.526697, 47.380714], [8.526913, 47.380991]]], "type": "MultiLineString"}, "id": "2", "properties": {}, "type": "Feature"}, {"bbox": [8.529712, 47.38331, 8.530426, 47.383664], "geometry": {"coordinates": [[[8.530426, 47.38331], [8.529712, 47.383664]]], "type": "MultiLineString"}, "id": "8", "properties": {}, "type": "Feature"}, {"bbox": [8.560362, 47.406659, 8.560408, 47.408223], "geometry": {"coordinates": [[[8.560408, 47.406659], [8.560394, 47.40744], [8.560362, 47.408223]]], "type": "MultiLineString"}, "id": "10", "properties": {}, "type": "Feature"}, {"bbox": [8.556746, 47.378131, 8.5575, 47.378283], "geometry": {"coordinates": [[[8.556746, 47.378131], [8.5575, 47.378283]]], "type": "MultiLineString"}, "id": "13", "properties": {}, "type": "Feature"}, {"bbox": [8.549788, 47.359601, 8.550858, 47.35983], "geometry": {"coordinates": [[[8.549788, 47.359601], [8.549795, 47.359601], [8.550858, 47.35983]]], "type": "MultiLineString"}, "id": "14", "properties": {}, "type": "Feature"}, {"bbox": [8.523533, 47.373119, 8.52424, 47.373605], "geometry": {"coordinates": [[[8.52424, 47.373119], [8.523533, 47.373605]]], "type": "MultiLineString"}, "id": "15", "properties": {}, "type": "Feature"}, {"bbox": [8.525769, 47.377626, 8.526264, 47.378218], "geometry": {"coordinates": [[[8.525769, 47.377626], [8.526264, 47.378218]]], "type": "MultiLineString"}, "id": "18", "properties": {}, "type": "Feature"}, {"bbox": [8.5148, 47.371934, 8.516492, 47.373999], "geometry": {"coordinates": [[[8.516492, 47.371934], [8.515732, 47.372636], [8.514988, 47.373334], [8.5148, 47.373999]]], "type": "MultiLineString"}, "id": "22", "properties": {}, "type": "Feature"}, {"bbox": [8.532199, 47.369381, 8.532998, 47.370024], "geometry": {"coordinates": [[[8.532998, 47.370024], [8.532199, 47.369381]]], "type": "MultiLineString"}, "id": "23", "properties": {}, "type": "Feature"}, {"bbox": [8.554234, 47.367853, 8.555784, 47.369171], "geometry": {"coordinates": [[[8.554234, 47.369171], [8.555784, 47.367853]]], "type": "MultiLineString"}, "id": "33", "properties": {}, "type": "Feature"}, {"bbox": [8.545087, 47.416297, 8.54608, 47.416323], "geometry": {"coordinates": [[[8.545087, 47.416297], [8.545247, 47.4163], [8.54608, 47.416323]]], "type": "MultiLineString"}, "id": "37", "properties": {}, "type": "Feature"}, {"bbox": [8.540488, 47.386318, 8.540704, 47.387935], "geometry": {"coordinates": [[[8.540704, 47.386318], [8.540688, 47.386425], [8.540585, 47.387294], [8.540541, 47.387793], [8.540488, 47.387935]]], "type": "MultiLineString"}, "id": "38", "properties": {}, "type": "Feature"}, {"bbox": [8.556995, 47.356394, 8.5573, 47.356615], "geometry": {"coordinates": [[[8.556995, 47.356394], [8.5573, 47.356615]]], "type": "MultiLineString"}, "id": "41", "properties": {}, "type": "Feature"}, {"bbox": [8.529308, 47.33987, 8.529619, 47.340748], "geometry": {"coordinates": [[[8.529619, 47.340748], [8.529308, 47.339977], [8.529308, 47.33987]]], "type": "MultiLineString"}, "id": "42", "properties": {}, "type": "Feature"}, {"bbox": [8.521371, 47.359848, 8.522947, 47.360073], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522755, 47.360073], [8.521981, 47.359947], [8.521371, 47.359848]]], "type": "MultiLineString"}, "id": "51", "properties": {}, "type": "Feature"}, {"bbox": [8.516642, 47.369725, 8.51757, 47.370568], "geometry": {"coordinates": [[[8.51757, 47.370568], [8.516642, 47.369725]]], "type": "MultiLineString"}, "id": "52", "properties": {}, "type": "Feature"}, {"bbox": [8.552444, 47.357813, 8.554003, 47.358239], "geometry": {"coordinates": [[[8.552444, 47.357813], [8.554003, 47.358239]]], "type": "MultiLineString"}, "id": "53", "properties": {}, "type": "Feature"}, {"bbox": [8.550094, 47.363659, 8.55071, 47.364351], "geometry": {"coordinates": [[[8.550094, 47.364351], [8.550161, 47.364255], [8.55071, 47.363659]]], "type": "MultiLineString"}, "id": "54", "properties": {}, "type": "Feature"}, {"bbox": [8.541628, 47.388476, 8.542347, 47.38875], "geometry": {"coordinates": [[[8.541628, 47.388476], [8.542187, 47.388687], [8.542347, 47.38875]]], "type": "MultiLineString"}, "id": "55", "properties": {}, "type": "Feature"}, {"bbox": [8.51233, 47.377452, 8.513397, 47.378251], "geometry": {"coordinates": [[[8.51233, 47.377452], [8.513397, 47.378251]]], "type": "MultiLineString"}, "id": "56", "properties": {}, "type": "Feature"}, {"bbox": [8.550419, 47.401981, 8.551467, 47.402198], "geometry": {"coordinates": [[[8.550419, 47.402198], [8.550591, 47.402185], [8.551467, 47.401981]]], "type": "MultiLineString"}, "id": "57", "properties": {}, "type": "Feature"}, {"bbox": [8.505445, 47.391584, 8.507126, 47.39263], "geometry": {"coordinates": [[[8.507126, 47.39263], [8.505445, 47.391584]]], "type": "MultiLineString"}, "id": "58", "properties": {}, "type": "Feature"}, {"bbox": [8.555004, 47.370399, 8.555862, 47.370737], "geometry": {"coordinates": [[[8.555004, 47.370399], [8.555862, 47.370737]]], "type": "MultiLineString"}, "id": "59", "properties": {}, "type": "Feature"}, {"bbox": [8.55549, 47.357466, 8.555794, 47.357518], "geometry": {"coordinates": [[[8.55549, 47.357466], [8.555711, 47.357518], [8.555794, 47.357512]]], "type": "MultiLineString"}, "id": "61", "properties": {}, "type": "Feature"}, {"bbox": [8.481337, 47.385146, 8.481953, 47.385946], "geometry": {"coordinates": [[[8.481953, 47.385946], [8.481624, 47.38552], [8.481337, 47.385146]]], "type": "MultiLineString"}, "id": "65", "properties": {}, "type": "Feature"}, {"bbox": [8.525816, 47.408585, 8.526308, 47.408814], "geometry": {"coordinates": [[[8.525816, 47.408585], [8.526308, 47.408814]]], "type": "MultiLineString"}, "id": "66", "properties": {}, "type": "Feature"}, {"bbox": [8.546838, 47.407641, 8.546953, 47.407664], "geometry": {"coordinates": [[[8.546838, 47.407641], [8.546953, 47.407664]]], "type": "MultiLineString"}, "id": "68", "properties": {}, "type": "Feature"}, {"bbox": [8.539419, 47.412679, 8.540145, 47.413455], "geometry": {"coordinates": [[[8.540145, 47.412679], [8.540048, 47.412705], [8.539419, 47.413455]]], "type": "MultiLineString"}, "id": "75", "properties": {}, "type": "Feature"}, {"bbox": [8.484598, 47.383209, 8.485921, 47.384759], "geometry": {"coordinates": [[[8.485921, 47.384759], [8.485702, 47.384423], [8.485572, 47.384271], [8.485221, 47.383935], [8.484924, 47.383675], [8.484802, 47.383526], [8.484598, 47.383209]]], "type": "MultiLineString"}, "id": "76", "properties": {}, "type": "Feature"}, {"bbox": [8.535232, 47.381952, 8.535993, 47.382427], "geometry": {"coordinates": [[[8.535232, 47.381952], [8.535993, 47.382427]]], "type": "MultiLineString"}, "id": "79", "properties": {}, "type": "Feature"}, {"bbox": [8.531702, 47.360378, 8.532397, 47.360477], "geometry": {"coordinates": [[[8.532397, 47.360477], [8.531702, 47.360378]]], "type": "MultiLineString"}, "id": "80", "properties": {}, "type": "Feature"}, {"bbox": [8.539747, 47.387852, 8.540364, 47.388969], "geometry": {"coordinates": [[[8.540118, 47.387852], [8.540128, 47.387932], [8.539758, 47.388777], [8.539747, 47.388838], [8.540364, 47.388969]]], "type": "MultiLineString"}, "id": "81", "properties": {}, "type": "Feature"}, {"bbox": [8.55946, 47.367329, 8.559788, 47.36749], "geometry": {"coordinates": [[[8.55946, 47.367329], [8.559711, 47.367449], [8.559788, 47.36749]]], "type": "MultiLineString"}, "id": "87", "properties": {}, "type": "Feature"}, {"bbox": [8.496799, 47.424215, 8.497746, 47.425672], "geometry": {"coordinates": [[[8.497746, 47.425672], [8.496906, 47.424378], [8.496799, 47.424215]]], "type": "MultiLineString"}, "id": "89", "properties": {}, "type": "Feature"}, {"bbox": [8.483049, 47.406832, 8.484317, 47.407331], "geometry": {"coordinates": [[[8.484317, 47.406832], [8.483049, 47.407331]]], "type": "MultiLineString"}, "id": "91", "properties": {}, "type": "Feature"}, {"bbox": [8.514808, 47.41461, 8.515154, 47.415096], "geometry": {"coordinates": [[[8.515154, 47.415096], [8.514808, 47.41461]]], "type": "MultiLineString"}, "id": "93", "properties": {}, "type": "Feature"}, {"bbox": [8.539949, 47.374577, 8.53998, 47.374972], "geometry": {"coordinates": [[[8.53998, 47.374972], [8.539949, 47.374577]]], "type": "MultiLineString"}, "id": "96", "properties": {}, "type": "Feature"}, {"bbox": [8.511942, 47.377607, 8.513051, 47.378397], "geometry": {"coordinates": [[[8.513051, 47.378397], [8.511942, 47.377607]]], "type": "MultiLineString"}, "id": "97", "properties": {}, "type": "Feature"}, {"bbox": [8.551204, 47.35867, 8.551396, 47.359122], "geometry": {"coordinates": [[[8.551204, 47.359122], [8.551396, 47.35867]]], "type": "MultiLineString"}, "id": "100", "properties": {}, "type": "Feature"}, {"bbox": [8.519349, 47.374977, 8.521408, 47.377923], "geometry": {"coordinates": [[[8.519349, 47.374977], [8.519911, 47.376084], [8.519935, 47.376113], [8.519962, 47.37614], [8.519993, 47.376166], [8.520028, 47.37619], [8.520323, 47.376417], [8.520335, 47.376426], [8.520346, 47.376435], [8.520356, 47.376445], [8.520364, 47.376456], [8.520645, 47.37685], [8.521033, 47.377393], [8.521408, 47.377923]]], "type": "MultiLineString"}, "id": "101", "properties": {}, "type": "Feature"}, {"bbox": [8.520459, 47.374728, 8.52235, 47.377593], "geometry": {"coordinates": [[[8.520459, 47.374728], [8.520909, 47.375593], [8.520989, 47.375704], [8.521581, 47.376523], [8.52197, 47.377048], [8.522317, 47.377516], [8.52235, 47.377593]]], "type": "MultiLineString"}, "id": "103", "properties": {}, "type": "Feature"}, {"bbox": [8.53015, 47.374003, 8.530819, 47.374326], "geometry": {"coordinates": [[[8.53015, 47.374003], [8.530819, 47.374326]]], "type": "MultiLineString"}, "id": "105", "properties": {}, "type": "Feature"}, {"bbox": [8.528748, 47.373701, 8.529718, 47.374454], "geometry": {"coordinates": [[[8.529718, 47.373701], [8.528857, 47.374371], [8.528748, 47.374454]]], "type": "MultiLineString"}, "id": "106", "properties": {}, "type": "Feature"}, {"bbox": [8.511043, 47.368936, 8.51237, 47.369696], "geometry": {"coordinates": [[[8.51237, 47.369696], [8.511043, 47.368936]]], "type": "MultiLineString"}, "id": "112", "properties": {}, "type": "Feature"}, {"bbox": [8.508539, 47.383143, 8.51006, 47.383798], "geometry": {"coordinates": [[[8.51006, 47.383143], [8.508539, 47.383798]]], "type": "MultiLineString"}, "id": "113", "properties": {}, "type": "Feature"}, {"bbox": [8.507787, 47.421066, 8.508767, 47.421856], "geometry": {"coordinates": [[[8.507787, 47.421856], [8.507947, 47.421788], [8.508767, 47.421066]]], "type": "MultiLineString"}, "id": "114", "properties": {}, "type": "Feature"}, {"bbox": [8.540988, 47.411357, 8.54133, 47.41177], "geometry": {"coordinates": [[[8.54133, 47.411357], [8.540988, 47.41177]]], "type": "MultiLineString"}, "id": "115", "properties": {}, "type": "Feature"}, {"bbox": [8.476874, 47.383389, 8.477671, 47.384206], "geometry": {"coordinates": [[[8.476874, 47.384206], [8.477671, 47.383389]]], "type": "MultiLineString"}, "id": "122", "properties": {}, "type": "Feature"}, {"bbox": [8.557929, 47.3785, 8.558372, 47.379348], "geometry": {"coordinates": [[[8.558372, 47.3785], [8.558315, 47.378575], [8.557976, 47.379283], [8.557929, 47.379348]]], "type": "MultiLineString"}, "id": "130", "properties": {}, "type": "Feature"}, {"bbox": [8.544221, 47.41536, 8.545236, 47.415639], "geometry": {"coordinates": [[[8.545236, 47.415639], [8.544221, 47.41536]]], "type": "MultiLineString"}, "id": "143", "properties": {}, "type": "Feature"}, {"bbox": [8.554119, 47.355696, 8.555443, 47.356143], "geometry": {"coordinates": [[[8.554119, 47.355696], [8.555443, 47.356143]]], "type": "MultiLineString"}, "id": "145", "properties": {}, "type": "Feature"}, {"bbox": [8.535588, 47.409956, 8.535803, 47.410475], "geometry": {"coordinates": [[[8.535588, 47.409956], [8.535803, 47.410475]]], "type": "MultiLineString"}, "id": "160", "properties": {}, "type": "Feature"}, {"bbox": [8.540226, 47.42424, 8.540756, 47.424702], "geometry": {"coordinates": [[[8.540226, 47.42424], [8.540756, 47.424702]]], "type": "MultiLineString"}, "id": "170", "properties": {}, "type": "Feature"}, {"bbox": [8.534764, 47.341014, 8.536021, 47.341271], "geometry": {"coordinates": [[[8.536021, 47.341271], [8.534764, 47.341014]]], "type": "MultiLineString"}, "id": "175", "properties": {}, "type": "Feature"}, {"bbox": [8.542855, 47.408845, 8.543367, 47.409243], "geometry": {"coordinates": [[[8.542855, 47.408845], [8.543367, 47.409243]]], "type": "MultiLineString"}, "id": "178", "properties": {}, "type": "Feature"}, {"bbox": [8.553874, 47.369458, 8.554732, 47.370614], "geometry": {"coordinates": [[[8.553874, 47.370614], [8.554267, 47.37009], [8.554732, 47.369458]]], "type": "MultiLineString"}, "id": "182", "properties": {}, "type": "Feature"}, {"bbox": [8.513936, 47.374979, 8.514891, 47.375543], "geometry": {"coordinates": [[[8.514891, 47.375543], [8.513936, 47.374979]]], "type": "MultiLineString"}, "id": "183", "properties": {}, "type": "Feature"}, {"bbox": [8.548201, 47.417484, 8.549156, 47.417889], "geometry": {"coordinates": [[[8.548201, 47.417889], [8.548909, 47.417606], [8.548924, 47.417598], [8.549155, 47.417484], [8.549156, 47.417484]]], "type": "MultiLineString"}, "id": "184", "properties": {}, "type": "Feature"}, {"bbox": [8.531514, 47.35971, 8.531968, 47.359824], "geometry": {"coordinates": [[[8.531968, 47.359824], [8.531514, 47.35971]]], "type": "MultiLineString"}, "id": "187", "properties": {}, "type": "Feature"}, {"bbox": [8.507613, 47.39924, 8.507892, 47.399977], "geometry": {"coordinates": [[[8.507708, 47.39924], [8.507892, 47.399401], [8.507613, 47.399977]]], "type": "MultiLineString"}, "id": "188", "properties": {}, "type": "Feature"}, {"bbox": [8.51074, 47.42252, 8.512118, 47.423055], "geometry": {"coordinates": [[[8.51074, 47.423055], [8.511071, 47.422929], [8.512118, 47.42252]]], "type": "MultiLineString"}, "id": "198", "properties": {}, "type": "Feature"}, {"bbox": [8.516034, 47.375641, 8.516642, 47.379187], "geometry": {"coordinates": [[[8.516642, 47.375641], [8.516597, 47.375799], [8.516517, 47.376285], [8.516391, 47.377008], [8.51633, 47.377377], [8.516264, 47.377781], [8.516149, 47.37849], [8.516111, 47.37872], [8.516034, 47.379187]]], "type": "MultiLineString"}, "id": "200", "properties": {}, "type": "Feature"}, {"bbox": [8.571958, 47.413738, 8.573424, 47.414277], "geometry": {"coordinates": [[[8.571958, 47.413738], [8.57251, 47.414277], [8.572667, 47.414236], [8.573424, 47.413864]]], "type": "MultiLineString"}, "id": "203", "properties": {}, "type": "Feature"}, {"bbox": [8.525398, 47.385975, 8.526813, 47.386602], "geometry": {"coordinates": [[[8.526813, 47.385975], [8.526612, 47.386027], [8.525398, 47.386602]]], "type": "MultiLineString"}, "id": "204", "properties": {}, "type": "Feature"}, {"bbox": [8.560396, 47.40744, 8.562057, 47.407501], "geometry": {"coordinates": [[[8.560396, 47.40744], [8.561895, 47.407466], [8.562057, 47.407501]]], "type": "MultiLineString"}, "id": "205", "properties": {}, "type": "Feature"}, {"bbox": [8.563865, 47.40985, 8.564775, 47.410192], "geometry": {"coordinates": [[[8.563865, 47.40985], [8.564674, 47.410164], [8.564707, 47.410175], [8.564741, 47.410184], [8.564775, 47.410192]]], "type": "MultiLineString"}, "id": "207", "properties": {}, "type": "Feature"}, {"bbox": [8.497676, 47.401882, 8.497857, 47.402026], "geometry": {"coordinates": [[[8.497676, 47.401882], [8.497704, 47.401892], [8.49773, 47.401904], [8.497754, 47.401918], [8.497777, 47.401933], [8.497798, 47.40195], [8.497816, 47.401967], [8.497832, 47.401986], [8.497846, 47.402005], [8.497857, 47.402026]]], "type": "MultiLineString"}, "id": "212", "properties": {}, "type": "Feature"}, {"bbox": [8.578796, 47.356757, 8.579431, 47.356941], "geometry": {"coordinates": [[[8.578796, 47.356757], [8.578874, 47.356828], [8.579431, 47.356941]]], "type": "MultiLineString"}, "id": "220", "properties": {}, "type": "Feature"}, {"bbox": [8.545189, 47.410918, 8.546819, 47.411259], "geometry": {"coordinates": [[[8.546819, 47.411259], [8.546572, 47.411234], [8.545963, 47.411145], [8.545927, 47.411139], [8.545891, 47.411132], [8.545856, 47.411123], [8.545791, 47.411103], [8.545189, 47.410918]]], "type": "MultiLineString"}, "id": "226", "properties": {}, "type": "Feature"}, {"bbox": [8.496704, 47.383155, 8.497351, 47.383499], "geometry": {"coordinates": [[[8.497351, 47.383155], [8.497304, 47.383217], [8.496704, 47.383499]]], "type": "MultiLineString"}, "id": "233", "properties": {}, "type": "Feature"}, {"bbox": [8.532082, 47.358608, 8.534475, 47.358942], "geometry": {"coordinates": [[[8.534475, 47.358942], [8.533678, 47.358832], [8.533093, 47.358755], [8.532283, 47.358626], [8.532082, 47.358608]]], "type": "MultiLineString"}, "id": "236", "properties": {}, "type": "Feature"}, {"bbox": [8.526904, 47.35914, 8.527771, 47.359249], "geometry": {"coordinates": [[[8.527771, 47.359249], [8.527025, 47.359188], [8.526904, 47.35914]]], "type": "MultiLineString"}, "id": "241", "properties": {}, "type": "Feature"}, {"bbox": [8.529812, 47.374266, 8.530421, 47.374644], "geometry": {"coordinates": [[[8.529812, 47.374266], [8.530421, 47.374644]]], "type": "MultiLineString"}, "id": "244", "properties": {}, "type": "Feature"}, {"bbox": [8.521762, 47.389739, 8.522557, 47.390119], "geometry": {"coordinates": [[[8.522557, 47.389739], [8.521762, 47.390119]]], "type": "MultiLineString"}, "id": "246", "properties": {}, "type": "Feature"}, {"bbox": [8.477053, 47.389038, 8.477514, 47.389855], "geometry": {"coordinates": [[[8.477514, 47.389855], [8.477375, 47.389508], [8.477296, 47.389355], [8.477108, 47.389093], [8.477053, 47.389038]]], "type": "MultiLineString"}, "id": "248", "properties": {}, "type": "Feature"}, {"bbox": [8.541742, 47.426908, 8.542747, 47.427333], "geometry": {"coordinates": [[[8.541742, 47.427333], [8.541822, 47.427327], [8.5419, 47.427316], [8.541977, 47.427301], [8.542052, 47.427282], [8.542124, 47.427259], [8.542192, 47.427231], [8.542747, 47.426908]]], "type": "MultiLineString"}, "id": "249", "properties": {}, "type": "Feature"}, {"bbox": [8.574624, 47.384142, 8.57546, 47.386406], "geometry": {"coordinates": [[[8.574624, 47.384142], [8.574691, 47.384187], [8.574751, 47.384237], [8.574805, 47.384289], [8.574852, 47.384345], [8.574893, 47.384403], [8.574925, 47.384463], [8.574951, 47.384525], [8.574968, 47.384588], [8.575324, 47.385914], [8.57546, 47.386406]]], "type": "MultiLineString"}, "id": "252", "properties": {}, "type": "Feature"}, {"bbox": [8.570096, 47.362256, 8.573332, 47.364628], "geometry": {"coordinates": [[[8.570096, 47.364628], [8.571066, 47.363849], [8.571269, 47.363679], [8.571482, 47.363507], [8.571687, 47.363351], [8.571873, 47.363213], [8.572077, 47.363074], [8.572229, 47.36297], [8.572495, 47.362793], [8.573184, 47.362351], [8.573332, 47.362256]]], "type": "MultiLineString"}, "id": "253", "properties": {}, "type": "Feature"}, {"bbox": [8.548847, 47.416338, 8.549156, 47.416792], "geometry": {"coordinates": [[[8.548847, 47.416338], [8.5489, 47.416356], [8.548959, 47.416464], [8.549156, 47.416792]]], "type": "MultiLineString"}, "id": "255", "properties": {}, "type": "Feature"}, {"bbox": [8.573216, 47.347864, 8.574392, 47.349231], "geometry": {"coordinates": [[[8.573216, 47.349231], [8.573359, 47.349146], [8.57349, 47.349053], [8.573611, 47.348954], [8.573719, 47.348848], [8.573975, 47.34853], [8.5742, 47.348202], [8.574392, 47.347864]]], "type": "MultiLineString"}, "id": "257", "properties": {}, "type": "Feature"}, {"bbox": [8.544009, 47.378735, 8.544287, 47.378885], "geometry": {"coordinates": [[[8.544287, 47.378736], [8.54406, 47.378735], [8.544009, 47.378885]]], "type": "MultiLineString"}, "id": "260", "properties": {}, "type": "Feature"}, {"bbox": [8.591865, 47.399556, 8.592582, 47.400398], "geometry": {"coordinates": [[[8.591865, 47.399556], [8.592088, 47.399691], [8.592127, 47.399717], [8.592163, 47.399745], [8.592194, 47.399775], [8.592222, 47.399807], [8.592245, 47.399841], [8.592582, 47.400398]]], "type": "MultiLineString"}, "id": "263", "properties": {}, "type": "Feature"}, {"bbox": [8.538034, 47.387008, 8.538337, 47.387546], "geometry": {"coordinates": [[[8.538034, 47.387546], [8.538337, 47.387008]]], "type": "MultiLineString"}, "id": "270", "properties": {}, "type": "Feature"}, {"bbox": [8.516315, 47.396453, 8.521094, 47.397399], "geometry": {"coordinates": [[[8.521094, 47.396453], [8.521064, 47.396625], [8.521058, 47.396641], [8.521051, 47.396656], [8.521041, 47.39667], [8.52103, 47.396684], [8.521016, 47.396697], [8.521001, 47.396709], [8.520985, 47.39672], [8.520967, 47.39673], [8.520948, 47.396739], [8.520927, 47.396747], [8.520906, 47.396753], [8.520884, 47.396758], [8.520862, 47.396762], [8.519692, 47.396942], [8.519174, 47.397029], [8.518661, 47.397132], [8.518155, 47.397249], [8.517566, 47.39733], [8.517043, 47.397371], [8.516688, 47.397399], [8.516315, 47.397395]]], "type": "MultiLineString"}, "id": "271", "properties": {}, "type": "Feature"}, {"bbox": [8.49241, 47.376479, 8.493132, 47.377047], "geometry": {"coordinates": [[[8.493132, 47.377047], [8.49241, 47.376479]]], "type": "MultiLineString"}, "id": "272", "properties": {}, "type": "Feature"}, {"bbox": [8.537968, 47.396186, 8.539433, 47.398338], "geometry": {"coordinates": [[[8.53877, 47.396186], [8.539325, 47.396708], [8.539433, 47.396823], [8.539015, 47.397268], [8.538546, 47.397726], [8.537968, 47.398338]]], "type": "MultiLineString"}, "id": "288", "properties": {}, "type": "Feature"}, {"bbox": [8.521146, 47.370698, 8.522118, 47.371487], "geometry": {"coordinates": [[[8.522118, 47.370698], [8.521843, 47.370921], [8.521146, 47.371487]]], "type": "MultiLineString"}, "id": "289", "properties": {}, "type": "Feature"}, {"bbox": [8.566924, 47.364948, 8.567035, 47.365003], "geometry": {"coordinates": [[[8.566924, 47.364948], [8.567035, 47.365003]]], "type": "MultiLineString"}, "id": "290", "properties": {}, "type": "Feature"}, {"bbox": [8.528423, 47.384313, 8.528632, 47.384609], "geometry": {"coordinates": [[[8.528632, 47.384609], [8.528423, 47.384313]]], "type": "MultiLineString"}, "id": "292", "properties": {}, "type": "Feature"}, {"bbox": [8.515801, 47.366105, 8.517589, 47.366595], "geometry": {"coordinates": [[[8.517589, 47.366595], [8.517435, 47.366542], [8.517273, 47.366491], [8.517147, 47.366456], [8.517026, 47.366424], [8.516919, 47.366397], [8.516812, 47.366369], [8.51591, 47.366135], [8.515801, 47.366105]]], "type": "MultiLineString"}, "id": "295", "properties": {}, "type": "Feature"}, {"bbox": [8.557055, 47.356942, 8.558179, 47.357319], "geometry": {"coordinates": [[[8.557055, 47.356942], [8.557275, 47.356993], [8.558179, 47.357319]]], "type": "MultiLineString"}, "id": "303", "properties": {}, "type": "Feature"}, {"bbox": [8.545249, 47.381733, 8.547567, 47.382089], "geometry": {"coordinates": [[[8.545249, 47.381769], [8.545544, 47.381733], [8.546274, 47.381884], [8.547334, 47.382089], [8.547503, 47.382035], [8.547567, 47.381992]]], "type": "MultiLineString"}, "id": "305", "properties": {}, "type": "Feature"}, {"bbox": [8.513533, 47.330898, 8.514398, 47.331242], "geometry": {"coordinates": [[[8.514398, 47.330898], [8.513533, 47.331242], [8.513533, 47.331242]]], "type": "MultiLineString"}, "id": "306", "properties": {}, "type": "Feature"}, {"bbox": [8.493285, 47.399491, 8.495084, 47.399705], "geometry": {"coordinates": [[[8.495084, 47.399491], [8.495024, 47.399499], [8.494682, 47.399533], [8.494652, 47.399533], [8.494444, 47.399551], [8.494322, 47.399564], [8.494051, 47.399598], [8.493486, 47.399662], [8.493285, 47.399705]]], "type": "MultiLineString"}, "id": "307", "properties": {}, "type": "Feature"}, {"bbox": [8.483488, 47.390993, 8.483697, 47.391307], "geometry": {"coordinates": [[[8.483488, 47.390993], [8.483697, 47.391307]]], "type": "MultiLineString"}, "id": "314", "properties": {}, "type": "Feature"}, {"bbox": [8.600038, 47.360078, 8.602454, 47.360735], "geometry": {"coordinates": [[[8.600038, 47.360078], [8.602454, 47.360735]]], "type": "MultiLineString"}, "id": "323", "properties": {}, "type": "Feature"}, {"bbox": [8.501703, 47.369904, 8.501963, 47.370573], "geometry": {"coordinates": [[[8.501963, 47.370573], [8.501703, 47.369904]]], "type": "MultiLineString"}, "id": "324", "properties": {}, "type": "Feature"}, {"bbox": [8.563857, 47.409549, 8.564038, 47.409642], "geometry": {"coordinates": [[[8.563857, 47.409549], [8.564038, 47.409642]]], "type": "MultiLineString"}, "id": "327", "properties": {}, "type": "Feature"}, {"bbox": [8.514183, 47.357801, 8.514684, 47.357926], "geometry": {"coordinates": [[[8.514684, 47.357926], [8.514513, 47.357892], [8.514345, 47.357851], [8.514183, 47.357801]]], "type": "MultiLineString"}, "id": "329", "properties": {}, "type": "Feature"}, {"bbox": [8.530502, 47.40306, 8.530536, 47.403363], "geometry": {"coordinates": [[[8.530502, 47.40306], [8.530517, 47.403162], [8.530528, 47.403264], [8.530536, 47.403363]]], "type": "MultiLineString"}, "id": "330", "properties": {}, "type": "Feature"}, {"bbox": [8.500062, 47.401442, 8.501041, 47.401813], "geometry": {"coordinates": [[[8.501041, 47.401442], [8.500631, 47.401612], [8.500062, 47.401813]]], "type": "MultiLineString"}, "id": "333", "properties": {}, "type": "Feature"}, {"bbox": [8.553001, 47.404931, 8.553465, 47.405888], "geometry": {"coordinates": [[[8.553001, 47.404931], [8.553287, 47.405521], [8.553465, 47.405888]]], "type": "MultiLineString"}, "id": "334", "properties": {}, "type": "Feature"}, {"bbox": [8.541511, 47.411357, 8.542068, 47.411913], "geometry": {"coordinates": [[[8.541511, 47.411855], [8.541664, 47.411913], [8.542068, 47.411436], [8.541935, 47.411357]]], "type": "MultiLineString"}, "id": "335", "properties": {}, "type": "Feature"}, {"bbox": [8.540288, 47.411499, 8.540988, 47.41177], "geometry": {"coordinates": [[[8.540988, 47.41177], [8.540288, 47.411499]]], "type": "MultiLineString"}, "id": "336", "properties": {}, "type": "Feature"}, {"bbox": [8.555959, 47.416029, 8.556502, 47.416934], "geometry": {"coordinates": [[[8.555959, 47.416934], [8.556502, 47.416029]]], "type": "MultiLineString"}, "id": "346", "properties": {}, "type": "Feature"}, {"bbox": [8.512824, 47.366394, 8.514104, 47.367348], "geometry": {"coordinates": [[[8.514104, 47.366394], [8.513968, 47.366493], [8.512824, 47.367348]]], "type": "MultiLineString"}, "id": "350", "properties": {}, "type": "Feature"}, {"bbox": [8.526336, 47.409919, 8.526732, 47.410236], "geometry": {"coordinates": [[[8.526732, 47.410236], [8.526481, 47.410037], [8.526336, 47.409919]]], "type": "MultiLineString"}, "id": "354", "properties": {}, "type": "Feature"}, {"bbox": [8.547043, 47.418525, 8.547434, 47.418546], "geometry": {"coordinates": [[[8.547434, 47.418525], [8.547043, 47.418546]]], "type": "MultiLineString"}, "id": "355", "properties": {}, "type": "Feature"}, {"bbox": [8.49686, 47.401938, 8.496876, 47.402125], "geometry": {"coordinates": [[[8.496876, 47.402125], [8.49686, 47.401938]]], "type": "MultiLineString"}, "id": "358", "properties": {}, "type": "Feature"}, {"bbox": [8.516789, 47.333568, 8.517229, 47.333698], "geometry": {"coordinates": [[[8.517229, 47.333698], [8.516789, 47.333568]]], "type": "MultiLineString"}, "id": "366", "properties": {}, "type": "Feature"}, {"bbox": [8.510096, 47.421535, 8.51101, 47.421894], "geometry": {"coordinates": [[[8.51101, 47.421535], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "368", "properties": {}, "type": "Feature"}, {"bbox": [8.569375, 47.406552, 8.570218, 47.406948], "geometry": {"coordinates": [[[8.570218, 47.406552], [8.569375, 47.406948]]], "type": "MultiLineString"}, "id": "369", "properties": {}, "type": "Feature"}, {"bbox": [8.47656, 47.38854, 8.478052, 47.38928], "geometry": {"coordinates": [[[8.478052, 47.38854], [8.477053, 47.389038], [8.47656, 47.38928]]], "type": "MultiLineString"}, "id": "370", "properties": {}, "type": "Feature"}, {"bbox": [8.536819, 47.371786, 8.537622, 47.372287], "geometry": {"coordinates": [[[8.537622, 47.372287], [8.537621, 47.372285], [8.537617, 47.372281], [8.537613, 47.372277], [8.537608, 47.372274], [8.537603, 47.372271], [8.5375, 47.372223], [8.537401, 47.37217], [8.537307, 47.372113], [8.536819, 47.371786]]], "type": "MultiLineString"}, "id": "372", "properties": {}, "type": "Feature"}, {"bbox": [8.478276, 47.390769, 8.478633, 47.390912], "geometry": {"coordinates": [[[8.478633, 47.390769], [8.478276, 47.390912]]], "type": "MultiLineString"}, "id": "377", "properties": {}, "type": "Feature"}, {"bbox": [8.492279, 47.369976, 8.492862, 47.370245], "geometry": {"coordinates": [[[8.492862, 47.369976], [8.492279, 47.370245]]], "type": "MultiLineString"}, "id": "384", "properties": {}, "type": "Feature"}, {"bbox": [8.496499, 47.42586, 8.496825, 47.425929], "geometry": {"coordinates": [[[8.496825, 47.42586], [8.496499, 47.425929]]], "type": "MultiLineString"}, "id": "389", "properties": {}, "type": "Feature"}, {"bbox": [8.547623, 47.419173, 8.548034, 47.419589], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547752, 47.419316], [8.547889, 47.419454], [8.548034, 47.419589]]], "type": "MultiLineString"}, "id": "391", "properties": {}, "type": "Feature"}, {"bbox": [8.483352, 47.390441, 8.484391, 47.390712], "geometry": {"coordinates": [[[8.484391, 47.390441], [8.483516, 47.39068], [8.483352, 47.390712]]], "type": "MultiLineString"}, "id": "400", "properties": {}, "type": "Feature"}, {"bbox": [8.534001, 47.40054, 8.534439, 47.40067], "geometry": {"coordinates": [[[8.534001, 47.40067], [8.534313, 47.400568], [8.534354, 47.400557], [8.534397, 47.400548], [8.534439, 47.40054]]], "type": "MultiLineString"}, "id": "401", "properties": {}, "type": "Feature"}, {"bbox": [8.543566, 47.427357, 8.545146, 47.427779], "geometry": {"coordinates": [[[8.543566, 47.427357], [8.54384, 47.42744], [8.54452, 47.427529], [8.544971, 47.427644], [8.54507, 47.427755], [8.545146, 47.427779]]], "type": "MultiLineString"}, "id": "404", "properties": {}, "type": "Feature"}, {"bbox": [8.527497, 47.339785, 8.529022, 47.341281], "geometry": {"coordinates": [[[8.527497, 47.341281], [8.528207, 47.340583], [8.529022, 47.339785]]], "type": "MultiLineString"}, "id": "417", "properties": {}, "type": "Feature"}, {"bbox": [8.557364, 47.354743, 8.557998, 47.355089], "geometry": {"coordinates": [[[8.557364, 47.354743], [8.557599, 47.354844], [8.557998, 47.355089]]], "type": "MultiLineString"}, "id": "425", "properties": {}, "type": "Feature"}, {"bbox": [8.540875, 47.388426, 8.541556, 47.389231], "geometry": {"coordinates": [[[8.540875, 47.388426], [8.540913, 47.388454], [8.540946, 47.388485], [8.540975, 47.388519], [8.541, 47.388553], [8.541556, 47.389231]]], "type": "MultiLineString"}, "id": "426", "properties": {}, "type": "Feature"}, {"bbox": [8.556338, 47.376717, 8.557057, 47.377443], "geometry": {"coordinates": [[[8.557057, 47.377443], [8.556903, 47.377333], [8.556338, 47.376882], [8.556678, 47.376717], [8.556776, 47.376733]]], "type": "MultiLineString"}, "id": "427", "properties": {}, "type": "Feature"}, {"bbox": [8.525683, 47.343363, 8.526351, 47.344019], "geometry": {"coordinates": [[[8.525683, 47.344019], [8.526351, 47.343363]]], "type": "MultiLineString"}, "id": "429", "properties": {}, "type": "Feature"}, {"bbox": [8.524193, 47.410553, 8.525735, 47.411394], "geometry": {"coordinates": [[[8.525735, 47.411394], [8.525597, 47.41134], [8.524412, 47.410679], [8.524193, 47.410553]]], "type": "MultiLineString"}, "id": "431", "properties": {}, "type": "Feature"}, {"bbox": [8.531028, 47.358608, 8.532082, 47.360957], "geometry": {"coordinates": [[[8.531028, 47.360957], [8.531149, 47.360598], [8.531514, 47.35971], [8.531592, 47.359559], [8.531811, 47.359218], [8.531961, 47.358836], [8.532082, 47.358608]]], "type": "MultiLineString"}, "id": "434", "properties": {}, "type": "Feature"}, {"bbox": [8.5506, 47.38133, 8.551155, 47.38174], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.551155, 47.38133]]], "type": "MultiLineString"}, "id": "435", "properties": {}, "type": "Feature"}, {"bbox": [8.539909, 47.405038, 8.540698, 47.405542], "geometry": {"coordinates": [[[8.539909, 47.405038], [8.540698, 47.405542]]], "type": "MultiLineString"}, "id": "440", "properties": {}, "type": "Feature"}, {"bbox": [8.54144, 47.411855, 8.541511, 47.411941], "geometry": {"coordinates": [[[8.54144, 47.411941], [8.541511, 47.411855]]], "type": "MultiLineString"}, "id": "442", "properties": {}, "type": "Feature"}, {"bbox": [8.487277, 47.384351, 8.48828, 47.387268], "geometry": {"coordinates": [[[8.48828, 47.387268], [8.488231, 47.38714], [8.488094, 47.386739], [8.488057, 47.386629], [8.487534, 47.385103], [8.487428, 47.384793], [8.487277, 47.384351]]], "type": "MultiLineString"}, "id": "444", "properties": {}, "type": "Feature"}, {"bbox": [8.521707, 47.359947, 8.521981, 47.361264], "geometry": {"coordinates": [[[8.521707, 47.361264], [8.521881, 47.360429], [8.521981, 47.359947]]], "type": "MultiLineString"}, "id": "445", "properties": {}, "type": "Feature"}, {"bbox": [8.567542, 47.403817, 8.56759, 47.40429], "geometry": {"coordinates": [[[8.567555, 47.40429], [8.567566, 47.404199], [8.56759, 47.403954], [8.567542, 47.403817]]], "type": "MultiLineString"}, "id": "448", "properties": {}, "type": "Feature"}, {"bbox": [8.523767, 47.375899, 8.525344, 47.376417], "geometry": {"coordinates": [[[8.525344, 47.375899], [8.524393, 47.376198], [8.523767, 47.376417]]], "type": "MultiLineString"}, "id": "453", "properties": {}, "type": "Feature"}, {"bbox": [8.524922, 47.346887, 8.526855, 47.348099], "geometry": {"coordinates": [[[8.526855, 47.346936], [8.526698, 47.3469], [8.52668, 47.346895], [8.526661, 47.346891], [8.526641, 47.346888], [8.526621, 47.346887], [8.526601, 47.346887], [8.526582, 47.346888], [8.526562, 47.34689], [8.526543, 47.346894], [8.526524, 47.346898], [8.526506, 47.346904], [8.526489, 47.346911], [8.526472, 47.346918], [8.526457, 47.346927], [8.526443, 47.346937], [8.525547, 47.347627], [8.525318, 47.347793], [8.524922, 47.348099]]], "type": "MultiLineString"}, "id": "459", "properties": {}, "type": "Feature"}, {"bbox": [8.48439, 47.388246, 8.486462, 47.391481], "geometry": {"coordinates": [[[8.486462, 47.391481], [8.485948, 47.390667], [8.485763, 47.390374], [8.485578, 47.390087], [8.485363, 47.389754], [8.485089, 47.38933], [8.485009, 47.389206], [8.484705, 47.388734], [8.48439, 47.388246]]], "type": "MultiLineString"}, "id": "460", "properties": {}, "type": "Feature"}, {"bbox": [8.479128, 47.374269, 8.482626, 47.377507], "geometry": {"coordinates": [[[8.482626, 47.374269], [8.482092, 47.374553], [8.481873, 47.374761], [8.481768, 47.374862], [8.481563, 47.375079], [8.481355, 47.375294], [8.481142, 47.375507], [8.480517, 47.376306], [8.480418, 47.376427], [8.480288, 47.376555], [8.47942, 47.377277], [8.479128, 47.377507]]], "type": "MultiLineString"}, "id": "461", "properties": {}, "type": "Feature"}, {"bbox": [8.502116, 47.404405, 8.503534, 47.405021], "geometry": {"coordinates": [[[8.503534, 47.404405], [8.503499, 47.404427], [8.503462, 47.404446], [8.503422, 47.404462], [8.502882, 47.404656], [8.502796, 47.404688], [8.502713, 47.404723], [8.502633, 47.404762], [8.502116, 47.405021]]], "type": "MultiLineString"}, "id": "464", "properties": {}, "type": "Feature"}, {"bbox": [8.547074, 47.389451, 8.547841, 47.39216], "geometry": {"coordinates": [[[8.547074, 47.389451], [8.547156, 47.389729], [8.547273, 47.390149], [8.547566, 47.391189], [8.547807, 47.39204], [8.547841, 47.39216]]], "type": "MultiLineString"}, "id": "465", "properties": {}, "type": "Feature"}, {"bbox": [8.548657, 47.360265, 8.548781, 47.36029], "geometry": {"coordinates": [[[8.548657, 47.360265], [8.548781, 47.36029]]], "type": "MultiLineString"}, "id": "472", "properties": {}, "type": "Feature"}, {"bbox": [8.557177, 47.356786, 8.557886, 47.356962], "geometry": {"coordinates": [[[8.557177, 47.356825], [8.557279, 47.356786], [8.557886, 47.356962]]], "type": "MultiLineString"}, "id": "473", "properties": {}, "type": "Feature"}, {"bbox": [8.550783, 47.357352, 8.552444, 47.357813], "geometry": {"coordinates": [[[8.550783, 47.357352], [8.551084, 47.357442], [8.551831, 47.357646], [8.552444, 47.357813]]], "type": "MultiLineString"}, "id": "474", "properties": {}, "type": "Feature"}, {"bbox": [8.556653, 47.369314, 8.557234, 47.370009], "geometry": {"coordinates": [[[8.556653, 47.370009], [8.55672, 47.369971], [8.556987, 47.369746], [8.556988, 47.369745], [8.557069, 47.369663], [8.557146, 47.369579], [8.557219, 47.369494], [8.557229, 47.369458], [8.557234, 47.369422], [8.557234, 47.369386], [8.55723, 47.369349], [8.55722, 47.369314]]], "type": "MultiLineString"}, "id": "477", "properties": {}, "type": "Feature"}, {"bbox": [8.490312, 47.377987, 8.492903, 47.379847], "geometry": {"coordinates": [[[8.492903, 47.377987], [8.491322, 47.379122], [8.490312, 47.379847]]], "type": "MultiLineString"}, "id": "479", "properties": {}, "type": "Feature"}, {"bbox": [8.55254, 47.367488, 8.554011, 47.368056], "geometry": {"coordinates": [[[8.55254, 47.367492], [8.552654, 47.367488], [8.552746, 47.367522], [8.554011, 47.368056]]], "type": "MultiLineString"}, "id": "483", "properties": {}, "type": "Feature"}, {"bbox": [8.504205, 47.404757, 8.504978, 47.405203], "geometry": {"coordinates": [[[8.504205, 47.404757], [8.50438, 47.404859], [8.504385, 47.404861], [8.504649, 47.405022], [8.504978, 47.405203]]], "type": "MultiLineString"}, "id": "489", "properties": {}, "type": "Feature"}, {"bbox": [8.523727, 47.372396, 8.525044, 47.374258], "geometry": {"coordinates": [[[8.523727, 47.372396], [8.524098, 47.372919], [8.52424, 47.373119], [8.524358, 47.373287], [8.524699, 47.373769], [8.524764, 47.373857], [8.525044, 47.374258]]], "type": "MultiLineString"}, "id": "492", "properties": {}, "type": "Feature"}, {"bbox": [8.518982, 47.371487, 8.521146, 47.373249], "geometry": {"coordinates": [[[8.521146, 47.371487], [8.520811, 47.371761], [8.520716, 47.371853], [8.520452, 47.372067], [8.520333, 47.372156], [8.520233, 47.372231], [8.519626, 47.372725], [8.519457, 47.372845], [8.51914, 47.373117], [8.518982, 47.373249]]], "type": "MultiLineString"}, "id": "493", "properties": {}, "type": "Feature"}, {"bbox": [8.5234, 47.375383, 8.524952, 47.375895], "geometry": {"coordinates": [[[8.524952, 47.375383], [8.524763, 47.375445], [8.524221, 47.375625], [8.524029, 47.375688], [8.523838, 47.375751], [8.523415, 47.375891], [8.5234, 47.375895]]], "type": "MultiLineString"}, "id": "495", "properties": {}, "type": "Feature"}, {"bbox": [8.529963, 47.393309, 8.530489, 47.39414], "geometry": {"coordinates": [[[8.529963, 47.393309], [8.530054, 47.393449], [8.530254, 47.393769], [8.530489, 47.39414]]], "type": "MultiLineString"}, "id": "501", "properties": {}, "type": "Feature"}, {"bbox": [8.504539, 47.399887, 8.505107, 47.400335], "geometry": {"coordinates": [[[8.504539, 47.399887], [8.504654, 47.399982], [8.505107, 47.400335]]], "type": "MultiLineString"}, "id": "502", "properties": {}, "type": "Feature"}, {"bbox": [8.519822, 47.365648, 8.521554, 47.365864], "geometry": {"coordinates": [[[8.521554, 47.365673], [8.521507, 47.365663], [8.521459, 47.365655], [8.52141, 47.36565], [8.52136, 47.365648], [8.521311, 47.365648], [8.521261, 47.365651], [8.519822, 47.365864]]], "type": "MultiLineString"}, "id": "506", "properties": {}, "type": "Feature"}, {"bbox": [8.51516, 47.37231, 8.516676, 47.373169], "geometry": {"coordinates": [[[8.516676, 47.373169], [8.515732, 47.372636], [8.51516, 47.37231]]], "type": "MultiLineString"}, "id": "507", "properties": {}, "type": "Feature"}, {"bbox": [8.523685, 47.369412, 8.524749, 47.370432], "geometry": {"coordinates": [[[8.524749, 47.370432], [8.52467, 47.37034], [8.523685, 47.369412]]], "type": "MultiLineString"}, "id": "508", "properties": {}, "type": "Feature"}, {"bbox": [8.530913, 47.365285, 8.531651, 47.366257], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.531618, 47.365395], [8.530913, 47.366257]]], "type": "MultiLineString"}, "id": "509", "properties": {}, "type": "Feature"}, {"bbox": [8.516898, 47.371577, 8.517559, 47.372176], "geometry": {"coordinates": [[[8.517559, 47.371577], [8.516898, 47.372176]]], "type": "MultiLineString"}, "id": "510", "properties": {}, "type": "Feature"}, {"bbox": [8.51974, 47.363917, 8.52035, 47.366915], "geometry": {"coordinates": [[[8.520166, 47.366915], [8.52014, 47.366904], [8.520116, 47.366892], [8.520094, 47.366878], [8.520074, 47.366863], [8.520056, 47.366846], [8.520041, 47.366829], [8.520027, 47.366811], [8.520017, 47.366792], [8.520009, 47.366772], [8.519958, 47.366529], [8.519859, 47.366048], [8.519822, 47.365864], [8.51974, 47.365459], [8.519742, 47.365402], [8.519748, 47.365345], [8.519758, 47.365288], [8.519771, 47.365237], [8.519788, 47.365187], [8.519807, 47.365137], [8.52035, 47.363917]]], "type": "MultiLineString"}, "id": "511", "properties": {}, "type": "Feature"}, {"bbox": [8.525639, 47.369596, 8.528676, 47.371288], "geometry": {"coordinates": [[[8.528676, 47.369596], [8.527421, 47.370285], [8.52666, 47.370719], [8.5262, 47.370975], [8.525639, 47.371288]]], "type": "MultiLineString"}, "id": "512", "properties": {}, "type": "Feature"}, {"bbox": [8.557943, 47.358158, 8.558973, 47.359328], "geometry": {"coordinates": [[[8.557943, 47.359328], [8.558078, 47.359172], [8.558158, 47.35908], [8.558239, 47.358984], [8.55884, 47.35832], [8.558973, 47.358158]]], "type": "MultiLineString"}, "id": "519", "properties": {}, "type": "Feature"}, {"bbox": [8.545223, 47.4024, 8.54642, 47.402978], "geometry": {"coordinates": [[[8.54642, 47.4024], [8.545223, 47.402978]]], "type": "MultiLineString"}, "id": "522", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.370763, 8.528776, 47.371438], "geometry": {"coordinates": [[[8.528776, 47.371438], [8.528614, 47.371315], [8.528233, 47.370988], [8.528139, 47.370894], [8.527985, 47.370763]]], "type": "MultiLineString"}, "id": "528", "properties": {}, "type": "Feature"}, {"bbox": [8.512582, 47.372737, 8.512685, 47.372794], "geometry": {"coordinates": [[[8.512685, 47.372794], [8.512582, 47.372737]]], "type": "MultiLineString"}, "id": "537", "properties": {}, "type": "Feature"}, {"bbox": [8.511295, 47.355219, 8.512182, 47.356702], "geometry": {"coordinates": [[[8.512182, 47.355219], [8.512101, 47.355324], [8.511589, 47.356269], [8.511529, 47.356368], [8.511468, 47.356464], [8.511363, 47.356613], [8.511295, 47.356702]]], "type": "MultiLineString"}, "id": "538", "properties": {}, "type": "Feature"}, {"bbox": [8.478691, 47.386906, 8.480437, 47.388478], "geometry": {"coordinates": [[[8.480437, 47.388478], [8.479567, 47.387732], [8.479407, 47.387626], [8.478712, 47.387013], [8.478691, 47.386906]]], "type": "MultiLineString"}, "id": "539", "properties": {}, "type": "Feature"}, {"bbox": [8.499148, 47.397671, 8.502251, 47.39901], "geometry": {"coordinates": [[[8.502251, 47.397671], [8.501988, 47.397894], [8.501697, 47.3981], [8.501381, 47.398289], [8.501174, 47.398372], [8.500965, 47.398452], [8.500755, 47.39853], [8.500496, 47.398623], [8.500232, 47.398708], [8.499963, 47.398786], [8.499148, 47.39901]]], "type": "MultiLineString"}, "id": "540", "properties": {}, "type": "Feature"}, {"bbox": [8.503659, 47.359965, 8.506017, 47.361195], "geometry": {"coordinates": [[[8.506017, 47.361195], [8.505819, 47.361098], [8.504669, 47.360492], [8.503808, 47.360039], [8.503659, 47.359965]]], "type": "MultiLineString"}, "id": "542", "properties": {}, "type": "Feature"}, {"bbox": [8.5661, 47.372496, 8.566751, 47.375013], "geometry": {"coordinates": [[[8.566108, 47.372496], [8.5661, 47.372561], [8.566146, 47.372657], [8.566478, 47.3733], [8.566583, 47.373952], [8.56675, 47.374877], [8.566751, 47.374905], [8.566748, 47.374932], [8.566742, 47.37496], [8.566732, 47.374986], [8.56672, 47.375013]]], "type": "MultiLineString"}, "id": "548", "properties": {}, "type": "Feature"}, {"bbox": [8.563229, 47.410891, 8.563293, 47.411969], "geometry": {"coordinates": [[[8.563293, 47.410891], [8.56326, 47.41105], [8.563236, 47.411677], [8.563229, 47.411969]]], "type": "MultiLineString"}, "id": "551", "properties": {}, "type": "Feature"}, {"bbox": [8.532213, 47.389125, 8.532243, 47.389141], "geometry": {"coordinates": [[[8.532243, 47.389125], [8.532213, 47.389141]]], "type": "MultiLineString"}, "id": "569", "properties": {}, "type": "Feature"}, {"bbox": [8.5585, 47.362637, 8.559331, 47.363196], "geometry": {"coordinates": [[[8.5585, 47.362637], [8.55866, 47.362729], [8.559331, 47.363196]]], "type": "MultiLineString"}, "id": "580", "properties": {}, "type": "Feature"}, {"bbox": [8.526732, 47.410236, 8.52708, 47.410511], "geometry": {"coordinates": [[[8.52708, 47.410511], [8.526732, 47.410236]]], "type": "MultiLineString"}, "id": "589", "properties": {}, "type": "Feature"}, {"bbox": [8.499966, 47.40488, 8.500189, 47.405175], "geometry": {"coordinates": [[[8.499966, 47.40488], [8.500189, 47.405175]]], "type": "MultiLineString"}, "id": "590", "properties": {}, "type": "Feature"}, {"bbox": [8.53678, 47.428751, 8.538328, 47.429995], "geometry": {"coordinates": [[[8.53678, 47.428751], [8.53799, 47.429823], [8.538055, 47.42987], [8.538134, 47.429927], [8.538328, 47.429995]]], "type": "MultiLineString"}, "id": "596", "properties": {}, "type": "Feature"}, {"bbox": [8.572016, 47.352662, 8.572472, 47.354016], "geometry": {"coordinates": [[[8.572472, 47.352662], [8.572315, 47.352716], [8.572266, 47.352752], [8.572236, 47.352796], [8.572226, 47.35283], [8.572016, 47.353797], [8.572052, 47.354016]]], "type": "MultiLineString"}, "id": "599", "properties": {}, "type": "Feature"}, {"bbox": [8.514757, 47.333941, 8.515282, 47.335173], "geometry": {"coordinates": [[[8.515282, 47.333941], [8.515173, 47.334078], [8.51508, 47.33422], [8.515005, 47.334367], [8.514948, 47.334518], [8.514757, 47.335173]]], "type": "MultiLineString"}, "id": "601", "properties": {}, "type": "Feature"}, {"bbox": [8.541439, 47.376023, 8.541858, 47.376998], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541725, 47.37608], [8.541472, 47.376874], [8.541439, 47.376998]]], "type": "MultiLineString"}, "id": "602", "properties": {}, "type": "Feature"}, {"bbox": [8.547567, 47.381608, 8.548182, 47.381992], "geometry": {"coordinates": [[[8.547567, 47.381992], [8.547619, 47.381925], [8.547984, 47.381669], [8.548182, 47.381608]]], "type": "MultiLineString"}, "id": "605", "properties": {}, "type": "Feature"}, {"bbox": [8.557185, 47.361941, 8.5585, 47.362637], "geometry": {"coordinates": [[[8.557185, 47.361941], [8.557304, 47.362022], [8.558048, 47.36241], [8.558304, 47.362543], [8.5585, 47.362637]]], "type": "MultiLineString"}, "id": "607", "properties": {}, "type": "Feature"}, {"bbox": [8.507403, 47.355768, 8.508368, 47.356936], "geometry": {"coordinates": [[[8.508368, 47.355768], [8.507403, 47.356936]]], "type": "MultiLineString"}, "id": "608", "properties": {}, "type": "Feature"}, {"bbox": [8.526126, 47.342613, 8.52757, 47.343328], "geometry": {"coordinates": [[[8.52757, 47.343328], [8.526801, 47.342947], [8.526126, 47.342613]]], "type": "MultiLineString"}, "id": "609", "properties": {}, "type": "Feature"}, {"bbox": [8.53189, 47.344495, 8.532923, 47.347226], "geometry": {"coordinates": [[[8.53189, 47.347226], [8.53205, 47.346573], [8.532232, 47.346008], [8.532384, 47.345592], [8.532624, 47.344877], [8.532655, 47.344809], [8.532696, 47.344743], [8.532744, 47.34468], [8.532923, 47.344495]]], "type": "MultiLineString"}, "id": "612", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.38174, 8.5506, 47.38367], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.55027, 47.382], [8.54998, 47.382261], [8.549846, 47.382398], [8.549573, 47.382762], [8.549217, 47.383299], [8.549121, 47.383399], [8.549042, 47.38367]]], "type": "MultiLineString"}, "id": "613", "properties": {}, "type": "Feature"}, {"bbox": [8.506779, 47.426765, 8.506785, 47.426789], "geometry": {"coordinates": [[[8.506779, 47.426765], [8.506785, 47.426789]]], "type": "MultiLineString"}, "id": "618", "properties": {}, "type": "Feature"}, {"bbox": [8.484176, 47.389754, 8.485363, 47.390118], "geometry": {"coordinates": [[[8.485363, 47.389754], [8.484989, 47.389869], [8.484176, 47.390118]]], "type": "MultiLineString"}, "id": "622", "properties": {}, "type": "Feature"}, {"bbox": [8.499433, 47.401222, 8.500062, 47.401813], "geometry": {"coordinates": [[[8.499433, 47.401222], [8.499599, 47.40133], [8.499922, 47.401723], [8.500062, 47.401813]]], "type": "MultiLineString"}, "id": "633", "properties": {}, "type": "Feature"}, {"bbox": [8.554875, 47.357332, 8.55549, 47.357973], "geometry": {"coordinates": [[[8.554875, 47.357332], [8.555049, 47.357335], [8.55549, 47.357466], [8.555177, 47.357973]]], "type": "MultiLineString"}, "id": "635", "properties": {}, "type": "Feature"}, {"bbox": [8.558712, 47.410815, 8.558777, 47.412297], "geometry": {"coordinates": [[[8.558777, 47.410815], [8.558762, 47.410965], [8.558742, 47.411599], [8.558712, 47.412297]]], "type": "MultiLineString"}, "id": "636", "properties": {}, "type": "Feature"}, {"bbox": [8.539934, 47.387153, 8.540585, 47.387294], "geometry": {"coordinates": [[[8.539934, 47.387153], [8.540585, 47.387294]]], "type": "MultiLineString"}, "id": "638", "properties": {}, "type": "Feature"}, {"bbox": [8.487079, 47.370921, 8.488128, 47.371705], "geometry": {"coordinates": [[[8.488128, 47.371705], [8.487816, 47.371471], [8.487686, 47.371367], [8.487079, 47.370921]]], "type": "MultiLineString"}, "id": "639", "properties": {}, "type": "Feature"}, {"bbox": [8.560341, 47.368346, 8.561937, 47.369839], "geometry": {"coordinates": [[[8.560341, 47.368346], [8.561466, 47.369412], [8.561654, 47.369585], [8.561748, 47.36967], [8.561842, 47.369755], [8.561937, 47.369839]]], "type": "MultiLineString"}, "id": "640", "properties": {}, "type": "Feature"}, {"bbox": [8.550472, 47.362341, 8.552096, 47.363051], "geometry": {"coordinates": [[[8.550472, 47.362341], [8.550592, 47.362367], [8.550943, 47.362457], [8.551219, 47.362542], [8.551531, 47.362635], [8.552096, 47.362805], [8.551928, 47.363051]]], "type": "MultiLineString"}, "id": "641", "properties": {}, "type": "Feature"}, {"bbox": [8.547657, 47.361832, 8.550582, 47.362214], "geometry": {"coordinates": [[[8.547657, 47.361832], [8.549131, 47.362005], [8.54933, 47.362012], [8.550425, 47.362193], [8.550582, 47.362214]]], "type": "MultiLineString"}, "id": "642", "properties": {}, "type": "Feature"}, {"bbox": [8.556286, 47.360911, 8.558063, 47.362976], "geometry": {"coordinates": [[[8.556286, 47.362976], [8.556361, 47.36289], [8.557185, 47.361941], [8.558063, 47.360911]]], "type": "MultiLineString"}, "id": "643", "properties": {}, "type": "Feature"}, {"bbox": [8.563229, 47.410767, 8.567693, 47.412117], "geometry": {"coordinates": [[[8.563229, 47.411969], [8.563434, 47.412021], [8.563645, 47.412061], [8.56386, 47.412088], [8.564078, 47.412103], [8.564297, 47.412105], [8.565307, 47.412095], [8.565474, 47.41209], [8.565642, 47.412095], [8.565808, 47.412107], [8.566095, 47.412117], [8.566381, 47.412113], [8.566667, 47.412094], [8.56687, 47.412075], [8.567069, 47.412044], [8.567264, 47.412], [8.567451, 47.411945], [8.567481, 47.411928], [8.567509, 47.41191], [8.567534, 47.41189], [8.567557, 47.411869], [8.567577, 47.411847], [8.567594, 47.411823], [8.567607, 47.411799], [8.567618, 47.411774], [8.567625, 47.411748], [8.567629, 47.411722], [8.567675, 47.410852], [8.567693, 47.410767]]], "type": "MultiLineString"}, "id": "645", "properties": {}, "type": "Feature"}, {"bbox": [8.560851, 47.372814, 8.561521, 47.373509], "geometry": {"coordinates": [[[8.560851, 47.372814], [8.561125, 47.373097], [8.561345, 47.373369], [8.561521, 47.373509]]], "type": "MultiLineString"}, "id": "646", "properties": {}, "type": "Feature"}, {"bbox": [8.553865, 47.380618, 8.554916, 47.381445], "geometry": {"coordinates": [[[8.553865, 47.380618], [8.554059, 47.380719], [8.55424, 47.380829], [8.554408, 47.38095], [8.55456, 47.381079], [8.554697, 47.381216], [8.554916, 47.381445]]], "type": "MultiLineString"}, "id": "647", "properties": {}, "type": "Feature"}, {"bbox": [8.490312, 47.379847, 8.491491, 47.381083], "geometry": {"coordinates": [[[8.491491, 47.381083], [8.491429, 47.381024], [8.49135, 47.380943], [8.491308, 47.380899], [8.490312, 47.379847]]], "type": "MultiLineString"}, "id": "648", "properties": {}, "type": "Feature"}, {"bbox": [8.551305, 47.356633, 8.554432, 47.357753], "geometry": {"coordinates": [[[8.551305, 47.356633], [8.552167, 47.356965], [8.552894, 47.357245], [8.553059, 47.357308], [8.554155, 47.357668], [8.554432, 47.357753]]], "type": "MultiLineString"}, "id": "649", "properties": {}, "type": "Feature"}, {"bbox": [8.546211, 47.389203, 8.547074, 47.389451], "geometry": {"coordinates": [[[8.546211, 47.389203], [8.546212, 47.389204], [8.546357, 47.389271], [8.547074, 47.389451]]], "type": "MultiLineString"}, "id": "651", "properties": {}, "type": "Feature"}, {"bbox": [8.554782, 47.369208, 8.554799, 47.369316], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554782, 47.369208]]], "type": "MultiLineString"}, "id": "652", "properties": {}, "type": "Feature"}, {"bbox": [8.558663, 47.376017, 8.55913, 47.37618], "geometry": {"coordinates": [[[8.558663, 47.37618], [8.55913, 47.376017]]], "type": "MultiLineString"}, "id": "653", "properties": {}, "type": "Feature"}, {"bbox": [8.559783, 47.371063, 8.560449, 47.371864], "geometry": {"coordinates": [[[8.560449, 47.371063], [8.560444, 47.371122], [8.560432, 47.371181], [8.560412, 47.371239], [8.560386, 47.371295], [8.560353, 47.37135], [8.560313, 47.371403], [8.560267, 47.371454], [8.560215, 47.371502], [8.559834, 47.371804], [8.559783, 47.371864]]], "type": "MultiLineString"}, "id": "654", "properties": {}, "type": "Feature"}, {"bbox": [8.544957, 47.393793, 8.546042, 47.393841], "geometry": {"coordinates": [[[8.544957, 47.393795], [8.54514, 47.393793], [8.546042, 47.393841]]], "type": "MultiLineString"}, "id": "655", "properties": {}, "type": "Feature"}, {"bbox": [8.483109, 47.384348, 8.484522, 47.384716], "geometry": {"coordinates": [[[8.484522, 47.384348], [8.484099, 47.384476], [8.483397, 47.384688], [8.483109, 47.384716]]], "type": "MultiLineString"}, "id": "656", "properties": {}, "type": "Feature"}, {"bbox": [8.556149, 47.356008, 8.557177, 47.356825], "geometry": {"coordinates": [[[8.556149, 47.356008], [8.557177, 47.356825]]], "type": "MultiLineString"}, "id": "657", "properties": {}, "type": "Feature"}, {"bbox": [8.525348, 47.369921, 8.527285, 47.371237], "geometry": {"coordinates": [[[8.527285, 47.371237], [8.52666, 47.370719], [8.526283, 47.370422], [8.525348, 47.369921]]], "type": "MultiLineString"}, "id": "660", "properties": {}, "type": "Feature"}, {"bbox": [8.545186, 47.395072, 8.54631, 47.395399], "geometry": {"coordinates": [[[8.545186, 47.395072], [8.545485, 47.395134], [8.54631, 47.395399]]], "type": "MultiLineString"}, "id": "661", "properties": {}, "type": "Feature"}, {"bbox": [8.542967, 47.384539, 8.543959, 47.385302], "geometry": {"coordinates": [[[8.542967, 47.384539], [8.543174, 47.384651], [8.543959, 47.385302]]], "type": "MultiLineString"}, "id": "664", "properties": {}, "type": "Feature"}, {"bbox": [8.493619, 47.371031, 8.495609, 47.371701], "geometry": {"coordinates": [[[8.493619, 47.371701], [8.494847, 47.371263], [8.495609, 47.371031]]], "type": "MultiLineString"}, "id": "665", "properties": {}, "type": "Feature"}, {"bbox": [8.55186, 47.355873, 8.555227, 47.356963], "geometry": {"coordinates": [[[8.55186, 47.355873], [8.552767, 47.356163], [8.553545, 47.356417], [8.555227, 47.356963]]], "type": "MultiLineString"}, "id": "666", "properties": {}, "type": "Feature"}, {"bbox": [8.528776, 47.371438, 8.529531, 47.372033], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529376, 47.371946], [8.528809, 47.371464], [8.528776, 47.371438]]], "type": "MultiLineString"}, "id": "668", "properties": {}, "type": "Feature"}, {"bbox": [8.528423, 47.332432, 8.528949, 47.334912], "geometry": {"coordinates": [[[8.52889, 47.334912], [8.528949, 47.334792], [8.528916, 47.333733], [8.528858, 47.333397], [8.528756, 47.333067], [8.52861, 47.332744], [8.528423, 47.332432]]], "type": "MultiLineString"}, "id": "671", "properties": {}, "type": "Feature"}, {"bbox": [8.52641, 47.379667, 8.526414, 47.37967], "geometry": {"coordinates": [[[8.52641, 47.379667], [8.526414, 47.37967]]], "type": "MultiLineString"}, "id": "676", "properties": {}, "type": "Feature"}, {"bbox": [8.486393, 47.38397, 8.486691, 47.384528], "geometry": {"coordinates": [[[8.486691, 47.384528], [8.486573, 47.384347], [8.486474, 47.38416], [8.486393, 47.38397]]], "type": "MultiLineString"}, "id": "684", "properties": {}, "type": "Feature"}, {"bbox": [8.530117, 47.364452, 8.531651, 47.365285], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.531274, 47.365021], [8.531114, 47.364929], [8.530715, 47.364701], [8.530521, 47.364613], [8.530321, 47.36453], [8.530117, 47.364452]]], "type": "MultiLineString"}, "id": "685", "properties": {}, "type": "Feature"}, {"bbox": [8.55533, 47.35655, 8.555998, 47.356984], "geometry": {"coordinates": [[[8.55533, 47.356855], [8.555752, 47.356984], [8.555784, 47.356972], [8.555998, 47.356727], [8.555621, 47.35655]]], "type": "MultiLineString"}, "id": "690", "properties": {}, "type": "Feature"}, {"bbox": [8.533999, 47.388531, 8.535524, 47.388869], "geometry": {"coordinates": [[[8.535524, 47.388869], [8.535304, 47.388777], [8.535073, 47.388699], [8.534833, 47.388635], [8.534585, 47.388585], [8.534332, 47.38855], [8.534075, 47.388531], [8.533999, 47.388537]]], "type": "MultiLineString"}, "id": "691", "properties": {}, "type": "Feature"}, {"bbox": [8.530691, 47.414446, 8.53216, 47.414645], "geometry": {"coordinates": [[[8.53216, 47.414446], [8.532043, 47.414472], [8.530754, 47.414645], [8.530691, 47.414639]]], "type": "MultiLineString"}, "id": "692", "properties": {}, "type": "Feature"}, {"bbox": [8.520808, 47.423852, 8.522802, 47.423885], "geometry": {"coordinates": [[[8.522802, 47.423885], [8.520808, 47.423852]]], "type": "MultiLineString"}, "id": "693", "properties": {}, "type": "Feature"}, {"bbox": [8.517229, 47.333698, 8.518101, 47.333969], "geometry": {"coordinates": [[[8.518101, 47.333969], [8.51805, 47.333946], [8.517978, 47.333919], [8.517903, 47.333896], [8.517229, 47.333698]]], "type": "MultiLineString"}, "id": "696", "properties": {}, "type": "Feature"}, {"bbox": [8.497789, 47.383079, 8.498495, 47.383707], "geometry": {"coordinates": [[[8.498495, 47.383707], [8.497789, 47.383079]]], "type": "MultiLineString"}, "id": "699", "properties": {}, "type": "Feature"}, {"bbox": [8.516477, 47.331849, 8.516708, 47.332763], "geometry": {"coordinates": [[[8.516545, 47.332763], [8.516506, 47.332604], [8.516483, 47.332444], [8.516477, 47.332284], [8.51648, 47.332244], [8.516486, 47.332204], [8.516498, 47.332165], [8.516514, 47.332126], [8.516535, 47.332089], [8.516708, 47.331849]]], "type": "MultiLineString"}, "id": "701", "properties": {}, "type": "Feature"}, {"bbox": [8.488432, 47.374427, 8.489052, 47.374745], "geometry": {"coordinates": [[[8.489052, 47.374745], [8.488989, 47.374726], [8.488928, 47.374705], [8.488868, 47.374681], [8.488722, 47.374597], [8.488577, 47.374512], [8.488432, 47.374427]]], "type": "MultiLineString"}, "id": "702", "properties": {}, "type": "Feature"}, {"bbox": [8.536307, 47.390067, 8.537743, 47.390189], "geometry": {"coordinates": [[[8.536307, 47.390067], [8.536436, 47.390068], [8.537279, 47.390084], [8.537483, 47.390087], [8.537515, 47.390091], [8.537546, 47.390097], [8.537577, 47.390104], [8.537606, 47.390113], [8.537634, 47.390124], [8.537661, 47.390137], [8.537685, 47.390151], [8.537743, 47.390189]]], "type": "MultiLineString"}, "id": "703", "properties": {}, "type": "Feature"}, {"bbox": [8.525941, 47.35907, 8.526904, 47.35914], "geometry": {"coordinates": [[[8.526904, 47.35914], [8.526697, 47.359131], [8.525941, 47.35907]]], "type": "MultiLineString"}, "id": "704", "properties": {}, "type": "Feature"}, {"bbox": [8.562198, 47.377381, 8.563508, 47.377668], "geometry": {"coordinates": [[[8.562198, 47.377668], [8.56231, 47.377652], [8.562644, 47.377571], [8.563508, 47.377381]]], "type": "MultiLineString"}, "id": "705", "properties": {}, "type": "Feature"}, {"bbox": [8.555215, 47.364439, 8.556806, 47.365283], "geometry": {"coordinates": [[[8.555215, 47.364439], [8.555385, 47.364532], [8.556023, 47.364906], [8.556806, 47.365283]]], "type": "MultiLineString"}, "id": "706", "properties": {}, "type": "Feature"}, {"bbox": [8.477477, 47.387626, 8.479407, 47.38808], "geometry": {"coordinates": [[[8.479407, 47.387626], [8.478528, 47.387833], [8.477477, 47.38808]]], "type": "MultiLineString"}, "id": "707", "properties": {}, "type": "Feature"}, {"bbox": [8.566202, 47.364451, 8.566327, 47.364594], "geometry": {"coordinates": [[[8.566202, 47.364451], [8.566247, 47.364498], [8.566289, 47.364545], [8.566327, 47.364594]]], "type": "MultiLineString"}, "id": "709", "properties": {}, "type": "Feature"}, {"bbox": [8.492347, 47.37874, 8.494449, 47.380252], "geometry": {"coordinates": [[[8.494449, 47.37874], [8.494241, 47.378878], [8.493241, 47.379541], [8.493156, 47.379624], [8.492595, 47.380079], [8.492347, 47.380252]]], "type": "MultiLineString"}, "id": "710", "properties": {}, "type": "Feature"}, {"bbox": [8.563881, 47.361548, 8.565303, 47.362569], "geometry": {"coordinates": [[[8.563881, 47.362569], [8.565303, 47.361548]]], "type": "MultiLineString"}, "id": "711", "properties": {}, "type": "Feature"}, {"bbox": [8.554256, 47.410731, 8.55431, 47.412223], "geometry": {"coordinates": [[[8.554307, 47.410731], [8.55431, 47.410837], [8.554256, 47.412223]]], "type": "MultiLineString"}, "id": "717", "properties": {}, "type": "Feature"}, {"bbox": [8.520033, 47.388192, 8.521309, 47.389505], "geometry": {"coordinates": [[[8.520033, 47.388192], [8.520267, 47.388431], [8.520525, 47.388696], [8.520761, 47.388939], [8.521309, 47.389505]]], "type": "MultiLineString"}, "id": "718", "properties": {}, "type": "Feature"}, {"bbox": [8.541977, 47.412507, 8.544166, 47.413241], "geometry": {"coordinates": [[[8.544166, 47.413241], [8.543567, 47.413063], [8.54302, 47.412872], [8.541977, 47.412507]]], "type": "MultiLineString"}, "id": "720", "properties": {}, "type": "Feature"}, {"bbox": [8.520286, 47.370186, 8.521077, 47.371133], "geometry": {"coordinates": [[[8.521077, 47.370186], [8.520286, 47.371133]]], "type": "MultiLineString"}, "id": "723", "properties": {}, "type": "Feature"}, {"bbox": [8.568616, 47.350594, 8.569194, 47.350784], "geometry": {"coordinates": [[[8.568616, 47.350594], [8.568814, 47.35065], [8.569006, 47.350714], [8.569194, 47.350784]]], "type": "MultiLineString"}, "id": "725", "properties": {}, "type": "Feature"}, {"bbox": [8.480845, 47.384508, 8.481337, 47.385146], "geometry": {"coordinates": [[[8.481337, 47.385146], [8.480845, 47.384508]]], "type": "MultiLineString"}, "id": "726", "properties": {}, "type": "Feature"}, {"bbox": [8.482175, 47.390674, 8.483352, 47.390976], "geometry": {"coordinates": [[[8.483352, 47.390712], [8.483344, 47.390706], [8.483335, 47.3907], [8.483326, 47.390695], [8.483316, 47.39069], [8.483305, 47.390686], [8.483294, 47.390682], [8.483283, 47.390679], [8.483271, 47.390677], [8.483259, 47.390675], [8.483247, 47.390674], [8.483234, 47.390674], [8.483222, 47.390675], [8.48321, 47.390676], [8.482175, 47.390976]]], "type": "MultiLineString"}, "id": "729", "properties": {}, "type": "Feature"}, {"bbox": [8.525982, 47.371447, 8.527246, 47.371836], "geometry": {"coordinates": [[[8.527246, 47.371447], [8.527162, 47.371468], [8.526347, 47.371668], [8.526293, 47.371679], [8.526241, 47.371693], [8.526191, 47.371711], [8.526143, 47.371731], [8.526098, 47.371753], [8.526056, 47.371779], [8.526017, 47.371806], [8.525982, 47.371836]]], "type": "MultiLineString"}, "id": "730", "properties": {}, "type": "Feature"}, {"bbox": [8.531922, 47.391815, 8.533001, 47.392389], "geometry": {"coordinates": [[[8.531922, 47.391815], [8.532031, 47.391884], [8.533001, 47.392389]]], "type": "MultiLineString"}, "id": "732", "properties": {}, "type": "Feature"}, {"bbox": [8.528464, 47.414882, 8.529007, 47.415282], "geometry": {"coordinates": [[[8.528464, 47.415282], [8.528749, 47.414927], [8.528751, 47.414925], [8.528753, 47.414923], [8.528755, 47.414922], [8.528758, 47.41492], [8.528761, 47.414919], [8.528764, 47.414917], [8.528767, 47.414916], [8.528771, 47.414915], [8.528774, 47.414915], [8.528778, 47.414914], [8.528781, 47.414914], [8.529007, 47.414882]]], "type": "MultiLineString"}, "id": "735", "properties": {}, "type": "Feature"}, {"bbox": [8.589764, 47.356929, 8.590637, 47.358145], "geometry": {"coordinates": [[[8.590305, 47.356929], [8.590637, 47.357287], [8.590381, 47.357483], [8.590149, 47.357692], [8.589943, 47.357913], [8.589764, 47.358145]]], "type": "MultiLineString"}, "id": "740", "properties": {}, "type": "Feature"}, {"bbox": [8.481263, 47.390976, 8.482175, 47.39124], "geometry": {"coordinates": [[[8.482175, 47.390976], [8.481871, 47.391064], [8.481567, 47.391152], [8.481263, 47.39124]]], "type": "MultiLineString"}, "id": "743", "properties": {}, "type": "Feature"}, {"bbox": [8.484983, 47.384351, 8.487277, 47.385041], "geometry": {"coordinates": [[[8.487277, 47.384351], [8.486691, 47.384528], [8.485921, 47.384759], [8.485797, 47.384797], [8.484983, 47.385041]]], "type": "MultiLineString"}, "id": "746", "properties": {}, "type": "Feature"}, {"bbox": [8.567035, 47.365003, 8.567195, 47.365082], "geometry": {"coordinates": [[[8.567035, 47.365003], [8.567195, 47.365082]]], "type": "MultiLineString"}, "id": "747", "properties": {}, "type": "Feature"}, {"bbox": [8.571877, 47.414277, 8.57251, 47.414841], "geometry": {"coordinates": [[[8.571877, 47.414841], [8.572278, 47.414447], [8.57251, 47.414277]]], "type": "MultiLineString"}, "id": "748", "properties": {}, "type": "Feature"}, {"bbox": [8.521559, 47.393825, 8.52209, 47.394513], "geometry": {"coordinates": [[[8.521559, 47.393825], [8.521585, 47.393837], [8.521609, 47.393851], [8.521631, 47.393866], [8.521651, 47.393882], [8.521669, 47.393899], [8.521685, 47.393918], [8.521739, 47.393989], [8.52209, 47.394513]]], "type": "MultiLineString"}, "id": "753", "properties": {}, "type": "Feature"}, {"bbox": [8.554732, 47.369316, 8.554799, 47.369458], "geometry": {"coordinates": [[[8.554732, 47.369458], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "756", "properties": {}, "type": "Feature"}, {"bbox": [8.5546, 47.36923, 8.554799, 47.369316], "geometry": {"coordinates": [[[8.5546, 47.36923], [8.554633, 47.369237], [8.554665, 47.369246], [8.554695, 47.369256], [8.554724, 47.369269], [8.554751, 47.369283], [8.554776, 47.369299], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "757", "properties": {}, "type": "Feature"}, {"bbox": [8.556068, 47.366921, 8.558577, 47.369212], "geometry": {"coordinates": [[[8.556068, 47.369212], [8.556152, 47.369132], [8.556942, 47.368411], [8.558577, 47.366921]]], "type": "MultiLineString"}, "id": "758", "properties": {}, "type": "Feature"}, {"bbox": [8.551671, 47.422621, 8.553424, 47.423445], "geometry": {"coordinates": [[[8.551671, 47.423445], [8.553424, 47.422621]]], "type": "MultiLineString"}, "id": "777", "properties": {}, "type": "Feature"}, {"bbox": [8.532199, 47.369163, 8.532539, 47.369381], "geometry": {"coordinates": [[[8.532539, 47.369163], [8.532199, 47.369381]]], "type": "MultiLineString"}, "id": "779", "properties": {}, "type": "Feature"}, {"bbox": [8.558742, 47.411599, 8.563236, 47.411677], "geometry": {"coordinates": [[[8.558742, 47.411599], [8.559536, 47.411611], [8.561094, 47.411648], [8.562091, 47.411659], [8.563236, 47.411677]]], "type": "MultiLineString"}, "id": "780", "properties": {}, "type": "Feature"}, {"bbox": [8.484957, 47.374859, 8.485489, 47.375374], "geometry": {"coordinates": [[[8.485489, 47.375374], [8.484964, 47.374866], [8.484957, 47.374859]]], "type": "MultiLineString"}, "id": "785", "properties": {}, "type": "Feature"}, {"bbox": [8.549383, 47.419564, 8.550647, 47.419959], "geometry": {"coordinates": [[[8.549383, 47.419959], [8.550099, 47.419805], [8.550202, 47.419779], [8.550302, 47.419747], [8.550396, 47.419709], [8.550486, 47.419665], [8.55057, 47.419617], [8.550647, 47.419564]]], "type": "MultiLineString"}, "id": "787", "properties": {}, "type": "Feature"}, {"bbox": [8.507596, 47.355402, 8.510184, 47.356394], "geometry": {"coordinates": [[[8.510184, 47.356394], [8.509721, 47.356235], [8.509332, 47.356102], [8.50874, 47.355901], [8.508368, 47.355768], [8.508046, 47.355609], [8.507596, 47.355402]]], "type": "MultiLineString"}, "id": "789", "properties": {}, "type": "Feature"}, {"bbox": [8.554808, 47.379853, 8.555652, 47.381113], "geometry": {"coordinates": [[[8.554808, 47.379853], [8.554852, 47.379879], [8.554893, 47.379908], [8.554929, 47.379939], [8.554962, 47.379972], [8.554989, 47.380007], [8.555652, 47.381113]]], "type": "MultiLineString"}, "id": "790", "properties": {}, "type": "Feature"}, {"bbox": [8.517664, 47.363128, 8.518006, 47.363567], "geometry": {"coordinates": [[[8.518006, 47.363128], [8.517886, 47.363268], [8.517664, 47.363567]]], "type": "MultiLineString"}, "id": "793", "properties": {}, "type": "Feature"}, {"bbox": [8.492145, 47.367183, 8.492485, 47.367528], "geometry": {"coordinates": [[[8.492145, 47.367528], [8.492222, 47.367492], [8.492485, 47.367183]]], "type": "MultiLineString"}, "id": "799", "properties": {}, "type": "Feature"}, {"bbox": [8.547614, 47.416214, 8.549361, 47.416656], "geometry": {"coordinates": [[[8.547614, 47.416656], [8.547766, 47.416643], [8.548847, 47.416338], [8.549361, 47.416214]]], "type": "MultiLineString"}, "id": "803", "properties": {}, "type": "Feature"}, {"bbox": [8.538561, 47.410355, 8.539997, 47.412071], "geometry": {"coordinates": [[[8.539997, 47.410355], [8.539678, 47.410745], [8.539347, 47.41116], [8.538561, 47.412071]]], "type": "MultiLineString"}, "id": "807", "properties": {}, "type": "Feature"}, {"bbox": [8.530536, 47.403367, 8.533609, 47.40446], "geometry": {"coordinates": [[[8.533609, 47.40446], [8.532858, 47.404185], [8.5319, 47.403856], [8.53113, 47.40358], [8.530536, 47.403367]]], "type": "MultiLineString"}, "id": "811", "properties": {}, "type": "Feature"}, {"bbox": [8.562347, 47.366586, 8.56442, 47.368714], "geometry": {"coordinates": [[[8.562347, 47.368714], [8.563638, 47.367395], [8.56442, 47.366586]]], "type": "MultiLineString"}, "id": "812", "properties": {}, "type": "Feature"}, {"bbox": [8.549212, 47.425964, 8.549316, 47.42642], "geometry": {"coordinates": [[[8.549212, 47.42642], [8.549271, 47.426312], [8.549287, 47.426284], [8.5493, 47.426256], [8.549309, 47.426227], [8.549314, 47.426197], [8.549316, 47.426167], [8.549314, 47.426138], [8.549311, 47.42608], [8.54931, 47.426022], [8.549308, 47.425964]]], "type": "MultiLineString"}, "id": "814", "properties": {}, "type": "Feature"}, {"bbox": [8.528857, 47.374371, 8.530608, 47.375605], "geometry": {"coordinates": [[[8.528857, 47.374371], [8.529284, 47.374667], [8.529875, 47.375081], [8.530608, 47.375605]]], "type": "MultiLineString"}, "id": "822", "properties": {}, "type": "Feature"}, {"bbox": [8.522802, 47.423885, 8.5243, 47.42391], "geometry": {"coordinates": [[[8.5243, 47.42391], [8.522802, 47.423885]]], "type": "MultiLineString"}, "id": "825", "properties": {}, "type": "Feature"}, {"bbox": [8.584088, 47.35131, 8.584614, 47.351433], "geometry": {"coordinates": [[[8.584088, 47.351311], [8.584121, 47.35131], [8.584154, 47.35131], [8.584186, 47.351313], [8.584218, 47.351318], [8.584355, 47.351348], [8.58438, 47.351355], [8.584614, 47.351433]]], "type": "MultiLineString"}, "id": "832", "properties": {}, "type": "Feature"}, {"bbox": [8.557486, 47.370118, 8.558206, 47.370924], "geometry": {"coordinates": [[[8.557486, 47.370924], [8.557969, 47.370488], [8.558206, 47.370118]]], "type": "MultiLineString"}, "id": "836", "properties": {}, "type": "Feature"}, {"bbox": [8.528512, 47.360572, 8.528522, 47.361265], "geometry": {"coordinates": [[[8.528512, 47.360572], [8.528522, 47.361265]]], "type": "MultiLineString"}, "id": "837", "properties": {}, "type": "Feature"}, {"bbox": [8.533943, 47.38981, 8.535852, 47.391318], "geometry": {"coordinates": [[[8.535852, 47.38981], [8.534727, 47.390692], [8.533943, 47.391318]]], "type": "MultiLineString"}, "id": "846", "properties": {}, "type": "Feature"}, {"bbox": [8.533103, 47.363583, 8.535188, 47.36659], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535135, 47.363684], [8.535082, 47.363785], [8.535027, 47.363885], [8.534573, 47.364529], [8.534527, 47.364595], [8.534165, 47.365108], [8.533842, 47.365568], [8.53352, 47.366026], [8.533269, 47.366384], [8.533219, 47.366454], [8.533163, 47.366523], [8.533103, 47.36659]]], "type": "MultiLineString"}, "id": "847", "properties": {}, "type": "Feature"}, {"bbox": [8.512673, 47.331466, 8.512958, 47.331585], "geometry": {"coordinates": [[[8.512958, 47.331466], [8.512673, 47.331585]]], "type": "MultiLineString"}, "id": "856", "properties": {}, "type": "Feature"}, {"bbox": [8.504827, 47.381345, 8.506931, 47.382256], "geometry": {"coordinates": [[[8.506931, 47.381345], [8.504827, 47.382256]]], "type": "MultiLineString"}, "id": "857", "properties": {}, "type": "Feature"}, {"bbox": [8.531061, 47.338395, 8.532094, 47.338607], "geometry": {"coordinates": [[[8.531061, 47.338607], [8.532094, 47.338395]]], "type": "MultiLineString"}, "id": "858", "properties": {}, "type": "Feature"}, {"bbox": [8.489007, 47.369946, 8.489435, 47.37029], "geometry": {"coordinates": [[[8.489007, 47.37029], [8.489008, 47.370289], [8.489435, 47.369946]]], "type": "MultiLineString"}, "id": "871", "properties": {}, "type": "Feature"}, {"bbox": [8.548893, 47.421536, 8.549208, 47.421902], "geometry": {"coordinates": [[[8.548902, 47.421536], [8.548893, 47.421612], [8.549208, 47.421902]]], "type": "MultiLineString"}, "id": "873", "properties": {}, "type": "Feature"}, {"bbox": [8.565623, 47.362013, 8.566359, 47.362763], "geometry": {"coordinates": [[[8.565623, 47.362763], [8.566293, 47.362092], [8.566359, 47.362013]]], "type": "MultiLineString"}, "id": "891", "properties": {}, "type": "Feature"}, {"bbox": [8.536921, 47.38002, 8.537304, 47.380419], "geometry": {"coordinates": [[[8.536921, 47.38002], [8.537054, 47.380249], [8.537304, 47.380419]]], "type": "MultiLineString"}, "id": "892", "properties": {}, "type": "Feature"}, {"bbox": [8.535345, 47.424121, 8.535414, 47.425352], "geometry": {"coordinates": [[[8.535345, 47.424121], [8.535383, 47.425243], [8.535414, 47.425352]]], "type": "MultiLineString"}, "id": "896", "properties": {}, "type": "Feature"}, {"bbox": [8.517548, 47.336228, 8.517726, 47.33638], "geometry": {"coordinates": [[[8.517548, 47.33638], [8.517573, 47.336353], [8.517601, 47.336326], [8.51763, 47.3363], [8.51766, 47.336275], [8.517692, 47.336251], [8.517726, 47.336228]]], "type": "MultiLineString"}, "id": "897", "properties": {}, "type": "Feature"}, {"bbox": [8.531688, 47.380561, 8.534438, 47.382431], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.533528, 47.381114], [8.533006, 47.381495], [8.532947, 47.381536], [8.532312, 47.381989], [8.531762, 47.382376], [8.531688, 47.382431]]], "type": "MultiLineString"}, "id": "899", "properties": {}, "type": "Feature"}, {"bbox": [8.572271, 47.409729, 8.572311, 47.410623], "geometry": {"coordinates": [[[8.572284, 47.409729], [8.572286, 47.409842], [8.572271, 47.410046], [8.572276, 47.410246], [8.572311, 47.410623]]], "type": "MultiLineString"}, "id": "904", "properties": {}, "type": "Feature"}, {"bbox": [8.568764, 47.36261, 8.569293, 47.363255], "geometry": {"coordinates": [[[8.568828, 47.363255], [8.568816, 47.363247], [8.568805, 47.363239], [8.568795, 47.36323], [8.568786, 47.36322], [8.568779, 47.36321], [8.568773, 47.363199], [8.568769, 47.363188], [8.568766, 47.363177], [8.568764, 47.363166], [8.568764, 47.363154], [8.568765, 47.363143], [8.568768, 47.363132], [8.568772, 47.363121], [8.568778, 47.36311], [8.568945, 47.362941], [8.569117, 47.362774], [8.569293, 47.36261]]], "type": "MultiLineString"}, "id": "905", "properties": {}, "type": "Feature"}, {"bbox": [8.557257, 47.38289, 8.557376, 47.38314], "geometry": {"coordinates": [[[8.557257, 47.38289], [8.557285, 47.382976], [8.557324, 47.383059], [8.557376, 47.38314]]], "type": "MultiLineString"}, "id": "906", "properties": {}, "type": "Feature"}, {"bbox": [8.560821, 47.362378, 8.561395, 47.36286], "geometry": {"coordinates": [[[8.560821, 47.36286], [8.560834, 47.362831], [8.560851, 47.362802], [8.560873, 47.362774], [8.560898, 47.362748], [8.561395, 47.362378]]], "type": "MultiLineString"}, "id": "908", "properties": {}, "type": "Feature"}, {"bbox": [8.503272, 47.40355, 8.503738, 47.403802], "geometry": {"coordinates": [[[8.503272, 47.403802], [8.503738, 47.40355]]], "type": "MultiLineString"}, "id": "921", "properties": {}, "type": "Feature"}, {"bbox": [8.543574, 47.409694, 8.543882, 47.410452], "geometry": {"coordinates": [[[8.543839, 47.409694], [8.543882, 47.409795], [8.543866, 47.409884], [8.543577, 47.410398], [8.543574, 47.410452]]], "type": "MultiLineString"}, "id": "925", "properties": {}, "type": "Feature"}, {"bbox": [8.517491, 47.363567, 8.517664, 47.363803], "geometry": {"coordinates": [[[8.517664, 47.363567], [8.517625, 47.363619], [8.517491, 47.363803]]], "type": "MultiLineString"}, "id": "926", "properties": {}, "type": "Feature"}, {"bbox": [8.550168, 47.426713, 8.555078, 47.427592], "geometry": {"coordinates": [[[8.555078, 47.426713], [8.554544, 47.427045], [8.554421, 47.427106], [8.554277, 47.42714], [8.554082, 47.427163], [8.551566, 47.427443], [8.550814, 47.427521], [8.550168, 47.427592]]], "type": "MultiLineString"}, "id": "928", "properties": {}, "type": "Feature"}, {"bbox": [8.507302, 47.413655, 8.509638, 47.414681], "geometry": {"coordinates": [[[8.509638, 47.413655], [8.509427, 47.413747], [8.507302, 47.414681]]], "type": "MultiLineString"}, "id": "929", "properties": {}, "type": "Feature"}, {"bbox": [8.544298, 47.410653, 8.544599, 47.410737], "geometry": {"coordinates": [[[8.544599, 47.410737], [8.544298, 47.410653]]], "type": "MultiLineString"}, "id": "930", "properties": {}, "type": "Feature"}, {"bbox": [8.546011, 47.410199, 8.546182, 47.410301], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546158, 47.410205], [8.546135, 47.410213], [8.546113, 47.410222], [8.546092, 47.410232], [8.546072, 47.410244], [8.546054, 47.410257], [8.546038, 47.410271], [8.546024, 47.410285], [8.546011, 47.410301]]], "type": "MultiLineString"}, "id": "932", "properties": {}, "type": "Feature"}, {"bbox": [8.543265, 47.410452, 8.543574, 47.410932], "geometry": {"coordinates": [[[8.543574, 47.410452], [8.543265, 47.410932]]], "type": "MultiLineString"}, "id": "935", "properties": {}, "type": "Feature"}, {"bbox": [8.540682, 47.400729, 8.542393, 47.40251], "geometry": {"coordinates": [[[8.542393, 47.400729], [8.542244, 47.400856], [8.54082, 47.402363], [8.540682, 47.40251]]], "type": "MultiLineString"}, "id": "936", "properties": {}, "type": "Feature"}, {"bbox": [8.50874, 47.354405, 8.509778, 47.355901], "geometry": {"coordinates": [[[8.509778, 47.354405], [8.50874, 47.355901]]], "type": "MultiLineString"}, "id": "939", "properties": {}, "type": "Feature"}, {"bbox": [8.530746, 47.36659, 8.533103, 47.368496], "geometry": {"coordinates": [[[8.533103, 47.36659], [8.533066, 47.366626], [8.533028, 47.366662], [8.532988, 47.366698], [8.531706, 47.367726], [8.530746, 47.368496]]], "type": "MultiLineString"}, "id": "940", "properties": {}, "type": "Feature"}, {"bbox": [8.525684, 47.343042, 8.52713, 47.343726], "geometry": {"coordinates": [[[8.52713, 47.343726], [8.526351, 47.343363], [8.525824, 47.343117], [8.525684, 47.343042]]], "type": "MultiLineString"}, "id": "941", "properties": {}, "type": "Feature"}, {"bbox": [8.529934, 47.344289, 8.531407, 47.348227], "geometry": {"coordinates": [[[8.529934, 47.344289], [8.531148, 47.344771], [8.531194, 47.3448], [8.531237, 47.344831], [8.531275, 47.344865], [8.531309, 47.344901], [8.531338, 47.344938], [8.531363, 47.344978], [8.531382, 47.345018], [8.531396, 47.34506], [8.531404, 47.345102], [8.531407, 47.345145], [8.531405, 47.345188], [8.531348, 47.345739], [8.531341, 47.345783], [8.531329, 47.345827], [8.531312, 47.34587], [8.530789, 47.346915], [8.530687, 47.347048], [8.530612, 47.34719], [8.530557, 47.347336], [8.530522, 47.347484], [8.530507, 47.347635], [8.530513, 47.347785], [8.530538, 47.347935], [8.530584, 47.348083], [8.53065, 47.348227]]], "type": "MultiLineString"}, "id": "944", "properties": {}, "type": "Feature"}, {"bbox": [8.557672, 47.356384, 8.558668, 47.356681], "geometry": {"coordinates": [[[8.557672, 47.356384], [8.558144, 47.356478], [8.558668, 47.356681]]], "type": "MultiLineString"}, "id": "945", "properties": {}, "type": "Feature"}, {"bbox": [8.481386, 47.41575, 8.482636, 47.415751], "geometry": {"coordinates": [[[8.481386, 47.415751], [8.482636, 47.41575]]], "type": "MultiLineString"}, "id": "948", "properties": {}, "type": "Feature"}, {"bbox": [8.522768, 47.423885, 8.522802, 47.42484], "geometry": {"coordinates": [[[8.522802, 47.423885], [8.522777, 47.424339], [8.52278, 47.424518], [8.522797, 47.424741], [8.522768, 47.42484]]], "type": "MultiLineString"}, "id": "952", "properties": {}, "type": "Feature"}, {"bbox": [8.511174, 47.416306, 8.514701, 47.417887], "geometry": {"coordinates": [[[8.514701, 47.416306], [8.514571, 47.416351], [8.513916, 47.416577], [8.513738, 47.41664], [8.513703, 47.416654], [8.513627, 47.416684], [8.512904, 47.416992], [8.512204, 47.417324], [8.511531, 47.41768], [8.511293, 47.417819], [8.511174, 47.417887]]], "type": "MultiLineString"}, "id": "953", "properties": {}, "type": "Feature"}, {"bbox": [8.545363, 47.38221, 8.546759, 47.382799], "geometry": {"coordinates": [[[8.545363, 47.38221], [8.545545, 47.382263], [8.546672, 47.382773], [8.546759, 47.382799]]], "type": "MultiLineString"}, "id": "955", "properties": {}, "type": "Feature"}, {"bbox": [8.530117, 47.361003, 8.531227, 47.364452], "geometry": {"coordinates": [[[8.530117, 47.364452], [8.530231, 47.364235], [8.530784, 47.36303], [8.530862, 47.362796], [8.531046, 47.36241], [8.531187, 47.361258], [8.531227, 47.361003]]], "type": "MultiLineString"}, "id": "961", "properties": {}, "type": "Feature"}, {"bbox": [8.521703, 47.361263, 8.522624, 47.361363], "geometry": {"coordinates": [[[8.522624, 47.361363], [8.522456, 47.361335], [8.521707, 47.361264], [8.521703, 47.361263]]], "type": "MultiLineString"}, "id": "962", "properties": {}, "type": "Feature"}, {"bbox": [8.592582, 47.400398, 8.593068, 47.401203], "geometry": {"coordinates": [[[8.592582, 47.400398], [8.592819, 47.40079], [8.593068, 47.401203]]], "type": "MultiLineString"}, "id": "964", "properties": {}, "type": "Feature"}, {"bbox": [8.505698, 47.400031, 8.506515, 47.401236], "geometry": {"coordinates": [[[8.506515, 47.400031], [8.506492, 47.400145], [8.506455, 47.400258], [8.506404, 47.400367], [8.50634, 47.400474], [8.505698, 47.401236]]], "type": "MultiLineString"}, "id": "976", "properties": {}, "type": "Feature"}, {"bbox": [8.475195, 47.38547, 8.475615, 47.386039], "geometry": {"coordinates": [[[8.475615, 47.386039], [8.475195, 47.38547]]], "type": "MultiLineString"}, "id": "979", "properties": {}, "type": "Feature"}, {"bbox": [8.541044, 47.375903, 8.541858, 47.376023], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541702, 47.376], [8.541044, 47.375903]]], "type": "MultiLineString"}, "id": "981", "properties": {}, "type": "Feature"}, {"bbox": [8.540966, 47.375891, 8.541044, 47.375903], "geometry": {"coordinates": [[[8.540966, 47.375891], [8.541044, 47.375903]]], "type": "MultiLineString"}, "id": "982", "properties": {}, "type": "Feature"}, {"bbox": [8.539483, 47.411614, 8.540205, 47.41242], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.539561, 47.412395], [8.539483, 47.41242]]], "type": "MultiLineString"}, "id": "983", "properties": {}, "type": "Feature"}, {"bbox": [8.530026, 47.415885, 8.531102, 47.416081], "geometry": {"coordinates": [[[8.531102, 47.416081], [8.53094, 47.416041], [8.530775, 47.41601], [8.530607, 47.415987], [8.530412, 47.415958], [8.530218, 47.415924], [8.530026, 47.415885]]], "type": "MultiLineString"}, "id": "984", "properties": {}, "type": "Feature"}, {"bbox": [8.508697, 47.353972, 8.511018, 47.354879], "geometry": {"coordinates": [[[8.511018, 47.354879], [8.510551, 47.354709], [8.509778, 47.354405], [8.509421, 47.354262], [8.508697, 47.353972]]], "type": "MultiLineString"}, "id": "986", "properties": {}, "type": "Feature"}, {"bbox": [8.569188, 47.363517, 8.56995, 47.364461], "geometry": {"coordinates": [[[8.56995, 47.363517], [8.569805, 47.363698], [8.569357, 47.364207], [8.569192, 47.364396], [8.569188, 47.364461]]], "type": "MultiLineString"}, "id": "987", "properties": {}, "type": "Feature"}, {"bbox": [8.519931, 47.366211, 8.522268, 47.368547], "geometry": {"coordinates": [[[8.522268, 47.366211], [8.521825, 47.366659], [8.52133, 47.367153], [8.520828, 47.367643], [8.520017, 47.368449], [8.519931, 47.368547]]], "type": "MultiLineString"}, "id": "992", "properties": {}, "type": "Feature"}, {"bbox": [8.521423, 47.36816, 8.523944, 47.370337], "geometry": {"coordinates": [[[8.523944, 47.36816], [8.523829, 47.368277], [8.523134, 47.368875], [8.522956, 47.369021], [8.522113, 47.369745], [8.522089, 47.369766], [8.521423, 47.370337]]], "type": "MultiLineString"}, "id": "993", "properties": {}, "type": "Feature"}, {"bbox": [8.554885, 47.358026, 8.555368, 47.358977], "geometry": {"coordinates": [[[8.554885, 47.358977], [8.555368, 47.358026]]], "type": "MultiLineString"}, "id": "1006", "properties": {}, "type": "Feature"}, {"bbox": [8.542915, 47.395803, 8.543185, 47.396407], "geometry": {"coordinates": [[[8.542915, 47.395803], [8.54301, 47.396003], [8.543101, 47.396205], [8.543185, 47.396407]]], "type": "MultiLineString"}, "id": "1012", "properties": {}, "type": "Feature"}, {"bbox": [8.526656, 47.375407, 8.526852, 47.375548], "geometry": {"coordinates": [[[8.526656, 47.375407], [8.526852, 47.375548]]], "type": "MultiLineString"}, "id": "1015", "properties": {}, "type": "Feature"}, {"bbox": [8.54065, 47.411941, 8.54144, 47.412876], "geometry": {"coordinates": [[[8.54144, 47.411941], [8.54065, 47.412876]]], "type": "MultiLineString"}, "id": "1017", "properties": {}, "type": "Feature"}, {"bbox": [8.511616, 47.367745, 8.512293, 47.36826], "geometry": {"coordinates": [[[8.512293, 47.367745], [8.511731, 47.368167], [8.511616, 47.36826]]], "type": "MultiLineString"}, "id": "1020", "properties": {}, "type": "Feature"}, {"bbox": [8.535345, 47.424118, 8.537544, 47.424763], "geometry": {"coordinates": [[[8.537544, 47.424763], [8.537502, 47.424745], [8.537458, 47.42473], [8.537411, 47.424717], [8.537364, 47.424707], [8.537315, 47.4247], [8.53685, 47.424606], [8.536401, 47.424482], [8.535971, 47.42433], [8.535564, 47.42415], [8.535539, 47.42414], [8.535513, 47.424132], [8.535486, 47.424126], [8.535458, 47.424122], [8.53543, 47.424119], [8.535402, 47.424118], [8.535373, 47.424119], [8.535345, 47.424121]]], "type": "MultiLineString"}, "id": "1021", "properties": {}, "type": "Feature"}, {"bbox": [8.549661, 47.420677, 8.551688, 47.421178], "geometry": {"coordinates": [[[8.549661, 47.421178], [8.549919, 47.421067], [8.550014, 47.421031], [8.550126, 47.420992], [8.55026, 47.42095], [8.550329, 47.420932], [8.550515, 47.420886], [8.550703, 47.420846], [8.550895, 47.420814], [8.551334, 47.420739], [8.551483, 47.420714], [8.551688, 47.420677]]], "type": "MultiLineString"}, "id": "1022", "properties": {}, "type": "Feature"}, {"bbox": [8.527258, 47.383899, 8.527574, 47.38434], "geometry": {"coordinates": [[[8.527258, 47.383899], [8.527574, 47.38434]]], "type": "MultiLineString"}, "id": "1023", "properties": {}, "type": "Feature"}, {"bbox": [8.528323, 47.345226, 8.529425, 47.34559], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529329, 47.345522], [8.528323, 47.345226]]], "type": "MultiLineString"}, "id": "1024", "properties": {}, "type": "Feature"}, {"bbox": [8.555739, 47.417888, 8.559885, 47.419583], "geometry": {"coordinates": [[[8.555739, 47.419583], [8.559716, 47.418007], [8.559885, 47.417888]]], "type": "MultiLineString"}, "id": "1025", "properties": {}, "type": "Feature"}, {"bbox": [8.542281, 47.428645, 8.543575, 47.430787], "geometry": {"coordinates": [[[8.543575, 47.428645], [8.543551, 47.428871], [8.54354, 47.428962], [8.543518, 47.429052], [8.543485, 47.429141], [8.54344, 47.429227], [8.543385, 47.429311], [8.543319, 47.429391], [8.542281, 47.430787]]], "type": "MultiLineString"}, "id": "1026", "properties": {}, "type": "Feature"}, {"bbox": [8.555247, 47.366822, 8.555925, 47.367142], "geometry": {"coordinates": [[[8.555247, 47.366822], [8.555925, 47.367142]]], "type": "MultiLineString"}, "id": "1027", "properties": {}, "type": "Feature"}, {"bbox": [8.494599, 47.38032, 8.496467, 47.381329], "geometry": {"coordinates": [[[8.496467, 47.38032], [8.495984, 47.380581], [8.495566, 47.380807], [8.494599, 47.381329]]], "type": "MultiLineString"}, "id": "1033", "properties": {}, "type": "Feature"}, {"bbox": [8.56651, 47.349993, 8.567888, 47.351767], "geometry": {"coordinates": [[[8.56651, 47.351767], [8.566658, 47.351547], [8.567525, 47.350409], [8.567608, 47.350337], [8.567702, 47.350234], [8.567888, 47.349993]]], "type": "MultiLineString"}, "id": "1037", "properties": {}, "type": "Feature"}, {"bbox": [8.565735, 47.375271, 8.56596, 47.376006], "geometry": {"coordinates": [[[8.56596, 47.375271], [8.565876, 47.375411], [8.565811, 47.375556], [8.565765, 47.375704], [8.56574, 47.375855], [8.565735, 47.376006]]], "type": "MultiLineString"}, "id": "1040", "properties": {}, "type": "Feature"}, {"bbox": [8.553353, 47.375425, 8.555241, 47.376838], "geometry": {"coordinates": [[[8.553353, 47.376], [8.553431, 47.375998], [8.553507, 47.375991], [8.553583, 47.375979], [8.553656, 47.375962], [8.553726, 47.375941], [8.554813, 47.375459], [8.554835, 47.37545], [8.554858, 47.375442], [8.554882, 47.375436], [8.554906, 47.375431], [8.554931, 47.375427], [8.554956, 47.375425], [8.554982, 47.375425], [8.555007, 47.375425], [8.555033, 47.375428], [8.555057, 47.375432], [8.555082, 47.375437], [8.555105, 47.375444], [8.555241, 47.375505], [8.555209, 47.375659], [8.554767, 47.376621], [8.554694, 47.376838]]], "type": "MultiLineString"}, "id": "1041", "properties": {}, "type": "Feature"}, {"bbox": [8.551075, 47.360198, 8.551388, 47.360864], "geometry": {"coordinates": [[[8.551075, 47.360864], [8.551125, 47.360787], [8.551388, 47.360198]]], "type": "MultiLineString"}, "id": "1048", "properties": {}, "type": "Feature"}, {"bbox": [8.528632, 47.384609, 8.529992, 47.385838], "geometry": {"coordinates": [[[8.529992, 47.385838], [8.529163, 47.385322], [8.529132, 47.385297], [8.529105, 47.38527], [8.52908, 47.385242], [8.528632, 47.384609]]], "type": "MultiLineString"}, "id": "1050", "properties": {}, "type": "Feature"}, {"bbox": [8.513959, 47.415398, 8.514571, 47.416351], "geometry": {"coordinates": [[[8.513959, 47.415398], [8.51403, 47.415521], [8.514499, 47.416244], [8.514571, 47.416351]]], "type": "MultiLineString"}, "id": "1052", "properties": {}, "type": "Feature"}, {"bbox": [8.520989, 47.375322, 8.522526, 47.375704], "geometry": {"coordinates": [[[8.522526, 47.375322], [8.522445, 47.375356], [8.522032, 47.375446], [8.520989, 47.375704]]], "type": "MultiLineString"}, "id": "1055", "properties": {}, "type": "Feature"}, {"bbox": [8.482418, 47.396148, 8.482972, 47.397161], "geometry": {"coordinates": [[[8.482972, 47.397161], [8.482418, 47.396148]]], "type": "MultiLineString"}, "id": "1060", "properties": {}, "type": "Feature"}, {"bbox": [8.514003, 47.376666, 8.515084, 47.377537], "geometry": {"coordinates": [[[8.515084, 47.377537], [8.514518, 47.37708], [8.514003, 47.376666]]], "type": "MultiLineString"}, "id": "1063", "properties": {}, "type": "Feature"}, {"bbox": [8.52267, 47.409321, 8.524372, 47.410336], "geometry": {"coordinates": [[[8.524372, 47.410336], [8.524218, 47.410243], [8.5232, 47.409638], [8.52267, 47.409321]]], "type": "MultiLineString"}, "id": "1068", "properties": {}, "type": "Feature"}, {"bbox": [8.482626, 47.374014, 8.48351, 47.374269], "geometry": {"coordinates": [[[8.48351, 47.374137], [8.483451, 47.374103], [8.483389, 47.374072], [8.483325, 47.374042], [8.483303, 47.374034], [8.48328, 47.374027], [8.483257, 47.374022], [8.483233, 47.374018], [8.483209, 47.374015], [8.483184, 47.374014], [8.483159, 47.374014], [8.483135, 47.374015], [8.48311, 47.374018], [8.483087, 47.374022], [8.483063, 47.374028], [8.483041, 47.374035], [8.483019, 47.374043], [8.482884, 47.374115], [8.482752, 47.37419], [8.482626, 47.374269]]], "type": "MultiLineString"}, "id": "1070", "properties": {}, "type": "Feature"}, {"bbox": [8.517987, 47.394777, 8.518096, 47.3953], "geometry": {"coordinates": [[[8.518004, 47.394777], [8.517987, 47.394827], [8.518047, 47.394962], [8.518071, 47.395111], [8.518096, 47.3953]]], "type": "MultiLineString"}, "id": "1072", "properties": {}, "type": "Feature"}, {"bbox": [8.477807, 47.385252, 8.478095, 47.38607], "geometry": {"coordinates": [[[8.478095, 47.38607], [8.477995, 47.385923], [8.477901, 47.385704], [8.477838, 47.385479], [8.477807, 47.385252]]], "type": "MultiLineString"}, "id": "1074", "properties": {}, "type": "Feature"}, {"bbox": [8.5575, 47.378283, 8.559203, 47.378671], "geometry": {"coordinates": [[[8.5575, 47.378283], [8.558372, 47.3785], [8.559203, 47.378671]]], "type": "MultiLineString"}, "id": "1075", "properties": {}, "type": "Feature"}, {"bbox": [8.550897, 47.382737, 8.552622, 47.38363], "geometry": {"coordinates": [[[8.550897, 47.382737], [8.551583, 47.383095], [8.551705, 47.383159], [8.552622, 47.38363]]], "type": "MultiLineString"}, "id": "1076", "properties": {}, "type": "Feature"}, {"bbox": [8.523922, 47.375016, 8.52469, 47.375525], "geometry": {"coordinates": [[[8.52469, 47.375016], [8.523922, 47.375525]]], "type": "MultiLineString"}, "id": "1078", "properties": {}, "type": "Feature"}, {"bbox": [8.547581, 47.420251, 8.548902, 47.421536], "geometry": {"coordinates": [[[8.547581, 47.420251], [8.547728, 47.420406], [8.54836, 47.421022], [8.548902, 47.421536]]], "type": "MultiLineString"}, "id": "1080", "properties": {}, "type": "Feature"}, {"bbox": [8.527482, 47.394139, 8.528258, 47.39521], "geometry": {"coordinates": [[[8.527482, 47.394139], [8.52786, 47.394662], [8.528258, 47.39521]]], "type": "MultiLineString"}, "id": "1085", "properties": {}, "type": "Feature"}, {"bbox": [8.535894, 47.381449, 8.537605, 47.382513], "geometry": {"coordinates": [[[8.535894, 47.381449], [8.536669, 47.381932], [8.537605, 47.382513]]], "type": "MultiLineString"}, "id": "1086", "properties": {}, "type": "Feature"}, {"bbox": [8.536003, 47.386995, 8.537108, 47.387225], "geometry": {"coordinates": [[[8.536003, 47.386995], [8.536541, 47.38711], [8.537108, 47.387225]]], "type": "MultiLineString"}, "id": "1088", "properties": {}, "type": "Feature"}, {"bbox": [8.520994, 47.372345, 8.523499, 47.374148], "geometry": {"coordinates": [[[8.523499, 47.372345], [8.521597, 47.373703], [8.520994, 47.374148]]], "type": "MultiLineString"}, "id": "1089", "properties": {}, "type": "Feature"}, {"bbox": [8.525698, 47.411752, 8.527174, 47.413879], "geometry": {"coordinates": [[[8.525698, 47.411752], [8.526098, 47.412286], [8.526776, 47.413187], [8.526986, 47.413468], [8.527064, 47.413589], [8.527174, 47.413879]]], "type": "MultiLineString"}, "id": "1092", "properties": {}, "type": "Feature"}, {"bbox": [8.535374, 47.369261, 8.536085, 47.369697], "geometry": {"coordinates": [[[8.536085, 47.369261], [8.536014, 47.369302], [8.535374, 47.369697]]], "type": "MultiLineString"}, "id": "1096", "properties": {}, "type": "Feature"}, {"bbox": [8.562358, 47.380667, 8.56371, 47.381057], "geometry": {"coordinates": [[[8.562358, 47.380667], [8.562515, 47.380717], [8.562918, 47.380841], [8.56371, 47.381057]]], "type": "MultiLineString"}, "id": "1097", "properties": {}, "type": "Feature"}, {"bbox": [8.578494, 47.403617, 8.581729, 47.404705], "geometry": {"coordinates": [[[8.578494, 47.403617], [8.578494, 47.403943], [8.578711, 47.404009], [8.581369, 47.404617], [8.581729, 47.404705]]], "type": "MultiLineString"}, "id": "1100", "properties": {}, "type": "Feature"}, {"bbox": [8.568467, 47.405642, 8.568774, 47.40598], "geometry": {"coordinates": [[[8.568467, 47.405642], [8.568495, 47.405659], [8.568524, 47.405681], [8.568551, 47.405704], [8.568574, 47.405729], [8.568631, 47.405799], [8.568774, 47.40598]]], "type": "MultiLineString"}, "id": "1101", "properties": {}, "type": "Feature"}, {"bbox": [8.53998, 47.374972, 8.54007, 47.375057], "geometry": {"coordinates": [[[8.54007, 47.375057], [8.540056, 47.375052], [8.540044, 47.375045], [8.540032, 47.375038], [8.540021, 47.37503], [8.540011, 47.375021], [8.540003, 47.375012], [8.539995, 47.375002], [8.539989, 47.374992], [8.539984, 47.374982], [8.53998, 47.374972]]], "type": "MultiLineString"}, "id": "1104", "properties": {}, "type": "Feature"}, {"bbox": [8.519733, 47.36851, 8.521813, 47.368676], "geometry": {"coordinates": [[[8.521813, 47.368676], [8.521522, 47.368641], [8.521225, 47.368636], [8.521074, 47.368635], [8.520923, 47.368633], [8.520439, 47.368627], [8.520309, 47.368613], [8.520099, 47.368578], [8.519931, 47.368547], [8.519733, 47.36851]]], "type": "MultiLineString"}, "id": "1105", "properties": {}, "type": "Feature"}, {"bbox": [8.513392, 47.370986, 8.514814, 47.372176], "geometry": {"coordinates": [[[8.514814, 47.370986], [8.514261, 47.37144], [8.513392, 47.372176]]], "type": "MultiLineString"}, "id": "1106", "properties": {}, "type": "Feature"}, {"bbox": [8.521143, 47.369141, 8.522113, 47.369745], "geometry": {"coordinates": [[[8.522113, 47.369745], [8.521143, 47.369141]]], "type": "MultiLineString"}, "id": "1107", "properties": {}, "type": "Feature"}, {"bbox": [8.530337, 47.368496, 8.530746, 47.368834], "geometry": {"coordinates": [[[8.530746, 47.368496], [8.530337, 47.368834]]], "type": "MultiLineString"}, "id": "1108", "properties": {}, "type": "Feature"}, {"bbox": [8.568533, 47.359352, 8.568775, 47.36001], "geometry": {"coordinates": [[[8.568533, 47.359352], [8.56858, 47.35947], [8.568717, 47.359872], [8.568775, 47.36001]]], "type": "MultiLineString"}, "id": "1109", "properties": {}, "type": "Feature"}, {"bbox": [8.530084, 47.338607, 8.531061, 47.338807], "geometry": {"coordinates": [[[8.530084, 47.338807], [8.530488, 47.338724], [8.531061, 47.338607]]], "type": "MultiLineString"}, "id": "1111", "properties": {}, "type": "Feature"}, {"bbox": [8.556003, 47.353955, 8.557283, 47.355056], "geometry": {"coordinates": [[[8.556003, 47.355056], [8.556504, 47.354626], [8.557283, 47.353955]]], "type": "MultiLineString"}, "id": "1112", "properties": {}, "type": "Feature"}, {"bbox": [8.513688, 47.369757, 8.514383, 47.370351], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.51427, 47.370215], [8.513689, 47.369758], [8.513688, 47.369757]]], "type": "MultiLineString"}, "id": "1131", "properties": {}, "type": "Feature"}, {"bbox": [8.576936, 47.40192, 8.577688, 47.402251], "geometry": {"coordinates": [[[8.576936, 47.402251], [8.577001, 47.40222], [8.577688, 47.40192]]], "type": "MultiLineString"}, "id": "1137", "properties": {}, "type": "Feature"}, {"bbox": [8.529365, 47.393244, 8.530239, 47.393515], "geometry": {"coordinates": [[[8.530239, 47.393244], [8.530182, 47.393253], [8.530125, 47.393263], [8.530069, 47.393273], [8.529963, 47.393309], [8.529365, 47.393515]]], "type": "MultiLineString"}, "id": "1144", "properties": {}, "type": "Feature"}, {"bbox": [8.533937, 47.364095, 8.536229, 47.367236], "geometry": {"coordinates": [[[8.536229, 47.364095], [8.53522, 47.365467], [8.534536, 47.366402], [8.534024, 47.367114], [8.533937, 47.367236]]], "type": "MultiLineString"}, "id": "1153", "properties": {}, "type": "Feature"}, {"bbox": [8.560826, 47.367457, 8.560918, 47.367568], "geometry": {"coordinates": [[[8.560826, 47.367568], [8.560918, 47.367457]]], "type": "MultiLineString"}, "id": "1154", "properties": {}, "type": "Feature"}, {"bbox": [8.563287, 47.353523, 8.564137, 47.354323], "geometry": {"coordinates": [[[8.563287, 47.354323], [8.5634, 47.354201], [8.563545, 47.354061], [8.564137, 47.353523]]], "type": "MultiLineString"}, "id": "1155", "properties": {}, "type": "Feature"}, {"bbox": [8.56651, 47.351421, 8.568398, 47.351767], "geometry": {"coordinates": [[[8.56651, 47.351767], [8.568051, 47.351504], [8.56817, 47.351484], [8.568286, 47.351456], [8.568398, 47.351421]]], "type": "MultiLineString"}, "id": "1156", "properties": {}, "type": "Feature"}, {"bbox": [8.522545, 47.396988, 8.522748, 47.398004], "geometry": {"coordinates": [[[8.522748, 47.396988], [8.522714, 47.397073], [8.522689, 47.397237], [8.522691, 47.397353], [8.52268, 47.397498], [8.522637, 47.397727], [8.522588, 47.397872], [8.522545, 47.398004]]], "type": "MultiLineString"}, "id": "1157", "properties": {}, "type": "Feature"}, {"bbox": [8.577064, 47.406606, 8.578532, 47.407297], "geometry": {"coordinates": [[[8.578532, 47.406606], [8.578381, 47.406688], [8.577064, 47.407297]]], "type": "MultiLineString"}, "id": "1158", "properties": {}, "type": "Feature"}, {"bbox": [8.521597, 47.373703, 8.522278, 47.374352], "geometry": {"coordinates": [[[8.521597, 47.373703], [8.522213, 47.374107], [8.52224, 47.374138], [8.522278, 47.374352]]], "type": "MultiLineString"}, "id": "1159", "properties": {}, "type": "Feature"}, {"bbox": [8.552737, 47.388649, 8.552825, 47.389011], "geometry": {"coordinates": [[[8.552737, 47.388649], [8.552745, 47.388861], [8.552823, 47.389008], [8.552825, 47.389011]]], "type": "MultiLineString"}, "id": "1163", "properties": {}, "type": "Feature"}, {"bbox": [8.551292, 47.392985, 8.551987, 47.393174], "geometry": {"coordinates": [[[8.551292, 47.392985], [8.551361, 47.393006], [8.551423, 47.393019], [8.551486, 47.393032], [8.551509, 47.393038], [8.551865, 47.393146], [8.551987, 47.393174]]], "type": "MultiLineString"}, "id": "1164", "properties": {}, "type": "Feature"}, {"bbox": [8.510744, 47.375893, 8.512736, 47.37728], "geometry": {"coordinates": [[[8.510744, 47.375893], [8.511624, 47.376506], [8.512635, 47.37721], [8.512736, 47.37728]]], "type": "MultiLineString"}, "id": "1168", "properties": {}, "type": "Feature"}, {"bbox": [8.547062, 47.427492, 8.550168, 47.427694], "geometry": {"coordinates": [[[8.550168, 47.427592], [8.549383, 47.427673], [8.549309, 47.427679], [8.549236, 47.427683], [8.549162, 47.427685], [8.548884, 47.427694], [8.548605, 47.427687], [8.548329, 47.427665], [8.547885, 47.427613], [8.547444, 47.427552], [8.547062, 47.427492]]], "type": "MultiLineString"}, "id": "1169", "properties": {}, "type": "Feature"}, {"bbox": [8.524731, 47.33821, 8.524808, 47.339016], "geometry": {"coordinates": [[[8.524731, 47.339016], [8.524748, 47.33884], [8.524808, 47.33846], [8.524804, 47.33821]]], "type": "MultiLineString"}, "id": "1171", "properties": {}, "type": "Feature"}, {"bbox": [8.513689, 47.367116, 8.516523, 47.369758], "geometry": {"coordinates": [[[8.516523, 47.367116], [8.516517, 47.367127], [8.516175, 47.367736], [8.516094, 47.367855], [8.516047, 47.367936], [8.515963, 47.368], [8.515764, 47.368157], [8.515428, 47.368405], [8.514776, 47.368914], [8.514664, 47.369006], [8.513804, 47.36967], [8.513689, 47.369758]]], "type": "MultiLineString"}, "id": "1177", "properties": {}, "type": "Feature"}, {"bbox": [8.540597, 47.430381, 8.542281, 47.430787], "geometry": {"coordinates": [[[8.542281, 47.430787], [8.541844, 47.430719], [8.541416, 47.430629], [8.540999, 47.430516], [8.540597, 47.430381]]], "type": "MultiLineString"}, "id": "1178", "properties": {}, "type": "Feature"}, {"bbox": [8.572304, 47.404262, 8.572711, 47.404717], "geometry": {"coordinates": [[[8.572711, 47.404717], [8.572601, 47.404535], [8.572431, 47.404379], [8.572304, 47.404262]]], "type": "MultiLineString"}, "id": "1182", "properties": {}, "type": "Feature"}, {"bbox": [8.484329, 47.388734, 8.484989, 47.389869], "geometry": {"coordinates": [[[8.484989, 47.389869], [8.484329, 47.388858], [8.484705, 47.388734]]], "type": "MultiLineString"}, "id": "1183", "properties": {}, "type": "Feature"}, {"bbox": [8.480362, 47.412216, 8.481075, 47.412418], "geometry": {"coordinates": [[[8.481075, 47.412216], [8.480362, 47.412418]]], "type": "MultiLineString"}, "id": "1184", "properties": {}, "type": "Feature"}, {"bbox": [8.525845, 47.379957, 8.525846, 47.379958], "geometry": {"coordinates": [[[8.525845, 47.379957], [8.525846, 47.379958]]], "type": "MultiLineString"}, "id": "1186", "properties": {}, "type": "Feature"}, {"bbox": [8.538337, 47.387008, 8.539002, 47.38721], "geometry": {"coordinates": [[[8.538337, 47.387008], [8.538896, 47.387162], [8.53892, 47.387169], [8.538942, 47.387177], [8.538964, 47.387187], [8.538983, 47.387198], [8.539002, 47.38721]]], "type": "MultiLineString"}, "id": "1187", "properties": {}, "type": "Feature"}, {"bbox": [8.53248, 47.36563, 8.533518, 47.366025], "geometry": {"coordinates": [[[8.533518, 47.366025], [8.532564, 47.365688], [8.53248, 47.36563]]], "type": "MultiLineString"}, "id": "1188", "properties": {}, "type": "Feature"}, {"bbox": [8.529236, 47.341524, 8.529393, 47.34188], "geometry": {"coordinates": [[[8.529393, 47.341524], [8.529359, 47.341637], [8.52929, 47.341792], [8.529236, 47.34188]]], "type": "MultiLineString"}, "id": "1190", "properties": {}, "type": "Feature"}, {"bbox": [8.550647, 47.419564, 8.551475, 47.420316], "geometry": {"coordinates": [[[8.550647, 47.419564], [8.550834, 47.419705], [8.550973, 47.419847], [8.551426, 47.420272], [8.551475, 47.420316]]], "type": "MultiLineString"}, "id": "1192", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.37675, 8.525612, 47.377689], "geometry": {"coordinates": [[[8.524787, 47.37675], [8.525243, 47.377268], [8.525612, 47.377689]]], "type": "MultiLineString"}, "id": "1199", "properties": {}, "type": "Feature"}, {"bbox": [8.548271, 47.383943, 8.548331, 47.384421], "geometry": {"coordinates": [[[8.548271, 47.383943], [8.548305, 47.384153], [8.548331, 47.384421]]], "type": "MultiLineString"}, "id": "1200", "properties": {}, "type": "Feature"}, {"bbox": [8.561467, 47.366365, 8.563949, 47.368298], "geometry": {"coordinates": [[[8.561467, 47.368298], [8.562591, 47.366998], [8.562749, 47.366924], [8.563949, 47.366365]]], "type": "MultiLineString"}, "id": "1205", "properties": {}, "type": "Feature"}, {"bbox": [8.56417, 47.370064, 8.565105, 47.370814], "geometry": {"coordinates": [[[8.56417, 47.370064], [8.565105, 47.370814]]], "type": "MultiLineString"}, "id": "1206", "properties": {}, "type": "Feature"}, {"bbox": [8.568708, 47.366405, 8.569467, 47.366643], "geometry": {"coordinates": [[[8.569465, 47.366405], [8.569467, 47.366406], [8.569304, 47.366434], [8.569145, 47.366471], [8.568992, 47.366519], [8.568846, 47.366576], [8.568708, 47.366643]]], "type": "MultiLineString"}, "id": "1208", "properties": {}, "type": "Feature"}, {"bbox": [8.559766, 47.365389, 8.561023, 47.366694], "geometry": {"coordinates": [[[8.559766, 47.366694], [8.561023, 47.365389]]], "type": "MultiLineString"}, "id": "1212", "properties": {}, "type": "Feature"}, {"bbox": [8.541127, 47.366672, 8.541545, 47.368059], "geometry": {"coordinates": [[[8.541545, 47.366672], [8.541337, 47.367362], [8.541127, 47.368059]]], "type": "MultiLineString"}, "id": "1215", "properties": {}, "type": "Feature"}, {"bbox": [8.541806, 47.382699, 8.542468, 47.382769], "geometry": {"coordinates": [[[8.541806, 47.382699], [8.542019, 47.382709], [8.542245, 47.382733], [8.542468, 47.382769]]], "type": "MultiLineString"}, "id": "1216", "properties": {}, "type": "Feature"}, {"bbox": [8.562087, 47.408952, 8.562721, 47.409466], "geometry": {"coordinates": [[[8.562087, 47.409465], [8.562122, 47.409466], [8.562721, 47.408952]]], "type": "MultiLineString"}, "id": "1217", "properties": {}, "type": "Feature"}, {"bbox": [8.526983, 47.338248, 8.529428, 47.338288], "geometry": {"coordinates": [[[8.529428, 47.338288], [8.528834, 47.338248], [8.526983, 47.338252]]], "type": "MultiLineString"}, "id": "1220", "properties": {}, "type": "Feature"}, {"bbox": [8.497438, 47.358013, 8.498487, 47.358817], "geometry": {"coordinates": [[[8.498487, 47.358013], [8.498482, 47.358017], [8.498465, 47.358059], [8.498145, 47.358299], [8.497867, 47.35852], [8.497528, 47.35878], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "1224", "properties": {}, "type": "Feature"}, {"bbox": [8.54197, 47.408178, 8.542855, 47.408845], "geometry": {"coordinates": [[[8.54197, 47.408178], [8.54267, 47.408717], [8.542855, 47.408845]]], "type": "MultiLineString"}, "id": "1233", "properties": {}, "type": "Feature"}, {"bbox": [8.524714, 47.339016, 8.524762, 47.340956], "geometry": {"coordinates": [[[8.524721, 47.340956], [8.524744, 47.340467], [8.524762, 47.339872], [8.524758, 47.339699], [8.524743, 47.339527], [8.524719, 47.339355], [8.524714, 47.339242], [8.524719, 47.339129], [8.524731, 47.339016]]], "type": "MultiLineString"}, "id": "1238", "properties": {}, "type": "Feature"}, {"bbox": [8.48518, 47.370987, 8.485701, 47.373017], "geometry": {"coordinates": [[[8.485303, 47.373017], [8.485403, 47.372874], [8.485487, 47.372725], [8.485555, 47.372573], [8.485628, 47.372385], [8.485677, 47.372192], [8.485701, 47.371998], [8.4857, 47.371803], [8.485674, 47.371609], [8.48518, 47.370987]]], "type": "MultiLineString"}, "id": "1239", "properties": {}, "type": "Feature"}, {"bbox": [8.518049, 47.388939, 8.520761, 47.389823], "geometry": {"coordinates": [[[8.520761, 47.388939], [8.518052, 47.389822], [8.518049, 47.389823]]], "type": "MultiLineString"}, "id": "1242", "properties": {}, "type": "Feature"}, {"bbox": [8.543025, 47.374355, 8.543528, 47.375942], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.54312, 47.374743], [8.543149, 47.37486], [8.543387, 47.375497], [8.543413, 47.375567], [8.543423, 47.375593], [8.543528, 47.375942]]], "type": "MultiLineString"}, "id": "1243", "properties": {}, "type": "Feature"}, {"bbox": [8.550275, 47.362567, 8.552434, 47.36322], "geometry": {"coordinates": [[[8.550275, 47.362567], [8.550433, 47.362599], [8.551058, 47.362793], [8.551762, 47.362992], [8.551928, 47.363051], [8.552434, 47.36322]]], "type": "MultiLineString"}, "id": "1244", "properties": {}, "type": "Feature"}, {"bbox": [8.545131, 47.387122, 8.545952, 47.388507], "geometry": {"coordinates": [[[8.545952, 47.387122], [8.545818, 47.387374], [8.545248, 47.388413], [8.545131, 47.388507]]], "type": "MultiLineString"}, "id": "1245", "properties": {}, "type": "Feature"}, {"bbox": [8.549069, 47.3597, 8.552194, 47.360358], "geometry": {"coordinates": [[[8.549069, 47.3597], [8.550503, 47.360008], [8.550687, 47.360046], [8.551388, 47.360198], [8.552044, 47.360339], [8.552194, 47.360358]]], "type": "MultiLineString"}, "id": "1246", "properties": {}, "type": "Feature"}, {"bbox": [8.51101, 47.420706, 8.513121, 47.421535], "geometry": {"coordinates": [[[8.513121, 47.420706], [8.51101, 47.421535]]], "type": "MultiLineString"}, "id": "1247", "properties": {}, "type": "Feature"}, {"bbox": [8.540159, 47.394708, 8.541027, 47.395428], "geometry": {"coordinates": [[[8.540159, 47.395428], [8.540265, 47.395363], [8.541027, 47.394708]]], "type": "MultiLineString"}, "id": "1248", "properties": {}, "type": "Feature"}, {"bbox": [8.559014, 47.368419, 8.559738, 47.368737], "geometry": {"coordinates": [[[8.559014, 47.368419], [8.559738, 47.368737]]], "type": "MultiLineString"}, "id": "1249", "properties": {}, "type": "Feature"}, {"bbox": [8.548316, 47.360745, 8.551269, 47.361424], "geometry": {"coordinates": [[[8.548316, 47.360745], [8.548523, 47.36079], [8.549862, 47.361096], [8.551269, 47.361424]]], "type": "MultiLineString"}, "id": "1257", "properties": {}, "type": "Feature"}, {"bbox": [8.55693, 47.355194, 8.557741, 47.355546], "geometry": {"coordinates": [[[8.55693, 47.355194], [8.55712, 47.35527], [8.557615, 47.355505], [8.557741, 47.355546]]], "type": "MultiLineString"}, "id": "1258", "properties": {}, "type": "Feature"}, {"bbox": [8.56752, 47.36323, 8.568453, 47.363678], "geometry": {"coordinates": [[[8.56752, 47.36323], [8.568453, 47.363678]]], "type": "MultiLineString"}, "id": "1259", "properties": {}, "type": "Feature"}, {"bbox": [8.550966, 47.362992, 8.551762, 47.363771], "geometry": {"coordinates": [[[8.550966, 47.363771], [8.551762, 47.362992]]], "type": "MultiLineString"}, "id": "1260", "properties": {}, "type": "Feature"}, {"bbox": [8.561017, 47.378215, 8.561726, 47.379107], "geometry": {"coordinates": [[[8.561017, 47.378215], [8.561624, 47.378714], [8.561726, 47.379107]]], "type": "MultiLineString"}, "id": "1261", "properties": {}, "type": "Feature"}, {"bbox": [8.57154, 47.381487, 8.577279, 47.384704], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571664, 47.381513], [8.571916, 47.38201], [8.572318, 47.382805], [8.572397, 47.382933], [8.572492, 47.383056], [8.572604, 47.383172], [8.572731, 47.38328], [8.572873, 47.38338], [8.573028, 47.38347], [8.573127, 47.383521], [8.573231, 47.383567], [8.573338, 47.38361], [8.573373, 47.383623], [8.574124, 47.383912], [8.574202, 47.383942], [8.57434, 47.384011], [8.574481, 47.384077], [8.574624, 47.384142], [8.574811, 47.384111], [8.575001, 47.384092], [8.575193, 47.384084], [8.575385, 47.384088], [8.575576, 47.384103], [8.575764, 47.384129], [8.575948, 47.384167], [8.576126, 47.384216], [8.576405, 47.384298], [8.57667, 47.384399], [8.576919, 47.384517], [8.577042, 47.384576], [8.577162, 47.384639], [8.577279, 47.384704]]], "type": "MultiLineString"}, "id": "1262", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.38367, 8.549788, 47.383891], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.549788, 47.383891]]], "type": "MultiLineString"}, "id": "1263", "properties": {}, "type": "Feature"}, {"bbox": [8.549531, 47.383417, 8.550895, 47.383877], "geometry": {"coordinates": [[[8.549531, 47.383417], [8.54979, 47.383507], [8.550778, 47.38384], [8.550895, 47.383877]]], "type": "MultiLineString"}, "id": "1264", "properties": {}, "type": "Feature"}, {"bbox": [8.539083, 47.389465, 8.53968, 47.389524], "geometry": {"coordinates": [[[8.539083, 47.389465], [8.539201, 47.389465], [8.53932, 47.389472], [8.539436, 47.389486], [8.53968, 47.389524]]], "type": "MultiLineString"}, "id": "1265", "properties": {}, "type": "Feature"}, {"bbox": [8.495294, 47.379396, 8.499939, 47.382991], "geometry": {"coordinates": [[[8.499939, 47.382991], [8.499084, 47.38233], [8.498266, 47.381697], [8.496467, 47.38032], [8.496361, 47.380224], [8.495294, 47.379396]]], "type": "MultiLineString"}, "id": "1266", "properties": {}, "type": "Feature"}, {"bbox": [8.51006, 47.383143, 8.511199, 47.384207], "geometry": {"coordinates": [[[8.511199, 47.384207], [8.510577, 47.383626], [8.51006, 47.383143]]], "type": "MultiLineString"}, "id": "1267", "properties": {}, "type": "Feature"}, {"bbox": [8.508916, 47.3771, 8.509883, 47.377844], "geometry": {"coordinates": [[[8.509883, 47.377844], [8.509696, 47.377703], [8.509601, 47.377614], [8.508916, 47.3771]]], "type": "MultiLineString"}, "id": "1268", "properties": {}, "type": "Feature"}, {"bbox": [8.527009, 47.358451, 8.527621, 47.358588], "geometry": {"coordinates": [[[8.527009, 47.358451], [8.527246, 47.358477], [8.527343, 47.358496], [8.527621, 47.358588]]], "type": "MultiLineString"}, "id": "1270", "properties": {}, "type": "Feature"}, {"bbox": [8.588131, 47.401222, 8.588838, 47.40312], "geometry": {"coordinates": [[[8.588131, 47.401222], [8.588383, 47.401595], [8.588527, 47.401839], [8.588636, 47.402091], [8.588711, 47.402349], [8.588838, 47.403118], [8.588838, 47.40312]]], "type": "MultiLineString"}, "id": "1275", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.385143, 8.52693, 47.385397], "geometry": {"coordinates": [[[8.52693, 47.385397], [8.526738, 47.385143]]], "type": "MultiLineString"}, "id": "1277", "properties": {}, "type": "Feature"}, {"bbox": [8.520098, 47.378299, 8.520188, 47.378382], "geometry": {"coordinates": [[[8.520098, 47.378299], [8.520188, 47.378382]]], "type": "MultiLineString"}, "id": "1281", "properties": {}, "type": "Feature"}, {"bbox": [8.52693, 47.385397, 8.528422, 47.386999], "geometry": {"coordinates": [[[8.528422, 47.386999], [8.527814, 47.38635], [8.52693, 47.385397]]], "type": "MultiLineString"}, "id": "1287", "properties": {}, "type": "Feature"}, {"bbox": [8.572167, 47.363095, 8.573761, 47.364313], "geometry": {"coordinates": [[[8.573761, 47.363095], [8.573192, 47.363478], [8.57266, 47.363884], [8.572167, 47.364313]]], "type": "MultiLineString"}, "id": "1290", "properties": {}, "type": "Feature"}, {"bbox": [8.518006, 47.362747, 8.519057, 47.363128], "geometry": {"coordinates": [[[8.519057, 47.362747], [8.518819, 47.362819], [8.518111, 47.363091], [8.518077, 47.363105], [8.518042, 47.363117], [8.518006, 47.363128]]], "type": "MultiLineString"}, "id": "1291", "properties": {}, "type": "Feature"}, {"bbox": [8.558141, 47.355088, 8.558946, 47.356139], "geometry": {"coordinates": [[[8.558141, 47.356139], [8.558934, 47.35514], [8.558946, 47.355088]]], "type": "MultiLineString"}, "id": "1293", "properties": {}, "type": "Feature"}, {"bbox": [8.559083, 47.366395, 8.561075, 47.367267], "geometry": {"coordinates": [[[8.559083, 47.366395], [8.559766, 47.366694], [8.560403, 47.366973], [8.561075, 47.367267]]], "type": "MultiLineString"}, "id": "1301", "properties": {}, "type": "Feature"}, {"bbox": [8.548214, 47.383399, 8.549121, 47.383401], "geometry": {"coordinates": [[[8.548214, 47.383399], [8.548663, 47.383401], [8.549121, 47.383399]]], "type": "MultiLineString"}, "id": "1302", "properties": {}, "type": "Feature"}, {"bbox": [8.552554, 47.379177, 8.554173, 47.380371], "geometry": {"coordinates": [[[8.552554, 47.379177], [8.553085, 47.379605], [8.553215, 47.37967], [8.553327, 47.379754], [8.55403, 47.380275], [8.554173, 47.380371]]], "type": "MultiLineString"}, "id": "1303", "properties": {}, "type": "Feature"}, {"bbox": [8.509902, 47.376446, 8.51162, 47.377736], "geometry": {"coordinates": [[[8.509902, 47.376446], [8.510685, 47.377017], [8.51162, 47.377736]]], "type": "MultiLineString"}, "id": "1304", "properties": {}, "type": "Feature"}, {"bbox": [8.510279, 47.36826, 8.511616, 47.369894], "geometry": {"coordinates": [[[8.511616, 47.36826], [8.511464, 47.368425], [8.511072, 47.368901], [8.511043, 47.368936], [8.510405, 47.369713], [8.510386, 47.369738], [8.510367, 47.369763], [8.510349, 47.369788], [8.510324, 47.369823], [8.510301, 47.369858], [8.510279, 47.369894]]], "type": "MultiLineString"}, "id": "1310", "properties": {}, "type": "Feature"}, {"bbox": [8.525008, 47.341281, 8.527497, 47.343695], "geometry": {"coordinates": [[[8.525008, 47.343695], [8.525684, 47.343042], [8.526126, 47.342613], [8.526618, 47.342138], [8.527497, 47.341281]]], "type": "MultiLineString"}, "id": "1311", "properties": {}, "type": "Feature"}, {"bbox": [8.512958, 47.331271, 8.513423, 47.331466], "geometry": {"coordinates": [[[8.513423, 47.331271], [8.512958, 47.331466]]], "type": "MultiLineString"}, "id": "1313", "properties": {}, "type": "Feature"}, {"bbox": [8.51972, 47.376496, 8.52354, 47.377918], "geometry": {"coordinates": [[[8.52354, 47.376496], [8.522852, 47.376737], [8.522846, 47.376738], [8.52197, 47.377048], [8.52153, 47.37721], [8.521365, 47.377271], [8.521199, 47.377333], [8.521033, 47.377393], [8.51972, 47.377918]]], "type": "MultiLineString"}, "id": "1314", "properties": {}, "type": "Feature"}, {"bbox": [8.495245, 47.376111, 8.497331, 47.378114], "geometry": {"coordinates": [[[8.497331, 47.378114], [8.495245, 47.376111]]], "type": "MultiLineString"}, "id": "1315", "properties": {}, "type": "Feature"}, {"bbox": [8.547124, 47.384449, 8.547811, 47.384522], "geometry": {"coordinates": [[[8.547124, 47.384449], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "1318", "properties": {}, "type": "Feature"}, {"bbox": [8.524074, 47.408927, 8.525305, 47.409339], "geometry": {"coordinates": [[[8.525305, 47.409204], [8.524729, 47.408927], [8.524395, 47.409112], [8.524074, 47.409339]]], "type": "MultiLineString"}, "id": "1320", "properties": {}, "type": "Feature"}, {"bbox": [8.552965, 47.364132, 8.554025, 47.364433], "geometry": {"coordinates": [[[8.552965, 47.364132], [8.553474, 47.364433], [8.553726, 47.364273], [8.553861, 47.364213], [8.554025, 47.364172]]], "type": "MultiLineString"}, "id": "1327", "properties": {}, "type": "Feature"}, {"bbox": [8.524229, 47.39227, 8.524368, 47.392321], "geometry": {"coordinates": [[[8.524368, 47.39227], [8.52434, 47.392282], [8.524229, 47.392321]]], "type": "MultiLineString"}, "id": "1330", "properties": {}, "type": "Feature"}, {"bbox": [8.542749, 47.402689, 8.544026, 47.404506], "geometry": {"coordinates": [[[8.542749, 47.402689], [8.542984, 47.402904], [8.543391, 47.403269], [8.543621, 47.403506], [8.543759, 47.403696], [8.543818, 47.403796], [8.543683, 47.403943], [8.544026, 47.404506]]], "type": "MultiLineString"}, "id": "1333", "properties": {}, "type": "Feature"}, {"bbox": [8.557827, 47.364936, 8.559491, 47.366585], "geometry": {"coordinates": [[[8.557827, 47.366585], [8.559491, 47.364936]]], "type": "MultiLineString"}, "id": "1334", "properties": {}, "type": "Feature"}, {"bbox": [8.554988, 47.369323, 8.556653, 47.370009], "geometry": {"coordinates": [[[8.554988, 47.369323], [8.5554, 47.36947], [8.555719, 47.369581], [8.555852, 47.369627], [8.556539, 47.369957], [8.556653, 47.370009]]], "type": "MultiLineString"}, "id": "1335", "properties": {}, "type": "Feature"}, {"bbox": [8.509438, 47.42569, 8.510016, 47.426367], "geometry": {"coordinates": [[[8.509438, 47.42569], [8.509594, 47.425887], [8.509802, 47.426131], [8.509911, 47.426253], [8.510016, 47.426367]]], "type": "MultiLineString"}, "id": "1337", "properties": {}, "type": "Feature"}, {"bbox": [8.52513, 47.359001, 8.525941, 47.35907], "geometry": {"coordinates": [[[8.525941, 47.35907], [8.52513, 47.359001]]], "type": "MultiLineString"}, "id": "1345", "properties": {}, "type": "Feature"}, {"bbox": [8.508878, 47.383626, 8.510577, 47.384195], "geometry": {"coordinates": [[[8.510577, 47.383626], [8.510502, 47.383654], [8.510241, 47.383743], [8.509981, 47.383822], [8.508952, 47.38417], [8.508878, 47.384195]]], "type": "MultiLineString"}, "id": "1347", "properties": {}, "type": "Feature"}, {"bbox": [8.476858, 47.390912, 8.478276, 47.391626], "geometry": {"coordinates": [[[8.478276, 47.390912], [8.478082, 47.390986], [8.477891, 47.391064], [8.477704, 47.391146], [8.477475, 47.391256], [8.477305, 47.39135], [8.476858, 47.391626]]], "type": "MultiLineString"}, "id": "1348", "properties": {}, "type": "Feature"}, {"bbox": [8.551344, 47.373076, 8.55241, 47.374073], "geometry": {"coordinates": [[[8.551612, 47.373076], [8.551344, 47.373441], [8.552036, 47.373859], [8.55241, 47.374073]]], "type": "MultiLineString"}, "id": "1351", "properties": {}, "type": "Feature"}, {"bbox": [8.525651, 47.38435, 8.526379, 47.384933], "geometry": {"coordinates": [[[8.526379, 47.384933], [8.52607, 47.384804], [8.525651, 47.38435]]], "type": "MultiLineString"}, "id": "1352", "properties": {}, "type": "Feature"}, {"bbox": [8.525865, 47.409236, 8.526544, 47.40982], "geometry": {"coordinates": [[[8.525865, 47.40982], [8.526025, 47.409676], [8.526544, 47.409236]]], "type": "MultiLineString"}, "id": "1353", "properties": {}, "type": "Feature"}, {"bbox": [8.540145, 47.41177, 8.540988, 47.412679], "geometry": {"coordinates": [[[8.540988, 47.41177], [8.540821, 47.411951], [8.540478, 47.412367], [8.540238, 47.412658], [8.540145, 47.412679]]], "type": "MultiLineString"}, "id": "1355", "properties": {}, "type": "Feature"}, {"bbox": [8.556866, 47.353116, 8.558206, 47.353874], "geometry": {"coordinates": [[[8.556866, 47.353138], [8.557183, 47.353116], [8.558081, 47.353781], [8.558206, 47.353874]]], "type": "MultiLineString"}, "id": "1356", "properties": {}, "type": "Feature"}, {"bbox": [8.543528, 47.375942, 8.543665, 47.376386], "geometry": {"coordinates": [[[8.543528, 47.375942], [8.543577, 47.37609], [8.543623, 47.376238], [8.543665, 47.376386]]], "type": "MultiLineString"}, "id": "1357", "properties": {}, "type": "Feature"}, {"bbox": [8.560839, 47.368004, 8.561467, 47.368298], "geometry": {"coordinates": [[[8.560839, 47.368004], [8.561359, 47.368247], [8.561467, 47.368298]]], "type": "MultiLineString"}, "id": "1367", "properties": {}, "type": "Feature"}, {"bbox": [8.488673, 47.39449, 8.489068, 47.395233], "geometry": {"coordinates": [[[8.488673, 47.39449], [8.488707, 47.394569], [8.489068, 47.395233]]], "type": "MultiLineString"}, "id": "1374", "properties": {}, "type": "Feature"}, {"bbox": [8.467081, 47.38901, 8.46804, 47.389824], "geometry": {"coordinates": [[[8.46804, 47.38901], [8.467853, 47.389141], [8.467512, 47.389282], [8.467185, 47.38949], [8.467081, 47.389612], [8.467432, 47.389824]]], "type": "MultiLineString"}, "id": "1375", "properties": {}, "type": "Feature"}, {"bbox": [8.536826, 47.369653, 8.536913, 47.369707], "geometry": {"coordinates": [[[8.536913, 47.369707], [8.536826, 47.369653]]], "type": "MultiLineString"}, "id": "1377", "properties": {}, "type": "Feature"}, {"bbox": [8.519306, 47.3774, 8.520098, 47.378299], "geometry": {"coordinates": [[[8.519306, 47.3774], [8.519435, 47.377576], [8.519573, 47.377748], [8.51972, 47.377918], [8.519868, 47.378076], [8.520024, 47.378231], [8.520098, 47.378299]]], "type": "MultiLineString"}, "id": "1383", "properties": {}, "type": "Feature"}, {"bbox": [8.557728, 47.369134, 8.558541, 47.369963], "geometry": {"coordinates": [[[8.557728, 47.369963], [8.558541, 47.369134]]], "type": "MultiLineString"}, "id": "1389", "properties": {}, "type": "Feature"}, {"bbox": [8.548235, 47.363144, 8.549071, 47.363466], "geometry": {"coordinates": [[[8.548235, 47.363144], [8.549071, 47.363466]]], "type": "MultiLineString"}, "id": "1392", "properties": {}, "type": "Feature"}, {"bbox": [8.515401, 47.3693, 8.517295, 47.37048], "geometry": {"coordinates": [[[8.517295, 47.3693], [8.516642, 47.369725], [8.515401, 47.37048]]], "type": "MultiLineString"}, "id": "1397", "properties": {}, "type": "Feature"}, {"bbox": [8.557769, 47.352521, 8.558802, 47.353241], "geometry": {"coordinates": [[[8.557769, 47.352521], [8.557899, 47.352626], [8.558802, 47.353241]]], "type": "MultiLineString"}, "id": "1401", "properties": {}, "type": "Feature"}, {"bbox": [8.528614, 47.371291, 8.528929, 47.371315], "geometry": {"coordinates": [[[8.528929, 47.371291], [8.528614, 47.371315]]], "type": "MultiLineString"}, "id": "1410", "properties": {}, "type": "Feature"}, {"bbox": [8.529807, 47.410748, 8.529897, 47.410987], "geometry": {"coordinates": [[[8.529807, 47.410748], [8.529897, 47.410987]]], "type": "MultiLineString"}, "id": "1411", "properties": {}, "type": "Feature"}, {"bbox": [8.491013, 47.404101, 8.491639, 47.405065], "geometry": {"coordinates": [[[8.491013, 47.404101], [8.491043, 47.404152], [8.491218, 47.404444], [8.491406, 47.404732], [8.491607, 47.405016], [8.491639, 47.405065]]], "type": "MultiLineString"}, "id": "1418", "properties": {}, "type": "Feature"}, {"bbox": [8.548504, 47.387109, 8.548544, 47.387698], "geometry": {"coordinates": [[[8.548504, 47.387109], [8.548544, 47.387698]]], "type": "MultiLineString"}, "id": "1420", "properties": {}, "type": "Feature"}, {"bbox": [8.517076, 47.398324, 8.517998, 47.398549], "geometry": {"coordinates": [[[8.517998, 47.398549], [8.517813, 47.398524], [8.517076, 47.398324]]], "type": "MultiLineString"}, "id": "1422", "properties": {}, "type": "Feature"}, {"bbox": [8.537058, 47.394385, 8.538128, 47.394853], "geometry": {"coordinates": [[[8.537058, 47.394385], [8.538128, 47.394853]]], "type": "MultiLineString"}, "id": "1424", "properties": {}, "type": "Feature"}, {"bbox": [8.555241, 47.37441, 8.55641, 47.375505], "geometry": {"coordinates": [[[8.555241, 47.375505], [8.555427, 47.375278], [8.556211, 47.3746], [8.55641, 47.37441]]], "type": "MultiLineString"}, "id": "1425", "properties": {}, "type": "Feature"}, {"bbox": [8.528929, 47.371223, 8.529755, 47.371291], "geometry": {"coordinates": [[[8.529755, 47.371223], [8.529739, 47.371226], [8.529722, 47.371229], [8.529705, 47.371231], [8.528929, 47.371291]]], "type": "MultiLineString"}, "id": "1439", "properties": {}, "type": "Feature"}, {"bbox": [8.543574, 47.410452, 8.544298, 47.410653], "geometry": {"coordinates": [[[8.544298, 47.410653], [8.543574, 47.410452]]], "type": "MultiLineString"}, "id": "1444", "properties": {}, "type": "Feature"}, {"bbox": [8.536869, 47.387432, 8.537703, 47.388559], "geometry": {"coordinates": [[[8.537703, 47.387432], [8.537354, 47.38791], [8.536869, 47.388559]]], "type": "MultiLineString"}, "id": "1452", "properties": {}, "type": "Feature"}, {"bbox": [8.567209, 47.365467, 8.568011, 47.36645], "geometry": {"coordinates": [[[8.568011, 47.365467], [8.567209, 47.36645]]], "type": "MultiLineString"}, "id": "1453", "properties": {}, "type": "Feature"}, {"bbox": [8.572416, 47.404075, 8.572559, 47.40418], "geometry": {"coordinates": [[[8.572559, 47.404075], [8.572416, 47.40418]]], "type": "MultiLineString"}, "id": "1455", "properties": {}, "type": "Feature"}, {"bbox": [8.492073, 47.407728, 8.493228, 47.408166], "geometry": {"coordinates": [[[8.493228, 47.407728], [8.492744, 47.40797], [8.492073, 47.408166]]], "type": "MultiLineString"}, "id": "1456", "properties": {}, "type": "Feature"}, {"bbox": [8.541073, 47.401079, 8.543721, 47.402973], "geometry": {"coordinates": [[[8.543721, 47.401079], [8.543076, 47.401467], [8.542658, 47.401719], [8.542266, 47.40199], [8.5419, 47.402277], [8.541073, 47.402973]]], "type": "MultiLineString"}, "id": "1462", "properties": {}, "type": "Feature"}, {"bbox": [8.508742, 47.35274, 8.509328, 47.3539], "geometry": {"coordinates": [[[8.509328, 47.35274], [8.509159, 47.35316], [8.508949, 47.353571], [8.508742, 47.3539]]], "type": "MultiLineString"}, "id": "1463", "properties": {}, "type": "Feature"}, {"bbox": [8.546479, 47.407362, 8.546961, 47.407641], "geometry": {"coordinates": [[[8.546961, 47.407362], [8.546479, 47.40757], [8.546838, 47.407641]]], "type": "MultiLineString"}, "id": "1471", "properties": {}, "type": "Feature"}, {"bbox": [8.538018, 47.369021, 8.538578, 47.369488], "geometry": {"coordinates": [[[8.538578, 47.369488], [8.538417, 47.36932], [8.538018, 47.369021]]], "type": "MultiLineString"}, "id": "1473", "properties": {}, "type": "Feature"}, {"bbox": [8.55758, 47.355947, 8.558879, 47.356407], "geometry": {"coordinates": [[[8.55758, 47.355947], [8.557647, 47.355972], [8.558141, 47.356139], [8.558879, 47.356407]]], "type": "MultiLineString"}, "id": "1474", "properties": {}, "type": "Feature"}, {"bbox": [8.498238, 47.382811, 8.498978, 47.38347], "geometry": {"coordinates": [[[8.498978, 47.38347], [8.498238, 47.382811]]], "type": "MultiLineString"}, "id": "1477", "properties": {}, "type": "Feature"}, {"bbox": [8.557911, 47.370412, 8.559211, 47.371426], "geometry": {"coordinates": [[[8.557911, 47.371426], [8.558044, 47.37133], [8.558906, 47.370812], [8.559009, 47.370726], [8.559211, 47.370412]]], "type": "MultiLineString"}, "id": "1480", "properties": {}, "type": "Feature"}, {"bbox": [8.566819, 47.359625, 8.566941, 47.359957], "geometry": {"coordinates": [[[8.566819, 47.359625], [8.566941, 47.359957]]], "type": "MultiLineString"}, "id": "1481", "properties": {}, "type": "Feature"}, {"bbox": [8.553416, 47.360388, 8.553695, 47.360736], "geometry": {"coordinates": [[[8.553416, 47.360736], [8.553692, 47.360392], [8.553695, 47.360388]]], "type": "MultiLineString"}, "id": "1484", "properties": {}, "type": "Feature"}, {"bbox": [8.503534, 47.402406, 8.505192, 47.404405], "geometry": {"coordinates": [[[8.503534, 47.404405], [8.504494, 47.403595], [8.504317, 47.403432], [8.504317, 47.403309], [8.504382, 47.403246], [8.505147, 47.402685], [8.505177, 47.402658], [8.505192, 47.402621], [8.505183, 47.402586], [8.505163, 47.402558], [8.505009, 47.402406], [8.504367, 47.402695], [8.504275, 47.402683]]], "type": "MultiLineString"}, "id": "1485", "properties": {}, "type": "Feature"}, {"bbox": [8.540491, 47.393963, 8.541072, 47.394669], "geometry": {"coordinates": [[[8.540491, 47.393963], [8.540491, 47.393963], [8.540549, 47.394093], [8.540624, 47.39422], [8.540714, 47.394342], [8.54082, 47.394458], [8.540939, 47.394567], [8.541072, 47.394669]]], "type": "MultiLineString"}, "id": "1487", "properties": {}, "type": "Feature"}, {"bbox": [8.471296, 47.389278, 8.472746, 47.389885], "geometry": {"coordinates": [[[8.472746, 47.389278], [8.471548, 47.389768], [8.471464, 47.389807], [8.47138, 47.389845], [8.471296, 47.389885]]], "type": "MultiLineString"}, "id": "1490", "properties": {}, "type": "Feature"}, {"bbox": [8.53712, 47.375729, 8.537298, 47.375785], "geometry": {"coordinates": [[[8.53712, 47.375729], [8.537217, 47.375745], [8.537298, 47.375785]]], "type": "MultiLineString"}, "id": "1495", "properties": {}, "type": "Feature"}, {"bbox": [8.500634, 47.36111, 8.502165, 47.362077], "geometry": {"coordinates": [[[8.502165, 47.36111], [8.501854, 47.361335], [8.500634, 47.362077]]], "type": "MultiLineString"}, "id": "1500", "properties": {}, "type": "Feature"}, {"bbox": [8.551942, 47.405521, 8.553287, 47.405831], "geometry": {"coordinates": [[[8.551942, 47.405831], [8.553287, 47.405521]]], "type": "MultiLineString"}, "id": "1502", "properties": {}, "type": "Feature"}, {"bbox": [8.51757, 47.370568, 8.521177, 47.372622], "geometry": {"coordinates": [[[8.521177, 47.372622], [8.520333, 47.372156], [8.520211, 47.372088], [8.519555, 47.371728], [8.518979, 47.371412], [8.518785, 47.371304], [8.51757, 47.370568]]], "type": "MultiLineString"}, "id": "1506", "properties": {}, "type": "Feature"}, {"bbox": [8.556057, 47.405939, 8.557309, 47.406427], "geometry": {"coordinates": [[[8.556057, 47.406427], [8.557199, 47.405992], [8.557309, 47.405939]]], "type": "MultiLineString"}, "id": "1513", "properties": {}, "type": "Feature"}, {"bbox": [8.561243, 47.380681, 8.561533, 47.380904], "geometry": {"coordinates": [[[8.561243, 47.380681], [8.561533, 47.380904]]], "type": "MultiLineString"}, "id": "1522", "properties": {}, "type": "Feature"}, {"bbox": [8.479191, 47.380648, 8.481308, 47.382396], "geometry": {"coordinates": [[[8.481308, 47.380648], [8.480236, 47.381532], [8.479191, 47.382396]]], "type": "MultiLineString"}, "id": "1524", "properties": {}, "type": "Feature"}, {"bbox": [8.561624, 47.377992, 8.562911, 47.378714], "geometry": {"coordinates": [[[8.562911, 47.377992], [8.561745, 47.378655], [8.561624, 47.378714]]], "type": "MultiLineString"}, "id": "1525", "properties": {}, "type": "Feature"}, {"bbox": [8.530657, 47.369267, 8.531126, 47.369654], "geometry": {"coordinates": [[[8.531126, 47.369267], [8.530657, 47.369654]]], "type": "MultiLineString"}, "id": "1532", "properties": {}, "type": "Feature"}, {"bbox": [8.556599, 47.3575, 8.557783, 47.357836], "geometry": {"coordinates": [[[8.556599, 47.357527], [8.556911, 47.3575], [8.557783, 47.357836]]], "type": "MultiLineString"}, "id": "1537", "properties": {}, "type": "Feature"}, {"bbox": [8.596593, 47.353804, 8.597579, 47.354556], "geometry": {"coordinates": [[[8.597579, 47.354556], [8.596593, 47.353804]]], "type": "MultiLineString"}, "id": "1543", "properties": {}, "type": "Feature"}, {"bbox": [8.53166, 47.347226, 8.53189, 47.348081], "geometry": {"coordinates": [[[8.53166, 47.348081], [8.531852, 47.347384], [8.53189, 47.347226]]], "type": "MultiLineString"}, "id": "1549", "properties": {}, "type": "Feature"}, {"bbox": [8.556988, 47.369745, 8.559211, 47.370412], "geometry": {"coordinates": [[[8.556988, 47.369745], [8.557728, 47.369963], [8.558206, 47.370118], [8.558396, 47.370171], [8.559211, 47.370412]]], "type": "MultiLineString"}, "id": "1553", "properties": {}, "type": "Feature"}, {"bbox": [8.549051, 47.42642, 8.549212, 47.426671], "geometry": {"coordinates": [[[8.549051, 47.426671], [8.549132, 47.426565], [8.549212, 47.42642]]], "type": "MultiLineString"}, "id": "1556", "properties": {}, "type": "Feature"}, {"bbox": [8.527379, 47.377011, 8.527789, 47.377417], "geometry": {"coordinates": [[[8.527403, 47.377011], [8.527379, 47.377075], [8.527789, 47.377417]]], "type": "MultiLineString"}, "id": "1559", "properties": {}, "type": "Feature"}, {"bbox": [8.546711, 47.363915, 8.54859, 47.364439], "geometry": {"coordinates": [[[8.546711, 47.363915], [8.547472, 47.364114], [8.548479, 47.364428], [8.54859, 47.364439]]], "type": "MultiLineString"}, "id": "1561", "properties": {}, "type": "Feature"}, {"bbox": [8.524358, 47.371836, 8.525982, 47.373287], "geometry": {"coordinates": [[[8.525982, 47.371836], [8.525237, 47.372711], [8.524662, 47.373181], [8.524591, 47.373214], [8.524517, 47.373243], [8.524439, 47.373267], [8.524358, 47.373287]]], "type": "MultiLineString"}, "id": "1562", "properties": {}, "type": "Feature"}, {"bbox": [8.545332, 47.383482, 8.546165, 47.383827], "geometry": {"coordinates": [[[8.545332, 47.383482], [8.545516, 47.383549], [8.546165, 47.383827]]], "type": "MultiLineString"}, "id": "1563", "properties": {}, "type": "Feature"}, {"bbox": [8.504494, 47.403595, 8.505232, 47.404079], "geometry": {"coordinates": [[[8.504494, 47.403595], [8.504584, 47.403634], [8.505163, 47.404059], [8.505232, 47.404079]]], "type": "MultiLineString"}, "id": "1566", "properties": {}, "type": "Feature"}, {"bbox": [8.48844, 47.384971, 8.489224, 47.38695], "geometry": {"coordinates": [[[8.489224, 47.38695], [8.489089, 47.386531], [8.488855, 47.3858], [8.488504, 47.385024], [8.488498, 47.385015], [8.488491, 47.385007], [8.488482, 47.384998], [8.488473, 47.384991], [8.488463, 47.384983], [8.488452, 47.384977], [8.48844, 47.384971]]], "type": "MultiLineString"}, "id": "1569", "properties": {}, "type": "Feature"}, {"bbox": [8.508655, 47.356235, 8.509721, 47.357456], "geometry": {"coordinates": [[[8.509721, 47.356235], [8.508655, 47.357456]]], "type": "MultiLineString"}, "id": "1570", "properties": {}, "type": "Feature"}, {"bbox": [8.566521, 47.360669, 8.567148, 47.361053], "geometry": {"coordinates": [[[8.566521, 47.360669], [8.567148, 47.361053]]], "type": "MultiLineString"}, "id": "1571", "properties": {}, "type": "Feature"}, {"bbox": [8.554358, 47.364341, 8.554431, 47.364725], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554358, 47.36461], [8.554399, 47.364396], [8.554405, 47.364379], [8.554412, 47.364361], [8.554418, 47.364344], [8.554419, 47.364341]]], "type": "MultiLineString"}, "id": "1575", "properties": {}, "type": "Feature"}, {"bbox": [8.544934, 47.402018, 8.545961, 47.402589], "geometry": {"coordinates": [[[8.545961, 47.402018], [8.54513, 47.402494], [8.544934, 47.402589]]], "type": "MultiLineString"}, "id": "1579", "properties": {}, "type": "Feature"}, {"bbox": [8.522767, 47.374509, 8.524298, 47.375235], "geometry": {"coordinates": [[[8.524298, 47.374509], [8.523584, 47.375009], [8.523359, 47.37504], [8.522767, 47.375235]]], "type": "MultiLineString"}, "id": "1580", "properties": {}, "type": "Feature"}, {"bbox": [8.517209, 47.372851, 8.518177, 47.373651], "geometry": {"coordinates": [[[8.518177, 47.372851], [8.518086, 47.372912], [8.517462, 47.373438], [8.517209, 47.373651]]], "type": "MultiLineString"}, "id": "1581", "properties": {}, "type": "Feature"}, {"bbox": [8.551667, 47.405252, 8.552192, 47.406339], "geometry": {"coordinates": [[[8.551667, 47.405252], [8.551762, 47.405454], [8.551942, 47.405831], [8.552191, 47.406336], [8.552192, 47.406339]]], "type": "MultiLineString"}, "id": "1586", "properties": {}, "type": "Feature"}, {"bbox": [8.558777, 47.408199, 8.558858, 47.410815], "geometry": {"coordinates": [[[8.558858, 47.408199], [8.55884, 47.408896], [8.558815, 47.409502], [8.558801, 47.409997], [8.558777, 47.410815]]], "type": "MultiLineString"}, "id": "1587", "properties": {}, "type": "Feature"}, {"bbox": [8.474249, 47.386802, 8.474905, 47.387791], "geometry": {"coordinates": [[[8.474905, 47.387791], [8.474249, 47.387077], [8.474893, 47.386802]]], "type": "MultiLineString"}, "id": "1591", "properties": {}, "type": "Feature"}, {"bbox": [8.536361, 47.388449, 8.538836, 47.389341], "geometry": {"coordinates": [[[8.536361, 47.388473], [8.536494, 47.388453], [8.536508, 47.388451], [8.536522, 47.388449], [8.536537, 47.388449], [8.536552, 47.38845], [8.536566, 47.388451], [8.53658, 47.388453], [8.536594, 47.388457], [8.536607, 47.388461], [8.53662, 47.388465], [8.536869, 47.388559], [8.537653, 47.388853], [8.53821, 47.389063], [8.538684, 47.38924], [8.538836, 47.389341]]], "type": "MultiLineString"}, "id": "1592", "properties": {}, "type": "Feature"}, {"bbox": [8.528178, 47.383269, 8.530465, 47.385484], "geometry": {"coordinates": [[[8.528178, 47.383269], [8.528679, 47.383795], [8.528855, 47.383967], [8.528883, 47.383995], [8.528916, 47.384021], [8.528952, 47.384045], [8.529795, 47.384833], [8.529847, 47.384893], [8.530465, 47.385484]]], "type": "MultiLineString"}, "id": "1593", "properties": {}, "type": "Feature"}, {"bbox": [8.526577, 47.394742, 8.52971, 47.39581], "geometry": {"coordinates": [[[8.52971, 47.394742], [8.528258, 47.39521], [8.527764, 47.395382], [8.526903, 47.395663], [8.526716, 47.395728], [8.526666, 47.395752], [8.526619, 47.395779], [8.526577, 47.39581]]], "type": "MultiLineString"}, "id": "1595", "properties": {}, "type": "Feature"}, {"bbox": [8.526472, 47.412157, 8.527097, 47.412916], "geometry": {"coordinates": [[[8.526472, 47.412157], [8.526532, 47.412253], [8.526588, 47.412334], [8.526627, 47.412384], [8.526847, 47.412696], [8.526924, 47.412773], [8.527007, 47.412846], [8.527097, 47.412916]]], "type": "MultiLineString"}, "id": "1596", "properties": {}, "type": "Feature"}, {"bbox": [8.561009, 47.411648, 8.561094, 47.412735], "geometry": {"coordinates": [[[8.561094, 47.411648], [8.561009, 47.412735]]], "type": "MultiLineString"}, "id": "1597", "properties": {}, "type": "Feature"}, {"bbox": [8.535057, 47.410591, 8.53531, 47.411124], "geometry": {"coordinates": [[[8.535057, 47.410591], [8.53531, 47.411124]]], "type": "MultiLineString"}, "id": "1606", "properties": {}, "type": "Feature"}, {"bbox": [8.504494, 47.403117, 8.505382, 47.403595], "geometry": {"coordinates": [[[8.504494, 47.403595], [8.504586, 47.403568], [8.504944, 47.40336], [8.505382, 47.403117]]], "type": "MultiLineString"}, "id": "1607", "properties": {}, "type": "Feature"}, {"bbox": [8.541474, 47.406704, 8.542411, 47.408033], "geometry": {"coordinates": [[[8.542411, 47.408033], [8.542272, 47.407818], [8.541474, 47.406704]]], "type": "MultiLineString"}, "id": "1612", "properties": {}, "type": "Feature"}, {"bbox": [8.558452, 47.40323, 8.559282, 47.403901], "geometry": {"coordinates": [[[8.558452, 47.403901], [8.559255, 47.403314], [8.559282, 47.40323]]], "type": "MultiLineString"}, "id": "1613", "properties": {}, "type": "Feature"}, {"bbox": [8.52766, 47.374793, 8.529738, 47.376179], "geometry": {"coordinates": [[[8.52766, 47.374793], [8.527868, 47.374932], [8.528001, 47.37502], [8.528321, 47.375234], [8.528437, 47.375311], [8.529067, 47.375729], [8.529738, 47.376179]]], "type": "MultiLineString"}, "id": "1615", "properties": {}, "type": "Feature"}, {"bbox": [8.541337, 47.367362, 8.541734, 47.367368], "geometry": {"coordinates": [[[8.541734, 47.367368], [8.541337, 47.367362]]], "type": "MultiLineString"}, "id": "1616", "properties": {}, "type": "Feature"}, {"bbox": [8.507787, 47.421847, 8.510096, 47.422217], "geometry": {"coordinates": [[[8.507787, 47.421856], [8.507815, 47.421851], [8.507844, 47.421848], [8.507873, 47.421847], [8.507902, 47.421848], [8.507931, 47.42185], [8.50796, 47.421854], [8.507988, 47.421859], [8.508015, 47.421866], [8.508042, 47.421875], [8.508067, 47.421885], [8.508238, 47.421963], [8.508466, 47.422064], [8.508752, 47.422173], [8.508794, 47.422187], [8.508838, 47.422198], [8.508884, 47.422207], [8.50893, 47.422213], [8.508977, 47.422216], [8.509024, 47.422217], [8.509071, 47.422214], [8.509117, 47.422209], [8.509163, 47.422201], [8.50936, 47.422135], [8.510096, 47.421894]]], "type": "MultiLineString"}, "id": "1617", "properties": {}, "type": "Feature"}, {"bbox": [8.549952, 47.404451, 8.557004, 47.405622], "geometry": {"coordinates": [[[8.557004, 47.404647], [8.55667, 47.404486], [8.556658, 47.404479], [8.556646, 47.404472], [8.556632, 47.404467], [8.556618, 47.404462], [8.556604, 47.404458], [8.556589, 47.404455], [8.556573, 47.404453], [8.556558, 47.404451], [8.556542, 47.404451], [8.556526, 47.404451], [8.556511, 47.404452], [8.555843, 47.404504], [8.555572, 47.404527], [8.555152, 47.404571], [8.554963, 47.404598], [8.554299, 47.404681], [8.553644, 47.404791], [8.552999, 47.404926], [8.552876, 47.404953], [8.552142, 47.405128], [8.551806, 47.405215], [8.551667, 47.405252], [8.551093, 47.405404], [8.551028, 47.405421], [8.550962, 47.405437], [8.550896, 47.405452], [8.550815, 47.405469], [8.550734, 47.405485], [8.550652, 47.405499], [8.550118, 47.405593], [8.549952, 47.405622]]], "type": "MultiLineString"}, "id": "1620", "properties": {}, "type": "Feature"}, {"bbox": [8.568774, 47.40598, 8.569375, 47.406948], "geometry": {"coordinates": [[[8.568774, 47.40598], [8.568922, 47.406166], [8.568986, 47.406277], [8.569263, 47.406773], [8.569375, 47.406948]]], "type": "MultiLineString"}, "id": "1621", "properties": {}, "type": "Feature"}, {"bbox": [8.56371, 47.380106, 8.564171, 47.381057], "geometry": {"coordinates": [[[8.564171, 47.380106], [8.56414, 47.380243], [8.56371, 47.381057]]], "type": "MultiLineString"}, "id": "1622", "properties": {}, "type": "Feature"}, {"bbox": [8.529999, 47.342545, 8.53347, 47.345019], "geometry": {"coordinates": [[[8.53347, 47.345019], [8.533445, 47.344971], [8.533413, 47.344924], [8.533375, 47.34488], [8.533231, 47.344748], [8.53308, 47.34462], [8.532923, 47.344495], [8.532844, 47.344435], [8.532764, 47.344376], [8.532682, 47.344318], [8.53262, 47.344287], [8.532555, 47.34426], [8.532487, 47.344236], [8.532416, 47.344216], [8.532383, 47.344209], [8.532349, 47.344202], [8.532315, 47.344196], [8.531391, 47.3441], [8.531253, 47.344085], [8.529999, 47.34394], [8.530026, 47.34384], [8.530061, 47.34374], [8.530103, 47.343642], [8.530119, 47.343606], [8.530139, 47.343571], [8.530163, 47.343537], [8.530192, 47.343505], [8.530224, 47.343475], [8.530801, 47.342922], [8.53084, 47.342872], [8.530873, 47.342821], [8.530899, 47.342767], [8.530917, 47.342713], [8.530929, 47.342657], [8.530933, 47.342601], [8.53093, 47.342545]]], "type": "MultiLineString"}, "id": "1624", "properties": {}, "type": "Feature"}, {"bbox": [8.482712, 47.394126, 8.483939, 47.39559], "geometry": {"coordinates": [[[8.483939, 47.394126], [8.483595, 47.394415], [8.483192, 47.39478], [8.483142, 47.394838], [8.483093, 47.394898], [8.483046, 47.394957], [8.482743, 47.395391], [8.482731, 47.395409], [8.482723, 47.395428], [8.482717, 47.395447], [8.482713, 47.395466], [8.482712, 47.395485], [8.482713, 47.395505], [8.482717, 47.395524], [8.482723, 47.395543], [8.482732, 47.395561], [8.482748, 47.39559]]], "type": "MultiLineString"}, "id": "1627", "properties": {}, "type": "Feature"}, {"bbox": [8.531516, 47.36107, 8.532866, 47.361283], "geometry": {"coordinates": [[[8.532866, 47.361283], [8.532159, 47.361172], [8.531516, 47.36107]]], "type": "MultiLineString"}, "id": "1629", "properties": {}, "type": "Feature"}, {"bbox": [8.519758, 47.365088, 8.521385, 47.365288], "geometry": {"coordinates": [[[8.521385, 47.365088], [8.521094, 47.365091], [8.519758, 47.365288]]], "type": "MultiLineString"}, "id": "1630", "properties": {}, "type": "Feature"}, {"bbox": [8.528408, 47.369874, 8.529117, 47.370617], "geometry": {"coordinates": [[[8.529117, 47.369874], [8.528984, 47.369999], [8.528408, 47.370617]]], "type": "MultiLineString"}, "id": "1631", "properties": {}, "type": "Feature"}, {"bbox": [8.56765, 47.359493, 8.567962, 47.360257], "geometry": {"coordinates": [[[8.567962, 47.360257], [8.567865, 47.36013], [8.56765, 47.359493]]], "type": "MultiLineString"}, "id": "1632", "properties": {}, "type": "Feature"}, {"bbox": [8.553144, 47.354301, 8.556149, 47.356008], "geometry": {"coordinates": [[[8.553144, 47.354301], [8.55451, 47.355243], [8.554725, 47.355321], [8.554843, 47.355377], [8.555984, 47.355913], [8.556041, 47.355941], [8.556094, 47.355971], [8.556144, 47.356004], [8.556149, 47.356008]]], "type": "MultiLineString"}, "id": "1635", "properties": {}, "type": "Feature"}, {"bbox": [8.580605, 47.36001, 8.581708, 47.360887], "geometry": {"coordinates": [[[8.580605, 47.360145], [8.581708, 47.36001], [8.581695, 47.360119], [8.581515, 47.36051], [8.581279, 47.360887]]], "type": "MultiLineString"}, "id": "1636", "properties": {}, "type": "Feature"}, {"bbox": [8.555178, 47.371652, 8.556268, 47.372138], "geometry": {"coordinates": [[[8.555178, 47.371652], [8.556268, 47.372138]]], "type": "MultiLineString"}, "id": "1637", "properties": {}, "type": "Feature"}, {"bbox": [8.524884, 47.336172, 8.526144, 47.336524], "geometry": {"coordinates": [[[8.526144, 47.336524], [8.526068, 47.336491], [8.525908, 47.336412], [8.525738, 47.336344], [8.52556, 47.336286], [8.525375, 47.336239], [8.525185, 47.336203], [8.52499, 47.336179], [8.524884, 47.336172]]], "type": "MultiLineString"}, "id": "1638", "properties": {}, "type": "Feature"}, {"bbox": [8.516472, 47.378634, 8.519511, 47.379646], "geometry": {"coordinates": [[[8.519511, 47.378634], [8.518956, 47.378841], [8.518482, 47.379014], [8.518447, 47.379027], [8.518412, 47.379039], [8.518377, 47.379051], [8.518062, 47.379159], [8.517744, 47.379263], [8.517424, 47.379363], [8.516713, 47.379574], [8.516472, 47.379646]]], "type": "MultiLineString"}, "id": "1641", "properties": {}, "type": "Feature"}, {"bbox": [8.537173, 47.400751, 8.538672, 47.401625], "geometry": {"coordinates": [[[8.537173, 47.400751], [8.537332, 47.400808], [8.537484, 47.400873], [8.537627, 47.400946], [8.537761, 47.401027], [8.538056, 47.401233], [8.538316, 47.401396], [8.538402, 47.401446], [8.538558, 47.401534], [8.538672, 47.401625]]], "type": "MultiLineString"}, "id": "1645", "properties": {}, "type": "Feature"}, {"bbox": [8.560785, 47.381873, 8.562551, 47.383054], "geometry": {"coordinates": [[[8.562551, 47.381873], [8.562216, 47.382072], [8.561531, 47.382565], [8.560785, 47.383054]]], "type": "MultiLineString"}, "id": "1651", "properties": {}, "type": "Feature"}, {"bbox": [8.480959, 47.374617, 8.481768, 47.374862], "geometry": {"coordinates": [[[8.481768, 47.374862], [8.481396, 47.374724], [8.481376, 47.374635], [8.481008, 47.374622], [8.480959, 47.374617]]], "type": "MultiLineString"}, "id": "1654", "properties": {}, "type": "Feature"}, {"bbox": [8.517462, 47.373438, 8.518217, 47.37387], "geometry": {"coordinates": [[[8.518217, 47.37387], [8.517462, 47.373438]]], "type": "MultiLineString"}, "id": "1655", "properties": {}, "type": "Feature"}, {"bbox": [8.546439, 47.384754, 8.547369, 47.385274], "geometry": {"coordinates": [[[8.546439, 47.384754], [8.546574, 47.384819], [8.547369, 47.385274]]], "type": "MultiLineString"}, "id": "1656", "properties": {}, "type": "Feature"}, {"bbox": [8.541648, 47.385286, 8.542339, 47.385498], "geometry": {"coordinates": [[[8.541648, 47.385286], [8.542339, 47.385498]]], "type": "MultiLineString"}, "id": "1660", "properties": {}, "type": "Feature"}, {"bbox": [8.587475, 47.397074, 8.588245, 47.397659], "geometry": {"coordinates": [[[8.587475, 47.397074], [8.588245, 47.397659]]], "type": "MultiLineString"}, "id": "1661", "properties": {}, "type": "Feature"}, {"bbox": [8.536903, 47.430189, 8.537, 47.43057], "geometry": {"coordinates": [[[8.536903, 47.430189], [8.536949, 47.430408], [8.537, 47.430564], [8.537, 47.43057]]], "type": "MultiLineString"}, "id": "1666", "properties": {}, "type": "Feature"}, {"bbox": [8.533095, 47.364229, 8.534573, 47.364529], "geometry": {"coordinates": [[[8.534573, 47.364529], [8.533863, 47.364385], [8.533095, 47.364229]]], "type": "MultiLineString"}, "id": "1669", "properties": {}, "type": "Feature"}, {"bbox": [8.534994, 47.408999, 8.535393, 47.409991], "geometry": {"coordinates": [[[8.534994, 47.408999], [8.535138, 47.409352], [8.535393, 47.409991]]], "type": "MultiLineString"}, "id": "1670", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.369758, 8.513689, 47.370226], "geometry": {"coordinates": [[[8.513689, 47.369758], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "1671", "properties": {}, "type": "Feature"}, {"bbox": [8.510585, 47.362508, 8.512189, 47.362907], "geometry": {"coordinates": [[[8.512189, 47.362907], [8.510585, 47.362508]]], "type": "MultiLineString"}, "id": "1678", "properties": {}, "type": "Feature"}, {"bbox": [8.539015, 47.397268, 8.539621, 47.397542], "geometry": {"coordinates": [[[8.539015, 47.397268], [8.539621, 47.397542]]], "type": "MultiLineString"}, "id": "1690", "properties": {}, "type": "Feature"}, {"bbox": [8.554963, 47.404598, 8.555284, 47.40523], "geometry": {"coordinates": [[[8.554963, 47.404598], [8.554993, 47.404711], [8.555056, 47.404857], [8.55514, 47.404999], [8.555243, 47.405134], [8.555284, 47.40523]]], "type": "MultiLineString"}, "id": "1693", "properties": {}, "type": "Feature"}, {"bbox": [8.515761, 47.412806, 8.517258, 47.413603], "geometry": {"coordinates": [[[8.517258, 47.412806], [8.516856, 47.413059], [8.516776, 47.413097], [8.515841, 47.413603], [8.515761, 47.413601]]], "type": "MultiLineString"}, "id": "1698", "properties": {}, "type": "Feature"}, {"bbox": [8.490681, 47.403802, 8.503272, 47.407827], "geometry": {"coordinates": [[[8.503272, 47.403802], [8.503266, 47.403816], [8.503257, 47.40383], [8.503247, 47.403844], [8.503235, 47.403856], [8.503222, 47.403869], [8.503207, 47.40388], [8.50319, 47.40389], [8.503173, 47.403899], [8.503154, 47.403908], [8.503135, 47.403915], [8.502909, 47.404007], [8.502689, 47.404104], [8.502476, 47.404209], [8.501833, 47.404518], [8.501586, 47.404633], [8.501566, 47.404642], [8.501545, 47.40465], [8.501523, 47.404657], [8.501501, 47.404662], [8.501477, 47.404666], [8.501454, 47.404669], [8.501405, 47.404704], [8.50137, 47.404727], [8.501334, 47.404749], [8.501296, 47.404769], [8.500936, 47.404921], [8.500778, 47.404987], [8.500727, 47.404992], [8.500596, 47.405038], [8.500189, 47.405175], [8.499951, 47.40526], [8.499426, 47.405417], [8.499273, 47.405463], [8.498667, 47.405635], [8.497932, 47.40583], [8.49719, 47.406012], [8.496442, 47.406181], [8.496194, 47.406231], [8.495943, 47.406272], [8.495689, 47.406304], [8.49535, 47.406334], [8.495016, 47.406382], [8.494688, 47.406449], [8.494369, 47.406533], [8.493929, 47.406668], [8.493509, 47.406831], [8.493114, 47.40702], [8.492747, 47.407233], [8.492676, 47.40727], [8.492602, 47.407304], [8.492525, 47.407335], [8.492318, 47.407413], [8.492102, 47.407478], [8.491878, 47.407531], [8.490681, 47.407827]]], "type": "MultiLineString"}, "id": "1701", "properties": {}, "type": "Feature"}, {"bbox": [8.473208, 47.382049, 8.477774, 47.384741], "geometry": {"coordinates": [[[8.477774, 47.384741], [8.477579, 47.384585], [8.477362, 47.384443], [8.477127, 47.384316], [8.476874, 47.384206], [8.476695, 47.384175], [8.476512, 47.384155], [8.476328, 47.384148], [8.476143, 47.384152], [8.476065, 47.384149], [8.475987, 47.384141], [8.47591, 47.384128], [8.475836, 47.384111], [8.475764, 47.384089], [8.475695, 47.384063], [8.47563, 47.384033], [8.47557, 47.383999], [8.475513, 47.383962], [8.47534, 47.383801], [8.474625, 47.383159], [8.474318, 47.382891], [8.474037, 47.382655], [8.474004, 47.382637], [8.47397, 47.38262], [8.473936, 47.382603], [8.473711, 47.382427], [8.473488, 47.38225], [8.473267, 47.382072], [8.473208, 47.382049]]], "type": "MultiLineString"}, "id": "1703", "properties": {}, "type": "Feature"}, {"bbox": [8.566034, 47.356685, 8.568354, 47.357297], "geometry": {"coordinates": [[[8.566034, 47.356685], [8.566202, 47.356722], [8.566324, 47.356753], [8.566526, 47.356807], [8.568136, 47.357239], [8.568354, 47.357297]]], "type": "MultiLineString"}, "id": "1705", "properties": {}, "type": "Feature"}, {"bbox": [8.552419, 47.380197, 8.553592, 47.380838], "geometry": {"coordinates": [[[8.552419, 47.380197], [8.553592, 47.380838]]], "type": "MultiLineString"}, "id": "1723", "properties": {}, "type": "Feature"}, {"bbox": [8.494229, 47.375321, 8.494899, 47.375717], "geometry": {"coordinates": [[[8.494229, 47.375717], [8.494424, 47.375526], [8.494503, 47.375481], [8.494899, 47.375321]]], "type": "MultiLineString"}, "id": "1724", "properties": {}, "type": "Feature"}, {"bbox": [8.528236, 47.34188, 8.529236, 47.342934], "geometry": {"coordinates": [[[8.529236, 47.34188], [8.52909, 47.342117], [8.528842, 47.342421], [8.528673, 47.342597], [8.528509, 47.342729], [8.528356, 47.342849], [8.528236, 47.342934]]], "type": "MultiLineString"}, "id": "1727", "properties": {}, "type": "Feature"}, {"bbox": [8.553465, 47.405888, 8.554946, 47.408134], "geometry": {"coordinates": [[[8.553465, 47.405888], [8.553559, 47.405999], [8.55402, 47.406541], [8.554096, 47.406661], [8.554289, 47.406998], [8.55488, 47.408019], [8.554946, 47.408134]]], "type": "MultiLineString"}, "id": "1728", "properties": {}, "type": "Feature"}, {"bbox": [8.552192, 47.406339, 8.553406, 47.408108], "geometry": {"coordinates": [[[8.552192, 47.406339], [8.552278, 47.406393], [8.552635, 47.406895], [8.552685, 47.406977], [8.552917, 47.407345], [8.553078, 47.407605], [8.553406, 47.408108]]], "type": "MultiLineString"}, "id": "1729", "properties": {}, "type": "Feature"}, {"bbox": [8.511325, 47.361676, 8.517318, 47.363146], "geometry": {"coordinates": [[[8.517318, 47.363146], [8.517161, 47.363116], [8.515626, 47.362735], [8.515073, 47.362619], [8.514802, 47.362551], [8.511325, 47.361676]]], "type": "MultiLineString"}, "id": "1732", "properties": {}, "type": "Feature"}, {"bbox": [8.516642, 47.372557, 8.517529, 47.375641], "geometry": {"coordinates": [[[8.517529, 47.372557], [8.517377, 47.373021], [8.517295, 47.373311], [8.517209, 47.373651], [8.517146, 47.373937], [8.516992, 47.374449], [8.516865, 47.374872], [8.516642, 47.375641]]], "type": "MultiLineString"}, "id": "1733", "properties": {}, "type": "Feature"}, {"bbox": [8.552204, 47.383175, 8.553242, 47.383943], "geometry": {"coordinates": [[[8.553242, 47.383175], [8.553122, 47.383275], [8.552622, 47.38363], [8.552204, 47.383943]]], "type": "MultiLineString"}, "id": "1736", "properties": {}, "type": "Feature"}, {"bbox": [8.580022, 47.357005, 8.580266, 47.357136], "geometry": {"coordinates": [[[8.580022, 47.357005], [8.580047, 47.357007], [8.580072, 47.357011], [8.580095, 47.357017], [8.580119, 47.357024], [8.580141, 47.357032], [8.580162, 47.357041], [8.580181, 47.357052], [8.5802, 47.357064], [8.580216, 47.357076], [8.580232, 47.35709], [8.580245, 47.357105], [8.580257, 47.35712], [8.580266, 47.357136]]], "type": "MultiLineString"}, "id": "1745", "properties": {}, "type": "Feature"}, {"bbox": [8.525772, 47.390731, 8.52806, 47.391773], "geometry": {"coordinates": [[[8.52806, 47.390731], [8.527283, 47.391044], [8.527114, 47.391117], [8.526866, 47.391236], [8.526377, 47.391496], [8.526292, 47.391562], [8.526277, 47.391576], [8.526212, 47.391605], [8.525772, 47.391773]]], "type": "MultiLineString"}, "id": "1746", "properties": {}, "type": "Feature"}, {"bbox": [8.569583, 47.367619, 8.570302, 47.368669], "geometry": {"coordinates": [[[8.569599, 47.368669], [8.569592, 47.368655], [8.569587, 47.368642], [8.569585, 47.368628], [8.569583, 47.368614], [8.569584, 47.3686], [8.569586, 47.368586], [8.569591, 47.368572], [8.569596, 47.368559], [8.569604, 47.368546], [8.569613, 47.368533], [8.570302, 47.367619]]], "type": "MultiLineString"}, "id": "1749", "properties": {}, "type": "Feature"}, {"bbox": [8.502572, 47.3652, 8.511104, 47.367927], "geometry": {"coordinates": [[[8.511104, 47.367927], [8.510628, 47.367879], [8.509555, 47.367676], [8.508727, 47.367528], [8.507909, 47.367353], [8.507105, 47.367154], [8.506948, 47.367127], [8.506514, 47.366996], [8.506088, 47.366854], [8.505669, 47.366703], [8.505125, 47.366485], [8.504598, 47.36625], [8.504087, 47.365999], [8.504073, 47.365991], [8.503709, 47.365799], [8.502572, 47.3652]]], "type": "MultiLineString"}, "id": "1756", "properties": {}, "type": "Feature"}, {"bbox": [8.560402, 47.381467, 8.561513, 47.382111], "geometry": {"coordinates": [[[8.560402, 47.382111], [8.560478, 47.382057], [8.56055, 47.382001], [8.560616, 47.381942], [8.560673, 47.381893], [8.560735, 47.381848], [8.560803, 47.381807], [8.560876, 47.38177], [8.560953, 47.381737], [8.561513, 47.381467]]], "type": "MultiLineString"}, "id": "1758", "properties": {}, "type": "Feature"}, {"bbox": [8.525821, 47.372819, 8.52627, 47.373852], "geometry": {"coordinates": [[[8.525821, 47.372819], [8.525946, 47.373048], [8.52627, 47.373852]]], "type": "MultiLineString"}, "id": "1759", "properties": {}, "type": "Feature"}, {"bbox": [8.570218, 47.405449, 8.571182, 47.406552], "geometry": {"coordinates": [[[8.570717, 47.405449], [8.571032, 47.405895], [8.571113, 47.40601], [8.571182, 47.406083], [8.570764, 47.406296], [8.570218, 47.406552]]], "type": "MultiLineString"}, "id": "1760", "properties": {}, "type": "Feature"}, {"bbox": [8.531421, 47.34069, 8.532453, 47.340892], "geometry": {"coordinates": [[[8.532453, 47.34071], [8.532368, 47.340698], [8.532281, 47.340692], [8.532194, 47.34069], [8.532107, 47.340694], [8.532021, 47.340704], [8.531936, 47.340718], [8.531854, 47.340738], [8.531775, 47.340762], [8.531699, 47.340792], [8.531627, 47.340825], [8.531597, 47.340842], [8.531565, 47.340856], [8.531531, 47.340868], [8.531495, 47.340878], [8.531459, 47.340886], [8.531421, 47.340892]]], "type": "MultiLineString"}, "id": "1769", "properties": {}, "type": "Feature"}, {"bbox": [8.556374, 47.370261, 8.560851, 47.372814], "geometry": {"coordinates": [[[8.556374, 47.370261], [8.556445, 47.370298], [8.556707, 47.370423], [8.556882, 47.370514], [8.55705, 47.370604], [8.557207, 47.370703], [8.557353, 47.370809], [8.557486, 47.370924], [8.557809, 47.371356], [8.557911, 47.371426], [8.558179, 47.371529], [8.558738, 47.371764], [8.558917, 47.371844], [8.559447, 47.371814], [8.559496, 47.371812], [8.559546, 47.371813], [8.559596, 47.371818], [8.559645, 47.371825], [8.559692, 47.371835], [8.559738, 47.371848], [8.559783, 47.371864], [8.560073, 47.372107], [8.560288, 47.372317], [8.560851, 47.372814]]], "type": "MultiLineString"}, "id": "1778", "properties": {}, "type": "Feature"}, {"bbox": [8.567691, 47.363255, 8.568828, 47.364867], "geometry": {"coordinates": [[[8.567691, 47.364867], [8.567756, 47.3647], [8.568155, 47.36411], [8.568453, 47.363678], [8.568828, 47.363255]]], "type": "MultiLineString"}, "id": "1780", "properties": {}, "type": "Feature"}, {"bbox": [8.55047, 47.408108, 8.563857, 47.409549], "geometry": {"coordinates": [[[8.55047, 47.408615], [8.550651, 47.408609], [8.550831, 47.408592], [8.551008, 47.408564], [8.551181, 47.408526], [8.552212, 47.40825], [8.552459, 47.408189], [8.552771, 47.408142], [8.553087, 47.408115], [8.553406, 47.408108], [8.553441, 47.408108], [8.553475, 47.408109], [8.55351, 47.40811], [8.554946, 47.408134], [8.555023, 47.408136], [8.556262, 47.408156], [8.556578, 47.408161], [8.557546, 47.408177], [8.558583, 47.408194], [8.558714, 47.408196], [8.558858, 47.408199], [8.558958, 47.4082], [8.56024, 47.408221], [8.560362, 47.408223], [8.560483, 47.408225], [8.560777, 47.40823], [8.560957, 47.40824], [8.561135, 47.408262], [8.561309, 47.408296], [8.561468, 47.408338], [8.561621, 47.40839], [8.561766, 47.408451], [8.561902, 47.408521], [8.562721, 47.408952], [8.562783, 47.408985], [8.563816, 47.409528], [8.563857, 47.409549]]], "type": "MultiLineString"}, "id": "1782", "properties": {}, "type": "Feature"}, {"bbox": [8.52501, 47.378786, 8.527199, 47.379952], "geometry": {"coordinates": [[[8.527199, 47.378786], [8.526057, 47.379386], [8.525521, 47.379674], [8.52501, 47.379952]]], "type": "MultiLineString"}, "id": "1785", "properties": {}, "type": "Feature"}, {"bbox": [8.521546, 47.410547, 8.523927, 47.411159], "geometry": {"coordinates": [[[8.523927, 47.410868], [8.523599, 47.410723], [8.523258, 47.410547], [8.52286, 47.410927], [8.522807, 47.410973], [8.522748, 47.411015], [8.522683, 47.411054], [8.522614, 47.411088], [8.52254, 47.411117], [8.522462, 47.411142], [8.522415, 47.411151], [8.522368, 47.411156], [8.52232, 47.411159], [8.522271, 47.411159], [8.522223, 47.411156], [8.522176, 47.41115], [8.522129, 47.411141], [8.521839, 47.410952], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "1791", "properties": {}, "type": "Feature"}, {"bbox": [8.599763, 47.356831, 8.600219, 47.357848], "geometry": {"coordinates": [[[8.599956, 47.356831], [8.600046, 47.356915], [8.600083, 47.356947], [8.600116, 47.35698], [8.600146, 47.357015], [8.60017, 47.357052], [8.60019, 47.35709], [8.600204, 47.357129], [8.600214, 47.357169], [8.600219, 47.35721], [8.600219, 47.35725], [8.600213, 47.35729], [8.600203, 47.35733], [8.600187, 47.357369], [8.600166, 47.357407], [8.600049, 47.357561], [8.599914, 47.357708], [8.599763, 47.357848]]], "type": "MultiLineString"}, "id": "1794", "properties": {}, "type": "Feature"}, {"bbox": [8.506826, 47.398917, 8.509822, 47.401806], "geometry": {"coordinates": [[[8.509792, 47.398917], [8.509817, 47.399018], [8.50982, 47.399031], [8.509822, 47.399044], [8.509821, 47.399058], [8.50982, 47.399071], [8.509816, 47.399084], [8.509811, 47.399097], [8.509804, 47.39911], [8.509796, 47.399122], [8.509786, 47.399133], [8.509635, 47.399259], [8.509508, 47.399368], [8.509329, 47.399539], [8.509215, 47.399674], [8.508989, 47.399929], [8.508917, 47.400023], [8.508726, 47.4002], [8.508583, 47.40035], [8.507905, 47.400864], [8.507629, 47.40106], [8.507467, 47.401184], [8.507324, 47.401307], [8.50715, 47.401475], [8.506847, 47.401785], [8.506826, 47.401806]]], "type": "MultiLineString"}, "id": "1798", "properties": {}, "type": "Feature"}, {"bbox": [8.55641, 47.372317, 8.560288, 47.37441], "geometry": {"coordinates": [[[8.55641, 47.37441], [8.556612, 47.374234], [8.55733, 47.373604], [8.557535, 47.373398], [8.557854, 47.373129], [8.557896, 47.373097], [8.557942, 47.373067], [8.557992, 47.373041], [8.558045, 47.373017], [8.558101, 47.372997], [8.558159, 47.37298], [8.55822, 47.372967], [8.558281, 47.372958], [8.558344, 47.372952], [8.558408, 47.372951], [8.558471, 47.372953], [8.558534, 47.372959], [8.558595, 47.372969], [8.558651, 47.372976], [8.558708, 47.37298], [8.558764, 47.372981], [8.558821, 47.372979], [8.558877, 47.372973], [8.558933, 47.372965], [8.558987, 47.372953], [8.559039, 47.372938], [8.55909, 47.37292], [8.559108, 47.372912], [8.560146, 47.372403], [8.560288, 47.372317]]], "type": "MultiLineString"}, "id": "1800", "properties": {}, "type": "Feature"}, {"bbox": [8.569482, 47.414542, 8.571021, 47.414691], "geometry": {"coordinates": [[[8.571021, 47.414691], [8.570846, 47.414659], [8.570445, 47.414581], [8.570356, 47.414563], [8.570265, 47.414551], [8.570173, 47.414544], [8.57008, 47.414542], [8.569987, 47.414546], [8.569482, 47.414564]]], "type": "MultiLineString"}, "id": "1803", "properties": {}, "type": "Feature"}, {"bbox": [8.472072, 47.390242, 8.474384, 47.390955], "geometry": {"coordinates": [[[8.474384, 47.390752], [8.474281, 47.390725], [8.473817, 47.390382], [8.473785, 47.390357], [8.473749, 47.390334], [8.473711, 47.390314], [8.47367, 47.390296], [8.473627, 47.39028], [8.473582, 47.390267], [8.473536, 47.390256], [8.473488, 47.390249], [8.47344, 47.390244], [8.473391, 47.390242], [8.473342, 47.390243], [8.473294, 47.390247], [8.473246, 47.390254], [8.473199, 47.390264], [8.473154, 47.390277], [8.47311, 47.390292], [8.473069, 47.390309], [8.47303, 47.390329], [8.472994, 47.390352], [8.472961, 47.390376], [8.472677, 47.390578], [8.47238, 47.390771], [8.472072, 47.390955]]], "type": "MultiLineString"}, "id": "1817", "properties": {}, "type": "Feature"}, {"bbox": [8.565303, 47.360292, 8.567019, 47.361548], "geometry": {"coordinates": [[[8.565303, 47.361548], [8.565326, 47.361531], [8.565497, 47.361406], [8.565626, 47.361311], [8.566521, 47.360669], [8.56673, 47.36052], [8.56683, 47.360446], [8.566927, 47.360371], [8.567019, 47.360292]]], "type": "MultiLineString"}, "id": "1823", "properties": {}, "type": "Feature"}, {"bbox": [8.531384, 47.36337, 8.53353, 47.363924], "geometry": {"coordinates": [[[8.53353, 47.36337], [8.533416, 47.363373], [8.533302, 47.363383], [8.53319, 47.363399], [8.53308, 47.363423], [8.532011, 47.363744], [8.531384, 47.363924]]], "type": "MultiLineString"}, "id": "1824", "properties": {}, "type": "Feature"}, {"bbox": [8.484755, 47.407938, 8.486203, 47.410186], "geometry": {"coordinates": [[[8.484836, 47.407938], [8.484897, 47.407959], [8.484954, 47.407984], [8.485008, 47.408012], [8.485057, 47.408044], [8.48511, 47.408073], [8.485167, 47.4081], [8.485227, 47.408124], [8.485289, 47.408144], [8.485707, 47.408257], [8.485801, 47.408284], [8.48589, 47.408317], [8.485975, 47.408355], [8.486056, 47.408397], [8.486083, 47.408416], [8.486107, 47.408436], [8.48613, 47.408458], [8.486149, 47.40848], [8.486166, 47.408504], [8.48618, 47.408528], [8.486191, 47.408553], [8.486198, 47.408579], [8.486203, 47.408605], [8.4862, 47.408627], [8.486195, 47.408649], [8.486187, 47.40867], [8.486176, 47.408691], [8.486162, 47.40871], [8.486147, 47.40873], [8.486129, 47.408748], [8.486108, 47.408765], [8.485765, 47.409036], [8.485423, 47.409308], [8.48508, 47.409581], [8.485021, 47.409628], [8.484967, 47.409679], [8.48492, 47.409733], [8.48488, 47.409789], [8.484847, 47.409847], [8.484763, 47.410078], [8.484758, 47.410096], [8.484755, 47.410114], [8.484755, 47.410133], [8.484757, 47.410151], [8.484761, 47.410169], [8.484764, 47.41018], [8.484764, 47.410186]]], "type": "MultiLineString"}, "id": "1825", "properties": {}, "type": "Feature"}, {"bbox": [8.539266, 47.375675, 8.540898, 47.376056], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540846, 47.376019], [8.539548, 47.375675], [8.539266, 47.375741]]], "type": "MultiLineString"}, "id": "1826", "properties": {}, "type": "Feature"}, {"bbox": [8.528053, 47.377945, 8.529117, 47.378943], "geometry": {"coordinates": [[[8.528053, 47.377945], [8.52858, 47.378443], [8.529117, 47.378943]]], "type": "MultiLineString"}, "id": "1827", "properties": {}, "type": "Feature"}, {"bbox": [8.558585, 47.352312, 8.559116, 47.352904], "geometry": {"coordinates": [[[8.558954, 47.352312], [8.558771, 47.352445], [8.558744, 47.352481], [8.558585, 47.352617], [8.559116, 47.352904]]], "type": "MultiLineString"}, "id": "1829", "properties": {}, "type": "Feature"}, {"bbox": [8.522589, 47.342518, 8.522657, 47.343594], "geometry": {"coordinates": [[[8.522619, 47.343594], [8.522592, 47.343492], [8.522589, 47.343481], [8.522657, 47.342518]]], "type": "MultiLineString"}, "id": "1831", "properties": {}, "type": "Feature"}, {"bbox": [8.540407, 47.417721, 8.542113, 47.418201], "geometry": {"coordinates": [[[8.542113, 47.418201], [8.542007, 47.418161], [8.541438, 47.417856], [8.541344, 47.417813], [8.541311, 47.417798], [8.541275, 47.417785], [8.541238, 47.417775], [8.541199, 47.417767], [8.54116, 47.417761], [8.54112, 47.417759], [8.540707, 47.417735], [8.540407, 47.417721]]], "type": "MultiLineString"}, "id": "1832", "properties": {}, "type": "Feature"}, {"bbox": [8.516768, 47.370663, 8.520406, 47.373157], "geometry": {"coordinates": [[[8.520406, 47.373157], [8.519626, 47.372725], [8.518858, 47.372299], [8.518171, 47.371906], [8.517559, 47.371577], [8.517291, 47.37143], [8.517247, 47.371405], [8.517206, 47.371377], [8.517168, 47.371348], [8.517134, 47.371316], [8.517104, 47.371282], [8.517078, 47.371247], [8.516798, 47.370881], [8.516784, 47.370851], [8.516775, 47.37082], [8.516769, 47.370788], [8.516768, 47.370756], [8.516771, 47.370725], [8.516778, 47.370693], [8.51679, 47.370663]]], "type": "MultiLineString"}, "id": "1833", "properties": {}, "type": "Feature"}, {"bbox": [8.573332, 47.362256, 8.573761, 47.363095], "geometry": {"coordinates": [[[8.573332, 47.362256], [8.573517, 47.36245], [8.57357, 47.36267], [8.573652, 47.362885], [8.573761, 47.363095]]], "type": "MultiLineString"}, "id": "1834", "properties": {}, "type": "Feature"}, {"bbox": [8.528744, 47.374518, 8.532429, 47.376792], "geometry": {"coordinates": [[[8.532429, 47.374518], [8.531811, 47.374818], [8.531713, 47.374874], [8.53066, 47.37557], [8.530608, 47.375605], [8.530495, 47.375679], [8.529738, 47.376179], [8.529615, 47.37626], [8.529474, 47.376353], [8.528868, 47.376753], [8.52885, 47.376762], [8.52883, 47.37677], [8.52881, 47.376777], [8.528789, 47.376783], [8.528767, 47.376788], [8.528744, 47.376792]]], "type": "MultiLineString"}, "id": "1836", "properties": {}, "type": "Feature"}, {"bbox": [8.501041, 47.401442, 8.503077, 47.402423], "geometry": {"coordinates": [[[8.501041, 47.401442], [8.501103, 47.401522], [8.501458, 47.401966], [8.501494, 47.402004], [8.501526, 47.402036], [8.501561, 47.402063], [8.501597, 47.402084], [8.501636, 47.402103], [8.501678, 47.40212], [8.501721, 47.402134], [8.501766, 47.402145], [8.501812, 47.402153], [8.501859, 47.402159], [8.501907, 47.402161], [8.501955, 47.402161], [8.502003, 47.402158], [8.502285, 47.402147], [8.502349, 47.402146], [8.502413, 47.40215], [8.502475, 47.402157], [8.502537, 47.402168], [8.502597, 47.402182], [8.502655, 47.4022], [8.502711, 47.402221], [8.502764, 47.402245], [8.502985, 47.402385], [8.503077, 47.402423]]], "type": "MultiLineString"}, "id": "1837", "properties": {}, "type": "Feature"}, {"bbox": [8.53983, 47.426636, 8.544382, 47.431186], "geometry": {"coordinates": [[[8.544382, 47.426636], [8.544111, 47.427083], [8.544047, 47.427156], [8.543947, 47.427208], [8.543566, 47.427357], [8.543441, 47.427405], [8.543323, 47.427454], [8.543212, 47.427511], [8.543109, 47.427574], [8.543015, 47.427643], [8.542932, 47.427718], [8.542874, 47.427782], [8.54282, 47.427848], [8.542771, 47.427915], [8.542754, 47.42794], [8.542738, 47.427965], [8.542722, 47.427991], [8.542681, 47.428098], [8.542575, 47.42844], [8.542526, 47.428595], [8.5425, 47.428606], [8.542489, 47.428612], [8.542479, 47.428619], [8.542469, 47.428626], [8.542461, 47.428634], [8.542453, 47.428643], [8.542445, 47.428652], [8.542437, 47.428661], [8.542429, 47.42867], [8.54242, 47.428679], [8.542412, 47.428689], [8.542389, 47.428713], [8.542366, 47.428737], [8.542344, 47.428761], [8.542324, 47.428782], [8.542304, 47.428802], [8.542284, 47.428822], [8.541886, 47.429209], [8.541579, 47.429483], [8.541062, 47.429924], [8.540674, 47.430255], [8.540597, 47.430381], [8.540131, 47.430949], [8.540081, 47.431016], [8.54005, 47.43105], [8.540014, 47.431082], [8.539974, 47.431112], [8.539931, 47.431139], [8.539884, 47.431163], [8.539834, 47.431185], [8.53983, 47.431186]]], "type": "MultiLineString"}, "id": "1840", "properties": {}, "type": "Feature"}, {"bbox": [8.56909, 47.378185, 8.571536, 47.378627], "geometry": {"coordinates": [[[8.56909, 47.378627], [8.569127, 47.378502], [8.56913, 47.378488], [8.569134, 47.378473], [8.569141, 47.378459], [8.569149, 47.378446], [8.569159, 47.378433], [8.569171, 47.378421], [8.569184, 47.378409], [8.569198, 47.378398], [8.569214, 47.378389], [8.569231, 47.37838], [8.569249, 47.378372], [8.569268, 47.378365], [8.569288, 47.378359], [8.569308, 47.378355], [8.569329, 47.378352], [8.570466, 47.378201], [8.570546, 47.37819], [8.570627, 47.378185], [8.570709, 47.378185], [8.57079, 47.37819], [8.57087, 47.3782], [8.570948, 47.378215], [8.571464, 47.378332], [8.571536, 47.378353]]], "type": "MultiLineString"}, "id": "1853", "properties": {}, "type": "Feature"}, {"bbox": [8.556376, 47.406635, 8.562774, 47.406992], "geometry": {"coordinates": [[[8.556376, 47.406992], [8.556712, 47.40689], [8.557059, 47.406804], [8.557414, 47.406736], [8.557859, 47.406677], [8.558311, 47.406643], [8.558764, 47.406635], [8.560408, 47.406659], [8.56262, 47.406697], [8.562774, 47.406734]]], "type": "MultiLineString"}, "id": "1855", "properties": {}, "type": "Feature"}, {"bbox": [8.544979, 47.377149, 8.547323, 47.380882], "geometry": {"coordinates": [[[8.547323, 47.377149], [8.547149, 47.377472], [8.547117, 47.377529], [8.546653, 47.378272], [8.546628, 47.378312], [8.546397, 47.378681], [8.546148, 47.379077], [8.545869, 47.379528], [8.545507, 47.380014], [8.545449, 47.380114], [8.545149, 47.380609], [8.545, 47.380857], [8.544979, 47.380882]]], "type": "MultiLineString"}, "id": "1861", "properties": {}, "type": "Feature"}, {"bbox": [8.551116, 47.386631, 8.553783, 47.390772], "geometry": {"coordinates": [[[8.551116, 47.389598], [8.55114, 47.389597], [8.551165, 47.389597], [8.551189, 47.389599], [8.551213, 47.389602], [8.551237, 47.389606], [8.55126, 47.389612], [8.551282, 47.38962], [8.551303, 47.389628], [8.551323, 47.389638], [8.551341, 47.389649], [8.551358, 47.389661], [8.551373, 47.389674], [8.551387, 47.389688], [8.551399, 47.389703], [8.551408, 47.389718], [8.551416, 47.389734], [8.551422, 47.38975], [8.551438, 47.389834], [8.551528, 47.390608], [8.551531, 47.390623], [8.551536, 47.390639], [8.551543, 47.390653], [8.551551, 47.390668], [8.551562, 47.390682], [8.551574, 47.390695], [8.551587, 47.390707], [8.551603, 47.390719], [8.551619, 47.390729], [8.551637, 47.390739], [8.551657, 47.390747], [8.551677, 47.390754], [8.551698, 47.39076], [8.55172, 47.390765], [8.551742, 47.390769], [8.551764, 47.390771], [8.551787, 47.390772], [8.55181, 47.390771], [8.551833, 47.390769], [8.551855, 47.390766], [8.551877, 47.390761], [8.551898, 47.390755], [8.551918, 47.390748], [8.551938, 47.39074], [8.551956, 47.390731], [8.551973, 47.39072], [8.551988, 47.390709], [8.552002, 47.390697], [8.552015, 47.390684], [8.552025, 47.39067], [8.552034, 47.390656], [8.552041, 47.390641], [8.552046, 47.390626], [8.552049, 47.390611], [8.552051, 47.390595], [8.552016, 47.390015], [8.55198, 47.389652], [8.551924, 47.389289], [8.551848, 47.388929], [8.55182, 47.388819], [8.551808, 47.388741], [8.551806, 47.388662], [8.551814, 47.388584], [8.551832, 47.388506], [8.55186, 47.38843], [8.551977, 47.388168], [8.552044, 47.388019], [8.552067, 47.387969], [8.552097, 47.387921], [8.552133, 47.387875], [8.552175, 47.387832], [8.552223, 47.387791], [8.552305, 47.387732], [8.55238, 47.387669], [8.552447, 47.387602], [8.552487, 47.387551], [8.55252, 47.387497], [8.552547, 47.387441], [8.552565, 47.387384], [8.552572, 47.387353], [8.552577, 47.387323], [8.55258, 47.387292], [8.552595, 47.387123], [8.552608, 47.387031], [8.55263, 47.386939], [8.552659, 47.386848], [8.552684, 47.386782], [8.552688, 47.386768], [8.552694, 47.386754], [8.552701, 47.38674], [8.55271, 47.386726], [8.552721, 47.386713], [8.552734, 47.3867], [8.552749, 47.386688], [8.552765, 47.386678], [8.552782, 47.386668], [8.5528, 47.386659], [8.55282, 47.386651], [8.55284, 47.386644], [8.552861, 47.386639], [8.552883, 47.386635], [8.552905, 47.386632], [8.552928, 47.386631], [8.55295, 47.386631], [8.552973, 47.386632], [8.552995, 47.386635], [8.553017, 47.386639], [8.553038, 47.386644], [8.553059, 47.38665], [8.553078, 47.386658], [8.553097, 47.386667], [8.553114, 47.386676], [8.55313, 47.386687], [8.553145, 47.386699], [8.553158, 47.386711], [8.553169, 47.386725], [8.553179, 47.386739], [8.553186, 47.386753], [8.553192, 47.386768], [8.553196, 47.386783], [8.553198, 47.386798], [8.553198, 47.386813], [8.553196, 47.386829], [8.553193, 47.386844], [8.553187, 47.386859], [8.553115, 47.386991], [8.553097, 47.387036], [8.553085, 47.387082], [8.55308, 47.387128], [8.553081, 47.387174], [8.5531, 47.387285], [8.553101, 47.387331], [8.553097, 47.387377], [8.553089, 47.387422], [8.55307, 47.387479], [8.553044, 47.387534], [8.553009, 47.387587], [8.552823, 47.387815], [8.552789, 47.387851], [8.55276, 47.38789], [8.552736, 47.38793], [8.552718, 47.387972], [8.552704, 47.388015], [8.552697, 47.388058], [8.552673, 47.388557], [8.552676, 47.38857], [8.55268, 47.388582], [8.552686, 47.388595], [8.552694, 47.388607], [8.552703, 47.388618], [8.552713, 47.388629], [8.552724, 47.388639], [8.552737, 47.388649], [8.552766, 47.388629], [8.552791, 47.388607], [8.552813, 47.388584], [8.552832, 47.38856], [8.552847, 47.388534], [8.552859, 47.388508], [8.552868, 47.388481], [8.552872, 47.388453], [8.552893, 47.388393], [8.552921, 47.388335], [8.552957, 47.388278], [8.553, 47.388224], [8.553441, 47.387756], [8.553477, 47.387725], [8.553517, 47.387695], [8.55356, 47.387668], [8.553632, 47.387629], [8.553707, 47.387591], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "1862", "properties": {}, "type": "Feature"}, {"bbox": [8.507376, 47.419988, 8.509512, 47.421008], "geometry": {"coordinates": [[[8.509512, 47.419988], [8.509511, 47.419989], [8.509445, 47.420087], [8.509372, 47.420184], [8.509291, 47.420277], [8.509228, 47.420335], [8.509159, 47.42039], [8.509085, 47.420443], [8.509085, 47.420443], [8.509084, 47.420444], [8.509084, 47.420445], [8.509078, 47.420454], [8.509071, 47.420464], [8.509063, 47.420473], [8.509053, 47.420482], [8.509043, 47.42049], [8.509031, 47.420497], [8.508953, 47.420542], [8.508869, 47.420583], [8.50878, 47.420619], [8.508767, 47.420623], [8.508753, 47.420628], [8.508739, 47.420633], [8.508682, 47.42065], [8.508624, 47.420666], [8.508566, 47.420682], [8.507376, 47.421008]]], "type": "MultiLineString"}, "id": "1864", "properties": {}, "type": "Feature"}, {"bbox": [8.534997, 47.389308, 8.536312, 47.389938], "geometry": {"coordinates": [[[8.534997, 47.389308], [8.535194, 47.389436], [8.535852, 47.38981], [8.53591, 47.389839], [8.536024, 47.389904], [8.536038, 47.389911], [8.536053, 47.389918], [8.536069, 47.389924], [8.536085, 47.389929], [8.536102, 47.389933], [8.536119, 47.389936], [8.536137, 47.389937], [8.536155, 47.389938], [8.536173, 47.389938], [8.536312, 47.389937]]], "type": "MultiLineString"}, "id": "1866", "properties": {}, "type": "Feature"}, {"bbox": [8.46804, 47.38901, 8.46932, 47.389396], "geometry": {"coordinates": [[[8.46932, 47.389396], [8.469018, 47.389274], [8.468702, 47.389168], [8.468376, 47.38908], [8.46804, 47.38901]]], "type": "MultiLineString"}, "id": "1872", "properties": {}, "type": "Feature"}, {"bbox": [8.526349, 47.353446, 8.527047, 47.353499], "geometry": {"coordinates": [[[8.527047, 47.353499], [8.526349, 47.353446]]], "type": "MultiLineString"}, "id": "1874", "properties": {}, "type": "Feature"}, {"bbox": [8.54418, 47.412614, 8.545162, 47.413043], "geometry": {"coordinates": [[[8.54418, 47.413043], [8.544272, 47.413024], [8.544336, 47.413011], [8.544448, 47.41297], [8.545162, 47.412614]]], "type": "MultiLineString"}, "id": "1875", "properties": {}, "type": "Feature"}, {"bbox": [8.494172, 47.387138, 8.497275, 47.38748], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.494318, 47.387305], [8.495772, 47.387378], [8.497081, 47.38748], [8.497275, 47.387411]]], "type": "MultiLineString"}, "id": "1877", "properties": {}, "type": "Feature"}, {"bbox": [8.542981, 47.423006, 8.543977, 47.426387], "geometry": {"coordinates": [[[8.543271, 47.423006], [8.543107, 47.423453], [8.543001, 47.423728], [8.542987, 47.423789], [8.542981, 47.423851], [8.542982, 47.423912], [8.542992, 47.423974], [8.54301, 47.424034], [8.543036, 47.424093], [8.54307, 47.424151], [8.543164, 47.424296], [8.543421, 47.42469], [8.54353, 47.424856], [8.54374, 47.42522], [8.543753, 47.42525], [8.543765, 47.425281], [8.543775, 47.425312], [8.543784, 47.425343], [8.543791, 47.425374], [8.543796, 47.425405], [8.543917, 47.425842], [8.543924, 47.425874], [8.543977, 47.426103], [8.543977, 47.426136], [8.543973, 47.426169], [8.543964, 47.426202], [8.543951, 47.426234], [8.54393, 47.426274], [8.543905, 47.426313], [8.543874, 47.426351], [8.54384, 47.426387]]], "type": "MultiLineString"}, "id": "1878", "properties": {}, "type": "Feature"}, {"bbox": [8.496527, 47.385164, 8.500916, 47.386451], "geometry": {"coordinates": [[[8.500916, 47.385164], [8.500246, 47.385363], [8.497921, 47.386044], [8.496527, 47.386451]]], "type": "MultiLineString"}, "id": "1880", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.426198, 8.536957, 47.428751], "geometry": {"coordinates": [[[8.536485, 47.426198], [8.536487, 47.426204], [8.536578, 47.426482], [8.53672, 47.426928], [8.536939, 47.427616], [8.53695, 47.427661], [8.536956, 47.427706], [8.536957, 47.427752], [8.536956, 47.427778], [8.536953, 47.427805], [8.536949, 47.427832], [8.536854, 47.428334], [8.536841, 47.428388], [8.536828, 47.428442], [8.536814, 47.428496], [8.53678, 47.428751]]], "type": "MultiLineString"}, "id": "1883", "properties": {}, "type": "Feature"}, {"bbox": [8.502432, 47.356971, 8.506546, 47.361258], "geometry": {"coordinates": [[[8.506546, 47.356971], [8.506456, 47.35706], [8.505326, 47.358344], [8.504853, 47.358891], [8.504329, 47.359417], [8.503757, 47.35992], [8.503659, 47.359965], [8.503563, 47.360023], [8.503474, 47.360086], [8.503392, 47.360153], [8.503319, 47.360225], [8.503255, 47.3603], [8.5032, 47.360379], [8.503155, 47.360461], [8.503135, 47.360532], [8.503107, 47.360602], [8.50307, 47.360671], [8.503026, 47.360737], [8.502973, 47.3608], [8.502914, 47.360861], [8.502432, 47.361258]]], "type": "MultiLineString"}, "id": "1892", "properties": {}, "type": "Feature"}, {"bbox": [8.484357, 47.375667, 8.484738, 47.377024], "geometry": {"coordinates": [[[8.484616, 47.377024], [8.484738, 47.376339], [8.484721, 47.376034], [8.484715, 47.375996], [8.484704, 47.375958], [8.484688, 47.375921], [8.484668, 47.375885], [8.484642, 47.37585], [8.484613, 47.375817], [8.484579, 47.375786], [8.484541, 47.375757], [8.4845, 47.37573], [8.484455, 47.375706], [8.484407, 47.375685], [8.484357, 47.375667]]], "type": "MultiLineString"}, "id": "1899", "properties": {}, "type": "Feature"}, {"bbox": [8.566827, 47.402268, 8.569749, 47.403132], "geometry": {"coordinates": [[[8.569749, 47.403132], [8.569724, 47.403113], [8.569669, 47.403078], [8.569233, 47.402785], [8.569197, 47.402764], [8.56916, 47.402746], [8.56912, 47.40273], [8.569078, 47.402717], [8.569035, 47.402706], [8.56899, 47.402697], [8.568945, 47.402691], [8.568862, 47.402679], [8.568777, 47.402671], [8.568693, 47.402667], [8.568653, 47.402667], [8.568613, 47.402667], [8.568574, 47.402669], [8.568416, 47.40267], [8.568258, 47.402662], [8.568101, 47.402646], [8.567429, 47.402516], [8.56722, 47.402443], [8.567019, 47.40236], [8.566827, 47.402268]]], "type": "MultiLineString"}, "id": "1911", "properties": {}, "type": "Feature"}, {"bbox": [8.56995, 47.362141, 8.57086, 47.363517], "geometry": {"coordinates": [[[8.57086, 47.362141], [8.57086, 47.362141], [8.570528, 47.362611], [8.570428, 47.362755], [8.570328, 47.3629], [8.570236, 47.363046], [8.570132, 47.363213], [8.570089, 47.363283], [8.569992, 47.363455], [8.56995, 47.363517]]], "type": "MultiLineString"}, "id": "1913", "properties": {}, "type": "Feature"}, {"bbox": [8.502087, 47.420982, 8.503505, 47.422641], "geometry": {"coordinates": [[[8.502087, 47.420982], [8.502183, 47.421106], [8.502821, 47.421936], [8.503182, 47.422326], [8.503347, 47.422487], [8.503505, 47.422641]]], "type": "MultiLineString"}, "id": "1915", "properties": {}, "type": "Feature"}, {"bbox": [8.504401, 47.423962, 8.504442, 47.424033], "geometry": {"coordinates": [[[8.504401, 47.423962], [8.504442, 47.424033]]], "type": "MultiLineString"}, "id": "1916", "properties": {}, "type": "Feature"}, {"bbox": [8.527357, 47.377807, 8.529852, 47.379054], "geometry": {"coordinates": [[[8.529852, 47.377807], [8.52858, 47.378443], [8.528475, 47.378496], [8.527357, 47.379054]]], "type": "MultiLineString"}, "id": "1918", "properties": {}, "type": "Feature"}, {"bbox": [8.550495, 47.362125, 8.551476, 47.363564], "geometry": {"coordinates": [[[8.550495, 47.363564], [8.550717, 47.36324], [8.551019, 47.362822], [8.551058, 47.362793], [8.551106, 47.362761], [8.551219, 47.362588], [8.551219, 47.362542], [8.551242, 47.362495], [8.551476, 47.362125]]], "type": "MultiLineString"}, "id": "1921", "properties": {}, "type": "Feature"}, {"bbox": [8.536154, 47.429936, 8.540674, 47.430345], "geometry": {"coordinates": [[[8.540674, 47.430255], [8.540297, 47.430079], [8.540235, 47.430054], [8.54017, 47.430031], [8.540104, 47.430011], [8.539987, 47.429981], [8.539867, 47.429959], [8.539744, 47.429944], [8.53962, 47.429936], [8.539512, 47.429937], [8.539405, 47.42994], [8.539298, 47.429945], [8.53905, 47.429957], [8.538328, 47.429995], [8.537934, 47.429987], [8.537817, 47.429995], [8.536903, 47.430189], [8.536815, 47.430208], [8.536514, 47.430264], [8.536218, 47.430329], [8.536154, 47.430345]]], "type": "MultiLineString"}, "id": "1923", "properties": {}, "type": "Feature"}, {"bbox": [8.48309, 47.373943, 8.483788, 47.374536], "geometry": {"coordinates": [[[8.48309, 47.374536], [8.48351, 47.374137], [8.483788, 47.373943]]], "type": "MultiLineString"}, "id": "1932", "properties": {}, "type": "Feature"}, {"bbox": [8.548663, 47.382559, 8.548906, 47.383401], "geometry": {"coordinates": [[[8.548663, 47.383401], [8.548905, 47.38256], [8.548906, 47.382559]]], "type": "MultiLineString"}, "id": "1936", "properties": {}, "type": "Feature"}, {"bbox": [8.491448, 47.375615, 8.494846, 47.376275], "geometry": {"coordinates": [[[8.491448, 47.376044], [8.491478, 47.376027], [8.491576, 47.37598], [8.49168, 47.37594], [8.491789, 47.375906], [8.491902, 47.37588], [8.492739, 47.375751], [8.493497, 47.375634], [8.49358, 47.375622], [8.493665, 47.375616], [8.493749, 47.375615], [8.493834, 47.375619], [8.493917, 47.375629], [8.493999, 47.375643], [8.494079, 47.375663], [8.494156, 47.375687], [8.494229, 47.375717], [8.494302, 47.375753], [8.49437, 47.375793], [8.494432, 47.375838], [8.494487, 47.375887], [8.494846, 47.376275]]], "type": "MultiLineString"}, "id": "1940", "properties": {}, "type": "Feature"}, {"bbox": [8.539962, 47.367905, 8.541785, 47.368094], "geometry": {"coordinates": [[[8.541785, 47.368094], [8.541127, 47.368059], [8.540985, 47.368053], [8.540536, 47.367991], [8.540127, 47.367934], [8.539962, 47.367905]]], "type": "MultiLineString"}, "id": "1948", "properties": {}, "type": "Feature"}, {"bbox": [8.545661, 47.382089, 8.547334, 47.384965], "geometry": {"coordinates": [[[8.547334, 47.382089], [8.546759, 47.382799], [8.546735, 47.382893], [8.546165, 47.383827], [8.546132, 47.383901], [8.545663, 47.384697], [8.545661, 47.384708], [8.545661, 47.38472], [8.545663, 47.384732], [8.545666, 47.384744], [8.545671, 47.384755], [8.545678, 47.384766], [8.545685, 47.384777], [8.545689, 47.384784], [8.545694, 47.384792], [8.5457, 47.384799], [8.545707, 47.384806], [8.545715, 47.384812], [8.545723, 47.384818], [8.545733, 47.384823], [8.545743, 47.384828], [8.545753, 47.384832], [8.546053, 47.384956], [8.546067, 47.384959], [8.546082, 47.384962], [8.546097, 47.384964], [8.546112, 47.384965], [8.546127, 47.384965], [8.546142, 47.384965], [8.546157, 47.384963], [8.546172, 47.384961], [8.546187, 47.384957], [8.5462, 47.384953], [8.546214, 47.384948], [8.546227, 47.384943], [8.546238, 47.384936], [8.54625, 47.384929], [8.546439, 47.384754], [8.546589, 47.384592]]], "type": "MultiLineString"}, "id": "1951", "properties": {}, "type": "Feature"}, {"bbox": [8.546779, 47.417327, 8.547751, 47.418507], "geometry": {"coordinates": [[[8.546779, 47.417327], [8.546865, 47.417413], [8.547689, 47.418273], [8.547709, 47.418302], [8.547725, 47.418332], [8.547736, 47.418363], [8.547743, 47.418394], [8.547746, 47.418426], [8.547751, 47.418507]]], "type": "MultiLineString"}, "id": "1952", "properties": {}, "type": "Feature"}, {"bbox": [8.528854, 47.343938, 8.52996, 47.344144], "geometry": {"coordinates": [[[8.52996, 47.344144], [8.529619, 47.344072], [8.529465, 47.344044], [8.528854, 47.343938]]], "type": "MultiLineString"}, "id": "1956", "properties": {}, "type": "Feature"}, {"bbox": [8.532697, 47.329829, 8.536046, 47.330202], "geometry": {"coordinates": [[[8.532697, 47.329829], [8.532903, 47.329872], [8.533166, 47.329926], [8.533433, 47.329971], [8.533702, 47.330009], [8.533947, 47.330035], [8.534194, 47.330054], [8.534442, 47.330068], [8.534962, 47.330087], [8.535327, 47.330108], [8.535689, 47.330147], [8.536046, 47.330202]]], "type": "MultiLineString"}, "id": "1957", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.392996, 8.531765, 47.393214], "geometry": {"coordinates": [[[8.531765, 47.392996], [8.531572, 47.39305], [8.531373, 47.393094], [8.53117, 47.393127], [8.530612, 47.393205], [8.530571, 47.393208], [8.53053, 47.393211], [8.530489, 47.393214]]], "type": "MultiLineString"}, "id": "1958", "properties": {}, "type": "Feature"}, {"bbox": [8.519511, 47.377593, 8.52235, 47.378634], "geometry": {"coordinates": [[[8.52235, 47.377593], [8.521476, 47.377897], [8.521408, 47.377923], [8.521157, 47.378019], [8.520288, 47.378342], [8.520188, 47.378382], [8.520135, 47.378402], [8.519882, 47.378495], [8.519659, 47.378578], [8.519511, 47.378634]]], "type": "MultiLineString"}, "id": "1960", "properties": {}, "type": "Feature"}, {"bbox": [8.559716, 47.379633, 8.560577, 47.380167], "geometry": {"coordinates": [[[8.559716, 47.379633], [8.560002, 47.379689], [8.560023, 47.379693], [8.560042, 47.379698], [8.560061, 47.379705], [8.560079, 47.379713], [8.560096, 47.379722], [8.560111, 47.379732], [8.560125, 47.379742], [8.560138, 47.379754], [8.560149, 47.379766], [8.560255, 47.379894], [8.5604, 47.380029], [8.560577, 47.380167]]], "type": "MultiLineString"}, "id": "1963", "properties": {}, "type": "Feature"}, {"bbox": [8.545992, 47.387698, 8.548544, 47.393841], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.547891, 47.388024], [8.547849, 47.388058], [8.547679, 47.388353], [8.547074, 47.389451], [8.546641, 47.390235], [8.546127, 47.391437], [8.54602, 47.391692], [8.546003, 47.391755], [8.545993, 47.391818], [8.545992, 47.391882], [8.546, 47.391946], [8.546016, 47.392009], [8.54604, 47.392071], [8.546072, 47.392131], [8.546112, 47.392189], [8.546149, 47.392241], [8.546178, 47.392294], [8.5462, 47.39235], [8.546215, 47.392406], [8.546223, 47.392463], [8.546223, 47.39252], [8.546182, 47.39283], [8.546052, 47.393735], [8.546042, 47.393841]]], "type": "MultiLineString"}, "id": "1964", "properties": {}, "type": "Feature"}, {"bbox": [8.53672, 47.426928, 8.538922, 47.427782], "geometry": {"coordinates": [[[8.53672, 47.426928], [8.537087, 47.426969], [8.538157, 47.427107], [8.538189, 47.427112], [8.538428, 47.427152], [8.53866, 47.427208], [8.538883, 47.427278], [8.538895, 47.427296], [8.538906, 47.427315], [8.538913, 47.427335], [8.538919, 47.427354], [8.538922, 47.427374], [8.538922, 47.427394], [8.53892, 47.427414], [8.538915, 47.427434], [8.538908, 47.427454], [8.538899, 47.427473], [8.538887, 47.427491], [8.538873, 47.427509], [8.538857, 47.427525], [8.538838, 47.427541], [8.538818, 47.427556], [8.538796, 47.427569], [8.538773, 47.427581], [8.538748, 47.427592], [8.538615, 47.427634], [8.53848, 47.427672], [8.538343, 47.427706], [8.53807, 47.427747], [8.537793, 47.427773], [8.537514, 47.427782], [8.537235, 47.427775], [8.536957, 47.427752]]], "type": "MultiLineString"}, "id": "1969", "properties": {}, "type": "Feature"}, {"bbox": [8.576059, 47.406302, 8.577842, 47.408068], "geometry": {"coordinates": [[[8.576059, 47.406302], [8.576574, 47.406809], [8.576803, 47.407044], [8.577064, 47.407297], [8.57775, 47.407985], [8.577842, 47.408068]]], "type": "MultiLineString"}, "id": "1972", "properties": {}, "type": "Feature"}, {"bbox": [8.497588, 47.374191, 8.499873, 47.376553], "geometry": {"coordinates": [[[8.499873, 47.376553], [8.499434, 47.376299], [8.499031, 47.376019], [8.498666, 47.375716], [8.498406, 47.37546], [8.498168, 47.375194], [8.497954, 47.374919], [8.497635, 47.374327], [8.497588, 47.374191]]], "type": "MultiLineString"}, "id": "1976", "properties": {}, "type": "Feature"}, {"bbox": [8.514456, 47.37777, 8.516264, 47.378477], "geometry": {"coordinates": [[[8.516264, 47.377781], [8.516068, 47.37777], [8.516055, 47.37777], [8.516041, 47.377771], [8.516028, 47.377772], [8.516015, 47.377774], [8.516002, 47.377777], [8.51599, 47.377781], [8.515978, 47.377785], [8.515967, 47.37779], [8.514812, 47.378306], [8.514456, 47.378477]]], "type": "MultiLineString"}, "id": "1984", "properties": {}, "type": "Feature"}, {"bbox": [8.565246, 47.370108, 8.566405, 47.371234], "geometry": {"coordinates": [[[8.565246, 47.370766], [8.565323, 47.370831], [8.56561, 47.371182], [8.565619, 47.37119], [8.565628, 47.371198], [8.565639, 47.371205], [8.56565, 47.371211], [8.565662, 47.371217], [8.565675, 47.371222], [8.565688, 47.371226], [8.565702, 47.371229], [8.565716, 47.371232], [8.565731, 47.371233], [8.565745, 47.371234], [8.56576, 47.371234], [8.565775, 47.371233], [8.565789, 47.371231], [8.565803, 47.371229], [8.565817, 47.371225], [8.56583, 47.371221], [8.565843, 47.371216], [8.565855, 47.371211], [8.565866, 47.371204], [8.565968, 47.371089], [8.566053, 47.370967], [8.566121, 47.370841], [8.566172, 47.370711], [8.56637, 47.370215], [8.566405, 47.370108]]], "type": "MultiLineString"}, "id": "1986", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.393214, 8.53214, 47.395678], "geometry": {"coordinates": [[[8.530489, 47.393214], [8.530572, 47.393257], [8.53069, 47.393443], [8.530836, 47.393675], [8.530982, 47.393908], [8.531032, 47.393975], [8.531081, 47.394042], [8.531333, 47.394462], [8.53167, 47.394996], [8.531799, 47.395199], [8.531954, 47.395444], [8.53214, 47.395678]]], "type": "MultiLineString"}, "id": "1989", "properties": {}, "type": "Feature"}, {"bbox": [8.58292, 47.396868, 8.585925, 47.400374], "geometry": {"coordinates": [[[8.58292, 47.396868], [8.584817, 47.397973], [8.585344, 47.398291], [8.58548, 47.398424], [8.585553, 47.398653], [8.585643, 47.39888], [8.585749, 47.399104], [8.585866, 47.399335], [8.585913, 47.399435], [8.585921, 47.399465], [8.585924, 47.399495], [8.585925, 47.399526], [8.585921, 47.399556], [8.585914, 47.399586], [8.585844, 47.39976], [8.585714, 47.400083], [8.585707, 47.400115], [8.585703, 47.400147], [8.585703, 47.40018], [8.585707, 47.400212], [8.585714, 47.400245], [8.585775, 47.400374]]], "type": "MultiLineString"}, "id": "1994", "properties": {}, "type": "Feature"}, {"bbox": [8.550711, 47.405864, 8.555733, 47.407252], "geometry": {"coordinates": [[[8.550711, 47.407252], [8.551211, 47.407159], [8.552553, 47.40691], [8.552635, 47.406895], [8.552998, 47.40684], [8.553352, 47.406762], [8.553693, 47.406662], [8.55402, 47.406541], [8.554603, 47.40633], [8.555174, 47.406104], [8.555733, 47.405864]]], "type": "MultiLineString"}, "id": "1995", "properties": {}, "type": "Feature"}, {"bbox": [8.523939, 47.378908, 8.524952, 47.379443], "geometry": {"coordinates": [[[8.524952, 47.378908], [8.52476, 47.379009], [8.524281, 47.379263], [8.523939, 47.379443]]], "type": "MultiLineString"}, "id": "2006", "properties": {}, "type": "Feature"}, {"bbox": [8.564722, 47.370917, 8.566684, 47.372496], "geometry": {"coordinates": [[[8.564722, 47.370917], [8.564813, 47.371151], [8.564862, 47.371237], [8.564922, 47.371319], [8.564994, 47.371397], [8.565077, 47.37147], [8.565169, 47.371537], [8.565474, 47.371749], [8.565599, 47.371823], [8.565732, 47.371891], [8.565872, 47.371951], [8.56602, 47.372003], [8.566173, 47.372046], [8.566547, 47.372126], [8.566565, 47.372133], [8.566583, 47.37214], [8.566599, 47.372149], [8.566614, 47.372158], [8.566628, 47.372169], [8.566641, 47.37218], [8.566652, 47.372192], [8.566662, 47.372204], [8.566669, 47.372217], [8.566676, 47.372231], [8.56668, 47.372245], [8.566683, 47.372259], [8.566684, 47.372273], [8.566683, 47.372287], [8.56668, 47.372301], [8.566675, 47.372314], [8.566669, 47.372328], [8.566661, 47.372341], [8.566652, 47.372353], [8.566641, 47.372365], [8.566628, 47.372376], [8.566614, 47.372387], [8.566599, 47.372396], [8.566582, 47.372405], [8.566565, 47.372412], [8.566546, 47.372419], [8.566527, 47.372424], [8.566508, 47.372429], [8.566487, 47.372432], [8.56619, 47.372441], [8.566184, 47.372441], [8.566177, 47.372441], [8.56617, 47.372441], [8.566164, 47.372442], [8.566158, 47.372444], [8.566152, 47.372445], [8.566146, 47.372447], [8.56614, 47.37245], [8.566135, 47.372452], [8.56613, 47.372456], [8.566125, 47.372459], [8.566121, 47.372462], [8.566118, 47.372466], [8.566115, 47.37247], [8.566112, 47.372474], [8.56611, 47.372479], [8.566109, 47.372483], [8.566108, 47.372487], [8.566107, 47.372492], [8.566108, 47.372496]]], "type": "MultiLineString"}, "id": "2007", "properties": {}, "type": "Feature"}, {"bbox": [8.517307, 47.388192, 8.520033, 47.389102], "geometry": {"coordinates": [[[8.517307, 47.389102], [8.518563, 47.388684], [8.519442, 47.388393], [8.519833, 47.388273], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "2014", "properties": {}, "type": "Feature"}, {"bbox": [8.512443, 47.414905, 8.512933, 47.415712], "geometry": {"coordinates": [[[8.512933, 47.415712], [8.512906, 47.415574], [8.512729, 47.415271], [8.512443, 47.414905]]], "type": "MultiLineString"}, "id": "2019", "properties": {}, "type": "Feature"}, {"bbox": [8.49141, 47.387378, 8.495772, 47.389022], "geometry": {"coordinates": [[[8.495772, 47.387378], [8.495708, 47.387418], [8.49564, 47.387456], [8.495569, 47.387491], [8.495053, 47.387682], [8.494831, 47.387754], [8.494476, 47.387829], [8.493752, 47.388075], [8.492878, 47.38839], [8.49141, 47.389022]]], "type": "MultiLineString"}, "id": "2020", "properties": {}, "type": "Feature"}, {"bbox": [8.500916, 47.383244, 8.50609, 47.385164], "geometry": {"coordinates": [[[8.50609, 47.383244], [8.504158, 47.384074], [8.503355, 47.384419], [8.503255, 47.38446], [8.503153, 47.384499], [8.50305, 47.384536], [8.502972, 47.38456], [8.502893, 47.384583], [8.502815, 47.384606], [8.501124, 47.385102], [8.500916, 47.385164]]], "type": "MultiLineString"}, "id": "2021", "properties": {}, "type": "Feature"}, {"bbox": [8.49924, 47.383339, 8.502451, 47.386835], "geometry": {"coordinates": [[[8.502451, 47.386835], [8.502118, 47.386472], [8.500916, 47.385164], [8.50027, 47.384455], [8.500164, 47.38434], [8.49924, 47.383339]]], "type": "MultiLineString"}, "id": "2022", "properties": {}, "type": "Feature"}, {"bbox": [8.541221, 47.408156, 8.546687, 47.409941], "geometry": {"coordinates": [[[8.546687, 47.408214], [8.546255, 47.408159], [8.546217, 47.408156], [8.546178, 47.408156], [8.54614, 47.408158], [8.546102, 47.408161], [8.546064, 47.408167], [8.546028, 47.408175], [8.545992, 47.408185], [8.545958, 47.408197], [8.545925, 47.408211], [8.545845, 47.408244], [8.544935, 47.408627], [8.544377, 47.408857], [8.54344, 47.409242], [8.543367, 47.409243], [8.542287, 47.409597], [8.541221, 47.409941]]], "type": "MultiLineString"}, "id": "2027", "properties": {}, "type": "Feature"}, {"bbox": [8.533377, 47.394852, 8.534541, 47.39678], "geometry": {"coordinates": [[[8.534541, 47.394852], [8.534356, 47.395004], [8.534135, 47.395156], [8.533895, 47.395294], [8.533838, 47.395321], [8.533784, 47.395351], [8.533734, 47.395385], [8.533688, 47.395421], [8.533647, 47.395459], [8.533611, 47.3955], [8.533581, 47.395543], [8.533555, 47.395587], [8.533536, 47.395633], [8.533522, 47.39568], [8.533392, 47.396061], [8.533382, 47.3961], [8.533377, 47.396141], [8.533377, 47.396181], [8.533383, 47.396222], [8.533394, 47.396261], [8.53341, 47.3963], [8.533431, 47.396338], [8.533458, 47.396374], [8.533488, 47.396409], [8.533524, 47.396442], [8.533563, 47.396472], [8.533607, 47.3965], [8.533898, 47.396681], [8.533963, 47.39678]]], "type": "MultiLineString"}, "id": "2030", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.395678, 8.53214, 47.396972], "geometry": {"coordinates": [[[8.53214, 47.395678], [8.532099, 47.395682], [8.532059, 47.395687], [8.532019, 47.395696], [8.531981, 47.395706], [8.531944, 47.395719], [8.531909, 47.395734], [8.531876, 47.39575], [8.531846, 47.395769], [8.531818, 47.39579], [8.531792, 47.395812], [8.53178, 47.395844], [8.531773, 47.395894], [8.531759, 47.395943], [8.531739, 47.395991], [8.531712, 47.396037], [8.53168, 47.396082], [8.531642, 47.396124], [8.531599, 47.396165], [8.531551, 47.396202], [8.531498, 47.396237], [8.531441, 47.396268], [8.530736, 47.396588], [8.530654, 47.396631], [8.530578, 47.396678], [8.530508, 47.39673], [8.530445, 47.396785], [8.530389, 47.396845], [8.530341, 47.396907], [8.530302, 47.396972]]], "type": "MultiLineString"}, "id": "2031", "properties": {}, "type": "Feature"}, {"bbox": [8.582695, 47.358576, 8.583129, 47.359204], "geometry": {"coordinates": [[[8.583117, 47.358576], [8.583129, 47.358646], [8.583103, 47.358703], [8.583073, 47.358745], [8.582863, 47.358998], [8.582695, 47.359204]]], "type": "MultiLineString"}, "id": "2043", "properties": {}, "type": "Feature"}, {"bbox": [8.582208, 47.403058, 8.589591, 47.403597], "geometry": {"coordinates": [[[8.582208, 47.403597], [8.582566, 47.403566], [8.584269, 47.403442], [8.585712, 47.40334], [8.586073, 47.403315], [8.586511, 47.40328], [8.588838, 47.403118], [8.589591, 47.403058]]], "type": "MultiLineString"}, "id": "2044", "properties": {}, "type": "Feature"}, {"bbox": [8.504938, 47.399364, 8.505288, 47.399463], "geometry": {"coordinates": [[[8.504938, 47.399463], [8.504938, 47.399463], [8.505185, 47.399374], [8.505288, 47.399364]]], "type": "MultiLineString"}, "id": "2045", "properties": {}, "type": "Feature"}, {"bbox": [8.48361, 47.376877, 8.485114, 47.377571], "geometry": {"coordinates": [[[8.48361, 47.376877], [8.483836, 47.376924], [8.483958, 47.376941], [8.484078, 47.376965], [8.484195, 47.376995], [8.484307, 47.377032], [8.484415, 47.377075], [8.484517, 47.377125], [8.484612, 47.37718], [8.4847, 47.37724], [8.48478, 47.377305], [8.485029, 47.377571], [8.485114, 47.377523]]], "type": "MultiLineString"}, "id": "2046", "properties": {}, "type": "Feature"}, {"bbox": [8.55537, 47.364103, 8.556668, 47.365458], "geometry": {"coordinates": [[[8.55537, 47.365458], [8.555497, 47.365349], [8.556023, 47.364906], [8.55615, 47.364784], [8.556262, 47.364655], [8.556356, 47.36452], [8.556496, 47.364255], [8.556523, 47.364188], [8.55654, 47.364159], [8.556545, 47.364152], [8.55655, 47.364145], [8.556557, 47.364138], [8.556564, 47.364132], [8.556572, 47.364127], [8.556581, 47.364121], [8.556591, 47.364117], [8.556601, 47.364113], [8.556611, 47.364109], [8.556622, 47.364107], [8.556633, 47.364105], [8.556645, 47.364103], [8.556656, 47.364103], [8.556668, 47.364103]]], "type": "MultiLineString"}, "id": "2049", "properties": {}, "type": "Feature"}, {"bbox": [8.55451, 47.35301, 8.556866, 47.355243], "geometry": {"coordinates": [[[8.55451, 47.355243], [8.554734, 47.355023], [8.555054, 47.354762], [8.555069, 47.354749], [8.555384, 47.354493], [8.555485, 47.354411], [8.555743, 47.354201], [8.555824, 47.354135], [8.556546, 47.353546], [8.556627, 47.353476], [8.55667, 47.35345], [8.556708, 47.353422], [8.556743, 47.353391], [8.556775, 47.353359], [8.556801, 47.353325], [8.556824, 47.353289], [8.556842, 47.353252], [8.556855, 47.353215], [8.556863, 47.353176], [8.556866, 47.353138], [8.556864, 47.353095], [8.556856, 47.353052], [8.556842, 47.35301]]], "type": "MultiLineString"}, "id": "2050", "properties": {}, "type": "Feature"}, {"bbox": [8.562333, 47.383073, 8.562827, 47.383356], "geometry": {"coordinates": [[[8.562827, 47.383356], [8.562732, 47.383284], [8.562608, 47.38321], [8.562333, 47.383073]]], "type": "MultiLineString"}, "id": "2060", "properties": {}, "type": "Feature"}, {"bbox": [8.53211, 47.331233, 8.533624, 47.334637], "geometry": {"coordinates": [[[8.533624, 47.334637], [8.533435, 47.334569], [8.533247, 47.334501], [8.533059, 47.334431], [8.533005, 47.334419], [8.532953, 47.334403], [8.532903, 47.334384], [8.532856, 47.334362], [8.532812, 47.334337], [8.532771, 47.334309], [8.532735, 47.334279], [8.532702, 47.334247], [8.532674, 47.334213], [8.532323, 47.333733], [8.532178, 47.333536], [8.532158, 47.333502], [8.532141, 47.333467], [8.53213, 47.333431], [8.532122, 47.333395], [8.532119, 47.333358], [8.53211, 47.332731], [8.532118, 47.332689], [8.532132, 47.332647], [8.532151, 47.332607], [8.532175, 47.332567], [8.532204, 47.33253], [8.532238, 47.332494], [8.532277, 47.33246], [8.532298, 47.332443], [8.532316, 47.332426], [8.532333, 47.332407], [8.532347, 47.332387], [8.532358, 47.332367], [8.532553, 47.331907], [8.532627, 47.331685], [8.532668, 47.33146], [8.532676, 47.331233]]], "type": "MultiLineString"}, "id": "2067", "properties": {}, "type": "Feature"}, {"bbox": [8.515456, 47.379637, 8.518957, 47.381326], "geometry": {"coordinates": [[[8.518957, 47.379637], [8.518178, 47.380026], [8.517268, 47.380484], [8.51717, 47.380511], [8.515643, 47.381284], [8.515619, 47.381295], [8.515594, 47.381304], [8.515568, 47.381312], [8.515541, 47.381318], [8.515513, 47.381322], [8.515484, 47.381325], [8.515456, 47.381326]]], "type": "MultiLineString"}, "id": "2068", "properties": {}, "type": "Feature"}, {"bbox": [8.553953, 47.401648, 8.556163, 47.402204], "geometry": {"coordinates": [[[8.556163, 47.402189], [8.556104, 47.402198], [8.556043, 47.402203], [8.555983, 47.402204], [8.555922, 47.402201], [8.555862, 47.402195], [8.555479, 47.402114], [8.555109, 47.402009], [8.554756, 47.401881], [8.554421, 47.401731], [8.554133, 47.401664], [8.553953, 47.401648]]], "type": "MultiLineString"}, "id": "2069", "properties": {}, "type": "Feature"}, {"bbox": [8.525243, 47.376877, 8.526019, 47.377268], "geometry": {"coordinates": [[[8.526019, 47.376877], [8.525243, 47.377268]]], "type": "MultiLineString"}, "id": "2070", "properties": {}, "type": "Feature"}, {"bbox": [8.527403, 47.376427, 8.528195, 47.377011], "geometry": {"coordinates": [[[8.528195, 47.376427], [8.527403, 47.377011]]], "type": "MultiLineString"}, "id": "2071", "properties": {}, "type": "Feature"}, {"bbox": [8.523727, 47.371474, 8.524866, 47.372396], "geometry": {"coordinates": [[[8.524866, 47.371474], [8.523896, 47.372323], [8.523727, 47.372396]]], "type": "MultiLineString"}, "id": "2072", "properties": {}, "type": "Feature"}, {"bbox": [8.521446, 47.386063, 8.5231, 47.386777], "geometry": {"coordinates": [[[8.523099, 47.386777], [8.5231, 47.386771], [8.5231, 47.386765], [8.5231, 47.386759], [8.523099, 47.386753], [8.523098, 47.386748], [8.523095, 47.386742], [8.523092, 47.386737], [8.523088, 47.386731], [8.523084, 47.386726], [8.523079, 47.386722], [8.523073, 47.386717], [8.523067, 47.386713], [8.52306, 47.38671], [8.523053, 47.386706], [8.523045, 47.386704], [8.522613, 47.386546], [8.522207, 47.38636], [8.52183, 47.386148], [8.521739, 47.386118], [8.521643, 47.386094], [8.521546, 47.386075], [8.521446, 47.386063]]], "type": "MultiLineString"}, "id": "2074", "properties": {}, "type": "Feature"}, {"bbox": [8.525722, 47.360358, 8.526674, 47.360431], "geometry": {"coordinates": [[[8.526674, 47.360431], [8.525722, 47.360358]]], "type": "MultiLineString"}, "id": "2075", "properties": {}, "type": "Feature"}, {"bbox": [8.598788, 47.363651, 8.602271, 47.365042], "geometry": {"coordinates": [[[8.598788, 47.363651], [8.599015, 47.363725], [8.599097, 47.363756], [8.599612, 47.363946], [8.600131, 47.36413], [8.600656, 47.364308], [8.600936, 47.36441], [8.601203, 47.364527], [8.601454, 47.36466], [8.602013, 47.364968], [8.602073, 47.364992], [8.602137, 47.365013], [8.602203, 47.36503], [8.602271, 47.365042]]], "type": "MultiLineString"}, "id": "2080", "properties": {}, "type": "Feature"}, {"bbox": [8.563448, 47.404043, 8.567325, 47.406605], "geometry": {"coordinates": [[[8.563448, 47.404043], [8.563471, 47.404065], [8.563497, 47.404084], [8.563525, 47.404102], [8.563556, 47.404119], [8.563588, 47.404133], [8.563622, 47.404145], [8.563658, 47.404156], [8.563695, 47.404164], [8.563733, 47.40417], [8.563771, 47.404173], [8.56381, 47.404175], [8.563849, 47.404174], [8.563887, 47.40417], [8.564321, 47.404101], [8.564378, 47.404096], [8.564435, 47.404094], [8.564492, 47.404096], [8.564549, 47.404101], [8.564605, 47.40411], [8.564659, 47.404121], [8.564712, 47.404136], [8.564763, 47.404155], [8.564811, 47.404175], [8.564856, 47.404199], [8.564898, 47.404226], [8.564936, 47.404254], [8.564971, 47.404285], [8.565002, 47.404318], [8.565028, 47.404352], [8.56505, 47.404388], [8.565067, 47.404425], [8.565079, 47.404463], [8.565219, 47.404988], [8.565225, 47.405026], [8.565233, 47.405063], [8.565245, 47.4051], [8.56527, 47.405163], [8.565304, 47.405224], [8.565345, 47.405283], [8.565394, 47.405339], [8.56545, 47.405392], [8.565512, 47.405442], [8.566785, 47.406242], [8.56711, 47.406453], [8.567325, 47.406605]]], "type": "MultiLineString"}, "id": "2082", "properties": {}, "type": "Feature"}, {"bbox": [8.480579, 47.381884, 8.483322, 47.384132], "geometry": {"coordinates": [[[8.483322, 47.381884], [8.482349, 47.382914], [8.482247, 47.383021], [8.482145, 47.383128], [8.482044, 47.383235], [8.481931, 47.383353], [8.481808, 47.383466], [8.481675, 47.383573], [8.481585, 47.383646], [8.481493, 47.383718], [8.4814, 47.383788], [8.481372, 47.383808], [8.481343, 47.383829], [8.481315, 47.383849], [8.48108, 47.383955], [8.480834, 47.38405], [8.480579, 47.384132]]], "type": "MultiLineString"}, "id": "2083", "properties": {}, "type": "Feature"}, {"bbox": [8.527574, 47.38434, 8.528017, 47.384959], "geometry": {"coordinates": [[[8.527574, 47.38434], [8.527575, 47.384341], [8.527777, 47.384629], [8.527809, 47.384673], [8.527842, 47.384717], [8.527875, 47.384761], [8.528017, 47.384959]]], "type": "MultiLineString"}, "id": "2092", "properties": {}, "type": "Feature"}, {"bbox": [8.499158, 47.395204, 8.515033, 47.402037], "geometry": {"coordinates": [[[8.515033, 47.395204], [8.514525, 47.3953], [8.514023, 47.39541], [8.513527, 47.395533], [8.513055, 47.395629], [8.512576, 47.39571], [8.512093, 47.395777], [8.51195, 47.395794], [8.511807, 47.39581], [8.511663, 47.395825], [8.511636, 47.395828], [8.511609, 47.39583], [8.511582, 47.395833], [8.510774, 47.39591], [8.510534, 47.395939], [8.510297, 47.395977], [8.510063, 47.396023], [8.509887, 47.396064], [8.509713, 47.396109], [8.509542, 47.39616], [8.509412, 47.396198], [8.508573, 47.396453], [8.508297, 47.396539], [8.50827, 47.396548], [8.508242, 47.396557], [8.508214, 47.396566], [8.508069, 47.396618], [8.507925, 47.396674], [8.507786, 47.396733], [8.506833, 47.397141], [8.506771, 47.397168], [8.505633, 47.397654], [8.505493, 47.397718], [8.505357, 47.397786], [8.505226, 47.397857], [8.505035, 47.397977], [8.504858, 47.398107], [8.504698, 47.398245], [8.504553, 47.398392], [8.504438, 47.398546], [8.50431, 47.398695], [8.504171, 47.398839], [8.504119, 47.398888], [8.504067, 47.398937], [8.504013, 47.398985], [8.503808, 47.39915], [8.503582, 47.399301], [8.503337, 47.399439], [8.503179, 47.399509], [8.502864, 47.399648], [8.50239, 47.399823], [8.502281, 47.399864], [8.50126, 47.40024], [8.500391, 47.400586], [8.500212, 47.400659], [8.500045, 47.400742], [8.49989, 47.400837], [8.499749, 47.400941], [8.499591, 47.401081], [8.499433, 47.401222], [8.499358, 47.401288], [8.499307, 47.401338], [8.499262, 47.401392], [8.499225, 47.401448], [8.499197, 47.401506], [8.499176, 47.401566], [8.499164, 47.401627], [8.499158, 47.401673], [8.499158, 47.401718], [8.499163, 47.401763], [8.499173, 47.401808], [8.499189, 47.401853], [8.49929, 47.402037]]], "type": "MultiLineString"}, "id": "2094", "properties": {}, "type": "Feature"}, {"bbox": [8.539615, 47.368828, 8.541836, 47.369146], "geometry": {"coordinates": [[[8.541836, 47.369146], [8.540951, 47.369011], [8.540846, 47.368997], [8.540226, 47.368912], [8.539615, 47.368828]]], "type": "MultiLineString"}, "id": "2095", "properties": {}, "type": "Feature"}, {"bbox": [8.503836, 47.381443, 8.50839, 47.385075], "geometry": {"coordinates": [[[8.503836, 47.381443], [8.503996, 47.38159], [8.504827, 47.382256], [8.504948, 47.382351], [8.50609, 47.383244], [8.506241, 47.383357], [8.506984, 47.383946], [8.507387, 47.38426], [8.507756, 47.384549], [8.50839, 47.385075]]], "type": "MultiLineString"}, "id": "2096", "properties": {}, "type": "Feature"}, {"bbox": [8.590622, 47.356768, 8.597885, 47.358776], "geometry": {"coordinates": [[[8.590622, 47.358776], [8.591102, 47.358324], [8.591188, 47.358242], [8.591267, 47.358171], [8.591353, 47.358103], [8.591446, 47.35804], [8.592429, 47.357467], [8.592597, 47.357384], [8.592769, 47.357306], [8.592945, 47.357232], [8.593385, 47.357073], [8.593524, 47.35703], [8.593664, 47.356989], [8.593806, 47.35695], [8.59387, 47.356933], [8.593937, 47.35692], [8.594005, 47.356911], [8.594074, 47.356905], [8.594143, 47.356904], [8.594212, 47.356906], [8.594281, 47.356913], [8.594349, 47.356923], [8.594415, 47.356937], [8.595224, 47.357113], [8.595343, 47.35714], [8.595562, 47.357129], [8.595681, 47.357118], [8.595797, 47.3571], [8.595911, 47.357075], [8.596022, 47.357045], [8.596128, 47.357008], [8.596236, 47.356966], [8.596338, 47.356918], [8.596433, 47.356864], [8.59652, 47.356804], [8.596531, 47.356797], [8.596542, 47.356791], [8.596555, 47.356785], [8.596568, 47.356781], [8.596581, 47.356777], [8.596595, 47.356773], [8.596609, 47.356771], [8.596624, 47.356769], [8.596639, 47.356768], [8.596654, 47.356768], [8.596668, 47.356769], [8.596683, 47.356771], [8.596697, 47.356774], [8.59685, 47.356826], [8.596995, 47.356886], [8.597133, 47.356953], [8.597169, 47.356968], [8.597206, 47.356981], [8.597244, 47.356991], [8.597284, 47.357], [8.597484, 47.357032], [8.59754, 47.357041], [8.597595, 47.357053], [8.597648, 47.357069], [8.597699, 47.357088], [8.597746, 47.35711], [8.59779, 47.357136], [8.597822, 47.357151], [8.597853, 47.357165], [8.597885, 47.35718]]], "type": "MultiLineString"}, "id": "2100", "properties": {}, "type": "Feature"}, {"bbox": [8.490829, 47.367416, 8.492145, 47.36791], "geometry": {"coordinates": [[[8.49197, 47.367905], [8.491975, 47.367882], [8.491979, 47.367859], [8.491981, 47.367837], [8.492031, 47.367749], [8.492081, 47.367661], [8.492132, 47.367573], [8.492137, 47.367562], [8.492141, 47.367551], [8.492144, 47.367539], [8.492145, 47.367528], [8.492132, 47.367478], [8.492092, 47.367436], [8.492053, 47.367427], [8.492012, 47.367421], [8.491971, 47.367417], [8.491929, 47.367416], [8.491887, 47.367417], [8.491846, 47.36742], [8.491805, 47.367426], [8.491765, 47.367434], [8.491563, 47.367513], [8.491359, 47.36759], [8.491155, 47.367667], [8.491097, 47.367694], [8.491043, 47.367724], [8.490993, 47.367758], [8.490946, 47.367794], [8.490905, 47.367833], [8.490868, 47.367874], [8.490844, 47.367897], [8.490829, 47.36791]]], "type": "MultiLineString"}, "id": "2103", "properties": {}, "type": "Feature"}, {"bbox": [8.472718, 47.391742, 8.473683, 47.392262], "geometry": {"coordinates": [[[8.472718, 47.391742], [8.472765, 47.391783], [8.472817, 47.391821], [8.472874, 47.391856], [8.472935, 47.391887], [8.472999, 47.391915], [8.473067, 47.391939], [8.473137, 47.39196], [8.473261, 47.392006], [8.473379, 47.392061], [8.473489, 47.392122], [8.473591, 47.392189], [8.473683, 47.392262]]], "type": "MultiLineString"}, "id": "2105", "properties": {}, "type": "Feature"}, {"bbox": [8.567897, 47.413457, 8.572267, 47.416989], "geometry": {"coordinates": [[[8.572267, 47.413457], [8.571958, 47.413738], [8.571929, 47.413766], [8.571021, 47.414691], [8.570532, 47.415293], [8.570183, 47.415606], [8.570005, 47.415758], [8.569701, 47.41598], [8.569295, 47.41618], [8.568742, 47.416438], [8.5683, 47.416644], [8.568197, 47.416695], [8.568033, 47.416782], [8.567978, 47.416858], [8.567897, 47.416989]]], "type": "MultiLineString"}, "id": "2109", "properties": {}, "type": "Feature"}, {"bbox": [8.567341, 47.402516, 8.567542, 47.403817], "geometry": {"coordinates": [[[8.567542, 47.403817], [8.567498, 47.403664], [8.567468, 47.403592], [8.567375, 47.403295], [8.567356, 47.403221], [8.567346, 47.403159], [8.567341, 47.40309], [8.567346, 47.403003], [8.567363, 47.402868], [8.567361, 47.402843], [8.567375, 47.402747], [8.567382, 47.402722], [8.567399, 47.402595], [8.567429, 47.402516]]], "type": "MultiLineString"}, "id": "2110", "properties": {}, "type": "Feature"}, {"bbox": [8.536792, 47.372298, 8.537628, 47.373127], "geometry": {"coordinates": [[[8.537628, 47.372298], [8.537628, 47.372309], [8.537627, 47.372319], [8.537624, 47.372329], [8.53762, 47.372339], [8.537615, 47.372348], [8.537608, 47.372358], [8.5376, 47.372367], [8.537591, 47.372375], [8.537235, 47.372628], [8.536964, 47.372817], [8.536919, 47.372847], [8.536879, 47.372878], [8.536842, 47.372913], [8.536826, 47.372938], [8.536812, 47.372964], [8.536802, 47.372991], [8.536795, 47.373018], [8.536792, 47.373045], [8.536792, 47.373073], [8.536795, 47.3731], [8.536802, 47.373127]]], "type": "MultiLineString"}, "id": "2121", "properties": {}, "type": "Feature"}, {"bbox": [8.561272, 47.355598, 8.562369, 47.355967], "geometry": {"coordinates": [[[8.561272, 47.355598], [8.562369, 47.355967]]], "type": "MultiLineString"}, "id": "2128", "properties": {}, "type": "Feature"}, {"bbox": [8.48478, 47.410556, 8.48603, 47.410969], "geometry": {"coordinates": [[[8.48603, 47.41063], [8.485871, 47.410563], [8.485855, 47.41056], [8.485839, 47.410558], [8.485822, 47.410556], [8.485805, 47.410556], [8.485788, 47.410556], [8.485772, 47.410558], [8.485755, 47.410561], [8.48574, 47.410565], [8.485724, 47.410569], [8.48571, 47.410575], [8.484892, 47.410909], [8.484861, 47.410921], [8.484832, 47.410936], [8.484805, 47.410951], [8.48478, 47.410969]]], "type": "MultiLineString"}, "id": "2130", "properties": {}, "type": "Feature"}, {"bbox": [8.498275, 47.402967, 8.499026, 47.403692], "geometry": {"coordinates": [[[8.498275, 47.402967], [8.498357, 47.403115], [8.49853, 47.403309], [8.498679, 47.403437], [8.498968, 47.403675], [8.499026, 47.403692]]], "type": "MultiLineString"}, "id": "2146", "properties": {}, "type": "Feature"}, {"bbox": [8.510016, 47.426367, 8.510756, 47.427089], "geometry": {"coordinates": [[[8.510016, 47.426367], [8.510024, 47.426374], [8.51014, 47.426494], [8.510272, 47.426643], [8.510411, 47.42679], [8.510558, 47.426932], [8.510756, 47.427089]]], "type": "MultiLineString"}, "id": "2147", "properties": {}, "type": "Feature"}, {"bbox": [8.567325, 47.405751, 8.569386, 47.406605], "geometry": {"coordinates": [[[8.569386, 47.405751], [8.568922, 47.405919], [8.568774, 47.40598], [8.568345, 47.406159], [8.568038, 47.406282], [8.567737, 47.406412], [8.567442, 47.406547], [8.567325, 47.406605]]], "type": "MultiLineString"}, "id": "2148", "properties": {}, "type": "Feature"}, {"bbox": [8.486861, 47.388258, 8.491048, 47.389774], "geometry": {"coordinates": [[[8.491048, 47.388258], [8.490821, 47.388346], [8.490555, 47.388436], [8.48991, 47.388671], [8.489755, 47.388727], [8.488982, 47.389007], [8.48803, 47.389351], [8.486861, 47.389774]]], "type": "MultiLineString"}, "id": "2151", "properties": {}, "type": "Feature"}, {"bbox": [8.547939, 47.385062, 8.548236, 47.385521], "geometry": {"coordinates": [[[8.547939, 47.385062], [8.547967, 47.385137], [8.548029, 47.385256], [8.548105, 47.385371], [8.548196, 47.38548], [8.548236, 47.385521]]], "type": "MultiLineString"}, "id": "2156", "properties": {}, "type": "Feature"}, {"bbox": [8.523881, 47.411917, 8.528669, 47.413628], "geometry": {"coordinates": [[[8.528669, 47.411927], [8.528527, 47.411917], [8.527966, 47.411953], [8.527858, 47.411959], [8.527385, 47.412001], [8.527025, 47.412052], [8.526677, 47.412108], [8.526472, 47.412157], [8.526098, 47.412286], [8.525824, 47.412381], [8.525511, 47.41249], [8.525339, 47.412555], [8.525157, 47.412633], [8.524986, 47.412722], [8.524829, 47.412822], [8.524131, 47.413301], [8.524068, 47.413354], [8.524013, 47.413412], [8.523967, 47.413472], [8.523928, 47.413535], [8.523881, 47.413628]]], "type": "MultiLineString"}, "id": "2160", "properties": {}, "type": "Feature"}, {"bbox": [8.494172, 47.386451, 8.496527, 47.387138], "geometry": {"coordinates": [[[8.496527, 47.386451], [8.49552, 47.386742], [8.494172, 47.387138]]], "type": "MultiLineString"}, "id": "2161", "properties": {}, "type": "Feature"}, {"bbox": [8.531651, 47.365285, 8.532288, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.531651, 47.365285]]], "type": "MultiLineString"}, "id": "2162", "properties": {}, "type": "Feature"}, {"bbox": [8.5174, 47.361261, 8.519057, 47.362747], "geometry": {"coordinates": [[[8.519057, 47.362747], [8.517982, 47.361773], [8.517752, 47.361582], [8.5174, 47.361261]]], "type": "MultiLineString"}, "id": "2165", "properties": {}, "type": "Feature"}, {"bbox": [8.518557, 47.370286, 8.522185, 47.371932], "geometry": {"coordinates": [[[8.522185, 47.371932], [8.521661, 47.371695], [8.521327, 47.371556], [8.521146, 47.371487], [8.520979, 47.371424], [8.520448, 47.371203], [8.520286, 47.371133], [8.519814, 47.370899], [8.519352, 47.37067], [8.519142, 47.370567], [8.518557, 47.370286]]], "type": "MultiLineString"}, "id": "2166", "properties": {}, "type": "Feature"}, {"bbox": [8.535443, 47.364868, 8.537776, 47.367886], "geometry": {"coordinates": [[[8.537776, 47.364868], [8.536871, 47.366051], [8.536194, 47.366967], [8.535564, 47.36778], [8.535443, 47.367886]]], "type": "MultiLineString"}, "id": "2167", "properties": {}, "type": "Feature"}, {"bbox": [8.520801, 47.371757, 8.521718, 47.372264], "geometry": {"coordinates": [[[8.521718, 47.372264], [8.520811, 47.371761], [8.520801, 47.371757]]], "type": "MultiLineString"}, "id": "2168", "properties": {}, "type": "Feature"}, {"bbox": [8.560554, 47.367568, 8.560826, 47.367879], "geometry": {"coordinates": [[[8.560554, 47.367879], [8.560634, 47.3678], [8.560826, 47.367568]]], "type": "MultiLineString"}, "id": "2169", "properties": {}, "type": "Feature"}, {"bbox": [8.571133, 47.34709, 8.571625, 47.348154], "geometry": {"coordinates": [[[8.571133, 47.348154], [8.571303, 47.347801], [8.571467, 47.347446], [8.571625, 47.34709]]], "type": "MultiLineString"}, "id": "2170", "properties": {}, "type": "Feature"}, {"bbox": [8.498358, 47.39901, 8.499148, 47.399238], "geometry": {"coordinates": [[[8.499148, 47.39901], [8.499124, 47.399016], [8.498605, 47.399179], [8.498358, 47.399238]]], "type": "MultiLineString"}, "id": "2171", "properties": {}, "type": "Feature"}, {"bbox": [8.530239, 47.393214, 8.530489, 47.393244], "geometry": {"coordinates": [[[8.530489, 47.393214], [8.530239, 47.393244]]], "type": "MultiLineString"}, "id": "2175", "properties": {}, "type": "Feature"}, {"bbox": [8.526646, 47.394139, 8.527482, 47.394431], "geometry": {"coordinates": [[[8.527482, 47.394139], [8.526958, 47.394323], [8.526863, 47.394356], [8.526646, 47.394431]]], "type": "MultiLineString"}, "id": "2176", "properties": {}, "type": "Feature"}, {"bbox": [8.561937, 47.369839, 8.563065, 47.370539], "geometry": {"coordinates": [[[8.561937, 47.369839], [8.562214, 47.370088], [8.562359, 47.370199], [8.562518, 47.3703], [8.562689, 47.37039], [8.562872, 47.37047], [8.563065, 47.370539]]], "type": "MultiLineString"}, "id": "2177", "properties": {}, "type": "Feature"}, {"bbox": [8.516978, 47.423793, 8.520808, 47.423852], "geometry": {"coordinates": [[[8.520808, 47.423852], [8.517091, 47.423797], [8.516978, 47.423793]]], "type": "MultiLineString"}, "id": "2178", "properties": {}, "type": "Feature"}, {"bbox": [8.501606, 47.369654, 8.501703, 47.369904], "geometry": {"coordinates": [[[8.501703, 47.369904], [8.501606, 47.369654]]], "type": "MultiLineString"}, "id": "2180", "properties": {}, "type": "Feature"}, {"bbox": [8.507362, 47.355294, 8.507596, 47.355402], "geometry": {"coordinates": [[[8.507596, 47.355402], [8.507362, 47.355294]]], "type": "MultiLineString"}, "id": "2181", "properties": {}, "type": "Feature"}, {"bbox": [8.586005, 47.404009, 8.588838, 47.405917], "geometry": {"coordinates": [[[8.588838, 47.404009], [8.588828, 47.404041], [8.588097, 47.405522], [8.588077, 47.405566], [8.588051, 47.405608], [8.58802, 47.405649], [8.587984, 47.405687], [8.587943, 47.405724], [8.587897, 47.405758], [8.587848, 47.405789], [8.587795, 47.405817], [8.587738, 47.405842], [8.587681, 47.405864], [8.587622, 47.405881], [8.58756, 47.405896], [8.587497, 47.405906], [8.587433, 47.405914], [8.587368, 47.405917], [8.587303, 47.405917], [8.587238, 47.405914], [8.586822, 47.405869], [8.586411, 47.405811], [8.586005, 47.405738]]], "type": "MultiLineString"}, "id": "2187", "properties": {}, "type": "Feature"}, {"bbox": [8.56539, 47.360333, 8.565497, 47.361406], "geometry": {"coordinates": [[[8.565398, 47.360333], [8.565403, 47.360475], [8.56539, 47.360953], [8.565395, 47.361319], [8.565404, 47.361334], [8.565416, 47.361348], [8.565428, 47.361362], [8.565443, 47.361375], [8.56546, 47.361386], [8.565477, 47.361397], [8.565497, 47.361406]]], "type": "MultiLineString"}, "id": "2190", "properties": {}, "type": "Feature"}, {"bbox": [8.548272, 47.384421, 8.548475, 47.386066], "geometry": {"coordinates": [[[8.548331, 47.384421], [8.548376, 47.384797], [8.548443, 47.385238], [8.548469, 47.385484], [8.548475, 47.385614], [8.548469, 47.385663], [8.548459, 47.385712], [8.548446, 47.385761], [8.548416, 47.385841], [8.548377, 47.385918], [8.548329, 47.385993], [8.548272, 47.386066]]], "type": "MultiLineString"}, "id": "2192", "properties": {}, "type": "Feature"}, {"bbox": [8.558577, 47.363019, 8.563258, 47.366921], "geometry": {"coordinates": [[[8.558577, 47.366921], [8.558691, 47.366806], [8.559083, 47.366395], [8.559852, 47.365591], [8.560289, 47.365172], [8.560374, 47.36509], [8.560439, 47.365034], [8.561496, 47.364278], [8.561639, 47.364175], [8.561764, 47.364085], [8.563102, 47.363126], [8.563258, 47.363019]]], "type": "MultiLineString"}, "id": "2196", "properties": {}, "type": "Feature"}, {"bbox": [8.526836, 47.34559, 8.529425, 47.354797], "geometry": {"coordinates": [[[8.526836, 47.354797], [8.52689, 47.354451], [8.527013, 47.353705], [8.527047, 47.353499], [8.527091, 47.353233], [8.52715, 47.352875], [8.527265, 47.352171], [8.527309, 47.351826], [8.527344, 47.351659], [8.527388, 47.351492], [8.52744, 47.351327], [8.527736, 47.350483], [8.527766, 47.350397], [8.527805, 47.350274], [8.527839, 47.350151], [8.527868, 47.350028], [8.527888, 47.349923], [8.527905, 47.349817], [8.527918, 47.349712], [8.527937, 47.349533], [8.528043, 47.348507], [8.528059, 47.348341], [8.528156, 47.347403], [8.528168, 47.347334], [8.528189, 47.347266], [8.52822, 47.3472], [8.528261, 47.347136], [8.52831, 47.347075], [8.528777, 47.346571], [8.528783, 47.346564], [8.528802, 47.346545], [8.528833, 47.346509], [8.528865, 47.346474], [8.528896, 47.346438], [8.528975, 47.346342], [8.52905, 47.346244], [8.52912, 47.346145], [8.529236, 47.345964], [8.529337, 47.345779], [8.529425, 47.34559]]], "type": "MultiLineString"}, "id": "2197", "properties": {}, "type": "Feature"}, {"bbox": [8.486189, 47.396733, 8.493623, 47.397744], "geometry": {"coordinates": [[[8.493623, 47.396982], [8.493442, 47.397034], [8.493255, 47.397076], [8.493064, 47.397108], [8.493006, 47.397114], [8.492948, 47.397119], [8.492889, 47.397124], [8.492831, 47.397128], [8.492772, 47.397132], [8.492714, 47.397135], [8.491438, 47.397196], [8.491168, 47.397214], [8.490901, 47.397243], [8.490637, 47.397284], [8.488913, 47.397581], [8.488086, 47.397722], [8.48801, 47.397732], [8.487934, 47.397739], [8.487857, 47.397744], [8.48775, 47.397744], [8.487644, 47.397739], [8.487539, 47.397726], [8.487436, 47.397708], [8.487336, 47.397683], [8.48724, 47.397652], [8.487148, 47.397615], [8.487061, 47.397573], [8.486953, 47.397506], [8.486854, 47.397433], [8.486765, 47.397354], [8.486688, 47.39727], [8.486189, 47.396733]]], "type": "MultiLineString"}, "id": "2199", "properties": {}, "type": "Feature"}, {"bbox": [8.542108, 47.383104, 8.545346, 47.387706], "geometry": {"coordinates": [[[8.545346, 47.383104], [8.544969, 47.383308], [8.544895, 47.383351], [8.54465, 47.383489], [8.544601, 47.383517], [8.544557, 47.383547], [8.544516, 47.383581], [8.544481, 47.383617], [8.544452, 47.383649], [8.544427, 47.383683], [8.544406, 47.383718], [8.54439, 47.383754], [8.544378, 47.383791], [8.544187, 47.384556], [8.544053, 47.385093], [8.543959, 47.385302], [8.543921, 47.385377], [8.543651, 47.385705], [8.543611, 47.385757], [8.543224, 47.386236], [8.542943, 47.38658], [8.542588, 47.387024], [8.542317, 47.387407], [8.542108, 47.387706]]], "type": "MultiLineString"}, "id": "2200", "properties": {}, "type": "Feature"}, {"bbox": [8.505525, 47.368452, 8.506164, 47.368538], "geometry": {"coordinates": [[[8.506164, 47.368538], [8.505525, 47.368452]]], "type": "MultiLineString"}, "id": "2208", "properties": {}, "type": "Feature"}, {"bbox": [8.540996, 47.383846, 8.542619, 47.385603], "geometry": {"coordinates": [[[8.542105, 47.383859], [8.54213, 47.383854], [8.542155, 47.38385], [8.542181, 47.383847], [8.542206, 47.383846], [8.542232, 47.383847], [8.542258, 47.383849], [8.542283, 47.383853], [8.542308, 47.383858], [8.542332, 47.383864], [8.542356, 47.383872], [8.542378, 47.383881], [8.542399, 47.383891], [8.542587, 47.384044], [8.542596, 47.384055], [8.542604, 47.384066], [8.54261, 47.384078], [8.542614, 47.38409], [8.542617, 47.384102], [8.542619, 47.384115], [8.542619, 47.384127], [8.542617, 47.384139], [8.542614, 47.384151], [8.542609, 47.384163], [8.542602, 47.384175], [8.541648, 47.385286], [8.54155, 47.385401], [8.541523, 47.38543], [8.541494, 47.385458], [8.541461, 47.385484], [8.541424, 47.385508], [8.541384, 47.38553], [8.541342, 47.38555], [8.541297, 47.385567], [8.54125, 47.385582], [8.541202, 47.385594], [8.541173, 47.385599], [8.541143, 47.385602], [8.541113, 47.385603], [8.541083, 47.385603], [8.541054, 47.3856], [8.541024, 47.385596], [8.540996, 47.385589]]], "type": "MultiLineString"}, "id": "2209", "properties": {}, "type": "Feature"}, {"bbox": [8.488378, 47.369919, 8.489533, 47.370567], "geometry": {"coordinates": [[[8.489533, 47.370567], [8.489008, 47.370289], [8.488378, 47.369919]]], "type": "MultiLineString"}, "id": "2210", "properties": {}, "type": "Feature"}, {"bbox": [8.559455, 47.37577, 8.56358, 47.379109], "geometry": {"coordinates": [[[8.559455, 47.379109], [8.559639, 47.379003], [8.561017, 47.378215], [8.561072, 47.378183], [8.561608, 47.377877], [8.561713, 47.37782], [8.561826, 47.377771], [8.561945, 47.377729], [8.562069, 47.377694], [8.562198, 47.377668], [8.5622, 47.377667], [8.562203, 47.377667], [8.562206, 47.377666], [8.56223, 47.377658], [8.562253, 47.377649], [8.562275, 47.377637], [8.562295, 47.377625], [8.562313, 47.377612], [8.562329, 47.377597], [8.562344, 47.377581], [8.562356, 47.377565], [8.562366, 47.377548], [8.562373, 47.37753], [8.562546, 47.377108], [8.562592, 47.377011], [8.56265, 47.376917], [8.56272, 47.376827], [8.562802, 47.376741], [8.562895, 47.376661], [8.563452, 47.37621], [8.563492, 47.376178], [8.56358, 47.37577]]], "type": "MultiLineString"}, "id": "2211", "properties": {}, "type": "Feature"}, {"bbox": [8.509874, 47.358445, 8.509998, 47.35855], "geometry": {"coordinates": [[[8.509998, 47.358445], [8.509874, 47.35855]]], "type": "MultiLineString"}, "id": "2212", "properties": {}, "type": "Feature"}, {"bbox": [8.540042, 47.395428, 8.540159, 47.395499], "geometry": {"coordinates": [[[8.540042, 47.395499], [8.540159, 47.395428]]], "type": "MultiLineString"}, "id": "2214", "properties": {}, "type": "Feature"}, {"bbox": [8.554799, 47.369316, 8.554988, 47.369323], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554988, 47.369323]]], "type": "MultiLineString"}, "id": "2218", "properties": {}, "type": "Feature"}, {"bbox": [8.483314, 47.388822, 8.485246, 47.391726], "geometry": {"coordinates": [[[8.485246, 47.391726], [8.484968, 47.391308], [8.484391, 47.390441], [8.484321, 47.390336], [8.484176, 47.390118], [8.483314, 47.388822]]], "type": "MultiLineString"}, "id": "2223", "properties": {}, "type": "Feature"}, {"bbox": [8.546572, 47.405245, 8.548372, 47.405902], "geometry": {"coordinates": [[[8.546572, 47.405245], [8.546711, 47.405254], [8.546848, 47.405271], [8.546983, 47.405295], [8.547114, 47.405327], [8.54724, 47.405367], [8.547362, 47.405413], [8.548229, 47.40578], [8.548372, 47.405902]]], "type": "MultiLineString"}, "id": "2225", "properties": {}, "type": "Feature"}, {"bbox": [8.524541, 47.340956, 8.524721, 47.343468], "geometry": {"coordinates": [[[8.524541, 47.343468], [8.524568, 47.343397], [8.524583, 47.343332], [8.524621, 47.342894], [8.524638, 47.342363], [8.524653, 47.342256], [8.524721, 47.340956]]], "type": "MultiLineString"}, "id": "2226", "properties": {}, "type": "Feature"}, {"bbox": [8.546476, 47.417521, 8.547434, 47.418525], "geometry": {"coordinates": [[[8.546476, 47.417521], [8.546711, 47.4177], [8.547404, 47.418335], [8.547434, 47.418525]]], "type": "MultiLineString"}, "id": "2228", "properties": {}, "type": "Feature"}, {"bbox": [8.518177, 47.371133, 8.520286, 47.372851], "geometry": {"coordinates": [[[8.520286, 47.371133], [8.519938, 47.371416], [8.519907, 47.371441], [8.519555, 47.371728], [8.518858, 47.372299], [8.518177, 47.372851]]], "type": "MultiLineString"}, "id": "2231", "properties": {}, "type": "Feature"}, {"bbox": [8.538445, 47.41763, 8.540407, 47.417721], "geometry": {"coordinates": [[[8.540407, 47.417721], [8.538445, 47.41763]]], "type": "MultiLineString"}, "id": "2236", "properties": {}, "type": "Feature"}, {"bbox": [8.547173, 47.36304, 8.548122, 47.363289], "geometry": {"coordinates": [[[8.547173, 47.36304], [8.548122, 47.363289]]], "type": "MultiLineString"}, "id": "2237", "properties": {}, "type": "Feature"}, {"bbox": [8.491491, 47.381083, 8.491597, 47.381178], "geometry": {"coordinates": [[[8.491597, 47.381178], [8.491513, 47.381104], [8.491491, 47.381083]]], "type": "MultiLineString"}, "id": "2238", "properties": {}, "type": "Feature"}, {"bbox": [8.589219, 47.356436, 8.589323, 47.356975], "geometry": {"coordinates": [[[8.589298, 47.356975], [8.589253, 47.35688], [8.589223, 47.356783], [8.589219, 47.356732], [8.589221, 47.35668], [8.589229, 47.35663], [8.589244, 47.35658], [8.589264, 47.35653], [8.589291, 47.356483], [8.589323, 47.356436]]], "type": "MultiLineString"}, "id": "2239", "properties": {}, "type": "Feature"}, {"bbox": [8.545524, 47.414977, 8.546655, 47.415028], "geometry": {"coordinates": [[[8.545524, 47.414995], [8.545633, 47.414977], [8.546655, 47.415028]]], "type": "MultiLineString"}, "id": "2241", "properties": {}, "type": "Feature"}, {"bbox": [8.521014, 47.366227, 8.521825, 47.366659], "geometry": {"coordinates": [[[8.521825, 47.366659], [8.521014, 47.366227]]], "type": "MultiLineString"}, "id": "2242", "properties": {}, "type": "Feature"}, {"bbox": [8.52756, 47.37139, 8.528132, 47.371841], "geometry": {"coordinates": [[[8.528132, 47.371841], [8.52756, 47.37139]]], "type": "MultiLineString"}, "id": "2243", "properties": {}, "type": "Feature"}, {"bbox": [8.585293, 47.356963, 8.586229, 47.358301], "geometry": {"coordinates": [[[8.585293, 47.358301], [8.585295, 47.358171], [8.586065, 47.357145], [8.586229, 47.356963]]], "type": "MultiLineString"}, "id": "2244", "properties": {}, "type": "Feature"}, {"bbox": [8.550433, 47.412163, 8.558712, 47.412297], "geometry": {"coordinates": [[[8.550433, 47.412175], [8.550686, 47.412163], [8.552534, 47.412194], [8.552953, 47.412201], [8.554124, 47.412221], [8.554256, 47.412223], [8.554387, 47.412225], [8.558712, 47.412297]]], "type": "MultiLineString"}, "id": "2248", "properties": {}, "type": "Feature"}, {"bbox": [8.471045, 47.391834, 8.47175, 47.392376], "geometry": {"coordinates": [[[8.47175, 47.392376], [8.471045, 47.391834]]], "type": "MultiLineString"}, "id": "2249", "properties": {}, "type": "Feature"}, {"bbox": [8.507647, 47.417509, 8.508057, 47.417785], "geometry": {"coordinates": [[[8.508057, 47.417509], [8.507941, 47.417568], [8.507833, 47.417634], [8.507735, 47.417707], [8.507647, 47.417785]]], "type": "MultiLineString"}, "id": "2252", "properties": {}, "type": "Feature"}, {"bbox": [8.565258, 47.407865, 8.565443, 47.407999], "geometry": {"coordinates": [[[8.565258, 47.407865], [8.565443, 47.407999]]], "type": "MultiLineString"}, "id": "2254", "properties": {}, "type": "Feature"}, {"bbox": [8.59169, 47.355267, 8.592676, 47.355742], "geometry": {"coordinates": [[[8.59169, 47.355742], [8.591726, 47.355702], [8.591767, 47.355665], [8.591814, 47.35563], [8.591915, 47.35557], [8.592022, 47.355515], [8.592133, 47.355464], [8.592676, 47.355267]]], "type": "MultiLineString"}, "id": "2257", "properties": {}, "type": "Feature"}, {"bbox": [8.521371, 47.35893, 8.521916, 47.359848], "geometry": {"coordinates": [[[8.521371, 47.359848], [8.521746, 47.359026], [8.521916, 47.35893]]], "type": "MultiLineString"}, "id": "2258", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.330786, 8.536471, 47.331143], "geometry": {"coordinates": [[[8.53634, 47.331143], [8.536345, 47.331105], [8.536354, 47.331067], [8.536368, 47.331031], [8.536471, 47.330786]]], "type": "MultiLineString"}, "id": "2266", "properties": {}, "type": "Feature"}, {"bbox": [8.543671, 47.419286, 8.5439, 47.419631], "geometry": {"coordinates": [[[8.5439, 47.419286], [8.543671, 47.419631]]], "type": "MultiLineString"}, "id": "2270", "properties": {}, "type": "Feature"}, {"bbox": [8.573132, 47.369514, 8.5737, 47.369723], "geometry": {"coordinates": [[[8.573132, 47.369514], [8.573324, 47.369581], [8.573513, 47.36965], [8.5737, 47.369723]]], "type": "MultiLineString"}, "id": "2272", "properties": {}, "type": "Feature"}, {"bbox": [8.512118, 47.421942, 8.513578, 47.42252], "geometry": {"coordinates": [[[8.512118, 47.42252], [8.513578, 47.421942]]], "type": "MultiLineString"}, "id": "2273", "properties": {}, "type": "Feature"}, {"bbox": [8.469634, 47.391759, 8.470565, 47.392537], "geometry": {"coordinates": [[[8.469634, 47.391759], [8.469708, 47.391845], [8.469788, 47.391929], [8.469874, 47.39201], [8.470095, 47.392191], [8.470326, 47.392367], [8.470565, 47.392537]]], "type": "MultiLineString"}, "id": "2276", "properties": {}, "type": "Feature"}, {"bbox": [8.512296, 47.331585, 8.512673, 47.331743], "geometry": {"coordinates": [[[8.512673, 47.331585], [8.512296, 47.331743]]], "type": "MultiLineString"}, "id": "2278", "properties": {}, "type": "Feature"}, {"bbox": [8.530071, 47.350126, 8.530649, 47.350253], "geometry": {"coordinates": [[[8.530071, 47.350253], [8.530228, 47.350227], [8.530429, 47.35019], [8.530522, 47.350168], [8.530612, 47.35014], [8.530649, 47.350126]]], "type": "MultiLineString"}, "id": "2290", "properties": {}, "type": "Feature"}, {"bbox": [8.53838, 47.421562, 8.538976, 47.422295], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.538876, 47.42193], [8.538865, 47.421895], [8.53885, 47.42186], [8.538831, 47.421826], [8.538807, 47.421793], [8.538779, 47.421762], [8.538748, 47.421732], [8.538636, 47.421671], [8.538518, 47.421616], [8.538394, 47.421566], [8.53838, 47.421562]]], "type": "MultiLineString"}, "id": "2291", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.375013, 8.526071, 47.375383], "geometry": {"coordinates": [[[8.526071, 47.375013], [8.525193, 47.375303], [8.524952, 47.375383]]], "type": "MultiLineString"}, "id": "2293", "properties": {}, "type": "Feature"}, {"bbox": [8.530386, 47.375824, 8.533762, 47.378303], "geometry": {"coordinates": [[[8.533762, 47.375824], [8.533587, 47.375986], [8.533078, 47.376418], [8.532918, 47.376539], [8.532853, 47.376587], [8.532384, 47.376914], [8.531847, 47.377287], [8.531311, 47.377659], [8.530391, 47.378299], [8.530386, 47.378303]]], "type": "MultiLineString"}, "id": "2296", "properties": {}, "type": "Feature"}, {"bbox": [8.514383, 47.370351, 8.514617, 47.370381], "geometry": {"coordinates": [[[8.514617, 47.370381], [8.514383, 47.370351]]], "type": "MultiLineString"}, "id": "2297", "properties": {}, "type": "Feature"}, {"bbox": [8.543254, 47.39387, 8.543316, 47.393975], "geometry": {"coordinates": [[[8.543254, 47.39387], [8.543316, 47.393975]]], "type": "MultiLineString"}, "id": "2308", "properties": {}, "type": "Feature"}, {"bbox": [8.54819, 47.379916, 8.550493, 47.382028], "geometry": {"coordinates": [[[8.54819, 47.382028], [8.548393, 47.381879], [8.549309, 47.381], [8.549496, 47.380825], [8.550017, 47.380345], [8.550493, 47.379916]]], "type": "MultiLineString"}, "id": "2323", "properties": {}, "type": "Feature"}, {"bbox": [8.532741, 47.382567, 8.533628, 47.383148], "geometry": {"coordinates": [[[8.532741, 47.382567], [8.532809, 47.382628], [8.533628, 47.383148]]], "type": "MultiLineString"}, "id": "2324", "properties": {}, "type": "Feature"}, {"bbox": [8.530938, 47.38261, 8.531962, 47.383382], "geometry": {"coordinates": [[[8.531962, 47.38261], [8.531913, 47.382649], [8.531279, 47.383122], [8.530938, 47.383382]]], "type": "MultiLineString"}, "id": "2326", "properties": {}, "type": "Feature"}, {"bbox": [8.530426, 47.382431, 8.531688, 47.38331], "geometry": {"coordinates": [[[8.531688, 47.382431], [8.531679, 47.382437], [8.531612, 47.382483], [8.531061, 47.38287], [8.53097, 47.38293], [8.530489, 47.383268], [8.530426, 47.38331]]], "type": "MultiLineString"}, "id": "2327", "properties": {}, "type": "Feature"}, {"bbox": [8.506294, 47.398663, 8.513115, 47.40004], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506526, 47.398859], [8.506545, 47.398869], [8.506563, 47.398881], [8.506579, 47.398894], [8.506593, 47.398908], [8.506605, 47.398922], [8.506616, 47.398937], [8.506624, 47.398953], [8.506631, 47.398969], [8.506635, 47.398986], [8.506638, 47.399003], [8.506638, 47.399019], [8.506636, 47.399036], [8.506632, 47.399053], [8.506462, 47.399419], [8.50641, 47.39954], [8.506317, 47.399752], [8.506308, 47.399768], [8.506301, 47.399785], [8.506296, 47.399802], [8.506294, 47.399819], [8.506294, 47.399838], [8.506296, 47.399857], [8.5063, 47.399875], [8.506307, 47.399893], [8.506317, 47.399911], [8.506328, 47.399928], [8.506342, 47.399944], [8.506358, 47.399959], [8.506376, 47.399973], [8.506395, 47.399986], [8.506417, 47.399998], [8.506439, 47.400009], [8.506464, 47.400018], [8.506489, 47.400025], [8.506515, 47.400031], [8.506541, 47.400036], [8.506567, 47.400038], [8.506594, 47.40004], [8.50662, 47.400039], [8.506647, 47.400037], [8.506673, 47.400034], [8.506699, 47.400029], [8.506724, 47.400022], [8.506748, 47.400014], [8.506771, 47.400005], [8.506792, 47.399994], [8.506812, 47.399982], [8.506831, 47.399969], [8.506847, 47.399955], [8.507062, 47.399743], [8.507081, 47.399725], [8.507215, 47.399591], [8.507365, 47.399465], [8.50753, 47.399348], [8.507708, 47.39924], [8.507888, 47.399133], [8.508257, 47.398955], [8.508322, 47.398927], [8.508389, 47.398904], [8.508459, 47.398884], [8.508532, 47.398868], [8.508606, 47.398856], [8.508638, 47.398851], [8.50867, 47.398848], [8.508702, 47.398846], [8.508734, 47.398846], [8.508766, 47.398847], [8.508798, 47.398849], [8.508937, 47.398872], [8.509212, 47.398921], [8.509251, 47.398927], [8.509291, 47.398932], [8.509331, 47.398935], [8.509417, 47.398939], [8.509503, 47.39894], [8.50959, 47.398938], [8.509658, 47.398934], [8.509725, 47.398927], [8.509792, 47.398917], [8.509929, 47.398894], [8.51104, 47.398728], [8.511283, 47.398696], [8.511529, 47.398675], [8.511776, 47.398665], [8.511824, 47.398664], [8.511872, 47.398663], [8.51192, 47.398663], [8.512232, 47.398674], [8.512541, 47.398699], [8.512847, 47.398738], [8.512875, 47.398743], [8.512901, 47.39875], [8.512927, 47.398758], [8.512951, 47.398768], [8.512974, 47.398779], [8.512996, 47.398792], [8.513016, 47.398805], [8.513035, 47.39882], [8.513051, 47.398836], [8.513065, 47.398853], [8.513078, 47.39887], [8.513088, 47.398888], [8.513115, 47.398974]]], "type": "MultiLineString"}, "id": "2328", "properties": {}, "type": "Feature"}, {"bbox": [8.540416, 47.407537, 8.546479, 47.40947], "geometry": {"coordinates": [[[8.546479, 47.40757], [8.546366, 47.407548], [8.546302, 47.40754], [8.546237, 47.407537], [8.546172, 47.407538], [8.546108, 47.407542], [8.546044, 47.40755], [8.545982, 47.407562], [8.545921, 47.407578], [8.545863, 47.407597], [8.545807, 47.40762], [8.545503, 47.407746], [8.5449, 47.408007], [8.544586, 47.408138], [8.543198, 47.408719], [8.543087, 47.408765], [8.542972, 47.408807], [8.542855, 47.408845], [8.542784, 47.408867], [8.542712, 47.408887], [8.542639, 47.408907], [8.540416, 47.40947]]], "type": "MultiLineString"}, "id": "2331", "properties": {}, "type": "Feature"}, {"bbox": [8.526738, 47.385143, 8.526786, 47.385518], "geometry": {"coordinates": [[[8.526738, 47.385143], [8.526786, 47.385518]]], "type": "MultiLineString"}, "id": "2333", "properties": {}, "type": "Feature"}, {"bbox": [8.542302, 47.403535, 8.54274, 47.40392], "geometry": {"coordinates": [[[8.54274, 47.403535], [8.542612, 47.403621], [8.542496, 47.403714], [8.542392, 47.403814], [8.542302, 47.40392]]], "type": "MultiLineString"}, "id": "2335", "properties": {}, "type": "Feature"}, {"bbox": [8.550451, 47.392402, 8.550818, 47.392533], "geometry": {"coordinates": [[[8.550818, 47.392402], [8.5507, 47.392451], [8.550578, 47.392495], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "2344", "properties": {}, "type": "Feature"}, {"bbox": [8.566898, 47.346904, 8.567099, 47.34712], "geometry": {"coordinates": [[[8.566898, 47.34712], [8.567099, 47.346904]]], "type": "MultiLineString"}, "id": "2347", "properties": {}, "type": "Feature"}, {"bbox": [8.563293, 47.410261, 8.563551, 47.410891], "geometry": {"coordinates": [[[8.563551, 47.410261], [8.563441, 47.410466], [8.563354, 47.410677], [8.563293, 47.410891]]], "type": "MultiLineString"}, "id": "2353", "properties": {}, "type": "Feature"}, {"bbox": [8.584913, 47.405537, 8.585159, 47.406035], "geometry": {"coordinates": [[[8.585159, 47.405537], [8.584913, 47.406035]]], "type": "MultiLineString"}, "id": "2354", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.342955, 8.520014, 47.343169], "geometry": {"coordinates": [[[8.51938, 47.343169], [8.519587, 47.343163], [8.519629, 47.343161], [8.519671, 47.343156], [8.519713, 47.343148], [8.519753, 47.343138], [8.519791, 47.343126], [8.519828, 47.343111], [8.519863, 47.343094], [8.519896, 47.343075], [8.519925, 47.343054], [8.519952, 47.343032], [8.519976, 47.343008], [8.519997, 47.342982], [8.520014, 47.342955]]], "type": "MultiLineString"}, "id": "2356", "properties": {}, "type": "Feature"}, {"bbox": [8.475461, 47.413287, 8.475857, 47.413987], "geometry": {"coordinates": [[[8.475857, 47.413287], [8.475844, 47.413388], [8.47578, 47.413547], [8.475695, 47.4137], [8.475588, 47.413848], [8.475461, 47.413987]]], "type": "MultiLineString"}, "id": "2358", "properties": {}, "type": "Feature"}, {"bbox": [8.495954, 47.425929, 8.496499, 47.426047], "geometry": {"coordinates": [[[8.495954, 47.426047], [8.496499, 47.425929]]], "type": "MultiLineString"}, "id": "2359", "properties": {}, "type": "Feature"}, {"bbox": [8.527403, 47.376792, 8.528744, 47.377011], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.527403, 47.377011]]], "type": "MultiLineString"}, "id": "2372", "properties": {}, "type": "Feature"}, {"bbox": [8.595392, 47.357767, 8.596001, 47.35785], "geometry": {"coordinates": [[[8.595392, 47.357778], [8.595425, 47.357767], [8.596001, 47.35785]]], "type": "MultiLineString"}, "id": "2375", "properties": {}, "type": "Feature"}, {"bbox": [8.516488, 47.392076, 8.517689, 47.392417], "geometry": {"coordinates": [[[8.517689, 47.392076], [8.517416, 47.392155], [8.516823, 47.392325], [8.516488, 47.392417]]], "type": "MultiLineString"}, "id": "2386", "properties": {}, "type": "Feature"}, {"bbox": [8.536796, 47.375729, 8.53712, 47.375788], "geometry": {"coordinates": [[[8.53712, 47.375729], [8.537011, 47.375745], [8.536902, 47.375765], [8.536796, 47.375788]]], "type": "MultiLineString"}, "id": "2389", "properties": {}, "type": "Feature"}, {"bbox": [8.569375, 47.406948, 8.569897, 47.407829], "geometry": {"coordinates": [[[8.569375, 47.406948], [8.569897, 47.407829]]], "type": "MultiLineString"}, "id": "2395", "properties": {}, "type": "Feature"}, {"bbox": [8.58205, 47.396868, 8.58292, 47.397297], "geometry": {"coordinates": [[[8.58205, 47.397297], [8.582217, 47.397209], [8.582402, 47.397117], [8.58292, 47.396868]]], "type": "MultiLineString"}, "id": "2396", "properties": {}, "type": "Feature"}, {"bbox": [8.528464, 47.415282, 8.530026, 47.415885], "geometry": {"coordinates": [[[8.530026, 47.415885], [8.529927, 47.415856], [8.529829, 47.415824], [8.529734, 47.415789], [8.528464, 47.415282]]], "type": "MultiLineString"}, "id": "2398", "properties": {}, "type": "Feature"}, {"bbox": [8.531706, 47.367726, 8.534234, 47.368602], "geometry": {"coordinates": [[[8.534234, 47.368602], [8.534079, 47.368554], [8.533269, 47.36828], [8.533178, 47.368249], [8.533092, 47.36822], [8.531778, 47.367773], [8.531706, 47.367726]]], "type": "MultiLineString"}, "id": "2412", "properties": {}, "type": "Feature"}, {"bbox": [8.526934, 47.351791, 8.527309, 47.351826], "geometry": {"coordinates": [[[8.527309, 47.351826], [8.526934, 47.351791]]], "type": "MultiLineString"}, "id": "2415", "properties": {}, "type": "Feature"}, {"bbox": [8.530489, 47.393474, 8.533591, 47.39414], "geometry": {"coordinates": [[[8.533591, 47.39377], [8.533419, 47.39371], [8.532779, 47.393474], [8.532192, 47.393645], [8.531032, 47.393975], [8.530489, 47.39414]]], "type": "MultiLineString"}, "id": "2416", "properties": {}, "type": "Feature"}, {"bbox": [8.551145, 47.368332, 8.5546, 47.36923], "geometry": {"coordinates": [[[8.551145, 47.368332], [8.551367, 47.368399], [8.552091, 47.368657], [8.552785, 47.368904], [8.553078, 47.368984], [8.553673, 47.36908], [8.554234, 47.369171], [8.554405, 47.369198], [8.5546, 47.36923]]], "type": "MultiLineString"}, "id": "2421", "properties": {}, "type": "Feature"}, {"bbox": [8.560385, 47.351824, 8.560817, 47.35437], "geometry": {"coordinates": [[[8.560724, 47.35437], [8.560569, 47.354295], [8.560512, 47.354265], [8.560483, 47.354213], [8.560462, 47.353618], [8.560422, 47.352478], [8.560817, 47.35206], [8.560385, 47.351824]]], "type": "MultiLineString"}, "id": "2425", "properties": {}, "type": "Feature"}, {"bbox": [8.548544, 47.387682, 8.54934, 47.387721], "geometry": {"coordinates": [[[8.548544, 47.387698], [8.548706, 47.387682], [8.54934, 47.387721]]], "type": "MultiLineString"}, "id": "2436", "properties": {}, "type": "Feature"}, {"bbox": [8.500772, 47.419662, 8.501834, 47.420154], "geometry": {"coordinates": [[[8.501834, 47.419662], [8.501481, 47.419827], [8.501128, 47.419991], [8.500772, 47.420154]]], "type": "MultiLineString"}, "id": "2449", "properties": {}, "type": "Feature"}, {"bbox": [8.568354, 47.357191, 8.571058, 47.357356], "geometry": {"coordinates": [[[8.568354, 47.357297], [8.568684, 47.357334], [8.569018, 47.357354], [8.569353, 47.357356], [8.569814, 47.357347], [8.570518, 47.357312], [8.570891, 47.35721], [8.570956, 47.357197], [8.571058, 47.357191]]], "type": "MultiLineString"}, "id": "2454", "properties": {}, "type": "Feature"}, {"bbox": [8.505925, 47.364993, 8.50873, 47.369389], "geometry": {"coordinates": [[[8.50873, 47.364993], [8.508645, 47.365086], [8.508085, 47.365695], [8.508027, 47.365759], [8.5078, 47.366009], [8.507598, 47.366253], [8.507359, 47.366536], [8.507142, 47.366828], [8.506948, 47.367127], [8.506852, 47.36726], [8.506723, 47.367447], [8.506673, 47.367527], [8.506624, 47.367608], [8.506576, 47.367689], [8.506517, 47.367793], [8.50646, 47.367899], [8.506405, 47.368005], [8.506358, 47.368099], [8.50629, 47.368245], [8.506226, 47.368391], [8.506164, 47.368538], [8.506155, 47.368561], [8.506146, 47.368583], [8.506137, 47.368605], [8.506079, 47.368771], [8.506021, 47.368937], [8.505981, 47.369087], [8.505949, 47.369238], [8.505925, 47.369389]]], "type": "MultiLineString"}, "id": "2463", "properties": {}, "type": "Feature"}, {"bbox": [8.553222, 47.369533, 8.55373, 47.370387], "geometry": {"coordinates": [[[8.553222, 47.370387], [8.55373, 47.369692], [8.553726, 47.369533]]], "type": "MultiLineString"}, "id": "2466", "properties": {}, "type": "Feature"}, {"bbox": [8.501834, 47.417821, 8.504241, 47.419662], "geometry": {"coordinates": [[[8.504241, 47.417821], [8.504229, 47.417857], [8.504211, 47.417892], [8.50419, 47.417926], [8.504165, 47.417959], [8.504136, 47.41799], [8.504103, 47.41802], [8.503679, 47.418476], [8.503357, 47.418771], [8.502995, 47.419043], [8.502596, 47.41929], [8.502163, 47.419509], [8.501834, 47.419662]]], "type": "MultiLineString"}, "id": "2468", "properties": {}, "type": "Feature"}, {"bbox": [8.506996, 47.414837, 8.510665, 47.417246], "geometry": {"coordinates": [[[8.506996, 47.417246], [8.507284, 47.417074], [8.507836, 47.416721], [8.508369, 47.416366], [8.508737, 47.416117], [8.509124, 47.41589], [8.5095, 47.415678], [8.509632, 47.415593], [8.509755, 47.415501], [8.509867, 47.415403], [8.510073, 47.415198], [8.510204, 47.415067], [8.510329, 47.41493], [8.510354, 47.414912], [8.510381, 47.414896], [8.510411, 47.414882], [8.510442, 47.41487], [8.510474, 47.414859], [8.510508, 47.414851], [8.510543, 47.414844], [8.510578, 47.41484], [8.510614, 47.414838], [8.51065, 47.414839], [8.510665, 47.414837]]], "type": "MultiLineString"}, "id": "2473", "properties": {}, "type": "Feature"}, {"bbox": [8.541862, 47.369868, 8.543312, 47.37009], "geometry": {"coordinates": [[[8.541862, 47.369868], [8.542012, 47.369892], [8.542948, 47.369986], [8.543026, 47.369998], [8.543101, 47.370015], [8.543175, 47.370035], [8.543245, 47.370061], [8.543312, 47.37009]]], "type": "MultiLineString"}, "id": "2474", "properties": {}, "type": "Feature"}, {"bbox": [8.558396, 47.3683, 8.560341, 47.370171], "geometry": {"coordinates": [[[8.558396, 47.370171], [8.55913, 47.369399], [8.559738, 47.368737], [8.560184, 47.3683], [8.560341, 47.368346]]], "type": "MultiLineString"}, "id": "2475", "properties": {}, "type": "Feature"}, {"bbox": [8.509575, 47.382691, 8.51006, 47.383143], "geometry": {"coordinates": [[[8.51006, 47.383143], [8.509693, 47.382806], [8.509575, 47.382691]]], "type": "MultiLineString"}, "id": "2477", "properties": {}, "type": "Feature"}, {"bbox": [8.485592, 47.394769, 8.49094, 47.396118], "geometry": {"coordinates": [[[8.49094, 47.394777], [8.490833, 47.394769], [8.489887, 47.395018], [8.489068, 47.395233], [8.488475, 47.395374], [8.48614, 47.395983], [8.485805, 47.396061], [8.485592, 47.396118]]], "type": "MultiLineString"}, "id": "2479", "properties": {}, "type": "Feature"}, {"bbox": [8.521307, 47.389505, 8.521836, 47.39022], "geometry": {"coordinates": [[[8.521309, 47.389505], [8.521307, 47.389524], [8.521435, 47.389657], [8.52143, 47.389677], [8.521429, 47.389698], [8.52143, 47.389718], [8.521434, 47.389738], [8.52144, 47.389758], [8.521449, 47.389778], [8.521461, 47.389797], [8.521475, 47.389815], [8.521491, 47.389832], [8.521762, 47.390119], [8.521836, 47.39022]]], "type": "MultiLineString"}, "id": "2481", "properties": {}, "type": "Feature"}, {"bbox": [8.552897, 47.398273, 8.553893, 47.39891], "geometry": {"coordinates": [[[8.552897, 47.398273], [8.552937, 47.398283], [8.552975, 47.398295], [8.553011, 47.398309], [8.553046, 47.398324], [8.553078, 47.398342], [8.553109, 47.398362], [8.553136, 47.398383], [8.55373, 47.398801], [8.553893, 47.39891]]], "type": "MultiLineString"}, "id": "2482", "properties": {}, "type": "Feature"}, {"bbox": [8.540438, 47.390451, 8.542697, 47.393529], "geometry": {"coordinates": [[[8.542697, 47.390451], [8.542629, 47.390485], [8.541602, 47.391281], [8.541003, 47.391764], [8.540855, 47.391924], [8.540728, 47.392092], [8.540623, 47.392267], [8.540542, 47.392448], [8.540486, 47.392633], [8.540459, 47.392758], [8.540444, 47.392884], [8.540438, 47.393011], [8.540441, 47.393529]]], "type": "MultiLineString"}, "id": "2483", "properties": {}, "type": "Feature"}, {"bbox": [8.50078, 47.425035, 8.502591, 47.42615], "geometry": {"coordinates": [[[8.502591, 47.42615], [8.502491, 47.426079], [8.500951, 47.425197], [8.500921, 47.425182], [8.500893, 47.425165], [8.500868, 47.425146], [8.500844, 47.425126], [8.500824, 47.425105], [8.500806, 47.425083], [8.500791, 47.425059], [8.50078, 47.425035]]], "type": "MultiLineString"}, "id": "2484", "properties": {}, "type": "Feature"}, {"bbox": [8.541865, 47.416213, 8.545087, 47.416297], "geometry": {"coordinates": [[[8.545087, 47.416297], [8.544165, 47.416274], [8.541992, 47.416213], [8.541921, 47.416223], [8.541865, 47.416254]]], "type": "MultiLineString"}, "id": "2485", "properties": {}, "type": "Feature"}, {"bbox": [8.546563, 47.412037, 8.550433, 47.412205], "geometry": {"coordinates": [[[8.546563, 47.412037], [8.547375, 47.412164], [8.547639, 47.412194], [8.547906, 47.412205], [8.548173, 47.412198], [8.548402, 47.412183], [8.548405, 47.412183], [8.548808, 47.412157], [8.549332, 47.412144], [8.549499, 47.412149], [8.550433, 47.412175]]], "type": "MultiLineString"}, "id": "2486", "properties": {}, "type": "Feature"}, {"bbox": [8.481953, 47.385946, 8.485257, 47.387996], "geometry": {"coordinates": [[[8.485257, 47.387996], [8.48509, 47.387811], [8.485021, 47.387742], [8.484944, 47.387676], [8.48486, 47.387615], [8.484618, 47.387463], [8.484564, 47.387431], [8.484495, 47.387394], [8.484428, 47.387356], [8.484361, 47.387318], [8.484309, 47.387288], [8.484258, 47.387257], [8.484208, 47.387226], [8.484183, 47.38721], [8.484159, 47.387195], [8.484135, 47.387179], [8.483755, 47.386935], [8.483616, 47.386846], [8.483495, 47.386773], [8.483367, 47.386705], [8.483235, 47.386641], [8.482784, 47.386425], [8.482096, 47.386057], [8.482046, 47.386022], [8.481998, 47.385985], [8.481953, 47.385946]]], "type": "MultiLineString"}, "id": "2491", "properties": {}, "type": "Feature"}, {"bbox": [8.495103, 47.40687, 8.496673, 47.406994], "geometry": {"coordinates": [[[8.495103, 47.406892], [8.4952, 47.40693], [8.495356, 47.406961], [8.495516, 47.406982], [8.495678, 47.406993], [8.495841, 47.406994], [8.496003, 47.406985], [8.496163, 47.406966], [8.496321, 47.406937], [8.496473, 47.406898], [8.496673, 47.40687]]], "type": "MultiLineString"}, "id": "2494", "properties": {}, "type": "Feature"}, {"bbox": [8.543977, 47.421022, 8.54836, 47.423943], "geometry": {"coordinates": [[[8.54836, 47.421022], [8.547419, 47.421511], [8.546421, 47.422039], [8.544786, 47.422905], [8.544346, 47.423135], [8.54428, 47.423178], [8.544218, 47.423225], [8.544163, 47.423276], [8.544115, 47.423329], [8.544073, 47.423385], [8.544039, 47.423443], [8.544012, 47.423503], [8.543992, 47.423564], [8.54398, 47.423626], [8.543977, 47.423689], [8.543981, 47.423751], [8.543992, 47.423814], [8.544039, 47.423943]]], "type": "MultiLineString"}, "id": "2498", "properties": {}, "type": "Feature"}, {"bbox": [8.547992, 47.361282, 8.549475, 47.36157], "geometry": {"coordinates": [[[8.547992, 47.361282], [8.549475, 47.36157]]], "type": "MultiLineString"}, "id": "2499", "properties": {}, "type": "Feature"}, {"bbox": [8.557779, 47.35432, 8.561075, 47.355885], "geometry": {"coordinates": [[[8.557779, 47.35432], [8.557968, 47.354442], [8.558232, 47.354636], [8.55835, 47.354708], [8.558436, 47.35476], [8.558596, 47.354878], [8.558704, 47.354954], [8.558821, 47.355024], [8.558946, 47.355088], [8.559673, 47.355363], [8.559864, 47.355435], [8.560655, 47.355728], [8.561075, 47.355885]]], "type": "MultiLineString"}, "id": "2500", "properties": {}, "type": "Feature"}, {"bbox": [8.555495, 47.358223, 8.556108, 47.359615], "geometry": {"coordinates": [[[8.55609, 47.358223], [8.556019, 47.35834], [8.555505, 47.359264], [8.555498, 47.359279], [8.555495, 47.359292], [8.555495, 47.359309], [8.555499, 47.359323], [8.555504, 47.359333], [8.555523, 47.359358], [8.555571, 47.359383], [8.555849, 47.359508], [8.556108, 47.359615]]], "type": "MultiLineString"}, "id": "2501", "properties": {}, "type": "Feature"}, {"bbox": [8.55147, 47.358737, 8.557098, 47.364012], "geometry": {"coordinates": [[[8.55147, 47.364012], [8.552383, 47.363257], [8.5524, 47.363244], [8.552417, 47.363232], [8.552434, 47.36322], [8.55262, 47.363084], [8.552801, 47.362945], [8.552979, 47.362803], [8.553091, 47.36271], [8.553201, 47.362616], [8.55331, 47.362521], [8.553475, 47.362371], [8.553636, 47.362218], [8.553793, 47.362063], [8.553814, 47.362042], [8.553834, 47.36202], [8.553855, 47.361999], [8.554315, 47.361537], [8.554354, 47.361523], [8.55439, 47.361506], [8.554425, 47.361487], [8.554457, 47.361467], [8.554486, 47.361444], [8.554513, 47.36142], [8.554536, 47.361395], [8.554767, 47.361125], [8.554947, 47.360869], [8.555462, 47.360311], [8.55552, 47.360248], [8.556027, 47.359699], [8.556052, 47.35967], [8.556079, 47.359642], [8.556108, 47.359615], [8.55614, 47.359589], [8.556174, 47.359565], [8.556211, 47.359542], [8.556614, 47.359331], [8.556643, 47.359308], [8.556669, 47.359284], [8.556692, 47.359258], [8.556711, 47.359231], [8.556867, 47.359033], [8.557098, 47.358737]]], "type": "MultiLineString"}, "id": "2502", "properties": {}, "type": "Feature"}, {"bbox": [8.537375, 47.424702, 8.540756, 47.425218], "geometry": {"coordinates": [[[8.540756, 47.424702], [8.540572, 47.424802], [8.540482, 47.424849], [8.540386, 47.424891], [8.540285, 47.424927], [8.54018, 47.424958], [8.540072, 47.424982], [8.539961, 47.425], [8.539849, 47.425011], [8.539735, 47.425016], [8.539562, 47.425019], [8.53939, 47.425033], [8.539221, 47.425057], [8.539066, 47.425081], [8.538904, 47.425109], [8.538369, 47.425202], [8.538358, 47.425204], [8.538299, 47.425212], [8.538238, 47.425217], [8.538177, 47.425218], [8.538117, 47.425215], [8.538056, 47.42521], [8.537997, 47.4252], [8.537939, 47.425188], [8.537883, 47.425172], [8.537829, 47.425153], [8.537778, 47.425131], [8.537729, 47.425106], [8.537375, 47.424897]]], "type": "MultiLineString"}, "id": "2503", "properties": {}, "type": "Feature"}, {"bbox": [8.4869, 47.370051, 8.491742, 47.375564], "geometry": {"coordinates": [[[8.4869, 47.375564], [8.48699, 47.37529], [8.487082, 47.375036], [8.487103, 47.37499], [8.48713, 47.374945], [8.487162, 47.374901], [8.487199, 47.374859], [8.487241, 47.37482], [8.487291, 47.37478], [8.487347, 47.374742], [8.487408, 47.374708], [8.487472, 47.374678], [8.487541, 47.374652], [8.487612, 47.37463], [8.487686, 47.374612], [8.488099, 47.374527], [8.488213, 47.3745], [8.488325, 47.374466], [8.488432, 47.374427], [8.48847, 47.374417], [8.488507, 47.374405], [8.488541, 47.37439], [8.488574, 47.374373], [8.488604, 47.374355], [8.488632, 47.374334], [8.489591, 47.37365], [8.490394, 47.373089], [8.490494, 47.37301], [8.490584, 47.372925], [8.490664, 47.372835], [8.490733, 47.372742], [8.490817, 47.372585], [8.49089, 47.372426], [8.490952, 47.372265], [8.491048, 47.372034], [8.491072, 47.371946], [8.491086, 47.371857], [8.491089, 47.371767], [8.49108, 47.371678], [8.491061, 47.371589], [8.49099, 47.371401], [8.490975, 47.371356], [8.490963, 47.371312], [8.490955, 47.371267], [8.490949, 47.371222], [8.490947, 47.371176], [8.490948, 47.371131], [8.490957, 47.371059], [8.490975, 47.370987], [8.491001, 47.370917], [8.491036, 47.370848], [8.491079, 47.370782], [8.491129, 47.370718], [8.491187, 47.370657], [8.491501, 47.370369], [8.491565, 47.370313], [8.491621, 47.370253], [8.491669, 47.37019], [8.491709, 47.370125], [8.49174, 47.370057], [8.491742, 47.370051]]], "type": "MultiLineString"}, "id": "2504", "properties": {}, "type": "Feature"}, {"bbox": [8.485592, 47.395233, 8.489366, 47.396733], "geometry": {"coordinates": [[[8.489068, 47.395233], [8.489348, 47.395733], [8.489355, 47.395745], [8.48936, 47.395758], [8.489364, 47.395771], [8.489366, 47.395784], [8.489366, 47.395797], [8.489364, 47.39581], [8.489361, 47.395823], [8.489357, 47.395836], [8.489351, 47.395849], [8.489343, 47.395861], [8.489333, 47.395872], [8.489323, 47.395883], [8.489311, 47.395894], [8.489297, 47.395903], [8.489283, 47.395912], [8.489267, 47.39592], [8.489251, 47.395927], [8.489233, 47.395933], [8.489215, 47.395938], [8.486189, 47.396733], [8.485992, 47.396507], [8.485592, 47.396118]]], "type": "MultiLineString"}, "id": "2505", "properties": {}, "type": "Feature"}, {"bbox": [8.536312, 47.387005, 8.539671, 47.389937], "geometry": {"coordinates": [[[8.539671, 47.387008], [8.539635, 47.387005], [8.539599, 47.387005], [8.539563, 47.387007], [8.539528, 47.387012], [8.539493, 47.387018], [8.539459, 47.387027], [8.539175, 47.387139], [8.539117, 47.387161], [8.539059, 47.387185], [8.539002, 47.38721], [8.538979, 47.387223], [8.538958, 47.387238], [8.538939, 47.387254], [8.538892, 47.387299], [8.538845, 47.387344], [8.538798, 47.38739], [8.538545, 47.387657], [8.538497, 47.387705], [8.53846, 47.387746], [8.538058, 47.388298], [8.537653, 47.388853], [8.537338, 47.38911], [8.536632, 47.389688], [8.536312, 47.389937]]], "type": "MultiLineString"}, "id": "2516", "properties": {}, "type": "Feature"}, {"bbox": [8.521408, 47.377923, 8.522298, 47.379172], "geometry": {"coordinates": [[[8.521408, 47.377923], [8.521478, 47.378019], [8.52186, 47.378558], [8.521994, 47.378746], [8.522298, 47.379172]]], "type": "MultiLineString"}, "id": "2517", "properties": {}, "type": "Feature"}, {"bbox": [8.538394, 47.419042, 8.538748, 47.421566], "geometry": {"coordinates": [[[8.538432, 47.419042], [8.538488, 47.419621], [8.538514, 47.419747], [8.538547, 47.419866], [8.538684, 47.420137], [8.538748, 47.420256], [8.538601, 47.420338], [8.538591, 47.420344], [8.538582, 47.42035], [8.538573, 47.420356], [8.538565, 47.420364], [8.538558, 47.420371], [8.538552, 47.420379], [8.538547, 47.420387], [8.538543, 47.420396], [8.53854, 47.420405], [8.538539, 47.420413], [8.538538, 47.420422], [8.538538, 47.420431], [8.538505, 47.420784], [8.538451, 47.421182], [8.538394, 47.421566]]], "type": "MultiLineString"}, "id": "2518", "properties": {}, "type": "Feature"}, {"bbox": [8.553051, 47.355324, 8.554119, 47.355696], "geometry": {"coordinates": [[[8.553051, 47.355324], [8.553053, 47.355324], [8.553269, 47.35541], [8.554119, 47.355696]]], "type": "MultiLineString"}, "id": "2526", "properties": {}, "type": "Feature"}, {"bbox": [8.54828, 47.41557, 8.548847, 47.416338], "geometry": {"coordinates": [[[8.54828, 47.41557], [8.548774, 47.416305], [8.548777, 47.416309], [8.548782, 47.416313], [8.548787, 47.416318], [8.548792, 47.416321], [8.548798, 47.416325], [8.548804, 47.416328], [8.54881, 47.41633], [8.548817, 47.416333], [8.548824, 47.416335], [8.548832, 47.416336], [8.548839, 47.416337], [8.548847, 47.416338]]], "type": "MultiLineString"}, "id": "2527", "properties": {}, "type": "Feature"}, {"bbox": [8.569404, 47.380047, 8.570829, 47.381004], "geometry": {"coordinates": [[[8.570829, 47.380047], [8.570474, 47.380131], [8.570326, 47.380183], [8.570185, 47.380243], [8.570051, 47.380311], [8.569927, 47.380387], [8.569812, 47.380469], [8.569708, 47.380558], [8.569616, 47.380652], [8.569535, 47.380751], [8.569467, 47.380855], [8.569412, 47.380962], [8.569404, 47.381004]]], "type": "MultiLineString"}, "id": "2529", "properties": {}, "type": "Feature"}, {"bbox": [8.591389, 47.396576, 8.594578, 47.398448], "geometry": {"coordinates": [[[8.591389, 47.398448], [8.591438, 47.398254], [8.591476, 47.398216], [8.591668, 47.398059], [8.591677, 47.398042], [8.591821, 47.39784], [8.59184, 47.397817], [8.591935, 47.397704], [8.591985, 47.397646], [8.59201, 47.39762], [8.59217, 47.39746], [8.592224, 47.397411], [8.592376, 47.39728], [8.592409, 47.397255], [8.592615, 47.397102], [8.592835, 47.39696], [8.59288, 47.396933], [8.593095, 47.396814], [8.593136, 47.396792], [8.593394, 47.396669], [8.59345, 47.396648], [8.593496, 47.396634], [8.593543, 47.396622], [8.593592, 47.396612], [8.593657, 47.396604], [8.593789, 47.396595], [8.593847, 47.396589], [8.59394, 47.396576], [8.59409, 47.3967], [8.594121, 47.396731], [8.59441, 47.397039], [8.594578, 47.397224]]], "type": "MultiLineString"}, "id": "2530", "properties": {}, "type": "Feature"}, {"bbox": [8.561309, 47.405792, 8.563505, 47.408296], "geometry": {"coordinates": [[[8.563375, 47.405792], [8.563481, 47.405883], [8.563488, 47.405892], [8.563494, 47.405901], [8.563499, 47.405911], [8.563502, 47.405921], [8.563505, 47.405931], [8.563505, 47.405942], [8.563505, 47.405952], [8.563503, 47.405962], [8.563501, 47.405972], [8.563497, 47.405981], [8.563492, 47.40599], [8.563486, 47.405998], [8.563479, 47.406007], [8.563471, 47.406015], [8.56322, 47.406283], [8.563068, 47.406423], [8.562774, 47.406734], [8.562432, 47.407123], [8.562057, 47.407501], [8.561729, 47.407857], [8.561309, 47.408296]]], "type": "MultiLineString"}, "id": "2531", "properties": {}, "type": "Feature"}, {"bbox": [8.490667, 47.401566, 8.49686, 47.402902], "geometry": {"coordinates": [[[8.49686, 47.401938], [8.495605, 47.4016], [8.495488, 47.401582], [8.495369, 47.40157], [8.495249, 47.401566], [8.495129, 47.401569], [8.49501, 47.401579], [8.494893, 47.401597], [8.49448, 47.401666], [8.494065, 47.401727], [8.493648, 47.401782], [8.492607, 47.401897], [8.492447, 47.401915], [8.491769, 47.402013], [8.491115, 47.402129], [8.490667, 47.402218], [8.490953, 47.402822], [8.490992, 47.402902]]], "type": "MultiLineString"}, "id": "2533", "properties": {}, "type": "Feature"}, {"bbox": [8.521309, 47.383926, 8.530956, 47.389505], "geometry": {"coordinates": [[[8.530956, 47.383926], [8.530419, 47.384342], [8.529795, 47.384833], [8.529163, 47.385322], [8.528584, 47.385779], [8.528485, 47.385845], [8.527879, 47.386319], [8.527814, 47.38635], [8.527136, 47.38667], [8.526941, 47.386764], [8.526814, 47.386836], [8.525884, 47.387279], [8.525438, 47.387496], [8.525416, 47.387507], [8.524726, 47.387843], [8.523357, 47.388509], [8.521309, 47.389505]]], "type": "MultiLineString"}, "id": "2534", "properties": {}, "type": "Feature"}, {"bbox": [8.549001, 47.424097, 8.550897, 47.425502], "geometry": {"coordinates": [[[8.549001, 47.424097], [8.549324, 47.424249], [8.549741, 47.424463], [8.549844, 47.424525], [8.549939, 47.424593], [8.550025, 47.424666], [8.550102, 47.424744], [8.550422, 47.42504], [8.550897, 47.425502]]], "type": "MultiLineString"}, "id": "2535", "properties": {}, "type": "Feature"}, {"bbox": [8.50871, 47.424637, 8.509092, 47.424794], "geometry": {"coordinates": [[[8.509092, 47.424637], [8.509037, 47.424672], [8.508978, 47.424703], [8.508915, 47.424731], [8.508849, 47.424756], [8.508781, 47.424777], [8.50871, 47.424794]]], "type": "MultiLineString"}, "id": "2536", "properties": {}, "type": "Feature"}, {"bbox": [8.508027, 47.365759, 8.509628, 47.367676], "geometry": {"coordinates": [[[8.509555, 47.367676], [8.509585, 47.36761], [8.509607, 47.367543], [8.509622, 47.367475], [8.509628, 47.367406], [8.509625, 47.367338], [8.509615, 47.367269], [8.509596, 47.367202], [8.509487, 47.366847], [8.509452, 47.366758], [8.509406, 47.366671], [8.509348, 47.366586], [8.509281, 47.366506], [8.509203, 47.36643], [8.509116, 47.366358], [8.50902, 47.366292], [8.508712, 47.366095], [8.50838, 47.365917], [8.508027, 47.365759]]], "type": "MultiLineString"}, "id": "2543", "properties": {}, "type": "Feature"}, {"bbox": [8.54274, 47.403269, 8.543391, 47.403535], "geometry": {"coordinates": [[[8.543391, 47.403269], [8.543249, 47.403307], [8.543111, 47.403353], [8.54298, 47.403406], [8.542856, 47.403467], [8.54274, 47.403535]]], "type": "MultiLineString"}, "id": "2544", "properties": {}, "type": "Feature"}, {"bbox": [8.524726, 47.387843, 8.525603, 47.388674], "geometry": {"coordinates": [[[8.525603, 47.388674], [8.524726, 47.387843]]], "type": "MultiLineString"}, "id": "2550", "properties": {}, "type": "Feature"}, {"bbox": [8.533113, 47.390845, 8.534441, 47.391601], "geometry": {"coordinates": [[[8.533113, 47.390845], [8.533896, 47.391291], [8.533943, 47.391318], [8.534441, 47.391601]]], "type": "MultiLineString"}, "id": "2551", "properties": {}, "type": "Feature"}, {"bbox": [8.554843, 47.35438, 8.556068, 47.355377], "geometry": {"coordinates": [[[8.554843, 47.355377], [8.55492, 47.355314], [8.555339, 47.354977], [8.556068, 47.35438]]], "type": "MultiLineString"}, "id": "2557", "properties": {}, "type": "Feature"}, {"bbox": [8.487822, 47.402687, 8.488293, 47.403403], "geometry": {"coordinates": [[[8.487822, 47.402687], [8.488042, 47.403012], [8.488164, 47.403189], [8.488249, 47.403329], [8.488293, 47.403403]]], "type": "MultiLineString"}, "id": "2560", "properties": {}, "type": "Feature"}, {"bbox": [8.531835, 47.388188, 8.532591, 47.388442], "geometry": {"coordinates": [[[8.531835, 47.38823], [8.531845, 47.388237], [8.531856, 47.388243], [8.531868, 47.388248], [8.531881, 47.388253], [8.531894, 47.388257], [8.531907, 47.388261], [8.531921, 47.388263], [8.531935, 47.388265], [8.531949, 47.388266], [8.531964, 47.388266], [8.531978, 47.388265], [8.531992, 47.388263], [8.532006, 47.388261], [8.53202, 47.388258], [8.532033, 47.388254], [8.532216, 47.388194], [8.532224, 47.388191], [8.532233, 47.38819], [8.532241, 47.388189], [8.53225, 47.388188], [8.532259, 47.388188], [8.532267, 47.388188], [8.532276, 47.388189], [8.532284, 47.38819], [8.532292, 47.388192], [8.5323, 47.388194], [8.532308, 47.388197], [8.532315, 47.388201], [8.532322, 47.388204], [8.532328, 47.388208], [8.532334, 47.388213], [8.532591, 47.388442]]], "type": "MultiLineString"}, "id": "2561", "properties": {}, "type": "Feature"}, {"bbox": [8.531273, 47.389708, 8.532307, 47.390367], "geometry": {"coordinates": [[[8.531273, 47.389708], [8.531447, 47.389819], [8.532253, 47.390308], [8.532307, 47.390367]]], "type": "MultiLineString"}, "id": "2565", "properties": {}, "type": "Feature"}, {"bbox": [8.516431, 47.379785, 8.518073, 47.381083], "geometry": {"coordinates": [[[8.516431, 47.379785], [8.516506, 47.379902], [8.516526, 47.379927], [8.51655, 47.379951], [8.516577, 47.379974], [8.517112, 47.380368], [8.517268, 47.380484], [8.518073, 47.381083]]], "type": "MultiLineString"}, "id": "2566", "properties": {}, "type": "Feature"}, {"bbox": [8.556014, 47.379278, 8.558402, 47.380011], "geometry": {"coordinates": [[[8.556014, 47.380011], [8.557167, 47.379365], [8.557215, 47.379344], [8.557266, 47.379325], [8.557319, 47.379309], [8.557373, 47.379297], [8.557429, 47.379287], [8.557486, 47.379281], [8.557544, 47.379278], [8.557602, 47.379278], [8.557659, 47.379282], [8.557716, 47.379289], [8.557772, 47.379299], [8.557827, 47.379313], [8.557879, 47.379329], [8.557929, 47.379348], [8.55797, 47.379365], [8.558009, 47.379384], [8.558045, 47.379405], [8.558079, 47.379428], [8.558109, 47.379453], [8.558137, 47.379479], [8.558402, 47.379707]]], "type": "MultiLineString"}, "id": "2572", "properties": {}, "type": "Feature"}, {"bbox": [8.56479, 47.378437, 8.567211, 47.379824], "geometry": {"coordinates": [[[8.567211, 47.378437], [8.567172, 47.378634], [8.566603, 47.379121], [8.566516, 47.379182], [8.566421, 47.379238], [8.566319, 47.379288], [8.566211, 47.379332], [8.566097, 47.379369], [8.56598, 47.379398], [8.565299, 47.37959], [8.565123, 47.379661], [8.564953, 47.37974], [8.56479, 47.379824]]], "type": "MultiLineString"}, "id": "2573", "properties": {}, "type": "Feature"}, {"bbox": [8.596011, 47.357, 8.597284, 47.357723], "geometry": {"coordinates": [[[8.596011, 47.357723], [8.59605, 47.357716], [8.596098, 47.357712], [8.596145, 47.357695], [8.596363, 47.357537], [8.596741, 47.357284], [8.597159, 47.357143], [8.597208, 47.357118], [8.597237, 47.357088], [8.597284, 47.357]]], "type": "MultiLineString"}, "id": "2575", "properties": {}, "type": "Feature"}, {"bbox": [8.51522, 47.415344, 8.51836, 47.418542], "geometry": {"coordinates": [[[8.51836, 47.415344], [8.51802, 47.415651], [8.517908, 47.415768], [8.517895, 47.415781], [8.517881, 47.415793], [8.517866, 47.415805], [8.517768, 47.415878], [8.51736, 47.416166], [8.517281, 47.416216], [8.517197, 47.416261], [8.517107, 47.416302], [8.517012, 47.416338], [8.516599, 47.416477], [8.516558, 47.416492], [8.516519, 47.416509], [8.516482, 47.416529], [8.516447, 47.41655], [8.516416, 47.416574], [8.515933, 47.416968], [8.515904, 47.416996], [8.515879, 47.417025], [8.515856, 47.417056], [8.515838, 47.417087], [8.515609, 47.417618], [8.515592, 47.417659], [8.515576, 47.4177], [8.515562, 47.417742], [8.515449, 47.418074], [8.51543, 47.418117], [8.515336, 47.418318], [8.515241, 47.418503], [8.51522, 47.418542]]], "type": "MultiLineString"}, "id": "2576", "properties": {}, "type": "Feature"}, {"bbox": [8.542316, 47.404106, 8.543088, 47.404895], "geometry": {"coordinates": [[[8.542571, 47.404895], [8.542328, 47.404494], [8.542323, 47.404484], [8.542319, 47.404473], [8.542317, 47.404463], [8.542316, 47.404452], [8.542316, 47.404441], [8.542318, 47.40443], [8.542321, 47.404419], [8.542326, 47.404407], [8.542332, 47.404396], [8.54234, 47.404386], [8.54235, 47.404376], [8.54236, 47.404366], [8.542415, 47.404325], [8.54249, 47.404283], [8.542545, 47.404259], [8.5426, 47.40424], [8.542684, 47.404216], [8.543088, 47.404106]]], "type": "MultiLineString"}, "id": "2578", "properties": {}, "type": "Feature"}, {"bbox": [8.541438, 47.417183, 8.541951, 47.417856], "geometry": {"coordinates": [[[8.541951, 47.417183], [8.541935, 47.417222], [8.541925, 47.417261], [8.54192, 47.417301], [8.541921, 47.417341], [8.541913, 47.417377], [8.541901, 47.417413], [8.541883, 47.417448], [8.541861, 47.417482], [8.541835, 47.417514], [8.541804, 47.417544], [8.54177, 47.417572], [8.541731, 47.417599], [8.54169, 47.417622], [8.541645, 47.417643], [8.541438, 47.417856]]], "type": "MultiLineString"}, "id": "2579", "properties": {}, "type": "Feature"}, {"bbox": [8.505236, 47.416603, 8.506671, 47.417119], "geometry": {"coordinates": [[[8.506671, 47.416603], [8.506174, 47.41664], [8.506113, 47.416645], [8.506052, 47.416654], [8.505994, 47.416667], [8.505937, 47.416683], [8.505883, 47.416703], [8.505832, 47.416726], [8.505784, 47.416752], [8.50574, 47.416781], [8.505236, 47.417119]]], "type": "MultiLineString"}, "id": "2592", "properties": {}, "type": "Feature"}, {"bbox": [8.524731, 47.339016, 8.530014, 47.339989], "geometry": {"coordinates": [[[8.530014, 47.339989], [8.529821, 47.339935], [8.52969, 47.33993], [8.52956, 47.339918], [8.529433, 47.339898], [8.529308, 47.33987], [8.529022, 47.339785], [8.528621, 47.339669], [8.528183, 47.339535], [8.527762, 47.339449], [8.526595, 47.339286], [8.525802, 47.339175], [8.524731, 47.339016]]], "type": "MultiLineString"}, "id": "2595", "properties": {}, "type": "Feature"}, {"bbox": [8.531968, 47.359824, 8.534246, 47.360287], "geometry": {"coordinates": [[[8.534246, 47.360287], [8.53326, 47.360102], [8.532573, 47.359966], [8.532115, 47.359878], [8.531968, 47.359824]]], "type": "MultiLineString"}, "id": "2596", "properties": {}, "type": "Feature"}, {"bbox": [8.531886, 47.349083, 8.532356, 47.349581], "geometry": {"coordinates": [[[8.532356, 47.349581], [8.532192, 47.349527], [8.532118, 47.349408], [8.532055, 47.349313], [8.531896, 47.349097], [8.531886, 47.349083]]], "type": "MultiLineString"}, "id": "2597", "properties": {}, "type": "Feature"}, {"bbox": [8.524412, 47.357802, 8.52553, 47.360662], "geometry": {"coordinates": [[[8.524412, 47.360662], [8.524817, 47.360295], [8.52513, 47.359001], [8.525169, 47.358815], [8.525372, 47.357996], [8.525378, 47.357971], [8.525387, 47.357947], [8.5254, 47.357923], [8.525415, 47.3579], [8.525433, 47.357878], [8.525453, 47.357857], [8.525476, 47.357837], [8.525502, 47.357818], [8.52553, 47.357802]]], "type": "MultiLineString"}, "id": "2598", "properties": {}, "type": "Feature"}, {"bbox": [8.550188, 47.370134, 8.552498, 47.370665], "geometry": {"coordinates": [[[8.550188, 47.37032], [8.550357, 47.370602], [8.550364, 47.37061], [8.550373, 47.370617], [8.550382, 47.370625], [8.550392, 47.370631], [8.550403, 47.370637], [8.550415, 47.370643], [8.550427, 47.370647], [8.550439, 47.370651], [8.550453, 47.370654], [8.550466, 47.370657], [8.550547, 47.370664], [8.550628, 47.370665], [8.55071, 47.370661], [8.55079, 47.370652], [8.550869, 47.370638], [8.551123, 47.370569], [8.552084, 47.370251], [8.552498, 47.370134]]], "type": "MultiLineString"}, "id": "2599", "properties": {}, "type": "Feature"}, {"bbox": [8.495412, 47.404907, 8.496928, 47.405254], "geometry": {"coordinates": [[[8.495412, 47.405254], [8.495504, 47.405237], [8.495576, 47.405222], [8.496213, 47.405048], [8.496529, 47.404975], [8.496842, 47.404921], [8.496925, 47.404907], [8.496928, 47.404907]]], "type": "MultiLineString"}, "id": "2601", "properties": {}, "type": "Feature"}, {"bbox": [8.508156, 47.367927, 8.511104, 47.369649], "geometry": {"coordinates": [[[8.511104, 47.367927], [8.511089, 47.36795], [8.511071, 47.367971], [8.511051, 47.367992], [8.511027, 47.368011], [8.511002, 47.368028], [8.510974, 47.368044], [8.510944, 47.368058], [8.510912, 47.36807], [8.510879, 47.36808], [8.510421, 47.368233], [8.509975, 47.368403], [8.509543, 47.368588], [8.509481, 47.368617], [8.508935, 47.368953], [8.508586, 47.369179], [8.508474, 47.369261], [8.508375, 47.36935], [8.508288, 47.369445], [8.508215, 47.369545], [8.508156, 47.369649]]], "type": "MultiLineString"}, "id": "2607", "properties": {}, "type": "Feature"}, {"bbox": [8.511908, 47.369193, 8.512988, 47.37007], "geometry": {"coordinates": [[[8.512988, 47.369193], [8.512849, 47.369308], [8.512481, 47.369606], [8.51237, 47.369696], [8.511908, 47.37007]]], "type": "MultiLineString"}, "id": "2608", "properties": {}, "type": "Feature"}, {"bbox": [8.512293, 47.367348, 8.512824, 47.367745], "geometry": {"coordinates": [[[8.512824, 47.367348], [8.512293, 47.367745]]], "type": "MultiLineString"}, "id": "2609", "properties": {}, "type": "Feature"}, {"bbox": [8.516998, 47.368461, 8.518557, 47.370286], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.51822, 47.370087], [8.517909, 47.36987], [8.517626, 47.369636], [8.517373, 47.369387], [8.517347, 47.369358], [8.517321, 47.369329], [8.517295, 47.3693], [8.516998, 47.368874], [8.517183, 47.368461]]], "type": "MultiLineString"}, "id": "2610", "properties": {}, "type": "Feature"}, {"bbox": [8.519954, 47.367167, 8.522186, 47.368368], "geometry": {"coordinates": [[[8.522186, 47.368368], [8.521646, 47.368085], [8.520828, 47.367643], [8.519954, 47.367167]]], "type": "MultiLineString"}, "id": "2611", "properties": {}, "type": "Feature"}, {"bbox": [8.505397, 47.370157, 8.508502, 47.370806], "geometry": {"coordinates": [[[8.508502, 47.370806], [8.508291, 47.370604], [8.508254, 47.370573], [8.508213, 47.370544], [8.508169, 47.370518], [8.508122, 47.370494], [8.508073, 47.370472], [8.508021, 47.370454], [8.507966, 47.370439], [8.50791, 47.370426], [8.507776, 47.370405], [8.507033, 47.370311], [8.506173, 47.370228], [8.505596, 47.370175], [8.50553, 47.370169], [8.505463, 47.370163], [8.505397, 47.370157]]], "type": "MultiLineString"}, "id": "2612", "properties": {}, "type": "Feature"}, {"bbox": [8.523134, 47.368875, 8.523862, 47.36927], "geometry": {"coordinates": [[[8.523862, 47.36927], [8.523134, 47.368875]]], "type": "MultiLineString"}, "id": "2613", "properties": {}, "type": "Feature"}, {"bbox": [8.522956, 47.369021, 8.523685, 47.369412], "geometry": {"coordinates": [[[8.523685, 47.369412], [8.523548, 47.369341], [8.522956, 47.369021]]], "type": "MultiLineString"}, "id": "2614", "properties": {}, "type": "Feature"}, {"bbox": [8.529755, 47.371074, 8.53031, 47.371223], "geometry": {"coordinates": [[[8.53031, 47.371074], [8.530128, 47.371127], [8.529942, 47.371177], [8.529755, 47.371223]]], "type": "MultiLineString"}, "id": "2615", "properties": {}, "type": "Feature"}, {"bbox": [8.532849, 47.368698, 8.534045, 47.369102], "geometry": {"coordinates": [[[8.534045, 47.369102], [8.532849, 47.368698]]], "type": "MultiLineString"}, "id": "2616", "properties": {}, "type": "Feature"}, {"bbox": [8.530854, 47.36977, 8.532141, 47.370524], "geometry": {"coordinates": [[[8.532141, 47.370524], [8.531669, 47.370222], [8.531321, 47.370011], [8.531, 47.369856], [8.530854, 47.36977]]], "type": "MultiLineString"}, "id": "2617", "properties": {}, "type": "Feature"}, {"bbox": [8.532539, 47.367236, 8.533937, 47.369163], "geometry": {"coordinates": [[[8.533937, 47.367236], [8.533828, 47.367389], [8.533291, 47.368117], [8.533221, 47.368188], [8.533178, 47.368249], [8.533134, 47.36831], [8.53312, 47.36833], [8.532873, 47.368665], [8.532849, 47.368698], [8.532579, 47.369069], [8.532539, 47.369163]]], "type": "MultiLineString"}, "id": "2618", "properties": {}, "type": "Feature"}, {"bbox": [8.546099, 47.404355, 8.548288, 47.404626], "geometry": {"coordinates": [[[8.548288, 47.404605], [8.548179, 47.404619], [8.548142, 47.404623], [8.548104, 47.404626], [8.548067, 47.404626], [8.548029, 47.404624], [8.547992, 47.404619], [8.547955, 47.404613], [8.54792, 47.404604], [8.546729, 47.404368], [8.546685, 47.404361], [8.54664, 47.404357], [8.546596, 47.404355], [8.546551, 47.404357], [8.546506, 47.404361], [8.546463, 47.404368], [8.54642, 47.404378], [8.546099, 47.404464]]], "type": "MultiLineString"}, "id": "2624", "properties": {}, "type": "Feature"}, {"bbox": [8.597885, 47.355605, 8.601715, 47.357401], "geometry": {"coordinates": [[[8.597885, 47.35718], [8.598253, 47.357326], [8.59831, 47.357347], [8.598369, 47.357366], [8.598431, 47.35738], [8.598494, 47.357391], [8.598558, 47.357398], [8.598623, 47.357401], [8.598688, 47.357401], [8.598752, 47.357396], [8.598816, 47.357388], [8.598879, 47.357376], [8.59894, 47.35736], [8.598998, 47.357341], [8.599054, 47.357319], [8.599107, 47.357293], [8.599177, 47.357257], [8.599956, 47.356831], [8.601409, 47.356024], [8.601471, 47.35598], [8.601527, 47.355933], [8.601576, 47.355882], [8.601617, 47.355828], [8.60165, 47.355771], [8.601715, 47.355605]]], "type": "MultiLineString"}, "id": "2632", "properties": {}, "type": "Feature"}, {"bbox": [8.515253, 47.328593, 8.515636, 47.330199], "geometry": {"coordinates": [[[8.515253, 47.330199], [8.515417, 47.329979], [8.515491, 47.329872], [8.51555, 47.329761], [8.515594, 47.329648], [8.515623, 47.329532], [8.515636, 47.329414], [8.515634, 47.329297], [8.515617, 47.32918], [8.515458, 47.328593]]], "type": "MultiLineString"}, "id": "2635", "properties": {}, "type": "Feature"}, {"bbox": [8.515073, 47.326178, 8.517813, 47.327559], "geometry": {"coordinates": [[[8.515073, 47.326178], [8.515165, 47.326207], [8.515299, 47.32625], [8.515365, 47.326264], [8.515432, 47.326275], [8.5155, 47.326282], [8.515568, 47.326286], [8.516267, 47.326328], [8.516279, 47.32633], [8.516333, 47.326334], [8.516387, 47.326342], [8.51644, 47.326352], [8.516491, 47.326365], [8.51654, 47.326382], [8.516588, 47.3264], [8.517427, 47.326705], [8.517467, 47.32672], [8.517475, 47.326723], [8.517525, 47.326745], [8.517573, 47.32677], [8.517617, 47.326797], [8.517657, 47.326827], [8.517693, 47.32686], [8.517725, 47.326894], [8.517752, 47.32693], [8.517775, 47.326968], [8.517792, 47.327007], [8.517804, 47.327046], [8.517812, 47.327087], [8.517813, 47.327127], [8.51781, 47.327168], [8.517765, 47.327391], [8.517756, 47.327421], [8.517701, 47.327559]]], "type": "MultiLineString"}, "id": "2636", "properties": {}, "type": "Feature"}, {"bbox": [8.499716, 47.3778, 8.507853, 47.378631], "geometry": {"coordinates": [[[8.507853, 47.3778], [8.507538, 47.377926], [8.506526, 47.37849], [8.506447, 47.378527], [8.506365, 47.378558], [8.506278, 47.378584], [8.506188, 47.378604], [8.506095, 47.378619], [8.506002, 47.378628], [8.505907, 47.378631], [8.503536, 47.378532], [8.500806, 47.378424], [8.500663, 47.378418], [8.50052, 47.378421], [8.500377, 47.378432], [8.500237, 47.378451], [8.5001, 47.378479], [8.499966, 47.378514], [8.499838, 47.378558], [8.499716, 47.378609]]], "type": "MultiLineString"}, "id": "2638", "properties": {}, "type": "Feature"}, {"bbox": [8.474705, 47.387918, 8.477268, 47.38978], "geometry": {"coordinates": [[[8.477268, 47.387918], [8.477035, 47.388041], [8.476739, 47.388177], [8.475873, 47.388519], [8.47546, 47.38873], [8.475337, 47.388822], [8.475227, 47.388921], [8.475128, 47.389025], [8.475043, 47.389135], [8.474971, 47.389249], [8.474881, 47.389426], [8.474793, 47.389603], [8.474705, 47.38978]]], "type": "MultiLineString"}, "id": "2639", "properties": {}, "type": "Feature"}, {"bbox": [8.51513, 47.363803, 8.517491, 47.367252], "geometry": {"coordinates": [[[8.517491, 47.363803], [8.515874, 47.365991], [8.515849, 47.366029], [8.515825, 47.366067], [8.515801, 47.366105], [8.515641, 47.366371], [8.515375, 47.366831], [8.515165, 47.367187], [8.51513, 47.367252]]], "type": "MultiLineString"}, "id": "2641", "properties": {}, "type": "Feature"}, {"bbox": [8.536477, 47.369475, 8.536826, 47.369653], "geometry": {"coordinates": [[[8.536826, 47.369653], [8.536824, 47.369652], [8.536533, 47.369491], [8.536526, 47.369488], [8.536519, 47.369484], [8.536511, 47.369481], [8.536503, 47.369479], [8.536495, 47.369477], [8.536486, 47.369475], [8.536478, 47.369475], [8.536477, 47.369475]]], "type": "MultiLineString"}, "id": "2643", "properties": {}, "type": "Feature"}, {"bbox": [8.529873, 47.364929, 8.531114, 47.365634], "geometry": {"coordinates": [[[8.531114, 47.364929], [8.531011, 47.364996], [8.530845, 47.365124], [8.530662, 47.365241], [8.530463, 47.365347], [8.530075, 47.365508], [8.529873, 47.365634]]], "type": "MultiLineString"}, "id": "2651", "properties": {}, "type": "Feature"}, {"bbox": [8.572368, 47.348828, 8.577378, 47.350137], "geometry": {"coordinates": [[[8.572368, 47.348828], [8.572599, 47.348881], [8.572672, 47.3489], [8.572744, 47.348923], [8.572813, 47.348949], [8.572894, 47.348986], [8.57297, 47.349027], [8.573041, 47.349073], [8.573106, 47.349122], [8.573165, 47.349175], [8.573216, 47.349231], [8.573225, 47.349242], [8.573234, 47.349253], [8.573243, 47.349264], [8.573588, 47.349648], [8.573673, 47.349701], [8.573763, 47.34975], [8.57386, 47.349793], [8.573961, 47.34983], [8.574067, 47.349862], [8.574176, 47.349887], [8.574288, 47.349906], [8.574402, 47.349918], [8.574517, 47.349923], [8.574632, 47.349922], [8.574747, 47.349914], [8.57486, 47.3499], [8.575501, 47.349797], [8.575616, 47.349783], [8.575732, 47.349775], [8.575848, 47.349774], [8.575975, 47.34978], [8.576101, 47.349793], [8.576224, 47.349814], [8.576345, 47.349842], [8.577378, 47.350137]]], "type": "MultiLineString"}, "id": "2653", "properties": {}, "type": "Feature"}, {"bbox": [8.579958, 47.351042, 8.582491, 47.351835], "geometry": {"coordinates": [[[8.579958, 47.351042], [8.579976, 47.351077], [8.579999, 47.35111], [8.580026, 47.351143], [8.580057, 47.351173], [8.580092, 47.351201], [8.580131, 47.351227], [8.580174, 47.351251], [8.580219, 47.351271], [8.580433, 47.351358], [8.580658, 47.351432], [8.58089, 47.351493], [8.58167, 47.351724], [8.581784, 47.351752], [8.5819, 47.351772], [8.582018, 47.351786], [8.582138, 47.351793], [8.582491, 47.351835]]], "type": "MultiLineString"}, "id": "2654", "properties": {}, "type": "Feature"}, {"bbox": [8.575237, 47.353611, 8.578921, 47.354334], "geometry": {"coordinates": [[[8.575237, 47.3543], [8.575496, 47.354334], [8.5756, 47.354331], [8.575703, 47.354323], [8.575804, 47.354307], [8.575903, 47.354286], [8.575998, 47.354258], [8.576805, 47.354022], [8.576871, 47.354004], [8.577045, 47.353961], [8.577224, 47.353928], [8.577407, 47.353907], [8.577592, 47.353896], [8.577777, 47.353896], [8.577962, 47.353907], [8.578144, 47.353929], [8.578547, 47.354005], [8.578793, 47.353741], [8.578921, 47.353611]]], "type": "MultiLineString"}, "id": "2655", "properties": {}, "type": "Feature"}, {"bbox": [8.512189, 47.362551, 8.514802, 47.363374], "geometry": {"coordinates": [[[8.514802, 47.362551], [8.514421, 47.363223], [8.514412, 47.363241], [8.514401, 47.363257], [8.514388, 47.363273], [8.514373, 47.363288], [8.514356, 47.363302], [8.514337, 47.363316], [8.514317, 47.363328], [8.514295, 47.363338], [8.514272, 47.363348], [8.514248, 47.363356], [8.514223, 47.363362], [8.514196, 47.363368], [8.51417, 47.363371], [8.514143, 47.363373], [8.514115, 47.363374], [8.514088, 47.363372], [8.514061, 47.36337], [8.514035, 47.363365], [8.514009, 47.363359], [8.512189, 47.362907]]], "type": "MultiLineString"}, "id": "2659", "properties": {}, "type": "Feature"}, {"bbox": [8.510135, 47.370585, 8.514064, 47.372872], "geometry": {"coordinates": [[[8.514064, 47.370585], [8.513532, 47.371032], [8.512482, 47.371926], [8.511745, 47.372274], [8.511139, 47.37256], [8.510135, 47.372872]]], "type": "MultiLineString"}, "id": "2661", "properties": {}, "type": "Feature"}, {"bbox": [8.525477, 47.380137, 8.527985, 47.380972], "geometry": {"coordinates": [[[8.527985, 47.380137], [8.527776, 47.380201], [8.527485, 47.38034], [8.526697, 47.380714], [8.526216, 47.38095], [8.526207, 47.380955], [8.526196, 47.380959], [8.526186, 47.380963], [8.526174, 47.380966], [8.526163, 47.380969], [8.526151, 47.38097], [8.526139, 47.380971], [8.526127, 47.380972], [8.526115, 47.380972], [8.525573, 47.380935], [8.525561, 47.380934], [8.525549, 47.380932], [8.525537, 47.38093], [8.525526, 47.380927], [8.525515, 47.380923], [8.525504, 47.380919], [8.525494, 47.380914], [8.525485, 47.380908], [8.525477, 47.380902]]], "type": "MultiLineString"}, "id": "2671", "properties": {}, "type": "Feature"}, {"bbox": [8.566341, 47.368007, 8.568189, 47.37], "geometry": {"coordinates": [[[8.566341, 47.37], [8.566477, 47.369911], [8.566739, 47.36926], [8.566778, 47.36917], [8.566828, 47.369055], [8.566895, 47.368917], [8.566978, 47.368794], [8.567103, 47.368641], [8.567431, 47.368294], [8.567491, 47.368241], [8.567557, 47.368191], [8.56763, 47.368146], [8.567708, 47.368105], [8.567792, 47.368069], [8.56788, 47.368039], [8.567912, 47.368028], [8.567945, 47.36802], [8.567979, 47.368014], [8.568014, 47.36801], [8.568049, 47.368007], [8.568084, 47.368007], [8.568119, 47.368008], [8.568154, 47.368012], [8.568189, 47.368017]]], "type": "MultiLineString"}, "id": "2673", "properties": {}, "type": "Feature"}, {"bbox": [8.533159, 47.404945, 8.536132, 47.406982], "geometry": {"coordinates": [[[8.533159, 47.404945], [8.533464, 47.405078], [8.534138, 47.405372], [8.534171, 47.405386], [8.534203, 47.405402], [8.534233, 47.405419], [8.534261, 47.405438], [8.534287, 47.405458], [8.53431, 47.40548], [8.534374, 47.40557], [8.535008, 47.406648], [8.535095, 47.406796], [8.535121, 47.406824], [8.53515, 47.40685], [8.535183, 47.406874], [8.535219, 47.406897], [8.535257, 47.406916], [8.535298, 47.406934], [8.535341, 47.406949], [8.535386, 47.406961], [8.535432, 47.406971], [8.53548, 47.406977], [8.535528, 47.406981], [8.535576, 47.406982], [8.535624, 47.40698], [8.535672, 47.406975], [8.535719, 47.406967], [8.535765, 47.406956], [8.536132, 47.406856]]], "type": "MultiLineString"}, "id": "2675", "properties": {}, "type": "Feature"}, {"bbox": [8.535695, 47.408244, 8.536948, 47.408585], "geometry": {"coordinates": [[[8.536948, 47.408244], [8.536774, 47.408276], [8.535695, 47.408585]]], "type": "MultiLineString"}, "id": "2676", "properties": {}, "type": "Feature"}, {"bbox": [8.522551, 47.407896, 8.526352, 47.41284], "geometry": {"coordinates": [[[8.526352, 47.407896], [8.526281, 47.408004], [8.526205, 47.40811], [8.526122, 47.408213], [8.525816, 47.408585], [8.525305, 47.409204], [8.525161, 47.409379], [8.525056, 47.409507], [8.524372, 47.410336], [8.524193, 47.410553], [8.524015, 47.410769], [8.523985, 47.410802], [8.523956, 47.410835], [8.523927, 47.410868], [8.523787, 47.41105], [8.523667, 47.411239], [8.523569, 47.411433], [8.523495, 47.411615], [8.523436, 47.411737], [8.523363, 47.411855], [8.523275, 47.411969], [8.523207, 47.412043], [8.523133, 47.412115], [8.523053, 47.412184], [8.522677, 47.412501], [8.522651, 47.412523], [8.522629, 47.412546], [8.522609, 47.41257], [8.522592, 47.412595], [8.522578, 47.412621], [8.522567, 47.412648], [8.522557, 47.41268], [8.522552, 47.412712], [8.522551, 47.412744], [8.522554, 47.412777], [8.522562, 47.412809], [8.522573, 47.41284]]], "type": "MultiLineString"}, "id": "2677", "properties": {}, "type": "Feature"}, {"bbox": [8.486758, 47.392605, 8.48715, 47.394522], "geometry": {"coordinates": [[[8.48715, 47.394522], [8.487116, 47.39451], [8.487085, 47.394496], [8.487055, 47.394481], [8.487027, 47.394464], [8.487002, 47.394445], [8.486979, 47.394424], [8.486959, 47.394403], [8.486942, 47.39438], [8.486873, 47.39426], [8.48682, 47.394136], [8.486783, 47.39401], [8.486762, 47.393882], [8.486758, 47.393753], [8.486794, 47.392605]]], "type": "MultiLineString"}, "id": "2681", "properties": {}, "type": "Feature"}, {"bbox": [8.511711, 47.37525, 8.51382, 47.376757], "geometry": {"coordinates": [[[8.51382, 47.376757], [8.513591, 47.376593], [8.512581, 47.375871], [8.511711, 47.37525]]], "type": "MultiLineString"}, "id": "2682", "properties": {}, "type": "Feature"}, {"bbox": [8.527691, 47.373144, 8.527977, 47.373181], "geometry": {"coordinates": [[[8.527977, 47.373181], [8.52788, 47.373172], [8.527785, 47.373159], [8.527691, 47.373144]]], "type": "MultiLineString"}, "id": "2685", "properties": {}, "type": "Feature"}, {"bbox": [8.585749, 47.398881, 8.586103, 47.399104], "geometry": {"coordinates": [[[8.585749, 47.399104], [8.585838, 47.399061], [8.585922, 47.399014], [8.585999, 47.398962], [8.58607, 47.398906], [8.586103, 47.398881]]], "type": "MultiLineString"}, "id": "2686", "properties": {}, "type": "Feature"}, {"bbox": [8.493699, 47.399993, 8.49417, 47.400218], "geometry": {"coordinates": [[[8.49417, 47.400218], [8.494004, 47.400147], [8.493742, 47.400015], [8.493699, 47.399993]]], "type": "MultiLineString"}, "id": "2687", "properties": {}, "type": "Feature"}, {"bbox": [8.526722, 47.376792, 8.528744, 47.377977], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.528737, 47.376819], [8.528726, 47.376846], [8.528712, 47.376872], [8.528695, 47.376897], [8.528675, 47.376921], [8.528652, 47.376944], [8.528626, 47.376966], [8.528597, 47.376985], [8.528567, 47.377004], [8.528314, 47.377143], [8.527789, 47.377417], [8.527683, 47.377472], [8.526722, 47.377977]]], "type": "MultiLineString"}, "id": "2688", "properties": {}, "type": "Feature"}, {"bbox": [8.506445, 47.426789, 8.506785, 47.427234], "geometry": {"coordinates": [[[8.506785, 47.426789], [8.506754, 47.42684], [8.506721, 47.426891], [8.506687, 47.426941], [8.506445, 47.427234]]], "type": "MultiLineString"}, "id": "2689", "properties": {}, "type": "Feature"}, {"bbox": [8.518661, 47.375955, 8.523176, 47.377647], "geometry": {"coordinates": [[[8.523176, 47.375955], [8.522505, 47.376195], [8.521581, 47.376523], [8.520721, 47.376831], [8.520645, 47.37685], [8.520021, 47.377092], [8.519946, 47.377175], [8.519399, 47.377387], [8.519306, 47.3774], [8.519114, 47.377475], [8.518808, 47.377594], [8.518661, 47.377647]]], "type": "MultiLineString"}, "id": "2690", "properties": {}, "type": "Feature"}, {"bbox": [8.573051, 47.405434, 8.574737, 47.406073], "geometry": {"coordinates": [[[8.573051, 47.406073], [8.573259, 47.405968], [8.574598, 47.40549], [8.574737, 47.405434]]], "type": "MultiLineString"}, "id": "2691", "properties": {}, "type": "Feature"}, {"bbox": [8.524296, 47.395856, 8.524645, 47.396597], "geometry": {"coordinates": [[[8.524296, 47.395856], [8.524311, 47.395889], [8.524615, 47.396539], [8.524645, 47.396597]]], "type": "MultiLineString"}, "id": "2692", "properties": {}, "type": "Feature"}, {"bbox": [8.564142, 47.375013, 8.56672, 47.375497], "geometry": {"coordinates": [[[8.564142, 47.375497], [8.564224, 47.375472], [8.564308, 47.375451], [8.564393, 47.375434], [8.565773, 47.375289], [8.56596, 47.375271], [8.566271, 47.375241], [8.566319, 47.375236], [8.566366, 47.375227], [8.566412, 47.375216], [8.566457, 47.375202], [8.566499, 47.375186], [8.56654, 47.375167], [8.566577, 47.375146], [8.566612, 47.375123], [8.566644, 47.375098], [8.566673, 47.375071], [8.566698, 47.375042], [8.56672, 47.375013]]], "type": "MultiLineString"}, "id": "2695", "properties": {}, "type": "Feature"}, {"bbox": [8.574381, 47.407044, 8.576803, 47.407823], "geometry": {"coordinates": [[[8.574381, 47.407823], [8.574956, 47.407651], [8.575046, 47.407621], [8.575133, 47.407585], [8.575214, 47.407545], [8.5753, 47.407507], [8.57539, 47.407473], [8.575482, 47.407443], [8.576803, 47.407044]]], "type": "MultiLineString"}, "id": "2696", "properties": {}, "type": "Feature"}, {"bbox": [8.54323, 47.386432, 8.544984, 47.387354], "geometry": {"coordinates": [[[8.54323, 47.387354], [8.543275, 47.387302], [8.543948, 47.386467], [8.543954, 47.386462], [8.54396, 47.386457], [8.543967, 47.386452], [8.543975, 47.386447], [8.543984, 47.386444], [8.543992, 47.38644], [8.544001, 47.386438], [8.544011, 47.386435], [8.544021, 47.386434], [8.54403, 47.386433], [8.544039, 47.386432], [8.544048, 47.386432], [8.544057, 47.386432], [8.544066, 47.386433], [8.544075, 47.386435], [8.544084, 47.386437], [8.544092, 47.38644], [8.5449, 47.386751], [8.544984, 47.386777]]], "type": "MultiLineString"}, "id": "2721", "properties": {}, "type": "Feature"}, {"bbox": [8.512443, 47.412812, 8.516776, 47.414905], "geometry": {"coordinates": [[[8.516776, 47.413097], [8.51634, 47.412812], [8.51591, 47.413041], [8.515864, 47.413063], [8.515816, 47.413083], [8.515765, 47.413099], [8.515712, 47.413113], [8.515658, 47.413123], [8.515603, 47.41313], [8.515547, 47.413133], [8.51549, 47.413133], [8.515453, 47.413134], [8.515416, 47.413138], [8.51538, 47.413144], [8.515345, 47.413151], [8.515311, 47.413161], [8.515278, 47.413173], [8.515247, 47.413187], [8.515217, 47.413202], [8.51519, 47.413219], [8.515165, 47.413238], [8.515142, 47.413258], [8.515122, 47.413279], [8.515105, 47.413302], [8.515091, 47.413325], [8.515079, 47.413349], [8.514985, 47.413584], [8.514941, 47.413668], [8.514887, 47.413748], [8.514822, 47.413825], [8.514748, 47.413898], [8.514665, 47.413967], [8.514582, 47.414023], [8.514491, 47.414073], [8.514394, 47.414117], [8.514291, 47.414155], [8.513689, 47.414383], [8.513633, 47.414405], [8.5133, 47.414539], [8.51295, 47.414685], [8.512698, 47.414795], [8.512443, 47.414905]]], "type": "MultiLineString"}, "id": "2725", "properties": {}, "type": "Feature"}, {"bbox": [8.537298, 47.375785, 8.538733, 47.377374], "geometry": {"coordinates": [[[8.537298, 47.375785], [8.53734, 47.375822], [8.537378, 47.37586], [8.537412, 47.375901], [8.537441, 47.375943], [8.537557, 47.376159], [8.537611, 47.376248], [8.537677, 47.376333], [8.537754, 47.376414], [8.537819, 47.37648], [8.538107, 47.376775], [8.538452, 47.377128], [8.538486, 47.377157], [8.538521, 47.377186], [8.538555, 47.377215], [8.538607, 47.377251], [8.538654, 47.37729], [8.538696, 47.377331], [8.538733, 47.377374]]], "type": "MultiLineString"}, "id": "2726", "properties": {}, "type": "Feature"}, {"bbox": [8.515192, 47.377647, 8.518661, 47.378989], "geometry": {"coordinates": [[[8.518661, 47.377647], [8.518592, 47.377691], [8.518243, 47.377833], [8.517902, 47.377984], [8.517569, 47.378143], [8.517147, 47.378331], [8.516712, 47.378504], [8.516264, 47.378661], [8.516111, 47.37872], [8.515192, 47.378989]]], "type": "MultiLineString"}, "id": "2728", "properties": {}, "type": "Feature"}, {"bbox": [8.470077, 47.392376, 8.472105, 47.393561], "geometry": {"coordinates": [[[8.47175, 47.392376], [8.471837, 47.392404], [8.471988, 47.39252], [8.472105, 47.392626], [8.471807, 47.392807], [8.471475, 47.39298], [8.470077, 47.393561]]], "type": "MultiLineString"}, "id": "2732", "properties": {}, "type": "Feature"}, {"bbox": [8.526144, 47.336524, 8.527762, 47.339496], "geometry": {"coordinates": [[[8.527746, 47.339496], [8.527762, 47.339449], [8.527753, 47.339441], [8.527745, 47.339432], [8.527739, 47.339423], [8.527734, 47.339414], [8.52773, 47.339404], [8.527727, 47.339394], [8.527726, 47.339384], [8.527726, 47.339374], [8.527727, 47.339364], [8.527726, 47.339356], [8.527725, 47.339349], [8.527722, 47.339341], [8.527718, 47.339334], [8.527549, 47.339111], [8.527145, 47.338542], [8.527133, 47.338524], [8.527122, 47.338505], [8.527111, 47.338487], [8.526983, 47.338252], [8.526954, 47.338198], [8.526915, 47.338078], [8.52689, 47.337955], [8.526879, 47.337832], [8.526882, 47.337404], [8.526889, 47.337298], [8.526899, 47.337237], [8.526908, 47.337193], [8.526965, 47.336961], [8.52697, 47.336927], [8.52697, 47.336847], [8.526144, 47.336524]]], "type": "MultiLineString"}, "id": "2752", "properties": {}, "type": "Feature"}, {"bbox": [8.544569, 47.381767, 8.54562, 47.387482], "geometry": {"coordinates": [[[8.545249, 47.381769], [8.545258, 47.381768], [8.545267, 47.381767], [8.545275, 47.381768], [8.545284, 47.381768], [8.545293, 47.38177], [8.545301, 47.381771], [8.545309, 47.381774], [8.545317, 47.381776], [8.545325, 47.38178], [8.545332, 47.381783], [8.545338, 47.381787], [8.545345, 47.381791], [8.54535, 47.381796], [8.545355, 47.381801], [8.545359, 47.381806], [8.545363, 47.381812], [8.545366, 47.381818], [8.545368, 47.381823], [8.545369, 47.381829], [8.54537, 47.381835], [8.54537, 47.381841], [8.545364, 47.382149], [8.545363, 47.38221], [8.545361, 47.38231], [8.545351, 47.382831], [8.545349, 47.382984], [8.545346, 47.383104], [8.545337, 47.38343], [8.545337, 47.383447], [8.545335, 47.383465], [8.545332, 47.383482], [8.545305, 47.383565], [8.544861, 47.384942], [8.544854, 47.38496], [8.544849, 47.384979], [8.544846, 47.384998], [8.544846, 47.385017], [8.544848, 47.385036], [8.544853, 47.385058], [8.544861, 47.385079], [8.544872, 47.3851], [8.544886, 47.38512], [8.544902, 47.385139], [8.54548, 47.385842], [8.54562, 47.386021], [8.544984, 47.386777], [8.544972, 47.386791], [8.544936, 47.386836], [8.544585, 47.387272], [8.544578, 47.387284], [8.544574, 47.387295], [8.544571, 47.387308], [8.544569, 47.38732], [8.544569, 47.387332], [8.544571, 47.387344], [8.544575, 47.387357], [8.54458, 47.387368], [8.54461, 47.387422], [8.544645, 47.387482]]], "type": "MultiLineString"}, "id": "2755", "properties": {}, "type": "Feature"}, {"bbox": [8.542427, 47.381752, 8.543225, 47.384011], "geometry": {"coordinates": [[[8.542639, 47.381752], [8.5426, 47.381898], [8.542533, 47.382247], [8.542428, 47.382707], [8.542427, 47.382712], [8.542427, 47.382718], [8.542427, 47.382723], [8.542428, 47.382729], [8.54243, 47.382734], [8.542433, 47.382739], [8.542436, 47.382744], [8.54244, 47.382749], [8.542444, 47.382754], [8.54245, 47.382758], [8.542455, 47.382762], [8.542461, 47.382765], [8.542468, 47.382769], [8.542482, 47.382777], [8.542496, 47.382784], [8.542512, 47.38279], [8.542528, 47.382796], [8.542539, 47.3828], [8.54255, 47.382805], [8.542559, 47.38281], [8.542569, 47.382816], [8.542577, 47.382823], [8.542584, 47.38283], [8.542591, 47.382837], [8.542596, 47.382845], [8.542601, 47.382853], [8.542604, 47.382861], [8.542606, 47.38287], [8.542607, 47.382878], [8.542607, 47.382887], [8.542583, 47.382998], [8.542568, 47.38311], [8.542562, 47.383222], [8.542569, 47.383281], [8.542585, 47.38334], [8.542609, 47.383397], [8.54264, 47.383452], [8.542679, 47.383506], [8.542725, 47.383556], [8.542777, 47.383604], [8.543225, 47.384011]]], "type": "MultiLineString"}, "id": "2756", "properties": {}, "type": "Feature"}, {"bbox": [8.552501, 47.396482, 8.553032, 47.396715], "geometry": {"coordinates": [[[8.552501, 47.396511], [8.552572, 47.396484], [8.552607, 47.396482], [8.552643, 47.396482], [8.552678, 47.396483], [8.552713, 47.396487], [8.552747, 47.396493], [8.55278, 47.396501], [8.552813, 47.396511], [8.552843, 47.396523], [8.552872, 47.396537], [8.5529, 47.396552], [8.552925, 47.396569], [8.552947, 47.396588], [8.552968, 47.396607], [8.552985, 47.396628], [8.553, 47.39665], [8.553012, 47.396673], [8.553021, 47.396696], [8.553032, 47.396715]]], "type": "MultiLineString"}, "id": "2757", "properties": {}, "type": "Feature"}, {"bbox": [8.54816, 47.38039, 8.551155, 47.38133], "geometry": {"coordinates": [[[8.54816, 47.38039], [8.548455, 47.380511], [8.548763, 47.380611], [8.549068, 47.380706], [8.549334, 47.380785], [8.549496, 47.380825], [8.550551, 47.381086], [8.551155, 47.38133]]], "type": "MultiLineString"}, "id": "2758", "properties": {}, "type": "Feature"}, {"bbox": [8.512824, 47.328575, 8.514409, 47.334288], "geometry": {"coordinates": [[[8.51403, 47.334288], [8.514046, 47.334287], [8.514063, 47.334285], [8.514079, 47.334282], [8.514094, 47.334278], [8.514109, 47.334273], [8.514123, 47.334267], [8.514137, 47.334261], [8.514149, 47.334253], [8.514161, 47.334246], [8.514172, 47.334237], [8.514181, 47.334228], [8.514189, 47.334218], [8.514196, 47.334208], [8.514202, 47.334197], [8.514206, 47.334186], [8.514343, 47.3337], [8.514349, 47.333559], [8.514394, 47.333338], [8.514409, 47.333115], [8.514395, 47.332892], [8.514351, 47.332671], [8.514291, 47.332486], [8.51421, 47.332304], [8.514108, 47.332127], [8.514098, 47.332111], [8.513899, 47.331821], [8.513673, 47.331541], [8.513423, 47.331271], [8.513305, 47.331146], [8.513202, 47.331015], [8.513115, 47.330879], [8.513044, 47.330738], [8.512988, 47.330588], [8.51295, 47.330436], [8.512931, 47.330282], [8.512931, 47.330127], [8.51295, 47.329973], [8.512976, 47.329715], [8.512976, 47.329457], [8.512949, 47.329199], [8.512916, 47.329061], [8.512879, 47.328923], [8.512838, 47.328786], [8.512828, 47.328744], [8.512824, 47.328702], [8.512825, 47.328659], [8.512831, 47.328617], [8.512843, 47.328575]]], "type": "MultiLineString"}, "id": "2759", "properties": {}, "type": "Feature"}, {"bbox": [8.489052, 47.373231, 8.494553, 47.374763], "geometry": {"coordinates": [[[8.494553, 47.373231], [8.494132, 47.373358], [8.49372, 47.373498], [8.493318, 47.373652], [8.493061, 47.373761], [8.492799, 47.373863], [8.492532, 47.373959], [8.492322, 47.374028], [8.492109, 47.374093], [8.491893, 47.374154], [8.491521, 47.374234], [8.491145, 47.374303], [8.490764, 47.37436], [8.490526, 47.374399], [8.490294, 47.374451], [8.490069, 47.374516], [8.489853, 47.374592], [8.489645, 47.37468], [8.489592, 47.374702], [8.489537, 47.374721], [8.489479, 47.374736], [8.48942, 47.374748], [8.489359, 47.374757], [8.489297, 47.374762], [8.489235, 47.374763], [8.489174, 47.374761], [8.489112, 47.374755], [8.489052, 47.374745]]], "type": "MultiLineString"}, "id": "2761", "properties": {}, "type": "Feature"}, {"bbox": [8.481236, 47.376786, 8.483221, 47.378155], "geometry": {"coordinates": [[[8.483221, 47.378155], [8.483026, 47.378052], [8.482651, 47.377815], [8.482061, 47.377323], [8.481384, 47.376865], [8.481236, 47.376786]]], "type": "MultiLineString"}, "id": "2762", "properties": {}, "type": "Feature"}, {"bbox": [8.485257, 47.387996, 8.485992, 47.389159], "geometry": {"coordinates": [[[8.485992, 47.389159], [8.485974, 47.389122], [8.485957, 47.389085], [8.48594, 47.389048], [8.48552, 47.388215], [8.485513, 47.388191], [8.485502, 47.388167], [8.485489, 47.388145], [8.485472, 47.388122], [8.485453, 47.388101], [8.485432, 47.388082], [8.485408, 47.388063], [8.485381, 47.388046], [8.485353, 47.388031], [8.485322, 47.388017], [8.48529, 47.388006], [8.485257, 47.387996]]], "type": "MultiLineString"}, "id": "2763", "properties": {}, "type": "Feature"}, {"bbox": [8.546173, 47.415392, 8.548352, 47.417715], "geometry": {"coordinates": [[[8.546173, 47.417715], [8.546476, 47.417521], [8.546779, 47.417327], [8.547325, 47.417015], [8.547397, 47.416943], [8.547614, 47.416656], [8.547641, 47.416568], [8.547674, 47.416515], [8.548098, 47.415853], [8.54828, 47.41557], [8.548352, 47.415392]]], "type": "MultiLineString"}, "id": "2764", "properties": {}, "type": "Feature"}, {"bbox": [8.573051, 47.406073, 8.57542, 47.409542], "geometry": {"coordinates": [[[8.573051, 47.406073], [8.573259, 47.406233], [8.573331, 47.4063], [8.573405, 47.406366], [8.573479, 47.406432], [8.573655, 47.406617], [8.573802, 47.406814], [8.57392, 47.40702], [8.573979, 47.407131], [8.574132, 47.407394], [8.574381, 47.407823], [8.57496, 47.408836], [8.575014, 47.408923], [8.57542, 47.409542]]], "type": "MultiLineString"}, "id": "2765", "properties": {}, "type": "Feature"}, {"bbox": [8.517432, 47.374166, 8.519175, 47.375264], "geometry": {"coordinates": [[[8.519175, 47.374166], [8.518835, 47.374208], [8.51834, 47.37458], [8.517487, 47.375223], [8.517432, 47.375264]]], "type": "MultiLineString"}, "id": "2771", "properties": {}, "type": "Feature"}, {"bbox": [8.506685, 47.426665, 8.506848, 47.426765], "geometry": {"coordinates": [[[8.506848, 47.426665], [8.506779, 47.426765], [8.506685, 47.426731]]], "type": "MultiLineString"}, "id": "2774", "properties": {}, "type": "Feature"}, {"bbox": [8.525924, 47.369441, 8.527985, 47.370763], "geometry": {"coordinates": [[[8.527985, 47.370763], [8.527421, 47.370285], [8.527143, 47.370048], [8.527105, 47.37002], [8.527065, 47.369992], [8.527023, 47.369966], [8.526428, 47.369645], [8.525924, 47.369441]]], "type": "MultiLineString"}, "id": "2777", "properties": {}, "type": "Feature"}, {"bbox": [8.541027, 47.393946, 8.54418, 47.394708], "geometry": {"coordinates": [[[8.541027, 47.394708], [8.541072, 47.394669], [8.54171, 47.394142], [8.541727, 47.394128], [8.541747, 47.394115], [8.541768, 47.394104], [8.54179, 47.394093], [8.541814, 47.394084], [8.541839, 47.394077], [8.541895, 47.39406], [8.541952, 47.394047], [8.542011, 47.394037], [8.542071, 47.394029], [8.543316, 47.393975], [8.54418, 47.393946]]], "type": "MultiLineString"}, "id": "2779", "properties": {}, "type": "Feature"}, {"bbox": [8.507126, 47.392204, 8.510044, 47.39263], "geometry": {"coordinates": [[[8.510044, 47.392204], [8.509415, 47.392247], [8.508036, 47.392334], [8.50792, 47.392346], [8.507806, 47.392365], [8.507694, 47.39239], [8.507586, 47.392421], [8.507482, 47.392458], [8.507357, 47.392509], [8.507238, 47.392566], [8.507126, 47.39263]]], "type": "MultiLineString"}, "id": "2782", "properties": {}, "type": "Feature"}, {"bbox": [8.583331, 47.360645, 8.59131, 47.361176], "geometry": {"coordinates": [[[8.583331, 47.360645], [8.583729, 47.36069], [8.584129, 47.360723], [8.584532, 47.360743], [8.584587, 47.360741], [8.584643, 47.360737], [8.584698, 47.360729], [8.584751, 47.360719], [8.584901, 47.360751], [8.586634, 47.360713], [8.5869, 47.36072], [8.587114, 47.360731], [8.58722, 47.360739], [8.587661, 47.36078], [8.588075, 47.360836], [8.589031, 47.36097], [8.589204, 47.360991], [8.590428, 47.361157], [8.590527, 47.361166], [8.590625, 47.361172], [8.590724, 47.361176], [8.590791, 47.361174], [8.590857, 47.361169], [8.590923, 47.361159], [8.590986, 47.361145], [8.591048, 47.361128], [8.591107, 47.361107], [8.591164, 47.361082], [8.591216, 47.361054], [8.591265, 47.361023], [8.59131, 47.360989]]], "type": "MultiLineString"}, "id": "2783", "properties": {}, "type": "Feature"}, {"bbox": [8.544586, 47.408138, 8.544641, 47.408288], "geometry": {"coordinates": [[[8.544586, 47.408138], [8.544601, 47.408155], [8.544614, 47.408172], [8.544625, 47.408191], [8.544633, 47.40821], [8.544638, 47.408229], [8.544641, 47.408248], [8.544641, 47.408268], [8.544639, 47.408288]]], "type": "MultiLineString"}, "id": "2798", "properties": {}, "type": "Feature"}, {"bbox": [8.544377, 47.408288, 8.544639, 47.408857], "geometry": {"coordinates": [[[8.544639, 47.408288], [8.544377, 47.408857]]], "type": "MultiLineString"}, "id": "2799", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.408857, 8.544377, 47.409585], "geometry": {"coordinates": [[[8.544377, 47.408857], [8.544291, 47.409044], [8.544106, 47.409446], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "2800", "properties": {}, "type": "Feature"}, {"bbox": [8.547983, 47.402512, 8.553455, 47.403337], "geometry": {"coordinates": [[[8.553455, 47.402512], [8.553048, 47.402516], [8.552575, 47.402557], [8.552248, 47.402619], [8.551417, 47.402813], [8.551185, 47.402852], [8.550949, 47.402876], [8.55071, 47.402887], [8.550471, 47.402884], [8.550319, 47.402879], [8.550103, 47.402855], [8.549885, 47.402845], [8.549667, 47.402848], [8.54945, 47.402865], [8.549235, 47.402895], [8.549026, 47.402938], [8.548824, 47.402994], [8.548106, 47.40329], [8.547983, 47.403337]]], "type": "MultiLineString"}, "id": "2807", "properties": {}, "type": "Feature"}, {"bbox": [8.558518, 47.379824, 8.56479, 47.382251], "geometry": {"coordinates": [[[8.56479, 47.379824], [8.564171, 47.380106], [8.563928, 47.380188], [8.562358, 47.380667], [8.561533, 47.380904], [8.561035, 47.381097], [8.560409, 47.381328], [8.560082, 47.381467], [8.559773, 47.381624], [8.559484, 47.381798], [8.558895, 47.38217], [8.55882, 47.382213], [8.558725, 47.38225], [8.558615, 47.382251], [8.558518, 47.382217]]], "type": "MultiLineString"}, "id": "2808", "properties": {}, "type": "Feature"}, {"bbox": [8.515033, 47.393824, 8.521559, 47.395204], "geometry": {"coordinates": [[[8.521559, 47.393825], [8.521499, 47.393824], [8.521439, 47.393827], [8.521379, 47.393834], [8.521321, 47.393844], [8.521264, 47.393857], [8.52072, 47.394033], [8.519749, 47.394341], [8.519431, 47.394438], [8.519109, 47.394528], [8.518783, 47.39461], [8.518525, 47.39467], [8.518266, 47.394725], [8.518004, 47.394777], [8.517754, 47.394821], [8.517503, 47.394861], [8.51725, 47.394897], [8.515771, 47.39509], [8.515524, 47.395125], [8.515278, 47.395163], [8.515033, 47.395204]]], "type": "MultiLineString"}, "id": "2812", "properties": {}, "type": "Feature"}, {"bbox": [8.483344, 47.390712, 8.483488, 47.390993], "geometry": {"coordinates": [[[8.483352, 47.390712], [8.483348, 47.390723], [8.483345, 47.390735], [8.483344, 47.390746], [8.483344, 47.390757], [8.483346, 47.390768], [8.483349, 47.39078], [8.483353, 47.390791], [8.483488, 47.390993]]], "type": "MultiLineString"}, "id": "2814", "properties": {}, "type": "Feature"}, {"bbox": [8.549243, 47.379177, 8.552554, 47.382224], "geometry": {"coordinates": [[[8.549243, 47.382224], [8.549719, 47.38181], [8.550469, 47.381153], [8.550551, 47.381086], [8.551083, 47.380481], [8.551585, 47.379908], [8.551698, 47.379806], [8.552424, 47.379263], [8.552554, 47.379177]]], "type": "MultiLineString"}, "id": "2830", "properties": {}, "type": "Feature"}, {"bbox": [8.546874, 47.415769, 8.548098, 47.416725], "geometry": {"coordinates": [[[8.546874, 47.416725], [8.547365, 47.416187], [8.547683, 47.415803], [8.547693, 47.415797], [8.547704, 47.415791], [8.547716, 47.415785], [8.547728, 47.415781], [8.547741, 47.415777], [8.547755, 47.415774], [8.547768, 47.415771], [8.547782, 47.41577], [8.547797, 47.415769], [8.547811, 47.415769], [8.547825, 47.41577], [8.547839, 47.415772], [8.547852, 47.415775], [8.547865, 47.415778], [8.548098, 47.415853]]], "type": "MultiLineString"}, "id": "2831", "properties": {}, "type": "Feature"}, {"bbox": [8.535704, 47.398203, 8.537407, 47.400506], "geometry": {"coordinates": [[[8.537407, 47.400506], [8.536712, 47.40021], [8.536396, 47.400055], [8.536252, 47.399977], [8.536119, 47.399892], [8.535996, 47.399799], [8.535885, 47.3997], [8.535845, 47.399668], [8.53581, 47.399632], [8.53578, 47.399595], [8.535754, 47.399557], [8.535734, 47.399517], [8.535719, 47.399475], [8.535709, 47.399434], [8.535704, 47.399391], [8.535705, 47.399349], [8.535712, 47.399307], [8.535723, 47.399265], [8.535741, 47.399224], [8.535763, 47.399185], [8.53579, 47.399146], [8.535822, 47.39911], [8.535859, 47.399076], [8.536217, 47.398769], [8.536272, 47.398717], [8.536322, 47.398663], [8.536365, 47.398606], [8.536402, 47.398547], [8.536431, 47.398486], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "2846", "properties": {}, "type": "Feature"}, {"bbox": [8.521232, 47.343333, 8.528788, 47.344436], "geometry": {"coordinates": [[[8.528788, 47.344066], [8.528662, 47.344029], [8.527746, 47.344024], [8.527551, 47.34406], [8.527427, 47.344095], [8.526877, 47.344362], [8.526659, 47.344436], [8.526449, 47.344384], [8.525683, 47.344019], [8.525008, 47.343695], [8.524541, 47.343468], [8.524475, 47.343442], [8.524407, 47.343418], [8.524337, 47.343396], [8.52422, 47.34337], [8.524099, 47.343351], [8.523976, 47.343338], [8.523853, 47.343333], [8.523729, 47.343336], [8.523606, 47.343346], [8.523398, 47.343375], [8.523194, 47.343417], [8.522996, 47.343471], [8.522619, 47.343594], [8.522378, 47.343679], [8.522126, 47.34375], [8.521866, 47.343804], [8.5216, 47.343841], [8.521329, 47.343862], [8.521232, 47.343829]]], "type": "MultiLineString"}, "id": "2847", "properties": {}, "type": "Feature"}, {"bbox": [8.538778, 47.41242, 8.539483, 47.413211], "geometry": {"coordinates": [[[8.539483, 47.41242], [8.539396, 47.412454], [8.538858, 47.413081], [8.538778, 47.413211]]], "type": "MultiLineString"}, "id": "2849", "properties": {}, "type": "Feature"}, {"bbox": [8.535339, 47.395499, 8.540042, 47.397977], "geometry": {"coordinates": [[[8.540042, 47.395499], [8.539741, 47.395669], [8.538957, 47.396086], [8.53877, 47.396186], [8.537782, 47.39667], [8.53762, 47.396751], [8.537235, 47.396944], [8.536632, 47.397248], [8.535798, 47.397694], [8.535481, 47.397871], [8.535339, 47.397977]]], "type": "MultiLineString"}, "id": "2851", "properties": {}, "type": "Feature"}, {"bbox": [8.536396, 47.398469, 8.537833, 47.400055], "geometry": {"coordinates": [[[8.537833, 47.398469], [8.537807, 47.398525], [8.537411, 47.399065], [8.536939, 47.399577], [8.536396, 47.400055]]], "type": "MultiLineString"}, "id": "2852", "properties": {}, "type": "Feature"}, {"bbox": [8.541875, 47.399597, 8.542741, 47.400092], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.542488, 47.399691], [8.542297, 47.39983], [8.541931, 47.400053], [8.541903, 47.400072], [8.541875, 47.400092]]], "type": "MultiLineString"}, "id": "2854", "properties": {}, "type": "Feature"}, {"bbox": [8.540487, 47.420898, 8.542557, 47.421626], "geometry": {"coordinates": [[[8.542494, 47.421626], [8.542555, 47.421103], [8.542557, 47.421095], [8.542557, 47.421087], [8.542556, 47.421079], [8.542554, 47.421071], [8.542552, 47.421063], [8.542548, 47.421055], [8.542543, 47.421047], [8.542537, 47.42104], [8.542531, 47.421033], [8.542523, 47.421027], [8.542515, 47.421021], [8.542506, 47.421016], [8.542497, 47.421011], [8.542486, 47.421006], [8.542476, 47.421003], [8.542464, 47.421], [8.542453, 47.420997], [8.542441, 47.420995], [8.542429, 47.420994], [8.541614, 47.420932], [8.54124, 47.420908], [8.540863, 47.420898], [8.540487, 47.420904]]], "type": "MultiLineString"}, "id": "2858", "properties": {}, "type": "Feature"}, {"bbox": [8.52786, 47.394026, 8.529508, 47.394662], "geometry": {"coordinates": [[[8.529508, 47.394026], [8.52945, 47.394057], [8.527907, 47.394655], [8.52786, 47.394662]]], "type": "MultiLineString"}, "id": "2859", "properties": {}, "type": "Feature"}, {"bbox": [8.525161, 47.409379, 8.525923, 47.410169], "geometry": {"coordinates": [[[8.525161, 47.409379], [8.525865, 47.40982], [8.525923, 47.409859], [8.525505, 47.410169]]], "type": "MultiLineString"}, "id": "2860", "properties": {}, "type": "Feature"}, {"bbox": [8.532158, 47.406648, 8.535008, 47.407794], "geometry": {"coordinates": [[[8.535008, 47.406648], [8.534973, 47.406659], [8.534864, 47.406688], [8.533048, 47.407332], [8.533016, 47.407344], [8.532985, 47.407358], [8.532956, 47.407374], [8.532929, 47.407391], [8.532904, 47.407409], [8.532882, 47.407429], [8.532862, 47.40745], [8.532807, 47.407511], [8.532783, 47.407536], [8.532756, 47.407559], [8.532726, 47.40758], [8.532694, 47.4076], [8.532658, 47.407617], [8.532621, 47.407632], [8.532201, 47.407779], [8.532158, 47.407794]]], "type": "MultiLineString"}, "id": "2861", "properties": {}, "type": "Feature"}, {"bbox": [8.569507, 47.404839, 8.571312, 47.405708], "geometry": {"coordinates": [[[8.571312, 47.404839], [8.571214, 47.404895], [8.571178, 47.404943], [8.570924, 47.405086], [8.570815, 47.405148], [8.570703, 47.405208], [8.570588, 47.405267], [8.570337, 47.405385], [8.570077, 47.405495], [8.569809, 47.405596], [8.569591, 47.405677], [8.569507, 47.405708]]], "type": "MultiLineString"}, "id": "2864", "properties": {}, "type": "Feature"}, {"bbox": [8.529308, 47.338288, 8.529428, 47.33987], "geometry": {"coordinates": [[[8.529308, 47.33987], [8.529323, 47.339747], [8.529416, 47.33842], [8.529428, 47.338288]]], "type": "MultiLineString"}, "id": "2865", "properties": {}, "type": "Feature"}, {"bbox": [8.560678, 47.360521, 8.561133, 47.361604], "geometry": {"coordinates": [[[8.560863, 47.361604], [8.560839, 47.361596], [8.560816, 47.361587], [8.560794, 47.361576], [8.560774, 47.361564], [8.560755, 47.361551], [8.560738, 47.361536], [8.560723, 47.361521], [8.56071, 47.361505], [8.560699, 47.361488], [8.56069, 47.361471], [8.560684, 47.361453], [8.560679, 47.361435], [8.560678, 47.361417], [8.560678, 47.361399], [8.561034, 47.36076], [8.561121, 47.360598], [8.561127, 47.360583], [8.561131, 47.360567], [8.561133, 47.360552], [8.561133, 47.360536], [8.561131, 47.360521]]], "type": "MultiLineString"}, "id": "2869", "properties": {}, "type": "Feature"}, {"bbox": [8.542032, 47.409694, 8.543839, 47.410375], "geometry": {"coordinates": [[[8.543839, 47.409694], [8.543718, 47.409748], [8.543224, 47.409941], [8.542636, 47.410184], [8.542328, 47.410285], [8.542229, 47.410315], [8.54213, 47.410344], [8.542032, 47.410375]]], "type": "MultiLineString"}, "id": "2870", "properties": {}, "type": "Feature"}, {"bbox": [8.567464, 47.378627, 8.56909, 47.379485], "geometry": {"coordinates": [[[8.56909, 47.378627], [8.569076, 47.378685], [8.569055, 47.378742], [8.569027, 47.378798], [8.568992, 47.378852], [8.568951, 47.378904], [8.568903, 47.378954], [8.568849, 47.379], [8.56879, 47.379043], [8.568726, 47.379083], [8.568656, 47.379119], [8.568583, 47.379151], [8.568506, 47.379178], [8.567623, 47.379465], [8.567598, 47.379472], [8.567572, 47.379478], [8.567546, 47.379482], [8.567519, 47.379485], [8.567492, 47.379485], [8.567464, 47.379484]]], "type": "MultiLineString"}, "id": "2887", "properties": {}, "type": "Feature"}, {"bbox": [8.568027, 47.377357, 8.568329, 47.378552], "geometry": {"coordinates": [[[8.568281, 47.378552], [8.56832, 47.37835], [8.568329, 47.378279], [8.568328, 47.378208], [8.568318, 47.378137], [8.568298, 47.378067], [8.568269, 47.377998], [8.568231, 47.377932], [8.568171, 47.377856], [8.568121, 47.377777], [8.568082, 47.377696], [8.568053, 47.377613], [8.568035, 47.377528], [8.568027, 47.377442], [8.568031, 47.377357]]], "type": "MultiLineString"}, "id": "2888", "properties": {}, "type": "Feature"}, {"bbox": [8.552557, 47.360553, 8.55285, 47.361206], "geometry": {"coordinates": [[[8.552557, 47.361206], [8.552565, 47.361127], [8.55285, 47.360553]]], "type": "MultiLineString"}, "id": "2889", "properties": {}, "type": "Feature"}, {"bbox": [8.557376, 47.382111, 8.56109, 47.384153], "geometry": {"coordinates": [[[8.557376, 47.38314], [8.557555, 47.383257], [8.557561, 47.38326], [8.557568, 47.383264], [8.557574, 47.383267], [8.557582, 47.383269], [8.557589, 47.383272], [8.557597, 47.383273], [8.557605, 47.383274], [8.557613, 47.383275], [8.557621, 47.383275], [8.557629, 47.383275], [8.557638, 47.383274], [8.557646, 47.383273], [8.557779, 47.38324], [8.557907, 47.383198], [8.558029, 47.383149], [8.558145, 47.383092], [8.558252, 47.383029], [8.558467, 47.382901], [8.558699, 47.382788], [8.558946, 47.38269], [8.559281, 47.382589], [8.559432, 47.382539], [8.559576, 47.382482], [8.559713, 47.382416], [8.560172, 47.382184], [8.560214, 47.382164], [8.560258, 47.382147], [8.560305, 47.382132], [8.560353, 47.38212], [8.560402, 47.382111], [8.560596, 47.382246], [8.560609, 47.38226], [8.560619, 47.382275], [8.560628, 47.38229], [8.560635, 47.382306], [8.56064, 47.382323], [8.560643, 47.382339], [8.560644, 47.382356], [8.560642, 47.382372], [8.560639, 47.382389], [8.560633, 47.382405], [8.560626, 47.382421], [8.560616, 47.382436], [8.560605, 47.382451], [8.560591, 47.382465], [8.560576, 47.382478], [8.56056, 47.38249], [8.560542, 47.382501], [8.560522, 47.382511], [8.560502, 47.38252], [8.560335, 47.382596], [8.56018, 47.382682], [8.560038, 47.382779], [8.559784, 47.383006], [8.55977, 47.383025], [8.559758, 47.383045], [8.559749, 47.383066], [8.559743, 47.383088], [8.55974, 47.383109], [8.559739, 47.383131], [8.559742, 47.383152], [8.559747, 47.383174], [8.559755, 47.383195], [8.559766, 47.383215], [8.559779, 47.383235], [8.55987, 47.383309], [8.560035, 47.383407], [8.560785, 47.383054], [8.560989, 47.383204], [8.561007, 47.383222], [8.561023, 47.383241], [8.561036, 47.383261], [8.561047, 47.383282], [8.561055, 47.383303], [8.56106, 47.383324], [8.561087, 47.383529], [8.56109, 47.383556], [8.561089, 47.383582], [8.561085, 47.383608], [8.561078, 47.383634], [8.561065, 47.38367], [8.561048, 47.383706], [8.561026, 47.38374], [8.561, 47.383773], [8.56097, 47.383804], [8.560936, 47.383833], [8.560926, 47.383841], [8.560916, 47.38385], [8.560908, 47.383859], [8.560901, 47.383868], [8.560895, 47.383878], [8.56089, 47.383888], [8.560887, 47.383899], [8.560885, 47.383909], [8.560884, 47.38392], [8.560885, 47.383931], [8.560887, 47.383941], [8.560891, 47.383952], [8.560896, 47.383962], [8.560902, 47.383972], [8.560909, 47.383981], [8.560918, 47.38399], [8.561072, 47.384153]]], "type": "MultiLineString"}, "id": "2891", "properties": {}, "type": "Feature"}, {"bbox": [8.470923, 47.39091, 8.472334, 47.391993], "geometry": {"coordinates": [[[8.472334, 47.391993], [8.471187, 47.391139], [8.471039, 47.391049], [8.471024, 47.391041], [8.471011, 47.391033], [8.470999, 47.391023], [8.470988, 47.391013], [8.470978, 47.391002], [8.47097, 47.390991], [8.470963, 47.390979], [8.470951, 47.390956], [8.470938, 47.390933], [8.470923, 47.39091]]], "type": "MultiLineString"}, "id": "2893", "properties": {}, "type": "Feature"}, {"bbox": [8.517183, 47.363783, 8.519015, 47.368461], "geometry": {"coordinates": [[[8.517183, 47.368461], [8.517377, 47.368288], [8.518007, 47.367648], [8.518543, 47.366904], [8.518927, 47.366387], [8.518977, 47.366317], [8.518988, 47.366303], [8.518998, 47.366288], [8.519005, 47.366273], [8.51901, 47.366258], [8.519013, 47.366242], [8.519015, 47.366226], [8.519014, 47.36621], [8.519011, 47.366194], [8.519007, 47.366178], [8.519, 47.366163], [8.518991, 47.366148], [8.518642, 47.365612], [8.518618, 47.365575], [8.518598, 47.365536], [8.518584, 47.365495], [8.518575, 47.365455], [8.518572, 47.365414], [8.518582, 47.364703], [8.51858, 47.364687], [8.518577, 47.364671], [8.518571, 47.364655], [8.518563, 47.36464], [8.518553, 47.364625], [8.518541, 47.36461], [8.518528, 47.364597], [8.518513, 47.364584], [8.518497, 47.364572], [8.518479, 47.364561], [8.51846, 47.364551], [8.518439, 47.364542], [8.518418, 47.364535], [8.518224, 47.364464], [8.518059, 47.364405], [8.518025, 47.364395], [8.517775, 47.364307], [8.51775, 47.364298], [8.517725, 47.364288], [8.517703, 47.364276], [8.517681, 47.364263], [8.517662, 47.364248], [8.517645, 47.364233], [8.517629, 47.364217], [8.517616, 47.364199], [8.517605, 47.364181], [8.517597, 47.364163], [8.51759, 47.364144], [8.517587, 47.364124], [8.517585, 47.364096], [8.517595, 47.363802], [8.517562, 47.363783], [8.517491, 47.363803]]], "type": "MultiLineString"}, "id": "2894", "properties": {}, "type": "Feature"}, {"bbox": [8.48401, 47.408901, 8.488584, 47.412154], "geometry": {"coordinates": [[[8.488575, 47.408901], [8.488581, 47.408933], [8.488584, 47.408965], [8.488583, 47.408997], [8.488471, 47.409108], [8.488352, 47.409215], [8.488228, 47.409319], [8.48816, 47.4094], [8.488103, 47.409484], [8.488058, 47.409571], [8.488023, 47.40966], [8.488001, 47.409751], [8.487996, 47.40987], [8.488008, 47.409988], [8.488037, 47.410105], [8.488057, 47.410181], [8.488061, 47.410204], [8.488062, 47.410227], [8.488059, 47.41025], [8.488054, 47.410273], [8.488045, 47.410295], [8.488028, 47.410325], [8.488007, 47.410353], [8.487982, 47.41038], [8.487954, 47.410405], [8.487901, 47.410444], [8.487844, 47.41048], [8.487783, 47.410514], [8.48728, 47.410735], [8.487191, 47.410776], [8.487106, 47.41082], [8.487025, 47.410868], [8.486613, 47.411122], [8.486525, 47.411189], [8.486444, 47.41126], [8.48637, 47.411335], [8.486129, 47.411577], [8.486027, 47.411683], [8.486018, 47.411679], [8.486008, 47.411675], [8.485998, 47.411672], [8.485988, 47.411669], [8.485977, 47.411667], [8.485966, 47.411666], [8.485955, 47.411665], [8.485943, 47.411665], [8.485932, 47.411665], [8.485921, 47.411667], [8.48591, 47.411668], [8.485617, 47.411729], [8.485328, 47.411799], [8.485044, 47.411879], [8.484829, 47.411948], [8.484615, 47.412018], [8.484402, 47.412089], [8.484222, 47.412145], [8.484201, 47.412149], [8.484179, 47.412152], [8.484157, 47.412154], [8.484135, 47.412154], [8.484113, 47.412153], [8.484091, 47.412151], [8.48407, 47.412147], [8.484049, 47.412142], [8.484029, 47.412136], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "2895", "properties": {}, "type": "Feature"}, {"bbox": [8.53517, 47.419042, 8.538432, 47.419968], "geometry": {"coordinates": [[[8.538432, 47.419042], [8.53824, 47.419046], [8.537085, 47.419071], [8.536767, 47.41909], [8.53645, 47.419116], [8.536135, 47.419149], [8.53608, 47.419156], [8.536027, 47.419166], [8.535975, 47.419179], [8.535925, 47.419195], [8.535878, 47.419214], [8.535833, 47.419236], [8.535791, 47.41926], [8.535753, 47.419287], [8.535718, 47.419317], [8.535687, 47.419348], [8.53517, 47.419968]]], "type": "MultiLineString"}, "id": "2896", "properties": {}, "type": "Feature"}, {"bbox": [8.569325, 47.403913, 8.569516, 47.405751], "geometry": {"coordinates": [[[8.569488, 47.403913], [8.569505, 47.403983], [8.569514, 47.404054], [8.569516, 47.404125], [8.569331, 47.405457], [8.569325, 47.405506], [8.569326, 47.405556], [8.569332, 47.405606], [8.569344, 47.405655], [8.569363, 47.405704], [8.569386, 47.405751]]], "type": "MultiLineString"}, "id": "2898", "properties": {}, "type": "Feature"}, {"bbox": [8.529425, 47.344868, 8.529734, 47.34559], "geometry": {"coordinates": [[[8.529425, 47.34559], [8.529489, 47.345445], [8.529598, 47.34519], [8.529706, 47.344935], [8.529734, 47.344868]]], "type": "MultiLineString"}, "id": "2899", "properties": {}, "type": "Feature"}, {"bbox": [8.514064, 47.370351, 8.514383, 47.370585], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.514064, 47.370585]]], "type": "MultiLineString"}, "id": "2901", "properties": {}, "type": "Feature"}, {"bbox": [8.537817, 47.411803, 8.541432, 47.413178], "geometry": {"coordinates": [[[8.541432, 47.413178], [8.54065, 47.412876], [8.540145, 47.412679], [8.539868, 47.412559], [8.539483, 47.41242], [8.538561, 47.412071], [8.537817, 47.411803]]], "type": "MultiLineString"}, "id": "2902", "properties": {}, "type": "Feature"}, {"bbox": [8.543576, 47.367078, 8.544316, 47.368987], "geometry": {"coordinates": [[[8.543576, 47.368987], [8.54379, 47.36849], [8.543893, 47.368318], [8.544054, 47.367998], [8.544271, 47.367552], [8.54429, 47.367506], [8.544305, 47.367458], [8.544313, 47.36741], [8.544316, 47.367362], [8.544314, 47.367314], [8.544305, 47.367266], [8.544289, 47.36722], [8.54428, 47.367173], [8.544278, 47.367125], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "2903", "properties": {}, "type": "Feature"}, {"bbox": [8.56479, 47.379824, 8.571352, 47.381651], "geometry": {"coordinates": [[[8.56479, 47.379824], [8.565015, 47.379893], [8.565075, 47.379908], [8.565179, 47.379932], [8.565529, 47.380007], [8.565534, 47.380007], [8.565763, 47.380067], [8.566042, 47.380151], [8.566254, 47.380201], [8.566309, 47.380212], [8.566954, 47.380334], [8.5671, 47.380358], [8.567171, 47.380369], [8.567397, 47.380408], [8.567709, 47.380498], [8.568233, 47.380649], [8.568327, 47.380678], [8.568768, 47.380814], [8.569298, 47.380977], [8.569404, 47.381004], [8.569871, 47.381122], [8.570391, 47.381261], [8.570434, 47.381274], [8.570475, 47.381289], [8.570516, 47.381305], [8.571352, 47.381651]]], "type": "MultiLineString"}, "id": "2907", "properties": {}, "type": "Feature"}, {"bbox": [8.530676, 47.336616, 8.533204, 47.341869], "geometry": {"coordinates": [[[8.530676, 47.341869], [8.530743, 47.341838], [8.530805, 47.341803], [8.530863, 47.341764], [8.530916, 47.341722], [8.530963, 47.341677], [8.531005, 47.341629], [8.531116, 47.341503], [8.531213, 47.34137], [8.531294, 47.341233], [8.531358, 47.341092], [8.531406, 47.340948], [8.531421, 47.340892], [8.531456, 47.340767], [8.531515, 47.340549], [8.532046, 47.3386], [8.532061, 47.338521], [8.532094, 47.338395], [8.532123, 47.338301], [8.532268, 47.337788], [8.532292, 47.337704], [8.532324, 47.337622], [8.532364, 47.337541], [8.532439, 47.337402], [8.532529, 47.337267], [8.532632, 47.337136], [8.532724, 47.337036], [8.532824, 47.336939], [8.532933, 47.336846], [8.533204, 47.336616]]], "type": "MultiLineString"}, "id": "2908", "properties": {}, "type": "Feature"}, {"bbox": [8.541349, 47.411273, 8.541977, 47.411855], "geometry": {"coordinates": [[[8.541977, 47.411307], [8.541935, 47.411357], [8.541787, 47.411273], [8.541349, 47.41179], [8.541511, 47.411855]]], "type": "MultiLineString"}, "id": "2919", "properties": {}, "type": "Feature"}, {"bbox": [8.525772, 47.391773, 8.526073, 47.392102], "geometry": {"coordinates": [[[8.525772, 47.391773], [8.526073, 47.392102]]], "type": "MultiLineString"}, "id": "2925", "properties": {}, "type": "Feature"}, {"bbox": [8.497438, 47.358817, 8.504661, 47.362487], "geometry": {"coordinates": [[[8.504661, 47.362487], [8.504126, 47.362195], [8.503968, 47.362109], [8.503727, 47.361976], [8.503245, 47.361708], [8.503118, 47.361637], [8.502794, 47.361458], [8.502432, 47.361258], [8.502165, 47.36111], [8.500114, 47.359972], [8.499803, 47.359798], [8.499589, 47.359681], [8.499376, 47.359564], [8.499113, 47.359423], [8.498831, 47.3593], [8.498535, 47.359194], [8.498225, 47.359107], [8.497685, 47.358966], [8.497628, 47.358943], [8.497574, 47.358916], [8.497524, 47.358886], [8.497479, 47.358853], [8.497438, 47.358817]]], "type": "MultiLineString"}, "id": "2927", "properties": {}, "type": "Feature"}, {"bbox": [8.589204, 47.359976, 8.589557, 47.360991], "geometry": {"coordinates": [[[8.589557, 47.359976], [8.589514, 47.360059], [8.589499, 47.360088], [8.589255, 47.360884], [8.589204, 47.360991]]], "type": "MultiLineString"}, "id": "2928", "properties": {}, "type": "Feature"}, {"bbox": [8.547871, 47.401863, 8.549771, 47.402619], "geometry": {"coordinates": [[[8.547871, 47.402619], [8.548081, 47.40258], [8.54849, 47.402423], [8.548936, 47.402249], [8.549059, 47.4022], [8.549208, 47.402138], [8.54931, 47.402092], [8.549434, 47.402035], [8.549592, 47.401956], [8.549771, 47.401863]]], "type": "MultiLineString"}, "id": "2936", "properties": {}, "type": "Feature"}, {"bbox": [8.533963, 47.396089, 8.53616, 47.396907], "geometry": {"coordinates": [[[8.53616, 47.396089], [8.535645, 47.39635], [8.535017, 47.396671], [8.534667, 47.39685], [8.534643, 47.396862], [8.534617, 47.396874], [8.53459, 47.396883], [8.534562, 47.396891], [8.534533, 47.396898], [8.534503, 47.396903], [8.534472, 47.396906], [8.534442, 47.396907], [8.534411, 47.396907], [8.534381, 47.396905], [8.534351, 47.396901], [8.534126, 47.396866], [8.533963, 47.39678]]], "type": "MultiLineString"}, "id": "2938", "properties": {}, "type": "Feature"}, {"bbox": [8.532126, 47.398717, 8.532831, 47.398824], "geometry": {"coordinates": [[[8.532126, 47.398824], [8.53214, 47.398809], [8.532156, 47.398794], [8.532175, 47.39878], [8.532195, 47.398767], [8.532216, 47.398756], [8.532239, 47.398745], [8.532263, 47.398737], [8.532289, 47.39873], [8.532315, 47.398724], [8.532341, 47.39872], [8.532369, 47.398717], [8.532396, 47.398717], [8.532423, 47.398718], [8.532451, 47.39872], [8.532477, 47.398724], [8.532503, 47.39873], [8.532831, 47.398758]]], "type": "MultiLineString"}, "id": "2940", "properties": {}, "type": "Feature"}, {"bbox": [8.563637, 47.346451, 8.565151, 47.348365], "geometry": {"coordinates": [[[8.563637, 47.348365], [8.564436, 47.347488], [8.564519, 47.347391], [8.564595, 47.347292], [8.564663, 47.34719], [8.56494, 47.346709], [8.565, 47.346619], [8.565071, 47.346533], [8.565151, 47.346451]]], "type": "MultiLineString"}, "id": "2943", "properties": {}, "type": "Feature"}, {"bbox": [8.545415, 47.392413, 8.549096, 47.395966], "geometry": {"coordinates": [[[8.545415, 47.395966], [8.545643, 47.395916], [8.545814, 47.395873], [8.54587, 47.395852], [8.545924, 47.395827], [8.545975, 47.3958], [8.546022, 47.39577], [8.546065, 47.395737], [8.546105, 47.395702], [8.546139, 47.395665], [8.54617, 47.395626], [8.54631, 47.395399], [8.546364, 47.395312], [8.547184, 47.393984], [8.547193, 47.393969], [8.547203, 47.393953], [8.547212, 47.393938], [8.547382, 47.393701], [8.547584, 47.393478], [8.547818, 47.393268], [8.548081, 47.393076], [8.549096, 47.392413]]], "type": "MultiLineString"}, "id": "2944", "properties": {}, "type": "Feature"}, {"bbox": [8.583948, 47.355772, 8.585623, 47.356819], "geometry": {"coordinates": [[[8.583948, 47.356795], [8.584309, 47.356819], [8.584586, 47.356744], [8.58479, 47.356615], [8.584924, 47.356475], [8.585183, 47.356151], [8.58535, 47.355975], [8.585576, 47.355801], [8.585623, 47.355772]]], "type": "MultiLineString"}, "id": "2945", "properties": {}, "type": "Feature"}, {"bbox": [8.514343, 47.3337, 8.5183, 47.335046], "geometry": {"coordinates": [[[8.5183, 47.335046], [8.518275, 47.335024], [8.518248, 47.335005], [8.518218, 47.334986], [8.518186, 47.33497], [8.518152, 47.334956], [8.517692, 47.334793], [8.517457, 47.334726], [8.517218, 47.334667], [8.516974, 47.334618], [8.516848, 47.334595], [8.516726, 47.334565], [8.516607, 47.334529], [8.516494, 47.334485], [8.516387, 47.334435], [8.515896, 47.334178], [8.515753, 47.334107], [8.515602, 47.334043], [8.515445, 47.333988], [8.515282, 47.333941], [8.515164, 47.333906], [8.514775, 47.333793], [8.514343, 47.3337]]], "type": "MultiLineString"}, "id": "2946", "properties": {}, "type": "Feature"}, {"bbox": [8.548732, 47.410416, 8.549515, 47.412149], "geometry": {"coordinates": [[[8.548732, 47.410416], [8.548874, 47.410662], [8.549203, 47.411156], [8.549361, 47.411402], [8.549415, 47.411486], [8.549458, 47.411573], [8.549489, 47.411662], [8.549508, 47.411753], [8.549515, 47.411844], [8.549509, 47.411936], [8.549499, 47.412149]]], "type": "MultiLineString"}, "id": "2954", "properties": {}, "type": "Feature"}, {"bbox": [8.544106, 47.413914, 8.544261, 47.417233], "geometry": {"coordinates": [[[8.544211, 47.413914], [8.544225, 47.414036], [8.544254, 47.414416], [8.544261, 47.414597], [8.544259, 47.414673], [8.544257, 47.414782], [8.544226, 47.415276], [8.544221, 47.41536], [8.544216, 47.415444], [8.544165, 47.416274], [8.544159, 47.416386], [8.544106, 47.417233]]], "type": "MultiLineString"}, "id": "2955", "properties": {}, "type": "Feature"}, {"bbox": [8.542716, 47.399597, 8.547215, 47.407362], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.542716, 47.399758], [8.543059, 47.400195], [8.543721, 47.401079], [8.54408, 47.401519], [8.544372, 47.401893], [8.544934, 47.402589], [8.545223, 47.402978], [8.545289, 47.403089], [8.545356, 47.4032], [8.545422, 47.403311], [8.545845, 47.404014], [8.546099, 47.404464], [8.546572, 47.405245], [8.546669, 47.405418], [8.547154, 47.40623], [8.547169, 47.406282], [8.547158, 47.406331], [8.547178, 47.406367], [8.547194, 47.406403], [8.547206, 47.40644], [8.547212, 47.406478], [8.547215, 47.406516], [8.547212, 47.406554], [8.547209, 47.406574], [8.547205, 47.406593], [8.5472, 47.406613], [8.546961, 47.407362]]], "type": "MultiLineString"}, "id": "2959", "properties": {}, "type": "Feature"}, {"bbox": [8.563709, 47.405095, 8.565374, 47.405611], "geometry": {"coordinates": [[[8.563709, 47.405611], [8.564095, 47.405286], [8.564134, 47.405255], [8.564178, 47.405225], [8.564225, 47.405199], [8.564276, 47.405176], [8.564329, 47.405156], [8.564385, 47.405139], [8.564443, 47.405126], [8.564502, 47.405116], [8.564563, 47.405111], [8.564803, 47.405101], [8.564967, 47.405096], [8.56501, 47.405095], [8.565245, 47.4051], [8.565374, 47.405109]]], "type": "MultiLineString"}, "id": "2960", "properties": {}, "type": "Feature"}, {"bbox": [8.546314, 47.424988, 8.548212, 47.425197], "geometry": {"coordinates": [[[8.548212, 47.425], [8.548168, 47.424993], [8.548122, 47.424989], [8.548076, 47.424988], [8.54803, 47.424989], [8.547984, 47.424993], [8.547939, 47.425], [8.547896, 47.42501], [8.547793, 47.425036], [8.547688, 47.425057], [8.547581, 47.425072], [8.546789, 47.425159], [8.546584, 47.425183], [8.546542, 47.425184], [8.546466, 47.425191], [8.54639, 47.425195], [8.546314, 47.425197]]], "type": "MultiLineString"}, "id": "2964", "properties": {}, "type": "Feature"}, {"bbox": [8.538976, 47.422295, 8.540226, 47.42424], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.539019, 47.42241], [8.53913, 47.422751], [8.539197, 47.422901], [8.539276, 47.423049], [8.539368, 47.423193], [8.539785, 47.423754], [8.539975, 47.423985], [8.540055, 47.424072], [8.540138, 47.424157], [8.540226, 47.42424]]], "type": "MultiLineString"}, "id": "2965", "properties": {}, "type": "Feature"}, {"bbox": [8.52923, 47.389141, 8.532213, 47.392168], "geometry": {"coordinates": [[[8.532213, 47.389141], [8.532045, 47.389233], [8.531851, 47.389346], [8.531662, 47.389461], [8.531273, 47.389708], [8.531269, 47.389711], [8.531265, 47.389713], [8.530613, 47.390123], [8.530394, 47.390255], [8.529537, 47.390745], [8.529268, 47.390905], [8.529261, 47.39091], [8.529254, 47.390915], [8.529248, 47.39092], [8.529243, 47.390926], [8.529239, 47.390932], [8.529235, 47.390939], [8.529233, 47.390945], [8.529231, 47.390952], [8.52923, 47.390959], [8.52923, 47.390966], [8.529231, 47.390973], [8.529233, 47.390979], [8.529235, 47.390986], [8.529239, 47.390992], [8.529243, 47.390999], [8.529286, 47.391066], [8.529426, 47.39124], [8.529687, 47.391601], [8.529915, 47.391969], [8.529952, 47.392022], [8.529995, 47.392074], [8.530045, 47.392123], [8.530101, 47.392168]]], "type": "MultiLineString"}, "id": "2966", "properties": {}, "type": "Feature"}, {"bbox": [8.513978, 47.418542, 8.51522, 47.420235], "geometry": {"coordinates": [[[8.51522, 47.418542], [8.515142, 47.418688], [8.51504, 47.418872], [8.514876, 47.419151], [8.514689, 47.419424], [8.51448, 47.419689], [8.513978, 47.420235]]], "type": "MultiLineString"}, "id": "2967", "properties": {}, "type": "Feature"}, {"bbox": [8.515734, 47.329254, 8.516889, 47.330693], "geometry": {"coordinates": [[[8.515734, 47.330693], [8.515828, 47.330621], [8.515978, 47.330524], [8.516115, 47.330419], [8.516238, 47.330307], [8.516395, 47.330087], [8.516757, 47.32949], [8.516889, 47.329254]]], "type": "MultiLineString"}, "id": "2970", "properties": {}, "type": "Feature"}, {"bbox": [8.514353, 47.328396, 8.516889, 47.329522], "geometry": {"coordinates": [[[8.514353, 47.329522], [8.514547, 47.329394], [8.514572, 47.329371], [8.514595, 47.329347], [8.514615, 47.329321], [8.514631, 47.329295], [8.514644, 47.329267], [8.514653, 47.329239], [8.514658, 47.329211], [8.51466, 47.329182], [8.514658, 47.329153], [8.514653, 47.329125], [8.514555, 47.328591], [8.514556, 47.328575], [8.514558, 47.328559], [8.514562, 47.328543], [8.514569, 47.328527], [8.514577, 47.328512], [8.514587, 47.328497], [8.514599, 47.328483], [8.514612, 47.32847], [8.514628, 47.328458], [8.514645, 47.328446], [8.514663, 47.328436], [8.514682, 47.328426], [8.514703, 47.328418], [8.514724, 47.328411], [8.514746, 47.328406], [8.514769, 47.328401], [8.514793, 47.328398], [8.514816, 47.328396], [8.51484, 47.328396], [8.514864, 47.328397], [8.514887, 47.3284], [8.514911, 47.328404], [8.514933, 47.328409], [8.514955, 47.328415], [8.514976, 47.328423], [8.515458, 47.328593], [8.515939, 47.328754], [8.516756, 47.328982], [8.516644, 47.329172], [8.516889, 47.329254]]], "type": "MultiLineString"}, "id": "2971", "properties": {}, "type": "Feature"}, {"bbox": [8.53093, 47.33354, 8.54039, 47.343079], "geometry": {"coordinates": [[[8.53093, 47.342545], [8.531212, 47.342557], [8.531282, 47.34256], [8.531352, 47.342567], [8.53142, 47.342579], [8.531487, 47.342595], [8.531578, 47.342622], [8.531653, 47.34265], [8.531726, 47.34268], [8.531797, 47.342712], [8.53192, 47.342765], [8.532047, 47.342815], [8.532176, 47.342862], [8.532419, 47.342936], [8.532512, 47.342965], [8.532886, 47.343064], [8.532907, 47.343069], [8.532928, 47.343073], [8.53295, 47.343077], [8.532972, 47.343078], [8.532994, 47.343079], [8.533016, 47.343079], [8.533038, 47.343077], [8.53306, 47.343074], [8.533109, 47.343064], [8.533156, 47.343053], [8.533202, 47.343038], [8.533249, 47.34302], [8.533293, 47.343], [8.533334, 47.342977], [8.533373, 47.342952], [8.533409, 47.342925], [8.533441, 47.342896], [8.533469, 47.342866], [8.534157, 47.342001], [8.534181, 47.341971], [8.534268, 47.341854], [8.534504, 47.341517], [8.534567, 47.341421], [8.534622, 47.341324], [8.53467, 47.341224], [8.534739, 47.341072], [8.534747, 47.341052], [8.534756, 47.341033], [8.534764, 47.341014], [8.534776, 47.340982], [8.534789, 47.34095], [8.5348, 47.340918], [8.534883, 47.340721], [8.534926, 47.34063], [8.534974, 47.34054], [8.535026, 47.340451], [8.535246, 47.340096], [8.53576, 47.339261], [8.535886, 47.339057], [8.535925, 47.33899], [8.535955, 47.338921], [8.535976, 47.338851], [8.535989, 47.338779], [8.535994, 47.338707], [8.535989, 47.338636], [8.53596, 47.338378], [8.535995, 47.338263], [8.536243, 47.337892], [8.536249, 47.337883], [8.536324, 47.337774], [8.53649, 47.33755], [8.536828, 47.337078], [8.537014, 47.33683], [8.537388, 47.336331], [8.53786, 47.335705], [8.537913, 47.335635], [8.538168, 47.335298], [8.538333, 47.335111], [8.538511, 47.334928], [8.5387, 47.334752], [8.538966, 47.334554], [8.539006, 47.334525], [8.539951, 47.33383], [8.540019, 47.333781], [8.540088, 47.333733], [8.540158, 47.333686], [8.540234, 47.333636], [8.540312, 47.333588], [8.54039, 47.33354]]], "type": "MultiLineString"}, "id": "2972", "properties": {}, "type": "Feature"}, {"bbox": [8.511369, 47.329831, 8.514765, 47.330003], "geometry": {"coordinates": [[[8.514765, 47.329871], [8.514708, 47.329895], [8.514648, 47.329915], [8.514586, 47.329931], [8.514522, 47.329942], [8.513894, 47.329996], [8.513579, 47.330003], [8.513264, 47.329995], [8.51295, 47.329973], [8.51252, 47.329941], [8.51209, 47.329904], [8.511662, 47.329862], [8.511369, 47.329831]]], "type": "MultiLineString"}, "id": "2973", "properties": {}, "type": "Feature"}, {"bbox": [8.519571, 47.365673, 8.521554, 47.368781], "geometry": {"coordinates": [[[8.519571, 47.368781], [8.519631, 47.368692], [8.519685, 47.368602], [8.519733, 47.36851], [8.519726, 47.368438], [8.51972, 47.368367], [8.519715, 47.368295], [8.519721, 47.367764], [8.519868, 47.367322], [8.519893, 47.36727], [8.519922, 47.367218], [8.519954, 47.367167], [8.520016, 47.36708], [8.520087, 47.366996], [8.520166, 47.366915], [8.520235, 47.366852], [8.520309, 47.366792], [8.520389, 47.366735], [8.520449, 47.366685], [8.521014, 47.366227], [8.521242, 47.366042], [8.52146, 47.365864], [8.521483, 47.365839], [8.521503, 47.365813], [8.52152, 47.365787], [8.521533, 47.365759], [8.521544, 47.365731], [8.521551, 47.365702], [8.521554, 47.365673]]], "type": "MultiLineString"}, "id": "2974", "properties": {}, "type": "Feature"}, {"bbox": [8.510096, 47.421894, 8.511754, 47.424748], "geometry": {"coordinates": [[[8.510096, 47.421894], [8.510669, 47.422918], [8.51074, 47.423055], [8.510879, 47.423321], [8.511155, 47.4238], [8.511232, 47.423943], [8.51131, 47.424086], [8.511388, 47.42423], [8.511449, 47.424343], [8.511494, 47.424413], [8.511541, 47.424481], [8.511591, 47.424549], [8.511643, 47.424616], [8.511697, 47.424682], [8.511754, 47.424748]]], "type": "MultiLineString"}, "id": "2975", "properties": {}, "type": "Feature"}, {"bbox": [8.590637, 47.356894, 8.591622, 47.357302], "geometry": {"coordinates": [[[8.590637, 47.357287], [8.590669, 47.357294], [8.590701, 47.357298], [8.590734, 47.357301], [8.590767, 47.357302], [8.590801, 47.357301], [8.590833, 47.357298], [8.590866, 47.357293], [8.590897, 47.357286], [8.590928, 47.357277], [8.590957, 47.357266], [8.591622, 47.356894]]], "type": "MultiLineString"}, "id": "2976", "properties": {}, "type": "Feature"}, {"bbox": [8.574124, 47.382778, 8.575367, 47.383912], "geometry": {"coordinates": [[[8.575367, 47.382778], [8.575007, 47.383133], [8.574916, 47.383244], [8.574819, 47.383353], [8.574718, 47.383459], [8.57423, 47.383877], [8.574219, 47.383883], [8.574207, 47.38389], [8.574194, 47.383895], [8.574181, 47.3839], [8.574167, 47.383904], [8.574153, 47.383908], [8.574139, 47.38391], [8.574124, 47.383912]]], "type": "MultiLineString"}, "id": "2984", "properties": {}, "type": "Feature"}, {"bbox": [8.531386, 47.410511, 8.532956, 47.413301], "geometry": {"coordinates": [[[8.532533, 47.410511], [8.532753, 47.411063], [8.532781, 47.411104], [8.532815, 47.411143], [8.532853, 47.41118], [8.532874, 47.411197], [8.532892, 47.411215], [8.532909, 47.411233], [8.532923, 47.411253], [8.532935, 47.411273], [8.532944, 47.411294], [8.53295, 47.411316], [8.532954, 47.411337], [8.532956, 47.411359], [8.532954, 47.411381], [8.532949, 47.4114], [8.532942, 47.411419], [8.532932, 47.411438], [8.53292, 47.411456], [8.532906, 47.411473], [8.532889, 47.411489], [8.532871, 47.411504], [8.53285, 47.411517], [8.532828, 47.41153], [8.532804, 47.411541], [8.532778, 47.41155], [8.532752, 47.411558], [8.532203, 47.411708], [8.531903, 47.411794], [8.531729, 47.411836], [8.531687, 47.411848], [8.531647, 47.411862], [8.531609, 47.411878], [8.531573, 47.411897], [8.53154, 47.411918], [8.53151, 47.41194], [8.531483, 47.411965], [8.531459, 47.411991], [8.531436, 47.412025], [8.531417, 47.412061], [8.531402, 47.412097], [8.531392, 47.412134], [8.531386, 47.412171], [8.531452, 47.412811], [8.531531, 47.413301]]], "type": "MultiLineString"}, "id": "2989", "properties": {}, "type": "Feature"}, {"bbox": [8.530671, 47.407541, 8.532533, 47.410511], "geometry": {"coordinates": [[[8.530671, 47.407541], [8.530829, 47.407621], [8.530976, 47.407709], [8.531112, 47.407804], [8.531236, 47.407908], [8.531347, 47.408017], [8.531451, 47.408159], [8.531595, 47.408357], [8.531648, 47.408445], [8.53173, 47.408584], [8.531895, 47.408907], [8.531963, 47.409065], [8.532074, 47.409349], [8.53232, 47.409999], [8.532533, 47.410511]]], "type": "MultiLineString"}, "id": "2999", "properties": {}, "type": "Feature"}, {"bbox": [8.550419, 47.401372, 8.551447, 47.406596], "geometry": {"coordinates": [[[8.55052, 47.401372], [8.550522, 47.401451], [8.550469, 47.401737], [8.550419, 47.402198], [8.550421, 47.402541], [8.550471, 47.402884], [8.55055, 47.403315], [8.550595, 47.403568], [8.550642, 47.403888], [8.550687, 47.404161], [8.550705, 47.404271], [8.550749, 47.404607], [8.550782, 47.404758], [8.550804, 47.404892], [8.550841, 47.405178], [8.550896, 47.405452], [8.550958, 47.405589], [8.551447, 47.406596]]], "type": "MultiLineString"}, "id": "3001", "properties": {}, "type": "Feature"}, {"bbox": [8.546655, 47.415028, 8.548539, 47.415393], "geometry": {"coordinates": [[[8.546655, 47.415028], [8.548201, 47.415377], [8.54823, 47.415384], [8.54826, 47.415389], [8.548291, 47.415392], [8.548321, 47.415393], [8.548352, 47.415392], [8.548401, 47.415384], [8.548449, 47.415373], [8.548495, 47.415359], [8.548539, 47.415343]]], "type": "MultiLineString"}, "id": "3007", "properties": {}, "type": "Feature"}, {"bbox": [8.561489, 47.354323, 8.563287, 47.355088], "geometry": {"coordinates": [[[8.561489, 47.355088], [8.56263, 47.355084], [8.562647, 47.355084], [8.562664, 47.355083], [8.56268, 47.355081], [8.562697, 47.355079], [8.562713, 47.355075], [8.562728, 47.35507], [8.562743, 47.355065], [8.562757, 47.355059], [8.562771, 47.355052], [8.562783, 47.355044], [8.562794, 47.355035], [8.562805, 47.355026], [8.562814, 47.355016], [8.562821, 47.355006], [8.562828, 47.354996], [8.562833, 47.354985], [8.56286, 47.354942], [8.563146, 47.354495], [8.563267, 47.354345], [8.563287, 47.354323]]], "type": "MultiLineString"}, "id": "3008", "properties": {}, "type": "Feature"}, {"bbox": [8.492127, 47.375484, 8.49666, 47.377602], "geometry": {"coordinates": [[[8.49666, 47.375484], [8.495245, 47.376111], [8.494846, 47.376275], [8.493721, 47.376763], [8.493132, 47.377047], [8.492842, 47.377206], [8.492547, 47.377368], [8.492127, 47.377602]]], "type": "MultiLineString"}, "id": "3012", "properties": {}, "type": "Feature"}, {"bbox": [8.481702, 47.378155, 8.483221, 47.379242], "geometry": {"coordinates": [[[8.483221, 47.378155], [8.482971, 47.3782], [8.481702, 47.379242]]], "type": "MultiLineString"}, "id": "3013", "properties": {}, "type": "Feature"}, {"bbox": [8.534463, 47.372823, 8.536897, 47.375551], "geometry": {"coordinates": [[[8.534463, 47.372823], [8.534631, 47.373209], [8.534675, 47.373284], [8.534728, 47.373355], [8.534792, 47.373423], [8.534813, 47.373442], [8.534835, 47.373461], [8.534858, 47.37348], [8.535297, 47.373928], [8.535581, 47.374219], [8.535764, 47.374405], [8.535906, 47.37455], [8.536268, 47.374918], [8.53643, 47.375083], [8.536854, 47.37551], [8.536897, 47.375551]]], "type": "MultiLineString"}, "id": "3016", "properties": {}, "type": "Feature"}, {"bbox": [8.485303, 47.373017, 8.487241, 47.37482], "geometry": {"coordinates": [[[8.487241, 47.37482], [8.486528, 47.374365], [8.486439, 47.374289], [8.486362, 47.374207], [8.486295, 47.37412], [8.486241, 47.37403], [8.4862, 47.373936], [8.486158, 47.373838], [8.486105, 47.373743], [8.48604, 47.373651], [8.485963, 47.373563], [8.485876, 47.37348], [8.485329, 47.373084], [8.485303, 47.373017]]], "type": "MultiLineString"}, "id": "3017", "properties": {}, "type": "Feature"}, {"bbox": [8.501528, 47.399259, 8.503179, 47.399509], "geometry": {"coordinates": [[[8.501528, 47.399388], [8.50173, 47.39933], [8.501927, 47.399279], [8.501998, 47.399268], [8.50207, 47.399262], [8.502142, 47.399259], [8.502231, 47.39926], [8.50232, 47.399267], [8.502408, 47.39928], [8.502493, 47.399298], [8.502576, 47.399322], [8.502793, 47.399392], [8.503179, 47.399509]]], "type": "MultiLineString"}, "id": "3018", "properties": {}, "type": "Feature"}, {"bbox": [8.532676, 47.365249, 8.533842, 47.365568], "geometry": {"coordinates": [[[8.533842, 47.365568], [8.532676, 47.365249]]], "type": "MultiLineString"}, "id": "3025", "properties": {}, "type": "Feature"}, {"bbox": [8.591786, 47.397224, 8.594967, 47.399006], "geometry": {"coordinates": [[[8.591786, 47.399006], [8.592043, 47.39893], [8.592352, 47.398897], [8.593959, 47.398465], [8.594714, 47.398225], [8.594967, 47.398155], [8.594782, 47.397846], [8.594637, 47.397581], [8.594704, 47.397459], [8.594578, 47.397224]]], "type": "MultiLineString"}, "id": "3029", "properties": {}, "type": "Feature"}, {"bbox": [8.513853, 47.380167, 8.515375, 47.381602], "geometry": {"coordinates": [[[8.515375, 47.381602], [8.514702, 47.381515], [8.514697, 47.381514], [8.514692, 47.381513], [8.514687, 47.381512], [8.514683, 47.38151], [8.514679, 47.381508], [8.514675, 47.381506], [8.514671, 47.381504], [8.514668, 47.381501], [8.514665, 47.381499], [8.514662, 47.381496], [8.51466, 47.381493], [8.514658, 47.38149], [8.514657, 47.381486], [8.514656, 47.381483], [8.514655, 47.38148], [8.514655, 47.381476], [8.514655, 47.381473], [8.514656, 47.38147], [8.514664, 47.381428], [8.514665, 47.381422], [8.514666, 47.381416], [8.514665, 47.38141], [8.514664, 47.381404], [8.514662, 47.381398], [8.51466, 47.381392], [8.514656, 47.381386], [8.514652, 47.381381], [8.514647, 47.381376], [8.514642, 47.381371], [8.514636, 47.381366], [8.51463, 47.381362], [8.514622, 47.381358], [8.514615, 47.381355], [8.514607, 47.381352], [8.514599, 47.38135], [8.51459, 47.381348], [8.514015, 47.38127], [8.514008, 47.381269], [8.514001, 47.381268], [8.513994, 47.381266], [8.513988, 47.381263], [8.513982, 47.381261], [8.513976, 47.381258], [8.513971, 47.381254], [8.513968, 47.381251], [8.513965, 47.381248], [8.513963, 47.381245], [8.513962, 47.381241], [8.513961, 47.381238], [8.51396, 47.381234], [8.51396, 47.38123], [8.51396, 47.381227], [8.51396, 47.381223], [8.514109, 47.380656], [8.514112, 47.380628], [8.51411, 47.3806], [8.514106, 47.380572], [8.514097, 47.380544], [8.514085, 47.380517], [8.513904, 47.380244], [8.513853, 47.380167]]], "type": "MultiLineString"}, "id": "3030", "properties": {}, "type": "Feature"}, {"bbox": [8.566125, 47.408675, 8.567643, 47.40999], "geometry": {"coordinates": [[[8.567643, 47.40999], [8.567522, 47.409903], [8.566463, 47.408963], [8.566125, 47.408675]]], "type": "MultiLineString"}, "id": "3032", "properties": {}, "type": "Feature"}, {"bbox": [8.512581, 47.372557, 8.517529, 47.375871], "geometry": {"coordinates": [[[8.517529, 47.372557], [8.516928, 47.373003], [8.516676, 47.373169], [8.515768, 47.37377], [8.515152, 47.374176], [8.514951, 47.374307], [8.514634, 47.374517], [8.514547, 47.374576], [8.513936, 47.374979], [8.513488, 47.375274], [8.512681, 47.375805], [8.512581, 47.375871]]], "type": "MultiLineString"}, "id": "3033", "properties": {}, "type": "Feature"}, {"bbox": [8.508539, 47.383798, 8.509401, 47.384772], "geometry": {"coordinates": [[[8.509401, 47.384772], [8.509322, 47.384678], [8.509148, 47.384501], [8.508878, 47.384195], [8.508539, 47.383798]]], "type": "MultiLineString"}, "id": "3050", "properties": {}, "type": "Feature"}, {"bbox": [8.581377, 47.35571, 8.583533, 47.357651], "geometry": {"coordinates": [[[8.581377, 47.357643], [8.581532, 47.357651], [8.581691, 47.357651], [8.582082, 47.357634], [8.582084, 47.357634], [8.58216, 47.357625], [8.582235, 47.357612], [8.582308, 47.357594], [8.582378, 47.357572], [8.582445, 47.357545], [8.582508, 47.357514], [8.582567, 47.35748], [8.582621, 47.357442], [8.58267, 47.357401], [8.582713, 47.357358], [8.58275, 47.357311], [8.582781, 47.357263], [8.582805, 47.357213], [8.583076, 47.356545], [8.583156, 47.356342], [8.583259, 47.356144], [8.583386, 47.355952], [8.583463, 47.355837], [8.583533, 47.35571]]], "type": "MultiLineString"}, "id": "3054", "properties": {}, "type": "Feature"}, {"bbox": [8.500943, 47.416546, 8.506106, 47.418237], "geometry": {"coordinates": [[[8.506106, 47.418233], [8.506079, 47.418236], [8.506051, 47.418237], [8.506023, 47.418237], [8.505996, 47.418234], [8.505968, 47.418231], [8.505942, 47.418225], [8.505916, 47.418218], [8.505891, 47.41821], [8.505867, 47.4182], [8.505445, 47.417995], [8.505219, 47.417906], [8.504984, 47.417831], [8.50474, 47.417768], [8.504684, 47.417761], [8.504626, 47.417758], [8.504569, 47.417757], [8.504512, 47.41776], [8.504455, 47.417766], [8.504399, 47.417775], [8.504345, 47.417787], [8.504292, 47.417803], [8.504241, 47.417821], [8.50404, 47.417857], [8.503912, 47.417885], [8.503781, 47.417906], [8.503648, 47.417919], [8.503514, 47.417923], [8.503379, 47.417919], [8.503246, 47.417907], [8.503115, 47.417887], [8.502987, 47.417859], [8.502863, 47.417823], [8.502745, 47.41778], [8.502432, 47.417662], [8.501799, 47.417431], [8.50169, 47.417387], [8.501588, 47.417338], [8.501493, 47.417282], [8.501406, 47.417221], [8.501315, 47.417139], [8.501231, 47.417053], [8.50114, 47.416925], [8.500944, 47.416548], [8.500943, 47.416546]]], "type": "MultiLineString"}, "id": "3063", "properties": {}, "type": "Feature"}, {"bbox": [8.546274, 47.380378, 8.547321, 47.381884], "geometry": {"coordinates": [[[8.547321, 47.380378], [8.547111, 47.380399], [8.5471, 47.380403], [8.547089, 47.380407], [8.547079, 47.380412], [8.547069, 47.380418], [8.547061, 47.380424], [8.547053, 47.380431], [8.547046, 47.380438], [8.54704, 47.380445], [8.547034, 47.380453], [8.54703, 47.380461], [8.547029, 47.380463], [8.546274, 47.381884]]], "type": "MultiLineString"}, "id": "3065", "properties": {}, "type": "Feature"}, {"bbox": [8.566478, 47.367202, 8.568909, 47.3733], "geometry": {"coordinates": [[[8.566478, 47.3733], [8.567046, 47.372889], [8.567502, 47.372548], [8.567607, 47.372472], [8.567687, 47.372414], [8.567786, 47.372349], [8.567894, 47.37229], [8.568008, 47.372237], [8.568129, 47.372191], [8.568495, 47.372059], [8.568553, 47.372035], [8.568608, 47.372008], [8.568659, 47.371977], [8.568707, 47.371944], [8.56875, 47.371908], [8.568788, 47.37187], [8.568822, 47.37183], [8.56885, 47.371788], [8.568873, 47.371744], [8.568891, 47.3717], [8.568902, 47.371654], [8.568909, 47.371608], [8.568909, 47.371562], [8.568903, 47.371516], [8.568892, 47.37147], [8.568875, 47.371426], [8.568853, 47.371382], [8.568825, 47.37134], [8.568642, 47.371099], [8.56836, 47.370711], [8.568218, 47.370495], [8.568099, 47.370273], [8.568005, 47.370045], [8.567947, 47.36987], [8.5679, 47.369693], [8.567864, 47.369514], [8.567847, 47.369309], [8.567852, 47.369103], [8.567878, 47.368897], [8.567947, 47.368594], [8.568003, 47.368448], [8.568189, 47.368017], [8.568372, 47.367731], [8.568596, 47.367458], [8.56886, 47.367202]]], "type": "MultiLineString"}, "id": "3071", "properties": {}, "type": "Feature"}, {"bbox": [8.563452, 47.37621, 8.565657, 47.377813], "geometry": {"coordinates": [[[8.563452, 47.37621], [8.563771, 47.376276], [8.564226, 47.37641], [8.565363, 47.376741], [8.565391, 47.37675], [8.565418, 47.37676], [8.565443, 47.376771], [8.565466, 47.376784], [8.565488, 47.376798], [8.565508, 47.376814], [8.565525, 47.376831], [8.56554, 47.376849], [8.565553, 47.376867], [8.565564, 47.376886], [8.565572, 47.376906], [8.565577, 47.376926], [8.565657, 47.377408], [8.565656, 47.377433], [8.565653, 47.377458], [8.565646, 47.377482], [8.565636, 47.377506], [8.565623, 47.377529], [8.565607, 47.377552], [8.565589, 47.377573], [8.565567, 47.377594], [8.565543, 47.377612], [8.565517, 47.37763], [8.565489, 47.377646], [8.565458, 47.37766], [8.565071, 47.377813]]], "type": "MultiLineString"}, "id": "3072", "properties": {}, "type": "Feature"}, {"bbox": [8.596011, 47.357008, 8.596245, 47.357723], "geometry": {"coordinates": [[[8.596128, 47.357008], [8.596149, 47.357052], [8.596245, 47.357163], [8.596049, 47.357271], [8.596039, 47.35751], [8.596042, 47.357698], [8.596011, 47.357723]]], "type": "MultiLineString"}, "id": "3074", "properties": {}, "type": "Feature"}, {"bbox": [8.525439, 47.339175, 8.525802, 47.340915], "geometry": {"coordinates": [[[8.525439, 47.340915], [8.525511, 47.34072], [8.525636, 47.34043], [8.525703, 47.340249], [8.525747, 47.340065], [8.525766, 47.339879], [8.525802, 47.339175]]], "type": "MultiLineString"}, "id": "3077", "properties": {}, "type": "Feature"}, {"bbox": [8.514081, 47.366366, 8.516094, 47.367855], "geometry": {"coordinates": [[[8.516094, 47.367855], [8.515845, 47.367752], [8.515562, 47.367575], [8.515503, 47.367533], [8.515127, 47.367258], [8.514647, 47.366923], [8.514633, 47.366912], [8.51462, 47.366902], [8.514606, 47.366891], [8.514561, 47.366853], [8.514519, 47.366813], [8.514478, 47.366773], [8.514235, 47.366517], [8.514104, 47.366394], [8.514081, 47.366366]]], "type": "MultiLineString"}, "id": "3078", "properties": {}, "type": "Feature"}, {"bbox": [8.501528, 47.396246, 8.505013, 47.399388], "geometry": {"coordinates": [[[8.505013, 47.396246], [8.504778, 47.396461], [8.503979, 47.397057], [8.503793, 47.397266], [8.503387, 47.397771], [8.503063, 47.398268], [8.503003, 47.398358], [8.502981, 47.398378], [8.502956, 47.398398], [8.502929, 47.398416], [8.5029, 47.398432], [8.502869, 47.398447], [8.502836, 47.398459], [8.502801, 47.39847], [8.50242, 47.398599], [8.502388, 47.398611], [8.502358, 47.398624], [8.50233, 47.39864], [8.502305, 47.398657], [8.502282, 47.398676], [8.502116, 47.398807], [8.501845, 47.399069], [8.501701, 47.399217], [8.501528, 47.399388]]], "type": "MultiLineString"}, "id": "3090", "properties": {}, "type": "Feature"}, {"bbox": [8.538651, 47.40349, 8.547735, 47.407874], "geometry": {"coordinates": [[[8.547735, 47.40349], [8.54708, 47.403677], [8.545845, 47.404014], [8.545149, 47.404212], [8.544026, 47.404506], [8.542749, 47.404853], [8.542571, 47.404895], [8.542162, 47.404991], [8.541733, 47.405102], [8.541563, 47.405149], [8.541398, 47.405202], [8.541238, 47.405263], [8.541052, 47.40535], [8.540872, 47.405444], [8.540698, 47.405542], [8.540573, 47.405624], [8.540505, 47.405672], [8.540116, 47.405961], [8.539968, 47.40608], [8.539794, 47.406237], [8.539679, 47.406357], [8.539573, 47.406481], [8.539478, 47.406609], [8.539301, 47.406885], [8.539127, 47.40716], [8.538956, 47.407437], [8.538651, 47.407874]]], "type": "MultiLineString"}, "id": "3094", "properties": {}, "type": "Feature"}, {"bbox": [8.556374, 47.370009, 8.556653, 47.370261], "geometry": {"coordinates": [[[8.556374, 47.370261], [8.55641, 47.370249], [8.556445, 47.370234], [8.556477, 47.370218], [8.556508, 47.3702], [8.556536, 47.370181], [8.556562, 47.370159], [8.556585, 47.370137], [8.556605, 47.370113], [8.556622, 47.370088], [8.556635, 47.370062], [8.556646, 47.370036], [8.556653, 47.370009]]], "type": "MultiLineString"}, "id": "3097", "properties": {}, "type": "Feature"}, {"bbox": [8.50486, 47.423914, 8.506484, 47.424216], "geometry": {"coordinates": [[[8.506484, 47.424172], [8.506401, 47.424188], [8.50633, 47.424201], [8.506257, 47.424211], [8.506183, 47.424216], [8.506109, 47.424216], [8.506035, 47.424212], [8.505726, 47.424184], [8.505154, 47.424118], [8.50512, 47.424111], [8.505087, 47.424102], [8.505055, 47.42409], [8.505028, 47.424078], [8.505002, 47.424064], [8.504978, 47.424048], [8.504957, 47.424031], [8.50486, 47.423914]]], "type": "MultiLineString"}, "id": "3099", "properties": {}, "type": "Feature"}, {"bbox": [8.533863, 47.363409, 8.534381, 47.364385], "geometry": {"coordinates": [[[8.534381, 47.363409], [8.533863, 47.364385]]], "type": "MultiLineString"}, "id": "3105", "properties": {}, "type": "Feature"}, {"bbox": [8.563551, 47.407999, 8.565443, 47.410261], "geometry": {"coordinates": [[[8.565443, 47.407999], [8.565252, 47.408222], [8.565001, 47.408513], [8.5649, 47.408631], [8.564783, 47.408767], [8.564038, 47.409642], [8.563865, 47.40985], [8.563668, 47.410087], [8.563627, 47.410144], [8.563588, 47.410203], [8.563551, 47.410261]]], "type": "MultiLineString"}, "id": "3106", "properties": {}, "type": "Feature"}, {"bbox": [8.484237, 47.375386, 8.484549, 47.375863], "geometry": {"coordinates": [[[8.484237, 47.375863], [8.484254, 47.375833], [8.484357, 47.375667], [8.484408, 47.375584], [8.484483, 47.375481], [8.484549, 47.375386]]], "type": "MultiLineString"}, "id": "3107", "properties": {}, "type": "Feature"}, {"bbox": [8.519861, 47.410758, 8.522129, 47.411831], "geometry": {"coordinates": [[[8.522129, 47.411141], [8.521809, 47.411206], [8.521793, 47.411212], [8.521378, 47.411414], [8.521187, 47.411506], [8.520954, 47.411619], [8.520733, 47.411703], [8.520704, 47.411712], [8.52046, 47.411774], [8.520327, 47.411803], [8.520198, 47.411827], [8.520173, 47.41183], [8.520148, 47.411831], [8.520123, 47.41183], [8.520098, 47.411828], [8.520073, 47.411824], [8.520049, 47.411819], [8.520026, 47.411813], [8.520004, 47.411805], [8.519982, 47.411796], [8.519962, 47.411785], [8.519944, 47.411774], [8.519927, 47.411761], [8.519912, 47.411748], [8.519898, 47.411733], [8.519887, 47.411718], [8.519878, 47.411702], [8.51987, 47.411686], [8.519865, 47.411669], [8.519862, 47.411653], [8.519861, 47.411635], [8.519863, 47.411618], [8.519867, 47.411602], [8.519872, 47.411585], [8.51988, 47.411569], [8.519891, 47.411553], [8.519903, 47.411538], [8.519917, 47.411524], [8.519932, 47.411511], [8.51995, 47.411499], [8.519969, 47.411488], [8.520338, 47.411317], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "3110", "properties": {}, "type": "Feature"}, {"bbox": [8.544084, 47.407484, 8.5449, 47.408007], "geometry": {"coordinates": [[[8.544084, 47.407484], [8.544226, 47.407687], [8.54424, 47.4077], [8.544255, 47.407713], [8.544272, 47.407724], [8.54429, 47.407735], [8.544309, 47.407744], [8.54433, 47.407752], [8.544351, 47.407759], [8.544374, 47.407765], [8.544396, 47.407769], [8.54442, 47.407773], [8.544715, 47.407835], [8.5449, 47.408007]]], "type": "MultiLineString"}, "id": "3111", "properties": {}, "type": "Feature"}, {"bbox": [8.523584, 47.375009, 8.524787, 47.37675], "geometry": {"coordinates": [[[8.523584, 47.375009], [8.523922, 47.375525], [8.524029, 47.375688], [8.524393, 47.376198], [8.524787, 47.37675]]], "type": "MultiLineString"}, "id": "3114", "properties": {}, "type": "Feature"}, {"bbox": [8.513591, 47.374197, 8.516531, 47.376593], "geometry": {"coordinates": [[[8.516531, 47.374197], [8.515524, 47.375017], [8.514891, 47.375543], [8.514506, 47.375863], [8.513591, 47.376593]]], "type": "MultiLineString"}, "id": "3121", "properties": {}, "type": "Feature"}, {"bbox": [8.516735, 47.377039, 8.519767, 47.380407], "geometry": {"coordinates": [[[8.519767, 47.380407], [8.519538, 47.380194], [8.519311, 47.37998], [8.519087, 47.379764], [8.519043, 47.379722], [8.519, 47.379679], [8.518957, 47.379637], [8.518761, 47.379443], [8.518568, 47.379247], [8.518377, 47.379051], [8.518253, 47.378946], [8.518009, 47.378685], [8.517781, 47.378417], [8.517569, 47.378143], [8.516781, 47.377125], [8.516735, 47.377039]]], "type": "MultiLineString"}, "id": "3122", "properties": {}, "type": "Feature"}, {"bbox": [8.55231, 47.382622, 8.554045, 47.383644], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552391, 47.382692], [8.552592, 47.38283], [8.552951, 47.383074], [8.552986, 47.383096], [8.553024, 47.383115], [8.553064, 47.383132], [8.553107, 47.383147], [8.553151, 47.383159], [8.553196, 47.383168], [8.553242, 47.383175], [8.553306, 47.383196], [8.553366, 47.383221], [8.553424, 47.383249], [8.553478, 47.38328], [8.553528, 47.383313], [8.553573, 47.38335], [8.554045, 47.383644]]], "type": "MultiLineString"}, "id": "3124", "properties": {}, "type": "Feature"}, {"bbox": [8.480984, 47.376157, 8.48324, 47.37863], "geometry": {"coordinates": [[[8.48324, 47.376157], [8.483095, 47.376368], [8.482869, 47.376647], [8.482392, 47.377082], [8.482061, 47.377323], [8.481857, 47.377493], [8.481482, 47.377883], [8.481322, 47.378072], [8.480984, 47.37863]]], "type": "MultiLineString"}, "id": "3125", "properties": {}, "type": "Feature"}, {"bbox": [8.555284, 47.40523, 8.556596, 47.408161], "geometry": {"coordinates": [[[8.555284, 47.40523], [8.555308, 47.405303], [8.555707, 47.405823], [8.555733, 47.405864], [8.555809, 47.40599], [8.555978, 47.406287], [8.556057, 47.406427], [8.556207, 47.406692], [8.556329, 47.406907], [8.556376, 47.406992], [8.556425, 47.407076], [8.556497, 47.407208], [8.556537, 47.407289], [8.556563, 47.407354], [8.556581, 47.407419], [8.556592, 47.407486], [8.556596, 47.407552], [8.556579, 47.40806], [8.556578, 47.408161]]], "type": "MultiLineString"}, "id": "3133", "properties": {}, "type": "Feature"}, {"bbox": [8.494523, 47.422812, 8.494724, 47.423586], "geometry": {"coordinates": [[[8.494605, 47.422812], [8.494532, 47.423261], [8.494526, 47.423289], [8.494523, 47.423318], [8.494523, 47.423346], [8.494528, 47.423375], [8.494537, 47.423403], [8.494549, 47.42343], [8.494564, 47.423456], [8.494583, 47.423482], [8.494606, 47.423506], [8.494631, 47.423528], [8.49466, 47.423549], [8.494691, 47.423569], [8.494724, 47.423586]]], "type": "MultiLineString"}, "id": "3137", "properties": {}, "type": "Feature"}, {"bbox": [8.537108, 47.387225, 8.539375, 47.387998], "geometry": {"coordinates": [[[8.537108, 47.387225], [8.537605, 47.387398], [8.537703, 47.387432], [8.537932, 47.387512], [8.538034, 47.387546], [8.538497, 47.387705], [8.539212, 47.38795], [8.539375, 47.387998]]], "type": "MultiLineString"}, "id": "3138", "properties": {}, "type": "Feature"}, {"bbox": [8.569386, 47.405708, 8.569507, 47.405751], "geometry": {"coordinates": [[[8.569507, 47.405708], [8.569386, 47.405751]]], "type": "MultiLineString"}, "id": "3140", "properties": {}, "type": "Feature"}, {"bbox": [8.540988, 47.41177, 8.542205, 47.412231], "geometry": {"coordinates": [[[8.542205, 47.412231], [8.54144, 47.411941], [8.540988, 47.41177]]], "type": "MultiLineString"}, "id": "3155", "properties": {}, "type": "Feature"}, {"bbox": [8.537279, 47.389063, 8.53821, 47.390084], "geometry": {"coordinates": [[[8.53821, 47.389063], [8.538021, 47.389246], [8.537527, 47.389664], [8.537362, 47.389804], [8.537345, 47.38982], [8.537331, 47.389836], [8.537318, 47.389853], [8.537309, 47.389871], [8.537301, 47.389889], [8.537297, 47.389908], [8.537294, 47.389927], [8.537279, 47.390084]]], "type": "MultiLineString"}, "id": "3158", "properties": {}, "type": "Feature"}, {"bbox": [8.550243, 47.369022, 8.552288, 47.369868], "geometry": {"coordinates": [[[8.550243, 47.369022], [8.551844, 47.369694], [8.552, 47.369757], [8.552288, 47.369868]]], "type": "MultiLineString"}, "id": "3159", "properties": {}, "type": "Feature"}, {"bbox": [8.557958, 47.368868, 8.55913, 47.369399], "geometry": {"coordinates": [[[8.557958, 47.368868], [8.558541, 47.369134], [8.55913, 47.369399]]], "type": "MultiLineString"}, "id": "3160", "properties": {}, "type": "Feature"}, {"bbox": [8.527246, 47.371372, 8.52772, 47.371447], "geometry": {"coordinates": [[[8.52772, 47.371372], [8.527666, 47.371377], [8.527613, 47.371383], [8.52756, 47.37139], [8.527425, 47.37141], [8.527292, 47.371436], [8.527246, 47.371447]]], "type": "MultiLineString"}, "id": "3162", "properties": {}, "type": "Feature"}, {"bbox": [8.577974, 47.355647, 8.580016, 47.357811], "geometry": {"coordinates": [[[8.577974, 47.357811], [8.577983, 47.35768], [8.578006, 47.357616], [8.578029, 47.357561], [8.578076, 47.357471], [8.578119, 47.357403], [8.578141, 47.357369], [8.578173, 47.357327], [8.578233, 47.357253], [8.57831, 47.357167], [8.578365, 47.357111], [8.578411, 47.357068], [8.578521, 47.356969], [8.578631, 47.356881], [8.578661, 47.356858], [8.578796, 47.356757], [8.578909, 47.356684], [8.579016, 47.356607], [8.579116, 47.356525], [8.580016, 47.355647]]], "type": "MultiLineString"}, "id": "3166", "properties": {}, "type": "Feature"}, {"bbox": [8.547575, 47.386066, 8.548272, 47.386786], "geometry": {"coordinates": [[[8.548272, 47.386066], [8.548244, 47.386097], [8.548214, 47.386128], [8.548182, 47.386158], [8.54815, 47.38619], [8.547684, 47.386651], [8.547644, 47.386695], [8.547608, 47.38674], [8.547575, 47.386786]]], "type": "MultiLineString"}, "id": "3167", "properties": {}, "type": "Feature"}, {"bbox": [8.554901, 47.372023, 8.557535, 47.373398], "geometry": {"coordinates": [[[8.554901, 47.372023], [8.555928, 47.372556], [8.55603, 47.372608], [8.556924, 47.37307], [8.557535, 47.373398]]], "type": "MultiLineString"}, "id": "3168", "properties": {}, "type": "Feature"}, {"bbox": [8.493228, 47.407198, 8.494963, 47.407728], "geometry": {"coordinates": [[[8.494963, 47.407198], [8.494917, 47.407201], [8.494871, 47.407206], [8.494826, 47.407214], [8.494782, 47.407225], [8.494739, 47.407238], [8.494699, 47.407253], [8.494543, 47.407306], [8.494381, 47.407348], [8.494213, 47.407379], [8.494042, 47.407399], [8.493926, 47.40742], [8.493813, 47.407448], [8.493704, 47.407483], [8.4936, 47.407523], [8.493501, 47.40757], [8.493409, 47.407622], [8.493228, 47.407728]]], "type": "MultiLineString"}, "id": "3169", "properties": {}, "type": "Feature"}, {"bbox": [8.565755, 47.365082, 8.571188, 47.372135], "geometry": {"coordinates": [[[8.567195, 47.365082], [8.567102, 47.365224], [8.56654, 47.366108], [8.5665, 47.366171], [8.56646, 47.366234], [8.56604, 47.366894], [8.566003, 47.366951], [8.565971, 47.367009], [8.565946, 47.367069], [8.565929, 47.367123], [8.565917, 47.367178], [8.56591, 47.367233], [8.565898, 47.367368], [8.565809, 47.368257], [8.565806, 47.368282], [8.565758, 47.368764], [8.565755, 47.368839], [8.565762, 47.368915], [8.565778, 47.36899], [8.565803, 47.369064], [8.565838, 47.369136], [8.566252, 47.369848], [8.566341, 47.37], [8.566405, 47.370108], [8.566559, 47.37037], [8.567054, 47.371213], [8.567076, 47.371242], [8.567102, 47.371269], [8.567131, 47.371295], [8.567163, 47.371318], [8.567198, 47.37134], [8.567236, 47.371359], [8.567276, 47.371376], [8.567319, 47.371391], [8.567363, 47.371403], [8.567408, 47.371412], [8.567455, 47.371419], [8.567502, 47.371423], [8.567549, 47.371424], [8.567596, 47.371422], [8.567643, 47.371417], [8.567689, 47.37141], [8.567734, 47.371399], [8.567778, 47.371387], [8.568642, 47.371099], [8.568741, 47.371066], [8.569087, 47.370951], [8.569245, 47.370902], [8.569409, 47.370863], [8.569577, 47.370833], [8.569748, 47.370814], [8.569921, 47.370806], [8.57012, 47.370809], [8.570317, 47.370825], [8.570511, 47.370854], [8.57098, 47.370942], [8.571006, 47.37095], [8.571031, 47.370959], [8.571054, 47.370969], [8.571077, 47.370981], [8.571097, 47.370994], [8.571115, 47.371008], [8.571132, 47.371023], [8.571147, 47.371039], [8.571159, 47.371056], [8.57117, 47.371073], [8.571178, 47.371091], [8.571184, 47.37111], [8.571187, 47.371128], [8.571188, 47.371147], [8.571187, 47.371166], [8.571183, 47.371185], [8.571176, 47.371203], [8.571168, 47.371221], [8.571157, 47.371239], [8.571144, 47.371255], [8.571129, 47.371271], [8.571112, 47.371286], [8.571093, 47.3713], [8.571031, 47.371333], [8.570507, 47.371597], [8.570415, 47.371649], [8.570331, 47.371707], [8.570254, 47.371769], [8.570186, 47.371836], [8.570128, 47.371906], [8.570079, 47.371981], [8.570036, 47.372057], [8.57, 47.372135]]], "type": "MultiLineString"}, "id": "3175", "properties": {}, "type": "Feature"}, {"bbox": [8.529981, 47.334768, 8.533204, 47.336616], "geometry": {"coordinates": [[[8.533204, 47.336616], [8.533055, 47.336468], [8.53271, 47.336188], [8.532433, 47.335948], [8.532184, 47.33574], [8.531921, 47.335541], [8.531645, 47.335349], [8.531627, 47.335337], [8.531609, 47.335325], [8.531591, 47.335313], [8.531201, 47.335082], [8.53105, 47.334993], [8.530956, 47.334942], [8.530857, 47.334896], [8.530751, 47.334858], [8.530641, 47.334826], [8.530527, 47.3348], [8.53041, 47.334782], [8.530292, 47.334772], [8.530172, 47.334768], [8.530065, 47.334801], [8.529981, 47.334827]]], "type": "MultiLineString"}, "id": "3176", "properties": {}, "type": "Feature"}, {"bbox": [8.548194, 47.377376, 8.548385, 47.377806], "geometry": {"coordinates": [[[8.548385, 47.377376], [8.548194, 47.377806]]], "type": "MultiLineString"}, "id": "3177", "properties": {}, "type": "Feature"}, {"bbox": [8.556262, 47.374571, 8.557356, 47.375725], "geometry": {"coordinates": [[[8.557356, 47.374571], [8.557259, 47.3747], [8.557181, 47.374817], [8.556726, 47.375261], [8.556262, 47.375725]]], "type": "MultiLineString"}, "id": "3182", "properties": {}, "type": "Feature"}, {"bbox": [8.580054, 47.406276, 8.582905, 47.407941], "geometry": {"coordinates": [[[8.580054, 47.407941], [8.580639, 47.407784], [8.58078, 47.407741], [8.580901, 47.4077], [8.581006, 47.407662], [8.581045, 47.407646], [8.581222, 47.407571], [8.582182, 47.407139], [8.582279, 47.407094], [8.58237, 47.407043], [8.582453, 47.406987], [8.582528, 47.406925], [8.582595, 47.406859], [8.582652, 47.40679], [8.582797, 47.40654], [8.582905, 47.406276]]], "type": "MultiLineString"}, "id": "3186", "properties": {}, "type": "Feature"}, {"bbox": [8.48613, 47.382781, 8.487277, 47.384351], "geometry": {"coordinates": [[[8.487277, 47.384351], [8.487153, 47.383993], [8.48709, 47.383852], [8.487011, 47.383714], [8.486916, 47.383582], [8.486806, 47.383454], [8.48613, 47.382781]]], "type": "MultiLineString"}, "id": "3187", "properties": {}, "type": "Feature"}, {"bbox": [8.536111, 47.402976, 8.542162, 47.404991], "geometry": {"coordinates": [[[8.536111, 47.402998], [8.536504, 47.402976], [8.537144, 47.403021], [8.537443, 47.403073], [8.537734, 47.403145], [8.538013, 47.403235], [8.538702, 47.403464], [8.539774, 47.403821], [8.540163, 47.403969], [8.540532, 47.404139], [8.540877, 47.404331], [8.540981, 47.404403], [8.541395, 47.40464], [8.541684, 47.404806], [8.541902, 47.404917], [8.542162, 47.404991]]], "type": "MultiLineString"}, "id": "3194", "properties": {}, "type": "Feature"}, {"bbox": [8.512729, 47.413656, 8.518519, 47.415271], "geometry": {"coordinates": [[[8.518519, 47.413656], [8.518331, 47.41371], [8.517902, 47.413812], [8.517123, 47.414015], [8.515616, 47.414393], [8.515102, 47.414519], [8.514808, 47.41461], [8.513933, 47.414881], [8.512864, 47.415221], [8.512823, 47.415236], [8.512729, 47.415271]]], "type": "MultiLineString"}, "id": "3195", "properties": {}, "type": "Feature"}, {"bbox": [8.481296, 47.405857, 8.483634, 47.406609], "geometry": {"coordinates": [[[8.481296, 47.406609], [8.482033, 47.406351], [8.482059, 47.406341], [8.482339, 47.406219], [8.482371, 47.406205], [8.482403, 47.406193], [8.482437, 47.406182], [8.482626, 47.406141], [8.48278, 47.406113], [8.483094, 47.406071], [8.483131, 47.406065], [8.483167, 47.406058], [8.483203, 47.40605], [8.483381, 47.405988], [8.483497, 47.405932], [8.483563, 47.405893], [8.483634, 47.405857]]], "type": "MultiLineString"}, "id": "3196", "properties": {}, "type": "Feature"}, {"bbox": [8.489523, 47.403244, 8.48976, 47.403773], "geometry": {"coordinates": [[[8.489523, 47.403244], [8.489554, 47.403318], [8.48973, 47.40374], [8.489735, 47.403748], [8.489742, 47.403756], [8.489749, 47.403764], [8.489757, 47.403771], [8.48976, 47.403773]]], "type": "MultiLineString"}, "id": "3197", "properties": {}, "type": "Feature"}, {"bbox": [8.495632, 47.402367, 8.496491, 47.403887], "geometry": {"coordinates": [[[8.495632, 47.402367], [8.495675, 47.402423], [8.496062, 47.402926], [8.496176, 47.40309], [8.496238, 47.403179], [8.496284, 47.403266], [8.496321, 47.403356], [8.496348, 47.403448], [8.496393, 47.403636], [8.496425, 47.403716], [8.496491, 47.403887]]], "type": "MultiLineString"}, "id": "3198", "properties": {}, "type": "Feature"}, {"bbox": [8.491801, 47.40542, 8.495483, 47.406715], "geometry": {"coordinates": [[[8.495483, 47.40542], [8.495411, 47.405453], [8.495017, 47.405604], [8.494984, 47.405616], [8.494621, 47.405735], [8.494453, 47.405785], [8.492836, 47.40627], [8.492779, 47.406287], [8.492584, 47.406348], [8.492395, 47.406417], [8.492214, 47.406496], [8.491801, 47.406715]]], "type": "MultiLineString"}, "id": "3199", "properties": {}, "type": "Feature"}, {"bbox": [8.503484, 47.404757, 8.504205, 47.405792], "geometry": {"coordinates": [[[8.504205, 47.404757], [8.50409, 47.404847], [8.503649, 47.40527], [8.503583, 47.405339], [8.503528, 47.405413], [8.503484, 47.40549], [8.503564, 47.405539], [8.503621, 47.405577], [8.503682, 47.405612], [8.503747, 47.405643], [8.503815, 47.405671], [8.504077, 47.405755], [8.504105, 47.405777], [8.504122, 47.405792]]], "type": "MultiLineString"}, "id": "3200", "properties": {}, "type": "Feature"}, {"bbox": [8.53821, 47.38851, 8.538692, 47.389063], "geometry": {"coordinates": [[[8.538692, 47.38851], [8.538668, 47.388546], [8.538642, 47.38858], [8.53827, 47.389023], [8.53821, 47.389063]]], "type": "MultiLineString"}, "id": "3205", "properties": {}, "type": "Feature"}, {"bbox": [8.512758, 47.322732, 8.518347, 47.332973], "geometry": {"coordinates": [[[8.518347, 47.332973], [8.517879, 47.332652], [8.517305, 47.332137], [8.517244, 47.332089], [8.517177, 47.332045], [8.517104, 47.332005], [8.517028, 47.331969], [8.516946, 47.331938], [8.516708, 47.331849], [8.516661, 47.331831], [8.516616, 47.331809], [8.516575, 47.331784], [8.516538, 47.331758], [8.516504, 47.331729], [8.516465, 47.331698], [8.516405, 47.331646], [8.516352, 47.331592], [8.516306, 47.331534], [8.516267, 47.331474], [8.516178, 47.33131], [8.516082, 47.33115], [8.515974, 47.330994], [8.515856, 47.330841], [8.515734, 47.330693], [8.515629, 47.330582], [8.515351, 47.330292], [8.51532, 47.33026], [8.515287, 47.330229], [8.515253, 47.330199], [8.515184, 47.330144], [8.515111, 47.330091], [8.515033, 47.330042], [8.514858, 47.329933], [8.514827, 47.329913], [8.514796, 47.329892], [8.514765, 47.329871], [8.514661, 47.329796], [8.514564, 47.329717], [8.514473, 47.329634], [8.514353, 47.329522], [8.514233, 47.329409], [8.513859, 47.329042], [8.513761, 47.328959], [8.513654, 47.328882], [8.513537, 47.328811], [8.513411, 47.328748], [8.513278, 47.328692], [8.513138, 47.328645], [8.512993, 47.328605], [8.512843, 47.328575], [8.5128, 47.328451], [8.512772, 47.328325], [8.512758, 47.328198], [8.51276, 47.32807], [8.512776, 47.327943], [8.512786, 47.327839], [8.512796, 47.32774], [8.512817, 47.327642], [8.51285, 47.327545], [8.512896, 47.32745], [8.512952, 47.327359], [8.51302, 47.327271], [8.513099, 47.327187], [8.513188, 47.327108], [8.513286, 47.327034], [8.513392, 47.326966], [8.513486, 47.326915], [8.513584, 47.326869], [8.513686, 47.326828], [8.51377, 47.326797], [8.514065, 47.32669], [8.514361, 47.326584], [8.514657, 47.326479], [8.514741, 47.32644], [8.51482, 47.326396], [8.514894, 47.326347], [8.514961, 47.326294], [8.51502, 47.326238], [8.515073, 47.326178], [8.515116, 47.326119], [8.515151, 47.326059], [8.515179, 47.325996], [8.515849, 47.324626], [8.515882, 47.324545], [8.515905, 47.324461], [8.515916, 47.324377], [8.515916, 47.324292], [8.515905, 47.324208], [8.515863, 47.324105], [8.51581, 47.324004], [8.515745, 47.323907], [8.515669, 47.323813], [8.515582, 47.323724], [8.51554, 47.323685], [8.515453, 47.32364], [8.515369, 47.323592], [8.515288, 47.323542], [8.514983, 47.323366], [8.514693, 47.323179], [8.514418, 47.322981], [8.514406, 47.322732]]], "type": "MultiLineString"}, "id": "3211", "properties": {}, "type": "Feature"}, {"bbox": [8.53722, 47.366555, 8.538548, 47.36853], "geometry": {"coordinates": [[[8.538202, 47.366555], [8.538548, 47.366682], [8.537899, 47.367513], [8.537302, 47.368312], [8.53722, 47.36853]]], "type": "MultiLineString"}, "id": "3212", "properties": {}, "type": "Feature"}, {"bbox": [8.557309, 47.405839, 8.565258, 47.407865], "geometry": {"coordinates": [[[8.557309, 47.405939], [8.557437, 47.405945], [8.557632, 47.405985], [8.557831, 47.406013], [8.558033, 47.40603], [8.558236, 47.406036], [8.55844, 47.406029], [8.558641, 47.406012], [8.560482, 47.405847], [8.560705, 47.405839], [8.560754, 47.405839], [8.561035, 47.405844], [8.561314, 47.405864], [8.56159, 47.4059], [8.56186, 47.405951], [8.562123, 47.406018], [8.562377, 47.406099], [8.56262, 47.406194], [8.562851, 47.406302], [8.563068, 47.406423], [8.563298, 47.406572], [8.56464, 47.407445], [8.56507, 47.407733], [8.565258, 47.407865]]], "type": "MultiLineString"}, "id": "3222", "properties": {}, "type": "Feature"}, {"bbox": [8.516992, 47.373249, 8.518982, 47.37462], "geometry": {"coordinates": [[[8.518982, 47.373249], [8.518217, 47.37387], [8.517753, 47.374247], [8.517291, 47.37462], [8.516992, 47.374449]]], "type": "MultiLineString"}, "id": "3223", "properties": {}, "type": "Feature"}, {"bbox": [8.487534, 47.384957, 8.48844, 47.385103], "geometry": {"coordinates": [[[8.48844, 47.384971], [8.488429, 47.384967], [8.488418, 47.384963], [8.488406, 47.384961], [8.488394, 47.384959], [8.488381, 47.384957], [8.488369, 47.384957], [8.488356, 47.384957], [8.488344, 47.384958], [8.488331, 47.384959], [8.487534, 47.385103]]], "type": "MultiLineString"}, "id": "3226", "properties": {}, "type": "Feature"}, {"bbox": [8.469388, 47.391287, 8.469634, 47.391759], "geometry": {"coordinates": [[[8.469398, 47.391287], [8.469392, 47.391312], [8.469389, 47.391337], [8.469388, 47.391362], [8.469391, 47.391387], [8.469397, 47.391412], [8.469406, 47.391436], [8.469418, 47.39146], [8.46948, 47.391563], [8.469552, 47.391663], [8.469634, 47.391759]]], "type": "MultiLineString"}, "id": "3230", "properties": {}, "type": "Feature"}, {"bbox": [8.506613, 47.354949, 8.507362, 47.355294], "geometry": {"coordinates": [[[8.507362, 47.355294], [8.506613, 47.354949]]], "type": "MultiLineString"}, "id": "3231", "properties": {}, "type": "Feature"}, {"bbox": [8.508798, 47.397716, 8.517076, 47.398849], "geometry": {"coordinates": [[[8.517076, 47.398324], [8.5169, 47.398281], [8.516719, 47.398245], [8.516536, 47.398218], [8.516472, 47.39821], [8.516408, 47.398201], [8.516345, 47.398192], [8.516048, 47.398143], [8.515753, 47.398088], [8.515461, 47.398028], [8.515133, 47.397954], [8.514801, 47.39789], [8.514466, 47.397834], [8.514332, 47.397816], [8.514196, 47.397802], [8.51406, 47.397791], [8.513132, 47.397727], [8.51298, 47.39772], [8.512828, 47.397716], [8.512675, 47.397716], [8.512502, 47.397719], [8.512328, 47.397726], [8.512155, 47.397737], [8.511559, 47.397794], [8.511381, 47.39782], [8.511206, 47.397854], [8.511035, 47.397897], [8.510989, 47.397909], [8.510472, 47.398055], [8.509752, 47.398258], [8.509611, 47.398303], [8.509475, 47.398354], [8.509346, 47.398414], [8.509225, 47.39848], [8.509112, 47.398552], [8.509008, 47.398631], [8.508842, 47.398777], [8.50883, 47.39879], [8.50882, 47.398804], [8.508811, 47.398819], [8.508804, 47.398834], [8.508798, 47.398849]]], "type": "MultiLineString"}, "id": "3235", "properties": {}, "type": "Feature"}, {"bbox": [8.552167, 47.356163, 8.552767, 47.356965], "geometry": {"coordinates": [[[8.552167, 47.356965], [8.552191, 47.3569], [8.552767, 47.356163]]], "type": "MultiLineString"}, "id": "3238", "properties": {}, "type": "Feature"}, {"bbox": [8.564565, 47.367069, 8.565946, 47.369412], "geometry": {"coordinates": [[[8.564565, 47.369412], [8.564691, 47.369226], [8.564854, 47.368754], [8.565082, 47.368136], [8.565212, 47.367884], [8.565245, 47.367831], [8.565653, 47.367235], [8.565672, 47.367211], [8.565693, 47.367189], [8.565718, 47.367168], [8.565744, 47.367148], [8.565774, 47.367131], [8.565805, 47.367114], [8.565838, 47.3671], [8.565873, 47.367087], [8.565909, 47.367077], [8.565946, 47.367069]]], "type": "MultiLineString"}, "id": "3241", "properties": {}, "type": "Feature"}, {"bbox": [8.558973, 47.34712, 8.566898, 47.358158], "geometry": {"coordinates": [[[8.558973, 47.358158], [8.559156, 47.357936], [8.559748, 47.357193], [8.559838, 47.357085], [8.559934, 47.356979], [8.560038, 47.356876], [8.560505, 47.356432], [8.560674, 47.356272], [8.561008, 47.35596], [8.561031, 47.355935], [8.561053, 47.35591], [8.561075, 47.355885], [8.561138, 47.355807], [8.561196, 47.355726], [8.561248, 47.355644], [8.561272, 47.355598], [8.561431, 47.355296], [8.56146, 47.355228], [8.56148, 47.355159], [8.561489, 47.355088], [8.56149, 47.355024], [8.561483, 47.354961], [8.561468, 47.354898], [8.561472, 47.354611], [8.561506, 47.354325], [8.561569, 47.354041], [8.561583, 47.353992], [8.561599, 47.353943], [8.561616, 47.353894], [8.561639, 47.353833], [8.561664, 47.353773], [8.56169, 47.353713], [8.561733, 47.353623], [8.56178, 47.353534], [8.561831, 47.353446], [8.561988, 47.353156], [8.562181, 47.352877], [8.562407, 47.35261], [8.562846, 47.352129], [8.562938, 47.352024], [8.563023, 47.351916], [8.563101, 47.351805], [8.563196, 47.351651], [8.563242, 47.351576], [8.564075, 47.350205], [8.564137, 47.350108], [8.564213, 47.350016], [8.564301, 47.349928], [8.564779, 47.349532], [8.564813, 47.349504], [8.564845, 47.349475], [8.564875, 47.349446], [8.564911, 47.349406], [8.564944, 47.349366], [8.564974, 47.349324], [8.565116, 47.349132], [8.565628, 47.348526], [8.566898, 47.34712]]], "type": "MultiLineString"}, "id": "3248", "properties": {}, "type": "Feature"}, {"bbox": [8.544095, 47.40856, 8.546589, 47.409585], "geometry": {"coordinates": [[[8.546589, 47.40856], [8.545651, 47.408948], [8.545447, 47.409032], [8.545218, 47.409127], [8.544356, 47.409483], [8.544095, 47.409585]]], "type": "MultiLineString"}, "id": "3253", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.373072, 8.548136, 47.375364], "geometry": {"coordinates": [[[8.547431, 47.373079], [8.54745, 47.373076], [8.547469, 47.373074], [8.547489, 47.373072], [8.547509, 47.373073], [8.547529, 47.373074], [8.547549, 47.373076], [8.547568, 47.37308], [8.547587, 47.373084], [8.547678, 47.373122], [8.547765, 47.373166], [8.547846, 47.373214], [8.547921, 47.373266], [8.547989, 47.373322], [8.54805, 47.373382], [8.548072, 47.373406], [8.54809, 47.373431], [8.548106, 47.373458], [8.548118, 47.373484], [8.548127, 47.373512], [8.548133, 47.37354], [8.548136, 47.373568], [8.548134, 47.373596], [8.548119, 47.373685], [8.548094, 47.373773], [8.54806, 47.37386], [8.547973, 47.374072], [8.547927, 47.374177], [8.547864, 47.374306], [8.547845, 47.374343], [8.547568, 47.374866], [8.547358, 47.375256], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "3255", "properties": {}, "type": "Feature"}, {"bbox": [8.571058, 47.35427, 8.573631, 47.357191], "geometry": {"coordinates": [[[8.571058, 47.357191], [8.571235, 47.35703], [8.57196, 47.356295], [8.572051, 47.356198], [8.572658, 47.35543], [8.572819, 47.355213], [8.572958, 47.354989], [8.573076, 47.35476], [8.573105, 47.354705], [8.573141, 47.354652], [8.573184, 47.354601], [8.573232, 47.354553], [8.573287, 47.354508], [8.573631, 47.35427]]], "type": "MultiLineString"}, "id": "3257", "properties": {}, "type": "Feature"}, {"bbox": [8.557006, 47.363498, 8.558941, 47.366219], "geometry": {"coordinates": [[[8.557006, 47.366219], [8.558596, 47.364672], [8.558922, 47.363734], [8.558941, 47.363498]]], "type": "MultiLineString"}, "id": "3259", "properties": {}, "type": "Feature"}, {"bbox": [8.568327, 47.379294, 8.570475, 47.380678], "geometry": {"coordinates": [[[8.570475, 47.379294], [8.570228, 47.379345], [8.569989, 47.379409], [8.569758, 47.379487], [8.569538, 47.379578], [8.56933, 47.379681], [8.569136, 47.379796], [8.568956, 47.379922], [8.568794, 47.380057], [8.568648, 47.380202], [8.568522, 47.380354], [8.568414, 47.380513], [8.568327, 47.380678]]], "type": "MultiLineString"}, "id": "3260", "properties": {}, "type": "Feature"}, {"bbox": [8.531699, 47.399212, 8.532, 47.401156], "geometry": {"coordinates": [[[8.531896, 47.399212], [8.531887, 47.39925], [8.531882, 47.39929], [8.531882, 47.399329], [8.531886, 47.399368], [8.531965, 47.399802], [8.531994, 47.399995], [8.532, 47.400188], [8.531981, 47.40038], [8.531938, 47.400571], [8.531872, 47.400759], [8.531699, 47.401156]]], "type": "MultiLineString"}, "id": "3261", "properties": {}, "type": "Feature"}, {"bbox": [8.531896, 47.398824, 8.532126, 47.399212], "geometry": {"coordinates": [[[8.532126, 47.398824], [8.532105, 47.39885], [8.531945, 47.399107], [8.531925, 47.399141], [8.531909, 47.399176], [8.531896, 47.399212]]], "type": "MultiLineString"}, "id": "3262", "properties": {}, "type": "Feature"}, {"bbox": [8.495895, 47.402024, 8.49929, 47.402183], "geometry": {"coordinates": [[[8.49929, 47.402037], [8.499193, 47.40206], [8.499094, 47.402077], [8.498992, 47.402089], [8.49889, 47.402094], [8.498787, 47.402092], [8.498684, 47.402085], [8.497935, 47.402024], [8.497909, 47.402024], [8.497883, 47.402024], [8.497857, 47.402026], [8.497808, 47.402031], [8.497759, 47.402039], [8.497712, 47.40205], [8.497465, 47.402117], [8.497372, 47.40214], [8.49727, 47.402161], [8.497165, 47.402175], [8.497059, 47.402182], [8.496952, 47.402183], [8.496879, 47.402181], [8.496697, 47.402176], [8.495895, 47.402158]]], "type": "MultiLineString"}, "id": "3265", "properties": {}, "type": "Feature"}, {"bbox": [8.550622, 47.389116, 8.550926, 47.389681], "geometry": {"coordinates": [[[8.550926, 47.389681], [8.550837, 47.38965], [8.550713, 47.389605], [8.550668, 47.389548], [8.550635, 47.389479], [8.550622, 47.389395], [8.550627, 47.389116]]], "type": "MultiLineString"}, "id": "3279", "properties": {}, "type": "Feature"}, {"bbox": [8.519476, 47.393633, 8.52476, 47.395281], "geometry": {"coordinates": [[[8.52476, 47.393633], [8.524509, 47.393732], [8.524308, 47.393811], [8.52411, 47.393893], [8.523915, 47.39398], [8.523708, 47.39408], [8.523489, 47.394169], [8.52326, 47.394245], [8.523151, 47.394237], [8.523012, 47.394275], [8.522565, 47.394403], [8.52209, 47.394513], [8.52184, 47.394583], [8.521211, 47.394749], [8.521081, 47.39479], [8.520954, 47.394834], [8.52083, 47.394882], [8.520132, 47.395169], [8.520024, 47.395207], [8.519913, 47.395241], [8.5198, 47.395271], [8.519785, 47.395275], [8.51977, 47.395278], [8.519755, 47.39528], [8.519739, 47.395281], [8.519723, 47.395281], [8.519708, 47.39528], [8.519692, 47.395278], [8.519677, 47.395276], [8.519662, 47.395273], [8.519648, 47.395268], [8.519634, 47.395263], [8.519621, 47.395257], [8.519608, 47.395251], [8.519476, 47.395158]]], "type": "MultiLineString"}, "id": "3280", "properties": {}, "type": "Feature"}, {"bbox": [8.575745, 47.358301, 8.583851, 47.358764], "geometry": {"coordinates": [[[8.575745, 47.358407], [8.575899, 47.358497], [8.576071, 47.358663], [8.576113, 47.358705], [8.576178, 47.358764], [8.57639, 47.35876], [8.576488, 47.358688], [8.576654, 47.358538], [8.576782, 47.358469], [8.576815, 47.358455], [8.576915, 47.358428], [8.576936, 47.358424], [8.577575, 47.358335], [8.578074, 47.358458], [8.578353, 47.358496], [8.579313, 47.35852], [8.579351, 47.358521], [8.579649, 47.35846], [8.58014, 47.358361], [8.580254, 47.358339], [8.58037, 47.358324], [8.580487, 47.358315], [8.580722, 47.358314], [8.580865, 47.35831], [8.581062, 47.358304], [8.581391, 47.358301], [8.581654, 47.358313], [8.581938, 47.35836], [8.582097, 47.358371], [8.582542, 47.358321], [8.582581, 47.358318], [8.582685, 47.358315], [8.582916, 47.35832], [8.58368, 47.358343], [8.583738, 47.35835], [8.583795, 47.358361], [8.583851, 47.358376]]], "type": "MultiLineString"}, "id": "3282", "properties": {}, "type": "Feature"}, {"bbox": [8.528575, 47.360635, 8.529283, 47.363963], "geometry": {"coordinates": [[[8.528575, 47.363963], [8.528741, 47.363856], [8.528892, 47.36374], [8.529025, 47.363614], [8.529139, 47.36348], [8.529187, 47.363403], [8.529226, 47.363324], [8.529255, 47.363243], [8.529274, 47.363161], [8.529283, 47.363077], [8.529281, 47.362994], [8.529264, 47.362613], [8.529267, 47.362261], [8.529221, 47.360815], [8.529246, 47.360635]]], "type": "MultiLineString"}, "id": "3283", "properties": {}, "type": "Feature"}, {"bbox": [8.531401, 47.362111, 8.533857, 47.362489], "geometry": {"coordinates": [[[8.533857, 47.362489], [8.533746, 47.362473], [8.533634, 47.362455], [8.533524, 47.362435], [8.532522, 47.362282], [8.531401, 47.362111]]], "type": "MultiLineString"}, "id": "3284", "properties": {}, "type": "Feature"}, {"bbox": [8.560053, 47.348365, 8.563637, 47.352008], "geometry": {"coordinates": [[[8.560053, 47.352008], [8.560096, 47.351991], [8.560199, 47.351941], [8.560296, 47.351885], [8.560385, 47.351824], [8.56039, 47.35182], [8.560395, 47.351816], [8.560401, 47.351811], [8.56049, 47.351742], [8.560616, 47.351638], [8.560736, 47.351531], [8.56085, 47.35142], [8.56095, 47.351317], [8.561348, 47.350881], [8.562229, 47.349912], [8.563285, 47.348752], [8.563637, 47.348365]]], "type": "MultiLineString"}, "id": "3285", "properties": {}, "type": "Feature"}, {"bbox": [8.543305, 47.412504, 8.544284, 47.412638], "geometry": {"coordinates": [[[8.543305, 47.412516], [8.543647, 47.412638], [8.543855, 47.412504], [8.543976, 47.41255], [8.544284, 47.412512]]], "type": "MultiLineString"}, "id": "3287", "properties": {}, "type": "Feature"}, {"bbox": [8.526986, 47.412085, 8.52883, 47.413468], "geometry": {"coordinates": [[[8.52883, 47.412085], [8.528598, 47.412274], [8.528133, 47.412674], [8.52751, 47.413183], [8.527464, 47.413228], [8.527312, 47.413317], [8.527203, 47.41337], [8.527046, 47.413441], [8.526986, 47.413468]]], "type": "MultiLineString"}, "id": "3288", "properties": {}, "type": "Feature"}, {"bbox": [8.530265, 47.413467, 8.531102, 47.416081], "geometry": {"coordinates": [[[8.530265, 47.413467], [8.530375, 47.413579], [8.530377, 47.413587], [8.530396, 47.413628], [8.530414, 47.413678], [8.530691, 47.414639], [8.530771, 47.414936], [8.530823, 47.415096], [8.531057, 47.415907], [8.531102, 47.416081]]], "type": "MultiLineString"}, "id": "3294", "properties": {}, "type": "Feature"}, {"bbox": [8.566799, 47.376473, 8.567675, 47.377376], "geometry": {"coordinates": [[[8.566799, 47.377376], [8.56693, 47.377335], [8.567021, 47.377279], [8.567124, 47.377186], [8.567288, 47.37691], [8.567496, 47.376648], [8.567675, 47.376473]]], "type": "MultiLineString"}, "id": "3295", "properties": {}, "type": "Feature"}, {"bbox": [8.558641, 47.406012, 8.558766, 47.408196], "geometry": {"coordinates": [[[8.558641, 47.406012], [8.558716, 47.406314], [8.558764, 47.406529], [8.558766, 47.406565], [8.558764, 47.406635], [8.558736, 47.40739], [8.558711, 47.40814], [8.558714, 47.408196]]], "type": "MultiLineString"}, "id": "3296", "properties": {}, "type": "Feature"}, {"bbox": [8.524644, 47.393195, 8.528393, 47.393515], "geometry": {"coordinates": [[[8.524644, 47.393412], [8.524659, 47.393412], [8.524673, 47.393412], [8.524688, 47.39341], [8.524702, 47.393408], [8.524716, 47.393405], [8.524729, 47.393401], [8.524742, 47.393397], [8.524754, 47.393391], [8.524766, 47.393385], [8.524776, 47.393379], [8.524786, 47.393371], [8.524795, 47.393363], [8.524802, 47.393355], [8.524809, 47.393346], [8.524814, 47.393337], [8.524818, 47.393328], [8.524821, 47.393318], [8.52498, 47.393283], [8.525147, 47.393291], [8.525959, 47.393442], [8.526255, 47.393499], [8.526371, 47.39351], [8.526489, 47.393515], [8.526607, 47.393512], [8.526724, 47.393501], [8.526839, 47.393484], [8.527873, 47.393296], [8.528393, 47.393195]]], "type": "MultiLineString"}, "id": "3298", "properties": {}, "type": "Feature"}, {"bbox": [8.561131, 47.359219, 8.569762, 47.360521], "geometry": {"coordinates": [[[8.561131, 47.360521], [8.56147, 47.360468], [8.56241, 47.360319], [8.563904, 47.360079], [8.565457, 47.359843], [8.566819, 47.359625], [8.56765, 47.359493], [8.568533, 47.359352], [8.569327, 47.359225], [8.569342, 47.359222], [8.569357, 47.35922], [8.569372, 47.359219], [8.569387, 47.359219], [8.569402, 47.35922], [8.569417, 47.359221], [8.569432, 47.359223], [8.569447, 47.359227], [8.569461, 47.359231], [8.569474, 47.359235], [8.569487, 47.359241], [8.569499, 47.359247], [8.56951, 47.359254], [8.569622, 47.35933], [8.569762, 47.359347]]], "type": "MultiLineString"}, "id": "3299", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.378908, 8.525423, 47.379316], "geometry": {"coordinates": [[[8.524952, 47.378908], [8.525423, 47.379316]]], "type": "MultiLineString"}, "id": "3302", "properties": {}, "type": "Feature"}, {"bbox": [8.485172, 47.404599, 8.487157, 47.405221], "geometry": {"coordinates": [[[8.487157, 47.405221], [8.487133, 47.405189], [8.486751, 47.404684], [8.486738, 47.404671], [8.486723, 47.404658], [8.486706, 47.404647], [8.486688, 47.404636], [8.486668, 47.404626], [8.486648, 47.404618], [8.486626, 47.40461], [8.486604, 47.404604], [8.486573, 47.404601], [8.486541, 47.404599], [8.486509, 47.404599], [8.486477, 47.4046], [8.486446, 47.404604], [8.486415, 47.404609], [8.486384, 47.404616], [8.486355, 47.404624], [8.48554, 47.404909], [8.48534, 47.404951], [8.485172, 47.405005]]], "type": "MultiLineString"}, "id": "3305", "properties": {}, "type": "Feature"}, {"bbox": [8.484549, 47.375374, 8.488134, 47.375749], "geometry": {"coordinates": [[[8.488134, 47.375749], [8.487947, 47.375709], [8.487756, 47.37568], [8.487562, 47.375661], [8.487464, 47.37565], [8.487367, 47.375635], [8.48727, 47.375619], [8.487073, 47.37559], [8.4869, 47.375564], [8.486489, 47.375509], [8.485489, 47.375374], [8.484549, 47.375386]]], "type": "MultiLineString"}, "id": "3310", "properties": {}, "type": "Feature"}, {"bbox": [8.482626, 47.374269, 8.484549, 47.375386], "geometry": {"coordinates": [[[8.484549, 47.375386], [8.484549, 47.375386], [8.484433, 47.375332], [8.48432, 47.375274], [8.484211, 47.375213], [8.483351, 47.374692], [8.48309, 47.374536], [8.482787, 47.374355], [8.482765, 47.374344], [8.482626, 47.374269]]], "type": "MultiLineString"}, "id": "3311", "properties": {}, "type": "Feature"}, {"bbox": [8.561467, 47.368298, 8.56417, 47.370064], "geometry": {"coordinates": [[[8.561467, 47.368298], [8.561576, 47.36835], [8.562347, 47.368714], [8.562567, 47.368819], [8.562641, 47.368856], [8.562711, 47.368898], [8.562775, 47.368943], [8.562799, 47.368963], [8.562823, 47.368983], [8.562846, 47.369004], [8.563214, 47.369301], [8.56417, 47.370064]]], "type": "MultiLineString"}, "id": "3313", "properties": {}, "type": "Feature"}, {"bbox": [8.595896, 47.358292, 8.599132, 47.360152], "geometry": {"coordinates": [[[8.595896, 47.360152], [8.596022, 47.359942], [8.596046, 47.359903], [8.596088, 47.359822], [8.596218, 47.359562], [8.596324, 47.359365], [8.596353, 47.359317], [8.596439, 47.359187], [8.596548, 47.359031], [8.596895, 47.358533], [8.596918, 47.358504], [8.596944, 47.358477], [8.596975, 47.358451], [8.597008, 47.358428], [8.597044, 47.358406], [8.597101, 47.358379], [8.597161, 47.358355], [8.597223, 47.358335], [8.597288, 47.358318], [8.597355, 47.358306], [8.597423, 47.358297], [8.597492, 47.358292], [8.597562, 47.358292], [8.597631, 47.358295], [8.597699, 47.358303], [8.597766, 47.358314], [8.597832, 47.358329], [8.597895, 47.358348], [8.598493, 47.358576], [8.598907, 47.358735], [8.599068, 47.358793], [8.599107, 47.358799], [8.599132, 47.358803]]], "type": "MultiLineString"}, "id": "3315", "properties": {}, "type": "Feature"}, {"bbox": [8.535032, 47.41082, 8.538043, 47.41116], "geometry": {"coordinates": [[[8.538043, 47.410822], [8.53792, 47.410841], [8.537789, 47.410826], [8.537657, 47.41082], [8.537525, 47.410821], [8.537393, 47.410832], [8.537264, 47.41085], [8.537137, 47.410877], [8.536917, 47.41092], [8.536694, 47.410956], [8.536469, 47.410986], [8.53531, 47.411124], [8.535032, 47.41116]]], "type": "MultiLineString"}, "id": "3316", "properties": {}, "type": "Feature"}, {"bbox": [8.576429, 47.357004, 8.580022, 47.361372], "geometry": {"coordinates": [[[8.576637, 47.361372], [8.57655, 47.361259], [8.576508, 47.361197], [8.576474, 47.361133], [8.576449, 47.361066], [8.576433, 47.360999], [8.576429, 47.360918], [8.576435, 47.360838], [8.57645, 47.360759], [8.576474, 47.36068], [8.576508, 47.360603], [8.576668, 47.360235], [8.576702, 47.36019], [8.576901, 47.359735], [8.577027, 47.359441], [8.577263, 47.358994], [8.577283, 47.358951], [8.577296, 47.358906], [8.577304, 47.358861], [8.577307, 47.358816], [8.577303, 47.35877], [8.577307, 47.358745], [8.577314, 47.35872], [8.577324, 47.358696], [8.577337, 47.358672], [8.577352, 47.35865], [8.57737, 47.358628], [8.577546, 47.358456], [8.577558, 47.358433], [8.577566, 47.358409], [8.577572, 47.358385], [8.577575, 47.35836], [8.577575, 47.358335], [8.577566, 47.358302], [8.577561, 47.358268], [8.57756, 47.358235], [8.577564, 47.358201], [8.577573, 47.358168], [8.577586, 47.358135], [8.577603, 47.358103], [8.577624, 47.358073], [8.57765, 47.358043], [8.577679, 47.358016], [8.577712, 47.357991], [8.577974, 47.357811], [8.579875, 47.357018], [8.579904, 47.357012], [8.579933, 47.357008], [8.579963, 47.357005], [8.579993, 47.357004], [8.580022, 47.357005]]], "type": "MultiLineString"}, "id": "3322", "properties": {}, "type": "Feature"}, {"bbox": [8.584887, 47.358301, 8.592996, 47.360119], "geometry": {"coordinates": [[[8.585293, 47.358301], [8.585247, 47.35848], [8.585008, 47.358928], [8.584955, 47.359038], [8.584914, 47.35915], [8.584888, 47.359264], [8.584887, 47.359295], [8.584891, 47.359326], [8.584898, 47.359356], [8.58491, 47.359386], [8.584925, 47.359415], [8.584943, 47.359443], [8.584966, 47.35947], [8.584991, 47.359495], [8.58502, 47.359519], [8.585051, 47.359541], [8.585086, 47.359561], [8.585122, 47.359579], [8.585158, 47.359594], [8.585196, 47.359607], [8.585235, 47.359617], [8.585443, 47.35966], [8.585656, 47.359691], [8.585872, 47.359708], [8.586089, 47.359712], [8.586184, 47.359712], [8.58702, 47.359702], [8.587543, 47.359707], [8.588064, 47.359743], [8.588578, 47.359809], [8.589557, 47.359976], [8.58997, 47.360042], [8.590238, 47.360072], [8.590509, 47.36009], [8.590781, 47.360098], [8.591008, 47.360119], [8.591243, 47.360108], [8.591475, 47.360085], [8.591703, 47.360048], [8.591927, 47.359998], [8.592188, 47.359938], [8.592439, 47.35986], [8.592677, 47.359765], [8.592738, 47.359732], [8.592794, 47.359695], [8.592845, 47.359655], [8.592891, 47.359612], [8.592932, 47.359566], [8.592967, 47.359519], [8.592996, 47.35947]]], "type": "MultiLineString"}, "id": "3323", "properties": {}, "type": "Feature"}, {"bbox": [8.536288, 47.383754, 8.540585, 47.388242], "geometry": {"coordinates": [[[8.540585, 47.383804], [8.540559, 47.383791], [8.540532, 47.383781], [8.540503, 47.383771], [8.540473, 47.383764], [8.540442, 47.383759], [8.54041, 47.383755], [8.540378, 47.383754], [8.540347, 47.383754], [8.540315, 47.383756], [8.539772, 47.383835], [8.53976, 47.38384], [8.539747, 47.383845], [8.539735, 47.38385], [8.539702, 47.383866], [8.539671, 47.383884], [8.539642, 47.383905], [8.539616, 47.383926], [8.539593, 47.383949], [8.539574, 47.383974], [8.539171, 47.384432], [8.538735, 47.384943], [8.538714, 47.384969], [8.538507, 47.385226], [8.53826, 47.385516], [8.538227, 47.385552], [8.538208, 47.385572], [8.538085, 47.385748], [8.538051, 47.385796], [8.538018, 47.385843], [8.537984, 47.38589], [8.53778, 47.386196], [8.537649, 47.386406], [8.537108, 47.387225], [8.537022, 47.387299], [8.536296, 47.388235], [8.536288, 47.388242]]], "type": "MultiLineString"}, "id": "3326", "properties": {}, "type": "Feature"}, {"bbox": [8.541823, 47.376023, 8.541975, 47.376963], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541975, 47.376105], [8.541829, 47.376576], [8.541823, 47.376655], [8.541827, 47.376733], [8.541841, 47.376811], [8.541864, 47.376888], [8.541897, 47.376963]]], "type": "MultiLineString"}, "id": "3329", "properties": {}, "type": "Feature"}, {"bbox": [8.523935, 47.347565, 8.527868, 47.350028], "geometry": {"coordinates": [[[8.527868, 47.350028], [8.527695, 47.349906], [8.52766, 47.349833], [8.527621, 47.349752], [8.527573, 47.349673], [8.527515, 47.349598], [8.527447, 47.349526], [8.527371, 47.349458], [8.527286, 47.349395], [8.527194, 47.349337], [8.526599, 47.349021], [8.525812, 47.348582], [8.524922, 47.348099], [8.523935, 47.347565]]], "type": "MultiLineString"}, "id": "3332", "properties": {}, "type": "Feature"}, {"bbox": [8.54154, 47.387959, 8.544214, 47.395803], "geometry": {"coordinates": [[[8.544214, 47.387959], [8.544175, 47.388092], [8.543889, 47.389159], [8.54376, 47.389622], [8.5437, 47.389823], [8.543456, 47.390716], [8.543414, 47.390831], [8.543357, 47.390943], [8.543285, 47.391051], [8.543199, 47.391155], [8.5431, 47.391253], [8.542989, 47.391345], [8.542942, 47.391381], [8.542892, 47.391415], [8.54284, 47.391447], [8.542692, 47.391538], [8.542318, 47.391758], [8.542188, 47.391845], [8.542069, 47.391939], [8.54196, 47.392039], [8.541863, 47.392144], [8.541808, 47.392215], [8.541757, 47.392289], [8.541711, 47.392363], [8.541661, 47.392458], [8.541618, 47.392555], [8.541583, 47.392654], [8.541559, 47.392755], [8.541545, 47.392856], [8.54154, 47.392958], [8.541546, 47.39316], [8.541568, 47.393363], [8.541614, 47.393564], [8.541681, 47.393763], [8.54169, 47.393783], [8.541698, 47.393803], [8.541707, 47.393823], [8.541839, 47.394077], [8.542748, 47.395519], [8.542915, 47.395803]]], "type": "MultiLineString"}, "id": "3333", "properties": {}, "type": "Feature"}, {"bbox": [8.576229, 47.402251, 8.576936, 47.403067], "geometry": {"coordinates": [[[8.576541, 47.403067], [8.576229, 47.402772], [8.576277, 47.402736], [8.576323, 47.402698], [8.576365, 47.402658], [8.57661, 47.40246], [8.576711, 47.402385], [8.576819, 47.402315], [8.576936, 47.402251]]], "type": "MultiLineString"}, "id": "3338", "properties": {}, "type": "Feature"}, {"bbox": [8.539707, 47.402096, 8.541784, 47.403452], "geometry": {"coordinates": [[[8.539707, 47.402096], [8.540212, 47.402311], [8.540682, 47.40251], [8.541073, 47.402973], [8.541095, 47.403018], [8.541122, 47.403061], [8.541155, 47.403103], [8.541193, 47.403143], [8.541236, 47.40318], [8.541284, 47.403215], [8.541336, 47.403246], [8.541391, 47.403275], [8.541451, 47.4033], [8.541784, 47.403452]]], "type": "MultiLineString"}, "id": "3341", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.322981, 8.514418, 47.326966], "geometry": {"coordinates": [[[8.513392, 47.326966], [8.513303, 47.326828], [8.513276, 47.326776], [8.513257, 47.326721], [8.513245, 47.326666], [8.513241, 47.326611], [8.513245, 47.326555], [8.513256, 47.3265], [8.513275, 47.326446], [8.513352, 47.326178], [8.513403, 47.325907], [8.513428, 47.325634], [8.513435, 47.325357], [8.513435, 47.325307], [8.51343, 47.325257], [8.513422, 47.325208], [8.513408, 47.325155], [8.513398, 47.325109], [8.513393, 47.325062], [8.513392, 47.325014], [8.513423, 47.324807], [8.513481, 47.324601], [8.513564, 47.3244], [8.513673, 47.324205], [8.513868, 47.323895], [8.513953, 47.323732], [8.514015, 47.323564], [8.514052, 47.323393], [8.514061, 47.323328], [8.514077, 47.323263], [8.5141, 47.3232], [8.514131, 47.323138], [8.514418, 47.322981]]], "type": "MultiLineString"}, "id": "3348", "properties": {}, "type": "Feature"}, {"bbox": [8.515259, 47.379947, 8.515839, 47.382034], "geometry": {"coordinates": [[[8.515839, 47.379947], [8.515456, 47.381326], [8.515375, 47.381602], [8.515266, 47.381976], [8.515259, 47.382034]]], "type": "MultiLineString"}, "id": "3350", "properties": {}, "type": "Feature"}, {"bbox": [8.535733, 47.375946, 8.536129, 47.376071], "geometry": {"coordinates": [[[8.536129, 47.375946], [8.535994, 47.375984], [8.535862, 47.376026], [8.535733, 47.376071]]], "type": "MultiLineString"}, "id": "3353", "properties": {}, "type": "Feature"}, {"bbox": [8.490673, 47.400711, 8.494559, 47.401589], "geometry": {"coordinates": [[[8.494559, 47.400711], [8.494557, 47.400725], [8.494553, 47.40074], [8.494547, 47.400754], [8.494539, 47.400767], [8.494529, 47.40078], [8.494518, 47.400793], [8.494505, 47.400804], [8.494491, 47.400815], [8.494475, 47.400825], [8.494458, 47.400834], [8.49444, 47.400842], [8.494421, 47.400848], [8.494401, 47.400854], [8.4942, 47.400911], [8.494083, 47.400942], [8.494006, 47.400963], [8.493825, 47.401008], [8.493773, 47.401019], [8.493722, 47.401031], [8.493619, 47.401053], [8.493491, 47.401078], [8.493441, 47.401087], [8.493144, 47.401139], [8.492767, 47.401199], [8.492756, 47.401206], [8.492383, 47.401264], [8.492259, 47.401285], [8.492175, 47.401299], [8.491883, 47.401351], [8.490972, 47.401528], [8.490673, 47.401589]]], "type": "MultiLineString"}, "id": "3354", "properties": {}, "type": "Feature"}, {"bbox": [8.57761, 47.360199, 8.579409, 47.362394], "geometry": {"coordinates": [[[8.579409, 47.360199], [8.57922, 47.360574], [8.578993, 47.360938], [8.578731, 47.361292], [8.57858, 47.361476], [8.578422, 47.361648], [8.578353, 47.361719], [8.578192, 47.361879], [8.57787, 47.36219], [8.57761, 47.362394]]], "type": "MultiLineString"}, "id": "3356", "properties": {}, "type": "Feature"}, {"bbox": [8.579409, 47.354566, 8.584877, 47.360199], "geometry": {"coordinates": [[[8.579409, 47.360199], [8.579541, 47.360011], [8.579708, 47.359762], [8.580319, 47.359004], [8.580431, 47.358862], [8.58047, 47.358813], [8.58054, 47.358724], [8.580865, 47.35831], [8.581002, 47.358135], [8.581377, 47.357643], [8.581463, 47.35753], [8.581928, 47.35692], [8.582145, 47.356623], [8.582214, 47.356522], [8.582269, 47.356418], [8.58231, 47.35631], [8.582337, 47.3562], [8.582349, 47.356089], [8.582346, 47.355978], [8.582342, 47.355929], [8.58234, 47.355881], [8.582338, 47.355832], [8.582347, 47.355803], [8.582359, 47.355774], [8.582375, 47.355746], [8.582395, 47.355719], [8.582419, 47.355694], [8.582446, 47.35567], [8.582932, 47.355327], [8.583773, 47.35468], [8.583806, 47.354659], [8.583841, 47.354641], [8.583879, 47.354624], [8.583918, 47.35461], [8.58396, 47.354599], [8.584003, 47.35459], [8.584047, 47.354584], [8.584101, 47.354574], [8.584157, 47.354568], [8.584213, 47.354566], [8.584269, 47.354566], [8.584325, 47.35457], [8.584381, 47.354577], [8.584435, 47.354588], [8.584488, 47.354601], [8.584538, 47.354618], [8.584587, 47.354638], [8.584632, 47.35466], [8.584675, 47.354685], [8.584714, 47.354713], [8.58475, 47.354742], [8.584782, 47.354774], [8.584809, 47.354807], [8.584832, 47.354842], [8.584851, 47.354878], [8.584864, 47.354916], [8.584873, 47.354953], [8.584877, 47.354992], [8.584877, 47.35503], [8.584871, 47.355068], [8.58486, 47.355106], [8.584845, 47.355142], [8.584825, 47.355178], [8.5848, 47.355213], [8.584771, 47.355246], [8.584537, 47.355529], [8.584343, 47.355827], [8.584191, 47.356135], [8.584079, 47.356349], [8.583998, 47.35657], [8.583948, 47.356795], [8.583879, 47.357152], [8.583829, 47.35751], [8.583797, 47.357869], [8.583795, 47.357921], [8.583799, 47.357973], [8.58381, 47.358024], [8.583827, 47.358075], [8.583851, 47.358125], [8.583881, 47.358173], [8.583917, 47.358219], [8.583958, 47.358263], [8.584005, 47.358304], [8.584057, 47.358342]]], "type": "MultiLineString"}, "id": "3357", "properties": {}, "type": "Feature"}, {"bbox": [8.472465, 47.388734, 8.476016, 47.390069], "geometry": {"coordinates": [[[8.476016, 47.390069], [8.475991, 47.390054], [8.475964, 47.390041], [8.475936, 47.390029], [8.475906, 47.390018], [8.475875, 47.39001], [8.475844, 47.390003], [8.475811, 47.389998], [8.475778, 47.389995], [8.475633, 47.38998], [8.475489, 47.38996], [8.475346, 47.389935], [8.475263, 47.389915], [8.475179, 47.389896], [8.475096, 47.389876], [8.474965, 47.389845], [8.474835, 47.389813], [8.474705, 47.38978], [8.474663, 47.38977], [8.474621, 47.389759], [8.47458, 47.389748], [8.474395, 47.389708], [8.474207, 47.389673], [8.474017, 47.389645], [8.473365, 47.389567], [8.473283, 47.389553], [8.473203, 47.389534], [8.473126, 47.38951], [8.473052, 47.389482], [8.472983, 47.38945], [8.472927, 47.389421], [8.472875, 47.389389], [8.472827, 47.389355], [8.472784, 47.389318], [8.472746, 47.389278], [8.47271, 47.389232], [8.47268, 47.389184], [8.472656, 47.389135], [8.472465, 47.388734]]], "type": "MultiLineString"}, "id": "3365", "properties": {}, "type": "Feature"}, {"bbox": [8.533204, 47.333283, 8.535841, 47.336616], "geometry": {"coordinates": [[[8.533204, 47.336616], [8.53349, 47.336372], [8.53351, 47.336356], [8.533733, 47.336164], [8.533928, 47.335958], [8.534094, 47.335741], [8.534229, 47.335514], [8.534492, 47.335073], [8.534675, 47.334766], [8.535009, 47.334301], [8.535411, 47.33375], [8.535506, 47.333635], [8.53556, 47.333575], [8.535662, 47.333466], [8.535841, 47.333283]]], "type": "MultiLineString"}, "id": "3366", "properties": {}, "type": "Feature"}, {"bbox": [8.550451, 47.392533, 8.553292, 47.399202], "geometry": {"coordinates": [[[8.550451, 47.392533], [8.550721, 47.392844], [8.550934, 47.39313], [8.551084, 47.393342], [8.551196, 47.393575], [8.55129, 47.393763], [8.551396, 47.394022], [8.551688, 47.394798], [8.55174, 47.394938], [8.551801, 47.395067], [8.552153, 47.395802], [8.552501, 47.396511], [8.552542, 47.396637], [8.552562, 47.396701], [8.552602, 47.396859], [8.552621, 47.397005], [8.552639, 47.397406], [8.552663, 47.397537], [8.552793, 47.397995], [8.552897, 47.398273], [8.552961, 47.398427], [8.553184, 47.399009], [8.553287, 47.399194], [8.553292, 47.399202]]], "type": "MultiLineString"}, "id": "3368", "properties": {}, "type": "Feature"}, {"bbox": [8.497362, 47.403194, 8.502542, 47.405031], "geometry": {"coordinates": [[[8.502542, 47.403194], [8.502242, 47.403394], [8.501937, 47.403591], [8.501627, 47.403784], [8.501313, 47.403941], [8.500983, 47.404082], [8.50064, 47.404207], [8.50028, 47.404316], [8.499915, 47.404417], [8.499544, 47.404508], [8.499123, 47.404609], [8.498693, 47.40469], [8.498256, 47.40475], [8.497474, 47.404844], [8.497476, 47.404887], [8.497417, 47.405019], [8.497362, 47.405031]]], "type": "MultiLineString"}, "id": "3373", "properties": {}, "type": "Feature"}, {"bbox": [8.554914, 47.378707, 8.556708, 47.38064], "geometry": {"coordinates": [[[8.554914, 47.378707], [8.555046, 47.378845], [8.555208, 47.379044], [8.555396, 47.379291], [8.555414, 47.379312], [8.555524, 47.379431], [8.555619, 47.379586], [8.555733, 47.379735], [8.555865, 47.379877], [8.556014, 47.380011], [8.556223, 47.380208], [8.556708, 47.38064]]], "type": "MultiLineString"}, "id": "3374", "properties": {}, "type": "Feature"}, {"bbox": [8.549616, 47.358951, 8.552938, 47.359501], "geometry": {"coordinates": [[[8.549616, 47.358951], [8.549825, 47.358984], [8.551204, 47.359122], [8.551396, 47.359146], [8.551613, 47.359206], [8.552938, 47.359501]]], "type": "MultiLineString"}, "id": "3376", "properties": {}, "type": "Feature"}, {"bbox": [8.563285, 47.348752, 8.568616, 47.350594], "geometry": {"coordinates": [[[8.563285, 47.348752], [8.563469, 47.348825], [8.564215, 47.349169], [8.564773, 47.349419], [8.564875, 47.349446], [8.564996, 47.349474], [8.565871, 47.349763], [8.567608, 47.350337], [8.567893, 47.350422], [8.568185, 47.350497], [8.568482, 47.350561], [8.568526, 47.350572], [8.568571, 47.350583], [8.568616, 47.350594]]], "type": "MultiLineString"}, "id": "3377", "properties": {}, "type": "Feature"}, {"bbox": [8.557098, 47.353872, 8.561616, 47.358737], "geometry": {"coordinates": [[[8.557098, 47.358737], [8.557783, 47.357836], [8.55781, 47.357801], [8.558179, 47.357319], [8.558668, 47.356681], [8.558879, 47.356407], [8.559287, 47.35587], [8.559673, 47.355363], [8.559815, 47.355257], [8.560471, 47.354627], [8.560724, 47.35437], [8.56092, 47.354185], [8.561123, 47.353993], [8.561183, 47.353939], [8.561195, 47.353928], [8.561208, 47.353919], [8.561223, 47.35391], [8.561238, 47.353901], [8.561254, 47.353894], [8.561272, 47.353888], [8.56129, 47.353883], [8.561308, 47.353878], [8.561327, 47.353875], [8.561347, 47.353873], [8.561366, 47.353872], [8.561386, 47.353872], [8.561405, 47.353874], [8.561616, 47.353894]]], "type": "MultiLineString"}, "id": "3378", "properties": {}, "type": "Feature"}, {"bbox": [8.498618, 47.3776, 8.503267, 47.381145], "geometry": {"coordinates": [[[8.503267, 47.381145], [8.503168, 47.381078], [8.502115, 47.380292], [8.50194, 47.380165], [8.501869, 47.380116], [8.500437, 47.379129], [8.500194, 47.378957], [8.499954, 47.378784], [8.499716, 47.378609], [8.499474, 47.378415], [8.499241, 47.378216], [8.499019, 47.378011], [8.498764, 47.37777], [8.498618, 47.3776]]], "type": "MultiLineString"}, "id": "3380", "properties": {}, "type": "Feature"}, {"bbox": [8.525223, 47.379423, 8.525845, 47.379957], "geometry": {"coordinates": [[[8.525223, 47.379423], [8.525521, 47.379674], [8.525845, 47.379957]]], "type": "MultiLineString"}, "id": "3382", "properties": {}, "type": "Feature"}, {"bbox": [8.514263, 47.335046, 8.519244, 47.33633], "geometry": {"coordinates": [[[8.519244, 47.335116], [8.519141, 47.335096], [8.519024, 47.335081], [8.518655, 47.335062], [8.5183, 47.335046], [8.518227, 47.335082], [8.51815, 47.335114], [8.51807, 47.335142], [8.517986, 47.335165], [8.517724, 47.335252], [8.517462, 47.33534], [8.517202, 47.33543], [8.517062, 47.33548], [8.516916, 47.33552], [8.516766, 47.335551], [8.516612, 47.335573], [8.516436, 47.335597], [8.516262, 47.335627], [8.516091, 47.335665], [8.515783, 47.335745], [8.515487, 47.335843], [8.515203, 47.335957], [8.514888, 47.336079], [8.514575, 47.336204], [8.514263, 47.33633]]], "type": "MultiLineString"}, "id": "3383", "properties": {}, "type": "Feature"}, {"bbox": [8.53271, 47.331143, 8.53634, 47.336188], "geometry": {"coordinates": [[[8.53271, 47.336188], [8.532834, 47.335799], [8.532966, 47.335516], [8.532975, 47.335502], [8.533061, 47.335372], [8.53311, 47.335309], [8.533561, 47.334729], [8.533624, 47.334637], [8.533998, 47.334173], [8.534126, 47.334015], [8.534154, 47.333976], [8.534317, 47.333755], [8.534374, 47.333677], [8.534522, 47.33345], [8.534652, 47.333208], [8.534671, 47.333174], [8.534693, 47.333141], [8.534781, 47.333036], [8.534855, 47.332824], [8.535067, 47.33235], [8.535143, 47.332225], [8.535233, 47.332105], [8.535339, 47.33199], [8.535494, 47.33187], [8.535659, 47.331755], [8.535832, 47.331647], [8.53596, 47.33156], [8.536076, 47.331465], [8.536179, 47.331363], [8.536267, 47.331255], [8.53634, 47.331143]]], "type": "MultiLineString"}, "id": "3385", "properties": {}, "type": "Feature"}, {"bbox": [8.525415, 47.391373, 8.528509, 47.393442], "geometry": {"coordinates": [[[8.528509, 47.391373], [8.527351, 47.391713], [8.52677, 47.391896], [8.526591, 47.391948], [8.526073, 47.392102], [8.525515, 47.392367], [8.525495, 47.392382], [8.525477, 47.392398], [8.525461, 47.392415], [8.525447, 47.392433], [8.525436, 47.392452], [8.525427, 47.392471], [8.52542, 47.392491], [8.525416, 47.392511], [8.525415, 47.392532], [8.525417, 47.392552], [8.525421, 47.392572], [8.525428, 47.392592], [8.525437, 47.392611], [8.525449, 47.39263], [8.525463, 47.392647], [8.525955, 47.39326], [8.525959, 47.393442]]], "type": "MultiLineString"}, "id": "3386", "properties": {}, "type": "Feature"}, {"bbox": [8.523147, 47.378304, 8.524077, 47.378677], "geometry": {"coordinates": [[[8.524077, 47.378304], [8.523147, 47.378677]]], "type": "MultiLineString"}, "id": "3387", "properties": {}, "type": "Feature"}, {"bbox": [8.465219, 47.392605, 8.486794, 47.398289], "geometry": {"coordinates": [[[8.486794, 47.392605], [8.485545, 47.392897], [8.485057, 47.392974], [8.483475, 47.393377], [8.481306, 47.39393], [8.480058, 47.394258], [8.476706, 47.395175], [8.475806, 47.395417], [8.471615, 47.396548], [8.471155, 47.396656], [8.468846, 47.397278], [8.468858, 47.397298], [8.468282, 47.397454], [8.468194, 47.397484], [8.468137, 47.397512], [8.468064, 47.397537], [8.467989, 47.39756], [8.467912, 47.397581], [8.467663, 47.39765], [8.466737, 47.397899], [8.465591, 47.398191], [8.465219, 47.398289]]], "type": "MultiLineString"}, "id": "3397", "properties": {}, "type": "Feature"}, {"bbox": [8.531765, 47.392996, 8.532558, 47.394232], "geometry": {"coordinates": [[[8.531765, 47.392996], [8.531879, 47.393152], [8.532192, 47.393645], [8.532276, 47.393786], [8.532524, 47.394178], [8.532558, 47.394232]]], "type": "MultiLineString"}, "id": "3399", "properties": {}, "type": "Feature"}, {"bbox": [8.488042, 47.40273, 8.489812, 47.403194], "geometry": {"coordinates": [[[8.489812, 47.403194], [8.489777, 47.403111], [8.489637, 47.402755], [8.489636, 47.402752], [8.489634, 47.402749], [8.489632, 47.402747], [8.489629, 47.402744], [8.489627, 47.402742], [8.489624, 47.40274], [8.48962, 47.402738], [8.489617, 47.402736], [8.489613, 47.402734], [8.489609, 47.402733], [8.489605, 47.402732], [8.489601, 47.402731], [8.489597, 47.402731], [8.489593, 47.40273], [8.489588, 47.40273], [8.489584, 47.402731], [8.48958, 47.402731], [8.489575, 47.402732], [8.488145, 47.40299], [8.488042, 47.403012]]], "type": "MultiLineString"}, "id": "3401", "properties": {}, "type": "Feature"}, {"bbox": [8.53616, 47.395744, 8.536738, 47.396089], "geometry": {"coordinates": [[[8.536738, 47.395744], [8.53667, 47.395823], [8.536569, 47.395881], [8.53616, 47.396089]]], "type": "MultiLineString"}, "id": "3403", "properties": {}, "type": "Feature"}, {"bbox": [8.576874, 47.398448, 8.591922, 47.403862], "geometry": {"coordinates": [[[8.576874, 47.403862], [8.577018, 47.403843], [8.578494, 47.403617], [8.578998, 47.403487], [8.581773, 47.402682], [8.582177, 47.402572], [8.582586, 47.402472], [8.583, 47.402381], [8.583396, 47.402303], [8.583792, 47.402227], [8.58419, 47.402155], [8.584581, 47.402081], [8.584774, 47.402046], [8.584956, 47.402012], [8.585138, 47.401975], [8.585319, 47.401937], [8.58545, 47.401907], [8.585582, 47.401877], [8.585712, 47.401845], [8.586164, 47.401734], [8.587026, 47.401521], [8.587584, 47.401383], [8.587714, 47.401349], [8.587843, 47.401312], [8.587971, 47.401274], [8.588024, 47.401257], [8.588078, 47.40124], [8.588131, 47.401222], [8.588196, 47.401199], [8.588262, 47.401176], [8.588326, 47.401152], [8.5886, 47.401041], [8.588864, 47.40092], [8.589117, 47.400788], [8.589244, 47.400718], [8.589427, 47.400619], [8.589561, 47.400545], [8.589699, 47.400475], [8.58984, 47.400407], [8.589992, 47.400339], [8.590147, 47.400274], [8.590306, 47.400214], [8.590467, 47.400156], [8.590631, 47.400103], [8.590797, 47.400054], [8.590931, 47.400018], [8.591192, 47.399947], [8.591357, 47.399903], [8.591425, 47.399883], [8.591491, 47.399859], [8.591553, 47.399832], [8.591611, 47.399801], [8.591666, 47.399766], [8.591716, 47.399729], [8.591761, 47.399689], [8.591801, 47.399647], [8.591836, 47.399603], [8.591865, 47.399556], [8.591891, 47.399504], [8.591909, 47.39945], [8.591919, 47.399395], [8.591922, 47.39934], [8.591918, 47.399285], [8.591906, 47.39923], [8.591886, 47.399176], [8.59186, 47.399124], [8.591786, 47.399006], [8.591653, 47.398792], [8.591574, 47.398674], [8.591486, 47.398559], [8.591389, 47.398448]]], "type": "MultiLineString"}, "id": "3405", "properties": {}, "type": "Feature"}, {"bbox": [8.548538, 47.355243, 8.55451, 47.36276], "geometry": {"coordinates": [[[8.548538, 47.36276], [8.548629, 47.36264], [8.54887, 47.362334], [8.549131, 47.362005], [8.549475, 47.36157], [8.549491, 47.361549], [8.549862, 47.361096], [8.54989, 47.361062], [8.550221, 47.360642], [8.550262, 47.360587], [8.550281, 47.360561], [8.550687, 47.360046], [8.550858, 47.35983], [8.550866, 47.35982], [8.551353, 47.359201], [8.551396, 47.359146], [8.551439, 47.359091], [8.551716, 47.358738], [8.552444, 47.357813], [8.552768, 47.357403], [8.552894, 47.357245], [8.553219, 47.356831], [8.553545, 47.356417], [8.553715, 47.3562], [8.554052, 47.355773], [8.554119, 47.355696], [8.554211, 47.35559], [8.55451, 47.355243]]], "type": "MultiLineString"}, "id": "3406", "properties": {}, "type": "Feature"}, {"bbox": [8.549932, 47.362957, 8.550717, 47.36324], "geometry": {"coordinates": [[[8.549932, 47.362957], [8.550717, 47.36324]]], "type": "MultiLineString"}, "id": "3407", "properties": {}, "type": "Feature"}, {"bbox": [8.553219, 47.356831, 8.554875, 47.357332], "geometry": {"coordinates": [[[8.553219, 47.356831], [8.553339, 47.356864], [8.554686, 47.357308], [8.554875, 47.357332]]], "type": "MultiLineString"}, "id": "3408", "properties": {}, "type": "Feature"}, {"bbox": [8.551269, 47.361424, 8.553793, 47.362063], "geometry": {"coordinates": [[[8.551269, 47.361424], [8.551362, 47.36147], [8.552761, 47.361799], [8.553235, 47.361915], [8.553793, 47.362063]]], "type": "MultiLineString"}, "id": "3409", "properties": {}, "type": "Feature"}, {"bbox": [8.551396, 47.35867, 8.553306, 47.359055], "geometry": {"coordinates": [[[8.551396, 47.35867], [8.551716, 47.358738], [8.551951, 47.358783], [8.553306, 47.359055]]], "type": "MultiLineString"}, "id": "3410", "properties": {}, "type": "Feature"}, {"bbox": [8.554947, 47.360869, 8.556332, 47.361503], "geometry": {"coordinates": [[[8.554947, 47.360869], [8.555619, 47.361189], [8.555703, 47.361201], [8.556332, 47.361503]]], "type": "MultiLineString"}, "id": "3411", "properties": {}, "type": "Feature"}, {"bbox": [8.549073, 47.363891, 8.550665, 47.364612], "geometry": {"coordinates": [[[8.549073, 47.363891], [8.550094, 47.364351], [8.550665, 47.364612]]], "type": "MultiLineString"}, "id": "3412", "properties": {}, "type": "Feature"}, {"bbox": [8.563258, 47.362569, 8.563881, 47.363019], "geometry": {"coordinates": [[[8.563258, 47.363019], [8.563573, 47.36279], [8.563881, 47.362569]]], "type": "MultiLineString"}, "id": "3413", "properties": {}, "type": "Feature"}, {"bbox": [8.568576, 47.360102, 8.571487, 47.360994], "geometry": {"coordinates": [[[8.568576, 47.360102], [8.568807, 47.36022], [8.569052, 47.360339], [8.569156, 47.360381], [8.569282, 47.360429], [8.569558, 47.360509], [8.569608, 47.360522], [8.569974, 47.360615], [8.570148, 47.360658], [8.570304, 47.360683], [8.57046, 47.360703], [8.570618, 47.360718], [8.570723, 47.360726], [8.570827, 47.36074], [8.570928, 47.360761], [8.571026, 47.360788], [8.571312, 47.36089], [8.571487, 47.360994]]], "type": "MultiLineString"}, "id": "3414", "properties": {}, "type": "Feature"}, {"bbox": [8.559491, 47.362598, 8.562027, 47.364936], "geometry": {"coordinates": [[[8.559491, 47.364936], [8.559794, 47.364625], [8.560732, 47.36369], [8.560821, 47.363632], [8.561353, 47.363327], [8.561396, 47.363303], [8.561436, 47.363276], [8.561472, 47.363247], [8.561505, 47.363216], [8.561534, 47.363183], [8.561558, 47.363149], [8.562027, 47.362598]]], "type": "MultiLineString"}, "id": "3415", "properties": {}, "type": "Feature"}, {"bbox": [8.552979, 47.362803, 8.554418, 47.364344], "geometry": {"coordinates": [[[8.552979, 47.362803], [8.553305, 47.363078], [8.55335, 47.363138], [8.553615, 47.363407], [8.553707, 47.363502], [8.553747, 47.363526], [8.553783, 47.363552], [8.553815, 47.36358], [8.553844, 47.36361], [8.553868, 47.363641], [8.553889, 47.363674], [8.553904, 47.363708], [8.553916, 47.363743], [8.553989, 47.36408], [8.553992, 47.364099], [8.553997, 47.364118], [8.554004, 47.364137], [8.554013, 47.364154], [8.554025, 47.364172], [8.554056, 47.364199], [8.554091, 47.364225], [8.55413, 47.364248], [8.554171, 47.364269], [8.554215, 47.364287], [8.554261, 47.364302], [8.554418, 47.364344]]], "type": "MultiLineString"}, "id": "3416", "properties": {}, "type": "Feature"}, {"bbox": [8.571226, 47.360994, 8.571529, 47.361614], "geometry": {"coordinates": [[[8.571487, 47.360994], [8.571501, 47.361017], [8.571513, 47.361041], [8.571521, 47.361065], [8.571527, 47.36109], [8.571529, 47.361115], [8.571528, 47.36114], [8.571524, 47.361165], [8.571517, 47.36119], [8.571507, 47.361214], [8.571493, 47.361237], [8.571226, 47.361614]]], "type": "MultiLineString"}, "id": "3417", "properties": {}, "type": "Feature"}, {"bbox": [8.563065, 47.370539, 8.565023, 47.37229], "geometry": {"coordinates": [[[8.563065, 47.370539], [8.563172, 47.370578], [8.563546, 47.370838], [8.563618, 47.370916], [8.564245, 47.371547], [8.564609, 47.371915], [8.564884, 47.372195], [8.564927, 47.372229], [8.564973, 47.372261], [8.565023, 47.37229]]], "type": "MultiLineString"}, "id": "3420", "properties": {}, "type": "Feature"}, {"bbox": [8.573517, 47.361728, 8.574084, 47.36245], "geometry": {"coordinates": [[[8.574084, 47.361728], [8.574069, 47.361733], [8.574054, 47.361739], [8.57404, 47.361745], [8.574027, 47.361752], [8.574015, 47.361761], [8.574004, 47.361769], [8.573994, 47.361779], [8.573985, 47.361789], [8.573978, 47.361799], [8.573972, 47.36181], [8.573968, 47.361821], [8.573965, 47.361832], [8.573964, 47.361844], [8.573964, 47.361855], [8.573965, 47.361867], [8.573968, 47.361878], [8.574004, 47.36199], [8.574053, 47.362119], [8.574058, 47.362137], [8.57406, 47.362156], [8.574061, 47.362174], [8.574058, 47.362193], [8.574054, 47.362211], [8.574047, 47.362229], [8.574038, 47.362246], [8.574026, 47.362263], [8.574013, 47.362279], [8.573998, 47.362295], [8.57398, 47.362309], [8.573961, 47.362322], [8.573941, 47.362334], [8.573919, 47.362345], [8.573895, 47.362355], [8.573871, 47.362363], [8.573845, 47.36237], [8.573617, 47.362425], [8.573517, 47.36245]]], "type": "MultiLineString"}, "id": "3421", "properties": {}, "type": "Feature"}, {"bbox": [8.530144, 47.353099, 8.530848, 47.353946], "geometry": {"coordinates": [[[8.530848, 47.353887], [8.530426, 47.353946], [8.530419, 47.353946], [8.530413, 47.353946], [8.530406, 47.353946], [8.530399, 47.353945], [8.530393, 47.353944], [8.530386, 47.353943], [8.53038, 47.353941], [8.530374, 47.353938], [8.530368, 47.353936], [8.530363, 47.353933], [8.530358, 47.35393], [8.530354, 47.353926], [8.53035, 47.353922], [8.530347, 47.353918], [8.530344, 47.353914], [8.530341, 47.35391], [8.53034, 47.353906], [8.530338, 47.353901], [8.530338, 47.353896], [8.530144, 47.353208], [8.530144, 47.353204], [8.530144, 47.3532], [8.530144, 47.353196], [8.530146, 47.353192], [8.530147, 47.353188], [8.53015, 47.353184], [8.530152, 47.353181], [8.530155, 47.353177], [8.530159, 47.353174], [8.530163, 47.353171], [8.530167, 47.353169], [8.530172, 47.353166], [8.530177, 47.353164], [8.530182, 47.353162], [8.530188, 47.353161], [8.530621, 47.353099]]], "type": "MultiLineString"}, "id": "3424", "properties": {}, "type": "Feature"}, {"bbox": [8.547092, 47.379139, 8.547835, 47.384522], "geometry": {"coordinates": [[[8.547092, 47.379139], [8.547156, 47.379308], [8.54727, 47.37996], [8.547284, 47.38004], [8.547261, 47.38008], [8.547321, 47.380378], [8.547342, 47.380442], [8.547584, 47.381949], [8.547567, 47.381992], [8.547602, 47.382106], [8.547592, 47.382412], [8.547612, 47.382593], [8.547624, 47.383075], [8.547835, 47.383713], [8.547824, 47.384107], [8.547811, 47.384522]]], "type": "MultiLineString"}, "id": "3426", "properties": {}, "type": "Feature"}, {"bbox": [8.561642, 47.366639, 8.563638, 47.367395], "geometry": {"coordinates": [[[8.561642, 47.366639], [8.561815, 47.366705], [8.562591, 47.366998], [8.563638, 47.367395]]], "type": "MultiLineString"}, "id": "3434", "properties": {}, "type": "Feature"}, {"bbox": [8.534524, 47.392747, 8.537591, 47.393561], "geometry": {"coordinates": [[[8.534524, 47.392747], [8.535762, 47.393374], [8.535815, 47.393399], [8.535872, 47.393421], [8.535931, 47.393439], [8.535995, 47.393453], [8.536061, 47.393463], [8.536129, 47.393468], [8.53673, 47.393506], [8.536818, 47.393511], [8.537591, 47.393561]]], "type": "MultiLineString"}, "id": "3435", "properties": {}, "type": "Feature"}, {"bbox": [8.545018, 47.373075, 8.547441, 47.376527], "geometry": {"coordinates": [[[8.547424, 47.373075], [8.547431, 47.373079], [8.547434, 47.373086], [8.547438, 47.373093], [8.54744, 47.3731], [8.547441, 47.373107], [8.547441, 47.373114], [8.547441, 47.373121], [8.547439, 47.373128], [8.547437, 47.373135], [8.547434, 47.373142], [8.54743, 47.373149], [8.546755, 47.373935], [8.54626, 47.374518], [8.545953, 47.374938], [8.545858, 47.375077], [8.545707, 47.375297], [8.545127, 47.376189], [8.545046, 47.376315], [8.545036, 47.376332], [8.545028, 47.37635], [8.545022, 47.376367], [8.545019, 47.376385], [8.545018, 47.376403], [8.545019, 47.376422], [8.545022, 47.37644], [8.545027, 47.376457], [8.545029, 47.376471], [8.54503, 47.376485], [8.545029, 47.3765], [8.545026, 47.376514], [8.545021, 47.376527]]], "type": "MultiLineString"}, "id": "3436", "properties": {}, "type": "Feature"}, {"bbox": [8.571912, 47.402772, 8.576229, 47.403447], "geometry": {"coordinates": [[[8.571912, 47.402981], [8.572184, 47.403011], [8.572453, 47.403055], [8.572716, 47.403113], [8.573762, 47.403411], [8.573808, 47.403423], [8.573855, 47.403433], [8.573904, 47.40344], [8.573966, 47.403445], [8.574029, 47.403447], [8.574093, 47.403446], [8.574155, 47.40344], [8.574217, 47.403431], [8.574278, 47.403419], [8.574646, 47.403324], [8.574944, 47.403246], [8.575902, 47.402925], [8.576018, 47.402881], [8.576128, 47.40283], [8.576229, 47.402772]]], "type": "MultiLineString"}, "id": "3438", "properties": {}, "type": "Feature"}, {"bbox": [8.576541, 47.403067, 8.580054, 47.407961], "geometry": {"coordinates": [[[8.576541, 47.403067], [8.576668, 47.403173], [8.576874, 47.403862], [8.576894, 47.404026], [8.576896, 47.40419], [8.576881, 47.404353], [8.57685, 47.404734], [8.576834, 47.404841], [8.576885, 47.404917], [8.577002, 47.405086], [8.578059, 47.406121], [8.578532, 47.406606], [8.579387, 47.407438], [8.579496, 47.407559], [8.579797, 47.407856], [8.579879, 47.407933], [8.579885, 47.407938], [8.579891, 47.407942], [8.579898, 47.407946], [8.579905, 47.407949], [8.579912, 47.407952], [8.57992, 47.407955], [8.579928, 47.407957], [8.579937, 47.407959], [8.579945, 47.40796], [8.579954, 47.407961], [8.579963, 47.407961], [8.579971, 47.40796], [8.57998, 47.40796], [8.579988, 47.407958], [8.579997, 47.407956], [8.580054, 47.407941]]], "type": "MultiLineString"}, "id": "3442", "properties": {}, "type": "Feature"}, {"bbox": [8.5279, 47.39051, 8.529258, 47.39298], "geometry": {"coordinates": [[[8.5279, 47.39051], [8.52806, 47.390731], [8.528509, 47.391373], [8.528531, 47.391405], [8.528597, 47.391493], [8.528657, 47.391583], [8.528711, 47.391675], [8.528876, 47.391978], [8.528912, 47.392045], [8.529241, 47.39265], [8.529248, 47.392662], [8.529253, 47.392675], [8.529256, 47.392689], [8.529258, 47.392702], [8.529258, 47.392716], [8.529256, 47.392729], [8.529252, 47.392743], [8.529152, 47.39298]]], "type": "MultiLineString"}, "id": "3444", "properties": {}, "type": "Feature"}, {"bbox": [8.502591, 47.42615, 8.506685, 47.426731], "geometry": {"coordinates": [[[8.506685, 47.426731], [8.5065, 47.426693], [8.506078, 47.42657], [8.505851, 47.426485], [8.505835, 47.426478], [8.50551, 47.426342], [8.505132, 47.426257], [8.504883, 47.426236], [8.504024, 47.426175], [8.502885, 47.426154], [8.502591, 47.42615]]], "type": "MultiLineString"}, "id": "3447", "properties": {}, "type": "Feature"}, {"bbox": [8.506079, 47.368771, 8.508586, 47.369179], "geometry": {"coordinates": [[[8.508586, 47.369179], [8.508502, 47.369137], [8.508413, 47.3691], [8.50832, 47.369068], [8.508222, 47.369043], [8.508121, 47.369024], [8.50744, 47.368942], [8.506759, 47.368857], [8.506079, 47.368771]]], "type": "MultiLineString"}, "id": "3448", "properties": {}, "type": "Feature"}, {"bbox": [8.553673, 47.366219, 8.557006, 47.36908], "geometry": {"coordinates": [[[8.553673, 47.36908], [8.553935, 47.368857], [8.555182, 47.36779], [8.555355, 47.367646], [8.555744, 47.367302], [8.555925, 47.367142], [8.557006, 47.366219]]], "type": "MultiLineString"}, "id": "3449", "properties": {}, "type": "Feature"}, {"bbox": [8.563291, 47.3657, 8.563949, 47.366365], "geometry": {"coordinates": [[[8.563291, 47.3657], [8.563463, 47.365882], [8.56373, 47.366156], [8.563766, 47.366203], [8.563949, 47.366365]]], "type": "MultiLineString"}, "id": "3450", "properties": {}, "type": "Feature"}, {"bbox": [8.535437, 47.391822, 8.538556, 47.393906], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538492, 47.391836], [8.538427, 47.391828], [8.538361, 47.391823], [8.538294, 47.391822], [8.538228, 47.391825], [8.538163, 47.391832], [8.538098, 47.391842], [8.538035, 47.391857], [8.537974, 47.391875], [8.537916, 47.391896], [8.537861, 47.391921], [8.537783, 47.391965], [8.537496, 47.392167], [8.53631, 47.393106], [8.535931, 47.393439], [8.535437, 47.393906]]], "type": "MultiLineString"}, "id": "3454", "properties": {}, "type": "Feature"}, {"bbox": [8.560403, 47.363509, 8.564641, 47.366973], "geometry": {"coordinates": [[[8.560403, 47.366973], [8.560501, 47.366879], [8.561663, 47.365661], [8.56174, 47.3656], [8.562325, 47.365122], [8.562851, 47.364718], [8.56291, 47.364659], [8.564134, 47.363838], [8.564551, 47.363565], [8.564641, 47.363509]]], "type": "MultiLineString"}, "id": "3455", "properties": {}, "type": "Feature"}, {"bbox": [8.552288, 47.366285, 8.555785, 47.369868], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552362, 47.369698], [8.553078, 47.368984], [8.554011, 47.368056], [8.554727, 47.367344], [8.554826, 47.367242], [8.555247, 47.366822], [8.555308, 47.366761], [8.555785, 47.366285]]], "type": "MultiLineString"}, "id": "3456", "properties": {}, "type": "Feature"}, {"bbox": [8.56798, 47.362767, 8.573472, 47.364862], "geometry": {"coordinates": [[[8.56798, 47.362767], [8.568344, 47.362955], [8.568828, 47.363255], [8.569516, 47.363399], [8.56995, 47.363517], [8.571066, 47.363849], [8.571176, 47.363884], [8.572167, 47.364313], [8.572506, 47.364468], [8.57256, 47.364493], [8.572775, 47.364599], [8.572813, 47.364617], [8.572909, 47.364658], [8.573089, 47.364723], [8.573472, 47.364862]]], "type": "MultiLineString"}, "id": "3457", "properties": {}, "type": "Feature"}, {"bbox": [8.556208, 47.362123, 8.56072, 47.365865], "geometry": {"coordinates": [[[8.556208, 47.365865], [8.556765, 47.365323], [8.556806, 47.365283], [8.556895, 47.365197], [8.557249, 47.364853], [8.557327, 47.364777], [8.557706, 47.364409], [8.557889, 47.364312], [8.558697, 47.363694], [8.558941, 47.363498], [8.559331, 47.363196], [8.56072, 47.362123]]], "type": "MultiLineString"}, "id": "3458", "properties": {}, "type": "Feature"}, {"bbox": [8.5506, 47.38174, 8.551746, 47.3823], "geometry": {"coordinates": [[[8.5506, 47.38174], [8.550973, 47.381924], [8.551458, 47.382164], [8.551746, 47.3823]]], "type": "MultiLineString"}, "id": "3459", "properties": {}, "type": "Feature"}, {"bbox": [8.543889, 47.389159, 8.545635, 47.390262], "geometry": {"coordinates": [[[8.543889, 47.389159], [8.543915, 47.389161], [8.543941, 47.389166], [8.543967, 47.389172], [8.543992, 47.389179], [8.544016, 47.389187], [8.544039, 47.389197], [8.54406, 47.389208], [8.54408, 47.389221], [8.544645, 47.3896], [8.545437, 47.390141], [8.545635, 47.390262]]], "type": "MultiLineString"}, "id": "3460", "properties": {}, "type": "Feature"}, {"bbox": [8.532288, 47.365855, 8.53459, 47.367657], "geometry": {"coordinates": [[[8.53459, 47.367657], [8.534492, 47.367616], [8.534393, 47.367565], [8.534302, 47.367508], [8.533937, 47.367236], [8.533587, 47.366975], [8.533215, 47.366702], [8.533174, 47.366666], [8.533137, 47.366628], [8.533103, 47.36659], [8.532479, 47.366027], [8.532288, 47.365855]]], "type": "MultiLineString"}, "id": "3461", "properties": {}, "type": "Feature"}, {"bbox": [8.540549, 47.376679, 8.540695, 47.377011], "geometry": {"coordinates": [[[8.540573, 47.376679], [8.540563, 47.376702], [8.540555, 47.37673], [8.54055, 47.376758], [8.540549, 47.376786], [8.540552, 47.376814], [8.540558, 47.376841], [8.540568, 47.376869], [8.540581, 47.376895], [8.540598, 47.376921], [8.540618, 47.376946], [8.540641, 47.376969], [8.540667, 47.376991], [8.540695, 47.377011]]], "type": "MultiLineString"}, "id": "3462", "properties": {}, "type": "Feature"}, {"bbox": [8.510258, 47.361315, 8.517752, 47.362898], "geometry": {"coordinates": [[[8.517752, 47.361582], [8.517587, 47.361662], [8.517537, 47.361689], [8.517483, 47.361713], [8.517426, 47.361734], [8.517367, 47.361752], [8.517306, 47.361766], [8.517172, 47.36179], [8.517036, 47.361809], [8.516899, 47.361822], [8.516684, 47.36183], [8.51647, 47.361823], [8.516258, 47.361802], [8.513038, 47.361356], [8.512844, 47.361338], [8.5127, 47.361322], [8.512554, 47.361315], [8.512408, 47.361317], [8.512263, 47.361328], [8.51212, 47.361347], [8.51198, 47.361375], [8.511844, 47.361411], [8.511661, 47.361491], [8.511488, 47.361579], [8.511325, 47.361676], [8.511202, 47.361787], [8.510872, 47.362171], [8.510585, 47.362508], [8.510258, 47.362898]]], "type": "MultiLineString"}, "id": "3463", "properties": {}, "type": "Feature"}, {"bbox": [8.486757, 47.406745, 8.487711, 47.406936], "geometry": {"coordinates": [[[8.487711, 47.406879], [8.487697, 47.40686], [8.487679, 47.406841], [8.48766, 47.406824], [8.487639, 47.406807], [8.487615, 47.406792], [8.48759, 47.406778], [8.487564, 47.406765], [8.487532, 47.406757], [8.487499, 47.406751], [8.487465, 47.406747], [8.487431, 47.406745], [8.487397, 47.406745], [8.487363, 47.406748], [8.48733, 47.406752], [8.487297, 47.406758], [8.487265, 47.406766], [8.487234, 47.406776], [8.486757, 47.406936]]], "type": "MultiLineString"}, "id": "3465", "properties": {}, "type": "Feature"}, {"bbox": [8.507222, 47.324639, 8.510403, 47.324799], "geometry": {"coordinates": [[[8.510403, 47.32465], [8.510264, 47.324642], [8.510124, 47.324639], [8.509984, 47.324642], [8.509338, 47.324658], [8.509128, 47.32467], [8.508921, 47.324694], [8.508717, 47.324732], [8.50863, 47.324756], [8.508539, 47.324775], [8.508446, 47.324788], [8.508352, 47.324796], [8.508258, 47.324799], [8.508163, 47.324796], [8.508069, 47.324788], [8.507976, 47.324774], [8.50769, 47.324725], [8.507597, 47.324715], [8.507503, 47.32471], [8.507409, 47.324711], [8.507315, 47.324718], [8.507222, 47.32473]]], "type": "MultiLineString"}, "id": "3466", "properties": {}, "type": "Feature"}, {"bbox": [8.481089, 47.402158, 8.495887, 47.40701], "geometry": {"coordinates": [[[8.495887, 47.402158], [8.495878, 47.402228], [8.495849, 47.402271], [8.495798, 47.402304], [8.495632, 47.402367], [8.495544, 47.402404], [8.495457, 47.402442], [8.495371, 47.402481], [8.494191, 47.403057], [8.494053, 47.403118], [8.493907, 47.403171], [8.493755, 47.403216], [8.492565, 47.403539], [8.4924, 47.403586], [8.49224, 47.403638], [8.492084, 47.403697], [8.491644, 47.403874], [8.491437, 47.403953], [8.491226, 47.404029], [8.491013, 47.404101], [8.490922, 47.404129], [8.49083, 47.404156], [8.490738, 47.404182], [8.490684, 47.404196], [8.490631, 47.40421], [8.490578, 47.404224], [8.490019, 47.404375], [8.489065, 47.404613], [8.488774, 47.404692], [8.488486, 47.404775], [8.4882, 47.404861], [8.488056, 47.404908], [8.487913, 47.404956], [8.487771, 47.405006], [8.487157, 47.405221], [8.486117, 47.405586], [8.48602, 47.405621], [8.485922, 47.405654], [8.485822, 47.405687], [8.485361, 47.405829], [8.485308, 47.405845], [8.485254, 47.40586], [8.4852, 47.405875], [8.484757, 47.405974], [8.484496, 47.406036], [8.484239, 47.406105], [8.483986, 47.406181], [8.483813, 47.406234], [8.483627, 47.40629], [8.483444, 47.406349], [8.483263, 47.406411], [8.482544, 47.406676], [8.482055, 47.40686], [8.481836, 47.406945], [8.481762, 47.406973], [8.481726, 47.406985], [8.481688, 47.406995], [8.48165, 47.407002], [8.48161, 47.407007], [8.48157, 47.40701], [8.48153, 47.40701], [8.48149, 47.407008], [8.481433, 47.406997], [8.481376, 47.406984], [8.481322, 47.406967], [8.48127, 47.406948], [8.48122, 47.406926], [8.481173, 47.406901], [8.48113, 47.406873], [8.481089, 47.406843]]], "type": "MultiLineString"}, "id": "3475", "properties": {}, "type": "Feature"}, {"bbox": [8.528466, 47.353432, 8.529344, 47.353452], "geometry": {"coordinates": [[[8.529344, 47.353452], [8.528466, 47.353432]]], "type": "MultiLineString"}, "id": "3477", "properties": {}, "type": "Feature"}, {"bbox": [8.511018, 47.354879, 8.513399, 47.355534], "geometry": {"coordinates": [[[8.513399, 47.355534], [8.513159, 47.355504], [8.512182, 47.355219], [8.511734, 47.355088], [8.511018, 47.354879]]], "type": "MultiLineString"}, "id": "3478", "properties": {}, "type": "Feature"}, {"bbox": [8.521881, 47.360429, 8.522809, 47.360515], "geometry": {"coordinates": [[[8.522809, 47.360515], [8.521881, 47.360429]]], "type": "MultiLineString"}, "id": "3479", "properties": {}, "type": "Feature"}, {"bbox": [8.505326, 47.358344, 8.50761, 47.359374], "geometry": {"coordinates": [[[8.50761, 47.359374], [8.507143, 47.359163], [8.506781, 47.359], [8.506411, 47.358833], [8.50604, 47.358666], [8.505686, 47.358506], [8.505326, 47.358344]]], "type": "MultiLineString"}, "id": "3480", "properties": {}, "type": "Feature"}, {"bbox": [8.506017, 47.361195, 8.508495, 47.362841], "geometry": {"coordinates": [[[8.508495, 47.362841], [8.50838, 47.362774], [8.507918, 47.362428], [8.50741, 47.362068], [8.507191, 47.361908], [8.506585, 47.361466], [8.506017, 47.361195]]], "type": "MultiLineString"}, "id": "3481", "properties": {}, "type": "Feature"}, {"bbox": [8.510184, 47.356394, 8.514183, 47.357801], "geometry": {"coordinates": [[[8.514183, 47.357801], [8.514097, 47.35777], [8.514014, 47.357738], [8.513933, 47.357703], [8.513208, 47.357374], [8.512883, 47.357224], [8.51254, 47.357092], [8.512183, 47.356979], [8.511446, 47.356756], [8.511319, 47.35671], [8.511295, 47.356702], [8.510915, 47.356596], [8.510184, 47.356394]]], "type": "MultiLineString"}, "id": "3482", "properties": {}, "type": "Feature"}, {"bbox": [8.509004, 47.357768, 8.5174, 47.361356], "geometry": {"coordinates": [[[8.5174, 47.361261], [8.517097, 47.361356], [8.516455, 47.361137], [8.51445, 47.36051], [8.514335, 47.360474], [8.513511, 47.360217], [8.512942, 47.360039], [8.512703, 47.359952], [8.512653, 47.359928], [8.512491, 47.359853], [8.512315, 47.359768], [8.512126, 47.359674], [8.512078, 47.35965], [8.511777, 47.359497], [8.511573, 47.359384], [8.511393, 47.359284], [8.511238, 47.359195], [8.510981, 47.359043], [8.510536, 47.358774], [8.510444, 47.358718], [8.510267, 47.35861], [8.509998, 47.358445], [8.509798, 47.358314], [8.509662, 47.358225], [8.509446, 47.358074], [8.509279, 47.357954], [8.509125, 47.357844], [8.509004, 47.357768]]], "type": "MultiLineString"}, "id": "3483", "properties": {}, "type": "Feature"}, {"bbox": [8.526618, 47.342138, 8.528236, 47.342934], "geometry": {"coordinates": [[[8.528236, 47.342934], [8.526618, 47.342138]]], "type": "MultiLineString"}, "id": "3490", "properties": {}, "type": "Feature"}, {"bbox": [8.528207, 47.340583, 8.530182, 47.340818], "geometry": {"coordinates": [[[8.530182, 47.340635], [8.529619, 47.340748], [8.52944, 47.340778], [8.529246, 47.340814], [8.529222, 47.340817], [8.529199, 47.340818], [8.529175, 47.340818], [8.529151, 47.340816], [8.529127, 47.340813], [8.529104, 47.340809], [8.528341, 47.34063], [8.52827, 47.340606], [8.528207, 47.340583]]], "type": "MultiLineString"}, "id": "3491", "properties": {}, "type": "Feature"}, {"bbox": [8.532011, 47.358832, 8.533678, 47.363744], "geometry": {"coordinates": [[[8.532011, 47.363744], [8.532073, 47.363563], [8.532522, 47.362282], [8.532866, 47.361283], [8.53326, 47.360102], [8.53326, 47.360011], [8.533678, 47.358832]]], "type": "MultiLineString"}, "id": "3492", "properties": {}, "type": "Feature"}, {"bbox": [8.516058, 47.332763, 8.516794, 47.335665], "geometry": {"coordinates": [[[8.516091, 47.335665], [8.516059, 47.335563], [8.516058, 47.335548], [8.516058, 47.335533], [8.516138, 47.335127], [8.516163, 47.33502], [8.516193, 47.334901], [8.516228, 47.334787], [8.516261, 47.334683], [8.516282, 47.334623], [8.516296, 47.334591], [8.516311, 47.334562], [8.516387, 47.334435], [8.516458, 47.334309], [8.516603, 47.33407], [8.516714, 47.333822], [8.516789, 47.333568], [8.516794, 47.333467], [8.516784, 47.333366], [8.51676, 47.333266], [8.516722, 47.333168], [8.516607, 47.332937], [8.516584, 47.332879], [8.516563, 47.332821], [8.516545, 47.332763]]], "type": "MultiLineString"}, "id": "3498", "properties": {}, "type": "Feature"}, {"bbox": [8.516855, 47.33638, 8.517548, 47.337766], "geometry": {"coordinates": [[[8.516855, 47.337766], [8.516918, 47.337655], [8.516976, 47.337521], [8.517278, 47.336839], [8.517335, 47.336732], [8.517392, 47.336625], [8.51745, 47.336518], [8.517463, 47.336494], [8.517478, 47.33647], [8.517494, 47.336447], [8.517511, 47.336424], [8.517529, 47.336402], [8.517548, 47.33638]]], "type": "MultiLineString"}, "id": "3499", "properties": {}, "type": "Feature"}, {"bbox": [8.524281, 47.379263, 8.525508, 47.38041], "geometry": {"coordinates": [[[8.524281, 47.379263], [8.524721, 47.379693], [8.52501, 47.379952], [8.525508, 47.38041]]], "type": "MultiLineString"}, "id": "3500", "properties": {}, "type": "Feature"}, {"bbox": [8.548781, 47.36029, 8.551604, 47.361038], "geometry": {"coordinates": [[[8.548781, 47.36029], [8.550262, 47.360587], [8.551075, 47.360864], [8.551478, 47.361012], [8.551604, 47.361038]]], "type": "MultiLineString"}, "id": "3502", "properties": {}, "type": "Feature"}, {"bbox": [8.56115, 47.368714, 8.562347, 47.370979], "geometry": {"coordinates": [[[8.561506, 47.370979], [8.56141, 47.370891], [8.561362, 47.370859], [8.561319, 47.370825], [8.56128, 47.370788], [8.561245, 47.370749], [8.561216, 47.370708], [8.561192, 47.370666], [8.561173, 47.370623], [8.56116, 47.370578], [8.561152, 47.370533], [8.56115, 47.370488], [8.561153, 47.370443], [8.561162, 47.370398], [8.561177, 47.370354], [8.561197, 47.37031], [8.561222, 47.370268], [8.561654, 47.369585], [8.561958, 47.369112], [8.562347, 47.368714]]], "type": "MultiLineString"}, "id": "3503", "properties": {}, "type": "Feature"}, {"bbox": [8.560315, 47.376719, 8.563799, 47.378805], "geometry": {"coordinates": [[[8.560315, 47.376719], [8.560348, 47.376844], [8.56056, 47.377044], [8.560626, 47.377092], [8.560697, 47.377135], [8.560774, 47.377174], [8.560856, 47.377208], [8.560942, 47.377236], [8.561031, 47.377259], [8.561435, 47.377375], [8.561824, 47.377512], [8.562198, 47.377668], [8.562435, 47.377759], [8.562638, 47.377826], [8.562715, 47.377863], [8.562767, 47.377892], [8.562784, 47.377903], [8.562911, 47.377992], [8.563103, 47.378164], [8.563373, 47.378405], [8.563701, 47.378695], [8.563799, 47.378805]]], "type": "MultiLineString"}, "id": "3504", "properties": {}, "type": "Feature"}, {"bbox": [8.546953, 47.383651, 8.54823, 47.384193], "geometry": {"coordinates": [[[8.546953, 47.384193], [8.547049, 47.384103], [8.547158, 47.384018], [8.547278, 47.383941], [8.547408, 47.383872], [8.547546, 47.383811], [8.547692, 47.38376], [8.547835, 47.383713], [8.547914, 47.383688], [8.54823, 47.383651]]], "type": "MultiLineString"}, "id": "3505", "properties": {}, "type": "Feature"}, {"bbox": [8.567195, 47.364854, 8.570475, 47.365641], "geometry": {"coordinates": [[[8.567195, 47.365082], [8.567379, 47.365156], [8.568011, 47.365467], [8.568362, 47.365608], [8.568393, 47.365618], [8.568426, 47.365627], [8.56846, 47.365634], [8.568495, 47.365638], [8.56853, 47.365641], [8.568565, 47.365641], [8.5686, 47.365639], [8.568635, 47.365635], [8.568669, 47.365628], [8.568702, 47.36562], [8.568909, 47.365573], [8.569003, 47.365554], [8.5691, 47.365556], [8.569151, 47.365571], [8.56919, 47.365579], [8.569229, 47.365584], [8.569269, 47.365587], [8.56931, 47.365588], [8.56935, 47.365586], [8.56939, 47.365582], [8.569429, 47.365576], [8.569467, 47.365567], [8.569504, 47.365557], [8.56954, 47.365544], [8.569573, 47.365529], [8.569605, 47.365512], [8.569635, 47.365493], [8.569661, 47.365473], [8.569686, 47.365451], [8.56992, 47.365225], [8.570282, 47.364965], [8.570475, 47.364854]]], "type": "MultiLineString"}, "id": "3506", "properties": {}, "type": "Feature"}, {"bbox": [8.505107, 47.399819, 8.506294, 47.400335], "geometry": {"coordinates": [[[8.506294, 47.399819], [8.506031, 47.399924], [8.505578, 47.400129], [8.505107, 47.400335]]], "type": "MultiLineString"}, "id": "3507", "properties": {}, "type": "Feature"}, {"bbox": [8.540756, 47.421178, 8.549661, 47.424874], "geometry": {"coordinates": [[[8.549661, 47.421178], [8.548902, 47.421536], [8.547122, 47.422563], [8.546412, 47.422968], [8.545913, 47.423221], [8.54539, 47.423451], [8.544845, 47.423656], [8.544039, 47.423943], [8.543205, 47.424235], [8.543164, 47.424296], [8.541943, 47.42473], [8.541664, 47.424802], [8.541192, 47.424867], [8.541168, 47.424871], [8.541145, 47.424873], [8.541121, 47.424874], [8.541097, 47.424873], [8.541073, 47.424871], [8.54105, 47.424868], [8.541027, 47.424863], [8.541005, 47.424857], [8.540984, 47.42485], [8.540963, 47.424841], [8.540944, 47.424831], [8.540756, 47.424702]]], "type": "MultiLineString"}, "id": "3509", "properties": {}, "type": "Feature"}, {"bbox": [8.542238, 47.421626, 8.542494, 47.423082], "geometry": {"coordinates": [[[8.542305, 47.423082], [8.542268, 47.42296], [8.542246, 47.422836], [8.542238, 47.422711], [8.542246, 47.422587], [8.542469, 47.421709], [8.542494, 47.421626]]], "type": "MultiLineString"}, "id": "3510", "properties": {}, "type": "Feature"}, {"bbox": [8.542101, 47.417488, 8.545557, 47.418327], "geometry": {"coordinates": [[[8.545557, 47.417488], [8.545507, 47.417562], [8.545451, 47.417634], [8.545388, 47.417704], [8.545247, 47.417824], [8.545093, 47.417937], [8.544928, 47.418043], [8.544778, 47.418124], [8.544619, 47.418197], [8.544454, 47.418263], [8.544348, 47.418289], [8.544239, 47.418308], [8.544129, 47.418321], [8.544016, 47.418327], [8.543904, 47.418326], [8.543792, 47.418319], [8.542113, 47.418201], [8.542101, 47.418258]]], "type": "MultiLineString"}, "id": "3511", "properties": {}, "type": "Feature"}, {"bbox": [8.529365, 47.393515, 8.530341, 47.396972], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.529499, 47.393994], [8.529508, 47.394026], [8.529543, 47.394153], [8.529694, 47.394687], [8.52971, 47.394742], [8.529738, 47.394846], [8.530008, 47.395815], [8.530264, 47.396703], [8.530269, 47.396715], [8.530275, 47.396726], [8.530283, 47.396737], [8.530292, 47.396747], [8.530302, 47.396756], [8.53031, 47.396762], [8.530317, 47.396768], [8.530323, 47.396774], [8.530328, 47.396781], [8.530333, 47.396788], [8.530336, 47.396795], [8.530339, 47.396803], [8.53034, 47.39681], [8.530341, 47.396818], [8.53034, 47.396825], [8.530302, 47.396972]]], "type": "MultiLineString"}, "id": "3514", "properties": {}, "type": "Feature"}, {"bbox": [8.542157, 47.425479, 8.546128, 47.427397], "geometry": {"coordinates": [[[8.542157, 47.425479], [8.542158, 47.425497], [8.542161, 47.425514], [8.542167, 47.42553], [8.542175, 47.425547], [8.542185, 47.425563], [8.542197, 47.425578], [8.54221, 47.425592], [8.542226, 47.425606], [8.542243, 47.425619], [8.542339, 47.425686], [8.542575, 47.425809], [8.54384, 47.426387], [8.543993, 47.426457], [8.544382, 47.426636], [8.544487, 47.426685], [8.545108, 47.42697], [8.545758, 47.427269], [8.546128, 47.427397]]], "type": "MultiLineString"}, "id": "3516", "properties": {}, "type": "Feature"}, {"bbox": [8.595315, 47.35714, 8.595477, 47.358432], "geometry": {"coordinates": [[[8.595343, 47.35714], [8.595315, 47.357295], [8.595392, 47.357778], [8.595407, 47.357883], [8.595411, 47.357988], [8.595404, 47.358094], [8.595389, 47.35829], [8.595389, 47.358305], [8.595391, 47.358321], [8.595395, 47.358337], [8.595401, 47.358352], [8.595409, 47.358367], [8.595419, 47.358382], [8.595431, 47.358395], [8.595444, 47.358408], [8.59546, 47.358421], [8.595477, 47.358432]]], "type": "MultiLineString"}, "id": "3528", "properties": {}, "type": "Feature"}, {"bbox": [8.530259, 47.339792, 8.530508, 47.340827], "geometry": {"coordinates": [[[8.530259, 47.340827], [8.530448, 47.340675], [8.530508, 47.34046], [8.530503, 47.340443], [8.530304, 47.339792]]], "type": "MultiLineString"}, "id": "3529", "properties": {}, "type": "Feature"}, {"bbox": [8.533204, 47.336616, 8.536249, 47.337883], "geometry": {"coordinates": [[[8.536249, 47.337883], [8.536031, 47.337812], [8.535944, 47.337793], [8.535855, 47.337779], [8.535765, 47.337771], [8.535674, 47.337768], [8.535583, 47.33777], [8.53482, 47.337801], [8.534796, 47.337801], [8.534773, 47.337799], [8.53475, 47.337796], [8.534727, 47.337792], [8.534705, 47.337786], [8.534684, 47.337779], [8.534664, 47.337771], [8.534645, 47.337762], [8.534627, 47.337752], [8.53461, 47.33774], [8.534595, 47.337728], [8.534581, 47.337715], [8.534284, 47.337464], [8.534166, 47.337363], [8.53396, 47.337201], [8.533688, 47.336997], [8.533279, 47.336703], [8.533204, 47.336616]]], "type": "MultiLineString"}, "id": "3530", "properties": {}, "type": "Feature"}, {"bbox": [8.532923, 47.342867, 8.534851, 47.344495], "geometry": {"coordinates": [[[8.532923, 47.344495], [8.53322, 47.344181], [8.533998, 47.343412], [8.534193, 47.343235], [8.534356, 47.343124], [8.534707, 47.342921], [8.534799, 47.342885], [8.534849, 47.342868], [8.534851, 47.342867]]], "type": "MultiLineString"}, "id": "3531", "properties": {}, "type": "Feature"}, {"bbox": [8.492532, 47.373959, 8.494473, 47.374679], "geometry": {"coordinates": [[[8.494473, 47.374679], [8.494372, 47.374407], [8.493459, 47.37401], [8.493218, 47.374276], [8.493093, 47.37436], [8.49296, 47.374385], [8.492805, 47.374327], [8.492795, 47.374282], [8.492656, 47.374118], [8.492532, 47.373959]]], "type": "MultiLineString"}, "id": "3533", "properties": {}, "type": "Feature"}, {"bbox": [8.493266, 47.377416, 8.494133, 47.378166], "geometry": {"coordinates": [[[8.494133, 47.377416], [8.49393, 47.377529], [8.49365, 47.377806], [8.493266, 47.378166]]], "type": "MultiLineString"}, "id": "3534", "properties": {}, "type": "Feature"}, {"bbox": [8.534443, 47.40087, 8.535599, 47.401291], "geometry": {"coordinates": [[[8.535599, 47.40087], [8.535445, 47.400948], [8.535146, 47.401057], [8.534718, 47.401193], [8.534443, 47.401291]]], "type": "MultiLineString"}, "id": "3535", "properties": {}, "type": "Feature"}, {"bbox": [8.541948, 47.426408, 8.543566, 47.427357], "geometry": {"coordinates": [[[8.543566, 47.427357], [8.543393, 47.427233], [8.54319, 47.427103], [8.542747, 47.426908], [8.542285, 47.42668], [8.542215, 47.42665], [8.542149, 47.426616], [8.542088, 47.426577], [8.542032, 47.426535], [8.541982, 47.42649], [8.541973, 47.42648], [8.541965, 47.42647], [8.541959, 47.426459], [8.541954, 47.426448], [8.54195, 47.426437], [8.541948, 47.426426], [8.541948, 47.426414], [8.541948, 47.426408]]], "type": "MultiLineString"}, "id": "3536", "properties": {}, "type": "Feature"}, {"bbox": [8.488094, 47.386261, 8.490224, 47.386739], "geometry": {"coordinates": [[[8.490224, 47.386261], [8.489089, 47.386531], [8.488094, 47.386739]]], "type": "MultiLineString"}, "id": "3537", "properties": {}, "type": "Feature"}, {"bbox": [8.506848, 47.42569, 8.509438, 47.426665], "geometry": {"coordinates": [[[8.509438, 47.42569], [8.509145, 47.425794], [8.50908, 47.425814], [8.509012, 47.425831], [8.508943, 47.425843], [8.508369, 47.425937], [8.507492, 47.426079], [8.507436, 47.426094], [8.507382, 47.426111], [8.507331, 47.426132], [8.507283, 47.426156], [8.507266, 47.426169], [8.507252, 47.426183], [8.507239, 47.426198], [8.506848, 47.426665]]], "type": "MultiLineString"}, "id": "3542", "properties": {}, "type": "Feature"}, {"bbox": [8.499577, 47.419298, 8.501569, 47.42085], "geometry": {"coordinates": [[[8.501569, 47.42085], [8.501469, 47.420763], [8.50137, 47.420676], [8.50127, 47.420588], [8.500772, 47.420154], [8.500647, 47.420047], [8.500531, 47.419936], [8.500422, 47.419821], [8.500385, 47.419777], [8.500347, 47.419734], [8.500308, 47.419692], [8.499682, 47.419349], [8.499577, 47.419298]]], "type": "MultiLineString"}, "id": "3543", "properties": {}, "type": "Feature"}, {"bbox": [8.507432, 47.418827, 8.509095, 47.420443], "geometry": {"coordinates": [[[8.507432, 47.418827], [8.507592, 47.418947], [8.508268, 47.419518], [8.508776, 47.420015], [8.508883, 47.420122], [8.508983, 47.420232], [8.509076, 47.420345], [8.509083, 47.420355], [8.509088, 47.420365], [8.509092, 47.420376], [8.509094, 47.420387], [8.509095, 47.420399], [8.509095, 47.42041], [8.509093, 47.420421], [8.50909, 47.420432], [8.509085, 47.420443]]], "type": "MultiLineString"}, "id": "3544", "properties": {}, "type": "Feature"}, {"bbox": [8.493949, 47.403986, 8.496216, 47.409459], "geometry": {"coordinates": [[[8.496216, 47.403986], [8.496192, 47.404026], [8.496162, 47.404064], [8.496129, 47.4041], [8.49609, 47.404134], [8.496048, 47.404165], [8.496001, 47.404194], [8.495951, 47.40422], [8.495845, 47.404278], [8.495748, 47.404344], [8.49566, 47.404415], [8.495643, 47.404432], [8.495626, 47.404449], [8.495609, 47.404466], [8.49555, 47.404535], [8.495501, 47.404607], [8.495461, 47.404682], [8.495431, 47.404758], [8.495412, 47.404837], [8.495402, 47.404916], [8.495397, 47.404992], [8.495395, 47.40508], [8.495399, 47.405167], [8.495412, 47.405254], [8.49543, 47.40531], [8.495454, 47.405366], [8.495483, 47.40542], [8.495529, 47.405494], [8.495582, 47.405565], [8.495641, 47.405635], [8.495769, 47.405785], [8.495794, 47.405821], [8.495815, 47.405858], [8.495831, 47.405896], [8.495842, 47.405935], [8.495848, 47.405974], [8.495849, 47.406014], [8.495846, 47.406053], [8.495837, 47.406092], [8.495824, 47.406131], [8.495806, 47.406168], [8.495783, 47.406204], [8.495756, 47.406239], [8.495724, 47.406273], [8.495689, 47.406304], [8.495501, 47.406442], [8.495413, 47.406507], [8.495333, 47.406577], [8.495262, 47.406651], [8.495199, 47.406728], [8.495146, 47.406809], [8.495103, 47.406892], [8.495075, 47.406951], [8.494963, 47.407198], [8.494677, 47.407871], [8.494523, 47.408182], [8.494393, 47.408435], [8.494278, 47.408649], [8.494155, 47.408924], [8.493969, 47.409355], [8.493949, 47.409459]]], "type": "MultiLineString"}, "id": "3545", "properties": {}, "type": "Feature"}, {"bbox": [8.556653, 47.370009, 8.562651, 47.371451], "geometry": {"coordinates": [[[8.556653, 47.370009], [8.55674, 47.370048], [8.55715, 47.370214], [8.557414, 47.370318], [8.557687, 47.370409], [8.557969, 47.370488], [8.558003, 47.370497], [8.558037, 47.370505], [8.558071, 47.370513], [8.558789, 47.370686], [8.559009, 47.370726], [8.559062, 47.370737], [8.559116, 47.370747], [8.55917, 47.370756], [8.559673, 47.370847], [8.559926, 47.370886], [8.560183, 47.370915], [8.560441, 47.370935], [8.560861, 47.370943], [8.56132, 47.370947], [8.561358, 47.370949], [8.561396, 47.370954], [8.561434, 47.37096], [8.56147, 47.370969], [8.561506, 47.370979], [8.561623, 47.371007], [8.561735, 47.371042], [8.561843, 47.371085], [8.562138, 47.37122], [8.562651, 47.371451]]], "type": "MultiLineString"}, "id": "3546", "properties": {}, "type": "Feature"}, {"bbox": [8.55839, 47.371844, 8.561521, 47.373898], "geometry": {"coordinates": [[[8.558917, 47.371844], [8.558908, 47.371948], [8.558901, 47.371979], [8.558877, 47.372057], [8.558627, 47.372891], [8.558595, 47.372969], [8.558558, 47.373068], [8.558398, 47.373573], [8.558393, 47.373596], [8.55839, 47.373619], [8.55839, 47.373642], [8.558393, 47.373665], [8.558398, 47.373688], [8.558407, 47.373711], [8.558419, 47.373733], [8.558433, 47.373754], [8.55845, 47.373774], [8.55847, 47.373793], [8.558492, 47.373811], [8.558516, 47.373827], [8.558542, 47.373842], [8.55857, 47.373856], [8.558599, 47.373868], [8.55863, 47.373878], [8.558662, 47.373886], [8.558695, 47.373892], [8.558729, 47.373896], [8.558763, 47.373898], [8.558797, 47.373898], [8.558831, 47.373897], [8.558865, 47.373893], [8.558898, 47.373887], [8.559289, 47.37381], [8.561, 47.373472], [8.561091, 47.373454], [8.561136, 47.373447], [8.56118, 47.373443], [8.561226, 47.373441], [8.561271, 47.373443], [8.561316, 47.373447], [8.56136, 47.373454], [8.561403, 47.373464], [8.561444, 47.373477], [8.561484, 47.373491], [8.561521, 47.373509]]], "type": "MultiLineString"}, "id": "3547", "properties": {}, "type": "Feature"}, {"bbox": [8.559141, 47.375236, 8.560414, 47.375321], "geometry": {"coordinates": [[[8.559141, 47.375236], [8.55984, 47.375278], [8.560007, 47.375288], [8.560414, 47.375321]]], "type": "MultiLineString"}, "id": "3548", "properties": {}, "type": "Feature"}, {"bbox": [8.556365, 47.380795, 8.557257, 47.38289], "geometry": {"coordinates": [[[8.556365, 47.380795], [8.556603, 47.381038], [8.556637, 47.381078], [8.556666, 47.38112], [8.556688, 47.381164], [8.556705, 47.381208], [8.556768, 47.381401], [8.556831, 47.381641], [8.556996, 47.382218], [8.557086, 47.382486], [8.557108, 47.382541], [8.557161, 47.382652], [8.557161, 47.382652], [8.557195, 47.38273], [8.557257, 47.38289]]], "type": "MultiLineString"}, "id": "3549", "properties": {}, "type": "Feature"}, {"bbox": [8.551741, 47.369212, 8.556068, 47.374781], "geometry": {"coordinates": [[[8.551787, 47.374781], [8.551768, 47.374746], [8.551754, 47.374709], [8.551745, 47.374672], [8.551741, 47.374634], [8.551741, 47.374596], [8.551747, 47.374559], [8.551757, 47.374522], [8.551773, 47.374485], [8.551793, 47.37445], [8.552045, 47.373912], [8.552041, 47.373894], [8.552038, 47.373876], [8.552036, 47.373859], [8.552035, 47.373823], [8.552039, 47.373788], [8.552048, 47.373753], [8.552061, 47.373719], [8.552079, 47.373686], [8.552286, 47.373407], [8.552398, 47.37329], [8.552793, 47.37285], [8.554137, 47.371356], [8.554591, 47.370865], [8.555004, 47.370399], [8.555507, 47.369829], [8.555719, 47.369581], [8.555796, 47.369497], [8.555955, 47.369319], [8.556068, 47.369212]]], "type": "MultiLineString"}, "id": "3550", "properties": {}, "type": "Feature"}, {"bbox": [8.552922, 47.371546, 8.556759, 47.375339], "geometry": {"coordinates": [[[8.552922, 47.375339], [8.553319, 47.375014], [8.554025, 47.374369], [8.5546, 47.373832], [8.555755, 47.372718], [8.555928, 47.372556], [8.556268, 47.372138], [8.556422, 47.371996], [8.556721, 47.37167], [8.556729, 47.371663], [8.556737, 47.371656], [8.556743, 47.371648], [8.556748, 47.37164], [8.556753, 47.371632], [8.556756, 47.371623], [8.556758, 47.371614], [8.556759, 47.371605], [8.556758, 47.371596], [8.556757, 47.371588], [8.556755, 47.371579], [8.556751, 47.37157], [8.556746, 47.371562], [8.556741, 47.371554], [8.556734, 47.371546]]], "type": "MultiLineString"}, "id": "3551", "properties": {}, "type": "Feature"}, {"bbox": [8.522709, 47.395375, 8.526041, 47.396198], "geometry": {"coordinates": [[[8.526041, 47.395375], [8.525945, 47.395405], [8.525607, 47.395515], [8.525022, 47.39569], [8.524966, 47.395707], [8.524908, 47.395723], [8.52485, 47.395737], [8.524296, 47.395856], [8.523354, 47.396058], [8.52277, 47.396184], [8.522709, 47.396198]]], "type": "MultiLineString"}, "id": "3555", "properties": {}, "type": "Feature"}, {"bbox": [8.506538, 47.411662, 8.50972, 47.416369], "geometry": {"coordinates": [[[8.509701, 47.411662], [8.509713, 47.412318], [8.50972, 47.412955], [8.509704, 47.413174], [8.509679, 47.413393], [8.509646, 47.413611], [8.509638, 47.413655], [8.509609, 47.413786], [8.50946, 47.414495], [8.50944, 47.414559], [8.509405, 47.414639], [8.509359, 47.414717], [8.509302, 47.414791], [8.509236, 47.414862], [8.509161, 47.414928], [8.509078, 47.41499], [8.508986, 47.415046], [8.508572, 47.415297], [8.508189, 47.415524], [8.50797, 47.415653], [8.507745, 47.415777], [8.507517, 47.415898], [8.506807, 47.416266], [8.506721, 47.416305], [8.506631, 47.416339], [8.506538, 47.416369]]], "type": "MultiLineString"}, "id": "3556", "properties": {}, "type": "Feature"}, {"bbox": [8.501927, 47.399279, 8.502197, 47.399722], "geometry": {"coordinates": [[[8.501927, 47.399279], [8.501962, 47.399337], [8.502058, 47.399485], [8.502197, 47.399722]]], "type": "MultiLineString"}, "id": "3557", "properties": {}, "type": "Feature"}, {"bbox": [8.51976, 47.337077, 8.520045, 47.342955], "geometry": {"coordinates": [[[8.520014, 47.342955], [8.520025, 47.342939], [8.520033, 47.342922], [8.520039, 47.342904], [8.520043, 47.342887], [8.520045, 47.342869], [8.520045, 47.342851], [8.520043, 47.342833], [8.519971, 47.342477], [8.519965, 47.342408], [8.519899, 47.341127], [8.519881, 47.340767], [8.519876, 47.340674], [8.519844, 47.340021], [8.519829, 47.339002], [8.519826, 47.338765], [8.51976, 47.337077]]], "type": "MultiLineString"}, "id": "3569", "properties": {}, "type": "Feature"}, {"bbox": [8.545382, 47.391006, 8.550451, 47.392553], "geometry": {"coordinates": [[[8.545382, 47.391006], [8.545564, 47.39113], [8.545824, 47.391272], [8.546127, 47.391437], [8.546475, 47.391621], [8.546777, 47.391772], [8.547096, 47.391907], [8.547429, 47.392025], [8.547565, 47.392073], [8.547702, 47.392118], [8.547841, 47.39216], [8.54809, 47.392228], [8.548343, 47.392288], [8.548601, 47.392339], [8.548766, 47.392364], [8.548931, 47.392389], [8.549096, 47.392413], [8.549891, 47.392524], [8.549983, 47.392539], [8.550076, 47.392549], [8.55017, 47.392553], [8.550265, 47.392552], [8.550359, 47.392545], [8.550451, 47.392533]]], "type": "MultiLineString"}, "id": "3576", "properties": {}, "type": "Feature"}, {"bbox": [8.545952, 47.386131, 8.546324, 47.387122], "geometry": {"coordinates": [[[8.546324, 47.386131], [8.546305, 47.386157], [8.546288, 47.386183], [8.546273, 47.38621], [8.546, 47.386992], [8.545952, 47.387122]]], "type": "MultiLineString"}, "id": "3577", "properties": {}, "type": "Feature"}, {"bbox": [8.516051, 47.394749, 8.523588, 47.39619], "geometry": {"coordinates": [[[8.523588, 47.394749], [8.523463, 47.394785], [8.523196, 47.394856], [8.522144, 47.395141], [8.521718, 47.395261], [8.520286, 47.395621], [8.518513, 47.396067], [8.518348, 47.396106], [8.518178, 47.396135], [8.518005, 47.396155], [8.517842, 47.396171], [8.517678, 47.39618], [8.517513, 47.396183], [8.516239, 47.39619], [8.51606, 47.396178], [8.516051, 47.396176]]], "type": "MultiLineString"}, "id": "3582", "properties": {}, "type": "Feature"}, {"bbox": [8.548272, 47.386066, 8.548504, 47.387109], "geometry": {"coordinates": [[[8.548272, 47.386066], [8.548314, 47.386099], [8.548351, 47.386134], [8.548383, 47.386172], [8.548411, 47.386211], [8.548434, 47.386251], [8.548452, 47.386293], [8.548465, 47.386336], [8.548472, 47.386379], [8.548474, 47.386422], [8.548494, 47.386651], [8.548504, 47.38688], [8.548504, 47.387109]]], "type": "MultiLineString"}, "id": "3586", "properties": {}, "type": "Feature"}, {"bbox": [8.547382, 47.387081, 8.549096, 47.392413], "geometry": {"coordinates": [[[8.547382, 47.387081], [8.547501, 47.387113], [8.547515, 47.387118], [8.547529, 47.387123], [8.547541, 47.387129], [8.547553, 47.387136], [8.547564, 47.387143], [8.547574, 47.387151], [8.547583, 47.38716], [8.54759, 47.387169], [8.547596, 47.387179], [8.547601, 47.387189], [8.547605, 47.387199], [8.547809, 47.387919], [8.547849, 47.388058], [8.547932, 47.388349], [8.548377, 47.38992], [8.548401, 47.390002], [8.548424, 47.390084], [8.549052, 47.392297], [8.549096, 47.392413]]], "type": "MultiLineString"}, "id": "3587", "properties": {}, "type": "Feature"}, {"bbox": [8.50609, 47.380532, 8.512578, 47.383244], "geometry": {"coordinates": [[[8.512578, 47.380532], [8.511671, 47.380886], [8.509879, 47.381628], [8.509199, 47.381911], [8.508999, 47.381994], [8.508208, 47.382323], [8.507185, 47.382752], [8.506194, 47.383166], [8.50609, 47.383244]]], "type": "MultiLineString"}, "id": "3588", "properties": {}, "type": "Feature"}, {"bbox": [8.550276, 47.382622, 8.55231, 47.384427], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552217, 47.382705], [8.551705, 47.383159], [8.550895, 47.383877], [8.550276, 47.384427]]], "type": "MultiLineString"}, "id": "3589", "properties": {}, "type": "Feature"}, {"bbox": [8.548331, 47.384394, 8.551548, 47.386625], "geometry": {"coordinates": [[[8.548331, 47.384421], [8.548358, 47.384414], [8.548385, 47.384408], [8.548414, 47.384404], [8.548442, 47.384402], [8.548471, 47.384402], [8.5485, 47.384403], [8.548529, 47.384406], [8.548557, 47.384411], [8.548584, 47.384418], [8.54861, 47.384426], [8.548663, 47.384455], [8.548713, 47.384487], [8.548758, 47.384522], [8.548799, 47.384559], [8.548836, 47.384598], [8.548876, 47.384649], [8.54891, 47.384702], [8.548937, 47.384758], [8.548955, 47.384814], [8.549042, 47.385356], [8.549046, 47.385371], [8.549053, 47.385386], [8.549061, 47.3854], [8.549071, 47.385414], [8.549082, 47.385427], [8.549096, 47.38544], [8.549111, 47.385452], [8.549127, 47.385462], [8.549144, 47.385472], [8.549163, 47.385481], [8.549183, 47.385489], [8.549204, 47.385495], [8.549225, 47.3855], [8.549247, 47.385504], [8.54927, 47.385507], [8.549292, 47.385508], [8.549315, 47.385508], [8.549338, 47.385507], [8.54936, 47.385504], [8.549382, 47.3855], [8.549404, 47.385495], [8.549424, 47.385489], [8.549444, 47.385481], [8.549463, 47.385472], [8.549481, 47.385462], [8.549497, 47.385452], [8.549512, 47.38544], [8.549525, 47.385427], [8.549537, 47.385414], [8.549547, 47.3854], [8.549555, 47.385386], [8.549561, 47.385371], [8.549565, 47.385356], [8.549594, 47.385124], [8.549612, 47.385023], [8.549643, 47.384924], [8.549686, 47.384826], [8.54974, 47.384732], [8.549868, 47.384524], [8.549887, 47.384492], [8.549899, 47.384479], [8.549911, 47.384466], [8.549926, 47.384454], [8.549942, 47.384443], [8.549959, 47.384433], [8.549977, 47.384424], [8.549996, 47.384416], [8.550017, 47.384409], [8.550038, 47.384404], [8.55006, 47.384399], [8.550082, 47.384396], [8.550104, 47.384394], [8.550127, 47.384394], [8.55015, 47.384395], [8.550172, 47.384397], [8.550194, 47.3844], [8.550216, 47.384405], [8.550237, 47.384411], [8.550257, 47.384418], [8.550276, 47.384427], [8.550294, 47.384436], [8.55031, 47.384446], [8.550325, 47.384457], [8.550339, 47.384469], [8.550351, 47.384482], [8.550361, 47.384495], [8.55037, 47.384509], [8.550377, 47.384523], [8.550382, 47.384538], [8.550386, 47.384553], [8.550387, 47.384568], [8.550387, 47.384583], [8.550384, 47.384598], [8.55038, 47.384613], [8.550374, 47.384627], [8.550367, 47.384641], [8.550242, 47.384841], [8.550209, 47.384898], [8.550182, 47.384957], [8.550161, 47.385016], [8.550143, 47.385082], [8.55013, 47.385147], [8.550123, 47.385214], [8.550119, 47.385312], [8.550121, 47.38541], [8.55013, 47.385508], [8.550153, 47.385928], [8.550157, 47.385944], [8.550164, 47.38596], [8.550172, 47.385975], [8.550182, 47.38599], [8.550194, 47.386004], [8.550208, 47.386017], [8.550224, 47.386029], [8.550241, 47.386041], [8.550259, 47.38605], [8.550277, 47.386059], [8.550297, 47.386067], [8.550318, 47.386073], [8.55034, 47.386078], [8.550362, 47.386082], [8.550384, 47.386084], [8.550407, 47.386085], [8.55043, 47.386085], [8.550452, 47.386084], [8.550475, 47.386081], [8.550497, 47.386077], [8.550518, 47.386072], [8.550539, 47.386065], [8.550558, 47.386057], [8.550577, 47.386048], [8.550594, 47.386038], [8.550611, 47.386027], [8.550625, 47.386016], [8.550638, 47.386003], [8.55065, 47.38599], [8.55066, 47.385976], [8.550667, 47.385961], [8.550674, 47.385946], [8.550678, 47.385931], [8.55068, 47.385915], [8.55068, 47.3859], [8.550662, 47.385584], [8.550661, 47.385519], [8.55067, 47.385454], [8.550687, 47.38539], [8.550712, 47.385327], [8.550747, 47.385267], [8.550789, 47.385208], [8.550839, 47.385153], [8.551028, 47.384954], [8.55104, 47.384941], [8.551055, 47.384928], [8.551071, 47.384917], [8.551088, 47.384906], [8.551106, 47.384897], [8.551126, 47.384888], [8.551147, 47.384881], [8.551169, 47.384875], [8.551191, 47.384871], [8.551214, 47.384867], [8.551237, 47.384865], [8.55126, 47.384865], [8.551283, 47.384866], [8.551306, 47.384868], [8.551329, 47.384872], [8.551351, 47.384877], [8.551372, 47.384883], [8.551393, 47.384891], [8.551412, 47.384899], [8.551431, 47.384909], [8.551448, 47.38492], [8.551463, 47.384932], [8.551477, 47.384945], [8.551489, 47.384958], [8.551499, 47.384972], [8.551508, 47.384987], [8.551514, 47.385002], [8.551519, 47.385018], [8.551521, 47.385033], [8.551522, 47.385049], [8.55152, 47.385065], [8.551517, 47.385081], [8.551511, 47.385096], [8.551504, 47.385111], [8.551494, 47.385125], [8.551425, 47.385233], [8.551371, 47.385345], [8.551331, 47.38546], [8.551307, 47.385576], [8.551244, 47.385953], [8.551233, 47.38606], [8.551237, 47.386197], [8.551262, 47.386332], [8.551306, 47.386465], [8.551313, 47.386483], [8.551323, 47.386501], [8.551335, 47.386518], [8.551349, 47.386534], [8.551365, 47.386549], [8.551383, 47.386563], [8.551402, 47.386576], [8.551424, 47.386587], [8.551446, 47.386598], [8.55147, 47.386607], [8.551495, 47.386614], [8.551521, 47.38662], [8.551548, 47.386625]]], "type": "MultiLineString"}, "id": "3590", "properties": {}, "type": "Feature"}, {"bbox": [8.494553, 47.372668, 8.500869, 47.37381], "geometry": {"coordinates": [[[8.500859, 47.37381], [8.500865, 47.373785], [8.500869, 47.37376], [8.500869, 47.373735], [8.500867, 47.373711], [8.500861, 47.373686], [8.500852, 47.373662], [8.500841, 47.373638], [8.500517, 47.373209], [8.500454, 47.373142], [8.500383, 47.373078], [8.500304, 47.373019], [8.500219, 47.372964], [8.500127, 47.372914], [8.500029, 47.37287], [8.499926, 47.372831], [8.499667, 47.372769], [8.499401, 47.372721], [8.49913, 47.372688], [8.498856, 47.37267], [8.498581, 47.372668], [8.498306, 47.37268], [8.498051, 47.372698], [8.497799, 47.372729], [8.497551, 47.372773], [8.497208, 47.372835], [8.496867, 47.3729], [8.496527, 47.372967], [8.496104, 47.373045], [8.495675, 47.373105], [8.495241, 47.373149], [8.495009, 47.373167], [8.49478, 47.373194], [8.494553, 47.373231]]], "type": "MultiLineString"}, "id": "3591", "properties": {}, "type": "Feature"}, {"bbox": [8.494381, 47.379936, 8.495566, 47.380807], "geometry": {"coordinates": [[[8.495566, 47.380807], [8.494381, 47.379936]]], "type": "MultiLineString"}, "id": "3592", "properties": {}, "type": "Feature"}, {"bbox": [8.483733, 47.375717, 8.484236, 47.375864], "geometry": {"coordinates": [[[8.484236, 47.375864], [8.483853, 47.375762], [8.483826, 47.375754], [8.4838, 47.375745], [8.483773, 47.375736], [8.483752, 47.375725], [8.483733, 47.375717]]], "type": "MultiLineString"}, "id": "3594", "properties": {}, "type": "Feature"}, {"bbox": [8.562651, 47.369412, 8.565246, 47.371451], "geometry": {"coordinates": [[[8.562651, 47.371451], [8.562791, 47.371417], [8.562811, 47.371409], [8.562838, 47.371395], [8.563007, 47.371257], [8.563168, 47.371135], [8.563421, 47.370974], [8.563491, 47.370931], [8.563503, 47.370927], [8.563514, 47.370923], [8.563527, 47.370919], [8.563539, 47.370916], [8.563552, 47.370914], [8.563565, 47.370913], [8.563579, 47.370913], [8.563592, 47.370913], [8.563605, 47.370914], [8.563618, 47.370916], [8.563635, 47.370924], [8.563653, 47.370931], [8.563672, 47.370937], [8.563692, 47.370942], [8.563712, 47.370945], [8.563733, 47.370948], [8.563754, 47.370949], [8.563775, 47.370948], [8.564375, 47.370931], [8.564722, 47.370917], [8.564822, 47.370899], [8.564919, 47.370876], [8.565014, 47.370847], [8.565105, 47.370814], [8.565246, 47.370766], [8.565195, 47.370436], [8.565177, 47.370337], [8.565146, 47.370239], [8.565103, 47.370144], [8.565047, 47.370051], [8.56498, 47.369962], [8.564632, 47.369582], [8.564607, 47.369541], [8.564587, 47.369499], [8.564573, 47.369456], [8.564565, 47.369412], [8.564204, 47.369417]]], "type": "MultiLineString"}, "id": "3595", "properties": {}, "type": "Feature"}, {"bbox": [8.509729, 47.370226, 8.513241, 47.372469], "geometry": {"coordinates": [[[8.513241, 47.370226], [8.513082, 47.37038], [8.512631, 47.370888], [8.512299, 47.371136], [8.511832, 47.37145], [8.510392, 47.372141], [8.509729, 47.372469]]], "type": "MultiLineString"}, "id": "3600", "properties": {}, "type": "Feature"}, {"bbox": [8.477899, 47.416116, 8.478718, 47.417092], "geometry": {"coordinates": [[[8.478718, 47.416116], [8.478272, 47.416597], [8.477937, 47.416915], [8.477934, 47.416922], [8.477916, 47.416963], [8.477904, 47.417006], [8.477899, 47.417049], [8.477899, 47.417092]]], "type": "MultiLineString"}, "id": "3601", "properties": {}, "type": "Feature"}, {"bbox": [8.528704, 47.350484, 8.529853, 47.359029], "geometry": {"coordinates": [[[8.528704, 47.359029], [8.528717, 47.359009], [8.52873, 47.358988], [8.528741, 47.358966], [8.529361, 47.357654], [8.529378, 47.357619], [8.52939, 47.357583], [8.529398, 47.357546], [8.529401, 47.357509], [8.529399, 47.357472], [8.529392, 47.357435], [8.52939, 47.357426], [8.529387, 47.357416], [8.529384, 47.357407], [8.529238, 47.357009], [8.529224, 47.356977], [8.529211, 47.356944], [8.529199, 47.356911], [8.529179, 47.35683], [8.529169, 47.356748], [8.529169, 47.356666], [8.52918, 47.356584], [8.529381, 47.355506], [8.529406, 47.355409], [8.5294, 47.355381], [8.52937, 47.354267], [8.529344, 47.353452], [8.52963, 47.35323], [8.529676, 47.353194], [8.529717, 47.353156], [8.529753, 47.353116], [8.529784, 47.353073], [8.52981, 47.353029], [8.529829, 47.352984], [8.529843, 47.352938], [8.529851, 47.352891], [8.529853, 47.352844], [8.529849, 47.352797], [8.529839, 47.35275], [8.529823, 47.352704], [8.529801, 47.352659], [8.529356, 47.351982], [8.529283, 47.351881], [8.529223, 47.351776], [8.529176, 47.351668], [8.529144, 47.351557], [8.529113, 47.351436], [8.529097, 47.351314], [8.529097, 47.351192], [8.529112, 47.35107], [8.529142, 47.35095], [8.529276, 47.350484]]], "type": "MultiLineString"}, "id": "3602", "properties": {}, "type": "Feature"}, {"bbox": [8.523151, 47.394237, 8.523588, 47.394749], "geometry": {"coordinates": [[[8.523151, 47.394237], [8.523241, 47.394307], [8.523581, 47.394724], [8.523588, 47.394749]]], "type": "MultiLineString"}, "id": "3604", "properties": {}, "type": "Feature"}, {"bbox": [8.566727, 47.376163, 8.567307, 47.378437], "geometry": {"coordinates": [[[8.567307, 47.376163], [8.567217, 47.376298], [8.567185, 47.37635], [8.567147, 47.376401], [8.567102, 47.376449], [8.567052, 47.376495], [8.566997, 47.376537], [8.566936, 47.376577], [8.566892, 47.376613], [8.566852, 47.376651], [8.566817, 47.376692], [8.566788, 47.376734], [8.566764, 47.376779], [8.566746, 47.376824], [8.566733, 47.37687], [8.566727, 47.376917], [8.566727, 47.376964], [8.566732, 47.377011], [8.566752, 47.377144], [8.566775, 47.37727], [8.566799, 47.377376], [8.566839, 47.377624], [8.566861, 47.377746], [8.566917, 47.377941], [8.567, 47.378131], [8.56711, 47.378315], [8.567211, 47.378437]]], "type": "MultiLineString"}, "id": "3609", "properties": {}, "type": "Feature"}, {"bbox": [8.565023, 47.37229, 8.568656, 47.373542], "geometry": {"coordinates": [[[8.565023, 47.37229], [8.565079, 47.372318], [8.565139, 47.372342], [8.565201, 47.372364], [8.565266, 47.372381], [8.565332, 47.372395], [8.565854, 47.37247], [8.565938, 47.372483], [8.566023, 47.372492], [8.566108, 47.372496], [8.566109, 47.372501], [8.56611, 47.372505], [8.566112, 47.372509], [8.566115, 47.372512], [8.566118, 47.372516], [8.566121, 47.372519], [8.566125, 47.372523], [8.566129, 47.372526], [8.566134, 47.372528], [8.566139, 47.372531], [8.566144, 47.372533], [8.566149, 47.372535], [8.566155, 47.372536], [8.566254, 47.372568], [8.567046, 47.372889], [8.567686, 47.373148], [8.567806, 47.373198], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "3610", "properties": {}, "type": "Feature"}, {"bbox": [8.567379, 47.364435, 8.573472, 47.365156], "geometry": {"coordinates": [[[8.567379, 47.365156], [8.567691, 47.364867], [8.567795, 47.364814], [8.567906, 47.364767], [8.568022, 47.364726], [8.568142, 47.364693], [8.568266, 47.364666], [8.56844, 47.364646], [8.568612, 47.364619], [8.56878, 47.364583], [8.569188, 47.364461], [8.56923, 47.36445], [8.569273, 47.364442], [8.569317, 47.364437], [8.569362, 47.364435], [8.569407, 47.364435], [8.569451, 47.364438], [8.569495, 47.364443], [8.569538, 47.364452], [8.570096, 47.364628], [8.570475, 47.364854], [8.570544, 47.364875], [8.570616, 47.364892], [8.57069, 47.364905], [8.570765, 47.364914], [8.570841, 47.364918], [8.570917, 47.364917], [8.57131, 47.364932], [8.571443, 47.364943], [8.571492, 47.364949], [8.57177, 47.364991], [8.572092, 47.365034], [8.572111, 47.365037], [8.572131, 47.365039], [8.572151, 47.36504], [8.572171, 47.365039], [8.572191, 47.365037], [8.572211, 47.365034], [8.57223, 47.36503], [8.572249, 47.365025], [8.572266, 47.365019], [8.572283, 47.365011], [8.572299, 47.365003], [8.572532, 47.364895], [8.572594, 47.36487], [8.57266, 47.364849], [8.572727, 47.364831], [8.572797, 47.364817], [8.572868, 47.364807], [8.57294, 47.364801], [8.573013, 47.3648], [8.573086, 47.364802], [8.573472, 47.364862]]], "type": "MultiLineString"}, "id": "3611", "properties": {}, "type": "Feature"}, {"bbox": [8.528896, 47.346438, 8.532833, 47.347353], "geometry": {"coordinates": [[[8.532833, 47.347353], [8.532022, 47.347244], [8.53189, 47.347226], [8.531757, 47.347208], [8.530916, 47.347095], [8.530838, 47.347083], [8.530761, 47.347067], [8.530687, 47.347048], [8.53059, 47.347015], [8.530498, 47.346977], [8.530411, 47.346934], [8.529882, 47.346625], [8.529801, 47.346586], [8.529715, 47.346552], [8.529625, 47.346524], [8.529531, 47.346501], [8.529435, 47.346484], [8.529337, 47.346473], [8.528896, 47.346438]]], "type": "MultiLineString"}, "id": "3614", "properties": {}, "type": "Feature"}, {"bbox": [8.526674, 47.360431, 8.531516, 47.36107], "geometry": {"coordinates": [[[8.531516, 47.36107], [8.531227, 47.361003], [8.531028, 47.360957], [8.530965, 47.360943], [8.530358, 47.360833], [8.529359, 47.360652], [8.529246, 47.360635], [8.529185, 47.360627], [8.529123, 47.360621], [8.529061, 47.360615], [8.528512, 47.360572], [8.52733, 47.360481], [8.526796, 47.360439], [8.526674, 47.360431]]], "type": "MultiLineString"}, "id": "3615", "properties": {}, "type": "Feature"}, {"bbox": [8.526836, 47.354797, 8.532213, 47.356598], "geometry": {"coordinates": [[[8.532213, 47.356598], [8.532188, 47.356597], [8.532164, 47.356595], [8.532139, 47.356592], [8.532115, 47.356587], [8.532092, 47.356581], [8.53207, 47.356574], [8.532048, 47.356565], [8.532028, 47.356556], [8.532009, 47.356545], [8.531992, 47.356533], [8.531976, 47.35652], [8.531433, 47.356005], [8.531371, 47.355939], [8.531317, 47.35587], [8.531274, 47.355798], [8.531241, 47.355723], [8.531218, 47.355647], [8.531155, 47.355359], [8.531139, 47.355227], [8.531127, 47.355219], [8.531115, 47.355212], [8.531102, 47.355206], [8.531088, 47.355201], [8.531074, 47.355196], [8.531059, 47.355193], [8.531044, 47.35519], [8.531028, 47.355188], [8.530741, 47.355188], [8.530644, 47.355188], [8.530547, 47.355194], [8.530451, 47.355205], [8.530357, 47.355222], [8.530265, 47.355243], [8.530176, 47.35527], [8.5298, 47.35541], [8.529712, 47.35544], [8.529621, 47.355465], [8.529527, 47.355484], [8.529381, 47.355506], [8.528581, 47.355584], [8.528414, 47.355597], [8.528247, 47.35561], [8.528198, 47.355604], [8.52815, 47.355596], [8.528103, 47.355584], [8.528057, 47.355569], [8.528014, 47.355552], [8.527974, 47.355532], [8.527641, 47.355359], [8.527394, 47.35523], [8.527326, 47.355194], [8.527261, 47.355154], [8.527201, 47.355112], [8.527172, 47.355088], [8.527144, 47.355064], [8.527117, 47.355039], [8.526836, 47.354797]]], "type": "MultiLineString"}, "id": "3616", "properties": {}, "type": "Feature"}, {"bbox": [8.567864, 47.368652, 8.57151, 47.369514], "geometry": {"coordinates": [[[8.567864, 47.369514], [8.568092, 47.369479], [8.568118, 47.369472], [8.568142, 47.369464], [8.568166, 47.369454], [8.568188, 47.369444], [8.568208, 47.369432], [8.568911, 47.368978], [8.569275, 47.368743], [8.569295, 47.36873], [8.569316, 47.368719], [8.569339, 47.368708], [8.569363, 47.368699], [8.569388, 47.368692], [8.569414, 47.368686], [8.569599, 47.368669], [8.569722, 47.368653], [8.569743, 47.368652], [8.569763, 47.368652], [8.569784, 47.368653], [8.569805, 47.368655], [8.569825, 47.368659], [8.569844, 47.368664], [8.569863, 47.36867], [8.569881, 47.368677], [8.570435, 47.368856], [8.571219, 47.369109], [8.571333, 47.369142], [8.57139, 47.369159], [8.57143, 47.369169], [8.57147, 47.369178], [8.57151, 47.369187]]], "type": "MultiLineString"}, "id": "3617", "properties": {}, "type": "Feature"}, {"bbox": [8.552212, 47.370261, 8.556374, 47.374837], "geometry": {"coordinates": [[[8.552212, 47.374837], [8.553161, 47.373955], [8.553272, 47.373843], [8.553518, 47.373575], [8.553625, 47.373464], [8.554204, 47.372843], [8.554458, 47.37257], [8.554534, 47.372488], [8.554606, 47.372404], [8.554675, 47.372319], [8.554901, 47.372023], [8.555095, 47.371768], [8.555178, 47.371652], [8.555508, 47.371186], [8.555573, 47.371093], [8.555862, 47.370737], [8.556281, 47.370284], [8.556374, 47.370261]]], "type": "MultiLineString"}, "id": "3618", "properties": {}, "type": "Feature"}, {"bbox": [8.534581, 47.33561, 8.536929, 47.337715], "geometry": {"coordinates": [[[8.534581, 47.337715], [8.534582, 47.337644], [8.534712, 47.337565], [8.534904, 47.337426], [8.535083, 47.337279], [8.53525, 47.337125], [8.535447, 47.336884], [8.535463, 47.336859], [8.535475, 47.336833], [8.535484, 47.336806], [8.53549, 47.336779], [8.535491, 47.336752], [8.535489, 47.336724], [8.535487, 47.336572], [8.535489, 47.336549], [8.535495, 47.336526], [8.535503, 47.336503], [8.535514, 47.336481], [8.535529, 47.336459], [8.535545, 47.336439], [8.535565, 47.336419], [8.535587, 47.336401], [8.535611, 47.336385], [8.535637, 47.336369], [8.535666, 47.336356], [8.535695, 47.336344], [8.535727, 47.336334], [8.535759, 47.336326], [8.536047, 47.336261], [8.536088, 47.336251], [8.536128, 47.336238], [8.536166, 47.336222], [8.536202, 47.336205], [8.536235, 47.336185], [8.536266, 47.336164], [8.536295, 47.336141], [8.53661, 47.335876], [8.536929, 47.33561]]], "type": "MultiLineString"}, "id": "3621", "properties": {}, "type": "Feature"}, {"bbox": [8.539675, 47.390593, 8.543254, 47.39387], "geometry": {"coordinates": [[[8.539675, 47.390593], [8.540284, 47.391129], [8.540388, 47.391208], [8.541003, 47.391764], [8.541414, 47.392104], [8.541711, 47.392363], [8.541803, 47.392444], [8.542066, 47.392664], [8.542507, 47.393045], [8.542724, 47.393245], [8.543254, 47.39387]]], "type": "MultiLineString"}, "id": "3623", "properties": {}, "type": "Feature"}, {"bbox": [8.539804, 47.38606, 8.541571, 47.386681], "geometry": {"coordinates": [[[8.539804, 47.38606], [8.539847, 47.386061], [8.53989, 47.386064], [8.539932, 47.38607], [8.539973, 47.386077], [8.540521, 47.38624], [8.540704, 47.386318], [8.540798, 47.386357], [8.541438, 47.38663], [8.541571, 47.386681]]], "type": "MultiLineString"}, "id": "3624", "properties": {}, "type": "Feature"}, {"bbox": [8.478525, 47.380216, 8.480845, 47.384508], "geometry": {"coordinates": [[[8.480845, 47.384508], [8.480579, 47.384132], [8.480432, 47.38393], [8.4804, 47.383821], [8.480221, 47.383531], [8.480046, 47.383297], [8.479864, 47.383105], [8.479404, 47.382621], [8.479191, 47.382396], [8.479041, 47.382236], [8.478883, 47.38208], [8.478718, 47.381927], [8.478678, 47.381897], [8.478642, 47.381865], [8.47861, 47.381831], [8.478583, 47.381795], [8.478561, 47.381757], [8.478544, 47.381718], [8.478532, 47.381679], [8.478526, 47.381638], [8.478525, 47.381598], [8.478559, 47.38152], [8.478602, 47.381445], [8.478655, 47.381373], [8.478716, 47.381304], [8.478823, 47.381215], [8.478929, 47.381126], [8.479036, 47.381036], [8.479243, 47.38084], [8.479736, 47.380216]]], "type": "MultiLineString"}, "id": "3625", "properties": {}, "type": "Feature"}, {"bbox": [8.562775, 47.368067, 8.564216, 47.368943], "geometry": {"coordinates": [[[8.562775, 47.368943], [8.562952, 47.368887], [8.563128, 47.368827], [8.5633, 47.368764], [8.563412, 47.368716], [8.563519, 47.368663], [8.563619, 47.368604], [8.563712, 47.368539], [8.564047, 47.368246], [8.564216, 47.368067]]], "type": "MultiLineString"}, "id": "3630", "properties": {}, "type": "Feature"}, {"bbox": [8.566129, 47.360257, 8.567962, 47.361906], "geometry": {"coordinates": [[[8.566129, 47.361906], [8.567011, 47.361173], [8.567148, 47.361053], [8.567802, 47.36047], [8.567865, 47.360403], [8.567918, 47.360332], [8.567962, 47.360257]]], "type": "MultiLineString"}, "id": "3631", "properties": {}, "type": "Feature"}, {"bbox": [8.506506, 47.396949, 8.514921, 47.398849], "geometry": {"coordinates": [[[8.514921, 47.397024], [8.514885, 47.397026], [8.51485, 47.397026], [8.514815, 47.397027], [8.51464, 47.397018], [8.513678, 47.396957], [8.5135, 47.396949], [8.513321, 47.39695], [8.513143, 47.396959], [8.512693, 47.396992], [8.511756, 47.397062], [8.511324, 47.397108], [8.5109, 47.397177], [8.510486, 47.39727], [8.510084, 47.397386], [8.510054, 47.397396], [8.510024, 47.397406], [8.509994, 47.397416], [8.509476, 47.397571], [8.50897, 47.397743], [8.508478, 47.397932], [8.508116, 47.3981], [8.506716, 47.398751], [8.506648, 47.398786], [8.506578, 47.398819], [8.506506, 47.398849]]], "type": "MultiLineString"}, "id": "3642", "properties": {}, "type": "Feature"}, {"bbox": [8.53621, 47.389314, 8.539075, 47.391341], "geometry": {"coordinates": [[[8.539075, 47.389314], [8.539014, 47.389316], [8.538954, 47.389321], [8.538894, 47.38933], [8.538836, 47.389341], [8.538733, 47.389418], [8.537743, 47.390189], [8.537656, 47.390257], [8.536567, 47.391104], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "3643", "properties": {}, "type": "Feature"}, {"bbox": [8.536687, 47.365389, 8.538822, 47.36828], "geometry": {"coordinates": [[[8.538822, 47.365389], [8.538016, 47.366469], [8.537994, 47.366508], [8.537372, 47.367346], [8.537254, 47.367544], [8.536773, 47.368184], [8.536747, 47.368217], [8.536719, 47.368249], [8.536687, 47.36828]]], "type": "MultiLineString"}, "id": "3652", "properties": {}, "type": "Feature"}, {"bbox": [8.524191, 47.384974, 8.527129, 47.387813], "geometry": {"coordinates": [[[8.527129, 47.387813], [8.526041, 47.387453], [8.526018, 47.387445], [8.525997, 47.387436], [8.525977, 47.387425], [8.525959, 47.387413], [8.525946, 47.387402], [8.525934, 47.38739], [8.525923, 47.387378], [8.525914, 47.387365], [8.525906, 47.387352], [8.525884, 47.387279], [8.525398, 47.386602], [8.52489, 47.385935], [8.524191, 47.384974]]], "type": "MultiLineString"}, "id": "3658", "properties": {}, "type": "Feature"}, {"bbox": [8.550818, 47.381229, 8.555465, 47.392402], "geometry": {"coordinates": [[[8.555395, 47.381229], [8.555411, 47.381244], [8.555426, 47.38126], [8.555438, 47.381276], [8.555448, 47.381293], [8.555456, 47.381311], [8.555461, 47.381329], [8.555464, 47.381348], [8.555465, 47.381366], [8.555463, 47.381385], [8.555458, 47.381403], [8.555452, 47.381421], [8.555442, 47.381438], [8.555345, 47.381596], [8.555107, 47.382001], [8.554996, 47.382177], [8.554929, 47.382285], [8.55423, 47.383406], [8.554217, 47.383429], [8.554203, 47.383452], [8.554188, 47.383475], [8.554146, 47.383533], [8.554098, 47.38359], [8.554045, 47.383644], [8.554023, 47.383664], [8.554001, 47.383684], [8.553978, 47.383704], [8.553904, 47.383761], [8.55383, 47.383818], [8.553748, 47.383882], [8.552301, 47.384998], [8.552148, 47.385112], [8.552083, 47.385163], [8.552024, 47.385217], [8.551973, 47.385275], [8.55193, 47.385336], [8.551895, 47.385399], [8.551869, 47.385464], [8.551613, 47.386405], [8.551548, 47.386625], [8.551481, 47.386854], [8.551477, 47.386901], [8.551471, 47.386978], [8.551287, 47.388039], [8.551276, 47.3881], [8.551269, 47.388141], [8.551157, 47.388769], [8.551142, 47.388906], [8.551122, 47.389435], [8.551116, 47.389598], [8.551093, 47.389601], [8.55107, 47.389605], [8.551048, 47.389611], [8.551027, 47.389617], [8.551007, 47.389625], [8.550988, 47.389634], [8.55097, 47.389645], [8.550954, 47.389656], [8.550939, 47.389668], [8.550926, 47.389681], [8.550914, 47.389696], [8.550904, 47.389712], [8.550895, 47.389728], [8.550889, 47.389744], [8.550885, 47.389761], [8.550883, 47.389778], [8.550883, 47.389795], [8.550882, 47.389882], [8.550875, 47.390111], [8.550873, 47.390153], [8.550872, 47.390195], [8.550873, 47.390237], [8.550913, 47.390977], [8.550926, 47.391209], [8.550955, 47.391741], [8.550979, 47.392175], [8.550979, 47.392199], [8.550975, 47.392223], [8.550969, 47.392246], [8.550959, 47.392269], [8.550947, 47.392291], [8.550932, 47.392312], [8.550914, 47.392333], [8.550893, 47.392352], [8.55087, 47.39237], [8.550845, 47.392387], [8.550818, 47.392402]]], "type": "MultiLineString"}, "id": "3659", "properties": {}, "type": "Feature"}, {"bbox": [8.522118, 47.368849, 8.524814, 47.370698], "geometry": {"coordinates": [[[8.524814, 47.368849], [8.524761, 47.368974], [8.524757, 47.368983], [8.524751, 47.368992], [8.524744, 47.369001], [8.524737, 47.369009], [8.524728, 47.369017], [8.524718, 47.369024], [8.524708, 47.36903], [8.524696, 47.369036], [8.524684, 47.369042], [8.524671, 47.369046], [8.524658, 47.36905], [8.524016, 47.369193], [8.523997, 47.369199], [8.523977, 47.369206], [8.523959, 47.369214], [8.523942, 47.369223], [8.523862, 47.36927], [8.523845, 47.36928], [8.523829, 47.369291], [8.523814, 47.369302], [8.523685, 47.369412], [8.523487, 47.369583], [8.522716, 47.370211], [8.522214, 47.370621], [8.522118, 47.370698]]], "type": "MultiLineString"}, "id": "3663", "properties": {}, "type": "Feature"}, {"bbox": [8.494191, 47.403057, 8.494636, 47.403656], "geometry": {"coordinates": [[[8.494191, 47.403057], [8.49425, 47.403091], [8.494574, 47.403617], [8.494636, 47.403656]]], "type": "MultiLineString"}, "id": "3664", "properties": {}, "type": "Feature"}, {"bbox": [8.525847, 47.33507, 8.527609, 47.339286], "geometry": {"coordinates": [[[8.526595, 47.339286], [8.526588, 47.339281], [8.526581, 47.339276], [8.526575, 47.33927], [8.52657, 47.339264], [8.526566, 47.339258], [8.526562, 47.339252], [8.526559, 47.339245], [8.526557, 47.339238], [8.526556, 47.339232], [8.526556, 47.339225], [8.526555, 47.339217], [8.526554, 47.339209], [8.526551, 47.339202], [8.526548, 47.339194], [8.526543, 47.339187], [8.526538, 47.33918], [8.526381, 47.339007], [8.526225, 47.338827], [8.526096, 47.338638], [8.525993, 47.338441], [8.525918, 47.338239], [8.525884, 47.338132], [8.52586, 47.338023], [8.525847, 47.337914], [8.525848, 47.337431], [8.525856, 47.337244], [8.525891, 47.337058], [8.52595, 47.336875], [8.526035, 47.336696], [8.526144, 47.336524], [8.526222, 47.336421], [8.526308, 47.336321], [8.526424, 47.336208], [8.527565, 47.335175], [8.527609, 47.33507]]], "type": "MultiLineString"}, "id": "3679", "properties": {}, "type": "Feature"}, {"bbox": [8.562566, 47.363657, 8.564134, 47.364527], "geometry": {"coordinates": [[[8.562566, 47.364527], [8.562782, 47.364349], [8.563535, 47.363722], [8.563547, 47.363712], [8.563559, 47.363703], [8.563573, 47.363694], [8.563587, 47.363686], [8.563603, 47.363679], [8.563619, 47.363673], [8.563636, 47.363667], [8.563654, 47.363663], [8.563672, 47.36366], [8.563691, 47.363658], [8.563709, 47.363657], [8.563828, 47.363667], [8.563847, 47.363669], [8.563866, 47.363672], [8.563885, 47.363676], [8.563903, 47.363682], [8.56392, 47.363688], [8.563936, 47.363695], [8.563951, 47.363704], [8.563965, 47.363713], [8.564134, 47.363838]]], "type": "MultiLineString"}, "id": "3691", "properties": {}, "type": "Feature"}, {"bbox": [8.54998, 47.382261, 8.550897, 47.382737], "geometry": {"coordinates": [[[8.54998, 47.382261], [8.550897, 47.382737]]], "type": "MultiLineString"}, "id": "3694", "properties": {}, "type": "Feature"}, {"bbox": [8.554996, 47.381641, 8.556831, 47.382264], "geometry": {"coordinates": [[[8.556831, 47.381641], [8.556669, 47.381674], [8.556512, 47.381716], [8.55636, 47.381767], [8.556215, 47.381825], [8.556077, 47.381892], [8.555948, 47.381965], [8.555539, 47.382205], [8.555518, 47.382217], [8.555496, 47.382228], [8.555472, 47.382238], [8.555447, 47.382246], [8.555422, 47.382253], [8.555395, 47.382258], [8.555368, 47.382262], [8.55534, 47.382264], [8.555313, 47.382264], [8.555285, 47.382263], [8.555258, 47.38226], [8.555231, 47.382255], [8.554996, 47.382177]]], "type": "MultiLineString"}, "id": "3695", "properties": {}, "type": "Feature"}, {"bbox": [8.54727, 47.37996, 8.54816, 47.38039], "geometry": {"coordinates": [[[8.54727, 47.37996], [8.547455, 47.380017], [8.547932, 47.380299], [8.54816, 47.38039]]], "type": "MultiLineString"}, "id": "3696", "properties": {}, "type": "Feature"}, {"bbox": [8.475615, 47.386039, 8.479087, 47.389319], "geometry": {"coordinates": [[[8.479087, 47.389319], [8.478052, 47.38854], [8.477477, 47.38808], [8.477268, 47.387918], [8.476647, 47.387434], [8.476123, 47.386725], [8.475615, 47.386039]]], "type": "MultiLineString"}, "id": "3699", "properties": {}, "type": "Feature"}, {"bbox": [8.481822, 47.385946, 8.483786, 47.388544], "geometry": {"coordinates": [[[8.483786, 47.388544], [8.483523, 47.388446], [8.483334, 47.388384], [8.483281, 47.38836], [8.483231, 47.388333], [8.483185, 47.388304], [8.483143, 47.388271], [8.483034, 47.388186], [8.482559, 47.387854], [8.482373, 47.38773], [8.482363, 47.387678], [8.482347, 47.387627], [8.482325, 47.387577], [8.482297, 47.387528], [8.482262, 47.387481], [8.481973, 47.387023], [8.481948, 47.386981], [8.481924, 47.386939], [8.481903, 47.386896], [8.481894, 47.386876], [8.481886, 47.386856], [8.481878, 47.386836], [8.481859, 47.386766], [8.481847, 47.386695], [8.481841, 47.386624], [8.481822, 47.38615], [8.481823, 47.386127], [8.481827, 47.386104], [8.481833, 47.386082], [8.481843, 47.38606], [8.481855, 47.386038], [8.48187, 47.386018], [8.481887, 47.385998], [8.481907, 47.38598], [8.481929, 47.385962], [8.481953, 47.385946]]], "type": "MultiLineString"}, "id": "3700", "properties": {}, "type": "Feature"}, {"bbox": [8.477774, 47.384741, 8.481357, 47.38612], "geometry": {"coordinates": [[[8.481357, 47.38612], [8.481092, 47.385991], [8.48008, 47.385688], [8.479569, 47.385534], [8.479378, 47.385477], [8.4791, 47.385397], [8.478826, 47.385311], [8.478557, 47.385219], [8.478403, 47.38515], [8.478256, 47.385074], [8.478118, 47.384991], [8.478063, 47.384952], [8.477774, 47.384741]]], "type": "MultiLineString"}, "id": "3701", "properties": {}, "type": "Feature"}, {"bbox": [8.494533, 47.381261, 8.497417, 47.384235], "geometry": {"coordinates": [[[8.497417, 47.384235], [8.496704, 47.383499], [8.49597, 47.382741], [8.494824, 47.38156], [8.494599, 47.381329], [8.494533, 47.381261]]], "type": "MultiLineString"}, "id": "3703", "properties": {}, "type": "Feature"}, {"bbox": [8.507101, 47.37972, 8.509199, 47.381911], "geometry": {"coordinates": [[[8.507101, 47.37972], [8.507829, 47.380453], [8.508202, 47.380795], [8.509199, 47.381911]]], "type": "MultiLineString"}, "id": "3704", "properties": {}, "type": "Feature"}, {"bbox": [8.513509, 47.373888, 8.516642, 47.375641], "geometry": {"coordinates": [[[8.516642, 47.375641], [8.516313, 47.37546], [8.515524, 47.375017], [8.514724, 47.374571], [8.514634, 47.374517], [8.514422, 47.374398], [8.513509, 47.373888]]], "type": "MultiLineString"}, "id": "3705", "properties": {}, "type": "Feature"}, {"bbox": [8.512513, 47.374688, 8.515027, 47.37619], "geometry": {"coordinates": [[[8.515027, 47.37619], [8.514506, 47.375863], [8.513488, 47.375274], [8.512513, 47.374688]]], "type": "MultiLineString"}, "id": "3706", "properties": {}, "type": "Feature"}, {"bbox": [8.531857, 47.407652, 8.533356, 47.410361], "geometry": {"coordinates": [[[8.531857, 47.407652], [8.531892, 47.407661], [8.531937, 47.407672], [8.53198, 47.407686], [8.532021, 47.407703], [8.53206, 47.407723], [8.532096, 47.407745], [8.532128, 47.407768], [8.532158, 47.407794], [8.532191, 47.407861], [8.532252, 47.407943], [8.532428, 47.408178], [8.532577, 47.408421], [8.532695, 47.408672], [8.532971, 47.40937], [8.533106, 47.409724], [8.533356, 47.410361]]], "type": "MultiLineString"}, "id": "3708", "properties": {}, "type": "Feature"}, {"bbox": [8.540573, 47.376056, 8.540898, 47.376679], "geometry": {"coordinates": [[[8.540898, 47.376056], [8.540819, 47.37627], [8.540587, 47.376651], [8.540583, 47.376659], [8.540578, 47.376667], [8.540575, 47.376675], [8.540573, 47.376679]]], "type": "MultiLineString"}, "id": "3712", "properties": {}, "type": "Feature"}, {"bbox": [8.524191, 47.382562, 8.529792, 47.384974], "geometry": {"coordinates": [[[8.529792, 47.382562], [8.528946, 47.382934], [8.528178, 47.383269], [8.52745, 47.383587], [8.527241, 47.383646], [8.525651, 47.38435], [8.524191, 47.384974]]], "type": "MultiLineString"}, "id": "3714", "properties": {}, "type": "Feature"}, {"bbox": [8.520206, 47.396102, 8.527032, 47.396749], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.526887, 47.396126], [8.526682, 47.396167], [8.524813, 47.396557], [8.524645, 47.396597], [8.523895, 47.396749], [8.522895, 47.39664], [8.522391, 47.39659], [8.521094, 47.396453], [8.520585, 47.396392], [8.520517, 47.396383], [8.52045, 47.396369], [8.520385, 47.396351], [8.520322, 47.39633], [8.520263, 47.396304], [8.520206, 47.396276]]], "type": "MultiLineString"}, "id": "3715", "properties": {}, "type": "Feature"}, {"bbox": [8.512578, 47.379638, 8.515637, 47.380532], "geometry": {"coordinates": [[[8.515637, 47.379638], [8.515368, 47.379718], [8.513853, 47.380167], [8.512578, 47.380532]]], "type": "MultiLineString"}, "id": "3718", "properties": {}, "type": "Feature"}, {"bbox": [8.480362, 47.412418, 8.483779, 47.41293], "geometry": {"coordinates": [[[8.483779, 47.412501], [8.483495, 47.412509], [8.482554, 47.412817], [8.482458, 47.412848], [8.482396, 47.412872], [8.482331, 47.412892], [8.482263, 47.412908], [8.482194, 47.41292], [8.482123, 47.412927], [8.482052, 47.41293], [8.48198, 47.412928], [8.481909, 47.412922], [8.48184, 47.412912], [8.481771, 47.412897], [8.480624, 47.412598], [8.480577, 47.41258], [8.480533, 47.412558], [8.480492, 47.412535], [8.480454, 47.412509], [8.480419, 47.41248], [8.480389, 47.41245], [8.480362, 47.412418]]], "type": "MultiLineString"}, "id": "3720", "properties": {}, "type": "Feature"}, {"bbox": [8.552701, 47.379707, 8.558558, 47.38674], "geometry": {"coordinates": [[[8.558402, 47.379707], [8.558509, 47.37983], [8.558529, 47.379867], [8.558543, 47.379905], [8.558553, 47.379943], [8.558558, 47.379983], [8.558558, 47.380022], [8.558553, 47.380061], [8.558544, 47.3801], [8.558529, 47.380137], [8.558253, 47.380634], [8.557664, 47.381691], [8.557648, 47.381718], [8.557567, 47.381852], [8.557525, 47.3819], [8.557483, 47.381942], [8.557432, 47.381986], [8.55736, 47.382041], [8.557275, 47.382092], [8.557209, 47.382128], [8.55715, 47.382155], [8.557106, 47.382174], [8.556996, 47.382218], [8.556865, 47.382262], [8.556835, 47.382273], [8.55676, 47.382303], [8.556649, 47.382352], [8.556567, 47.382393], [8.556525, 47.382416], [8.556442, 47.382466], [8.55636, 47.38252], [8.556246, 47.382608], [8.555935, 47.382862], [8.555425, 47.383279], [8.555398, 47.383302], [8.555373, 47.383326], [8.555361, 47.38334], [8.555342, 47.383368], [8.55533, 47.383391], [8.55532, 47.383421], [8.555315, 47.383447], [8.555314, 47.38347], [8.555316, 47.383494], [8.55532, 47.383518], [8.555327, 47.383616], [8.555326, 47.383647], [8.555319, 47.383685], [8.555305, 47.383734], [8.555285, 47.383781], [8.555257, 47.383827], [8.555236, 47.383855], [8.555205, 47.38389], [8.555153, 47.38394], [8.554744, 47.384306], [8.554677, 47.384364], [8.554568, 47.384464], [8.554492, 47.384532], [8.554457, 47.384566], [8.554441, 47.384584], [8.554414, 47.38462], [8.554402, 47.38464], [8.55438, 47.384692], [8.554378, 47.384702], [8.55438, 47.384724], [8.554391, 47.384749], [8.554401, 47.384774], [8.55423, 47.384906], [8.55419, 47.384936], [8.553693, 47.385341], [8.553574, 47.385446], [8.553531, 47.385485], [8.553497, 47.38552], [8.553428, 47.385595], [8.553364, 47.385674], [8.553323, 47.385729], [8.553265, 47.385815], [8.553205, 47.385914], [8.552829, 47.386525], [8.552757, 47.386636], [8.552701, 47.38674]]], "type": "MultiLineString"}, "id": "3726", "properties": {}, "type": "Feature"}, {"bbox": [8.585319, 47.401937, 8.586087, 47.40485], "geometry": {"coordinates": [[[8.585319, 47.401937], [8.585419, 47.401965], [8.585691, 47.402479], [8.585955, 47.402977], [8.586007, 47.403087], [8.586046, 47.4032], [8.586073, 47.403315], [8.586087, 47.403446], [8.586084, 47.403579], [8.586063, 47.40371], [8.585503, 47.404843], [8.5855, 47.40485]]], "type": "MultiLineString"}, "id": "3728", "properties": {}, "type": "Feature"}, {"bbox": [8.508913, 47.376506, 8.511624, 47.378028], "geometry": {"coordinates": [[[8.511624, 47.376506], [8.510685, 47.377017], [8.509601, 47.377614], [8.509082, 47.377908], [8.509022, 47.377946], [8.508966, 47.377986], [8.508913, 47.378028]]], "type": "MultiLineString"}, "id": "3738", "properties": {}, "type": "Feature"}, {"bbox": [8.511212, 47.377124, 8.515992, 47.37913], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.515986, 47.377136], [8.515979, 47.377147], [8.51597, 47.377159], [8.515959, 47.377169], [8.515947, 47.377179], [8.515934, 47.377188], [8.51592, 47.377196], [8.515905, 47.377204], [8.515889, 47.37721], [8.515084, 47.377537], [8.513854, 47.378058], [8.513397, 47.378251], [8.513185, 47.378347], [8.513051, 47.378397], [8.511349, 47.379114], [8.511212, 47.37913]]], "type": "MultiLineString"}, "id": "3739", "properties": {}, "type": "Feature"}, {"bbox": [8.475857, 47.413287, 8.480504, 47.414583], "geometry": {"coordinates": [[[8.480504, 47.414583], [8.480146, 47.41447], [8.479516, 47.414264], [8.479346, 47.414211], [8.477815, 47.413711], [8.477694, 47.413674], [8.477572, 47.413639], [8.477449, 47.413605], [8.477365, 47.413583], [8.47728, 47.413562], [8.477195, 47.413542], [8.47706, 47.413509], [8.476881, 47.413467], [8.476598, 47.413407], [8.476312, 47.413355], [8.476024, 47.413309], [8.475857, 47.413287]]], "type": "MultiLineString"}, "id": "3743", "properties": {}, "type": "Feature"}, {"bbox": [8.550441, 47.37265, 8.551504, 47.373039], "geometry": {"coordinates": [[[8.550441, 47.37265], [8.550713, 47.372755], [8.551468, 47.373027], [8.551504, 47.373039]]], "type": "MultiLineString"}, "id": "3744", "properties": {}, "type": "Feature"}, {"bbox": [8.54608, 47.416323, 8.548601, 47.418525], "geometry": {"coordinates": [[[8.54608, 47.416323], [8.546177, 47.416437], [8.546874, 47.416725], [8.547318, 47.416904], [8.547397, 47.416943], [8.547443, 47.417052], [8.547767, 47.417396], [8.548201, 47.417889], [8.548592, 47.41836], [8.548596, 47.418366], [8.548598, 47.418372], [8.5486, 47.418378], [8.548601, 47.418385], [8.548601, 47.418391], [8.548601, 47.418397], [8.548599, 47.418403], [8.548597, 47.41841], [8.548594, 47.418416], [8.54859, 47.418421], [8.548585, 47.418427], [8.54858, 47.418432], [8.548574, 47.418437], [8.548568, 47.418441], [8.54856, 47.418445], [8.548553, 47.418449], [8.548545, 47.418452], [8.548536, 47.418455], [8.548528, 47.418457], [8.548495, 47.418465], [8.548462, 47.418472], [8.548428, 47.418476], [8.548394, 47.418478], [8.547751, 47.418507], [8.547434, 47.418525]]], "type": "MultiLineString"}, "id": "3750", "properties": {}, "type": "Feature"}, {"bbox": [8.562246, 47.364803, 8.563289, 47.36575], "geometry": {"coordinates": [[[8.562246, 47.36575], [8.562317, 47.365692], [8.56298, 47.365164], [8.563007, 47.365139], [8.56303, 47.365114], [8.56318, 47.364934], [8.563289, 47.364803]]], "type": "MultiLineString"}, "id": "3753", "properties": {}, "type": "Feature"}, {"bbox": [8.553646, 47.386339, 8.55424, 47.387556], "geometry": {"coordinates": [[[8.55424, 47.386339], [8.553867, 47.386738], [8.553809, 47.386803], [8.553759, 47.386871], [8.553718, 47.386941], [8.553686, 47.387014], [8.553663, 47.387089], [8.55365, 47.387164], [8.553646, 47.38724], [8.553648, 47.387288], [8.553656, 47.387335], [8.55367, 47.387382], [8.553689, 47.387428], [8.553715, 47.387472], [8.553746, 47.387515], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "3760", "properties": {}, "type": "Feature"}, {"bbox": [8.469398, 47.389885, 8.471296, 47.391287], "geometry": {"coordinates": [[[8.471296, 47.389885], [8.47125, 47.389908], [8.471203, 47.389931], [8.471157, 47.389954], [8.470996, 47.390041], [8.470841, 47.390132], [8.47069, 47.390228], [8.470634, 47.390267], [8.470577, 47.390305], [8.47052, 47.390344], [8.470281, 47.390528], [8.469481, 47.391179], [8.46946, 47.391199], [8.46944, 47.391219], [8.469424, 47.391241], [8.46941, 47.391264], [8.469398, 47.391287]]], "type": "MultiLineString"}, "id": "3764", "properties": {}, "type": "Feature"}, {"bbox": [8.478691, 47.386868, 8.479804, 47.38719], "geometry": {"coordinates": [[[8.478691, 47.386906], [8.478884, 47.386873], [8.478914, 47.38687], [8.478944, 47.386868], [8.478974, 47.386868], [8.479004, 47.386871], [8.479033, 47.386875], [8.479341, 47.387164], [8.479346, 47.387168], [8.479351, 47.387172], [8.479356, 47.387176], [8.479362, 47.387179], [8.479369, 47.387182], [8.479375, 47.387184], [8.479382, 47.387186], [8.479389, 47.387188], [8.479397, 47.387189], [8.479404, 47.38719], [8.479412, 47.38719], [8.47942, 47.38719], [8.479427, 47.387189], [8.479434, 47.387188], [8.479804, 47.387036]]], "type": "MultiLineString"}, "id": "3765", "properties": {}, "type": "Feature"}, {"bbox": [8.483475, 47.393377, 8.484642, 47.395113], "geometry": {"coordinates": [[[8.484642, 47.395113], [8.484567, 47.395027], [8.484299, 47.394655], [8.483939, 47.394126], [8.483909, 47.394082], [8.483475, 47.393377]]], "type": "MultiLineString"}, "id": "3767", "properties": {}, "type": "Feature"}, {"bbox": [8.484642, 47.395113, 8.485592, 47.396118], "geometry": {"coordinates": [[[8.485592, 47.396118], [8.485426, 47.395927], [8.485023, 47.395546], [8.484642, 47.395113]]], "type": "MultiLineString"}, "id": "3768", "properties": {}, "type": "Feature"}, {"bbox": [8.527586, 47.359029, 8.528704, 47.35979], "geometry": {"coordinates": [[[8.527586, 47.359766], [8.527872, 47.359789], [8.527896, 47.35979], [8.52792, 47.359789], [8.527944, 47.359787], [8.527968, 47.359783], [8.527991, 47.359778], [8.528014, 47.359772], [8.528035, 47.359764], [8.528055, 47.359755], [8.528074, 47.359744], [8.528092, 47.359733], [8.528108, 47.35972], [8.528122, 47.359707], [8.528155, 47.35967], [8.528664, 47.359079], [8.528677, 47.359065], [8.528689, 47.359049], [8.5287, 47.359034], [8.528701, 47.359033], [8.528702, 47.359031], [8.528704, 47.359029]]], "type": "MultiLineString"}, "id": "3782", "properties": {}, "type": "Feature"}, {"bbox": [8.514617, 47.368874, 8.516998, 47.370381], "geometry": {"coordinates": [[[8.516998, 47.368874], [8.516902, 47.368878], [8.516807, 47.368888], [8.516714, 47.368904], [8.516623, 47.368926], [8.516536, 47.368953], [8.516453, 47.368985], [8.516374, 47.369022], [8.516301, 47.369064], [8.514772, 47.370243], [8.514617, 47.370381]]], "type": "MultiLineString"}, "id": "3783", "properties": {}, "type": "Feature"}, {"bbox": [8.528133, 47.412674, 8.529068, 47.413626], "geometry": {"coordinates": [[[8.528133, 47.412674], [8.528273, 47.412752], [8.528402, 47.41283], [8.528519, 47.412916], [8.528625, 47.413009], [8.528719, 47.413107], [8.5288, 47.413211], [8.528867, 47.413319], [8.528921, 47.41343], [8.528972, 47.413572], [8.529068, 47.413626]]], "type": "MultiLineString"}, "id": "3784", "properties": {}, "type": "Feature"}, {"bbox": [8.481006, 47.381503, 8.482589, 47.383788], "geometry": {"coordinates": [[[8.482589, 47.381503], [8.481647, 47.382288], [8.481619, 47.382342], [8.481565, 47.382428], [8.48104, 47.383082], [8.481024, 47.383119], [8.481013, 47.383157], [8.481007, 47.383196], [8.481006, 47.383234], [8.481009, 47.383273], [8.481017, 47.383311], [8.481031, 47.383349], [8.481048, 47.383386], [8.481071, 47.383422], [8.481097, 47.383456], [8.4814, 47.383788]]], "type": "MultiLineString"}, "id": "3785", "properties": {}, "type": "Feature"}, {"bbox": [8.574712, 47.374595, 8.579742, 47.377449], "geometry": {"coordinates": [[[8.574712, 47.377449], [8.574751, 47.377428], [8.57479, 47.377403], [8.574826, 47.377375], [8.575433, 47.376759], [8.575527, 47.37668], [8.57563, 47.376607], [8.575743, 47.37654], [8.575864, 47.376481], [8.575993, 47.376429], [8.576128, 47.376386], [8.577186, 47.376093], [8.577232, 47.376072], [8.577275, 47.37605], [8.577315, 47.376025], [8.577351, 47.375997], [8.577384, 47.375968], [8.577569, 47.375809], [8.577759, 47.375654], [8.577953, 47.375501], [8.578058, 47.375434], [8.578169, 47.375369], [8.578284, 47.375307], [8.578333, 47.375281], [8.579621, 47.374653], [8.579742, 47.374595]]], "type": "MultiLineString"}, "id": "3793", "properties": {}, "type": "Feature"}, {"bbox": [8.543576, 47.367474, 8.545177, 47.368987], "geometry": {"coordinates": [[[8.545177, 47.367474], [8.545123, 47.367552], [8.54507, 47.367623], [8.545008, 47.367691], [8.544937, 47.367754], [8.544892, 47.367793], [8.544639, 47.36803], [8.544313, 47.368336], [8.544164, 47.368475], [8.543839, 47.368758], [8.543576, 47.368987]]], "type": "MultiLineString"}, "id": "3795", "properties": {}, "type": "Feature"}, {"bbox": [8.527097, 47.411953, 8.527982, 47.412916], "geometry": {"coordinates": [[[8.527966, 47.411953], [8.527972, 47.412038], [8.527982, 47.412135], [8.527982, 47.412144], [8.527981, 47.412152], [8.527979, 47.412161], [8.527976, 47.412169], [8.527972, 47.412178], [8.527967, 47.412186], [8.527961, 47.412193], [8.527954, 47.4122], [8.527946, 47.412207], [8.52718, 47.412847], [8.527097, 47.412916]]], "type": "MultiLineString"}, "id": "3800", "properties": {}, "type": "Feature"}, {"bbox": [8.522439, 47.395679, 8.522895, 47.39664], "geometry": {"coordinates": [[[8.522439, 47.395679], [8.522462, 47.395735], [8.522709, 47.396198], [8.522893, 47.396543], [8.522895, 47.39664]]], "type": "MultiLineString"}, "id": "3801", "properties": {}, "type": "Feature"}, {"bbox": [8.512736, 47.37728, 8.5157, 47.379342], "geometry": {"coordinates": [[[8.512736, 47.37728], [8.513096, 47.37753], [8.513352, 47.377707], [8.513854, 47.378058], [8.514128, 47.378248], [8.514456, 47.378477], [8.514669, 47.378625], [8.515192, 47.378989], [8.51531, 47.379072], [8.5157, 47.379342]]], "type": "MultiLineString"}, "id": "3802", "properties": {}, "type": "Feature"}, {"bbox": [8.563397, 47.372418, 8.565638, 47.373445], "geometry": {"coordinates": [[[8.563397, 47.372418], [8.56358, 47.372434], [8.563761, 47.372461], [8.563937, 47.372499], [8.564108, 47.372547], [8.564272, 47.372604], [8.564428, 47.372671], [8.564575, 47.372747], [8.565587, 47.373398], [8.565597, 47.373403], [8.565606, 47.37341], [8.565615, 47.373416], [8.565622, 47.373423], [8.565629, 47.373431], [8.565635, 47.373439], [8.565638, 47.373445]]], "type": "MultiLineString"}, "id": "3812", "properties": {}, "type": "Feature"}, {"bbox": [8.540647, 47.388323, 8.541333, 47.388427], "geometry": {"coordinates": [[[8.540647, 47.388323], [8.54069, 47.388335], [8.540731, 47.388348], [8.54077, 47.388365], [8.540808, 47.388383], [8.540843, 47.388403], [8.540875, 47.388426], [8.541039, 47.388385], [8.541168, 47.388399], [8.541333, 47.388427]]], "type": "MultiLineString"}, "id": "3817", "properties": {}, "type": "Feature"}, {"bbox": [8.541571, 47.386681, 8.544033, 47.387779], "geometry": {"coordinates": [[[8.541571, 47.386681], [8.54167, 47.38672], [8.542482, 47.386982], [8.542518, 47.386996], [8.542553, 47.38701], [8.542588, 47.387024], [8.542644, 47.387048], [8.542697, 47.387074], [8.54275, 47.387101], [8.543172, 47.387324], [8.54323, 47.387354], [8.543342, 47.387413], [8.543876, 47.387697], [8.544033, 47.387779]]], "type": "MultiLineString"}, "id": "3818", "properties": {}, "type": "Feature"}, {"bbox": [8.532971, 47.408999, 8.534994, 47.40937], "geometry": {"coordinates": [[[8.534994, 47.408999], [8.534773, 47.409044], [8.532971, 47.40937]]], "type": "MultiLineString"}, "id": "3823", "properties": {}, "type": "Feature"}, {"bbox": [8.555339, 47.354977, 8.556614, 47.35553], "geometry": {"coordinates": [[[8.555339, 47.354977], [8.555432, 47.355029], [8.556477, 47.355512], [8.556614, 47.35553]]], "type": "MultiLineString"}, "id": "3828", "properties": {}, "type": "Feature"}, {"bbox": [8.547623, 47.418929, 8.548735, 47.419286], "geometry": {"coordinates": [[[8.547623, 47.419173], [8.547753, 47.419182], [8.54784, 47.419269], [8.547861, 47.419275], [8.547883, 47.41928], [8.547906, 47.419283], [8.547928, 47.419285], [8.547951, 47.419286], [8.547974, 47.419286], [8.547997, 47.419284], [8.548019, 47.419281], [8.548041, 47.419276], [8.548285, 47.419172], [8.548516, 47.419055], [8.548735, 47.418929]]], "type": "MultiLineString"}, "id": "3831", "properties": {}, "type": "Feature"}, {"bbox": [8.586488, 47.39942, 8.586943, 47.399625], "geometry": {"coordinates": [[[8.586943, 47.39942], [8.586795, 47.399492], [8.586643, 47.39956], [8.586488, 47.399625]]], "type": "MultiLineString"}, "id": "3841", "properties": {}, "type": "Feature"}, {"bbox": [8.569725, 47.372135, 8.57, 47.372898], "geometry": {"coordinates": [[[8.57, 47.372135], [8.569988, 47.372163], [8.569977, 47.372192], [8.569967, 47.37222], [8.569727, 47.372765], [8.569725, 47.372785], [8.569725, 47.372804], [8.569729, 47.372824], [8.569734, 47.372843], [8.569742, 47.372862], [8.569753, 47.372881], [8.569766, 47.372898]]], "type": "MultiLineString"}, "id": "3842", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.4144, 8.55519, 47.416618], "geometry": {"coordinates": [[[8.552866, 47.4144], [8.553217, 47.414892], [8.55406, 47.415766], [8.554296, 47.416005], [8.554565, 47.416229], [8.554863, 47.416433], [8.55519, 47.416618]]], "type": "MultiLineString"}, "id": "3844", "properties": {}, "type": "Feature"}, {"bbox": [8.479637, 47.403609, 8.497095, 47.409989], "geometry": {"coordinates": [[[8.497095, 47.403609], [8.496873, 47.403649], [8.49665, 47.403685], [8.496425, 47.403716], [8.496256, 47.40372], [8.496088, 47.403734], [8.495922, 47.403756], [8.495759, 47.403787], [8.495594, 47.403817], [8.495428, 47.403845], [8.495261, 47.403871], [8.49513, 47.403895], [8.495, 47.40392], [8.494871, 47.403948], [8.494786, 47.403972], [8.494741, 47.403984], [8.494633, 47.404019], [8.493957, 47.404266], [8.493852, 47.4043], [8.493823, 47.404306], [8.493631, 47.404366], [8.492833, 47.404682], [8.492443, 47.404821], [8.492045, 47.404949], [8.491639, 47.405065], [8.491057, 47.405236], [8.490406, 47.405426], [8.490205, 47.405484], [8.490009, 47.405537], [8.489775, 47.405596], [8.489292, 47.405708], [8.489186, 47.405734], [8.489083, 47.405767], [8.488985, 47.405804], [8.488891, 47.405848], [8.488802, 47.405896], [8.488687, 47.405982], [8.488583, 47.406076], [8.488493, 47.406175], [8.488415, 47.406279], [8.488365, 47.406366], [8.488304, 47.406449], [8.488233, 47.406529], [8.488151, 47.406604], [8.488061, 47.406674], [8.487961, 47.406738], [8.487881, 47.406787], [8.487797, 47.406835], [8.487711, 47.406879], [8.487004, 47.40727], [8.486901, 47.407315], [8.486797, 47.407357], [8.48669, 47.407398], [8.486517, 47.407476], [8.486331, 47.407534], [8.486141, 47.407588], [8.48593, 47.407643], [8.485465, 47.407759], [8.484922, 47.407913], [8.484836, 47.407938], [8.484814, 47.407947], [8.484317, 47.408154], [8.483981, 47.408306], [8.483188, 47.408676], [8.483032, 47.408749], [8.482846, 47.408825], [8.482651, 47.408889], [8.482448, 47.408942], [8.481888, 47.409073], [8.481649, 47.409134], [8.481415, 47.409202], [8.481186, 47.409279], [8.480926, 47.409377], [8.480678, 47.409488], [8.480441, 47.409609], [8.480191, 47.409753], [8.479923, 47.40988], [8.479637, 47.409989]]], "type": "MultiLineString"}, "id": "3849", "properties": {}, "type": "Feature"}, {"bbox": [8.596752, 47.353921, 8.601275, 47.355267], "geometry": {"coordinates": [[[8.601275, 47.353921], [8.60101, 47.353935], [8.599348, 47.354078], [8.599064, 47.354103], [8.598785, 47.354145], [8.598512, 47.354203], [8.598247, 47.354277], [8.598014, 47.354358], [8.597791, 47.354451], [8.597579, 47.354556], [8.597321, 47.354742], [8.597085, 47.354941], [8.596873, 47.355151], [8.596752, 47.355267]]], "type": "MultiLineString"}, "id": "3851", "properties": {}, "type": "Feature"}, {"bbox": [8.485362, 47.399703, 8.493699, 47.402742], "geometry": {"coordinates": [[[8.493699, 47.399993], [8.49368, 47.399984], [8.493623, 47.399948], [8.493572, 47.399909], [8.493526, 47.399867], [8.493423, 47.399754], [8.493413, 47.399746], [8.493402, 47.399738], [8.493389, 47.399731], [8.493376, 47.399725], [8.493362, 47.399719], [8.493348, 47.399715], [8.493333, 47.399711], [8.493317, 47.399708], [8.493301, 47.399706], [8.493285, 47.399705], [8.492885, 47.39972], [8.49257, 47.399747], [8.492379, 47.399754], [8.492188, 47.399751], [8.491998, 47.39974], [8.491491, 47.399706], [8.491435, 47.399703], [8.491378, 47.399703], [8.491322, 47.399707], [8.491266, 47.399714], [8.491212, 47.399724], [8.490776, 47.399847], [8.490628, 47.399886], [8.490539, 47.399914], [8.490475, 47.399935], [8.490368, 47.399977], [8.490329, 47.399994], [8.490142, 47.40008], [8.489844, 47.400219], [8.489691, 47.40031], [8.489638, 47.400335], [8.488737, 47.400764], [8.488316, 47.400984], [8.488126, 47.401072], [8.48781, 47.401274], [8.486942, 47.401838], [8.486427, 47.402149], [8.4859, 47.402451], [8.485362, 47.402742]]], "type": "MultiLineString"}, "id": "3854", "properties": {}, "type": "Feature"}, {"bbox": [8.525193, 47.377384, 8.526372, 47.377857], "geometry": {"coordinates": [[[8.526372, 47.377384], [8.525769, 47.377626], [8.525612, 47.377689], [8.525193, 47.377857]]], "type": "MultiLineString"}, "id": "3855", "properties": {}, "type": "Feature"}, {"bbox": [8.497676, 47.399388, 8.501528, 47.401882], "geometry": {"coordinates": [[[8.501528, 47.399388], [8.500734, 47.399693], [8.499609, 47.400144], [8.499545, 47.400169], [8.499496, 47.40019], [8.499334, 47.400261], [8.499181, 47.400341], [8.499039, 47.40043], [8.498907, 47.400525], [8.498786, 47.400628], [8.498552, 47.400854], [8.498357, 47.401075], [8.498233, 47.401219], [8.49798, 47.40153], [8.497884, 47.401632], [8.497727, 47.40181], [8.497676, 47.401882]]], "type": "MultiLineString"}, "id": "3859", "properties": {}, "type": "Feature"}, {"bbox": [8.584088, 47.351136, 8.584271, 47.351311], "geometry": {"coordinates": [[[8.584088, 47.351311], [8.584121, 47.351295], [8.584151, 47.351276], [8.584178, 47.351256], [8.584203, 47.351235], [8.584225, 47.351211], [8.584244, 47.351187], [8.584259, 47.351162], [8.584271, 47.351136]]], "type": "MultiLineString"}, "id": "3860", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.331007, 8.536804, 47.331143], "geometry": {"coordinates": [[[8.53634, 47.331143], [8.536355, 47.331124], [8.536373, 47.331106], [8.536393, 47.331089], [8.536414, 47.331074], [8.536438, 47.33106], [8.536464, 47.331047], [8.536491, 47.331037], [8.536519, 47.331027], [8.536548, 47.33102], [8.53658, 47.331014], [8.536612, 47.33101], [8.536644, 47.331008], [8.536677, 47.331007], [8.536709, 47.331009], [8.536741, 47.331013], [8.536773, 47.331018], [8.536804, 47.331026]]], "type": "MultiLineString"}, "id": "3861", "properties": {}, "type": "Feature"}, {"bbox": [8.4778, 47.384952, 8.478063, 47.385252], "geometry": {"coordinates": [[[8.477807, 47.385252], [8.477803, 47.385198], [8.477801, 47.385187], [8.4778, 47.385177], [8.477801, 47.385166], [8.477803, 47.385156], [8.477807, 47.385146], [8.477811, 47.385136], [8.477817, 47.385127], [8.477824, 47.385117], [8.477832, 47.385109], [8.477842, 47.3851], [8.477852, 47.385093], [8.478063, 47.384952]]], "type": "MultiLineString"}, "id": "3866", "properties": {}, "type": "Feature"}, {"bbox": [8.499608, 47.3652, 8.502572, 47.366964], "geometry": {"coordinates": [[[8.499608, 47.366964], [8.500564, 47.365373], [8.500624, 47.365308], [8.500668, 47.365285], [8.500697, 47.365272], [8.500726, 47.365262], [8.500755, 47.365254], [8.500788, 47.365249], [8.500853, 47.365244], [8.500943, 47.365242], [8.502238, 47.365246], [8.502341, 47.365245], [8.502362, 47.365246], [8.502572, 47.3652]]], "type": "MultiLineString"}, "id": "3871", "properties": {}, "type": "Feature"}, {"bbox": [8.588245, 47.397659, 8.588409, 47.397841], "geometry": {"coordinates": [[[8.588245, 47.397659], [8.588282, 47.397684], [8.588316, 47.397712], [8.588345, 47.397742], [8.588371, 47.397774], [8.588392, 47.397807], [8.588409, 47.397841]]], "type": "MultiLineString"}, "id": "3875", "properties": {}, "type": "Feature"}, {"bbox": [8.59131, 47.359998, 8.591927, 47.360989], "geometry": {"coordinates": [[[8.59131, 47.360989], [8.591398, 47.360907], [8.591478, 47.36082], [8.591548, 47.36073], [8.591651, 47.360574], [8.591736, 47.360413], [8.591804, 47.360248], [8.591878, 47.360045], [8.591882, 47.360038], [8.591886, 47.360031], [8.591891, 47.360025], [8.591896, 47.360019], [8.591903, 47.360013], [8.59191, 47.360008], [8.591918, 47.360003], [8.591927, 47.359998]]], "type": "MultiLineString"}, "id": "3876", "properties": {}, "type": "Feature"}, {"bbox": [8.531936, 47.381063, 8.534548, 47.382455], "geometry": {"coordinates": [[[8.531936, 47.381063], [8.53206, 47.381129], [8.532066, 47.381132], [8.532072, 47.381134], [8.532079, 47.381137], [8.532086, 47.381138], [8.532093, 47.38114], [8.5321, 47.381141], [8.532108, 47.381142], [8.532115, 47.381142], [8.532122, 47.381141], [8.53213, 47.381141], [8.532137, 47.381139], [8.532144, 47.381138], [8.532151, 47.381136], [8.532157, 47.381133], [8.532163, 47.38113], [8.532229, 47.38109], [8.532235, 47.381087], [8.532241, 47.381083], [8.532248, 47.38108], [8.532256, 47.381077], [8.532263, 47.381075], [8.532271, 47.381073], [8.532279, 47.381072], [8.532287, 47.381071], [8.532295, 47.381071], [8.532303, 47.381071], [8.532311, 47.381072], [8.532319, 47.381073], [8.532327, 47.381074], [8.532335, 47.381076], [8.532342, 47.381078], [8.532349, 47.381081], [8.532356, 47.381085], [8.532362, 47.381088], [8.532368, 47.381092], [8.532944, 47.381444], [8.533006, 47.381495], [8.533634, 47.381886], [8.534548, 47.382455]]], "type": "MultiLineString"}, "id": "3882", "properties": {}, "type": "Feature"}, {"bbox": [8.532368, 47.38002, 8.536921, 47.382861], "geometry": {"coordinates": [[[8.536921, 47.38002], [8.535182, 47.381008], [8.533634, 47.381886], [8.53351, 47.381971], [8.533322, 47.382114], [8.533272, 47.382152], [8.532872, 47.382464], [8.532741, 47.382567], [8.532368, 47.382861]]], "type": "MultiLineString"}, "id": "3883", "properties": {}, "type": "Feature"}, {"bbox": [8.530819, 47.373815, 8.531953, 47.374326], "geometry": {"coordinates": [[[8.531953, 47.373815], [8.531752, 47.373875], [8.531559, 47.373945], [8.531375, 47.374025], [8.530944, 47.374237], [8.530901, 47.374266], [8.53086, 47.374296], [8.530819, 47.374326]]], "type": "MultiLineString"}, "id": "3884", "properties": {}, "type": "Feature"}, {"bbox": [8.503908, 47.396079, 8.504316, 47.396528], "geometry": {"coordinates": [[[8.504316, 47.396528], [8.503908, 47.396079]]], "type": "MultiLineString"}, "id": "3886", "properties": {}, "type": "Feature"}, {"bbox": [8.531347, 47.404896, 8.53498, 47.408017], "geometry": {"coordinates": [[[8.53498, 47.404896], [8.534598, 47.405001], [8.534573, 47.40501], [8.53455, 47.405021], [8.534528, 47.405032], [8.534508, 47.405045], [8.534489, 47.405059], [8.534472, 47.405074], [8.534257, 47.405312], [8.534241, 47.405325], [8.534223, 47.405337], [8.534204, 47.405348], [8.534183, 47.405357], [8.534161, 47.405366], [8.534138, 47.405372], [8.534129, 47.40537], [8.53412, 47.405368], [8.53411, 47.405367], [8.534101, 47.405366], [8.534091, 47.405366], [8.534081, 47.405367], [8.534072, 47.405368], [8.534063, 47.40537], [8.534054, 47.405372], [8.534045, 47.405375], [8.534037, 47.405378], [8.534029, 47.405382], [8.534022, 47.405386], [8.534015, 47.405391], [8.533154, 47.406289], [8.532017, 47.40748], [8.531857, 47.407652], [8.531681, 47.407835], [8.531647, 47.407866], [8.531608, 47.407895], [8.531566, 47.407921], [8.531521, 47.407944], [8.531473, 47.407965], [8.531347, 47.408017]]], "type": "MultiLineString"}, "id": "3888", "properties": {}, "type": "Feature"}, {"bbox": [8.524952, 47.377977, 8.526722, 47.378908], "geometry": {"coordinates": [[[8.526722, 47.377977], [8.526264, 47.378218], [8.525749, 47.378489], [8.525629, 47.378552], [8.52506, 47.378851], [8.524952, 47.378908]]], "type": "MultiLineString"}, "id": "3889", "properties": {}, "type": "Feature"}, {"bbox": [8.528017, 47.384959, 8.529065, 47.386521], "geometry": {"coordinates": [[[8.528017, 47.384959], [8.528539, 47.385685], [8.528584, 47.385779], [8.52861, 47.38584], [8.52874, 47.386021], [8.52878, 47.386095], [8.528816, 47.38617], [8.528847, 47.386246], [8.528909, 47.386414], [8.529065, 47.386521]]], "type": "MultiLineString"}, "id": "3895", "properties": {}, "type": "Feature"}, {"bbox": [8.551155, 47.376436, 8.5582, 47.38133], "geometry": {"coordinates": [[[8.551155, 47.38133], [8.551338, 47.381195], [8.5515, 47.381049], [8.55164, 47.380893], [8.55187, 47.380646], [8.55213, 47.380414], [8.552419, 47.380197], [8.553215, 47.37967], [8.553947, 47.379219], [8.554077, 47.379137], [8.554717, 47.378792], [8.554914, 47.378707], [8.555089, 47.378636], [8.555271, 47.378575], [8.555461, 47.378525], [8.556075, 47.378399], [8.55629, 47.378354], [8.556392, 47.378321], [8.55649, 47.378282], [8.556582, 47.378237], [8.556668, 47.378187], [8.556746, 47.378131], [8.556791, 47.378092], [8.556831, 47.378051], [8.556866, 47.378008], [8.556894, 47.377963], [8.556916, 47.377916], [8.557044, 47.377563], [8.557052, 47.377523], [8.557057, 47.377483], [8.557057, 47.377443], [8.557194, 47.37726], [8.557271, 47.377167], [8.557624, 47.376884], [8.55783, 47.376711], [8.558014, 47.376567], [8.558115, 47.376483], [8.5582, 47.376436]]], "type": "MultiLineString"}, "id": "3905", "properties": {}, "type": "Feature"}, {"bbox": [8.525526, 47.351791, 8.526934, 47.361295], "geometry": {"coordinates": [[[8.525526, 47.361295], [8.525582, 47.36112], [8.525625, 47.360942], [8.525656, 47.360764], [8.525722, 47.360358], [8.525738, 47.360307], [8.525821, 47.359803], [8.525828, 47.35976], [8.525941, 47.35907], [8.526079, 47.358227], [8.526088, 47.358074], [8.526181, 47.356572], [8.526178, 47.356463], [8.526171, 47.356227], [8.526058, 47.354878], [8.526016, 47.354383], [8.526055, 47.354329], [8.526119, 47.354142], [8.52633, 47.353502], [8.526349, 47.353446], [8.526383, 47.353351], [8.526934, 47.351791]]], "type": "MultiLineString"}, "id": "3907", "properties": {}, "type": "Feature"}, {"bbox": [8.570167, 47.39901, 8.573345, 47.403237], "geometry": {"coordinates": [[[8.570219, 47.403237], [8.570218, 47.403223], [8.57022, 47.403195], [8.570226, 47.403167], [8.570236, 47.40314], [8.57025, 47.403113], [8.570267, 47.403087], [8.570462, 47.402825], [8.57046, 47.402775], [8.570452, 47.402725], [8.570439, 47.402676], [8.57042, 47.402627], [8.570188, 47.402245], [8.570178, 47.402221], [8.570172, 47.402197], [8.570168, 47.402172], [8.570167, 47.402147], [8.57017, 47.402122], [8.570175, 47.402097], [8.570184, 47.402073], [8.570195, 47.40205], [8.570209, 47.402027], [8.570227, 47.402005], [8.570246, 47.401984], [8.570353, 47.401903], [8.570778, 47.401653], [8.571079, 47.401377], [8.572053, 47.400534], [8.572262, 47.400355], [8.572448, 47.400165], [8.572612, 47.399966], [8.57275, 47.399758], [8.572864, 47.399544], [8.572873, 47.399507], [8.572887, 47.399472], [8.572906, 47.399438], [8.572929, 47.399405], [8.572957, 47.399373], [8.572989, 47.399344], [8.573345, 47.39901]]], "type": "MultiLineString"}, "id": "3911", "properties": {}, "type": "Feature"}, {"bbox": [8.55424, 47.385469, 8.555851, 47.386466], "geometry": {"coordinates": [[[8.55424, 47.386339], [8.554351, 47.386371], [8.554554, 47.38646], [8.55456, 47.386462], [8.554567, 47.386463], [8.554573, 47.386465], [8.55458, 47.386466], [8.554587, 47.386466], [8.554594, 47.386466], [8.554601, 47.386466], [8.554608, 47.386465], [8.554615, 47.386464], [8.554622, 47.386462], [8.554628, 47.38646], [8.554635, 47.386458], [8.554641, 47.386455], [8.554646, 47.386453], [8.554651, 47.386449], [8.554656, 47.386446], [8.55466, 47.386442], [8.555084, 47.386142], [8.555235, 47.386066], [8.555494, 47.385754], [8.555851, 47.385469]]], "type": "MultiLineString"}, "id": "3915", "properties": {}, "type": "Feature"}, {"bbox": [8.52294, 47.340197, 8.530459, 47.341594], "geometry": {"coordinates": [[[8.530459, 47.341323], [8.529393, 47.341524], [8.529325, 47.341537], [8.52919, 47.341564], [8.529052, 47.341582], [8.528913, 47.341592], [8.528772, 47.341594], [8.528517, 47.341584], [8.528469, 47.341582], [8.528422, 47.341579], [8.528375, 47.341573], [8.528313, 47.341563], [8.528253, 47.341549], [8.528195, 47.341533], [8.527777, 47.341374], [8.527529, 47.341293], [8.527497, 47.341281], [8.526832, 47.341023], [8.526537, 47.340909], [8.526513, 47.340901], [8.52649, 47.340893], [8.526466, 47.340885], [8.526391, 47.340864], [8.526315, 47.340845], [8.526237, 47.34083], [8.526222, 47.340829], [8.526207, 47.340828], [8.526192, 47.340827], [8.52608, 47.340824], [8.525967, 47.340828], [8.525855, 47.340837], [8.525745, 47.340853], [8.525637, 47.340875], [8.525572, 47.340889], [8.525506, 47.340903], [8.525439, 47.340915], [8.525304, 47.340935], [8.525167, 47.340951], [8.525029, 47.340961], [8.524721, 47.340956], [8.524413, 47.340951], [8.524032, 47.340958], [8.523982, 47.340957], [8.523932, 47.340953], [8.523883, 47.340945], [8.523835, 47.340935], [8.523787, 47.340922], [8.523741, 47.340906], [8.523698, 47.340888], [8.523657, 47.340867], [8.523619, 47.340843], [8.523584, 47.340818], [8.523553, 47.34079], [8.523525, 47.340761], [8.523287, 47.340497], [8.52294, 47.340197]]], "type": "MultiLineString"}, "id": "3922", "properties": {}, "type": "Feature"}, {"bbox": [8.602959, 47.356441, 8.604386, 47.357359], "geometry": {"coordinates": [[[8.602959, 47.356441], [8.603063, 47.356534], [8.603158, 47.356632], [8.603242, 47.356735], [8.603274, 47.35676], [8.603308, 47.356784], [8.603343, 47.356806], [8.603419, 47.356835], [8.603495, 47.356863], [8.60357, 47.356892], [8.603816, 47.357023], [8.604057, 47.357157], [8.604293, 47.357295], [8.604386, 47.357359]]], "type": "MultiLineString"}, "id": "3926", "properties": {}, "type": "Feature"}, {"bbox": [8.5148, 47.373999, 8.515054, 47.374159], "geometry": {"coordinates": [[[8.515054, 47.374159], [8.514833, 47.374035], [8.514821, 47.374023], [8.51481, 47.374011], [8.5148, 47.373999]]], "type": "MultiLineString"}, "id": "3936", "properties": {}, "type": "Feature"}, {"bbox": [8.528049, 47.411321, 8.530265, 47.413467], "geometry": {"coordinates": [[[8.528049, 47.411321], [8.528669, 47.411927], [8.52883, 47.412085], [8.529635, 47.412868], [8.529877, 47.413078], [8.530265, 47.413467]]], "type": "MultiLineString"}, "id": "3944", "properties": {}, "type": "Feature"}, {"bbox": [8.567092, 47.359347, 8.569983, 47.362353], "geometry": {"coordinates": [[[8.567092, 47.362353], [8.567188, 47.362265], [8.569093, 47.360441], [8.569156, 47.360381], [8.569259, 47.360282], [8.569941, 47.359629], [8.569951, 47.359619], [8.56996, 47.359609], [8.569967, 47.359598], [8.569973, 47.359587], [8.569978, 47.359576], [8.569981, 47.359564], [8.569983, 47.359552], [8.569983, 47.35954], [8.569981, 47.359528], [8.569978, 47.359517], [8.569974, 47.359505], [8.569968, 47.359494], [8.569961, 47.359483], [8.569952, 47.359473], [8.569942, 47.359463], [8.569931, 47.359454], [8.569762, 47.359347]]], "type": "MultiLineString"}, "id": "3951", "properties": {}, "type": "Feature"}, {"bbox": [8.543088, 47.403943, 8.543683, 47.404106], "geometry": {"coordinates": [[[8.543088, 47.404106], [8.543683, 47.403943]]], "type": "MultiLineString"}, "id": "3969", "properties": {}, "type": "Feature"}, {"bbox": [8.598493, 47.357848, 8.599763, 47.358576], "geometry": {"coordinates": [[[8.599763, 47.357848], [8.599591, 47.357983], [8.599405, 47.358108], [8.599205, 47.358223], [8.598992, 47.358327], [8.598493, 47.358576]]], "type": "MultiLineString"}, "id": "3972", "properties": {}, "type": "Feature"}, {"bbox": [8.57151, 47.369187, 8.573132, 47.369514], "geometry": {"coordinates": [[[8.57151, 47.369187], [8.571578, 47.369204], [8.571646, 47.369221], [8.571715, 47.369237], [8.571819, 47.369261], [8.571923, 47.369284], [8.572028, 47.369306], [8.572223, 47.369335], [8.572418, 47.369365], [8.572613, 47.369393], [8.572787, 47.369433], [8.57296, 47.369473], [8.573132, 47.369514]]], "type": "MultiLineString"}, "id": "4004", "properties": {}, "type": "Feature"}, {"bbox": [8.59169, 47.355728, 8.592418, 47.355988], "geometry": {"coordinates": [[[8.59169, 47.355742], [8.591721, 47.355735], [8.591752, 47.355731], [8.591784, 47.355729], [8.591817, 47.355728], [8.591849, 47.35573], [8.591881, 47.355734], [8.591912, 47.35574], [8.591942, 47.355747], [8.592105, 47.355824], [8.592264, 47.355904], [8.592418, 47.355988]]], "type": "MultiLineString"}, "id": "4008", "properties": {}, "type": "Feature"}, {"bbox": [8.532172, 47.380991, 8.538128, 47.384632], "geometry": {"coordinates": [[[8.538128, 47.380991], [8.538045, 47.38101], [8.537966, 47.381033], [8.537889, 47.381062], [8.537817, 47.381094], [8.537749, 47.381131], [8.537174, 47.381556], [8.536669, 47.381932], [8.535993, 47.382427], [8.535349, 47.382904], [8.535056, 47.383121], [8.534015, 47.383892], [8.533867, 47.384002], [8.533524, 47.38425], [8.53305, 47.384601], [8.533037, 47.384608], [8.533024, 47.384614], [8.533009, 47.384619], [8.532995, 47.384624], [8.532979, 47.384627], [8.532963, 47.38463], [8.532947, 47.384632], [8.532931, 47.384632], [8.532915, 47.384632], [8.532899, 47.384631], [8.532883, 47.384628], [8.532868, 47.384625], [8.532852, 47.384621], [8.532838, 47.384616], [8.532824, 47.38461], [8.532811, 47.384603], [8.532799, 47.384596], [8.532763, 47.384576], [8.532172, 47.384207]]], "type": "MultiLineString"}, "id": "4018", "properties": {}, "type": "Feature"}, {"bbox": [8.528669, 47.410346, 8.538108, 47.411927], "geometry": {"coordinates": [[[8.538108, 47.410375], [8.537709, 47.410353], [8.537555, 47.410347], [8.537414, 47.410346], [8.537298, 47.410349], [8.537225, 47.410353], [8.537087, 47.410363], [8.53612, 47.41044], [8.536096, 47.410442], [8.53586, 47.410465], [8.535803, 47.410475], [8.535057, 47.410591], [8.53484, 47.410638], [8.534778, 47.410651], [8.534492, 47.410713], [8.534178, 47.410785], [8.534037, 47.410818], [8.533868, 47.410861], [8.533571, 47.410939], [8.533477, 47.410962], [8.533363, 47.410986], [8.533275, 47.411004], [8.53314, 47.411026], [8.532982, 47.411046], [8.532896, 47.411055], [8.532753, 47.411063], [8.532485, 47.411098], [8.532297, 47.411123], [8.532102, 47.41116], [8.531933, 47.411199], [8.531681, 47.411262], [8.531526, 47.411304], [8.531363, 47.41135], [8.530794, 47.411506], [8.530175, 47.411675], [8.530061, 47.411695], [8.528998, 47.411888], [8.528842, 47.411916], [8.52878, 47.411926], [8.528669, 47.411927]]], "type": "MultiLineString"}, "id": "4019", "properties": {}, "type": "Feature"}, {"bbox": [8.528834, 47.334912, 8.52889, 47.338247], "geometry": {"coordinates": [[[8.528834, 47.338247], [8.528862, 47.338111], [8.528881, 47.337827], [8.528885, 47.337029], [8.528879, 47.336919], [8.528885, 47.336836], [8.52889, 47.334912]]], "type": "MultiLineString"}, "id": "4021", "properties": {}, "type": "Feature"}, {"bbox": [8.544165, 47.412512, 8.544284, 47.413914], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.544242, 47.412689], [8.544207, 47.412866], [8.54418, 47.413043], [8.544173, 47.413109], [8.544168, 47.413175], [8.544166, 47.413241], [8.544165, 47.41328], [8.544166, 47.41332], [8.544167, 47.413359], [8.544197, 47.413795], [8.544211, 47.413914]]], "type": "MultiLineString"}, "id": "4023", "properties": {}, "type": "Feature"}, {"bbox": [8.547111, 47.36276, 8.548538, 47.364572], "geometry": {"coordinates": [[[8.547111, 47.364572], [8.547472, 47.364114], [8.548122, 47.363289], [8.548144, 47.363259], [8.548235, 47.363144], [8.548538, 47.36276]]], "type": "MultiLineString"}, "id": "4026", "properties": {}, "type": "Feature"}, {"bbox": [8.539572, 47.405902, 8.548372, 47.408962], "geometry": {"coordinates": [[[8.548372, 47.405902], [8.548142, 47.406004], [8.547158, 47.406331], [8.546763, 47.406474], [8.546119, 47.406739], [8.545934, 47.406816], [8.545519, 47.406988], [8.545378, 47.407044], [8.545235, 47.407099], [8.545091, 47.407152], [8.544084, 47.407484], [8.543338, 47.407728], [8.543263, 47.407753], [8.543118, 47.4078], [8.542536, 47.407992], [8.542411, 47.408033], [8.54197, 47.408178], [8.54179, 47.408236], [8.541192, 47.408432], [8.540282, 47.40873], [8.539572, 47.408962]]], "type": "MultiLineString"}, "id": "4028", "properties": {}, "type": "Feature"}, {"bbox": [8.485089, 47.389026, 8.486752, 47.38933], "geometry": {"coordinates": [[[8.486752, 47.389026], [8.486174, 47.38913], [8.486113, 47.38914], [8.486053, 47.38915], [8.485992, 47.389159], [8.485089, 47.38933]]], "type": "MultiLineString"}, "id": "4030", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394777, 8.494073, 47.398041], "geometry": {"coordinates": [[[8.494073, 47.398041], [8.494051, 47.39798], [8.494015, 47.397884], [8.493812, 47.397337], [8.493767, 47.397232], [8.493732, 47.397145], [8.493683, 47.397062], [8.493623, 47.396982], [8.493513, 47.396856], [8.493394, 47.396733], [8.493268, 47.396615], [8.491207, 47.395], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "4032", "properties": {}, "type": "Feature"}, {"bbox": [8.522657, 47.342358, 8.52363, 47.343346], "geometry": {"coordinates": [[[8.523606, 47.343346], [8.523605, 47.343258], [8.52363, 47.342422], [8.523626, 47.342414], [8.523622, 47.342407], [8.523616, 47.342401], [8.523609, 47.342394], [8.523602, 47.342388], [8.523594, 47.342383], [8.523586, 47.342377], [8.523576, 47.342373], [8.523566, 47.342369], [8.523556, 47.342365], [8.523545, 47.342363], [8.523535, 47.34236], [8.523523, 47.342359], [8.523512, 47.342358], [8.5235, 47.342358], [8.523489, 47.342358], [8.523478, 47.342359], [8.523467, 47.342361], [8.523456, 47.342363], [8.523445, 47.342366], [8.523361, 47.342383], [8.523278, 47.342403], [8.523196, 47.342426], [8.523122, 47.342449], [8.523044, 47.342467], [8.522964, 47.34248], [8.522883, 47.342487], [8.522801, 47.34249], [8.52272, 47.342487], [8.522715, 47.342487], [8.522711, 47.342487], [8.522706, 47.342487], [8.522701, 47.342487], [8.522697, 47.342488], [8.522693, 47.342489], [8.522688, 47.34249], [8.522684, 47.342491], [8.52268, 47.342493], [8.522677, 47.342495], [8.522673, 47.342497], [8.52267, 47.342499], [8.522667, 47.342501], [8.522665, 47.342504], [8.522662, 47.342507], [8.52266, 47.342509], [8.522659, 47.342512], [8.522658, 47.342515], [8.522657, 47.342518]]], "type": "MultiLineString"}, "id": "4033", "properties": {}, "type": "Feature"}, {"bbox": [8.551023, 47.378722, 8.551986, 47.37944], "geometry": {"coordinates": [[[8.551023, 47.37944], [8.551317, 47.379185], [8.551639, 47.378945], [8.551986, 47.378722]]], "type": "MultiLineString"}, "id": "4037", "properties": {}, "type": "Feature"}, {"bbox": [8.552288, 47.369868, 8.557911, 47.371546], "geometry": {"coordinates": [[[8.552288, 47.369868], [8.552406, 47.370085], [8.552412, 47.370092], [8.552418, 47.370099], [8.552426, 47.370105], [8.552434, 47.370111], [8.552444, 47.370117], [8.552454, 47.370121], [8.552464, 47.370125], [8.552475, 47.370129], [8.552486, 47.370132], [8.552498, 47.370134], [8.553222, 47.370387], [8.553807, 47.370591], [8.553874, 47.370614], [8.554591, 47.370865], [8.555369, 47.371136], [8.555508, 47.371186], [8.555928, 47.371313], [8.555994, 47.371332], [8.556649, 47.371519], [8.556734, 47.371546], [8.556825, 47.371546], [8.556923, 47.371541], [8.557721, 47.371473], [8.557744, 47.37147], [8.557756, 47.371467], [8.557911, 47.371426]]], "type": "MultiLineString"}, "id": "4038", "properties": {}, "type": "Feature"}, {"bbox": [8.509512, 47.415031, 8.518248, 47.419988], "geometry": {"coordinates": [[[8.518248, 47.415031], [8.518208, 47.415041], [8.517685, 47.415205], [8.517185, 47.415399], [8.516948, 47.415489], [8.516797, 47.415551], [8.516592, 47.415634], [8.515951, 47.415875], [8.514838, 47.416259], [8.514701, 47.416306], [8.514794, 47.416472], [8.514769, 47.416531], [8.51476, 47.416546], [8.514616, 47.416739], [8.514555, 47.416811], [8.514505, 47.416867], [8.514429, 47.41694], [8.514371, 47.417006], [8.514234, 47.417102], [8.514185, 47.417139], [8.513293, 47.417736], [8.513124, 47.41785], [8.512953, 47.417963], [8.512781, 47.418074], [8.512707, 47.418115], [8.512632, 47.418156], [8.512556, 47.418195], [8.512411, 47.418266], [8.512262, 47.418332], [8.51211, 47.418395], [8.512012, 47.418438], [8.511476, 47.418676], [8.511461, 47.418684], [8.511434, 47.418707], [8.511422, 47.418713], [8.511345, 47.41875], [8.511267, 47.418786], [8.511248, 47.418797], [8.511166, 47.418842], [8.51104, 47.418923], [8.510867, 47.419054], [8.510721, 47.419148], [8.510617, 47.419226], [8.510509, 47.419291], [8.510429, 47.419332], [8.510321, 47.419378], [8.510053, 47.419482], [8.510001, 47.419504], [8.509968, 47.419521], [8.509935, 47.419538], [8.509846, 47.419592], [8.509783, 47.419645], [8.509747, 47.419679], [8.509714, 47.419715], [8.509695, 47.419739], [8.509512, 47.419988]]], "type": "MultiLineString"}, "id": "4039", "properties": {}, "type": "Feature"}, {"bbox": [8.534439, 47.400525, 8.535599, 47.40087], "geometry": {"coordinates": [[[8.534439, 47.40054], [8.534506, 47.400531], [8.534572, 47.400526], [8.53464, 47.400525], [8.534707, 47.400527], [8.534774, 47.400534], [8.534839, 47.400544], [8.534904, 47.400557], [8.534966, 47.400574], [8.535599, 47.40087]]], "type": "MultiLineString"}, "id": "4040", "properties": {}, "type": "Feature"}, {"bbox": [8.590803, 47.398954, 8.591786, 47.399947], "geometry": {"coordinates": [[[8.591192, 47.399947], [8.591015, 47.399657], [8.590874, 47.399464], [8.590806, 47.399344], [8.590803, 47.399285], [8.590877, 47.399258], [8.591686, 47.398954], [8.591786, 47.399006]]], "type": "MultiLineString"}, "id": "4042", "properties": {}, "type": "Feature"}, {"bbox": [8.508669, 47.415876, 8.510669, 47.417229], "geometry": {"coordinates": [[[8.510669, 47.415876], [8.510649, 47.415877], [8.510629, 47.41588], [8.510609, 47.415884], [8.51059, 47.415889], [8.510571, 47.415896], [8.510554, 47.415903], [8.510537, 47.415912], [8.510522, 47.415921], [8.510508, 47.415932], [8.510496, 47.415943], [8.510384, 47.416059], [8.510179, 47.416261], [8.509951, 47.416452], [8.509702, 47.41663], [8.509433, 47.416794], [8.509146, 47.416943], [8.509118, 47.41696], [8.509044, 47.417008], [8.508776, 47.417212], [8.50876, 47.417218], [8.508742, 47.417222], [8.508724, 47.417226], [8.508706, 47.417228], [8.508687, 47.417229], [8.508669, 47.417229]]], "type": "MultiLineString"}, "id": "4049", "properties": {}, "type": "Feature"}, {"bbox": [8.489729, 47.407827, 8.490718, 47.408613], "geometry": {"coordinates": [[[8.490681, 47.407827], [8.490694, 47.407859], [8.490706, 47.407891], [8.490717, 47.407923], [8.490718, 47.407938], [8.490717, 47.407952], [8.490714, 47.407967], [8.49071, 47.407981], [8.490704, 47.407995], [8.490696, 47.408009], [8.490686, 47.408022], [8.490675, 47.408034], [8.490662, 47.408046], [8.490648, 47.408057], [8.490632, 47.408067], [8.490495, 47.408149], [8.490359, 47.408231], [8.490224, 47.408314], [8.490107, 47.408395], [8.489984, 47.408471], [8.489856, 47.408543], [8.489729, 47.408613]]], "type": "MultiLineString"}, "id": "4051", "properties": {}, "type": "Feature"}, {"bbox": [8.508667, 47.417229, 8.509276, 47.417711], "geometry": {"coordinates": [[[8.508669, 47.417229], [8.508667, 47.417237], [8.508667, 47.417244], [8.508667, 47.417252], [8.508669, 47.41726], [8.508672, 47.417267], [8.508675, 47.417275], [8.50868, 47.417282], [8.508685, 47.417289], [8.508692, 47.417295], [8.509175, 47.417651], [8.509207, 47.417672], [8.509241, 47.417692], [8.509276, 47.417711]]], "type": "MultiLineString"}, "id": "4052", "properties": {}, "type": "Feature"}, {"bbox": [8.502251, 47.394793, 8.513371, 47.397671], "geometry": {"coordinates": [[[8.513371, 47.394793], [8.513119, 47.394841], [8.512866, 47.394886], [8.512612, 47.394927], [8.512174, 47.394992], [8.512013, 47.395015], [8.511852, 47.395034], [8.511689, 47.39505], [8.511352, 47.395076], [8.509919, 47.395188], [8.509857, 47.395193], [8.509796, 47.395197], [8.509734, 47.3952], [8.509331, 47.395213], [8.508929, 47.395231], [8.508527, 47.395251], [8.508435, 47.395254], [8.508345, 47.395261], [8.508255, 47.395271], [8.508166, 47.395284], [8.508078, 47.395301], [8.507991, 47.395321], [8.507528, 47.395435], [8.506853, 47.395619], [8.506363, 47.395784], [8.505936, 47.395931], [8.505228, 47.396176], [8.505156, 47.396199], [8.505084, 47.396222], [8.505013, 47.396246], [8.504795, 47.396324], [8.504581, 47.396409], [8.504372, 47.396499], [8.504316, 47.396528], [8.504203, 47.396586], [8.503007, 47.397239], [8.50254, 47.397477], [8.502442, 47.397529], [8.502352, 47.397588], [8.502271, 47.397652], [8.502264, 47.397658], [8.502258, 47.397664], [8.502251, 47.397671]]], "type": "MultiLineString"}, "id": "4064", "properties": {}, "type": "Feature"}, {"bbox": [8.552194, 47.360358, 8.554722, 47.363609], "geometry": {"coordinates": [[[8.552194, 47.360358], [8.55285, 47.360553], [8.553096, 47.360625], [8.553203, 47.360662], [8.553309, 47.360699], [8.553416, 47.360736], [8.553568, 47.360816], [8.553713, 47.360903], [8.553849, 47.360995], [8.553965, 47.361087], [8.55407, 47.361185], [8.554162, 47.361288], [8.554241, 47.361396], [8.554315, 47.361537], [8.554386, 47.361672], [8.554619, 47.362152], [8.554671, 47.362279], [8.554704, 47.362409], [8.554718, 47.36254], [8.55472, 47.363324], [8.554721, 47.363332], [8.554721, 47.36334], [8.554721, 47.363348], [8.554722, 47.363435], [8.554717, 47.363522], [8.554707, 47.363609]]], "type": "MultiLineString"}, "id": "4073", "properties": {}, "type": "Feature"}, {"bbox": [8.551504, 47.373039, 8.553396, 47.373548], "geometry": {"coordinates": [[[8.551504, 47.373039], [8.551612, 47.373076], [8.551657, 47.373091], [8.552398, 47.37329], [8.55257, 47.373337], [8.553033, 47.373461], [8.553183, 47.373501], [8.553396, 47.373548]]], "type": "MultiLineString"}, "id": "4075", "properties": {}, "type": "Feature"}, {"bbox": [8.546589, 47.406968, 8.550461, 47.40856], "geometry": {"coordinates": [[[8.546589, 47.40856], [8.54678, 47.408458], [8.546962, 47.408349], [8.547133, 47.408232], [8.54716, 47.408212], [8.547186, 47.408192], [8.547212, 47.408172], [8.547338, 47.40806], [8.547462, 47.407947], [8.547583, 47.407833], [8.547636, 47.407784], [8.547695, 47.407739], [8.54776, 47.407697], [8.54783, 47.407659], [8.548079, 47.407558], [8.548133, 47.407542], [8.548189, 47.407528], [8.548245, 47.407515], [8.54833, 47.407499], [8.548416, 47.407486], [8.548504, 47.407477], [8.548833, 47.407452], [8.549001, 47.407439], [8.549149, 47.407417], [8.549293, 47.407387], [8.549433, 47.407349], [8.549568, 47.407303], [8.549619, 47.407283], [8.550121, 47.407092], [8.550433, 47.406981], [8.550461, 47.406968]]], "type": "MultiLineString"}, "id": "4076", "properties": {}, "type": "Feature"}, {"bbox": [8.528001, 47.374454, 8.528748, 47.37502], "geometry": {"coordinates": [[[8.528748, 47.374454], [8.528001, 47.37502]]], "type": "MultiLineString"}, "id": "4082", "properties": {}, "type": "Feature"}, {"bbox": [8.478633, 47.390441, 8.479199, 47.390769], "geometry": {"coordinates": [[[8.479199, 47.390441], [8.47889, 47.390638], [8.478809, 47.390686], [8.478723, 47.39073], [8.478633, 47.390769]]], "type": "MultiLineString"}, "id": "4084", "properties": {}, "type": "Feature"}, {"bbox": [8.527014, 47.377307, 8.529307, 47.378473], "geometry": {"coordinates": [[[8.529307, 47.377307], [8.528158, 47.377891], [8.528053, 47.377945], [8.52718, 47.378388], [8.527014, 47.378473]]], "type": "MultiLineString"}, "id": "4097", "properties": {}, "type": "Feature"}, {"bbox": [8.527174, 47.413879, 8.52753, 47.415001], "geometry": {"coordinates": [[[8.527174, 47.413879], [8.527217, 47.414008], [8.527288, 47.414238], [8.52738, 47.414532], [8.527492, 47.414887], [8.52753, 47.415001]]], "type": "MultiLineString"}, "id": "4099", "properties": {}, "type": "Feature"}, {"bbox": [8.514921, 47.395122, 8.524473, 47.397024], "geometry": {"coordinates": [[[8.524473, 47.395122], [8.524375, 47.395147], [8.523231, 47.395469], [8.522508, 47.395662], [8.522439, 47.395679], [8.522312, 47.395709], [8.520886, 47.396093], [8.520662, 47.396158], [8.520435, 47.396219], [8.520206, 47.396276], [8.520039, 47.396315], [8.51987, 47.396351], [8.5197, 47.396386], [8.518858, 47.396547], [8.518047, 47.396705], [8.51801, 47.396712], [8.517972, 47.396718], [8.517934, 47.396724], [8.517857, 47.396735], [8.51778, 47.396745], [8.517703, 47.396752], [8.515693, 47.396961], [8.515437, 47.396991], [8.51518, 47.397012], [8.514921, 47.397024]]], "type": "MultiLineString"}, "id": "4102", "properties": {}, "type": "Feature"}, {"bbox": [8.576637, 47.361372, 8.577241, 47.361872], "geometry": {"coordinates": [[[8.576637, 47.361372], [8.576661, 47.361398], [8.576682, 47.361426], [8.576699, 47.361455], [8.576713, 47.361484], [8.576723, 47.361514], [8.576729, 47.361545], [8.576732, 47.361576], [8.57673, 47.361607], [8.576725, 47.361638], [8.576725, 47.361658], [8.576727, 47.361678], [8.576732, 47.361697], [8.576739, 47.361716], [8.576748, 47.361735], [8.57676, 47.361753], [8.576774, 47.361771], [8.57679, 47.361787], [8.576808, 47.361802], [8.576829, 47.361817], [8.576851, 47.36183], [8.576874, 47.361842], [8.576899, 47.361852], [8.576925, 47.361861], [8.576954, 47.361866], [8.576985, 47.36187], [8.577015, 47.361872], [8.577046, 47.361872], [8.577076, 47.36187], [8.577106, 47.361867], [8.577136, 47.361861], [8.577165, 47.361854], [8.577192, 47.361845], [8.577219, 47.361834], [8.577241, 47.361824]]], "type": "MultiLineString"}, "id": "4103", "properties": {}, "type": "Feature"}, {"bbox": [8.553783, 47.378437, 8.567472, 47.387556], "geometry": {"coordinates": [[[8.567211, 47.378437], [8.567337, 47.378719], [8.567424, 47.379008], [8.567472, 47.379301], [8.567464, 47.379484], [8.567453, 47.379614], [8.567397, 47.380408], [8.567378, 47.380441], [8.567356, 47.380473], [8.567329, 47.380503], [8.567298, 47.380531], [8.567264, 47.380557], [8.567227, 47.380582], [8.567186, 47.380604], [8.566703, 47.380833], [8.566219, 47.381015], [8.565759, 47.381171], [8.565312, 47.381344], [8.56488, 47.381533], [8.564858, 47.381544], [8.564835, 47.381555], [8.564813, 47.381566], [8.564634, 47.381654], [8.564459, 47.381745], [8.564288, 47.381839], [8.563574, 47.382239], [8.563135, 47.3825], [8.562721, 47.382778], [8.562333, 47.383073], [8.5623, 47.3831], [8.562267, 47.383127], [8.562234, 47.383154], [8.562056, 47.383304], [8.561885, 47.383457], [8.561721, 47.383614], [8.561365, 47.383963], [8.561301, 47.384017], [8.56123, 47.384066], [8.561154, 47.384112], [8.561072, 47.384153], [8.560998, 47.384188], [8.560921, 47.384219], [8.560839, 47.384246], [8.560756, 47.384268], [8.560415, 47.384316], [8.560165, 47.384349], [8.560005, 47.384379], [8.55985, 47.384418], [8.5597, 47.384466], [8.559556, 47.384522], [8.559419, 47.384586], [8.558636, 47.38501], [8.558505, 47.385081], [8.556367, 47.386198], [8.556217, 47.386277], [8.553783, 47.387556]]], "type": "MultiLineString"}, "id": "4106", "properties": {}, "type": "Feature"}, {"bbox": [8.517183, 47.368461, 8.519571, 47.36881], "geometry": {"coordinates": [[[8.519571, 47.368781], [8.519538, 47.368791], [8.519504, 47.368799], [8.51947, 47.368805], [8.519434, 47.368808], [8.519399, 47.36881], [8.519363, 47.368809], [8.519328, 47.368806], [8.519293, 47.368802], [8.519259, 47.368795], [8.519225, 47.368786], [8.519005, 47.368727], [8.518734, 47.368668], [8.518359, 47.36858], [8.517973, 47.368515], [8.51758, 47.368476], [8.517183, 47.368461]]], "type": "MultiLineString"}, "id": "4107", "properties": {}, "type": "Feature"}, {"bbox": [8.530479, 47.401156, 8.531699, 47.40306], "geometry": {"coordinates": [[[8.531699, 47.401156], [8.531551, 47.401419], [8.531365, 47.40167], [8.531143, 47.401907], [8.53073, 47.402308], [8.530666, 47.402373], [8.530611, 47.402441], [8.530565, 47.402513], [8.530529, 47.402587], [8.530502, 47.402663], [8.530485, 47.40274], [8.530479, 47.402818], [8.530483, 47.402896], [8.530502, 47.40306]]], "type": "MultiLineString"}, "id": "4129", "properties": {}, "type": "Feature"}, {"bbox": [8.58516, 47.405535, 8.586005, 47.405738], "geometry": {"coordinates": [[[8.586005, 47.405738], [8.58572, 47.405677], [8.585438, 47.40561], [8.58516, 47.405535]]], "type": "MultiLineString"}, "id": "4134", "properties": {}, "type": "Feature"}, {"bbox": [8.528195, 47.374326, 8.530819, 47.376427], "geometry": {"coordinates": [[[8.530819, 47.374326], [8.5308, 47.37434], [8.530781, 47.374355], [8.530763, 47.374369], [8.530557, 47.374535], [8.530421, 47.374644], [8.530284, 47.374753], [8.529875, 47.375081], [8.529067, 47.375729], [8.528862, 47.375893], [8.528656, 47.376057], [8.528397, 47.376268], [8.528195, 47.376427]]], "type": "MultiLineString"}, "id": "4141", "properties": {}, "type": "Feature"}, {"bbox": [8.574575, 47.363395, 8.575456, 47.363742], "geometry": {"coordinates": [[[8.574575, 47.363526], [8.574577, 47.36353], [8.574589, 47.363554], [8.574604, 47.363577], [8.574622, 47.3636], [8.574643, 47.363621], [8.574667, 47.363641], [8.574693, 47.363659], [8.574721, 47.363676], [8.574751, 47.363691], [8.574783, 47.363705], [8.574816, 47.363716], [8.574851, 47.363726], [8.574887, 47.363733], [8.574923, 47.363738], [8.574961, 47.363741], [8.574998, 47.363742], [8.575035, 47.363741], [8.575073, 47.363737], [8.575111, 47.363731], [8.575147, 47.363723], [8.575182, 47.363713], [8.575216, 47.363701], [8.575248, 47.363687], [8.575278, 47.36367], [8.575306, 47.363653], [8.575331, 47.363633], [8.575354, 47.363612], [8.575374, 47.36359], [8.575391, 47.363567], [8.575406, 47.363543], [8.575416, 47.363518], [8.575456, 47.363395]]], "type": "MultiLineString"}, "id": "4145", "properties": {}, "type": "Feature"}, {"bbox": [8.539481, 47.382717, 8.54211, 47.387809], "geometry": {"coordinates": [[[8.541502, 47.382717], [8.541521, 47.382724], [8.541538, 47.382731], [8.541554, 47.38274], [8.541569, 47.38275], [8.541582, 47.382761], [8.541594, 47.382772], [8.541605, 47.382784], [8.541614, 47.382797], [8.541621, 47.38281], [8.541627, 47.382823], [8.541677, 47.383042], [8.541691, 47.383121], [8.541713, 47.383198], [8.541743, 47.383274], [8.541797, 47.383381], [8.541861, 47.383484], [8.541935, 47.383585], [8.542047, 47.383727], [8.542067, 47.383758], [8.542084, 47.383791], [8.542096, 47.383825], [8.542105, 47.383859], [8.542109, 47.383894], [8.54211, 47.383929], [8.542106, 47.383964], [8.542098, 47.383998], [8.542065, 47.384069], [8.541904, 47.384354], [8.541825, 47.38449], [8.541617, 47.384787], [8.541394, 47.385108], [8.541272, 47.38526], [8.540996, 47.385589], [8.540922, 47.385678], [8.540785, 47.385861], [8.540572, 47.386164], [8.540521, 47.38624], [8.539967, 47.387103], [8.539934, 47.387153], [8.53983, 47.387315], [8.539481, 47.387809]]], "type": "MultiLineString"}, "id": "4150", "properties": {}, "type": "Feature"}, {"bbox": [8.583524, 47.396752, 8.587711, 47.399487], "geometry": {"coordinates": [[[8.583524, 47.399487], [8.584289, 47.399099], [8.584692, 47.398878], [8.585018, 47.398688], [8.58548, 47.398424], [8.58588, 47.398168], [8.586229, 47.397918], [8.586357, 47.397819], [8.586559, 47.397657], [8.586722, 47.397538], [8.587014, 47.397357], [8.587314, 47.397176], [8.587475, 47.397074], [8.587537, 47.397015], [8.587592, 47.396953], [8.587639, 47.396889], [8.587679, 47.396821], [8.587711, 47.396752]]], "type": "MultiLineString"}, "id": "4156", "properties": {}, "type": "Feature"}, {"bbox": [8.55424, 47.379362, 8.559817, 47.386339], "geometry": {"coordinates": [[[8.559817, 47.379362], [8.559781, 47.37945], [8.559716, 47.379633], [8.558903, 47.381588], [8.558801, 47.381805], [8.558672, 47.382015], [8.558518, 47.382217], [8.558393, 47.382356], [8.558257, 47.382487], [8.558109, 47.382613], [8.557949, 47.382731], [8.557376, 47.38314], [8.557226, 47.383244], [8.556523, 47.38373], [8.556391, 47.383824], [8.55636, 47.383845], [8.55633, 47.383866], [8.556301, 47.383887], [8.556111, 47.38403], [8.555933, 47.38418], [8.555767, 47.384336], [8.555654, 47.384453], [8.555548, 47.384573], [8.555449, 47.384696], [8.555344, 47.384842], [8.555278, 47.384933], [8.55462, 47.385867], [8.554502, 47.386028], [8.554375, 47.386185], [8.55424, 47.386339]]], "type": "MultiLineString"}, "id": "4160", "properties": {}, "type": "Feature"}, {"bbox": [8.552485, 47.363502, 8.553707, 47.364513], "geometry": {"coordinates": [[[8.552485, 47.364513], [8.552749, 47.364294], [8.552965, 47.364132], [8.553016, 47.364071], [8.553707, 47.363502]]], "type": "MultiLineString"}, "id": "4171", "properties": {}, "type": "Feature"}, {"bbox": [8.57392, 47.406302, 8.576059, 47.40702], "geometry": {"coordinates": [[[8.57392, 47.40702], [8.574037, 47.406979], [8.576059, 47.406302]]], "type": "MultiLineString"}, "id": "4176", "properties": {}, "type": "Feature"}, {"bbox": [8.549506, 47.404607, 8.550749, 47.404699], "geometry": {"coordinates": [[[8.549506, 47.404699], [8.549752, 47.40468], [8.550749, 47.404607]]], "type": "MultiLineString"}, "id": "4177", "properties": {}, "type": "Feature"}, {"bbox": [8.528054, 47.351557, 8.529144, 47.356195], "geometry": {"coordinates": [[[8.528054, 47.356195], [8.528056, 47.356193], [8.528084, 47.356157], [8.528117, 47.356124], [8.528146, 47.356096], [8.528172, 47.356067], [8.528194, 47.356037], [8.528212, 47.356006], [8.528226, 47.355974], [8.528237, 47.355941], [8.528335, 47.355672], [8.528414, 47.355597], [8.528452, 47.354132], [8.528466, 47.353432], [8.52845, 47.353252], [8.528292, 47.352108], [8.528287, 47.352061], [8.528287, 47.352015], [8.528294, 47.351969], [8.528304, 47.351931], [8.528319, 47.351894], [8.528339, 47.351859], [8.528363, 47.351824], [8.528392, 47.351791], [8.528424, 47.35176], [8.52846, 47.351731], [8.5285, 47.351704], [8.528543, 47.351679], [8.528589, 47.351657], [8.528637, 47.351638], [8.528688, 47.351622], [8.528741, 47.351608], [8.528795, 47.351598], [8.529144, 47.351557]]], "type": "MultiLineString"}, "id": "4178", "properties": {}, "type": "Feature"}, {"bbox": [8.539245, 47.410369, 8.54133, 47.411361], "geometry": {"coordinates": [[[8.54133, 47.411357], [8.541276, 47.411361], [8.540404, 47.411026], [8.53975, 47.410773], [8.539678, 47.410745], [8.539437, 47.410656], [8.539245, 47.410581], [8.539433, 47.410369]]], "type": "MultiLineString"}, "id": "4179", "properties": {}, "type": "Feature"}, {"bbox": [8.505255, 47.39882, 8.506506, 47.399556], "geometry": {"coordinates": [[[8.506506, 47.398849], [8.506484, 47.398841], [8.50646, 47.398833], [8.506436, 47.398828], [8.506412, 47.398824], [8.506387, 47.398821], [8.506361, 47.39882], [8.506336, 47.39882], [8.50631, 47.398822], [8.506285, 47.398825], [8.506261, 47.39883], [8.506237, 47.398837], [8.506215, 47.398845], [8.506193, 47.398854], [8.506173, 47.398864], [8.506154, 47.398876], [8.506136, 47.398888], [8.506121, 47.398902], [8.505706, 47.399263], [8.505565, 47.399367], [8.505415, 47.399465], [8.505255, 47.399556]]], "type": "MultiLineString"}, "id": "4180", "properties": {}, "type": "Feature"}, {"bbox": [8.542526, 47.42858, 8.545214, 47.428758], "geometry": {"coordinates": [[[8.545214, 47.428758], [8.543713, 47.428655], [8.543575, 47.428645], [8.543436, 47.428636], [8.542632, 47.428581], [8.542617, 47.42858], [8.542601, 47.42858], [8.542586, 47.428581], [8.54257, 47.428583], [8.542555, 47.428586], [8.54254, 47.42859], [8.542526, 47.428595]]], "type": "MultiLineString"}, "id": "4181", "properties": {}, "type": "Feature"}, {"bbox": [8.541556, 47.389231, 8.544457, 47.393535], "geometry": {"coordinates": [[[8.541556, 47.389231], [8.5419, 47.389567], [8.542158, 47.389829], [8.542177, 47.389848], [8.542352, 47.390012], [8.542455, 47.390109], [8.542567, 47.390224], [8.542619, 47.390297], [8.542663, 47.390373], [8.542697, 47.390451], [8.542722, 47.390531], [8.542738, 47.390613], [8.542743, 47.390696], [8.542738, 47.390744], [8.542731, 47.390792], [8.542721, 47.39084], [8.54265, 47.391157], [8.542645, 47.391223], [8.542645, 47.391289], [8.542649, 47.391355], [8.542657, 47.391417], [8.542671, 47.391478], [8.542692, 47.391538], [8.542735, 47.391616], [8.542786, 47.39169], [8.542847, 47.391762], [8.54318, 47.392128], [8.543562, 47.392547], [8.544381, 47.393443], [8.544407, 47.393473], [8.544433, 47.393504], [8.544457, 47.393535]]], "type": "MultiLineString"}, "id": "4183", "properties": {}, "type": "Feature"}, {"bbox": [8.548385, 47.374668, 8.549597, 47.377376], "geometry": {"coordinates": [[[8.549597, 47.374668], [8.549478, 47.374936], [8.549273, 47.375404], [8.549117, 47.375748], [8.548604, 47.376882], [8.548385, 47.377376]]], "type": "MultiLineString"}, "id": "4185", "properties": {}, "type": "Feature"}, {"bbox": [8.501703, 47.369844, 8.505397, 47.370157], "geometry": {"coordinates": [[[8.505397, 47.370157], [8.505203, 47.370142], [8.505009, 47.370128], [8.504815, 47.370117], [8.504382, 47.370096], [8.50395, 47.370068], [8.50352, 47.370032], [8.501915, 47.369844], [8.501891, 47.369844], [8.501868, 47.369845], [8.501844, 47.369848], [8.501821, 47.369852], [8.501799, 47.369858], [8.501778, 47.369865], [8.501757, 47.369873], [8.501738, 47.369882], [8.501719, 47.369893], [8.501703, 47.369904]]], "type": "MultiLineString"}, "id": "4189", "properties": {}, "type": "Feature"}, {"bbox": [8.5012, 47.368822, 8.501606, 47.369654], "geometry": {"coordinates": [[[8.501606, 47.369654], [8.501362, 47.369025], [8.50134, 47.368981], [8.501313, 47.368938], [8.50128, 47.368898], [8.501243, 47.368859], [8.5012, 47.368822]]], "type": "MultiLineString"}, "id": "4190", "properties": {}, "type": "Feature"}, {"bbox": [8.585844, 47.399625, 8.586488, 47.39976], "geometry": {"coordinates": [[[8.586488, 47.399625], [8.586388, 47.399662], [8.586285, 47.399694], [8.586178, 47.399719], [8.586068, 47.399739], [8.585956, 47.399753], [8.585844, 47.39976]]], "type": "MultiLineString"}, "id": "4191", "properties": {}, "type": "Feature"}, {"bbox": [8.482072, 47.396118, 8.485592, 47.397474], "geometry": {"coordinates": [[[8.485592, 47.396118], [8.485277, 47.396201], [8.484988, 47.396297], [8.484704, 47.3964], [8.484428, 47.396511], [8.483592, 47.396887], [8.482972, 47.397161], [8.482679, 47.397274], [8.482379, 47.397379], [8.482072, 47.397474]]], "type": "MultiLineString"}, "id": "4198", "properties": {}, "type": "Feature"}, {"bbox": [8.573719, 47.348787, 8.576225, 47.349068], "geometry": {"coordinates": [[[8.573719, 47.348848], [8.573849, 47.348894], [8.573985, 47.348932], [8.574125, 47.348962], [8.574541, 47.349042], [8.574639, 47.349057], [8.574739, 47.349066], [8.574839, 47.349068], [8.57494, 47.349064], [8.575039, 47.349055], [8.575137, 47.349039], [8.575232, 47.349018], [8.575325, 47.34899], [8.575413, 47.348958], [8.575533, 47.348912], [8.575658, 47.348875], [8.575788, 47.348846], [8.575922, 47.348826], [8.576057, 47.348814], [8.5761, 47.348811], [8.576143, 47.348806], [8.576184, 47.348798], [8.576225, 47.348787]]], "type": "MultiLineString"}, "id": "4199", "properties": {}, "type": "Feature"}, {"bbox": [8.537944, 47.401409, 8.545238, 47.406501], "geometry": {"coordinates": [[[8.545238, 47.401409], [8.544372, 47.401893], [8.543862, 47.402136], [8.542749, 47.402689], [8.542519, 47.402818], [8.542305, 47.40296], [8.542111, 47.403113], [8.541936, 47.403278], [8.541784, 47.403452], [8.541689, 47.403546], [8.541481, 47.403783], [8.5414, 47.403871], [8.541328, 47.403943], [8.541233, 47.404041], [8.541129, 47.404141], [8.540971, 47.404285], [8.540877, 47.404331], [8.54042, 47.404682], [8.539909, 47.405038], [8.539445, 47.405401], [8.539388, 47.40545], [8.53818, 47.406314], [8.537944, 47.406501]]], "type": "MultiLineString"}, "id": "4203", "properties": {}, "type": "Feature"}, {"bbox": [8.505448, 47.395271, 8.50829, 47.396907], "geometry": {"coordinates": [[[8.508255, 47.395271], [8.508288, 47.395413], [8.50829, 47.395439], [8.508288, 47.395464], [8.508283, 47.395489], [8.508276, 47.395513], [8.508265, 47.395537], [8.508251, 47.395561], [8.508234, 47.395583], [8.508214, 47.395604], [8.508191, 47.395624], [8.508166, 47.395643], [8.508139, 47.39566], [8.508109, 47.395675], [8.507755, 47.395835], [8.507161, 47.396101], [8.506903, 47.396218], [8.506443, 47.396428], [8.505914, 47.396682], [8.505448, 47.396907]]], "type": "MultiLineString"}, "id": "4207", "properties": {}, "type": "Feature"}, {"bbox": [8.476853, 47.414583, 8.481421, 47.416688], "geometry": {"coordinates": [[[8.480504, 47.414583], [8.480747, 47.414669], [8.481059, 47.414774], [8.481105, 47.414792], [8.481149, 47.414812], [8.481191, 47.414834], [8.481229, 47.414858], [8.481265, 47.414885], [8.481297, 47.414913], [8.481326, 47.414944], [8.481351, 47.414975], [8.481376, 47.415017], [8.481395, 47.415059], [8.481409, 47.415103], [8.481418, 47.415147], [8.481421, 47.415191], [8.481386, 47.415751], [8.481362, 47.415999], [8.481345, 47.416205], [8.481334, 47.416253], [8.481316, 47.4163], [8.481292, 47.416346], [8.481262, 47.41639], [8.481227, 47.416433], [8.481186, 47.416473], [8.48114, 47.41651], [8.48109, 47.416545], [8.481035, 47.416576], [8.480976, 47.416604], [8.480914, 47.416628], [8.480849, 47.416648], [8.480781, 47.416664], [8.480712, 47.416677], [8.480641, 47.416685], [8.48057, 47.416688], [8.480498, 47.416687], [8.480427, 47.416682], [8.480357, 47.416673], [8.480288, 47.41666], [8.480221, 47.416642], [8.480157, 47.416621], [8.479174, 47.41628], [8.478718, 47.416116], [8.478475, 47.416034], [8.478183, 47.415945], [8.477879, 47.415877], [8.477567, 47.415828], [8.477249, 47.415801], [8.47687, 47.415779], [8.476853, 47.415779]]], "type": "MultiLineString"}, "id": "4210", "properties": {}, "type": "Feature"}, {"bbox": [8.543421, 47.377806, 8.548194, 47.383295], "geometry": {"coordinates": [[[8.548194, 47.377806], [8.54786, 47.378197], [8.547183, 47.379027], [8.547092, 47.379139], [8.546923, 47.379347], [8.546576, 47.379783], [8.546556, 47.379808], [8.546043, 47.380548], [8.545861, 47.38081], [8.545281, 47.381644], [8.54527, 47.381663], [8.545261, 47.381684], [8.545254, 47.381705], [8.54525, 47.381726], [8.545248, 47.381747], [8.545249, 47.381769], [8.54524, 47.38177], [8.545231, 47.381772], [8.545223, 47.381774], [8.545214, 47.381777], [8.545207, 47.381781], [8.545199, 47.381785], [8.545193, 47.381789], [8.545186, 47.381794], [8.545181, 47.381799], [8.545176, 47.381804], [8.545127, 47.381886], [8.544981, 47.382098], [8.544897, 47.382191], [8.544779, 47.382323], [8.543963, 47.383002], [8.543671, 47.383242], [8.543421, 47.383295]]], "type": "MultiLineString"}, "id": "4217", "properties": {}, "type": "Feature"}, {"bbox": [8.525438, 47.35675, 8.526088, 47.358074], "geometry": {"coordinates": [[[8.526088, 47.358074], [8.526013, 47.358059], [8.52594, 47.358039], [8.52587, 47.358016], [8.525803, 47.357989], [8.525739, 47.357958], [8.52568, 47.357923], [8.525625, 47.357886], [8.525575, 47.357845], [8.52553, 47.357802], [8.525498, 47.35775], [8.525473, 47.357697], [8.525455, 47.357643], [8.525443, 47.357588], [8.525438, 47.357532], [8.52544, 47.357477], [8.525448, 47.357422], [8.525464, 47.357367], [8.525662, 47.356932], [8.525715, 47.356829], [8.525744, 47.35675]]], "type": "MultiLineString"}, "id": "4218", "properties": {}, "type": "Feature"}, {"bbox": [8.506546, 47.356971, 8.508886, 47.35793], "geometry": {"coordinates": [[[8.508886, 47.35793], [8.508709, 47.357879], [8.508392, 47.357746], [8.508023, 47.357591], [8.507645, 47.357432], [8.507267, 47.357274], [8.506906, 47.357122], [8.506546, 47.356971]]], "type": "MultiLineString"}, "id": "4219", "properties": {}, "type": "Feature"}, {"bbox": [8.482309, 47.402742, 8.485362, 47.403969], "geometry": {"coordinates": [[[8.485362, 47.402742], [8.484572, 47.403115], [8.483745, 47.403449], [8.482885, 47.403742], [8.482623, 47.403861], [8.48256, 47.403822], [8.482482, 47.403875], [8.482399, 47.403924], [8.482309, 47.403969]]], "type": "MultiLineString"}, "id": "4224", "properties": {}, "type": "Feature"}, {"bbox": [8.556627, 47.353476, 8.557779, 47.35432], "geometry": {"coordinates": [[[8.556627, 47.353476], [8.556709, 47.353533], [8.557237, 47.353921], [8.557283, 47.353955], [8.557779, 47.35432]]], "type": "MultiLineString"}, "id": "4225", "properties": {}, "type": "Feature"}, {"bbox": [8.513614, 47.420235, 8.513978, 47.420512], "geometry": {"coordinates": [[[8.513978, 47.420235], [8.513932, 47.420289], [8.513879, 47.42034], [8.513821, 47.420389], [8.513757, 47.420434], [8.513688, 47.420475], [8.513614, 47.420512]]], "type": "MultiLineString"}, "id": "4230", "properties": {}, "type": "Feature"}, {"bbox": [8.525198, 47.373387, 8.525702, 47.374069], "geometry": {"coordinates": [[[8.525198, 47.373387], [8.525702, 47.374069]]], "type": "MultiLineString"}, "id": "4241", "properties": {}, "type": "Feature"}, {"bbox": [8.49417, 47.400218, 8.494559, 47.400711], "geometry": {"coordinates": [[[8.49417, 47.400218], [8.494267, 47.400311], [8.494546, 47.400661], [8.494559, 47.400711]]], "type": "MultiLineString"}, "id": "4242", "properties": {}, "type": "Feature"}, {"bbox": [8.56077, 47.36286, 8.5645, 47.365266], "geometry": {"coordinates": [[[8.560821, 47.36286], [8.560813, 47.362885], [8.560808, 47.362911], [8.560806, 47.362936], [8.560807, 47.362961], [8.560816, 47.363036], [8.56077, 47.363511], [8.560774, 47.363537], [8.560781, 47.363562], [8.560791, 47.363586], [8.560804, 47.363609], [8.560821, 47.363632], [8.56084, 47.363653], [8.560861, 47.363672], [8.560884, 47.36369], [8.56091, 47.363707], [8.561639, 47.364175], [8.561749, 47.364216], [8.562566, 47.364527], [8.56291, 47.364659], [8.563289, 47.364803], [8.5645, 47.365266]]], "type": "MultiLineString"}, "id": "4245", "properties": {}, "type": "Feature"}, {"bbox": [8.557706, 47.364409, 8.562788, 47.36591], "geometry": {"coordinates": [[[8.557706, 47.364409], [8.557914, 47.36447], [8.558596, 47.364672], [8.558883, 47.364757], [8.559491, 47.364936], [8.560162, 47.365133], [8.560289, 47.365172], [8.560418, 47.36521], [8.561023, 47.365389], [8.561103, 47.365412], [8.56174, 47.3656], [8.562246, 47.36575], [8.562376, 47.365789], [8.562788, 47.36591]]], "type": "MultiLineString"}, "id": "4246", "properties": {}, "type": "Feature"}, {"bbox": [8.496876, 47.402125, 8.496879, 47.402181], "geometry": {"coordinates": [[[8.496879, 47.402181], [8.496876, 47.402127], [8.496876, 47.402125]]], "type": "MultiLineString"}, "id": "4247", "properties": {}, "type": "Feature"}, {"bbox": [8.514247, 47.323374, 8.514793, 47.325524], "geometry": {"coordinates": [[[8.514247, 47.325524], [8.51429, 47.32528], [8.514402, 47.325002], [8.51445, 47.324866], [8.514562, 47.324525], [8.514734, 47.324005], [8.514761, 47.323944], [8.51478, 47.323881], [8.514791, 47.323818], [8.514793, 47.323754], [8.514787, 47.32369], [8.514772, 47.323627], [8.514749, 47.323565], [8.514718, 47.323505], [8.514679, 47.323447], [8.514633, 47.323392], [8.514586, 47.323374]]], "type": "MultiLineString"}, "id": "4248", "properties": {}, "type": "Feature"}, {"bbox": [8.527007, 47.357411, 8.528116, 47.360481], "geometry": {"coordinates": [[[8.52733, 47.360481], [8.527586, 47.359766], [8.527771, 47.359249], [8.527964, 47.358709], [8.527991, 47.358643], [8.52808, 47.358466], [8.528095, 47.358438], [8.528106, 47.358409], [8.528113, 47.358379], [8.528116, 47.358349], [8.528116, 47.358319], [8.528112, 47.358289], [8.528072, 47.358083], [8.528069, 47.358036], [8.52807, 47.358004], [8.528093, 47.357843], [8.528112, 47.357679], [8.528032, 47.357482], [8.527834, 47.35745], [8.527007, 47.357411]]], "type": "MultiLineString"}, "id": "4249", "properties": {}, "type": "Feature"}, {"bbox": [8.507579, 47.362841, 8.508495, 47.364189], "geometry": {"coordinates": [[[8.507579, 47.364189], [8.50766, 47.363909], [8.507778, 47.363636], [8.507933, 47.363372], [8.508102, 47.363186], [8.50829, 47.363009], [8.508495, 47.362841]]], "type": "MultiLineString"}, "id": "4250", "properties": {}, "type": "Feature"}, {"bbox": [8.554782, 47.366585, 8.557827, 47.369208], "geometry": {"coordinates": [[[8.554782, 47.369208], [8.554858, 47.369124], [8.556146, 47.368027], [8.557827, 47.366585]]], "type": "MultiLineString"}, "id": "4254", "properties": {}, "type": "Feature"}, {"bbox": [8.515027, 47.37619, 8.515995, 47.377124], "geometry": {"coordinates": [[[8.515992, 47.377124], [8.515995, 47.377111], [8.515995, 47.377098], [8.515994, 47.377085], [8.515991, 47.377072], [8.515986, 47.37706], [8.51598, 47.377048], [8.515972, 47.377036], [8.515528, 47.376609], [8.515149, 47.376255], [8.515027, 47.37619]]], "type": "MultiLineString"}, "id": "4275", "properties": {}, "type": "Feature"}, {"bbox": [8.470565, 47.388478, 8.480437, 47.39272], "geometry": {"coordinates": [[[8.480437, 47.388478], [8.480392, 47.388504], [8.480348, 47.388532], [8.480305, 47.38856], [8.479759, 47.388898], [8.479087, 47.389319], [8.478966, 47.389395], [8.478743, 47.389521], [8.47861, 47.389584], [8.478469, 47.389638], [8.478321, 47.389683], [8.47794, 47.389775], [8.477729, 47.389819], [8.477658, 47.389832], [8.477586, 47.389844], [8.477514, 47.389855], [8.477299, 47.38988], [8.477245, 47.389887], [8.477081, 47.389905], [8.476606, 47.389958], [8.476394, 47.389984], [8.476363, 47.389988], [8.476333, 47.389992], [8.476303, 47.389996], [8.476205, 47.390016], [8.476109, 47.390041], [8.476016, 47.390069], [8.475395, 47.390342], [8.474384, 47.390752], [8.474214, 47.390815], [8.474053, 47.390887], [8.473901, 47.390968], [8.473761, 47.391058], [8.472718, 47.391742], [8.472334, 47.391993], [8.472225, 47.392065], [8.47175, 47.392376], [8.471594, 47.392477], [8.471431, 47.392574], [8.471263, 47.392666], [8.471229, 47.39268], [8.471193, 47.392693], [8.471155, 47.392703], [8.471117, 47.392711], [8.471077, 47.392717], [8.471037, 47.39272], [8.470989, 47.392719], [8.470942, 47.392715], [8.470895, 47.392709], [8.470849, 47.392699], [8.470805, 47.392687], [8.470762, 47.392672], [8.470691, 47.392631], [8.470625, 47.392586], [8.470565, 47.392537]]], "type": "MultiLineString"}, "id": "4278", "properties": {}, "type": "Feature"}, {"bbox": [8.538058, 47.388298, 8.539099, 47.388646], "geometry": {"coordinates": [[[8.538058, 47.388298], [8.538111, 47.388316], [8.538385, 47.388407], [8.538692, 47.38851], [8.538908, 47.388582], [8.539099, 47.388646]]], "type": "MultiLineString"}, "id": "4279", "properties": {}, "type": "Feature"}, {"bbox": [8.539481, 47.387809, 8.540702, 47.388198], "geometry": {"coordinates": [[[8.539481, 47.387809], [8.539619, 47.387842], [8.539663, 47.387848], [8.539708, 47.387851], [8.539753, 47.387852], [8.540118, 47.387852], [8.540383, 47.387855], [8.540488, 47.387935], [8.54055, 47.387983], [8.540609, 47.388051], [8.54066, 47.388123], [8.540702, 47.388198]]], "type": "MultiLineString"}, "id": "4281", "properties": {}, "type": "Feature"}, {"bbox": [8.525193, 47.377857, 8.525749, 47.378489], "geometry": {"coordinates": [[[8.525193, 47.377857], [8.525749, 47.378489]]], "type": "MultiLineString"}, "id": "4285", "properties": {}, "type": "Feature"}, {"bbox": [8.527435, 47.34406, 8.527551, 47.344681], "geometry": {"coordinates": [[[8.527435, 47.344681], [8.527438, 47.344671], [8.527457, 47.344542], [8.527465, 47.344141], [8.527551, 47.34406]]], "type": "MultiLineString"}, "id": "4288", "properties": {}, "type": "Feature"}, {"bbox": [8.552248, 47.402619, 8.555843, 47.404504], "geometry": {"coordinates": [[[8.552248, 47.402619], [8.552423, 47.402757], [8.552614, 47.402884], [8.552821, 47.403001], [8.553041, 47.403105], [8.553339, 47.403232], [8.553653, 47.40334], [8.55398, 47.403428], [8.554379, 47.403529], [8.554883, 47.403666], [8.555018, 47.403713], [8.555147, 47.403768], [8.555267, 47.403831], [8.55538, 47.403901], [8.555476, 47.403974], [8.555564, 47.404053], [8.555642, 47.404136], [8.555709, 47.404224], [8.555765, 47.404314], [8.55581, 47.404408], [8.555843, 47.404504]]], "type": "MultiLineString"}, "id": "4289", "properties": {}, "type": "Feature"}, {"bbox": [8.505288, 47.396136, 8.515034, 47.399364], "geometry": {"coordinates": [[[8.515034, 47.396136], [8.514661, 47.396212], [8.514281, 47.396272], [8.513896, 47.396315], [8.512675, 47.396403], [8.511919, 47.39646], [8.511462, 47.396495], [8.510932, 47.396555], [8.51041, 47.396642], [8.509901, 47.396757], [8.509561, 47.396852], [8.509419, 47.396887], [8.508877, 47.397051], [8.508801, 47.397075], [8.508727, 47.397101], [8.508653, 47.397127], [8.508536, 47.397173], [8.508421, 47.397222], [8.50831, 47.397274], [8.508018, 47.397424], [8.507589, 47.397638], [8.507383, 47.397741], [8.506873, 47.398006], [8.506364, 47.398273], [8.505857, 47.398541], [8.50576, 47.398597], [8.50567, 47.398658], [8.505589, 47.398725], [8.505517, 47.398796], [8.505454, 47.398872], [8.505403, 47.398951], [8.505361, 47.399033], [8.505331, 47.399117], [8.505288, 47.399364]]], "type": "MultiLineString"}, "id": "4290", "properties": {}, "type": "Feature"}, {"bbox": [8.56675, 47.373542, 8.568656, 47.374878], "geometry": {"coordinates": [[[8.56675, 47.374877], [8.566759, 47.374878], [8.566768, 47.374878], [8.566777, 47.374877], [8.566786, 47.374876], [8.566795, 47.374874], [8.566803, 47.374872], [8.566811, 47.37487], [8.566819, 47.374866], [8.566827, 47.374863], [8.566834, 47.374859], [8.56684, 47.374854], [8.566846, 47.374849], [8.566878, 47.374807], [8.567071, 47.374531], [8.56717, 47.37439], [8.567257, 47.374285], [8.567357, 47.374186], [8.56747, 47.374094], [8.567595, 47.374009], [8.567731, 47.373932], [8.567877, 47.373864], [8.568494, 47.373601], [8.568549, 47.373582], [8.568603, 47.373563], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "4291", "properties": {}, "type": "Feature"}, {"bbox": [8.538888, 47.389829, 8.542158, 47.392259], "geometry": {"coordinates": [[[8.542158, 47.389829], [8.540388, 47.391208], [8.539418, 47.391994], [8.53919, 47.392171], [8.539159, 47.392189], [8.539124, 47.392206], [8.539088, 47.39222], [8.539051, 47.392233], [8.539011, 47.392243], [8.538971, 47.39225], [8.53893, 47.392256], [8.538888, 47.392259]]], "type": "MultiLineString"}, "id": "4292", "properties": {}, "type": "Feature"}, {"bbox": [8.542347, 47.38875, 8.545382, 47.391006], "geometry": {"coordinates": [[[8.542347, 47.38875], [8.542457, 47.388837], [8.543263, 47.389479], [8.5437, 47.389823], [8.543988, 47.390046], [8.544513, 47.390441], [8.544792, 47.390634], [8.545021, 47.390776], [8.545179, 47.390868], [8.545382, 47.391006]]], "type": "MultiLineString"}, "id": "4293", "properties": {}, "type": "Feature"}, {"bbox": [8.46988, 47.385041, 8.484983, 47.389207], "geometry": {"coordinates": [[[8.484983, 47.385041], [8.484545, 47.385173], [8.482218, 47.385872], [8.48213, 47.385896], [8.482041, 47.385921], [8.481953, 47.385946], [8.481753, 47.386003], [8.481554, 47.386061], [8.481357, 47.38612], [8.481353, 47.386121], [8.481348, 47.386123], [8.481344, 47.386124], [8.480355, 47.386402], [8.47884, 47.386865], [8.478691, 47.386906], [8.478442, 47.386975], [8.478266, 47.387019], [8.47809, 47.387064], [8.477913, 47.387109], [8.477592, 47.387191], [8.47727, 47.387273], [8.476949, 47.387355], [8.476848, 47.387382], [8.476748, 47.387408], [8.476647, 47.387434], [8.476528, 47.387459], [8.476409, 47.387483], [8.476288, 47.387503], [8.475526, 47.387641], [8.475315, 47.387683], [8.475108, 47.387733], [8.474905, 47.387791], [8.474828, 47.387815], [8.474752, 47.38784], [8.474677, 47.387866], [8.474589, 47.387898], [8.474502, 47.387932], [8.474416, 47.387967], [8.473106, 47.388502], [8.472956, 47.388561], [8.472794, 47.388621], [8.472631, 47.388679], [8.472465, 47.388734], [8.472316, 47.388784], [8.471239, 47.389109], [8.471086, 47.389148], [8.470929, 47.389179], [8.470769, 47.389201], [8.470652, 47.389207], [8.470535, 47.389206], [8.470418, 47.389198], [8.470303, 47.389182], [8.470191, 47.389159], [8.470082, 47.389129], [8.469978, 47.389092], [8.46988, 47.389049]]], "type": "MultiLineString"}, "id": "4295", "properties": {}, "type": "Feature"}, {"bbox": [8.493145, 47.369169, 8.496289, 47.371207], "geometry": {"coordinates": [[[8.493145, 47.371207], [8.493689, 47.371037], [8.494063, 47.370892], [8.494341, 47.370777], [8.494848, 47.370555], [8.494894, 47.370536], [8.495412, 47.370331], [8.495597, 47.370251], [8.495774, 47.370163], [8.495942, 47.370066], [8.496208, 47.369898], [8.496267, 47.369838], [8.496289, 47.369768], [8.496287, 47.369748], [8.496283, 47.369728], [8.496276, 47.369709], [8.496267, 47.36969], [8.496256, 47.369671], [8.496242, 47.369654], [8.496227, 47.369637], [8.496209, 47.369621], [8.496189, 47.369606], [8.496167, 47.369592], [8.496144, 47.36958], [8.496119, 47.369569], [8.496093, 47.36956], [8.496066, 47.369552], [8.495786, 47.369462], [8.49552, 47.369353], [8.49527, 47.369228], [8.495238, 47.369213], [8.495205, 47.369199], [8.49517, 47.369187], [8.495134, 47.369177], [8.495097, 47.369169]]], "type": "MultiLineString"}, "id": "4296", "properties": {}, "type": "Feature"}, {"bbox": [8.5535, 47.366743, 8.556942, 47.368411], "geometry": {"coordinates": [[[8.5535, 47.366743], [8.553619, 47.36681], [8.554727, 47.367344], [8.555063, 47.367506], [8.555355, 47.367646], [8.555784, 47.367853], [8.556146, 47.368027], [8.556942, 47.368411]]], "type": "MultiLineString"}, "id": "4297", "properties": {}, "type": "Feature"}, {"bbox": [8.528997, 47.365634, 8.531735, 47.367893], "geometry": {"coordinates": [[[8.531706, 47.367726], [8.531735, 47.367604], [8.531632, 47.366868], [8.531618, 47.366844], [8.531561, 47.366725], [8.531534, 47.36666], [8.531457, 47.366593], [8.530913, 47.366257], [8.530201, 47.365805], [8.529873, 47.365634], [8.529629, 47.365854], [8.52961, 47.365871], [8.529594, 47.365888], [8.529572, 47.365918], [8.529058, 47.366744], [8.529036, 47.366783], [8.529019, 47.366817], [8.52901, 47.366846], [8.529002, 47.366876], [8.528997, 47.366929], [8.529002, 47.366981], [8.52901, 47.367018], [8.529029, 47.367068], [8.529047, 47.367096], [8.529086, 47.36715], [8.529127, 47.367193], [8.529171, 47.367231], [8.529246, 47.367283], [8.529878, 47.367706], [8.529992, 47.367807], [8.529857, 47.367893]]], "type": "MultiLineString"}, "id": "4300", "properties": {}, "type": "Feature"}, {"bbox": [8.577378, 47.350137, 8.579958, 47.351042], "geometry": {"coordinates": [[[8.577378, 47.350137], [8.577534, 47.350252], [8.579748, 47.35084], [8.579783, 47.350856], [8.579815, 47.350873], [8.579845, 47.350893], [8.579872, 47.350915], [8.579896, 47.350938], [8.579917, 47.350962], [8.579934, 47.350988], [8.579948, 47.351014], [8.579958, 47.351042]]], "type": "MultiLineString"}, "id": "4301", "properties": {}, "type": "Feature"}, {"bbox": [8.600457, 47.355365, 8.605507, 47.355645], "geometry": {"coordinates": [[[8.600457, 47.355365], [8.600742, 47.355415], [8.601549, 47.355569], [8.601715, 47.355605], [8.601881, 47.355627], [8.602048, 47.355641], [8.602217, 47.355645], [8.602379, 47.355645], [8.60254, 47.35564], [8.602702, 47.355631], [8.603936, 47.355496], [8.604109, 47.355475], [8.604272, 47.355463], [8.604435, 47.355455], [8.604599, 47.355451], [8.605138, 47.355452], [8.605507, 47.35544]]], "type": "MultiLineString"}, "id": "4302", "properties": {}, "type": "Feature"}, {"bbox": [8.587914, 47.355598, 8.596403, 47.358245], "geometry": {"coordinates": [[[8.587914, 47.358245], [8.58807, 47.358093], [8.588821, 47.357252], [8.588851, 47.357213], [8.588886, 47.357176], [8.588925, 47.357141], [8.588969, 47.357109], [8.589016, 47.357079], [8.589067, 47.357052], [8.589121, 47.357028], [8.589177, 47.357007], [8.589236, 47.356989], [8.589298, 47.356975], [8.590305, 47.356929], [8.590514, 47.356888], [8.590717, 47.356835], [8.590913, 47.35677], [8.591099, 47.356695], [8.591276, 47.356608], [8.592269, 47.356069], [8.592418, 47.355988], [8.592616, 47.355906], [8.592824, 47.355835], [8.59304, 47.355777], [8.593263, 47.355732], [8.593461, 47.355712], [8.593662, 47.355703], [8.593862, 47.355707], [8.594062, 47.355722], [8.594259, 47.35575], [8.594451, 47.355789], [8.594855, 47.355874], [8.594977, 47.355901], [8.595103, 47.355922], [8.595231, 47.355935], [8.59536, 47.355941], [8.595489, 47.35594], [8.595617, 47.355931], [8.595745, 47.355915], [8.595869, 47.355892], [8.595991, 47.355847], [8.596106, 47.355794], [8.596214, 47.355735], [8.596313, 47.35567], [8.596403, 47.355598]]], "type": "MultiLineString"}, "id": "4303", "properties": {}, "type": "Feature"}, {"bbox": [8.604109, 47.355475, 8.609922, 47.35691], "geometry": {"coordinates": [[[8.604109, 47.355475], [8.60413, 47.355507], [8.604147, 47.355539], [8.604161, 47.355572], [8.604184, 47.355615], [8.60421, 47.355657], [8.60424, 47.355698], [8.604268, 47.355731], [8.604298, 47.355764], [8.60433, 47.355795], [8.604425, 47.355868], [8.604523, 47.355939], [8.604625, 47.356007], [8.604749, 47.356082], [8.604857, 47.356139], [8.604967, 47.356193], [8.60508, 47.356246], [8.605144, 47.35626], [8.60521, 47.35627], [8.605276, 47.356276], [8.605344, 47.356278], [8.605411, 47.356276], [8.605631, 47.356272], [8.605852, 47.356261], [8.606071, 47.356246], [8.606206, 47.356237], [8.60634, 47.356228], [8.606475, 47.35622], [8.606525, 47.356219], [8.606575, 47.356218], [8.606625, 47.356219], [8.606744, 47.356211], [8.606864, 47.356203], [8.606983, 47.356194], [8.607003, 47.356195], [8.607024, 47.356197], [8.607044, 47.3562], [8.607064, 47.356204], [8.607083, 47.35621], [8.607122, 47.356229], [8.607164, 47.356245], [8.607208, 47.356258], [8.607254, 47.356268], [8.607818, 47.356374], [8.60797, 47.356423], [8.608197, 47.356498], [8.608317, 47.356549], [8.608636, 47.356642], [8.608854, 47.356689], [8.609149, 47.356791], [8.609176, 47.356801], [8.609205, 47.356809], [8.609235, 47.356816], [8.609266, 47.356821], [8.609297, 47.356824], [8.609328, 47.356825], [8.609359, 47.356824], [8.609391, 47.356821], [8.609484, 47.35682], [8.609578, 47.356822], [8.609672, 47.356828], [8.609715, 47.356833], [8.609758, 47.35684], [8.6098, 47.356849], [8.609817, 47.356852], [8.609833, 47.356856], [8.609849, 47.356862], [8.609863, 47.356868], [8.609877, 47.356875], [8.60989, 47.356883], [8.609902, 47.356891], [8.609913, 47.356901], [8.609922, 47.35691]]], "type": "MultiLineString"}, "id": "4311", "properties": {}, "type": "Feature"}, {"bbox": [8.517998, 47.396749, 8.523926, 47.398549], "geometry": {"coordinates": [[[8.523895, 47.396749], [8.523903, 47.396759], [8.523911, 47.39677], [8.523917, 47.396781], [8.523921, 47.396792], [8.523924, 47.396804], [8.523926, 47.396815], [8.523926, 47.396827], [8.523924, 47.396839], [8.523921, 47.396851], [8.523916, 47.396862], [8.52391, 47.396873], [8.523903, 47.396884], [8.523894, 47.396894], [8.523884, 47.396903], [8.523873, 47.396912], [8.523861, 47.396921], [8.523848, 47.396928], [8.523833, 47.396935], [8.523818, 47.396941], [8.523803, 47.396946], [8.523786, 47.39695], [8.523624, 47.396975], [8.523459, 47.39699], [8.523293, 47.396995], [8.523127, 47.396991], [8.522748, 47.396988], [8.522421, 47.397006], [8.522098, 47.397042], [8.521781, 47.397097], [8.521472, 47.39717], [8.521061, 47.397276], [8.520646, 47.397374], [8.520227, 47.397464], [8.51975, 47.397578], [8.519283, 47.39771], [8.518829, 47.397859], [8.518685, 47.397922], [8.518549, 47.397992], [8.518422, 47.398069], [8.518304, 47.398153], [8.518198, 47.398244], [8.518102, 47.39834], [8.518066, 47.39839], [8.518036, 47.398441], [8.518013, 47.398494], [8.517998, 47.398549]]], "type": "MultiLineString"}, "id": "4316", "properties": {}, "type": "Feature"}, {"bbox": [8.566583, 47.371796, 8.571838, 47.373952], "geometry": {"coordinates": [[[8.566583, 47.373952], [8.567556, 47.373247], [8.567686, 47.373148], [8.568016, 47.372903], [8.568136, 47.372821], [8.568228, 47.372768], [8.568326, 47.37272], [8.56843, 47.372678], [8.568767, 47.372549], [8.569809, 47.372152], [8.569831, 47.372145], [8.569854, 47.372139], [8.569878, 47.372134], [8.569902, 47.372131], [8.569927, 47.37213], [8.569951, 47.37213], [8.569976, 47.372132], [8.57, 47.372135], [8.570137, 47.372151], [8.570373, 47.372198], [8.570384, 47.3722], [8.570395, 47.372202], [8.570407, 47.372202], [8.570419, 47.372202], [8.57043, 47.372201], [8.570442, 47.3722], [8.570453, 47.372197], [8.570464, 47.372194], [8.570474, 47.372191], [8.570484, 47.372187], [8.570608, 47.372134], [8.570717, 47.372092], [8.571267, 47.371931], [8.571505, 47.371864], [8.571838, 47.371796]]], "type": "MultiLineString"}, "id": "4318", "properties": {}, "type": "Feature"}, {"bbox": [8.491388, 47.376044, 8.491448, 47.37608], "geometry": {"coordinates": [[[8.491388, 47.37608], [8.491448, 47.376044]]], "type": "MultiLineString"}, "id": "4322", "properties": {}, "type": "Feature"}, {"bbox": [8.535335, 47.422954, 8.535359, 47.424121], "geometry": {"coordinates": [[[8.535359, 47.422954], [8.535335, 47.423168], [8.53535, 47.423714], [8.535345, 47.424121]]], "type": "MultiLineString"}, "id": "4324", "properties": {}, "type": "Feature"}, {"bbox": [8.547469, 47.425877, 8.549162, 47.427685], "geometry": {"coordinates": [[[8.547469, 47.425877], [8.547987, 47.426268], [8.548074, 47.426324], [8.548167, 47.426375], [8.548267, 47.426419], [8.548372, 47.426458], [8.548777, 47.426571], [8.549051, 47.426671], [8.549162, 47.427685]]], "type": "MultiLineString"}, "id": "4325", "properties": {}, "type": "Feature"}, {"bbox": [8.509438, 47.423649, 8.516978, 47.42569], "geometry": {"coordinates": [[[8.516978, 47.423793], [8.516816, 47.423787], [8.516444, 47.423764], [8.516072, 47.423733], [8.515702, 47.423696], [8.51547, 47.423667], [8.515235, 47.423651], [8.514999, 47.423649], [8.514728, 47.423672], [8.514462, 47.42371], [8.514201, 47.423763], [8.513948, 47.42383], [8.513703, 47.423912], [8.513344, 47.424057], [8.512991, 47.42421], [8.512645, 47.42437], [8.511754, 47.424748], [8.511577, 47.424824], [8.511401, 47.424901], [8.511225, 47.424978], [8.510341, 47.425362], [8.509438, 47.42569]]], "type": "MultiLineString"}, "id": "4326", "properties": {}, "type": "Feature"}, {"bbox": [8.556776, 47.37541, 8.558232, 47.377167], "geometry": {"coordinates": [[[8.558232, 47.37541], [8.558112, 47.375519], [8.557475, 47.376147], [8.55716, 47.376457], [8.557132, 47.376493], [8.557099, 47.376528], [8.557061, 47.37656], [8.557019, 47.376589], [8.556973, 47.376616], [8.556776, 47.376733], [8.557271, 47.377167]]], "type": "MultiLineString"}, "id": "4335", "properties": {}, "type": "Feature"}, {"bbox": [8.488045, 47.410295, 8.488244, 47.410488], "geometry": {"coordinates": [[[8.488244, 47.410488], [8.488234, 47.410457], [8.488208, 47.4104], [8.488198, 47.410386], [8.488187, 47.410372], [8.488174, 47.410359], [8.48816, 47.410347], [8.488144, 47.410335], [8.488126, 47.410325], [8.488107, 47.410316], [8.488087, 47.410308], [8.488067, 47.410301], [8.488045, 47.410295]]], "type": "MultiLineString"}, "id": "4337", "properties": {}, "type": "Feature"}, {"bbox": [8.533001, 47.392389, 8.534256, 47.393008], "geometry": {"coordinates": [[[8.533001, 47.392389], [8.534256, 47.393008]]], "type": "MultiLineString"}, "id": "4341", "properties": {}, "type": "Feature"}, {"bbox": [8.510044, 47.391729, 8.513625, 47.392204], "geometry": {"coordinates": [[[8.513625, 47.391729], [8.513242, 47.391837], [8.512917, 47.391926], [8.512581, 47.391997], [8.512238, 47.392049], [8.51189, 47.39208], [8.511873, 47.392082], [8.51166, 47.392099], [8.51154, 47.392109], [8.510189, 47.392195], [8.510044, 47.392204]]], "type": "MultiLineString"}, "id": "4343", "properties": {}, "type": "Feature"}, {"bbox": [8.505555, 47.39263, 8.507126, 47.393874], "geometry": {"coordinates": [[[8.507126, 47.39263], [8.507056, 47.392674], [8.506989, 47.392722], [8.506925, 47.392771], [8.505633, 47.393702], [8.505615, 47.393718], [8.5056, 47.393736], [8.505586, 47.393754], [8.505575, 47.393773], [8.505566, 47.393793], [8.50556, 47.393813], [8.505556, 47.393833], [8.505555, 47.393854], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "4344", "properties": {}, "type": "Feature"}, {"bbox": [8.554419, 47.360591, 8.557086, 47.364341], "geometry": {"coordinates": [[[8.554419, 47.364341], [8.554457, 47.364254], [8.554504, 47.364166], [8.554559, 47.36408], [8.554626, 47.363926], [8.554675, 47.363768], [8.554707, 47.363609], [8.554773, 47.363559], [8.554832, 47.363504], [8.554883, 47.363446], [8.554926, 47.363386], [8.554959, 47.363322], [8.55529, 47.362701], [8.555331, 47.362622], [8.555414, 47.362466], [8.555502, 47.362323], [8.555605, 47.362186], [8.555723, 47.362053], [8.556332, 47.361503], [8.556545, 47.361318], [8.556695, 47.361169], [8.556826, 47.361013], [8.55694, 47.36085], [8.556995, 47.360765], [8.557044, 47.360679], [8.557086, 47.360591]]], "type": "MultiLineString"}, "id": "4348", "properties": {}, "type": "Feature"}, {"bbox": [8.495786, 47.366964, 8.499608, 47.367962], "geometry": {"coordinates": [[[8.495786, 47.367528], [8.496369, 47.367714], [8.49644, 47.367732], [8.496754, 47.367805], [8.497062, 47.367867], [8.497273, 47.367901], [8.497606, 47.367947], [8.497662, 47.367953], [8.497722, 47.367958], [8.497783, 47.367961], [8.497867, 47.367962], [8.497952, 47.367959], [8.498036, 47.367952], [8.498118, 47.367942], [8.498191, 47.367931], [8.498263, 47.367916], [8.498333, 47.367898], [8.4984, 47.367878], [8.498476, 47.36785], [8.498516, 47.367835], [8.498594, 47.3678], [8.498668, 47.367762], [8.499077, 47.367522], [8.499217, 47.367433], [8.499358, 47.367343], [8.499426, 47.367255], [8.499472, 47.367188], [8.499608, 47.366964]]], "type": "MultiLineString"}, "id": "4352", "properties": {}, "type": "Feature"}, {"bbox": [8.505557, 47.392417, 8.516488, 47.393874], "geometry": {"coordinates": [[[8.516488, 47.392417], [8.515591, 47.392665], [8.512923, 47.39343], [8.512863, 47.393446], [8.512801, 47.393461], [8.51274, 47.393476], [8.512255, 47.393572], [8.511758, 47.393638], [8.511255, 47.393673], [8.510318, 47.393706], [8.509159, 47.393745], [8.508173, 47.393779], [8.50763, 47.393798], [8.506628, 47.393832], [8.505557, 47.393874]]], "type": "MultiLineString"}, "id": "4361", "properties": {}, "type": "Feature"}, {"bbox": [8.527382, 47.373603, 8.530472, 47.375911], "geometry": {"coordinates": [[[8.530472, 47.373603], [8.53044, 47.373622], [8.530409, 47.373643], [8.530381, 47.373665], [8.530356, 47.373689], [8.530334, 47.373715], [8.530315, 47.373741], [8.5303, 47.373768], [8.530283, 47.373819], [8.530259, 47.373868], [8.530229, 47.373915], [8.530192, 47.373961], [8.53015, 47.374003], [8.530014, 47.374112], [8.529812, 47.374266], [8.529284, 47.374667], [8.528437, 47.375311], [8.528288, 47.375397], [8.527382, 47.375911]]], "type": "MultiLineString"}, "id": "4363", "properties": {}, "type": "Feature"}, {"bbox": [8.513614, 47.420512, 8.514424, 47.421801], "geometry": {"coordinates": [[[8.513614, 47.420512], [8.513644, 47.420869], [8.513646, 47.420899], [8.513652, 47.42093], [8.513662, 47.42096], [8.513676, 47.420989], [8.513694, 47.421018], [8.513716, 47.421045], [8.514238, 47.421594], [8.514302, 47.421662], [8.514365, 47.421731], [8.514424, 47.421801]]], "type": "MultiLineString"}, "id": "4365", "properties": {}, "type": "Feature"}, {"bbox": [8.52753, 47.414993, 8.528464, 47.415282], "geometry": {"coordinates": [[[8.528464, 47.415282], [8.528136, 47.41515], [8.527996, 47.415093], [8.527849, 47.415043], [8.527697, 47.415001], [8.527674, 47.414997], [8.52765, 47.414994], [8.527626, 47.414993], [8.527602, 47.414993], [8.527578, 47.414994], [8.527554, 47.414997], [8.52753, 47.415001]]], "type": "MultiLineString"}, "id": "4370", "properties": {}, "type": "Feature"}, {"bbox": [8.554662, 47.353549, 8.555743, 47.354201], "geometry": {"coordinates": [[[8.554662, 47.353549], [8.554995, 47.353772], [8.555743, 47.354201]]], "type": "MultiLineString"}, "id": "4372", "properties": {}, "type": "Feature"}, {"bbox": [8.548219, 47.370893, 8.550441, 47.37265], "geometry": {"coordinates": [[[8.548219, 47.370893], [8.54824, 47.370898], [8.548261, 47.370905], [8.548281, 47.370912], [8.548301, 47.37092], [8.548319, 47.37093], [8.548335, 47.37094], [8.548351, 47.370952], [8.548365, 47.370964], [8.548377, 47.370977], [8.549339, 47.372037], [8.549512, 47.372227], [8.549554, 47.372268], [8.549602, 47.372306], [8.549654, 47.372341], [8.54971, 47.372373], [8.54977, 47.372401], [8.549833, 47.372426], [8.550441, 47.37265]]], "type": "MultiLineString"}, "id": "4380", "properties": {}, "type": "Feature"}, {"bbox": [8.530311, 47.351796, 8.530922, 47.352331], "geometry": {"coordinates": [[[8.530922, 47.352331], [8.530889, 47.35229], [8.53086, 47.352258], [8.530608, 47.351992], [8.530311, 47.351796]]], "type": "MultiLineString"}, "id": "4382", "properties": {}, "type": "Feature"}, {"bbox": [8.516399, 47.358927, 8.5174, 47.361261], "geometry": {"coordinates": [[[8.5174, 47.361261], [8.51707, 47.360967], [8.516976, 47.360875], [8.516894, 47.360779], [8.516823, 47.360679], [8.516779, 47.360604], [8.516742, 47.360527], [8.516711, 47.36045], [8.516621, 47.360196], [8.516552, 47.359939], [8.516504, 47.359681], [8.516431, 47.359296], [8.5164, 47.359121], [8.516399, 47.359072], [8.516404, 47.359023], [8.516415, 47.358974], [8.516432, 47.358927]]], "type": "MultiLineString"}, "id": "4393", "properties": {}, "type": "Feature"}, {"bbox": [8.526282, 47.361998, 8.533729, 47.369703], "geometry": {"coordinates": [[[8.533729, 47.369703], [8.53365, 47.369649], [8.533615, 47.369614], [8.533577, 47.369582], [8.533536, 47.369551], [8.533481, 47.369521], [8.533196, 47.369402], [8.532856, 47.369274], [8.532539, 47.369163], [8.532301, 47.369098], [8.532099, 47.369021], [8.532048, 47.368998], [8.531998, 47.368975], [8.531949, 47.36895], [8.530746, 47.368496], [8.530655, 47.368464], [8.530568, 47.368426], [8.530486, 47.368384], [8.530409, 47.368338], [8.530338, 47.368288], [8.530273, 47.368234], [8.530175, 47.368151], [8.530077, 47.368068], [8.529978, 47.367985], [8.529939, 47.367954], [8.529898, 47.367923], [8.529857, 47.367893], [8.529653, 47.367761], [8.529432, 47.367642], [8.529196, 47.367537], [8.528947, 47.367448], [8.528749, 47.367381], [8.528553, 47.367312], [8.528359, 47.367241], [8.528202, 47.367164], [8.528055, 47.367079], [8.527918, 47.366987], [8.527794, 47.366886], [8.527702, 47.3668], [8.527619, 47.366709], [8.527545, 47.366615], [8.526782, 47.365612], [8.526681, 47.365485], [8.526602, 47.365387], [8.526403, 47.365131], [8.526361, 47.365069], [8.526328, 47.365005], [8.526303, 47.364939], [8.526288, 47.364872], [8.526282, 47.364804], [8.526285, 47.364736], [8.526332, 47.364221], [8.526396, 47.363346], [8.526496, 47.361998]]], "type": "MultiLineString"}, "id": "4395", "properties": {}, "type": "Feature"}, {"bbox": [8.590622, 47.358776, 8.59337, 47.35958], "geometry": {"coordinates": [[[8.590622, 47.358776], [8.590909, 47.358826], [8.591708, 47.358995], [8.591917, 47.359042], [8.592119, 47.359102], [8.592312, 47.359173], [8.592442, 47.35923], [8.592617, 47.35932], [8.592803, 47.3594], [8.592996, 47.35947], [8.593081, 47.359496], [8.593167, 47.359521], [8.593254, 47.359544], [8.59337, 47.35958]]], "type": "MultiLineString"}, "id": "4396", "properties": {}, "type": "Feature"}, {"bbox": [8.517726, 47.33614, 8.518219, 47.336228], "geometry": {"coordinates": [[[8.517726, 47.336228], [8.517751, 47.336211], [8.517779, 47.336196], [8.517809, 47.336182], [8.51784, 47.33617], [8.517873, 47.33616], [8.517906, 47.336152], [8.517941, 47.336146], [8.517977, 47.336142], [8.518012, 47.33614], [8.518048, 47.336141], [8.518084, 47.336143], [8.518119, 47.336148], [8.518154, 47.336155], [8.518187, 47.336163], [8.518219, 47.336174]]], "type": "MultiLineString"}, "id": "4402", "properties": {}, "type": "Feature"}, {"bbox": [8.473683, 47.392133, 8.474388, 47.39229], "geometry": {"coordinates": [[[8.473683, 47.392262], [8.4737, 47.39227], [8.473718, 47.392276], [8.473737, 47.392281], [8.473756, 47.392285], [8.473776, 47.392288], [8.473796, 47.392289], [8.473816, 47.39229], [8.473837, 47.392289], [8.473857, 47.392287], [8.473876, 47.392284], [8.473896, 47.39228], [8.473914, 47.392275], [8.473932, 47.392268], [8.473949, 47.392261], [8.473965, 47.392253], [8.474111, 47.392169], [8.474139, 47.392158], [8.474169, 47.392149], [8.474199, 47.392143], [8.47423, 47.392137], [8.474262, 47.392134], [8.474293, 47.392133], [8.474325, 47.392133], [8.474357, 47.392136], [8.474388, 47.39214]]], "type": "MultiLineString"}, "id": "4407", "properties": {}, "type": "Feature"}, {"bbox": [8.601281, 47.354385, 8.603231, 47.354931], "geometry": {"coordinates": [[[8.601281, 47.354749], [8.601437, 47.35476], [8.601458, 47.354761], [8.601479, 47.35476], [8.6015, 47.354758], [8.601521, 47.354755], [8.601542, 47.354751], [8.601561, 47.354746], [8.60158, 47.354739], [8.601598, 47.354732], [8.602551, 47.354385], [8.603231, 47.354931]]], "type": "MultiLineString"}, "id": "4411", "properties": {}, "type": "Feature"}, {"bbox": [8.538128, 47.393682, 8.539237, 47.394853], "geometry": {"coordinates": [[[8.539237, 47.393682], [8.538942, 47.393743], [8.538904, 47.393842], [8.538128, 47.394853]]], "type": "MultiLineString"}, "id": "4414", "properties": {}, "type": "Feature"}, {"bbox": [8.520315, 47.367437, 8.523277, 47.369694], "geometry": {"coordinates": [[[8.523277, 47.367437], [8.522723, 47.367909], [8.522662, 47.367962], [8.522186, 47.368368], [8.52216, 47.36839], [8.5219, 47.368599], [8.521813, 47.368676], [8.521369, 47.368984], [8.521143, 47.369141], [8.521014, 47.36923], [8.520391, 47.369662], [8.520315, 47.369694]]], "type": "MultiLineString"}, "id": "4416", "properties": {}, "type": "Feature"}, {"bbox": [8.546641, 47.389891, 8.549202, 47.390235], "geometry": {"coordinates": [[[8.546641, 47.390235], [8.547267, 47.39015], [8.547273, 47.390149], [8.548401, 47.390002], [8.549202, 47.389891]]], "type": "MultiLineString"}, "id": "4418", "properties": {}, "type": "Feature"}, {"bbox": [8.553571, 47.399567, 8.562067, 47.404198], "geometry": {"coordinates": [[[8.553571, 47.399567], [8.553928, 47.399938], [8.554183, 47.400196], [8.554289, 47.400303], [8.554934, 47.40095], [8.554969, 47.400985], [8.55517, 47.401186], [8.555629, 47.401647], [8.555644, 47.401662], [8.555904, 47.401924], [8.555917, 47.401937], [8.555952, 47.401971], [8.556163, 47.402189], [8.556299, 47.402318], [8.556452, 47.402439], [8.55662, 47.402549], [8.556802, 47.402649], [8.556997, 47.402738], [8.557202, 47.402814], [8.557417, 47.402877], [8.557589, 47.402912], [8.557763, 47.402944], [8.557938, 47.402972], [8.558634, 47.403069], [8.558804, 47.403093], [8.558969, 47.403128], [8.559129, 47.403174], [8.559282, 47.40323], [8.559467, 47.403326], [8.559579, 47.403394], [8.559768, 47.403509], [8.559862, 47.403563], [8.559943, 47.403612], [8.560031, 47.403656], [8.560124, 47.403694], [8.560221, 47.403726], [8.560323, 47.403751], [8.560453, 47.403783], [8.560588, 47.40381], [8.561338, 47.403926], [8.561478, 47.403947], [8.561606, 47.403969], [8.561668, 47.403982], [8.561728, 47.403998], [8.561786, 47.404018], [8.561842, 47.404041], [8.561894, 47.404067], [8.561943, 47.404096], [8.561988, 47.404128], [8.56203, 47.404161], [8.562067, 47.404198]]], "type": "MultiLineString"}, "id": "4424", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.373548, 8.559543, 47.375933], "geometry": {"coordinates": [[[8.553396, 47.373548], [8.553518, 47.373575], [8.5546, 47.373832], [8.554742, 47.373865], [8.554854, 47.373893], [8.554963, 47.373924], [8.55507, 47.373959], [8.556133, 47.374338], [8.556223, 47.374366], [8.556315, 47.37439], [8.55641, 47.37441], [8.556454, 47.374418], [8.556498, 47.374425], [8.556543, 47.37443], [8.557169, 47.37453], [8.557232, 47.374543], [8.557294, 47.374556], [8.557356, 47.374571], [8.557411, 47.374585], [8.557466, 47.3746], [8.55752, 47.374616], [8.558105, 47.374779], [8.558225, 47.374811], [8.558341, 47.374847], [8.558454, 47.374888], [8.55857, 47.374937], [8.558681, 47.37499], [8.558787, 47.375048], [8.559023, 47.375178], [8.559064, 47.375196], [8.559103, 47.375216], [8.559141, 47.375236], [8.559197, 47.375271], [8.559248, 47.37531], [8.559295, 47.375351], [8.559337, 47.375394], [8.559373, 47.375439], [8.559403, 47.375487], [8.559428, 47.375536], [8.559527, 47.375775], [8.559534, 47.375792], [8.55954, 47.37581], [8.559542, 47.375828], [8.559543, 47.375846], [8.559541, 47.375864], [8.559536, 47.375882], [8.559529, 47.3759], [8.55952, 47.375917], [8.559509, 47.375933]]], "type": "MultiLineString"}, "id": "4430", "properties": {}, "type": "Feature"}, {"bbox": [8.590347, 47.355742, 8.59169, 47.356192], "geometry": {"coordinates": [[[8.590347, 47.356192], [8.590612, 47.356167], [8.590713, 47.356155], [8.590811, 47.356137], [8.590907, 47.356113], [8.590999, 47.356084], [8.591087, 47.35605], [8.591171, 47.356011], [8.591313, 47.355935], [8.591454, 47.355858], [8.591595, 47.355781], [8.591625, 47.355767], [8.591657, 47.355754], [8.59169, 47.355742]]], "type": "MultiLineString"}, "id": "4432", "properties": {}, "type": "Feature"}, {"bbox": [8.490539, 47.405065, 8.491639, 47.405671], "geometry": {"coordinates": [[[8.490539, 47.40567], [8.490569, 47.405671], [8.490599, 47.405671], [8.490628, 47.405668], [8.490657, 47.405663], [8.491569, 47.405364], [8.491574, 47.405362], [8.49158, 47.40536], [8.491585, 47.405357], [8.491589, 47.405354], [8.491594, 47.405351], [8.491597, 47.405348], [8.491601, 47.405344], [8.491604, 47.405341], [8.491606, 47.405337], [8.491608, 47.405333], [8.49161, 47.405329], [8.491611, 47.405324], [8.491611, 47.40532], [8.491611, 47.405316], [8.49161, 47.405312], [8.491609, 47.405308], [8.491608, 47.405304], [8.491605, 47.4053], [8.491603, 47.405296], [8.491534, 47.405198], [8.49153, 47.405192], [8.491526, 47.405186], [8.491523, 47.40518], [8.491521, 47.405174], [8.49152, 47.405168], [8.49152, 47.405161], [8.49152, 47.405155], [8.491521, 47.405148], [8.491523, 47.405142], [8.491526, 47.405136], [8.491529, 47.40513], [8.491534, 47.405124], [8.491539, 47.405119], [8.491545, 47.405114], [8.491551, 47.405109], [8.491639, 47.405065]]], "type": "MultiLineString"}, "id": "4436", "properties": {}, "type": "Feature"}, {"bbox": [8.54097, 47.399662, 8.543076, 47.401467], "geometry": {"coordinates": [[[8.54097, 47.399662], [8.541221, 47.399761], [8.541875, 47.400092], [8.541979, 47.400175], [8.542251, 47.400502], [8.542393, 47.400729], [8.542741, 47.401149], [8.542839, 47.401261], [8.542951, 47.401368], [8.543076, 47.401467]]], "type": "MultiLineString"}, "id": "4439", "properties": {}, "type": "Feature"}, {"bbox": [8.529792, 47.381063, 8.532018, 47.382562], "geometry": {"coordinates": [[[8.531936, 47.381063], [8.532005, 47.381138], [8.532009, 47.381143], [8.532012, 47.381147], [8.532014, 47.381151], [8.532016, 47.381156], [8.532017, 47.381161], [8.532018, 47.381165], [8.532018, 47.38117], [8.532017, 47.381175], [8.532016, 47.38118], [8.532014, 47.381184], [8.532011, 47.381189], [8.532008, 47.381193], [8.532005, 47.381197], [8.532, 47.381201], [8.531996, 47.381205], [8.531991, 47.381208], [8.531985, 47.381211], [8.531045, 47.38179], [8.530353, 47.382212], [8.52985, 47.38252], [8.529792, 47.382562]]], "type": "MultiLineString"}, "id": "4440", "properties": {}, "type": "Feature"}, {"bbox": [8.531247, 47.383115, 8.532774, 47.384264], "geometry": {"coordinates": [[[8.532774, 47.383115], [8.532723, 47.383154], [8.532084, 47.383629], [8.531378, 47.384148], [8.531299, 47.38422], [8.531247, 47.384264]]], "type": "MultiLineString"}, "id": "4441", "properties": {}, "type": "Feature"}, {"bbox": [8.529939, 47.381733, 8.53256, 47.38392], "geometry": {"coordinates": [[[8.529939, 47.381733], [8.529971, 47.381768], [8.530318, 47.382171], [8.530353, 47.382212], [8.530404, 47.382275], [8.530921, 47.382873], [8.53097, 47.38293], [8.531072, 47.382996], [8.53122, 47.383087], [8.531279, 47.383122], [8.531309, 47.383141], [8.53163, 47.383344], [8.531678, 47.383375], [8.531728, 47.383405], [8.532084, 47.383629], [8.532464, 47.383864], [8.53256, 47.38392]]], "type": "MultiLineString"}, "id": "4442", "properties": {}, "type": "Feature"}, {"bbox": [8.534438, 47.380561, 8.535894, 47.381449], "geometry": {"coordinates": [[[8.534438, 47.380561], [8.534567, 47.380641], [8.534868, 47.380817], [8.535182, 47.381008], [8.535894, 47.381449]]], "type": "MultiLineString"}, "id": "4443", "properties": {}, "type": "Feature"}, {"bbox": [8.530762, 47.381498, 8.533261, 47.383431], "geometry": {"coordinates": [[[8.530762, 47.381498], [8.530793, 47.381529], [8.531007, 47.381749], [8.531045, 47.38179], [8.531099, 47.38185], [8.531552, 47.382329], [8.531679, 47.382437], [8.53181, 47.382516], [8.531962, 47.38261], [8.531986, 47.382626], [8.532368, 47.382861], [8.532774, 47.383115], [8.533261, 47.383431]]], "type": "MultiLineString"}, "id": "4444", "properties": {}, "type": "Feature"}, {"bbox": [8.530956, 47.382861, 8.532368, 47.383926], "geometry": {"coordinates": [[[8.532368, 47.382861], [8.53232, 47.382898], [8.531678, 47.383375], [8.531051, 47.38384], [8.530956, 47.383926]]], "type": "MultiLineString"}, "id": "4445", "properties": {}, "type": "Feature"}, {"bbox": [8.480063, 47.403969, 8.482309, 47.405153], "geometry": {"coordinates": [[[8.480063, 47.405153], [8.480091, 47.405033], [8.480093, 47.405024], [8.480097, 47.405015], [8.480102, 47.405007], [8.480107, 47.404999], [8.480114, 47.404991], [8.480122, 47.404984], [8.48013, 47.404977], [8.48014, 47.40497], [8.48015, 47.404965], [8.480161, 47.40496], [8.480173, 47.404955], [8.480185, 47.404951], [8.480197, 47.404948], [8.48021, 47.404946], [8.480223, 47.404945], [8.480237, 47.404944], [8.480696, 47.404915], [8.480757, 47.404907], [8.480817, 47.404896], [8.480876, 47.404881], [8.480932, 47.404863], [8.480986, 47.404841], [8.481036, 47.404817], [8.481083, 47.404789], [8.481126, 47.404758], [8.481165, 47.404725], [8.481199, 47.40469], [8.481229, 47.404652], [8.481253, 47.404614], [8.481383, 47.404366], [8.481392, 47.404351], [8.481403, 47.404337], [8.481416, 47.404324], [8.481431, 47.404312], [8.481447, 47.4043], [8.481464, 47.404289], [8.481569, 47.404242], [8.481678, 47.4042], [8.481791, 47.404163], [8.482005, 47.404085], [8.482108, 47.404048], [8.482209, 47.40401], [8.482309, 47.403969]]], "type": "MultiLineString"}, "id": "4447", "properties": {}, "type": "Feature"}, {"bbox": [8.508217, 47.400023, 8.509111, 47.40109], "geometry": {"coordinates": [[[8.508917, 47.400023], [8.509052, 47.400138], [8.509069, 47.400158], [8.509083, 47.400179], [8.509094, 47.4002], [8.509103, 47.400222], [8.509109, 47.400244], [8.509111, 47.400267], [8.509111, 47.40029], [8.509108, 47.400313], [8.509102, 47.400335], [8.509093, 47.400357], [8.509081, 47.400378], [8.509066, 47.400399], [8.509049, 47.400418], [8.508907, 47.40055], [8.508754, 47.400677], [8.508591, 47.400798], [8.508217, 47.40109]]], "type": "MultiLineString"}, "id": "4448", "properties": {}, "type": "Feature"}, {"bbox": [8.496825, 47.422649, 8.507959, 47.42586], "geometry": {"coordinates": [[[8.507959, 47.422649], [8.507882, 47.42267], [8.507807, 47.422691], [8.507732, 47.422714], [8.507589, 47.422759], [8.507449, 47.422809], [8.507312, 47.422861], [8.506808, 47.423098], [8.506598, 47.423199], [8.506386, 47.423299], [8.506172, 47.423397], [8.505968, 47.423488], [8.505763, 47.423578], [8.505556, 47.423666], [8.505415, 47.423723], [8.505271, 47.423777], [8.505125, 47.423829], [8.505038, 47.423858], [8.504949, 47.423887], [8.50486, 47.423914], [8.5048, 47.423932], [8.50474, 47.42395], [8.504679, 47.423968], [8.5046, 47.42399], [8.504521, 47.424012], [8.504442, 47.424033], [8.504386, 47.424048], [8.50433, 47.424062], [8.504274, 47.424076], [8.50421, 47.424091], [8.504146, 47.424106], [8.504082, 47.42412], [8.503893, 47.424162], [8.503705, 47.424205], [8.503517, 47.424248], [8.50332, 47.424294], [8.503124, 47.424341], [8.502928, 47.42439], [8.502744, 47.424441], [8.50256, 47.424495], [8.502378, 47.42455], [8.50221, 47.424602], [8.502042, 47.424655], [8.501876, 47.424709], [8.501671, 47.424774], [8.501464, 47.424838], [8.501257, 47.4249], [8.501098, 47.424946], [8.500939, 47.424991], [8.50078, 47.425035], [8.500458, 47.425122], [8.500135, 47.425206], [8.499811, 47.425289], [8.499333, 47.425403], [8.498848, 47.425503], [8.498357, 47.425586], [8.497874, 47.425647], [8.497746, 47.425672], [8.497347, 47.425751], [8.496825, 47.42586]]], "type": "MultiLineString"}, "id": "4451", "properties": {}, "type": "Feature"}, {"bbox": [8.510669, 47.415876, 8.511367, 47.41644], "geometry": {"coordinates": [[[8.511367, 47.41644], [8.51084, 47.415944], [8.510827, 47.415933], [8.510814, 47.415922], [8.510799, 47.415913], [8.510782, 47.415905], [8.510765, 47.415897], [8.510747, 47.41589], [8.510729, 47.415885], [8.510709, 47.415881], [8.510689, 47.415878], [8.510669, 47.415876]]], "type": "MultiLineString"}, "id": "4452", "properties": {}, "type": "Feature"}, {"bbox": [8.475754, 47.414471, 8.480552, 47.415356], "geometry": {"coordinates": [[[8.480552, 47.414471], [8.480504, 47.414583], [8.480269, 47.414963], [8.480237, 47.415011], [8.480198, 47.415056], [8.480153, 47.415099], [8.480104, 47.415139], [8.480049, 47.415176], [8.47999, 47.41521], [8.479926, 47.41524], [8.479864, 47.415269], [8.479799, 47.415294], [8.47973, 47.415315], [8.479659, 47.415332], [8.479587, 47.415344], [8.479512, 47.415353], [8.479438, 47.415356], [8.479362, 47.415356], [8.479288, 47.415351], [8.479214, 47.415341], [8.478874, 47.415289], [8.47793, 47.415151], [8.477444, 47.415084], [8.477234, 47.415064], [8.476875, 47.415037], [8.476515, 47.415014], [8.476154, 47.414995], [8.4761, 47.414994], [8.476046, 47.414989], [8.475993, 47.414981], [8.475941, 47.414971], [8.475891, 47.414957], [8.475843, 47.41494], [8.475797, 47.41492], [8.475754, 47.414898]]], "type": "MultiLineString"}, "id": "4453", "properties": {}, "type": "Feature"}, {"bbox": [8.550099, 47.419805, 8.550837, 47.420621], "geometry": {"coordinates": [[[8.550099, 47.419805], [8.550189, 47.419891], [8.550797, 47.420517], [8.550837, 47.420621]]], "type": "MultiLineString"}, "id": "4460", "properties": {}, "type": "Feature"}, {"bbox": [8.553555, 47.376606, 8.555886, 47.379853], "geometry": {"coordinates": [[[8.555296, 47.376606], [8.555843, 47.377198], [8.555857, 47.37722], [8.555869, 47.377242], [8.555878, 47.377266], [8.555883, 47.377289], [8.555886, 47.377313], [8.555885, 47.377337], [8.555882, 47.37736], [8.555875, 47.377384], [8.555866, 47.377407], [8.555853, 47.377429], [8.555838, 47.377451], [8.55582, 47.377471], [8.5558, 47.377491], [8.555777, 47.377509], [8.555752, 47.377525], [8.555724, 47.377541], [8.555695, 47.377554], [8.555665, 47.377566], [8.555633, 47.377575], [8.555599, 47.377583], [8.555565, 47.377589], [8.555561, 47.37759], [8.555557, 47.37759], [8.555552, 47.377591], [8.555024, 47.37767], [8.554931, 47.377687], [8.554841, 47.377711], [8.554754, 47.37774], [8.554671, 47.377775], [8.554594, 47.377814], [8.554522, 47.377858], [8.554457, 47.377907], [8.554398, 47.377959], [8.554098, 47.378251], [8.553619, 47.378716], [8.553603, 47.378732], [8.55359, 47.378748], [8.553578, 47.378765], [8.553569, 47.378783], [8.553562, 47.378801], [8.553557, 47.37882], [8.553555, 47.378839], [8.553555, 47.378857], [8.553557, 47.378876], [8.553562, 47.378895], [8.553568, 47.378913], [8.553578, 47.378931], [8.553589, 47.378948], [8.553602, 47.378964], [8.553618, 47.37898], [8.553635, 47.378995], [8.553654, 47.379008], [8.553812, 47.379121], [8.553947, 47.379219], [8.554121, 47.379345], [8.554808, 47.379853]]], "type": "MultiLineString"}, "id": "4461", "properties": {}, "type": "Feature"}, {"bbox": [8.510403, 47.32465, 8.51445, 47.325155], "geometry": {"coordinates": [[[8.51445, 47.324866], [8.514327, 47.324847], [8.514299, 47.324843], [8.51427, 47.324841], [8.514242, 47.324841], [8.514214, 47.324842], [8.514185, 47.324845], [8.514158, 47.32485], [8.514131, 47.324856], [8.514105, 47.324864], [8.51408, 47.324873], [8.514056, 47.324884], [8.514034, 47.324896], [8.514014, 47.324909], [8.513995, 47.324924], [8.513946, 47.324965], [8.513892, 47.325003], [8.513833, 47.325037], [8.51377, 47.325067], [8.513702, 47.325094], [8.513632, 47.325116], [8.513559, 47.325134], [8.513484, 47.325147], [8.513408, 47.325155], [8.512999, 47.325137], [8.512596, 47.325091], [8.512201, 47.325018], [8.512181, 47.325014], [8.510981, 47.324741], [8.510792, 47.3247], [8.510599, 47.32467], [8.510403, 47.32465]]], "type": "MultiLineString"}, "id": "4464", "properties": {}, "type": "Feature"}, {"bbox": [8.49929, 47.402037, 8.499379, 47.402347], "geometry": {"coordinates": [[[8.49929, 47.402037], [8.499376, 47.402245], [8.499378, 47.402254], [8.499379, 47.402264], [8.499379, 47.402273], [8.499378, 47.402283], [8.499375, 47.402292], [8.499371, 47.402301], [8.499366, 47.40231], [8.49936, 47.402318], [8.499353, 47.402326], [8.499344, 47.402334], [8.499335, 47.402341], [8.499325, 47.402347]]], "type": "MultiLineString"}, "id": "4467", "properties": {}, "type": "Feature"}, {"bbox": [8.489771, 47.407631, 8.490681, 47.407847], "geometry": {"coordinates": [[[8.490681, 47.407827], [8.490619, 47.407837], [8.490557, 47.407844], [8.490493, 47.407847], [8.490429, 47.407846], [8.490366, 47.407841], [8.490304, 47.407832], [8.490243, 47.40782], [8.490184, 47.407803], [8.490127, 47.407784], [8.490073, 47.407761], [8.49001, 47.407731], [8.489947, 47.407703], [8.489882, 47.407675], [8.489845, 47.40766], [8.489808, 47.407645], [8.489771, 47.407631]]], "type": "MultiLineString"}, "id": "4472", "properties": {}, "type": "Feature"}, {"bbox": [8.555916, 47.38289, 8.557257, 47.383641], "geometry": {"coordinates": [[[8.555916, 47.383641], [8.556165, 47.383442], [8.556346, 47.38333], [8.556743, 47.383006], [8.556773, 47.382985], [8.556805, 47.382966], [8.556839, 47.38295], [8.556875, 47.382935], [8.556912, 47.382922], [8.556952, 47.382912], [8.556992, 47.382903], [8.55708, 47.382895], [8.557168, 47.382891], [8.557257, 47.38289]]], "type": "MultiLineString"}, "id": "4475", "properties": {}, "type": "Feature"}, {"bbox": [8.561212, 47.361275, 8.56798, 47.362767], "geometry": {"coordinates": [[[8.561212, 47.361603], [8.5614, 47.3616], [8.562097, 47.361382], [8.562189, 47.361354], [8.562342, 47.361321], [8.562498, 47.361297], [8.562656, 47.361282], [8.562816, 47.361275], [8.563026, 47.361288], [8.563235, 47.361307], [8.563443, 47.361332], [8.563517, 47.361341], [8.565064, 47.361515], [8.565145, 47.361521], [8.565225, 47.361532], [8.565303, 47.361548], [8.565374, 47.361567], [8.565443, 47.361591], [8.565508, 47.361619], [8.566129, 47.361906], [8.566359, 47.362013], [8.566962, 47.362292], [8.567092, 47.362353], [8.567172, 47.36239], [8.56798, 47.362767]]], "type": "MultiLineString"}, "id": "4478", "properties": {}, "type": "Feature"}, {"bbox": [8.536129, 47.375788, 8.536796, 47.375946], "geometry": {"coordinates": [[[8.536796, 47.375788], [8.536738, 47.375802], [8.5364, 47.37588], [8.536129, 47.375946]]], "type": "MultiLineString"}, "id": "4479", "properties": {}, "type": "Feature"}, {"bbox": [8.481856, 47.373838, 8.482626, 47.374269], "geometry": {"coordinates": [[[8.482626, 47.374269], [8.48259, 47.37425], [8.482369, 47.374148], [8.482334, 47.374131], [8.482301, 47.374112], [8.482269, 47.374091], [8.482198, 47.374039], [8.482131, 47.373984], [8.482067, 47.373927], [8.482004, 47.373896], [8.481939, 47.373867], [8.48187, 47.373843], [8.481856, 47.373838]]], "type": "MultiLineString"}, "id": "4480", "properties": {}, "type": "Feature"}, {"bbox": [8.476829, 47.38607, 8.478095, 47.386489], "geometry": {"coordinates": [[[8.478095, 47.38607], [8.477073, 47.386407], [8.476829, 47.386489]]], "type": "MultiLineString"}, "id": "4488", "properties": {}, "type": "Feature"}, {"bbox": [8.502287, 47.371387, 8.503929, 47.373231], "geometry": {"coordinates": [[[8.503929, 47.373231], [8.50376, 47.373024], [8.503581, 47.372821], [8.503391, 47.372622], [8.503376, 47.372609], [8.503361, 47.372595], [8.503347, 47.372581], [8.503322, 47.372558], [8.503298, 47.372535], [8.503275, 47.372511], [8.50295, 47.372216], [8.502931, 47.372198], [8.50291, 47.37218], [8.502889, 47.372162], [8.502737, 47.372015], [8.502599, 47.371861], [8.502476, 47.371702], [8.502406, 47.371599], [8.502343, 47.371494], [8.502287, 47.371387]]], "type": "MultiLineString"}, "id": "4493", "properties": {}, "type": "Feature"}, {"bbox": [8.529232, 47.381908, 8.531333, 47.384362], "geometry": {"coordinates": [[[8.529232, 47.381908], [8.529792, 47.382562], [8.530345, 47.383207], [8.530426, 47.38331], [8.530665, 47.383583], [8.530956, 47.383926], [8.531247, 47.384264], [8.531333, 47.384362]]], "type": "MultiLineString"}, "id": "4495", "properties": {}, "type": "Feature"}, {"bbox": [8.55519, 47.416618, 8.560808, 47.418183], "geometry": {"coordinates": [[[8.55519, 47.416618], [8.555435, 47.416735], [8.555692, 47.416841], [8.555959, 47.416934], [8.556074, 47.416967], [8.55619, 47.416998], [8.556308, 47.417027], [8.557712, 47.417365], [8.559885, 47.417888], [8.560297, 47.417987], [8.560435, 47.418023], [8.560566, 47.418068], [8.560691, 47.418121], [8.560808, 47.418183]]], "type": "MultiLineString"}, "id": "4496", "properties": {}, "type": "Feature"}, {"bbox": [8.569814, 47.354016, 8.572092, 47.357347], "geometry": {"coordinates": [[[8.569814, 47.357347], [8.569933, 47.357211], [8.570452, 47.35665], [8.570552, 47.35655], [8.571299, 47.355778], [8.571336, 47.355747], [8.571705, 47.35541], [8.571792, 47.355319], [8.571823, 47.355282], [8.571881, 47.355204], [8.57192, 47.355146], [8.571955, 47.355085], [8.571996, 47.355003], [8.572013, 47.354962], [8.572048, 47.354856], [8.572082, 47.354706], [8.572086, 47.354673], [8.572092, 47.354554], [8.572084, 47.354262], [8.572052, 47.354016]]], "type": "MultiLineString"}, "id": "4497", "properties": {}, "type": "Feature"}, {"bbox": [8.564775, 47.40999, 8.567643, 47.410216], "geometry": {"coordinates": [[[8.564775, 47.410192], [8.564835, 47.410203], [8.564896, 47.410211], [8.564958, 47.410216], [8.565907, 47.410178], [8.567363, 47.41011], [8.567643, 47.40999]]], "type": "MultiLineString"}, "id": "4498", "properties": {}, "type": "Feature"}, {"bbox": [8.549777, 47.423346, 8.554082, 47.427163], "geometry": {"coordinates": [[[8.549777, 47.423346], [8.550062, 47.423485], [8.55033, 47.423638], [8.55058, 47.423804], [8.551287, 47.424476], [8.551785, 47.424966], [8.5521, 47.425138], [8.553006, 47.425993], [8.553279, 47.426263], [8.553567, 47.426526], [8.553869, 47.426781], [8.553932, 47.426851], [8.553985, 47.426925], [8.554029, 47.427002], [8.554061, 47.427082], [8.554082, 47.427163]]], "type": "MultiLineString"}, "id": "4500", "properties": {}, "type": "Feature"}, {"bbox": [8.538748, 47.418258, 8.542101, 47.420259], "geometry": {"coordinates": [[[8.542101, 47.418258], [8.542037, 47.418559], [8.541678, 47.418584], [8.54132, 47.418619], [8.540965, 47.418663], [8.540762, 47.418695], [8.540561, 47.418733], [8.540362, 47.418774], [8.540269, 47.418792], [8.540179, 47.418815], [8.540092, 47.418844], [8.54001, 47.418877], [8.539931, 47.418915], [8.539858, 47.418957], [8.53979, 47.419004], [8.539728, 47.419054], [8.539673, 47.419108], [8.538934, 47.419988], [8.538816, 47.420158], [8.538748, 47.420256], [8.538749, 47.420259]]], "type": "MultiLineString"}, "id": "4501", "properties": {}, "type": "Feature"}, {"bbox": [8.506585, 47.35855, 8.509874, 47.361466], "geometry": {"coordinates": [[[8.509874, 47.35855], [8.509703, 47.358689], [8.50965, 47.358733], [8.5096, 47.358779], [8.509528, 47.358851], [8.509425, 47.358965], [8.508762, 47.359717], [8.508747, 47.359732], [8.508723, 47.359764], [8.508691, 47.359805], [8.508387, 47.359786], [8.508323, 47.359797], [8.508274, 47.359846], [8.507416, 47.360823], [8.507344, 47.360901], [8.507295, 47.36095], [8.507244, 47.360997], [8.507188, 47.361042], [8.507131, 47.361086], [8.506585, 47.361466]]], "type": "MultiLineString"}, "id": "4515", "properties": {}, "type": "Feature"}, {"bbox": [8.507994, 47.3525, 8.511813, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511547, 47.353266], [8.511264, 47.35315], [8.510965, 47.353053], [8.510828, 47.353015], [8.510689, 47.352983], [8.510547, 47.352956], [8.510442, 47.35294], [8.510172, 47.352891], [8.509328, 47.35274], [8.507994, 47.3525]]], "type": "MultiLineString"}, "id": "4519", "properties": {}, "type": "Feature"}, {"bbox": [8.542781, 47.377776, 8.543712, 47.380439], "geometry": {"coordinates": [[[8.543712, 47.377776], [8.543693, 47.377895], [8.543616, 47.378352], [8.543573, 47.378662], [8.543554, 47.378801], [8.543537, 47.378872], [8.543533, 47.378889], [8.54351, 47.378963], [8.543484, 47.379037], [8.543456, 47.37911], [8.543391, 47.379264], [8.543229, 47.379646], [8.54317, 47.379785], [8.543059, 47.38], [8.542781, 47.380439]]], "type": "MultiLineString"}, "id": "4521", "properties": {}, "type": "Feature"}, {"bbox": [8.572454, 47.354898, 8.574772, 47.357535], "geometry": {"coordinates": [[[8.572544, 47.357535], [8.572527, 47.357525], [8.572511, 47.357513], [8.572497, 47.3575], [8.572485, 47.357487], [8.572475, 47.357473], [8.572467, 47.357458], [8.572461, 47.357443], [8.572456, 47.357427], [8.572454, 47.357412], [8.572454, 47.357396], [8.572531, 47.357054], [8.57257, 47.356891], [8.572628, 47.356731], [8.572704, 47.356574], [8.572798, 47.356422], [8.572961, 47.356165], [8.573172, 47.355902], [8.573421, 47.355655], [8.573706, 47.355426], [8.574523, 47.354898], [8.574772, 47.354901]]], "type": "MultiLineString"}, "id": "4526", "properties": {}, "type": "Feature"}, {"bbox": [8.53459, 47.367657, 8.538018, 47.369021], "geometry": {"coordinates": [[[8.538018, 47.369021], [8.537892, 47.368932], [8.53778, 47.36885], [8.537664, 47.368772], [8.537543, 47.368698], [8.537484, 47.368663], [8.537423, 47.368629], [8.537361, 47.368597], [8.53722, 47.36853], [8.536687, 47.36828], [8.536497, 47.368196], [8.536267, 47.368107], [8.536028, 47.368031], [8.53578, 47.367968], [8.535667, 47.367942], [8.535555, 47.367914], [8.535443, 47.367886], [8.53535, 47.367862], [8.535258, 47.367837], [8.535166, 47.367811], [8.534806, 47.367724], [8.534735, 47.367705], [8.534665, 47.367684], [8.534597, 47.36766], [8.53459, 47.367657]]], "type": "MultiLineString"}, "id": "4531", "properties": {}, "type": "Feature"}, {"bbox": [8.538275, 47.416931, 8.538445, 47.418388], "geometry": {"coordinates": [[[8.538275, 47.416931], [8.538356, 47.417575], [8.538445, 47.41763], [8.538403, 47.417981], [8.538368, 47.41819], [8.538372, 47.418388]]], "type": "MultiLineString"}, "id": "4532", "properties": {}, "type": "Feature"}, {"bbox": [8.520449, 47.366685, 8.522723, 47.367909], "geometry": {"coordinates": [[[8.522723, 47.367909], [8.522175, 47.367612], [8.52133, 47.367153], [8.520449, 47.366685]]], "type": "MultiLineString"}, "id": "4533", "properties": {}, "type": "Feature"}, {"bbox": [8.511054, 47.370647, 8.513206, 47.372334], "geometry": {"coordinates": [[[8.513206, 47.372334], [8.512482, 47.371926], [8.511833, 47.371451], [8.511832, 47.37145], [8.511832, 47.37145], [8.511054, 47.370647]]], "type": "MultiLineString"}, "id": "4534", "properties": {}, "type": "Feature"}, {"bbox": [8.512631, 47.370888, 8.515406, 47.372072], "geometry": {"coordinates": [[[8.515406, 47.372072], [8.514261, 47.37144], [8.513532, 47.371032], [8.513511, 47.371013], [8.513487, 47.370994], [8.51346, 47.370977], [8.513432, 47.370962], [8.513402, 47.370948], [8.51337, 47.370936], [8.513337, 47.370926], [8.513303, 47.370918], [8.513268, 47.370912], [8.513232, 47.370908], [8.513196, 47.370907], [8.513007, 47.370903], [8.512819, 47.370897], [8.512631, 47.370888]]], "type": "MultiLineString"}, "id": "4535", "properties": {}, "type": "Feature"}, {"bbox": [8.525044, 47.374258, 8.526656, 47.375407], "geometry": {"coordinates": [[[8.525044, 47.374258], [8.525066, 47.374297], [8.525092, 47.374335], [8.525123, 47.374371], [8.525158, 47.374405], [8.526071, 47.375013], [8.526555, 47.375335], [8.526656, 47.375407]]], "type": "MultiLineString"}, "id": "4538", "properties": {}, "type": "Feature"}, {"bbox": [8.585159, 47.40485, 8.5855, 47.405537], "geometry": {"coordinates": [[[8.5855, 47.40485], [8.58516, 47.405535], [8.585159, 47.405537]]], "type": "MultiLineString"}, "id": "4541", "properties": {}, "type": "Feature"}, {"bbox": [8.480605, 47.390336, 8.481594, 47.391815], "geometry": {"coordinates": [[[8.481552, 47.391815], [8.48159, 47.391716], [8.481592, 47.39171], [8.481593, 47.391705], [8.481594, 47.391699], [8.481593, 47.391693], [8.481592, 47.391688], [8.48159, 47.391682], [8.481587, 47.391677], [8.481584, 47.391671], [8.481337, 47.391324], [8.481263, 47.39124], [8.480662, 47.390394], [8.480605, 47.390336]]], "type": "MultiLineString"}, "id": "4542", "properties": {}, "type": "Feature"}, {"bbox": [8.541726, 47.36674, 8.541862, 47.369868], "geometry": {"coordinates": [[[8.541802, 47.36674], [8.541741, 47.366936], [8.541731, 47.366983], [8.541726, 47.36703], [8.541728, 47.367077], [8.541734, 47.367368], [8.541785, 47.368094], [8.541851, 47.369055], [8.541836, 47.369146], [8.541828, 47.369193], [8.541855, 47.369791], [8.541862, 47.369868]]], "type": "MultiLineString"}, "id": "4543", "properties": {}, "type": "Feature"}, {"bbox": [8.522185, 47.371932, 8.527691, 47.373144], "geometry": {"coordinates": [[[8.527691, 47.373144], [8.527632, 47.373137], [8.527299, 47.373079], [8.526167, 47.372882], [8.525821, 47.372819], [8.525237, 47.372711], [8.524687, 47.372597], [8.524029, 47.372457], [8.523928, 47.372437], [8.523827, 47.372417], [8.523727, 47.372396], [8.523651, 47.372379], [8.523575, 47.372362], [8.523499, 47.372345], [8.523304, 47.372298], [8.523111, 47.37225], [8.522919, 47.372199], [8.522844, 47.372179], [8.522769, 47.372158], [8.522695, 47.372137], [8.522354, 47.371994], [8.522185, 47.371932]]], "type": "MultiLineString"}, "id": "4546", "properties": {}, "type": "Feature"}, {"bbox": [8.532591, 47.388442, 8.532779, 47.388865], "geometry": {"coordinates": [[[8.532591, 47.388442], [8.532707, 47.388546], [8.532721, 47.388561], [8.532732, 47.388577], [8.532742, 47.388593], [8.532749, 47.38861], [8.532753, 47.388628], [8.532755, 47.388645], [8.532779, 47.388865]]], "type": "MultiLineString"}, "id": "4549", "properties": {}, "type": "Feature"}, {"bbox": [8.495905, 47.424596, 8.496825, 47.42586], "geometry": {"coordinates": [[[8.496825, 47.42586], [8.496696, 47.425619], [8.496594, 47.425447], [8.496172, 47.424829], [8.496149, 47.424798], [8.496121, 47.424769], [8.496089, 47.424741], [8.495905, 47.424596]]], "type": "MultiLineString"}, "id": "4574", "properties": {}, "type": "Feature"}, {"bbox": [8.534846, 47.369475, 8.536478, 47.370456], "geometry": {"coordinates": [[[8.536478, 47.369475], [8.536469, 47.369475], [8.536461, 47.369476], [8.536453, 47.369478], [8.536445, 47.36948], [8.536437, 47.369483], [8.53643, 47.369486], [8.536423, 47.369489], [8.536417, 47.369493], [8.536241, 47.369601], [8.535693, 47.369939], [8.535635, 47.369974], [8.534902, 47.370423], [8.534846, 47.370456]]], "type": "MultiLineString"}, "id": "4575", "properties": {}, "type": "Feature"}, {"bbox": [8.577339, 47.351311, 8.584088, 47.353043], "geometry": {"coordinates": [[[8.577339, 47.353043], [8.577824, 47.35298], [8.578024, 47.352987], [8.578657, 47.352993], [8.578732, 47.352993], [8.578806, 47.352988], [8.57888, 47.352979], [8.578953, 47.352966], [8.580213, 47.352713], [8.580432, 47.352654], [8.580643, 47.352584], [8.580846, 47.352504], [8.581087, 47.352381], [8.581947, 47.35204], [8.582491, 47.351835], [8.583447, 47.351509], [8.583743, 47.35141], [8.583964, 47.351338], [8.583994, 47.351328], [8.584024, 47.351321], [8.584056, 47.351315], [8.584088, 47.351311]]], "type": "MultiLineString"}, "id": "4576", "properties": {}, "type": "Feature"}, {"bbox": [8.580125, 47.35989, 8.580615, 47.36116], "geometry": {"coordinates": [[[8.580179, 47.35989], [8.58026, 47.359986], [8.580288, 47.360012], [8.580319, 47.360036], [8.580353, 47.360059], [8.58039, 47.360079], [8.58043, 47.360098], [8.580471, 47.360113], [8.580514, 47.360127], [8.580559, 47.360137], [8.580605, 47.360145], [8.580614, 47.3602], [8.580615, 47.360255], [8.580609, 47.36031], [8.580595, 47.360364], [8.580574, 47.360417], [8.580545, 47.360469], [8.580125, 47.36116]]], "type": "MultiLineString"}, "id": "4578", "properties": {}, "type": "Feature"}, {"bbox": [8.52506, 47.334827, 8.529981, 47.335382], "geometry": {"coordinates": [[[8.529981, 47.334827], [8.529861, 47.334864], [8.529768, 47.334873], [8.529675, 47.33488], [8.529581, 47.334884], [8.529211, 47.33489], [8.529103, 47.334893], [8.528996, 47.334901], [8.52889, 47.334912], [8.528818, 47.334921], [8.528746, 47.334933], [8.528675, 47.334946], [8.528415, 47.334999], [8.52815, 47.335038], [8.52788, 47.335061], [8.527609, 47.33507], [8.527494, 47.335061], [8.527379, 47.335052], [8.527265, 47.335041], [8.527135, 47.33503], [8.527005, 47.335028], [8.526875, 47.335034], [8.526746, 47.335048], [8.52662, 47.33507], [8.526497, 47.3351], [8.525826, 47.335312], [8.525716, 47.33534], [8.525602, 47.335361], [8.525486, 47.335375], [8.525369, 47.335382], [8.525251, 47.335381], [8.52506, 47.335374]]], "type": "MultiLineString"}, "id": "4579", "properties": {}, "type": "Feature"}, {"bbox": [8.542205, 47.411871, 8.542577, 47.412231], "geometry": {"coordinates": [[[8.542577, 47.411871], [8.542537, 47.411891], [8.542501, 47.411913], [8.542467, 47.411937], [8.542437, 47.411963], [8.54241, 47.411991], [8.542205, 47.412231]]], "type": "MultiLineString"}, "id": "4580", "properties": {}, "type": "Feature"}, {"bbox": [8.542453, 47.412516, 8.543305, 47.41361], "geometry": {"coordinates": [[[8.543305, 47.412516], [8.543252, 47.412565], [8.54302, 47.412872], [8.542453, 47.41361]]], "type": "MultiLineString"}, "id": "4590", "properties": {}, "type": "Feature"}, {"bbox": [8.527482, 47.393515, 8.529365, 47.394139], "geometry": {"coordinates": [[[8.529365, 47.393515], [8.52921, 47.393562], [8.52896, 47.393635], [8.528327, 47.39385], [8.527694, 47.394065], [8.527482, 47.394139]]], "type": "MultiLineString"}, "id": "4602", "properties": {}, "type": "Feature"}, {"bbox": [8.481029, 47.373459, 8.481856, 47.373838], "geometry": {"coordinates": [[[8.481856, 47.373838], [8.481798, 47.373822], [8.481724, 47.373805], [8.481604, 47.373763], [8.48149, 47.373715], [8.481382, 47.373661], [8.481269, 47.373598], [8.481158, 47.373535], [8.481049, 47.373469], [8.481029, 47.373459]]], "type": "MultiLineString"}, "id": "4603", "properties": {}, "type": "Feature"}, {"bbox": [8.53645, 47.422295, 8.538976, 47.426198], "geometry": {"coordinates": [[[8.538976, 47.422295], [8.53892, 47.422313], [8.538866, 47.422333], [8.538816, 47.422357], [8.538768, 47.422383], [8.538723, 47.422411], [8.538682, 47.422442], [8.538645, 47.422476], [8.538605, 47.422516], [8.538571, 47.422559], [8.538542, 47.422604], [8.538519, 47.422651], [8.538503, 47.422698], [8.538493, 47.422747], [8.53835, 47.423761], [8.538337, 47.423823], [8.538312, 47.423907], [8.53828, 47.423991], [8.53824, 47.424073], [8.538167, 47.424194], [8.538078, 47.424309], [8.537972, 47.424418], [8.537841, 47.42454], [8.537699, 47.424655], [8.537544, 47.424763], [8.537375, 47.424897], [8.537048, 47.425157], [8.536972, 47.42523], [8.536902, 47.425306], [8.536838, 47.425384], [8.536699, 47.425531], [8.536578, 47.425686], [8.536478, 47.425848], [8.536462, 47.425905], [8.536452, 47.425964], [8.53645, 47.426023], [8.536455, 47.426082], [8.536462, 47.426119], [8.536471, 47.426156], [8.536484, 47.426193], [8.536485, 47.426198]]], "type": "MultiLineString"}, "id": "4604", "properties": {}, "type": "Feature"}, {"bbox": [8.524298, 47.374509, 8.525726, 47.376439], "geometry": {"coordinates": [[[8.524298, 47.374509], [8.524339, 47.374555], [8.524381, 47.3746], [8.524424, 47.374645], [8.52469, 47.375016], [8.524952, 47.375383], [8.525076, 47.375534], [8.52524, 47.375761], [8.525344, 47.375899], [8.52548, 47.376065], [8.52565, 47.376308], [8.525726, 47.376439]]], "type": "MultiLineString"}, "id": "4605", "properties": {}, "type": "Feature"}, {"bbox": [8.576225, 47.34848, 8.576559, 47.348787], "geometry": {"coordinates": [[[8.576225, 47.348787], [8.576262, 47.348775], [8.576297, 47.34876], [8.576329, 47.348744], [8.57636, 47.348725], [8.576388, 47.348705], [8.576414, 47.348683], [8.576436, 47.348659], [8.576455, 47.348635], [8.576559, 47.34848]]], "type": "MultiLineString"}, "id": "4607", "properties": {}, "type": "Feature"}, {"bbox": [8.575848, 47.349445, 8.576153, 47.349774], "geometry": {"coordinates": [[[8.575848, 47.349774], [8.576153, 47.349446], [8.576153, 47.349445]]], "type": "MultiLineString"}, "id": "4608", "properties": {}, "type": "Feature"}, {"bbox": [8.525394, 47.354035, 8.526836, 47.354797], "geometry": {"coordinates": [[[8.526836, 47.354797], [8.526016, 47.354383], [8.525602, 47.354171], [8.525535, 47.354137], [8.525494, 47.354115], [8.525458, 47.35409], [8.525424, 47.354064], [8.525394, 47.354035]]], "type": "MultiLineString"}, "id": "4612", "properties": {}, "type": "Feature"}, {"bbox": [8.526451, 47.354797, 8.527019, 47.361998], "geometry": {"coordinates": [[[8.526496, 47.361998], [8.526474, 47.361943], [8.52646, 47.361886], [8.526452, 47.361829], [8.526451, 47.361772], [8.526458, 47.361714], [8.526472, 47.361658], [8.526542, 47.36128], [8.526524, 47.361238], [8.526674, 47.360431], [8.526777, 47.359834], [8.526866, 47.359322], [8.526878, 47.359262], [8.526891, 47.359201], [8.526904, 47.35914], [8.52691, 47.359115], [8.526916, 47.359089], [8.526922, 47.359063], [8.52696, 47.358869], [8.526989, 47.358674], [8.527009, 47.358479], [8.527009, 47.358475], [8.527009, 47.358451], [8.527008, 47.358331], [8.527008, 47.358263], [8.527007, 47.357411], [8.527019, 47.357277], [8.527016, 47.356958], [8.527005, 47.356651], [8.526987, 47.356414], [8.526901, 47.355285], [8.526884, 47.35524], [8.526861, 47.354967], [8.526836, 47.354797]]], "type": "MultiLineString"}, "id": "4614", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.358432, 8.595477, 47.359878], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595428, 47.358477], [8.595385, 47.358526], [8.595348, 47.358577], [8.595318, 47.358629], [8.59527, 47.358744], [8.595214, 47.358856], [8.595151, 47.358967], [8.594878, 47.359379], [8.59457, 47.359878]]], "type": "MultiLineString"}, "id": "4615", "properties": {}, "type": "Feature"}, {"bbox": [8.479199, 47.390441, 8.479433, 47.390602], "geometry": {"coordinates": [[[8.479433, 47.390602], [8.479349, 47.390552], [8.479271, 47.390498], [8.479199, 47.390441]]], "type": "MultiLineString"}, "id": "4616", "properties": {}, "type": "Feature"}, {"bbox": [8.524653, 47.340885, 8.526466, 47.342276], "geometry": {"coordinates": [[[8.526466, 47.340885], [8.526387, 47.340992], [8.525833, 47.342016], [8.525795, 47.342081], [8.52575, 47.342145], [8.5257, 47.342207], [8.525693, 47.342216], [8.525684, 47.342224], [8.525675, 47.342231], [8.525664, 47.342238], [8.525653, 47.342245], [8.525641, 47.34225], [8.525628, 47.342255], [8.525614, 47.342259], [8.5256, 47.342262], [8.525586, 47.342265], [8.525531, 47.342271], [8.525476, 47.342275], [8.525421, 47.342276], [8.525366, 47.342273], [8.524653, 47.342256]]], "type": "MultiLineString"}, "id": "4623", "properties": {}, "type": "Feature"}, {"bbox": [8.479743, 47.375988, 8.483937, 47.378017], "geometry": {"coordinates": [[[8.483937, 47.376349], [8.48324, 47.376157], [8.482735, 47.376029], [8.482679, 47.376013], [8.482621, 47.376], [8.482562, 47.375989], [8.482538, 47.375988], [8.482513, 47.375988], [8.482489, 47.37599], [8.482465, 47.375993], [8.482442, 47.375997], [8.482419, 47.376003], [8.482397, 47.37601], [8.482376, 47.376018], [8.482356, 47.376027], [8.482337, 47.376038], [8.48232, 47.376049], [8.482304, 47.376061], [8.48229, 47.376075], [8.482068, 47.376301], [8.482024, 47.37634], [8.481975, 47.376376], [8.481922, 47.376409], [8.481864, 47.376439], [8.481803, 47.376465], [8.481738, 47.376487], [8.481671, 47.376505], [8.481626, 47.376518], [8.481583, 47.376534], [8.481542, 47.376552], [8.481504, 47.376572], [8.481468, 47.376595], [8.481436, 47.37662], [8.481407, 47.376647], [8.481236, 47.376786], [8.479743, 47.378017]]], "type": "MultiLineString"}, "id": "4626", "properties": {}, "type": "Feature"}, {"bbox": [8.4808, 47.380286, 8.483649, 47.381966], "geometry": {"coordinates": [[[8.483649, 47.381966], [8.483457, 47.38194], [8.483322, 47.381884], [8.483071, 47.381751], [8.482589, 47.381503], [8.481977, 47.381098], [8.481308, 47.380648], [8.480957, 47.380415], [8.480832, 47.380332], [8.480823, 47.380324], [8.480815, 47.380315], [8.480809, 47.380306], [8.480804, 47.380296], [8.4808, 47.380286]]], "type": "MultiLineString"}, "id": "4627", "properties": {}, "type": "Feature"}, {"bbox": [8.538883, 47.427231, 8.54005, 47.427418], "geometry": {"coordinates": [[[8.538883, 47.427278], [8.53935, 47.4274], [8.539374, 47.427406], [8.5394, 47.427412], [8.539426, 47.427415], [8.539452, 47.427418], [8.539479, 47.427418], [8.539506, 47.427418], [8.539532, 47.427415], [8.539558, 47.427412], [8.539583, 47.427406], [8.539608, 47.4274], [8.539632, 47.427392], [8.539655, 47.427382], [8.53978, 47.427295], [8.539805, 47.427281], [8.539832, 47.427269], [8.53986, 47.427258], [8.53989, 47.427249], [8.539921, 47.427242], [8.539952, 47.427236], [8.539985, 47.427233], [8.540017, 47.427231], [8.54005, 47.427231]]], "type": "MultiLineString"}, "id": "4632", "properties": {}, "type": "Feature"}, {"bbox": [8.54087, 47.383451, 8.542105, 47.383859], "geometry": {"coordinates": [[[8.54087, 47.383451], [8.541014, 47.383488], [8.54109, 47.383512], [8.541163, 47.38354], [8.541231, 47.383573], [8.541295, 47.383609], [8.541354, 47.38365], [8.541383, 47.38367], [8.541415, 47.383688], [8.541448, 47.383705], [8.541484, 47.38372], [8.541521, 47.383732], [8.54156, 47.383743], [8.541995, 47.383858], [8.542105, 47.383859]]], "type": "MultiLineString"}, "id": "4634", "properties": {}, "type": "Feature"}, {"bbox": [8.551211, 47.407159, 8.553879, 47.409431], "geometry": {"coordinates": [[[8.551211, 47.407159], [8.551254, 47.407225], [8.551445, 47.407519], [8.551561, 47.407674], [8.551699, 47.407821], [8.551857, 47.407958], [8.551967, 47.408046], [8.551989, 47.408061], [8.552136, 47.408162], [8.552212, 47.40825], [8.552865, 47.408591], [8.553094, 47.40872], [8.553305, 47.408861], [8.553497, 47.409015], [8.553576, 47.409087], [8.55365, 47.409162], [8.553721, 47.409238], [8.553879, 47.409431]]], "type": "MultiLineString"}, "id": "4635", "properties": {}, "type": "Feature"}, {"bbox": [8.555785, 47.365865, 8.556208, 47.366285], "geometry": {"coordinates": [[[8.555785, 47.366285], [8.556208, 47.365865]]], "type": "MultiLineString"}, "id": "4643", "properties": {}, "type": "Feature"}, {"bbox": [8.54007, 47.375057, 8.540997, 47.376056], "geometry": {"coordinates": [[[8.54007, 47.375057], [8.540783, 47.375402], [8.540811, 47.375417], [8.540837, 47.375434], [8.540861, 47.375451], [8.540898, 47.37549], [8.540929, 47.375531], [8.540955, 47.375574], [8.540974, 47.375618], [8.540988, 47.375663], [8.540996, 47.375709], [8.540997, 47.375755], [8.540993, 47.375801], [8.540982, 47.375846], [8.540966, 47.375891], [8.540898, 47.376056]]], "type": "MultiLineString"}, "id": "4645", "properties": {}, "type": "Feature"}, {"bbox": [8.52772, 47.370617, 8.528408, 47.371372], "geometry": {"coordinates": [[[8.528408, 47.370617], [8.528236, 47.370802], [8.528139, 47.370894], [8.528062, 47.370984], [8.52777, 47.371315], [8.52772, 47.371372]]], "type": "MultiLineString"}, "id": "4648", "properties": {}, "type": "Feature"}, {"bbox": [8.531382, 47.363924, 8.531651, 47.365285], "geometry": {"coordinates": [[[8.531651, 47.365285], [8.53161, 47.364914], [8.531563, 47.364691], [8.531537, 47.364576], [8.531475, 47.36445], [8.531428, 47.364321], [8.531397, 47.36419], [8.531382, 47.364057], [8.531384, 47.363924]]], "type": "MultiLineString"}, "id": "4651", "properties": {}, "type": "Feature"}, {"bbox": [8.49929, 47.401813, 8.500062, 47.402037], "geometry": {"coordinates": [[[8.500062, 47.401813], [8.499951, 47.401841], [8.499842, 47.401872], [8.499733, 47.401905], [8.499586, 47.40195], [8.499439, 47.401994], [8.49929, 47.402037]]], "type": "MultiLineString"}, "id": "4654", "properties": {}, "type": "Feature"}, {"bbox": [8.529926, 47.386983, 8.534913, 47.393244], "geometry": {"coordinates": [[[8.534913, 47.386983], [8.534862, 47.387014], [8.534809, 47.387043], [8.534753, 47.38707], [8.534698, 47.387114], [8.534649, 47.387161], [8.534606, 47.38721], [8.534568, 47.387261], [8.534537, 47.387314], [8.534396, 47.387596], [8.534386, 47.387617], [8.534302, 47.3878], [8.534229, 47.387985], [8.534169, 47.388172], [8.534116, 47.388371], [8.534075, 47.388531], [8.534034, 47.388693], [8.534012, 47.388784], [8.533979, 47.388875], [8.533934, 47.388962], [8.533876, 47.389046], [8.533808, 47.389127], [8.533729, 47.389203], [8.533615, 47.389298], [8.533126, 47.389698], [8.532307, 47.390367], [8.531062, 47.391383], [8.530993, 47.391439], [8.530977, 47.391453], [8.530101, 47.392168], [8.529991, 47.392299], [8.529965, 47.392347], [8.529945, 47.392396], [8.529932, 47.392447], [8.529926, 47.392497], [8.529926, 47.392548], [8.529932, 47.392599], [8.529946, 47.39265], [8.529966, 47.392699], [8.530093, 47.392959], [8.530239, 47.393244]]], "type": "MultiLineString"}, "id": "4655", "properties": {}, "type": "Feature"}, {"bbox": [8.492862, 47.369164, 8.495097, 47.369976], "geometry": {"coordinates": [[[8.495097, 47.369169], [8.495066, 47.369166], [8.495034, 47.369164], [8.495002, 47.369164], [8.49497, 47.369166], [8.494938, 47.369171], [8.494908, 47.369177], [8.494878, 47.369185], [8.494849, 47.369194], [8.494822, 47.369206], [8.494477, 47.369364], [8.494118, 47.369507], [8.493745, 47.369632], [8.493439, 47.369733], [8.493144, 47.369848], [8.492862, 47.369976]]], "type": "MultiLineString"}, "id": "4661", "properties": {}, "type": "Feature"}, {"bbox": [8.52184, 47.394583, 8.522439, 47.395679], "geometry": {"coordinates": [[[8.52184, 47.394583], [8.521868, 47.394635], [8.522144, 47.395141], [8.522439, 47.395679]]], "type": "MultiLineString"}, "id": "4667", "properties": {}, "type": "Feature"}, {"bbox": [8.526786, 47.385518, 8.527129, 47.387813], "geometry": {"coordinates": [[[8.526786, 47.385518], [8.526813, 47.385975], [8.526941, 47.386764], [8.527061, 47.38752], [8.527062, 47.387539], [8.527066, 47.387558], [8.527072, 47.387577], [8.527129, 47.387813]]], "type": "MultiLineString"}, "id": "4668", "properties": {}, "type": "Feature"}, {"bbox": [8.517318, 47.363128, 8.518006, 47.363175], "geometry": {"coordinates": [[[8.518006, 47.363128], [8.51797, 47.363138], [8.517933, 47.363146], [8.517895, 47.363153], [8.517887, 47.363155], [8.517879, 47.363156], [8.517871, 47.363157], [8.517839, 47.363161], [8.517808, 47.363163], [8.517777, 47.363165], [8.517746, 47.363167], [8.517715, 47.363169], [8.517685, 47.363171], [8.517658, 47.363172], [8.51763, 47.363173], [8.517603, 47.363174], [8.517603, 47.363174], [8.517603, 47.363174], [8.517567, 47.363175], [8.517532, 47.363174], [8.517497, 47.363173], [8.517462, 47.36317], [8.517428, 47.363167], [8.517394, 47.363162], [8.517318, 47.363146]]], "type": "MultiLineString"}, "id": "4670", "properties": {}, "type": "Feature"}, {"bbox": [8.596548, 47.359031, 8.600038, 47.360078], "geometry": {"coordinates": [[[8.596548, 47.359031], [8.597126, 47.359224], [8.597712, 47.359408], [8.598305, 47.359582], [8.598882, 47.359749], [8.599459, 47.359914], [8.600038, 47.360078]]], "type": "MultiLineString"}, "id": "4674", "properties": {}, "type": "Feature"}, {"bbox": [8.499889, 47.402781, 8.504205, 47.404757], "geometry": {"coordinates": [[[8.499889, 47.402907], [8.499896, 47.40291], [8.499934, 47.402921], [8.499973, 47.402929], [8.500014, 47.402935], [8.500055, 47.402938], [8.500096, 47.402939], [8.500138, 47.402937], [8.500179, 47.402933], [8.500651, 47.402873], [8.501508, 47.402788], [8.501557, 47.402783], [8.501607, 47.402781], [8.501656, 47.402781], [8.501706, 47.402785], [8.501755, 47.402791], [8.501803, 47.4028], [8.50185, 47.402812], [8.501895, 47.402826], [8.501938, 47.402843], [8.501979, 47.402863], [8.502542, 47.403194], [8.502702, 47.403309], [8.503068, 47.403596], [8.503127, 47.403643], [8.503182, 47.403694], [8.50323, 47.403747], [8.503272, 47.403802], [8.503315, 47.403871], [8.503348, 47.403943], [8.503371, 47.404017], [8.503419, 47.40423], [8.503428, 47.404262], [8.503442, 47.404293], [8.503459, 47.404323], [8.503481, 47.404352], [8.503506, 47.404379], [8.503534, 47.404405], [8.503563, 47.404427], [8.503594, 47.404448], [8.503627, 47.404466], [8.504015, 47.404646], [8.504205, 47.404757]]], "type": "MultiLineString"}, "id": "4681", "properties": {}, "type": "Feature"}, {"bbox": [8.521169, 47.410523, 8.521546, 47.410758], "geometry": {"coordinates": [[[8.521169, 47.410523], [8.521173, 47.410524], [8.521182, 47.410526], [8.52119, 47.410528], [8.521198, 47.410532], [8.521206, 47.410535], [8.521213, 47.41054], [8.521546, 47.410758]]], "type": "MultiLineString"}, "id": "4682", "properties": {}, "type": "Feature"}, {"bbox": [8.568511, 47.366643, 8.56886, 47.367202], "geometry": {"coordinates": [[[8.568708, 47.366643], [8.568604, 47.3667], [8.568589, 47.366708], [8.568575, 47.366717], [8.568562, 47.366727], [8.56855, 47.366737], [8.56854, 47.366748], [8.568531, 47.36676], [8.568524, 47.366772], [8.568518, 47.366784], [8.568514, 47.366797], [8.568512, 47.36681], [8.568511, 47.366823], [8.568512, 47.366836], [8.568515, 47.366849], [8.568519, 47.366861], [8.568525, 47.366874], [8.568532, 47.366886], [8.568541, 47.366897], [8.568552, 47.366908], [8.568564, 47.366919], [8.56886, 47.367202]]], "type": "MultiLineString"}, "id": "4686", "properties": {}, "type": "Feature"}, {"bbox": [8.483813, 47.406234, 8.484317, 47.406832], "geometry": {"coordinates": [[[8.483813, 47.406234], [8.483846, 47.406278], [8.483993, 47.406467], [8.48415, 47.406651], [8.484317, 47.406832]]], "type": "MultiLineString"}, "id": "4699", "properties": {}, "type": "Feature"}, {"bbox": [8.522032, 47.375446, 8.523202, 47.377289], "geometry": {"coordinates": [[[8.522032, 47.375446], [8.522417, 47.376021], [8.522495, 47.376139], [8.522505, 47.376195], [8.522852, 47.376737], [8.523202, 47.377289]]], "type": "MultiLineString"}, "id": "4700", "properties": {}, "type": "Feature"}, {"bbox": [8.587711, 47.39618, 8.588027, 47.396752], "geometry": {"coordinates": [[[8.587711, 47.396752], [8.587741, 47.396654], [8.587782, 47.396544], [8.587837, 47.396437], [8.587905, 47.396333], [8.587984, 47.396233], [8.588027, 47.39618]]], "type": "MultiLineString"}, "id": "4705", "properties": {}, "type": "Feature"}, {"bbox": [8.534718, 47.379813, 8.536455, 47.380318], "geometry": {"coordinates": [[[8.536455, 47.379813], [8.536307, 47.379854], [8.536232, 47.379867], [8.536061, 47.379927], [8.535944, 47.379963], [8.535933, 47.379966], [8.535922, 47.37997], [8.535912, 47.379975], [8.535903, 47.37998], [8.535895, 47.379984], [8.535887, 47.379989], [8.535879, 47.379993], [8.53587, 47.379996], [8.53586, 47.379999], [8.534917, 47.380269], [8.534718, 47.380318]]], "type": "MultiLineString"}, "id": "4713", "properties": {}, "type": "Feature"}, {"bbox": [8.514424, 47.421801, 8.516978, 47.423793], "geometry": {"coordinates": [[[8.514424, 47.421801], [8.514752, 47.422205], [8.515025, 47.422516], [8.515062, 47.422554], [8.515145, 47.422632], [8.515233, 47.422708], [8.515328, 47.422781], [8.515457, 47.422868], [8.515583, 47.422947], [8.515786, 47.423062], [8.515988, 47.423168], [8.516041, 47.423195], [8.516492, 47.423431], [8.516533, 47.423454], [8.516574, 47.423477], [8.516613, 47.423502], [8.516744, 47.423593], [8.516866, 47.42369], [8.516978, 47.423793]]], "type": "MultiLineString"}, "id": "4716", "properties": {}, "type": "Feature"}, {"bbox": [8.526817, 47.342493, 8.53093, 47.348341], "geometry": {"coordinates": [[[8.528059, 47.348341], [8.527996, 47.348332], [8.527934, 47.34832], [8.527875, 47.348304], [8.527817, 47.348284], [8.527762, 47.348262], [8.527711, 47.348235], [8.527663, 47.348206], [8.527536, 47.348105], [8.527089, 47.34772], [8.527012, 47.347641], [8.526958, 47.347573], [8.526912, 47.347502], [8.526874, 47.347429], [8.526846, 47.347354], [8.526827, 47.347278], [8.526817, 47.347201], [8.526817, 47.347123], [8.526826, 47.347046], [8.526845, 47.34697], [8.526848, 47.346959], [8.526851, 47.346947], [8.526855, 47.346936], [8.526863, 47.346916], [8.526873, 47.346896], [8.526884, 47.346877], [8.526922, 47.346811], [8.526965, 47.346747], [8.527014, 47.346684], [8.527583, 47.346063], [8.527616, 47.346027], [8.528085, 47.345518], [8.528119, 47.34548], [8.528191, 47.345397], [8.528259, 47.345312], [8.528323, 47.345226], [8.528439, 47.345044], [8.528535, 47.344857], [8.52861, 47.344666], [8.528771, 47.344189], [8.528788, 47.344066], [8.528854, 47.343938], [8.528861, 47.343927], [8.528906, 47.343844], [8.528955, 47.343763], [8.529008, 47.343683], [8.529114, 47.343546], [8.529237, 47.343416], [8.529376, 47.343294], [8.52953, 47.343181], [8.529698, 47.343077], [8.529921, 47.342946], [8.529951, 47.342925], [8.53003, 47.342878], [8.530053, 47.342848], [8.530618, 47.342528], [8.530634, 47.34252], [8.53065, 47.342514], [8.530667, 47.342507], [8.530685, 47.342502], [8.530703, 47.342499], [8.530722, 47.342496], [8.530741, 47.342494], [8.53076, 47.342493], [8.530779, 47.342494], [8.530798, 47.342495], [8.530817, 47.342498], [8.530835, 47.342502], [8.530853, 47.342507], [8.53087, 47.342513], [8.530887, 47.342519], [8.530902, 47.342527], [8.530917, 47.342536], [8.53093, 47.342545]]], "type": "MultiLineString"}, "id": "4718", "properties": {}, "type": "Feature"}, {"bbox": [8.510202, 47.37007, 8.511908, 47.371028], "geometry": {"coordinates": [[[8.511908, 47.37007], [8.511054, 47.370647], [8.510202, 47.371028]]], "type": "MultiLineString"}, "id": "4719", "properties": {}, "type": "Feature"}, {"bbox": [8.521074, 47.366945, 8.522924, 47.368635], "geometry": {"coordinates": [[[8.522924, 47.366945], [8.522175, 47.367612], [8.521646, 47.368085], [8.521102, 47.36854], [8.521074, 47.368635]]], "type": "MultiLineString"}, "id": "4720", "properties": {}, "type": "Feature"}, {"bbox": [8.514424, 47.373018, 8.516992, 47.374449], "geometry": {"coordinates": [[[8.516992, 47.374449], [8.516938, 47.374423], [8.516531, 47.374197], [8.516396, 47.374121], [8.515768, 47.37377], [8.514988, 47.373334], [8.514424, 47.373018]]], "type": "MultiLineString"}, "id": "4721", "properties": {}, "type": "Feature"}, {"bbox": [8.508057, 47.417227, 8.508669, 47.417509], "geometry": {"coordinates": [[[8.508669, 47.417229], [8.508656, 47.417228], [8.508642, 47.417227], [8.508629, 47.417228], [8.508615, 47.417229], [8.508602, 47.417231], [8.508589, 47.417234], [8.508577, 47.417238], [8.508565, 47.417243], [8.508554, 47.417248], [8.508544, 47.417254], [8.508057, 47.417509]]], "type": "MultiLineString"}, "id": "4724", "properties": {}, "type": "Feature"}, {"bbox": [8.525508, 47.38041, 8.525612, 47.380414], "geometry": {"coordinates": [[[8.525508, 47.38041], [8.525512, 47.380413], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4727", "properties": {}, "type": "Feature"}, {"bbox": [8.522748, 47.396988, 8.524969, 47.397546], "geometry": {"coordinates": [[[8.522748, 47.396988], [8.522872, 47.397094], [8.523178, 47.397376], [8.52322, 47.397406], [8.523265, 47.397434], [8.523314, 47.39746], [8.523366, 47.397482], [8.52342, 47.397501], [8.523477, 47.397517], [8.523536, 47.39753], [8.523596, 47.397539], [8.523657, 47.397544], [8.523718, 47.397546], [8.523779, 47.397544], [8.52384, 47.397539], [8.5239, 47.39753], [8.524969, 47.397321]]], "type": "MultiLineString"}, "id": "4734", "properties": {}, "type": "Feature"}, {"bbox": [8.588401, 47.355935, 8.589323, 47.356436], "geometry": {"coordinates": [[[8.589323, 47.356436], [8.589307, 47.356428], [8.589292, 47.356418], [8.589278, 47.356408], [8.589265, 47.356397], [8.589254, 47.356385], [8.589244, 47.356372], [8.589236, 47.356359], [8.58923, 47.356346], [8.589134, 47.356224], [8.589038, 47.356101], [8.588941, 47.355978], [8.588936, 47.355972], [8.588931, 47.355967], [8.588924, 47.355961], [8.588917, 47.355956], [8.58891, 47.355952], [8.588901, 47.355948], [8.588893, 47.355944], [8.588884, 47.355941], [8.588874, 47.355939], [8.588864, 47.355937], [8.588855, 47.355936], [8.588844, 47.355935], [8.588834, 47.355935], [8.588824, 47.355935], [8.588814, 47.355937], [8.588805, 47.355938], [8.588795, 47.35594], [8.588664, 47.355987], [8.588532, 47.356034], [8.588401, 47.356081]]], "type": "MultiLineString"}, "id": "4745", "properties": {}, "type": "Feature"}, {"bbox": [8.522716, 47.370211, 8.52367, 47.370704], "geometry": {"coordinates": [[[8.52367, 47.370704], [8.523668, 47.370698], [8.523665, 47.370693], [8.523661, 47.370687], [8.523656, 47.370682], [8.523651, 47.370677], [8.523646, 47.370673], [8.52364, 47.370669], [8.523633, 47.370665], [8.523626, 47.370662], [8.523619, 47.370659], [8.523224, 47.370493], [8.522716, 47.370211]]], "type": "MultiLineString"}, "id": "4750", "properties": {}, "type": "Feature"}, {"bbox": [8.535374, 47.369697, 8.536084, 47.37023], "geometry": {"coordinates": [[[8.536084, 47.37023], [8.536005, 47.370169], [8.535741, 47.369971], [8.535693, 47.369939], [8.53565, 47.369901], [8.535374, 47.369697]]], "type": "MultiLineString"}, "id": "4751", "properties": {}, "type": "Feature"}, {"bbox": [8.530337, 47.368834, 8.532577, 47.37026], "geometry": {"coordinates": [[[8.532577, 47.37026], [8.531824, 47.369649], [8.531126, 47.369267], [8.530337, 47.368834]]], "type": "MultiLineString"}, "id": "4752", "properties": {}, "type": "Feature"}, {"bbox": [8.499325, 47.402347, 8.499889, 47.402907], "geometry": {"coordinates": [[[8.499325, 47.402347], [8.499376, 47.402408], [8.499423, 47.40247], [8.499466, 47.402534], [8.499636, 47.402726], [8.499673, 47.402761], [8.499743, 47.40283], [8.499769, 47.402849], [8.499797, 47.402867], [8.499827, 47.402883], [8.499859, 47.402897], [8.499889, 47.402907]]], "type": "MultiLineString"}, "id": "4760", "properties": {}, "type": "Feature"}, {"bbox": [8.5279, 47.38674, 8.53441, 47.39051], "geometry": {"coordinates": [[[8.53441, 47.38674], [8.534378, 47.386761], [8.534227, 47.386873], [8.534018, 47.387027], [8.533531, 47.387387], [8.53331, 47.387547], [8.533123, 47.387664], [8.532922, 47.38777], [8.53271, 47.387865], [8.532027, 47.388144], [8.531962, 47.388172], [8.531898, 47.388201], [8.531835, 47.38823], [8.531644, 47.388323], [8.531459, 47.388422], [8.531282, 47.388527], [8.530572, 47.388996], [8.530403, 47.389107], [8.530127, 47.38929], [8.529407, 47.389768], [8.529098, 47.389962], [8.528768, 47.39014], [8.528417, 47.390299], [8.528401, 47.390306], [8.528384, 47.390313], [8.528368, 47.39032], [8.527957, 47.390487], [8.5279, 47.39051]]], "type": "MultiLineString"}, "id": "4761", "properties": {}, "type": "Feature"}, {"bbox": [8.513241, 47.370226, 8.514383, 47.370351], "geometry": {"coordinates": [[[8.514383, 47.370351], [8.513241, 47.370226]]], "type": "MultiLineString"}, "id": "4762", "properties": {}, "type": "Feature"}, {"bbox": [8.542339, 47.385136, 8.547552, 47.386131], "geometry": {"coordinates": [[[8.542339, 47.385498], [8.542491, 47.385519], [8.542945, 47.385591], [8.543486, 47.385678], [8.543651, 47.385705], [8.543811, 47.385731], [8.544212, 47.385795], [8.545211, 47.385955], [8.54562, 47.386021], [8.546324, 47.386131], [8.546473, 47.385996], [8.546839, 47.385707], [8.547369, 47.385274], [8.547552, 47.385136]]], "type": "MultiLineString"}, "id": "4766", "properties": {}, "type": "Feature"}, {"bbox": [8.565252, 47.408222, 8.566125, 47.408675], "geometry": {"coordinates": [[[8.566125, 47.408675], [8.566068, 47.408623], [8.566005, 47.408575], [8.565936, 47.40853], [8.565863, 47.408489], [8.565785, 47.408452], [8.565252, 47.408222]]], "type": "MultiLineString"}, "id": "4768", "properties": {}, "type": "Feature"}, {"bbox": [8.602702, 47.355631, 8.602959, 47.356441], "geometry": {"coordinates": [[[8.602702, 47.355631], [8.602793, 47.3559], [8.602879, 47.35617], [8.602959, 47.356441]]], "type": "MultiLineString"}, "id": "4774", "properties": {}, "type": "Feature"}, {"bbox": [8.529276, 47.349632, 8.529695, 47.350484], "geometry": {"coordinates": [[[8.529276, 47.350484], [8.529501, 47.349701], [8.529509, 47.349691], [8.529519, 47.349682], [8.52953, 47.349674], [8.529541, 47.349666], [8.529554, 47.349658], [8.529568, 47.349652], [8.529582, 47.349646], [8.529597, 47.349642], [8.529613, 47.349638], [8.529629, 47.349635], [8.529645, 47.349633], [8.529662, 47.349632], [8.529678, 47.349632], [8.529695, 47.349633]]], "type": "MultiLineString"}, "id": "4776", "properties": {}, "type": "Feature"}, {"bbox": [8.580016, 47.3552, 8.581382, 47.355647], "geometry": {"coordinates": [[[8.580016, 47.355647], [8.580175, 47.355501], [8.580355, 47.355366], [8.580553, 47.355244], [8.580595, 47.35523], [8.580638, 47.355218], [8.580683, 47.35521], [8.580728, 47.355204], [8.580775, 47.355201], [8.580797, 47.3552], [8.58082, 47.3552], [8.580843, 47.355201], [8.580865, 47.355204], [8.580888, 47.355208], [8.580909, 47.355213], [8.58093, 47.355219], [8.58095, 47.355227], [8.580969, 47.355235], [8.581382, 47.355431]]], "type": "MultiLineString"}, "id": "4782", "properties": {}, "type": "Feature"}, {"bbox": [8.589323, 47.356192, 8.590347, 47.356436], "geometry": {"coordinates": [[[8.589323, 47.356436], [8.589357, 47.356405], [8.589396, 47.356375], [8.589438, 47.356348], [8.589483, 47.356324], [8.589532, 47.356302], [8.589582, 47.356283], [8.589636, 47.356267], [8.58969, 47.356255], [8.589747, 47.356246], [8.589804, 47.35624], [8.590235, 47.356202], [8.590347, 47.356192]]], "type": "MultiLineString"}, "id": "4786", "properties": {}, "type": "Feature"}, {"bbox": [8.501963, 47.370573, 8.502287, 47.371387], "geometry": {"coordinates": [[[8.502287, 47.371387], [8.502229, 47.371256], [8.502197, 47.371175], [8.501963, 47.370573]]], "type": "MultiLineString"}, "id": "4802", "properties": {}, "type": "Feature"}, {"bbox": [8.544457, 47.393535, 8.544955, 47.39392], "geometry": {"coordinates": [[[8.544457, 47.393535], [8.544493, 47.39359], [8.544525, 47.393645], [8.544553, 47.393702], [8.544568, 47.393729], [8.544587, 47.393754], [8.544609, 47.393778], [8.544633, 47.393801], [8.544661, 47.393823], [8.544691, 47.393842], [8.544724, 47.39386], [8.544759, 47.393875], [8.544795, 47.393889], [8.544834, 47.3939], [8.544873, 47.393909], [8.544914, 47.393916], [8.544955, 47.39392]]], "type": "MultiLineString"}, "id": "4805", "properties": {}, "type": "Feature"}, {"bbox": [8.520033, 47.385258, 8.526385, 47.388192], "geometry": {"coordinates": [[[8.526385, 47.385258], [8.52489, 47.385935], [8.523099, 47.386777], [8.522048, 47.387265], [8.521671, 47.387432], [8.520398, 47.388023], [8.520033, 47.388192]]], "type": "MultiLineString"}, "id": "4816", "properties": {}, "type": "Feature"}, {"bbox": [8.543839, 47.409585, 8.544095, 47.409694], "geometry": {"coordinates": [[[8.544095, 47.409585], [8.543839, 47.409694]]], "type": "MultiLineString"}, "id": "4818", "properties": {}, "type": "Feature"}, {"bbox": [8.532946, 47.36485, 8.538016, 47.366469], "geometry": {"coordinates": [[[8.538016, 47.366469], [8.536871, 47.366051], [8.535991, 47.365731], [8.53522, 47.365467], [8.534165, 47.365108], [8.532946, 47.36485]]], "type": "MultiLineString"}, "id": "4819", "properties": {}, "type": "Feature"}, {"bbox": [8.527285, 47.371237, 8.52756, 47.37139], "geometry": {"coordinates": [[[8.52756, 47.37139], [8.527542, 47.37139], [8.527525, 47.371388], [8.527507, 47.371385], [8.52749, 47.371381], [8.527474, 47.371376], [8.527459, 47.37137], [8.527444, 47.371364], [8.52743, 47.371356], [8.527418, 47.371348], [8.527285, 47.371237]]], "type": "MultiLineString"}, "id": "4821", "properties": {}, "type": "Feature"}, {"bbox": [8.529035, 47.409442, 8.529807, 47.410748], "geometry": {"coordinates": [[[8.529035, 47.409442], [8.529303, 47.409774], [8.529486, 47.410035], [8.529633, 47.410306], [8.529745, 47.410585], [8.529807, 47.410748]]], "type": "MultiLineString"}, "id": "4822", "properties": {}, "type": "Feature"}, {"bbox": [8.542571, 47.411777, 8.544366, 47.412516], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.54424, 47.412451], [8.544302, 47.412377], [8.544366, 47.412302], [8.544298, 47.412278], [8.544235, 47.412256], [8.54355, 47.412016], [8.54346, 47.411984], [8.543392, 47.411958], [8.543305, 47.411925], [8.54324, 47.412002], [8.543196, 47.411985], [8.542655, 47.411777], [8.542577, 47.411871], [8.542571, 47.412012], [8.542807, 47.412102], [8.542667, 47.412277], [8.543305, 47.412516]]], "type": "MultiLineString"}, "id": "4825", "properties": {}, "type": "Feature"}, {"bbox": [8.529232, 47.380479, 8.534062, 47.381908], "geometry": {"coordinates": [[[8.534062, 47.380479], [8.533261, 47.380695], [8.532705, 47.380854], [8.532217, 47.380987], [8.531936, 47.381063], [8.531192, 47.381264], [8.531145, 47.381277], [8.531099, 47.381293], [8.531056, 47.381312], [8.531016, 47.381334], [8.53093, 47.381394], [8.530878, 47.381432], [8.530822, 47.381466], [8.530762, 47.381498], [8.530735, 47.381508], [8.530707, 47.381518], [8.530679, 47.381527], [8.529939, 47.381733], [8.529456, 47.381862], [8.529423, 47.38187], [8.529391, 47.381876], [8.529358, 47.381882], [8.529316, 47.38189], [8.529274, 47.381899], [8.529232, 47.381908]]], "type": "MultiLineString"}, "id": "4826", "properties": {}, "type": "Feature"}, {"bbox": [8.595562, 47.357129, 8.596021, 47.358139], "geometry": {"coordinates": [[[8.595562, 47.357129], [8.595583, 47.357214], [8.595616, 47.357297], [8.595659, 47.357378], [8.595713, 47.357456], [8.595777, 47.35753], [8.595851, 47.3576], [8.595934, 47.357665], [8.595952, 47.357675], [8.595969, 47.357686], [8.595984, 47.357697], [8.595998, 47.35771], [8.596011, 47.357723], [8.596016, 47.357736], [8.596019, 47.357749], [8.596021, 47.357763], [8.596021, 47.357776], [8.59602, 47.35779], [8.596017, 47.357803], [8.596012, 47.357817], [8.596001, 47.35785], [8.595988, 47.357907], [8.595982, 47.357963], [8.595982, 47.35802], [8.595989, 47.358077], [8.596003, 47.358133], [8.596003, 47.358139]]], "type": "MultiLineString"}, "id": "4832", "properties": {}, "type": "Feature"}, {"bbox": [8.568398, 47.351421, 8.574772, 47.354901], "geometry": {"coordinates": [[[8.568398, 47.351421], [8.569503, 47.351978], [8.569552, 47.352006], [8.569602, 47.352034], [8.569652, 47.352061], [8.56969, 47.352076], [8.56973, 47.352088], [8.569771, 47.352099], [8.569814, 47.352107], [8.571695, 47.3523], [8.571789, 47.352317], [8.57188, 47.352339], [8.571969, 47.352366], [8.572053, 47.352398], [8.572134, 47.352435], [8.57221, 47.352476], [8.572281, 47.352521], [8.572346, 47.352569], [8.572375, 47.352591], [8.572472, 47.352662], [8.572604, 47.352759], [8.572666, 47.352804], [8.572726, 47.352852], [8.572782, 47.352901], [8.572823, 47.352939], [8.572863, 47.352978], [8.572901, 47.353017], [8.573004, 47.35314], [8.573091, 47.353269], [8.573161, 47.353403], [8.573214, 47.35354], [8.573286, 47.35379], [8.573307, 47.353865], [8.573337, 47.353939], [8.573375, 47.354012], [8.573423, 47.354081], [8.573479, 47.354148], [8.573543, 47.354212], [8.573572, 47.354232], [8.573601, 47.354251], [8.573631, 47.35427], [8.573692, 47.354307], [8.573756, 47.354342], [8.573822, 47.354375], [8.57464, 47.354828], [8.574772, 47.354901]]], "type": "MultiLineString"}, "id": "4834", "properties": {}, "type": "Feature"}, {"bbox": [8.543367, 47.409243, 8.543839, 47.409694], "geometry": {"coordinates": [[[8.543367, 47.409243], [8.5438, 47.409581], [8.543839, 47.409694]]], "type": "MultiLineString"}, "id": "4838", "properties": {}, "type": "Feature"}, {"bbox": [8.512988, 47.367252, 8.51513, 47.369193], "geometry": {"coordinates": [[[8.51513, 47.367252], [8.515127, 47.367258], [8.514357, 47.367973], [8.513823, 47.368469], [8.513544, 47.368728], [8.512988, 47.369193]]], "type": "MultiLineString"}, "id": "4839", "properties": {}, "type": "Feature"}, {"bbox": [8.581145, 47.401716, 8.582208, 47.405884], "geometry": {"coordinates": [[[8.581162, 47.401716], [8.581532, 47.402301], [8.581773, 47.402682], [8.581855, 47.402809], [8.582101, 47.403199], [8.582141, 47.403276], [8.582172, 47.403354], [8.582194, 47.403434], [8.582206, 47.403515], [8.582208, 47.403597], [8.582199, 47.403688], [8.582177, 47.403778], [8.582144, 47.403866], [8.581776, 47.40461], [8.581729, 47.404705], [8.581703, 47.404755], [8.581145, 47.405884]]], "type": "MultiLineString"}, "id": "4850", "properties": {}, "type": "Feature"}, {"bbox": [8.567325, 47.406605, 8.579387, 47.409331], "geometry": {"coordinates": [[[8.567325, 47.406605], [8.567509, 47.406736], [8.56773, 47.406905], [8.567944, 47.407079], [8.568149, 47.407257], [8.569465, 47.408394], [8.569685, 47.408584], [8.569787, 47.408669], [8.569897, 47.408749], [8.570013, 47.408824], [8.570055, 47.408849], [8.570098, 47.408874], [8.570141, 47.408898], [8.570327, 47.408989], [8.570524, 47.40907], [8.57073, 47.409138], [8.570945, 47.409195], [8.571115, 47.409229], [8.571289, 47.409256], [8.571465, 47.409275], [8.571815, 47.409304], [8.571897, 47.409311], [8.572029, 47.409321], [8.572161, 47.409328], [8.572293, 47.409331], [8.572541, 47.409325], [8.572787, 47.409305], [8.573029, 47.409272], [8.573267, 47.409224], [8.573766, 47.409113], [8.574811, 47.408873], [8.57496, 47.408836], [8.57508, 47.408806], [8.57566, 47.408655], [8.576456, 47.408441], [8.576913, 47.408318], [8.577842, 47.408068], [8.578127, 47.407979], [8.578404, 47.407879], [8.578671, 47.407768], [8.579387, 47.407438]]], "type": "MultiLineString"}, "id": "4851", "properties": {}, "type": "Feature"}, {"bbox": [8.506931, 47.380795, 8.508202, 47.381345], "geometry": {"coordinates": [[[8.508202, 47.380795], [8.507781, 47.380981], [8.507357, 47.381165], [8.506931, 47.381345]]], "type": "MultiLineString"}, "id": "4852", "properties": {}, "type": "Feature"}, {"bbox": [8.504082, 47.42412, 8.505988, 47.426342], "geometry": {"coordinates": [[[8.504082, 47.42412], [8.504104, 47.424154], [8.504131, 47.424186], [8.504162, 47.424216], [8.504196, 47.424245], [8.504234, 47.424271], [8.504783, 47.42453], [8.505337, 47.424783], [8.505896, 47.425031], [8.505911, 47.425038], [8.505925, 47.425046], [8.505938, 47.425056], [8.505949, 47.425065], [8.505959, 47.425076], [8.505968, 47.425087], [8.505975, 47.425099], [8.505981, 47.425111], [8.505985, 47.425123], [8.505987, 47.425135], [8.505988, 47.425148], [8.505987, 47.425161], [8.505985, 47.425173], [8.505981, 47.425185], [8.505937, 47.42529], [8.505906, 47.425397], [8.505889, 47.425505], [8.505884, 47.425613], [8.505892, 47.425722], [8.505893, 47.425778], [8.505858, 47.425841], [8.505571, 47.426252], [8.50551, 47.426342]]], "type": "MultiLineString"}, "id": "4855", "properties": {}, "type": "Feature"}, {"bbox": [8.555743, 47.354201, 8.557131, 47.354984], "geometry": {"coordinates": [[[8.555743, 47.354201], [8.555842, 47.354252], [8.556068, 47.35438], [8.556504, 47.354626], [8.557131, 47.354984]]], "type": "MultiLineString"}, "id": "4861", "properties": {}, "type": "Feature"}, {"bbox": [8.538043, 47.410791, 8.540288, 47.411614], "geometry": {"coordinates": [[[8.540205, 47.411614], [8.540288, 47.411499], [8.539347, 47.41116], [8.539232, 47.411118], [8.538644, 47.410896], [8.538157, 47.410791], [8.538043, 47.410822]]], "type": "MultiLineString"}, "id": "4864", "properties": {}, "type": "Feature"}, {"bbox": [8.491048, 47.387138, 8.494172, 47.388258], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.493984, 47.387193], [8.493658, 47.3873], [8.492822, 47.387603], [8.491547, 47.388064], [8.491211, 47.388195], [8.491048, 47.388258]]], "type": "MultiLineString"}, "id": "4866", "properties": {}, "type": "Feature"}, {"bbox": [8.550828, 47.361931, 8.55331, 47.362521], "geometry": {"coordinates": [[[8.550828, 47.361931], [8.55094, 47.361981], [8.551106, 47.362044], [8.551476, 47.362125], [8.552122, 47.362259], [8.553178, 47.362491], [8.55331, 47.362521]]], "type": "MultiLineString"}, "id": "4874", "properties": {}, "type": "Feature"}, {"bbox": [8.551604, 47.360736, 8.553416, 47.361218], "geometry": {"coordinates": [[[8.551604, 47.361038], [8.551914, 47.361114], [8.552232, 47.36117], [8.552557, 47.361206], [8.552703, 47.361215], [8.552849, 47.361218], [8.552995, 47.361216], [8.553126, 47.361207], [8.553137, 47.361206], [8.553148, 47.361204], [8.553158, 47.361202], [8.553168, 47.361199], [8.553178, 47.361195], [8.553187, 47.361191], [8.553196, 47.361186], [8.553204, 47.361181], [8.553211, 47.361176], [8.553218, 47.36117], [8.553224, 47.361164], [8.553229, 47.361157], [8.553233, 47.36115], [8.553236, 47.361143], [8.553287, 47.360954], [8.553376, 47.36079], [8.553416, 47.360736]]], "type": "MultiLineString"}, "id": "4887", "properties": {}, "type": "Feature"}, {"bbox": [8.547767, 47.416792, 8.549156, 47.417396], "geometry": {"coordinates": [[[8.547767, 47.417396], [8.547874, 47.417353], [8.547976, 47.417305], [8.548072, 47.417251], [8.54815, 47.417203], [8.548233, 47.417159], [8.548321, 47.41712], [8.549044, 47.416838], [8.549156, 47.416792]]], "type": "MultiLineString"}, "id": "4890", "properties": {}, "type": "Feature"}, {"bbox": [8.524403, 47.378473, 8.527014, 47.379863], "geometry": {"coordinates": [[[8.527014, 47.378473], [8.526908, 47.378529], [8.526688, 47.378646], [8.525892, 47.379071], [8.525763, 47.37915], [8.525763, 47.37915], [8.525423, 47.379316], [8.525223, 47.379423], [8.524721, 47.379693], [8.524403, 47.379863]]], "type": "MultiLineString"}, "id": "4896", "properties": {}, "type": "Feature"}, {"bbox": [8.559228, 47.351736, 8.559807, 47.351944], "geometry": {"coordinates": [[[8.559228, 47.351736], [8.559343, 47.35178], [8.559807, 47.351944]]], "type": "MultiLineString"}, "id": "4899", "properties": {}, "type": "Feature"}, {"bbox": [8.555331, 47.362622, 8.557379, 47.363384], "geometry": {"coordinates": [[[8.555331, 47.362622], [8.556286, 47.362976], [8.557379, 47.363384]]], "type": "MultiLineString"}, "id": "4900", "properties": {}, "type": "Feature"}, {"bbox": [8.572278, 47.404717, 8.573055, 47.409729], "geometry": {"coordinates": [[[8.572711, 47.404717], [8.572978, 47.405573], [8.572999, 47.40565], [8.573019, 47.405728], [8.573037, 47.405806], [8.573051, 47.405895], [8.573055, 47.405984], [8.573051, 47.406073], [8.573009, 47.406265], [8.572941, 47.406538], [8.572924, 47.406602], [8.572734, 47.40731], [8.572342, 47.408888], [8.572293, 47.409331], [8.572278, 47.409468], [8.572284, 47.409729]]], "type": "MultiLineString"}, "id": "4902", "properties": {}, "type": "Feature"}, {"bbox": [8.566528, 47.362353, 8.567092, 47.363955], "geometry": {"coordinates": [[[8.566821, 47.363955], [8.566604, 47.363774], [8.566585, 47.363753], [8.56657, 47.36373], [8.566557, 47.363706], [8.566548, 47.363682], [8.566542, 47.363657], [8.566539, 47.363632], [8.566528, 47.36351], [8.56653, 47.363388], [8.566545, 47.363266], [8.566554, 47.363222], [8.566565, 47.363177], [8.566577, 47.363132], [8.566638, 47.362965], [8.566721, 47.362802], [8.566825, 47.362645], [8.566949, 47.362495], [8.567092, 47.362353]]], "type": "MultiLineString"}, "id": "4904", "properties": {}, "type": "Feature"}, {"bbox": [8.504074, 47.368268, 8.505525, 47.368452], "geometry": {"coordinates": [[[8.505525, 47.368452], [8.505253, 47.368419], [8.504265, 47.368301], [8.504074, 47.368268]]], "type": "MultiLineString"}, "id": "4915", "properties": {}, "type": "Feature"}, {"bbox": [8.515593, 47.390241, 8.516831, 47.39129], "geometry": {"coordinates": [[[8.516831, 47.390241], [8.515593, 47.390652], [8.515658, 47.390765], [8.515742, 47.3909], [8.515764, 47.390929], [8.515782, 47.39096], [8.515795, 47.390992], [8.515804, 47.391024], [8.515808, 47.391057], [8.515808, 47.39129]]], "type": "MultiLineString"}, "id": "4924", "properties": {}, "type": "Feature"}, {"bbox": [8.493749, 47.403656, 8.494636, 47.404808], "geometry": {"coordinates": [[[8.494636, 47.403656], [8.494474, 47.403667], [8.494397, 47.40367], [8.494321, 47.403677], [8.494246, 47.403689], [8.494172, 47.403705], [8.494101, 47.403725], [8.494033, 47.40375], [8.493968, 47.403778], [8.493906, 47.403809], [8.493875, 47.403832], [8.493846, 47.403857], [8.49382, 47.403883], [8.493797, 47.403911], [8.493778, 47.40394], [8.493763, 47.403969], [8.493751, 47.404], [8.493749, 47.404071], [8.493755, 47.404142], [8.493767, 47.404212], [8.493771, 47.404229], [8.493777, 47.404245], [8.493786, 47.404262], [8.493796, 47.404277], [8.493809, 47.404292], [8.493823, 47.404306], [8.493862, 47.404362], [8.493911, 47.40445], [8.493968, 47.404572], [8.493982, 47.404615], [8.493989, 47.404655], [8.494047, 47.404808]]], "type": "MultiLineString"}, "id": "4926", "properties": {}, "type": "Feature"}, {"bbox": [8.540465, 47.419563, 8.546939, 47.42152], "geometry": {"coordinates": [[[8.546939, 47.419722], [8.546715, 47.419918], [8.546696, 47.419929], [8.546676, 47.419939], [8.546655, 47.419947], [8.546632, 47.419954], [8.546609, 47.41996], [8.546586, 47.419963], [8.546563, 47.419966], [8.546539, 47.419967], [8.546515, 47.419967], [8.546491, 47.419965], [8.546468, 47.419962], [8.545871, 47.419886], [8.544336, 47.419691], [8.544115, 47.419667], [8.543894, 47.419647], [8.543671, 47.419631], [8.543589, 47.419628], [8.543507, 47.419627], [8.543425, 47.419626], [8.542256, 47.419577], [8.542092, 47.419565], [8.541927, 47.419563], [8.541763, 47.419571], [8.5416, 47.41959], [8.541441, 47.41962], [8.541318, 47.419653], [8.541201, 47.419694], [8.541089, 47.419742], [8.540984, 47.419796], [8.540887, 47.419857], [8.540798, 47.419923], [8.540718, 47.419994], [8.540648, 47.42007], [8.540589, 47.42015], [8.54054, 47.420234], [8.540503, 47.42032], [8.540477, 47.420408], [8.540474, 47.420428], [8.540472, 47.420448], [8.54047, 47.420468], [8.540465, 47.420549], [8.540465, 47.420631], [8.540471, 47.420712], [8.540487, 47.420904], [8.540529, 47.4214], [8.540522, 47.42144], [8.540515, 47.42148], [8.540506, 47.42152]]], "type": "MultiLineString"}, "id": "4927", "properties": {}, "type": "Feature"}, {"bbox": [8.519272, 47.371227, 8.519909, 47.371442], "geometry": {"coordinates": [[[8.519909, 47.371442], [8.519907, 47.371441], [8.519808, 47.371412], [8.519272, 47.371227]]], "type": "MultiLineString"}, "id": "4928", "properties": {}, "type": "Feature"}, {"bbox": [8.5439, 47.419049, 8.546825, 47.419286], "geometry": {"coordinates": [[[8.546825, 47.419198], [8.546119, 47.419104], [8.54582, 47.419068], [8.545765, 47.419069], [8.545759, 47.419068], [8.545604, 47.419096], [8.54551, 47.419112], [8.544541, 47.419062], [8.544277, 47.419049], [8.544277, 47.419049], [8.544218, 47.41905], [8.544158, 47.419053], [8.544099, 47.419057], [8.544075, 47.419072], [8.544053, 47.419089], [8.544033, 47.419107], [8.544015, 47.419126], [8.544, 47.419146], [8.543987, 47.419167], [8.5439, 47.419286]]], "type": "MultiLineString"}, "id": "4931", "properties": {}, "type": "Feature"}, {"bbox": [8.559788, 47.36749, 8.560839, 47.368004], "geometry": {"coordinates": [[[8.559788, 47.36749], [8.560409, 47.367821], [8.560554, 47.367879], [8.560743, 47.367959], [8.560839, 47.368004]]], "type": "MultiLineString"}, "id": "4932", "properties": {}, "type": "Feature"}, {"bbox": [8.568398, 47.348502, 8.570929, 47.351421], "geometry": {"coordinates": [[[8.568398, 47.351421], [8.568504, 47.35138], [8.568605, 47.351333], [8.568699, 47.351279], [8.568785, 47.351221], [8.568864, 47.351157], [8.569194, 47.350784], [8.569217, 47.350758], [8.569884, 47.349987], [8.570115, 47.349698], [8.570335, 47.349405], [8.570545, 47.349109], [8.570929, 47.348502]]], "type": "MultiLineString"}, "id": "4933", "properties": {}, "type": "Feature"}, {"bbox": [8.564137, 47.351767, 8.56651, 47.353523], "geometry": {"coordinates": [[[8.564137, 47.353523], [8.564825, 47.352898], [8.564882, 47.352854], [8.564942, 47.352811], [8.565005, 47.352771], [8.565062, 47.352738], [8.565121, 47.352707], [8.565182, 47.352677], [8.565432, 47.352563], [8.565618, 47.352469], [8.565792, 47.352366], [8.565953, 47.352254], [8.5661, 47.352133], [8.56651, 47.351767]]], "type": "MultiLineString"}, "id": "4934", "properties": {}, "type": "Feature"}, {"bbox": [8.595477, 47.354906, 8.60116, 47.358432], "geometry": {"coordinates": [[[8.595477, 47.358432], [8.595516, 47.358399], [8.595559, 47.358369], [8.595604, 47.35834], [8.595983, 47.358145], [8.596003, 47.358133], [8.596086, 47.358084], [8.596189, 47.35802], [8.596286, 47.357952], [8.596377, 47.35788], [8.596474, 47.357804], [8.59658, 47.357734], [8.596693, 47.35767], [8.596814, 47.357613], [8.596952, 47.357561], [8.597368, 47.35744], [8.597464, 47.357408], [8.597556, 47.357372], [8.597644, 47.35733], [8.597726, 47.357284], [8.597781, 47.35725], [8.597834, 47.357216], [8.597885, 47.35718], [8.597963, 47.357118], [8.598036, 47.357054], [8.598103, 47.356986], [8.598319, 47.356728], [8.598428, 47.356605], [8.598551, 47.356489], [8.598687, 47.35638], [8.598836, 47.356279], [8.598984, 47.356191], [8.6001, 47.355576], [8.600228, 47.3555], [8.600457, 47.355365], [8.600845, 47.355126], [8.600957, 47.355058], [8.601063, 47.354984], [8.60116, 47.354906]]], "type": "MultiLineString"}, "id": "4936", "properties": {}, "type": "Feature"}, {"bbox": [8.528816, 47.409232, 8.529035, 47.409442], "geometry": {"coordinates": [[[8.528816, 47.409232], [8.528963, 47.409352], [8.529035, 47.409442]]], "type": "MultiLineString"}, "id": "4946", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.385844, 8.494172, 47.387138], "geometry": {"coordinates": [[[8.494172, 47.387138], [8.493674, 47.38651], [8.493202, 47.385915], [8.492955, 47.385844]]], "type": "MultiLineString"}, "id": "4951", "properties": {}, "type": "Feature"}, {"bbox": [8.500719, 47.382734, 8.50503, 47.386073], "geometry": {"coordinates": [[[8.50503, 47.386073], [8.504581, 47.385724], [8.50305, 47.384536], [8.502916, 47.384444], [8.501961, 47.383693], [8.500735, 47.38274], [8.500719, 47.382734]]], "type": "MultiLineString"}, "id": "4952", "properties": {}, "type": "Feature"}, {"bbox": [8.495772, 47.387378, 8.496513, 47.388588], "geometry": {"coordinates": [[[8.496513, 47.388588], [8.496241, 47.388136], [8.496149, 47.387888], [8.495881, 47.387448], [8.495867, 47.387433], [8.495851, 47.38742], [8.495834, 47.387408], [8.495814, 47.387396], [8.495794, 47.387386], [8.495772, 47.387378]]], "type": "MultiLineString"}, "id": "4953", "properties": {}, "type": "Feature"}, {"bbox": [8.525612, 47.379414, 8.52757, 47.380414], "geometry": {"coordinates": [[[8.52757, 47.379414], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4954", "properties": {}, "type": "Feature"}, {"bbox": [8.496491, 47.402347, 8.499325, 47.403887], "geometry": {"coordinates": [[[8.499325, 47.402347], [8.499315, 47.402353], [8.499304, 47.402357], [8.499292, 47.402362], [8.498761, 47.402631], [8.498667, 47.402683], [8.498577, 47.402736], [8.498489, 47.402792], [8.498461, 47.40281], [8.498434, 47.402829], [8.498406, 47.402848], [8.498365, 47.402889], [8.498321, 47.402928], [8.498275, 47.402967], [8.498119, 47.40308], [8.497951, 47.403185], [8.497773, 47.403281], [8.497095, 47.403609], [8.496681, 47.403795], [8.49662, 47.403827], [8.496556, 47.403858], [8.496491, 47.403887]]], "type": "MultiLineString"}, "id": "4959", "properties": {}, "type": "Feature"}, {"bbox": [8.53517, 47.419968, 8.53838, 47.421562], "geometry": {"coordinates": [[[8.53838, 47.421562], [8.538252, 47.421519], [8.538106, 47.421478], [8.537955, 47.421445], [8.537813, 47.421398], [8.537673, 47.421347], [8.537537, 47.421291], [8.537388, 47.421227], [8.537247, 47.421155], [8.537115, 47.421076], [8.537058, 47.421038], [8.536189, 47.420469], [8.536006, 47.420355], [8.535818, 47.420246], [8.535623, 47.420141], [8.535423, 47.420036], [8.535395, 47.420022], [8.535364, 47.42001], [8.535333, 47.419999], [8.5353, 47.419991], [8.535256, 47.419983], [8.535213, 47.419975], [8.53517, 47.419968]]], "type": "MultiLineString"}, "id": "4960", "properties": {}, "type": "Feature"}, {"bbox": [8.53043, 47.388242, 8.536288, 47.393214], "geometry": {"coordinates": [[[8.536288, 47.388242], [8.535797, 47.388641], [8.535741, 47.388688], [8.535524, 47.388869], [8.534997, 47.389308], [8.534825, 47.389452], [8.53444, 47.389765], [8.533113, 47.390845], [8.531922, 47.391815], [8.531806, 47.391909], [8.530495, 47.392978], [8.530481, 47.392987], [8.53047, 47.392998], [8.530459, 47.393009], [8.53045, 47.39302], [8.530443, 47.393032], [8.530437, 47.393045], [8.530433, 47.393058], [8.530431, 47.393071], [8.53043, 47.393084], [8.530431, 47.393097], [8.530434, 47.39311], [8.530439, 47.393123], [8.530457, 47.393155], [8.530489, 47.393214]]], "type": "MultiLineString"}, "id": "4961", "properties": {}, "type": "Feature"}, {"bbox": [8.513626, 47.416683, 8.514371, 47.417006], "geometry": {"coordinates": [[[8.513626, 47.416683], [8.513627, 47.416684], [8.513663, 47.416716], [8.513704, 47.416746], [8.513747, 47.416773], [8.513795, 47.416797], [8.513845, 47.416819], [8.513898, 47.416837], [8.514371, 47.417006]]], "type": "MultiLineString"}, "id": "4962", "properties": {}, "type": "Feature"}, {"bbox": [8.518133, 47.368668, 8.518799, 47.369701], "geometry": {"coordinates": [[[8.518799, 47.369701], [8.518776, 47.3697], [8.518753, 47.369699], [8.51873, 47.369696], [8.518707, 47.369692], [8.518686, 47.369686], [8.518664, 47.369679], [8.518644, 47.369671], [8.518625, 47.369662], [8.518608, 47.369652], [8.518591, 47.369641], [8.518188, 47.369314], [8.518175, 47.369301], [8.518164, 47.369288], [8.518154, 47.369274], [8.518146, 47.36926], [8.51814, 47.369245], [8.518135, 47.36923], [8.518133, 47.369214], [8.518133, 47.369199], [8.518734, 47.368668]]], "type": "MultiLineString"}, "id": "4966", "properties": {}, "type": "Feature"}, {"bbox": [8.524749, 47.370432, 8.526034, 47.371836], "geometry": {"coordinates": [[[8.525982, 47.371836], [8.525996, 47.37182], [8.526008, 47.371803], [8.526017, 47.371786], [8.526025, 47.371768], [8.52603, 47.371749], [8.526033, 47.371731], [8.526034, 47.371712], [8.526033, 47.371693], [8.526029, 47.371675], [8.526022, 47.371657], [8.526014, 47.371639], [8.525639, 47.371288], [8.524943, 47.370616], [8.524749, 47.370432]]], "type": "MultiLineString"}, "id": "4967", "properties": {}, "type": "Feature"}, {"bbox": [8.60116, 47.353461, 8.602074, 47.354906], "geometry": {"coordinates": [[[8.60116, 47.354906], [8.601188, 47.354882], [8.601213, 47.354858], [8.601235, 47.354832], [8.601254, 47.354805], [8.601269, 47.354777], [8.601281, 47.354749], [8.601299, 47.354712], [8.601312, 47.354674], [8.60132, 47.354635], [8.601324, 47.354597], [8.601322, 47.354558], [8.601224, 47.354039], [8.601221, 47.354027], [8.60122, 47.354016], [8.601221, 47.354004], [8.601223, 47.353993], [8.601226, 47.353981], [8.601231, 47.35397], [8.601237, 47.353959], [8.601245, 47.353949], [8.601254, 47.353939], [8.601264, 47.35393], [8.601275, 47.353921], [8.601287, 47.353913], [8.601301, 47.353906], [8.601315, 47.3539], [8.60133, 47.353895], [8.601345, 47.35389], [8.601454, 47.353859], [8.601558, 47.353821], [8.601658, 47.353778], [8.601752, 47.35373], [8.60184, 47.353677], [8.601898, 47.353639], [8.60195, 47.353599], [8.601997, 47.353555], [8.602039, 47.353509], [8.602074, 47.353461]]], "type": "MultiLineString"}, "id": "4968", "properties": {}, "type": "Feature"}, {"bbox": [8.513371, 47.392766, 8.523047, 47.394793], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.522889, 47.392776], [8.522732, 47.392793], [8.522577, 47.392819], [8.521644, 47.393091], [8.520789, 47.393356], [8.519667, 47.393683], [8.51903, 47.393869], [8.518335, 47.394071], [8.518251, 47.394095], [8.518167, 47.394117], [8.518081, 47.394137], [8.517925, 47.39417], [8.517767, 47.394198], [8.517607, 47.39422], [8.514946, 47.394496], [8.51487, 47.394503], [8.514645, 47.394526], [8.514424, 47.394562], [8.514209, 47.394613], [8.513931, 47.394676], [8.513652, 47.394737], [8.513371, 47.394793]]], "type": "MultiLineString"}, "id": "4971", "properties": {}, "type": "Feature"}, {"bbox": [8.536085, 47.369261, 8.536477, 47.369475], "geometry": {"coordinates": [[[8.536477, 47.369475], [8.536085, 47.369261]]], "type": "MultiLineString"}, "id": "4977", "properties": {}, "type": "Feature"}, {"bbox": [8.531201, 47.333733, 8.532323, 47.335082], "geometry": {"coordinates": [[[8.531201, 47.335082], [8.531272, 47.334972], [8.53133, 47.334859], [8.531374, 47.334743], [8.531404, 47.334624], [8.531427, 47.334444], [8.531432, 47.334263], [8.53142, 47.334082], [8.531416, 47.334057], [8.531414, 47.334033], [8.531416, 47.334008], [8.531421, 47.333984], [8.531429, 47.33396], [8.531441, 47.333937], [8.531455, 47.333915], [8.531472, 47.333893], [8.531492, 47.333873], [8.531515, 47.333854], [8.53154, 47.333836], [8.531567, 47.33382], [8.531596, 47.333805], [8.531627, 47.333793], [8.531659, 47.333782], [8.531693, 47.333774], [8.531728, 47.333767], [8.531763, 47.333763], [8.532323, 47.333733]]], "type": "MultiLineString"}, "id": "4980", "properties": {}, "type": "Feature"}, {"bbox": [8.485674, 47.367905, 8.493052, 47.371609], "geometry": {"coordinates": [[[8.493052, 47.368708], [8.492746, 47.368456], [8.492656, 47.368399], [8.492606, 47.368375], [8.492559, 47.368348], [8.492515, 47.368319], [8.492475, 47.368287], [8.492439, 47.368253], [8.492407, 47.368218], [8.492379, 47.36818], [8.492338, 47.368131], [8.49229, 47.368085], [8.492236, 47.368041], [8.492176, 47.368001], [8.492112, 47.367965], [8.492043, 47.367933], [8.49197, 47.367905], [8.490227, 47.368583], [8.48973, 47.368841], [8.489444, 47.369049], [8.488378, 47.369919], [8.487203, 47.370873], [8.487079, 47.370921], [8.486852, 47.371002], [8.486649, 47.371114], [8.485832, 47.371554], [8.485674, 47.371609]]], "type": "MultiLineString"}, "id": "4981", "properties": {}, "type": "Feature"}, {"bbox": [8.536402, 47.40156, 8.537293, 47.403021], "geometry": {"coordinates": [[[8.536402, 47.40156], [8.536578, 47.401624], [8.536678, 47.401663], [8.536773, 47.401708], [8.536862, 47.401758], [8.536944, 47.401814], [8.537019, 47.401874], [8.537086, 47.401939], [8.537144, 47.402007], [8.537193, 47.402078], [8.537233, 47.402152], [8.537263, 47.402228], [8.537283, 47.402305], [8.537293, 47.402384], [8.537293, 47.402463], [8.537283, 47.402541], [8.537263, 47.402619], [8.537144, 47.403021]]], "type": "MultiLineString"}, "id": "4985", "properties": {}, "type": "Feature"}, {"bbox": [8.528896, 47.346438, 8.531139, 47.355227], "geometry": {"coordinates": [[[8.531139, 47.355227], [8.531119, 47.355066], [8.531092, 47.354867], [8.531079, 47.354774], [8.531061, 47.354682], [8.531039, 47.35459], [8.530848, 47.353887], [8.530621, 47.353099], [8.530619, 47.353034], [8.530396, 47.352241], [8.530367, 47.352153], [8.530342, 47.352064], [8.53032, 47.351975], [8.530318, 47.351966], [8.530316, 47.351956], [8.530313, 47.351947], [8.530311, 47.351796], [8.53031, 47.35171], [8.530272, 47.351033], [8.530267, 47.350838], [8.530263, 47.350767], [8.530244, 47.350646], [8.53021, 47.350527], [8.530161, 47.35041], [8.530098, 47.350297], [8.530071, 47.350253], [8.529695, 47.349633], [8.529456, 47.349178], [8.529271, 47.34873], [8.529258, 47.348689], [8.529246, 47.348647], [8.529236, 47.348606], [8.529226, 47.348547], [8.529219, 47.348488], [8.529216, 47.348428], [8.529215, 47.348355], [8.529219, 47.348281], [8.529228, 47.348207], [8.52931, 47.347813], [8.529316, 47.347686], [8.529305, 47.34756], [8.529277, 47.347435], [8.529226, 47.347339], [8.529035, 47.346899], [8.52904, 47.346872], [8.528996, 47.346768], [8.528957, 47.346661], [8.528896, 47.346438]]], "type": "MultiLineString"}, "id": "4987", "properties": {}, "type": "Feature"}, {"bbox": [8.524817, 47.360295, 8.525722, 47.360358], "geometry": {"coordinates": [[[8.525722, 47.360358], [8.524817, 47.360295]]], "type": "MultiLineString"}, "id": "4988", "properties": {}, "type": "Feature"}, {"bbox": [8.52715, 47.352875, 8.527754, 47.355359], "geometry": {"coordinates": [[[8.527641, 47.355359], [8.527676, 47.355238], [8.527693, 47.354768], [8.5277, 47.354571], [8.52772, 47.354011], [8.527727, 47.353802], [8.527752, 47.353014], [8.527754, 47.353006], [8.527754, 47.352998], [8.527754, 47.35299], [8.527752, 47.352982], [8.527749, 47.352974], [8.527746, 47.352966], [8.527741, 47.352959], [8.527735, 47.352951], [8.527729, 47.352945], [8.527722, 47.352938], [8.527714, 47.352932], [8.527705, 47.352927], [8.527695, 47.352922], [8.527685, 47.352917], [8.527674, 47.352913], [8.527663, 47.35291], [8.527652, 47.352908], [8.52764, 47.352906], [8.527628, 47.352905], [8.527279, 47.352879], [8.52715, 47.352875]]], "type": "MultiLineString"}, "id": "4990", "properties": {}, "type": "Feature"}, {"bbox": [8.553497, 47.408807, 8.55884, 47.409015], "geometry": {"coordinates": [[[8.553497, 47.409015], [8.553919, 47.40892], [8.554354, 47.408854], [8.554796, 47.408816], [8.555241, 47.408807], [8.556162, 47.40882], [8.556344, 47.408849], [8.55884, 47.408896]]], "type": "MultiLineString"}, "id": "4991", "properties": {}, "type": "Feature"}, {"bbox": [8.526088, 47.358074, 8.527008, 47.358265], "geometry": {"coordinates": [[[8.527008, 47.358263], [8.526804, 47.358265], [8.526735, 47.358257], [8.526668, 47.358246], [8.526602, 47.35823], [8.526212, 47.35812], [8.526088, 47.358074]]], "type": "MultiLineString"}, "id": "4992", "properties": {}, "type": "Feature"}, {"bbox": [8.506448, 47.419122, 8.509438, 47.42569], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.506505, 47.419322], [8.506514, 47.419646], [8.506525, 47.419713], [8.506538, 47.419763], [8.506557, 47.419813], [8.506582, 47.41986], [8.506612, 47.419907], [8.506647, 47.419952], [8.507376, 47.421008], [8.507382, 47.421017], [8.507394, 47.421034], [8.507403, 47.421052], [8.50741, 47.42107], [8.507414, 47.421088], [8.507416, 47.421107], [8.507415, 47.421126], [8.507412, 47.421156], [8.507412, 47.421187], [8.507417, 47.421218], [8.507426, 47.421248], [8.507439, 47.421277], [8.507494, 47.421367], [8.507713, 47.421727], [8.507739, 47.42177], [8.507764, 47.421813], [8.507787, 47.421856], [8.507874, 47.422117], [8.507932, 47.422382], [8.507959, 47.422649], [8.507999, 47.422806], [8.508038, 47.422963], [8.508075, 47.42312], [8.508107, 47.423252], [8.508146, 47.423383], [8.508194, 47.423512], [8.50828, 47.423739], [8.508509, 47.424342], [8.508526, 47.424395], [8.508543, 47.424448], [8.50856, 47.4245], [8.508605, 47.424599], [8.508655, 47.424697], [8.50871, 47.424794], [8.508793, 47.424924], [8.508885, 47.425052], [8.508986, 47.425177], [8.50927, 47.425499], [8.509438, 47.42569]]], "type": "MultiLineString"}, "id": "4996", "properties": {}, "type": "Feature"}, {"bbox": [8.516776, 47.413092, 8.517902, 47.413812], "geometry": {"coordinates": [[[8.517902, 47.413812], [8.516889, 47.413104], [8.516879, 47.413101], [8.516868, 47.413098], [8.516857, 47.413095], [8.516845, 47.413094], [8.516834, 47.413093], [8.516822, 47.413092], [8.516811, 47.413092], [8.516799, 47.413093], [8.516788, 47.413095], [8.516776, 47.413097]]], "type": "MultiLineString"}, "id": "4997", "properties": {}, "type": "Feature"}, {"bbox": [8.538976, 47.419589, 8.548034, 47.423094], "geometry": {"coordinates": [[[8.548034, 47.419589], [8.547886, 47.419689], [8.547581, 47.420251], [8.547546, 47.420314], [8.547532, 47.420335], [8.547517, 47.420355], [8.547501, 47.420375], [8.54747, 47.420408], [8.547435, 47.42044], [8.547397, 47.42047], [8.5469, 47.420849], [8.546806, 47.42092], [8.545792, 47.421682], [8.545711, 47.421732], [8.545629, 47.421781], [8.545544, 47.421828], [8.544307, 47.42248], [8.543574, 47.422867], [8.543479, 47.42292], [8.543378, 47.422967], [8.543271, 47.423006], [8.543163, 47.423037], [8.543052, 47.423062], [8.542938, 47.423079], [8.542822, 47.42309], [8.54265, 47.423094], [8.542477, 47.423092], [8.542305, 47.423082], [8.542154, 47.423069], [8.542004, 47.423049], [8.541857, 47.423024], [8.541662, 47.42298], [8.541471, 47.422927], [8.541288, 47.422865], [8.540485, 47.422562], [8.540187, 47.422449], [8.53989, 47.422336], [8.53981, 47.422309], [8.539726, 47.422286], [8.53964, 47.422268], [8.539552, 47.422255], [8.539463, 47.422248], [8.539374, 47.422245], [8.539284, 47.422248], [8.539195, 47.422255], [8.539107, 47.422268], [8.539062, 47.422275], [8.539019, 47.422285], [8.538976, 47.422295]]], "type": "MultiLineString"}, "id": "5000", "properties": {}, "type": "Feature"}, {"bbox": [8.556599, 47.354327, 8.558894, 47.358442], "geometry": {"coordinates": [[[8.556898, 47.358442], [8.55687, 47.358299], [8.556852, 47.358155], [8.556842, 47.358011], [8.556835, 47.357966], [8.556822, 47.357922], [8.556804, 47.357879], [8.556781, 47.357837], [8.556753, 47.357796], [8.556715, 47.357749], [8.556638, 47.357653], [8.556625, 47.357633], [8.556614, 47.357612], [8.556606, 47.357591], [8.556601, 47.35757], [8.556599, 47.357549], [8.556599, 47.357527], [8.556601, 47.357508], [8.556605, 47.35749], [8.556612, 47.357472], [8.556621, 47.357454], [8.556632, 47.357437], [8.556932, 47.357059], [8.557055, 47.356942], [8.557177, 47.356825], [8.55722, 47.356756], [8.557261, 47.356685], [8.5573, 47.356615], [8.557313, 47.356589], [8.557327, 47.356562], [8.55734, 47.356536], [8.557411, 47.356361], [8.557419, 47.356342], [8.557462, 47.356236], [8.557547, 47.356026], [8.55758, 47.355947], [8.5576, 47.355898], [8.557741, 47.355546], [8.55777, 47.355456], [8.557809, 47.355367], [8.557857, 47.355281], [8.557916, 47.355198], [8.557998, 47.355089], [8.558243, 47.354769], [8.558257, 47.354756], [8.558273, 47.354745], [8.55829, 47.354734], [8.558309, 47.354724], [8.558329, 47.354715], [8.55835, 47.354708], [8.558894, 47.354327]]], "type": "MultiLineString"}, "id": "5002", "properties": {}, "type": "Feature"}, {"bbox": [8.553593, 47.403901, 8.55538, 47.404147], "geometry": {"coordinates": [[[8.553593, 47.404147], [8.553628, 47.404138], [8.553982, 47.404064], [8.554342, 47.404002], [8.554685, 47.403956], [8.555031, 47.403922], [8.55538, 47.403901]]], "type": "MultiLineString"}, "id": "5003", "properties": {}, "type": "Feature"}, {"bbox": [8.543312, 47.368987, 8.543576, 47.37009], "geometry": {"coordinates": [[[8.543576, 47.368987], [8.543552, 47.36902], [8.543532, 47.369053], [8.543516, 47.369088], [8.543505, 47.369123], [8.543498, 47.369159], [8.543495, 47.369195], [8.543497, 47.369231], [8.543503, 47.369267], [8.54351, 47.36939], [8.543505, 47.369512], [8.543488, 47.369634], [8.543448, 47.369789], [8.54339, 47.369941], [8.543312, 47.37009]]], "type": "MultiLineString"}, "id": "5011", "properties": {}, "type": "Feature"}, {"bbox": [8.522799, 47.340107, 8.52294, 47.340197], "geometry": {"coordinates": [[[8.52294, 47.340197], [8.522799, 47.340107]]], "type": "MultiLineString"}, "id": "5012", "properties": {}, "type": "Feature"}, {"bbox": [8.529734, 47.34394, 8.529999, 47.344868], "geometry": {"coordinates": [[[8.529734, 47.344868], [8.529813, 47.34468], [8.529847, 47.344599], [8.529878, 47.344517], [8.529907, 47.344434], [8.529916, 47.344386], [8.529925, 47.344337], [8.529934, 47.344289], [8.529943, 47.344241], [8.529952, 47.344192], [8.52996, 47.344144], [8.529967, 47.344104], [8.529975, 47.344063], [8.529982, 47.344023], [8.529987, 47.343995], [8.529992, 47.343968], [8.529999, 47.34394]]], "type": "MultiLineString"}, "id": "5013", "properties": {}, "type": "Feature"}, {"bbox": [8.584713, 47.359579, 8.585122, 47.360719], "geometry": {"coordinates": [[[8.585122, 47.359579], [8.584984, 47.359727], [8.584916, 47.359801], [8.584857, 47.359878], [8.584808, 47.359959], [8.584769, 47.360041], [8.58474, 47.360126], [8.584721, 47.360212], [8.584713, 47.360299], [8.584716, 47.360386], [8.584729, 47.360472], [8.584753, 47.360558], [8.584751, 47.360719]]], "type": "MultiLineString"}, "id": "5021", "properties": {}, "type": "Feature"}, {"bbox": [8.549771, 47.401727, 8.550469, 47.401863], "geometry": {"coordinates": [[[8.549771, 47.401863], [8.54983, 47.401832], [8.549892, 47.401804], [8.549958, 47.40178], [8.550027, 47.401761], [8.550098, 47.401746], [8.550171, 47.401735], [8.550245, 47.401728], [8.55032, 47.401727], [8.550395, 47.401729], [8.550469, 47.401737]]], "type": "MultiLineString"}, "id": "5031", "properties": {}, "type": "Feature"}, {"bbox": [8.522545, 47.396972, 8.530309, 47.398152], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.530306, 47.396987], [8.530309, 47.397002], [8.530309, 47.397018], [8.530307, 47.397033], [8.530304, 47.397049], [8.530299, 47.397064], [8.530291, 47.397079], [8.530282, 47.397093], [8.530271, 47.397107], [8.530259, 47.39712], [8.530245, 47.397132], [8.530229, 47.397143], [8.530212, 47.397154], [8.530194, 47.397163], [8.530174, 47.397172], [8.529916, 47.397265], [8.52985, 47.397283], [8.529783, 47.397297], [8.529713, 47.397308], [8.529643, 47.397314], [8.529572, 47.397317], [8.529501, 47.397315], [8.529431, 47.397309], [8.528496, 47.397199], [8.528003, 47.39714], [8.527945, 47.397135], [8.527886, 47.397134], [8.527828, 47.397137], [8.52777, 47.397142], [8.527714, 47.397151], [8.527658, 47.397164], [8.527605, 47.39718], [8.527553, 47.397198], [8.527505, 47.39722], [8.527459, 47.397245], [8.52737, 47.397301], [8.527341, 47.397319], [8.527284, 47.397353], [8.527147, 47.397426], [8.527001, 47.397489], [8.526847, 47.397544], [8.526686, 47.397588], [8.526578, 47.397613], [8.525234, 47.397894], [8.524541, 47.398039], [8.524334, 47.398082], [8.524133, 47.398118], [8.523929, 47.398141], [8.523722, 47.398152], [8.523515, 47.398151], [8.523309, 47.398137], [8.523105, 47.398111], [8.522545, 47.398004]]], "type": "MultiLineString"}, "id": "5033", "properties": {}, "type": "Feature"}, {"bbox": [8.487655, 47.368975, 8.489444, 47.369794], "geometry": {"coordinates": [[[8.489444, 47.369049], [8.489418, 47.369034], [8.489389, 47.36902], [8.489359, 47.369008], [8.489327, 47.368997], [8.489294, 47.368989], [8.48926, 47.368982], [8.489226, 47.368978], [8.489191, 47.368975], [8.489155, 47.368975], [8.48912, 47.368977], [8.489086, 47.36898], [8.489051, 47.368986], [8.489018, 47.368994], [8.488986, 47.369003], [8.488955, 47.369015], [8.488926, 47.369028], [8.488898, 47.369043], [8.488872, 47.369059], [8.488608, 47.369296], [8.488336, 47.369528], [8.488057, 47.369756], [8.488024, 47.369767], [8.487991, 47.369777], [8.487956, 47.369784], [8.48792, 47.369789], [8.487884, 47.369793], [8.487848, 47.369794], [8.487812, 47.369793], [8.487776, 47.369791], [8.48774, 47.369786], [8.487711, 47.369782], [8.487682, 47.369777], [8.487655, 47.369769]]], "type": "MultiLineString"}, "id": "5035", "properties": {}, "type": "Feature"}, {"bbox": [8.586103, 47.398629, 8.586943, 47.39942], "geometry": {"coordinates": [[[8.586103, 47.398881], [8.586408, 47.398649], [8.586417, 47.398645], [8.586427, 47.39864], [8.586437, 47.398637], [8.586448, 47.398634], [8.586459, 47.398632], [8.58647, 47.39863], [8.586481, 47.39863], [8.586493, 47.398629], [8.586504, 47.39863], [8.586516, 47.398631], [8.586527, 47.398633], [8.586537, 47.398635], [8.586548, 47.398638], [8.586558, 47.398642], [8.586568, 47.398646], [8.586577, 47.398651], [8.586585, 47.398656], [8.586689, 47.398809], [8.58677, 47.398969], [8.586829, 47.399133], [8.586943, 47.39942]]], "type": "MultiLineString"}, "id": "5039", "properties": {}, "type": "Feature"}, {"bbox": [8.568986, 47.405767, 8.569923, 47.406277], "geometry": {"coordinates": [[[8.568986, 47.406277], [8.569078, 47.406257], [8.569132, 47.406239], [8.569216, 47.406208], [8.569328, 47.406163], [8.569365, 47.406148], [8.569484, 47.406098], [8.569617, 47.406039], [8.569923, 47.405889], [8.569813, 47.405767]]], "type": "MultiLineString"}, "id": "5040", "properties": {}, "type": "Feature"}, {"bbox": [8.481096, 47.375507, 8.481668, 47.375844], "geometry": {"coordinates": [[[8.481142, 47.375507], [8.481098, 47.375587], [8.481097, 47.375591], [8.481096, 47.375595], [8.481096, 47.375599], [8.481097, 47.375603], [8.481098, 47.375607], [8.4811, 47.37561], [8.481102, 47.375614], [8.481105, 47.375618], [8.481108, 47.375621], [8.481111, 47.375624], [8.481115, 47.375627], [8.481119, 47.37563], [8.481124, 47.375632], [8.481129, 47.375635], [8.481134, 47.375637], [8.481139, 47.375638], [8.481668, 47.375844]]], "type": "MultiLineString"}, "id": "5041", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.369186, 8.57151, 47.370112], "geometry": {"coordinates": [[[8.57151, 47.369187], [8.571493, 47.369186], [8.571476, 47.369186], [8.571459, 47.369188], [8.571442, 47.36919], [8.571425, 47.369193], [8.571281, 47.369313], [8.571144, 47.369437], [8.571013, 47.369564], [8.570925, 47.369669], [8.570837, 47.369774], [8.570748, 47.369879], [8.570687, 47.369958], [8.570624, 47.370035], [8.570557, 47.370112]]], "type": "MultiLineString"}, "id": "5052", "properties": {}, "type": "Feature"}, {"bbox": [8.510669, 47.415138, 8.511643, 47.415876], "geometry": {"coordinates": [[[8.511643, 47.415141], [8.51164, 47.415138], [8.511486, 47.415197], [8.511333, 47.41526], [8.511188, 47.415332], [8.511052, 47.415411], [8.510927, 47.415499], [8.510863, 47.415553], [8.510804, 47.41561], [8.510751, 47.415669], [8.510725, 47.415708], [8.510704, 47.415749], [8.510687, 47.41579], [8.510676, 47.415833], [8.510669, 47.415876]]], "type": "MultiLineString"}, "id": "5053", "properties": {}, "type": "Feature"}, {"bbox": [8.495358, 47.399238, 8.498358, 47.399797], "geometry": {"coordinates": [[[8.498358, 47.399238], [8.498066, 47.399308], [8.497512, 47.399401], [8.496813, 47.39952], [8.496111, 47.399639], [8.495761, 47.3997], [8.495625, 47.399728], [8.49549, 47.39976], [8.495358, 47.399797]]], "type": "MultiLineString"}, "id": "5057", "properties": {}, "type": "Feature"}, {"bbox": [8.524813, 47.335374, 8.52506, 47.337032], "geometry": {"coordinates": [[[8.524813, 47.337032], [8.524814, 47.33683], [8.524816, 47.336758], [8.524824, 47.336562], [8.524847, 47.336367], [8.524884, 47.336172], [8.524915, 47.336017], [8.525028, 47.335459], [8.52506, 47.335374]]], "type": "MultiLineString"}, "id": "5059", "properties": {}, "type": "Feature"}, {"bbox": [8.524368, 47.39051, 8.5279, 47.39227], "geometry": {"coordinates": [[[8.5279, 47.39051], [8.527784, 47.390549], [8.527343, 47.390721], [8.527249, 47.390759], [8.527157, 47.3908], [8.527066, 47.390842], [8.526713, 47.391011], [8.526646, 47.391042], [8.526578, 47.391072], [8.526508, 47.391101], [8.526064, 47.391279], [8.525571, 47.391477], [8.525348, 47.391584], [8.525142, 47.391705], [8.524954, 47.391839], [8.524744, 47.392027], [8.52468, 47.392081], [8.524613, 47.392134], [8.524542, 47.392184], [8.524445, 47.392237], [8.524368, 47.39227]]], "type": "MultiLineString"}, "id": "5061", "properties": {}, "type": "Feature"}, {"bbox": [8.539393, 47.369604, 8.540602, 47.369759], "geometry": {"coordinates": [[[8.540602, 47.369743], [8.540596, 47.369746], [8.540589, 47.36975], [8.540582, 47.369752], [8.540575, 47.369755], [8.540567, 47.369756], [8.54056, 47.369758], [8.540552, 47.369759], [8.540543, 47.369759], [8.540535, 47.369759], [8.540527, 47.369758], [8.540519, 47.369757], [8.539982, 47.369684], [8.539393, 47.369604]]], "type": "MultiLineString"}, "id": "5067", "properties": {}, "type": "Feature"}, {"bbox": [8.545512, 47.410301, 8.546502, 47.412263], "geometry": {"coordinates": [[[8.546011, 47.410301], [8.545963, 47.410425], [8.545926, 47.410552], [8.545901, 47.410679], [8.545866, 47.410821], [8.545829, 47.410962], [8.545791, 47.411103], [8.545573, 47.411585], [8.545563, 47.41162], [8.545553, 47.411655], [8.545544, 47.411691], [8.545512, 47.411882], [8.545513, 47.411892], [8.545514, 47.411902], [8.545517, 47.411912], [8.545521, 47.411921], [8.545526, 47.411931], [8.545532, 47.41194], [8.54554, 47.411948], [8.545548, 47.411957], [8.545558, 47.411964], [8.545568, 47.411972], [8.545579, 47.411978], [8.545591, 47.411984], [8.545604, 47.411989], [8.545617, 47.411993], [8.546502, 47.412263]]], "type": "MultiLineString"}, "id": "5068", "properties": {}, "type": "Feature"}, {"bbox": [8.544775, 47.376527, 8.545595, 47.378443], "geometry": {"coordinates": [[[8.545021, 47.376527], [8.545015, 47.376539], [8.545008, 47.37655], [8.545, 47.376561], [8.544991, 47.376572], [8.544968, 47.376601], [8.544949, 47.376632], [8.544934, 47.376663], [8.544923, 47.376696], [8.544915, 47.376728], [8.544912, 47.376762], [8.544877, 47.377114], [8.544822, 47.377665], [8.544817, 47.377751], [8.544816, 47.377766], [8.544775, 47.378127], [8.544775, 47.378136], [8.544776, 47.378144], [8.544778, 47.378152], [8.544781, 47.378159], [8.544784, 47.378167], [8.544789, 47.378175], [8.544795, 47.378182], [8.544801, 47.378188], [8.544809, 47.378195], [8.544817, 47.378201], [8.544826, 47.378206], [8.544835, 47.378211], [8.544845, 47.378215], [8.544856, 47.378219], [8.544867, 47.378222], [8.545595, 47.378443]]], "type": "MultiLineString"}, "id": "5069", "properties": {}, "type": "Feature"}, {"bbox": [8.540602, 47.368059, 8.541127, 47.369743], "geometry": {"coordinates": [[[8.541127, 47.368059], [8.540969, 47.368585], [8.540846, 47.368997], [8.540739, 47.369351], [8.540632, 47.369706], [8.540631, 47.369711], [8.540629, 47.369716], [8.540626, 47.369721], [8.540622, 47.369726], [8.540618, 47.369731], [8.540613, 47.369735], [8.540608, 47.369739], [8.540602, 47.369743]]], "type": "MultiLineString"}, "id": "5070", "properties": {}, "type": "Feature"}, {"bbox": [8.548879, 47.364012, 8.55147, 47.366131], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.548955, 47.3661], [8.549028, 47.366065], [8.549096, 47.366026], [8.54916, 47.365984], [8.549842, 47.365323], [8.550149, 47.365008], [8.550219, 47.364946], [8.550292, 47.364885], [8.550368, 47.364827], [8.550665, 47.364612], [8.551307, 47.364147], [8.55147, 47.364012]]], "type": "MultiLineString"}, "id": "5071", "properties": {}, "type": "Feature"}, {"bbox": [8.560621, 47.361895, 8.566202, 47.364451], "geometry": {"coordinates": [[[8.560638, 47.361895], [8.56063, 47.361913], [8.560625, 47.361932], [8.560622, 47.361951], [8.560621, 47.36197], [8.560623, 47.361989], [8.560627, 47.362008], [8.560634, 47.362026], [8.560643, 47.362044], [8.560654, 47.362062], [8.560668, 47.362079], [8.560683, 47.362094], [8.560701, 47.362109], [8.56072, 47.362123], [8.561395, 47.362378], [8.561757, 47.362504], [8.561947, 47.36257], [8.561975, 47.36258], [8.562027, 47.362598], [8.563044, 47.36295], [8.563258, 47.363019], [8.564513, 47.363465], [8.564556, 47.36348], [8.564599, 47.363494], [8.564641, 47.363509], [8.564892, 47.363608], [8.56513, 47.36372], [8.565354, 47.363845], [8.565562, 47.363981], [8.565754, 47.364129], [8.566202, 47.364451]]], "type": "MultiLineString"}, "id": "5072", "properties": {}, "type": "Feature"}, {"bbox": [8.505942, 47.3563, 8.509088, 47.357647], "geometry": {"coordinates": [[[8.509088, 47.357647], [8.508655, 47.357456], [8.508278, 47.357305], [8.507403, 47.356936], [8.506672, 47.356629], [8.506261, 47.356455], [8.506215, 47.356429], [8.506048, 47.356356], [8.506009, 47.356336], [8.505942, 47.3563]]], "type": "MultiLineString"}, "id": "5077", "properties": {}, "type": "Feature"}, {"bbox": [8.516735, 47.376611, 8.518329, 47.377039], "geometry": {"coordinates": [[[8.518329, 47.376611], [8.516793, 47.376997], [8.516735, 47.377039]]], "type": "MultiLineString"}, "id": "5086", "properties": {}, "type": "Feature"}, {"bbox": [8.526884, 47.381908, 8.529232, 47.384838], "geometry": {"coordinates": [[[8.529232, 47.381908], [8.528757, 47.382091], [8.528662, 47.382134], [8.528461, 47.38233], [8.528432, 47.38236], [8.52833, 47.382468], [8.528238, 47.382568], [8.528068, 47.38276], [8.528034, 47.382801], [8.527671, 47.383262], [8.527593, 47.383371], [8.52745, 47.383587], [8.527258, 47.383899], [8.52707, 47.384255], [8.526884, 47.384838]]], "type": "MultiLineString"}, "id": "5094", "properties": {}, "type": "Feature"}, {"bbox": [8.55174, 47.394938, 8.552605, 47.395493], "geometry": {"coordinates": [[[8.55174, 47.394938], [8.551836, 47.394949], [8.552165, 47.395164], [8.552557, 47.395461], [8.552605, 47.395493]]], "type": "MultiLineString"}, "id": "5101", "properties": {}, "type": "Feature"}, {"bbox": [8.524132, 47.372293, 8.526678, 47.374289], "geometry": {"coordinates": [[[8.526678, 47.372293], [8.525821, 47.372819], [8.525818, 47.372843], [8.525811, 47.372867], [8.525801, 47.372891], [8.525789, 47.372914], [8.525773, 47.372937], [8.525754, 47.372958], [8.525732, 47.372978], [8.525708, 47.372996], [8.525198, 47.373387], [8.525034, 47.373512], [8.524699, 47.373769], [8.524554, 47.373879], [8.524248, 47.374113], [8.524225, 47.374129], [8.524205, 47.374147], [8.524187, 47.374165], [8.524172, 47.374184], [8.524158, 47.374204], [8.524148, 47.374225], [8.52414, 47.374246], [8.524134, 47.374267], [8.524132, 47.374289]]], "type": "MultiLineString"}, "id": "5105", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.387779, 8.546211, 47.389203], "geometry": {"coordinates": [[[8.544033, 47.387779], [8.544033, 47.387779], [8.544105, 47.387837], [8.544179, 47.387895], [8.544187, 47.387902], [8.544194, 47.387909], [8.5442, 47.387917], [8.544204, 47.387925], [8.544208, 47.387933], [8.544211, 47.387941], [8.544213, 47.38795], [8.544214, 47.387959], [8.544284, 47.387982], [8.544351, 47.388008], [8.544416, 47.388037], [8.545131, 47.388507], [8.545593, 47.38884], [8.54605, 47.389126], [8.546211, 47.389203]]], "type": "MultiLineString"}, "id": "5124", "properties": {}, "type": "Feature"}, {"bbox": [8.542639, 47.379933, 8.54415, 47.381913], "geometry": {"coordinates": [[[8.54415, 47.379937], [8.544117, 47.379934], [8.544083, 47.379933], [8.544049, 47.379934], [8.544015, 47.379937], [8.543982, 47.379942], [8.54395, 47.379949], [8.543918, 47.379957], [8.543888, 47.379968], [8.54386, 47.37998], [8.543833, 47.379994], [8.543808, 47.38001], [8.543785, 47.380027], [8.543764, 47.380045], [8.543745, 47.380064], [8.543541, 47.380363], [8.543454, 47.380494], [8.543287, 47.380752], [8.543188, 47.380903], [8.543042, 47.381122], [8.543014, 47.381161], [8.542915, 47.381287], [8.542851, 47.381367], [8.542762, 47.381474], [8.542719, 47.381575], [8.542689, 47.381633], [8.542662, 47.381692], [8.542639, 47.381752], [8.54296, 47.3818], [8.54352, 47.381913]]], "type": "MultiLineString"}, "id": "5125", "properties": {}, "type": "Feature"}, {"bbox": [8.514518, 47.376271, 8.516517, 47.37708], "geometry": {"coordinates": [[[8.516517, 47.376285], [8.51631, 47.376271], [8.516302, 47.376271], [8.516293, 47.376271], [8.516285, 47.376272], [8.516277, 47.376273], [8.516269, 47.376274], [8.516262, 47.376276], [8.516254, 47.376278], [8.516247, 47.376281], [8.51624, 47.376284], [8.515528, 47.376609], [8.514518, 47.37708]]], "type": "MultiLineString"}, "id": "5126", "properties": {}, "type": "Feature"}, {"bbox": [8.479759, 47.388898, 8.480421, 47.390095], "geometry": {"coordinates": [[[8.480421, 47.390095], [8.480205, 47.38981], [8.480022, 47.389514], [8.479873, 47.38921], [8.479759, 47.388898]]], "type": "MultiLineString"}, "id": "5127", "properties": {}, "type": "Feature"}, {"bbox": [8.540187, 47.42152, 8.540889, 47.422449], "geometry": {"coordinates": [[[8.540889, 47.421555], [8.540506, 47.42152], [8.5405, 47.421549], [8.540492, 47.421578], [8.540484, 47.421606], [8.540433, 47.421958], [8.540411, 47.422086], [8.540397, 47.422136], [8.540376, 47.422186], [8.54035, 47.422234], [8.540187, 47.422449]]], "type": "MultiLineString"}, "id": "5139", "properties": {}, "type": "Feature"}, {"bbox": [8.506106, 47.41565, 8.506996, 47.419122], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.506318, 47.418833], [8.506117, 47.418329], [8.50611, 47.418297], [8.506106, 47.418265], [8.506106, 47.418233], [8.50611, 47.418201], [8.506118, 47.41817], [8.50613, 47.418139], [8.506146, 47.418108], [8.506166, 47.418079], [8.506189, 47.41805], [8.506215, 47.418023], [8.506786, 47.41753], [8.506821, 47.417498], [8.506856, 47.417467], [8.506891, 47.417436], [8.506922, 47.4174], [8.506948, 47.417364], [8.50697, 47.417325], [8.506985, 47.417286], [8.506996, 47.417246], [8.506994, 47.417219], [8.50699, 47.417192], [8.506982, 47.417166], [8.506972, 47.41714], [8.506958, 47.417115], [8.506904, 47.417016], [8.506673, 47.416607], [8.506671, 47.416603], [8.506573, 47.416429], [8.506538, 47.416369], [8.506328, 47.41601], [8.506261, 47.415864], [8.506215, 47.415715], [8.506204, 47.41565]]], "type": "MultiLineString"}, "id": "5140", "properties": {}, "type": "Feature"}, {"bbox": [8.506182, 47.41224, 8.506378, 47.41565], "geometry": {"coordinates": [[[8.506204, 47.41565], [8.506189, 47.415563], [8.506184, 47.415411], [8.5062, 47.415258], [8.506224, 47.415149], [8.506275, 47.41492], [8.506332, 47.414659], [8.506369, 47.414433], [8.506378, 47.414207], [8.506359, 47.413981], [8.506324, 47.413779], [8.506239, 47.413314], [8.506203, 47.413099], [8.506184, 47.412884], [8.506182, 47.412667], [8.506203, 47.41224]]], "type": "MultiLineString"}, "id": "5141", "properties": {}, "type": "Feature"}, {"bbox": [8.541432, 47.413178, 8.543073, 47.413976], "geometry": {"coordinates": [[[8.543073, 47.413976], [8.542672, 47.413693], [8.542453, 47.41361], [8.541948, 47.41342], [8.541509, 47.413275], [8.541432, 47.413178]]], "type": "MultiLineString"}, "id": "5144", "properties": {}, "type": "Feature"}, {"bbox": [8.54142, 47.413178, 8.541518, 47.41405], "geometry": {"coordinates": [[[8.541432, 47.413178], [8.54142, 47.413246], [8.541479, 47.413836], [8.541518, 47.41405]]], "type": "MultiLineString"}, "id": "5147", "properties": {}, "type": "Feature"}, {"bbox": [8.584605, 47.406035, 8.584913, 47.406657], "geometry": {"coordinates": [[[8.584913, 47.406035], [8.584605, 47.406657]]], "type": "MultiLineString"}, "id": "5151", "properties": {}, "type": "Feature"}, {"bbox": [8.570929, 47.348154, 8.571133, 47.348502], "geometry": {"coordinates": [[[8.570929, 47.348502], [8.571133, 47.348154]]], "type": "MultiLineString"}, "id": "5153", "properties": {}, "type": "Feature"}, {"bbox": [8.559014, 47.367879, 8.560554, 47.368419], "geometry": {"coordinates": [[[8.559014, 47.368419], [8.559187, 47.368365], [8.559364, 47.368317], [8.559544, 47.368273], [8.559765, 47.368216], [8.559933, 47.368173], [8.560098, 47.368126], [8.560259, 47.368074], [8.560311, 47.368055], [8.560361, 47.368032], [8.560407, 47.368006], [8.56045, 47.367978], [8.560489, 47.367947], [8.560523, 47.367914], [8.560554, 47.367879]]], "type": "MultiLineString"}, "id": "5154", "properties": {}, "type": "Feature"}, {"bbox": [8.48059, 47.373278, 8.481029, 47.373459], "geometry": {"coordinates": [[[8.481029, 47.373459], [8.480904, 47.373396], [8.480751, 47.373333], [8.48059, 47.373279], [8.48059, 47.373278]]], "type": "MultiLineString"}, "id": "5156", "properties": {}, "type": "Feature"}, {"bbox": [8.477724, 47.390821, 8.479148, 47.3919], "geometry": {"coordinates": [[[8.479148, 47.390821], [8.47892, 47.39099], [8.478701, 47.391164], [8.478491, 47.391344], [8.478122, 47.391668], [8.478033, 47.391734], [8.477937, 47.391795], [8.477833, 47.39185], [8.477724, 47.3919]]], "type": "MultiLineString"}, "id": "5162", "properties": {}, "type": "Feature"}, {"bbox": [8.487774, 47.392414, 8.488871, 47.393111], "geometry": {"coordinates": [[[8.488871, 47.393111], [8.487927, 47.392467], [8.487904, 47.392454], [8.487881, 47.392443], [8.487856, 47.392433], [8.487829, 47.392425], [8.487802, 47.392419], [8.487774, 47.392414]]], "type": "MultiLineString"}, "id": "5163", "properties": {}, "type": "Feature"}, {"bbox": [8.486794, 47.392409, 8.487774, 47.392605], "geometry": {"coordinates": [[[8.487774, 47.392414], [8.487746, 47.392411], [8.487717, 47.392409], [8.487688, 47.39241], [8.48766, 47.392412], [8.487631, 47.392415], [8.487604, 47.392421], [8.487371, 47.392465], [8.486794, 47.392605]]], "type": "MultiLineString"}, "id": "5164", "properties": {}, "type": "Feature"}, {"bbox": [8.527032, 47.396015, 8.527561, 47.396138], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.527057, 47.396112], [8.527083, 47.39612], [8.52711, 47.396127], [8.527138, 47.396132], [8.527167, 47.396136], [8.527195, 47.396138], [8.527224, 47.396138], [8.527253, 47.396136], [8.527282, 47.396133], [8.52731, 47.396128], [8.527337, 47.396122], [8.527364, 47.396114], [8.527389, 47.396104], [8.527413, 47.396093], [8.527435, 47.39608], [8.527456, 47.396067], [8.527475, 47.396052], [8.527486, 47.396044], [8.527498, 47.396037], [8.52751, 47.396031], [8.527524, 47.396026], [8.527538, 47.396021], [8.527552, 47.396017], [8.527561, 47.396015]]], "type": "MultiLineString"}, "id": "5165", "properties": {}, "type": "Feature"}, {"bbox": [8.529071, 47.395662, 8.53214, 47.395818], "geometry": {"coordinates": [[[8.529071, 47.395777], [8.529224, 47.395764], [8.52939, 47.39576], [8.529556, 47.395766], [8.529708, 47.395776], [8.529859, 47.395792], [8.530008, 47.395815], [8.530639, 47.395818], [8.530777, 47.395815], [8.530914, 47.395804], [8.531048, 47.395783], [8.531441, 47.395711], [8.53156, 47.395689], [8.531627, 47.395677], [8.531697, 47.395668], [8.531768, 47.395663], [8.531839, 47.395662], [8.53191, 47.395664], [8.53214, 47.395678]]], "type": "MultiLineString"}, "id": "5166", "properties": {}, "type": "Feature"}, {"bbox": [8.532159, 47.358755, 8.533093, 47.361172], "geometry": {"coordinates": [[[8.532159, 47.361172], [8.532397, 47.360477], [8.532573, 47.359966], [8.532732, 47.359615], [8.532957, 47.359084], [8.533093, 47.358755]]], "type": "MultiLineString"}, "id": "5170", "properties": {}, "type": "Feature"}, {"bbox": [8.478321, 47.389683, 8.479199, 47.390441], "geometry": {"coordinates": [[[8.479199, 47.390441], [8.478321, 47.389683]]], "type": "MultiLineString"}, "id": "5171", "properties": {}, "type": "Feature"}, {"bbox": [8.511745, 47.372274, 8.512582, 47.372737], "geometry": {"coordinates": [[[8.512582, 47.372737], [8.511745, 47.372274]]], "type": "MultiLineString"}, "id": "5172", "properties": {}, "type": "Feature"}, {"bbox": [8.543819, 47.412512, 8.544284, 47.412701], "geometry": {"coordinates": [[[8.544284, 47.412512], [8.544023, 47.412568], [8.543819, 47.412701]]], "type": "MultiLineString"}, "id": "5178", "properties": {}, "type": "Feature"}, {"bbox": [8.51248, 47.373312, 8.513509, 47.373888], "geometry": {"coordinates": [[[8.513509, 47.373888], [8.51248, 47.373312]]], "type": "MultiLineString"}, "id": "5180", "properties": {}, "type": "Feature"}, {"bbox": [8.509807, 47.370148, 8.512013, 47.37305], "geometry": {"coordinates": [[[8.512013, 47.37305], [8.511673, 47.372859], [8.511139, 47.37256], [8.510942, 47.37245], [8.510392, 47.372141], [8.510367, 47.371955], [8.510212, 47.37108], [8.510202, 47.371028], [8.510083, 47.370438], [8.51008, 47.370425], [8.510076, 47.370412], [8.510069, 47.370399], [8.510061, 47.370387], [8.510051, 47.370376], [8.51004, 47.370365], [8.509807, 47.370148]]], "type": "MultiLineString"}, "id": "5181", "properties": {}, "type": "Feature"}, {"bbox": [8.596755, 47.360397, 8.598851, 47.363838], "geometry": {"coordinates": [[[8.596802, 47.360397], [8.596787, 47.360418], [8.596775, 47.36044], [8.596766, 47.360462], [8.596759, 47.360485], [8.596756, 47.360509], [8.596755, 47.360532], [8.596758, 47.360555], [8.596763, 47.360579], [8.596771, 47.360601], [8.596782, 47.360623], [8.596796, 47.360645], [8.596813, 47.360665], [8.596832, 47.360685], [8.596853, 47.360703], [8.59704, 47.360864], [8.597099, 47.360924], [8.59715, 47.360988], [8.597194, 47.361054], [8.59723, 47.361121], [8.597258, 47.361191], [8.597321, 47.361376], [8.597361, 47.36148], [8.59741, 47.361581], [8.597467, 47.361681], [8.597784, 47.362195], [8.59825, 47.362951], [8.598312, 47.363045], [8.598378, 47.363138], [8.598449, 47.363229], [8.598653, 47.363466], [8.598706, 47.363525], [8.598751, 47.363586], [8.598788, 47.363651], [8.59882, 47.363723], [8.598844, 47.363797], [8.598851, 47.363838]]], "type": "MultiLineString"}, "id": "5185", "properties": {}, "type": "Feature"}, {"bbox": [8.515034, 47.392766, 8.523047, 47.396136], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.521559, 47.393825], [8.521283, 47.394013], [8.519698, 47.395017], [8.519574, 47.3951], [8.519542, 47.395119], [8.519509, 47.395139], [8.519476, 47.395158], [8.519279, 47.395257], [8.51907, 47.395344], [8.51885, 47.395418], [8.518621, 47.395477], [8.518384, 47.395522], [8.518143, 47.395551], [8.518082, 47.395556], [8.51802, 47.39556], [8.517958, 47.395564], [8.517599, 47.395567], [8.517242, 47.395594], [8.516891, 47.395644], [8.516548, 47.395715], [8.515619, 47.395978], [8.51558, 47.395989], [8.5154, 47.396042], [8.515218, 47.396091], [8.515034, 47.396136]]], "type": "MultiLineString"}, "id": "5186", "properties": {}, "type": "Feature"}, {"bbox": [8.524077, 47.378304, 8.52476, 47.379009], "geometry": {"coordinates": [[[8.524077, 47.378304], [8.52476, 47.379009]]], "type": "MultiLineString"}, "id": "5188", "properties": {}, "type": "Feature"}, {"bbox": [8.525763, 47.37915, 8.52641, 47.379667], "geometry": {"coordinates": [[[8.525763, 47.37915], [8.526057, 47.379386], [8.52641, 47.379667]]], "type": "MultiLineString"}, "id": "5189", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d_onEachFeature(feature, layer) {\n", + " function geo_json_39a2442dd5dc719a7869abc934246600_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d = L.geoJson(null, {\n", - " onEachFeature: geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d_onEachFeature,\n", + " var geo_json_39a2442dd5dc719a7869abc934246600 = L.geoJson(null, {\n", + " onEachFeature: geo_json_39a2442dd5dc719a7869abc934246600_onEachFeature,\n", " \n", " color: "yellow",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d_add (data) {\n", - " geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d\n", + " function geo_json_39a2442dd5dc719a7869abc934246600_add (data) {\n", + " geo_json_39a2442dd5dc719a7869abc934246600\n", " .addData(data);\n", " }\n", - " geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d_add({"bbox": [8.466975, 47.322819, 8.625403, 47.432856], "features": [{"bbox": [8.534083, 47.361296, 8.535362, 47.361328], "geometry": {"coordinates": [[[8.535362, 47.361328], [8.534083, 47.361296]]], "type": "MultiLineString"}, "id": "3", "properties": {}, "type": "Feature"}, {"bbox": [8.57154, 47.379694, 8.573596, 47.381487], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.572105, 47.380994], [8.572606, 47.380557], [8.573584, 47.379705], [8.573596, 47.379694]]], "type": "MultiLineString"}, "id": "4", "properties": {}, "type": "Feature"}, {"bbox": [8.549103, 47.369047, 8.549754, 47.369418], "geometry": {"coordinates": [[[8.549103, 47.369047], [8.549754, 47.369418]]], "type": "MultiLineString"}, "id": "7", "properties": {}, "type": "Feature"}, {"bbox": [8.538568, 47.408962, 8.539572, 47.409293], "geometry": {"coordinates": [[[8.539572, 47.408962], [8.538568, 47.409293]]], "type": "MultiLineString"}, "id": "11", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.391122, 8.523937, 47.392247], "geometry": {"coordinates": [[[8.522852, 47.391122], [8.523449, 47.391739], [8.523937, 47.392247]]], "type": "MultiLineString"}, "id": "12", "properties": {}, "type": "Feature"}, {"bbox": [8.548372, 47.405622, 8.549952, 47.405902], "geometry": {"coordinates": [[[8.549952, 47.405622], [8.549786, 47.405652], [8.548372, 47.405902]]], "type": "MultiLineString"}, "id": "17", "properties": {}, "type": "Feature"}, {"bbox": [8.53193, 47.364624, 8.532946, 47.36485], "geometry": {"coordinates": [[[8.532946, 47.36485], [8.532801, 47.364819], [8.53193, 47.364624]]], "type": "MultiLineString"}, "id": "29", "properties": {}, "type": "Feature"}, {"bbox": [8.538714, 47.384969, 8.539891, 47.385433], "geometry": {"coordinates": [[[8.538714, 47.384969], [8.539719, 47.385366], [8.539891, 47.385433]]], "type": "MultiLineString"}, "id": "32", "properties": {}, "type": "Feature"}, {"bbox": [8.514463, 47.38247, 8.515148, 47.383187], "geometry": {"coordinates": [[[8.514463, 47.38247], [8.515148, 47.383187]]], "type": "MultiLineString"}, "id": "62", "properties": {}, "type": "Feature"}, {"bbox": [8.535767, 47.371305, 8.536081, 47.371525], "geometry": {"coordinates": [[[8.536081, 47.371305], [8.535767, 47.371525]]], "type": "MultiLineString"}, "id": "64", "properties": {}, "type": "Feature"}, {"bbox": [8.517781, 47.357527, 8.519971, 47.358065], "geometry": {"coordinates": [[[8.519971, 47.358065], [8.519593, 47.357921], [8.518869, 47.357758], [8.517781, 47.357527]]], "type": "MultiLineString"}, "id": "67", "properties": {}, "type": "Feature"}, {"bbox": [8.491048, 47.388258, 8.491568, 47.389588], "geometry": {"coordinates": [[[8.491048, 47.388258], [8.491345, 47.389023], [8.491568, 47.389588]]], "type": "MultiLineString"}, "id": "70", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.37238, 8.534696, 47.372597], "geometry": {"coordinates": [[[8.534696, 47.37238], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "74", "properties": {}, "type": "Feature"}, {"bbox": [8.514814, 47.37048, 8.515401, 47.370986], "geometry": {"coordinates": [[[8.515401, 47.37048], [8.514814, 47.370986]]], "type": "MultiLineString"}, "id": "77", "properties": {}, "type": "Feature"}, {"bbox": [8.488771, 47.390623, 8.489673, 47.391012], "geometry": {"coordinates": [[[8.48963, 47.390623], [8.489673, 47.39074], [8.489513, 47.390815], [8.488771, 47.391012]]], "type": "MultiLineString"}, "id": "82", "properties": {}, "type": "Feature"}, {"bbox": [8.538567, 47.367639, 8.539962, 47.367905], "geometry": {"coordinates": [[[8.539962, 47.367905], [8.539848, 47.367883], [8.539185, 47.367741], [8.538567, 47.367639]]], "type": "MultiLineString"}, "id": "83", "properties": {}, "type": "Feature"}, {"bbox": [8.542347, 47.387779, 8.544033, 47.38875], "geometry": {"coordinates": [[[8.542347, 47.38875], [8.543686, 47.387962], [8.543889, 47.387864], [8.544033, 47.387779]]], "type": "MultiLineString"}, "id": "86", "properties": {}, "type": "Feature"}, {"bbox": [8.554059, 47.369316, 8.554799, 47.369461], "geometry": {"coordinates": [[[8.554059, 47.369461], [8.554551, 47.36936], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "102", "properties": {}, "type": "Feature"}, {"bbox": [8.553706, 47.364725, 8.554431, 47.364979], "geometry": {"coordinates": [[[8.553706, 47.364979], [8.554431, 47.364725]]], "type": "MultiLineString"}, "id": "121", "properties": {}, "type": "Feature"}, {"bbox": [8.551746, 47.3823, 8.55231, 47.382622], "geometry": {"coordinates": [[[8.551746, 47.3823], [8.55231, 47.382622]]], "type": "MultiLineString"}, "id": "132", "properties": {}, "type": "Feature"}, {"bbox": [8.523492, 47.367222, 8.523815, 47.367706], "geometry": {"coordinates": [[[8.523492, 47.367222], [8.523577, 47.367362], [8.523815, 47.367706]]], "type": "MultiLineString"}, "id": "134", "properties": {}, "type": "Feature"}, {"bbox": [8.546182, 47.410199, 8.546351, 47.410431], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546261, 47.410329], [8.546351, 47.410431]]], "type": "MultiLineString"}, "id": "136", "properties": {}, "type": "Feature"}, {"bbox": [8.559885, 47.417654, 8.560006, 47.417888], "geometry": {"coordinates": [[[8.559885, 47.417888], [8.560006, 47.417654]]], "type": "MultiLineString"}, "id": "139", "properties": {}, "type": "Feature"}, {"bbox": [8.521642, 47.356703, 8.522162, 47.357654], "geometry": {"coordinates": [[[8.521642, 47.357654], [8.521934, 47.357066], [8.522162, 47.356703]]], "type": "MultiLineString"}, "id": "144", "properties": {}, "type": "Feature"}, {"bbox": [8.542741, 47.399597, 8.544438, 47.399893], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.543821, 47.399794], [8.544352, 47.399893], [8.544438, 47.399838]]], "type": "MultiLineString"}, "id": "148", "properties": {}, "type": "Feature"}, {"bbox": [8.531632, 47.366592, 8.53171, 47.366642], "geometry": {"coordinates": [[[8.531632, 47.366592], [8.53171, 47.366642]]], "type": "MultiLineString"}, "id": "149", "properties": {}, "type": "Feature"}, {"bbox": [8.527831, 47.373643, 8.52843, 47.374074], "geometry": {"coordinates": [[[8.527831, 47.373643], [8.52843, 47.374074]]], "type": "MultiLineString"}, "id": "164", "properties": {}, "type": "Feature"}, {"bbox": [8.516504, 47.35947, 8.51741, 47.359681], "geometry": {"coordinates": [[[8.516504, 47.359681], [8.516593, 47.359673], [8.516681, 47.359648], [8.517296, 47.359595], [8.517396, 47.359585], [8.51741, 47.35947]]], "type": "MultiLineString"}, "id": "166", "properties": {}, "type": "Feature"}, {"bbox": [8.49131, 47.427656, 8.492086, 47.427812], "geometry": {"coordinates": [[[8.492086, 47.427656], [8.491525, 47.427802], [8.491418, 47.427812], [8.49131, 47.427804]]], "type": "MultiLineString"}, "id": "169", "properties": {}, "type": "Feature"}, {"bbox": [8.532918, 47.376539, 8.533836, 47.377168], "geometry": {"coordinates": [[[8.532918, 47.376539], [8.533836, 47.377168]]], "type": "MultiLineString"}, "id": "194", "properties": {}, "type": "Feature"}, {"bbox": [8.591631, 47.40656, 8.59208, 47.407189], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.59208, 47.407189]]], "type": "MultiLineString"}, "id": "197", "properties": {}, "type": "Feature"}, {"bbox": [8.53747, 47.409409, 8.537714, 47.409615], "geometry": {"coordinates": [[[8.537636, 47.409409], [8.537714, 47.409559], [8.53747, 47.409615]]], "type": "MultiLineString"}, "id": "215", "properties": {}, "type": "Feature"}, {"bbox": [8.519075, 47.338716, 8.51938, 47.343169], "geometry": {"coordinates": [[[8.51938, 47.343169], [8.51916, 47.340715], [8.519096, 47.339928], [8.519081, 47.339677], [8.519075, 47.339426], [8.519079, 47.339174], [8.519092, 47.33872], [8.519092, 47.338716]]], "type": "MultiLineString"}, "id": "227", "properties": {}, "type": "Feature"}, {"bbox": [8.566327, 47.364435, 8.566464, 47.364594], "geometry": {"coordinates": [[[8.566327, 47.364594], [8.566349, 47.364577], [8.566369, 47.364559], [8.566388, 47.364541], [8.566464, 47.364435]]], "type": "MultiLineString"}, "id": "232", "properties": {}, "type": "Feature"}, {"bbox": [8.549845, 47.356072, 8.551305, 47.356633], "geometry": {"coordinates": [[[8.549845, 47.356072], [8.551305, 47.356633]]], "type": "MultiLineString"}, "id": "235", "properties": {}, "type": "Feature"}, {"bbox": [8.540439, 47.414966, 8.540623, 47.41644], "geometry": {"coordinates": [[[8.540439, 47.414966], [8.540529, 47.415774], [8.540623, 47.41644]]], "type": "MultiLineString"}, "id": "242", "properties": {}, "type": "Feature"}, {"bbox": [8.534463, 47.372597, 8.534472, 47.372823], "geometry": {"coordinates": [[[8.534472, 47.372597], [8.534463, 47.372823]]], "type": "MultiLineString"}, "id": "279", "properties": {}, "type": "Feature"}, {"bbox": [8.534246, 47.360287, 8.535427, 47.360339], "geometry": {"coordinates": [[[8.535427, 47.360339], [8.534246, 47.360287]]], "type": "MultiLineString"}, "id": "291", "properties": {}, "type": "Feature"}, {"bbox": [8.540695, 47.376963, 8.541897, 47.377019], "geometry": {"coordinates": [[[8.541897, 47.376963], [8.541745, 47.376979], [8.541592, 47.37699], [8.541439, 47.376998], [8.541192, 47.377015], [8.540943, 47.377019], [8.540695, 47.377011]]], "type": "MultiLineString"}, "id": "299", "properties": {}, "type": "Feature"}, {"bbox": [8.537534, 47.39835, 8.538939, 47.398571], "geometry": {"coordinates": [[[8.537534, 47.39835], [8.538939, 47.398571]]], "type": "MultiLineString"}, "id": "309", "properties": {}, "type": "Feature"}, {"bbox": [8.493632, 47.380333, 8.494533, 47.381261], "geometry": {"coordinates": [[[8.494533, 47.381261], [8.493632, 47.380333]]], "type": "MultiLineString"}, "id": "315", "properties": {}, "type": "Feature"}, {"bbox": [8.563846, 47.375496, 8.564142, 47.375497], "geometry": {"coordinates": [[[8.563846, 47.375496], [8.564142, 47.375497]]], "type": "MultiLineString"}, "id": "319", "properties": {}, "type": "Feature"}, {"bbox": [8.528025, 47.397199, 8.528496, 47.397778], "geometry": {"coordinates": [[[8.528496, 47.397199], [8.528397, 47.397333], [8.528257, 47.397548], [8.528025, 47.397778]]], "type": "MultiLineString"}, "id": "320", "properties": {}, "type": "Feature"}, {"bbox": [8.473292, 47.393473, 8.474068, 47.394457], "geometry": {"coordinates": [[[8.474068, 47.394457], [8.473292, 47.393473]]], "type": "MultiLineString"}, "id": "321", "properties": {}, "type": "Feature"}, {"bbox": [8.53359, 47.372713, 8.534282, 47.372893], "geometry": {"coordinates": [[[8.534282, 47.372713], [8.53359, 47.372893]]], "type": "MultiLineString"}, "id": "322", "properties": {}, "type": "Feature"}, {"bbox": [8.541833, 47.416254, 8.541951, 47.417183], "geometry": {"coordinates": [[[8.541865, 47.416254], [8.541833, 47.416329], [8.541838, 47.416362], [8.541951, 47.417183]]], "type": "MultiLineString"}, "id": "337", "properties": {}, "type": "Feature"}, {"bbox": [8.535188, 47.362553, 8.535274, 47.363583], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535274, 47.362553]]], "type": "MultiLineString"}, "id": "338", "properties": {}, "type": "Feature"}, {"bbox": [8.534966, 47.367886, 8.535443, 47.368801], "geometry": {"coordinates": [[[8.535443, 47.367886], [8.535443, 47.367886], [8.53532, 47.368046], [8.534966, 47.368801]]], "type": "MultiLineString"}, "id": "341", "properties": {}, "type": "Feature"}, {"bbox": [8.517689, 47.391945, 8.518139, 47.392076], "geometry": {"coordinates": [[[8.518139, 47.391945], [8.517689, 47.392076]]], "type": "MultiLineString"}, "id": "347", "properties": {}, "type": "Feature"}, {"bbox": [8.493783, 47.36802, 8.494821, 47.368429], "geometry": {"coordinates": [[[8.493783, 47.368429], [8.494821, 47.36802]]], "type": "MultiLineString"}, "id": "353", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.396972, 8.532316, 47.397568], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.531225, 47.397254], [8.532316, 47.397568]]], "type": "MultiLineString"}, "id": "356", "properties": {}, "type": "Feature"}, {"bbox": [8.536441, 47.371538, 8.536819, 47.371786], "geometry": {"coordinates": [[[8.536819, 47.371786], [8.536747, 47.371737], [8.536441, 47.371538]]], "type": "MultiLineString"}, "id": "371", "properties": {}, "type": "Feature"}, {"bbox": [8.507432, 47.418317, 8.508416, 47.418827], "geometry": {"coordinates": [[[8.508416, 47.418317], [8.508101, 47.418498], [8.507773, 47.418668], [8.507432, 47.418827]]], "type": "MultiLineString"}, "id": "378", "properties": {}, "type": "Feature"}, {"bbox": [8.536897, 47.375551, 8.53712, 47.375729], "geometry": {"coordinates": [[[8.536897, 47.375551], [8.536967, 47.375613], [8.537041, 47.375672], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "387", "properties": {}, "type": "Feature"}, {"bbox": [8.554503, 47.418232, 8.555739, 47.419583], "geometry": {"coordinates": [[[8.554503, 47.418232], [8.555739, 47.419583]]], "type": "MultiLineString"}, "id": "388", "properties": {}, "type": "Feature"}, {"bbox": [8.499939, 47.38272, 8.500483, 47.382991], "geometry": {"coordinates": [[[8.500483, 47.38272], [8.499939, 47.382991]]], "type": "MultiLineString"}, "id": "393", "properties": {}, "type": "Feature"}, {"bbox": [8.483314, 47.388544, 8.483786, 47.388822], "geometry": {"coordinates": [[[8.483786, 47.388544], [8.483314, 47.388822]]], "type": "MultiLineString"}, "id": "394", "properties": {}, "type": "Feature"}, {"bbox": [8.515772, 47.381528, 8.518669, 47.383349], "geometry": {"coordinates": [[[8.515772, 47.383349], [8.516779, 47.382763], [8.518669, 47.381528]]], "type": "MultiLineString"}, "id": "398", "properties": {}, "type": "Feature"}, {"bbox": [8.519971, 47.357818, 8.521754, 47.358625], "geometry": {"coordinates": [[[8.519971, 47.358065], [8.520436, 47.358282], [8.521251, 47.358625], [8.521617, 47.358088], [8.521754, 47.357818]]], "type": "MultiLineString"}, "id": "403", "properties": {}, "type": "Feature"}, {"bbox": [8.546128, 47.427397, 8.547646, 47.428169], "geometry": {"coordinates": [[[8.546128, 47.427397], [8.547327, 47.427979], [8.547436, 47.428041], [8.547542, 47.428104], [8.547646, 47.428169]]], "type": "MultiLineString"}, "id": "407", "properties": {}, "type": "Feature"}, {"bbox": [8.559509, 47.375933, 8.560315, 47.376719], "geometry": {"coordinates": [[[8.559509, 47.375933], [8.559643, 47.376038], [8.559771, 47.376146], [8.559894, 47.376258], [8.560058, 47.376421], [8.560148, 47.376519], [8.560234, 47.376618], [8.560315, 47.376719]]], "type": "MultiLineString"}, "id": "419", "properties": {}, "type": "Feature"}, {"bbox": [8.536075, 47.371068, 8.536415, 47.371305], "geometry": {"coordinates": [[[8.536415, 47.371068], [8.536081, 47.371305], [8.536075, 47.371301]]], "type": "MultiLineString"}, "id": "423", "properties": {}, "type": "Feature"}, {"bbox": [8.506041, 47.411352, 8.509701, 47.411681], "geometry": {"coordinates": [[[8.509701, 47.411662], [8.507908, 47.411677], [8.507465, 47.411681], [8.507164, 47.411651], [8.506869, 47.411603], [8.506582, 47.411537], [8.506305, 47.411453], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "424", "properties": {}, "type": "Feature"}, {"bbox": [8.549289, 47.369461, 8.554059, 47.370542], "geometry": {"coordinates": [[[8.549289, 47.370542], [8.550188, 47.37032], [8.550648, 47.370207], [8.551888, 47.369943], [8.552288, 47.369868], [8.55251, 47.369805], [8.553143, 47.369671], [8.553726, 47.369533], [8.553822, 47.36951], [8.554059, 47.369461]]], "type": "MultiLineString"}, "id": "441", "properties": {}, "type": "Feature"}, {"bbox": [8.536568, 47.415197, 8.539411, 47.415348], "geometry": {"coordinates": [[[8.539411, 47.415197], [8.538742, 47.41523], [8.538074, 47.415263], [8.536568, 47.415348]]], "type": "MultiLineString"}, "id": "443", "properties": {}, "type": "Feature"}, {"bbox": [8.522791, 47.379443, 8.523939, 47.380054], "geometry": {"coordinates": [[[8.523939, 47.379443], [8.522791, 47.380054]]], "type": "MultiLineString"}, "id": "454", "properties": {}, "type": "Feature"}, {"bbox": [8.496648, 47.423758, 8.497054, 47.42396], "geometry": {"coordinates": [[[8.496648, 47.423958], [8.496659, 47.42396], [8.496671, 47.42396], [8.496683, 47.42396], [8.496695, 47.423959], [8.496706, 47.423957], [8.496717, 47.423955], [8.496728, 47.423952], [8.496739, 47.423949], [8.496749, 47.423944], [8.496759, 47.42394], [8.497029, 47.423807], [8.497054, 47.423758]]], "type": "MultiLineString"}, "id": "456", "properties": {}, "type": "Feature"}, {"bbox": [8.552935, 47.424368, 8.553642, 47.424695], "geometry": {"coordinates": [[[8.552935, 47.424695], [8.553642, 47.424368]]], "type": "MultiLineString"}, "id": "468", "properties": {}, "type": "Feature"}, {"bbox": [8.54849, 47.368238, 8.550374, 47.369433], "geometry": {"coordinates": [[[8.550374, 47.368238], [8.549103, 47.369047], [8.548586, 47.369364], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "478", "properties": {}, "type": "Feature"}, {"bbox": [8.516795, 47.361822, 8.516899, 47.36191], "geometry": {"coordinates": [[[8.516899, 47.361822], [8.516795, 47.36191]]], "type": "MultiLineString"}, "id": "480", "properties": {}, "type": "Feature"}, {"bbox": [8.535713, 47.371079, 8.536075, 47.371301], "geometry": {"coordinates": [[[8.536075, 47.371301], [8.535713, 47.371079]]], "type": "MultiLineString"}, "id": "481", "properties": {}, "type": "Feature"}, {"bbox": [8.517529, 47.37067, 8.519352, 47.372557], "geometry": {"coordinates": [[[8.519352, 47.37067], [8.519158, 47.37087], [8.518785, 47.371304], [8.518654, 47.371434], [8.518277, 47.371799], [8.518171, 47.371906], [8.517529, 47.372557]]], "type": "MultiLineString"}, "id": "482", "properties": {}, "type": "Feature"}, {"bbox": [8.534353, 47.370127, 8.534648, 47.370322], "geometry": {"coordinates": [[[8.534648, 47.370322], [8.534423, 47.37017], [8.534353, 47.370127]]], "type": "MultiLineString"}, "id": "484", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.377777, 8.537852, 47.378049], "geometry": {"coordinates": [[[8.537852, 47.377777], [8.537786, 47.377789], [8.537719, 47.377798], [8.537651, 47.377805], [8.537582, 47.377814], [8.537513, 47.377826], [8.537446, 47.377842], [8.536881, 47.378004], [8.536807, 47.378023], [8.53673, 47.378038], [8.536652, 47.378048], [8.536632, 47.378049], [8.536612, 47.378048], [8.536592, 47.378046], [8.536572, 47.378043], [8.536553, 47.378038], [8.536535, 47.378033], [8.536517, 47.378026], [8.5365, 47.378018], [8.536485, 47.37801]]], "type": "MultiLineString"}, "id": "485", "properties": {}, "type": "Feature"}, {"bbox": [8.524275, 47.380324, 8.524888, 47.380692], "geometry": {"coordinates": [[[8.524888, 47.380324], [8.524275, 47.380692]]], "type": "MultiLineString"}, "id": "494", "properties": {}, "type": "Feature"}, {"bbox": [8.503672, 47.408427, 8.505498, 47.409036], "geometry": {"coordinates": [[[8.503672, 47.409036], [8.504485, 47.408762], [8.505374, 47.408468], [8.505498, 47.408427]]], "type": "MultiLineString"}, "id": "497", "properties": {}, "type": "Feature"}, {"bbox": [8.534785, 47.368911, 8.535198, 47.369467], "geometry": {"coordinates": [[[8.535198, 47.368911], [8.535134, 47.368953], [8.534785, 47.369467]]], "type": "MultiLineString"}, "id": "498", "properties": {}, "type": "Feature"}, {"bbox": [8.518139, 47.390845, 8.522048, 47.391945], "geometry": {"coordinates": [[[8.522048, 47.390845], [8.521822, 47.39087], [8.521072, 47.391029], [8.520457, 47.39119], [8.520388, 47.391298], [8.520103, 47.391376], [8.518876, 47.391731], [8.518816, 47.391748], [8.518139, 47.391945]]], "type": "MultiLineString"}, "id": "521", "properties": {}, "type": "Feature"}, {"bbox": [8.540329, 47.374015, 8.540383, 47.374616], "geometry": {"coordinates": [[[8.540329, 47.374015], [8.540344, 47.374121], [8.540383, 47.374616]]], "type": "MultiLineString"}, "id": "529", "properties": {}, "type": "Feature"}, {"bbox": [8.537833, 47.398469, 8.539207, 47.39866], "geometry": {"coordinates": [[[8.537833, 47.398469], [8.539049, 47.39866], [8.539207, 47.398607]]], "type": "MultiLineString"}, "id": "530", "properties": {}, "type": "Feature"}, {"bbox": [8.542714, 47.378637, 8.543064, 47.378975], "geometry": {"coordinates": [[[8.542714, 47.378637], [8.542767, 47.37866], [8.542817, 47.378685], [8.542863, 47.378714], [8.542906, 47.378746], [8.542944, 47.378779], [8.542978, 47.378815], [8.543007, 47.378853], [8.543031, 47.378892], [8.543051, 47.378933], [8.543064, 47.378975]]], "type": "MultiLineString"}, "id": "531", "properties": {}, "type": "Feature"}, {"bbox": [8.52627, 47.373852, 8.52766, 47.374793], "geometry": {"coordinates": [[[8.52627, 47.373852], [8.526864, 47.374264], [8.52694, 47.374314], [8.527296, 47.374551], [8.52766, 47.374793]]], "type": "MultiLineString"}, "id": "535", "properties": {}, "type": "Feature"}, {"bbox": [8.48828, 47.387268, 8.48963, 47.390623], "geometry": {"coordinates": [[[8.48963, 47.390623], [8.489586, 47.390484], [8.489044, 47.389156], [8.488982, 47.389007], [8.488682, 47.388268], [8.488341, 47.387431], [8.48828, 47.387268]]], "type": "MultiLineString"}, "id": "536", "properties": {}, "type": "Feature"}, {"bbox": [8.48803, 47.389351, 8.488474, 47.390575], "geometry": {"coordinates": [[[8.488474, 47.390575], [8.48803, 47.389351]]], "type": "MultiLineString"}, "id": "543", "properties": {}, "type": "Feature"}, {"bbox": [8.534396, 47.387596, 8.535741, 47.388688], "geometry": {"coordinates": [[[8.534396, 47.387596], [8.534495, 47.387655], [8.534652, 47.387779], [8.534994, 47.388045], [8.535118, 47.388148], [8.535147, 47.388175], [8.535255, 47.388281], [8.535487, 47.388525], [8.535532, 47.388563], [8.535741, 47.388688]]], "type": "MultiLineString"}, "id": "561", "properties": {}, "type": "Feature"}, {"bbox": [8.500178, 47.382429, 8.500483, 47.38272], "geometry": {"coordinates": [[[8.500483, 47.38272], [8.500178, 47.382429]]], "type": "MultiLineString"}, "id": "564", "properties": {}, "type": "Feature"}, {"bbox": [8.518617, 47.336767, 8.51916, 47.337213], "geometry": {"coordinates": [[[8.51916, 47.337213], [8.519138, 47.337184], [8.519113, 47.337156], [8.519085, 47.33713], [8.518617, 47.336767]]], "type": "MultiLineString"}, "id": "575", "properties": {}, "type": "Feature"}, {"bbox": [8.53643, 47.374773, 8.537238, 47.375083], "geometry": {"coordinates": [[[8.537238, 47.374773], [8.537089, 47.374973], [8.536637, 47.375001], [8.53643, 47.375083]]], "type": "MultiLineString"}, "id": "581", "properties": {}, "type": "Feature"}, {"bbox": [8.520646, 47.384736, 8.521446, 47.386063], "geometry": {"coordinates": [[[8.521446, 47.386063], [8.521426, 47.386002], [8.521398, 47.385941], [8.521362, 47.385882], [8.521319, 47.385826], [8.521269, 47.385773], [8.521211, 47.385723], [8.520997, 47.385369], [8.520882, 47.385161], [8.520646, 47.384736]]], "type": "MultiLineString"}, "id": "597", "properties": {}, "type": "Feature"}, {"bbox": [8.531822, 47.413288, 8.532672, 47.416287], "geometry": {"coordinates": [[[8.531822, 47.413288], [8.531906, 47.413621], [8.53216, 47.414446], [8.532533, 47.415795], [8.532672, 47.416287]]], "type": "MultiLineString"}, "id": "606", "properties": {}, "type": "Feature"}, {"bbox": [8.567897, 47.416989, 8.568409, 47.417991], "geometry": {"coordinates": [[[8.567897, 47.416989], [8.568024, 47.417133], [8.568159, 47.417265], [8.568201, 47.417388], [8.568337, 47.417698], [8.568409, 47.417991]]], "type": "MultiLineString"}, "id": "620", "properties": {}, "type": "Feature"}, {"bbox": [8.536006, 47.373044, 8.536533, 47.373756], "geometry": {"coordinates": [[[8.536533, 47.373044], [8.536133, 47.37369], [8.536006, 47.373756]]], "type": "MultiLineString"}, "id": "627", "properties": {}, "type": "Feature"}, {"bbox": [8.490168, 47.394171, 8.490877, 47.394724], "geometry": {"coordinates": [[[8.490877, 47.394724], [8.490755, 47.394622], [8.490168, 47.394171]]], "type": "MultiLineString"}, "id": "631", "properties": {}, "type": "Feature"}, {"bbox": [8.491774, 47.369138, 8.491952, 47.369917], "geometry": {"coordinates": [[[8.491774, 47.369917], [8.491952, 47.369138]]], "type": "MultiLineString"}, "id": "634", "properties": {}, "type": "Feature"}, {"bbox": [8.528566, 47.397787, 8.532456, 47.3981], "geometry": {"coordinates": [[[8.532456, 47.3981], [8.532388, 47.398085], [8.530611, 47.39784], [8.530269, 47.397803], [8.529924, 47.397787], [8.529578, 47.397793], [8.529235, 47.39782], [8.528896, 47.39787], [8.528566, 47.39794]]], "type": "MultiLineString"}, "id": "637", "properties": {}, "type": "Feature"}, {"bbox": [8.519571, 47.368781, 8.520315, 47.369694], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.52026, 47.369638], [8.520211, 47.369579], [8.520165, 47.369519], [8.519846, 47.36909], [8.519571, 47.368781]]], "type": "MultiLineString"}, "id": "650", "properties": {}, "type": "Feature"}, {"bbox": [8.548231, 47.410364, 8.548732, 47.410416], "geometry": {"coordinates": [[[8.548231, 47.410364], [8.548732, 47.410416]]], "type": "MultiLineString"}, "id": "669", "properties": {}, "type": "Feature"}, {"bbox": [8.538612, 47.371064, 8.53992, 47.37122], "geometry": {"coordinates": [[[8.53992, 47.37122], [8.538936, 47.371064], [8.538763, 47.371119], [8.538612, 47.371094]]], "type": "MultiLineString"}, "id": "677", "properties": {}, "type": "Feature"}, {"bbox": [8.535346, 47.414145, 8.536423, 47.414205], "geometry": {"coordinates": [[[8.536423, 47.414145], [8.535346, 47.414205]]], "type": "MultiLineString"}, "id": "681", "properties": {}, "type": "Feature"}, {"bbox": [8.500602, 47.38202, 8.501056, 47.382446], "geometry": {"coordinates": [[[8.501056, 47.382446], [8.500602, 47.38202]]], "type": "MultiLineString"}, "id": "686", "properties": {}, "type": "Feature"}, {"bbox": [8.5574, 47.403958, 8.557626, 47.404428], "geometry": {"coordinates": [[[8.5574, 47.403958], [8.557626, 47.404428]]], "type": "MultiLineString"}, "id": "687", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380591, 8.525477, 47.380902], "geometry": {"coordinates": [[[8.525167, 47.380591], [8.525337, 47.380772], [8.525451, 47.380883], [8.525477, 47.380902]]], "type": "MultiLineString"}, "id": "688", "properties": {}, "type": "Feature"}, {"bbox": [8.499924, 47.393426, 8.502188, 47.393789], "geometry": {"coordinates": [[[8.502188, 47.393789], [8.501758, 47.393665], [8.501483, 47.393607], [8.501201, 47.393564], [8.500916, 47.393536], [8.500286, 47.393481], [8.499924, 47.393426]]], "type": "MultiLineString"}, "id": "689", "properties": {}, "type": "Feature"}, {"bbox": [8.519215, 47.392894, 8.519667, 47.393683], "geometry": {"coordinates": [[[8.519215, 47.392894], [8.519283, 47.393041], [8.519421, 47.393273], [8.519667, 47.393683]]], "type": "MultiLineString"}, "id": "697", "properties": {}, "type": "Feature"}, {"bbox": [8.517307, 47.385389, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.518126, 47.386209], [8.518131, 47.386261], [8.519106, 47.387242], [8.519106, 47.387242]]], "type": "MultiLineString"}, "id": "733", "properties": {}, "type": "Feature"}, {"bbox": [8.527977, 47.373181, 8.52814, 47.373225], "geometry": {"coordinates": [[[8.52814, 47.373225], [8.528086, 47.37321], [8.528031, 47.373196], [8.527977, 47.373181]]], "type": "MultiLineString"}, "id": "736", "properties": {}, "type": "Feature"}, {"bbox": [8.570929, 47.348502, 8.572368, 47.348828], "geometry": {"coordinates": [[[8.570929, 47.348502], [8.572368, 47.348828]]], "type": "MultiLineString"}, "id": "745", "properties": {}, "type": "Feature"}, {"bbox": [8.51695, 47.400665, 8.518213, 47.401482], "geometry": {"coordinates": [[[8.518213, 47.401482], [8.51816, 47.401457], [8.517982, 47.40136], [8.51753, 47.401067], [8.517173, 47.40081], [8.51695, 47.400665]]], "type": "MultiLineString"}, "id": "749", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394758, 8.491009, 47.394777], "geometry": {"coordinates": [[[8.491009, 47.394758], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "750", "properties": {}, "type": "Feature"}, {"bbox": [8.548245, 47.407515, 8.548681, 47.408889], "geometry": {"coordinates": [[[8.548245, 47.407515], [8.548306, 47.407635], [8.548505, 47.408315], [8.548681, 47.408889]]], "type": "MultiLineString"}, "id": "751", "properties": {}, "type": "Feature"}, {"bbox": [8.530465, 47.385484, 8.531792, 47.386308], "geometry": {"coordinates": [[[8.530465, 47.385484], [8.530755, 47.385666], [8.531792, 47.386308]]], "type": "MultiLineString"}, "id": "754", "properties": {}, "type": "Feature"}, {"bbox": [8.537591, 47.393561, 8.539237, 47.393682], "geometry": {"coordinates": [[[8.537591, 47.393561], [8.53813, 47.393607], [8.538526, 47.393637], [8.539237, 47.393682]]], "type": "MultiLineString"}, "id": "755", "properties": {}, "type": "Feature"}, {"bbox": [8.490877, 47.394724, 8.49094, 47.394777], "geometry": {"coordinates": [[[8.49094, 47.394777], [8.490877, 47.394724]]], "type": "MultiLineString"}, "id": "762", "properties": {}, "type": "Feature"}, {"bbox": [8.548892, 47.370115, 8.549289, 47.370542], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.549012, 47.370263], [8.549144, 47.370405], [8.549289, 47.370542]]], "type": "MultiLineString"}, "id": "763", "properties": {}, "type": "Feature"}, {"bbox": [8.548158, 47.358813, 8.549616, 47.358951], "geometry": {"coordinates": [[[8.548158, 47.358813], [8.549616, 47.358951]]], "type": "MultiLineString"}, "id": "773", "properties": {}, "type": "Feature"}, {"bbox": [8.544645, 47.387122, 8.545952, 47.387482], "geometry": {"coordinates": [[[8.544645, 47.387482], [8.544866, 47.387419], [8.545952, 47.387122]]], "type": "MultiLineString"}, "id": "778", "properties": {}, "type": "Feature"}, {"bbox": [8.591061, 47.405777, 8.591631, 47.40656], "geometry": {"coordinates": [[[8.591061, 47.405777], [8.591631, 47.40656]]], "type": "MultiLineString"}, "id": "784", "properties": {}, "type": "Feature"}, {"bbox": [8.535054, 47.426204, 8.536487, 47.426658], "geometry": {"coordinates": [[[8.536487, 47.426204], [8.536254, 47.426264], [8.535971, 47.426354], [8.535087, 47.426646], [8.535054, 47.426658]]], "type": "MultiLineString"}, "id": "798", "properties": {}, "type": "Feature"}, {"bbox": [8.521593, 47.364966, 8.521909, 47.3658], "geometry": {"coordinates": [[[8.521909, 47.3658], [8.521593, 47.365372], [8.521712, 47.364966]]], "type": "MultiLineString"}, "id": "802", "properties": {}, "type": "Feature"}, {"bbox": [8.511813, 47.352667, 8.511914, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511914, 47.352667]]], "type": "MultiLineString"}, "id": "804", "properties": {}, "type": "Feature"}, {"bbox": [8.525877, 47.379652, 8.527703, 47.380609], "geometry": {"coordinates": [[[8.527703, 47.379652], [8.52759, 47.379734], [8.527193, 47.379933], [8.526904, 47.380066], [8.526294, 47.38038], [8.525877, 47.380609]]], "type": "MultiLineString"}, "id": "809", "properties": {}, "type": "Feature"}, {"bbox": [8.493198, 47.383995, 8.494381, 47.384548], "geometry": {"coordinates": [[[8.493198, 47.384548], [8.494381, 47.383995]]], "type": "MultiLineString"}, "id": "817", "properties": {}, "type": "Feature"}, {"bbox": [8.506448, 47.418827, 8.507432, 47.419122], "geometry": {"coordinates": [[[8.507432, 47.418827], [8.506815, 47.419025], [8.506448, 47.419122]]], "type": "MultiLineString"}, "id": "826", "properties": {}, "type": "Feature"}, {"bbox": [8.580386, 47.409686, 8.580412, 47.409713], "geometry": {"coordinates": [[[8.580386, 47.409686], [8.580412, 47.409713]]], "type": "MultiLineString"}, "id": "841", "properties": {}, "type": "Feature"}, {"bbox": [8.582046, 47.350922, 8.5834, 47.351093], "geometry": {"coordinates": [[[8.582046, 47.351087], [8.582282, 47.351093], [8.582517, 47.351084], [8.582751, 47.35106], [8.58298, 47.351022], [8.5834, 47.350922]]], "type": "MultiLineString"}, "id": "843", "properties": {}, "type": "Feature"}, {"bbox": [8.577909, 47.348849, 8.578225, 47.349005], "geometry": {"coordinates": [[[8.577909, 47.349005], [8.577944, 47.348975], [8.577983, 47.348947], [8.578026, 47.348921], [8.578072, 47.348899], [8.578121, 47.348879], [8.578172, 47.348863], [8.578225, 47.348849]]], "type": "MultiLineString"}, "id": "844", "properties": {}, "type": "Feature"}, {"bbox": [8.483786, 47.388246, 8.48439, 47.388544], "geometry": {"coordinates": [[[8.48439, 47.388246], [8.484178, 47.388335], [8.483976, 47.388434], [8.483786, 47.388544]]], "type": "MultiLineString"}, "id": "852", "properties": {}, "type": "Feature"}, {"bbox": [8.518764, 47.323894, 8.518792, 47.323947], "geometry": {"coordinates": [[[8.518764, 47.323947], [8.518792, 47.323894]]], "type": "MultiLineString"}, "id": "854", "properties": {}, "type": "Feature"}, {"bbox": [8.520418, 47.414576, 8.520767, 47.41488], "geometry": {"coordinates": [[[8.520767, 47.41488], [8.520648, 47.414781], [8.520531, 47.414679], [8.520418, 47.414576]]], "type": "MultiLineString"}, "id": "859", "properties": {}, "type": "Feature"}, {"bbox": [8.479433, 47.390095, 8.480421, 47.390602], "geometry": {"coordinates": [[[8.480421, 47.390095], [8.48014, 47.390211], [8.479948, 47.390295], [8.479766, 47.39039], [8.479598, 47.390496], [8.479433, 47.390602]]], "type": "MultiLineString"}, "id": "861", "properties": {}, "type": "Feature"}, {"bbox": [8.498978, 47.383339, 8.49924, 47.38347], "geometry": {"coordinates": [[[8.49924, 47.383339], [8.498978, 47.38347]]], "type": "MultiLineString"}, "id": "862", "properties": {}, "type": "Feature"}, {"bbox": [8.496675, 47.384235, 8.497417, 47.384546], "geometry": {"coordinates": [[[8.497417, 47.384235], [8.497175, 47.384345], [8.496927, 47.384449], [8.496675, 47.384546]]], "type": "MultiLineString"}, "id": "863", "properties": {}, "type": "Feature"}, {"bbox": [8.497839, 47.383707, 8.498495, 47.384029], "geometry": {"coordinates": [[[8.498495, 47.383707], [8.497839, 47.384029]]], "type": "MultiLineString"}, "id": "864", "properties": {}, "type": "Feature"}, {"bbox": [8.501056, 47.381435, 8.503195, 47.382446], "geometry": {"coordinates": [[[8.503195, 47.381435], [8.501056, 47.382446]]], "type": "MultiLineString"}, "id": "865", "properties": {}, "type": "Feature"}, {"bbox": [8.492542, 47.368907, 8.493107, 47.369364], "geometry": {"coordinates": [[[8.492542, 47.368907], [8.492603, 47.368963], [8.493107, 47.369364]]], "type": "MultiLineString"}, "id": "883", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.35958, 8.59457, 47.359878], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593702, 47.359683], [8.593861, 47.359724], [8.59457, 47.359878]]], "type": "MultiLineString"}, "id": "887", "properties": {}, "type": "Feature"}, {"bbox": [8.517112, 47.339424, 8.517545, 47.339476], "geometry": {"coordinates": [[[8.517545, 47.339424], [8.517112, 47.339476]]], "type": "MultiLineString"}, "id": "898", "properties": {}, "type": "Feature"}, {"bbox": [8.493074, 47.422812, 8.494605, 47.423043], "geometry": {"coordinates": [[[8.494605, 47.422812], [8.493074, 47.423043]]], "type": "MultiLineString"}, "id": "912", "properties": {}, "type": "Feature"}, {"bbox": [8.545557, 47.41725, 8.54567, 47.417488], "geometry": {"coordinates": [[[8.54567, 47.41725], [8.54564, 47.417331], [8.545602, 47.41741], [8.545557, 47.417488]]], "type": "MultiLineString"}, "id": "917", "properties": {}, "type": "Feature"}, {"bbox": [8.547608, 47.428169, 8.549143, 47.429808], "geometry": {"coordinates": [[[8.547646, 47.428169], [8.547608, 47.428198], [8.547935, 47.428435], [8.548226, 47.428694], [8.548479, 47.42897], [8.549143, 47.429808]]], "type": "MultiLineString"}, "id": "919", "properties": {}, "type": "Feature"}, {"bbox": [8.536302, 47.413011, 8.536666, 47.415979], "geometry": {"coordinates": [[[8.536302, 47.413011], [8.536306, 47.413213], [8.536374, 47.413752], [8.536423, 47.414145], [8.536464, 47.414466], [8.53652, 47.414944], [8.536568, 47.415348], [8.536644, 47.415837], [8.536666, 47.415979]]], "type": "MultiLineString"}, "id": "924", "properties": {}, "type": "Feature"}, {"bbox": [8.538884, 47.392508, 8.538985, 47.392631], "geometry": {"coordinates": [[[8.538884, 47.392508], [8.538894, 47.392514], [8.538914, 47.392528], [8.538931, 47.392543], [8.538946, 47.392559], [8.538959, 47.392576], [8.53897, 47.392594], [8.538979, 47.392612], [8.538985, 47.392631]]], "type": "MultiLineString"}, "id": "960", "properties": {}, "type": "Feature"}, {"bbox": [8.532384, 47.376914, 8.533268, 47.377523], "geometry": {"coordinates": [[[8.532384, 47.376914], [8.533268, 47.377523]]], "type": "MultiLineString"}, "id": "963", "properties": {}, "type": "Feature"}, {"bbox": [8.489299, 47.39106, 8.489729, 47.391177], "geometry": {"coordinates": [[[8.489299, 47.391177], [8.489627, 47.391086], [8.489729, 47.39106]]], "type": "MultiLineString"}, "id": "967", "properties": {}, "type": "Feature"}, {"bbox": [8.534555, 47.398053, 8.536548, 47.398203], "geometry": {"coordinates": [[[8.534555, 47.398053], [8.534708, 47.398064], [8.534863, 47.398071], [8.535017, 47.398075], [8.535585, 47.398085], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "969", "properties": {}, "type": "Feature"}, {"bbox": [8.532456, 47.397941, 8.532472, 47.3981], "geometry": {"coordinates": [[[8.532472, 47.397941], [8.532456, 47.3981]]], "type": "MultiLineString"}, "id": "970", "properties": {}, "type": "Feature"}, {"bbox": [8.549369, 47.429717, 8.549526, 47.430003], "geometry": {"coordinates": [[[8.549369, 47.429717], [8.549526, 47.429897], [8.549468, 47.430003]]], "type": "MultiLineString"}, "id": "971", "properties": {}, "type": "Feature"}, {"bbox": [8.525526, 47.361295, 8.526396, 47.363346], "geometry": {"coordinates": [[[8.526396, 47.363346], [8.525772, 47.36332], [8.525526, 47.361295]]], "type": "MultiLineString"}, "id": "977", "properties": {}, "type": "Feature"}, {"bbox": [8.542389, 47.366751, 8.544282, 47.367078], "geometry": {"coordinates": [[[8.542389, 47.366751], [8.543926, 47.367014], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "990", "properties": {}, "type": "Feature"}, {"bbox": [8.543928, 47.422432, 8.550789, 47.431157], "geometry": {"coordinates": [[[8.550789, 47.422432], [8.550384, 47.422784], [8.550255, 47.4229], [8.549777, 47.423346], [8.549454, 47.423648], [8.549281, 47.423812], [8.549054, 47.42404], [8.549001, 47.424097], [8.548694, 47.424433], [8.548212, 47.425], [8.547522, 47.425815], [8.547469, 47.425877], [8.547463, 47.425884], [8.547283, 47.426097], [8.546903, 47.426546], [8.546523, 47.426994], [8.546488, 47.427033], [8.546453, 47.427071], [8.546417, 47.427109], [8.546128, 47.427397], [8.545737, 47.427926], [8.545708, 47.427966], [8.545521, 47.428234], [8.545434, 47.428365], [8.545354, 47.428494], [8.54528, 47.428625], [8.545214, 47.428758], [8.544881, 47.429379], [8.544726, 47.42967], [8.544518, 47.430056], [8.544343, 47.430383], [8.544163, 47.430717], [8.54397, 47.431078], [8.543928, 47.431157]]], "type": "MultiLineString"}, "id": "997", "properties": {}, "type": "Feature"}, {"bbox": [8.576568, 47.373984, 8.577507, 47.37479], "geometry": {"coordinates": [[[8.576606, 47.373984], [8.576568, 47.374004], [8.576826, 47.374275], [8.57691, 47.374361], [8.577006, 47.374441], [8.577111, 47.374516], [8.577226, 47.374583], [8.577507, 47.37479]]], "type": "MultiLineString"}, "id": "1002", "properties": {}, "type": "Feature"}, {"bbox": [8.585623, 47.355239, 8.587114, 47.355772], "geometry": {"coordinates": [[[8.585623, 47.355772], [8.585852, 47.355631], [8.586171, 47.355491], [8.586534, 47.355376], [8.587114, 47.355239]]], "type": "MultiLineString"}, "id": "1004", "properties": {}, "type": "Feature"}, {"bbox": [8.473259, 47.392702, 8.48051, 47.394689], "geometry": {"coordinates": [[[8.48051, 47.392702], [8.478753, 47.393265], [8.478311, 47.393407], [8.476927, 47.393811], [8.475511, 47.394162], [8.474068, 47.394457], [8.473259, 47.394689]]], "type": "MultiLineString"}, "id": "1005", "properties": {}, "type": "Feature"}, {"bbox": [8.518151, 47.399364, 8.521347, 47.399799], "geometry": {"coordinates": [[[8.521347, 47.399364], [8.52094, 47.399495], [8.520758, 47.399548], [8.520572, 47.399596], [8.520384, 47.399638], [8.519969, 47.399713], [8.519546, 47.399765], [8.519118, 47.399794], [8.518928, 47.399799], [8.518737, 47.399796], [8.518547, 47.399786], [8.518397, 47.399776], [8.518248, 47.399764], [8.518151, 47.399753]]], "type": "MultiLineString"}, "id": "1007", "properties": {}, "type": "Feature"}, {"bbox": [8.527703, 47.378303, 8.530386, 47.379652], "geometry": {"coordinates": [[[8.530386, 47.378303], [8.530315, 47.37836], [8.529982, 47.378526], [8.529815, 47.378594], [8.529117, 47.378943], [8.527825, 47.379589], [8.527703, 47.379652]]], "type": "MultiLineString"}, "id": "1018", "properties": {}, "type": "Feature"}, {"bbox": [8.547772, 47.359424, 8.549069, 47.3597], "geometry": {"coordinates": [[[8.547772, 47.359424], [8.549069, 47.3597]]], "type": "MultiLineString"}, "id": "1034", "properties": {}, "type": "Feature"}, {"bbox": [8.538343, 47.392443, 8.538884, 47.392508], "geometry": {"coordinates": [[[8.538343, 47.392458], [8.538356, 47.392455], [8.538384, 47.39245], [8.538412, 47.392446], [8.53844, 47.392444], [8.538469, 47.392443], [8.538497, 47.392444], [8.538721, 47.392455], [8.538748, 47.392459], [8.538775, 47.392464], [8.538801, 47.392471], [8.538827, 47.39248], [8.538851, 47.39249], [8.538873, 47.392501], [8.538884, 47.392508]]], "type": "MultiLineString"}, "id": "1039", "properties": {}, "type": "Feature"}, {"bbox": [8.571352, 47.381487, 8.57154, 47.381651], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571352, 47.381651]]], "type": "MultiLineString"}, "id": "1043", "properties": {}, "type": "Feature"}, {"bbox": [8.507603, 47.393221, 8.50763, 47.393798], "geometry": {"coordinates": [[[8.507603, 47.393221], [8.50763, 47.393798]]], "type": "MultiLineString"}, "id": "1044", "properties": {}, "type": "Feature"}, {"bbox": [8.548892, 47.365258, 8.554151, 47.370115], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.549754, 47.369418], [8.550243, 47.369022], [8.550733, 47.368625], [8.550762, 47.368602], [8.550791, 47.368578], [8.550821, 47.368555], [8.550881, 47.36851], [8.550942, 47.368466], [8.551004, 47.368423], [8.551145, 47.368332], [8.551242, 47.36827], [8.551398, 47.36817], [8.55254, 47.367492], [8.552964, 47.367241], [8.553075, 47.367168], [8.553179, 47.367089], [8.553275, 47.367006], [8.55336, 47.366923], [8.553435, 47.366835], [8.5535, 47.366743], [8.553541, 47.366673], [8.553575, 47.366602], [8.553603, 47.36653], [8.553645, 47.366418], [8.553906, 47.365737], [8.553962, 47.365616], [8.554151, 47.365258]]], "type": "MultiLineString"}, "id": "1045", "properties": {}, "type": "Feature"}, {"bbox": [8.532433, 47.372893, 8.53359, 47.373193], "geometry": {"coordinates": [[[8.53359, 47.372893], [8.532964, 47.373056], [8.532433, 47.373193]]], "type": "MultiLineString"}, "id": "1071", "properties": {}, "type": "Feature"}, {"bbox": [8.537714, 47.409499, 8.53795, 47.409559], "geometry": {"coordinates": [[[8.53795, 47.409499], [8.537714, 47.409559]]], "type": "MultiLineString"}, "id": "1073", "properties": {}, "type": "Feature"}, {"bbox": [8.496008, 47.408823, 8.49717, 47.409839], "geometry": {"coordinates": [[[8.496008, 47.408823], [8.49717, 47.409839]]], "type": "MultiLineString"}, "id": "1079", "properties": {}, "type": "Feature"}, {"bbox": [8.546552, 47.376984, 8.548385, 47.377376], "geometry": {"coordinates": [[[8.546552, 47.376984], [8.547323, 47.377149], [8.548385, 47.377376]]], "type": "MultiLineString"}, "id": "1083", "properties": {}, "type": "Feature"}, {"bbox": [8.559455, 47.379109, 8.559817, 47.379362], "geometry": {"coordinates": [[[8.559455, 47.379109], [8.559563, 47.379201], [8.559684, 47.379286], [8.559817, 47.379362]]], "type": "MultiLineString"}, "id": "1084", "properties": {}, "type": "Feature"}, {"bbox": [8.536533, 47.376159, 8.537557, 47.37662], "geometry": {"coordinates": [[[8.537557, 47.376159], [8.53737, 47.376226], [8.537142, 47.376327], [8.536533, 47.37662]]], "type": "MultiLineString"}, "id": "1087", "properties": {}, "type": "Feature"}, {"bbox": [8.528744, 47.376792, 8.531079, 47.378879], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.528771, 47.376816], [8.529264, 47.377267], [8.529307, 47.377307], [8.529812, 47.37777], [8.529852, 47.377807], [8.530391, 47.378299], [8.530467, 47.378331], [8.531079, 47.378879]]], "type": "MultiLineString"}, "id": "1093", "properties": {}, "type": "Feature"}, {"bbox": [8.566043, 47.364594, 8.566327, 47.364709], "geometry": {"coordinates": [[[8.566043, 47.364709], [8.566142, 47.364675], [8.566237, 47.364637], [8.566327, 47.364594]]], "type": "MultiLineString"}, "id": "1094", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.373799, 8.536949, 47.374103], "geometry": {"coordinates": [[[8.536949, 47.373799], [8.53634, 47.374103]]], "type": "MultiLineString"}, "id": "1103", "properties": {}, "type": "Feature"}, {"bbox": [8.535535, 47.370956, 8.537795, 47.372695], "geometry": {"coordinates": [[[8.537795, 47.370956], [8.536747, 47.371737], [8.535738, 47.372461], [8.535673, 47.372519], [8.535616, 47.37258], [8.535566, 47.372644], [8.535535, 47.372695]]], "type": "MultiLineString"}, "id": "1130", "properties": {}, "type": "Feature"}, {"bbox": [8.529755, 47.371223, 8.529983, 47.371584], "geometry": {"coordinates": [[[8.529755, 47.371223], [8.529983, 47.371584]]], "type": "MultiLineString"}, "id": "1133", "properties": {}, "type": "Feature"}, {"bbox": [8.537049, 47.370619, 8.538612, 47.371094], "geometry": {"coordinates": [[[8.538612, 47.371094], [8.537795, 47.370956], [8.537746, 47.370939], [8.537691, 47.370916], [8.537049, 47.370619]]], "type": "MultiLineString"}, "id": "1135", "properties": {}, "type": "Feature"}, {"bbox": [8.55232, 47.365469, 8.5535, 47.366743], "geometry": {"coordinates": [[[8.55232, 47.365469], [8.552612, 47.365785], [8.553108, 47.366324], [8.5535, 47.366743]]], "type": "MultiLineString"}, "id": "1143", "properties": {}, "type": "Feature"}, {"bbox": [8.497054, 47.423305, 8.497872, 47.423758], "geometry": {"coordinates": [[[8.497054, 47.423758], [8.497088, 47.423748], [8.497121, 47.423737], [8.497152, 47.423724], [8.497182, 47.423709], [8.49721, 47.423693], [8.497872, 47.423305]]], "type": "MultiLineString"}, "id": "1145", "properties": {}, "type": "Feature"}, {"bbox": [8.518269, 47.358299, 8.519091, 47.35943], "geometry": {"coordinates": [[[8.518978, 47.358299], [8.519024, 47.358389], [8.519034, 47.358409], [8.519082, 47.358505], [8.519086, 47.358516], [8.519089, 47.358528], [8.519091, 47.358539], [8.51909, 47.358551], [8.519089, 47.358563], [8.519086, 47.358574], [8.519082, 47.358585], [8.519076, 47.358596], [8.519069, 47.358607], [8.519061, 47.358617], [8.518958, 47.358733], [8.518762, 47.358932], [8.518401, 47.359327], [8.51838, 47.359351], [8.518356, 47.359373], [8.518329, 47.359394], [8.5183, 47.359413], [8.518269, 47.35943]]], "type": "MultiLineString"}, "id": "1149", "properties": {}, "type": "Feature"}, {"bbox": [8.538733, 47.37701, 8.540695, 47.377374], "geometry": {"coordinates": [[[8.540695, 47.377011], [8.540496, 47.37701], [8.540296, 47.377013], [8.540097, 47.377022], [8.539827, 47.377102], [8.539556, 47.377179], [8.539283, 47.377253], [8.538733, 47.377374]]], "type": "MultiLineString"}, "id": "1160", "properties": {}, "type": "Feature"}, {"bbox": [8.504804, 47.393874, 8.505557, 47.393907], "geometry": {"coordinates": [[[8.505557, 47.393874], [8.505503, 47.393877], [8.505253, 47.393889], [8.504992, 47.393904], [8.504804, 47.393907]]], "type": "MultiLineString"}, "id": "1165", "properties": {}, "type": "Feature"}, {"bbox": [8.586241, 47.404625, 8.595237, 47.407086], "geometry": {"coordinates": [[[8.586241, 47.407086], [8.586639, 47.406992], [8.587035, 47.40689], [8.587426, 47.40678], [8.588618, 47.406453], [8.58888, 47.406379], [8.591061, 47.405777], [8.592287, 47.405435], [8.594996, 47.404704], [8.595237, 47.404625]]], "type": "MultiLineString"}, "id": "1167", "properties": {}, "type": "Feature"}, {"bbox": [8.477397, 47.405141, 8.478596, 47.405245], "geometry": {"coordinates": [[[8.478596, 47.405141], [8.478197, 47.405178], [8.477797, 47.405213], [8.477397, 47.405245]]], "type": "MultiLineString"}, "id": "1179", "properties": {}, "type": "Feature"}, {"bbox": [8.535306, 47.372695, 8.535535, 47.373193], "geometry": {"coordinates": [[[8.535535, 47.372695], [8.535525, 47.372711], [8.535491, 47.37278], [8.535416, 47.373144], [8.535306, 47.373193]]], "type": "MultiLineString"}, "id": "1189", "properties": {}, "type": "Feature"}, {"bbox": [8.521347, 47.399062, 8.522221, 47.399364], "geometry": {"coordinates": [[[8.522221, 47.399062], [8.521674, 47.399258], [8.521565, 47.399294], [8.521456, 47.399329], [8.521347, 47.399364]]], "type": "MultiLineString"}, "id": "1202", "properties": {}, "type": "Feature"}, {"bbox": [8.53621, 47.391332, 8.538843, 47.391346], "geometry": {"coordinates": [[[8.538843, 47.391346], [8.538513, 47.391332], [8.536497, 47.391344], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "1203", "properties": {}, "type": "Feature"}, {"bbox": [8.489223, 47.378688, 8.490312, 47.379847], "geometry": {"coordinates": [[[8.490312, 47.379847], [8.490175, 47.37971], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "1204", "properties": {}, "type": "Feature"}, {"bbox": [8.518941, 47.414144, 8.520418, 47.414808], "geometry": {"coordinates": [[[8.520418, 47.414576], [8.520225, 47.41462], [8.520028, 47.414659], [8.51983, 47.414693], [8.519652, 47.414722], [8.519477, 47.41476], [8.519307, 47.414808], [8.518941, 47.414144]]], "type": "MultiLineString"}, "id": "1210", "properties": {}, "type": "Feature"}, {"bbox": [8.492907, 47.38156, 8.494824, 47.382514], "geometry": {"coordinates": [[[8.494824, 47.38156], [8.493096, 47.382373], [8.49303, 47.382418], [8.492967, 47.382465], [8.492907, 47.382514]]], "type": "MultiLineString"}, "id": "1213", "properties": {}, "type": "Feature"}, {"bbox": [8.534261, 47.372272, 8.534472, 47.372597], "geometry": {"coordinates": [[[8.534261, 47.372272], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "1221", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.368234, 8.529238, 47.368682], "geometry": {"coordinates": [[[8.529238, 47.368234], [8.528834, 47.368538], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "1231", "properties": {}, "type": "Feature"}, {"bbox": [8.521712, 47.360019, 8.522947, 47.364966], "geometry": {"coordinates": [[[8.521712, 47.364966], [8.522065, 47.363752], [8.52224, 47.363149], [8.522294, 47.362963], [8.52232, 47.362874], [8.522512, 47.36192], [8.522624, 47.361363], [8.522809, 47.360515], [8.522947, 47.360019]]], "type": "MultiLineString"}, "id": "1250", "properties": {}, "type": "Feature"}, {"bbox": [8.533945, 47.369342, 8.534785, 47.369467], "geometry": {"coordinates": [[[8.534785, 47.369467], [8.533945, 47.369342]]], "type": "MultiLineString"}, "id": "1254", "properties": {}, "type": "Feature"}, {"bbox": [8.521554, 47.365372, 8.521593, 47.365673], "geometry": {"coordinates": [[[8.521554, 47.365673], [8.521572, 47.365573], [8.521585, 47.365473], [8.521593, 47.365372]]], "type": "MultiLineString"}, "id": "1255", "properties": {}, "type": "Feature"}, {"bbox": [8.531311, 47.377659, 8.532142, 47.378233], "geometry": {"coordinates": [[[8.531311, 47.377659], [8.532142, 47.378233]]], "type": "MultiLineString"}, "id": "1256", "properties": {}, "type": "Feature"}, {"bbox": [8.549422, 47.356978, 8.550783, 47.357352], "geometry": {"coordinates": [[[8.549422, 47.356978], [8.550658, 47.35732], [8.550783, 47.357352]]], "type": "MultiLineString"}, "id": "1272", "properties": {}, "type": "Feature"}, {"bbox": [8.537117, 47.374685, 8.537743, 47.375541], "geometry": {"coordinates": [[[8.537743, 47.374685], [8.537679, 47.37482], [8.537164, 47.37548], [8.537117, 47.375541]]], "type": "MultiLineString"}, "id": "1273", "properties": {}, "type": "Feature"}, {"bbox": [8.53121, 47.409615, 8.53747, 47.41075], "geometry": {"coordinates": [[[8.53747, 47.409615], [8.536833, 47.40973], [8.536203, 47.409845], [8.535625, 47.409949], [8.535588, 47.409956], [8.535393, 47.409991], [8.533356, 47.410361], [8.532533, 47.410511], [8.532393, 47.410536], [8.53121, 47.41075]]], "type": "MultiLineString"}, "id": "1274", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.378523, 8.542518, 47.378726], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541597, 47.378544], [8.541774, 47.378575], [8.541947, 47.378617], [8.542518, 47.378726]]], "type": "MultiLineString"}, "id": "1280", "properties": {}, "type": "Feature"}, {"bbox": [8.53031, 47.371074, 8.530435, 47.371262], "geometry": {"coordinates": [[[8.530435, 47.371262], [8.53031, 47.371074]]], "type": "MultiLineString"}, "id": "1282", "properties": {}, "type": "Feature"}, {"bbox": [8.573596, 47.378534, 8.57521, 47.379694], "geometry": {"coordinates": [[[8.573596, 47.379694], [8.574039, 47.379303], [8.574391, 47.37899], [8.574646, 47.378824], [8.574919, 47.378671], [8.57521, 47.378534]]], "type": "MultiLineString"}, "id": "1288", "properties": {}, "type": "Feature"}, {"bbox": [8.537238, 47.374664, 8.537319, 47.374773], "geometry": {"coordinates": [[[8.537319, 47.374664], [8.537238, 47.374773]]], "type": "MultiLineString"}, "id": "1307", "properties": {}, "type": "Feature"}, {"bbox": [8.547464, 47.398832, 8.549147, 47.400012], "geometry": {"coordinates": [[[8.547464, 47.398832], [8.54761, 47.398964], [8.547762, 47.399093], [8.547917, 47.39922], [8.547998, 47.399284], [8.548079, 47.399347], [8.548161, 47.399409], [8.548651, 47.399732], [8.548818, 47.399825], [8.548983, 47.399918], [8.549147, 47.400012]]], "type": "MultiLineString"}, "id": "1308", "properties": {}, "type": "Feature"}, {"bbox": [8.554151, 47.364725, 8.554431, 47.365258], "geometry": {"coordinates": [[[8.554151, 47.365258], [8.554431, 47.364725]]], "type": "MultiLineString"}, "id": "1322", "properties": {}, "type": "Feature"}, {"bbox": [8.521385, 47.365088, 8.521593, 47.365372], "geometry": {"coordinates": [[[8.521593, 47.365372], [8.521385, 47.365088]]], "type": "MultiLineString"}, "id": "1350", "properties": {}, "type": "Feature"}, {"bbox": [8.543093, 47.377632, 8.543712, 47.377776], "geometry": {"coordinates": [[[8.543093, 47.377632], [8.543712, 47.377776]]], "type": "MultiLineString"}, "id": "1354", "properties": {}, "type": "Feature"}, {"bbox": [8.509807, 47.369894, 8.510279, 47.370148], "geometry": {"coordinates": [[[8.510279, 47.369894], [8.509807, 47.370148]]], "type": "MultiLineString"}, "id": "1361", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.387586, 8.544368, 47.387779], "geometry": {"coordinates": [[[8.544033, 47.387779], [8.544368, 47.387586]]], "type": "MultiLineString"}, "id": "1364", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.369694, 8.520315, 47.37067], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.519999, 47.369953], [8.519814, 47.37015], [8.519352, 47.37067]]], "type": "MultiLineString"}, "id": "1378", "properties": {}, "type": "Feature"}, {"bbox": [8.537852, 47.377374, 8.538734, 47.377777], "geometry": {"coordinates": [[[8.538733, 47.377374], [8.538734, 47.377393], [8.538733, 47.377412], [8.53873, 47.37743], [8.538724, 47.377448], [8.538715, 47.377466], [8.538705, 47.377483], [8.538693, 47.3775], [8.538678, 47.377516], [8.538655, 47.377535], [8.538629, 47.377553], [8.538601, 47.377569], [8.538571, 47.377583], [8.538539, 47.377596], [8.538506, 47.377606], [8.538472, 47.377615], [8.537852, 47.377777]]], "type": "MultiLineString"}, "id": "1384", "properties": {}, "type": "Feature"}, {"bbox": [8.548039, 47.360141, 8.548657, 47.360265], "geometry": {"coordinates": [[[8.548039, 47.360141], [8.548657, 47.360265]]], "type": "MultiLineString"}, "id": "1391", "properties": {}, "type": "Feature"}, {"bbox": [8.531558, 47.366545, 8.531632, 47.366592], "geometry": {"coordinates": [[[8.531632, 47.366592], [8.531558, 47.366545]]], "type": "MultiLineString"}, "id": "1414", "properties": {}, "type": "Feature"}, {"bbox": [8.488682, 47.387629, 8.490808, 47.388268], "geometry": {"coordinates": [[[8.490808, 47.387629], [8.490126, 47.38793], [8.489853, 47.388034], [8.489664, 47.388072], [8.488682, 47.388268]]], "type": "MultiLineString"}, "id": "1419", "properties": {}, "type": "Feature"}, {"bbox": [8.520728, 47.38002, 8.520966, 47.380435], "geometry": {"coordinates": [[[8.520728, 47.38002], [8.52081, 47.380129], [8.520831, 47.380158], [8.520851, 47.380187], [8.52087, 47.380216], [8.520966, 47.380435]]], "type": "MultiLineString"}, "id": "1426", "properties": {}, "type": "Feature"}, {"bbox": [8.537534, 47.39835, 8.537833, 47.398469], "geometry": {"coordinates": [[[8.537534, 47.39835], [8.537537, 47.398416], [8.537833, 47.398469]]], "type": "MultiLineString"}, "id": "1441", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.36834, 8.529406, 47.368682], "geometry": {"coordinates": [[[8.529406, 47.36834], [8.528949, 47.368653], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "1442", "properties": {}, "type": "Feature"}, {"bbox": [8.529983, 47.371262, 8.530435, 47.371584], "geometry": {"coordinates": [[[8.530435, 47.371262], [8.530373, 47.371289], [8.530314, 47.37132], [8.53026, 47.371354], [8.530209, 47.371391], [8.529983, 47.371584]]], "type": "MultiLineString"}, "id": "1479", "properties": {}, "type": "Feature"}, {"bbox": [8.519291, 47.356029, 8.522163, 47.356952], "geometry": {"coordinates": [[[8.522163, 47.356701], [8.520833, 47.356319], [8.519824, 47.356029], [8.519291, 47.356952]]], "type": "MultiLineString"}, "id": "1482", "properties": {}, "type": "Feature"}, {"bbox": [8.506017, 47.359374, 8.50761, 47.361195], "geometry": {"coordinates": [[[8.50761, 47.359374], [8.506442, 47.36071], [8.506017, 47.361195]]], "type": "MultiLineString"}, "id": "1491", "properties": {}, "type": "Feature"}, {"bbox": [8.547718, 47.412868, 8.548032, 47.41391], "geometry": {"coordinates": [[[8.548032, 47.412868], [8.54799, 47.413047], [8.547854, 47.413471], [8.547718, 47.41391]]], "type": "MultiLineString"}, "id": "1505", "properties": {}, "type": "Feature"}, {"bbox": [8.547667, 47.360595, 8.548316, 47.360745], "geometry": {"coordinates": [[[8.547667, 47.360595], [8.547789, 47.360627], [8.548316, 47.360745]]], "type": "MultiLineString"}, "id": "1510", "properties": {}, "type": "Feature"}, {"bbox": [8.534865, 47.376071, 8.535733, 47.376524], "geometry": {"coordinates": [[[8.535733, 47.376071], [8.535606, 47.376133], [8.535032, 47.376415], [8.534865, 47.376524]]], "type": "MultiLineString"}, "id": "1514", "properties": {}, "type": "Feature"}, {"bbox": [8.483542, 47.412128, 8.48401, 47.414238], "geometry": {"coordinates": [[[8.48401, 47.412128], [8.483918, 47.412248], [8.483841, 47.412373], [8.483779, 47.412501], [8.483741, 47.412611], [8.483715, 47.412722], [8.483702, 47.412834], [8.483684, 47.413028], [8.483542, 47.414238]]], "type": "MultiLineString"}, "id": "1518", "properties": {}, "type": "Feature"}, {"bbox": [8.530435, 47.370994, 8.531326, 47.371262], "geometry": {"coordinates": [[[8.531326, 47.370994], [8.530598, 47.371203], [8.530435, 47.371262]]], "type": "MultiLineString"}, "id": "1521", "properties": {}, "type": "Feature"}, {"bbox": [8.518248, 47.414808, 8.519307, 47.415031], "geometry": {"coordinates": [[[8.519307, 47.414808], [8.51875, 47.414908], [8.518248, 47.415031]]], "type": "MultiLineString"}, "id": "1523", "properties": {}, "type": "Feature"}, {"bbox": [8.512123, 47.389632, 8.513625, 47.391729], "geometry": {"coordinates": [[[8.513625, 47.391729], [8.513488, 47.391523], [8.51306, 47.39096], [8.5123, 47.38986], [8.512123, 47.389632]]], "type": "MultiLineString"}, "id": "1526", "properties": {}, "type": "Feature"}, {"bbox": [8.571293, 47.358344, 8.571708, 47.358835], "geometry": {"coordinates": [[[8.571293, 47.358344], [8.571693, 47.358821], [8.571708, 47.358835]]], "type": "MultiLineString"}, "id": "1529", "properties": {}, "type": "Feature"}, {"bbox": [8.531609, 47.398237, 8.532316, 47.398373], "geometry": {"coordinates": [[[8.532316, 47.398373], [8.531609, 47.398237]]], "type": "MultiLineString"}, "id": "1535", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.375364, 8.549117, 47.375748], "geometry": {"coordinates": [[[8.547307, 47.375364], [8.549117, 47.375748]]], "type": "MultiLineString"}, "id": "1540", "properties": {}, "type": "Feature"}, {"bbox": [8.559058, 47.414559, 8.559399, 47.415618], "geometry": {"coordinates": [[[8.559399, 47.414559], [8.559351, 47.414717], [8.559058, 47.415618]]], "type": "MultiLineString"}, "id": "1550", "properties": {}, "type": "Feature"}, {"bbox": [8.541897, 47.376852, 8.54327, 47.376963], "geometry": {"coordinates": [[[8.54327, 47.376852], [8.541897, 47.376963]]], "type": "MultiLineString"}, "id": "1551", "properties": {}, "type": "Feature"}, {"bbox": [8.528422, 47.386999, 8.529542, 47.387699], "geometry": {"coordinates": [[[8.529542, 47.387699], [8.528552, 47.387081], [8.528422, 47.386999]]], "type": "MultiLineString"}, "id": "1582", "properties": {}, "type": "Feature"}, {"bbox": [8.539393, 47.367239, 8.540224, 47.369604], "geometry": {"coordinates": [[[8.540224, 47.367239], [8.539962, 47.367905], [8.53978, 47.368392], [8.539615, 47.368828], [8.539477, 47.369206], [8.539393, 47.369604]]], "type": "MultiLineString"}, "id": "1583", "properties": {}, "type": "Feature"}, {"bbox": [8.489673, 47.39074, 8.489729, 47.39106], "geometry": {"coordinates": [[[8.489729, 47.39106], [8.489673, 47.39074]]], "type": "MultiLineString"}, "id": "1605", "properties": {}, "type": "Feature"}, {"bbox": [8.547431, 47.372101, 8.548691, 47.373079], "geometry": {"coordinates": [[[8.548691, 47.372101], [8.548568, 47.372198], [8.548273, 47.37241], [8.547625, 47.372879], [8.547431, 47.373079]]], "type": "MultiLineString"}, "id": "1611", "properties": {}, "type": "Feature"}, {"bbox": [8.524639, 47.41075, 8.531209, 47.411953], "geometry": {"coordinates": [[[8.531209, 47.41075], [8.530595, 47.410862], [8.529897, 47.410987], [8.528049, 47.411321], [8.527213, 47.411475], [8.525698, 47.411752], [8.524639, 47.411953]]], "type": "MultiLineString"}, "id": "1625", "properties": {}, "type": "Feature"}, {"bbox": [8.541857, 47.374355, 8.543025, 47.374414], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.541928, 47.374411], [8.541857, 47.374414]]], "type": "MultiLineString"}, "id": "1634", "properties": {}, "type": "Feature"}, {"bbox": [8.548331, 47.38367, 8.549042, 47.384421], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.548927, 47.38375], [8.548891, 47.383781], [8.548859, 47.383813], [8.548831, 47.383847], [8.548808, 47.383883], [8.548581, 47.384226], [8.548558, 47.38426], [8.548529, 47.384293], [8.548497, 47.384323], [8.548461, 47.384351], [8.548421, 47.384377], [8.548377, 47.384401], [8.548331, 47.384421]]], "type": "MultiLineString"}, "id": "1640", "properties": {}, "type": "Feature"}, {"bbox": [8.5129, 47.364999, 8.514081, 47.366366], "geometry": {"coordinates": [[[8.514081, 47.366366], [8.513987, 47.366254], [8.513448, 47.365523], [8.51339, 47.365433], [8.51332, 47.365347], [8.513238, 47.365266], [8.513146, 47.36519], [8.5129, 47.364999]]], "type": "MultiLineString"}, "id": "1649", "properties": {}, "type": "Feature"}, {"bbox": [8.51578, 47.388747, 8.516266, 47.389447], "geometry": {"coordinates": [[[8.51578, 47.388747], [8.515909, 47.388965], [8.516266, 47.389447]]], "type": "MultiLineString"}, "id": "1650", "properties": {}, "type": "Feature"}, {"bbox": [8.536415, 47.369488, 8.538578, 47.371068], "geometry": {"coordinates": [[[8.538578, 47.369488], [8.538396, 47.369619], [8.53825, 47.369724], [8.538206, 47.369758], [8.537855, 47.370011], [8.537679, 47.370143], [8.537547, 47.370242], [8.537049, 47.370619], [8.536415, 47.371068]]], "type": "MultiLineString"}, "id": "1659", "properties": {}, "type": "Feature"}, {"bbox": [8.527032, 47.396102, 8.533568, 47.397787], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.527118, 47.396137], [8.527209, 47.396166], [8.527303, 47.396189], [8.527401, 47.396207], [8.52783, 47.396293], [8.528254, 47.396393], [8.528669, 47.396507], [8.529943, 47.396871], [8.530302, 47.396972], [8.530627, 47.397022], [8.530947, 47.397086], [8.53126, 47.397164], [8.532475, 47.39749], [8.532591, 47.397542], [8.532746, 47.397597], [8.533225, 47.39771], [8.533568, 47.397787]]], "type": "MultiLineString"}, "id": "1662", "properties": {}, "type": "Feature"}, {"bbox": [8.549392, 47.406391, 8.549619, 47.407283], "geometry": {"coordinates": [[[8.549533, 47.406391], [8.549485, 47.406462], [8.549447, 47.406536], [8.549418, 47.406612], [8.5494, 47.406689], [8.549392, 47.406767], [8.549394, 47.406845], [8.549407, 47.406923], [8.54943, 47.407], [8.549463, 47.407075], [8.549506, 47.407147], [8.549558, 47.407217], [8.549619, 47.407283]]], "type": "MultiLineString"}, "id": "1676", "properties": {}, "type": "Feature"}, {"bbox": [8.560711, 47.414799, 8.561068, 47.415848], "geometry": {"coordinates": [[[8.561068, 47.414799], [8.561015, 47.414963], [8.560711, 47.415848]]], "type": "MultiLineString"}, "id": "1677", "properties": {}, "type": "Feature"}, {"bbox": [8.502188, 47.393789, 8.503334, 47.393853], "geometry": {"coordinates": [[[8.503334, 47.393853], [8.502188, 47.393789]]], "type": "MultiLineString"}, "id": "1681", "properties": {}, "type": "Feature"}, {"bbox": [8.521836, 47.39022, 8.522071, 47.390651], "geometry": {"coordinates": [[[8.521836, 47.39022], [8.521887, 47.39029], [8.52199, 47.390468], [8.522071, 47.390651]]], "type": "MultiLineString"}, "id": "1692", "properties": {}, "type": "Feature"}, {"bbox": [8.539942, 47.374488, 8.539949, 47.374577], "geometry": {"coordinates": [[[8.539942, 47.374488], [8.539949, 47.374577]]], "type": "MultiLineString"}, "id": "1699", "properties": {}, "type": "Feature"}, {"bbox": [8.48401, 47.403887, 8.496491, 47.412128], "geometry": {"coordinates": [[[8.496491, 47.403887], [8.49642, 47.403917], [8.496347, 47.403944], [8.496273, 47.40397], [8.496216, 47.403986], [8.495903, 47.404077], [8.495698, 47.404145], [8.495323, 47.404255], [8.495246, 47.404277], [8.49517, 47.4043], [8.495095, 47.404325], [8.49499, 47.404364], [8.494887, 47.404407], [8.494787, 47.404452], [8.494331, 47.404669], [8.494047, 47.404808], [8.493941, 47.40486], [8.492419, 47.405594], [8.491833, 47.405877], [8.491713, 47.405937], [8.491601, 47.406004], [8.491498, 47.406077], [8.491404, 47.406156], [8.490336, 47.407097], [8.490289, 47.407139], [8.489962, 47.407432], [8.489771, 47.407631], [8.489379, 47.408038], [8.48926, 47.408161], [8.489004, 47.408438], [8.488672, 47.408795], [8.488641, 47.408831], [8.488609, 47.408866], [8.488575, 47.408901], [8.488462, 47.409021], [8.488335, 47.409134], [8.488194, 47.409239], [8.488041, 47.409337], [8.487877, 47.409425], [8.486905, 47.409928], [8.486721, 47.410034], [8.486552, 47.41015], [8.486397, 47.410275], [8.48603, 47.41063], [8.485647, 47.411016], [8.485537, 47.411122], [8.485417, 47.411222], [8.485287, 47.411317], [8.484429, 47.41181], [8.484236, 47.41193], [8.484152, 47.411991], [8.484076, 47.412058], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "1708", "properties": {}, "type": "Feature"}, {"bbox": [8.532964, 47.373056, 8.537189, 47.377184], "geometry": {"coordinates": [[[8.532964, 47.373056], [8.533341, 47.373788], [8.533383, 47.373854], [8.533432, 47.373919], [8.533487, 47.373981], [8.534366, 47.374884], [8.534971, 47.375506], [8.535122, 47.375638], [8.535371, 47.375802], [8.535733, 47.376071], [8.535836, 47.37608], [8.535937, 47.376096], [8.536036, 47.376116], [8.536079, 47.376127], [8.536121, 47.376139], [8.536161, 47.376155], [8.536198, 47.376172], [8.536233, 47.376192], [8.536266, 47.376214], [8.536295, 47.376238], [8.536321, 47.376264], [8.536344, 47.376291], [8.536363, 47.376319], [8.536533, 47.37662], [8.536903, 47.376932], [8.537189, 47.377184]]], "type": "MultiLineString"}, "id": "1714", "properties": {}, "type": "Feature"}, {"bbox": [8.529565, 47.326865, 8.529592, 47.3281], "geometry": {"coordinates": [[[8.529592, 47.3281], [8.529577, 47.327688], [8.529568, 47.327277], [8.529565, 47.326865]]], "type": "MultiLineString"}, "id": "1725", "properties": {}, "type": "Feature"}, {"bbox": [8.54567, 47.412924, 8.546669, 47.41725], "geometry": {"coordinates": [[[8.546223, 47.412924], [8.546257, 47.413143], [8.546515, 47.413655], [8.546669, 47.41381], [8.546664, 47.414943], [8.546663, 47.414972], [8.54666, 47.415], [8.546655, 47.415028], [8.546646, 47.415063], [8.546633, 47.415097], [8.546617, 47.41513], [8.54617, 47.41612], [8.54608, 47.416323], [8.545838, 47.41686], [8.54567, 47.41725]]], "type": "MultiLineString"}, "id": "1757", "properties": {}, "type": "Feature"}, {"bbox": [8.554988, 47.369212, 8.55722, 47.369319], "geometry": {"coordinates": [[[8.554988, 47.369292], [8.555122, 47.369276], [8.555257, 47.369262], [8.555391, 47.369249], [8.555615, 47.369224], [8.555841, 47.369212], [8.556068, 47.369212], [8.556093, 47.369213], [8.556118, 47.369215], [8.556144, 47.369216], [8.55627, 47.369227], [8.556395, 47.369241], [8.55652, 47.369259], [8.55677, 47.369299], [8.556881, 47.369311], [8.556994, 47.369318], [8.557107, 47.369319], [8.55722, 47.369314]]], "type": "MultiLineString"}, "id": "1761", "properties": {}, "type": "Feature"}, {"bbox": [8.522221, 47.39794, 8.528566, 47.399062], "geometry": {"coordinates": [[[8.528566, 47.39794], [8.528236, 47.398033], [8.526384, 47.398572], [8.525993, 47.39867], [8.525591, 47.398745], [8.525181, 47.398794], [8.524766, 47.398818], [8.524349, 47.398817], [8.523613, 47.398793], [8.523442, 47.398792], [8.523271, 47.398802], [8.523101, 47.39882], [8.522935, 47.398849], [8.522772, 47.398886], [8.522673, 47.398913], [8.522574, 47.398942], [8.522477, 47.398973], [8.522221, 47.399062]]], "type": "MultiLineString"}, "id": "1812", "properties": {}, "type": "Feature"}, {"bbox": [8.53441, 47.382016, 8.541798, 47.38674], "geometry": {"coordinates": [[[8.541798, 47.382016], [8.541732, 47.382029], [8.541669, 47.382046], [8.541609, 47.382067], [8.541551, 47.382091], [8.541496, 47.382119], [8.541445, 47.38215], [8.541037, 47.382427], [8.540972, 47.382473], [8.540909, 47.38252], [8.540847, 47.382568], [8.54074, 47.382676], [8.540608, 47.382827], [8.540544, 47.382895], [8.540471, 47.382959], [8.540391, 47.383019], [8.540303, 47.383074], [8.540261, 47.383098], [8.540216, 47.38312], [8.540171, 47.383142], [8.539927, 47.383262], [8.53973, 47.383358], [8.539542, 47.383463], [8.539364, 47.383575], [8.539348, 47.38358], [8.539331, 47.383584], [8.539314, 47.383587], [8.539296, 47.383589], [8.539279, 47.383591], [8.539261, 47.383591], [8.539243, 47.38359], [8.539169, 47.38365], [8.539095, 47.383711], [8.539022, 47.383773], [8.538797, 47.384005], [8.538685, 47.384101], [8.538565, 47.384192], [8.538439, 47.384278], [8.537707, 47.384715], [8.537528, 47.384826], [8.537337, 47.384927], [8.537133, 47.385017], [8.53692, 47.385096], [8.536904, 47.385101], [8.536889, 47.385106], [8.536874, 47.385113], [8.53686, 47.385121], [8.536848, 47.385129], [8.536836, 47.385138], [8.536826, 47.385148], [8.536816, 47.385158], [8.536808, 47.385169], [8.536802, 47.38518], [8.536797, 47.385191], [8.536793, 47.385203], [8.536791, 47.385215], [8.536663, 47.385285], [8.536543, 47.385362], [8.536431, 47.385443], [8.536102, 47.385652], [8.535498, 47.386023], [8.535288, 47.386166], [8.535086, 47.386304], [8.534633, 47.386596], [8.53441, 47.38674]]], "type": "MultiLineString"}, "id": "1818", "properties": {}, "type": "Feature"}, {"bbox": [8.478596, 47.40215, 8.495895, 47.405207], "geometry": {"coordinates": [[[8.495895, 47.402158], [8.495887, 47.402158], [8.495386, 47.40215], [8.495164, 47.402153], [8.494945, 47.40217], [8.494728, 47.402201], [8.493829, 47.402358], [8.493025, 47.4025], [8.492793, 47.402535], [8.492562, 47.402572], [8.492332, 47.402611], [8.49188, 47.402697], [8.491433, 47.402794], [8.490992, 47.402902], [8.490427, 47.403049], [8.49031, 47.403079], [8.490194, 47.403108], [8.490077, 47.403138], [8.489989, 47.403158], [8.489901, 47.403177], [8.489812, 47.403194], [8.489716, 47.403211], [8.48962, 47.403228], [8.489523, 47.403244], [8.489403, 47.403262], [8.489282, 47.403278], [8.489161, 47.403294], [8.488293, 47.403403], [8.487871, 47.403458], [8.487515, 47.403507], [8.487334, 47.403533], [8.487156, 47.403564], [8.486979, 47.403599], [8.486284, 47.403769], [8.486133, 47.403805], [8.485984, 47.403843], [8.485836, 47.403885], [8.485669, 47.403934], [8.485506, 47.40399], [8.485349, 47.404053], [8.484292, 47.404519], [8.483833, 47.404734], [8.483788, 47.404753], [8.483742, 47.40477], [8.483696, 47.404787], [8.483622, 47.404813], [8.483547, 47.404837], [8.483471, 47.404859], [8.483297, 47.404904], [8.483118, 47.404941], [8.482936, 47.40497], [8.48188, 47.405132], [8.481724, 47.405153], [8.481401, 47.405189], [8.481074, 47.405207], [8.480746, 47.405206], [8.480063, 47.405153], [8.479811, 47.405131], [8.479406, 47.405112], [8.479, 47.405116], [8.478596, 47.405141]]], "type": "MultiLineString"}, "id": "1820", "properties": {}, "type": "Feature"}, {"bbox": [8.546961, 47.364771, 8.547425, 47.36542], "geometry": {"coordinates": [[[8.547425, 47.364771], [8.547384, 47.364835], [8.546964, 47.365414], [8.546961, 47.36542]]], "type": "MultiLineString"}, "id": "1822", "properties": {}, "type": "Feature"}, {"bbox": [8.483211, 47.375863, 8.48666, 47.387725], "geometry": {"coordinates": [[[8.48666, 47.387725], [8.486627, 47.387607], [8.486584, 47.387491], [8.486533, 47.387377], [8.486435, 47.38721], [8.486328, 47.387026], [8.486281, 47.386947], [8.486004, 47.386531], [8.485659, 47.386012], [8.485582, 47.385896], [8.485099, 47.385172], [8.484983, 47.385041], [8.484522, 47.384348], [8.484513, 47.384334], [8.484487, 47.384287], [8.484417, 47.384151], [8.484356, 47.384012], [8.484305, 47.383871], [8.484242, 47.383695], [8.484196, 47.383581], [8.484149, 47.383467], [8.484101, 47.383352], [8.484019, 47.38307], [8.483961, 47.382902], [8.483816, 47.382495], [8.483702, 47.382172], [8.483681, 47.382104], [8.483663, 47.382035], [8.483649, 47.381966], [8.483646, 47.381949], [8.483643, 47.381932], [8.48364, 47.381915], [8.483509, 47.380885], [8.483428, 47.38026], [8.483323, 47.379404], [8.483222, 47.378583], [8.483211, 47.378441], [8.483211, 47.378298], [8.483221, 47.378155], [8.483236, 47.378042], [8.483257, 47.37793], [8.483284, 47.377818], [8.483498, 47.377128], [8.483532, 47.377044], [8.48357, 47.37696], [8.48361, 47.376877], [8.483621, 47.376856], [8.483632, 47.376835], [8.483643, 47.376815], [8.483937, 47.376349], [8.484161, 47.375994], [8.484236, 47.375864], [8.484237, 47.375863]]], "type": "MultiLineString"}, "id": "1828", "properties": {}, "type": "Feature"}, {"bbox": [8.488244, 47.410488, 8.48827, 47.41074], "geometry": {"coordinates": [[[8.488266, 47.41074], [8.488269, 47.410692], [8.48827, 47.410633], [8.488265, 47.410573], [8.488253, 47.410515], [8.488244, 47.410488]]], "type": "MultiLineString"}, "id": "1835", "properties": {}, "type": "Feature"}, {"bbox": [8.540037, 47.376852, 8.543363, 47.383142], "geometry": {"coordinates": [[[8.54327, 47.376852], [8.543333, 47.376981], [8.543344, 47.376998], [8.543352, 47.377016], [8.543358, 47.377034], [8.543362, 47.377053], [8.543363, 47.377071], [8.543361, 47.37709], [8.543358, 47.377108], [8.543352, 47.377127], [8.543343, 47.377144], [8.543093, 47.377632], [8.542745, 47.378315], [8.542603, 47.378571], [8.542518, 47.378726], [8.542145, 47.379568], [8.542119, 47.379644], [8.542085, 47.37974], [8.541929, 47.380015], [8.54172, 47.380303], [8.540896, 47.381443], [8.540425, 47.382094], [8.540217, 47.382377], [8.540064, 47.382612], [8.540053, 47.382634], [8.540045, 47.382657], [8.540039, 47.38268], [8.540037, 47.382703], [8.540037, 47.382726], [8.540041, 47.382749], [8.540047, 47.382772], [8.540171, 47.383142]]], "type": "MultiLineString"}, "id": "1844", "properties": {}, "type": "Feature"}, {"bbox": [8.517545, 47.339174, 8.519079, 47.339424], "geometry": {"coordinates": [[[8.519079, 47.339174], [8.518989, 47.339181], [8.518901, 47.339194], [8.518814, 47.339211], [8.518731, 47.339234], [8.51865, 47.339263], [8.518574, 47.339296], [8.518509, 47.339326], [8.51844, 47.339352], [8.518368, 47.339374], [8.518294, 47.339392], [8.518217, 47.339404], [8.518139, 47.339412], [8.51806, 47.339416], [8.517545, 47.339424]]], "type": "MultiLineString"}, "id": "1845", "properties": {}, "type": "Feature"}, {"bbox": [8.494015, 47.397592, 8.495169, 47.397884], "geometry": {"coordinates": [[[8.494015, 47.397884], [8.494959, 47.397723], [8.494987, 47.397716], [8.495014, 47.397708], [8.495039, 47.397698], [8.495064, 47.397687], [8.495086, 47.397674], [8.495107, 47.39766], [8.495126, 47.397645], [8.495142, 47.397628], [8.495157, 47.397611], [8.495169, 47.397592]]], "type": "MultiLineString"}, "id": "1867", "properties": {}, "type": "Feature"}, {"bbox": [8.497004, 47.362549, 8.502733, 47.364752], "geometry": {"coordinates": [[[8.502733, 47.364752], [8.502598, 47.364737], [8.502466, 47.364714], [8.502338, 47.364683], [8.502214, 47.364644], [8.502096, 47.364597], [8.501985, 47.364544], [8.501203, 47.364126], [8.500902, 47.363966], [8.500377, 47.363676], [8.499859, 47.36338], [8.49935, 47.363078], [8.499148, 47.362957], [8.498718, 47.362699], [8.498626, 47.362644], [8.498579, 47.362621], [8.498529, 47.362601], [8.498477, 47.362585], [8.498423, 47.362571], [8.498367, 47.36256], [8.49831, 47.362553], [8.498253, 47.362549], [8.498195, 47.362549], [8.498137, 47.362552], [8.49808, 47.362558], [8.497926, 47.362584], [8.49777, 47.362603], [8.497613, 47.362614], [8.497004, 47.362641]]], "type": "MultiLineString"}, "id": "1869", "properties": {}, "type": "Feature"}, {"bbox": [8.52826, 47.405116, 8.528366, 47.405261], "geometry": {"coordinates": [[[8.528278, 47.405116], [8.52826, 47.405123], [8.528366, 47.405261]]], "type": "MultiLineString"}, "id": "1879", "properties": {}, "type": "Feature"}, {"bbox": [8.531942, 47.384823, 8.534913, 47.386983], "geometry": {"coordinates": [[[8.531942, 47.384823], [8.533012, 47.385601], [8.533084, 47.385653], [8.534277, 47.386523], [8.53462, 47.386768], [8.534913, 47.386983]]], "type": "MultiLineString"}, "id": "1882", "properties": {}, "type": "Feature"}, {"bbox": [8.571536, 47.378353, 8.574039, 47.379303], "geometry": {"coordinates": [[[8.571536, 47.378353], [8.571962, 47.378478], [8.572441, 47.378652], [8.572559, 47.378685], [8.572677, 47.378718], [8.572795, 47.378751], [8.572868, 47.378767], [8.572938, 47.378789], [8.573005, 47.378814], [8.573069, 47.378844], [8.573127, 47.378878], [8.573143, 47.378885], [8.573159, 47.378892], [8.573458, 47.379042], [8.573808, 47.37921], [8.573923, 47.379256], [8.574039, 47.379303]]], "type": "MultiLineString"}, "id": "1884", "properties": {}, "type": "Feature"}, {"bbox": [8.548377, 47.366651, 8.550821, 47.368555], "geometry": {"coordinates": [[[8.548377, 47.36712], [8.549263, 47.366729], [8.549407, 47.366665], [8.54949, 47.366651], [8.54957, 47.36667], [8.550316, 47.36715], [8.550321, 47.367153], [8.550325, 47.367157], [8.550328, 47.36716], [8.550332, 47.367164], [8.550334, 47.367169], [8.550336, 47.367173], [8.550338, 47.367177], [8.550339, 47.367182], [8.55034, 47.367186], [8.550339, 47.367191], [8.550339, 47.367195], [8.550338, 47.3672], [8.550336, 47.367204], [8.550334, 47.367208], [8.550331, 47.367212], [8.550327, 47.367216], [8.550324, 47.36722], [8.549741, 47.367713], [8.549731, 47.367722], [8.549723, 47.367732], [8.549715, 47.367741], [8.549715, 47.367744], [8.549715, 47.367747], [8.549715, 47.367749], [8.549716, 47.367752], [8.549717, 47.367754], [8.549719, 47.367757], [8.54972, 47.367759], [8.549722, 47.367762], [8.549725, 47.367764], [8.549727, 47.367766], [8.550329, 47.3682], [8.550374, 47.368238], [8.550821, 47.368555]]], "type": "MultiLineString"}, "id": "1896", "properties": {}, "type": "Feature"}, {"bbox": [8.592061, 47.364113, 8.597855, 47.364725], "geometry": {"coordinates": [[[8.592061, 47.364113], [8.592261, 47.364175], [8.592333, 47.36419], [8.593712, 47.364376], [8.595497, 47.364616], [8.596004, 47.364679], [8.596515, 47.364715], [8.59703, 47.364725], [8.597543, 47.364707], [8.597855, 47.364699]]], "type": "MultiLineString"}, "id": "1904", "properties": {}, "type": "Feature"}, {"bbox": [8.540929, 47.395966, 8.545415, 47.396857], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.541543, 47.39674], [8.542069, 47.396633], [8.542944, 47.396454], [8.543185, 47.396407], [8.544309, 47.396189], [8.545143, 47.396026], [8.545192, 47.396015], [8.545415, 47.395966]]], "type": "MultiLineString"}, "id": "1905", "properties": {}, "type": "Feature"}, {"bbox": [8.531653, 47.373373, 8.536033, 47.377623], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531953, 47.373815], [8.53236, 47.374412], [8.532382, 47.374447], [8.532405, 47.374483], [8.532429, 47.374518], [8.532517, 47.374636], [8.532615, 47.374751], [8.532722, 47.374862], [8.533114, 47.375245], [8.533161, 47.375289], [8.533209, 47.375332], [8.533256, 47.375376], [8.53342, 47.375528], [8.533588, 47.375677], [8.533762, 47.375824], [8.534865, 47.376524], [8.536033, 47.377623]]], "type": "MultiLineString"}, "id": "1922", "properties": {}, "type": "Feature"}, {"bbox": [8.547133, 47.408232, 8.548505, 47.408498], "geometry": {"coordinates": [[[8.547133, 47.408232], [8.547453, 47.408461], [8.547473, 47.40847], [8.547494, 47.408478], [8.547515, 47.408484], [8.547538, 47.40849], [8.547561, 47.408494], [8.547585, 47.408496], [8.547609, 47.408498], [8.547633, 47.408498], [8.547657, 47.408496], [8.54768, 47.408493], [8.547703, 47.408489], [8.548505, 47.408315]]], "type": "MultiLineString"}, "id": "1934", "properties": {}, "type": "Feature"}, {"bbox": [8.536046, 47.330202, 8.536229, 47.330238], "geometry": {"coordinates": [[[8.536046, 47.330202], [8.536107, 47.330213], [8.536168, 47.330225], [8.536229, 47.330238]]], "type": "MultiLineString"}, "id": "1947", "properties": {}, "type": "Feature"}, {"bbox": [8.520388, 47.390931, 8.523072, 47.391306], "geometry": {"coordinates": [[[8.523072, 47.391306], [8.52291, 47.391196], [8.522733, 47.391098], [8.522542, 47.391012], [8.522465, 47.390986], [8.522385, 47.390965], [8.522303, 47.390948], [8.522218, 47.390937], [8.522132, 47.390932], [8.522046, 47.390931], [8.521961, 47.390936], [8.521876, 47.390947], [8.521793, 47.390962], [8.521216, 47.391086], [8.520754, 47.391211], [8.520388, 47.391298]]], "type": "MultiLineString"}, "id": "1987", "properties": {}, "type": "Feature"}, {"bbox": [8.547644, 47.359419, 8.547772, 47.361832], "geometry": {"coordinates": [[[8.547657, 47.361832], [8.547681, 47.361764], [8.547696, 47.361696], [8.547702, 47.361627], [8.5477, 47.361558], [8.547688, 47.361489], [8.547667, 47.360595], [8.547652, 47.360063], [8.547645, 47.359486], [8.547644, 47.35948], [8.547645, 47.359475], [8.547646, 47.35947], [8.547647, 47.359465], [8.547649, 47.359459], [8.547652, 47.359454], [8.547656, 47.35945], [8.54766, 47.359445], [8.547665, 47.359441], [8.54767, 47.359437], [8.547676, 47.359433], [8.547682, 47.35943], [8.547689, 47.359427], [8.547696, 47.359425], [8.547703, 47.359423], [8.54771, 47.359421], [8.547718, 47.35942], [8.547726, 47.359419], [8.547734, 47.359419], [8.547741, 47.359419], [8.547749, 47.35942], [8.547757, 47.359421], [8.547764, 47.359422], [8.547772, 47.359424]]], "type": "MultiLineString"}, "id": "1988", "properties": {}, "type": "Feature"}, {"bbox": [8.544523, 47.373009, 8.547257, 47.376764], "geometry": {"coordinates": [[[8.547257, 47.373009], [8.547102, 47.373215], [8.546466, 47.373975], [8.545887, 47.374669], [8.545776, 47.374818], [8.545671, 47.374969], [8.545571, 47.375122], [8.545564, 47.375132], [8.545558, 47.375142], [8.545551, 47.375152], [8.545192, 47.375716], [8.544523, 47.376764]]], "type": "MultiLineString"}, "id": "1992", "properties": {}, "type": "Feature"}, {"bbox": [8.515592, 47.382038, 8.519272, 47.387403], "geometry": {"coordinates": [[[8.516116, 47.382038], [8.516055, 47.382131], [8.515996, 47.382225], [8.515937, 47.382319], [8.51582, 47.382496], [8.515724, 47.382679], [8.51565, 47.382866], [8.515618, 47.382969], [8.515598, 47.383073], [8.515592, 47.383178], [8.515598, 47.383283], [8.515618, 47.383387], [8.51565, 47.38349], [8.51564, 47.383677], [8.517335, 47.385416], [8.518093, 47.386193], [8.519131, 47.387258], [8.519272, 47.387403]]], "type": "MultiLineString"}, "id": "2000", "properties": {}, "type": "Feature"}, {"bbox": [8.548219, 47.370115, 8.549289, 47.370893], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.548719, 47.370254], [8.548564, 47.370402], [8.548428, 47.370559], [8.548313, 47.370723], [8.548219, 47.370893], [8.549289, 47.370542]]], "type": "MultiLineString"}, "id": "2010", "properties": {}, "type": "Feature"}, {"bbox": [8.523607, 47.369441, 8.525924, 47.371099], "geometry": {"coordinates": [[[8.525924, 47.369441], [8.525718, 47.369606], [8.525348, 47.369921], [8.524749, 47.370432], [8.524602, 47.370557], [8.524011, 47.371057], [8.523607, 47.371099]]], "type": "MultiLineString"}, "id": "2016", "properties": {}, "type": "Feature"}, {"bbox": [8.535359, 47.421566, 8.538394, 47.422954], "geometry": {"coordinates": [[[8.538394, 47.421566], [8.538052, 47.421755], [8.537714, 47.42195], [8.537107, 47.422258], [8.536476, 47.422544], [8.535823, 47.422807], [8.535359, 47.422954]]], "type": "MultiLineString"}, "id": "2029", "properties": {}, "type": "Feature"}, {"bbox": [8.51832, 47.371099, 8.523607, 47.38002], "geometry": {"coordinates": [[[8.523607, 47.371099], [8.523386, 47.371128], [8.523147, 47.371281], [8.522308, 47.371862], [8.522185, 47.371932], [8.522151, 47.371963], [8.522115, 47.371994], [8.52208, 47.372024], [8.521718, 47.372264], [8.521177, 47.372622], [8.520917, 47.372799], [8.52066, 47.372977], [8.520406, 47.373157], [8.519768, 47.373621], [8.519614, 47.373714], [8.519507, 47.373796], [8.519409, 47.373884], [8.519322, 47.373977], [8.519175, 47.374166], [8.519136, 47.374217], [8.519102, 47.37427], [8.519072, 47.374325], [8.518946, 47.374527], [8.518836, 47.374733], [8.518741, 47.374943], [8.518645, 47.375155], [8.518575, 47.375333], [8.518533, 47.375424], [8.518495, 47.375516], [8.518461, 47.375609], [8.518405, 47.375792], [8.518362, 47.375978], [8.518334, 47.376164], [8.518324, 47.376281], [8.51832, 47.376398], [8.518322, 47.376515], [8.518329, 47.376611], [8.518342, 47.376736], [8.518363, 47.37686], [8.518391, 47.376984], [8.518431, 47.377128], [8.51848, 47.377271], [8.51854, 47.377413], [8.518661, 47.377647], [8.518723, 47.37775], [8.51879, 47.377852], [8.518863, 47.377953], [8.518919, 47.378025], [8.518978, 47.378097], [8.51904, 47.378168], [8.51939, 47.37853], [8.519511, 47.378634], [8.520107, 47.379248], [8.52042, 47.379571], [8.520539, 47.379716], [8.520641, 47.379866], [8.520728, 47.38002]]], "type": "MultiLineString"}, "id": "2032", "properties": {}, "type": "Feature"}, {"bbox": [8.557086, 47.359519, 8.557776, 47.360591], "geometry": {"coordinates": [[[8.557086, 47.360591], [8.557333, 47.36001], [8.557367, 47.359943], [8.55741, 47.359878], [8.557461, 47.359816], [8.557519, 47.359758], [8.557776, 47.359519]]], "type": "MultiLineString"}, "id": "2062", "properties": {}, "type": "Feature"}, {"bbox": [8.566513, 47.364745, 8.566924, 47.364948], "geometry": {"coordinates": [[[8.566513, 47.364745], [8.566924, 47.364948]]], "type": "MultiLineString"}, "id": "2073", "properties": {}, "type": "Feature"}, {"bbox": [8.546181, 47.364315, 8.548879, 47.366131], "geometry": {"coordinates": [[[8.546181, 47.364315], [8.546841, 47.364479], [8.546934, 47.364506], [8.547025, 47.364537], [8.547111, 47.364572], [8.547197, 47.364614], [8.547277, 47.36466], [8.547351, 47.36471], [8.547425, 47.364771], [8.547549, 47.364873], [8.547781, 47.365097], [8.547904, 47.3652], [8.548024, 47.365302], [8.548218, 47.36549], [8.548879, 47.366131]]], "type": "MultiLineString"}, "id": "2084", "properties": {}, "type": "Feature"}, {"bbox": [8.55913, 47.364827, 8.566258, 47.376017], "geometry": {"coordinates": [[[8.55913, 47.376017], [8.559509, 47.375933], [8.559619, 47.375899], [8.559811, 47.375746], [8.560161, 47.375483], [8.560414, 47.375321], [8.561424, 47.373659], [8.561521, 47.373509], [8.561569, 47.373434], [8.561621, 47.373365], [8.561681, 47.373299], [8.56175, 47.373237], [8.561826, 47.373179], [8.56191, 47.373127], [8.561999, 47.373079], [8.562095, 47.373036], [8.562195, 47.373], [8.5623, 47.37297], [8.563055, 47.372807], [8.56313, 47.372784], [8.563201, 47.372757], [8.563269, 47.372726], [8.563297, 47.372706], [8.563323, 47.372684], [8.563345, 47.37266], [8.563365, 47.372636], [8.563381, 47.37261], [8.563394, 47.372584], [8.563403, 47.372557], [8.563409, 47.372529], [8.563412, 47.372501], [8.56341, 47.372473], [8.563405, 47.372445], [8.563397, 47.372418], [8.563383, 47.372388], [8.563365, 47.372359], [8.563343, 47.372331], [8.562791, 47.37179], [8.562762, 47.37176], [8.562737, 47.371728], [8.562716, 47.371696], [8.562699, 47.371662], [8.562687, 47.371627], [8.562651, 47.371451], [8.562628, 47.371338], [8.562588, 47.371132], [8.562584, 47.371081], [8.562587, 47.371029], [8.562596, 47.370979], [8.562611, 47.370929], [8.562633, 47.37088], [8.56266, 47.370832], [8.562694, 47.370786], [8.562733, 47.370742], [8.562777, 47.370701], [8.562826, 47.370662], [8.56288, 47.370626], [8.562938, 47.370593], [8.562999, 47.370564], [8.563065, 47.370539], [8.563076, 47.370535], [8.563087, 47.370531], [8.563098, 47.370527], [8.56417, 47.370064], [8.564195, 47.37001], [8.564214, 47.369956], [8.564225, 47.3699], [8.56423, 47.369844], [8.564227, 47.369788], [8.564209, 47.369506], [8.564204, 47.369417], [8.564199, 47.369353], [8.56416, 47.368737], [8.564156, 47.368587], [8.564162, 47.368437], [8.564179, 47.368288], [8.564185, 47.368214], [8.564197, 47.36814], [8.564216, 47.368067], [8.564248, 47.367973], [8.56429, 47.367881], [8.564342, 47.367791], [8.564593, 47.367384], [8.564948, 47.366827], [8.565014, 47.366722], [8.565084, 47.366618], [8.565627, 47.365765], [8.565996, 47.365185], [8.566258, 47.364827]]], "type": "MultiLineString"}, "id": "2102", "properties": {}, "type": "Feature"}, {"bbox": [8.547354, 47.403164, 8.548249, 47.403568], "geometry": {"coordinates": [[[8.547354, 47.403164], [8.54765, 47.403301], [8.547948, 47.403436], [8.548249, 47.403568], [8.548151, 47.40354], [8.54805, 47.403518], [8.547946, 47.403503], [8.547841, 47.403493], [8.547735, 47.40349]]], "type": "MultiLineString"}, "id": "2104", "properties": {}, "type": "Feature"}, {"bbox": [8.588936, 47.364987, 8.590219, 47.365071], "geometry": {"coordinates": [[[8.588936, 47.364989], [8.588975, 47.364987], [8.589033, 47.364987], [8.58909, 47.364991], [8.590034, 47.365071], [8.590219, 47.365068]]], "type": "MultiLineString"}, "id": "2106", "properties": {}, "type": "Feature"}, {"bbox": [8.522037, 47.390422, 8.523071, 47.391155], "geometry": {"coordinates": [[[8.522852, 47.391122], [8.52289, 47.391092], [8.522924, 47.391059], [8.522954, 47.391025], [8.522979, 47.390989], [8.523, 47.390952], [8.523016, 47.390914], [8.523028, 47.390875], [8.523034, 47.390835], [8.523036, 47.390795], [8.523068, 47.390571], [8.52307, 47.390563], [8.523071, 47.390555], [8.52307, 47.390546], [8.523069, 47.390538], [8.523066, 47.39053], [8.523063, 47.390522], [8.523058, 47.390514], [8.523052, 47.390506], [8.523046, 47.390499], [8.523038, 47.390492], [8.52303, 47.390486], [8.523021, 47.39048], [8.523011, 47.390475], [8.522954, 47.390457], [8.522895, 47.390443], [8.522834, 47.390432], [8.522772, 47.390425], [8.522709, 47.390422], [8.522646, 47.390422], [8.522583, 47.390426], [8.522521, 47.390434], [8.52246, 47.390445], [8.522401, 47.39046], [8.522344, 47.390478], [8.52229, 47.3905], [8.522239, 47.390525], [8.522191, 47.390553], [8.522147, 47.390583], [8.522106, 47.390616], [8.522071, 47.390651], [8.522057, 47.390678], [8.522047, 47.390705], [8.52204, 47.390733], [8.522037, 47.390761], [8.522037, 47.390789], [8.522041, 47.390817], [8.522048, 47.390845], [8.522071, 47.390883], [8.522099, 47.39092], [8.522131, 47.390955], [8.522168, 47.390988], [8.522208, 47.39102], [8.522252, 47.391048], [8.522299, 47.391075], [8.52235, 47.391098], [8.522403, 47.391119], [8.522445, 47.391131], [8.522489, 47.391141], [8.522534, 47.391149], [8.52258, 47.391153], [8.522627, 47.391155], [8.522673, 47.391154], [8.522719, 47.39115], [8.522765, 47.391143], [8.522809, 47.391134], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "2107", "properties": {}, "type": "Feature"}, {"bbox": [8.534282, 47.372597, 8.534472, 47.372713], "geometry": {"coordinates": [[[8.534472, 47.372597], [8.534282, 47.372713]]], "type": "MultiLineString"}, "id": "2111", "properties": {}, "type": "Feature"}, {"bbox": [8.522139, 47.390345, 8.525018, 47.390731], "geometry": {"coordinates": [[[8.522139, 47.390345], [8.522371, 47.390406], [8.522488, 47.390476], [8.522614, 47.390538], [8.522748, 47.390592], [8.522888, 47.390638], [8.523034, 47.390675], [8.523184, 47.390703], [8.523338, 47.390722], [8.523493, 47.390731], [8.523649, 47.39073], [8.524183, 47.390664], [8.524364, 47.390637], [8.524541, 47.390599], [8.524713, 47.390552], [8.525018, 47.39047]]], "type": "MultiLineString"}, "id": "2112", "properties": {}, "type": "Feature"}, {"bbox": [8.516998, 47.412037, 8.517738, 47.412638], "geometry": {"coordinates": [[[8.516998, 47.412638], [8.517059, 47.412539], [8.517194, 47.412318], [8.517201, 47.412309], [8.517245, 47.412263], [8.517274, 47.412237], [8.517318, 47.412214], [8.51753, 47.412115], [8.517585, 47.412092], [8.517738, 47.412037]]], "type": "MultiLineString"}, "id": "2129", "properties": {}, "type": "Feature"}, {"bbox": [8.54327, 47.376386, 8.544523, 47.377004], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544523, 47.376764], [8.544472, 47.376777], [8.544419, 47.376786], [8.544366, 47.376792], [8.544312, 47.376794], [8.544257, 47.376794], [8.544203, 47.37679], [8.54415, 47.376783], [8.544097, 47.376774], [8.544046, 47.376761], [8.543997, 47.376745], [8.54395, 47.376726], [8.543906, 47.376705], [8.543865, 47.376681], [8.543827, 47.376654], [8.543792, 47.376626], [8.543761, 47.376596], [8.543734, 47.376564], [8.543711, 47.37653], [8.543693, 47.376495], [8.543679, 47.37646], [8.54367, 47.376423], [8.543665, 47.376386], [8.543665, 47.376425], [8.54366, 47.376469], [8.54365, 47.376513], [8.543633, 47.376555], [8.543612, 47.376597], [8.543585, 47.376637], [8.543553, 47.376675], [8.543516, 47.376711], [8.543474, 47.376745], [8.543428, 47.376776], [8.543379, 47.376805], [8.543326, 47.37683], [8.54327, 47.376852], [8.543427, 47.376854], [8.543583, 47.376865], [8.543738, 47.376886], [8.543889, 47.376916], [8.544035, 47.376956], [8.544176, 47.377004]]], "type": "MultiLineString"}, "id": "2153", "properties": {}, "type": "Feature"}, {"bbox": [8.503906, 47.420011, 8.504336, 47.420636], "geometry": {"coordinates": [[[8.503906, 47.420011], [8.504336, 47.420636]]], "type": "MultiLineString"}, "id": "2163", "properties": {}, "type": "Feature"}, {"bbox": [8.534696, 47.371525, 8.535767, 47.37238], "geometry": {"coordinates": [[[8.535767, 47.371525], [8.534978, 47.372077], [8.534871, 47.372172], [8.534776, 47.372274], [8.534696, 47.37238]]], "type": "MultiLineString"}, "id": "2164", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.367078, 8.548892, 47.370115], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544288, 47.367095], [8.544297, 47.367113], [8.544308, 47.367129], [8.544321, 47.367145], [8.544335, 47.367161], [8.544352, 47.367175], [8.544371, 47.367188], [8.544391, 47.3672], [8.544412, 47.367211], [8.544435, 47.367221], [8.544459, 47.367229], [8.545005, 47.367413], [8.545177, 47.367474], [8.545253, 47.367504], [8.545327, 47.367536], [8.5454, 47.36757], [8.54614, 47.367906], [8.546686, 47.368161], [8.546834, 47.368229], [8.546981, 47.368298], [8.547044, 47.368327], [8.547105, 47.368358], [8.547164, 47.368391], [8.547297, 47.368477], [8.547417, 47.368571], [8.547522, 47.368673], [8.548037, 47.369215], [8.548204, 47.369391], [8.548344, 47.369538], [8.548892, 47.370115]]], "type": "MultiLineString"}, "id": "2189", "properties": {}, "type": "Feature"}, {"bbox": [8.573989, 47.404152, 8.586239, 47.407087], "geometry": {"coordinates": [[[8.573989, 47.404152], [8.57414, 47.404311], [8.574669, 47.404414], [8.575601, 47.404625], [8.576885, 47.404917], [8.578172, 47.405206], [8.578518, 47.405274], [8.578968, 47.405387], [8.579916, 47.405603], [8.581145, 47.405884], [8.581742, 47.406027], [8.582905, 47.406276], [8.583338, 47.406383], [8.583815, 47.406492], [8.584389, 47.406595], [8.584605, 47.406657], [8.584803, 47.406739], [8.585137, 47.406813], [8.585503, 47.406907], [8.58587, 47.406998], [8.586239, 47.407087]]], "type": "MultiLineString"}, "id": "2191", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.361282, 8.547992, 47.367078], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544462, 47.366947], [8.544626, 47.366808], [8.544774, 47.36666], [8.544904, 47.366504], [8.544939, 47.366452], [8.544972, 47.366399], [8.545002, 47.366345], [8.54552, 47.36547], [8.545629, 47.365279], [8.546181, 47.364315], [8.546377, 47.363971], [8.546452, 47.363848], [8.546969, 47.362987], [8.547112, 47.362748], [8.547317, 47.362396], [8.547531, 47.36203], [8.547657, 47.361832], [8.547786, 47.36163], [8.547905, 47.361437], [8.547992, 47.361282]]], "type": "MultiLineString"}, "id": "2194", "properties": {}, "type": "Feature"}, {"bbox": [8.529981, 47.334827, 8.53093, 47.342545], "geometry": {"coordinates": [[[8.53093, 47.342545], [8.530925, 47.342514], [8.530917, 47.342482], [8.530908, 47.342451], [8.530676, 47.341869], [8.530459, 47.341323], [8.530259, 47.340827], [8.530182, 47.340635], [8.530122, 47.340484], [8.530074, 47.34032], [8.530039, 47.340155], [8.530014, 47.339989], [8.530003, 47.339849], [8.53, 47.339709], [8.530005, 47.339569], [8.530084, 47.338807], [8.530088, 47.338765], [8.530083, 47.338585], [8.530072, 47.338277], [8.530068, 47.338113], [8.530068, 47.337949], [8.530073, 47.337786], [8.530048, 47.336913], [8.53003, 47.336297], [8.530028, 47.336256], [8.529984, 47.334867], [8.529981, 47.334827]]], "type": "MultiLineString"}, "id": "2195", "properties": {}, "type": "Feature"}, {"bbox": [8.483938, 47.368429, 8.493783, 47.373838], "geometry": {"coordinates": [[[8.483938, 47.373838], [8.483947, 47.373832], [8.483949, 47.373819], [8.483952, 47.373806], [8.483958, 47.373793], [8.483965, 47.373781], [8.483973, 47.37377], [8.483983, 47.373758], [8.483995, 47.373748], [8.484008, 47.373738], [8.484318, 47.37353], [8.484425, 47.373458], [8.484622, 47.373337], [8.48483, 47.373225], [8.485048, 47.373121], [8.485303, 47.373017], [8.485451, 47.372956], [8.485813, 47.372829], [8.48602, 47.372753], [8.486222, 47.372671], [8.486419, 47.372584], [8.487429, 47.372115], [8.487498, 47.372084], [8.487566, 47.372051], [8.487631, 47.372016], [8.487804, 47.371918], [8.48797, 47.371814], [8.488128, 47.371705], [8.488184, 47.371664], [8.488238, 47.371622], [8.488292, 47.371579], [8.488429, 47.371468], [8.489533, 47.370567], [8.490078, 47.370122], [8.490236, 47.370002], [8.490398, 47.369884], [8.490564, 47.369769], [8.490585, 47.369756], [8.490607, 47.369742], [8.490629, 47.369729], [8.490764, 47.369651], [8.490903, 47.369576], [8.491047, 47.369505], [8.491171, 47.369449], [8.491297, 47.369395], [8.491426, 47.369343], [8.491751, 47.369216], [8.491952, 47.369138], [8.492542, 47.368907], [8.493052, 47.368708], [8.493294, 47.368613], [8.493538, 47.36852], [8.493783, 47.368429]]], "type": "MultiLineString"}, "id": "2207", "properties": {}, "type": "Feature"}, {"bbox": [8.563375, 47.405792, 8.565439, 47.406938], "geometry": {"coordinates": [[[8.565439, 47.406938], [8.565065, 47.406725], [8.56469, 47.406513], [8.564314, 47.406303], [8.563375, 47.405792]]], "type": "MultiLineString"}, "id": "2233", "properties": {}, "type": "Feature"}, {"bbox": [8.549081, 47.373133, 8.550183, 47.374265], "geometry": {"coordinates": [[[8.550183, 47.373233], [8.549681, 47.373133], [8.549081, 47.374265]]], "type": "MultiLineString"}, "id": "2234", "properties": {}, "type": "Feature"}, {"bbox": [8.531693, 47.365855, 8.532288, 47.366356], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532094, 47.365863], [8.531932, 47.366081], [8.531754, 47.366292], [8.531693, 47.366356]]], "type": "MultiLineString"}, "id": "2240", "properties": {}, "type": "Feature"}, {"bbox": [8.577909, 47.348714, 8.577984, 47.349005], "geometry": {"coordinates": [[[8.577909, 47.349005], [8.577948, 47.34891], [8.577973, 47.348813], [8.577984, 47.348714]]], "type": "MultiLineString"}, "id": "2268", "properties": {}, "type": "Feature"}, {"bbox": [8.513633, 47.357801, 8.514183, 47.358364], "geometry": {"coordinates": [[[8.514183, 47.357801], [8.514123, 47.357833], [8.514081, 47.357855], [8.513633, 47.358364]]], "type": "MultiLineString"}, "id": "2271", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.413981, 8.554393, 47.414473], "geometry": {"coordinates": [[[8.554393, 47.414473], [8.554381, 47.414129], [8.554378, 47.414115], [8.554373, 47.414101], [8.554366, 47.414087], [8.554358, 47.414074], [8.554347, 47.414061], [8.554336, 47.414049], [8.554322, 47.414037], [8.554308, 47.414026], [8.554292, 47.414017], [8.554274, 47.414008], [8.554256, 47.414], [8.554237, 47.413993], [8.554001, 47.413985], [8.553764, 47.413981], [8.553528, 47.413984], [8.553438, 47.414022], [8.553355, 47.414065], [8.553277, 47.414113], [8.553207, 47.414166], [8.553143, 47.414224], [8.553088, 47.414284], [8.553071, 47.414307], [8.553052, 47.414329], [8.553033, 47.414351], [8.552994, 47.414366], [8.552953, 47.41438], [8.55291, 47.414391], [8.552866, 47.4144]]], "type": "MultiLineString"}, "id": "2284", "properties": {}, "type": "Feature"}, {"bbox": [8.506041, 47.411352, 8.506216, 47.41224], "geometry": {"coordinates": [[[8.506203, 47.41224], [8.506216, 47.411992], [8.506201, 47.411829], [8.506167, 47.411667], [8.506113, 47.411508], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "2294", "properties": {}, "type": "Feature"}, {"bbox": [8.54538, 47.412992, 8.545447, 47.413844], "geometry": {"coordinates": [[[8.54538, 47.412992], [8.545397, 47.41318], [8.545437, 47.413598], [8.545447, 47.413844]]], "type": "MultiLineString"}, "id": "2295", "properties": {}, "type": "Feature"}, {"bbox": [8.576313, 47.374601, 8.577507, 47.37479], "geometry": {"coordinates": [[[8.576313, 47.374602], [8.576538, 47.374601], [8.577507, 47.37479]]], "type": "MultiLineString"}, "id": "2309", "properties": {}, "type": "Feature"}, {"bbox": [8.526352, 47.407267, 8.526659, 47.407896], "geometry": {"coordinates": [[[8.526659, 47.407267], [8.526566, 47.407479], [8.526464, 47.407689], [8.526352, 47.407896]]], "type": "MultiLineString"}, "id": "2318", "properties": {}, "type": "Feature"}, {"bbox": [8.516385, 47.357867, 8.516937, 47.358799], "geometry": {"coordinates": [[[8.516937, 47.358799], [8.516876, 47.358739], [8.516789, 47.358113], [8.516385, 47.357867]]], "type": "MultiLineString"}, "id": "2349", "properties": {}, "type": "Feature"}, {"bbox": [8.492559, 47.384548, 8.493198, 47.385844], "geometry": {"coordinates": [[[8.492955, 47.385844], [8.492591, 47.384949], [8.492559, 47.384842], [8.493198, 47.384548]]], "type": "MultiLineString"}, "id": "2351", "properties": {}, "type": "Feature"}, {"bbox": [8.538549, 47.3743, 8.538671, 47.374582], "geometry": {"coordinates": [[[8.538549, 47.3743], [8.538657, 47.374493], [8.538671, 47.374582]]], "type": "MultiLineString"}, "id": "2365", "properties": {}, "type": "Feature"}, {"bbox": [8.485955, 47.387725, 8.48666, 47.387865], "geometry": {"coordinates": [[[8.48666, 47.387725], [8.486352, 47.387791], [8.485955, 47.387865]]], "type": "MultiLineString"}, "id": "2366", "properties": {}, "type": "Feature"}, {"bbox": [8.504093, 47.37972, 8.507101, 47.381041], "geometry": {"coordinates": [[[8.507101, 47.37972], [8.506623, 47.379933], [8.505142, 47.380581], [8.504093, 47.381041]]], "type": "MultiLineString"}, "id": "2367", "properties": {}, "type": "Feature"}, {"bbox": [8.48828, 47.387126, 8.489281, 47.387268], "geometry": {"coordinates": [[[8.489281, 47.387126], [8.48828, 47.387268]]], "type": "MultiLineString"}, "id": "2368", "properties": {}, "type": "Feature"}, {"bbox": [8.497417, 47.384029, 8.497839, 47.384235], "geometry": {"coordinates": [[[8.497839, 47.384029], [8.497417, 47.384235]]], "type": "MultiLineString"}, "id": "2369", "properties": {}, "type": "Feature"}, {"bbox": [8.540329, 47.373986, 8.540549, 47.374015], "geometry": {"coordinates": [[[8.540549, 47.373986], [8.540329, 47.374015]]], "type": "MultiLineString"}, "id": "2370", "properties": {}, "type": "Feature"}, {"bbox": [8.51527, 47.382952, 8.515772, 47.383349], "geometry": {"coordinates": [[[8.51527, 47.382952], [8.515772, 47.383349]]], "type": "MultiLineString"}, "id": "2377", "properties": {}, "type": "Feature"}, {"bbox": [8.491478, 47.389932, 8.493952, 47.390495], "geometry": {"coordinates": [[[8.491478, 47.390077], [8.491817, 47.390495], [8.493792, 47.389932], [8.493952, 47.389947]]], "type": "MultiLineString"}, "id": "2383", "properties": {}, "type": "Feature"}, {"bbox": [8.480552, 47.413598, 8.481058, 47.414471], "geometry": {"coordinates": [[[8.481058, 47.413598], [8.480552, 47.414471]]], "type": "MultiLineString"}, "id": "2387", "properties": {}, "type": "Feature"}, {"bbox": [8.497872, 47.422948, 8.498706, 47.423305], "geometry": {"coordinates": [[[8.497872, 47.423305], [8.49818, 47.423132], [8.498353, 47.423067], [8.498528, 47.423006], [8.498706, 47.422948]]], "type": "MultiLineString"}, "id": "2397", "properties": {}, "type": "Feature"}, {"bbox": [8.516166, 47.36191, 8.516795, 47.362348], "geometry": {"coordinates": [[[8.516795, 47.36191], [8.516743, 47.361953], [8.516166, 47.362348]]], "type": "MultiLineString"}, "id": "2405", "properties": {}, "type": "Feature"}, {"bbox": [8.543162, 47.399545, 8.544438, 47.399838], "geometry": {"coordinates": [[[8.543162, 47.399545], [8.543331, 47.399603], [8.543506, 47.399653], [8.543686, 47.399694], [8.544438, 47.399838]]], "type": "MultiLineString"}, "id": "2408", "properties": {}, "type": "Feature"}, {"bbox": [8.538184, 47.367571, 8.538567, 47.367639], "geometry": {"coordinates": [[[8.538567, 47.367639], [8.538184, 47.367571]]], "type": "MultiLineString"}, "id": "2414", "properties": {}, "type": "Feature"}, {"bbox": [8.534648, 47.370322, 8.53536, 47.370827], "geometry": {"coordinates": [[[8.53536, 47.370827], [8.535249, 47.370745], [8.535137, 47.370661], [8.535068, 47.370607], [8.534889, 47.370485], [8.534846, 47.370456], [8.534648, 47.370322]]], "type": "MultiLineString"}, "id": "2422", "properties": {}, "type": "Feature"}, {"bbox": [8.519272, 47.387403, 8.521987, 47.390188], "geometry": {"coordinates": [[[8.519272, 47.387403], [8.520074, 47.388225], [8.520735, 47.388904], [8.521334, 47.389519], [8.521987, 47.390188]]], "type": "MultiLineString"}, "id": "2424", "properties": {}, "type": "Feature"}, {"bbox": [8.481779, 47.368332, 8.484419, 47.369129], "geometry": {"coordinates": [[[8.484419, 47.368332], [8.484028, 47.368415], [8.483762, 47.368475], [8.4835, 47.368543], [8.483244, 47.36862], [8.483127, 47.36866], [8.481916, 47.369076], [8.481779, 47.369129]]], "type": "MultiLineString"}, "id": "2432", "properties": {}, "type": "Feature"}, {"bbox": [8.504989, 47.362737, 8.505268, 47.363042], "geometry": {"coordinates": [[[8.504989, 47.363042], [8.505223, 47.362787], [8.505268, 47.362737]]], "type": "MultiLineString"}, "id": "2435", "properties": {}, "type": "Feature"}, {"bbox": [8.490752, 47.423217, 8.491913, 47.423391], "geometry": {"coordinates": [[[8.491913, 47.423217], [8.490752, 47.423391]]], "type": "MultiLineString"}, "id": "2446", "properties": {}, "type": "Feature"}, {"bbox": [8.554616, 47.425992, 8.555284, 47.426329], "geometry": {"coordinates": [[[8.555284, 47.425992], [8.555065, 47.426108], [8.554842, 47.426221], [8.554616, 47.426329]]], "type": "MultiLineString"}, "id": "2448", "properties": {}, "type": "Feature"}, {"bbox": [8.466976, 47.385121, 8.471575, 47.38778], "geometry": {"coordinates": [[[8.471575, 47.38778], [8.47157, 47.387759], [8.471563, 47.387738], [8.471552, 47.387718], [8.471539, 47.387699], [8.471524, 47.38768], [8.471507, 47.387663], [8.471487, 47.387646], [8.470919, 47.387389], [8.47037, 47.387113], [8.469841, 47.38682], [8.46965, 47.386708], [8.469476, 47.386585], [8.469321, 47.386449], [8.469261, 47.386395], [8.469195, 47.386344], [8.469123, 47.386296], [8.469046, 47.386253], [8.468964, 47.386213], [8.46868, 47.386092], [8.468389, 47.385979], [8.468091, 47.385874], [8.468057, 47.385862], [8.46796, 47.385822], [8.467869, 47.385776], [8.467783, 47.385726], [8.467705, 47.38567], [8.467634, 47.38561], [8.467572, 47.385546], [8.467517, 47.385479], [8.467472, 47.385408], [8.467441, 47.385368], [8.467405, 47.385329], [8.467364, 47.385293], [8.467319, 47.385259], [8.46727, 47.385228], [8.467217, 47.3852], [8.46716, 47.385175], [8.467101, 47.385154], [8.467039, 47.385136], [8.466976, 47.385121]]], "type": "MultiLineString"}, "id": "2453", "properties": {}, "type": "Feature"}, {"bbox": [8.534761, 47.372596, 8.53832, 47.373903], "geometry": {"coordinates": [[[8.53832, 47.373903], [8.538049, 47.373876], [8.537966, 47.373867], [8.537244, 47.373799], [8.537225, 47.373796], [8.537207, 47.373792], [8.537189, 47.373788], [8.537172, 47.373782], [8.537156, 47.373775], [8.537141, 47.373767], [8.537127, 47.373758], [8.537114, 47.373749], [8.537102, 47.373739], [8.537092, 47.373728], [8.537082, 47.373717], [8.537075, 47.373705], [8.537068, 47.373693], [8.537064, 47.37368], [8.537061, 47.373667], [8.537051, 47.373459], [8.537045, 47.373435], [8.537036, 47.373412], [8.537024, 47.373389], [8.536943, 47.373232], [8.536931, 47.373215], [8.536918, 47.3732], [8.536903, 47.373185], [8.536885, 47.373171], [8.536867, 47.373159], [8.536847, 47.373147], [8.536825, 47.373137], [8.536802, 47.373127], [8.536533, 47.373044], [8.535491, 47.37278], [8.534761, 47.372596]]], "type": "MultiLineString"}, "id": "2455", "properties": {}, "type": "Feature"}, {"bbox": [8.547904, 47.352008, 8.560053, 47.3652], "geometry": {"coordinates": [[[8.547904, 47.3652], [8.548179, 47.364912], [8.54859, 47.364439], [8.548649, 47.364364], [8.549073, 47.363891], [8.549147, 47.363809], [8.549703, 47.3632], [8.549857, 47.363043], [8.549932, 47.362957], [8.550068, 47.362805], [8.550091, 47.362778], [8.550275, 47.362567], [8.550472, 47.362341], [8.550582, 47.362214], [8.550828, 47.361931], [8.551138, 47.361574], [8.551269, 47.361424], [8.551604, 47.361038], [8.552194, 47.360358], [8.552213, 47.360338], [8.552938, 47.359501], [8.553306, 47.359055], [8.55333, 47.359028], [8.553849, 47.358428], [8.554003, 47.358239], [8.554033, 47.358201], [8.554432, 47.357753], [8.554793, 47.357421], [8.554875, 47.357332], [8.555227, 47.356963], [8.55533, 47.356855], [8.55555, 47.356624], [8.555621, 47.35655], [8.555939, 47.356216], [8.556149, 47.356008], [8.556383, 47.355775], [8.556426, 47.355728], [8.556614, 47.35553], [8.55693, 47.355194], [8.557131, 47.354984], [8.557197, 47.354915], [8.557364, 47.354743], [8.557442, 47.354663], [8.557779, 47.35432], [8.557893, 47.354203], [8.558206, 47.353874], [8.558584, 47.353476], [8.558802, 47.353241], [8.55885, 47.353189], [8.55905, 47.35298], [8.559116, 47.352904], [8.559223, 47.352783], [8.559374, 47.352625], [8.559405, 47.352587], [8.559469, 47.352517], [8.559529, 47.352444], [8.559585, 47.35237], [8.559647, 47.352282], [8.559703, 47.352192], [8.559753, 47.352101], [8.559872, 47.352071], [8.559987, 47.352034], [8.560053, 47.352008]]], "type": "MultiLineString"}, "id": "2456", "properties": {}, "type": "Feature"}, {"bbox": [8.55913, 47.376017, 8.559678, 47.376812], "geometry": {"coordinates": [[[8.55913, 47.376017], [8.559213, 47.376182], [8.559308, 47.376343], [8.559416, 47.3765], [8.559498, 47.376606], [8.559585, 47.376711], [8.559678, 47.376812]]], "type": "MultiLineString"}, "id": "2462", "properties": {}, "type": "Feature"}, {"bbox": [8.532316, 47.397568, 8.534555, 47.398053], "geometry": {"coordinates": [[[8.532316, 47.397568], [8.532666, 47.397674], [8.53312, 47.397806], [8.533588, 47.397914], [8.534067, 47.397996], [8.534555, 47.398053]]], "type": "MultiLineString"}, "id": "2470", "properties": {}, "type": "Feature"}, {"bbox": [8.526569, 47.351051, 8.526934, 47.351791], "geometry": {"coordinates": [[[8.526934, 47.351791], [8.526814, 47.351751], [8.526791, 47.351744], [8.526768, 47.351737], [8.526747, 47.351728], [8.526727, 47.351717], [8.526709, 47.351706], [8.526692, 47.351694], [8.526676, 47.35168], [8.526663, 47.351666], [8.526651, 47.351651], [8.526641, 47.351635], [8.526633, 47.351619], [8.526628, 47.351603], [8.526624, 47.351586], [8.526617, 47.351232], [8.526569, 47.351051]]], "type": "MultiLineString"}, "id": "2472", "properties": {}, "type": "Feature"}, {"bbox": [8.524448, 47.389411, 8.52536, 47.39032], "geometry": {"coordinates": [[[8.52536, 47.39032], [8.524448, 47.389411]]], "type": "MultiLineString"}, "id": "2476", "properties": {}, "type": "Feature"}, {"bbox": [8.524063, 47.384872, 8.531289, 47.389695], "geometry": {"coordinates": [[[8.531289, 47.384872], [8.531103, 47.385007], [8.530465, 47.385484], [8.530408, 47.385531], [8.529992, 47.385838], [8.529643, 47.386097], [8.529183, 47.386432], [8.529065, 47.386521], [8.528551, 47.386903], [8.528422, 47.386999], [8.527129, 47.387813], [8.526796, 47.388005], [8.526542, 47.388148], [8.526385, 47.388237], [8.526371, 47.388245], [8.526357, 47.388252], [8.526343, 47.38826], [8.526094, 47.388396], [8.525847, 47.388534], [8.525603, 47.388674], [8.525433, 47.388774], [8.525264, 47.388874], [8.525096, 47.388976], [8.524962, 47.389058], [8.524829, 47.389141], [8.524697, 47.389225], [8.524448, 47.389411], [8.524063, 47.389695]]], "type": "MultiLineString"}, "id": "2480", "properties": {}, "type": "Feature"}, {"bbox": [8.503181, 47.380988, 8.504093, 47.381435], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504039, 47.381024], [8.503982, 47.381009], [8.503924, 47.380999], [8.503864, 47.380991], [8.503804, 47.380988], [8.503744, 47.380988], [8.503683, 47.380992], [8.503624, 47.380999], [8.503566, 47.38101], [8.503509, 47.381025], [8.503455, 47.381043], [8.503403, 47.381064], [8.503354, 47.381088], [8.503309, 47.381115], [8.503267, 47.381145], [8.503243, 47.381174], [8.503222, 47.381204], [8.503205, 47.381236], [8.503193, 47.381268], [8.503185, 47.381301], [8.503181, 47.381335], [8.503181, 47.381368], [8.503186, 47.381402], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "2488", "properties": {}, "type": "Feature"}, {"bbox": [8.519057, 47.362594, 8.52224, 47.363149], "geometry": {"coordinates": [[[8.52224, 47.363149], [8.521069, 47.362705], [8.520973, 47.362678], [8.520873, 47.362657], [8.52077, 47.362641], [8.520666, 47.362633], [8.520562, 47.36263], [8.519761, 47.362595], [8.519689, 47.362594], [8.519618, 47.362598], [8.519547, 47.362606], [8.519478, 47.362617], [8.51941, 47.362633], [8.519344, 47.362652], [8.519281, 47.362675], [8.519057, 47.362747]]], "type": "MultiLineString"}, "id": "2492", "properties": {}, "type": "Feature"}, {"bbox": [8.547992, 47.350019, 8.560857, 47.361282], "geometry": {"coordinates": [[[8.547992, 47.361282], [8.548089, 47.361109], [8.548316, 47.360745], [8.548374, 47.360652], [8.548657, 47.360265], [8.549069, 47.3597], [8.549202, 47.359518], [8.549549, 47.359041], [8.549616, 47.358951], [8.549659, 47.358893], [8.550029, 47.358385], [8.550434, 47.357844], [8.550783, 47.357352], [8.55087, 47.357229], [8.551232, 47.356732], [8.551305, 47.356633], [8.55186, 47.355873], [8.552423, 47.355101], [8.55244, 47.355078], [8.552681, 47.354774], [8.552775, 47.354647], [8.552884, 47.354525], [8.553007, 47.354409], [8.553144, 47.354301], [8.553191, 47.354267], [8.55324, 47.354235], [8.553289, 47.354203], [8.553626, 47.353994], [8.553653, 47.353979], [8.55368, 47.353964], [8.553707, 47.35395], [8.553845, 47.353879], [8.553987, 47.353812], [8.554131, 47.353747], [8.554227, 47.353707], [8.554324, 47.353668], [8.554421, 47.353631], [8.554501, 47.353602], [8.554581, 47.353575], [8.554662, 47.353549], [8.554828, 47.3535], [8.554997, 47.353457], [8.555169, 47.353419], [8.556237, 47.353184], [8.556444, 47.353134], [8.556645, 47.353076], [8.556842, 47.35301], [8.557129, 47.352894], [8.5574, 47.35276], [8.55765, 47.352609], [8.557769, 47.352521], [8.558474, 47.351998], [8.558639, 47.351887], [8.558809, 47.35178], [8.558983, 47.351675], [8.558994, 47.351668], [8.559005, 47.351662], [8.559016, 47.351655], [8.559265, 47.35149], [8.559498, 47.351316], [8.559715, 47.351132], [8.559974, 47.350875], [8.560546, 47.350311], [8.560857, 47.350019]]], "type": "MultiLineString"}, "id": "2493", "properties": {}, "type": "Feature"}, {"bbox": [8.545441, 47.399372, 8.548161, 47.40003], "geometry": {"coordinates": [[[8.545441, 47.400028], [8.545818, 47.400009], [8.546196, 47.400009], [8.546573, 47.40003], [8.546662, 47.400028], [8.546751, 47.400022], [8.546838, 47.40001], [8.546924, 47.399993], [8.547007, 47.399971], [8.547087, 47.399944], [8.547163, 47.399913], [8.547235, 47.399877], [8.547302, 47.399837], [8.547364, 47.399794], [8.54742, 47.399747], [8.54747, 47.399697], [8.547607, 47.399549], [8.547619, 47.399528], [8.547633, 47.399508], [8.547649, 47.399489], [8.547668, 47.399471], [8.547688, 47.399454], [8.547711, 47.399439], [8.547736, 47.399425], [8.547762, 47.399412], [8.54779, 47.399401], [8.54782, 47.399392], [8.54785, 47.399384], [8.547881, 47.399378], [8.547913, 47.399374], [8.547945, 47.399372], [8.547977, 47.399372], [8.54801, 47.399374], [8.548042, 47.399377], [8.548073, 47.399382], [8.548104, 47.39939], [8.548133, 47.399398], [8.548161, 47.399409]]], "type": "MultiLineString"}, "id": "2497", "properties": {}, "type": "Feature"}, {"bbox": [8.594996, 47.404704, 8.595855, 47.405751], "geometry": {"coordinates": [[[8.594996, 47.404704], [8.595175, 47.404938], [8.595681, 47.405751], [8.595855, 47.405723]]], "type": "MultiLineString"}, "id": "2511", "properties": {}, "type": "Feature"}, {"bbox": [8.501967, 47.392531, 8.50282, 47.393789], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.50282, 47.392673], [8.502136, 47.393169], [8.502047, 47.393251], [8.502027, 47.393273], [8.502009, 47.393296], [8.501995, 47.39332], [8.501983, 47.393345], [8.501974, 47.393371], [8.501969, 47.393396], [8.501967, 47.393422], [8.501968, 47.393449], [8.501973, 47.393474], [8.501981, 47.3935], [8.501992, 47.393525], [8.502188, 47.393789]]], "type": "MultiLineString"}, "id": "2515", "properties": {}, "type": "Feature"}, {"bbox": [8.5012, 47.361195, 8.506017, 47.368822], "geometry": {"coordinates": [[[8.506017, 47.361195], [8.505359, 47.361823], [8.50506, 47.362088], [8.504661, 47.362487], [8.504056, 47.363035], [8.503963, 47.363124], [8.503871, 47.363213], [8.503781, 47.363304], [8.503634, 47.363456], [8.503493, 47.36361], [8.503356, 47.363766], [8.50298, 47.364208], [8.502944, 47.364256], [8.502912, 47.364305], [8.502882, 47.364355], [8.502844, 47.364428], [8.502813, 47.364502], [8.502787, 47.364577], [8.502733, 47.364752], [8.502663, 47.364966], [8.502632, 47.365044], [8.502602, 47.365122], [8.502572, 47.3652], [8.502537, 47.365296], [8.502498, 47.365393], [8.502456, 47.365488], [8.502277, 47.365954], [8.502269, 47.365977], [8.502073, 47.366498], [8.502039, 47.366589], [8.502024, 47.36663], [8.501582, 47.367804], [8.50156, 47.367863], [8.501451, 47.368155], [8.50144, 47.368184], [8.5012, 47.368822]]], "type": "MultiLineString"}, "id": "2524", "properties": {}, "type": "Feature"}, {"bbox": [8.531287, 47.34351, 8.535499, 47.363924], "geometry": {"coordinates": [[[8.531384, 47.363924], [8.531336, 47.363607], [8.531297, 47.363362], [8.531287, 47.363116], [8.531306, 47.362871], [8.531368, 47.362374], [8.531401, 47.362111], [8.531486, 47.361417], [8.531516, 47.36107], [8.531524, 47.360971], [8.53157, 47.360771], [8.531629, 47.360574], [8.531702, 47.360378], [8.531834, 47.360112], [8.531904, 47.359951], [8.531927, 47.359909], [8.531948, 47.359867], [8.531968, 47.359824], [8.532, 47.359743], [8.532027, 47.359662], [8.532048, 47.359579], [8.532118, 47.359241], [8.532119, 47.359057], [8.532108, 47.358874], [8.532086, 47.358691], [8.532085, 47.358663], [8.532083, 47.358636], [8.532082, 47.358608], [8.532083, 47.358525], [8.532088, 47.358442], [8.532098, 47.358359], [8.53213, 47.358181], [8.53217, 47.357966], [8.532277, 47.357391], [8.532293, 47.357155], [8.532277, 47.356918], [8.532229, 47.356683], [8.532213, 47.356598], [8.532182, 47.356433], [8.532167, 47.356311], [8.532167, 47.356188], [8.532182, 47.356066], [8.532212, 47.355945], [8.532257, 47.355827], [8.532311, 47.355719], [8.532385, 47.355572], [8.532614, 47.355147], [8.532636, 47.355103], [8.532655, 47.355059], [8.532671, 47.355015], [8.532695, 47.354922], [8.532707, 47.354829], [8.532708, 47.354735], [8.532696, 47.354641], [8.532673, 47.354548], [8.532637, 47.354457], [8.532591, 47.354369], [8.532533, 47.354284], [8.532337, 47.354012], [8.532263, 47.353897], [8.532205, 47.353779], [8.532165, 47.353656], [8.532142, 47.353532], [8.531994, 47.35216], [8.531962, 47.351907], [8.531954, 47.351597], [8.531979, 47.351286], [8.532037, 47.350978], [8.532162, 47.350442], [8.532235, 47.350121], [8.532356, 47.349581], [8.532369, 47.349525], [8.532683, 47.348029], [8.532803, 47.34747], [8.532833, 47.347353], [8.532852, 47.347281], [8.532969, 47.346725], [8.533012, 47.346534], [8.533069, 47.346345], [8.53314, 47.346158], [8.533315, 47.345718], [8.533469, 47.345331], [8.533486, 47.345287], [8.533497, 47.345243], [8.533503, 47.345198], [8.533503, 47.345153], [8.533498, 47.345108], [8.533487, 47.345063], [8.53347, 47.345019], [8.533511, 47.345003], [8.53355, 47.344984], [8.533586, 47.344963], [8.53362, 47.344939], [8.53365, 47.344914], [8.533677, 47.344887], [8.533701, 47.344859], [8.533721, 47.34483], [8.533916, 47.344508], [8.534011, 47.344367], [8.534122, 47.344232], [8.53425, 47.344103], [8.534392, 47.343981], [8.534502, 47.343899], [8.534547, 47.343865], [8.534595, 47.343832], [8.534644, 47.3438], [8.534715, 47.34376], [8.534788, 47.343722], [8.534865, 47.343687], [8.534937, 47.343653], [8.535109, 47.343579], [8.535238, 47.343553], [8.535368, 47.34353], [8.535499, 47.34351]]], "type": "MultiLineString"}, "id": "2525", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.373789, 8.502528, 47.375749], "geometry": {"coordinates": [[[8.502528, 47.374233], [8.50197, 47.37406], [8.501841, 47.374023], [8.501381, 47.373904], [8.50121, 47.373864], [8.501036, 47.373833], [8.500859, 47.37381], [8.500626, 47.373792], [8.500391, 47.373789], [8.500157, 47.373801], [8.499926, 47.373827], [8.499149, 47.373948], [8.498451, 47.374057], [8.497588, 47.374191], [8.497435, 47.374215], [8.495711, 47.374486], [8.494473, 47.374679], [8.492704, 47.374955], [8.492476, 47.37499], [8.492411, 47.375], [8.492281, 47.375021], [8.491672, 47.375116], [8.490768, 47.375257], [8.49056, 47.375289], [8.490449, 47.375307], [8.489606, 47.375438], [8.48927, 47.375491], [8.48842, 47.375624], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "2545", "properties": {}, "type": "Feature"}, {"bbox": [8.535187, 47.430345, 8.536154, 47.430625], "geometry": {"coordinates": [[[8.536154, 47.430345], [8.535925, 47.430402], [8.535878, 47.430417], [8.535187, 47.430625]]], "type": "MultiLineString"}, "id": "2546", "properties": {}, "type": "Feature"}, {"bbox": [8.584779, 47.382251, 8.588393, 47.383728], "geometry": {"coordinates": [[[8.584779, 47.382251], [8.584948, 47.382405], [8.585013, 47.382465], [8.585083, 47.382523], [8.585159, 47.382576], [8.586023, 47.383114], [8.586111, 47.383163], [8.586203, 47.383209], [8.586298, 47.383253], [8.58643, 47.383305], [8.586568, 47.383351], [8.586711, 47.383389], [8.587616, 47.383587], [8.587857, 47.383639], [8.588101, 47.383685], [8.588347, 47.383723], [8.588393, 47.383728]]], "type": "MultiLineString"}, "id": "2547", "properties": {}, "type": "Feature"}, {"bbox": [8.590219, 47.359878, 8.59457, 47.365068], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.594409, 47.359956], [8.594382, 47.360187], [8.594338, 47.360417], [8.59428, 47.360645], [8.594232, 47.360752], [8.59417, 47.360856], [8.594096, 47.360956], [8.594008, 47.361051], [8.593909, 47.36114], [8.593397, 47.361652], [8.593317, 47.361736], [8.593127, 47.361966], [8.592968, 47.362206], [8.592842, 47.362455], [8.592838, 47.362465], [8.592835, 47.362475], [8.592834, 47.362486], [8.592834, 47.362496], [8.592835, 47.362506], [8.592838, 47.362516], [8.592842, 47.362526], [8.592847, 47.362536], [8.592853, 47.362545], [8.592861, 47.362554], [8.59287, 47.362563], [8.592879, 47.362571], [8.59289, 47.362578], [8.592902, 47.362585], [8.592914, 47.362591], [8.593096, 47.362684], [8.593001, 47.362803], [8.592921, 47.362868], [8.592848, 47.362938], [8.592785, 47.363012], [8.592731, 47.363089], [8.592687, 47.36317], [8.592653, 47.363252], [8.59263, 47.363336], [8.592618, 47.363397], [8.592598, 47.363458], [8.592572, 47.363517], [8.592538, 47.363574], [8.592498, 47.36363], [8.592451, 47.363683], [8.592398, 47.363733], [8.592061, 47.364113], [8.591983, 47.364229], [8.591803, 47.364497], [8.591785, 47.364521], [8.591764, 47.364543], [8.591741, 47.364564], [8.591715, 47.364583], [8.591686, 47.364601], [8.591655, 47.364616], [8.591622, 47.36463], [8.591587, 47.364642], [8.591523, 47.364662], [8.591012, 47.364819], [8.590553, 47.364955], [8.590219, 47.365068]]], "type": "MultiLineString"}, "id": "2559", "properties": {}, "type": "Feature"}, {"bbox": [8.46932, 47.389049, 8.46988, 47.389396], "geometry": {"coordinates": [[[8.46988, 47.389049], [8.469703, 47.389172], [8.469516, 47.389287], [8.46932, 47.389396]]], "type": "MultiLineString"}, "id": "2562", "properties": {}, "type": "Feature"}, {"bbox": [8.535188, 47.363583, 8.540023, 47.36599], "geometry": {"coordinates": [[[8.540023, 47.36599], [8.539799, 47.365878], [8.538956, 47.365456], [8.538822, 47.365389], [8.537776, 47.364868], [8.53694, 47.364451], [8.536229, 47.364095], [8.53543, 47.363696], [8.535354, 47.363654], [8.535273, 47.363616], [8.535188, 47.363583]]], "type": "MultiLineString"}, "id": "2563", "properties": {}, "type": "Feature"}, {"bbox": [8.518093, 47.385589, 8.520593, 47.386193], "geometry": {"coordinates": [[[8.520593, 47.385589], [8.520382, 47.385602], [8.518093, 47.386193]]], "type": "MultiLineString"}, "id": "2564", "properties": {}, "type": "Feature"}, {"bbox": [8.518126, 47.385566, 8.521211, 47.386209], "geometry": {"coordinates": [[[8.521211, 47.385723], [8.521184, 47.385697], [8.521153, 47.385674], [8.521119, 47.385652], [8.521082, 47.385632], [8.521043, 47.385615], [8.521002, 47.3856], [8.520959, 47.385588], [8.520914, 47.385578], [8.520869, 47.385571], [8.520822, 47.385567], [8.520776, 47.385566], [8.520729, 47.385568], [8.520683, 47.385572], [8.520637, 47.385579], [8.520593, 47.385589], [8.520357, 47.385634], [8.520127, 47.385689], [8.519902, 47.385755], [8.519669, 47.385817], [8.518126, 47.386209]]], "type": "MultiLineString"}, "id": "2637", "properties": {}, "type": "Feature"}, {"bbox": [8.555284, 47.425509, 8.557803, 47.425992], "geometry": {"coordinates": [[[8.557803, 47.425509], [8.557653, 47.425556], [8.557349, 47.425616], [8.557282, 47.425625], [8.557214, 47.425632], [8.557146, 47.425638], [8.55622, 47.425702], [8.556109, 47.42571], [8.555999, 47.425724], [8.555892, 47.425744], [8.555787, 47.42577], [8.555686, 47.425802], [8.55559, 47.42584], [8.555498, 47.425883], [8.555284, 47.425992]]], "type": "MultiLineString"}, "id": "2640", "properties": {}, "type": "Feature"}, {"bbox": [8.621274, 47.354624, 8.625403, 47.359841], "geometry": {"coordinates": [[[8.622491, 47.359841], [8.621991, 47.359583], [8.621966, 47.359569], [8.621943, 47.359553], [8.621922, 47.359537], [8.621903, 47.359519], [8.621887, 47.3595], [8.621873, 47.35948], [8.621861, 47.359459], [8.621852, 47.359438], [8.621846, 47.359417], [8.621844, 47.35941], [8.621842, 47.359403], [8.62184, 47.359396], [8.621837, 47.35938], [8.621835, 47.359364], [8.621833, 47.359348], [8.62183, 47.359305], [8.621825, 47.359261], [8.621818, 47.359218], [8.621809, 47.359173], [8.621798, 47.359127], [8.621784, 47.359082], [8.621772, 47.359042], [8.621763, 47.359001], [8.621756, 47.358959], [8.621748, 47.358881], [8.621741, 47.358802], [8.621737, 47.358723], [8.621736, 47.358695], [8.621733, 47.358667], [8.62173, 47.358639], [8.621721, 47.358587], [8.62171, 47.358535], [8.621697, 47.358483], [8.621682, 47.358436], [8.621662, 47.35839], [8.621637, 47.358345], [8.621583, 47.358258], [8.62153, 47.358171], [8.621478, 47.358083], [8.621429, 47.358002], [8.621381, 47.35792], [8.621333, 47.357839], [8.621308, 47.357789], [8.621289, 47.357738], [8.621278, 47.357685], [8.621274, 47.357644], [8.621275, 47.357602], [8.621282, 47.357561], [8.621294, 47.35752], [8.621336, 47.357419], [8.621392, 47.357321], [8.62146, 47.357227], [8.621475, 47.35721], [8.621491, 47.357193], [8.621509, 47.357177], [8.621932, 47.356907], [8.622287, 47.356728], [8.62273, 47.35643], [8.623189, 47.356049], [8.623242, 47.355995], [8.623287, 47.355938], [8.623325, 47.355879], [8.62335, 47.355822], [8.623364, 47.355793], [8.623374, 47.355761], [8.623388, 47.35573], [8.623407, 47.3557], [8.623429, 47.355671], [8.623455, 47.355644], [8.623484, 47.355618], [8.623517, 47.355594], [8.623552, 47.355573], [8.623767, 47.35544], [8.624036, 47.355284], [8.624311, 47.355136], [8.624797, 47.354867], [8.625049, 47.354732], [8.625239, 47.354657], [8.625403, 47.354624]]], "type": "MultiLineString"}, "id": "2656", "properties": {}, "type": "Feature"}, {"bbox": [8.538939, 47.398571, 8.543162, 47.399545], "geometry": {"coordinates": [[[8.538939, 47.398571], [8.539365, 47.39864], [8.540206, 47.398771], [8.541079, 47.398906], [8.54172, 47.399007], [8.541921, 47.399046], [8.542116, 47.399097], [8.542303, 47.39916], [8.54244, 47.39921], [8.542569, 47.399269], [8.54269, 47.399336], [8.542819, 47.3994], [8.542929, 47.399453], [8.543044, 47.399501], [8.543162, 47.399545]]], "type": "MultiLineString"}, "id": "2674", "properties": {}, "type": "Feature"}, {"bbox": [8.49198, 47.392205, 8.494458, 47.393535], "geometry": {"coordinates": [[[8.49198, 47.393535], [8.492347, 47.393434], [8.492391, 47.393419], [8.492433, 47.393401], [8.492473, 47.393381], [8.49251, 47.393359], [8.492544, 47.393334], [8.492575, 47.393308], [8.492602, 47.39328], [8.492626, 47.39325], [8.492646, 47.39322], [8.492666, 47.393165], [8.492679, 47.39311], [8.492684, 47.393054], [8.492682, 47.392998], [8.492671, 47.392942], [8.492654, 47.392887], [8.492488, 47.392438], [8.492432, 47.392294], [8.492496, 47.392205], [8.492577, 47.392251], [8.492876, 47.393062], [8.492892, 47.393096], [8.492914, 47.393128], [8.492939, 47.39316], [8.492968, 47.393189], [8.493001, 47.393217], [8.493038, 47.393242], [8.493078, 47.393266], [8.493121, 47.393286], [8.493166, 47.393304], [8.493213, 47.39332], [8.493263, 47.393332], [8.493313, 47.393341], [8.493365, 47.393347], [8.493417, 47.39335], [8.493553, 47.393352], [8.493689, 47.39335], [8.493824, 47.393346], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "2684", "properties": {}, "type": "Feature"}, {"bbox": [8.533568, 47.391849, 8.538556, 47.397787], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538447, 47.391997], [8.538287, 47.392291], [8.538144, 47.392602], [8.538016, 47.392879], [8.537714, 47.393352], [8.537591, 47.393561], [8.537472, 47.393764], [8.537137, 47.39428], [8.537058, 47.394385], [8.536941, 47.394508], [8.536813, 47.394625], [8.536676, 47.394738], [8.536573, 47.394811], [8.536092, 47.395148], [8.534715, 47.396081], [8.534511, 47.396229], [8.534301, 47.3964], [8.534118, 47.396584], [8.533963, 47.39678], [8.53389, 47.396892], [8.533827, 47.397006], [8.533773, 47.397122], [8.533568, 47.397787]]], "type": "MultiLineString"}, "id": "2693", "properties": {}, "type": "Feature"}, {"bbox": [8.498618, 47.370148, 8.509807, 47.3776], "geometry": {"coordinates": [[[8.509807, 47.370148], [8.509637, 47.37024], [8.508961, 47.370575], [8.508502, 47.370806], [8.508348, 47.370883], [8.506303, 47.371905], [8.506152, 47.371986], [8.505799, 47.372173], [8.505559, 47.372299], [8.50532, 47.372426], [8.50508, 47.372552], [8.504687, 47.372771], [8.504303, 47.372997], [8.503929, 47.373231], [8.503637, 47.373421], [8.503352, 47.373617], [8.503073, 47.373816], [8.502888, 47.373953], [8.502707, 47.374092], [8.502528, 47.374233], [8.502253, 47.374458], [8.502177, 47.374521], [8.502103, 47.374585], [8.50203, 47.374649], [8.500753, 47.375773], [8.500461, 47.376034], [8.500168, 47.376294], [8.499873, 47.376553], [8.499518, 47.376873], [8.499239, 47.377127], [8.498939, 47.37737], [8.498618, 47.3776]]], "type": "MultiLineString"}, "id": "2714", "properties": {}, "type": "Feature"}, {"bbox": [8.551051, 47.414237, 8.563525, 47.415709], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.551711, 47.414298], [8.552866, 47.4144], [8.553215, 47.414425], [8.554118, 47.414467], [8.554393, 47.414473], [8.556641, 47.414508], [8.557752, 47.414528], [8.558943, 47.41455], [8.559399, 47.414559], [8.559431, 47.414559], [8.559986, 47.414608], [8.560533, 47.414688], [8.561068, 47.414799], [8.561401, 47.414886], [8.561726, 47.414984], [8.562043, 47.415095], [8.562586, 47.41532], [8.563525, 47.415709]]], "type": "MultiLineString"}, "id": "2715", "properties": {}, "type": "Feature"}, {"bbox": [8.534746, 47.372702, 8.541857, 47.374687], "geometry": {"coordinates": [[[8.541857, 47.374414], [8.541694, 47.37442], [8.541447, 47.374428], [8.540388, 47.374467], [8.539942, 47.374488], [8.53965, 47.3745], [8.539341, 47.374518], [8.538671, 47.374582], [8.538606, 47.374588], [8.537985, 47.374664], [8.537918, 47.374671], [8.537851, 47.374678], [8.537815, 47.374681], [8.537779, 47.374684], [8.537743, 47.374685], [8.537601, 47.374687], [8.537459, 47.37468], [8.537319, 47.374664], [8.537289, 47.37466], [8.537259, 47.374655], [8.53723, 47.37465], [8.537132, 47.374629], [8.537038, 47.374603], [8.536947, 47.374571], [8.53686, 47.374534], [8.536779, 47.374492], [8.536703, 47.374445], [8.536633, 47.374395], [8.53657, 47.37434], [8.53634, 47.374103], [8.536031, 47.373782], [8.536006, 47.373756], [8.535908, 47.373655], [8.535786, 47.373527], [8.535416, 47.373144], [8.535103, 47.372818], [8.535084, 47.3728], [8.535064, 47.372783], [8.535041, 47.372768], [8.535017, 47.372754], [8.534991, 47.372741], [8.534963, 47.37273], [8.534934, 47.372721], [8.534904, 47.372714], [8.534873, 47.372708], [8.534842, 47.372704], [8.53481, 47.372702], [8.534778, 47.372702], [8.534746, 47.372704]]], "type": "MultiLineString"}, "id": "2729", "properties": {}, "type": "Feature"}, {"bbox": [8.547317, 47.362396, 8.55325, 47.36517], "geometry": {"coordinates": [[[8.547317, 47.362396], [8.548279, 47.362677], [8.548538, 47.36276], [8.549025, 47.36294], [8.549703, 47.3632], [8.550446, 47.363543], [8.550495, 47.363564], [8.55071, 47.363659], [8.550966, 47.363771], [8.551021, 47.363795], [8.55147, 47.364012], [8.551825, 47.364187], [8.552144, 47.364343], [8.552445, 47.364491], [8.552459, 47.364498], [8.552472, 47.364505], [8.552485, 47.364513], [8.552505, 47.364526], [8.552524, 47.364541], [8.552541, 47.364557], [8.553246, 47.365166], [8.55325, 47.36517]]], "type": "MultiLineString"}, "id": "2747", "properties": {}, "type": "Feature"}, {"bbox": [8.513053, 47.411765, 8.518941, 47.414144], "geometry": {"coordinates": [[[8.518941, 47.414144], [8.518906, 47.414125], [8.518873, 47.414104], [8.518843, 47.414081], [8.518817, 47.414056], [8.518794, 47.41403], [8.518775, 47.414002], [8.518723, 47.413908], [8.518661, 47.413818], [8.518588, 47.413731], [8.518568, 47.413705], [8.518545, 47.41368], [8.518519, 47.413656], [8.518505, 47.413645], [8.51849, 47.413634], [8.518475, 47.413623], [8.517351, 47.412866], [8.517258, 47.412806], [8.516998, 47.412638], [8.516898, 47.412574], [8.516805, 47.412528], [8.516707, 47.412487], [8.516604, 47.412453], [8.516497, 47.412424], [8.516387, 47.412402], [8.516275, 47.412387], [8.515144, 47.412302], [8.515053, 47.412292], [8.514961, 47.412281], [8.51487, 47.412268], [8.514519, 47.412201], [8.514177, 47.412116], [8.513845, 47.412014], [8.513585, 47.411925], [8.513321, 47.411842], [8.513053, 47.411765]]], "type": "MultiLineString"}, "id": "2748", "properties": {}, "type": "Feature"}, {"bbox": [8.560441, 47.370935, 8.56045, 47.371063], "geometry": {"coordinates": [[[8.560441, 47.370935], [8.560447, 47.370977], [8.56045, 47.37102], [8.560449, 47.371063]]], "type": "MultiLineString"}, "id": "2781", "properties": {}, "type": "Feature"}, {"bbox": [8.549143, 47.429808, 8.549468, 47.430003], "geometry": {"coordinates": [[[8.549143, 47.429808], [8.549296, 47.429986], [8.549468, 47.430003]]], "type": "MultiLineString"}, "id": "2784", "properties": {}, "type": "Feature"}, {"bbox": [8.529238, 47.366545, 8.531558, 47.368234], "geometry": {"coordinates": [[[8.531558, 47.366545], [8.531306, 47.366753], [8.530662, 47.367211], [8.529722, 47.367886], [8.529238, 47.368234]]], "type": "MultiLineString"}, "id": "2785", "properties": {}, "type": "Feature"}, {"bbox": [8.531632, 47.365897, 8.532207, 47.366592], "geometry": {"coordinates": [[[8.532207, 47.365897], [8.532148, 47.365999], [8.532018, 47.366194], [8.53185, 47.366384], [8.531632, 47.366592]]], "type": "MultiLineString"}, "id": "2787", "properties": {}, "type": "Feature"}, {"bbox": [8.529406, 47.366642, 8.53171, 47.36834], "geometry": {"coordinates": [[[8.53171, 47.366642], [8.531343, 47.366932], [8.530194, 47.367756], [8.529685, 47.36812], [8.529406, 47.36834]]], "type": "MultiLineString"}, "id": "2788", "properties": {}, "type": "Feature"}, {"bbox": [8.547646, 47.42814, 8.549369, 47.429717], "geometry": {"coordinates": [[[8.547646, 47.428169], [8.547689, 47.42814], [8.548025, 47.428383], [8.548337, 47.428639], [8.548624, 47.42891], [8.54889, 47.429171], [8.549139, 47.42944], [8.549369, 47.429717]]], "type": "MultiLineString"}, "id": "2790", "properties": {}, "type": "Feature"}, {"bbox": [8.53171, 47.365855, 8.532294, 47.366642], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532294, 47.366022], [8.532134, 47.366224], [8.531874, 47.366533], [8.531818, 47.366589], [8.53171, 47.366642]]], "type": "MultiLineString"}, "id": "2794", "properties": {}, "type": "Feature"}, {"bbox": [8.548757, 47.400223, 8.552272, 47.402058], "geometry": {"coordinates": [[[8.552272, 47.402058], [8.55173, 47.401799], [8.551184, 47.401543], [8.550634, 47.401291], [8.548757, 47.400223]]], "type": "MultiLineString"}, "id": "2796", "properties": {}, "type": "Feature"}, {"bbox": [8.586298, 47.382493, 8.588412, 47.383253], "geometry": {"coordinates": [[[8.586298, 47.383253], [8.586548, 47.383175], [8.58695, 47.383075], [8.587446, 47.382981], [8.587479, 47.382974], [8.587512, 47.382966], [8.587543, 47.382955], [8.587572, 47.382943], [8.5876, 47.382929], [8.587627, 47.382914], [8.587651, 47.382897], [8.587673, 47.382878], [8.587693, 47.382859], [8.58771, 47.382839], [8.587724, 47.382817], [8.587887, 47.382526], [8.587934, 47.382538], [8.587982, 47.382546], [8.588031, 47.382552], [8.588081, 47.382555], [8.588131, 47.382555], [8.588181, 47.382551], [8.58823, 47.382545], [8.588278, 47.382536], [8.588325, 47.382524], [8.58837, 47.38251], [8.588412, 47.382493]]], "type": "MultiLineString"}, "id": "2809", "properties": {}, "type": "Feature"}, {"bbox": [8.492889, 47.397124, 8.493146, 47.398006], "geometry": {"coordinates": [[[8.492889, 47.397124], [8.493146, 47.398006]]], "type": "MultiLineString"}, "id": "2817", "properties": {}, "type": "Feature"}, {"bbox": [8.50839, 47.385075, 8.512123, 47.389632], "geometry": {"coordinates": [[[8.50839, 47.385075], [8.508475, 47.385164], [8.508549, 47.385259], [8.50861, 47.385357], [8.508658, 47.385458], [8.508693, 47.385562], [8.508961, 47.386414], [8.509576, 47.388338], [8.509729, 47.388717], [8.509771, 47.38879], [8.509822, 47.38886], [8.509883, 47.388928], [8.509951, 47.388991], [8.510028, 47.38905], [8.510111, 47.389104], [8.510202, 47.389153], [8.510298, 47.389197], [8.5104, 47.389234], [8.510506, 47.389266], [8.510615, 47.389291], [8.510728, 47.389309], [8.511276, 47.389388], [8.511489, 47.389413], [8.51171, 47.389472], [8.511922, 47.389545], [8.512123, 47.389632]]], "type": "MultiLineString"}, "id": "2829", "properties": {}, "type": "Feature"}, {"bbox": [8.536033, 47.377623, 8.536485, 47.37801], "geometry": {"coordinates": [[[8.536033, 47.377623], [8.536178, 47.377761], [8.536274, 47.377848], [8.536376, 47.377931], [8.536485, 47.37801]]], "type": "MultiLineString"}, "id": "2832", "properties": {}, "type": "Feature"}, {"bbox": [8.560315, 47.375496, 8.563846, 47.376772], "geometry": {"coordinates": [[[8.560315, 47.376719], [8.560374, 47.376727], [8.560739, 47.376769], [8.560814, 47.376772], [8.56089, 47.37677], [8.560964, 47.376764], [8.561038, 47.376754], [8.56111, 47.376739], [8.56118, 47.37672], [8.561316, 47.376668], [8.561433, 47.376618], [8.561546, 47.376563], [8.561654, 47.376503], [8.561777, 47.37643], [8.561978, 47.376306], [8.562143, 47.376211], [8.56232, 47.376126], [8.562506, 47.376051], [8.5627, 47.375987], [8.562901, 47.375934], [8.563108, 47.375891], [8.563311, 47.375856], [8.563369, 47.375845], [8.563425, 47.375831], [8.563479, 47.375814], [8.563531, 47.375793], [8.56358, 47.37577], [8.563619, 47.375749], [8.563656, 47.375726], [8.56369, 47.375702], [8.563763, 47.375637], [8.563793, 47.375591], [8.56382, 47.375544], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "2842", "properties": {}, "type": "Feature"}, {"bbox": [8.560918, 47.364709, 8.566043, 47.367457], "geometry": {"coordinates": [[[8.560918, 47.367457], [8.561075, 47.367267], [8.561336, 47.366952], [8.561432, 47.366845], [8.561534, 47.36674], [8.561642, 47.366639], [8.56188, 47.366449], [8.562137, 47.366271], [8.562411, 47.366105], [8.562534, 47.366037], [8.56266, 47.365972], [8.562788, 47.36591], [8.562952, 47.365836], [8.56312, 47.365766], [8.563291, 47.3657], [8.563333, 47.365685], [8.563374, 47.365671], [8.563416, 47.365658], [8.564228, 47.365365], [8.5645, 47.365266], [8.566043, 47.364709]]], "type": "MultiLineString"}, "id": "2857", "properties": {}, "type": "Feature"}, {"bbox": [8.503367, 47.398968, 8.514532, 47.411352], "geometry": {"coordinates": [[[8.514532, 47.399112], [8.514495, 47.399104], [8.514308, 47.399063], [8.514118, 47.399029], [8.513925, 47.399002], [8.513656, 47.398977], [8.513386, 47.398968], [8.513115, 47.398974], [8.513018, 47.39898], [8.512922, 47.398989], [8.512825, 47.398999], [8.512618, 47.399026], [8.512413, 47.399061], [8.512212, 47.399104], [8.511822, 47.399198], [8.511446, 47.399315], [8.511087, 47.399452], [8.511073, 47.399458], [8.511059, 47.399464], [8.511045, 47.39947], [8.510879, 47.399549], [8.510721, 47.399634], [8.51057, 47.399725], [8.51056, 47.399731], [8.51055, 47.399738], [8.51054, 47.399744], [8.510375, 47.39987], [8.510222, 47.400003], [8.510081, 47.400142], [8.509761, 47.400494], [8.509606, 47.400655], [8.509445, 47.400812], [8.509278, 47.400966], [8.508943, 47.401278], [8.508793, 47.401407], [8.508606, 47.401569], [8.508263, 47.401848], [8.50803, 47.402059], [8.507802, 47.402272], [8.507578, 47.402487], [8.507374, 47.402691], [8.5073, 47.402768], [8.507137, 47.402935], [8.506615, 47.4035], [8.506585, 47.403532], [8.505851, 47.404316], [8.505783, 47.404389], [8.505397, 47.404795], [8.505233, 47.404949], [8.504978, 47.405203], [8.504171, 47.406132], [8.503866, 47.406506], [8.503699, 47.406712], [8.503578, 47.406904], [8.503484, 47.407103], [8.503417, 47.407306], [8.503378, 47.407514], [8.503367, 47.407722], [8.50337, 47.407797], [8.503377, 47.407871], [8.503387, 47.407946], [8.50343, 47.408135], [8.503498, 47.408321], [8.503589, 47.408503], [8.503703, 47.408678], [8.50384, 47.408846], [8.504024, 47.409029], [8.504868, 47.40994], [8.50518, 47.410307], [8.505498, 47.410671], [8.505822, 47.411033], [8.505904, 47.411136], [8.505977, 47.411243], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "2862", "properties": {}, "type": "Feature"}, {"bbox": [8.488061, 47.382277, 8.491784, 47.389987], "geometry": {"coordinates": [[[8.491784, 47.389987], [8.49141, 47.389022], [8.491247, 47.388647], [8.491115, 47.388303], [8.491048, 47.388258], [8.491005, 47.388134], [8.490957, 47.388005], [8.490808, 47.387629], [8.490506, 47.386835], [8.490403, 47.386606], [8.490237, 47.386283], [8.490224, 47.386261], [8.48994, 47.385736], [8.489526, 47.384974], [8.489156, 47.384294], [8.488061, 47.382277]]], "type": "MultiLineString"}, "id": "2863", "properties": {}, "type": "Feature"}, {"bbox": [8.540023, 47.36599, 8.542408, 47.366751], "geometry": {"coordinates": [[[8.541802, 47.36674], [8.542389, 47.366751], [8.542408, 47.3667], [8.542307, 47.366679], [8.542208, 47.366651], [8.542113, 47.366618], [8.542023, 47.366579], [8.541877, 47.366527], [8.541726, 47.366483], [8.541569, 47.366448], [8.540863, 47.36631], [8.540702, 47.366252], [8.540546, 47.36619], [8.540393, 47.366124], [8.540269, 47.36608], [8.540146, 47.366035], [8.540023, 47.36599], [8.540526, 47.366286], [8.540537, 47.366309], [8.540544, 47.366333], [8.540548, 47.366356], [8.540549, 47.36638], [8.540547, 47.366404], [8.540541, 47.366428], [8.540644, 47.366463], [8.540746, 47.366499], [8.540847, 47.366536], [8.541545, 47.366672], [8.541802, 47.36674]]], "type": "MultiLineString"}, "id": "2866", "properties": {}, "type": "Feature"}, {"bbox": [8.540901, 47.379931, 8.542561, 47.382427], "geometry": {"coordinates": [[[8.542561, 47.379931], [8.542322, 47.380261], [8.541429, 47.381494], [8.540916, 47.382191], [8.540901, 47.38228], [8.540944, 47.382364], [8.541037, 47.382427]]], "type": "MultiLineString"}, "id": "2872", "properties": {}, "type": "Feature"}, {"bbox": [8.493744, 47.408823, 8.496008, 47.409579], "geometry": {"coordinates": [[[8.496008, 47.408823], [8.495691, 47.40896], [8.495355, 47.409075], [8.495004, 47.409167], [8.494649, 47.409258], [8.494297, 47.409355], [8.493949, 47.409459], [8.493744, 47.409579]]], "type": "MultiLineString"}, "id": "2890", "properties": {}, "type": "Feature"}, {"bbox": [8.516091, 47.337766, 8.517671, 47.341875], "geometry": {"coordinates": [[[8.517671, 47.341875], [8.517463, 47.341476], [8.517144, 47.340965], [8.517019, 47.340787], [8.516875, 47.34058], [8.516741, 47.340367], [8.516468, 47.34], [8.516453, 47.339976], [8.516399, 47.339887], [8.516193, 47.33955], [8.516148, 47.339453], [8.516116, 47.339352], [8.516097, 47.339251], [8.516091, 47.339148], [8.516098, 47.339046], [8.516118, 47.338944], [8.516182, 47.338752], [8.516304, 47.338502], [8.51646, 47.33826], [8.516649, 47.33803], [8.516754, 47.33791], [8.516844, 47.337785], [8.516855, 47.337766]]], "type": "MultiLineString"}, "id": "2892", "properties": {}, "type": "Feature"}, {"bbox": [8.53353, 47.36337, 8.535188, 47.363583], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535073, 47.363538], [8.534954, 47.363499], [8.53483, 47.363467], [8.534702, 47.363441], [8.534572, 47.363423], [8.534441, 47.363412], [8.534381, 47.363409], [8.53424, 47.363401], [8.53353, 47.36337]]], "type": "MultiLineString"}, "id": "2897", "properties": {}, "type": "Feature"}, {"bbox": [8.53536, 47.370827, 8.535713, 47.371079], "geometry": {"coordinates": [[[8.535713, 47.371079], [8.535606, 47.371011], [8.53536, 47.370827]]], "type": "MultiLineString"}, "id": "2900", "properties": {}, "type": "Feature"}, {"bbox": [8.535499, 47.334807, 8.541813, 47.34351], "geometry": {"coordinates": [[[8.535499, 47.34351], [8.535743, 47.343187], [8.536047, 47.342762], [8.53629, 47.342423], [8.536561, 47.342045], [8.536618, 47.341959], [8.536675, 47.341874], [8.536731, 47.341788], [8.536786, 47.341691], [8.53684, 47.341594], [8.536892, 47.341497], [8.537139, 47.340982], [8.537323, 47.34061], [8.538223, 47.33881], [8.538281, 47.338698], [8.538501, 47.33826], [8.538588, 47.338107], [8.538647, 47.338004], [8.538829, 47.337644], [8.538854, 47.337589], [8.538879, 47.337533], [8.538903, 47.337477], [8.539139, 47.337068], [8.539206, 47.336967], [8.539277, 47.336866], [8.539352, 47.336767], [8.539579, 47.336508], [8.539837, 47.336263], [8.540123, 47.336033], [8.540204, 47.335971], [8.541813, 47.334807]]], "type": "MultiLineString"}, "id": "2904", "properties": {}, "type": "Feature"}, {"bbox": [8.483114, 47.414238, 8.483542, 47.417773], "geometry": {"coordinates": [[[8.483542, 47.414238], [8.483459, 47.41491], [8.483296, 47.416235], [8.483201, 47.417028], [8.483129, 47.417647], [8.483114, 47.417773]]], "type": "MultiLineString"}, "id": "2905", "properties": {}, "type": "Feature"}, {"bbox": [8.489664, 47.388072, 8.48991, 47.388671], "geometry": {"coordinates": [[[8.48991, 47.388671], [8.489857, 47.388566], [8.489664, 47.388072]]], "type": "MultiLineString"}, "id": "2918", "properties": {}, "type": "Feature"}, {"bbox": [8.547846, 47.400648, 8.548524, 47.403337], "geometry": {"coordinates": [[[8.548524, 47.400648], [8.548377, 47.40105], [8.548124, 47.401704], [8.548062, 47.401864], [8.548029, 47.401964], [8.548002, 47.402065], [8.54798, 47.402167], [8.547871, 47.402619], [8.547849, 47.402796], [8.547846, 47.402973], [8.547864, 47.40315], [8.547898, 47.403214], [8.547938, 47.403276], [8.547983, 47.403337]]], "type": "MultiLineString"}, "id": "2924", "properties": {}, "type": "Feature"}, {"bbox": [8.519106, 47.386063, 8.521446, 47.387242], "geometry": {"coordinates": [[[8.521446, 47.386063], [8.521439, 47.386086], [8.52143, 47.386108], [8.521418, 47.386129], [8.521403, 47.38615], [8.521386, 47.38617], [8.521367, 47.386189], [8.521345, 47.386206], [8.521321, 47.386223], [8.521295, 47.386237], [8.520693, 47.386511], [8.519106, 47.387242]]], "type": "MultiLineString"}, "id": "2937", "properties": {}, "type": "Feature"}, {"bbox": [8.529117, 47.378943, 8.529746, 47.379527], "geometry": {"coordinates": [[[8.529117, 47.378943], [8.529746, 47.379527]]], "type": "MultiLineString"}, "id": "2941", "properties": {}, "type": "Feature"}, {"bbox": [8.499924, 47.387242, 8.519106, 47.393426], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518829, 47.387384], [8.51791, 47.38784], [8.517299, 47.388124], [8.516615, 47.388419], [8.516089, 47.388649], [8.51578, 47.388747], [8.514669, 47.389111], [8.514449, 47.389188], [8.514222, 47.389255], [8.513988, 47.38931], [8.513039, 47.389485], [8.512123, 47.389632], [8.5117, 47.389743], [8.511275, 47.389852], [8.51085, 47.389961], [8.510029, 47.390207], [8.508545, 47.390652], [8.506355, 47.391308], [8.505445, 47.391584], [8.503526, 47.39216], [8.503372, 47.392212], [8.503226, 47.392274], [8.50309, 47.392346], [8.502802, 47.392531], [8.502663, 47.392534], [8.502005, 47.393028], [8.501904, 47.393101], [8.501793, 47.393168], [8.501674, 47.393228], [8.501548, 47.39328], [8.501414, 47.393323], [8.501276, 47.393359], [8.501133, 47.393386], [8.500988, 47.393403], [8.50084, 47.393412], [8.500692, 47.393411], [8.50033, 47.393407], [8.499924, 47.393426]]], "type": "MultiLineString"}, "id": "2947", "properties": {}, "type": "Feature"}, {"bbox": [8.519057, 47.362747, 8.521385, 47.365088], "geometry": {"coordinates": [[[8.521385, 47.365088], [8.521178, 47.364776], [8.521052, 47.364597], [8.520996, 47.36452], [8.520932, 47.364445], [8.520862, 47.364373], [8.52035, 47.363917], [8.520244, 47.363822], [8.519961, 47.363566], [8.519057, 47.362747]]], "type": "MultiLineString"}, "id": "2956", "properties": {}, "type": "Feature"}, {"bbox": [8.52235, 47.377593, 8.525167, 47.380591], "geometry": {"coordinates": [[[8.52235, 47.377593], [8.52251, 47.377827], [8.522782, 47.378198], [8.523025, 47.378522], [8.523063, 47.378574], [8.523104, 47.378626], [8.523147, 47.378677], [8.523209, 47.378745], [8.523275, 47.378811], [8.523345, 47.378876], [8.523939, 47.379443], [8.524091, 47.379564], [8.524403, 47.379863], [8.524888, 47.380324], [8.525167, 47.380591]]], "type": "MultiLineString"}, "id": "2961", "properties": {}, "type": "Feature"}, {"bbox": [8.520315, 47.369694, 8.527768, 47.373034], "geometry": {"coordinates": [[[8.527768, 47.373034], [8.52774, 47.37302], [8.527711, 47.373006], [8.527682, 47.372993], [8.527124, 47.372755], [8.527065, 47.372729], [8.527009, 47.3727], [8.526956, 47.372668], [8.526908, 47.372633], [8.526864, 47.372596], [8.526825, 47.372556], [8.526791, 47.372515], [8.526689, 47.372318], [8.526686, 47.37231], [8.526682, 47.372301], [8.526678, 47.372293], [8.526657, 47.372272], [8.526632, 47.372253], [8.526605, 47.372235], [8.526576, 47.37222], [8.526394, 47.372081], [8.526195, 47.371952], [8.525982, 47.371836], [8.525873, 47.371797], [8.525762, 47.371763], [8.525648, 47.371733], [8.525169, 47.371577], [8.525068, 47.371542], [8.524968, 47.371508], [8.524866, 47.371474], [8.524737, 47.371432], [8.524608, 47.371391], [8.524477, 47.371351], [8.524187, 47.371268], [8.523897, 47.371184], [8.523607, 47.371099], [8.523411, 47.371039], [8.522214, 47.370621], [8.521551, 47.370388], [8.521508, 47.370371], [8.521466, 47.370354], [8.521423, 47.370337], [8.521259, 47.370268], [8.521077, 47.370186], [8.52063, 47.369956], [8.520538, 47.369898], [8.520455, 47.369835], [8.52038, 47.369767], [8.520315, 47.369694]]], "type": "MultiLineString"}, "id": "2962", "properties": {}, "type": "Feature"}, {"bbox": [8.495757, 47.420622, 8.502704, 47.422636], "geometry": {"coordinates": [[[8.502704, 47.420638], [8.50264, 47.420629], [8.502574, 47.420623], [8.502509, 47.420622], [8.502443, 47.420623], [8.502378, 47.420629], [8.502314, 47.420638], [8.501569, 47.42085], [8.500473, 47.421166], [8.500046, 47.421309], [8.499638, 47.421476], [8.499251, 47.421665], [8.49899, 47.421784], [8.498723, 47.421897], [8.498451, 47.422004], [8.498295, 47.422053], [8.498135, 47.422098], [8.497974, 47.422139], [8.496948, 47.422378], [8.496657, 47.422443], [8.496292, 47.422527], [8.496115, 47.422566], [8.495936, 47.422603], [8.495757, 47.422636]]], "type": "MultiLineString"}, "id": "2968", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.372033, 8.529531, 47.37309], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529357, 47.372064], [8.528769, 47.372561], [8.528735, 47.372571], [8.528702, 47.372583], [8.528671, 47.372597], [8.528641, 47.372612], [8.528614, 47.372629], [8.528588, 47.372648], [8.528565, 47.372668], [8.528322, 47.372849], [8.528224, 47.372925], [8.528135, 47.373005], [8.528055, 47.37309]]], "type": "MultiLineString"}, "id": "2977", "properties": {}, "type": "Feature"}, {"bbox": [8.488871, 47.392134, 8.502802, 47.393111], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.502407, 47.392319], [8.502326, 47.392278], [8.50224, 47.392241], [8.50215, 47.39221], [8.502056, 47.392183], [8.50196, 47.392163], [8.501861, 47.392147], [8.50176, 47.392138], [8.501659, 47.392134], [8.501558, 47.392136], [8.49582, 47.392158], [8.495767, 47.392158], [8.495633, 47.392163], [8.495498, 47.392168], [8.495364, 47.392173], [8.495082, 47.392191], [8.494884, 47.392207], [8.49481, 47.392214], [8.494736, 47.392219], [8.494662, 47.392223], [8.494591, 47.392222], [8.49452, 47.392219], [8.49445, 47.392212], [8.494232, 47.392184], [8.494012, 47.392171], [8.49379, 47.392172], [8.493526, 47.392171], [8.4934, 47.392168], [8.493274, 47.392168], [8.493148, 47.392169], [8.49293, 47.392175], [8.492712, 47.392187], [8.492496, 47.392205], [8.492334, 47.392222], [8.492175, 47.392245], [8.492018, 47.392274], [8.491478, 47.392399], [8.491226, 47.392468], [8.490972, 47.392537], [8.490852, 47.39257], [8.489928, 47.392823], [8.488871, 47.393111]]], "type": "MultiLineString"}, "id": "2979", "properties": {}, "type": "Feature"}, {"bbox": [8.507853, 47.370663, 8.51679, 47.3778], "geometry": {"coordinates": [[[8.51679, 47.370663], [8.516044, 47.371459], [8.515909, 47.37159], [8.515652, 47.371833], [8.515406, 47.372072], [8.51516, 47.37231], [8.514424, 47.373018], [8.514346, 47.373093], [8.514011, 47.373414], [8.513929, 47.373491], [8.513509, 47.373888], [8.513399, 47.373985], [8.512555, 47.374656], [8.512541, 47.374667], [8.512527, 47.374678], [8.512513, 47.374688], [8.512344, 47.374816], [8.51217, 47.37494], [8.511991, 47.375062], [8.511711, 47.37525], [8.511077, 47.375676], [8.510744, 47.375893], [8.510307, 47.376178], [8.509982, 47.376393], [8.509902, 47.376446], [8.509034, 47.377021], [8.508916, 47.3771], [8.508846, 47.377146], [8.507853, 47.3778]]], "type": "MultiLineString"}, "id": "2980", "properties": {}, "type": "Feature"}, {"bbox": [8.542518, 47.378726, 8.542933, 47.380439], "geometry": {"coordinates": [[[8.542518, 47.378726], [8.54265, 47.378758], [8.54268, 47.378762], [8.542709, 47.378768], [8.542736, 47.378776], [8.542763, 47.378786], [8.542789, 47.378797], [8.542812, 47.37881], [8.542834, 47.378824], [8.542855, 47.378839], [8.542873, 47.378855], [8.542889, 47.378873], [8.542903, 47.378891], [8.542914, 47.37891], [8.542923, 47.37893], [8.542929, 47.37895], [8.542932, 47.37897], [8.542933, 47.378991], [8.542932, 47.379011], [8.542927, 47.379031], [8.54292, 47.379051], [8.542918, 47.379059], [8.542915, 47.379067], [8.542912, 47.379074], [8.542637, 47.379691], [8.542623, 47.379724], [8.542572, 47.379851], [8.542565, 47.379878], [8.542561, 47.379904], [8.542561, 47.379931]], [[8.542561, 47.379931], [8.542563, 47.379953], [8.542567, 47.379974], [8.542574, 47.379995], [8.542584, 47.380016], [8.542596, 47.380036], [8.54261, 47.380056], [8.542656, 47.38011], [8.542702, 47.380165], [8.54275, 47.380218], [8.542767, 47.380241], [8.54278, 47.380265], [8.54279, 47.380289], [8.542796, 47.380314], [8.5428, 47.380339], [8.5428, 47.380364], [8.542797, 47.38039], [8.542791, 47.380415], [8.542781, 47.380439]]], "type": "MultiLineString"}, "id": "2981", "properties": {}, "type": "Feature"}, {"bbox": [8.540857, 47.374933, 8.540925, 47.375451], "geometry": {"coordinates": [[[8.540857, 47.374933], [8.54092, 47.375272], [8.540924, 47.375293], [8.540925, 47.375314], [8.540924, 47.375335], [8.54092, 47.375355], [8.540914, 47.375376], [8.540904, 47.375396], [8.540893, 47.375415], [8.540878, 47.375434], [8.540861, 47.375451]]], "type": "MultiLineString"}, "id": "2982", "properties": {}, "type": "Feature"}, {"bbox": [8.548034, 47.419589, 8.556325, 47.427505], "geometry": {"coordinates": [[[8.548034, 47.419589], [8.548193, 47.419744], [8.548598, 47.420138], [8.548651, 47.420192], [8.548752, 47.420295], [8.549591, 47.421104], [8.549661, 47.421178], [8.550012, 47.421543], [8.550363, 47.421908], [8.550501, 47.422073], [8.550542, 47.422122], [8.550657, 47.422264], [8.550789, 47.422432], [8.550932, 47.422614], [8.551053, 47.422759], [8.551345, 47.423111], [8.551385, 47.423154], [8.55151, 47.423286], [8.551671, 47.423445], [8.552935, 47.424695], [8.553298, 47.425091], [8.55398, 47.425752], [8.554616, 47.426329], [8.554806, 47.426502], [8.554895, 47.426573], [8.554986, 47.426644], [8.555078, 47.426713], [8.555233, 47.426827], [8.555391, 47.426939], [8.555553, 47.427048], [8.555684, 47.427128], [8.556325, 47.427505]]], "type": "MultiLineString"}, "id": "2983", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380449, 8.525877, 47.380708], "geometry": {"coordinates": [[[8.525167, 47.380591], [8.525196, 47.380612], [8.525227, 47.380632], [8.52526, 47.380649], [8.525296, 47.380664], [8.525333, 47.380678], [8.525372, 47.380688], [8.525412, 47.380697], [8.525453, 47.380703], [8.525495, 47.380707], [8.525537, 47.380708], [8.525579, 47.380706], [8.525621, 47.380702], [8.525662, 47.380696], [8.525702, 47.380687], [8.525741, 47.380676], [8.525778, 47.380662], [8.525813, 47.380647], [8.525846, 47.380629], [8.525877, 47.380609], [8.525767, 47.38055], [8.52567, 47.380465], [8.525652, 47.380449]]], "type": "MultiLineString"}, "id": "2986", "properties": {}, "type": "Feature"}, {"bbox": [8.564142, 47.375497, 8.567502, 47.376222], "geometry": {"coordinates": [[[8.564142, 47.375497], [8.564196, 47.375508], [8.564247, 47.375522], [8.564297, 47.375539], [8.564345, 47.375558], [8.565338, 47.375918], [8.565466, 47.375957], [8.565599, 47.375986], [8.565735, 47.376006], [8.565833, 47.376019], [8.565932, 47.376026], [8.566031, 47.376028], [8.566563, 47.376018], [8.566667, 47.376021], [8.56677, 47.37603], [8.566872, 47.376044], [8.566971, 47.376065], [8.567068, 47.376091], [8.567307, 47.376163], [8.567502, 47.376222]]], "type": "MultiLineString"}, "id": "3031", "properties": {}, "type": "Feature"}, {"bbox": [8.554799, 47.369292, 8.554988, 47.369316], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554988, 47.369292]]], "type": "MultiLineString"}, "id": "3035", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.376812, 8.559678, 47.38367], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.549178, 47.383593], [8.549531, 47.383417], [8.550897, 47.382737], [8.551692, 47.382341], [8.551746, 47.3823], [8.551885, 47.38221], [8.552344, 47.381842], [8.553543, 47.380876], [8.553592, 47.380838], [8.553714, 47.38074], [8.553865, 47.380618], [8.554173, 47.380371], [8.554635, 47.379999], [8.554808, 47.379853], [8.554864, 47.379821], [8.555403, 47.37951], [8.555524, 47.379431], [8.555581, 47.379394], [8.557291, 47.378411], [8.5575, 47.378283], [8.557608, 47.378217], [8.558771, 47.377415], [8.559678, 47.376812]]], "type": "MultiLineString"}, "id": "3036", "properties": {}, "type": "Feature"}, {"bbox": [8.510786, 47.373325, 8.527768, 47.378062], "geometry": {"coordinates": [[[8.527768, 47.373325], [8.527594, 47.373384], [8.526675, 47.373701], [8.526479, 47.373771], [8.52627, 47.373852], [8.52608, 47.373924], [8.525891, 47.373996], [8.525702, 47.374069], [8.525286, 47.374205], [8.525208, 47.374228], [8.525127, 47.374246], [8.525044, 47.374258], [8.524132, 47.374289], [8.522298, 47.374351], [8.522291, 47.374351], [8.522285, 47.374351], [8.522278, 47.374352], [8.522091, 47.374367], [8.521906, 47.374392], [8.521725, 47.374427], [8.521549, 47.374472], [8.520459, 47.374728], [8.519349, 47.374977], [8.518645, 47.375155], [8.518495, 47.375205], [8.518257, 47.375269], [8.517898, 47.37536], [8.517037, 47.375562], [8.516642, 47.375641], [8.516363, 47.375699], [8.515968, 47.375815], [8.515587, 47.375951], [8.515223, 47.376106], [8.515157, 47.376134], [8.515092, 47.376162], [8.515027, 47.37619], [8.514695, 47.376338], [8.514368, 47.376489], [8.514045, 47.376645], [8.514003, 47.376666], [8.51382, 47.376757], [8.513432, 47.37695], [8.512948, 47.377174], [8.512879, 47.37721], [8.512808, 47.377246], [8.512736, 47.37728], [8.512639, 47.377324], [8.512541, 47.377367], [8.512441, 47.377408], [8.51233, 47.377452], [8.511942, 47.377607], [8.511818, 47.377657], [8.51162, 47.377736], [8.511168, 47.377917], [8.510786, 47.378062]]], "type": "MultiLineString"}, "id": "3049", "properties": {}, "type": "Feature"}, {"bbox": [8.485836, 47.399797, 8.495358, 47.403885], "geometry": {"coordinates": [[[8.495358, 47.399797], [8.494809, 47.399991], [8.494598, 47.40007], [8.494385, 47.400145], [8.49417, 47.400218], [8.494117, 47.400233], [8.494065, 47.400249], [8.494012, 47.400264], [8.493277, 47.400471], [8.492537, 47.40067], [8.491791, 47.400861], [8.491396, 47.40097], [8.491009, 47.401092], [8.490632, 47.401227], [8.489768, 47.401567], [8.489466, 47.401684], [8.489159, 47.401795], [8.488847, 47.401899], [8.488538, 47.401993], [8.488235, 47.40209], [8.48794, 47.402199], [8.487655, 47.402319], [8.48735, 47.402466], [8.487037, 47.402637], [8.486744, 47.402825], [8.486474, 47.403027], [8.486228, 47.403243], [8.486131, 47.403336], [8.486039, 47.403431], [8.485954, 47.403528], [8.485932, 47.40356], [8.485913, 47.403592], [8.485898, 47.403626], [8.485888, 47.40366], [8.485882, 47.403695], [8.485836, 47.403885]]], "type": "MultiLineString"}, "id": "3052", "properties": {}, "type": "Feature"}, {"bbox": [8.541512, 47.376985, 8.541626, 47.377996], "geometry": {"coordinates": [[[8.541626, 47.376985], [8.541586, 47.377047], [8.541555, 47.377111], [8.541532, 47.377177], [8.541518, 47.377244], [8.541512, 47.377312], [8.541516, 47.377379], [8.541529, 47.377446], [8.54155, 47.377512], [8.54158, 47.377577], [8.541599, 47.377619], [8.541612, 47.377661], [8.54162, 47.377705], [8.541622, 47.377748], [8.541618, 47.377792], [8.541608, 47.377835], [8.541592, 47.377877], [8.541571, 47.377919], [8.541544, 47.377958], [8.541513, 47.377996]]], "type": "MultiLineString"}, "id": "3064", "properties": {}, "type": "Feature"}, {"bbox": [8.498706, 47.419122, 8.506448, 47.422948], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.505448, 47.419473], [8.505124, 47.419587], [8.504796, 47.419696], [8.504465, 47.4198], [8.504275, 47.419866], [8.504089, 47.419936], [8.503906, 47.420011], [8.503708, 47.420099], [8.503516, 47.420192], [8.503328, 47.420289], [8.503282, 47.420314], [8.503237, 47.42034], [8.503192, 47.420365], [8.502704, 47.420638], [8.502087, 47.420982], [8.501832, 47.421124], [8.501206, 47.421481], [8.500225, 47.422054], [8.498918, 47.422818], [8.498706, 47.422948]]], "type": "MultiLineString"}, "id": "3069", "properties": {}, "type": "Feature"}, {"bbox": [8.492953, 47.392223, 8.494662, 47.393266], "geometry": {"coordinates": [[[8.492953, 47.39326], [8.493352, 47.39325], [8.49375, 47.393252], [8.494148, 47.393266], [8.494315, 47.393261], [8.494347, 47.393258], [8.494378, 47.393253], [8.494409, 47.393247], [8.494439, 47.393238], [8.494468, 47.393228], [8.494495, 47.393216], [8.494521, 47.393203], [8.494545, 47.393188], [8.494566, 47.393172], [8.494587, 47.393153], [8.494605, 47.393134], [8.494621, 47.393113], [8.494633, 47.393091], [8.494643, 47.393069], [8.49465, 47.393046], [8.494662, 47.392223]]], "type": "MultiLineString"}, "id": "3070", "properties": {}, "type": "Feature"}, {"bbox": [8.593906, 47.363112, 8.595684, 47.364616], "geometry": {"coordinates": [[[8.59413, 47.363112], [8.593906, 47.363655], [8.59391, 47.363671], [8.593917, 47.363686], [8.593925, 47.363701], [8.593936, 47.363715], [8.593948, 47.363729], [8.593962, 47.363742], [8.593977, 47.363754], [8.593995, 47.363765], [8.594013, 47.363774], [8.594033, 47.363783], [8.594054, 47.36379], [8.594075, 47.363796], [8.594098, 47.363801], [8.595223, 47.364022], [8.595444, 47.364055], [8.595468, 47.364058], [8.595492, 47.364063], [8.595516, 47.364069], [8.595538, 47.364077], [8.59556, 47.364086], [8.59558, 47.364096], [8.595598, 47.364107], [8.595615, 47.36412], [8.595631, 47.364133], [8.595645, 47.364148], [8.595656, 47.364163], [8.595666, 47.364178], [8.595674, 47.364195], [8.595679, 47.364211], [8.595683, 47.364228], [8.595684, 47.364245], [8.595683, 47.364262], [8.595679, 47.364279], [8.595674, 47.364296], [8.595666, 47.364312], [8.595628, 47.364359], [8.595497, 47.364616]]], "type": "MultiLineString"}, "id": "3081", "properties": {}, "type": "Feature"}, {"bbox": [8.518543, 47.368781, 8.519571, 47.370286], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.518546, 47.37023], [8.518543, 47.370173], [8.518548, 47.370116], [8.51856, 47.37006], [8.51858, 47.370005], [8.518608, 47.369952], [8.518642, 47.3699], [8.518799, 47.369701], [8.51882, 47.369674], [8.519005, 47.369449], [8.519099, 47.369316], [8.519382, 47.36897], [8.519571, 47.368781]]], "type": "MultiLineString"}, "id": "3091", "properties": {}, "type": "Feature"}, {"bbox": [8.549289, 47.370542, 8.550645, 47.374668], "geometry": {"coordinates": [[[8.549289, 47.370542], [8.549818, 47.371111], [8.5505, 47.371833], [8.55054, 47.371878], [8.550574, 47.371924], [8.550602, 47.371973], [8.550623, 47.372023], [8.550637, 47.372074], [8.550645, 47.372125], [8.550645, 47.372177], [8.550639, 47.372229], [8.550625, 47.37228], [8.550605, 47.37233], [8.550441, 47.37265], [8.550351, 47.372844], [8.550265, 47.373038], [8.550183, 47.373233], [8.550141, 47.373338], [8.5501, 47.373443], [8.55006, 47.373548], [8.549872, 47.374048], [8.549597, 47.374668]]], "type": "MultiLineString"}, "id": "3092", "properties": {}, "type": "Feature"}, {"bbox": [8.510637, 47.378546, 8.514463, 47.38247], "geometry": {"coordinates": [[[8.510637, 47.378546], [8.510663, 47.378571], [8.511212, 47.37913], [8.512578, 47.380532], [8.513511, 47.381491], [8.513634, 47.381617], [8.514463, 47.38247]]], "type": "MultiLineString"}, "id": "3093", "properties": {}, "type": "Feature"}, {"bbox": [8.534234, 47.368602, 8.535198, 47.368911], "geometry": {"coordinates": [[[8.535198, 47.368911], [8.534966, 47.368801], [8.534811, 47.368792], [8.534369, 47.368643], [8.534234, 47.368602]]], "type": "MultiLineString"}, "id": "3104", "properties": {}, "type": "Feature"}, {"bbox": [8.472012, 47.3919, 8.477724, 47.39398], "geometry": {"coordinates": [[[8.477724, 47.3919], [8.477671, 47.391922], [8.477616, 47.391942], [8.47756, 47.391961], [8.474035, 47.393207], [8.473785, 47.393293], [8.473537, 47.393382], [8.473292, 47.393473], [8.47255, 47.393761], [8.472012, 47.39398]]], "type": "MultiLineString"}, "id": "3108", "properties": {}, "type": "Feature"}, {"bbox": [8.546999, 47.369215, 8.548037, 47.373075], "geometry": {"coordinates": [[[8.548037, 47.369215], [8.547614, 47.36975], [8.547286, 47.370145], [8.547154, 47.370319], [8.547105, 47.370383], [8.547064, 47.370449], [8.547033, 47.370518], [8.547012, 47.370588], [8.547001, 47.370659], [8.546999, 47.370731], [8.546999, 47.370748], [8.547001, 47.370764], [8.547003, 47.370781], [8.547005, 47.370806], [8.54701, 47.37083], [8.547018, 47.370855], [8.547029, 47.370878], [8.547043, 47.370902], [8.547059, 47.370924], [8.547461, 47.371343], [8.547542, 47.371434], [8.54761, 47.371529], [8.547663, 47.371629], [8.547616, 47.371875], [8.547548, 47.372296], [8.547532, 47.372405], [8.547512, 47.372514], [8.547488, 47.372622], [8.547432, 47.372751], [8.547357, 47.372875], [8.547267, 47.372994], [8.547257, 47.373009], [8.547285, 47.373014], [8.547313, 47.373021], [8.547339, 47.37303], [8.547364, 47.37304], [8.547388, 47.373052], [8.54741, 47.373065], [8.547424, 47.373075]]], "type": "MultiLineString"}, "id": "3113", "properties": {}, "type": "Feature"}, {"bbox": [8.552586, 47.365785, 8.552663, 47.366138], "geometry": {"coordinates": [[[8.552612, 47.365785], [8.552586, 47.365867], [8.552663, 47.366138]]], "type": "MultiLineString"}, "id": "3115", "properties": {}, "type": "Feature"}, {"bbox": [8.560386, 47.3616, 8.561212, 47.3619], "geometry": {"coordinates": [[[8.560386, 47.361856], [8.560408, 47.361866], [8.560431, 47.361876], [8.560455, 47.361883], [8.56048, 47.36189], [8.560506, 47.361895], [8.560532, 47.361898], [8.560559, 47.3619], [8.560585, 47.3619], [8.560612, 47.361898], [8.560638, 47.361895], [8.560696, 47.36189], [8.560752, 47.361882], [8.560808, 47.36187], [8.560862, 47.361855], [8.560913, 47.361837], [8.560963, 47.361816], [8.561009, 47.361793], [8.561052, 47.361766], [8.561092, 47.361738], [8.561129, 47.361707], [8.561161, 47.361674], [8.561189, 47.361639], [8.561212, 47.361603], [8.561096, 47.3616], [8.560979, 47.361601], [8.560863, 47.361604], [8.560811, 47.361611], [8.56076, 47.36162], [8.560711, 47.361632], [8.560663, 47.361647], [8.560617, 47.361665], [8.560574, 47.361686], [8.560534, 47.361709], [8.560497, 47.361735], [8.560464, 47.361762], [8.560434, 47.361792], [8.560408, 47.361823], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3129", "properties": {}, "type": "Feature"}, {"bbox": [8.534473, 47.345158, 8.535634, 47.345287], "geometry": {"coordinates": [[[8.535634, 47.345287], [8.534473, 47.345158]]], "type": "MultiLineString"}, "id": "3132", "properties": {}, "type": "Feature"}, {"bbox": [8.527918, 47.369145, 8.53031, 47.371074], "geometry": {"coordinates": [[[8.53031, 47.371074], [8.530237, 47.370963], [8.530158, 47.370854], [8.530075, 47.370747], [8.529938, 47.370583], [8.529788, 47.370424], [8.529627, 47.370271], [8.529465, 47.370134], [8.529295, 47.370001], [8.529117, 47.369874], [8.528759, 47.369645], [8.528676, 47.369596], [8.527918, 47.369145]]], "type": "MultiLineString"}, "id": "3143", "properties": {}, "type": "Feature"}, {"bbox": [8.514064, 47.370585, 8.521549, 47.374472], "geometry": {"coordinates": [[[8.521549, 47.374472], [8.52149, 47.374378], [8.520994, 47.374148], [8.520333, 47.373862], [8.520274, 47.373837], [8.519998, 47.37372], [8.519914, 47.373683], [8.519768, 47.373621], [8.519477, 47.373495], [8.518982, 47.373249], [8.518726, 47.373116], [8.518177, 47.372851], [8.517966, 47.372762], [8.517529, 47.372557], [8.517311, 47.372422], [8.516898, 47.372176], [8.516861, 47.372153], [8.516492, 47.371934], [8.516088, 47.371693], [8.515909, 47.37159], [8.515778, 47.371515], [8.514814, 47.370986], [8.514064, 47.370585]]], "type": "MultiLineString"}, "id": "3161", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.390459, 8.525018, 47.391122], "geometry": {"coordinates": [[[8.525018, 47.39047], [8.524907, 47.390459], [8.524622, 47.390534], [8.524328, 47.390591], [8.524029, 47.39063], [8.523836, 47.390648], [8.523642, 47.390656], [8.523447, 47.390655], [8.523417, 47.390654], [8.523386, 47.390654], [8.523355, 47.390657], [8.523325, 47.390661], [8.523295, 47.390667], [8.523266, 47.390675], [8.523239, 47.390685], [8.523213, 47.390696], [8.523188, 47.390709], [8.523165, 47.390723], [8.523144, 47.390739], [8.523126, 47.390755], [8.523109, 47.390773], [8.523095, 47.390792], [8.523083, 47.390811], [8.523074, 47.390831], [8.523067, 47.390852], [8.523063, 47.390873], [8.523052, 47.390912], [8.523037, 47.39095], [8.523016, 47.390988], [8.52299, 47.391024], [8.52296, 47.391058], [8.522926, 47.39109], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "3171", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.375749, 8.50988, 47.379396], "geometry": {"coordinates": [[[8.50988, 47.378224], [8.509746, 47.378198], [8.508913, 47.378028], [8.508558, 47.377957], [8.508205, 47.37788], [8.507853, 47.3778], [8.507382, 47.377711], [8.506903, 47.377645], [8.506417, 47.377603], [8.503705, 47.377496], [8.502829, 47.377461], [8.502683, 47.377456], [8.501944, 47.377427], [8.501028, 47.377391], [8.500586, 47.377374], [8.500145, 47.377374], [8.499703, 47.377391], [8.499478, 47.377408], [8.499255, 47.377438], [8.499036, 47.37748], [8.498823, 47.377534], [8.498618, 47.3776], [8.49846, 47.37766], [8.497979, 47.377847], [8.497759, 47.377931], [8.497543, 47.37802], [8.497331, 47.378114], [8.497066, 47.378243], [8.496816, 47.378386], [8.496582, 47.378541], [8.495294, 47.379396], [8.494893, 47.379072], [8.494578, 47.37883], [8.494536, 47.3788], [8.494493, 47.37877], [8.494449, 47.37874], [8.4943, 47.378648], [8.494144, 47.378562], [8.493981, 47.378482], [8.493694, 47.378356], [8.493549, 47.378295], [8.493407, 47.378231], [8.493266, 47.378166], [8.493143, 47.378108], [8.493022, 47.378048], [8.492903, 47.377987], [8.492127, 47.377602], [8.490781, 47.376951], [8.49009, 47.376617], [8.489983, 47.376575], [8.489319, 47.376258], [8.488965, 47.376089], [8.488704, 47.375958], [8.488426, 47.375845], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "3172", "properties": {}, "type": "Feature"}, {"bbox": [8.551057, 47.366138, 8.552663, 47.366847], "geometry": {"coordinates": [[[8.552663, 47.366138], [8.551057, 47.366847]]], "type": "MultiLineString"}, "id": "3189", "properties": {}, "type": "Feature"}, {"bbox": [8.533193, 47.398872, 8.543265, 47.410932], "geometry": {"coordinates": [[[8.533209, 47.398872], [8.533193, 47.399046], [8.5332, 47.399219], [8.533229, 47.399392], [8.533279, 47.399562], [8.533351, 47.399729], [8.533444, 47.399891], [8.533557, 47.400046], [8.534001, 47.40067], [8.534443, 47.401291], [8.534505, 47.401377], [8.534793, 47.401765], [8.535129, 47.402134], [8.535511, 47.402483], [8.535729, 47.402644], [8.53593, 47.402816], [8.536111, 47.402998], [8.536233, 47.403138], [8.536344, 47.403282], [8.536443, 47.403431], [8.53673, 47.403926], [8.537594, 47.405748], [8.537944, 47.406501], [8.537973, 47.406562], [8.538291, 47.407172], [8.538495, 47.407602], [8.538546, 47.407693], [8.538598, 47.407784], [8.538651, 47.407874], [8.538694, 47.407948], [8.538739, 47.408022], [8.538784, 47.408096], [8.538911, 47.40828], [8.539048, 47.40846], [8.539196, 47.408637], [8.539312, 47.40875], [8.539437, 47.408859], [8.539572, 47.408962], [8.539688, 47.409041], [8.539809, 47.409116], [8.539935, 47.409188], [8.540416, 47.40947], [8.540582, 47.409567], [8.541221, 47.409941], [8.542032, 47.410375], [8.543103, 47.410856], [8.543157, 47.410882], [8.54321, 47.410908], [8.543265, 47.410932]]], "type": "MultiLineString"}, "id": "3208", "properties": {}, "type": "Feature"}, {"bbox": [8.547663, 47.371629, 8.548691, 47.372101], "geometry": {"coordinates": [[[8.548691, 47.372101], [8.548532, 47.372018], [8.548324, 47.371932], [8.548005, 47.371749], [8.547908, 47.3717], [8.547663, 47.371629]]], "type": "MultiLineString"}, "id": "3209", "properties": {}, "type": "Feature"}, {"bbox": [8.527768, 47.373181, 8.527977, 47.373325], "geometry": {"coordinates": [[[8.527977, 47.373181], [8.52795, 47.373209], [8.527919, 47.373237], [8.527886, 47.373262], [8.527849, 47.373285], [8.52781, 47.373306], [8.527768, 47.373325]]], "type": "MultiLineString"}, "id": "3210", "properties": {}, "type": "Feature"}, {"bbox": [8.508416, 47.396857, 8.540929, 47.418317], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.540611, 47.397143], [8.540047, 47.397735], [8.539849, 47.397943], [8.539608, 47.398197], [8.539207, 47.398607], [8.539068, 47.39875], [8.538715, 47.399132], [8.537407, 47.400506], [8.537194, 47.400729], [8.537184, 47.40074], [8.537173, 47.400751], [8.536402, 47.40156], [8.535973, 47.402009], [8.535913, 47.40207], [8.535511, 47.402483], [8.534622, 47.403394], [8.534294, 47.403729], [8.533945, 47.404087], [8.533609, 47.40446], [8.533377, 47.404716], [8.533159, 47.404945], [8.532279, 47.405864], [8.531685, 47.406484], [8.530788, 47.407422], [8.530671, 47.407541], [8.530163, 47.408028], [8.529527, 47.408596], [8.528877, 47.409176], [8.528816, 47.409232], [8.528502, 47.40951], [8.528313, 47.409669], [8.528114, 47.409822], [8.527905, 47.409968], [8.527678, 47.410118], [8.52708, 47.410511], [8.526977, 47.410578], [8.525735, 47.411394], [8.525691, 47.411423], [8.525513, 47.411535], [8.525327, 47.411639], [8.525132, 47.411736], [8.524639, 47.411953], [8.524215, 47.412139], [8.523629, 47.412397], [8.522573, 47.41284], [8.522352, 47.412933], [8.521478, 47.413299], [8.521443, 47.413314], [8.520766, 47.413595], [8.520752, 47.413601], [8.520739, 47.413606], [8.520725, 47.413612], [8.520455, 47.413715], [8.52018, 47.41381], [8.519899, 47.413898], [8.519698, 47.41395], [8.518941, 47.414144], [8.518455, 47.414268], [8.516751, 47.414696], [8.515154, 47.415096], [8.513959, 47.415398], [8.513672, 47.41547], [8.513419, 47.415541], [8.513173, 47.415622], [8.512933, 47.415712], [8.51277, 47.415781], [8.512611, 47.415855], [8.512456, 47.415933], [8.511367, 47.41644], [8.511016, 47.416609], [8.510896, 47.41667], [8.510777, 47.416731], [8.51066, 47.416794], [8.510327, 47.416986], [8.510008, 47.417188], [8.509702, 47.4174], [8.509276, 47.417711], [8.508799, 47.418061], [8.508673, 47.418148], [8.508546, 47.418233], [8.508416, 47.418317]]], "type": "MultiLineString"}, "id": "3215", "properties": {}, "type": "Feature"}, {"bbox": [8.494099, 47.365031, 8.495786, 47.367709], "geometry": {"coordinates": [[[8.495618, 47.367709], [8.495786, 47.367528], [8.495453, 47.367365], [8.495365, 47.367321], [8.495283, 47.367272], [8.495208, 47.367218], [8.495139, 47.367161], [8.495079, 47.367099], [8.495026, 47.367034], [8.494982, 47.366966], [8.494788, 47.366647], [8.49461, 47.366324], [8.494448, 47.365998], [8.494297, 47.365681], [8.49418, 47.365358], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "3221", "properties": {}, "type": "Feature"}, {"bbox": [8.58422, 47.381907, 8.584779, 47.382251], "geometry": {"coordinates": [[[8.58422, 47.381907], [8.584255, 47.381917], [8.584337, 47.381947], [8.584415, 47.381982], [8.584488, 47.382021], [8.584556, 47.382064], [8.584619, 47.38211], [8.584675, 47.38216], [8.584779, 47.382251]]], "type": "MultiLineString"}, "id": "3242", "properties": {}, "type": "Feature"}, {"bbox": [8.509875, 47.378049, 8.510786, 47.378546], "geometry": {"coordinates": [[[8.510637, 47.378546], [8.510625, 47.378496], [8.510618, 47.378445], [8.510618, 47.378394], [8.510624, 47.378344], [8.510637, 47.378293], [8.510655, 47.378244], [8.510679, 47.378196], [8.510709, 47.37815], [8.510745, 47.378105], [8.510786, 47.378062], [8.510618, 47.378053], [8.510509, 47.378049], [8.510399, 47.378052], [8.510291, 47.378061], [8.510184, 47.378077], [8.510102, 47.378094], [8.51006, 47.378105], [8.51002, 47.378119], [8.509981, 47.378135], [8.509945, 47.378153], [8.509932, 47.378161], [8.50992, 47.37817], [8.509909, 47.37818], [8.509899, 47.37819], [8.509891, 47.378201], [8.509885, 47.378212], [8.50988, 47.378224], [8.509877, 47.378239], [8.509875, 47.378255], [8.509876, 47.378271], [8.509878, 47.378287], [8.509883, 47.378302], [8.509889, 47.378317], [8.509897, 47.378332], [8.509907, 47.378346], [8.509919, 47.37836], [8.509932, 47.378373], [8.509947, 47.378385], [8.509964, 47.378396], [8.509982, 47.378406], [8.510001, 47.378415], [8.510032, 47.378428], [8.510065, 47.378438], [8.510099, 47.378447], [8.510135, 47.378453], [8.51017, 47.378456], [8.51033, 47.378475], [8.510486, 47.378505], [8.510637, 47.378546]]], "type": "MultiLineString"}, "id": "3243", "properties": {}, "type": "Feature"}, {"bbox": [8.557086, 47.360591, 8.560386, 47.361856], "geometry": {"coordinates": [[[8.557086, 47.360591], [8.557948, 47.360873], [8.558063, 47.360911], [8.559346, 47.361332], [8.559592, 47.361412], [8.559826, 47.361507], [8.560048, 47.361615], [8.560256, 47.361735], [8.560294, 47.361762], [8.560329, 47.361791], [8.56036, 47.361823], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3244", "properties": {}, "type": "Feature"}, {"bbox": [8.559817, 47.378417, 8.57154, 47.381487], "geometry": {"coordinates": [[[8.559817, 47.379362], [8.559982, 47.379349], [8.560147, 47.379334], [8.560311, 47.379315], [8.561625, 47.379122], [8.561726, 47.379107], [8.561828, 47.379092], [8.563799, 47.378805], [8.564537, 47.378697], [8.566177, 47.378457], [8.566434, 47.378429], [8.566693, 47.378417], [8.566953, 47.378419], [8.567211, 47.378437], [8.567227, 47.378438], [8.567242, 47.37844], [8.567258, 47.378442], [8.568192, 47.378543], [8.568281, 47.378552], [8.568392, 47.378563], [8.56909, 47.378627], [8.569297, 47.378644], [8.569502, 47.378672], [8.569703, 47.378709], [8.569808, 47.378741], [8.569908, 47.37878], [8.570002, 47.378825], [8.57009, 47.378875], [8.570171, 47.378931], [8.570244, 47.378991], [8.570309, 47.379055], [8.570365, 47.379124], [8.570412, 47.379195], [8.570475, 47.379294], [8.570801, 47.379981], [8.570829, 47.380047], [8.570868, 47.38014], [8.570889, 47.380189], [8.57142, 47.38124], [8.571482, 47.381371], [8.57154, 47.381487]]], "type": "MultiLineString"}, "id": "3246", "properties": {}, "type": "Feature"}, {"bbox": [8.542489, 47.399138, 8.548757, 47.400223], "geometry": {"coordinates": [[[8.542489, 47.399138], [8.542563, 47.399193], [8.542643, 47.399245], [8.542729, 47.399292], [8.54282, 47.399335], [8.542916, 47.399372], [8.543213, 47.399478], [8.54339, 47.399535], [8.543573, 47.399583], [8.54376, 47.399622], [8.544406, 47.399745], [8.544438, 47.399838], [8.545441, 47.400028], [8.546257, 47.40013], [8.547083, 47.400181], [8.547913, 47.400182], [8.548125, 47.400174], [8.548337, 47.400178], [8.548549, 47.400195], [8.548757, 47.400223]]], "type": "MultiLineString"}, "id": "3247", "properties": {}, "type": "Feature"}, {"bbox": [8.534913, 47.386166, 8.535383, 47.386983], "geometry": {"coordinates": [[[8.535288, 47.386166], [8.535317, 47.386203], [8.53534, 47.386243], [8.535359, 47.386283], [8.535372, 47.386324], [8.53538, 47.386366], [8.535383, 47.386408], [8.535381, 47.38645], [8.535373, 47.386492], [8.53536, 47.386534], [8.535342, 47.386574], [8.535319, 47.386613], [8.535291, 47.386651], [8.535259, 47.386687], [8.535158, 47.386813], [8.535062, 47.386885], [8.535019, 47.38692], [8.534913, 47.386983]]], "type": "MultiLineString"}, "id": "3252", "properties": {}, "type": "Feature"}, {"bbox": [8.554431, 47.361856, 8.560386, 47.364725], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554632, 47.36469], [8.554866, 47.36459], [8.555215, 47.364439], [8.555421, 47.36435], [8.555639, 47.364285], [8.555857, 47.364221], [8.556077, 47.364159], [8.556191, 47.36412], [8.556302, 47.364075], [8.556408, 47.364026], [8.556444, 47.364009], [8.55648, 47.363991], [8.556514, 47.363973], [8.557179, 47.36352], [8.557379, 47.363384], [8.55755, 47.363268], [8.557861, 47.363054], [8.558178, 47.362844], [8.5585, 47.362637], [8.558605, 47.362577], [8.558712, 47.362518], [8.55882, 47.36246], [8.558854, 47.362442], [8.558888, 47.362424], [8.558922, 47.362406], [8.559232, 47.36225], [8.559559, 47.362109], [8.5599, 47.361986], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3256", "properties": {}, "type": "Feature"}, {"bbox": [8.538144, 47.392458, 8.538343, 47.392602], "geometry": {"coordinates": [[[8.538144, 47.392602], [8.538154, 47.392583], [8.538166, 47.392566], [8.53818, 47.392549], [8.538196, 47.392533], [8.538215, 47.392518], [8.538235, 47.392504], [8.538256, 47.392492], [8.538279, 47.39248], [8.538304, 47.392471], [8.53833, 47.392462], [8.538343, 47.392458]]], "type": "MultiLineString"}, "id": "3274", "properties": {}, "type": "Feature"}, {"bbox": [8.56264, 47.346254, 8.564715, 47.348142], "geometry": {"coordinates": [[[8.562669, 47.348142], [8.562655, 47.348107], [8.562646, 47.348072], [8.56264, 47.348036], [8.56264, 47.348], [8.562643, 47.347963], [8.562651, 47.347928], [8.562663, 47.347892], [8.562679, 47.347858], [8.562847, 47.347636], [8.563033, 47.34742], [8.563237, 47.347212], [8.56352, 47.346942], [8.563838, 47.346691], [8.564188, 47.346459], [8.564264, 47.346412], [8.564345, 47.34637], [8.564432, 47.346333], [8.564523, 47.346301], [8.564617, 47.346274], [8.564715, 47.346254]]], "type": "MultiLineString"}, "id": "3291", "properties": {}, "type": "Feature"}, {"bbox": [8.516723, 47.331188, 8.518347, 47.332973], "geometry": {"coordinates": [[[8.518347, 47.332973], [8.518059, 47.33264], [8.517804, 47.332416], [8.517407, 47.332038], [8.517163, 47.331816], [8.517022, 47.33167], [8.516901, 47.331516], [8.516801, 47.331355], [8.516723, 47.331188]]], "type": "MultiLineString"}, "id": "3304", "properties": {}, "type": "Feature"}, {"bbox": [8.524229, 47.392321, 8.524823, 47.393318], "geometry": {"coordinates": [[[8.524229, 47.392321], [8.524311, 47.39242], [8.524384, 47.392522], [8.524446, 47.392627], [8.524517, 47.392757], [8.524586, 47.392887], [8.524653, 47.393017], [8.524706, 47.393136], [8.524714, 47.393154], [8.524723, 47.393171], [8.524733, 47.393188], [8.524793, 47.393248], [8.5248, 47.393254], [8.524806, 47.39326], [8.524811, 47.393267], [8.524815, 47.393274], [8.524819, 47.393281], [8.524821, 47.393288], [8.524823, 47.393296], [8.524823, 47.393303], [8.524823, 47.393311], [8.524821, 47.393318]]], "type": "MultiLineString"}, "id": "3307", "properties": {}, "type": "Feature"}, {"bbox": [8.55722, 47.368419, 8.559014, 47.369314], "geometry": {"coordinates": [[[8.55722, 47.369314], [8.557383, 47.369238], [8.557534, 47.369153], [8.557672, 47.369058], [8.557764, 47.368992], [8.557859, 47.368929], [8.557958, 47.368868], [8.558134, 47.368772], [8.558319, 47.368685], [8.558513, 47.368608], [8.558676, 47.36854], [8.558843, 47.368477], [8.559014, 47.368419]]], "type": "MultiLineString"}, "id": "3312", "properties": {}, "type": "Feature"}, {"bbox": [8.534169, 47.373193, 8.535306, 47.373711], "geometry": {"coordinates": [[[8.535306, 47.373193], [8.534792, 47.373423], [8.534169, 47.373711]]], "type": "MultiLineString"}, "id": "3321", "properties": {}, "type": "Feature"}, {"bbox": [8.544955, 47.386786, 8.571432, 47.404275], "geometry": {"coordinates": [[[8.547575, 47.386786], [8.547505, 47.386882], [8.547441, 47.386981], [8.547382, 47.387081], [8.546502, 47.388653], [8.546212, 47.389204], [8.545982, 47.389639], [8.545696, 47.390147], [8.545635, 47.390262], [8.545555, 47.390413], [8.545511, 47.390539], [8.545434, 47.390821], [8.545382, 47.391006], [8.545306, 47.391211], [8.545241, 47.391418], [8.545187, 47.391626], [8.545137, 47.392028], [8.545105, 47.392349], [8.545065, 47.392718], [8.544984, 47.393514], [8.544971, 47.393608], [8.544962, 47.393701], [8.544957, 47.393795], [8.544956, 47.393837], [8.544955, 47.393878], [8.544955, 47.39392], [8.544961, 47.394062], [8.544976, 47.394204], [8.544999, 47.394345], [8.545186, 47.395072], [8.545415, 47.395966], [8.545484, 47.396187], [8.545575, 47.396404], [8.545689, 47.396616], [8.546039, 47.397125], [8.546416, 47.397625], [8.546821, 47.398115], [8.547464, 47.398832], [8.547489, 47.399073], [8.547537, 47.399312], [8.547607, 47.399549], [8.547653, 47.399713], [8.54772, 47.399874], [8.547806, 47.400031], [8.547913, 47.400182], [8.54801, 47.400288], [8.548121, 47.400389], [8.548244, 47.400483], [8.548379, 47.40057], [8.548524, 47.400648], [8.548645, 47.400704], [8.548768, 47.400758], [8.548893, 47.400809], [8.549443, 47.400986], [8.549986, 47.401174], [8.55052, 47.401372], [8.551626, 47.401894], [8.552211, 47.40214], [8.552237, 47.402148], [8.552264, 47.402154], [8.552292, 47.402159], [8.55232, 47.402163], [8.552349, 47.402164], [8.552378, 47.402164], [8.552406, 47.402162], [8.552434, 47.402159], [8.552462, 47.402154], [8.552489, 47.402147], [8.552515, 47.402139], [8.55254, 47.402129], [8.552564, 47.402118], [8.552725, 47.402192], [8.552887, 47.402263], [8.553232, 47.402414], [8.553455, 47.402512], [8.553937, 47.402724], [8.55418, 47.402823], [8.55443, 47.402913], [8.554686, 47.402995], [8.554733, 47.403009], [8.55478, 47.403022], [8.554826, 47.403036], [8.555061, 47.403035], [8.555296, 47.403049], [8.555527, 47.403077], [8.555753, 47.403121], [8.555972, 47.403178], [8.557023, 47.403453], [8.557114, 47.403483], [8.557204, 47.403514], [8.557293, 47.403548], [8.557327, 47.403566], [8.55736, 47.403585], [8.557394, 47.403603], [8.557472, 47.403636], [8.557554, 47.403663], [8.557639, 47.403686], [8.557992, 47.403781], [8.558452, 47.403901], [8.559069, 47.404062], [8.559227, 47.404097], [8.559387, 47.404126], [8.559549, 47.404148], [8.559963, 47.404171], [8.560378, 47.404187], [8.560794, 47.404196], [8.560864, 47.404195], [8.560934, 47.404198], [8.561003, 47.404205], [8.561072, 47.404216], [8.561138, 47.404232], [8.561202, 47.404252], [8.561263, 47.404275], [8.562067, 47.404198], [8.56293, 47.404114], [8.563448, 47.404043], [8.563712, 47.404007], [8.565697, 47.403761], [8.565951, 47.403739], [8.566208, 47.403731], [8.566464, 47.403736], [8.567377, 47.403804], [8.567542, 47.403817], [8.567648, 47.403825], [8.568761, 47.40391], [8.569003, 47.403922], [8.569246, 47.403923], [8.569488, 47.403913], [8.56957, 47.403907], [8.569651, 47.4039], [8.569732, 47.403892], [8.570068, 47.403852], [8.571236, 47.403712], [8.571301, 47.403705], [8.571367, 47.403702], [8.571432, 47.403701]]], "type": "MultiLineString"}, "id": "3324", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.376963, 8.542014, 47.378523], "geometry": {"coordinates": [[[8.541897, 47.376963], [8.541944, 47.377063], [8.541977, 47.377165], [8.541995, 47.377269], [8.542013, 47.377409], [8.542014, 47.37755], [8.541996, 47.377691], [8.54196, 47.37783], [8.541906, 47.377967], [8.541866, 47.378057], [8.541815, 47.378144], [8.541754, 47.378228], [8.541683, 47.378309], [8.541603, 47.378385], [8.541514, 47.378457], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "3327", "properties": {}, "type": "Feature"}, {"bbox": [8.541694, 47.37442, 8.541925, 47.376023], "geometry": {"coordinates": [[[8.541694, 47.37442], [8.541837, 47.37511], [8.541874, 47.375288], [8.541904, 47.375466], [8.541925, 47.375645], [8.541924, 47.375665], [8.541923, 47.375685], [8.541921, 47.375705], [8.541906, 47.375811], [8.541885, 47.375917], [8.541858, 47.376023]]], "type": "MultiLineString"}, "id": "3328", "properties": {}, "type": "Feature"}, {"bbox": [8.565443, 47.406605, 8.567325, 47.407999], "geometry": {"coordinates": [[[8.567325, 47.406605], [8.567186, 47.406673], [8.566854, 47.406836], [8.566543, 47.407017], [8.566255, 47.407216], [8.566169, 47.40728], [8.566088, 47.407346], [8.566011, 47.407415], [8.565934, 47.407484], [8.565861, 47.407555], [8.56579, 47.407627], [8.565443, 47.407999]]], "type": "MultiLineString"}, "id": "3330", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.359878, 8.602367, 47.361341], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.595147, 47.36], [8.595896, 47.360152], [8.596253, 47.360224], [8.596802, 47.360397], [8.597102, 47.360491], [8.598733, 47.360881], [8.599192, 47.36098], [8.599461, 47.361029], [8.599733, 47.361071], [8.600008, 47.361107], [8.600429, 47.361149], [8.600917, 47.361189], [8.602056, 47.361294], [8.602226, 47.361319], [8.602367, 47.361341]]], "type": "MultiLineString"}, "id": "3331", "properties": {}, "type": "Feature"}, {"bbox": [8.572782, 47.352719, 8.573826, 47.352901], "geometry": {"coordinates": [[[8.572782, 47.352901], [8.572927, 47.352834], [8.572952, 47.352826], [8.572978, 47.35282], [8.573004, 47.352815], [8.573031, 47.352812], [8.573059, 47.352811], [8.573086, 47.352811], [8.573113, 47.352813], [8.57314, 47.352816], [8.57349, 47.352873], [8.573512, 47.352877], [8.573535, 47.352879], [8.573557, 47.35288], [8.57358, 47.352879], [8.573602, 47.352877], [8.573624, 47.352874], [8.573646, 47.35287], [8.573667, 47.352864], [8.573687, 47.352857], [8.573706, 47.352848], [8.573724, 47.352839], [8.57374, 47.352828], [8.573755, 47.352817], [8.573769, 47.352805], [8.573781, 47.352792], [8.573791, 47.352778], [8.573826, 47.352719]]], "type": "MultiLineString"}, "id": "3340", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.372596, 8.534761, 47.372597], "geometry": {"coordinates": [[[8.534761, 47.372596], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "3342", "properties": {}, "type": "Feature"}, {"bbox": [8.523063, 47.39047, 8.525018, 47.391306], "geometry": {"coordinates": [[[8.525018, 47.39047], [8.524876, 47.390557], [8.524775, 47.390598], [8.524669, 47.390633], [8.52456, 47.390662], [8.524448, 47.390684], [8.524333, 47.3907], [8.523434, 47.390814], [8.523396, 47.39082], [8.523359, 47.390828], [8.523323, 47.390838], [8.523288, 47.39085], [8.523255, 47.390864], [8.523224, 47.39088], [8.523196, 47.390898], [8.523169, 47.390917], [8.523146, 47.390938], [8.523124, 47.39096], [8.523106, 47.390983], [8.523091, 47.391008], [8.523079, 47.391033], [8.52307, 47.391058], [8.523065, 47.391085], [8.523063, 47.391111], [8.523064, 47.391137], [8.523069, 47.391163], [8.523077, 47.391189], [8.523072, 47.391306]]], "type": "MultiLineString"}, "id": "3343", "properties": {}, "type": "Feature"}, {"bbox": [8.527768, 47.373034, 8.528055, 47.373181], "geometry": {"coordinates": [[[8.528055, 47.37309], [8.528033, 47.373122], [8.528007, 47.373152], [8.527977, 47.373181], [8.527944, 47.373146], [8.527906, 47.373114], [8.527864, 47.373085], [8.527818, 47.373058], [8.527768, 47.373034]]], "type": "MultiLineString"}, "id": "3344", "properties": {}, "type": "Feature"}, {"bbox": [8.534147, 47.366428, 8.540541, 47.372272], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540399, 47.366454], [8.54036, 47.36649], [8.540074, 47.366756], [8.539749, 47.367116], [8.539185, 47.367741], [8.538018, 47.369021], [8.537453, 47.369376], [8.536913, 47.369707], [8.536084, 47.37023], [8.535249, 47.370745], [8.53503, 47.370891], [8.534831, 47.37105], [8.534652, 47.37122], [8.534215, 47.371684], [8.534196, 47.371708], [8.534179, 47.371734], [8.534166, 47.37176], [8.534156, 47.371787], [8.53415, 47.371815], [8.534147, 47.371843], [8.534147, 47.371871], [8.534151, 47.371899], [8.534261, 47.372272]]], "type": "MultiLineString"}, "id": "3345", "properties": {}, "type": "Feature"}, {"bbox": [8.502955, 47.408631, 8.50384, 47.409077], "geometry": {"coordinates": [[[8.50384, 47.408846], [8.503583, 47.408733], [8.503548, 47.408711], [8.503511, 47.408691], [8.503472, 47.408673], [8.503435, 47.408659], [8.503397, 47.408647], [8.503358, 47.408637], [8.50333, 47.408633], [8.503301, 47.408631], [8.503272, 47.408631], [8.503243, 47.408633], [8.503215, 47.408636], [8.503187, 47.408641], [8.50316, 47.408647], [8.503133, 47.408656], [8.503108, 47.408665], [8.503084, 47.408677], [8.503062, 47.408689], [8.503042, 47.408703], [8.503023, 47.408718], [8.503007, 47.408734], [8.502992, 47.408751], [8.50298, 47.408768], [8.50297, 47.408786], [8.502963, 47.408805], [8.502958, 47.408824], [8.502955, 47.408844], [8.502955, 47.408863], [8.502957, 47.408882], [8.502962, 47.408901], [8.502969, 47.40892], [8.502978, 47.408939], [8.50299, 47.408956], [8.503004, 47.408973], [8.50302, 47.408989], [8.503038, 47.409004], [8.503058, 47.409018], [8.50309, 47.409033], [8.503125, 47.409046], [8.503161, 47.409057], [8.503199, 47.409066], [8.503237, 47.409072], [8.503276, 47.409076], [8.503315, 47.409077], [8.503355, 47.409076], [8.503394, 47.409073], [8.503433, 47.409067], [8.50347, 47.40906], [8.503507, 47.409049], [8.503672, 47.409036]]], "type": "MultiLineString"}, "id": "3346", "properties": {}, "type": "Feature"}, {"bbox": [8.545002, 47.366345, 8.545814, 47.36675], "geometry": {"coordinates": [[[8.545002, 47.366345], [8.545224, 47.366437], [8.545631, 47.366617], [8.545674, 47.366639], [8.545714, 47.366663], [8.545751, 47.36669], [8.545784, 47.366719], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3349", "properties": {}, "type": "Feature"}, {"bbox": [8.531326, 47.369649, 8.53365, 47.373056], "geometry": {"coordinates": [[[8.53365, 47.369649], [8.532998, 47.370024], [8.532577, 47.37026], [8.532418, 47.370358], [8.532141, 47.370524], [8.53207, 47.37057], [8.532, 47.370617], [8.53193, 47.370664], [8.53153, 47.370899], [8.531464, 47.370933], [8.531396, 47.370964], [8.531326, 47.370994], [8.531397, 47.371233], [8.531427, 47.371326], [8.531468, 47.371416], [8.53152, 47.371504], [8.531583, 47.371589], [8.531657, 47.37167], [8.53174, 47.371746], [8.532064, 47.372036], [8.532125, 47.372088], [8.532225, 47.372178], [8.532321, 47.372271], [8.53241, 47.372366], [8.53266, 47.372651], [8.532787, 47.372805], [8.532899, 47.372955], [8.532964, 47.373056]]], "type": "MultiLineString"}, "id": "3351", "properties": {}, "type": "Feature"}, {"bbox": [8.567502, 47.376222, 8.573522, 47.377504], "geometry": {"coordinates": [[[8.567502, 47.376222], [8.567712, 47.376286], [8.568301, 47.376464], [8.568506, 47.376526], [8.568707, 47.376595], [8.568903, 47.376669], [8.569263, 47.376814], [8.569758, 47.377015], [8.569932, 47.377086], [8.57011, 47.377151], [8.570292, 47.37721], [8.570781, 47.37736], [8.57097, 47.377411], [8.571165, 47.377452], [8.571364, 47.377481], [8.571566, 47.377498], [8.571769, 47.377504], [8.571973, 47.377498], [8.572174, 47.37748], [8.572996, 47.377382], [8.5731, 47.377371], [8.573206, 47.377367], [8.573312, 47.377369], [8.573417, 47.377378], [8.57352, 47.377393], [8.573522, 47.377393]]], "type": "MultiLineString"}, "id": "3352", "properties": {}, "type": "Feature"}, {"bbox": [8.491009, 47.394183, 8.493295, 47.394758], "geometry": {"coordinates": [[[8.493295, 47.394183], [8.491936, 47.394515], [8.491342, 47.39467], [8.491009, 47.394758]]], "type": "MultiLineString"}, "id": "3360", "properties": {}, "type": "Feature"}, {"bbox": [8.496537, 47.423784, 8.496648, 47.423958], "geometry": {"coordinates": [[[8.496615, 47.423784], [8.496604, 47.423788], [8.496594, 47.423792], [8.496585, 47.423797], [8.496576, 47.423802], [8.496568, 47.423808], [8.496561, 47.423815], [8.496555, 47.423821], [8.496549, 47.423828], [8.496545, 47.423836], [8.496541, 47.423843], [8.496539, 47.423851], [8.496537, 47.423859], [8.496537, 47.423867], [8.496537, 47.423875], [8.496539, 47.423883], [8.496541, 47.423891], [8.496545, 47.423899], [8.496549, 47.423906], [8.496555, 47.423913], [8.496561, 47.42392], [8.496568, 47.423926], [8.496576, 47.423932], [8.496584, 47.423938], [8.496594, 47.423943], [8.496604, 47.423947], [8.496614, 47.423951], [8.496625, 47.423954], [8.496636, 47.423957], [8.496648, 47.423958], [8.496648, 47.423958]]], "type": "MultiLineString"}, "id": "3361", "properties": {}, "type": "Feature"}, {"bbox": [8.489818, 47.392537, 8.491391, 47.393651], "geometry": {"coordinates": [[[8.490972, 47.392537], [8.491371, 47.393238], [8.491378, 47.393249], [8.491384, 47.39326], [8.491388, 47.393272], [8.49139, 47.393284], [8.491391, 47.393296], [8.49139, 47.393308], [8.491388, 47.39332], [8.491385, 47.393331], [8.491379, 47.393343], [8.491373, 47.393354], [8.491365, 47.393365], [8.491355, 47.393375], [8.491344, 47.393384], [8.491332, 47.393393], [8.491319, 47.393401], [8.491305, 47.393409], [8.49129, 47.393415], [8.491275, 47.393421], [8.491258, 47.393425], [8.491241, 47.393429], [8.491224, 47.393431], [8.490749, 47.393545], [8.490258, 47.393594], [8.489818, 47.393651]]], "type": "MultiLineString"}, "id": "3362", "properties": {}, "type": "Feature"}, {"bbox": [8.513909, 47.399002, 8.518295, 47.402677], "geometry": {"coordinates": [[[8.513925, 47.399002], [8.513918, 47.399017], [8.513913, 47.399031], [8.51391, 47.399046], [8.513909, 47.399061], [8.51391, 47.399077], [8.513912, 47.399092], [8.513917, 47.399106], [8.513924, 47.399121], [8.513933, 47.399135], [8.513943, 47.399148], [8.513955, 47.399161], [8.513969, 47.399173], [8.513984, 47.399184], [8.514001, 47.399194], [8.514019, 47.399203], [8.514038, 47.399211], [8.514058, 47.399217], [8.514084, 47.399227], [8.515353, 47.399589], [8.515355, 47.39959], [8.515396, 47.3996], [8.515435, 47.399613], [8.515473, 47.399628], [8.515508, 47.399645], [8.515541, 47.399664], [8.515571, 47.399686], [8.51563, 47.399745], [8.515647, 47.399763], [8.515667, 47.399781], [8.515689, 47.399797], [8.515713, 47.399812], [8.515739, 47.399825], [8.515767, 47.399836], [8.515796, 47.399846], [8.515826, 47.399854], [8.516032, 47.399912], [8.516076, 47.399926], [8.516118, 47.399942], [8.516158, 47.399961], [8.516195, 47.399982], [8.51623, 47.400005], [8.516261, 47.40003], [8.51652, 47.400227], [8.51675, 47.400439], [8.51695, 47.400665], [8.517049, 47.400787], [8.517165, 47.400901], [8.517297, 47.401006], [8.517343, 47.401066], [8.51738, 47.401128], [8.51741, 47.401192], [8.517432, 47.401258], [8.517445, 47.401325], [8.517463, 47.401375], [8.517488, 47.401423], [8.517519, 47.401471], [8.517555, 47.401516], [8.517598, 47.401559], [8.517645, 47.401599], [8.517698, 47.401636], [8.518125, 47.401952], [8.518163, 47.401985], [8.518196, 47.402021], [8.518225, 47.402059], [8.51825, 47.402098], [8.518269, 47.402138], [8.518283, 47.40218], [8.518292, 47.402222], [8.518295, 47.402264], [8.518294, 47.402306], [8.518287, 47.402349], [8.518275, 47.40239], [8.518257, 47.402431], [8.518235, 47.402471], [8.518208, 47.402509], [8.518176, 47.402545], [8.518024, 47.402677]]], "type": "MultiLineString"}, "id": "3367", "properties": {}, "type": "Feature"}, {"bbox": [8.579732, 47.408786, 8.580193, 47.40949], "geometry": {"coordinates": [[[8.579732, 47.408786], [8.579852, 47.40903], [8.580006, 47.409266], [8.580193, 47.40949]]], "type": "MultiLineString"}, "id": "3369", "properties": {}, "type": "Feature"}, {"bbox": [8.531102, 47.416081, 8.540438, 47.417086], "geometry": {"coordinates": [[[8.540438, 47.417086], [8.540144, 47.417065], [8.538897, 47.416976], [8.538275, 47.416931], [8.538146, 47.416933], [8.538017, 47.416929], [8.537889, 47.416919], [8.537782, 47.416901], [8.537674, 47.416884], [8.537565, 47.416869], [8.53594, 47.41668], [8.533273, 47.416359], [8.53281, 47.416304], [8.532672, 47.416287], [8.531467, 47.416137], [8.531345, 47.416119], [8.531223, 47.416101], [8.531102, 47.416081]]], "type": "MultiLineString"}, "id": "3370", "properties": {}, "type": "Feature"}, {"bbox": [8.494818, 47.367674, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.49616, 47.367989], [8.495896, 47.367842], [8.495618, 47.367709], [8.495545, 47.367693], [8.49547, 47.367682], [8.495394, 47.367676], [8.495318, 47.367674], [8.495241, 47.367677], [8.495166, 47.367685], [8.495091, 47.367697], [8.495019, 47.367713], [8.494949, 47.367734], [8.494881, 47.367759], [8.494818, 47.367788]]], "type": "MultiLineString"}, "id": "3372", "properties": {}, "type": "Feature"}, {"bbox": [8.509984, 47.364574, 8.51054, 47.365844], "geometry": {"coordinates": [[[8.509984, 47.365844], [8.510437, 47.365541], [8.510439, 47.36554], [8.510457, 47.365529], [8.510473, 47.365518], [8.510488, 47.365506], [8.510501, 47.365493], [8.510512, 47.365479], [8.510522, 47.365464], [8.510529, 47.365449], [8.510535, 47.365434], [8.510539, 47.365418], [8.51054, 47.365402], [8.51054, 47.365387], [8.510538, 47.365371], [8.510493, 47.365204], [8.510278, 47.364574]]], "type": "MultiLineString"}, "id": "3375", "properties": {}, "type": "Feature"}, {"bbox": [8.520418, 47.412926, 8.53775, 47.414576], "geometry": {"coordinates": [[[8.53775, 47.412926], [8.536716, 47.412981], [8.536302, 47.413011], [8.533856, 47.413144], [8.533606, 47.413158], [8.533181, 47.413182], [8.532337, 47.413235], [8.531822, 47.413288], [8.531531, 47.413301], [8.530265, 47.413467], [8.530047, 47.413496], [8.529068, 47.413626], [8.527174, 47.413879], [8.527003, 47.413904], [8.526405, 47.413982], [8.526178, 47.414006], [8.525948, 47.414016], [8.525718, 47.414012], [8.525574, 47.414003], [8.525432, 47.413987], [8.525291, 47.413967], [8.525149, 47.41394], [8.525009, 47.413909], [8.524872, 47.413872], [8.524348, 47.413725], [8.524197, 47.413684], [8.52404, 47.413651], [8.523881, 47.413628], [8.523708, 47.413612], [8.523534, 47.413607], [8.52336, 47.413612], [8.523187, 47.413627], [8.523017, 47.413653], [8.522851, 47.413688], [8.52269, 47.413734], [8.522536, 47.413788], [8.521237, 47.414315], [8.520972, 47.414413], [8.520699, 47.4145], [8.520418, 47.414576]]], "type": "MultiLineString"}, "id": "3379", "properties": {}, "type": "Feature"}, {"bbox": [8.532307, 47.390367, 8.533113, 47.390845], "geometry": {"coordinates": [[[8.532307, 47.390367], [8.53236, 47.390422], [8.533113, 47.390845]]], "type": "MultiLineString"}, "id": "3402", "properties": {}, "type": "Feature"}, {"bbox": [8.54651, 47.408601, 8.55047, 47.409304], "geometry": {"coordinates": [[[8.54651, 47.409267], [8.546526, 47.409276], [8.546543, 47.409283], [8.546561, 47.409289], [8.54658, 47.409295], [8.5466, 47.409299], [8.546619, 47.409302], [8.546639, 47.409304], [8.54666, 47.409304], [8.54668, 47.409304], [8.5467, 47.409302], [8.547527, 47.409125], [8.548681, 47.408889], [8.549097, 47.4088], [8.549879, 47.408624], [8.549991, 47.40861], [8.550105, 47.408602], [8.550219, 47.408601], [8.550333, 47.408605], [8.550447, 47.408615], [8.550454, 47.408615], [8.550462, 47.408615], [8.55047, 47.408615]]], "type": "MultiLineString"}, "id": "3404", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.372597, 8.534746, 47.372706], "geometry": {"coordinates": [[[8.534746, 47.372704], [8.534725, 47.372706], [8.534704, 47.372706], [8.534683, 47.372706], [8.534661, 47.372704], [8.534641, 47.3727], [8.53462, 47.372696], [8.534601, 47.37269], [8.534582, 47.372684], [8.534564, 47.372676], [8.534547, 47.372667], [8.534531, 47.372657], [8.534516, 47.372647], [8.534503, 47.372635], [8.534491, 47.372623], [8.534481, 47.372611], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "3422", "properties": {}, "type": "Feature"}, {"bbox": [8.491913, 47.423043, 8.493074, 47.423217], "geometry": {"coordinates": [[[8.493074, 47.423043], [8.491913, 47.423217]]], "type": "MultiLineString"}, "id": "3430", "properties": {}, "type": "Feature"}, {"bbox": [8.543001, 47.431157, 8.543928, 47.432856], "geometry": {"coordinates": [[[8.543928, 47.431157], [8.543849, 47.431294], [8.543843, 47.431303], [8.543837, 47.431312], [8.543831, 47.431322], [8.54381, 47.431351], [8.543673, 47.431605], [8.543361, 47.432186], [8.543235, 47.432423], [8.543001, 47.432856]]], "type": "MultiLineString"}, "id": "3431", "properties": {}, "type": "Feature"}, {"bbox": [8.532437, 47.397712, 8.534208, 47.398872], "geometry": {"coordinates": [[[8.533209, 47.398872], [8.533547, 47.398863], [8.533598, 47.398861], [8.533649, 47.398855], [8.533699, 47.398846], [8.533748, 47.398834], [8.533795, 47.398819], [8.533839, 47.398802], [8.533882, 47.398781], [8.533921, 47.398759], [8.533958, 47.398734], [8.533991, 47.398707], [8.53402, 47.398679], [8.534046, 47.398648], [8.534068, 47.398616], [8.534155, 47.398383], [8.534181, 47.39829], [8.534195, 47.398249], [8.534204, 47.398208], [8.534208, 47.398166], [8.534207, 47.398124], [8.534201, 47.398082], [8.534185, 47.398052], [8.534166, 47.398023], [8.534143, 47.397995], [8.534116, 47.397969], [8.534087, 47.397944], [8.534054, 47.397922], [8.534019, 47.3979], [8.533982, 47.397881], [8.533942, 47.397865], [8.533568, 47.397787], [8.533238, 47.39773], [8.533184, 47.39772], [8.533129, 47.397715], [8.533073, 47.397712], [8.533018, 47.397714], [8.532963, 47.397718], [8.532908, 47.397726], [8.532863, 47.397738], [8.53282, 47.397752], [8.532778, 47.397769], [8.532738, 47.397788], [8.532701, 47.397809], [8.532666, 47.397832], [8.532634, 47.397856], [8.532579, 47.397914], [8.532531, 47.397974], [8.53249, 47.398036], [8.532456, 47.3981], [8.532443, 47.398157], [8.532437, 47.398214], [8.532439, 47.398271], [8.532448, 47.398328], [8.532464, 47.398384], [8.532488, 47.398439], [8.532518, 47.398493], [8.532556, 47.398544], [8.532599, 47.398593], [8.532649, 47.398639], [8.532705, 47.398682], [8.532765, 47.398722], [8.532831, 47.398758], [8.532919, 47.398795], [8.533012, 47.398827], [8.533109, 47.398852], [8.533209, 47.398872]]], "type": "MultiLineString"}, "id": "3432", "properties": {}, "type": "Feature"}, {"bbox": [8.523856, 47.392668, 8.527032, 47.396102], "geometry": {"coordinates": [[[8.523856, 47.392668], [8.523886, 47.392668], [8.523915, 47.392669], [8.523945, 47.392672], [8.523973, 47.392676], [8.524001, 47.392683], [8.524029, 47.392691], [8.524055, 47.3927], [8.524079, 47.392711], [8.524103, 47.392723], [8.524125, 47.392737], [8.524145, 47.392751], [8.524163, 47.392767], [8.524179, 47.392784], [8.524193, 47.392802], [8.524424, 47.393232], [8.524432, 47.393245], [8.524442, 47.393257], [8.524454, 47.393269], [8.524467, 47.39328], [8.524482, 47.393291], [8.524498, 47.3933], [8.524515, 47.393308], [8.524534, 47.393315], [8.524557, 47.393329], [8.524578, 47.393343], [8.524598, 47.393359], [8.524615, 47.393376], [8.524631, 47.393393], [8.524644, 47.393412], [8.524678, 47.393487], [8.524717, 47.393561], [8.52476, 47.393633], [8.524854, 47.393763], [8.525109, 47.394101], [8.525158, 47.39416], [8.525325, 47.394361], [8.525488, 47.394564], [8.525645, 47.394768], [8.525706, 47.394871], [8.525769, 47.394973], [8.525833, 47.395074], [8.5259, 47.395175], [8.52597, 47.395275], [8.526041, 47.395375], [8.526115, 47.395455], [8.526196, 47.395533], [8.526283, 47.395607], [8.526375, 47.395678], [8.526473, 47.395746], [8.526577, 47.39581], [8.526725, 47.39591], [8.526876, 47.396007], [8.527032, 47.396102]]], "type": "MultiLineString"}, "id": "3433", "properties": {}, "type": "Feature"}, {"bbox": [8.55231, 47.379109, 8.559455, 47.382622], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552382, 47.382582], [8.552612, 47.382471], [8.553596, 47.382033], [8.554916, 47.381445], [8.555171, 47.381331], [8.555395, 47.381229], [8.555652, 47.381113], [8.556365, 47.380795], [8.556403, 47.380778], [8.556605, 47.380696], [8.556708, 47.38064], [8.556937, 47.380515], [8.558294, 47.379766], [8.558402, 47.379707], [8.559333, 47.37919], [8.559455, 47.379109]]], "type": "MultiLineString"}, "id": "3443", "properties": {}, "type": "Feature"}, {"bbox": [8.534102, 47.345158, 8.535557, 47.362553], "geometry": {"coordinates": [[[8.535274, 47.362553], [8.535269, 47.36247], [8.53527, 47.362387], [8.535277, 47.362304], [8.535357, 47.361403], [8.535362, 47.361328], [8.535382, 47.361003], [8.535427, 47.360339], [8.535476, 47.359619], [8.535498, 47.359094], [8.535557, 47.358198], [8.535531, 47.357941], [8.535473, 47.357687], [8.535384, 47.357436], [8.535263, 47.357192], [8.535113, 47.356956], [8.534934, 47.356729], [8.534727, 47.356513], [8.534716, 47.35643], [8.534702, 47.356347], [8.534687, 47.356265], [8.534622, 47.356102], [8.53456, 47.355939], [8.5345, 47.355775], [8.534372, 47.35539], [8.534276, 47.355047], [8.534266, 47.355012], [8.534185, 47.354615], [8.534148, 47.354347], [8.534123, 47.354078], [8.534111, 47.353809], [8.534102, 47.353273], [8.534106, 47.352899], [8.534121, 47.352525], [8.534146, 47.352152], [8.534166, 47.351942], [8.534208, 47.351553], [8.534252, 47.351158], [8.534281, 47.350899], [8.534301, 47.350639], [8.534311, 47.35038], [8.534313, 47.350274], [8.534313, 47.35027], [8.534363, 47.346548], [8.534373, 47.345865], [8.53438, 47.345772], [8.534389, 47.34568], [8.534399, 47.345587], [8.534456, 47.345258], [8.534462, 47.345225], [8.534467, 47.345192], [8.534473, 47.345158]]], "type": "MultiLineString"}, "id": "3445", "properties": {}, "type": "Feature"}, {"bbox": [8.491597, 47.381178, 8.497438, 47.388332], "geometry": {"coordinates": [[[8.497368, 47.388332], [8.497433, 47.38799], [8.497438, 47.387879], [8.497428, 47.387769], [8.497401, 47.38766], [8.497371, 47.387574], [8.497328, 47.387491], [8.497275, 47.387411], [8.497261, 47.387393], [8.497248, 47.387376], [8.497233, 47.387359], [8.496536, 47.386463], [8.496527, 47.386451], [8.496012, 47.385789], [8.495558, 47.385204], [8.495371, 47.385002], [8.495226, 47.384846], [8.494424, 47.384038], [8.494381, 47.383995], [8.493928, 47.383547], [8.492907, 47.382514], [8.492566, 47.382169], [8.491736, 47.381289], [8.49169, 47.381254], [8.491645, 47.381217], [8.491601, 47.381181], [8.491597, 47.381178]]], "type": "MultiLineString"}, "id": "3464", "properties": {}, "type": "Feature"}, {"bbox": [8.537189, 47.376775, 8.538107, 47.377184], "geometry": {"coordinates": [[[8.538107, 47.376775], [8.53793, 47.376845], [8.537342, 47.377111], [8.537189, 47.377184]]], "type": "MultiLineString"}, "id": "3489", "properties": {}, "type": "Feature"}, {"bbox": [8.538846, 47.392096, 8.548384, 47.409267], "geometry": {"coordinates": [[[8.538846, 47.392096], [8.538888, 47.392259], [8.538985, 47.392631], [8.53901, 47.392729], [8.539175, 47.393421], [8.539237, 47.393682], [8.539328, 47.394066], [8.539332, 47.394085], [8.53953, 47.394565], [8.539767, 47.395037], [8.540042, 47.395499], [8.540299, 47.395906], [8.540514, 47.396236], [8.540729, 47.396567], [8.540929, 47.396857], [8.541088, 47.397088], [8.542489, 47.399138], [8.542568, 47.399292], [8.542652, 47.399445], [8.542741, 47.399597], [8.542862, 47.399752], [8.542997, 47.399902], [8.543147, 47.400045], [8.544396, 47.400837], [8.544871, 47.401132], [8.544996, 47.401222], [8.545119, 47.401314], [8.545238, 47.401409], [8.545318, 47.401475], [8.545397, 47.401542], [8.545474, 47.40161], [8.545484, 47.401619], [8.545493, 47.401628], [8.545503, 47.401637], [8.545961, 47.402018], [8.54642, 47.4024], [8.54714, 47.403], [8.547354, 47.403164], [8.547491, 47.403267], [8.547618, 47.403376], [8.547735, 47.40349], [8.547789, 47.403545], [8.547842, 47.403601], [8.547894, 47.403657], [8.547993, 47.403782], [8.548076, 47.403912], [8.548139, 47.404046], [8.548184, 47.404185], [8.548288, 47.404605], [8.548313, 47.40469], [8.548334, 47.404775], [8.548352, 47.404861], [8.548371, 47.404997], [8.548381, 47.405134], [8.548382, 47.40527], [8.548384, 47.405765], [8.548372, 47.405902], [8.548359, 47.406059], [8.54833, 47.406175], [8.548288, 47.40629], [8.548233, 47.406401], [8.548164, 47.406509], [8.548083, 47.406613], [8.54799, 47.406713], [8.547976, 47.406726], [8.547962, 47.406739], [8.547948, 47.406752], [8.547859, 47.406829], [8.547231, 47.407376], [8.54714, 47.407458], [8.547073, 47.407525], [8.547011, 47.407593], [8.546953, 47.407664], [8.546855, 47.407805], [8.546777, 47.407952], [8.546719, 47.408103], [8.546687, 47.408214], [8.546589, 47.40856], [8.546425, 47.409109], [8.546421, 47.40912], [8.546418, 47.409132], [8.546417, 47.409144], [8.546417, 47.409156], [8.546418, 47.409168], [8.546421, 47.40918], [8.546426, 47.409191], [8.546432, 47.409203], [8.546439, 47.409214], [8.546448, 47.409224], [8.546458, 47.409234], [8.54647, 47.409244], [8.546482, 47.409252], [8.546496, 47.40926], [8.54651, 47.409267]]], "type": "MultiLineString"}, "id": "3501", "properties": {}, "type": "Feature"}, {"bbox": [8.538843, 47.377004, 8.544299, 47.391346], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544195, 47.377018], [8.544212, 47.377032], [8.544228, 47.377048], [8.544242, 47.377064], [8.544253, 47.377082], [8.544262, 47.377099], [8.544269, 47.377118], [8.544274, 47.377136], [8.544299, 47.378004], [8.544287, 47.378736], [8.544285, 47.378897], [8.544284, 47.378922], [8.544242, 47.379429], [8.544178, 47.379814], [8.54415, 47.379937], [8.544037, 47.380439], [8.543965, 47.38073], [8.543803, 47.381459], [8.54371, 47.381955], [8.543633, 47.382304], [8.54356, 47.382646], [8.543421, 47.383295], [8.543411, 47.383355], [8.543399, 47.383415], [8.543386, 47.383475], [8.543342, 47.383655], [8.543288, 47.383833], [8.543225, 47.384011], [8.543169, 47.38415], [8.543108, 47.384288], [8.54304, 47.384425], [8.542967, 47.384539], [8.542894, 47.384654], [8.542705, 47.384942], [8.542451, 47.385329], [8.542339, 47.385498], [8.541571, 47.386681], [8.541519, 47.386776], [8.541136, 47.387357], [8.541019, 47.387548], [8.540912, 47.387742], [8.540815, 47.387939], [8.540702, 47.388198], [8.540647, 47.388323], [8.540364, 47.388969], [8.540286, 47.389146], [8.540084, 47.389588], [8.539856, 47.390087], [8.53983, 47.390146], [8.539808, 47.390206], [8.539788, 47.390267], [8.539767, 47.390378], [8.539729, 47.390487], [8.539675, 47.390593], [8.539621, 47.390675], [8.539557, 47.390753], [8.539484, 47.390828], [8.539093, 47.391238], [8.538843, 47.391346]]], "type": "MultiLineString"}, "id": "3512", "properties": {}, "type": "Feature"}, {"bbox": [8.480746, 47.405206, 8.481332, 47.406843], "geometry": {"coordinates": [[[8.480746, 47.405206], [8.48075, 47.405304], [8.480767, 47.405402], [8.480798, 47.405498], [8.480842, 47.405592], [8.480899, 47.405682], [8.481082, 47.405949], [8.481263, 47.40622], [8.481289, 47.406267], [8.481309, 47.406314], [8.481323, 47.406363], [8.481331, 47.406413], [8.481332, 47.406463], [8.481326, 47.406512], [8.481314, 47.406561], [8.481296, 47.406609], [8.481271, 47.406659], [8.48124, 47.406708], [8.481203, 47.406754], [8.481168, 47.406785], [8.48113, 47.406815], [8.481089, 47.406843]]], "type": "MultiLineString"}, "id": "3515", "properties": {}, "type": "Feature"}, {"bbox": [8.520188, 47.378382, 8.521482, 47.379647], "geometry": {"coordinates": [[[8.520188, 47.378382], [8.520996, 47.379171], [8.521482, 47.379647]]], "type": "MultiLineString"}, "id": "3538", "properties": {}, "type": "Feature"}, {"bbox": [8.523722, 47.360273, 8.530117, 47.364452], "geometry": {"coordinates": [[[8.530117, 47.364452], [8.530084, 47.36444], [8.53005, 47.364428], [8.530017, 47.364416], [8.529301, 47.364211], [8.529067, 47.364137], [8.528835, 47.364058], [8.528608, 47.363975], [8.528597, 47.363971], [8.528586, 47.363967], [8.528575, 47.363963], [8.528418, 47.363895], [8.528271, 47.363817], [8.528135, 47.36373], [8.528012, 47.363635], [8.527984, 47.363611], [8.527957, 47.363586], [8.527931, 47.363561], [8.527237, 47.362788], [8.526914, 47.362425], [8.526785, 47.362278], [8.526646, 47.362136], [8.526496, 47.361998], [8.526409, 47.361925], [8.52632, 47.361853], [8.526228, 47.361782], [8.525943, 47.361587], [8.525808, 47.361487], [8.525669, 47.36139], [8.525526, 47.361295], [8.525384, 47.361207], [8.525239, 47.361121], [8.525091, 47.361038], [8.524992, 47.360985], [8.524891, 47.360933], [8.524789, 47.360882], [8.524412, 47.360662], [8.523997, 47.36042], [8.523909, 47.360367], [8.523818, 47.360318], [8.523722, 47.360273]]], "type": "MultiLineString"}, "id": "3539", "properties": {}, "type": "Feature"}, {"bbox": [8.545177, 47.36675, 8.545814, 47.367474], "geometry": {"coordinates": [[[8.545177, 47.367474], [8.545183, 47.367418], [8.545197, 47.367362], [8.545219, 47.367307], [8.545248, 47.367254], [8.545324, 47.367161], [8.545406, 47.36707], [8.545491, 47.366981], [8.54556, 47.366916], [8.545638, 47.366856], [8.545722, 47.3668], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3541", "properties": {}, "type": "Feature"}, {"bbox": [8.568656, 47.372127, 8.579742, 47.374595], "geometry": {"coordinates": [[[8.568656, 47.373542], [8.56876, 47.373497], [8.568859, 47.373446], [8.568952, 47.373391], [8.569117, 47.373297], [8.569766, 47.372898], [8.569872, 47.372827], [8.569986, 47.372762], [8.570108, 47.372704], [8.570237, 47.372654], [8.570371, 47.37261], [8.570511, 47.372575], [8.570654, 47.372548], [8.572138, 47.372332], [8.572378, 47.372314], [8.572619, 47.372312], [8.572859, 47.372324], [8.573097, 47.37235], [8.573713, 47.37242], [8.57383, 47.372425], [8.573946, 47.372424], [8.574063, 47.372415], [8.574177, 47.3724], [8.574289, 47.372378], [8.574389, 47.372352], [8.574485, 47.37232], [8.574578, 47.372284], [8.574666, 47.372242], [8.574748, 47.372196], [8.574779, 47.37218], [8.574813, 47.372166], [8.574848, 47.372154], [8.574884, 47.372144], [8.574921, 47.372136], [8.57496, 47.372131], [8.574999, 47.372128], [8.575038, 47.372127], [8.575063, 47.372132], [8.575088, 47.372139], [8.575112, 47.372147], [8.575134, 47.372156], [8.575155, 47.372167], [8.575175, 47.372179], [8.575193, 47.372193], [8.57521, 47.372207], [8.575224, 47.372222], [8.575237, 47.372238], [8.575247, 47.372255], [8.575255, 47.372272], [8.575261, 47.372289], [8.575264, 47.372307], [8.575266, 47.372325], [8.575265, 47.372343], [8.575261, 47.372361], [8.575256, 47.372379], [8.574974, 47.372949], [8.574963, 47.372989], [8.574957, 47.373029], [8.574955, 47.37307], [8.574959, 47.37311], [8.574967, 47.37315], [8.57498, 47.37319], [8.574998, 47.373221], [8.575019, 47.37325], [8.575044, 47.373279], [8.575073, 47.373306], [8.575104, 47.373331], [8.575139, 47.373355], [8.575176, 47.373376], [8.575924, 47.37375], [8.57614, 47.373843], [8.576367, 47.373921], [8.576606, 47.373984], [8.576831, 47.374035], [8.576915, 47.374054], [8.577346, 47.374148], [8.578129, 47.37431], [8.578151, 47.374314], [8.57867, 47.374387], [8.579513, 47.374504], [8.579555, 47.374514], [8.579596, 47.374526], [8.579636, 47.37454], [8.579674, 47.374556], [8.579709, 47.374574], [8.579742, 47.374595]]], "type": "MultiLineString"}, "id": "3554", "properties": {}, "type": "Feature"}, {"bbox": [8.537094, 47.375541, 8.53712, 47.375729], "geometry": {"coordinates": [[[8.537117, 47.375541], [8.537106, 47.375564], [8.537099, 47.375587], [8.537095, 47.375611], [8.537094, 47.375635], [8.537096, 47.375659], [8.537101, 47.375683], [8.537109, 47.375706], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "3559", "properties": {}, "type": "Feature"}, {"bbox": [8.522924, 47.366945, 8.524329, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524263, 47.368194], [8.523815, 47.367706], [8.523382, 47.367336], [8.522924, 47.366945]]], "type": "MultiLineString"}, "id": "3570", "properties": {}, "type": "Feature"}, {"bbox": [8.516823, 47.35989, 8.517855, 47.360679], "geometry": {"coordinates": [[[8.516823, 47.360679], [8.516939, 47.360641], [8.51697, 47.36063], [8.516999, 47.360617], [8.517027, 47.360602], [8.517054, 47.360587], [8.517078, 47.36057], [8.51709, 47.36056], [8.517102, 47.36055], [8.517113, 47.36054], [8.517572, 47.360131], [8.517769, 47.359967], [8.517855, 47.35989]]], "type": "MultiLineString"}, "id": "3572", "properties": {}, "type": "Feature"}, {"bbox": [8.563269, 47.372726, 8.564707, 47.373576], "geometry": {"coordinates": [[[8.563269, 47.372726], [8.563403, 47.372803], [8.563642, 47.372958], [8.564118, 47.373165], [8.564253, 47.373252], [8.564707, 47.373576]]], "type": "MultiLineString"}, "id": "3575", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.360019, 8.523722, 47.360273], "geometry": {"coordinates": [[[8.523722, 47.360273], [8.52371, 47.360268], [8.523699, 47.360264], [8.523688, 47.360259], [8.523093, 47.360066], [8.522947, 47.360019]]], "type": "MultiLineString"}, "id": "3585", "properties": {}, "type": "Feature"}, {"bbox": [8.518347, 47.332973, 8.51909, 47.333731], "geometry": {"coordinates": [[[8.51909, 47.333731], [8.519071, 47.333709], [8.519052, 47.333687], [8.519033, 47.333665], [8.518762, 47.333367], [8.518347, 47.332973]]], "type": "MultiLineString"}, "id": "3593", "properties": {}, "type": "Feature"}, {"bbox": [8.494073, 47.398041, 8.49489, 47.398525], "geometry": {"coordinates": [[[8.49489, 47.39851], [8.494839, 47.398518], [8.494788, 47.398523], [8.494736, 47.398525], [8.494684, 47.398524], [8.494632, 47.39852], [8.494581, 47.398514], [8.494531, 47.398504], [8.494482, 47.398491], [8.494436, 47.398475], [8.494391, 47.398457], [8.494349, 47.398437], [8.494309, 47.398414], [8.494273, 47.398389], [8.494239, 47.398361], [8.49421, 47.398332], [8.494184, 47.398302], [8.494161, 47.39827], [8.494117, 47.398164], [8.494073, 47.398041]]], "type": "MultiLineString"}, "id": "3605", "properties": {}, "type": "Feature"}, {"bbox": [8.527918, 47.368682, 8.528831, 47.369145], "geometry": {"coordinates": [[[8.528831, 47.368682], [8.528634, 47.368797], [8.528439, 47.368913], [8.528245, 47.36903], [8.528141, 47.369075], [8.528032, 47.369113], [8.527918, 47.369145]]], "type": "MultiLineString"}, "id": "3606", "properties": {}, "type": "Feature"}, {"bbox": [8.601104, 47.350707, 8.602552, 47.353461], "geometry": {"coordinates": [[[8.602074, 47.353461], [8.602122, 47.35339], [8.602161, 47.353317], [8.602193, 47.353242], [8.602223, 47.353159], [8.602263, 47.353062], [8.602313, 47.352968], [8.602375, 47.352877], [8.602421, 47.352819], [8.602464, 47.352759], [8.602504, 47.352698], [8.602527, 47.352652], [8.602543, 47.352605], [8.602552, 47.352557], [8.602552, 47.352524], [8.602548, 47.352491], [8.602541, 47.352459], [8.602532, 47.352415], [8.602518, 47.352372], [8.602501, 47.352329], [8.602442, 47.352185], [8.602429, 47.35215], [8.602421, 47.352114], [8.602418, 47.352078], [8.602419, 47.352041], [8.602424, 47.352005], [8.602474, 47.3518], [8.602477, 47.351774], [8.602476, 47.351748], [8.602473, 47.351722], [8.602466, 47.351696], [8.602456, 47.351671], [8.602447, 47.351656], [8.602436, 47.351642], [8.602424, 47.351628], [8.602409, 47.351615], [8.602393, 47.351603], [8.602375, 47.351592], [8.602356, 47.351582], [8.60232, 47.35157], [8.602283, 47.35156], [8.602245, 47.351552], [8.602206, 47.351546], [8.602166, 47.351543], [8.602126, 47.351543], [8.601675, 47.351551], [8.601631, 47.35155], [8.601586, 47.351548], [8.601542, 47.351544], [8.601498, 47.35154], [8.601455, 47.351533], [8.601412, 47.351524], [8.601247, 47.351491], [8.601229, 47.351486], [8.601211, 47.35148], [8.601194, 47.351472], [8.601178, 47.351464], [8.601163, 47.351455], [8.601149, 47.351445], [8.601137, 47.351434], [8.601127, 47.351422], [8.601118, 47.35141], [8.60111, 47.351397], [8.601107, 47.351385], [8.601104, 47.351372], [8.601104, 47.35136], [8.601105, 47.351347], [8.601108, 47.351335], [8.601112, 47.351323], [8.601118, 47.351311], [8.601126, 47.351299], [8.601135, 47.351288], [8.601145, 47.351278], [8.601157, 47.351268], [8.60117, 47.351259], [8.601259, 47.351206], [8.601323, 47.351165], [8.601384, 47.351121], [8.601442, 47.351075], [8.601515, 47.351004], [8.60156, 47.350967], [8.601609, 47.350932], [8.601662, 47.3509], [8.601672, 47.350896], [8.601682, 47.350892], [8.601693, 47.350888], [8.601944, 47.350798], [8.60195, 47.350796], [8.601956, 47.350793], [8.601962, 47.350789], [8.601967, 47.350786], [8.601971, 47.350782], [8.601975, 47.350778], [8.601979, 47.350774], [8.601982, 47.350769], [8.601984, 47.350764], [8.601986, 47.35076], [8.601987, 47.350755], [8.601988, 47.35075], [8.601988, 47.350745], [8.601987, 47.35074], [8.601986, 47.350735], [8.601975, 47.350707]]], "type": "MultiLineString"}, "id": "3626", "properties": {}, "type": "Feature"}, {"bbox": [8.536133, 47.373667, 8.537061, 47.373799], "geometry": {"coordinates": [[[8.537061, 47.373667], [8.537056, 47.373684], [8.53705, 47.373701], [8.537041, 47.373717], [8.53703, 47.373733], [8.537017, 47.373748], [8.537003, 47.373762], [8.536986, 47.373776], [8.536968, 47.373788], [8.536949, 47.373799], [8.536926, 47.373785], [8.536902, 47.373773], [8.536876, 47.373762], [8.536849, 47.373752], [8.536821, 47.373744], [8.536792, 47.373738], [8.536762, 47.373733], [8.536732, 47.37373], [8.536133, 47.37369]]], "type": "MultiLineString"}, "id": "3627", "properties": {}, "type": "Feature"}, {"bbox": [8.554431, 47.364725, 8.554719, 47.36482], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554459, 47.364725], [8.554487, 47.364726], [8.554515, 47.364728], [8.554542, 47.364733], [8.554569, 47.364739], [8.554594, 47.364746], [8.554619, 47.364755], [8.554643, 47.364766], [8.554665, 47.364778], [8.554685, 47.364791], [8.554704, 47.364805], [8.554719, 47.36482]]], "type": "MultiLineString"}, "id": "3650", "properties": {}, "type": "Feature"}, {"bbox": [8.50761, 47.353401, 8.511813, 47.359374], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511196, 47.354546], [8.511018, 47.354879], [8.510903, 47.355059], [8.510231, 47.356318], [8.510184, 47.356394], [8.510127, 47.356466], [8.509088, 47.357647], [8.509004, 47.357768], [8.508886, 47.35793], [8.50761, 47.359374]]], "type": "MultiLineString"}, "id": "3667", "properties": {}, "type": "Feature"}, {"bbox": [8.565808, 47.407022, 8.586241, 47.410623], "geometry": {"coordinates": [[[8.565808, 47.407022], [8.565929, 47.40706], [8.566044, 47.407106], [8.566153, 47.407158], [8.566255, 47.407216], [8.566274, 47.407227], [8.566292, 47.407239], [8.56631, 47.407251], [8.56661, 47.40748], [8.566901, 47.407715], [8.567182, 47.407955], [8.568121, 47.408775], [8.568513, 47.409089], [8.568921, 47.409393], [8.569345, 47.409687], [8.569476, 47.409773], [8.569611, 47.409857], [8.56975, 47.409937], [8.569926, 47.410029], [8.570113, 47.41011], [8.57031, 47.410178], [8.570516, 47.410234], [8.57067, 47.410267], [8.570827, 47.410293], [8.570986, 47.410312], [8.57128, 47.410326], [8.571957, 47.410396], [8.571993, 47.410401], [8.572028, 47.410409], [8.572063, 47.410418], [8.572096, 47.410429], [8.572127, 47.410442], [8.572157, 47.410457], [8.572185, 47.410473], [8.57221, 47.410491], [8.572234, 47.41051], [8.572255, 47.410531], [8.572273, 47.410552], [8.572288, 47.410575], [8.572301, 47.410599], [8.572311, 47.410623], [8.573091, 47.410421], [8.573636, 47.410285], [8.576022, 47.409717], [8.576237, 47.409665], [8.578577, 47.409076], [8.579732, 47.408786], [8.58344, 47.407842], [8.584944, 47.407471], [8.586239, 47.407087], [8.586241, 47.407086]]], "type": "MultiLineString"}, "id": "3668", "properties": {}, "type": "Feature"}, {"bbox": [8.560414, 47.375321, 8.563846, 47.375538], "geometry": {"coordinates": [[[8.560414, 47.375321], [8.560869, 47.375344], [8.561205, 47.375365], [8.561255, 47.37537], [8.561462, 47.375391], [8.56265, 47.375508], [8.562912, 47.375531], [8.563045, 47.375537], [8.563179, 47.375538], [8.563312, 47.375534], [8.563616, 47.375511], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "3670", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.380137, 8.529232, 47.381908], "geometry": {"coordinates": [[[8.527985, 47.380137], [8.528382, 47.380713], [8.528913, 47.381482], [8.529023, 47.381644], [8.529088, 47.381734], [8.529158, 47.381821], [8.529232, 47.381908]]], "type": "MultiLineString"}, "id": "3685", "properties": {}, "type": "Feature"}, {"bbox": [8.575927, 47.349005, 8.577909, 47.35373], "geometry": {"coordinates": [[[8.575927, 47.35373], [8.576117, 47.353474], [8.576167, 47.353336], [8.576207, 47.353198], [8.576239, 47.353058], [8.576318, 47.352644], [8.576333, 47.352566], [8.576372, 47.352406], [8.576427, 47.352221], [8.576493, 47.352038], [8.576571, 47.351857], [8.576912, 47.351129], [8.577108, 47.350706], [8.577287, 47.350337], [8.577378, 47.350137], [8.577449, 47.349979], [8.577767, 47.349299], [8.577821, 47.349203], [8.577869, 47.349105], [8.577909, 47.349005]]], "type": "MultiLineString"}, "id": "3690", "properties": {}, "type": "Feature"}, {"bbox": [8.513893, 47.382753, 8.51564, 47.383677], "geometry": {"coordinates": [[[8.513938, 47.383106], [8.513897, 47.382975], [8.513894, 47.38296], [8.513893, 47.382944], [8.513894, 47.382928], [8.513896, 47.382913], [8.513901, 47.382897], [8.513908, 47.382882], [8.513917, 47.382868], [8.513928, 47.382854], [8.513941, 47.382841], [8.513955, 47.382829], [8.513971, 47.382817], [8.513997, 47.382803], [8.514024, 47.382791], [8.514053, 47.38278], [8.514083, 47.382771], [8.514114, 47.382763], [8.514146, 47.382758], [8.514179, 47.382755], [8.514212, 47.382753], [8.514245, 47.382754], [8.514278, 47.382756], [8.51431, 47.382761], [8.514407, 47.382791], [8.514499, 47.382826], [8.514586, 47.382867], [8.514668, 47.382913], [8.515148, 47.383187], [8.51564, 47.383677]]], "type": "MultiLineString"}, "id": "3707", "properties": {}, "type": "Feature"}, {"bbox": [8.575038, 47.367253, 8.579, 47.372127], "geometry": {"coordinates": [[[8.575038, 47.372127], [8.575131, 47.372085], [8.575218, 47.372038], [8.575298, 47.371986], [8.575372, 47.371929], [8.575437, 47.371868], [8.575495, 47.371803], [8.575544, 47.371736], [8.575621, 47.371546], [8.57572, 47.371361], [8.575842, 47.371182], [8.575985, 47.371011], [8.576149, 47.370848], [8.576631, 47.370351], [8.57683, 47.370142], [8.577001, 47.369921], [8.577142, 47.369692], [8.57727, 47.369508], [8.577842, 47.368756], [8.578536, 47.367855], [8.578901, 47.367381], [8.579, 47.367253]]], "type": "MultiLineString"}, "id": "3723", "properties": {}, "type": "Feature"}, {"bbox": [8.49582, 47.392158, 8.497594, 47.393131], "geometry": {"coordinates": [[[8.49582, 47.392158], [8.495827, 47.392211], [8.49584, 47.392264], [8.495859, 47.392316], [8.495884, 47.392366], [8.496057, 47.39267], [8.49606, 47.392846], [8.496042, 47.392984], [8.496017, 47.39304], [8.496016, 47.393042], [8.496015, 47.393044], [8.496014, 47.393045], [8.496014, 47.393047], [8.496014, 47.393049], [8.496014, 47.393051], [8.496014, 47.393053], [8.496015, 47.393055], [8.496016, 47.393057], [8.496017, 47.393059], [8.496018, 47.39306], [8.496019, 47.393062], [8.496021, 47.393063], [8.496023, 47.393065], [8.496025, 47.393066], [8.496027, 47.393067], [8.496029, 47.393068], [8.496032, 47.393069], [8.496034, 47.39307], [8.496037, 47.393071], [8.49604, 47.393071], [8.496043, 47.393072], [8.496238, 47.393086], [8.496434, 47.393093], [8.49663, 47.39309], [8.496952, 47.393098], [8.497273, 47.393112], [8.497594, 47.393131]]], "type": "MultiLineString"}, "id": "3725", "properties": {}, "type": "Feature"}, {"bbox": [8.540383, 47.374616, 8.540857, 47.374943], "geometry": {"coordinates": [[[8.540383, 47.374616], [8.540396, 47.374789], [8.5404, 47.374805], [8.540407, 47.374819], [8.540415, 47.374834], [8.540425, 47.374848], [8.540436, 47.374861], [8.540449, 47.374874], [8.540464, 47.374885], [8.54048, 47.374896], [8.540498, 47.374906], [8.540516, 47.374915], [8.540536, 47.374923], [8.540557, 47.374929], [8.540578, 47.374935], [8.5406, 47.374939], [8.540622, 47.374942], [8.540645, 47.374943], [8.540667, 47.374943], [8.54069, 47.374942], [8.540857, 47.374933]]], "type": "MultiLineString"}, "id": "3727", "properties": {}, "type": "Feature"}, {"bbox": [8.531976, 47.380086, 8.537756, 47.384352], "geometry": {"coordinates": [[[8.537756, 47.380086], [8.537304, 47.380419], [8.536066, 47.381333], [8.535894, 47.381449], [8.53583, 47.381492], [8.535329, 47.38188], [8.535232, 47.381952], [8.534649, 47.382384], [8.534548, 47.382455], [8.53429, 47.382638], [8.534232, 47.382682], [8.533628, 47.383148], [8.533261, 47.383431], [8.533064, 47.383547], [8.53256, 47.38392], [8.532351, 47.384075], [8.532172, 47.384207], [8.531976, 47.384352]]], "type": "MultiLineString"}, "id": "3741", "properties": {}, "type": "Feature"}, {"bbox": [8.533857, 47.362489, 8.535274, 47.362553], "geometry": {"coordinates": [[[8.535274, 47.362553], [8.535162, 47.362549], [8.535051, 47.362546], [8.53494, 47.362545], [8.534077, 47.362518], [8.534004, 47.362509], [8.533931, 47.362499], [8.533857, 47.362489]]], "type": "MultiLineString"}, "id": "3748", "properties": {}, "type": "Feature"}, {"bbox": [8.546398, 47.41257, 8.55063, 47.413038], "geometry": {"coordinates": [[[8.546398, 47.41257], [8.546651, 47.41265], [8.547201, 47.412782], [8.547254, 47.412795], [8.547309, 47.412805], [8.547364, 47.412811], [8.547421, 47.412814], [8.547477, 47.412814], [8.547664, 47.412822], [8.547849, 47.41284], [8.548032, 47.412868], [8.548578, 47.412931], [8.548809, 47.412947], [8.549222, 47.412964], [8.549651, 47.412976], [8.549839, 47.412984], [8.549905, 47.412989], [8.550004, 47.413001], [8.550198, 47.413022], [8.550375, 47.413038], [8.55063, 47.413027]]], "type": "MultiLineString"}, "id": "3749", "properties": {}, "type": "Feature"}, {"bbox": [8.537717, 47.409762, 8.538112, 47.412926], "geometry": {"coordinates": [[[8.537813, 47.409762], [8.538057, 47.410234], [8.53808, 47.41028], [8.538097, 47.410327], [8.538108, 47.410375], [8.53811, 47.410392], [8.538112, 47.410409], [8.538112, 47.410426], [8.538097, 47.410559], [8.538074, 47.410691], [8.538043, 47.410822], [8.538024, 47.410892], [8.538003, 47.410961], [8.53798, 47.41103], [8.537817, 47.411803], [8.537745, 47.412145], [8.537719, 47.412331], [8.537717, 47.412425], [8.537721, 47.41252], [8.537732, 47.412614], [8.53775, 47.412926]]], "type": "MultiLineString"}, "id": "3754", "properties": {}, "type": "Feature"}, {"bbox": [8.525477, 47.353477, 8.525677, 47.354171], "geometry": {"coordinates": [[[8.525677, 47.353477], [8.525599, 47.353591], [8.525573, 47.353627], [8.525544, 47.353681], [8.525493, 47.353797], [8.525493, 47.353798], [8.525484, 47.353822], [8.525479, 47.353846], [8.525477, 47.35387], [8.525478, 47.353894], [8.525482, 47.353918], [8.525489, 47.353942], [8.5255, 47.353965], [8.525513, 47.353988], [8.52553, 47.35401], [8.525549, 47.35403], [8.525662, 47.354117], [8.525602, 47.354171]]], "type": "MultiLineString"}, "id": "3755", "properties": {}, "type": "Feature"}, {"bbox": [8.550461, 47.404275, 8.561263, 47.406968], "geometry": {"coordinates": [[[8.550461, 47.406968], [8.550584, 47.406915], [8.550746, 47.406845], [8.551447, 47.406596], [8.551837, 47.406458], [8.552116, 47.406365], [8.552192, 47.406339], [8.553179, 47.405993], [8.553465, 47.405888], [8.554153, 47.405635], [8.554933, 47.405358], [8.555284, 47.40523], [8.555971, 47.40498], [8.556265, 47.404873], [8.557004, 47.404647], [8.557685, 47.404572], [8.558246, 47.404511], [8.558287, 47.404507], [8.559173, 47.404418], [8.559688, 47.404379], [8.560204, 47.404346], [8.560721, 47.404318], [8.560903, 47.404308], [8.561083, 47.404294], [8.561263, 47.404275]]], "type": "MultiLineString"}, "id": "3769", "properties": {}, "type": "Feature"}, {"bbox": [8.519092, 47.337213, 8.519244, 47.338716], "geometry": {"coordinates": [[[8.519092, 47.338716], [8.519104, 47.338573], [8.519118, 47.338426], [8.519135, 47.338279], [8.519236, 47.337568], [8.519244, 47.337507], [8.519244, 47.337447], [8.519235, 47.337387], [8.519218, 47.337327], [8.519193, 47.337269], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "3781", "properties": {}, "type": "Feature"}, {"bbox": [8.521987, 47.390188, 8.524644, 47.393412], "geometry": {"coordinates": [[[8.521987, 47.390188], [8.522139, 47.390345], [8.523072, 47.391306], [8.523528, 47.391777], [8.523833, 47.39208], [8.5241, 47.392399], [8.524331, 47.392731], [8.52441, 47.392865], [8.524484, 47.393], [8.524551, 47.393138], [8.524584, 47.393229], [8.524615, 47.39332], [8.524644, 47.393412]]], "type": "MultiLineString"}, "id": "3787", "properties": {}, "type": "Feature"}, {"bbox": [8.52814, 47.373225, 8.531653, 47.373611], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531441, 47.373402], [8.530802, 47.373552], [8.530694, 47.373574], [8.530584, 47.373591], [8.530472, 47.373603], [8.530377, 47.373609], [8.530281, 47.373611], [8.530185, 47.37361], [8.530081, 47.373603], [8.529977, 47.373592], [8.529875, 47.373579], [8.529811, 47.37357], [8.529747, 47.373559], [8.529684, 47.373547], [8.529042, 47.373422], [8.528738, 47.373364], [8.528437, 47.373298], [8.52814, 47.373225]]], "type": "MultiLineString"}, "id": "3790", "properties": {}, "type": "Feature"}, {"bbox": [8.540695, 47.377011, 8.541526, 47.378523], "geometry": {"coordinates": [[[8.540695, 47.377011], [8.540776, 47.377024], [8.540854, 47.377042], [8.54093, 47.377064], [8.541003, 47.37709], [8.541073, 47.377121], [8.541138, 47.377155], [8.541199, 47.377194], [8.541255, 47.377235], [8.541305, 47.37728], [8.54135, 47.377327], [8.541389, 47.377377], [8.541421, 47.377428], [8.541447, 47.377482], [8.541486, 47.377582], [8.541513, 47.377685], [8.541526, 47.377788], [8.541526, 47.377893], [8.541513, 47.377996], [8.54146, 47.378085], [8.541416, 47.378175], [8.541382, 47.378268], [8.541373, 47.378311], [8.54137, 47.378354], [8.541373, 47.378397], [8.541382, 47.37844], [8.541396, 47.378482], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "3791", "properties": {}, "type": "Feature"}, {"bbox": [8.53832, 47.373903, 8.538549, 47.3743], "geometry": {"coordinates": [[[8.53832, 47.373903], [8.53839, 47.374017], [8.538549, 47.3743]]], "type": "MultiLineString"}, "id": "3792", "properties": {}, "type": "Feature"}, {"bbox": [8.52235, 47.371584, 8.529983, 47.377593], "geometry": {"coordinates": [[[8.529983, 47.371584], [8.529721, 47.371809], [8.529648, 47.371879], [8.529584, 47.371955], [8.529531, 47.372033], [8.529447, 47.372223], [8.529374, 47.372415], [8.529313, 47.372609], [8.529175, 47.373023], [8.529128, 47.373185], [8.529042, 47.373422], [8.528959, 47.373545], [8.528862, 47.373663], [8.52875, 47.373775], [8.52843, 47.374074], [8.52766, 47.374793], [8.526852, 47.375548], [8.526631, 47.375749], [8.526404, 47.375948], [8.526169, 47.376142], [8.526031, 47.376247], [8.525883, 47.376347], [8.525726, 47.376439], [8.525319, 47.376577], [8.52498, 47.376688], [8.524787, 47.37675], [8.524385, 47.376879], [8.524021, 47.377005], [8.523202, 47.377289], [8.52269, 47.377467], [8.52235, 47.377593]]], "type": "MultiLineString"}, "id": "3794", "properties": {}, "type": "Feature"}, {"bbox": [8.519961, 47.363334, 8.522065, 47.363752], "geometry": {"coordinates": [[[8.522065, 47.363752], [8.520657, 47.363356], [8.520629, 47.363348], [8.5206, 47.363342], [8.52057, 47.363338], [8.52054, 47.363335], [8.52051, 47.363334], [8.52048, 47.363336], [8.52045, 47.363339], [8.52042, 47.363343], [8.520392, 47.36335], [8.520364, 47.363358], [8.520337, 47.363368], [8.519961, 47.363566]]], "type": "MultiLineString"}, "id": "3796", "properties": {}, "type": "Feature"}, {"bbox": [8.590184, 47.363713, 8.592398, 47.364051], "geometry": {"coordinates": [[[8.592398, 47.363733], [8.592206, 47.363717], [8.592013, 47.363713], [8.591819, 47.363723], [8.591628, 47.363744], [8.591441, 47.363778], [8.590184, 47.364051]]], "type": "MultiLineString"}, "id": "3797", "properties": {}, "type": "Feature"}, {"bbox": [8.531653, 47.373193, 8.532433, 47.373373], "geometry": {"coordinates": [[[8.532433, 47.373193], [8.531841, 47.373347], [8.531653, 47.373373]]], "type": "MultiLineString"}, "id": "3798", "properties": {}, "type": "Feature"}, {"bbox": [8.533568, 47.397787, 8.542489, 47.399138], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.534202, 47.397903], [8.534505, 47.397934], [8.534897, 47.397962], [8.535339, 47.397977], [8.535666, 47.397991], [8.535734, 47.398002], [8.5358, 47.398019], [8.535863, 47.398039], [8.5359, 47.398055], [8.535938, 47.398069], [8.535978, 47.398081], [8.536019, 47.398091], [8.536062, 47.398098], [8.536474, 47.398153], [8.536548, 47.398203], [8.537534, 47.39835], [8.537587, 47.398292], [8.537968, 47.398338], [8.539152, 47.398533], [8.539207, 47.398607], [8.540413, 47.398798], [8.541662, 47.398996], [8.542489, 47.399138]]], "type": "MultiLineString"}, "id": "3803", "properties": {}, "type": "Feature"}, {"bbox": [8.568073, 47.350594, 8.568616, 47.351434], "geometry": {"coordinates": [[[8.568616, 47.350594], [8.568605, 47.350614], [8.568106, 47.351235], [8.568073, 47.351292], [8.568108, 47.351401], [8.568135, 47.35141], [8.568162, 47.351419], [8.568191, 47.351425], [8.56822, 47.35143], [8.56825, 47.351433], [8.56828, 47.351434], [8.56831, 47.351434], [8.56834, 47.351431], [8.568369, 47.351427], [8.568398, 47.351421]]], "type": "MultiLineString"}, "id": "3807", "properties": {}, "type": "Feature"}, {"bbox": [8.532288, 47.356513, 8.534755, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532335, 47.365782], [8.532424, 47.365712], [8.53248, 47.36563], [8.532676, 47.365249], [8.532851, 47.364902], [8.532801, 47.364819], [8.532979, 47.364453], [8.533095, 47.364229], [8.533418, 47.363605], [8.533458, 47.363528], [8.533496, 47.363449], [8.53353, 47.36337], [8.533562, 47.363288], [8.533591, 47.363205], [8.533617, 47.363122], [8.533857, 47.362489], [8.533903, 47.362326], [8.53394, 47.362161], [8.53397, 47.361995], [8.534083, 47.361296], [8.534246, 47.360287], [8.53428, 47.360078], [8.534455, 47.35906], [8.534475, 47.358942], [8.534538, 47.358574], [8.534721, 47.357503], [8.534753, 47.357174], [8.534755, 47.356843], [8.534727, 47.356513]]], "type": "MultiLineString"}, "id": "3809", "properties": {}, "type": "Feature"}, {"bbox": [8.593096, 47.362684, 8.596188, 47.363695], "geometry": {"coordinates": [[[8.593096, 47.362684], [8.593227, 47.362738], [8.593519, 47.362884], [8.593711, 47.362973], [8.593916, 47.36305], [8.59413, 47.363112], [8.594642, 47.363218], [8.595179, 47.363343], [8.595696, 47.363502], [8.596188, 47.363695]]], "type": "MultiLineString"}, "id": "3811", "properties": {}, "type": "Feature"}, {"bbox": [8.536666, 47.415834, 8.53949, 47.415979], "geometry": {"coordinates": [[[8.53949, 47.415834], [8.538152, 47.415913], [8.536666, 47.415979]]], "type": "MultiLineString"}, "id": "3816", "properties": {}, "type": "Feature"}, {"bbox": [8.534294, 47.403729, 8.537636, 47.409409], "geometry": {"coordinates": [[[8.534294, 47.403729], [8.53498, 47.404896], [8.536117, 47.40683], [8.536132, 47.406856], [8.536948, 47.408244], [8.537088, 47.408483], [8.537229, 47.408721], [8.537369, 47.40896], [8.537499, 47.409181], [8.537636, 47.409409]]], "type": "MultiLineString"}, "id": "3819", "properties": {}, "type": "Feature"}, {"bbox": [8.502663, 47.364903, 8.503399, 47.364966], "geometry": {"coordinates": [[[8.503399, 47.364904], [8.502869, 47.364904], [8.502849, 47.364903], [8.502829, 47.364903], [8.50281, 47.364905], [8.502791, 47.364907], [8.502772, 47.364911], [8.502754, 47.364916], [8.502736, 47.364922], [8.502719, 47.364929], [8.502704, 47.364937], [8.502689, 47.364946], [8.502675, 47.364956], [8.502663, 47.364966]]], "type": "MultiLineString"}, "id": "3833", "properties": {}, "type": "Feature"}, {"bbox": [8.478156, 47.404844, 8.478596, 47.405141], "geometry": {"coordinates": [[[8.478596, 47.405141], [8.478591, 47.405114], [8.478584, 47.405087], [8.478573, 47.405061], [8.478558, 47.405036], [8.478541, 47.405012], [8.478521, 47.404988], [8.478498, 47.404966], [8.478472, 47.404946], [8.478444, 47.404927], [8.478413, 47.404909], [8.478381, 47.404894], [8.478346, 47.40488], [8.47831, 47.404869], [8.478273, 47.404859], [8.478235, 47.404852], [8.478195, 47.404847], [8.478156, 47.404844]]], "type": "MultiLineString"}, "id": "3836", "properties": {}, "type": "Feature"}, {"bbox": [8.501041, 47.399364, 8.505288, 47.401442], "geometry": {"coordinates": [[[8.505288, 47.399364], [8.505255, 47.399556], [8.505154, 47.399607], [8.505051, 47.399656], [8.504945, 47.399702], [8.504539, 47.399887], [8.504013, 47.400127], [8.50285, 47.400638], [8.50203, 47.400999], [8.501736, 47.401134], [8.501441, 47.401267], [8.501145, 47.401398], [8.501041, 47.401442]]], "type": "MultiLineString"}, "id": "3837", "properties": {}, "type": "Feature"}, {"bbox": [8.523797, 47.352207, 8.524746, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.524621, 47.352714], [8.524535, 47.352629], [8.524413, 47.352559], [8.523995, 47.352294], [8.523797, 47.352207]]], "type": "MultiLineString"}, "id": "3857", "properties": {}, "type": "Feature"}, {"bbox": [8.582046, 47.351006, 8.582237, 47.351087], "geometry": {"coordinates": [[[8.582046, 47.351087], [8.582088, 47.351076], [8.582128, 47.351062], [8.582167, 47.351045], [8.582203, 47.351027], [8.582237, 47.351006]]], "type": "MultiLineString"}, "id": "3862", "properties": {}, "type": "Feature"}, {"bbox": [8.577507, 47.37479, 8.577971, 47.375501], "geometry": {"coordinates": [[[8.577507, 47.37479], [8.577682, 47.374847], [8.57772, 47.374859], [8.577756, 47.374874], [8.57779, 47.374891], [8.577822, 47.37491], [8.577852, 47.37493], [8.577878, 47.374953], [8.577902, 47.374977], [8.577922, 47.375002], [8.577939, 47.375028], [8.577952, 47.375055], [8.577962, 47.375083], [8.577968, 47.375112], [8.577971, 47.375141], [8.57797, 47.375169], [8.577953, 47.375501]]], "type": "MultiLineString"}, "id": "3880", "properties": {}, "type": "Feature"}, {"bbox": [8.554432, 47.357753, 8.557776, 47.359519], "geometry": {"coordinates": [[[8.554432, 47.357753], [8.554833, 47.357877], [8.555177, 47.357973], [8.555368, 47.358026], [8.55609, 47.358223], [8.556898, 47.358442], [8.557098, 47.358737], [8.557141, 47.358818], [8.557191, 47.358897], [8.557247, 47.358974], [8.557264, 47.358996], [8.557282, 47.359018], [8.557301, 47.35904], [8.557451, 47.359187], [8.557667, 47.3594], [8.557776, 47.359519]]], "type": "MultiLineString"}, "id": "3885", "properties": {}, "type": "Feature"}, {"bbox": [8.549774, 47.409354, 8.551051, 47.414237], "geometry": {"coordinates": [[[8.549774, 47.409354], [8.550047, 47.410551], [8.550183, 47.411117], [8.550331, 47.411745], [8.550433, 47.412175], [8.550458, 47.412278], [8.55063, 47.413027], [8.550649, 47.41311], [8.550704, 47.413345], [8.550775, 47.413577], [8.55086, 47.413808], [8.550961, 47.414053], [8.55099, 47.414115], [8.55102, 47.414176], [8.551051, 47.414237]]], "type": "MultiLineString"}, "id": "3892", "properties": {}, "type": "Feature"}, {"bbox": [8.491774, 47.369917, 8.498618, 47.3776], "geometry": {"coordinates": [[[8.498618, 47.3776], [8.4985, 47.377462], [8.49666, 47.375484], [8.496076, 47.374855], [8.495868, 47.374631], [8.495711, 47.374486], [8.495606, 47.374388], [8.494773, 47.373488], [8.494696, 47.373404], [8.494623, 47.373318], [8.494553, 47.373231], [8.494442, 47.373081], [8.494342, 47.372927], [8.494253, 47.37277], [8.494113, 47.372504], [8.49399, 47.372271], [8.493882, 47.372076], [8.493759, 47.371886], [8.493619, 47.371701], [8.493571, 47.371643], [8.493522, 47.371585], [8.493472, 47.371529], [8.493363, 47.371421], [8.493255, 47.371314], [8.493145, 47.371207], [8.493037, 47.371101], [8.492928, 47.370997], [8.492819, 47.370892], [8.492746, 47.370814], [8.492677, 47.370734], [8.492613, 47.370653], [8.492381, 47.370354], [8.492347, 47.370318], [8.492313, 47.370281], [8.492279, 47.370245], [8.492214, 47.370178], [8.492141, 47.370116], [8.49206, 47.370058], [8.491971, 47.370005], [8.491875, 47.369958], [8.491774, 47.369917]]], "type": "MultiLineString"}, "id": "3906", "properties": {}, "type": "Feature"}, {"bbox": [8.573989, 47.396975, 8.594918, 47.404152], "geometry": {"coordinates": [[[8.573989, 47.404152], [8.575115, 47.403684], [8.575899, 47.40335], [8.576049, 47.403264], [8.576375, 47.40312], [8.576541, 47.403067], [8.576844, 47.402971], [8.577151, 47.402881], [8.577461, 47.402795], [8.581162, 47.401716], [8.581734, 47.401542], [8.582661, 47.401282], [8.582916, 47.401207], [8.584562, 47.400728], [8.585158, 47.400555], [8.585775, 47.400374], [8.586201, 47.40025], [8.587513, 47.399868], [8.587805, 47.399783], [8.588139, 47.399685], [8.588465, 47.399576], [8.588783, 47.399457], [8.589148, 47.399316], [8.589669, 47.399114], [8.591389, 47.398448], [8.594578, 47.397224], [8.594627, 47.397207], [8.594674, 47.397187], [8.594717, 47.397164], [8.594758, 47.397138], [8.594797, 47.39711], [8.594832, 47.397079], [8.594862, 47.397047], [8.594884, 47.397024], [8.594903, 47.397], [8.594918, 47.396975]]], "type": "MultiLineString"}, "id": "3912", "properties": {}, "type": "Feature"}, {"bbox": [8.549147, 47.400012, 8.552564, 47.402118], "geometry": {"coordinates": [[[8.549147, 47.400012], [8.549559, 47.400234], [8.54995, 47.400474], [8.550319, 47.400729], [8.550619, 47.400931], [8.550931, 47.401125], [8.551253, 47.40131], [8.551535, 47.401464], [8.551823, 47.401612], [8.552117, 47.401754], [8.552199, 47.401795], [8.552275, 47.401839], [8.552346, 47.401888], [8.552411, 47.401941], [8.552469, 47.401997], [8.55252, 47.402056], [8.552564, 47.402118]]], "type": "MultiLineString"}, "id": "3914", "properties": {}, "type": "Feature"}, {"bbox": [8.513742, 47.322819, 8.514418, 47.323025], "geometry": {"coordinates": [[[8.514418, 47.322981], [8.514382, 47.322994], [8.514344, 47.323005], [8.514306, 47.323013], [8.514266, 47.32302], [8.514226, 47.323023], [8.514185, 47.323025], [8.514144, 47.323024], [8.514104, 47.32302], [8.514064, 47.323015], [8.514025, 47.323007], [8.513987, 47.322996], [8.513951, 47.322984], [8.513916, 47.322969], [8.513884, 47.322953], [8.513853, 47.322934], [8.513825, 47.322914], [8.5138, 47.322892], [8.513778, 47.322869], [8.513759, 47.322845], [8.513742, 47.322819]]], "type": "MultiLineString"}, "id": "3932", "properties": {}, "type": "Feature"}, {"bbox": [8.538791, 47.387998, 8.539375, 47.391346], "geometry": {"coordinates": [[[8.539375, 47.387998], [8.539265, 47.38821], [8.539173, 47.388427], [8.539099, 47.388646], [8.539077, 47.388782], [8.539066, 47.388918], [8.539065, 47.389055], [8.539075, 47.389314], [8.539083, 47.389465], [8.539089, 47.389548], [8.539094, 47.389631], [8.539097, 47.389713], [8.539089, 47.389855], [8.53907, 47.389997], [8.539041, 47.390137], [8.538995, 47.390323], [8.538908, 47.390655], [8.538906, 47.390661], [8.538904, 47.390666], [8.538902, 47.390672], [8.538853, 47.390842], [8.538816, 47.391014], [8.538791, 47.391187], [8.538843, 47.391346]]], "type": "MultiLineString"}, "id": "3943", "properties": {}, "type": "Feature"}, {"bbox": [8.479148, 47.390602, 8.479433, 47.390821], "geometry": {"coordinates": [[[8.479433, 47.390602], [8.479148, 47.390821]]], "type": "MultiLineString"}, "id": "3955", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.385002, 8.495371, 47.385844], "geometry": {"coordinates": [[[8.495371, 47.385002], [8.493283, 47.385708], [8.493173, 47.385752], [8.493064, 47.385798], [8.492955, 47.385844]]], "type": "MultiLineString"}, "id": "3956", "properties": {}, "type": "Feature"}, {"bbox": [8.480421, 47.388822, 8.483314, 47.390095], "geometry": {"coordinates": [[[8.483314, 47.388822], [8.482904, 47.389069], [8.482472, 47.389297], [8.482017, 47.389504], [8.480924, 47.38991], [8.480421, 47.390095]]], "type": "MultiLineString"}, "id": "3957", "properties": {}, "type": "Feature"}, {"bbox": [8.48439, 47.387996, 8.485257, 47.388246], "geometry": {"coordinates": [[[8.485257, 47.387996], [8.484994, 47.388052], [8.484739, 47.388123], [8.484493, 47.388208], [8.484459, 47.388221], [8.484424, 47.388233], [8.48439, 47.388246]]], "type": "MultiLineString"}, "id": "3958", "properties": {}, "type": "Feature"}, {"bbox": [8.498495, 47.38347, 8.498978, 47.383707], "geometry": {"coordinates": [[[8.498978, 47.38347], [8.498823, 47.383547], [8.498495, 47.383707]]], "type": "MultiLineString"}, "id": "3959", "properties": {}, "type": "Feature"}, {"bbox": [8.489281, 47.386835, 8.490506, 47.387126], "geometry": {"coordinates": [[[8.490506, 47.386835], [8.490241, 47.386931], [8.489963, 47.387009], [8.489676, 47.387069], [8.489382, 47.387111], [8.489281, 47.387126]]], "type": "MultiLineString"}, "id": "3960", "properties": {}, "type": "Feature"}, {"bbox": [8.503195, 47.381435, 8.503836, 47.381478], "geometry": {"coordinates": [[[8.503836, 47.381443], [8.503758, 47.381459], [8.503678, 47.38147], [8.503596, 47.381476], [8.503515, 47.381478], [8.503433, 47.381474], [8.503352, 47.381466], [8.503273, 47.381452], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "3961", "properties": {}, "type": "Feature"}, {"bbox": [8.490506, 47.385844, 8.492955, 47.386835], "geometry": {"coordinates": [[[8.492955, 47.385844], [8.492874, 47.38588], [8.492793, 47.385916], [8.492713, 47.385953], [8.492537, 47.386032], [8.492361, 47.386109], [8.492183, 47.386186], [8.491633, 47.386413], [8.491074, 47.386629], [8.490506, 47.386835]]], "type": "MultiLineString"}, "id": "3962", "properties": {}, "type": "Feature"}, {"bbox": [8.485257, 47.387865, 8.485955, 47.387996], "geometry": {"coordinates": [[[8.485955, 47.387865], [8.48545, 47.387959], [8.485257, 47.387996]]], "type": "MultiLineString"}, "id": "3963", "properties": {}, "type": "Feature"}, {"bbox": [8.507101, 47.378415, 8.510001, 47.37972], "geometry": {"coordinates": [[[8.510001, 47.378415], [8.509844, 47.378476], [8.509568, 47.378597], [8.507917, 47.379348], [8.507101, 47.37972]]], "type": "MultiLineString"}, "id": "3964", "properties": {}, "type": "Feature"}, {"bbox": [8.500483, 47.382446, 8.501056, 47.38272], "geometry": {"coordinates": [[[8.501056, 47.382446], [8.500586, 47.382669], [8.500483, 47.38272]]], "type": "MultiLineString"}, "id": "3965", "properties": {}, "type": "Feature"}, {"bbox": [8.538588, 47.338107, 8.539538, 47.338442], "geometry": {"coordinates": [[[8.538588, 47.338107], [8.539538, 47.338324], [8.539498, 47.338442]]], "type": "MultiLineString"}, "id": "3966", "properties": {}, "type": "Feature"}, {"bbox": [8.53863, 47.338442, 8.539567, 47.340897], "geometry": {"coordinates": [[[8.539498, 47.338442], [8.539498, 47.338443], [8.539567, 47.338571], [8.539402, 47.338985], [8.53863, 47.340526], [8.538785, 47.340897]]], "type": "MultiLineString"}, "id": "3967", "properties": {}, "type": "Feature"}, {"bbox": [8.534473, 47.34351, 8.535499, 47.345158], "geometry": {"coordinates": [[[8.534473, 47.345158], [8.534483, 47.345101], [8.534493, 47.345043], [8.534504, 47.344986], [8.534549, 47.344867], [8.534609, 47.344751], [8.534683, 47.344639], [8.535342, 47.343719], [8.535499, 47.34351]]], "type": "MultiLineString"}, "id": "3977", "properties": {}, "type": "Feature"}, {"bbox": [8.496615, 47.423758, 8.497054, 47.423784], "geometry": {"coordinates": [[[8.496615, 47.423784], [8.496937, 47.423776], [8.496977, 47.423772], [8.497016, 47.423766], [8.497054, 47.423758]]], "type": "MultiLineString"}, "id": "3979", "properties": {}, "type": "Feature"}, {"bbox": [8.523047, 47.392235, 8.524244, 47.392772], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.523186, 47.392772], [8.523324, 47.392768], [8.523462, 47.392756], [8.523597, 47.392735], [8.523729, 47.392706], [8.523856, 47.392668], [8.524167, 47.392488], [8.524181, 47.392479], [8.524194, 47.392469], [8.524205, 47.392458], [8.524215, 47.392447], [8.524224, 47.392436], [8.524231, 47.392424], [8.524237, 47.392411], [8.524241, 47.392398], [8.524243, 47.392385], [8.524244, 47.392372], [8.524243, 47.392359], [8.52424, 47.392346], [8.524235, 47.392333], [8.524229, 47.392321], [8.52422, 47.392309], [8.524208, 47.392297], [8.524196, 47.392287], [8.524181, 47.392277], [8.524166, 47.392268], [8.52415, 47.39226], [8.524132, 47.392253], [8.524114, 47.392247], [8.524095, 47.392242], [8.524076, 47.392239], [8.524056, 47.392236], [8.524035, 47.392235], [8.524015, 47.392235], [8.523995, 47.392236], [8.523975, 47.392239], [8.523956, 47.392242], [8.523937, 47.392247], [8.523724, 47.392356], [8.523499, 47.392453], [8.523264, 47.392539], [8.523232, 47.392553], [8.523202, 47.392568], [8.523174, 47.392585], [8.523148, 47.392604], [8.523125, 47.392624], [8.523104, 47.392645], [8.523087, 47.392668], [8.523072, 47.392691], [8.523061, 47.392716], [8.523052, 47.392741], [8.523047, 47.392766]]], "type": "MultiLineString"}, "id": "3989", "properties": {}, "type": "Feature"}, {"bbox": [8.550197, 47.430922, 8.550363, 47.431197], "geometry": {"coordinates": [[[8.55026, 47.430922], [8.55025, 47.430927], [8.55024, 47.430934], [8.550231, 47.43094], [8.550223, 47.430948], [8.550216, 47.430955], [8.55021, 47.430963], [8.550205, 47.430972], [8.550201, 47.430981], [8.550198, 47.43099], [8.550197, 47.430999], [8.550197, 47.431008], [8.550198, 47.431017], [8.5502, 47.431026], [8.550203, 47.431035], [8.550208, 47.431043], [8.550213, 47.431051], [8.55022, 47.431059], [8.550228, 47.431067], [8.550363, 47.431197]]], "type": "MultiLineString"}, "id": "3993", "properties": {}, "type": "Feature"}, {"bbox": [8.549343, 47.430003, 8.55026, 47.430936], "geometry": {"coordinates": [[[8.549468, 47.430003], [8.549444, 47.430018], [8.549423, 47.430035], [8.549404, 47.430053], [8.549387, 47.430073], [8.549373, 47.430093], [8.549362, 47.430113], [8.549353, 47.430135], [8.549347, 47.430157], [8.549344, 47.430179], [8.549343, 47.430201], [8.549356, 47.430224], [8.549372, 47.430245], [8.549391, 47.430266], [8.549413, 47.430285], [8.549437, 47.430303], [8.549463, 47.430319], [8.549491, 47.430334], [8.549521, 47.430346], [8.549553, 47.430357], [8.549586, 47.430366], [8.54962, 47.430373], [8.549652, 47.430385], [8.549682, 47.430399], [8.549711, 47.430414], [8.549737, 47.430431], [8.549761, 47.430449], [8.549783, 47.430469], [8.549802, 47.43049], [8.549818, 47.430512], [8.549832, 47.430535], [8.549843, 47.430558], [8.54985, 47.430582], [8.549855, 47.430607], [8.549856, 47.430631], [8.549855, 47.430656], [8.54985, 47.430681], [8.549846, 47.430701], [8.549844, 47.430722], [8.549845, 47.430743], [8.549849, 47.430764], [8.549855, 47.430784], [8.549865, 47.430804], [8.549876, 47.430823], [8.54989, 47.430842], [8.549907, 47.430859], [8.549925, 47.430876], [8.549946, 47.430891], [8.549969, 47.430905], [8.549996, 47.430914], [8.550024, 47.430922], [8.550052, 47.430928], [8.550082, 47.430932], [8.550112, 47.430935], [8.550142, 47.430936], [8.550172, 47.430935], [8.550202, 47.430932], [8.550231, 47.430928], [8.55026, 47.430922]]], "type": "MultiLineString"}, "id": "3997", "properties": {}, "type": "Feature"}, {"bbox": [8.602271, 47.364557, 8.603065, 47.365042], "geometry": {"coordinates": [[[8.602271, 47.365042], [8.602296, 47.365026], [8.602322, 47.365012], [8.602351, 47.364998], [8.60238, 47.364987], [8.602412, 47.364977], [8.602585, 47.36494], [8.602757, 47.364901], [8.602929, 47.364861], [8.602948, 47.364849], [8.602965, 47.364836], [8.602981, 47.364822], [8.602995, 47.364807], [8.603007, 47.364791], [8.603016, 47.364775], [8.603024, 47.364758], [8.603029, 47.364741], [8.603033, 47.364724], [8.603065, 47.364557]]], "type": "MultiLineString"}, "id": "4006", "properties": {}, "type": "Feature"}, {"bbox": [8.524738, 47.363967, 8.526252, 47.36484], "geometry": {"coordinates": [[[8.526252, 47.36416], [8.526228, 47.364188], [8.52615, 47.36418], [8.525797, 47.364099], [8.525271, 47.363973], [8.52525, 47.36397], [8.525229, 47.363968], [8.525209, 47.363967], [8.525188, 47.363968], [8.525168, 47.363969], [8.525148, 47.363972], [8.525128, 47.363976], [8.525109, 47.363981], [8.52509, 47.363987], [8.525073, 47.363995], [8.525056, 47.364003], [8.525041, 47.364012], [8.525027, 47.364023], [8.525014, 47.364034], [8.525003, 47.364045], [8.524994, 47.364058], [8.524986, 47.36407], [8.524979, 47.364084], [8.524975, 47.364097], [8.524972, 47.364111], [8.524968, 47.364243], [8.524964, 47.364296], [8.524955, 47.364349], [8.52494, 47.364401], [8.524842, 47.364719], [8.524833, 47.364744], [8.524822, 47.364768], [8.524808, 47.364791], [8.524791, 47.364813], [8.524786, 47.364818], [8.52478, 47.364822], [8.524774, 47.364826], [8.524768, 47.36483], [8.524761, 47.364833], [8.524754, 47.364836], [8.524746, 47.364838], [8.524738, 47.36484]]], "type": "MultiLineString"}, "id": "4009", "properties": {}, "type": "Feature"}, {"bbox": [8.548352, 47.404699, 8.549506, 47.404861], "geometry": {"coordinates": [[[8.548352, 47.404861], [8.549506, 47.404699]]], "type": "MultiLineString"}, "id": "4024", "properties": {}, "type": "Feature"}, {"bbox": [8.53214, 47.391341, 8.53621, 47.397941], "geometry": {"coordinates": [[[8.53621, 47.391341], [8.535376, 47.391989], [8.535238, 47.392101], [8.535103, 47.392215], [8.534972, 47.392331], [8.534524, 47.392747], [8.534256, 47.393008], [8.534024, 47.393235], [8.533979, 47.39328], [8.533935, 47.393325], [8.533892, 47.393371], [8.533791, 47.393489], [8.533698, 47.39361], [8.533614, 47.393734], [8.533591, 47.39377], [8.533535, 47.393856], [8.53334, 47.394164], [8.533259, 47.394292], [8.533188, 47.394399], [8.533112, 47.394505], [8.533031, 47.394609], [8.532898, 47.394764], [8.532754, 47.394915], [8.5326, 47.395061], [8.532325, 47.395343], [8.532276, 47.395392], [8.532237, 47.395435], [8.532205, 47.395481], [8.532178, 47.395529], [8.532159, 47.395578], [8.532146, 47.395628], [8.53214, 47.395678], [8.53214, 47.395723], [8.532146, 47.395767], [8.532157, 47.395811], [8.532194, 47.395948], [8.532408, 47.39661], [8.532456, 47.396879], [8.532495, 47.397149], [8.532523, 47.397419], [8.532475, 47.39749], [8.532488, 47.397788], [8.532472, 47.397941]]], "type": "MultiLineString"}, "id": "4025", "properties": {}, "type": "Feature"}, {"bbox": [8.557776, 47.359519, 8.561131, 47.360521], "geometry": {"coordinates": [[[8.557776, 47.359519], [8.558219, 47.359662], [8.559101, 47.359842], [8.55922, 47.359869], [8.559337, 47.3599], [8.559453, 47.359933], [8.559962, 47.360085], [8.560056, 47.360114], [8.560965, 47.360384], [8.560985, 47.360389], [8.561004, 47.360396], [8.561022, 47.360403], [8.561039, 47.360412], [8.561055, 47.360421], [8.561069, 47.360431], [8.561083, 47.360442], [8.561095, 47.360454], [8.561105, 47.360466], [8.561114, 47.360479], [8.561121, 47.360493], [8.561127, 47.360506], [8.561131, 47.360521]]], "type": "MultiLineString"}, "id": "4027", "properties": {}, "type": "Feature"}, {"bbox": [8.565559, 47.410623, 8.572311, 47.416172], "geometry": {"coordinates": [[[8.572311, 47.410623], [8.572071, 47.410685], [8.571859, 47.41074], [8.571655, 47.410806], [8.571459, 47.410883], [8.571273, 47.410971], [8.571098, 47.41107], [8.570936, 47.411177], [8.570901, 47.411203], [8.570867, 47.411229], [8.570834, 47.411255], [8.570602, 47.411417], [8.57035, 47.411566], [8.570081, 47.411699], [8.569797, 47.411817], [8.569499, 47.411919], [8.56919, 47.412003], [8.568841, 47.412109], [8.568503, 47.412232], [8.56818, 47.412371], [8.567918, 47.412506], [8.567674, 47.412656], [8.56745, 47.412819], [8.567246, 47.412994], [8.567065, 47.413181], [8.566908, 47.413377], [8.566805, 47.413533], [8.566716, 47.413694], [8.566644, 47.413858], [8.566305, 47.414922], [8.566213, 47.415186], [8.566096, 47.415445], [8.565948, 47.415698], [8.565768, 47.41594], [8.565559, 47.416172]]], "type": "MultiLineString"}, "id": "4031", "properties": {}, "type": "Feature"}, {"bbox": [8.52694, 47.373325, 8.527904, 47.374314], "geometry": {"coordinates": [[[8.527768, 47.373325], [8.527846, 47.3734], [8.52786, 47.373413], [8.527873, 47.373428], [8.527883, 47.373443], [8.527891, 47.373458], [8.527898, 47.373474], [8.527902, 47.37349], [8.527904, 47.373507], [8.527904, 47.373524], [8.527902, 47.37354], [8.527898, 47.373556], [8.527891, 47.373572], [8.527883, 47.373588], [8.527873, 47.373603], [8.527861, 47.373617], [8.527847, 47.373631], [8.527831, 47.373643], [8.52694, 47.374314]]], "type": "MultiLineString"}, "id": "4034", "properties": {}, "type": "Feature"}, {"bbox": [8.515571, 47.399673, 8.519485, 47.400336], "geometry": {"coordinates": [[[8.519485, 47.400006], [8.519285, 47.399998], [8.519271, 47.399997], [8.519257, 47.399998], [8.519243, 47.399999], [8.51923, 47.400001], [8.519217, 47.400004], [8.519204, 47.400007], [8.519191, 47.400012], [8.51918, 47.400017], [8.519169, 47.400023], [8.519159, 47.400029], [8.519149, 47.400036], [8.519141, 47.400044], [8.519048, 47.400144], [8.519023, 47.400171], [8.518995, 47.400197], [8.518964, 47.400221], [8.518929, 47.400243], [8.518892, 47.400263], [8.518853, 47.40028], [8.518812, 47.400296], [8.518769, 47.400309], [8.518724, 47.40032], [8.518679, 47.400328], [8.518632, 47.400333], [8.518585, 47.400336], [8.518538, 47.400336], [8.518491, 47.400333], [8.51824, 47.400307], [8.517993, 47.400266], [8.517753, 47.400209], [8.517522, 47.400137], [8.516752, 47.399885], [8.516481, 47.399814], [8.516207, 47.399748], [8.51593, 47.399688], [8.515859, 47.399678], [8.515787, 47.399673], [8.515714, 47.399673], [8.515642, 47.399677], [8.515571, 47.399686]]], "type": "MultiLineString"}, "id": "4035", "properties": {}, "type": "Feature"}, {"bbox": [8.553642, 47.423566, 8.557146, 47.425638], "geometry": {"coordinates": [[[8.553642, 47.424368], [8.555334, 47.423571], [8.555342, 47.423569], [8.55535, 47.423568], [8.555358, 47.423567], [8.555366, 47.423566], [8.555375, 47.423566], [8.555383, 47.423567], [8.555391, 47.423568], [8.555399, 47.423569], [8.555407, 47.423571], [8.555415, 47.423573], [8.555422, 47.423576], [8.555429, 47.423579], [8.555435, 47.423583], [8.555441, 47.423587], [8.555447, 47.423591], [8.555451, 47.423595], [8.555456, 47.4236], [8.555778, 47.423907], [8.556164, 47.424277], [8.55633, 47.424436], [8.55641, 47.424517], [8.556494, 47.424596], [8.556582, 47.424674], [8.556798, 47.424858], [8.556867, 47.424919], [8.556928, 47.424985], [8.556982, 47.425053], [8.557022, 47.425116], [8.557055, 47.42518], [8.55708, 47.425247], [8.557096, 47.425314], [8.557146, 47.425638]]], "type": "MultiLineString"}, "id": "4046", "properties": {}, "type": "Feature"}, {"bbox": [8.520966, 47.380435, 8.523272, 47.381854], "geometry": {"coordinates": [[[8.520966, 47.380435], [8.520973, 47.380449], [8.520982, 47.380464], [8.520993, 47.380477], [8.521006, 47.38049], [8.52102, 47.380502], [8.521036, 47.380514], [8.521053, 47.380524], [8.521071, 47.380533], [8.521091, 47.380541], [8.521111, 47.380548], [8.521521, 47.380652], [8.521577, 47.380668], [8.52163, 47.380686], [8.521682, 47.380708], [8.52173, 47.380732], [8.521776, 47.380759], [8.522157, 47.38095], [8.522278, 47.381012], [8.522423, 47.381094], [8.522518, 47.381142], [8.522712, 47.381237], [8.522791, 47.381284], [8.522814, 47.3813], [8.522834, 47.381318], [8.522852, 47.381337], [8.522868, 47.381356], [8.522906, 47.381404], [8.523234, 47.381807], [8.523272, 47.381854]]], "type": "MultiLineString"}, "id": "4061", "properties": {}, "type": "Feature"}, {"bbox": [8.539375, 47.380439, 8.542781, 47.387998], "geometry": {"coordinates": [[[8.542781, 47.380439], [8.542608, 47.380715], [8.54241, 47.380997], [8.542286, 47.381156], [8.542228, 47.38122], [8.542174, 47.381284], [8.542121, 47.38135], [8.542056, 47.381438], [8.541996, 47.381528], [8.54194, 47.38162], [8.541882, 47.381749], [8.541834, 47.381881], [8.541798, 47.382014], [8.541798, 47.382016], [8.541707, 47.382391], [8.541672, 47.382477], [8.541626, 47.38256], [8.54157, 47.38264], [8.541502, 47.382717], [8.541361, 47.382872], [8.541087, 47.383189], [8.540981, 47.383318], [8.54087, 47.383451], [8.540585, 47.383804], [8.540503, 47.383896], [8.540195, 47.384256], [8.540142, 47.384316], [8.540096, 47.384379], [8.540059, 47.384444], [8.54003, 47.384511], [8.540009, 47.384579], [8.540003, 47.384615], [8.539998, 47.384651], [8.539994, 47.384686], [8.539978, 47.384837], [8.539891, 47.385433], [8.539839, 47.385824], [8.539833, 47.385863], [8.539804, 47.38606], [8.539738, 47.386535], [8.539671, 47.387008], [8.53963, 47.387296], [8.539615, 47.387427], [8.539585, 47.387556], [8.53954, 47.387684], [8.539481, 47.387809], [8.539375, 47.387998]]], "type": "MultiLineString"}, "id": "4062", "properties": {}, "type": "Feature"}, {"bbox": [8.525982, 47.371836, 8.531367, 47.373028], "geometry": {"coordinates": [[[8.531367, 47.373028], [8.531102, 47.372967], [8.530837, 47.372905], [8.530573, 47.372841], [8.530157, 47.372755], [8.529737, 47.372678], [8.529313, 47.372609], [8.528769, 47.372561], [8.528193, 47.372534], [8.527846, 47.372526], [8.52752, 47.372507], [8.527383, 47.372489], [8.527249, 47.372462], [8.527119, 47.372427], [8.526994, 47.372384], [8.526893, 47.372348], [8.526787, 47.372317], [8.526678, 47.372293], [8.526618, 47.37222], [8.526549, 47.37215], [8.526472, 47.372085], [8.526387, 47.372024], [8.526295, 47.371969], [8.526196, 47.371919], [8.526091, 47.371874], [8.525982, 47.371836]]], "type": "MultiLineString"}, "id": "4066", "properties": {}, "type": "Feature"}, {"bbox": [8.488871, 47.393111, 8.492953, 47.393807], "geometry": {"coordinates": [[[8.492953, 47.39326], [8.492458, 47.393314], [8.491968, 47.393388], [8.491486, 47.393482], [8.490995, 47.393577], [8.490508, 47.39368], [8.490023, 47.393789], [8.489989, 47.393797], [8.489954, 47.393802], [8.489919, 47.393806], [8.489883, 47.393807], [8.489848, 47.393807], [8.489812, 47.393804], [8.489777, 47.393799], [8.489743, 47.393792], [8.489709, 47.393784], [8.489677, 47.393773], [8.489647, 47.39376], [8.489618, 47.393746], [8.489591, 47.39373], [8.489333, 47.393534], [8.489093, 47.393327], [8.488871, 47.393111]]], "type": "MultiLineString"}, "id": "4074", "properties": {}, "type": "Feature"}, {"bbox": [8.540549, 47.373965, 8.541349, 47.374076], "geometry": {"coordinates": [[[8.541349, 47.374076], [8.541336, 47.37406], [8.54132, 47.374046], [8.541303, 47.374033], [8.541284, 47.374021], [8.541264, 47.37401], [8.541242, 47.374], [8.541219, 47.373992], [8.541195, 47.373985], [8.541182, 47.373983], [8.541169, 47.373981], [8.541155, 47.37398], [8.541073, 47.373972], [8.540991, 47.373967], [8.540908, 47.373965], [8.540788, 47.373966], [8.540668, 47.373974], [8.540549, 47.373986]]], "type": "MultiLineString"}, "id": "4078", "properties": {}, "type": "Feature"}, {"bbox": [8.524473, 47.394431, 8.526646, 47.395122], "geometry": {"coordinates": [[[8.526646, 47.394431], [8.52618, 47.394592], [8.525645, 47.394768], [8.52492, 47.395006], [8.524692, 47.395065], [8.524473, 47.395122]]], "type": "MultiLineString"}, "id": "4101", "properties": {}, "type": "Feature"}, {"bbox": [8.553424, 47.42258, 8.554172, 47.422799], "geometry": {"coordinates": [[[8.553424, 47.422621], [8.553492, 47.422599], [8.553517, 47.422592], [8.553543, 47.422587], [8.55357, 47.422583], [8.553597, 47.42258], [8.553624, 47.42258], [8.553651, 47.42258], [8.553678, 47.422583], [8.553705, 47.422586], [8.553731, 47.422592], [8.553756, 47.422599], [8.553781, 47.422607], [8.553804, 47.422616], [8.554172, 47.422799]]], "type": "MultiLineString"}, "id": "4113", "properties": {}, "type": "Feature"}, {"bbox": [8.524623, 47.394117, 8.526646, 47.395065], "geometry": {"coordinates": [[[8.526646, 47.394431], [8.526557, 47.39432], [8.526535, 47.394292], [8.52651, 47.394266], [8.526481, 47.394241], [8.526449, 47.394218], [8.526414, 47.394197], [8.526376, 47.394178], [8.526337, 47.394161], [8.526295, 47.394147], [8.526252, 47.394136], [8.526207, 47.394127], [8.526161, 47.394121], [8.526115, 47.394117], [8.525964, 47.394121], [8.525815, 47.394133], [8.525668, 47.394155], [8.525524, 47.394186], [8.525386, 47.394225], [8.525252, 47.394273], [8.525161, 47.394311], [8.525075, 47.394355], [8.524995, 47.394404], [8.524922, 47.394457], [8.524856, 47.394515], [8.524798, 47.394576], [8.52464, 47.394869], [8.524633, 47.394886], [8.524628, 47.394903], [8.524624, 47.39492], [8.524623, 47.394937], [8.524625, 47.394954], [8.524628, 47.394972], [8.524634, 47.394989], [8.524641, 47.395005], [8.524651, 47.395021], [8.524663, 47.395037], [8.524676, 47.395051], [8.524692, 47.395065]]], "type": "MultiLineString"}, "id": "4114", "properties": {}, "type": "Feature"}, {"bbox": [8.544368, 47.387482, 8.544645, 47.387586], "geometry": {"coordinates": [[[8.544368, 47.387586], [8.544417, 47.387561], [8.544469, 47.387538], [8.544522, 47.387518], [8.544645, 47.387482]]], "type": "MultiLineString"}, "id": "4115", "properties": {}, "type": "Feature"}, {"bbox": [8.539675, 47.389231, 8.541556, 47.390593], "geometry": {"coordinates": [[[8.539675, 47.390593], [8.53985, 47.390492], [8.54002, 47.390387], [8.540183, 47.390278], [8.541386, 47.38935], [8.541556, 47.389231]]], "type": "MultiLineString"}, "id": "4116", "properties": {}, "type": "Feature"}, {"bbox": [8.541556, 47.38875, 8.542347, 47.389231], "geometry": {"coordinates": [[[8.541556, 47.389231], [8.541684, 47.389141], [8.542347, 47.38875]]], "type": "MultiLineString"}, "id": "4117", "properties": {}, "type": "Feature"}, {"bbox": [8.545952, 47.38677, 8.547575, 47.387122], "geometry": {"coordinates": [[[8.545952, 47.387122], [8.547184, 47.386797], [8.547238, 47.386785], [8.547294, 47.386777], [8.54735, 47.386772], [8.547407, 47.38677], [8.547463, 47.386772], [8.547519, 47.386777], [8.547575, 47.386786]]], "type": "MultiLineString"}, "id": "4118", "properties": {}, "type": "Feature"}, {"bbox": [8.552272, 47.402058, 8.55299, 47.402402], "geometry": {"coordinates": [[[8.55299, 47.402402], [8.552873, 47.402352], [8.552673, 47.402254], [8.552473, 47.402156], [8.552272, 47.402058]]], "type": "MultiLineString"}, "id": "4119", "properties": {}, "type": "Feature"}, {"bbox": [8.48666, 47.387268, 8.48828, 47.387725], "geometry": {"coordinates": [[[8.48828, 47.387268], [8.487951, 47.387328], [8.487629, 47.387405], [8.487318, 47.387499], [8.487011, 47.387606], [8.486897, 47.38765], [8.48678, 47.38769], [8.48666, 47.387725]]], "type": "MultiLineString"}, "id": "4123", "properties": {}, "type": "Feature"}, {"bbox": [8.49924, 47.382991, 8.499939, 47.383339], "geometry": {"coordinates": [[[8.499939, 47.382991], [8.49924, 47.383339]]], "type": "MultiLineString"}, "id": "4124", "properties": {}, "type": "Feature"}, {"bbox": [8.503836, 47.381041, 8.504093, 47.381443], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504074, 47.381114], [8.504045, 47.381185], [8.504006, 47.381255], [8.503958, 47.381321], [8.503902, 47.381384], [8.503836, 47.381443]]], "type": "MultiLineString"}, "id": "4125", "properties": {}, "type": "Feature"}, {"bbox": [8.495371, 47.384546, 8.496675, 47.385002], "geometry": {"coordinates": [[[8.496675, 47.384546], [8.496243, 47.384702], [8.495808, 47.384854], [8.495371, 47.385002]]], "type": "MultiLineString"}, "id": "4126", "properties": {}, "type": "Feature"}, {"bbox": [8.575456, 47.358245, 8.590622, 47.363395], "geometry": {"coordinates": [[[8.575456, 47.363395], [8.575523, 47.363189], [8.575541, 47.363131], [8.575583, 47.363009], [8.575632, 47.362888], [8.575689, 47.362768], [8.57622, 47.361779], [8.576267, 47.361701], [8.576324, 47.361627], [8.57639, 47.361557], [8.576464, 47.36149], [8.576547, 47.361429], [8.576637, 47.361372], [8.576683, 47.361347], [8.57673, 47.361323], [8.576778, 47.361301], [8.5771, 47.361149], [8.57757, 47.360937], [8.578576, 47.360512], [8.578875, 47.360415], [8.579025, 47.360357], [8.579409, 47.360199], [8.579537, 47.36014], [8.580179, 47.35989], [8.580581, 47.359732], [8.580975, 47.359565], [8.581361, 47.35939], [8.581749, 47.359208], [8.582914, 47.358665], [8.58298, 47.358634], [8.583048, 47.358604], [8.583117, 47.358576], [8.583283, 47.358517], [8.583456, 47.358467], [8.583634, 47.358426], [8.583706, 47.358408], [8.583778, 47.358391], [8.583851, 47.358376], [8.583919, 47.358363], [8.583988, 47.358352], [8.584057, 47.358342], [8.584199, 47.358326], [8.584341, 47.358316], [8.584485, 47.358312], [8.584502, 47.358312], [8.584519, 47.358312], [8.584536, 47.358312], [8.585293, 47.358301], [8.586582, 47.358281], [8.587642, 47.358254], [8.587834, 47.35825], [8.587914, 47.358245], [8.590359, 47.358727], [8.590448, 47.358745], [8.590622, 47.358776]]], "type": "MultiLineString"}, "id": "4143", "properties": {}, "type": "Feature"}, {"bbox": [8.566464, 47.360826, 8.574575, 47.364435], "geometry": {"coordinates": [[[8.566464, 47.364435], [8.566709, 47.364106], [8.566821, 47.363955], [8.56688, 47.363883], [8.566943, 47.363812], [8.567009, 47.363743], [8.56752, 47.36323], [8.56798, 47.362767], [8.568122, 47.362659], [8.569339, 47.361795], [8.569419, 47.361747], [8.569502, 47.361701], [8.569589, 47.361659], [8.569618, 47.361645], [8.569648, 47.361632], [8.569677, 47.36162], [8.571304, 47.361042], [8.571487, 47.360994], [8.57165, 47.360951], [8.571814, 47.360907], [8.571882, 47.3609], [8.57195, 47.360892], [8.573112, 47.360828], [8.573165, 47.360826], [8.573209, 47.360827], [8.573253, 47.360831], [8.573296, 47.360838], [8.573338, 47.360847], [8.573377, 47.360858], [8.573415, 47.360872], [8.573451, 47.360888], [8.573485, 47.360906], [8.573516, 47.360925], [8.573544, 47.360947], [8.57357, 47.36097], [8.573592, 47.360995], [8.573611, 47.361021], [8.573813, 47.361298], [8.573909, 47.36144], [8.574, 47.361583], [8.574084, 47.361728], [8.574099, 47.361754], [8.574113, 47.361781], [8.574127, 47.361807], [8.574175, 47.361903], [8.574209, 47.362001], [8.57423, 47.362102], [8.574236, 47.362203], [8.574229, 47.362304], [8.574216, 47.362395], [8.574214, 47.362487], [8.574224, 47.362579], [8.574245, 47.36267], [8.574568, 47.363505], [8.574575, 47.363526]]], "type": "MultiLineString"}, "id": "4144", "properties": {}, "type": "Feature"}, {"bbox": [8.539171, 47.384432, 8.539994, 47.384686], "geometry": {"coordinates": [[[8.539171, 47.384432], [8.539222, 47.384452], [8.539708, 47.384639], [8.53976, 47.384653], [8.539812, 47.384664], [8.539866, 47.384673], [8.539994, 47.384686]]], "type": "MultiLineString"}, "id": "4148", "properties": {}, "type": "Feature"}, {"bbox": [8.490192, 47.422948, 8.498706, 47.427939], "geometry": {"coordinates": [[[8.498706, 47.422948], [8.498321, 47.423185], [8.497305, 47.42378], [8.497208, 47.423836], [8.496584, 47.4242], [8.495905, 47.424596], [8.494806, 47.425236], [8.493733, 47.425845], [8.493491, 47.425982], [8.492652, 47.426475], [8.491949, 47.426889], [8.490192, 47.427939]]], "type": "MultiLineString"}, "id": "4149", "properties": {}, "type": "Feature"}, {"bbox": [8.538556, 47.391346, 8.53887, 47.392096], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538605, 47.39175], [8.538642, 47.391648], [8.538664, 47.391544], [8.538673, 47.391439], [8.538843, 47.391346], [8.53887, 47.391429], [8.538816, 47.391937], [8.538846, 47.392096]]], "type": "MultiLineString"}, "id": "4154", "properties": {}, "type": "Feature"}, {"bbox": [8.526332, 47.363963, 8.528575, 47.364221], "geometry": {"coordinates": [[[8.528575, 47.363963], [8.528278, 47.364104], [8.528118, 47.364146], [8.527954, 47.364179], [8.527786, 47.364202], [8.527617, 47.364215], [8.527474, 47.364219], [8.526521, 47.364216], [8.526483, 47.364213], [8.526332, 47.364221]]], "type": "MultiLineString"}, "id": "4155", "properties": {}, "type": "Feature"}, {"bbox": [8.534913, 47.386983, 8.536367, 47.391341], "geometry": {"coordinates": [[[8.534913, 47.386983], [8.535326, 47.387285], [8.535767, 47.387607], [8.535884, 47.387698], [8.535991, 47.387796], [8.536086, 47.387899], [8.536169, 47.388007], [8.536239, 47.38812], [8.536296, 47.388235], [8.536325, 47.388313], [8.536347, 47.388393], [8.536361, 47.388473], [8.536365, 47.388516], [8.536367, 47.388558], [8.536367, 47.388601], [8.536313, 47.389906], [8.536312, 47.389937], [8.536311, 47.389969], [8.536307, 47.390067], [8.536278, 47.390813], [8.536261, 47.391197], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "4175", "properties": {}, "type": "Feature"}, {"bbox": [8.548119, 47.377806, 8.548271, 47.383943], "geometry": {"coordinates": [[[8.548194, 47.377806], [8.548155, 47.377907], [8.54813, 47.37801], [8.548119, 47.378114], [8.548121, 47.378218], [8.548153, 47.379991], [8.54816, 47.38039], [8.548182, 47.381608], [8.54819, 47.382028], [8.548196, 47.382407], [8.548214, 47.383399], [8.548215, 47.383462], [8.548224, 47.383587], [8.54823, 47.383651], [8.54824, 47.383755], [8.548271, 47.383943]]], "type": "MultiLineString"}, "id": "4192", "properties": {}, "type": "Feature"}, {"bbox": [8.543025, 47.374184, 8.545887, 47.374669], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.543798, 47.374262], [8.544401, 47.374189], [8.544418, 47.374186], [8.544435, 47.374185], [8.544453, 47.374184], [8.54447, 47.374184], [8.544488, 47.374185], [8.544505, 47.374187], [8.544522, 47.37419], [8.544539, 47.374194], [8.544555, 47.374199], [8.544691, 47.374247], [8.545639, 47.374582], [8.545887, 47.374669]]], "type": "MultiLineString"}, "id": "4204", "properties": {}, "type": "Feature"}, {"bbox": [8.483947, 47.373832, 8.484957, 47.374859], "geometry": {"coordinates": [[[8.484957, 47.374859], [8.48458, 47.374476], [8.484176, 47.374101], [8.483986, 47.373921], [8.483975, 47.373909], [8.483967, 47.373897], [8.483959, 47.373885], [8.483954, 47.373872], [8.48395, 47.373859], [8.483947, 47.373845], [8.483947, 47.373832]]], "type": "MultiLineString"}, "id": "4206", "properties": {}, "type": "Feature"}, {"bbox": [8.591245, 47.404479, 8.594996, 47.405176], "geometry": {"coordinates": [[[8.594996, 47.404704], [8.59491, 47.404542], [8.594902, 47.404533], [8.594893, 47.404525], [8.594883, 47.404517], [8.594872, 47.40451], [8.59486, 47.404503], [8.594847, 47.404497], [8.594834, 47.404492], [8.59482, 47.404488], [8.594805, 47.404484], [8.594791, 47.404482], [8.594775, 47.40448], [8.59476, 47.404479], [8.594745, 47.404479], [8.59473, 47.40448], [8.594714, 47.404482], [8.5947, 47.404484], [8.594685, 47.404488], [8.594671, 47.404492], [8.594658, 47.404497], [8.594535, 47.40457], [8.594425, 47.404642], [8.594379, 47.404667], [8.59433, 47.40469], [8.594278, 47.40471], [8.594224, 47.404726], [8.592685, 47.405157], [8.592652, 47.405165], [8.592619, 47.40517], [8.592585, 47.405174], [8.59255, 47.405176], [8.592516, 47.405175], [8.592482, 47.405173], [8.592448, 47.405168], [8.592415, 47.405161], [8.592383, 47.405152], [8.592362, 47.405145], [8.592342, 47.405137], [8.592323, 47.405127], [8.592305, 47.405117], [8.592289, 47.405105], [8.592275, 47.405093], [8.592262, 47.40508], [8.592251, 47.405066], [8.592242, 47.405051], [8.592193, 47.404979], [8.592184, 47.404967], [8.592175, 47.404956], [8.592164, 47.404945], [8.592151, 47.404936], [8.592137, 47.404927], [8.592122, 47.404919], [8.592106, 47.404912], [8.592089, 47.404906], [8.592073, 47.4049], [8.592055, 47.404895], [8.592038, 47.404891], [8.592019, 47.404889], [8.592001, 47.404887], [8.591982, 47.404887], [8.591963, 47.404887], [8.591945, 47.404889], [8.591927, 47.404892], [8.591909, 47.404897], [8.591245, 47.405084]]], "type": "MultiLineString"}, "id": "4209", "properties": {}, "type": "Feature"}, {"bbox": [8.503328, 47.420289, 8.504336, 47.420887], "geometry": {"coordinates": [[[8.504336, 47.420636], [8.504097, 47.42072], [8.503941, 47.420887], [8.503328, 47.420289]]], "type": "MultiLineString"}, "id": "4211", "properties": {}, "type": "Feature"}, {"bbox": [8.531847, 47.377287, 8.532193, 47.377519], "geometry": {"coordinates": [[[8.531847, 47.377287], [8.532193, 47.377519]]], "type": "MultiLineString"}, "id": "4212", "properties": {}, "type": "Feature"}, {"bbox": [8.545087, 47.410431, 8.547623, 47.419173], "geometry": {"coordinates": [[[8.546351, 47.410431], [8.546505, 47.41061], [8.546767, 47.410965], [8.546791, 47.411012], [8.546809, 47.41106], [8.546821, 47.41111], [8.546827, 47.41116], [8.546826, 47.41121], [8.546819, 47.411259], [8.546593, 47.411929], [8.546563, 47.412037], [8.546502, 47.412263], [8.546398, 47.41257], [8.546318, 47.412809], [8.546305, 47.412834], [8.546289, 47.412858], [8.54627, 47.412881], [8.546248, 47.412903], [8.546223, 47.412924], [8.545954, 47.413262], [8.545649, 47.41361], [8.545447, 47.413844], [8.545522, 47.414525], [8.545537, 47.414663], [8.545541, 47.414767], [8.545538, 47.414872], [8.545527, 47.414976], [8.545526, 47.414982], [8.545525, 47.414989], [8.545524, 47.414995], [8.54549, 47.415146], [8.545435, 47.415294], [8.545359, 47.415438], [8.545263, 47.415596], [8.545254, 47.41561], [8.545245, 47.415624], [8.545236, 47.415639], [8.545182, 47.41574], [8.545141, 47.415843], [8.545112, 47.415949], [8.545096, 47.416056], [8.545087, 47.416297], [8.54513, 47.416418], [8.545187, 47.416537], [8.545258, 47.416652], [8.54555, 47.417111], [8.545587, 47.417158], [8.545627, 47.417205], [8.54567, 47.41725], [8.545842, 47.417418], [8.546066, 47.417613], [8.546173, 47.417715], [8.546259, 47.417806], [8.546849, 47.418362], [8.547043, 47.418546], [8.547215, 47.418728], [8.547521, 47.419056], [8.547623, 47.419173]]], "type": "MultiLineString"}, "id": "4215", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.379548, 8.538133, 47.391122], "geometry": {"coordinates": [[[8.537415, 47.379548], [8.5376, 47.379839], [8.537756, 47.380086], [8.537951, 47.380394], [8.53802, 47.38053], [8.538074, 47.380669], [8.538113, 47.38081], [8.53812, 47.38087], [8.538125, 47.380931], [8.538128, 47.380991], [8.538133, 47.381041], [8.538133, 47.381091], [8.538129, 47.381141], [8.538082, 47.381394], [8.538014, 47.381645], [8.537927, 47.381893], [8.537901, 47.381955], [8.537875, 47.382018], [8.537847, 47.382079], [8.537776, 47.382227], [8.537695, 47.382371], [8.537605, 47.382513], [8.537561, 47.382577], [8.537515, 47.382639], [8.537467, 47.382701], [8.537353, 47.38283], [8.537235, 47.382957], [8.537113, 47.383082], [8.537024, 47.383163], [8.536933, 47.383242], [8.53684, 47.38332], [8.536437, 47.383606], [8.535944, 47.383897], [8.535449, 47.384187], [8.534952, 47.384474], [8.533149, 47.385521], [8.532919, 47.385655], [8.532345, 47.385988], [8.53186, 47.386269], [8.531792, 47.386308], [8.531583, 47.38643], [8.530872, 47.386857], [8.530707, 47.386959], [8.530542, 47.387061], [8.530379, 47.387164], [8.529603, 47.387659], [8.529542, 47.387699], [8.529281, 47.387874], [8.528546, 47.388428], [8.527881, 47.388925], [8.52772, 47.389037], [8.52755, 47.389142], [8.527373, 47.389242], [8.52723, 47.389317], [8.525926, 47.39], [8.525785, 47.390077], [8.525425, 47.390286], [8.525404, 47.390298], [8.525382, 47.390309], [8.52536, 47.39032], [8.525249, 47.390374], [8.525135, 47.390423], [8.525018, 47.39047], [8.52499, 47.390569], [8.524897, 47.390616], [8.524797, 47.390657], [8.524693, 47.390691], [8.524584, 47.390719], [8.524472, 47.39074], [8.523607, 47.390858], [8.523513, 47.390872], [8.523422, 47.390891], [8.523332, 47.390916], [8.523246, 47.390945], [8.523164, 47.390979], [8.523086, 47.391017], [8.523013, 47.39106], [8.522946, 47.391106], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "4257", "properties": {}, "type": "Feature"}, {"bbox": [8.515764, 47.380435, 8.520981, 47.383915], "geometry": {"coordinates": [[[8.520966, 47.380435], [8.520981, 47.381078], [8.520571, 47.381606], [8.517977, 47.383301], [8.517393, 47.3836], [8.516201, 47.383915], [8.515764, 47.383466], [8.515772, 47.383349]]], "type": "MultiLineString"}, "id": "4269", "properties": {}, "type": "Feature"}, {"bbox": [8.538396, 47.378515, 8.541416, 47.379167], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541248, 47.378515], [8.54108, 47.378515], [8.540912, 47.378525], [8.540746, 47.378544], [8.540583, 47.378572], [8.540424, 47.378608], [8.538826, 47.37905], [8.538681, 47.379085], [8.538537, 47.379125], [8.538396, 47.379167]]], "type": "MultiLineString"}, "id": "4280", "properties": {}, "type": "Feature"}, {"bbox": [8.488266, 47.41074, 8.489924, 47.411165], "geometry": {"coordinates": [[[8.488266, 47.41074], [8.488341, 47.410755], [8.488716, 47.410858], [8.488918, 47.410916], [8.489008, 47.410944], [8.489094, 47.410976], [8.489177, 47.411012], [8.489352, 47.411095], [8.489379, 47.411106], [8.489407, 47.411116], [8.489436, 47.411124], [8.489466, 47.411131], [8.489497, 47.411136], [8.489528, 47.411138], [8.48956, 47.41114], [8.489591, 47.411139], [8.489623, 47.411136], [8.489624, 47.411136], [8.489626, 47.411136], [8.48974, 47.411141], [8.489853, 47.411153], [8.489924, 47.411165]]], "type": "MultiLineString"}, "id": "4282", "properties": {}, "type": "Feature"}, {"bbox": [8.566258, 47.364594, 8.566513, 47.364827], "geometry": {"coordinates": [[[8.566258, 47.364827], [8.566282, 47.36479], [8.566302, 47.364753], [8.566316, 47.364714], [8.566325, 47.364674], [8.566329, 47.364634], [8.566327, 47.364594], [8.566345, 47.36462], [8.566367, 47.364644], [8.566391, 47.364667], [8.566418, 47.364689], [8.566447, 47.36471], [8.566479, 47.364728], [8.566513, 47.364745]]], "type": "MultiLineString"}, "id": "4283", "properties": {}, "type": "Feature"}, {"bbox": [8.531289, 47.384352, 8.531976, 47.384872], "geometry": {"coordinates": [[[8.531942, 47.384823], [8.531976, 47.384352], [8.531849, 47.384369], [8.53172, 47.384379], [8.53159, 47.384381], [8.531461, 47.384376], [8.531333, 47.384362], [8.531289, 47.384872], [8.531942, 47.384823]]], "type": "MultiLineString"}, "id": "4284", "properties": {}, "type": "Feature"}, {"bbox": [8.531558, 47.366356, 8.531693, 47.366545], "geometry": {"coordinates": [[[8.531693, 47.366356], [8.531559, 47.366497], [8.531558, 47.366545]]], "type": "MultiLineString"}, "id": "4287", "properties": {}, "type": "Feature"}, {"bbox": [8.518669, 47.380525, 8.519722, 47.381528], "geometry": {"coordinates": [[[8.518669, 47.381528], [8.519722, 47.38084], [8.519457, 47.380525]]], "type": "MultiLineString"}, "id": "4309", "properties": {}, "type": "Feature"}, {"bbox": [8.504661, 47.362487, 8.513688, 47.369757], "geometry": {"coordinates": [[[8.513688, 47.369757], [8.513625, 47.369694], [8.512988, 47.369193], [8.512781, 47.369026], [8.512569, 47.368861], [8.512351, 47.3687], [8.511803, 47.368366], [8.511616, 47.36826], [8.511243, 47.368055], [8.51119, 47.368015], [8.511144, 47.367973], [8.511104, 47.367927], [8.511076, 47.367886], [8.511051, 47.367844], [8.511029, 47.367801], [8.510907, 47.367406], [8.510853, 47.367252], [8.5108, 47.367057], [8.510688, 47.366644], [8.510641, 47.366521], [8.510578, 47.366402], [8.5105, 47.366287], [8.510406, 47.366177], [8.510299, 47.366073], [8.510178, 47.365976], [8.509984, 47.365844], [8.50873, 47.364993], [8.508344, 47.364718], [8.507579, 47.364189], [8.507431, 47.3641], [8.506237, 47.363283], [8.506102, 47.36319], [8.506066, 47.363166], [8.50603, 47.363142], [8.505994, 47.363118], [8.505805, 47.363003], [8.505606, 47.362895], [8.505399, 47.362795], [8.505268, 47.362737], [8.504941, 47.362592], [8.504661, 47.362487], [8.504661, 47.362487]]], "type": "MultiLineString"}, "id": "4315", "properties": {}, "type": "Feature"}, {"bbox": [8.533729, 47.369703, 8.534353, 47.370127], "geometry": {"coordinates": [[[8.534353, 47.370127], [8.53427, 47.370077], [8.53417, 47.370005], [8.533729, 47.369703]]], "type": "MultiLineString"}, "id": "4317", "properties": {}, "type": "Feature"}, {"bbox": [8.559184, 47.376421, 8.560058, 47.379109], "geometry": {"coordinates": [[[8.560058, 47.376421], [8.55996, 47.376658], [8.559678, 47.376812], [8.559704, 47.37686], [8.559724, 47.376909], [8.559738, 47.37696], [8.559745, 47.37701], [8.559746, 47.377061], [8.559741, 47.377112], [8.559729, 47.377163], [8.559711, 47.377212], [8.559203, 47.378671], [8.559193, 47.378701], [8.559187, 47.378733], [8.559184, 47.378764], [8.559186, 47.378795], [8.559191, 47.378827], [8.559201, 47.378858], [8.559214, 47.378888], [8.559231, 47.378917], [8.559455, 47.379109]]], "type": "MultiLineString"}, "id": "4319", "properties": {}, "type": "Feature"}, {"bbox": [8.530435, 47.371262, 8.531653, 47.373373], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531521, 47.373242], [8.531472, 47.373192], [8.53143, 47.37314], [8.531395, 47.373085], [8.531367, 47.373028], [8.531324, 47.372931], [8.531291, 47.372832], [8.531267, 47.372732], [8.531045, 47.372302], [8.530592, 47.371546], [8.530435, 47.371262]]], "type": "MultiLineString"}, "id": "4321", "properties": {}, "type": "Feature"}, {"bbox": [8.550047, 47.410397, 8.570936, 47.411177], "geometry": {"coordinates": [[[8.550047, 47.410551], [8.55029, 47.410572], [8.550945, 47.410616], [8.551319, 47.410635], [8.551905, 47.410669], [8.552491, 47.410694], [8.553078, 47.410709], [8.553671, 47.41072], [8.554307, 47.410731], [8.555717, 47.410756], [8.557576, 47.410789], [8.557797, 47.410793], [8.558777, 47.410815], [8.559063, 47.410822], [8.561145, 47.410856], [8.563293, 47.410891], [8.564541, 47.410911], [8.56573, 47.410897], [8.566386, 47.410863], [8.56704, 47.41082], [8.567693, 47.410767], [8.567817, 47.410756], [8.567941, 47.410745], [8.568066, 47.410733], [8.568363, 47.410697], [8.568655, 47.410647], [8.568942, 47.410584], [8.569115, 47.410537], [8.569594, 47.410397], [8.570261, 47.410822], [8.570476, 47.410948], [8.570701, 47.411067], [8.570936, 47.411177]]], "type": "MultiLineString"}, "id": "4327", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.368682, 8.531326, 47.370994], "geometry": {"coordinates": [[[8.531326, 47.370994], [8.531313, 47.37096], [8.531298, 47.370927], [8.531283, 47.370894], [8.531243, 47.370829], [8.531195, 47.370767], [8.53114, 47.370707], [8.53067, 47.370255], [8.530474, 47.370075], [8.53027, 47.369899], [8.530058, 47.369727], [8.529528, 47.369305], [8.529284, 47.369104], [8.529052, 47.368896], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "4346", "properties": {}, "type": "Feature"}, {"bbox": [8.593049, 47.364376, 8.593712, 47.364998], "geometry": {"coordinates": [[[8.593712, 47.364376], [8.593622, 47.36468], [8.593301, 47.364714], [8.593155, 47.364779], [8.593079, 47.364885], [8.593049, 47.364998]]], "type": "MultiLineString"}, "id": "4358", "properties": {}, "type": "Feature"}, {"bbox": [8.513625, 47.391272, 8.518139, 47.391945], "geometry": {"coordinates": [[[8.518139, 47.391945], [8.517885, 47.391861], [8.517703, 47.391782], [8.517268, 47.391656], [8.516832, 47.391534], [8.516394, 47.391415], [8.516204, 47.391362], [8.516009, 47.39132], [8.515808, 47.39129], [8.515674, 47.391276], [8.515539, 47.391272], [8.515403, 47.391275], [8.515269, 47.391286], [8.515136, 47.391306], [8.515007, 47.391334], [8.514882, 47.391369], [8.514215, 47.391563], [8.513625, 47.391729]]], "type": "MultiLineString"}, "id": "4360", "properties": {}, "type": "Feature"}, {"bbox": [8.546819, 47.403337, 8.550833, 47.411259], "geometry": {"coordinates": [[[8.547983, 47.403337], [8.548061, 47.403419], [8.548149, 47.403497], [8.548249, 47.403568], [8.548688, 47.403814], [8.548698, 47.40382], [8.548707, 47.403826], [8.548716, 47.403831], [8.548844, 47.403915], [8.548964, 47.404004], [8.549074, 47.404098], [8.549222, 47.404249], [8.549347, 47.40441], [8.549447, 47.404577], [8.549506, 47.404699], [8.549952, 47.405622], [8.550152, 47.405991], [8.550399, 47.406507], [8.550582, 47.406911], [8.550584, 47.406915], [8.550629, 47.407027], [8.550671, 47.407139], [8.550711, 47.407252], [8.550744, 47.407354], [8.550775, 47.407456], [8.550804, 47.407558], [8.550826, 47.407678], [8.550833, 47.407799], [8.550822, 47.40792], [8.550799, 47.40803], [8.550763, 47.408139], [8.550714, 47.408245], [8.550653, 47.408348], [8.55058, 47.408448], [8.550544, 47.408504], [8.550508, 47.40856], [8.55047, 47.408615], [8.550268, 47.408874], [8.550035, 47.409121], [8.549774, 47.409354], [8.549679, 47.409429], [8.549582, 47.409502], [8.549482, 47.409574], [8.548865, 47.409968], [8.548231, 47.410364], [8.547569, 47.410762], [8.547543, 47.410778], [8.547491, 47.41081], [8.547104, 47.411054], [8.547001, 47.411118], [8.546906, 47.411186], [8.546819, 47.411259]]], "type": "MultiLineString"}, "id": "4362", "properties": {}, "type": "Feature"}, {"bbox": [8.547663, 47.370893, 8.548219, 47.371629], "geometry": {"coordinates": [[[8.547663, 47.371629], [8.547793, 47.371466], [8.548004, 47.371127], [8.548048, 47.371065], [8.548098, 47.371005], [8.548155, 47.370947], [8.548219, 47.370893]]], "type": "MultiLineString"}, "id": "4366", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.376524, 8.534865, 47.380174], "geometry": {"coordinates": [[[8.534865, 47.376524], [8.534434, 47.376794], [8.533836, 47.377168], [8.533268, 47.377523], [8.532751, 47.377849], [8.532142, 47.378233], [8.5316, 47.378574], [8.531591, 47.37858], [8.531583, 47.378585], [8.531574, 47.37859], [8.531566, 47.378595], [8.531558, 47.3786], [8.53155, 47.378605], [8.531474, 47.378653], [8.531397, 47.378699], [8.531319, 47.378745], [8.531285, 47.378765], [8.531251, 47.378784], [8.531217, 47.378803], [8.531171, 47.378829], [8.531125, 47.378854], [8.531079, 47.378879], [8.53104, 47.3789], [8.531001, 47.378921], [8.530962, 47.378942], [8.530778, 47.379037], [8.530592, 47.37913], [8.530405, 47.379222], [8.530358, 47.379245], [8.530311, 47.379268], [8.530264, 47.379291], [8.530216, 47.379313], [8.530169, 47.379336], [8.530121, 47.379358], [8.530031, 47.3794], [8.529941, 47.379441], [8.529849, 47.379482], [8.529746, 47.379527], [8.529677, 47.379557], [8.529623, 47.37958], [8.529573, 47.379602], [8.529522, 47.379624], [8.529472, 47.379645], [8.529402, 47.379675], [8.529331, 47.379704], [8.529261, 47.379734], [8.529201, 47.379759], [8.52914, 47.379783], [8.52908, 47.379808], [8.528166, 47.380174], [8.527985, 47.380137]]], "type": "MultiLineString"}, "id": "4367", "properties": {}, "type": "Feature"}, {"bbox": [8.537415, 47.379167, 8.538396, 47.379548], "geometry": {"coordinates": [[[8.538396, 47.379167], [8.538144, 47.379254], [8.537902, 47.379353], [8.53767, 47.379462], [8.537588, 47.379494], [8.537503, 47.379523], [8.537415, 47.379548]]], "type": "MultiLineString"}, "id": "4369", "properties": {}, "type": "Feature"}, {"bbox": [8.537714, 47.409559, 8.537813, 47.409762], "geometry": {"coordinates": [[[8.537714, 47.409559], [8.537743, 47.409628], [8.537813, 47.409762]]], "type": "MultiLineString"}, "id": "4376", "properties": {}, "type": "Feature"}, {"bbox": [8.484419, 47.366937, 8.513241, 47.370226], "geometry": {"coordinates": [[[8.513241, 47.370226], [8.512144, 47.370096], [8.511908, 47.37007], [8.511734, 47.37005], [8.51094, 47.369956], [8.510279, 47.369894], [8.509955, 47.369863], [8.508156, 47.369649], [8.506609, 47.369472], [8.505925, 47.369389], [8.505407, 47.369326], [8.50436, 47.369198], [8.503922, 47.369146], [8.503101, 47.369048], [8.502235, 47.368946], [8.501665, 47.368878], [8.5012, 47.368822], [8.500605, 47.36875], [8.500178, 47.368697], [8.499216, 47.368563], [8.497464, 47.368319], [8.496409, 47.368148], [8.496065, 47.368177], [8.49595, 47.368197], [8.495835, 47.368217], [8.49572, 47.368237], [8.495621, 47.368249], [8.495522, 47.368254], [8.495423, 47.368253], [8.495324, 47.368247], [8.495226, 47.368234], [8.495157, 47.368215], [8.49509, 47.368192], [8.495027, 47.368165], [8.494969, 47.368134], [8.494914, 47.368099], [8.494865, 47.368061], [8.494821, 47.36802], [8.494807, 47.368], [8.494797, 47.36798], [8.494788, 47.367959], [8.494783, 47.367937], [8.49478, 47.367915], [8.494779, 47.367893], [8.494782, 47.367871], [8.494787, 47.36785], [8.494795, 47.367829], [8.494805, 47.367808], [8.494818, 47.367788], [8.493993, 47.36741], [8.4937, 47.367275], [8.4934, 47.36715], [8.493091, 47.367033], [8.492959, 47.366998], [8.492822, 47.36697], [8.492683, 47.36695], [8.492481, 47.36694], [8.492278, 47.366937], [8.492075, 47.366942], [8.491655, 47.366981], [8.491241, 47.367043], [8.490836, 47.367127], [8.490655, 47.367175], [8.490477, 47.367227], [8.490303, 47.367284], [8.489549, 47.367554], [8.489351, 47.36762], [8.489145, 47.367674], [8.488933, 47.367715], [8.488717, 47.367743], [8.488497, 47.367758], [8.488277, 47.367759], [8.487599, 47.36775], [8.487526, 47.367752], [8.487453, 47.367754], [8.487379, 47.367758], [8.487172, 47.367774], [8.486966, 47.3678], [8.486763, 47.367834], [8.486741, 47.367839], [8.48672, 47.367843], [8.486698, 47.367847], [8.484419, 47.368332]]], "type": "MultiLineString"}, "id": "4377", "properties": {}, "type": "Feature"}, {"bbox": [8.53775, 47.412926, 8.551051, 47.414237], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.549538, 47.414087], [8.548921, 47.414027], [8.547903, 47.413928], [8.547718, 47.41391], [8.546898, 47.413831], [8.546822, 47.413823], [8.546746, 47.413816], [8.546669, 47.41381], [8.546365, 47.413796], [8.54606, 47.413799], [8.545756, 47.413819], [8.545447, 47.413844], [8.545345, 47.413852], [8.544211, 47.413914], [8.543307, 47.413965], [8.543161, 47.413973], [8.543073, 47.413976], [8.542178, 47.414007], [8.541567, 47.414049], [8.541551, 47.414049], [8.541534, 47.41405], [8.541518, 47.41405], [8.541439, 47.414051], [8.541361, 47.414049], [8.541283, 47.414045], [8.541136, 47.414031], [8.540991, 47.414009], [8.540849, 47.413979], [8.540711, 47.41394], [8.540578, 47.413894], [8.540344, 47.413806], [8.539419, 47.413455], [8.538959, 47.413281], [8.538778, 47.413211], [8.538441, 47.413082], [8.538311, 47.413036], [8.538176, 47.412998], [8.538037, 47.412966], [8.537895, 47.412942], [8.53775, 47.412926]]], "type": "MultiLineString"}, "id": "4415", "properties": {}, "type": "Feature"}, {"bbox": [8.598698, 47.363838, 8.598862, 47.365251], "geometry": {"coordinates": [[[8.598851, 47.363838], [8.598857, 47.363873], [8.598862, 47.363948], [8.598857, 47.364024], [8.598842, 47.364099], [8.59873, 47.364479], [8.598717, 47.364544], [8.598707, 47.36461], [8.5987, 47.364676], [8.598698, 47.36473], [8.598698, 47.364785], [8.5987, 47.364839], [8.598748, 47.365251]]], "type": "MultiLineString"}, "id": "4417", "properties": {}, "type": "Feature"}, {"bbox": [8.51916, 47.336957, 8.522799, 47.340107], "geometry": {"coordinates": [[[8.522799, 47.340107], [8.522755, 47.340079], [8.522584, 47.339952], [8.522428, 47.339817], [8.522288, 47.339673], [8.522216, 47.339558], [8.522161, 47.339438], [8.522123, 47.339315], [8.522102, 47.339191], [8.52208, 47.339069], [8.522064, 47.338987], [8.522038, 47.338907], [8.522003, 47.338828], [8.521841, 47.338565], [8.521555, 47.338047], [8.521482, 47.337921], [8.521403, 47.337796], [8.521321, 47.337673], [8.521203, 47.337505], [8.52108, 47.337338], [8.520954, 47.337173], [8.520937, 47.337155], [8.52092, 47.337137], [8.520901, 47.337119], [8.520864, 47.337091], [8.520824, 47.337065], [8.520781, 47.337042], [8.520735, 47.337021], [8.520686, 47.337003], [8.520635, 47.336989], [8.520582, 47.336977], [8.520525, 47.336967], [8.520467, 47.33696], [8.520408, 47.336957], [8.52035, 47.336958], [8.520291, 47.336962], [8.520233, 47.33697], [8.520177, 47.336982], [8.520075, 47.337011], [8.51997, 47.337037], [8.519864, 47.337059], [8.51976, 47.337077], [8.51961, 47.337103], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "4423", "properties": {}, "type": "Feature"}, {"bbox": [8.53795, 47.409293, 8.538568, 47.409499], "geometry": {"coordinates": [[[8.538568, 47.409293], [8.538233, 47.409405], [8.53808, 47.409455], [8.53795, 47.409499]]], "type": "MultiLineString"}, "id": "4426", "properties": {}, "type": "Feature"}, {"bbox": [8.536081, 47.371305, 8.536441, 47.371538], "geometry": {"coordinates": [[[8.536441, 47.371538], [8.536081, 47.371305]]], "type": "MultiLineString"}, "id": "4427", "properties": {}, "type": "Feature"}, {"bbox": [8.511813, 47.353401, 8.516432, 47.358927], "geometry": {"coordinates": [[[8.516432, 47.358927], [8.516201, 47.358831], [8.516003, 47.358712], [8.515424, 47.358367], [8.514684, 47.357926], [8.514599, 47.357832], [8.51452, 47.357735], [8.514446, 47.357637], [8.514319, 47.357442], [8.514214, 47.357242], [8.51413, 47.357037], [8.513399, 47.355534], [8.512858, 47.354422], [8.512843, 47.354393], [8.512727, 47.354204], [8.512588, 47.354023], [8.512425, 47.353851], [8.51224, 47.353689], [8.512036, 47.353538], [8.511813, 47.353401]]], "type": "MultiLineString"}, "id": "4428", "properties": {}, "type": "Feature"}, {"bbox": [8.51836, 47.414808, 8.519307, 47.415344], "geometry": {"coordinates": [[[8.519307, 47.414808], [8.51911, 47.414877], [8.518923, 47.414959], [8.518748, 47.415053], [8.518587, 47.415157], [8.518441, 47.415271], [8.51836, 47.415344]]], "type": "MultiLineString"}, "id": "4431", "properties": {}, "type": "Feature"}, {"bbox": [8.526659, 47.403363, 8.530536, 47.407267], "geometry": {"coordinates": [[[8.530536, 47.403363], [8.530536, 47.403367], [8.530534, 47.40347], [8.530518, 47.403573], [8.530488, 47.403674], [8.530444, 47.403774], [8.530388, 47.40387], [8.530308, 47.404009], [8.530047, 47.40443], [8.529998, 47.404498], [8.52994, 47.404563], [8.529874, 47.404624], [8.529802, 47.404681], [8.529722, 47.404734], [8.529636, 47.404782], [8.529545, 47.404826], [8.529449, 47.404864], [8.529348, 47.404896], [8.52881, 47.405062], [8.528655, 47.405122], [8.528507, 47.405188], [8.528366, 47.405261], [8.528194, 47.405366], [8.528035, 47.40548], [8.527892, 47.405603], [8.527764, 47.405734], [8.527599, 47.405942], [8.527187, 47.406511], [8.527137, 47.406585], [8.527085, 47.406658], [8.527029, 47.406729], [8.526815, 47.407026], [8.526758, 47.407105], [8.526706, 47.407185], [8.526659, 47.407267]]], "type": "MultiLineString"}, "id": "4450", "properties": {}, "type": "Feature"}, {"bbox": [8.479148, 47.378677, 8.523147, 47.391988], "geometry": {"coordinates": [[[8.523147, 47.378677], [8.522298, 47.379172], [8.521482, 47.379647], [8.521262, 47.379774], [8.521142, 47.379837], [8.521019, 47.379896], [8.520891, 47.379951], [8.520728, 47.38002], [8.520612, 47.380071], [8.520495, 47.380119], [8.520376, 47.380165], [8.519767, 47.380407], [8.519457, 47.380525], [8.518962, 47.380721], [8.518368, 47.380957], [8.51827, 47.380999], [8.518171, 47.381041], [8.518073, 47.381083], [8.517813, 47.381198], [8.517554, 47.381316], [8.517298, 47.381436], [8.516116, 47.382038], [8.51603, 47.382105], [8.51595, 47.382175], [8.515876, 47.382248], [8.515807, 47.382325], [8.515745, 47.382403], [8.51569, 47.382484], [8.515524, 47.382746], [8.515484, 47.382793], [8.515439, 47.382837], [8.515387, 47.382879], [8.515331, 47.382917], [8.51527, 47.382952], [8.515241, 47.382967], [8.515211, 47.382981], [8.51518, 47.382994], [8.51508, 47.383029], [8.514976, 47.383058], [8.514869, 47.383082], [8.514759, 47.383099], [8.514647, 47.38311], [8.514534, 47.383115], [8.514315, 47.383104], [8.514189, 47.3831], [8.514064, 47.3831], [8.513938, 47.383106], [8.513784, 47.383134], [8.513634, 47.383171], [8.51349, 47.383219], [8.513353, 47.383275], [8.512271, 47.383765], [8.511778, 47.383983], [8.511588, 47.384061], [8.511395, 47.384136], [8.511199, 47.384207], [8.51103, 47.384266], [8.510859, 47.384323], [8.510686, 47.384377], [8.510142, 47.384546], [8.509972, 47.384594], [8.509401, 47.384772], [8.50839, 47.385075], [8.506925, 47.385513], [8.506466, 47.385649], [8.50503, 47.386073], [8.504803, 47.38614], [8.50374, 47.386454], [8.502451, 47.386835], [8.502256, 47.386892], [8.499469, 47.387716], [8.497972, 47.388159], [8.497368, 47.388332], [8.496513, 47.388588], [8.494281, 47.389249], [8.49203, 47.389914], [8.491784, 47.389987], [8.491478, 47.390077], [8.490566, 47.390347], [8.48979, 47.390576], [8.48963, 47.390623], [8.487486, 47.391207], [8.486462, 47.391481], [8.486066, 47.391583], [8.48566, 47.391664], [8.485246, 47.391726], [8.484147, 47.391871], [8.483677, 47.391934], [8.483373, 47.391969], [8.483065, 47.391987], [8.482756, 47.391988], [8.482448, 47.391971], [8.482143, 47.391936], [8.481843, 47.391884], [8.481552, 47.391815], [8.481114, 47.391691], [8.480695, 47.391541], [8.480296, 47.391368], [8.479148, 47.390821]]], "type": "MultiLineString"}, "id": "4455", "properties": {}, "type": "Feature"}, {"bbox": [8.516432, 47.357559, 8.522947, 47.360019], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522833, 47.359947], [8.522729, 47.359868], [8.522635, 47.359784], [8.522552, 47.359694], [8.522481, 47.359599], [8.521954, 47.358974], [8.52194, 47.35896], [8.521928, 47.358945], [8.521916, 47.35893], [8.521904, 47.358914], [8.521893, 47.358899], [8.521883, 47.358883], [8.521861, 47.358841], [8.521843, 47.358798], [8.521831, 47.358754], [8.521824, 47.358709], [8.521822, 47.358664], [8.52181, 47.358068], [8.521808, 47.358005], [8.521797, 47.357942], [8.521779, 47.357879], [8.521754, 47.357818], [8.521723, 47.357762], [8.521686, 47.357707], [8.521642, 47.357654], [8.5216, 47.357633], [8.521555, 47.357614], [8.521508, 47.357597], [8.521459, 47.357584], [8.521409, 47.357573], [8.521357, 47.357566], [8.521305, 47.357561], [8.521253, 47.357559], [8.5212, 47.357561], [8.521148, 47.357565], [8.521096, 47.357573], [8.521046, 47.357583], [8.520997, 47.357596], [8.520949, 47.357612], [8.520904, 47.357631], [8.520862, 47.357652], [8.520822, 47.357676], [8.520073, 47.358041], [8.519971, 47.358065], [8.518978, 47.358299], [8.518322, 47.358454], [8.518148, 47.35849], [8.517956, 47.358537], [8.51716, 47.358723], [8.517076, 47.358747], [8.516937, 47.358799], [8.516767, 47.358838], [8.516598, 47.358881], [8.516432, 47.358927]]], "type": "MultiLineString"}, "id": "4468", "properties": {}, "type": "Feature"}, {"bbox": [8.5108, 47.366701, 8.512824, 47.367348], "geometry": {"coordinates": [[[8.5108, 47.367057], [8.51086, 47.366942], [8.511393, 47.366862], [8.512183, 47.366739], [8.512299, 47.366722], [8.512435, 47.366701], [8.512555, 47.367127], [8.512577, 47.367192], [8.512795, 47.367328], [8.512824, 47.367348]]], "type": "MultiLineString"}, "id": "4469", "properties": {}, "type": "Feature"}, {"bbox": [8.548524, 47.399732, 8.548879, 47.400648], "geometry": {"coordinates": [[[8.548651, 47.399732], [8.548703, 47.399777], [8.548749, 47.399825], [8.548789, 47.399875], [8.548821, 47.399928], [8.548847, 47.399982], [8.548865, 47.400038], [8.548876, 47.400095], [8.548879, 47.400152], [8.548875, 47.400209], [8.548863, 47.400265], [8.548844, 47.400321], [8.548818, 47.400375], [8.548785, 47.400427], [8.548745, 47.400477], [8.548698, 47.400525], [8.548646, 47.400569], [8.548587, 47.400611], [8.548524, 47.400648]]], "type": "MultiLineString"}, "id": "4492", "properties": {}, "type": "Feature"}, {"bbox": [8.518219, 47.333731, 8.519405, 47.336767], "geometry": {"coordinates": [[[8.518617, 47.336767], [8.518541, 47.336714], [8.518472, 47.336656], [8.51841, 47.336595], [8.518356, 47.336531], [8.518311, 47.336463], [8.518274, 47.336393], [8.518247, 47.336321], [8.518228, 47.336248], [8.518219, 47.336174], [8.51823, 47.336121], [8.518246, 47.336069], [8.518269, 47.336017], [8.518298, 47.335967], [8.518334, 47.335919], [8.518374, 47.335873], [8.518421, 47.33583], [8.518721, 47.335606], [8.518996, 47.335368], [8.519244, 47.335116], [8.51926, 47.335096], [8.519276, 47.335076], [8.519292, 47.335057], [8.519341, 47.334941], [8.519376, 47.334824], [8.519397, 47.334704], [8.519405, 47.334584], [8.519398, 47.334465], [8.519375, 47.334312], [8.519333, 47.334161], [8.519271, 47.334013], [8.519189, 47.333869], [8.51909, 47.333731]]], "type": "MultiLineString"}, "id": "4494", "properties": {}, "type": "Feature"}, {"bbox": [8.502847, 47.407946, 8.503672, 47.409151], "geometry": {"coordinates": [[[8.503387, 47.407946], [8.503257, 47.407955], [8.503255, 47.40798], [8.503253, 47.408005], [8.50325, 47.408031], [8.503236, 47.408122], [8.50321, 47.408213], [8.503175, 47.408302], [8.503157, 47.408336], [8.503139, 47.408371], [8.503118, 47.408405], [8.503092, 47.408446], [8.503062, 47.408486], [8.503031, 47.408525], [8.502903, 47.408682], [8.502881, 47.408721], [8.502864, 47.408761], [8.502852, 47.408802], [8.502847, 47.408844], [8.502847, 47.408871], [8.502851, 47.408897], [8.502859, 47.408923], [8.502869, 47.408948], [8.502883, 47.408973], [8.502901, 47.408997], [8.502921, 47.409019], [8.502944, 47.40904], [8.50297, 47.40906], [8.502998, 47.409078], [8.503029, 47.409095], [8.503061, 47.409109], [8.503095, 47.409122], [8.503131, 47.409132], [8.503168, 47.40914], [8.503206, 47.409146], [8.503245, 47.40915], [8.503284, 47.409151], [8.503351, 47.409149], [8.503418, 47.409142], [8.503484, 47.409131], [8.503548, 47.409116], [8.503672, 47.409036]]], "type": "MultiLineString"}, "id": "4504", "properties": {}, "type": "Feature"}, {"bbox": [8.524132, 47.374289, 8.524298, 47.374509], "geometry": {"coordinates": [[[8.524132, 47.374289], [8.524184, 47.374364], [8.524239, 47.374437], [8.524298, 47.374509]]], "type": "MultiLineString"}, "id": "4512", "properties": {}, "type": "Feature"}, {"bbox": [8.504302, 47.351839, 8.507994, 47.3525], "geometry": {"coordinates": [[[8.507994, 47.3525], [8.507571, 47.352425], [8.50659, 47.352248], [8.504806, 47.351929], [8.504302, 47.351839]]], "type": "MultiLineString"}, "id": "4518", "properties": {}, "type": "Feature"}, {"bbox": [8.543712, 47.377004, 8.544176, 47.377776], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544143, 47.377009], [8.544111, 47.377015], [8.544081, 47.377024], [8.544051, 47.377034], [8.544023, 47.377046], [8.543996, 47.377059], [8.543971, 47.377074], [8.543949, 47.377091], [8.543758, 47.377536], [8.543741, 47.377589], [8.543712, 47.377776]]], "type": "MultiLineString"}, "id": "4520", "properties": {}, "type": "Feature"}, {"bbox": [8.531765, 47.391341, 8.53621, 47.392996], "geometry": {"coordinates": [[[8.53621, 47.391341], [8.535337, 47.391351], [8.53523, 47.391355], [8.535124, 47.391365], [8.535019, 47.391382], [8.534917, 47.391404], [8.534818, 47.391431], [8.534723, 47.391464], [8.534632, 47.391503], [8.534441, 47.391601], [8.533001, 47.392389], [8.532271, 47.392788], [8.53211, 47.392865], [8.531941, 47.392935], [8.531765, 47.392996]]], "type": "MultiLineString"}, "id": "4522", "properties": {}, "type": "Feature"}, {"bbox": [8.466975, 47.382049, 8.473208, 47.385121], "geometry": {"coordinates": [[[8.473208, 47.382049], [8.473078, 47.382092], [8.473048, 47.382105], [8.47291, 47.382167], [8.47265, 47.382281], [8.472583, 47.382311], [8.472509, 47.38235], [8.472357, 47.382429], [8.472097, 47.382566], [8.471599, 47.382826], [8.471554, 47.382848], [8.471507, 47.382867], [8.471457, 47.382883], [8.471406, 47.382896], [8.471353, 47.382907], [8.470386, 47.383067], [8.470338, 47.383077], [8.470291, 47.383088], [8.470246, 47.383102], [8.470202, 47.383119], [8.470161, 47.383137], [8.470122, 47.383158], [8.469623, 47.383438], [8.469578, 47.383463], [8.469533, 47.383487], [8.469487, 47.38351], [8.469487, 47.38351], [8.469487, 47.38351], [8.46944, 47.383532], [8.469393, 47.383554], [8.469345, 47.383575], [8.468711, 47.383846], [8.468689, 47.383855], [8.468667, 47.383863], [8.468644, 47.38387], [8.46862, 47.383876], [8.468595, 47.38388], [8.46857, 47.383884], [8.468534, 47.38389], [8.468498, 47.383898], [8.468463, 47.383909], [8.468431, 47.383921], [8.468431, 47.383921], [8.468431, 47.383921], [8.4684, 47.383936], [8.468371, 47.383953], [8.468345, 47.383972], [8.468321, 47.383992], [8.468086, 47.384216], [8.468052, 47.384247], [8.468018, 47.384277], [8.467982, 47.384307], [8.467982, 47.384307], [8.467982, 47.384307], [8.467945, 47.384335], [8.467906, 47.384363], [8.467866, 47.38439], [8.467405, 47.3847], [8.467294, 47.384775], [8.467092, 47.38491], [8.467067, 47.384928], [8.467046, 47.384947], [8.467026, 47.384968], [8.46701, 47.384989], [8.466997, 47.385012], [8.466986, 47.385035], [8.466979, 47.385059], [8.466975, 47.385084], [8.466976, 47.385121]]], "type": "MultiLineString"}, "id": "4529", "properties": {}, "type": "Feature"}, {"bbox": [8.503399, 47.363042, 8.504989, 47.364904], "geometry": {"coordinates": [[[8.503399, 47.364904], [8.503402, 47.364762], [8.503456, 47.364698], [8.503552, 47.364587], [8.503601, 47.364531], [8.504134, 47.36391], [8.50422, 47.36382], [8.504412, 47.363621], [8.504892, 47.363125], [8.504956, 47.363069], [8.504989, 47.363042]]], "type": "MultiLineString"}, "id": "4537", "properties": {}, "type": "Feature"}, {"bbox": [8.50956, 47.360777, 8.511844, 47.362171], "geometry": {"coordinates": [[[8.511844, 47.361411], [8.511549, 47.361201], [8.511498, 47.361179], [8.510621, 47.36083], [8.510543, 47.360799], [8.510509, 47.36079], [8.510474, 47.360784], [8.510439, 47.360779], [8.510402, 47.360777], [8.510366, 47.360778], [8.51033, 47.36078], [8.510295, 47.360785], [8.51026, 47.360791], [8.510226, 47.3608], [8.510194, 47.360811], [8.510163, 47.360824], [8.510134, 47.360839], [8.510107, 47.360855], [8.510082, 47.360873], [8.51006, 47.360892], [8.509591, 47.361438], [8.50958, 47.361455], [8.509571, 47.361473], [8.509565, 47.361491], [8.509561, 47.361509], [8.50956, 47.361527], [8.50956, 47.361546], [8.509564, 47.361564], [8.509569, 47.361582], [8.509577, 47.3616], [8.509588, 47.361617], [8.5096, 47.361633], [8.509615, 47.361649], [8.509631, 47.361664], [8.50965, 47.361677], [8.50967, 47.36169], [8.509691, 47.361701], [8.510487, 47.362015], [8.510872, 47.362171]]], "type": "MultiLineString"}, "id": "4539", "properties": {}, "type": "Feature"}, {"bbox": [8.491568, 47.389588, 8.495358, 47.399797], "geometry": {"coordinates": [[[8.491568, 47.389588], [8.491623, 47.389728], [8.491785, 47.390108], [8.491974, 47.390626], [8.492525, 47.392103], [8.492953, 47.39326], [8.493295, 47.394183], [8.49489, 47.39851], [8.495358, 47.399797]]], "type": "MultiLineString"}, "id": "4548", "properties": {}, "type": "Feature"}, {"bbox": [8.545177, 47.36675, 8.545815, 47.367474], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545815, 47.366782], [8.545812, 47.366814], [8.545806, 47.366847], [8.545795, 47.366878], [8.545779, 47.366905], [8.54576, 47.366931], [8.545737, 47.366956], [8.545712, 47.36698], [8.545489, 47.367148], [8.545443, 47.367193], [8.545402, 47.367241], [8.545367, 47.367291], [8.545338, 47.367343], [8.545318, 47.367368], [8.545295, 47.367392], [8.54527, 47.367415], [8.545241, 47.367436], [8.54521, 47.367456], [8.545177, 47.367474]]], "type": "MultiLineString"}, "id": "4567", "properties": {}, "type": "Feature"}, {"bbox": [8.5574, 47.403901, 8.558452, 47.404072], "geometry": {"coordinates": [[[8.5574, 47.403958], [8.557805, 47.404064], [8.557864, 47.40407], [8.557925, 47.404072], [8.557985, 47.40407], [8.558045, 47.404065], [8.558104, 47.404056], [8.558162, 47.404043], [8.558217, 47.404027], [8.55827, 47.404008], [8.558321, 47.403985], [8.558368, 47.40396], [8.558412, 47.403932], [8.558452, 47.403901]]], "type": "MultiLineString"}, "id": "4569", "properties": {}, "type": "Feature"}, {"bbox": [8.514617, 47.370286, 8.518557, 47.370672], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.51825, 47.370378], [8.51757, 47.370568], [8.517336, 47.370633], [8.517269, 47.37065], [8.517199, 47.370662], [8.517129, 47.370669], [8.517057, 47.370672], [8.516968, 47.370672], [8.516879, 47.370669], [8.51679, 47.370663], [8.516723, 47.370656], [8.516656, 47.370647], [8.516589, 47.370636], [8.51642, 47.370607], [8.51625, 47.370581], [8.516079, 47.370559], [8.515431, 47.370483], [8.515408, 47.37048], [8.515401, 47.37048], [8.515301, 47.370468], [8.514617, 47.370381]]], "type": "MultiLineString"}, "id": "4606", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.352796, 8.525394, 47.354035], "geometry": {"coordinates": [[[8.525394, 47.354035], [8.525368, 47.354005], [8.525346, 47.353973], [8.525329, 47.35394], [8.525316, 47.353906], [8.525208, 47.353525], [8.525194, 47.35349], [8.52518, 47.353455], [8.525166, 47.353421], [8.525089, 47.353256], [8.524993, 47.353097], [8.524878, 47.352943], [8.524746, 47.352796]]], "type": "MultiLineString"}, "id": "4613", "properties": {}, "type": "Feature"}, {"bbox": [8.525612, 47.380414, 8.525652, 47.380449], "geometry": {"coordinates": [[[8.525652, 47.380449], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4633", "properties": {}, "type": "Feature"}, {"bbox": [8.48666, 47.387725, 8.487486, 47.391207], "geometry": {"coordinates": [[[8.487486, 47.391207], [8.487437, 47.391061], [8.487402, 47.390914], [8.487381, 47.390766], [8.487359, 47.390538], [8.487355, 47.390511], [8.487347, 47.390484], [8.487336, 47.390457], [8.487321, 47.390432], [8.487303, 47.390407], [8.4871, 47.390143], [8.487007, 47.390024], [8.486927, 47.389901], [8.486861, 47.389774], [8.486803, 47.389628], [8.486763, 47.389479], [8.486741, 47.389328], [8.486737, 47.389177], [8.486752, 47.389026], [8.486758, 47.38899], [8.486767, 47.388771], [8.486767, 47.388552], [8.486758, 47.388334], [8.486697, 47.387964], [8.486689, 47.387884], [8.486676, 47.387804], [8.48666, 47.387725]]], "type": "MultiLineString"}, "id": "4646", "properties": {}, "type": "Feature"}, {"bbox": [8.55325, 47.36517, 8.553906, 47.365737], "geometry": {"coordinates": [[[8.55325, 47.36517], [8.553783, 47.365657], [8.553906, 47.365737]]], "type": "MultiLineString"}, "id": "4647", "properties": {}, "type": "Feature"}, {"bbox": [8.540438, 47.417086, 8.54567, 47.41725], "geometry": {"coordinates": [[[8.54567, 47.41725], [8.544823, 47.41724], [8.544106, 47.417233], [8.543374, 47.417212], [8.542215, 47.417189], [8.541951, 47.417183], [8.541833, 47.417179], [8.541715, 47.417174], [8.541598, 47.417168], [8.540718, 47.417106], [8.540438, 47.417086]]], "type": "MultiLineString"}, "id": "4649", "properties": {}, "type": "Feature"}, {"bbox": [8.525726, 47.376439, 8.527985, 47.380137], "geometry": {"coordinates": [[[8.525726, 47.376439], [8.525804, 47.376575], [8.526009, 47.376863], [8.526019, 47.376877], [8.526372, 47.377384], [8.526722, 47.377977], [8.526757, 47.378035], [8.5269, 47.378279], [8.527014, 47.378473], [8.527199, 47.378786], [8.527228, 47.378835], [8.527357, 47.379054], [8.52757, 47.379414], [8.527591, 47.37945], [8.527703, 47.379652], [8.527781, 47.379793], [8.527985, 47.380137]]], "type": "MultiLineString"}, "id": "4650", "properties": {}, "type": "Feature"}, {"bbox": [8.540744, 47.414894, 8.541653, 47.414948], "geometry": {"coordinates": [[[8.541653, 47.414894], [8.540744, 47.414948]]], "type": "MultiLineString"}, "id": "4652", "properties": {}, "type": "Feature"}, {"bbox": [8.521909, 47.3658, 8.527918, 47.369462], "geometry": {"coordinates": [[[8.527918, 47.369145], [8.526412, 47.36942], [8.526105, 47.369462], [8.525924, 47.369441], [8.525017, 47.368973], [8.524945, 47.368935], [8.524877, 47.368894], [8.524814, 47.368849], [8.524763, 47.368807], [8.524716, 47.368764], [8.524673, 47.368718], [8.524329, 47.368373], [8.524223, 47.368328], [8.524123, 47.368278], [8.52403, 47.368221], [8.523944, 47.36816], [8.523921, 47.36814], [8.523899, 47.36812], [8.523877, 47.3681], [8.523549, 47.367761], [8.523277, 47.367437], [8.523051, 47.367151], [8.522924, 47.366945]], [[8.522924, 47.366945], [8.522904, 47.36692], [8.522843, 47.36685], [8.522687, 47.36667], [8.522451, 47.366384], [8.522392, 47.366326], [8.52233, 47.366268], [8.522268, 47.366211], [8.522235, 47.366183], [8.522202, 47.366155], [8.522169, 47.366127], [8.522141, 47.366097], [8.522117, 47.366067], [8.522095, 47.366036], [8.521909, 47.3658]]], "type": "MultiLineString"}, "id": "4666", "properties": {}, "type": "Feature"}, {"bbox": [8.567502, 47.373542, 8.568656, 47.376222], "geometry": {"coordinates": [[[8.567502, 47.376222], [8.567711, 47.376069], [8.567782, 47.376013], [8.567845, 47.375953], [8.567902, 47.37589], [8.56795, 47.375824], [8.56811, 47.375511], [8.56813, 47.375458], [8.568142, 47.375405], [8.568148, 47.375352], [8.568148, 47.37533], [8.568147, 47.374857], [8.56815, 47.374805], [8.568161, 47.374754], [8.568178, 47.374703], [8.568202, 47.374653], [8.568232, 47.374606], [8.568298, 47.374505], [8.568351, 47.374401], [8.568391, 47.374295], [8.568448, 47.374061], [8.568486, 47.373933], [8.56854, 47.373807], [8.568609, 47.373685], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "4683", "properties": {}, "type": "Feature"}, {"bbox": [8.572606, 47.380557, 8.574235, 47.381048], "geometry": {"coordinates": [[[8.572606, 47.380557], [8.573538, 47.380994], [8.573548, 47.380997], [8.573558, 47.380999], [8.573569, 47.381], [8.573579, 47.381001], [8.57359, 47.381001], [8.573601, 47.381001], [8.573611, 47.381], [8.573622, 47.380998], [8.573632, 47.380996], [8.573642, 47.380993], [8.573651, 47.380989], [8.57366, 47.380985], [8.573668, 47.380981], [8.573676, 47.380976], [8.573683, 47.38097], [8.573689, 47.380964], [8.573695, 47.380958], [8.573705, 47.380951], [8.573715, 47.380944], [8.573726, 47.380939], [8.573738, 47.380934], [8.573751, 47.380929], [8.573764, 47.380926], [8.573778, 47.380923], [8.573791, 47.380921], [8.573805, 47.38092], [8.573819, 47.380919], [8.573834, 47.38092], [8.573848, 47.380921], [8.573861, 47.380923], [8.573875, 47.380926], [8.573888, 47.38093], [8.5739, 47.380935], [8.574235, 47.381048]]], "type": "MultiLineString"}, "id": "4684", "properties": {}, "type": "Feature"}, {"bbox": [8.535014, 47.398183, 8.536548, 47.398241], "geometry": {"coordinates": [[[8.535014, 47.398183], [8.535686, 47.398188], [8.535934, 47.398197], [8.536181, 47.398215], [8.536427, 47.398241], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "4688", "properties": {}, "type": "Feature"}, {"bbox": [8.580193, 47.40949, 8.580386, 47.409686], "geometry": {"coordinates": [[[8.580193, 47.40949], [8.580257, 47.409555], [8.580321, 47.409621], [8.580386, 47.409686]]], "type": "MultiLineString"}, "id": "4692", "properties": {}, "type": "Feature"}, {"bbox": [8.533518, 47.366025, 8.538184, 47.367571], "geometry": {"coordinates": [[[8.538184, 47.367571], [8.538016, 47.367539], [8.537899, 47.367513], [8.537783, 47.367487], [8.537372, 47.367346], [8.537147, 47.367268], [8.536194, 47.366967], [8.535302, 47.366662], [8.534536, 47.366402], [8.53352, 47.366026], [8.533518, 47.366025]]], "type": "MultiLineString"}, "id": "4701", "properties": {}, "type": "Feature"}, {"bbox": [8.549597, 47.374668, 8.55913, 47.377129], "geometry": {"coordinates": [[[8.549597, 47.374668], [8.551787, 47.374781], [8.551896, 47.374786], [8.552003, 47.374797], [8.552109, 47.374814], [8.552212, 47.374837], [8.552315, 47.374868], [8.552414, 47.374905], [8.552508, 47.374949], [8.552595, 47.374998], [8.552675, 47.375052], [8.552748, 47.375111], [8.552812, 47.375174], [8.552922, 47.375339], [8.553009, 47.37547], [8.553051, 47.375523], [8.553093, 47.375575], [8.553135, 47.375628], [8.553319, 47.37586], [8.553334, 47.375894], [8.553345, 47.375929], [8.553351, 47.375965], [8.553353, 47.376], [8.553351, 47.37604], [8.553343, 47.37608], [8.55333, 47.376119], [8.553311, 47.376157], [8.553288, 47.376194], [8.55326, 47.376229], [8.553228, 47.376262], [8.552701, 47.376818], [8.552689, 47.376834], [8.552679, 47.376849], [8.552671, 47.376865], [8.552665, 47.376882], [8.552661, 47.376899], [8.552659, 47.376916], [8.552659, 47.376933], [8.552662, 47.37695], [8.552666, 47.376967], [8.552673, 47.376984], [8.552681, 47.377001], [8.552692, 47.377017], [8.552705, 47.377032], [8.55272, 47.377047], [8.552736, 47.37706], [8.552754, 47.377073], [8.552774, 47.377084], [8.552795, 47.377095], [8.552817, 47.377104], [8.552841, 47.377112], [8.552865, 47.377118], [8.55289, 47.377123], [8.552916, 47.377126], [8.552941, 47.377128], [8.552967, 47.377129], [8.552993, 47.377128], [8.553019, 47.377125], [8.553044, 47.377121], [8.554363, 47.376902], [8.554556, 47.37687], [8.554602, 47.37686], [8.554648, 47.376849], [8.554694, 47.376838], [8.554854, 47.376793], [8.555008, 47.376738], [8.555156, 47.376676], [8.555296, 47.376606], [8.555327, 47.376589], [8.555359, 47.376571], [8.55539, 47.376552], [8.555626, 47.376402], [8.555793, 47.376302], [8.555969, 47.376209], [8.556152, 47.376122], [8.556583, 47.375932], [8.556904, 47.37579], [8.557644, 47.375463], [8.557698, 47.375441], [8.557756, 47.375422], [8.557815, 47.375407], [8.557877, 47.375396], [8.55794, 47.375389], [8.557999, 47.375386], [8.558058, 47.375387], [8.558117, 47.375391], [8.558175, 47.375399], [8.558232, 47.37541], [8.558296, 47.375428], [8.558358, 47.375449], [8.558416, 47.375474], [8.558472, 47.375502], [8.558524, 47.375533], [8.558737, 47.375657], [8.558835, 47.375718], [8.558924, 47.375785], [8.559004, 47.375858], [8.559073, 47.375936], [8.55913, 47.376017]]], "type": "MultiLineString"}, "id": "4714", "properties": {}, "type": "Feature"}, {"bbox": [8.548879, 47.364979, 8.553706, 47.366131], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.549236, 47.366018], [8.549601, 47.365917], [8.549973, 47.365828], [8.550193, 47.365795], [8.550835, 47.365741], [8.551178, 47.365704], [8.551516, 47.365646], [8.551844, 47.365567], [8.552001, 47.36553], [8.55216, 47.365497], [8.55232, 47.365469], [8.553246, 47.365166], [8.553401, 47.365105], [8.553554, 47.365043], [8.553706, 47.364979]]], "type": "MultiLineString"}, "id": "4755", "properties": {}, "type": "Feature"}, {"bbox": [8.535297, 47.373655, 8.535908, 47.373928], "geometry": {"coordinates": [[[8.535908, 47.373655], [8.535755, 47.373719], [8.535297, 47.373928]]], "type": "MultiLineString"}, "id": "4763", "properties": {}, "type": "Feature"}, {"bbox": [8.554719, 47.36482, 8.55946, 47.367329], "geometry": {"coordinates": [[[8.554719, 47.36482], [8.555157, 47.365265], [8.555222, 47.365331], [8.555268, 47.365375], [8.555317, 47.365417], [8.55537, 47.365458], [8.555464, 47.365518], [8.555565, 47.365572], [8.555673, 47.36562], [8.556208, 47.365865], [8.556413, 47.365959], [8.557006, 47.366219], [8.557105, 47.366262], [8.557827, 47.366585], [8.558577, 47.366921], [8.559171, 47.367189], [8.55946, 47.367329]]], "type": "MultiLineString"}, "id": "4765", "properties": {}, "type": "Feature"}, {"bbox": [8.47792, 47.406843, 8.483542, 47.414238], "geometry": {"coordinates": [[[8.481089, 47.406843], [8.481026, 47.406881], [8.480958, 47.406915], [8.480886, 47.406945], [8.48081, 47.40697], [8.480403, 47.407072], [8.479238, 47.407375], [8.478977, 47.407443], [8.478727, 47.407529], [8.478492, 47.407632], [8.478394, 47.407695], [8.478305, 47.407765], [8.478226, 47.407839], [8.478156, 47.407918], [8.478097, 47.408], [8.478048, 47.408086], [8.478011, 47.408174], [8.477986, 47.408265], [8.477982, 47.408352], [8.47799, 47.408439], [8.47801, 47.408526], [8.478041, 47.40861], [8.478083, 47.408693], [8.478136, 47.408773], [8.478199, 47.408849], [8.478272, 47.408921], [8.478355, 47.408988], [8.478445, 47.40905], [8.478544, 47.409106], [8.47865, 47.409155], [8.479062, 47.409382], [8.479157, 47.409433], [8.479246, 47.409489], [8.479328, 47.409549], [8.479401, 47.409614], [8.479467, 47.409683], [8.479523, 47.409756], [8.479571, 47.409831], [8.479609, 47.409909], [8.479637, 47.409989], [8.479655, 47.410068], [8.479663, 47.410149], [8.479662, 47.410229], [8.47965, 47.41031], [8.479629, 47.410389], [8.479598, 47.410467], [8.479558, 47.410543], [8.479467, 47.410653], [8.479362, 47.410757], [8.479244, 47.410855], [8.479114, 47.410946], [8.478703, 47.411198], [8.47853, 47.411299], [8.478371, 47.41141], [8.478228, 47.411531], [8.478102, 47.41166], [8.478048, 47.411729], [8.478003, 47.411801], [8.477967, 47.411876], [8.477942, 47.411953], [8.477926, 47.41203], [8.47792, 47.412109], [8.477924, 47.412187], [8.477938, 47.412265], [8.477962, 47.412342], [8.477995, 47.412417], [8.478038, 47.41249], [8.478091, 47.41256], [8.478152, 47.412627], [8.478221, 47.41269], [8.478298, 47.412748], [8.478382, 47.412802], [8.478473, 47.412851], [8.47857, 47.412894], [8.478671, 47.412931], [8.478799, 47.412972], [8.478835, 47.412983], [8.479773, 47.413254], [8.481058, 47.413598], [8.483542, 47.414238]]], "type": "MultiLineString"}, "id": "4789", "properties": {}, "type": "Feature"}, {"bbox": [8.528025, 47.397778, 8.528566, 47.39794], "geometry": {"coordinates": [[[8.528025, 47.397778], [8.528053, 47.397814], [8.528112, 47.397865], [8.528166, 47.397891], [8.528231, 47.397906], [8.528247, 47.397909], [8.528264, 47.397911], [8.528282, 47.397912], [8.528299, 47.397912], [8.528316, 47.397911], [8.528333, 47.39791], [8.52853, 47.397882], [8.528566, 47.39794]]], "type": "MultiLineString"}, "id": "4793", "properties": {}, "type": "Feature"}, {"bbox": [8.53365, 47.364451, 8.53694, 47.369649], "geometry": {"coordinates": [[[8.53694, 47.364451], [8.535991, 47.365731], [8.535302, 47.366662], [8.534694, 47.367488], [8.53466, 47.367545], [8.534628, 47.367602], [8.534597, 47.36766], [8.534552, 47.367755], [8.534512, 47.367851], [8.534478, 47.367948], [8.534234, 47.368602], [8.534153, 47.368805], [8.534088, 47.368986], [8.534045, 47.369102], [8.53403, 47.369142], [8.534001, 47.369222], [8.533985, 47.369262], [8.533966, 47.369302], [8.533945, 47.369342], [8.533922, 47.369381], [8.533896, 47.369419], [8.533868, 47.369456], [8.533835, 47.3695], [8.533796, 47.369541], [8.533752, 47.36958], [8.533703, 47.369616], [8.53365, 47.369649]]], "type": "MultiLineString"}, "id": "4813", "properties": {}, "type": "Feature"}, {"bbox": [8.541518, 47.41405, 8.541865, 47.416254], "geometry": {"coordinates": [[[8.541518, 47.41405], [8.541653, 47.414894], [8.541735, 47.415704], [8.541824, 47.416154], [8.541865, 47.416254]]], "type": "MultiLineString"}, "id": "4820", "properties": {}, "type": "Feature"}, {"bbox": [8.554826, 47.403036, 8.563375, 47.405792], "geometry": {"coordinates": [[[8.554826, 47.403036], [8.555026, 47.40312], [8.555232, 47.403197], [8.555443, 47.403269], [8.555619, 47.403343], [8.555783, 47.403428], [8.555934, 47.403524], [8.556144, 47.403686], [8.556327, 47.403825], [8.556493, 47.403974], [8.556639, 47.404131], [8.556764, 47.404297], [8.557004, 47.404647], [8.557035, 47.40473], [8.557078, 47.404811], [8.55713, 47.404889], [8.557193, 47.404964], [8.557265, 47.405035], [8.557307, 47.405067], [8.557351, 47.405098], [8.557398, 47.405127], [8.557478, 47.40517], [8.557563, 47.405207], [8.557653, 47.405239], [8.557747, 47.405266], [8.557844, 47.405286], [8.557943, 47.405301], [8.558044, 47.405309], [8.558146, 47.405312], [8.558247, 47.405308], [8.558484, 47.405283], [8.559887, 47.405138], [8.560214, 47.405115], [8.560542, 47.405113], [8.560869, 47.405134], [8.56106, 47.405154], [8.561248, 47.405182], [8.561433, 47.405219], [8.561768, 47.405284], [8.5621, 47.405357], [8.562428, 47.405438], [8.562755, 47.405542], [8.563072, 47.40566], [8.563375, 47.405792]]], "type": "MultiLineString"}, "id": "4828", "properties": {}, "type": "Feature"}, {"bbox": [8.549468, 47.429987, 8.550381, 47.430922], "geometry": {"coordinates": [[[8.549468, 47.430003], [8.5495, 47.429996], [8.549533, 47.429991], [8.549567, 47.429988], [8.549601, 47.429987], [8.549635, 47.429988], [8.549668, 47.429991], [8.549701, 47.429996], [8.549734, 47.430003], [8.549765, 47.430011], [8.549795, 47.430022], [8.549817, 47.430038], [8.549836, 47.430055], [8.549853, 47.430074], [8.549867, 47.430093], [8.54988, 47.430113], [8.549889, 47.430133], [8.549897, 47.430154], [8.549901, 47.430176], [8.549903, 47.430197], [8.549902, 47.430219], [8.549897, 47.430247], [8.549896, 47.430275], [8.549898, 47.430303], [8.549904, 47.43033], [8.549914, 47.430357], [8.549927, 47.430384], [8.549944, 47.430409], [8.549964, 47.430434], [8.549987, 47.430457], [8.550013, 47.430479], [8.550042, 47.430498], [8.550074, 47.430516], [8.550107, 47.430533], [8.550143, 47.430546], [8.55018, 47.430558], [8.550208, 47.430568], [8.550234, 47.430579], [8.550259, 47.430592], [8.550282, 47.430607], [8.550303, 47.430622], [8.550321, 47.430639], [8.550338, 47.430657], [8.550352, 47.430676], [8.550363, 47.430696], [8.550372, 47.430716], [8.550378, 47.430737], [8.550381, 47.430758], [8.550381, 47.430779], [8.550365, 47.43081], [8.550344, 47.43084], [8.55032, 47.430869], [8.550292, 47.430896], [8.55026, 47.430922]]], "type": "MultiLineString"}, "id": "4837", "properties": {}, "type": "Feature"}, {"bbox": [8.52395, 47.353593, 8.524328, 47.355272], "geometry": {"coordinates": [[[8.524084, 47.353593], [8.524259, 47.353641], [8.524269, 47.353646], [8.524279, 47.353651], [8.524288, 47.353656], [8.524296, 47.353662], [8.524303, 47.353668], [8.52431, 47.353675], [8.524315, 47.353682], [8.52432, 47.35369], [8.524324, 47.353698], [8.524326, 47.353706], [8.524328, 47.353714], [8.524328, 47.353722], [8.524328, 47.35373], [8.524326, 47.353738], [8.524323, 47.353746], [8.52432, 47.353754], [8.524315, 47.353761], [8.524309, 47.353768], [8.524302, 47.353775], [8.523972, 47.354123], [8.523967, 47.354129], [8.523962, 47.354136], [8.523958, 47.354142], [8.523954, 47.354149], [8.523952, 47.354156], [8.523951, 47.354163], [8.52395, 47.354171], [8.523951, 47.354178], [8.523952, 47.354185], [8.523955, 47.354192], [8.523958, 47.354199], [8.523962, 47.354206], [8.523967, 47.354212], [8.524188, 47.35441], [8.524206, 47.354439], [8.52422, 47.354468], [8.52423, 47.354498], [8.524236, 47.354529], [8.524239, 47.35456], [8.524237, 47.35459], [8.524231, 47.354621], [8.524221, 47.354651], [8.523951, 47.355272]]], "type": "MultiLineString"}, "id": "4846", "properties": {}, "type": "Feature"}, {"bbox": [8.510022, 47.391629, 8.511394, 47.392204], "geometry": {"coordinates": [[[8.511394, 47.391646], [8.511382, 47.391641], [8.511369, 47.391637], [8.511355, 47.391634], [8.511341, 47.391631], [8.511327, 47.39163], [8.511313, 47.391629], [8.511299, 47.391629], [8.511284, 47.39163], [8.51127, 47.391632], [8.510918, 47.391689], [8.510849, 47.391701], [8.51078, 47.391716], [8.510713, 47.391732], [8.510125, 47.391896], [8.510111, 47.391902], [8.510097, 47.391908], [8.510084, 47.391915], [8.510073, 47.391923], [8.510062, 47.391931], [8.510052, 47.39194], [8.510044, 47.39195], [8.510037, 47.39196], [8.510031, 47.39197], [8.510026, 47.391981], [8.510024, 47.391992], [8.510022, 47.392003], [8.510022, 47.392014], [8.510029, 47.3921], [8.510044, 47.392204]]], "type": "MultiLineString"}, "id": "4847", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.396972, 8.532472, 47.397941], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.53067, 47.397121], [8.530711, 47.397136], [8.530752, 47.397151], [8.530792, 47.397167], [8.530832, 47.397183], [8.530871, 47.3972], [8.53091, 47.397217], [8.531, 47.397264], [8.531096, 47.397305], [8.531195, 47.397342], [8.53223, 47.397638], [8.532262, 47.397653], [8.532292, 47.39767], [8.532319, 47.397688], [8.532345, 47.397708], [8.532368, 47.397729], [8.532388, 47.397752], [8.532405, 47.397775], [8.53242, 47.3978], [8.532472, 47.397941]]], "type": "MultiLineString"}, "id": "4849", "properties": {}, "type": "Feature"}, {"bbox": [8.538331, 47.370732, 8.538911, 47.372317], "geometry": {"coordinates": [[[8.538911, 47.370732], [8.538763, 47.371119], [8.5386, 47.371573], [8.538372, 47.372166], [8.538331, 47.372317]]], "type": "MultiLineString"}, "id": "4863", "properties": {}, "type": "Feature"}, {"bbox": [8.587097, 47.354878, 8.587114, 47.355239], "geometry": {"coordinates": [[[8.587114, 47.355239], [8.587097, 47.354878]]], "type": "MultiLineString"}, "id": "4873", "properties": {}, "type": "Feature"}, {"bbox": [8.521482, 47.379647, 8.522791, 47.380117], "geometry": {"coordinates": [[[8.522791, 47.380054], [8.522767, 47.380068], [8.522741, 47.38008], [8.522714, 47.38009], [8.522685, 47.380099], [8.522655, 47.380106], [8.522625, 47.380112], [8.522593, 47.380115], [8.522562, 47.380117], [8.52253, 47.380117], [8.522499, 47.380115], [8.522468, 47.380111], [8.522438, 47.380105], [8.522408, 47.380098], [8.522222, 47.380045], [8.52204, 47.379987], [8.521862, 47.379923], [8.521799, 47.3799], [8.52174, 47.379873], [8.521685, 47.379843], [8.521634, 47.379809], [8.521588, 47.379772], [8.521547, 47.379733], [8.521512, 47.379691], [8.521482, 47.379647]]], "type": "MultiLineString"}, "id": "4881", "properties": {}, "type": "Feature"}, {"bbox": [8.536913, 47.369707, 8.538911, 47.370732], "geometry": {"coordinates": [[[8.538911, 47.370732], [8.538622, 47.370681], [8.537769, 47.370203], [8.537679, 47.370143], [8.536913, 47.369707]]], "type": "MultiLineString"}, "id": "4964", "properties": {}, "type": "Feature"}, {"bbox": [8.545441, 47.400028, 8.548524, 47.400648], "geometry": {"coordinates": [[[8.548524, 47.400648], [8.54833, 47.400566], [8.548128, 47.400494], [8.547918, 47.400434], [8.547701, 47.400385], [8.546808, 47.400345], [8.546559, 47.400327], [8.546313, 47.400292], [8.546073, 47.400242], [8.545441, 47.400028]]], "type": "MultiLineString"}, "id": "4965", "properties": {}, "type": "Feature"}, {"bbox": [8.557776, 47.359328, 8.557943, 47.359519], "geometry": {"coordinates": [[[8.557776, 47.359519], [8.557943, 47.359328]]], "type": "MultiLineString"}, "id": "4970", "properties": {}, "type": "Feature"}, {"bbox": [8.539749, 47.367116, 8.540224, 47.367239], "geometry": {"coordinates": [[[8.539749, 47.367116], [8.539769, 47.367121], [8.539962, 47.367171], [8.540224, 47.367239]]], "type": "MultiLineString"}, "id": "4973", "properties": {}, "type": "Feature"}, {"bbox": [8.55026, 47.430911, 8.550612, 47.431114], "geometry": {"coordinates": [[[8.55026, 47.430922], [8.550276, 47.430918], [8.550293, 47.430915], [8.55031, 47.430913], [8.550327, 47.430911], [8.550344, 47.430911], [8.550361, 47.430912], [8.550378, 47.430914], [8.550395, 47.430917], [8.550411, 47.430921], [8.550427, 47.430925], [8.550442, 47.430931], [8.550456, 47.430937], [8.550469, 47.430945], [8.550482, 47.430953], [8.550493, 47.430962], [8.550503, 47.430971], [8.550512, 47.430981], [8.55052, 47.430991], [8.550612, 47.431114]]], "type": "MultiLineString"}, "id": "4975", "properties": {}, "type": "Feature"}, {"bbox": [8.559753, 47.350875, 8.560092, 47.352101], "geometry": {"coordinates": [[[8.559753, 47.352101], [8.559807, 47.351944], [8.559837, 47.351858], [8.560088, 47.351252], [8.560092, 47.351197], [8.560088, 47.351141], [8.560078, 47.351086], [8.560062, 47.351031], [8.560039, 47.350978], [8.560009, 47.350926], [8.559974, 47.350875]]], "type": "MultiLineString"}, "id": "4984", "properties": {}, "type": "Feature"}, {"bbox": [8.509701, 47.411636, 8.513053, 47.411765], "geometry": {"coordinates": [[[8.513053, 47.411765], [8.512736, 47.411702], [8.512411, 47.411659], [8.512082, 47.411637], [8.511853, 47.411636], [8.511283, 47.411643], [8.511007, 47.411651], [8.509701, 47.411662]]], "type": "MultiLineString"}, "id": "4989", "properties": {}, "type": "Feature"}, {"bbox": [8.491742, 47.369917, 8.491774, 47.370051], "geometry": {"coordinates": [[[8.491742, 47.370051], [8.491761, 47.369988], [8.491774, 47.369917]]], "type": "MultiLineString"}, "id": "4993", "properties": {}, "type": "Feature"}, {"bbox": [8.541626, 47.376023, 8.541906, 47.377967], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541842, 47.376089], [8.541795, 47.37627], [8.541638, 47.376891], [8.541633, 47.376922], [8.541629, 47.376954], [8.541626, 47.376985], [8.541737, 47.377172], [8.541821, 47.377366], [8.541877, 47.377564], [8.541906, 47.377765], [8.541906, 47.377967]]], "type": "MultiLineString"}, "id": "4994", "properties": {}, "type": "Feature"}, {"bbox": [8.52988, 47.332387, 8.529981, 47.334827], "geometry": {"coordinates": [[[8.529981, 47.334827], [8.529936, 47.333251], [8.529929, 47.332965], [8.529911, 47.332679], [8.529881, 47.332393], [8.52988, 47.332387]]], "type": "MultiLineString"}, "id": "4995", "properties": {}, "type": "Feature"}, {"bbox": [8.520767, 47.41488, 8.53517, 47.419968], "geometry": {"coordinates": [[[8.53517, 47.419968], [8.535038, 47.419943], [8.534906, 47.419918], [8.534775, 47.419892], [8.534606, 47.419854], [8.53436, 47.419804], [8.534309, 47.419796], [8.534257, 47.41979], [8.534205, 47.419785], [8.533602, 47.419757], [8.533583, 47.419756], [8.533461, 47.419748], [8.533339, 47.419735], [8.533219, 47.419718], [8.533128, 47.419702], [8.533038, 47.419683], [8.532949, 47.419662], [8.532103, 47.419434], [8.531995, 47.4194], [8.531889, 47.419364], [8.531786, 47.419324], [8.530618, 47.418841], [8.530377, 47.418733], [8.530123, 47.418639], [8.529858, 47.41856], [8.529585, 47.418497], [8.52918, 47.418418], [8.528948, 47.418372], [8.528718, 47.418322], [8.528491, 47.418268], [8.527857, 47.418111], [8.527662, 47.418077], [8.52684, 47.417986], [8.526348, 47.417904], [8.525871, 47.41779], [8.525411, 47.417646], [8.525205, 47.417579], [8.524975, 47.417513], [8.524737, 47.41746], [8.524493, 47.417422], [8.524245, 47.417399], [8.524126, 47.417402], [8.524006, 47.417402], [8.523887, 47.417399], [8.523848, 47.417398], [8.523811, 47.417395], [8.523773, 47.41739], [8.523736, 47.417383], [8.523288, 47.417315], [8.52326, 47.41731], [8.523234, 47.417304], [8.523208, 47.417297], [8.523183, 47.417288], [8.52316, 47.417277], [8.523138, 47.417265], [8.523118, 47.417252], [8.5231, 47.417237], [8.523057, 47.417187], [8.523017, 47.417024], [8.522872, 47.416821], [8.522566, 47.41654], [8.522131, 47.416155], [8.521808, 47.415884], [8.521611, 47.415727], [8.521489, 47.415615], [8.521337, 47.415459], [8.520936, 47.41504], [8.520767, 47.41488]]], "type": "MultiLineString"}, "id": "4999", "properties": {}, "type": "Feature"}, {"bbox": [8.514532, 47.399112, 8.518151, 47.399753], "geometry": {"coordinates": [[[8.518151, 47.399753], [8.518099, 47.399748], [8.517899, 47.399726], [8.517624, 47.399698], [8.517289, 47.399664], [8.517163, 47.399649], [8.517037, 47.39963], [8.516913, 47.399606], [8.514532, 47.399112]]], "type": "MultiLineString"}, "id": "5001", "properties": {}, "type": "Feature"}, {"bbox": [8.512653, 47.359344, 8.513466, 47.359928], "geometry": {"coordinates": [[[8.513466, 47.359344], [8.513464, 47.359347], [8.513344, 47.359454], [8.513085, 47.359622], [8.513024, 47.359671], [8.512967, 47.359722], [8.512916, 47.359776], [8.512825, 47.35988], [8.512789, 47.359922], [8.512653, 47.359928]]], "type": "MultiLineString"}, "id": "5009", "properties": {}, "type": "Feature"}, {"bbox": [8.493783, 47.368429, 8.494236, 47.368969], "geometry": {"coordinates": [[[8.493783, 47.368429], [8.493796, 47.368454], [8.49381, 47.368479], [8.493826, 47.368503], [8.493962, 47.368659], [8.494099, 47.368814], [8.494236, 47.368969]]], "type": "MultiLineString"}, "id": "5010", "properties": {}, "type": "Feature"}, {"bbox": [8.544242, 47.375364, 8.547307, 47.379448], "geometry": {"coordinates": [[[8.544242, 47.379429], [8.544279, 47.379437], [8.544318, 47.379443], [8.544356, 47.379446], [8.544396, 47.379448], [8.544435, 47.379447], [8.544474, 47.379443], [8.544512, 47.379438], [8.54455, 47.37943], [8.544587, 47.37942], [8.544622, 47.379409], [8.544655, 47.379395], [8.544687, 47.379379], [8.544716, 47.379361], [8.544743, 47.379342], [8.544911, 47.379194], [8.545056, 47.379066], [8.545146, 47.379005], [8.545229, 47.378938], [8.545303, 47.378866], [8.545368, 47.378791], [8.545423, 47.378713], [8.545595, 47.378443], [8.545666, 47.378332], [8.545817, 47.3781], [8.546392, 47.377211], [8.546448, 47.377136], [8.546501, 47.37706], [8.546552, 47.376984], [8.546572, 47.376952], [8.546592, 47.37692], [8.546612, 47.376888], [8.546776, 47.376527], [8.547073, 47.375873], [8.547253, 47.375476], [8.547298, 47.375382], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "5025", "properties": {}, "type": "Feature"}, {"bbox": [8.5108, 47.367042, 8.512293, 47.367745], "geometry": {"coordinates": [[[8.5108, 47.367057], [8.510945, 47.367061], [8.51105, 47.367042], [8.511068, 47.367042], [8.511085, 47.367042], [8.511103, 47.367043], [8.51112, 47.367046], [8.511137, 47.367049], [8.511154, 47.367054], [8.51117, 47.367059], [8.511185, 47.367066], [8.511199, 47.367073], [8.511213, 47.367081], [8.511265, 47.367122], [8.511568, 47.367309], [8.511938, 47.367537], [8.51219, 47.367683], [8.512293, 47.367745]]], "type": "MultiLineString"}, "id": "5026", "properties": {}, "type": "Feature"}, {"bbox": [8.494605, 47.422636, 8.495757, 47.422812], "geometry": {"coordinates": [[[8.495757, 47.422636], [8.495692, 47.422647], [8.495628, 47.422657], [8.495563, 47.422667], [8.494761, 47.422788], [8.494605, 47.422812]]], "type": "MultiLineString"}, "id": "5045", "properties": {}, "type": "Feature"}, {"bbox": [8.534155, 47.398171, 8.535014, 47.398383], "geometry": {"coordinates": [[[8.534155, 47.398383], [8.534166, 47.39836], [8.53418, 47.398337], [8.534197, 47.398315], [8.534216, 47.398294], [8.534239, 47.398275], [8.534263, 47.398256], [8.53429, 47.39824], [8.534319, 47.398224], [8.534349, 47.398211], [8.534381, 47.398199], [8.534415, 47.39819], [8.534449, 47.398182], [8.534485, 47.398176], [8.534521, 47.398173], [8.534557, 47.398171], [8.534948, 47.398182], [8.535014, 47.398183]]], "type": "MultiLineString"}, "id": "5079", "properties": {}, "type": "Feature"}, {"bbox": [8.532207, 47.364819, 8.532801, 47.365897], "geometry": {"coordinates": [[[8.532207, 47.365897], [8.532327, 47.365648], [8.532734, 47.364869], [8.532801, 47.364819]]], "type": "MultiLineString"}, "id": "5082", "properties": {}, "type": "Feature"}, {"bbox": [8.510545, 47.359001, 8.512653, 47.359954], "geometry": {"coordinates": [[[8.512653, 47.359928], [8.512534, 47.359954], [8.512387, 47.359925], [8.512288, 47.359894], [8.512193, 47.359859], [8.512103, 47.359818], [8.511575, 47.359587], [8.511511, 47.359557], [8.511448, 47.359526], [8.511386, 47.359495], [8.511324, 47.359463], [8.511263, 47.35943], [8.511202, 47.359396], [8.511094, 47.359333], [8.510987, 47.35927], [8.510881, 47.359206], [8.510545, 47.359001]]], "type": "MultiLineString"}, "id": "5090", "properties": {}, "type": "Feature"}, {"bbox": [8.503334, 47.393853, 8.504804, 47.393909], "geometry": {"coordinates": [[[8.504804, 47.393907], [8.50473, 47.393909], [8.504468, 47.393902], [8.503943, 47.393881], [8.50374, 47.393872], [8.503537, 47.393862], [8.503334, 47.393853]]], "type": "MultiLineString"}, "id": "5106", "properties": {}, "type": "Feature"}, {"bbox": [8.497402, 47.393785, 8.502188, 47.393918], "geometry": {"coordinates": [[[8.502188, 47.393789], [8.501541, 47.393786], [8.501476, 47.393786], [8.501412, 47.393785], [8.501347, 47.393786], [8.501215, 47.393794], [8.501084, 47.393807], [8.500954, 47.393823], [8.500731, 47.393861], [8.500504, 47.393889], [8.500276, 47.393905], [8.500077, 47.393914], [8.499879, 47.393918], [8.49968, 47.393918], [8.499472, 47.393918], [8.499265, 47.393915], [8.499057, 47.393908], [8.498848, 47.393902], [8.498639, 47.393895], [8.49843, 47.393887], [8.49826, 47.393878], [8.498091, 47.393869], [8.497922, 47.393859], [8.497402, 47.393828]]], "type": "MultiLineString"}, "id": "5116", "properties": {}, "type": "Feature"}, {"bbox": [8.501193, 47.365877, 8.502277, 47.366589], "geometry": {"coordinates": [[[8.502277, 47.365954], [8.502148, 47.365926], [8.502057, 47.365905], [8.501963, 47.36589], [8.501868, 47.365881], [8.501772, 47.365877], [8.50149, 47.36589], [8.501469, 47.365896], [8.501449, 47.365902], [8.501431, 47.365909], [8.501413, 47.365918], [8.501396, 47.365927], [8.501381, 47.365938], [8.501367, 47.36595], [8.501355, 47.365962], [8.501198, 47.366366], [8.501195, 47.366377], [8.501193, 47.366387], [8.501193, 47.366397], [8.501193, 47.366408], [8.501195, 47.366418], [8.501199, 47.366428], [8.501203, 47.366438], [8.501209, 47.366448], [8.501216, 47.366457], [8.501224, 47.366466], [8.501234, 47.366474], [8.501244, 47.366481], [8.501255, 47.366488], [8.501268, 47.366495], [8.50128, 47.3665], [8.501294, 47.366505], [8.501308, 47.366509], [8.501323, 47.366512], [8.501338, 47.366515], [8.501353, 47.366516], [8.501368, 47.366516], [8.501383, 47.366516], [8.501565, 47.366521], [8.501745, 47.366536], [8.501922, 47.366561], [8.502039, 47.366589]]], "type": "MultiLineString"}, "id": "5117", "properties": {}, "type": "Feature"}, {"bbox": [8.536464, 47.414294, 8.539555, 47.414466], "geometry": {"coordinates": [[[8.539555, 47.414294], [8.539243, 47.414313], [8.538632, 47.414344], [8.537966, 47.414378], [8.536464, 47.414466]]], "type": "MultiLineString"}, "id": "5122", "properties": {}, "type": "Feature"}, {"bbox": [8.46988, 47.379396, 8.495294, 47.389049], "geometry": {"coordinates": [[[8.495294, 47.379396], [8.494697, 47.379754], [8.494431, 47.379907], [8.494415, 47.379916], [8.494398, 47.379926], [8.494381, 47.379936], [8.494274, 47.379996], [8.494166, 47.380057], [8.494056, 47.380116], [8.493917, 47.380189], [8.493775, 47.380262], [8.493632, 47.380333], [8.493279, 47.3805], [8.492917, 47.380659], [8.492548, 47.38081], [8.491759, 47.381119], [8.491601, 47.381181], [8.491466, 47.381233], [8.491166, 47.381351], [8.490862, 47.381465], [8.490555, 47.381576], [8.490134, 47.381717], [8.489705, 47.381846], [8.489269, 47.381965], [8.488061, 47.382277], [8.487463, 47.382432], [8.486921, 47.382572], [8.48613, 47.382781], [8.485522, 47.382941], [8.484598, 47.383209], [8.484101, 47.383352], [8.483927, 47.383411], [8.483756, 47.383472], [8.483586, 47.383535], [8.483475, 47.383579], [8.483365, 47.383624], [8.483256, 47.383671], [8.483168, 47.383709], [8.483081, 47.383748], [8.482995, 47.383787], [8.482508, 47.384025], [8.482375, 47.384088], [8.482239, 47.384147], [8.482099, 47.384202], [8.482008, 47.384235], [8.481916, 47.384267], [8.481823, 47.384297], [8.481622, 47.384355], [8.481417, 47.384407], [8.481208, 47.384451], [8.481089, 47.384477], [8.480968, 47.384496], [8.480845, 47.384508], [8.48006, 47.384568], [8.478514, 47.384688], [8.478267, 47.384705], [8.47802, 47.384722], [8.477774, 47.384741], [8.477594, 47.384772], [8.477415, 47.384807], [8.477238, 47.384845], [8.477063, 47.384886], [8.476889, 47.384931], [8.476718, 47.384979], [8.475646, 47.385304], [8.475195, 47.38547], [8.474894, 47.385614], [8.474614, 47.385776], [8.47436, 47.385957], [8.474132, 47.386153], [8.473669, 47.386572], [8.473389, 47.386807], [8.473079, 47.387024], [8.472743, 47.387223], [8.472383, 47.387401], [8.471718, 47.387708], [8.47167, 47.387731], [8.471622, 47.387755], [8.471575, 47.38778], [8.471253, 47.387963], [8.470955, 47.388163], [8.47068, 47.388379], [8.46988, 47.389049]]], "type": "MultiLineString"}, "id": "5123", "properties": {}, "type": "Feature"}, {"bbox": [8.532195, 47.364819, 8.532801, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532195, 47.365644], [8.532629, 47.364824], [8.532801, 47.364819]]], "type": "MultiLineString"}, "id": "5129", "properties": {}, "type": "Feature"}, {"bbox": [8.5645, 47.365266, 8.565627, 47.365765], "geometry": {"coordinates": [[[8.5645, 47.365266], [8.564811, 47.365404], [8.565164, 47.36556], [8.565627, 47.365765]]], "type": "MultiLineString"}, "id": "5130", "properties": {}, "type": "Feature"}, {"bbox": [8.526852, 47.375548, 8.528744, 47.376792], "geometry": {"coordinates": [[[8.526852, 47.375548], [8.527186, 47.375787], [8.527382, 47.375911], [8.52745, 47.37596], [8.527793, 47.376184], [8.528011, 47.376303], [8.528092, 47.376357], [8.528195, 47.376427], [8.528744, 47.376792]]], "type": "MultiLineString"}, "id": "5137", "properties": {}, "type": "Feature"}, {"bbox": [8.561212, 47.351004, 8.582046, 47.361603], "geometry": {"coordinates": [[[8.561212, 47.361603], [8.561272, 47.361573], [8.561328, 47.361539], [8.56138, 47.361503], [8.561427, 47.361463], [8.561474, 47.361391], [8.561524, 47.361319], [8.561576, 47.361248], [8.561735, 47.361001], [8.56178, 47.360947], [8.561833, 47.360896], [8.561893, 47.360849], [8.561948, 47.360814], [8.562007, 47.360782], [8.562069, 47.360753], [8.562135, 47.360728], [8.562203, 47.360706], [8.562274, 47.360689], [8.562347, 47.360675], [8.562478, 47.360656], [8.563172, 47.360567], [8.564242, 47.36043], [8.564646, 47.360393], [8.564725, 47.360386], [8.565398, 47.360333], [8.566036, 47.360289], [8.567019, 47.360292], [8.567586, 47.360285], [8.567962, 47.360257], [8.568122, 47.360232], [8.568279, 47.360198], [8.568431, 47.360154], [8.568576, 47.360102], [8.568644, 47.360073], [8.56871, 47.360043], [8.568775, 47.36001], [8.568871, 47.359956], [8.568962, 47.359897], [8.569047, 47.359834], [8.569195, 47.35973], [8.569762, 47.359347], [8.56988, 47.359267], [8.570259, 47.359019], [8.571083, 47.358477], [8.571293, 47.358344], [8.571681, 47.358098], [8.572079, 47.357837], [8.572477, 47.357577], [8.572499, 47.357563], [8.572521, 47.357549], [8.572544, 47.357535], [8.572771, 47.35738], [8.572981, 47.357212], [8.573171, 47.357035], [8.573274, 47.356933], [8.573364, 47.356827], [8.573442, 47.356716], [8.573507, 47.356601], [8.573813, 47.35602], [8.573897, 47.355885], [8.573998, 47.355755], [8.574116, 47.355632], [8.5745, 47.355246], [8.574593, 47.355132], [8.574684, 47.355017], [8.574772, 47.354901], [8.574814, 47.354844], [8.574856, 47.354787], [8.574898, 47.35473], [8.574965, 47.354632], [8.575036, 47.354535], [8.575113, 47.35444], [8.575153, 47.354393], [8.575194, 47.354346], [8.575237, 47.3543], [8.575384, 47.354144], [8.575548, 47.353996], [8.57573, 47.353858], [8.575927, 47.35373], [8.576382, 47.353532], [8.577069, 47.353208], [8.577144, 47.353172], [8.577214, 47.353133], [8.577279, 47.35309], [8.577339, 47.353043], [8.577403, 47.352985], [8.577457, 47.352922], [8.577504, 47.352857], [8.57754, 47.352788], [8.577709, 47.352484], [8.577818, 47.352306], [8.577949, 47.352135], [8.5781, 47.351973], [8.578271, 47.351819], [8.578461, 47.351676], [8.578668, 47.351544], [8.578878, 47.351421], [8.579103, 47.35131], [8.579341, 47.351212], [8.57959, 47.351129], [8.579849, 47.35106], [8.579886, 47.351054], [8.579922, 47.351047], [8.579958, 47.351042], [8.580139, 47.351019], [8.580321, 47.351007], [8.580504, 47.351004], [8.580687, 47.351011], [8.581358, 47.351043], [8.582046, 47.351087]]], "type": "MultiLineString"}, "id": "5146", "properties": {}, "type": "Feature"}, {"bbox": [8.551051, 47.414237, 8.554503, 47.418232], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.55113, 47.414383], [8.551216, 47.414527], [8.551309, 47.414668], [8.551396, 47.414791], [8.551488, 47.414913], [8.551585, 47.415032], [8.551874, 47.415361], [8.552886, 47.416465], [8.553833, 47.417498], [8.554503, 47.418232]]], "type": "MultiLineString"}, "id": "5149", "properties": {}, "type": "Feature"}, {"bbox": [8.571432, 47.403701, 8.573989, 47.404267], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571447, 47.403701], [8.571463, 47.403702], [8.571478, 47.403702], [8.571556, 47.403709], [8.571633, 47.403719], [8.571709, 47.403734], [8.571782, 47.403752], [8.571853, 47.403775], [8.571921, 47.403802], [8.572381, 47.404001], [8.572559, 47.404075], [8.572782, 47.40416], [8.572822, 47.404175], [8.572863, 47.404189], [8.572905, 47.404203], [8.573001, 47.404227], [8.573099, 47.404246], [8.5732, 47.404259], [8.573302, 47.404266], [8.573405, 47.404267], [8.573507, 47.404262], [8.573608, 47.404252], [8.573708, 47.404235], [8.573805, 47.404213], [8.573899, 47.404185], [8.573989, 47.404152]]], "type": "MultiLineString"}, "id": "5150", "properties": {}, "type": "Feature"}, {"bbox": [8.516625, 47.323947, 8.518963, 47.331188], "geometry": {"coordinates": [[[8.516723, 47.331188], [8.516694, 47.33111], [8.51667, 47.331032], [8.516652, 47.330953], [8.516635, 47.330849], [8.516627, 47.330745], [8.516625, 47.330641], [8.516644, 47.330474], [8.516684, 47.330308], [8.516743, 47.330146], [8.516822, 47.329987], [8.51692, 47.329833], [8.517037, 47.329686], [8.517977, 47.328635], [8.518603, 47.327933], [8.518703, 47.32781], [8.518787, 47.327681], [8.518856, 47.327548], [8.518908, 47.327412], [8.518943, 47.327273], [8.518962, 47.327133], [8.518963, 47.326992], [8.518947, 47.326852], [8.518914, 47.326713], [8.518514, 47.325373], [8.518469, 47.325195], [8.518446, 47.325015], [8.518446, 47.324835], [8.518468, 47.324655], [8.518512, 47.324477], [8.518578, 47.324302], [8.518666, 47.324132], [8.518764, 47.323947]]], "type": "MultiLineString"}, "id": "5155", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_39a2442dd5dc719a7869abc934246600_add({"bbox": [8.466975, 47.322819, 8.625403, 47.432856], "features": [{"bbox": [8.534083, 47.361296, 8.535362, 47.361328], "geometry": {"coordinates": [[[8.535362, 47.361328], [8.534083, 47.361296]]], "type": "MultiLineString"}, "id": "3", "properties": {}, "type": "Feature"}, {"bbox": [8.57154, 47.379694, 8.573596, 47.381487], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.572105, 47.380994], [8.572606, 47.380557], [8.573584, 47.379705], [8.573596, 47.379694]]], "type": "MultiLineString"}, "id": "4", "properties": {}, "type": "Feature"}, {"bbox": [8.549103, 47.369047, 8.549754, 47.369418], "geometry": {"coordinates": [[[8.549103, 47.369047], [8.549754, 47.369418]]], "type": "MultiLineString"}, "id": "7", "properties": {}, "type": "Feature"}, {"bbox": [8.538568, 47.408962, 8.539572, 47.409293], "geometry": {"coordinates": [[[8.539572, 47.408962], [8.538568, 47.409293]]], "type": "MultiLineString"}, "id": "11", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.391122, 8.523937, 47.392247], "geometry": {"coordinates": [[[8.522852, 47.391122], [8.523449, 47.391739], [8.523937, 47.392247]]], "type": "MultiLineString"}, "id": "12", "properties": {}, "type": "Feature"}, {"bbox": [8.548372, 47.405622, 8.549952, 47.405902], "geometry": {"coordinates": [[[8.549952, 47.405622], [8.549786, 47.405652], [8.548372, 47.405902]]], "type": "MultiLineString"}, "id": "17", "properties": {}, "type": "Feature"}, {"bbox": [8.53193, 47.364624, 8.532946, 47.36485], "geometry": {"coordinates": [[[8.532946, 47.36485], [8.532801, 47.364819], [8.53193, 47.364624]]], "type": "MultiLineString"}, "id": "29", "properties": {}, "type": "Feature"}, {"bbox": [8.538714, 47.384969, 8.539891, 47.385433], "geometry": {"coordinates": [[[8.538714, 47.384969], [8.539719, 47.385366], [8.539891, 47.385433]]], "type": "MultiLineString"}, "id": "32", "properties": {}, "type": "Feature"}, {"bbox": [8.514463, 47.38247, 8.515148, 47.383187], "geometry": {"coordinates": [[[8.514463, 47.38247], [8.515148, 47.383187]]], "type": "MultiLineString"}, "id": "62", "properties": {}, "type": "Feature"}, {"bbox": [8.535767, 47.371305, 8.536081, 47.371525], "geometry": {"coordinates": [[[8.536081, 47.371305], [8.535767, 47.371525]]], "type": "MultiLineString"}, "id": "64", "properties": {}, "type": "Feature"}, {"bbox": [8.517781, 47.357527, 8.519971, 47.358065], "geometry": {"coordinates": [[[8.519971, 47.358065], [8.519593, 47.357921], [8.518869, 47.357758], [8.517781, 47.357527]]], "type": "MultiLineString"}, "id": "67", "properties": {}, "type": "Feature"}, {"bbox": [8.491048, 47.388258, 8.491568, 47.389588], "geometry": {"coordinates": [[[8.491048, 47.388258], [8.491345, 47.389023], [8.491568, 47.389588]]], "type": "MultiLineString"}, "id": "70", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.37238, 8.534696, 47.372597], "geometry": {"coordinates": [[[8.534696, 47.37238], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "74", "properties": {}, "type": "Feature"}, {"bbox": [8.514814, 47.37048, 8.515401, 47.370986], "geometry": {"coordinates": [[[8.515401, 47.37048], [8.514814, 47.370986]]], "type": "MultiLineString"}, "id": "77", "properties": {}, "type": "Feature"}, {"bbox": [8.488771, 47.390623, 8.489673, 47.391012], "geometry": {"coordinates": [[[8.48963, 47.390623], [8.489673, 47.39074], [8.489513, 47.390815], [8.488771, 47.391012]]], "type": "MultiLineString"}, "id": "82", "properties": {}, "type": "Feature"}, {"bbox": [8.538567, 47.367639, 8.539962, 47.367905], "geometry": {"coordinates": [[[8.539962, 47.367905], [8.539848, 47.367883], [8.539185, 47.367741], [8.538567, 47.367639]]], "type": "MultiLineString"}, "id": "83", "properties": {}, "type": "Feature"}, {"bbox": [8.542347, 47.387779, 8.544033, 47.38875], "geometry": {"coordinates": [[[8.542347, 47.38875], [8.543686, 47.387962], [8.543889, 47.387864], [8.544033, 47.387779]]], "type": "MultiLineString"}, "id": "86", "properties": {}, "type": "Feature"}, {"bbox": [8.554059, 47.369316, 8.554799, 47.369461], "geometry": {"coordinates": [[[8.554059, 47.369461], [8.554551, 47.36936], [8.554799, 47.369316]]], "type": "MultiLineString"}, "id": "102", "properties": {}, "type": "Feature"}, {"bbox": [8.553706, 47.364725, 8.554431, 47.364979], "geometry": {"coordinates": [[[8.553706, 47.364979], [8.554431, 47.364725]]], "type": "MultiLineString"}, "id": "121", "properties": {}, "type": "Feature"}, {"bbox": [8.551746, 47.3823, 8.55231, 47.382622], "geometry": {"coordinates": [[[8.551746, 47.3823], [8.55231, 47.382622]]], "type": "MultiLineString"}, "id": "132", "properties": {}, "type": "Feature"}, {"bbox": [8.523492, 47.367222, 8.523815, 47.367706], "geometry": {"coordinates": [[[8.523492, 47.367222], [8.523577, 47.367362], [8.523815, 47.367706]]], "type": "MultiLineString"}, "id": "134", "properties": {}, "type": "Feature"}, {"bbox": [8.546182, 47.410199, 8.546351, 47.410431], "geometry": {"coordinates": [[[8.546182, 47.410199], [8.546261, 47.410329], [8.546351, 47.410431]]], "type": "MultiLineString"}, "id": "136", "properties": {}, "type": "Feature"}, {"bbox": [8.559885, 47.417654, 8.560006, 47.417888], "geometry": {"coordinates": [[[8.559885, 47.417888], [8.560006, 47.417654]]], "type": "MultiLineString"}, "id": "139", "properties": {}, "type": "Feature"}, {"bbox": [8.521642, 47.356703, 8.522162, 47.357654], "geometry": {"coordinates": [[[8.521642, 47.357654], [8.521934, 47.357066], [8.522162, 47.356703]]], "type": "MultiLineString"}, "id": "144", "properties": {}, "type": "Feature"}, {"bbox": [8.542741, 47.399597, 8.544438, 47.399893], "geometry": {"coordinates": [[[8.542741, 47.399597], [8.543821, 47.399794], [8.544352, 47.399893], [8.544438, 47.399838]]], "type": "MultiLineString"}, "id": "148", "properties": {}, "type": "Feature"}, {"bbox": [8.531632, 47.366592, 8.53171, 47.366642], "geometry": {"coordinates": [[[8.531632, 47.366592], [8.53171, 47.366642]]], "type": "MultiLineString"}, "id": "149", "properties": {}, "type": "Feature"}, {"bbox": [8.527831, 47.373643, 8.52843, 47.374074], "geometry": {"coordinates": [[[8.527831, 47.373643], [8.52843, 47.374074]]], "type": "MultiLineString"}, "id": "164", "properties": {}, "type": "Feature"}, {"bbox": [8.516504, 47.35947, 8.51741, 47.359681], "geometry": {"coordinates": [[[8.516504, 47.359681], [8.516593, 47.359673], [8.516681, 47.359648], [8.517296, 47.359595], [8.517396, 47.359585], [8.51741, 47.35947]]], "type": "MultiLineString"}, "id": "166", "properties": {}, "type": "Feature"}, {"bbox": [8.49131, 47.427656, 8.492086, 47.427812], "geometry": {"coordinates": [[[8.492086, 47.427656], [8.491525, 47.427802], [8.491418, 47.427812], [8.49131, 47.427804]]], "type": "MultiLineString"}, "id": "169", "properties": {}, "type": "Feature"}, {"bbox": [8.532918, 47.376539, 8.533836, 47.377168], "geometry": {"coordinates": [[[8.532918, 47.376539], [8.533836, 47.377168]]], "type": "MultiLineString"}, "id": "194", "properties": {}, "type": "Feature"}, {"bbox": [8.591631, 47.40656, 8.59208, 47.407189], "geometry": {"coordinates": [[[8.591631, 47.40656], [8.59208, 47.407189]]], "type": "MultiLineString"}, "id": "197", "properties": {}, "type": "Feature"}, {"bbox": [8.53747, 47.409409, 8.537714, 47.409615], "geometry": {"coordinates": [[[8.537636, 47.409409], [8.537714, 47.409559], [8.53747, 47.409615]]], "type": "MultiLineString"}, "id": "215", "properties": {}, "type": "Feature"}, {"bbox": [8.519075, 47.338716, 8.51938, 47.343169], "geometry": {"coordinates": [[[8.51938, 47.343169], [8.51916, 47.340715], [8.519096, 47.339928], [8.519081, 47.339677], [8.519075, 47.339426], [8.519079, 47.339174], [8.519092, 47.33872], [8.519092, 47.338716]]], "type": "MultiLineString"}, "id": "227", "properties": {}, "type": "Feature"}, {"bbox": [8.566327, 47.364435, 8.566464, 47.364594], "geometry": {"coordinates": [[[8.566327, 47.364594], [8.566349, 47.364577], [8.566369, 47.364559], [8.566388, 47.364541], [8.566464, 47.364435]]], "type": "MultiLineString"}, "id": "232", "properties": {}, "type": "Feature"}, {"bbox": [8.549845, 47.356072, 8.551305, 47.356633], "geometry": {"coordinates": [[[8.549845, 47.356072], [8.551305, 47.356633]]], "type": "MultiLineString"}, "id": "235", "properties": {}, "type": "Feature"}, {"bbox": [8.540439, 47.414966, 8.540623, 47.41644], "geometry": {"coordinates": [[[8.540439, 47.414966], [8.540529, 47.415774], [8.540623, 47.41644]]], "type": "MultiLineString"}, "id": "242", "properties": {}, "type": "Feature"}, {"bbox": [8.534463, 47.372597, 8.534472, 47.372823], "geometry": {"coordinates": [[[8.534472, 47.372597], [8.534463, 47.372823]]], "type": "MultiLineString"}, "id": "279", "properties": {}, "type": "Feature"}, {"bbox": [8.534246, 47.360287, 8.535427, 47.360339], "geometry": {"coordinates": [[[8.535427, 47.360339], [8.534246, 47.360287]]], "type": "MultiLineString"}, "id": "291", "properties": {}, "type": "Feature"}, {"bbox": [8.540695, 47.376963, 8.541897, 47.377019], "geometry": {"coordinates": [[[8.541897, 47.376963], [8.541745, 47.376979], [8.541592, 47.37699], [8.541439, 47.376998], [8.541192, 47.377015], [8.540943, 47.377019], [8.540695, 47.377011]]], "type": "MultiLineString"}, "id": "299", "properties": {}, "type": "Feature"}, {"bbox": [8.537534, 47.39835, 8.538939, 47.398571], "geometry": {"coordinates": [[[8.537534, 47.39835], [8.538939, 47.398571]]], "type": "MultiLineString"}, "id": "309", "properties": {}, "type": "Feature"}, {"bbox": [8.493632, 47.380333, 8.494533, 47.381261], "geometry": {"coordinates": [[[8.494533, 47.381261], [8.493632, 47.380333]]], "type": "MultiLineString"}, "id": "315", "properties": {}, "type": "Feature"}, {"bbox": [8.563846, 47.375496, 8.564142, 47.375497], "geometry": {"coordinates": [[[8.563846, 47.375496], [8.564142, 47.375497]]], "type": "MultiLineString"}, "id": "319", "properties": {}, "type": "Feature"}, {"bbox": [8.528025, 47.397199, 8.528496, 47.397778], "geometry": {"coordinates": [[[8.528496, 47.397199], [8.528397, 47.397333], [8.528257, 47.397548], [8.528025, 47.397778]]], "type": "MultiLineString"}, "id": "320", "properties": {}, "type": "Feature"}, {"bbox": [8.473292, 47.393473, 8.474068, 47.394457], "geometry": {"coordinates": [[[8.474068, 47.394457], [8.473292, 47.393473]]], "type": "MultiLineString"}, "id": "321", "properties": {}, "type": "Feature"}, {"bbox": [8.53359, 47.372713, 8.534282, 47.372893], "geometry": {"coordinates": [[[8.534282, 47.372713], [8.53359, 47.372893]]], "type": "MultiLineString"}, "id": "322", "properties": {}, "type": "Feature"}, {"bbox": [8.541833, 47.416254, 8.541951, 47.417183], "geometry": {"coordinates": [[[8.541865, 47.416254], [8.541833, 47.416329], [8.541838, 47.416362], [8.541951, 47.417183]]], "type": "MultiLineString"}, "id": "337", "properties": {}, "type": "Feature"}, {"bbox": [8.535188, 47.362553, 8.535274, 47.363583], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535274, 47.362553]]], "type": "MultiLineString"}, "id": "338", "properties": {}, "type": "Feature"}, {"bbox": [8.534966, 47.367886, 8.535443, 47.368801], "geometry": {"coordinates": [[[8.535443, 47.367886], [8.535443, 47.367886], [8.53532, 47.368046], [8.534966, 47.368801]]], "type": "MultiLineString"}, "id": "341", "properties": {}, "type": "Feature"}, {"bbox": [8.517689, 47.391945, 8.518139, 47.392076], "geometry": {"coordinates": [[[8.518139, 47.391945], [8.517689, 47.392076]]], "type": "MultiLineString"}, "id": "347", "properties": {}, "type": "Feature"}, {"bbox": [8.493783, 47.36802, 8.494821, 47.368429], "geometry": {"coordinates": [[[8.493783, 47.368429], [8.494821, 47.36802]]], "type": "MultiLineString"}, "id": "353", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.396972, 8.532316, 47.397568], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.531225, 47.397254], [8.532316, 47.397568]]], "type": "MultiLineString"}, "id": "356", "properties": {}, "type": "Feature"}, {"bbox": [8.536441, 47.371538, 8.536819, 47.371786], "geometry": {"coordinates": [[[8.536819, 47.371786], [8.536747, 47.371737], [8.536441, 47.371538]]], "type": "MultiLineString"}, "id": "371", "properties": {}, "type": "Feature"}, {"bbox": [8.507432, 47.418317, 8.508416, 47.418827], "geometry": {"coordinates": [[[8.508416, 47.418317], [8.508101, 47.418498], [8.507773, 47.418668], [8.507432, 47.418827]]], "type": "MultiLineString"}, "id": "378", "properties": {}, "type": "Feature"}, {"bbox": [8.536897, 47.375551, 8.53712, 47.375729], "geometry": {"coordinates": [[[8.536897, 47.375551], [8.536967, 47.375613], [8.537041, 47.375672], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "387", "properties": {}, "type": "Feature"}, {"bbox": [8.554503, 47.418232, 8.555739, 47.419583], "geometry": {"coordinates": [[[8.554503, 47.418232], [8.555739, 47.419583]]], "type": "MultiLineString"}, "id": "388", "properties": {}, "type": "Feature"}, {"bbox": [8.499939, 47.38272, 8.500483, 47.382991], "geometry": {"coordinates": [[[8.500483, 47.38272], [8.499939, 47.382991]]], "type": "MultiLineString"}, "id": "393", "properties": {}, "type": "Feature"}, {"bbox": [8.483314, 47.388544, 8.483786, 47.388822], "geometry": {"coordinates": [[[8.483786, 47.388544], [8.483314, 47.388822]]], "type": "MultiLineString"}, "id": "394", "properties": {}, "type": "Feature"}, {"bbox": [8.515772, 47.381528, 8.518669, 47.383349], "geometry": {"coordinates": [[[8.515772, 47.383349], [8.516779, 47.382763], [8.518669, 47.381528]]], "type": "MultiLineString"}, "id": "398", "properties": {}, "type": "Feature"}, {"bbox": [8.519971, 47.357818, 8.521754, 47.358625], "geometry": {"coordinates": [[[8.519971, 47.358065], [8.520436, 47.358282], [8.521251, 47.358625], [8.521617, 47.358088], [8.521754, 47.357818]]], "type": "MultiLineString"}, "id": "403", "properties": {}, "type": "Feature"}, {"bbox": [8.546128, 47.427397, 8.547646, 47.428169], "geometry": {"coordinates": [[[8.546128, 47.427397], [8.547327, 47.427979], [8.547436, 47.428041], [8.547542, 47.428104], [8.547646, 47.428169]]], "type": "MultiLineString"}, "id": "407", "properties": {}, "type": "Feature"}, {"bbox": [8.559509, 47.375933, 8.560315, 47.376719], "geometry": {"coordinates": [[[8.559509, 47.375933], [8.559643, 47.376038], [8.559771, 47.376146], [8.559894, 47.376258], [8.560058, 47.376421], [8.560148, 47.376519], [8.560234, 47.376618], [8.560315, 47.376719]]], "type": "MultiLineString"}, "id": "419", "properties": {}, "type": "Feature"}, {"bbox": [8.536075, 47.371068, 8.536415, 47.371305], "geometry": {"coordinates": [[[8.536415, 47.371068], [8.536081, 47.371305], [8.536075, 47.371301]]], "type": "MultiLineString"}, "id": "423", "properties": {}, "type": "Feature"}, {"bbox": [8.506041, 47.411352, 8.509701, 47.411681], "geometry": {"coordinates": [[[8.509701, 47.411662], [8.507908, 47.411677], [8.507465, 47.411681], [8.507164, 47.411651], [8.506869, 47.411603], [8.506582, 47.411537], [8.506305, 47.411453], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "424", "properties": {}, "type": "Feature"}, {"bbox": [8.549289, 47.369461, 8.554059, 47.370542], "geometry": {"coordinates": [[[8.549289, 47.370542], [8.550188, 47.37032], [8.550648, 47.370207], [8.551888, 47.369943], [8.552288, 47.369868], [8.55251, 47.369805], [8.553143, 47.369671], [8.553726, 47.369533], [8.553822, 47.36951], [8.554059, 47.369461]]], "type": "MultiLineString"}, "id": "441", "properties": {}, "type": "Feature"}, {"bbox": [8.536568, 47.415197, 8.539411, 47.415348], "geometry": {"coordinates": [[[8.539411, 47.415197], [8.538742, 47.41523], [8.538074, 47.415263], [8.536568, 47.415348]]], "type": "MultiLineString"}, "id": "443", "properties": {}, "type": "Feature"}, {"bbox": [8.522791, 47.379443, 8.523939, 47.380054], "geometry": {"coordinates": [[[8.523939, 47.379443], [8.522791, 47.380054]]], "type": "MultiLineString"}, "id": "454", "properties": {}, "type": "Feature"}, {"bbox": [8.496648, 47.423758, 8.497054, 47.42396], "geometry": {"coordinates": [[[8.496648, 47.423958], [8.496659, 47.42396], [8.496671, 47.42396], [8.496683, 47.42396], [8.496695, 47.423959], [8.496706, 47.423957], [8.496717, 47.423955], [8.496728, 47.423952], [8.496739, 47.423949], [8.496749, 47.423944], [8.496759, 47.42394], [8.497029, 47.423807], [8.497054, 47.423758]]], "type": "MultiLineString"}, "id": "456", "properties": {}, "type": "Feature"}, {"bbox": [8.552935, 47.424368, 8.553642, 47.424695], "geometry": {"coordinates": [[[8.552935, 47.424695], [8.553642, 47.424368]]], "type": "MultiLineString"}, "id": "468", "properties": {}, "type": "Feature"}, {"bbox": [8.54849, 47.368238, 8.550374, 47.369433], "geometry": {"coordinates": [[[8.550374, 47.368238], [8.549103, 47.369047], [8.548586, 47.369364], [8.54849, 47.369433]]], "type": "MultiLineString"}, "id": "478", "properties": {}, "type": "Feature"}, {"bbox": [8.516795, 47.361822, 8.516899, 47.36191], "geometry": {"coordinates": [[[8.516899, 47.361822], [8.516795, 47.36191]]], "type": "MultiLineString"}, "id": "480", "properties": {}, "type": "Feature"}, {"bbox": [8.535713, 47.371079, 8.536075, 47.371301], "geometry": {"coordinates": [[[8.536075, 47.371301], [8.535713, 47.371079]]], "type": "MultiLineString"}, "id": "481", "properties": {}, "type": "Feature"}, {"bbox": [8.517529, 47.37067, 8.519352, 47.372557], "geometry": {"coordinates": [[[8.519352, 47.37067], [8.519158, 47.37087], [8.518785, 47.371304], [8.518654, 47.371434], [8.518277, 47.371799], [8.518171, 47.371906], [8.517529, 47.372557]]], "type": "MultiLineString"}, "id": "482", "properties": {}, "type": "Feature"}, {"bbox": [8.534353, 47.370127, 8.534648, 47.370322], "geometry": {"coordinates": [[[8.534648, 47.370322], [8.534423, 47.37017], [8.534353, 47.370127]]], "type": "MultiLineString"}, "id": "484", "properties": {}, "type": "Feature"}, {"bbox": [8.536485, 47.377777, 8.537852, 47.378049], "geometry": {"coordinates": [[[8.537852, 47.377777], [8.537786, 47.377789], [8.537719, 47.377798], [8.537651, 47.377805], [8.537582, 47.377814], [8.537513, 47.377826], [8.537446, 47.377842], [8.536881, 47.378004], [8.536807, 47.378023], [8.53673, 47.378038], [8.536652, 47.378048], [8.536632, 47.378049], [8.536612, 47.378048], [8.536592, 47.378046], [8.536572, 47.378043], [8.536553, 47.378038], [8.536535, 47.378033], [8.536517, 47.378026], [8.5365, 47.378018], [8.536485, 47.37801]]], "type": "MultiLineString"}, "id": "485", "properties": {}, "type": "Feature"}, {"bbox": [8.524275, 47.380324, 8.524888, 47.380692], "geometry": {"coordinates": [[[8.524888, 47.380324], [8.524275, 47.380692]]], "type": "MultiLineString"}, "id": "494", "properties": {}, "type": "Feature"}, {"bbox": [8.503672, 47.408427, 8.505498, 47.409036], "geometry": {"coordinates": [[[8.503672, 47.409036], [8.504485, 47.408762], [8.505374, 47.408468], [8.505498, 47.408427]]], "type": "MultiLineString"}, "id": "497", "properties": {}, "type": "Feature"}, {"bbox": [8.534785, 47.368911, 8.535198, 47.369467], "geometry": {"coordinates": [[[8.535198, 47.368911], [8.535134, 47.368953], [8.534785, 47.369467]]], "type": "MultiLineString"}, "id": "498", "properties": {}, "type": "Feature"}, {"bbox": [8.518139, 47.390845, 8.522048, 47.391945], "geometry": {"coordinates": [[[8.522048, 47.390845], [8.521822, 47.39087], [8.521072, 47.391029], [8.520457, 47.39119], [8.520388, 47.391298], [8.520103, 47.391376], [8.518876, 47.391731], [8.518816, 47.391748], [8.518139, 47.391945]]], "type": "MultiLineString"}, "id": "521", "properties": {}, "type": "Feature"}, {"bbox": [8.540329, 47.374015, 8.540383, 47.374616], "geometry": {"coordinates": [[[8.540329, 47.374015], [8.540344, 47.374121], [8.540383, 47.374616]]], "type": "MultiLineString"}, "id": "529", "properties": {}, "type": "Feature"}, {"bbox": [8.537833, 47.398469, 8.539207, 47.39866], "geometry": {"coordinates": [[[8.537833, 47.398469], [8.539049, 47.39866], [8.539207, 47.398607]]], "type": "MultiLineString"}, "id": "530", "properties": {}, "type": "Feature"}, {"bbox": [8.542714, 47.378637, 8.543064, 47.378975], "geometry": {"coordinates": [[[8.542714, 47.378637], [8.542767, 47.37866], [8.542817, 47.378685], [8.542863, 47.378714], [8.542906, 47.378746], [8.542944, 47.378779], [8.542978, 47.378815], [8.543007, 47.378853], [8.543031, 47.378892], [8.543051, 47.378933], [8.543064, 47.378975]]], "type": "MultiLineString"}, "id": "531", "properties": {}, "type": "Feature"}, {"bbox": [8.52627, 47.373852, 8.52766, 47.374793], "geometry": {"coordinates": [[[8.52627, 47.373852], [8.526864, 47.374264], [8.52694, 47.374314], [8.527296, 47.374551], [8.52766, 47.374793]]], "type": "MultiLineString"}, "id": "535", "properties": {}, "type": "Feature"}, {"bbox": [8.48828, 47.387268, 8.48963, 47.390623], "geometry": {"coordinates": [[[8.48963, 47.390623], [8.489586, 47.390484], [8.489044, 47.389156], [8.488982, 47.389007], [8.488682, 47.388268], [8.488341, 47.387431], [8.48828, 47.387268]]], "type": "MultiLineString"}, "id": "536", "properties": {}, "type": "Feature"}, {"bbox": [8.48803, 47.389351, 8.488474, 47.390575], "geometry": {"coordinates": [[[8.488474, 47.390575], [8.48803, 47.389351]]], "type": "MultiLineString"}, "id": "543", "properties": {}, "type": "Feature"}, {"bbox": [8.534396, 47.387596, 8.535741, 47.388688], "geometry": {"coordinates": [[[8.534396, 47.387596], [8.534495, 47.387655], [8.534652, 47.387779], [8.534994, 47.388045], [8.535118, 47.388148], [8.535147, 47.388175], [8.535255, 47.388281], [8.535487, 47.388525], [8.535532, 47.388563], [8.535741, 47.388688]]], "type": "MultiLineString"}, "id": "561", "properties": {}, "type": "Feature"}, {"bbox": [8.500178, 47.382429, 8.500483, 47.38272], "geometry": {"coordinates": [[[8.500483, 47.38272], [8.500178, 47.382429]]], "type": "MultiLineString"}, "id": "564", "properties": {}, "type": "Feature"}, {"bbox": [8.518617, 47.336767, 8.51916, 47.337213], "geometry": {"coordinates": [[[8.51916, 47.337213], [8.519138, 47.337184], [8.519113, 47.337156], [8.519085, 47.33713], [8.518617, 47.336767]]], "type": "MultiLineString"}, "id": "575", "properties": {}, "type": "Feature"}, {"bbox": [8.53643, 47.374773, 8.537238, 47.375083], "geometry": {"coordinates": [[[8.537238, 47.374773], [8.537089, 47.374973], [8.536637, 47.375001], [8.53643, 47.375083]]], "type": "MultiLineString"}, "id": "581", "properties": {}, "type": "Feature"}, {"bbox": [8.520646, 47.384736, 8.521446, 47.386063], "geometry": {"coordinates": [[[8.521446, 47.386063], [8.521426, 47.386002], [8.521398, 47.385941], [8.521362, 47.385882], [8.521319, 47.385826], [8.521269, 47.385773], [8.521211, 47.385723], [8.520997, 47.385369], [8.520882, 47.385161], [8.520646, 47.384736]]], "type": "MultiLineString"}, "id": "597", "properties": {}, "type": "Feature"}, {"bbox": [8.531822, 47.413288, 8.532672, 47.416287], "geometry": {"coordinates": [[[8.531822, 47.413288], [8.531906, 47.413621], [8.53216, 47.414446], [8.532533, 47.415795], [8.532672, 47.416287]]], "type": "MultiLineString"}, "id": "606", "properties": {}, "type": "Feature"}, {"bbox": [8.567897, 47.416989, 8.568409, 47.417991], "geometry": {"coordinates": [[[8.567897, 47.416989], [8.568024, 47.417133], [8.568159, 47.417265], [8.568201, 47.417388], [8.568337, 47.417698], [8.568409, 47.417991]]], "type": "MultiLineString"}, "id": "620", "properties": {}, "type": "Feature"}, {"bbox": [8.536006, 47.373044, 8.536533, 47.373756], "geometry": {"coordinates": [[[8.536533, 47.373044], [8.536133, 47.37369], [8.536006, 47.373756]]], "type": "MultiLineString"}, "id": "627", "properties": {}, "type": "Feature"}, {"bbox": [8.490168, 47.394171, 8.490877, 47.394724], "geometry": {"coordinates": [[[8.490877, 47.394724], [8.490755, 47.394622], [8.490168, 47.394171]]], "type": "MultiLineString"}, "id": "631", "properties": {}, "type": "Feature"}, {"bbox": [8.491774, 47.369138, 8.491952, 47.369917], "geometry": {"coordinates": [[[8.491774, 47.369917], [8.491952, 47.369138]]], "type": "MultiLineString"}, "id": "634", "properties": {}, "type": "Feature"}, {"bbox": [8.528566, 47.397787, 8.532456, 47.3981], "geometry": {"coordinates": [[[8.532456, 47.3981], [8.532388, 47.398085], [8.530611, 47.39784], [8.530269, 47.397803], [8.529924, 47.397787], [8.529578, 47.397793], [8.529235, 47.39782], [8.528896, 47.39787], [8.528566, 47.39794]]], "type": "MultiLineString"}, "id": "637", "properties": {}, "type": "Feature"}, {"bbox": [8.519571, 47.368781, 8.520315, 47.369694], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.52026, 47.369638], [8.520211, 47.369579], [8.520165, 47.369519], [8.519846, 47.36909], [8.519571, 47.368781]]], "type": "MultiLineString"}, "id": "650", "properties": {}, "type": "Feature"}, {"bbox": [8.548231, 47.410364, 8.548732, 47.410416], "geometry": {"coordinates": [[[8.548231, 47.410364], [8.548732, 47.410416]]], "type": "MultiLineString"}, "id": "669", "properties": {}, "type": "Feature"}, {"bbox": [8.538612, 47.371064, 8.53992, 47.37122], "geometry": {"coordinates": [[[8.53992, 47.37122], [8.538936, 47.371064], [8.538763, 47.371119], [8.538612, 47.371094]]], "type": "MultiLineString"}, "id": "677", "properties": {}, "type": "Feature"}, {"bbox": [8.535346, 47.414145, 8.536423, 47.414205], "geometry": {"coordinates": [[[8.536423, 47.414145], [8.535346, 47.414205]]], "type": "MultiLineString"}, "id": "681", "properties": {}, "type": "Feature"}, {"bbox": [8.500602, 47.38202, 8.501056, 47.382446], "geometry": {"coordinates": [[[8.501056, 47.382446], [8.500602, 47.38202]]], "type": "MultiLineString"}, "id": "686", "properties": {}, "type": "Feature"}, {"bbox": [8.5574, 47.403958, 8.557626, 47.404428], "geometry": {"coordinates": [[[8.5574, 47.403958], [8.557626, 47.404428]]], "type": "MultiLineString"}, "id": "687", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380591, 8.525477, 47.380902], "geometry": {"coordinates": [[[8.525167, 47.380591], [8.525337, 47.380772], [8.525451, 47.380883], [8.525477, 47.380902]]], "type": "MultiLineString"}, "id": "688", "properties": {}, "type": "Feature"}, {"bbox": [8.499924, 47.393426, 8.502188, 47.393789], "geometry": {"coordinates": [[[8.502188, 47.393789], [8.501758, 47.393665], [8.501483, 47.393607], [8.501201, 47.393564], [8.500916, 47.393536], [8.500286, 47.393481], [8.499924, 47.393426]]], "type": "MultiLineString"}, "id": "689", "properties": {}, "type": "Feature"}, {"bbox": [8.519215, 47.392894, 8.519667, 47.393683], "geometry": {"coordinates": [[[8.519215, 47.392894], [8.519283, 47.393041], [8.519421, 47.393273], [8.519667, 47.393683]]], "type": "MultiLineString"}, "id": "697", "properties": {}, "type": "Feature"}, {"bbox": [8.517307, 47.385389, 8.519106, 47.387242], "geometry": {"coordinates": [[[8.517307, 47.385389], [8.518126, 47.386209], [8.518131, 47.386261], [8.519106, 47.387242], [8.519106, 47.387242]]], "type": "MultiLineString"}, "id": "733", "properties": {}, "type": "Feature"}, {"bbox": [8.527977, 47.373181, 8.52814, 47.373225], "geometry": {"coordinates": [[[8.52814, 47.373225], [8.528086, 47.37321], [8.528031, 47.373196], [8.527977, 47.373181]]], "type": "MultiLineString"}, "id": "736", "properties": {}, "type": "Feature"}, {"bbox": [8.570929, 47.348502, 8.572368, 47.348828], "geometry": {"coordinates": [[[8.570929, 47.348502], [8.572368, 47.348828]]], "type": "MultiLineString"}, "id": "745", "properties": {}, "type": "Feature"}, {"bbox": [8.51695, 47.400665, 8.518213, 47.401482], "geometry": {"coordinates": [[[8.518213, 47.401482], [8.51816, 47.401457], [8.517982, 47.40136], [8.51753, 47.401067], [8.517173, 47.40081], [8.51695, 47.400665]]], "type": "MultiLineString"}, "id": "749", "properties": {}, "type": "Feature"}, {"bbox": [8.49094, 47.394758, 8.491009, 47.394777], "geometry": {"coordinates": [[[8.491009, 47.394758], [8.49094, 47.394777]]], "type": "MultiLineString"}, "id": "750", "properties": {}, "type": "Feature"}, {"bbox": [8.548245, 47.407515, 8.548681, 47.408889], "geometry": {"coordinates": [[[8.548245, 47.407515], [8.548306, 47.407635], [8.548505, 47.408315], [8.548681, 47.408889]]], "type": "MultiLineString"}, "id": "751", "properties": {}, "type": "Feature"}, {"bbox": [8.530465, 47.385484, 8.531792, 47.386308], "geometry": {"coordinates": [[[8.530465, 47.385484], [8.530755, 47.385666], [8.531792, 47.386308]]], "type": "MultiLineString"}, "id": "754", "properties": {}, "type": "Feature"}, {"bbox": [8.537591, 47.393561, 8.539237, 47.393682], "geometry": {"coordinates": [[[8.537591, 47.393561], [8.53813, 47.393607], [8.538526, 47.393637], [8.539237, 47.393682]]], "type": "MultiLineString"}, "id": "755", "properties": {}, "type": "Feature"}, {"bbox": [8.490877, 47.394724, 8.49094, 47.394777], "geometry": {"coordinates": [[[8.49094, 47.394777], [8.490877, 47.394724]]], "type": "MultiLineString"}, "id": "762", "properties": {}, "type": "Feature"}, {"bbox": [8.548892, 47.370115, 8.549289, 47.370542], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.549012, 47.370263], [8.549144, 47.370405], [8.549289, 47.370542]]], "type": "MultiLineString"}, "id": "763", "properties": {}, "type": "Feature"}, {"bbox": [8.548158, 47.358813, 8.549616, 47.358951], "geometry": {"coordinates": [[[8.548158, 47.358813], [8.549616, 47.358951]]], "type": "MultiLineString"}, "id": "773", "properties": {}, "type": "Feature"}, {"bbox": [8.544645, 47.387122, 8.545952, 47.387482], "geometry": {"coordinates": [[[8.544645, 47.387482], [8.544866, 47.387419], [8.545952, 47.387122]]], "type": "MultiLineString"}, "id": "778", "properties": {}, "type": "Feature"}, {"bbox": [8.591061, 47.405777, 8.591631, 47.40656], "geometry": {"coordinates": [[[8.591061, 47.405777], [8.591631, 47.40656]]], "type": "MultiLineString"}, "id": "784", "properties": {}, "type": "Feature"}, {"bbox": [8.535054, 47.426204, 8.536487, 47.426658], "geometry": {"coordinates": [[[8.536487, 47.426204], [8.536254, 47.426264], [8.535971, 47.426354], [8.535087, 47.426646], [8.535054, 47.426658]]], "type": "MultiLineString"}, "id": "798", "properties": {}, "type": "Feature"}, {"bbox": [8.521593, 47.364966, 8.521909, 47.3658], "geometry": {"coordinates": [[[8.521909, 47.3658], [8.521593, 47.365372], [8.521712, 47.364966]]], "type": "MultiLineString"}, "id": "802", "properties": {}, "type": "Feature"}, {"bbox": [8.511813, 47.352667, 8.511914, 47.353401], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511914, 47.352667]]], "type": "MultiLineString"}, "id": "804", "properties": {}, "type": "Feature"}, {"bbox": [8.525877, 47.379652, 8.527703, 47.380609], "geometry": {"coordinates": [[[8.527703, 47.379652], [8.52759, 47.379734], [8.527193, 47.379933], [8.526904, 47.380066], [8.526294, 47.38038], [8.525877, 47.380609]]], "type": "MultiLineString"}, "id": "809", "properties": {}, "type": "Feature"}, {"bbox": [8.493198, 47.383995, 8.494381, 47.384548], "geometry": {"coordinates": [[[8.493198, 47.384548], [8.494381, 47.383995]]], "type": "MultiLineString"}, "id": "817", "properties": {}, "type": "Feature"}, {"bbox": [8.506448, 47.418827, 8.507432, 47.419122], "geometry": {"coordinates": [[[8.507432, 47.418827], [8.506815, 47.419025], [8.506448, 47.419122]]], "type": "MultiLineString"}, "id": "826", "properties": {}, "type": "Feature"}, {"bbox": [8.580386, 47.409686, 8.580412, 47.409713], "geometry": {"coordinates": [[[8.580386, 47.409686], [8.580412, 47.409713]]], "type": "MultiLineString"}, "id": "841", "properties": {}, "type": "Feature"}, {"bbox": [8.582046, 47.350922, 8.5834, 47.351093], "geometry": {"coordinates": [[[8.582046, 47.351087], [8.582282, 47.351093], [8.582517, 47.351084], [8.582751, 47.35106], [8.58298, 47.351022], [8.5834, 47.350922]]], "type": "MultiLineString"}, "id": "843", "properties": {}, "type": "Feature"}, {"bbox": [8.577909, 47.348849, 8.578225, 47.349005], "geometry": {"coordinates": [[[8.577909, 47.349005], [8.577944, 47.348975], [8.577983, 47.348947], [8.578026, 47.348921], [8.578072, 47.348899], [8.578121, 47.348879], [8.578172, 47.348863], [8.578225, 47.348849]]], "type": "MultiLineString"}, "id": "844", "properties": {}, "type": "Feature"}, {"bbox": [8.483786, 47.388246, 8.48439, 47.388544], "geometry": {"coordinates": [[[8.48439, 47.388246], [8.484178, 47.388335], [8.483976, 47.388434], [8.483786, 47.388544]]], "type": "MultiLineString"}, "id": "852", "properties": {}, "type": "Feature"}, {"bbox": [8.518764, 47.323894, 8.518792, 47.323947], "geometry": {"coordinates": [[[8.518764, 47.323947], [8.518792, 47.323894]]], "type": "MultiLineString"}, "id": "854", "properties": {}, "type": "Feature"}, {"bbox": [8.520418, 47.414576, 8.520767, 47.41488], "geometry": {"coordinates": [[[8.520767, 47.41488], [8.520648, 47.414781], [8.520531, 47.414679], [8.520418, 47.414576]]], "type": "MultiLineString"}, "id": "859", "properties": {}, "type": "Feature"}, {"bbox": [8.479433, 47.390095, 8.480421, 47.390602], "geometry": {"coordinates": [[[8.480421, 47.390095], [8.48014, 47.390211], [8.479948, 47.390295], [8.479766, 47.39039], [8.479598, 47.390496], [8.479433, 47.390602]]], "type": "MultiLineString"}, "id": "861", "properties": {}, "type": "Feature"}, {"bbox": [8.498978, 47.383339, 8.49924, 47.38347], "geometry": {"coordinates": [[[8.49924, 47.383339], [8.498978, 47.38347]]], "type": "MultiLineString"}, "id": "862", "properties": {}, "type": "Feature"}, {"bbox": [8.496675, 47.384235, 8.497417, 47.384546], "geometry": {"coordinates": [[[8.497417, 47.384235], [8.497175, 47.384345], [8.496927, 47.384449], [8.496675, 47.384546]]], "type": "MultiLineString"}, "id": "863", "properties": {}, "type": "Feature"}, {"bbox": [8.497839, 47.383707, 8.498495, 47.384029], "geometry": {"coordinates": [[[8.498495, 47.383707], [8.497839, 47.384029]]], "type": "MultiLineString"}, "id": "864", "properties": {}, "type": "Feature"}, {"bbox": [8.501056, 47.381435, 8.503195, 47.382446], "geometry": {"coordinates": [[[8.503195, 47.381435], [8.501056, 47.382446]]], "type": "MultiLineString"}, "id": "865", "properties": {}, "type": "Feature"}, {"bbox": [8.492542, 47.368907, 8.493107, 47.369364], "geometry": {"coordinates": [[[8.492542, 47.368907], [8.492603, 47.368963], [8.493107, 47.369364]]], "type": "MultiLineString"}, "id": "883", "properties": {}, "type": "Feature"}, {"bbox": [8.59337, 47.35958, 8.59457, 47.359878], "geometry": {"coordinates": [[[8.59337, 47.35958], [8.593702, 47.359683], [8.593861, 47.359724], [8.59457, 47.359878]]], "type": "MultiLineString"}, "id": "887", "properties": {}, "type": "Feature"}, {"bbox": [8.517112, 47.339424, 8.517545, 47.339476], "geometry": {"coordinates": [[[8.517545, 47.339424], [8.517112, 47.339476]]], "type": "MultiLineString"}, "id": "898", "properties": {}, "type": "Feature"}, {"bbox": [8.493074, 47.422812, 8.494605, 47.423043], "geometry": {"coordinates": [[[8.494605, 47.422812], [8.493074, 47.423043]]], "type": "MultiLineString"}, "id": "912", "properties": {}, "type": "Feature"}, {"bbox": [8.545557, 47.41725, 8.54567, 47.417488], "geometry": {"coordinates": [[[8.54567, 47.41725], [8.54564, 47.417331], [8.545602, 47.41741], [8.545557, 47.417488]]], "type": "MultiLineString"}, "id": "917", "properties": {}, "type": "Feature"}, {"bbox": [8.547608, 47.428169, 8.549143, 47.429808], "geometry": {"coordinates": [[[8.547646, 47.428169], [8.547608, 47.428198], [8.547935, 47.428435], [8.548226, 47.428694], [8.548479, 47.42897], [8.549143, 47.429808]]], "type": "MultiLineString"}, "id": "919", "properties": {}, "type": "Feature"}, {"bbox": [8.536302, 47.413011, 8.536666, 47.415979], "geometry": {"coordinates": [[[8.536302, 47.413011], [8.536306, 47.413213], [8.536374, 47.413752], [8.536423, 47.414145], [8.536464, 47.414466], [8.53652, 47.414944], [8.536568, 47.415348], [8.536644, 47.415837], [8.536666, 47.415979]]], "type": "MultiLineString"}, "id": "924", "properties": {}, "type": "Feature"}, {"bbox": [8.538884, 47.392508, 8.538985, 47.392631], "geometry": {"coordinates": [[[8.538884, 47.392508], [8.538894, 47.392514], [8.538914, 47.392528], [8.538931, 47.392543], [8.538946, 47.392559], [8.538959, 47.392576], [8.53897, 47.392594], [8.538979, 47.392612], [8.538985, 47.392631]]], "type": "MultiLineString"}, "id": "960", "properties": {}, "type": "Feature"}, {"bbox": [8.532384, 47.376914, 8.533268, 47.377523], "geometry": {"coordinates": [[[8.532384, 47.376914], [8.533268, 47.377523]]], "type": "MultiLineString"}, "id": "963", "properties": {}, "type": "Feature"}, {"bbox": [8.489299, 47.39106, 8.489729, 47.391177], "geometry": {"coordinates": [[[8.489299, 47.391177], [8.489627, 47.391086], [8.489729, 47.39106]]], "type": "MultiLineString"}, "id": "967", "properties": {}, "type": "Feature"}, {"bbox": [8.534555, 47.398053, 8.536548, 47.398203], "geometry": {"coordinates": [[[8.534555, 47.398053], [8.534708, 47.398064], [8.534863, 47.398071], [8.535017, 47.398075], [8.535585, 47.398085], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "969", "properties": {}, "type": "Feature"}, {"bbox": [8.532456, 47.397941, 8.532472, 47.3981], "geometry": {"coordinates": [[[8.532472, 47.397941], [8.532456, 47.3981]]], "type": "MultiLineString"}, "id": "970", "properties": {}, "type": "Feature"}, {"bbox": [8.549369, 47.429717, 8.549526, 47.430003], "geometry": {"coordinates": [[[8.549369, 47.429717], [8.549526, 47.429897], [8.549468, 47.430003]]], "type": "MultiLineString"}, "id": "971", "properties": {}, "type": "Feature"}, {"bbox": [8.525526, 47.361295, 8.526396, 47.363346], "geometry": {"coordinates": [[[8.526396, 47.363346], [8.525772, 47.36332], [8.525526, 47.361295]]], "type": "MultiLineString"}, "id": "977", "properties": {}, "type": "Feature"}, {"bbox": [8.542389, 47.366751, 8.544282, 47.367078], "geometry": {"coordinates": [[[8.542389, 47.366751], [8.543926, 47.367014], [8.544282, 47.367078]]], "type": "MultiLineString"}, "id": "990", "properties": {}, "type": "Feature"}, {"bbox": [8.543928, 47.422432, 8.550789, 47.431157], "geometry": {"coordinates": [[[8.550789, 47.422432], [8.550384, 47.422784], [8.550255, 47.4229], [8.549777, 47.423346], [8.549454, 47.423648], [8.549281, 47.423812], [8.549054, 47.42404], [8.549001, 47.424097], [8.548694, 47.424433], [8.548212, 47.425], [8.547522, 47.425815], [8.547469, 47.425877], [8.547463, 47.425884], [8.547283, 47.426097], [8.546903, 47.426546], [8.546523, 47.426994], [8.546488, 47.427033], [8.546453, 47.427071], [8.546417, 47.427109], [8.546128, 47.427397], [8.545737, 47.427926], [8.545708, 47.427966], [8.545521, 47.428234], [8.545434, 47.428365], [8.545354, 47.428494], [8.54528, 47.428625], [8.545214, 47.428758], [8.544881, 47.429379], [8.544726, 47.42967], [8.544518, 47.430056], [8.544343, 47.430383], [8.544163, 47.430717], [8.54397, 47.431078], [8.543928, 47.431157]]], "type": "MultiLineString"}, "id": "997", "properties": {}, "type": "Feature"}, {"bbox": [8.576568, 47.373984, 8.577507, 47.37479], "geometry": {"coordinates": [[[8.576606, 47.373984], [8.576568, 47.374004], [8.576826, 47.374275], [8.57691, 47.374361], [8.577006, 47.374441], [8.577111, 47.374516], [8.577226, 47.374583], [8.577507, 47.37479]]], "type": "MultiLineString"}, "id": "1002", "properties": {}, "type": "Feature"}, {"bbox": [8.585623, 47.355239, 8.587114, 47.355772], "geometry": {"coordinates": [[[8.585623, 47.355772], [8.585852, 47.355631], [8.586171, 47.355491], [8.586534, 47.355376], [8.587114, 47.355239]]], "type": "MultiLineString"}, "id": "1004", "properties": {}, "type": "Feature"}, {"bbox": [8.473259, 47.392702, 8.48051, 47.394689], "geometry": {"coordinates": [[[8.48051, 47.392702], [8.478753, 47.393265], [8.478311, 47.393407], [8.476927, 47.393811], [8.475511, 47.394162], [8.474068, 47.394457], [8.473259, 47.394689]]], "type": "MultiLineString"}, "id": "1005", "properties": {}, "type": "Feature"}, {"bbox": [8.518151, 47.399364, 8.521347, 47.399799], "geometry": {"coordinates": [[[8.521347, 47.399364], [8.52094, 47.399495], [8.520758, 47.399548], [8.520572, 47.399596], [8.520384, 47.399638], [8.519969, 47.399713], [8.519546, 47.399765], [8.519118, 47.399794], [8.518928, 47.399799], [8.518737, 47.399796], [8.518547, 47.399786], [8.518397, 47.399776], [8.518248, 47.399764], [8.518151, 47.399753]]], "type": "MultiLineString"}, "id": "1007", "properties": {}, "type": "Feature"}, {"bbox": [8.527703, 47.378303, 8.530386, 47.379652], "geometry": {"coordinates": [[[8.530386, 47.378303], [8.530315, 47.37836], [8.529982, 47.378526], [8.529815, 47.378594], [8.529117, 47.378943], [8.527825, 47.379589], [8.527703, 47.379652]]], "type": "MultiLineString"}, "id": "1018", "properties": {}, "type": "Feature"}, {"bbox": [8.547772, 47.359424, 8.549069, 47.3597], "geometry": {"coordinates": [[[8.547772, 47.359424], [8.549069, 47.3597]]], "type": "MultiLineString"}, "id": "1034", "properties": {}, "type": "Feature"}, {"bbox": [8.538343, 47.392443, 8.538884, 47.392508], "geometry": {"coordinates": [[[8.538343, 47.392458], [8.538356, 47.392455], [8.538384, 47.39245], [8.538412, 47.392446], [8.53844, 47.392444], [8.538469, 47.392443], [8.538497, 47.392444], [8.538721, 47.392455], [8.538748, 47.392459], [8.538775, 47.392464], [8.538801, 47.392471], [8.538827, 47.39248], [8.538851, 47.39249], [8.538873, 47.392501], [8.538884, 47.392508]]], "type": "MultiLineString"}, "id": "1039", "properties": {}, "type": "Feature"}, {"bbox": [8.571352, 47.381487, 8.57154, 47.381651], "geometry": {"coordinates": [[[8.57154, 47.381487], [8.571352, 47.381651]]], "type": "MultiLineString"}, "id": "1043", "properties": {}, "type": "Feature"}, {"bbox": [8.507603, 47.393221, 8.50763, 47.393798], "geometry": {"coordinates": [[[8.507603, 47.393221], [8.50763, 47.393798]]], "type": "MultiLineString"}, "id": "1044", "properties": {}, "type": "Feature"}, {"bbox": [8.548892, 47.365258, 8.554151, 47.370115], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.549754, 47.369418], [8.550243, 47.369022], [8.550733, 47.368625], [8.550762, 47.368602], [8.550791, 47.368578], [8.550821, 47.368555], [8.550881, 47.36851], [8.550942, 47.368466], [8.551004, 47.368423], [8.551145, 47.368332], [8.551242, 47.36827], [8.551398, 47.36817], [8.55254, 47.367492], [8.552964, 47.367241], [8.553075, 47.367168], [8.553179, 47.367089], [8.553275, 47.367006], [8.55336, 47.366923], [8.553435, 47.366835], [8.5535, 47.366743], [8.553541, 47.366673], [8.553575, 47.366602], [8.553603, 47.36653], [8.553645, 47.366418], [8.553906, 47.365737], [8.553962, 47.365616], [8.554151, 47.365258]]], "type": "MultiLineString"}, "id": "1045", "properties": {}, "type": "Feature"}, {"bbox": [8.532433, 47.372893, 8.53359, 47.373193], "geometry": {"coordinates": [[[8.53359, 47.372893], [8.532964, 47.373056], [8.532433, 47.373193]]], "type": "MultiLineString"}, "id": "1071", "properties": {}, "type": "Feature"}, {"bbox": [8.537714, 47.409499, 8.53795, 47.409559], "geometry": {"coordinates": [[[8.53795, 47.409499], [8.537714, 47.409559]]], "type": "MultiLineString"}, "id": "1073", "properties": {}, "type": "Feature"}, {"bbox": [8.496008, 47.408823, 8.49717, 47.409839], "geometry": {"coordinates": [[[8.496008, 47.408823], [8.49717, 47.409839]]], "type": "MultiLineString"}, "id": "1079", "properties": {}, "type": "Feature"}, {"bbox": [8.546552, 47.376984, 8.548385, 47.377376], "geometry": {"coordinates": [[[8.546552, 47.376984], [8.547323, 47.377149], [8.548385, 47.377376]]], "type": "MultiLineString"}, "id": "1083", "properties": {}, "type": "Feature"}, {"bbox": [8.559455, 47.379109, 8.559817, 47.379362], "geometry": {"coordinates": [[[8.559455, 47.379109], [8.559563, 47.379201], [8.559684, 47.379286], [8.559817, 47.379362]]], "type": "MultiLineString"}, "id": "1084", "properties": {}, "type": "Feature"}, {"bbox": [8.536533, 47.376159, 8.537557, 47.37662], "geometry": {"coordinates": [[[8.537557, 47.376159], [8.53737, 47.376226], [8.537142, 47.376327], [8.536533, 47.37662]]], "type": "MultiLineString"}, "id": "1087", "properties": {}, "type": "Feature"}, {"bbox": [8.528744, 47.376792, 8.531079, 47.378879], "geometry": {"coordinates": [[[8.528744, 47.376792], [8.528771, 47.376816], [8.529264, 47.377267], [8.529307, 47.377307], [8.529812, 47.37777], [8.529852, 47.377807], [8.530391, 47.378299], [8.530467, 47.378331], [8.531079, 47.378879]]], "type": "MultiLineString"}, "id": "1093", "properties": {}, "type": "Feature"}, {"bbox": [8.566043, 47.364594, 8.566327, 47.364709], "geometry": {"coordinates": [[[8.566043, 47.364709], [8.566142, 47.364675], [8.566237, 47.364637], [8.566327, 47.364594]]], "type": "MultiLineString"}, "id": "1094", "properties": {}, "type": "Feature"}, {"bbox": [8.53634, 47.373799, 8.536949, 47.374103], "geometry": {"coordinates": [[[8.536949, 47.373799], [8.53634, 47.374103]]], "type": "MultiLineString"}, "id": "1103", "properties": {}, "type": "Feature"}, {"bbox": [8.535535, 47.370956, 8.537795, 47.372695], "geometry": {"coordinates": [[[8.537795, 47.370956], [8.536747, 47.371737], [8.535738, 47.372461], [8.535673, 47.372519], [8.535616, 47.37258], [8.535566, 47.372644], [8.535535, 47.372695]]], "type": "MultiLineString"}, "id": "1130", "properties": {}, "type": "Feature"}, {"bbox": [8.529755, 47.371223, 8.529983, 47.371584], "geometry": {"coordinates": [[[8.529755, 47.371223], [8.529983, 47.371584]]], "type": "MultiLineString"}, "id": "1133", "properties": {}, "type": "Feature"}, {"bbox": [8.537049, 47.370619, 8.538612, 47.371094], "geometry": {"coordinates": [[[8.538612, 47.371094], [8.537795, 47.370956], [8.537746, 47.370939], [8.537691, 47.370916], [8.537049, 47.370619]]], "type": "MultiLineString"}, "id": "1135", "properties": {}, "type": "Feature"}, {"bbox": [8.55232, 47.365469, 8.5535, 47.366743], "geometry": {"coordinates": [[[8.55232, 47.365469], [8.552612, 47.365785], [8.553108, 47.366324], [8.5535, 47.366743]]], "type": "MultiLineString"}, "id": "1143", "properties": {}, "type": "Feature"}, {"bbox": [8.497054, 47.423305, 8.497872, 47.423758], "geometry": {"coordinates": [[[8.497054, 47.423758], [8.497088, 47.423748], [8.497121, 47.423737], [8.497152, 47.423724], [8.497182, 47.423709], [8.49721, 47.423693], [8.497872, 47.423305]]], "type": "MultiLineString"}, "id": "1145", "properties": {}, "type": "Feature"}, {"bbox": [8.518269, 47.358299, 8.519091, 47.35943], "geometry": {"coordinates": [[[8.518978, 47.358299], [8.519024, 47.358389], [8.519034, 47.358409], [8.519082, 47.358505], [8.519086, 47.358516], [8.519089, 47.358528], [8.519091, 47.358539], [8.51909, 47.358551], [8.519089, 47.358563], [8.519086, 47.358574], [8.519082, 47.358585], [8.519076, 47.358596], [8.519069, 47.358607], [8.519061, 47.358617], [8.518958, 47.358733], [8.518762, 47.358932], [8.518401, 47.359327], [8.51838, 47.359351], [8.518356, 47.359373], [8.518329, 47.359394], [8.5183, 47.359413], [8.518269, 47.35943]]], "type": "MultiLineString"}, "id": "1149", "properties": {}, "type": "Feature"}, {"bbox": [8.538733, 47.37701, 8.540695, 47.377374], "geometry": {"coordinates": [[[8.540695, 47.377011], [8.540496, 47.37701], [8.540296, 47.377013], [8.540097, 47.377022], [8.539827, 47.377102], [8.539556, 47.377179], [8.539283, 47.377253], [8.538733, 47.377374]]], "type": "MultiLineString"}, "id": "1160", "properties": {}, "type": "Feature"}, {"bbox": [8.504804, 47.393874, 8.505557, 47.393907], "geometry": {"coordinates": [[[8.505557, 47.393874], [8.505503, 47.393877], [8.505253, 47.393889], [8.504992, 47.393904], [8.504804, 47.393907]]], "type": "MultiLineString"}, "id": "1165", "properties": {}, "type": "Feature"}, {"bbox": [8.586241, 47.404625, 8.595237, 47.407086], "geometry": {"coordinates": [[[8.586241, 47.407086], [8.586639, 47.406992], [8.587035, 47.40689], [8.587426, 47.40678], [8.588618, 47.406453], [8.58888, 47.406379], [8.591061, 47.405777], [8.592287, 47.405435], [8.594996, 47.404704], [8.595237, 47.404625]]], "type": "MultiLineString"}, "id": "1167", "properties": {}, "type": "Feature"}, {"bbox": [8.477397, 47.405141, 8.478596, 47.405245], "geometry": {"coordinates": [[[8.478596, 47.405141], [8.478197, 47.405178], [8.477797, 47.405213], [8.477397, 47.405245]]], "type": "MultiLineString"}, "id": "1179", "properties": {}, "type": "Feature"}, {"bbox": [8.535306, 47.372695, 8.535535, 47.373193], "geometry": {"coordinates": [[[8.535535, 47.372695], [8.535525, 47.372711], [8.535491, 47.37278], [8.535416, 47.373144], [8.535306, 47.373193]]], "type": "MultiLineString"}, "id": "1189", "properties": {}, "type": "Feature"}, {"bbox": [8.521347, 47.399062, 8.522221, 47.399364], "geometry": {"coordinates": [[[8.522221, 47.399062], [8.521674, 47.399258], [8.521565, 47.399294], [8.521456, 47.399329], [8.521347, 47.399364]]], "type": "MultiLineString"}, "id": "1202", "properties": {}, "type": "Feature"}, {"bbox": [8.53621, 47.391332, 8.538843, 47.391346], "geometry": {"coordinates": [[[8.538843, 47.391346], [8.538513, 47.391332], [8.536497, 47.391344], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "1203", "properties": {}, "type": "Feature"}, {"bbox": [8.489223, 47.378688, 8.490312, 47.379847], "geometry": {"coordinates": [[[8.490312, 47.379847], [8.490175, 47.37971], [8.489223, 47.378688]]], "type": "MultiLineString"}, "id": "1204", "properties": {}, "type": "Feature"}, {"bbox": [8.518941, 47.414144, 8.520418, 47.414808], "geometry": {"coordinates": [[[8.520418, 47.414576], [8.520225, 47.41462], [8.520028, 47.414659], [8.51983, 47.414693], [8.519652, 47.414722], [8.519477, 47.41476], [8.519307, 47.414808], [8.518941, 47.414144]]], "type": "MultiLineString"}, "id": "1210", "properties": {}, "type": "Feature"}, {"bbox": [8.492907, 47.38156, 8.494824, 47.382514], "geometry": {"coordinates": [[[8.494824, 47.38156], [8.493096, 47.382373], [8.49303, 47.382418], [8.492967, 47.382465], [8.492907, 47.382514]]], "type": "MultiLineString"}, "id": "1213", "properties": {}, "type": "Feature"}, {"bbox": [8.534261, 47.372272, 8.534472, 47.372597], "geometry": {"coordinates": [[[8.534261, 47.372272], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "1221", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.368234, 8.529238, 47.368682], "geometry": {"coordinates": [[[8.529238, 47.368234], [8.528834, 47.368538], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "1231", "properties": {}, "type": "Feature"}, {"bbox": [8.521712, 47.360019, 8.522947, 47.364966], "geometry": {"coordinates": [[[8.521712, 47.364966], [8.522065, 47.363752], [8.52224, 47.363149], [8.522294, 47.362963], [8.52232, 47.362874], [8.522512, 47.36192], [8.522624, 47.361363], [8.522809, 47.360515], [8.522947, 47.360019]]], "type": "MultiLineString"}, "id": "1250", "properties": {}, "type": "Feature"}, {"bbox": [8.533945, 47.369342, 8.534785, 47.369467], "geometry": {"coordinates": [[[8.534785, 47.369467], [8.533945, 47.369342]]], "type": "MultiLineString"}, "id": "1254", "properties": {}, "type": "Feature"}, {"bbox": [8.521554, 47.365372, 8.521593, 47.365673], "geometry": {"coordinates": [[[8.521554, 47.365673], [8.521572, 47.365573], [8.521585, 47.365473], [8.521593, 47.365372]]], "type": "MultiLineString"}, "id": "1255", "properties": {}, "type": "Feature"}, {"bbox": [8.531311, 47.377659, 8.532142, 47.378233], "geometry": {"coordinates": [[[8.531311, 47.377659], [8.532142, 47.378233]]], "type": "MultiLineString"}, "id": "1256", "properties": {}, "type": "Feature"}, {"bbox": [8.549422, 47.356978, 8.550783, 47.357352], "geometry": {"coordinates": [[[8.549422, 47.356978], [8.550658, 47.35732], [8.550783, 47.357352]]], "type": "MultiLineString"}, "id": "1272", "properties": {}, "type": "Feature"}, {"bbox": [8.537117, 47.374685, 8.537743, 47.375541], "geometry": {"coordinates": [[[8.537743, 47.374685], [8.537679, 47.37482], [8.537164, 47.37548], [8.537117, 47.375541]]], "type": "MultiLineString"}, "id": "1273", "properties": {}, "type": "Feature"}, {"bbox": [8.53121, 47.409615, 8.53747, 47.41075], "geometry": {"coordinates": [[[8.53747, 47.409615], [8.536833, 47.40973], [8.536203, 47.409845], [8.535625, 47.409949], [8.535588, 47.409956], [8.535393, 47.409991], [8.533356, 47.410361], [8.532533, 47.410511], [8.532393, 47.410536], [8.53121, 47.41075]]], "type": "MultiLineString"}, "id": "1274", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.378523, 8.542518, 47.378726], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541597, 47.378544], [8.541774, 47.378575], [8.541947, 47.378617], [8.542518, 47.378726]]], "type": "MultiLineString"}, "id": "1280", "properties": {}, "type": "Feature"}, {"bbox": [8.53031, 47.371074, 8.530435, 47.371262], "geometry": {"coordinates": [[[8.530435, 47.371262], [8.53031, 47.371074]]], "type": "MultiLineString"}, "id": "1282", "properties": {}, "type": "Feature"}, {"bbox": [8.573596, 47.378534, 8.57521, 47.379694], "geometry": {"coordinates": [[[8.573596, 47.379694], [8.574039, 47.379303], [8.574391, 47.37899], [8.574646, 47.378824], [8.574919, 47.378671], [8.57521, 47.378534]]], "type": "MultiLineString"}, "id": "1288", "properties": {}, "type": "Feature"}, {"bbox": [8.537238, 47.374664, 8.537319, 47.374773], "geometry": {"coordinates": [[[8.537319, 47.374664], [8.537238, 47.374773]]], "type": "MultiLineString"}, "id": "1307", "properties": {}, "type": "Feature"}, {"bbox": [8.547464, 47.398832, 8.549147, 47.400012], "geometry": {"coordinates": [[[8.547464, 47.398832], [8.54761, 47.398964], [8.547762, 47.399093], [8.547917, 47.39922], [8.547998, 47.399284], [8.548079, 47.399347], [8.548161, 47.399409], [8.548651, 47.399732], [8.548818, 47.399825], [8.548983, 47.399918], [8.549147, 47.400012]]], "type": "MultiLineString"}, "id": "1308", "properties": {}, "type": "Feature"}, {"bbox": [8.554151, 47.364725, 8.554431, 47.365258], "geometry": {"coordinates": [[[8.554151, 47.365258], [8.554431, 47.364725]]], "type": "MultiLineString"}, "id": "1322", "properties": {}, "type": "Feature"}, {"bbox": [8.521385, 47.365088, 8.521593, 47.365372], "geometry": {"coordinates": [[[8.521593, 47.365372], [8.521385, 47.365088]]], "type": "MultiLineString"}, "id": "1350", "properties": {}, "type": "Feature"}, {"bbox": [8.543093, 47.377632, 8.543712, 47.377776], "geometry": {"coordinates": [[[8.543093, 47.377632], [8.543712, 47.377776]]], "type": "MultiLineString"}, "id": "1354", "properties": {}, "type": "Feature"}, {"bbox": [8.509807, 47.369894, 8.510279, 47.370148], "geometry": {"coordinates": [[[8.510279, 47.369894], [8.509807, 47.370148]]], "type": "MultiLineString"}, "id": "1361", "properties": {}, "type": "Feature"}, {"bbox": [8.544033, 47.387586, 8.544368, 47.387779], "geometry": {"coordinates": [[[8.544033, 47.387779], [8.544368, 47.387586]]], "type": "MultiLineString"}, "id": "1364", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.369694, 8.520315, 47.37067], "geometry": {"coordinates": [[[8.520315, 47.369694], [8.519999, 47.369953], [8.519814, 47.37015], [8.519352, 47.37067]]], "type": "MultiLineString"}, "id": "1378", "properties": {}, "type": "Feature"}, {"bbox": [8.537852, 47.377374, 8.538734, 47.377777], "geometry": {"coordinates": [[[8.538733, 47.377374], [8.538734, 47.377393], [8.538733, 47.377412], [8.53873, 47.37743], [8.538724, 47.377448], [8.538715, 47.377466], [8.538705, 47.377483], [8.538693, 47.3775], [8.538678, 47.377516], [8.538655, 47.377535], [8.538629, 47.377553], [8.538601, 47.377569], [8.538571, 47.377583], [8.538539, 47.377596], [8.538506, 47.377606], [8.538472, 47.377615], [8.537852, 47.377777]]], "type": "MultiLineString"}, "id": "1384", "properties": {}, "type": "Feature"}, {"bbox": [8.548039, 47.360141, 8.548657, 47.360265], "geometry": {"coordinates": [[[8.548039, 47.360141], [8.548657, 47.360265]]], "type": "MultiLineString"}, "id": "1391", "properties": {}, "type": "Feature"}, {"bbox": [8.531558, 47.366545, 8.531632, 47.366592], "geometry": {"coordinates": [[[8.531632, 47.366592], [8.531558, 47.366545]]], "type": "MultiLineString"}, "id": "1414", "properties": {}, "type": "Feature"}, {"bbox": [8.488682, 47.387629, 8.490808, 47.388268], "geometry": {"coordinates": [[[8.490808, 47.387629], [8.490126, 47.38793], [8.489853, 47.388034], [8.489664, 47.388072], [8.488682, 47.388268]]], "type": "MultiLineString"}, "id": "1419", "properties": {}, "type": "Feature"}, {"bbox": [8.520728, 47.38002, 8.520966, 47.380435], "geometry": {"coordinates": [[[8.520728, 47.38002], [8.52081, 47.380129], [8.520831, 47.380158], [8.520851, 47.380187], [8.52087, 47.380216], [8.520966, 47.380435]]], "type": "MultiLineString"}, "id": "1426", "properties": {}, "type": "Feature"}, {"bbox": [8.537534, 47.39835, 8.537833, 47.398469], "geometry": {"coordinates": [[[8.537534, 47.39835], [8.537537, 47.398416], [8.537833, 47.398469]]], "type": "MultiLineString"}, "id": "1441", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.36834, 8.529406, 47.368682], "geometry": {"coordinates": [[[8.529406, 47.36834], [8.528949, 47.368653], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "1442", "properties": {}, "type": "Feature"}, {"bbox": [8.529983, 47.371262, 8.530435, 47.371584], "geometry": {"coordinates": [[[8.530435, 47.371262], [8.530373, 47.371289], [8.530314, 47.37132], [8.53026, 47.371354], [8.530209, 47.371391], [8.529983, 47.371584]]], "type": "MultiLineString"}, "id": "1479", "properties": {}, "type": "Feature"}, {"bbox": [8.519291, 47.356029, 8.522163, 47.356952], "geometry": {"coordinates": [[[8.522163, 47.356701], [8.520833, 47.356319], [8.519824, 47.356029], [8.519291, 47.356952]]], "type": "MultiLineString"}, "id": "1482", "properties": {}, "type": "Feature"}, {"bbox": [8.506017, 47.359374, 8.50761, 47.361195], "geometry": {"coordinates": [[[8.50761, 47.359374], [8.506442, 47.36071], [8.506017, 47.361195]]], "type": "MultiLineString"}, "id": "1491", "properties": {}, "type": "Feature"}, {"bbox": [8.547718, 47.412868, 8.548032, 47.41391], "geometry": {"coordinates": [[[8.548032, 47.412868], [8.54799, 47.413047], [8.547854, 47.413471], [8.547718, 47.41391]]], "type": "MultiLineString"}, "id": "1505", "properties": {}, "type": "Feature"}, {"bbox": [8.547667, 47.360595, 8.548316, 47.360745], "geometry": {"coordinates": [[[8.547667, 47.360595], [8.547789, 47.360627], [8.548316, 47.360745]]], "type": "MultiLineString"}, "id": "1510", "properties": {}, "type": "Feature"}, {"bbox": [8.534865, 47.376071, 8.535733, 47.376524], "geometry": {"coordinates": [[[8.535733, 47.376071], [8.535606, 47.376133], [8.535032, 47.376415], [8.534865, 47.376524]]], "type": "MultiLineString"}, "id": "1514", "properties": {}, "type": "Feature"}, {"bbox": [8.483542, 47.412128, 8.48401, 47.414238], "geometry": {"coordinates": [[[8.48401, 47.412128], [8.483918, 47.412248], [8.483841, 47.412373], [8.483779, 47.412501], [8.483741, 47.412611], [8.483715, 47.412722], [8.483702, 47.412834], [8.483684, 47.413028], [8.483542, 47.414238]]], "type": "MultiLineString"}, "id": "1518", "properties": {}, "type": "Feature"}, {"bbox": [8.530435, 47.370994, 8.531326, 47.371262], "geometry": {"coordinates": [[[8.531326, 47.370994], [8.530598, 47.371203], [8.530435, 47.371262]]], "type": "MultiLineString"}, "id": "1521", "properties": {}, "type": "Feature"}, {"bbox": [8.518248, 47.414808, 8.519307, 47.415031], "geometry": {"coordinates": [[[8.519307, 47.414808], [8.51875, 47.414908], [8.518248, 47.415031]]], "type": "MultiLineString"}, "id": "1523", "properties": {}, "type": "Feature"}, {"bbox": [8.512123, 47.389632, 8.513625, 47.391729], "geometry": {"coordinates": [[[8.513625, 47.391729], [8.513488, 47.391523], [8.51306, 47.39096], [8.5123, 47.38986], [8.512123, 47.389632]]], "type": "MultiLineString"}, "id": "1526", "properties": {}, "type": "Feature"}, {"bbox": [8.571293, 47.358344, 8.571708, 47.358835], "geometry": {"coordinates": [[[8.571293, 47.358344], [8.571693, 47.358821], [8.571708, 47.358835]]], "type": "MultiLineString"}, "id": "1529", "properties": {}, "type": "Feature"}, {"bbox": [8.531609, 47.398237, 8.532316, 47.398373], "geometry": {"coordinates": [[[8.532316, 47.398373], [8.531609, 47.398237]]], "type": "MultiLineString"}, "id": "1535", "properties": {}, "type": "Feature"}, {"bbox": [8.547307, 47.375364, 8.549117, 47.375748], "geometry": {"coordinates": [[[8.547307, 47.375364], [8.549117, 47.375748]]], "type": "MultiLineString"}, "id": "1540", "properties": {}, "type": "Feature"}, {"bbox": [8.559058, 47.414559, 8.559399, 47.415618], "geometry": {"coordinates": [[[8.559399, 47.414559], [8.559351, 47.414717], [8.559058, 47.415618]]], "type": "MultiLineString"}, "id": "1550", "properties": {}, "type": "Feature"}, {"bbox": [8.541897, 47.376852, 8.54327, 47.376963], "geometry": {"coordinates": [[[8.54327, 47.376852], [8.541897, 47.376963]]], "type": "MultiLineString"}, "id": "1551", "properties": {}, "type": "Feature"}, {"bbox": [8.528422, 47.386999, 8.529542, 47.387699], "geometry": {"coordinates": [[[8.529542, 47.387699], [8.528552, 47.387081], [8.528422, 47.386999]]], "type": "MultiLineString"}, "id": "1582", "properties": {}, "type": "Feature"}, {"bbox": [8.539393, 47.367239, 8.540224, 47.369604], "geometry": {"coordinates": [[[8.540224, 47.367239], [8.539962, 47.367905], [8.53978, 47.368392], [8.539615, 47.368828], [8.539477, 47.369206], [8.539393, 47.369604]]], "type": "MultiLineString"}, "id": "1583", "properties": {}, "type": "Feature"}, {"bbox": [8.489673, 47.39074, 8.489729, 47.39106], "geometry": {"coordinates": [[[8.489729, 47.39106], [8.489673, 47.39074]]], "type": "MultiLineString"}, "id": "1605", "properties": {}, "type": "Feature"}, {"bbox": [8.547431, 47.372101, 8.548691, 47.373079], "geometry": {"coordinates": [[[8.548691, 47.372101], [8.548568, 47.372198], [8.548273, 47.37241], [8.547625, 47.372879], [8.547431, 47.373079]]], "type": "MultiLineString"}, "id": "1611", "properties": {}, "type": "Feature"}, {"bbox": [8.524639, 47.41075, 8.531209, 47.411953], "geometry": {"coordinates": [[[8.531209, 47.41075], [8.530595, 47.410862], [8.529897, 47.410987], [8.528049, 47.411321], [8.527213, 47.411475], [8.525698, 47.411752], [8.524639, 47.411953]]], "type": "MultiLineString"}, "id": "1625", "properties": {}, "type": "Feature"}, {"bbox": [8.541857, 47.374355, 8.543025, 47.374414], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.541928, 47.374411], [8.541857, 47.374414]]], "type": "MultiLineString"}, "id": "1634", "properties": {}, "type": "Feature"}, {"bbox": [8.548331, 47.38367, 8.549042, 47.384421], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.548927, 47.38375], [8.548891, 47.383781], [8.548859, 47.383813], [8.548831, 47.383847], [8.548808, 47.383883], [8.548581, 47.384226], [8.548558, 47.38426], [8.548529, 47.384293], [8.548497, 47.384323], [8.548461, 47.384351], [8.548421, 47.384377], [8.548377, 47.384401], [8.548331, 47.384421]]], "type": "MultiLineString"}, "id": "1640", "properties": {}, "type": "Feature"}, {"bbox": [8.5129, 47.364999, 8.514081, 47.366366], "geometry": {"coordinates": [[[8.514081, 47.366366], [8.513987, 47.366254], [8.513448, 47.365523], [8.51339, 47.365433], [8.51332, 47.365347], [8.513238, 47.365266], [8.513146, 47.36519], [8.5129, 47.364999]]], "type": "MultiLineString"}, "id": "1649", "properties": {}, "type": "Feature"}, {"bbox": [8.51578, 47.388747, 8.516266, 47.389447], "geometry": {"coordinates": [[[8.51578, 47.388747], [8.515909, 47.388965], [8.516266, 47.389447]]], "type": "MultiLineString"}, "id": "1650", "properties": {}, "type": "Feature"}, {"bbox": [8.536415, 47.369488, 8.538578, 47.371068], "geometry": {"coordinates": [[[8.538578, 47.369488], [8.538396, 47.369619], [8.53825, 47.369724], [8.538206, 47.369758], [8.537855, 47.370011], [8.537679, 47.370143], [8.537547, 47.370242], [8.537049, 47.370619], [8.536415, 47.371068]]], "type": "MultiLineString"}, "id": "1659", "properties": {}, "type": "Feature"}, {"bbox": [8.527032, 47.396102, 8.533568, 47.397787], "geometry": {"coordinates": [[[8.527032, 47.396102], [8.527118, 47.396137], [8.527209, 47.396166], [8.527303, 47.396189], [8.527401, 47.396207], [8.52783, 47.396293], [8.528254, 47.396393], [8.528669, 47.396507], [8.529943, 47.396871], [8.530302, 47.396972], [8.530627, 47.397022], [8.530947, 47.397086], [8.53126, 47.397164], [8.532475, 47.39749], [8.532591, 47.397542], [8.532746, 47.397597], [8.533225, 47.39771], [8.533568, 47.397787]]], "type": "MultiLineString"}, "id": "1662", "properties": {}, "type": "Feature"}, {"bbox": [8.549392, 47.406391, 8.549619, 47.407283], "geometry": {"coordinates": [[[8.549533, 47.406391], [8.549485, 47.406462], [8.549447, 47.406536], [8.549418, 47.406612], [8.5494, 47.406689], [8.549392, 47.406767], [8.549394, 47.406845], [8.549407, 47.406923], [8.54943, 47.407], [8.549463, 47.407075], [8.549506, 47.407147], [8.549558, 47.407217], [8.549619, 47.407283]]], "type": "MultiLineString"}, "id": "1676", "properties": {}, "type": "Feature"}, {"bbox": [8.560711, 47.414799, 8.561068, 47.415848], "geometry": {"coordinates": [[[8.561068, 47.414799], [8.561015, 47.414963], [8.560711, 47.415848]]], "type": "MultiLineString"}, "id": "1677", "properties": {}, "type": "Feature"}, {"bbox": [8.502188, 47.393789, 8.503334, 47.393853], "geometry": {"coordinates": [[[8.503334, 47.393853], [8.502188, 47.393789]]], "type": "MultiLineString"}, "id": "1681", "properties": {}, "type": "Feature"}, {"bbox": [8.521836, 47.39022, 8.522071, 47.390651], "geometry": {"coordinates": [[[8.521836, 47.39022], [8.521887, 47.39029], [8.52199, 47.390468], [8.522071, 47.390651]]], "type": "MultiLineString"}, "id": "1692", "properties": {}, "type": "Feature"}, {"bbox": [8.539942, 47.374488, 8.539949, 47.374577], "geometry": {"coordinates": [[[8.539942, 47.374488], [8.539949, 47.374577]]], "type": "MultiLineString"}, "id": "1699", "properties": {}, "type": "Feature"}, {"bbox": [8.48401, 47.403887, 8.496491, 47.412128], "geometry": {"coordinates": [[[8.496491, 47.403887], [8.49642, 47.403917], [8.496347, 47.403944], [8.496273, 47.40397], [8.496216, 47.403986], [8.495903, 47.404077], [8.495698, 47.404145], [8.495323, 47.404255], [8.495246, 47.404277], [8.49517, 47.4043], [8.495095, 47.404325], [8.49499, 47.404364], [8.494887, 47.404407], [8.494787, 47.404452], [8.494331, 47.404669], [8.494047, 47.404808], [8.493941, 47.40486], [8.492419, 47.405594], [8.491833, 47.405877], [8.491713, 47.405937], [8.491601, 47.406004], [8.491498, 47.406077], [8.491404, 47.406156], [8.490336, 47.407097], [8.490289, 47.407139], [8.489962, 47.407432], [8.489771, 47.407631], [8.489379, 47.408038], [8.48926, 47.408161], [8.489004, 47.408438], [8.488672, 47.408795], [8.488641, 47.408831], [8.488609, 47.408866], [8.488575, 47.408901], [8.488462, 47.409021], [8.488335, 47.409134], [8.488194, 47.409239], [8.488041, 47.409337], [8.487877, 47.409425], [8.486905, 47.409928], [8.486721, 47.410034], [8.486552, 47.41015], [8.486397, 47.410275], [8.48603, 47.41063], [8.485647, 47.411016], [8.485537, 47.411122], [8.485417, 47.411222], [8.485287, 47.411317], [8.484429, 47.41181], [8.484236, 47.41193], [8.484152, 47.411991], [8.484076, 47.412058], [8.48401, 47.412128]]], "type": "MultiLineString"}, "id": "1708", "properties": {}, "type": "Feature"}, {"bbox": [8.532964, 47.373056, 8.537189, 47.377184], "geometry": {"coordinates": [[[8.532964, 47.373056], [8.533341, 47.373788], [8.533383, 47.373854], [8.533432, 47.373919], [8.533487, 47.373981], [8.534366, 47.374884], [8.534971, 47.375506], [8.535122, 47.375638], [8.535371, 47.375802], [8.535733, 47.376071], [8.535836, 47.37608], [8.535937, 47.376096], [8.536036, 47.376116], [8.536079, 47.376127], [8.536121, 47.376139], [8.536161, 47.376155], [8.536198, 47.376172], [8.536233, 47.376192], [8.536266, 47.376214], [8.536295, 47.376238], [8.536321, 47.376264], [8.536344, 47.376291], [8.536363, 47.376319], [8.536533, 47.37662], [8.536903, 47.376932], [8.537189, 47.377184]]], "type": "MultiLineString"}, "id": "1714", "properties": {}, "type": "Feature"}, {"bbox": [8.529565, 47.326865, 8.529592, 47.3281], "geometry": {"coordinates": [[[8.529592, 47.3281], [8.529577, 47.327688], [8.529568, 47.327277], [8.529565, 47.326865]]], "type": "MultiLineString"}, "id": "1725", "properties": {}, "type": "Feature"}, {"bbox": [8.54567, 47.412924, 8.546669, 47.41725], "geometry": {"coordinates": [[[8.546223, 47.412924], [8.546257, 47.413143], [8.546515, 47.413655], [8.546669, 47.41381], [8.546664, 47.414943], [8.546663, 47.414972], [8.54666, 47.415], [8.546655, 47.415028], [8.546646, 47.415063], [8.546633, 47.415097], [8.546617, 47.41513], [8.54617, 47.41612], [8.54608, 47.416323], [8.545838, 47.41686], [8.54567, 47.41725]]], "type": "MultiLineString"}, "id": "1757", "properties": {}, "type": "Feature"}, {"bbox": [8.554988, 47.369212, 8.55722, 47.369319], "geometry": {"coordinates": [[[8.554988, 47.369292], [8.555122, 47.369276], [8.555257, 47.369262], [8.555391, 47.369249], [8.555615, 47.369224], [8.555841, 47.369212], [8.556068, 47.369212], [8.556093, 47.369213], [8.556118, 47.369215], [8.556144, 47.369216], [8.55627, 47.369227], [8.556395, 47.369241], [8.55652, 47.369259], [8.55677, 47.369299], [8.556881, 47.369311], [8.556994, 47.369318], [8.557107, 47.369319], [8.55722, 47.369314]]], "type": "MultiLineString"}, "id": "1761", "properties": {}, "type": "Feature"}, {"bbox": [8.522221, 47.39794, 8.528566, 47.399062], "geometry": {"coordinates": [[[8.528566, 47.39794], [8.528236, 47.398033], [8.526384, 47.398572], [8.525993, 47.39867], [8.525591, 47.398745], [8.525181, 47.398794], [8.524766, 47.398818], [8.524349, 47.398817], [8.523613, 47.398793], [8.523442, 47.398792], [8.523271, 47.398802], [8.523101, 47.39882], [8.522935, 47.398849], [8.522772, 47.398886], [8.522673, 47.398913], [8.522574, 47.398942], [8.522477, 47.398973], [8.522221, 47.399062]]], "type": "MultiLineString"}, "id": "1812", "properties": {}, "type": "Feature"}, {"bbox": [8.53441, 47.382016, 8.541798, 47.38674], "geometry": {"coordinates": [[[8.541798, 47.382016], [8.541732, 47.382029], [8.541669, 47.382046], [8.541609, 47.382067], [8.541551, 47.382091], [8.541496, 47.382119], [8.541445, 47.38215], [8.541037, 47.382427], [8.540972, 47.382473], [8.540909, 47.38252], [8.540847, 47.382568], [8.54074, 47.382676], [8.540608, 47.382827], [8.540544, 47.382895], [8.540471, 47.382959], [8.540391, 47.383019], [8.540303, 47.383074], [8.540261, 47.383098], [8.540216, 47.38312], [8.540171, 47.383142], [8.539927, 47.383262], [8.53973, 47.383358], [8.539542, 47.383463], [8.539364, 47.383575], [8.539348, 47.38358], [8.539331, 47.383584], [8.539314, 47.383587], [8.539296, 47.383589], [8.539279, 47.383591], [8.539261, 47.383591], [8.539243, 47.38359], [8.539169, 47.38365], [8.539095, 47.383711], [8.539022, 47.383773], [8.538797, 47.384005], [8.538685, 47.384101], [8.538565, 47.384192], [8.538439, 47.384278], [8.537707, 47.384715], [8.537528, 47.384826], [8.537337, 47.384927], [8.537133, 47.385017], [8.53692, 47.385096], [8.536904, 47.385101], [8.536889, 47.385106], [8.536874, 47.385113], [8.53686, 47.385121], [8.536848, 47.385129], [8.536836, 47.385138], [8.536826, 47.385148], [8.536816, 47.385158], [8.536808, 47.385169], [8.536802, 47.38518], [8.536797, 47.385191], [8.536793, 47.385203], [8.536791, 47.385215], [8.536663, 47.385285], [8.536543, 47.385362], [8.536431, 47.385443], [8.536102, 47.385652], [8.535498, 47.386023], [8.535288, 47.386166], [8.535086, 47.386304], [8.534633, 47.386596], [8.53441, 47.38674]]], "type": "MultiLineString"}, "id": "1818", "properties": {}, "type": "Feature"}, {"bbox": [8.478596, 47.40215, 8.495895, 47.405207], "geometry": {"coordinates": [[[8.495895, 47.402158], [8.495887, 47.402158], [8.495386, 47.40215], [8.495164, 47.402153], [8.494945, 47.40217], [8.494728, 47.402201], [8.493829, 47.402358], [8.493025, 47.4025], [8.492793, 47.402535], [8.492562, 47.402572], [8.492332, 47.402611], [8.49188, 47.402697], [8.491433, 47.402794], [8.490992, 47.402902], [8.490427, 47.403049], [8.49031, 47.403079], [8.490194, 47.403108], [8.490077, 47.403138], [8.489989, 47.403158], [8.489901, 47.403177], [8.489812, 47.403194], [8.489716, 47.403211], [8.48962, 47.403228], [8.489523, 47.403244], [8.489403, 47.403262], [8.489282, 47.403278], [8.489161, 47.403294], [8.488293, 47.403403], [8.487871, 47.403458], [8.487515, 47.403507], [8.487334, 47.403533], [8.487156, 47.403564], [8.486979, 47.403599], [8.486284, 47.403769], [8.486133, 47.403805], [8.485984, 47.403843], [8.485836, 47.403885], [8.485669, 47.403934], [8.485506, 47.40399], [8.485349, 47.404053], [8.484292, 47.404519], [8.483833, 47.404734], [8.483788, 47.404753], [8.483742, 47.40477], [8.483696, 47.404787], [8.483622, 47.404813], [8.483547, 47.404837], [8.483471, 47.404859], [8.483297, 47.404904], [8.483118, 47.404941], [8.482936, 47.40497], [8.48188, 47.405132], [8.481724, 47.405153], [8.481401, 47.405189], [8.481074, 47.405207], [8.480746, 47.405206], [8.480063, 47.405153], [8.479811, 47.405131], [8.479406, 47.405112], [8.479, 47.405116], [8.478596, 47.405141]]], "type": "MultiLineString"}, "id": "1820", "properties": {}, "type": "Feature"}, {"bbox": [8.546961, 47.364771, 8.547425, 47.36542], "geometry": {"coordinates": [[[8.547425, 47.364771], [8.547384, 47.364835], [8.546964, 47.365414], [8.546961, 47.36542]]], "type": "MultiLineString"}, "id": "1822", "properties": {}, "type": "Feature"}, {"bbox": [8.483211, 47.375863, 8.48666, 47.387725], "geometry": {"coordinates": [[[8.48666, 47.387725], [8.486627, 47.387607], [8.486584, 47.387491], [8.486533, 47.387377], [8.486435, 47.38721], [8.486328, 47.387026], [8.486281, 47.386947], [8.486004, 47.386531], [8.485659, 47.386012], [8.485582, 47.385896], [8.485099, 47.385172], [8.484983, 47.385041], [8.484522, 47.384348], [8.484513, 47.384334], [8.484487, 47.384287], [8.484417, 47.384151], [8.484356, 47.384012], [8.484305, 47.383871], [8.484242, 47.383695], [8.484196, 47.383581], [8.484149, 47.383467], [8.484101, 47.383352], [8.484019, 47.38307], [8.483961, 47.382902], [8.483816, 47.382495], [8.483702, 47.382172], [8.483681, 47.382104], [8.483663, 47.382035], [8.483649, 47.381966], [8.483646, 47.381949], [8.483643, 47.381932], [8.48364, 47.381915], [8.483509, 47.380885], [8.483428, 47.38026], [8.483323, 47.379404], [8.483222, 47.378583], [8.483211, 47.378441], [8.483211, 47.378298], [8.483221, 47.378155], [8.483236, 47.378042], [8.483257, 47.37793], [8.483284, 47.377818], [8.483498, 47.377128], [8.483532, 47.377044], [8.48357, 47.37696], [8.48361, 47.376877], [8.483621, 47.376856], [8.483632, 47.376835], [8.483643, 47.376815], [8.483937, 47.376349], [8.484161, 47.375994], [8.484236, 47.375864], [8.484237, 47.375863]]], "type": "MultiLineString"}, "id": "1828", "properties": {}, "type": "Feature"}, {"bbox": [8.488244, 47.410488, 8.48827, 47.41074], "geometry": {"coordinates": [[[8.488266, 47.41074], [8.488269, 47.410692], [8.48827, 47.410633], [8.488265, 47.410573], [8.488253, 47.410515], [8.488244, 47.410488]]], "type": "MultiLineString"}, "id": "1835", "properties": {}, "type": "Feature"}, {"bbox": [8.540037, 47.376852, 8.543363, 47.383142], "geometry": {"coordinates": [[[8.54327, 47.376852], [8.543333, 47.376981], [8.543344, 47.376998], [8.543352, 47.377016], [8.543358, 47.377034], [8.543362, 47.377053], [8.543363, 47.377071], [8.543361, 47.37709], [8.543358, 47.377108], [8.543352, 47.377127], [8.543343, 47.377144], [8.543093, 47.377632], [8.542745, 47.378315], [8.542603, 47.378571], [8.542518, 47.378726], [8.542145, 47.379568], [8.542119, 47.379644], [8.542085, 47.37974], [8.541929, 47.380015], [8.54172, 47.380303], [8.540896, 47.381443], [8.540425, 47.382094], [8.540217, 47.382377], [8.540064, 47.382612], [8.540053, 47.382634], [8.540045, 47.382657], [8.540039, 47.38268], [8.540037, 47.382703], [8.540037, 47.382726], [8.540041, 47.382749], [8.540047, 47.382772], [8.540171, 47.383142]]], "type": "MultiLineString"}, "id": "1844", "properties": {}, "type": "Feature"}, {"bbox": [8.517545, 47.339174, 8.519079, 47.339424], "geometry": {"coordinates": [[[8.519079, 47.339174], [8.518989, 47.339181], [8.518901, 47.339194], [8.518814, 47.339211], [8.518731, 47.339234], [8.51865, 47.339263], [8.518574, 47.339296], [8.518509, 47.339326], [8.51844, 47.339352], [8.518368, 47.339374], [8.518294, 47.339392], [8.518217, 47.339404], [8.518139, 47.339412], [8.51806, 47.339416], [8.517545, 47.339424]]], "type": "MultiLineString"}, "id": "1845", "properties": {}, "type": "Feature"}, {"bbox": [8.494015, 47.397592, 8.495169, 47.397884], "geometry": {"coordinates": [[[8.494015, 47.397884], [8.494959, 47.397723], [8.494987, 47.397716], [8.495014, 47.397708], [8.495039, 47.397698], [8.495064, 47.397687], [8.495086, 47.397674], [8.495107, 47.39766], [8.495126, 47.397645], [8.495142, 47.397628], [8.495157, 47.397611], [8.495169, 47.397592]]], "type": "MultiLineString"}, "id": "1867", "properties": {}, "type": "Feature"}, {"bbox": [8.497004, 47.362549, 8.502733, 47.364752], "geometry": {"coordinates": [[[8.502733, 47.364752], [8.502598, 47.364737], [8.502466, 47.364714], [8.502338, 47.364683], [8.502214, 47.364644], [8.502096, 47.364597], [8.501985, 47.364544], [8.501203, 47.364126], [8.500902, 47.363966], [8.500377, 47.363676], [8.499859, 47.36338], [8.49935, 47.363078], [8.499148, 47.362957], [8.498718, 47.362699], [8.498626, 47.362644], [8.498579, 47.362621], [8.498529, 47.362601], [8.498477, 47.362585], [8.498423, 47.362571], [8.498367, 47.36256], [8.49831, 47.362553], [8.498253, 47.362549], [8.498195, 47.362549], [8.498137, 47.362552], [8.49808, 47.362558], [8.497926, 47.362584], [8.49777, 47.362603], [8.497613, 47.362614], [8.497004, 47.362641]]], "type": "MultiLineString"}, "id": "1869", "properties": {}, "type": "Feature"}, {"bbox": [8.52826, 47.405116, 8.528366, 47.405261], "geometry": {"coordinates": [[[8.528278, 47.405116], [8.52826, 47.405123], [8.528366, 47.405261]]], "type": "MultiLineString"}, "id": "1879", "properties": {}, "type": "Feature"}, {"bbox": [8.531942, 47.384823, 8.534913, 47.386983], "geometry": {"coordinates": [[[8.531942, 47.384823], [8.533012, 47.385601], [8.533084, 47.385653], [8.534277, 47.386523], [8.53462, 47.386768], [8.534913, 47.386983]]], "type": "MultiLineString"}, "id": "1882", "properties": {}, "type": "Feature"}, {"bbox": [8.571536, 47.378353, 8.574039, 47.379303], "geometry": {"coordinates": [[[8.571536, 47.378353], [8.571962, 47.378478], [8.572441, 47.378652], [8.572559, 47.378685], [8.572677, 47.378718], [8.572795, 47.378751], [8.572868, 47.378767], [8.572938, 47.378789], [8.573005, 47.378814], [8.573069, 47.378844], [8.573127, 47.378878], [8.573143, 47.378885], [8.573159, 47.378892], [8.573458, 47.379042], [8.573808, 47.37921], [8.573923, 47.379256], [8.574039, 47.379303]]], "type": "MultiLineString"}, "id": "1884", "properties": {}, "type": "Feature"}, {"bbox": [8.548377, 47.366651, 8.550821, 47.368555], "geometry": {"coordinates": [[[8.548377, 47.36712], [8.549263, 47.366729], [8.549407, 47.366665], [8.54949, 47.366651], [8.54957, 47.36667], [8.550316, 47.36715], [8.550321, 47.367153], [8.550325, 47.367157], [8.550328, 47.36716], [8.550332, 47.367164], [8.550334, 47.367169], [8.550336, 47.367173], [8.550338, 47.367177], [8.550339, 47.367182], [8.55034, 47.367186], [8.550339, 47.367191], [8.550339, 47.367195], [8.550338, 47.3672], [8.550336, 47.367204], [8.550334, 47.367208], [8.550331, 47.367212], [8.550327, 47.367216], [8.550324, 47.36722], [8.549741, 47.367713], [8.549731, 47.367722], [8.549723, 47.367732], [8.549715, 47.367741], [8.549715, 47.367744], [8.549715, 47.367747], [8.549715, 47.367749], [8.549716, 47.367752], [8.549717, 47.367754], [8.549719, 47.367757], [8.54972, 47.367759], [8.549722, 47.367762], [8.549725, 47.367764], [8.549727, 47.367766], [8.550329, 47.3682], [8.550374, 47.368238], [8.550821, 47.368555]]], "type": "MultiLineString"}, "id": "1896", "properties": {}, "type": "Feature"}, {"bbox": [8.592061, 47.364113, 8.597855, 47.364725], "geometry": {"coordinates": [[[8.592061, 47.364113], [8.592261, 47.364175], [8.592333, 47.36419], [8.593712, 47.364376], [8.595497, 47.364616], [8.596004, 47.364679], [8.596515, 47.364715], [8.59703, 47.364725], [8.597543, 47.364707], [8.597855, 47.364699]]], "type": "MultiLineString"}, "id": "1904", "properties": {}, "type": "Feature"}, {"bbox": [8.540929, 47.395966, 8.545415, 47.396857], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.541543, 47.39674], [8.542069, 47.396633], [8.542944, 47.396454], [8.543185, 47.396407], [8.544309, 47.396189], [8.545143, 47.396026], [8.545192, 47.396015], [8.545415, 47.395966]]], "type": "MultiLineString"}, "id": "1905", "properties": {}, "type": "Feature"}, {"bbox": [8.531653, 47.373373, 8.536033, 47.377623], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531953, 47.373815], [8.53236, 47.374412], [8.532382, 47.374447], [8.532405, 47.374483], [8.532429, 47.374518], [8.532517, 47.374636], [8.532615, 47.374751], [8.532722, 47.374862], [8.533114, 47.375245], [8.533161, 47.375289], [8.533209, 47.375332], [8.533256, 47.375376], [8.53342, 47.375528], [8.533588, 47.375677], [8.533762, 47.375824], [8.534865, 47.376524], [8.536033, 47.377623]]], "type": "MultiLineString"}, "id": "1922", "properties": {}, "type": "Feature"}, {"bbox": [8.547133, 47.408232, 8.548505, 47.408498], "geometry": {"coordinates": [[[8.547133, 47.408232], [8.547453, 47.408461], [8.547473, 47.40847], [8.547494, 47.408478], [8.547515, 47.408484], [8.547538, 47.40849], [8.547561, 47.408494], [8.547585, 47.408496], [8.547609, 47.408498], [8.547633, 47.408498], [8.547657, 47.408496], [8.54768, 47.408493], [8.547703, 47.408489], [8.548505, 47.408315]]], "type": "MultiLineString"}, "id": "1934", "properties": {}, "type": "Feature"}, {"bbox": [8.536046, 47.330202, 8.536229, 47.330238], "geometry": {"coordinates": [[[8.536046, 47.330202], [8.536107, 47.330213], [8.536168, 47.330225], [8.536229, 47.330238]]], "type": "MultiLineString"}, "id": "1947", "properties": {}, "type": "Feature"}, {"bbox": [8.520388, 47.390931, 8.523072, 47.391306], "geometry": {"coordinates": [[[8.523072, 47.391306], [8.52291, 47.391196], [8.522733, 47.391098], [8.522542, 47.391012], [8.522465, 47.390986], [8.522385, 47.390965], [8.522303, 47.390948], [8.522218, 47.390937], [8.522132, 47.390932], [8.522046, 47.390931], [8.521961, 47.390936], [8.521876, 47.390947], [8.521793, 47.390962], [8.521216, 47.391086], [8.520754, 47.391211], [8.520388, 47.391298]]], "type": "MultiLineString"}, "id": "1987", "properties": {}, "type": "Feature"}, {"bbox": [8.547644, 47.359419, 8.547772, 47.361832], "geometry": {"coordinates": [[[8.547657, 47.361832], [8.547681, 47.361764], [8.547696, 47.361696], [8.547702, 47.361627], [8.5477, 47.361558], [8.547688, 47.361489], [8.547667, 47.360595], [8.547652, 47.360063], [8.547645, 47.359486], [8.547644, 47.35948], [8.547645, 47.359475], [8.547646, 47.35947], [8.547647, 47.359465], [8.547649, 47.359459], [8.547652, 47.359454], [8.547656, 47.35945], [8.54766, 47.359445], [8.547665, 47.359441], [8.54767, 47.359437], [8.547676, 47.359433], [8.547682, 47.35943], [8.547689, 47.359427], [8.547696, 47.359425], [8.547703, 47.359423], [8.54771, 47.359421], [8.547718, 47.35942], [8.547726, 47.359419], [8.547734, 47.359419], [8.547741, 47.359419], [8.547749, 47.35942], [8.547757, 47.359421], [8.547764, 47.359422], [8.547772, 47.359424]]], "type": "MultiLineString"}, "id": "1988", "properties": {}, "type": "Feature"}, {"bbox": [8.544523, 47.373009, 8.547257, 47.376764], "geometry": {"coordinates": [[[8.547257, 47.373009], [8.547102, 47.373215], [8.546466, 47.373975], [8.545887, 47.374669], [8.545776, 47.374818], [8.545671, 47.374969], [8.545571, 47.375122], [8.545564, 47.375132], [8.545558, 47.375142], [8.545551, 47.375152], [8.545192, 47.375716], [8.544523, 47.376764]]], "type": "MultiLineString"}, "id": "1992", "properties": {}, "type": "Feature"}, {"bbox": [8.515592, 47.382038, 8.519272, 47.387403], "geometry": {"coordinates": [[[8.516116, 47.382038], [8.516055, 47.382131], [8.515996, 47.382225], [8.515937, 47.382319], [8.51582, 47.382496], [8.515724, 47.382679], [8.51565, 47.382866], [8.515618, 47.382969], [8.515598, 47.383073], [8.515592, 47.383178], [8.515598, 47.383283], [8.515618, 47.383387], [8.51565, 47.38349], [8.51564, 47.383677], [8.517335, 47.385416], [8.518093, 47.386193], [8.519131, 47.387258], [8.519272, 47.387403]]], "type": "MultiLineString"}, "id": "2000", "properties": {}, "type": "Feature"}, {"bbox": [8.548219, 47.370115, 8.549289, 47.370893], "geometry": {"coordinates": [[[8.548892, 47.370115], [8.548719, 47.370254], [8.548564, 47.370402], [8.548428, 47.370559], [8.548313, 47.370723], [8.548219, 47.370893], [8.549289, 47.370542]]], "type": "MultiLineString"}, "id": "2010", "properties": {}, "type": "Feature"}, {"bbox": [8.523607, 47.369441, 8.525924, 47.371099], "geometry": {"coordinates": [[[8.525924, 47.369441], [8.525718, 47.369606], [8.525348, 47.369921], [8.524749, 47.370432], [8.524602, 47.370557], [8.524011, 47.371057], [8.523607, 47.371099]]], "type": "MultiLineString"}, "id": "2016", "properties": {}, "type": "Feature"}, {"bbox": [8.535359, 47.421566, 8.538394, 47.422954], "geometry": {"coordinates": [[[8.538394, 47.421566], [8.538052, 47.421755], [8.537714, 47.42195], [8.537107, 47.422258], [8.536476, 47.422544], [8.535823, 47.422807], [8.535359, 47.422954]]], "type": "MultiLineString"}, "id": "2029", "properties": {}, "type": "Feature"}, {"bbox": [8.51832, 47.371099, 8.523607, 47.38002], "geometry": {"coordinates": [[[8.523607, 47.371099], [8.523386, 47.371128], [8.523147, 47.371281], [8.522308, 47.371862], [8.522185, 47.371932], [8.522151, 47.371963], [8.522115, 47.371994], [8.52208, 47.372024], [8.521718, 47.372264], [8.521177, 47.372622], [8.520917, 47.372799], [8.52066, 47.372977], [8.520406, 47.373157], [8.519768, 47.373621], [8.519614, 47.373714], [8.519507, 47.373796], [8.519409, 47.373884], [8.519322, 47.373977], [8.519175, 47.374166], [8.519136, 47.374217], [8.519102, 47.37427], [8.519072, 47.374325], [8.518946, 47.374527], [8.518836, 47.374733], [8.518741, 47.374943], [8.518645, 47.375155], [8.518575, 47.375333], [8.518533, 47.375424], [8.518495, 47.375516], [8.518461, 47.375609], [8.518405, 47.375792], [8.518362, 47.375978], [8.518334, 47.376164], [8.518324, 47.376281], [8.51832, 47.376398], [8.518322, 47.376515], [8.518329, 47.376611], [8.518342, 47.376736], [8.518363, 47.37686], [8.518391, 47.376984], [8.518431, 47.377128], [8.51848, 47.377271], [8.51854, 47.377413], [8.518661, 47.377647], [8.518723, 47.37775], [8.51879, 47.377852], [8.518863, 47.377953], [8.518919, 47.378025], [8.518978, 47.378097], [8.51904, 47.378168], [8.51939, 47.37853], [8.519511, 47.378634], [8.520107, 47.379248], [8.52042, 47.379571], [8.520539, 47.379716], [8.520641, 47.379866], [8.520728, 47.38002]]], "type": "MultiLineString"}, "id": "2032", "properties": {}, "type": "Feature"}, {"bbox": [8.557086, 47.359519, 8.557776, 47.360591], "geometry": {"coordinates": [[[8.557086, 47.360591], [8.557333, 47.36001], [8.557367, 47.359943], [8.55741, 47.359878], [8.557461, 47.359816], [8.557519, 47.359758], [8.557776, 47.359519]]], "type": "MultiLineString"}, "id": "2062", "properties": {}, "type": "Feature"}, {"bbox": [8.566513, 47.364745, 8.566924, 47.364948], "geometry": {"coordinates": [[[8.566513, 47.364745], [8.566924, 47.364948]]], "type": "MultiLineString"}, "id": "2073", "properties": {}, "type": "Feature"}, {"bbox": [8.546181, 47.364315, 8.548879, 47.366131], "geometry": {"coordinates": [[[8.546181, 47.364315], [8.546841, 47.364479], [8.546934, 47.364506], [8.547025, 47.364537], [8.547111, 47.364572], [8.547197, 47.364614], [8.547277, 47.36466], [8.547351, 47.36471], [8.547425, 47.364771], [8.547549, 47.364873], [8.547781, 47.365097], [8.547904, 47.3652], [8.548024, 47.365302], [8.548218, 47.36549], [8.548879, 47.366131]]], "type": "MultiLineString"}, "id": "2084", "properties": {}, "type": "Feature"}, {"bbox": [8.55913, 47.364827, 8.566258, 47.376017], "geometry": {"coordinates": [[[8.55913, 47.376017], [8.559509, 47.375933], [8.559619, 47.375899], [8.559811, 47.375746], [8.560161, 47.375483], [8.560414, 47.375321], [8.561424, 47.373659], [8.561521, 47.373509], [8.561569, 47.373434], [8.561621, 47.373365], [8.561681, 47.373299], [8.56175, 47.373237], [8.561826, 47.373179], [8.56191, 47.373127], [8.561999, 47.373079], [8.562095, 47.373036], [8.562195, 47.373], [8.5623, 47.37297], [8.563055, 47.372807], [8.56313, 47.372784], [8.563201, 47.372757], [8.563269, 47.372726], [8.563297, 47.372706], [8.563323, 47.372684], [8.563345, 47.37266], [8.563365, 47.372636], [8.563381, 47.37261], [8.563394, 47.372584], [8.563403, 47.372557], [8.563409, 47.372529], [8.563412, 47.372501], [8.56341, 47.372473], [8.563405, 47.372445], [8.563397, 47.372418], [8.563383, 47.372388], [8.563365, 47.372359], [8.563343, 47.372331], [8.562791, 47.37179], [8.562762, 47.37176], [8.562737, 47.371728], [8.562716, 47.371696], [8.562699, 47.371662], [8.562687, 47.371627], [8.562651, 47.371451], [8.562628, 47.371338], [8.562588, 47.371132], [8.562584, 47.371081], [8.562587, 47.371029], [8.562596, 47.370979], [8.562611, 47.370929], [8.562633, 47.37088], [8.56266, 47.370832], [8.562694, 47.370786], [8.562733, 47.370742], [8.562777, 47.370701], [8.562826, 47.370662], [8.56288, 47.370626], [8.562938, 47.370593], [8.562999, 47.370564], [8.563065, 47.370539], [8.563076, 47.370535], [8.563087, 47.370531], [8.563098, 47.370527], [8.56417, 47.370064], [8.564195, 47.37001], [8.564214, 47.369956], [8.564225, 47.3699], [8.56423, 47.369844], [8.564227, 47.369788], [8.564209, 47.369506], [8.564204, 47.369417], [8.564199, 47.369353], [8.56416, 47.368737], [8.564156, 47.368587], [8.564162, 47.368437], [8.564179, 47.368288], [8.564185, 47.368214], [8.564197, 47.36814], [8.564216, 47.368067], [8.564248, 47.367973], [8.56429, 47.367881], [8.564342, 47.367791], [8.564593, 47.367384], [8.564948, 47.366827], [8.565014, 47.366722], [8.565084, 47.366618], [8.565627, 47.365765], [8.565996, 47.365185], [8.566258, 47.364827]]], "type": "MultiLineString"}, "id": "2102", "properties": {}, "type": "Feature"}, {"bbox": [8.547354, 47.403164, 8.548249, 47.403568], "geometry": {"coordinates": [[[8.547354, 47.403164], [8.54765, 47.403301], [8.547948, 47.403436], [8.548249, 47.403568], [8.548151, 47.40354], [8.54805, 47.403518], [8.547946, 47.403503], [8.547841, 47.403493], [8.547735, 47.40349]]], "type": "MultiLineString"}, "id": "2104", "properties": {}, "type": "Feature"}, {"bbox": [8.588936, 47.364987, 8.590219, 47.365071], "geometry": {"coordinates": [[[8.588936, 47.364989], [8.588975, 47.364987], [8.589033, 47.364987], [8.58909, 47.364991], [8.590034, 47.365071], [8.590219, 47.365068]]], "type": "MultiLineString"}, "id": "2106", "properties": {}, "type": "Feature"}, {"bbox": [8.522037, 47.390422, 8.523071, 47.391155], "geometry": {"coordinates": [[[8.522852, 47.391122], [8.52289, 47.391092], [8.522924, 47.391059], [8.522954, 47.391025], [8.522979, 47.390989], [8.523, 47.390952], [8.523016, 47.390914], [8.523028, 47.390875], [8.523034, 47.390835], [8.523036, 47.390795], [8.523068, 47.390571], [8.52307, 47.390563], [8.523071, 47.390555], [8.52307, 47.390546], [8.523069, 47.390538], [8.523066, 47.39053], [8.523063, 47.390522], [8.523058, 47.390514], [8.523052, 47.390506], [8.523046, 47.390499], [8.523038, 47.390492], [8.52303, 47.390486], [8.523021, 47.39048], [8.523011, 47.390475], [8.522954, 47.390457], [8.522895, 47.390443], [8.522834, 47.390432], [8.522772, 47.390425], [8.522709, 47.390422], [8.522646, 47.390422], [8.522583, 47.390426], [8.522521, 47.390434], [8.52246, 47.390445], [8.522401, 47.39046], [8.522344, 47.390478], [8.52229, 47.3905], [8.522239, 47.390525], [8.522191, 47.390553], [8.522147, 47.390583], [8.522106, 47.390616], [8.522071, 47.390651], [8.522057, 47.390678], [8.522047, 47.390705], [8.52204, 47.390733], [8.522037, 47.390761], [8.522037, 47.390789], [8.522041, 47.390817], [8.522048, 47.390845], [8.522071, 47.390883], [8.522099, 47.39092], [8.522131, 47.390955], [8.522168, 47.390988], [8.522208, 47.39102], [8.522252, 47.391048], [8.522299, 47.391075], [8.52235, 47.391098], [8.522403, 47.391119], [8.522445, 47.391131], [8.522489, 47.391141], [8.522534, 47.391149], [8.52258, 47.391153], [8.522627, 47.391155], [8.522673, 47.391154], [8.522719, 47.39115], [8.522765, 47.391143], [8.522809, 47.391134], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "2107", "properties": {}, "type": "Feature"}, {"bbox": [8.534282, 47.372597, 8.534472, 47.372713], "geometry": {"coordinates": [[[8.534472, 47.372597], [8.534282, 47.372713]]], "type": "MultiLineString"}, "id": "2111", "properties": {}, "type": "Feature"}, {"bbox": [8.522139, 47.390345, 8.525018, 47.390731], "geometry": {"coordinates": [[[8.522139, 47.390345], [8.522371, 47.390406], [8.522488, 47.390476], [8.522614, 47.390538], [8.522748, 47.390592], [8.522888, 47.390638], [8.523034, 47.390675], [8.523184, 47.390703], [8.523338, 47.390722], [8.523493, 47.390731], [8.523649, 47.39073], [8.524183, 47.390664], [8.524364, 47.390637], [8.524541, 47.390599], [8.524713, 47.390552], [8.525018, 47.39047]]], "type": "MultiLineString"}, "id": "2112", "properties": {}, "type": "Feature"}, {"bbox": [8.516998, 47.412037, 8.517738, 47.412638], "geometry": {"coordinates": [[[8.516998, 47.412638], [8.517059, 47.412539], [8.517194, 47.412318], [8.517201, 47.412309], [8.517245, 47.412263], [8.517274, 47.412237], [8.517318, 47.412214], [8.51753, 47.412115], [8.517585, 47.412092], [8.517738, 47.412037]]], "type": "MultiLineString"}, "id": "2129", "properties": {}, "type": "Feature"}, {"bbox": [8.54327, 47.376386, 8.544523, 47.377004], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544523, 47.376764], [8.544472, 47.376777], [8.544419, 47.376786], [8.544366, 47.376792], [8.544312, 47.376794], [8.544257, 47.376794], [8.544203, 47.37679], [8.54415, 47.376783], [8.544097, 47.376774], [8.544046, 47.376761], [8.543997, 47.376745], [8.54395, 47.376726], [8.543906, 47.376705], [8.543865, 47.376681], [8.543827, 47.376654], [8.543792, 47.376626], [8.543761, 47.376596], [8.543734, 47.376564], [8.543711, 47.37653], [8.543693, 47.376495], [8.543679, 47.37646], [8.54367, 47.376423], [8.543665, 47.376386], [8.543665, 47.376425], [8.54366, 47.376469], [8.54365, 47.376513], [8.543633, 47.376555], [8.543612, 47.376597], [8.543585, 47.376637], [8.543553, 47.376675], [8.543516, 47.376711], [8.543474, 47.376745], [8.543428, 47.376776], [8.543379, 47.376805], [8.543326, 47.37683], [8.54327, 47.376852], [8.543427, 47.376854], [8.543583, 47.376865], [8.543738, 47.376886], [8.543889, 47.376916], [8.544035, 47.376956], [8.544176, 47.377004]]], "type": "MultiLineString"}, "id": "2153", "properties": {}, "type": "Feature"}, {"bbox": [8.503906, 47.420011, 8.504336, 47.420636], "geometry": {"coordinates": [[[8.503906, 47.420011], [8.504336, 47.420636]]], "type": "MultiLineString"}, "id": "2163", "properties": {}, "type": "Feature"}, {"bbox": [8.534696, 47.371525, 8.535767, 47.37238], "geometry": {"coordinates": [[[8.535767, 47.371525], [8.534978, 47.372077], [8.534871, 47.372172], [8.534776, 47.372274], [8.534696, 47.37238]]], "type": "MultiLineString"}, "id": "2164", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.367078, 8.548892, 47.370115], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544288, 47.367095], [8.544297, 47.367113], [8.544308, 47.367129], [8.544321, 47.367145], [8.544335, 47.367161], [8.544352, 47.367175], [8.544371, 47.367188], [8.544391, 47.3672], [8.544412, 47.367211], [8.544435, 47.367221], [8.544459, 47.367229], [8.545005, 47.367413], [8.545177, 47.367474], [8.545253, 47.367504], [8.545327, 47.367536], [8.5454, 47.36757], [8.54614, 47.367906], [8.546686, 47.368161], [8.546834, 47.368229], [8.546981, 47.368298], [8.547044, 47.368327], [8.547105, 47.368358], [8.547164, 47.368391], [8.547297, 47.368477], [8.547417, 47.368571], [8.547522, 47.368673], [8.548037, 47.369215], [8.548204, 47.369391], [8.548344, 47.369538], [8.548892, 47.370115]]], "type": "MultiLineString"}, "id": "2189", "properties": {}, "type": "Feature"}, {"bbox": [8.573989, 47.404152, 8.586239, 47.407087], "geometry": {"coordinates": [[[8.573989, 47.404152], [8.57414, 47.404311], [8.574669, 47.404414], [8.575601, 47.404625], [8.576885, 47.404917], [8.578172, 47.405206], [8.578518, 47.405274], [8.578968, 47.405387], [8.579916, 47.405603], [8.581145, 47.405884], [8.581742, 47.406027], [8.582905, 47.406276], [8.583338, 47.406383], [8.583815, 47.406492], [8.584389, 47.406595], [8.584605, 47.406657], [8.584803, 47.406739], [8.585137, 47.406813], [8.585503, 47.406907], [8.58587, 47.406998], [8.586239, 47.407087]]], "type": "MultiLineString"}, "id": "2191", "properties": {}, "type": "Feature"}, {"bbox": [8.544282, 47.361282, 8.547992, 47.367078], "geometry": {"coordinates": [[[8.544282, 47.367078], [8.544462, 47.366947], [8.544626, 47.366808], [8.544774, 47.36666], [8.544904, 47.366504], [8.544939, 47.366452], [8.544972, 47.366399], [8.545002, 47.366345], [8.54552, 47.36547], [8.545629, 47.365279], [8.546181, 47.364315], [8.546377, 47.363971], [8.546452, 47.363848], [8.546969, 47.362987], [8.547112, 47.362748], [8.547317, 47.362396], [8.547531, 47.36203], [8.547657, 47.361832], [8.547786, 47.36163], [8.547905, 47.361437], [8.547992, 47.361282]]], "type": "MultiLineString"}, "id": "2194", "properties": {}, "type": "Feature"}, {"bbox": [8.529981, 47.334827, 8.53093, 47.342545], "geometry": {"coordinates": [[[8.53093, 47.342545], [8.530925, 47.342514], [8.530917, 47.342482], [8.530908, 47.342451], [8.530676, 47.341869], [8.530459, 47.341323], [8.530259, 47.340827], [8.530182, 47.340635], [8.530122, 47.340484], [8.530074, 47.34032], [8.530039, 47.340155], [8.530014, 47.339989], [8.530003, 47.339849], [8.53, 47.339709], [8.530005, 47.339569], [8.530084, 47.338807], [8.530088, 47.338765], [8.530083, 47.338585], [8.530072, 47.338277], [8.530068, 47.338113], [8.530068, 47.337949], [8.530073, 47.337786], [8.530048, 47.336913], [8.53003, 47.336297], [8.530028, 47.336256], [8.529984, 47.334867], [8.529981, 47.334827]]], "type": "MultiLineString"}, "id": "2195", "properties": {}, "type": "Feature"}, {"bbox": [8.483938, 47.368429, 8.493783, 47.373838], "geometry": {"coordinates": [[[8.483938, 47.373838], [8.483947, 47.373832], [8.483949, 47.373819], [8.483952, 47.373806], [8.483958, 47.373793], [8.483965, 47.373781], [8.483973, 47.37377], [8.483983, 47.373758], [8.483995, 47.373748], [8.484008, 47.373738], [8.484318, 47.37353], [8.484425, 47.373458], [8.484622, 47.373337], [8.48483, 47.373225], [8.485048, 47.373121], [8.485303, 47.373017], [8.485451, 47.372956], [8.485813, 47.372829], [8.48602, 47.372753], [8.486222, 47.372671], [8.486419, 47.372584], [8.487429, 47.372115], [8.487498, 47.372084], [8.487566, 47.372051], [8.487631, 47.372016], [8.487804, 47.371918], [8.48797, 47.371814], [8.488128, 47.371705], [8.488184, 47.371664], [8.488238, 47.371622], [8.488292, 47.371579], [8.488429, 47.371468], [8.489533, 47.370567], [8.490078, 47.370122], [8.490236, 47.370002], [8.490398, 47.369884], [8.490564, 47.369769], [8.490585, 47.369756], [8.490607, 47.369742], [8.490629, 47.369729], [8.490764, 47.369651], [8.490903, 47.369576], [8.491047, 47.369505], [8.491171, 47.369449], [8.491297, 47.369395], [8.491426, 47.369343], [8.491751, 47.369216], [8.491952, 47.369138], [8.492542, 47.368907], [8.493052, 47.368708], [8.493294, 47.368613], [8.493538, 47.36852], [8.493783, 47.368429]]], "type": "MultiLineString"}, "id": "2207", "properties": {}, "type": "Feature"}, {"bbox": [8.563375, 47.405792, 8.565439, 47.406938], "geometry": {"coordinates": [[[8.565439, 47.406938], [8.565065, 47.406725], [8.56469, 47.406513], [8.564314, 47.406303], [8.563375, 47.405792]]], "type": "MultiLineString"}, "id": "2233", "properties": {}, "type": "Feature"}, {"bbox": [8.549081, 47.373133, 8.550183, 47.374265], "geometry": {"coordinates": [[[8.550183, 47.373233], [8.549681, 47.373133], [8.549081, 47.374265]]], "type": "MultiLineString"}, "id": "2234", "properties": {}, "type": "Feature"}, {"bbox": [8.531693, 47.365855, 8.532288, 47.366356], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532094, 47.365863], [8.531932, 47.366081], [8.531754, 47.366292], [8.531693, 47.366356]]], "type": "MultiLineString"}, "id": "2240", "properties": {}, "type": "Feature"}, {"bbox": [8.577909, 47.348714, 8.577984, 47.349005], "geometry": {"coordinates": [[[8.577909, 47.349005], [8.577948, 47.34891], [8.577973, 47.348813], [8.577984, 47.348714]]], "type": "MultiLineString"}, "id": "2268", "properties": {}, "type": "Feature"}, {"bbox": [8.513633, 47.357801, 8.514183, 47.358364], "geometry": {"coordinates": [[[8.514183, 47.357801], [8.514123, 47.357833], [8.514081, 47.357855], [8.513633, 47.358364]]], "type": "MultiLineString"}, "id": "2271", "properties": {}, "type": "Feature"}, {"bbox": [8.552866, 47.413981, 8.554393, 47.414473], "geometry": {"coordinates": [[[8.554393, 47.414473], [8.554381, 47.414129], [8.554378, 47.414115], [8.554373, 47.414101], [8.554366, 47.414087], [8.554358, 47.414074], [8.554347, 47.414061], [8.554336, 47.414049], [8.554322, 47.414037], [8.554308, 47.414026], [8.554292, 47.414017], [8.554274, 47.414008], [8.554256, 47.414], [8.554237, 47.413993], [8.554001, 47.413985], [8.553764, 47.413981], [8.553528, 47.413984], [8.553438, 47.414022], [8.553355, 47.414065], [8.553277, 47.414113], [8.553207, 47.414166], [8.553143, 47.414224], [8.553088, 47.414284], [8.553071, 47.414307], [8.553052, 47.414329], [8.553033, 47.414351], [8.552994, 47.414366], [8.552953, 47.41438], [8.55291, 47.414391], [8.552866, 47.4144]]], "type": "MultiLineString"}, "id": "2284", "properties": {}, "type": "Feature"}, {"bbox": [8.506041, 47.411352, 8.506216, 47.41224], "geometry": {"coordinates": [[[8.506203, 47.41224], [8.506216, 47.411992], [8.506201, 47.411829], [8.506167, 47.411667], [8.506113, 47.411508], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "2294", "properties": {}, "type": "Feature"}, {"bbox": [8.54538, 47.412992, 8.545447, 47.413844], "geometry": {"coordinates": [[[8.54538, 47.412992], [8.545397, 47.41318], [8.545437, 47.413598], [8.545447, 47.413844]]], "type": "MultiLineString"}, "id": "2295", "properties": {}, "type": "Feature"}, {"bbox": [8.576313, 47.374601, 8.577507, 47.37479], "geometry": {"coordinates": [[[8.576313, 47.374602], [8.576538, 47.374601], [8.577507, 47.37479]]], "type": "MultiLineString"}, "id": "2309", "properties": {}, "type": "Feature"}, {"bbox": [8.526352, 47.407267, 8.526659, 47.407896], "geometry": {"coordinates": [[[8.526659, 47.407267], [8.526566, 47.407479], [8.526464, 47.407689], [8.526352, 47.407896]]], "type": "MultiLineString"}, "id": "2318", "properties": {}, "type": "Feature"}, {"bbox": [8.516385, 47.357867, 8.516937, 47.358799], "geometry": {"coordinates": [[[8.516937, 47.358799], [8.516876, 47.358739], [8.516789, 47.358113], [8.516385, 47.357867]]], "type": "MultiLineString"}, "id": "2349", "properties": {}, "type": "Feature"}, {"bbox": [8.492559, 47.384548, 8.493198, 47.385844], "geometry": {"coordinates": [[[8.492955, 47.385844], [8.492591, 47.384949], [8.492559, 47.384842], [8.493198, 47.384548]]], "type": "MultiLineString"}, "id": "2351", "properties": {}, "type": "Feature"}, {"bbox": [8.538549, 47.3743, 8.538671, 47.374582], "geometry": {"coordinates": [[[8.538549, 47.3743], [8.538657, 47.374493], [8.538671, 47.374582]]], "type": "MultiLineString"}, "id": "2365", "properties": {}, "type": "Feature"}, {"bbox": [8.485955, 47.387725, 8.48666, 47.387865], "geometry": {"coordinates": [[[8.48666, 47.387725], [8.486352, 47.387791], [8.485955, 47.387865]]], "type": "MultiLineString"}, "id": "2366", "properties": {}, "type": "Feature"}, {"bbox": [8.504093, 47.37972, 8.507101, 47.381041], "geometry": {"coordinates": [[[8.507101, 47.37972], [8.506623, 47.379933], [8.505142, 47.380581], [8.504093, 47.381041]]], "type": "MultiLineString"}, "id": "2367", "properties": {}, "type": "Feature"}, {"bbox": [8.48828, 47.387126, 8.489281, 47.387268], "geometry": {"coordinates": [[[8.489281, 47.387126], [8.48828, 47.387268]]], "type": "MultiLineString"}, "id": "2368", "properties": {}, "type": "Feature"}, {"bbox": [8.497417, 47.384029, 8.497839, 47.384235], "geometry": {"coordinates": [[[8.497839, 47.384029], [8.497417, 47.384235]]], "type": "MultiLineString"}, "id": "2369", "properties": {}, "type": "Feature"}, {"bbox": [8.540329, 47.373986, 8.540549, 47.374015], "geometry": {"coordinates": [[[8.540549, 47.373986], [8.540329, 47.374015]]], "type": "MultiLineString"}, "id": "2370", "properties": {}, "type": "Feature"}, {"bbox": [8.51527, 47.382952, 8.515772, 47.383349], "geometry": {"coordinates": [[[8.51527, 47.382952], [8.515772, 47.383349]]], "type": "MultiLineString"}, "id": "2377", "properties": {}, "type": "Feature"}, {"bbox": [8.491478, 47.389932, 8.493952, 47.390495], "geometry": {"coordinates": [[[8.491478, 47.390077], [8.491817, 47.390495], [8.493792, 47.389932], [8.493952, 47.389947]]], "type": "MultiLineString"}, "id": "2383", "properties": {}, "type": "Feature"}, {"bbox": [8.480552, 47.413598, 8.481058, 47.414471], "geometry": {"coordinates": [[[8.481058, 47.413598], [8.480552, 47.414471]]], "type": "MultiLineString"}, "id": "2387", "properties": {}, "type": "Feature"}, {"bbox": [8.497872, 47.422948, 8.498706, 47.423305], "geometry": {"coordinates": [[[8.497872, 47.423305], [8.49818, 47.423132], [8.498353, 47.423067], [8.498528, 47.423006], [8.498706, 47.422948]]], "type": "MultiLineString"}, "id": "2397", "properties": {}, "type": "Feature"}, {"bbox": [8.516166, 47.36191, 8.516795, 47.362348], "geometry": {"coordinates": [[[8.516795, 47.36191], [8.516743, 47.361953], [8.516166, 47.362348]]], "type": "MultiLineString"}, "id": "2405", "properties": {}, "type": "Feature"}, {"bbox": [8.543162, 47.399545, 8.544438, 47.399838], "geometry": {"coordinates": [[[8.543162, 47.399545], [8.543331, 47.399603], [8.543506, 47.399653], [8.543686, 47.399694], [8.544438, 47.399838]]], "type": "MultiLineString"}, "id": "2408", "properties": {}, "type": "Feature"}, {"bbox": [8.538184, 47.367571, 8.538567, 47.367639], "geometry": {"coordinates": [[[8.538567, 47.367639], [8.538184, 47.367571]]], "type": "MultiLineString"}, "id": "2414", "properties": {}, "type": "Feature"}, {"bbox": [8.534648, 47.370322, 8.53536, 47.370827], "geometry": {"coordinates": [[[8.53536, 47.370827], [8.535249, 47.370745], [8.535137, 47.370661], [8.535068, 47.370607], [8.534889, 47.370485], [8.534846, 47.370456], [8.534648, 47.370322]]], "type": "MultiLineString"}, "id": "2422", "properties": {}, "type": "Feature"}, {"bbox": [8.519272, 47.387403, 8.521987, 47.390188], "geometry": {"coordinates": [[[8.519272, 47.387403], [8.520074, 47.388225], [8.520735, 47.388904], [8.521334, 47.389519], [8.521987, 47.390188]]], "type": "MultiLineString"}, "id": "2424", "properties": {}, "type": "Feature"}, {"bbox": [8.481779, 47.368332, 8.484419, 47.369129], "geometry": {"coordinates": [[[8.484419, 47.368332], [8.484028, 47.368415], [8.483762, 47.368475], [8.4835, 47.368543], [8.483244, 47.36862], [8.483127, 47.36866], [8.481916, 47.369076], [8.481779, 47.369129]]], "type": "MultiLineString"}, "id": "2432", "properties": {}, "type": "Feature"}, {"bbox": [8.504989, 47.362737, 8.505268, 47.363042], "geometry": {"coordinates": [[[8.504989, 47.363042], [8.505223, 47.362787], [8.505268, 47.362737]]], "type": "MultiLineString"}, "id": "2435", "properties": {}, "type": "Feature"}, {"bbox": [8.490752, 47.423217, 8.491913, 47.423391], "geometry": {"coordinates": [[[8.491913, 47.423217], [8.490752, 47.423391]]], "type": "MultiLineString"}, "id": "2446", "properties": {}, "type": "Feature"}, {"bbox": [8.554616, 47.425992, 8.555284, 47.426329], "geometry": {"coordinates": [[[8.555284, 47.425992], [8.555065, 47.426108], [8.554842, 47.426221], [8.554616, 47.426329]]], "type": "MultiLineString"}, "id": "2448", "properties": {}, "type": "Feature"}, {"bbox": [8.466976, 47.385121, 8.471575, 47.38778], "geometry": {"coordinates": [[[8.471575, 47.38778], [8.47157, 47.387759], [8.471563, 47.387738], [8.471552, 47.387718], [8.471539, 47.387699], [8.471524, 47.38768], [8.471507, 47.387663], [8.471487, 47.387646], [8.470919, 47.387389], [8.47037, 47.387113], [8.469841, 47.38682], [8.46965, 47.386708], [8.469476, 47.386585], [8.469321, 47.386449], [8.469261, 47.386395], [8.469195, 47.386344], [8.469123, 47.386296], [8.469046, 47.386253], [8.468964, 47.386213], [8.46868, 47.386092], [8.468389, 47.385979], [8.468091, 47.385874], [8.468057, 47.385862], [8.46796, 47.385822], [8.467869, 47.385776], [8.467783, 47.385726], [8.467705, 47.38567], [8.467634, 47.38561], [8.467572, 47.385546], [8.467517, 47.385479], [8.467472, 47.385408], [8.467441, 47.385368], [8.467405, 47.385329], [8.467364, 47.385293], [8.467319, 47.385259], [8.46727, 47.385228], [8.467217, 47.3852], [8.46716, 47.385175], [8.467101, 47.385154], [8.467039, 47.385136], [8.466976, 47.385121]]], "type": "MultiLineString"}, "id": "2453", "properties": {}, "type": "Feature"}, {"bbox": [8.534761, 47.372596, 8.53832, 47.373903], "geometry": {"coordinates": [[[8.53832, 47.373903], [8.538049, 47.373876], [8.537966, 47.373867], [8.537244, 47.373799], [8.537225, 47.373796], [8.537207, 47.373792], [8.537189, 47.373788], [8.537172, 47.373782], [8.537156, 47.373775], [8.537141, 47.373767], [8.537127, 47.373758], [8.537114, 47.373749], [8.537102, 47.373739], [8.537092, 47.373728], [8.537082, 47.373717], [8.537075, 47.373705], [8.537068, 47.373693], [8.537064, 47.37368], [8.537061, 47.373667], [8.537051, 47.373459], [8.537045, 47.373435], [8.537036, 47.373412], [8.537024, 47.373389], [8.536943, 47.373232], [8.536931, 47.373215], [8.536918, 47.3732], [8.536903, 47.373185], [8.536885, 47.373171], [8.536867, 47.373159], [8.536847, 47.373147], [8.536825, 47.373137], [8.536802, 47.373127], [8.536533, 47.373044], [8.535491, 47.37278], [8.534761, 47.372596]]], "type": "MultiLineString"}, "id": "2455", "properties": {}, "type": "Feature"}, {"bbox": [8.547904, 47.352008, 8.560053, 47.3652], "geometry": {"coordinates": [[[8.547904, 47.3652], [8.548179, 47.364912], [8.54859, 47.364439], [8.548649, 47.364364], [8.549073, 47.363891], [8.549147, 47.363809], [8.549703, 47.3632], [8.549857, 47.363043], [8.549932, 47.362957], [8.550068, 47.362805], [8.550091, 47.362778], [8.550275, 47.362567], [8.550472, 47.362341], [8.550582, 47.362214], [8.550828, 47.361931], [8.551138, 47.361574], [8.551269, 47.361424], [8.551604, 47.361038], [8.552194, 47.360358], [8.552213, 47.360338], [8.552938, 47.359501], [8.553306, 47.359055], [8.55333, 47.359028], [8.553849, 47.358428], [8.554003, 47.358239], [8.554033, 47.358201], [8.554432, 47.357753], [8.554793, 47.357421], [8.554875, 47.357332], [8.555227, 47.356963], [8.55533, 47.356855], [8.55555, 47.356624], [8.555621, 47.35655], [8.555939, 47.356216], [8.556149, 47.356008], [8.556383, 47.355775], [8.556426, 47.355728], [8.556614, 47.35553], [8.55693, 47.355194], [8.557131, 47.354984], [8.557197, 47.354915], [8.557364, 47.354743], [8.557442, 47.354663], [8.557779, 47.35432], [8.557893, 47.354203], [8.558206, 47.353874], [8.558584, 47.353476], [8.558802, 47.353241], [8.55885, 47.353189], [8.55905, 47.35298], [8.559116, 47.352904], [8.559223, 47.352783], [8.559374, 47.352625], [8.559405, 47.352587], [8.559469, 47.352517], [8.559529, 47.352444], [8.559585, 47.35237], [8.559647, 47.352282], [8.559703, 47.352192], [8.559753, 47.352101], [8.559872, 47.352071], [8.559987, 47.352034], [8.560053, 47.352008]]], "type": "MultiLineString"}, "id": "2456", "properties": {}, "type": "Feature"}, {"bbox": [8.55913, 47.376017, 8.559678, 47.376812], "geometry": {"coordinates": [[[8.55913, 47.376017], [8.559213, 47.376182], [8.559308, 47.376343], [8.559416, 47.3765], [8.559498, 47.376606], [8.559585, 47.376711], [8.559678, 47.376812]]], "type": "MultiLineString"}, "id": "2462", "properties": {}, "type": "Feature"}, {"bbox": [8.532316, 47.397568, 8.534555, 47.398053], "geometry": {"coordinates": [[[8.532316, 47.397568], [8.532666, 47.397674], [8.53312, 47.397806], [8.533588, 47.397914], [8.534067, 47.397996], [8.534555, 47.398053]]], "type": "MultiLineString"}, "id": "2470", "properties": {}, "type": "Feature"}, {"bbox": [8.526569, 47.351051, 8.526934, 47.351791], "geometry": {"coordinates": [[[8.526934, 47.351791], [8.526814, 47.351751], [8.526791, 47.351744], [8.526768, 47.351737], [8.526747, 47.351728], [8.526727, 47.351717], [8.526709, 47.351706], [8.526692, 47.351694], [8.526676, 47.35168], [8.526663, 47.351666], [8.526651, 47.351651], [8.526641, 47.351635], [8.526633, 47.351619], [8.526628, 47.351603], [8.526624, 47.351586], [8.526617, 47.351232], [8.526569, 47.351051]]], "type": "MultiLineString"}, "id": "2472", "properties": {}, "type": "Feature"}, {"bbox": [8.524448, 47.389411, 8.52536, 47.39032], "geometry": {"coordinates": [[[8.52536, 47.39032], [8.524448, 47.389411]]], "type": "MultiLineString"}, "id": "2476", "properties": {}, "type": "Feature"}, {"bbox": [8.524063, 47.384872, 8.531289, 47.389695], "geometry": {"coordinates": [[[8.531289, 47.384872], [8.531103, 47.385007], [8.530465, 47.385484], [8.530408, 47.385531], [8.529992, 47.385838], [8.529643, 47.386097], [8.529183, 47.386432], [8.529065, 47.386521], [8.528551, 47.386903], [8.528422, 47.386999], [8.527129, 47.387813], [8.526796, 47.388005], [8.526542, 47.388148], [8.526385, 47.388237], [8.526371, 47.388245], [8.526357, 47.388252], [8.526343, 47.38826], [8.526094, 47.388396], [8.525847, 47.388534], [8.525603, 47.388674], [8.525433, 47.388774], [8.525264, 47.388874], [8.525096, 47.388976], [8.524962, 47.389058], [8.524829, 47.389141], [8.524697, 47.389225], [8.524448, 47.389411], [8.524063, 47.389695]]], "type": "MultiLineString"}, "id": "2480", "properties": {}, "type": "Feature"}, {"bbox": [8.503181, 47.380988, 8.504093, 47.381435], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504039, 47.381024], [8.503982, 47.381009], [8.503924, 47.380999], [8.503864, 47.380991], [8.503804, 47.380988], [8.503744, 47.380988], [8.503683, 47.380992], [8.503624, 47.380999], [8.503566, 47.38101], [8.503509, 47.381025], [8.503455, 47.381043], [8.503403, 47.381064], [8.503354, 47.381088], [8.503309, 47.381115], [8.503267, 47.381145], [8.503243, 47.381174], [8.503222, 47.381204], [8.503205, 47.381236], [8.503193, 47.381268], [8.503185, 47.381301], [8.503181, 47.381335], [8.503181, 47.381368], [8.503186, 47.381402], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "2488", "properties": {}, "type": "Feature"}, {"bbox": [8.519057, 47.362594, 8.52224, 47.363149], "geometry": {"coordinates": [[[8.52224, 47.363149], [8.521069, 47.362705], [8.520973, 47.362678], [8.520873, 47.362657], [8.52077, 47.362641], [8.520666, 47.362633], [8.520562, 47.36263], [8.519761, 47.362595], [8.519689, 47.362594], [8.519618, 47.362598], [8.519547, 47.362606], [8.519478, 47.362617], [8.51941, 47.362633], [8.519344, 47.362652], [8.519281, 47.362675], [8.519057, 47.362747]]], "type": "MultiLineString"}, "id": "2492", "properties": {}, "type": "Feature"}, {"bbox": [8.547992, 47.350019, 8.560857, 47.361282], "geometry": {"coordinates": [[[8.547992, 47.361282], [8.548089, 47.361109], [8.548316, 47.360745], [8.548374, 47.360652], [8.548657, 47.360265], [8.549069, 47.3597], [8.549202, 47.359518], [8.549549, 47.359041], [8.549616, 47.358951], [8.549659, 47.358893], [8.550029, 47.358385], [8.550434, 47.357844], [8.550783, 47.357352], [8.55087, 47.357229], [8.551232, 47.356732], [8.551305, 47.356633], [8.55186, 47.355873], [8.552423, 47.355101], [8.55244, 47.355078], [8.552681, 47.354774], [8.552775, 47.354647], [8.552884, 47.354525], [8.553007, 47.354409], [8.553144, 47.354301], [8.553191, 47.354267], [8.55324, 47.354235], [8.553289, 47.354203], [8.553626, 47.353994], [8.553653, 47.353979], [8.55368, 47.353964], [8.553707, 47.35395], [8.553845, 47.353879], [8.553987, 47.353812], [8.554131, 47.353747], [8.554227, 47.353707], [8.554324, 47.353668], [8.554421, 47.353631], [8.554501, 47.353602], [8.554581, 47.353575], [8.554662, 47.353549], [8.554828, 47.3535], [8.554997, 47.353457], [8.555169, 47.353419], [8.556237, 47.353184], [8.556444, 47.353134], [8.556645, 47.353076], [8.556842, 47.35301], [8.557129, 47.352894], [8.5574, 47.35276], [8.55765, 47.352609], [8.557769, 47.352521], [8.558474, 47.351998], [8.558639, 47.351887], [8.558809, 47.35178], [8.558983, 47.351675], [8.558994, 47.351668], [8.559005, 47.351662], [8.559016, 47.351655], [8.559265, 47.35149], [8.559498, 47.351316], [8.559715, 47.351132], [8.559974, 47.350875], [8.560546, 47.350311], [8.560857, 47.350019]]], "type": "MultiLineString"}, "id": "2493", "properties": {}, "type": "Feature"}, {"bbox": [8.545441, 47.399372, 8.548161, 47.40003], "geometry": {"coordinates": [[[8.545441, 47.400028], [8.545818, 47.400009], [8.546196, 47.400009], [8.546573, 47.40003], [8.546662, 47.400028], [8.546751, 47.400022], [8.546838, 47.40001], [8.546924, 47.399993], [8.547007, 47.399971], [8.547087, 47.399944], [8.547163, 47.399913], [8.547235, 47.399877], [8.547302, 47.399837], [8.547364, 47.399794], [8.54742, 47.399747], [8.54747, 47.399697], [8.547607, 47.399549], [8.547619, 47.399528], [8.547633, 47.399508], [8.547649, 47.399489], [8.547668, 47.399471], [8.547688, 47.399454], [8.547711, 47.399439], [8.547736, 47.399425], [8.547762, 47.399412], [8.54779, 47.399401], [8.54782, 47.399392], [8.54785, 47.399384], [8.547881, 47.399378], [8.547913, 47.399374], [8.547945, 47.399372], [8.547977, 47.399372], [8.54801, 47.399374], [8.548042, 47.399377], [8.548073, 47.399382], [8.548104, 47.39939], [8.548133, 47.399398], [8.548161, 47.399409]]], "type": "MultiLineString"}, "id": "2497", "properties": {}, "type": "Feature"}, {"bbox": [8.594996, 47.404704, 8.595855, 47.405751], "geometry": {"coordinates": [[[8.594996, 47.404704], [8.595175, 47.404938], [8.595681, 47.405751], [8.595855, 47.405723]]], "type": "MultiLineString"}, "id": "2511", "properties": {}, "type": "Feature"}, {"bbox": [8.501967, 47.392531, 8.50282, 47.393789], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.50282, 47.392673], [8.502136, 47.393169], [8.502047, 47.393251], [8.502027, 47.393273], [8.502009, 47.393296], [8.501995, 47.39332], [8.501983, 47.393345], [8.501974, 47.393371], [8.501969, 47.393396], [8.501967, 47.393422], [8.501968, 47.393449], [8.501973, 47.393474], [8.501981, 47.3935], [8.501992, 47.393525], [8.502188, 47.393789]]], "type": "MultiLineString"}, "id": "2515", "properties": {}, "type": "Feature"}, {"bbox": [8.5012, 47.361195, 8.506017, 47.368822], "geometry": {"coordinates": [[[8.506017, 47.361195], [8.505359, 47.361823], [8.50506, 47.362088], [8.504661, 47.362487], [8.504056, 47.363035], [8.503963, 47.363124], [8.503871, 47.363213], [8.503781, 47.363304], [8.503634, 47.363456], [8.503493, 47.36361], [8.503356, 47.363766], [8.50298, 47.364208], [8.502944, 47.364256], [8.502912, 47.364305], [8.502882, 47.364355], [8.502844, 47.364428], [8.502813, 47.364502], [8.502787, 47.364577], [8.502733, 47.364752], [8.502663, 47.364966], [8.502632, 47.365044], [8.502602, 47.365122], [8.502572, 47.3652], [8.502537, 47.365296], [8.502498, 47.365393], [8.502456, 47.365488], [8.502277, 47.365954], [8.502269, 47.365977], [8.502073, 47.366498], [8.502039, 47.366589], [8.502024, 47.36663], [8.501582, 47.367804], [8.50156, 47.367863], [8.501451, 47.368155], [8.50144, 47.368184], [8.5012, 47.368822]]], "type": "MultiLineString"}, "id": "2524", "properties": {}, "type": "Feature"}, {"bbox": [8.531287, 47.34351, 8.535499, 47.363924], "geometry": {"coordinates": [[[8.531384, 47.363924], [8.531336, 47.363607], [8.531297, 47.363362], [8.531287, 47.363116], [8.531306, 47.362871], [8.531368, 47.362374], [8.531401, 47.362111], [8.531486, 47.361417], [8.531516, 47.36107], [8.531524, 47.360971], [8.53157, 47.360771], [8.531629, 47.360574], [8.531702, 47.360378], [8.531834, 47.360112], [8.531904, 47.359951], [8.531927, 47.359909], [8.531948, 47.359867], [8.531968, 47.359824], [8.532, 47.359743], [8.532027, 47.359662], [8.532048, 47.359579], [8.532118, 47.359241], [8.532119, 47.359057], [8.532108, 47.358874], [8.532086, 47.358691], [8.532085, 47.358663], [8.532083, 47.358636], [8.532082, 47.358608], [8.532083, 47.358525], [8.532088, 47.358442], [8.532098, 47.358359], [8.53213, 47.358181], [8.53217, 47.357966], [8.532277, 47.357391], [8.532293, 47.357155], [8.532277, 47.356918], [8.532229, 47.356683], [8.532213, 47.356598], [8.532182, 47.356433], [8.532167, 47.356311], [8.532167, 47.356188], [8.532182, 47.356066], [8.532212, 47.355945], [8.532257, 47.355827], [8.532311, 47.355719], [8.532385, 47.355572], [8.532614, 47.355147], [8.532636, 47.355103], [8.532655, 47.355059], [8.532671, 47.355015], [8.532695, 47.354922], [8.532707, 47.354829], [8.532708, 47.354735], [8.532696, 47.354641], [8.532673, 47.354548], [8.532637, 47.354457], [8.532591, 47.354369], [8.532533, 47.354284], [8.532337, 47.354012], [8.532263, 47.353897], [8.532205, 47.353779], [8.532165, 47.353656], [8.532142, 47.353532], [8.531994, 47.35216], [8.531962, 47.351907], [8.531954, 47.351597], [8.531979, 47.351286], [8.532037, 47.350978], [8.532162, 47.350442], [8.532235, 47.350121], [8.532356, 47.349581], [8.532369, 47.349525], [8.532683, 47.348029], [8.532803, 47.34747], [8.532833, 47.347353], [8.532852, 47.347281], [8.532969, 47.346725], [8.533012, 47.346534], [8.533069, 47.346345], [8.53314, 47.346158], [8.533315, 47.345718], [8.533469, 47.345331], [8.533486, 47.345287], [8.533497, 47.345243], [8.533503, 47.345198], [8.533503, 47.345153], [8.533498, 47.345108], [8.533487, 47.345063], [8.53347, 47.345019], [8.533511, 47.345003], [8.53355, 47.344984], [8.533586, 47.344963], [8.53362, 47.344939], [8.53365, 47.344914], [8.533677, 47.344887], [8.533701, 47.344859], [8.533721, 47.34483], [8.533916, 47.344508], [8.534011, 47.344367], [8.534122, 47.344232], [8.53425, 47.344103], [8.534392, 47.343981], [8.534502, 47.343899], [8.534547, 47.343865], [8.534595, 47.343832], [8.534644, 47.3438], [8.534715, 47.34376], [8.534788, 47.343722], [8.534865, 47.343687], [8.534937, 47.343653], [8.535109, 47.343579], [8.535238, 47.343553], [8.535368, 47.34353], [8.535499, 47.34351]]], "type": "MultiLineString"}, "id": "2525", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.373789, 8.502528, 47.375749], "geometry": {"coordinates": [[[8.502528, 47.374233], [8.50197, 47.37406], [8.501841, 47.374023], [8.501381, 47.373904], [8.50121, 47.373864], [8.501036, 47.373833], [8.500859, 47.37381], [8.500626, 47.373792], [8.500391, 47.373789], [8.500157, 47.373801], [8.499926, 47.373827], [8.499149, 47.373948], [8.498451, 47.374057], [8.497588, 47.374191], [8.497435, 47.374215], [8.495711, 47.374486], [8.494473, 47.374679], [8.492704, 47.374955], [8.492476, 47.37499], [8.492411, 47.375], [8.492281, 47.375021], [8.491672, 47.375116], [8.490768, 47.375257], [8.49056, 47.375289], [8.490449, 47.375307], [8.489606, 47.375438], [8.48927, 47.375491], [8.48842, 47.375624], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "2545", "properties": {}, "type": "Feature"}, {"bbox": [8.535187, 47.430345, 8.536154, 47.430625], "geometry": {"coordinates": [[[8.536154, 47.430345], [8.535925, 47.430402], [8.535878, 47.430417], [8.535187, 47.430625]]], "type": "MultiLineString"}, "id": "2546", "properties": {}, "type": "Feature"}, {"bbox": [8.584779, 47.382251, 8.588393, 47.383728], "geometry": {"coordinates": [[[8.584779, 47.382251], [8.584948, 47.382405], [8.585013, 47.382465], [8.585083, 47.382523], [8.585159, 47.382576], [8.586023, 47.383114], [8.586111, 47.383163], [8.586203, 47.383209], [8.586298, 47.383253], [8.58643, 47.383305], [8.586568, 47.383351], [8.586711, 47.383389], [8.587616, 47.383587], [8.587857, 47.383639], [8.588101, 47.383685], [8.588347, 47.383723], [8.588393, 47.383728]]], "type": "MultiLineString"}, "id": "2547", "properties": {}, "type": "Feature"}, {"bbox": [8.590219, 47.359878, 8.59457, 47.365068], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.594409, 47.359956], [8.594382, 47.360187], [8.594338, 47.360417], [8.59428, 47.360645], [8.594232, 47.360752], [8.59417, 47.360856], [8.594096, 47.360956], [8.594008, 47.361051], [8.593909, 47.36114], [8.593397, 47.361652], [8.593317, 47.361736], [8.593127, 47.361966], [8.592968, 47.362206], [8.592842, 47.362455], [8.592838, 47.362465], [8.592835, 47.362475], [8.592834, 47.362486], [8.592834, 47.362496], [8.592835, 47.362506], [8.592838, 47.362516], [8.592842, 47.362526], [8.592847, 47.362536], [8.592853, 47.362545], [8.592861, 47.362554], [8.59287, 47.362563], [8.592879, 47.362571], [8.59289, 47.362578], [8.592902, 47.362585], [8.592914, 47.362591], [8.593096, 47.362684], [8.593001, 47.362803], [8.592921, 47.362868], [8.592848, 47.362938], [8.592785, 47.363012], [8.592731, 47.363089], [8.592687, 47.36317], [8.592653, 47.363252], [8.59263, 47.363336], [8.592618, 47.363397], [8.592598, 47.363458], [8.592572, 47.363517], [8.592538, 47.363574], [8.592498, 47.36363], [8.592451, 47.363683], [8.592398, 47.363733], [8.592061, 47.364113], [8.591983, 47.364229], [8.591803, 47.364497], [8.591785, 47.364521], [8.591764, 47.364543], [8.591741, 47.364564], [8.591715, 47.364583], [8.591686, 47.364601], [8.591655, 47.364616], [8.591622, 47.36463], [8.591587, 47.364642], [8.591523, 47.364662], [8.591012, 47.364819], [8.590553, 47.364955], [8.590219, 47.365068]]], "type": "MultiLineString"}, "id": "2559", "properties": {}, "type": "Feature"}, {"bbox": [8.46932, 47.389049, 8.46988, 47.389396], "geometry": {"coordinates": [[[8.46988, 47.389049], [8.469703, 47.389172], [8.469516, 47.389287], [8.46932, 47.389396]]], "type": "MultiLineString"}, "id": "2562", "properties": {}, "type": "Feature"}, {"bbox": [8.535188, 47.363583, 8.540023, 47.36599], "geometry": {"coordinates": [[[8.540023, 47.36599], [8.539799, 47.365878], [8.538956, 47.365456], [8.538822, 47.365389], [8.537776, 47.364868], [8.53694, 47.364451], [8.536229, 47.364095], [8.53543, 47.363696], [8.535354, 47.363654], [8.535273, 47.363616], [8.535188, 47.363583]]], "type": "MultiLineString"}, "id": "2563", "properties": {}, "type": "Feature"}, {"bbox": [8.518093, 47.385589, 8.520593, 47.386193], "geometry": {"coordinates": [[[8.520593, 47.385589], [8.520382, 47.385602], [8.518093, 47.386193]]], "type": "MultiLineString"}, "id": "2564", "properties": {}, "type": "Feature"}, {"bbox": [8.518126, 47.385566, 8.521211, 47.386209], "geometry": {"coordinates": [[[8.521211, 47.385723], [8.521184, 47.385697], [8.521153, 47.385674], [8.521119, 47.385652], [8.521082, 47.385632], [8.521043, 47.385615], [8.521002, 47.3856], [8.520959, 47.385588], [8.520914, 47.385578], [8.520869, 47.385571], [8.520822, 47.385567], [8.520776, 47.385566], [8.520729, 47.385568], [8.520683, 47.385572], [8.520637, 47.385579], [8.520593, 47.385589], [8.520357, 47.385634], [8.520127, 47.385689], [8.519902, 47.385755], [8.519669, 47.385817], [8.518126, 47.386209]]], "type": "MultiLineString"}, "id": "2637", "properties": {}, "type": "Feature"}, {"bbox": [8.555284, 47.425509, 8.557803, 47.425992], "geometry": {"coordinates": [[[8.557803, 47.425509], [8.557653, 47.425556], [8.557349, 47.425616], [8.557282, 47.425625], [8.557214, 47.425632], [8.557146, 47.425638], [8.55622, 47.425702], [8.556109, 47.42571], [8.555999, 47.425724], [8.555892, 47.425744], [8.555787, 47.42577], [8.555686, 47.425802], [8.55559, 47.42584], [8.555498, 47.425883], [8.555284, 47.425992]]], "type": "MultiLineString"}, "id": "2640", "properties": {}, "type": "Feature"}, {"bbox": [8.621274, 47.354624, 8.625403, 47.359841], "geometry": {"coordinates": [[[8.622491, 47.359841], [8.621991, 47.359583], [8.621966, 47.359569], [8.621943, 47.359553], [8.621922, 47.359537], [8.621903, 47.359519], [8.621887, 47.3595], [8.621873, 47.35948], [8.621861, 47.359459], [8.621852, 47.359438], [8.621846, 47.359417], [8.621844, 47.35941], [8.621842, 47.359403], [8.62184, 47.359396], [8.621837, 47.35938], [8.621835, 47.359364], [8.621833, 47.359348], [8.62183, 47.359305], [8.621825, 47.359261], [8.621818, 47.359218], [8.621809, 47.359173], [8.621798, 47.359127], [8.621784, 47.359082], [8.621772, 47.359042], [8.621763, 47.359001], [8.621756, 47.358959], [8.621748, 47.358881], [8.621741, 47.358802], [8.621737, 47.358723], [8.621736, 47.358695], [8.621733, 47.358667], [8.62173, 47.358639], [8.621721, 47.358587], [8.62171, 47.358535], [8.621697, 47.358483], [8.621682, 47.358436], [8.621662, 47.35839], [8.621637, 47.358345], [8.621583, 47.358258], [8.62153, 47.358171], [8.621478, 47.358083], [8.621429, 47.358002], [8.621381, 47.35792], [8.621333, 47.357839], [8.621308, 47.357789], [8.621289, 47.357738], [8.621278, 47.357685], [8.621274, 47.357644], [8.621275, 47.357602], [8.621282, 47.357561], [8.621294, 47.35752], [8.621336, 47.357419], [8.621392, 47.357321], [8.62146, 47.357227], [8.621475, 47.35721], [8.621491, 47.357193], [8.621509, 47.357177], [8.621932, 47.356907], [8.622287, 47.356728], [8.62273, 47.35643], [8.623189, 47.356049], [8.623242, 47.355995], [8.623287, 47.355938], [8.623325, 47.355879], [8.62335, 47.355822], [8.623364, 47.355793], [8.623374, 47.355761], [8.623388, 47.35573], [8.623407, 47.3557], [8.623429, 47.355671], [8.623455, 47.355644], [8.623484, 47.355618], [8.623517, 47.355594], [8.623552, 47.355573], [8.623767, 47.35544], [8.624036, 47.355284], [8.624311, 47.355136], [8.624797, 47.354867], [8.625049, 47.354732], [8.625239, 47.354657], [8.625403, 47.354624]]], "type": "MultiLineString"}, "id": "2656", "properties": {}, "type": "Feature"}, {"bbox": [8.538939, 47.398571, 8.543162, 47.399545], "geometry": {"coordinates": [[[8.538939, 47.398571], [8.539365, 47.39864], [8.540206, 47.398771], [8.541079, 47.398906], [8.54172, 47.399007], [8.541921, 47.399046], [8.542116, 47.399097], [8.542303, 47.39916], [8.54244, 47.39921], [8.542569, 47.399269], [8.54269, 47.399336], [8.542819, 47.3994], [8.542929, 47.399453], [8.543044, 47.399501], [8.543162, 47.399545]]], "type": "MultiLineString"}, "id": "2674", "properties": {}, "type": "Feature"}, {"bbox": [8.49198, 47.392205, 8.494458, 47.393535], "geometry": {"coordinates": [[[8.49198, 47.393535], [8.492347, 47.393434], [8.492391, 47.393419], [8.492433, 47.393401], [8.492473, 47.393381], [8.49251, 47.393359], [8.492544, 47.393334], [8.492575, 47.393308], [8.492602, 47.39328], [8.492626, 47.39325], [8.492646, 47.39322], [8.492666, 47.393165], [8.492679, 47.39311], [8.492684, 47.393054], [8.492682, 47.392998], [8.492671, 47.392942], [8.492654, 47.392887], [8.492488, 47.392438], [8.492432, 47.392294], [8.492496, 47.392205], [8.492577, 47.392251], [8.492876, 47.393062], [8.492892, 47.393096], [8.492914, 47.393128], [8.492939, 47.39316], [8.492968, 47.393189], [8.493001, 47.393217], [8.493038, 47.393242], [8.493078, 47.393266], [8.493121, 47.393286], [8.493166, 47.393304], [8.493213, 47.39332], [8.493263, 47.393332], [8.493313, 47.393341], [8.493365, 47.393347], [8.493417, 47.39335], [8.493553, 47.393352], [8.493689, 47.39335], [8.493824, 47.393346], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "2684", "properties": {}, "type": "Feature"}, {"bbox": [8.533568, 47.391849, 8.538556, 47.397787], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538447, 47.391997], [8.538287, 47.392291], [8.538144, 47.392602], [8.538016, 47.392879], [8.537714, 47.393352], [8.537591, 47.393561], [8.537472, 47.393764], [8.537137, 47.39428], [8.537058, 47.394385], [8.536941, 47.394508], [8.536813, 47.394625], [8.536676, 47.394738], [8.536573, 47.394811], [8.536092, 47.395148], [8.534715, 47.396081], [8.534511, 47.396229], [8.534301, 47.3964], [8.534118, 47.396584], [8.533963, 47.39678], [8.53389, 47.396892], [8.533827, 47.397006], [8.533773, 47.397122], [8.533568, 47.397787]]], "type": "MultiLineString"}, "id": "2693", "properties": {}, "type": "Feature"}, {"bbox": [8.498618, 47.370148, 8.509807, 47.3776], "geometry": {"coordinates": [[[8.509807, 47.370148], [8.509637, 47.37024], [8.508961, 47.370575], [8.508502, 47.370806], [8.508348, 47.370883], [8.506303, 47.371905], [8.506152, 47.371986], [8.505799, 47.372173], [8.505559, 47.372299], [8.50532, 47.372426], [8.50508, 47.372552], [8.504687, 47.372771], [8.504303, 47.372997], [8.503929, 47.373231], [8.503637, 47.373421], [8.503352, 47.373617], [8.503073, 47.373816], [8.502888, 47.373953], [8.502707, 47.374092], [8.502528, 47.374233], [8.502253, 47.374458], [8.502177, 47.374521], [8.502103, 47.374585], [8.50203, 47.374649], [8.500753, 47.375773], [8.500461, 47.376034], [8.500168, 47.376294], [8.499873, 47.376553], [8.499518, 47.376873], [8.499239, 47.377127], [8.498939, 47.37737], [8.498618, 47.3776]]], "type": "MultiLineString"}, "id": "2714", "properties": {}, "type": "Feature"}, {"bbox": [8.551051, 47.414237, 8.563525, 47.415709], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.551711, 47.414298], [8.552866, 47.4144], [8.553215, 47.414425], [8.554118, 47.414467], [8.554393, 47.414473], [8.556641, 47.414508], [8.557752, 47.414528], [8.558943, 47.41455], [8.559399, 47.414559], [8.559431, 47.414559], [8.559986, 47.414608], [8.560533, 47.414688], [8.561068, 47.414799], [8.561401, 47.414886], [8.561726, 47.414984], [8.562043, 47.415095], [8.562586, 47.41532], [8.563525, 47.415709]]], "type": "MultiLineString"}, "id": "2715", "properties": {}, "type": "Feature"}, {"bbox": [8.534746, 47.372702, 8.541857, 47.374687], "geometry": {"coordinates": [[[8.541857, 47.374414], [8.541694, 47.37442], [8.541447, 47.374428], [8.540388, 47.374467], [8.539942, 47.374488], [8.53965, 47.3745], [8.539341, 47.374518], [8.538671, 47.374582], [8.538606, 47.374588], [8.537985, 47.374664], [8.537918, 47.374671], [8.537851, 47.374678], [8.537815, 47.374681], [8.537779, 47.374684], [8.537743, 47.374685], [8.537601, 47.374687], [8.537459, 47.37468], [8.537319, 47.374664], [8.537289, 47.37466], [8.537259, 47.374655], [8.53723, 47.37465], [8.537132, 47.374629], [8.537038, 47.374603], [8.536947, 47.374571], [8.53686, 47.374534], [8.536779, 47.374492], [8.536703, 47.374445], [8.536633, 47.374395], [8.53657, 47.37434], [8.53634, 47.374103], [8.536031, 47.373782], [8.536006, 47.373756], [8.535908, 47.373655], [8.535786, 47.373527], [8.535416, 47.373144], [8.535103, 47.372818], [8.535084, 47.3728], [8.535064, 47.372783], [8.535041, 47.372768], [8.535017, 47.372754], [8.534991, 47.372741], [8.534963, 47.37273], [8.534934, 47.372721], [8.534904, 47.372714], [8.534873, 47.372708], [8.534842, 47.372704], [8.53481, 47.372702], [8.534778, 47.372702], [8.534746, 47.372704]]], "type": "MultiLineString"}, "id": "2729", "properties": {}, "type": "Feature"}, {"bbox": [8.547317, 47.362396, 8.55325, 47.36517], "geometry": {"coordinates": [[[8.547317, 47.362396], [8.548279, 47.362677], [8.548538, 47.36276], [8.549025, 47.36294], [8.549703, 47.3632], [8.550446, 47.363543], [8.550495, 47.363564], [8.55071, 47.363659], [8.550966, 47.363771], [8.551021, 47.363795], [8.55147, 47.364012], [8.551825, 47.364187], [8.552144, 47.364343], [8.552445, 47.364491], [8.552459, 47.364498], [8.552472, 47.364505], [8.552485, 47.364513], [8.552505, 47.364526], [8.552524, 47.364541], [8.552541, 47.364557], [8.553246, 47.365166], [8.55325, 47.36517]]], "type": "MultiLineString"}, "id": "2747", "properties": {}, "type": "Feature"}, {"bbox": [8.513053, 47.411765, 8.518941, 47.414144], "geometry": {"coordinates": [[[8.518941, 47.414144], [8.518906, 47.414125], [8.518873, 47.414104], [8.518843, 47.414081], [8.518817, 47.414056], [8.518794, 47.41403], [8.518775, 47.414002], [8.518723, 47.413908], [8.518661, 47.413818], [8.518588, 47.413731], [8.518568, 47.413705], [8.518545, 47.41368], [8.518519, 47.413656], [8.518505, 47.413645], [8.51849, 47.413634], [8.518475, 47.413623], [8.517351, 47.412866], [8.517258, 47.412806], [8.516998, 47.412638], [8.516898, 47.412574], [8.516805, 47.412528], [8.516707, 47.412487], [8.516604, 47.412453], [8.516497, 47.412424], [8.516387, 47.412402], [8.516275, 47.412387], [8.515144, 47.412302], [8.515053, 47.412292], [8.514961, 47.412281], [8.51487, 47.412268], [8.514519, 47.412201], [8.514177, 47.412116], [8.513845, 47.412014], [8.513585, 47.411925], [8.513321, 47.411842], [8.513053, 47.411765]]], "type": "MultiLineString"}, "id": "2748", "properties": {}, "type": "Feature"}, {"bbox": [8.560441, 47.370935, 8.56045, 47.371063], "geometry": {"coordinates": [[[8.560441, 47.370935], [8.560447, 47.370977], [8.56045, 47.37102], [8.560449, 47.371063]]], "type": "MultiLineString"}, "id": "2781", "properties": {}, "type": "Feature"}, {"bbox": [8.549143, 47.429808, 8.549468, 47.430003], "geometry": {"coordinates": [[[8.549143, 47.429808], [8.549296, 47.429986], [8.549468, 47.430003]]], "type": "MultiLineString"}, "id": "2784", "properties": {}, "type": "Feature"}, {"bbox": [8.529238, 47.366545, 8.531558, 47.368234], "geometry": {"coordinates": [[[8.531558, 47.366545], [8.531306, 47.366753], [8.530662, 47.367211], [8.529722, 47.367886], [8.529238, 47.368234]]], "type": "MultiLineString"}, "id": "2785", "properties": {}, "type": "Feature"}, {"bbox": [8.531632, 47.365897, 8.532207, 47.366592], "geometry": {"coordinates": [[[8.532207, 47.365897], [8.532148, 47.365999], [8.532018, 47.366194], [8.53185, 47.366384], [8.531632, 47.366592]]], "type": "MultiLineString"}, "id": "2787", "properties": {}, "type": "Feature"}, {"bbox": [8.529406, 47.366642, 8.53171, 47.36834], "geometry": {"coordinates": [[[8.53171, 47.366642], [8.531343, 47.366932], [8.530194, 47.367756], [8.529685, 47.36812], [8.529406, 47.36834]]], "type": "MultiLineString"}, "id": "2788", "properties": {}, "type": "Feature"}, {"bbox": [8.547646, 47.42814, 8.549369, 47.429717], "geometry": {"coordinates": [[[8.547646, 47.428169], [8.547689, 47.42814], [8.548025, 47.428383], [8.548337, 47.428639], [8.548624, 47.42891], [8.54889, 47.429171], [8.549139, 47.42944], [8.549369, 47.429717]]], "type": "MultiLineString"}, "id": "2790", "properties": {}, "type": "Feature"}, {"bbox": [8.53171, 47.365855, 8.532294, 47.366642], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532294, 47.366022], [8.532134, 47.366224], [8.531874, 47.366533], [8.531818, 47.366589], [8.53171, 47.366642]]], "type": "MultiLineString"}, "id": "2794", "properties": {}, "type": "Feature"}, {"bbox": [8.548757, 47.400223, 8.552272, 47.402058], "geometry": {"coordinates": [[[8.552272, 47.402058], [8.55173, 47.401799], [8.551184, 47.401543], [8.550634, 47.401291], [8.548757, 47.400223]]], "type": "MultiLineString"}, "id": "2796", "properties": {}, "type": "Feature"}, {"bbox": [8.586298, 47.382493, 8.588412, 47.383253], "geometry": {"coordinates": [[[8.586298, 47.383253], [8.586548, 47.383175], [8.58695, 47.383075], [8.587446, 47.382981], [8.587479, 47.382974], [8.587512, 47.382966], [8.587543, 47.382955], [8.587572, 47.382943], [8.5876, 47.382929], [8.587627, 47.382914], [8.587651, 47.382897], [8.587673, 47.382878], [8.587693, 47.382859], [8.58771, 47.382839], [8.587724, 47.382817], [8.587887, 47.382526], [8.587934, 47.382538], [8.587982, 47.382546], [8.588031, 47.382552], [8.588081, 47.382555], [8.588131, 47.382555], [8.588181, 47.382551], [8.58823, 47.382545], [8.588278, 47.382536], [8.588325, 47.382524], [8.58837, 47.38251], [8.588412, 47.382493]]], "type": "MultiLineString"}, "id": "2809", "properties": {}, "type": "Feature"}, {"bbox": [8.492889, 47.397124, 8.493146, 47.398006], "geometry": {"coordinates": [[[8.492889, 47.397124], [8.493146, 47.398006]]], "type": "MultiLineString"}, "id": "2817", "properties": {}, "type": "Feature"}, {"bbox": [8.50839, 47.385075, 8.512123, 47.389632], "geometry": {"coordinates": [[[8.50839, 47.385075], [8.508475, 47.385164], [8.508549, 47.385259], [8.50861, 47.385357], [8.508658, 47.385458], [8.508693, 47.385562], [8.508961, 47.386414], [8.509576, 47.388338], [8.509729, 47.388717], [8.509771, 47.38879], [8.509822, 47.38886], [8.509883, 47.388928], [8.509951, 47.388991], [8.510028, 47.38905], [8.510111, 47.389104], [8.510202, 47.389153], [8.510298, 47.389197], [8.5104, 47.389234], [8.510506, 47.389266], [8.510615, 47.389291], [8.510728, 47.389309], [8.511276, 47.389388], [8.511489, 47.389413], [8.51171, 47.389472], [8.511922, 47.389545], [8.512123, 47.389632]]], "type": "MultiLineString"}, "id": "2829", "properties": {}, "type": "Feature"}, {"bbox": [8.536033, 47.377623, 8.536485, 47.37801], "geometry": {"coordinates": [[[8.536033, 47.377623], [8.536178, 47.377761], [8.536274, 47.377848], [8.536376, 47.377931], [8.536485, 47.37801]]], "type": "MultiLineString"}, "id": "2832", "properties": {}, "type": "Feature"}, {"bbox": [8.560315, 47.375496, 8.563846, 47.376772], "geometry": {"coordinates": [[[8.560315, 47.376719], [8.560374, 47.376727], [8.560739, 47.376769], [8.560814, 47.376772], [8.56089, 47.37677], [8.560964, 47.376764], [8.561038, 47.376754], [8.56111, 47.376739], [8.56118, 47.37672], [8.561316, 47.376668], [8.561433, 47.376618], [8.561546, 47.376563], [8.561654, 47.376503], [8.561777, 47.37643], [8.561978, 47.376306], [8.562143, 47.376211], [8.56232, 47.376126], [8.562506, 47.376051], [8.5627, 47.375987], [8.562901, 47.375934], [8.563108, 47.375891], [8.563311, 47.375856], [8.563369, 47.375845], [8.563425, 47.375831], [8.563479, 47.375814], [8.563531, 47.375793], [8.56358, 47.37577], [8.563619, 47.375749], [8.563656, 47.375726], [8.56369, 47.375702], [8.563763, 47.375637], [8.563793, 47.375591], [8.56382, 47.375544], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "2842", "properties": {}, "type": "Feature"}, {"bbox": [8.560918, 47.364709, 8.566043, 47.367457], "geometry": {"coordinates": [[[8.560918, 47.367457], [8.561075, 47.367267], [8.561336, 47.366952], [8.561432, 47.366845], [8.561534, 47.36674], [8.561642, 47.366639], [8.56188, 47.366449], [8.562137, 47.366271], [8.562411, 47.366105], [8.562534, 47.366037], [8.56266, 47.365972], [8.562788, 47.36591], [8.562952, 47.365836], [8.56312, 47.365766], [8.563291, 47.3657], [8.563333, 47.365685], [8.563374, 47.365671], [8.563416, 47.365658], [8.564228, 47.365365], [8.5645, 47.365266], [8.566043, 47.364709]]], "type": "MultiLineString"}, "id": "2857", "properties": {}, "type": "Feature"}, {"bbox": [8.503367, 47.398968, 8.514532, 47.411352], "geometry": {"coordinates": [[[8.514532, 47.399112], [8.514495, 47.399104], [8.514308, 47.399063], [8.514118, 47.399029], [8.513925, 47.399002], [8.513656, 47.398977], [8.513386, 47.398968], [8.513115, 47.398974], [8.513018, 47.39898], [8.512922, 47.398989], [8.512825, 47.398999], [8.512618, 47.399026], [8.512413, 47.399061], [8.512212, 47.399104], [8.511822, 47.399198], [8.511446, 47.399315], [8.511087, 47.399452], [8.511073, 47.399458], [8.511059, 47.399464], [8.511045, 47.39947], [8.510879, 47.399549], [8.510721, 47.399634], [8.51057, 47.399725], [8.51056, 47.399731], [8.51055, 47.399738], [8.51054, 47.399744], [8.510375, 47.39987], [8.510222, 47.400003], [8.510081, 47.400142], [8.509761, 47.400494], [8.509606, 47.400655], [8.509445, 47.400812], [8.509278, 47.400966], [8.508943, 47.401278], [8.508793, 47.401407], [8.508606, 47.401569], [8.508263, 47.401848], [8.50803, 47.402059], [8.507802, 47.402272], [8.507578, 47.402487], [8.507374, 47.402691], [8.5073, 47.402768], [8.507137, 47.402935], [8.506615, 47.4035], [8.506585, 47.403532], [8.505851, 47.404316], [8.505783, 47.404389], [8.505397, 47.404795], [8.505233, 47.404949], [8.504978, 47.405203], [8.504171, 47.406132], [8.503866, 47.406506], [8.503699, 47.406712], [8.503578, 47.406904], [8.503484, 47.407103], [8.503417, 47.407306], [8.503378, 47.407514], [8.503367, 47.407722], [8.50337, 47.407797], [8.503377, 47.407871], [8.503387, 47.407946], [8.50343, 47.408135], [8.503498, 47.408321], [8.503589, 47.408503], [8.503703, 47.408678], [8.50384, 47.408846], [8.504024, 47.409029], [8.504868, 47.40994], [8.50518, 47.410307], [8.505498, 47.410671], [8.505822, 47.411033], [8.505904, 47.411136], [8.505977, 47.411243], [8.506041, 47.411352]]], "type": "MultiLineString"}, "id": "2862", "properties": {}, "type": "Feature"}, {"bbox": [8.488061, 47.382277, 8.491784, 47.389987], "geometry": {"coordinates": [[[8.491784, 47.389987], [8.49141, 47.389022], [8.491247, 47.388647], [8.491115, 47.388303], [8.491048, 47.388258], [8.491005, 47.388134], [8.490957, 47.388005], [8.490808, 47.387629], [8.490506, 47.386835], [8.490403, 47.386606], [8.490237, 47.386283], [8.490224, 47.386261], [8.48994, 47.385736], [8.489526, 47.384974], [8.489156, 47.384294], [8.488061, 47.382277]]], "type": "MultiLineString"}, "id": "2863", "properties": {}, "type": "Feature"}, {"bbox": [8.540023, 47.36599, 8.542408, 47.366751], "geometry": {"coordinates": [[[8.541802, 47.36674], [8.542389, 47.366751], [8.542408, 47.3667], [8.542307, 47.366679], [8.542208, 47.366651], [8.542113, 47.366618], [8.542023, 47.366579], [8.541877, 47.366527], [8.541726, 47.366483], [8.541569, 47.366448], [8.540863, 47.36631], [8.540702, 47.366252], [8.540546, 47.36619], [8.540393, 47.366124], [8.540269, 47.36608], [8.540146, 47.366035], [8.540023, 47.36599], [8.540526, 47.366286], [8.540537, 47.366309], [8.540544, 47.366333], [8.540548, 47.366356], [8.540549, 47.36638], [8.540547, 47.366404], [8.540541, 47.366428], [8.540644, 47.366463], [8.540746, 47.366499], [8.540847, 47.366536], [8.541545, 47.366672], [8.541802, 47.36674]]], "type": "MultiLineString"}, "id": "2866", "properties": {}, "type": "Feature"}, {"bbox": [8.540901, 47.379931, 8.542561, 47.382427], "geometry": {"coordinates": [[[8.542561, 47.379931], [8.542322, 47.380261], [8.541429, 47.381494], [8.540916, 47.382191], [8.540901, 47.38228], [8.540944, 47.382364], [8.541037, 47.382427]]], "type": "MultiLineString"}, "id": "2872", "properties": {}, "type": "Feature"}, {"bbox": [8.493744, 47.408823, 8.496008, 47.409579], "geometry": {"coordinates": [[[8.496008, 47.408823], [8.495691, 47.40896], [8.495355, 47.409075], [8.495004, 47.409167], [8.494649, 47.409258], [8.494297, 47.409355], [8.493949, 47.409459], [8.493744, 47.409579]]], "type": "MultiLineString"}, "id": "2890", "properties": {}, "type": "Feature"}, {"bbox": [8.516091, 47.337766, 8.517671, 47.341875], "geometry": {"coordinates": [[[8.517671, 47.341875], [8.517463, 47.341476], [8.517144, 47.340965], [8.517019, 47.340787], [8.516875, 47.34058], [8.516741, 47.340367], [8.516468, 47.34], [8.516453, 47.339976], [8.516399, 47.339887], [8.516193, 47.33955], [8.516148, 47.339453], [8.516116, 47.339352], [8.516097, 47.339251], [8.516091, 47.339148], [8.516098, 47.339046], [8.516118, 47.338944], [8.516182, 47.338752], [8.516304, 47.338502], [8.51646, 47.33826], [8.516649, 47.33803], [8.516754, 47.33791], [8.516844, 47.337785], [8.516855, 47.337766]]], "type": "MultiLineString"}, "id": "2892", "properties": {}, "type": "Feature"}, {"bbox": [8.53353, 47.36337, 8.535188, 47.363583], "geometry": {"coordinates": [[[8.535188, 47.363583], [8.535073, 47.363538], [8.534954, 47.363499], [8.53483, 47.363467], [8.534702, 47.363441], [8.534572, 47.363423], [8.534441, 47.363412], [8.534381, 47.363409], [8.53424, 47.363401], [8.53353, 47.36337]]], "type": "MultiLineString"}, "id": "2897", "properties": {}, "type": "Feature"}, {"bbox": [8.53536, 47.370827, 8.535713, 47.371079], "geometry": {"coordinates": [[[8.535713, 47.371079], [8.535606, 47.371011], [8.53536, 47.370827]]], "type": "MultiLineString"}, "id": "2900", "properties": {}, "type": "Feature"}, {"bbox": [8.535499, 47.334807, 8.541813, 47.34351], "geometry": {"coordinates": [[[8.535499, 47.34351], [8.535743, 47.343187], [8.536047, 47.342762], [8.53629, 47.342423], [8.536561, 47.342045], [8.536618, 47.341959], [8.536675, 47.341874], [8.536731, 47.341788], [8.536786, 47.341691], [8.53684, 47.341594], [8.536892, 47.341497], [8.537139, 47.340982], [8.537323, 47.34061], [8.538223, 47.33881], [8.538281, 47.338698], [8.538501, 47.33826], [8.538588, 47.338107], [8.538647, 47.338004], [8.538829, 47.337644], [8.538854, 47.337589], [8.538879, 47.337533], [8.538903, 47.337477], [8.539139, 47.337068], [8.539206, 47.336967], [8.539277, 47.336866], [8.539352, 47.336767], [8.539579, 47.336508], [8.539837, 47.336263], [8.540123, 47.336033], [8.540204, 47.335971], [8.541813, 47.334807]]], "type": "MultiLineString"}, "id": "2904", "properties": {}, "type": "Feature"}, {"bbox": [8.483114, 47.414238, 8.483542, 47.417773], "geometry": {"coordinates": [[[8.483542, 47.414238], [8.483459, 47.41491], [8.483296, 47.416235], [8.483201, 47.417028], [8.483129, 47.417647], [8.483114, 47.417773]]], "type": "MultiLineString"}, "id": "2905", "properties": {}, "type": "Feature"}, {"bbox": [8.489664, 47.388072, 8.48991, 47.388671], "geometry": {"coordinates": [[[8.48991, 47.388671], [8.489857, 47.388566], [8.489664, 47.388072]]], "type": "MultiLineString"}, "id": "2918", "properties": {}, "type": "Feature"}, {"bbox": [8.547846, 47.400648, 8.548524, 47.403337], "geometry": {"coordinates": [[[8.548524, 47.400648], [8.548377, 47.40105], [8.548124, 47.401704], [8.548062, 47.401864], [8.548029, 47.401964], [8.548002, 47.402065], [8.54798, 47.402167], [8.547871, 47.402619], [8.547849, 47.402796], [8.547846, 47.402973], [8.547864, 47.40315], [8.547898, 47.403214], [8.547938, 47.403276], [8.547983, 47.403337]]], "type": "MultiLineString"}, "id": "2924", "properties": {}, "type": "Feature"}, {"bbox": [8.519106, 47.386063, 8.521446, 47.387242], "geometry": {"coordinates": [[[8.521446, 47.386063], [8.521439, 47.386086], [8.52143, 47.386108], [8.521418, 47.386129], [8.521403, 47.38615], [8.521386, 47.38617], [8.521367, 47.386189], [8.521345, 47.386206], [8.521321, 47.386223], [8.521295, 47.386237], [8.520693, 47.386511], [8.519106, 47.387242]]], "type": "MultiLineString"}, "id": "2937", "properties": {}, "type": "Feature"}, {"bbox": [8.529117, 47.378943, 8.529746, 47.379527], "geometry": {"coordinates": [[[8.529117, 47.378943], [8.529746, 47.379527]]], "type": "MultiLineString"}, "id": "2941", "properties": {}, "type": "Feature"}, {"bbox": [8.499924, 47.387242, 8.519106, 47.393426], "geometry": {"coordinates": [[[8.519106, 47.387242], [8.518829, 47.387384], [8.51791, 47.38784], [8.517299, 47.388124], [8.516615, 47.388419], [8.516089, 47.388649], [8.51578, 47.388747], [8.514669, 47.389111], [8.514449, 47.389188], [8.514222, 47.389255], [8.513988, 47.38931], [8.513039, 47.389485], [8.512123, 47.389632], [8.5117, 47.389743], [8.511275, 47.389852], [8.51085, 47.389961], [8.510029, 47.390207], [8.508545, 47.390652], [8.506355, 47.391308], [8.505445, 47.391584], [8.503526, 47.39216], [8.503372, 47.392212], [8.503226, 47.392274], [8.50309, 47.392346], [8.502802, 47.392531], [8.502663, 47.392534], [8.502005, 47.393028], [8.501904, 47.393101], [8.501793, 47.393168], [8.501674, 47.393228], [8.501548, 47.39328], [8.501414, 47.393323], [8.501276, 47.393359], [8.501133, 47.393386], [8.500988, 47.393403], [8.50084, 47.393412], [8.500692, 47.393411], [8.50033, 47.393407], [8.499924, 47.393426]]], "type": "MultiLineString"}, "id": "2947", "properties": {}, "type": "Feature"}, {"bbox": [8.519057, 47.362747, 8.521385, 47.365088], "geometry": {"coordinates": [[[8.521385, 47.365088], [8.521178, 47.364776], [8.521052, 47.364597], [8.520996, 47.36452], [8.520932, 47.364445], [8.520862, 47.364373], [8.52035, 47.363917], [8.520244, 47.363822], [8.519961, 47.363566], [8.519057, 47.362747]]], "type": "MultiLineString"}, "id": "2956", "properties": {}, "type": "Feature"}, {"bbox": [8.52235, 47.377593, 8.525167, 47.380591], "geometry": {"coordinates": [[[8.52235, 47.377593], [8.52251, 47.377827], [8.522782, 47.378198], [8.523025, 47.378522], [8.523063, 47.378574], [8.523104, 47.378626], [8.523147, 47.378677], [8.523209, 47.378745], [8.523275, 47.378811], [8.523345, 47.378876], [8.523939, 47.379443], [8.524091, 47.379564], [8.524403, 47.379863], [8.524888, 47.380324], [8.525167, 47.380591]]], "type": "MultiLineString"}, "id": "2961", "properties": {}, "type": "Feature"}, {"bbox": [8.520315, 47.369694, 8.527768, 47.373034], "geometry": {"coordinates": [[[8.527768, 47.373034], [8.52774, 47.37302], [8.527711, 47.373006], [8.527682, 47.372993], [8.527124, 47.372755], [8.527065, 47.372729], [8.527009, 47.3727], [8.526956, 47.372668], [8.526908, 47.372633], [8.526864, 47.372596], [8.526825, 47.372556], [8.526791, 47.372515], [8.526689, 47.372318], [8.526686, 47.37231], [8.526682, 47.372301], [8.526678, 47.372293], [8.526657, 47.372272], [8.526632, 47.372253], [8.526605, 47.372235], [8.526576, 47.37222], [8.526394, 47.372081], [8.526195, 47.371952], [8.525982, 47.371836], [8.525873, 47.371797], [8.525762, 47.371763], [8.525648, 47.371733], [8.525169, 47.371577], [8.525068, 47.371542], [8.524968, 47.371508], [8.524866, 47.371474], [8.524737, 47.371432], [8.524608, 47.371391], [8.524477, 47.371351], [8.524187, 47.371268], [8.523897, 47.371184], [8.523607, 47.371099], [8.523411, 47.371039], [8.522214, 47.370621], [8.521551, 47.370388], [8.521508, 47.370371], [8.521466, 47.370354], [8.521423, 47.370337], [8.521259, 47.370268], [8.521077, 47.370186], [8.52063, 47.369956], [8.520538, 47.369898], [8.520455, 47.369835], [8.52038, 47.369767], [8.520315, 47.369694]]], "type": "MultiLineString"}, "id": "2962", "properties": {}, "type": "Feature"}, {"bbox": [8.495757, 47.420622, 8.502704, 47.422636], "geometry": {"coordinates": [[[8.502704, 47.420638], [8.50264, 47.420629], [8.502574, 47.420623], [8.502509, 47.420622], [8.502443, 47.420623], [8.502378, 47.420629], [8.502314, 47.420638], [8.501569, 47.42085], [8.500473, 47.421166], [8.500046, 47.421309], [8.499638, 47.421476], [8.499251, 47.421665], [8.49899, 47.421784], [8.498723, 47.421897], [8.498451, 47.422004], [8.498295, 47.422053], [8.498135, 47.422098], [8.497974, 47.422139], [8.496948, 47.422378], [8.496657, 47.422443], [8.496292, 47.422527], [8.496115, 47.422566], [8.495936, 47.422603], [8.495757, 47.422636]]], "type": "MultiLineString"}, "id": "2968", "properties": {}, "type": "Feature"}, {"bbox": [8.528055, 47.372033, 8.529531, 47.37309], "geometry": {"coordinates": [[[8.529531, 47.372033], [8.529357, 47.372064], [8.528769, 47.372561], [8.528735, 47.372571], [8.528702, 47.372583], [8.528671, 47.372597], [8.528641, 47.372612], [8.528614, 47.372629], [8.528588, 47.372648], [8.528565, 47.372668], [8.528322, 47.372849], [8.528224, 47.372925], [8.528135, 47.373005], [8.528055, 47.37309]]], "type": "MultiLineString"}, "id": "2977", "properties": {}, "type": "Feature"}, {"bbox": [8.488871, 47.392134, 8.502802, 47.393111], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.502407, 47.392319], [8.502326, 47.392278], [8.50224, 47.392241], [8.50215, 47.39221], [8.502056, 47.392183], [8.50196, 47.392163], [8.501861, 47.392147], [8.50176, 47.392138], [8.501659, 47.392134], [8.501558, 47.392136], [8.49582, 47.392158], [8.495767, 47.392158], [8.495633, 47.392163], [8.495498, 47.392168], [8.495364, 47.392173], [8.495082, 47.392191], [8.494884, 47.392207], [8.49481, 47.392214], [8.494736, 47.392219], [8.494662, 47.392223], [8.494591, 47.392222], [8.49452, 47.392219], [8.49445, 47.392212], [8.494232, 47.392184], [8.494012, 47.392171], [8.49379, 47.392172], [8.493526, 47.392171], [8.4934, 47.392168], [8.493274, 47.392168], [8.493148, 47.392169], [8.49293, 47.392175], [8.492712, 47.392187], [8.492496, 47.392205], [8.492334, 47.392222], [8.492175, 47.392245], [8.492018, 47.392274], [8.491478, 47.392399], [8.491226, 47.392468], [8.490972, 47.392537], [8.490852, 47.39257], [8.489928, 47.392823], [8.488871, 47.393111]]], "type": "MultiLineString"}, "id": "2979", "properties": {}, "type": "Feature"}, {"bbox": [8.507853, 47.370663, 8.51679, 47.3778], "geometry": {"coordinates": [[[8.51679, 47.370663], [8.516044, 47.371459], [8.515909, 47.37159], [8.515652, 47.371833], [8.515406, 47.372072], [8.51516, 47.37231], [8.514424, 47.373018], [8.514346, 47.373093], [8.514011, 47.373414], [8.513929, 47.373491], [8.513509, 47.373888], [8.513399, 47.373985], [8.512555, 47.374656], [8.512541, 47.374667], [8.512527, 47.374678], [8.512513, 47.374688], [8.512344, 47.374816], [8.51217, 47.37494], [8.511991, 47.375062], [8.511711, 47.37525], [8.511077, 47.375676], [8.510744, 47.375893], [8.510307, 47.376178], [8.509982, 47.376393], [8.509902, 47.376446], [8.509034, 47.377021], [8.508916, 47.3771], [8.508846, 47.377146], [8.507853, 47.3778]]], "type": "MultiLineString"}, "id": "2980", "properties": {}, "type": "Feature"}, {"bbox": [8.542518, 47.378726, 8.542933, 47.380439], "geometry": {"coordinates": [[[8.542518, 47.378726], [8.54265, 47.378758], [8.54268, 47.378762], [8.542709, 47.378768], [8.542736, 47.378776], [8.542763, 47.378786], [8.542789, 47.378797], [8.542812, 47.37881], [8.542834, 47.378824], [8.542855, 47.378839], [8.542873, 47.378855], [8.542889, 47.378873], [8.542903, 47.378891], [8.542914, 47.37891], [8.542923, 47.37893], [8.542929, 47.37895], [8.542932, 47.37897], [8.542933, 47.378991], [8.542932, 47.379011], [8.542927, 47.379031], [8.54292, 47.379051], [8.542918, 47.379059], [8.542915, 47.379067], [8.542912, 47.379074], [8.542637, 47.379691], [8.542623, 47.379724], [8.542572, 47.379851], [8.542565, 47.379878], [8.542561, 47.379904], [8.542561, 47.379931]], [[8.542561, 47.379931], [8.542563, 47.379953], [8.542567, 47.379974], [8.542574, 47.379995], [8.542584, 47.380016], [8.542596, 47.380036], [8.54261, 47.380056], [8.542656, 47.38011], [8.542702, 47.380165], [8.54275, 47.380218], [8.542767, 47.380241], [8.54278, 47.380265], [8.54279, 47.380289], [8.542796, 47.380314], [8.5428, 47.380339], [8.5428, 47.380364], [8.542797, 47.38039], [8.542791, 47.380415], [8.542781, 47.380439]]], "type": "MultiLineString"}, "id": "2981", "properties": {}, "type": "Feature"}, {"bbox": [8.540857, 47.374933, 8.540925, 47.375451], "geometry": {"coordinates": [[[8.540857, 47.374933], [8.54092, 47.375272], [8.540924, 47.375293], [8.540925, 47.375314], [8.540924, 47.375335], [8.54092, 47.375355], [8.540914, 47.375376], [8.540904, 47.375396], [8.540893, 47.375415], [8.540878, 47.375434], [8.540861, 47.375451]]], "type": "MultiLineString"}, "id": "2982", "properties": {}, "type": "Feature"}, {"bbox": [8.548034, 47.419589, 8.556325, 47.427505], "geometry": {"coordinates": [[[8.548034, 47.419589], [8.548193, 47.419744], [8.548598, 47.420138], [8.548651, 47.420192], [8.548752, 47.420295], [8.549591, 47.421104], [8.549661, 47.421178], [8.550012, 47.421543], [8.550363, 47.421908], [8.550501, 47.422073], [8.550542, 47.422122], [8.550657, 47.422264], [8.550789, 47.422432], [8.550932, 47.422614], [8.551053, 47.422759], [8.551345, 47.423111], [8.551385, 47.423154], [8.55151, 47.423286], [8.551671, 47.423445], [8.552935, 47.424695], [8.553298, 47.425091], [8.55398, 47.425752], [8.554616, 47.426329], [8.554806, 47.426502], [8.554895, 47.426573], [8.554986, 47.426644], [8.555078, 47.426713], [8.555233, 47.426827], [8.555391, 47.426939], [8.555553, 47.427048], [8.555684, 47.427128], [8.556325, 47.427505]]], "type": "MultiLineString"}, "id": "2983", "properties": {}, "type": "Feature"}, {"bbox": [8.525167, 47.380449, 8.525877, 47.380708], "geometry": {"coordinates": [[[8.525167, 47.380591], [8.525196, 47.380612], [8.525227, 47.380632], [8.52526, 47.380649], [8.525296, 47.380664], [8.525333, 47.380678], [8.525372, 47.380688], [8.525412, 47.380697], [8.525453, 47.380703], [8.525495, 47.380707], [8.525537, 47.380708], [8.525579, 47.380706], [8.525621, 47.380702], [8.525662, 47.380696], [8.525702, 47.380687], [8.525741, 47.380676], [8.525778, 47.380662], [8.525813, 47.380647], [8.525846, 47.380629], [8.525877, 47.380609], [8.525767, 47.38055], [8.52567, 47.380465], [8.525652, 47.380449]]], "type": "MultiLineString"}, "id": "2986", "properties": {}, "type": "Feature"}, {"bbox": [8.564142, 47.375497, 8.567502, 47.376222], "geometry": {"coordinates": [[[8.564142, 47.375497], [8.564196, 47.375508], [8.564247, 47.375522], [8.564297, 47.375539], [8.564345, 47.375558], [8.565338, 47.375918], [8.565466, 47.375957], [8.565599, 47.375986], [8.565735, 47.376006], [8.565833, 47.376019], [8.565932, 47.376026], [8.566031, 47.376028], [8.566563, 47.376018], [8.566667, 47.376021], [8.56677, 47.37603], [8.566872, 47.376044], [8.566971, 47.376065], [8.567068, 47.376091], [8.567307, 47.376163], [8.567502, 47.376222]]], "type": "MultiLineString"}, "id": "3031", "properties": {}, "type": "Feature"}, {"bbox": [8.554799, 47.369292, 8.554988, 47.369316], "geometry": {"coordinates": [[[8.554799, 47.369316], [8.554988, 47.369292]]], "type": "MultiLineString"}, "id": "3035", "properties": {}, "type": "Feature"}, {"bbox": [8.549042, 47.376812, 8.559678, 47.38367], "geometry": {"coordinates": [[[8.549042, 47.38367], [8.549178, 47.383593], [8.549531, 47.383417], [8.550897, 47.382737], [8.551692, 47.382341], [8.551746, 47.3823], [8.551885, 47.38221], [8.552344, 47.381842], [8.553543, 47.380876], [8.553592, 47.380838], [8.553714, 47.38074], [8.553865, 47.380618], [8.554173, 47.380371], [8.554635, 47.379999], [8.554808, 47.379853], [8.554864, 47.379821], [8.555403, 47.37951], [8.555524, 47.379431], [8.555581, 47.379394], [8.557291, 47.378411], [8.5575, 47.378283], [8.557608, 47.378217], [8.558771, 47.377415], [8.559678, 47.376812]]], "type": "MultiLineString"}, "id": "3036", "properties": {}, "type": "Feature"}, {"bbox": [8.510786, 47.373325, 8.527768, 47.378062], "geometry": {"coordinates": [[[8.527768, 47.373325], [8.527594, 47.373384], [8.526675, 47.373701], [8.526479, 47.373771], [8.52627, 47.373852], [8.52608, 47.373924], [8.525891, 47.373996], [8.525702, 47.374069], [8.525286, 47.374205], [8.525208, 47.374228], [8.525127, 47.374246], [8.525044, 47.374258], [8.524132, 47.374289], [8.522298, 47.374351], [8.522291, 47.374351], [8.522285, 47.374351], [8.522278, 47.374352], [8.522091, 47.374367], [8.521906, 47.374392], [8.521725, 47.374427], [8.521549, 47.374472], [8.520459, 47.374728], [8.519349, 47.374977], [8.518645, 47.375155], [8.518495, 47.375205], [8.518257, 47.375269], [8.517898, 47.37536], [8.517037, 47.375562], [8.516642, 47.375641], [8.516363, 47.375699], [8.515968, 47.375815], [8.515587, 47.375951], [8.515223, 47.376106], [8.515157, 47.376134], [8.515092, 47.376162], [8.515027, 47.37619], [8.514695, 47.376338], [8.514368, 47.376489], [8.514045, 47.376645], [8.514003, 47.376666], [8.51382, 47.376757], [8.513432, 47.37695], [8.512948, 47.377174], [8.512879, 47.37721], [8.512808, 47.377246], [8.512736, 47.37728], [8.512639, 47.377324], [8.512541, 47.377367], [8.512441, 47.377408], [8.51233, 47.377452], [8.511942, 47.377607], [8.511818, 47.377657], [8.51162, 47.377736], [8.511168, 47.377917], [8.510786, 47.378062]]], "type": "MultiLineString"}, "id": "3049", "properties": {}, "type": "Feature"}, {"bbox": [8.485836, 47.399797, 8.495358, 47.403885], "geometry": {"coordinates": [[[8.495358, 47.399797], [8.494809, 47.399991], [8.494598, 47.40007], [8.494385, 47.400145], [8.49417, 47.400218], [8.494117, 47.400233], [8.494065, 47.400249], [8.494012, 47.400264], [8.493277, 47.400471], [8.492537, 47.40067], [8.491791, 47.400861], [8.491396, 47.40097], [8.491009, 47.401092], [8.490632, 47.401227], [8.489768, 47.401567], [8.489466, 47.401684], [8.489159, 47.401795], [8.488847, 47.401899], [8.488538, 47.401993], [8.488235, 47.40209], [8.48794, 47.402199], [8.487655, 47.402319], [8.48735, 47.402466], [8.487037, 47.402637], [8.486744, 47.402825], [8.486474, 47.403027], [8.486228, 47.403243], [8.486131, 47.403336], [8.486039, 47.403431], [8.485954, 47.403528], [8.485932, 47.40356], [8.485913, 47.403592], [8.485898, 47.403626], [8.485888, 47.40366], [8.485882, 47.403695], [8.485836, 47.403885]]], "type": "MultiLineString"}, "id": "3052", "properties": {}, "type": "Feature"}, {"bbox": [8.541512, 47.376985, 8.541626, 47.377996], "geometry": {"coordinates": [[[8.541626, 47.376985], [8.541586, 47.377047], [8.541555, 47.377111], [8.541532, 47.377177], [8.541518, 47.377244], [8.541512, 47.377312], [8.541516, 47.377379], [8.541529, 47.377446], [8.54155, 47.377512], [8.54158, 47.377577], [8.541599, 47.377619], [8.541612, 47.377661], [8.54162, 47.377705], [8.541622, 47.377748], [8.541618, 47.377792], [8.541608, 47.377835], [8.541592, 47.377877], [8.541571, 47.377919], [8.541544, 47.377958], [8.541513, 47.377996]]], "type": "MultiLineString"}, "id": "3064", "properties": {}, "type": "Feature"}, {"bbox": [8.498706, 47.419122, 8.506448, 47.422948], "geometry": {"coordinates": [[[8.506448, 47.419122], [8.505448, 47.419473], [8.505124, 47.419587], [8.504796, 47.419696], [8.504465, 47.4198], [8.504275, 47.419866], [8.504089, 47.419936], [8.503906, 47.420011], [8.503708, 47.420099], [8.503516, 47.420192], [8.503328, 47.420289], [8.503282, 47.420314], [8.503237, 47.42034], [8.503192, 47.420365], [8.502704, 47.420638], [8.502087, 47.420982], [8.501832, 47.421124], [8.501206, 47.421481], [8.500225, 47.422054], [8.498918, 47.422818], [8.498706, 47.422948]]], "type": "MultiLineString"}, "id": "3069", "properties": {}, "type": "Feature"}, {"bbox": [8.492953, 47.392223, 8.494662, 47.393266], "geometry": {"coordinates": [[[8.492953, 47.39326], [8.493352, 47.39325], [8.49375, 47.393252], [8.494148, 47.393266], [8.494315, 47.393261], [8.494347, 47.393258], [8.494378, 47.393253], [8.494409, 47.393247], [8.494439, 47.393238], [8.494468, 47.393228], [8.494495, 47.393216], [8.494521, 47.393203], [8.494545, 47.393188], [8.494566, 47.393172], [8.494587, 47.393153], [8.494605, 47.393134], [8.494621, 47.393113], [8.494633, 47.393091], [8.494643, 47.393069], [8.49465, 47.393046], [8.494662, 47.392223]]], "type": "MultiLineString"}, "id": "3070", "properties": {}, "type": "Feature"}, {"bbox": [8.593906, 47.363112, 8.595684, 47.364616], "geometry": {"coordinates": [[[8.59413, 47.363112], [8.593906, 47.363655], [8.59391, 47.363671], [8.593917, 47.363686], [8.593925, 47.363701], [8.593936, 47.363715], [8.593948, 47.363729], [8.593962, 47.363742], [8.593977, 47.363754], [8.593995, 47.363765], [8.594013, 47.363774], [8.594033, 47.363783], [8.594054, 47.36379], [8.594075, 47.363796], [8.594098, 47.363801], [8.595223, 47.364022], [8.595444, 47.364055], [8.595468, 47.364058], [8.595492, 47.364063], [8.595516, 47.364069], [8.595538, 47.364077], [8.59556, 47.364086], [8.59558, 47.364096], [8.595598, 47.364107], [8.595615, 47.36412], [8.595631, 47.364133], [8.595645, 47.364148], [8.595656, 47.364163], [8.595666, 47.364178], [8.595674, 47.364195], [8.595679, 47.364211], [8.595683, 47.364228], [8.595684, 47.364245], [8.595683, 47.364262], [8.595679, 47.364279], [8.595674, 47.364296], [8.595666, 47.364312], [8.595628, 47.364359], [8.595497, 47.364616]]], "type": "MultiLineString"}, "id": "3081", "properties": {}, "type": "Feature"}, {"bbox": [8.518543, 47.368781, 8.519571, 47.370286], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.518546, 47.37023], [8.518543, 47.370173], [8.518548, 47.370116], [8.51856, 47.37006], [8.51858, 47.370005], [8.518608, 47.369952], [8.518642, 47.3699], [8.518799, 47.369701], [8.51882, 47.369674], [8.519005, 47.369449], [8.519099, 47.369316], [8.519382, 47.36897], [8.519571, 47.368781]]], "type": "MultiLineString"}, "id": "3091", "properties": {}, "type": "Feature"}, {"bbox": [8.549289, 47.370542, 8.550645, 47.374668], "geometry": {"coordinates": [[[8.549289, 47.370542], [8.549818, 47.371111], [8.5505, 47.371833], [8.55054, 47.371878], [8.550574, 47.371924], [8.550602, 47.371973], [8.550623, 47.372023], [8.550637, 47.372074], [8.550645, 47.372125], [8.550645, 47.372177], [8.550639, 47.372229], [8.550625, 47.37228], [8.550605, 47.37233], [8.550441, 47.37265], [8.550351, 47.372844], [8.550265, 47.373038], [8.550183, 47.373233], [8.550141, 47.373338], [8.5501, 47.373443], [8.55006, 47.373548], [8.549872, 47.374048], [8.549597, 47.374668]]], "type": "MultiLineString"}, "id": "3092", "properties": {}, "type": "Feature"}, {"bbox": [8.510637, 47.378546, 8.514463, 47.38247], "geometry": {"coordinates": [[[8.510637, 47.378546], [8.510663, 47.378571], [8.511212, 47.37913], [8.512578, 47.380532], [8.513511, 47.381491], [8.513634, 47.381617], [8.514463, 47.38247]]], "type": "MultiLineString"}, "id": "3093", "properties": {}, "type": "Feature"}, {"bbox": [8.534234, 47.368602, 8.535198, 47.368911], "geometry": {"coordinates": [[[8.535198, 47.368911], [8.534966, 47.368801], [8.534811, 47.368792], [8.534369, 47.368643], [8.534234, 47.368602]]], "type": "MultiLineString"}, "id": "3104", "properties": {}, "type": "Feature"}, {"bbox": [8.472012, 47.3919, 8.477724, 47.39398], "geometry": {"coordinates": [[[8.477724, 47.3919], [8.477671, 47.391922], [8.477616, 47.391942], [8.47756, 47.391961], [8.474035, 47.393207], [8.473785, 47.393293], [8.473537, 47.393382], [8.473292, 47.393473], [8.47255, 47.393761], [8.472012, 47.39398]]], "type": "MultiLineString"}, "id": "3108", "properties": {}, "type": "Feature"}, {"bbox": [8.546999, 47.369215, 8.548037, 47.373075], "geometry": {"coordinates": [[[8.548037, 47.369215], [8.547614, 47.36975], [8.547286, 47.370145], [8.547154, 47.370319], [8.547105, 47.370383], [8.547064, 47.370449], [8.547033, 47.370518], [8.547012, 47.370588], [8.547001, 47.370659], [8.546999, 47.370731], [8.546999, 47.370748], [8.547001, 47.370764], [8.547003, 47.370781], [8.547005, 47.370806], [8.54701, 47.37083], [8.547018, 47.370855], [8.547029, 47.370878], [8.547043, 47.370902], [8.547059, 47.370924], [8.547461, 47.371343], [8.547542, 47.371434], [8.54761, 47.371529], [8.547663, 47.371629], [8.547616, 47.371875], [8.547548, 47.372296], [8.547532, 47.372405], [8.547512, 47.372514], [8.547488, 47.372622], [8.547432, 47.372751], [8.547357, 47.372875], [8.547267, 47.372994], [8.547257, 47.373009], [8.547285, 47.373014], [8.547313, 47.373021], [8.547339, 47.37303], [8.547364, 47.37304], [8.547388, 47.373052], [8.54741, 47.373065], [8.547424, 47.373075]]], "type": "MultiLineString"}, "id": "3113", "properties": {}, "type": "Feature"}, {"bbox": [8.552586, 47.365785, 8.552663, 47.366138], "geometry": {"coordinates": [[[8.552612, 47.365785], [8.552586, 47.365867], [8.552663, 47.366138]]], "type": "MultiLineString"}, "id": "3115", "properties": {}, "type": "Feature"}, {"bbox": [8.560386, 47.3616, 8.561212, 47.3619], "geometry": {"coordinates": [[[8.560386, 47.361856], [8.560408, 47.361866], [8.560431, 47.361876], [8.560455, 47.361883], [8.56048, 47.36189], [8.560506, 47.361895], [8.560532, 47.361898], [8.560559, 47.3619], [8.560585, 47.3619], [8.560612, 47.361898], [8.560638, 47.361895], [8.560696, 47.36189], [8.560752, 47.361882], [8.560808, 47.36187], [8.560862, 47.361855], [8.560913, 47.361837], [8.560963, 47.361816], [8.561009, 47.361793], [8.561052, 47.361766], [8.561092, 47.361738], [8.561129, 47.361707], [8.561161, 47.361674], [8.561189, 47.361639], [8.561212, 47.361603], [8.561096, 47.3616], [8.560979, 47.361601], [8.560863, 47.361604], [8.560811, 47.361611], [8.56076, 47.36162], [8.560711, 47.361632], [8.560663, 47.361647], [8.560617, 47.361665], [8.560574, 47.361686], [8.560534, 47.361709], [8.560497, 47.361735], [8.560464, 47.361762], [8.560434, 47.361792], [8.560408, 47.361823], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3129", "properties": {}, "type": "Feature"}, {"bbox": [8.534473, 47.345158, 8.535634, 47.345287], "geometry": {"coordinates": [[[8.535634, 47.345287], [8.534473, 47.345158]]], "type": "MultiLineString"}, "id": "3132", "properties": {}, "type": "Feature"}, {"bbox": [8.527918, 47.369145, 8.53031, 47.371074], "geometry": {"coordinates": [[[8.53031, 47.371074], [8.530237, 47.370963], [8.530158, 47.370854], [8.530075, 47.370747], [8.529938, 47.370583], [8.529788, 47.370424], [8.529627, 47.370271], [8.529465, 47.370134], [8.529295, 47.370001], [8.529117, 47.369874], [8.528759, 47.369645], [8.528676, 47.369596], [8.527918, 47.369145]]], "type": "MultiLineString"}, "id": "3143", "properties": {}, "type": "Feature"}, {"bbox": [8.514064, 47.370585, 8.521549, 47.374472], "geometry": {"coordinates": [[[8.521549, 47.374472], [8.52149, 47.374378], [8.520994, 47.374148], [8.520333, 47.373862], [8.520274, 47.373837], [8.519998, 47.37372], [8.519914, 47.373683], [8.519768, 47.373621], [8.519477, 47.373495], [8.518982, 47.373249], [8.518726, 47.373116], [8.518177, 47.372851], [8.517966, 47.372762], [8.517529, 47.372557], [8.517311, 47.372422], [8.516898, 47.372176], [8.516861, 47.372153], [8.516492, 47.371934], [8.516088, 47.371693], [8.515909, 47.37159], [8.515778, 47.371515], [8.514814, 47.370986], [8.514064, 47.370585]]], "type": "MultiLineString"}, "id": "3161", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.390459, 8.525018, 47.391122], "geometry": {"coordinates": [[[8.525018, 47.39047], [8.524907, 47.390459], [8.524622, 47.390534], [8.524328, 47.390591], [8.524029, 47.39063], [8.523836, 47.390648], [8.523642, 47.390656], [8.523447, 47.390655], [8.523417, 47.390654], [8.523386, 47.390654], [8.523355, 47.390657], [8.523325, 47.390661], [8.523295, 47.390667], [8.523266, 47.390675], [8.523239, 47.390685], [8.523213, 47.390696], [8.523188, 47.390709], [8.523165, 47.390723], [8.523144, 47.390739], [8.523126, 47.390755], [8.523109, 47.390773], [8.523095, 47.390792], [8.523083, 47.390811], [8.523074, 47.390831], [8.523067, 47.390852], [8.523063, 47.390873], [8.523052, 47.390912], [8.523037, 47.39095], [8.523016, 47.390988], [8.52299, 47.391024], [8.52296, 47.391058], [8.522926, 47.39109], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "3171", "properties": {}, "type": "Feature"}, {"bbox": [8.488134, 47.375749, 8.50988, 47.379396], "geometry": {"coordinates": [[[8.50988, 47.378224], [8.509746, 47.378198], [8.508913, 47.378028], [8.508558, 47.377957], [8.508205, 47.37788], [8.507853, 47.3778], [8.507382, 47.377711], [8.506903, 47.377645], [8.506417, 47.377603], [8.503705, 47.377496], [8.502829, 47.377461], [8.502683, 47.377456], [8.501944, 47.377427], [8.501028, 47.377391], [8.500586, 47.377374], [8.500145, 47.377374], [8.499703, 47.377391], [8.499478, 47.377408], [8.499255, 47.377438], [8.499036, 47.37748], [8.498823, 47.377534], [8.498618, 47.3776], [8.49846, 47.37766], [8.497979, 47.377847], [8.497759, 47.377931], [8.497543, 47.37802], [8.497331, 47.378114], [8.497066, 47.378243], [8.496816, 47.378386], [8.496582, 47.378541], [8.495294, 47.379396], [8.494893, 47.379072], [8.494578, 47.37883], [8.494536, 47.3788], [8.494493, 47.37877], [8.494449, 47.37874], [8.4943, 47.378648], [8.494144, 47.378562], [8.493981, 47.378482], [8.493694, 47.378356], [8.493549, 47.378295], [8.493407, 47.378231], [8.493266, 47.378166], [8.493143, 47.378108], [8.493022, 47.378048], [8.492903, 47.377987], [8.492127, 47.377602], [8.490781, 47.376951], [8.49009, 47.376617], [8.489983, 47.376575], [8.489319, 47.376258], [8.488965, 47.376089], [8.488704, 47.375958], [8.488426, 47.375845], [8.488134, 47.375749]]], "type": "MultiLineString"}, "id": "3172", "properties": {}, "type": "Feature"}, {"bbox": [8.551057, 47.366138, 8.552663, 47.366847], "geometry": {"coordinates": [[[8.552663, 47.366138], [8.551057, 47.366847]]], "type": "MultiLineString"}, "id": "3189", "properties": {}, "type": "Feature"}, {"bbox": [8.533193, 47.398872, 8.543265, 47.410932], "geometry": {"coordinates": [[[8.533209, 47.398872], [8.533193, 47.399046], [8.5332, 47.399219], [8.533229, 47.399392], [8.533279, 47.399562], [8.533351, 47.399729], [8.533444, 47.399891], [8.533557, 47.400046], [8.534001, 47.40067], [8.534443, 47.401291], [8.534505, 47.401377], [8.534793, 47.401765], [8.535129, 47.402134], [8.535511, 47.402483], [8.535729, 47.402644], [8.53593, 47.402816], [8.536111, 47.402998], [8.536233, 47.403138], [8.536344, 47.403282], [8.536443, 47.403431], [8.53673, 47.403926], [8.537594, 47.405748], [8.537944, 47.406501], [8.537973, 47.406562], [8.538291, 47.407172], [8.538495, 47.407602], [8.538546, 47.407693], [8.538598, 47.407784], [8.538651, 47.407874], [8.538694, 47.407948], [8.538739, 47.408022], [8.538784, 47.408096], [8.538911, 47.40828], [8.539048, 47.40846], [8.539196, 47.408637], [8.539312, 47.40875], [8.539437, 47.408859], [8.539572, 47.408962], [8.539688, 47.409041], [8.539809, 47.409116], [8.539935, 47.409188], [8.540416, 47.40947], [8.540582, 47.409567], [8.541221, 47.409941], [8.542032, 47.410375], [8.543103, 47.410856], [8.543157, 47.410882], [8.54321, 47.410908], [8.543265, 47.410932]]], "type": "MultiLineString"}, "id": "3208", "properties": {}, "type": "Feature"}, {"bbox": [8.547663, 47.371629, 8.548691, 47.372101], "geometry": {"coordinates": [[[8.548691, 47.372101], [8.548532, 47.372018], [8.548324, 47.371932], [8.548005, 47.371749], [8.547908, 47.3717], [8.547663, 47.371629]]], "type": "MultiLineString"}, "id": "3209", "properties": {}, "type": "Feature"}, {"bbox": [8.527768, 47.373181, 8.527977, 47.373325], "geometry": {"coordinates": [[[8.527977, 47.373181], [8.52795, 47.373209], [8.527919, 47.373237], [8.527886, 47.373262], [8.527849, 47.373285], [8.52781, 47.373306], [8.527768, 47.373325]]], "type": "MultiLineString"}, "id": "3210", "properties": {}, "type": "Feature"}, {"bbox": [8.508416, 47.396857, 8.540929, 47.418317], "geometry": {"coordinates": [[[8.540929, 47.396857], [8.540611, 47.397143], [8.540047, 47.397735], [8.539849, 47.397943], [8.539608, 47.398197], [8.539207, 47.398607], [8.539068, 47.39875], [8.538715, 47.399132], [8.537407, 47.400506], [8.537194, 47.400729], [8.537184, 47.40074], [8.537173, 47.400751], [8.536402, 47.40156], [8.535973, 47.402009], [8.535913, 47.40207], [8.535511, 47.402483], [8.534622, 47.403394], [8.534294, 47.403729], [8.533945, 47.404087], [8.533609, 47.40446], [8.533377, 47.404716], [8.533159, 47.404945], [8.532279, 47.405864], [8.531685, 47.406484], [8.530788, 47.407422], [8.530671, 47.407541], [8.530163, 47.408028], [8.529527, 47.408596], [8.528877, 47.409176], [8.528816, 47.409232], [8.528502, 47.40951], [8.528313, 47.409669], [8.528114, 47.409822], [8.527905, 47.409968], [8.527678, 47.410118], [8.52708, 47.410511], [8.526977, 47.410578], [8.525735, 47.411394], [8.525691, 47.411423], [8.525513, 47.411535], [8.525327, 47.411639], [8.525132, 47.411736], [8.524639, 47.411953], [8.524215, 47.412139], [8.523629, 47.412397], [8.522573, 47.41284], [8.522352, 47.412933], [8.521478, 47.413299], [8.521443, 47.413314], [8.520766, 47.413595], [8.520752, 47.413601], [8.520739, 47.413606], [8.520725, 47.413612], [8.520455, 47.413715], [8.52018, 47.41381], [8.519899, 47.413898], [8.519698, 47.41395], [8.518941, 47.414144], [8.518455, 47.414268], [8.516751, 47.414696], [8.515154, 47.415096], [8.513959, 47.415398], [8.513672, 47.41547], [8.513419, 47.415541], [8.513173, 47.415622], [8.512933, 47.415712], [8.51277, 47.415781], [8.512611, 47.415855], [8.512456, 47.415933], [8.511367, 47.41644], [8.511016, 47.416609], [8.510896, 47.41667], [8.510777, 47.416731], [8.51066, 47.416794], [8.510327, 47.416986], [8.510008, 47.417188], [8.509702, 47.4174], [8.509276, 47.417711], [8.508799, 47.418061], [8.508673, 47.418148], [8.508546, 47.418233], [8.508416, 47.418317]]], "type": "MultiLineString"}, "id": "3215", "properties": {}, "type": "Feature"}, {"bbox": [8.494099, 47.365031, 8.495786, 47.367709], "geometry": {"coordinates": [[[8.495618, 47.367709], [8.495786, 47.367528], [8.495453, 47.367365], [8.495365, 47.367321], [8.495283, 47.367272], [8.495208, 47.367218], [8.495139, 47.367161], [8.495079, 47.367099], [8.495026, 47.367034], [8.494982, 47.366966], [8.494788, 47.366647], [8.49461, 47.366324], [8.494448, 47.365998], [8.494297, 47.365681], [8.49418, 47.365358], [8.494099, 47.365031]]], "type": "MultiLineString"}, "id": "3221", "properties": {}, "type": "Feature"}, {"bbox": [8.58422, 47.381907, 8.584779, 47.382251], "geometry": {"coordinates": [[[8.58422, 47.381907], [8.584255, 47.381917], [8.584337, 47.381947], [8.584415, 47.381982], [8.584488, 47.382021], [8.584556, 47.382064], [8.584619, 47.38211], [8.584675, 47.38216], [8.584779, 47.382251]]], "type": "MultiLineString"}, "id": "3242", "properties": {}, "type": "Feature"}, {"bbox": [8.509875, 47.378049, 8.510786, 47.378546], "geometry": {"coordinates": [[[8.510637, 47.378546], [8.510625, 47.378496], [8.510618, 47.378445], [8.510618, 47.378394], [8.510624, 47.378344], [8.510637, 47.378293], [8.510655, 47.378244], [8.510679, 47.378196], [8.510709, 47.37815], [8.510745, 47.378105], [8.510786, 47.378062], [8.510618, 47.378053], [8.510509, 47.378049], [8.510399, 47.378052], [8.510291, 47.378061], [8.510184, 47.378077], [8.510102, 47.378094], [8.51006, 47.378105], [8.51002, 47.378119], [8.509981, 47.378135], [8.509945, 47.378153], [8.509932, 47.378161], [8.50992, 47.37817], [8.509909, 47.37818], [8.509899, 47.37819], [8.509891, 47.378201], [8.509885, 47.378212], [8.50988, 47.378224], [8.509877, 47.378239], [8.509875, 47.378255], [8.509876, 47.378271], [8.509878, 47.378287], [8.509883, 47.378302], [8.509889, 47.378317], [8.509897, 47.378332], [8.509907, 47.378346], [8.509919, 47.37836], [8.509932, 47.378373], [8.509947, 47.378385], [8.509964, 47.378396], [8.509982, 47.378406], [8.510001, 47.378415], [8.510032, 47.378428], [8.510065, 47.378438], [8.510099, 47.378447], [8.510135, 47.378453], [8.51017, 47.378456], [8.51033, 47.378475], [8.510486, 47.378505], [8.510637, 47.378546]]], "type": "MultiLineString"}, "id": "3243", "properties": {}, "type": "Feature"}, {"bbox": [8.557086, 47.360591, 8.560386, 47.361856], "geometry": {"coordinates": [[[8.557086, 47.360591], [8.557948, 47.360873], [8.558063, 47.360911], [8.559346, 47.361332], [8.559592, 47.361412], [8.559826, 47.361507], [8.560048, 47.361615], [8.560256, 47.361735], [8.560294, 47.361762], [8.560329, 47.361791], [8.56036, 47.361823], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3244", "properties": {}, "type": "Feature"}, {"bbox": [8.559817, 47.378417, 8.57154, 47.381487], "geometry": {"coordinates": [[[8.559817, 47.379362], [8.559982, 47.379349], [8.560147, 47.379334], [8.560311, 47.379315], [8.561625, 47.379122], [8.561726, 47.379107], [8.561828, 47.379092], [8.563799, 47.378805], [8.564537, 47.378697], [8.566177, 47.378457], [8.566434, 47.378429], [8.566693, 47.378417], [8.566953, 47.378419], [8.567211, 47.378437], [8.567227, 47.378438], [8.567242, 47.37844], [8.567258, 47.378442], [8.568192, 47.378543], [8.568281, 47.378552], [8.568392, 47.378563], [8.56909, 47.378627], [8.569297, 47.378644], [8.569502, 47.378672], [8.569703, 47.378709], [8.569808, 47.378741], [8.569908, 47.37878], [8.570002, 47.378825], [8.57009, 47.378875], [8.570171, 47.378931], [8.570244, 47.378991], [8.570309, 47.379055], [8.570365, 47.379124], [8.570412, 47.379195], [8.570475, 47.379294], [8.570801, 47.379981], [8.570829, 47.380047], [8.570868, 47.38014], [8.570889, 47.380189], [8.57142, 47.38124], [8.571482, 47.381371], [8.57154, 47.381487]]], "type": "MultiLineString"}, "id": "3246", "properties": {}, "type": "Feature"}, {"bbox": [8.542489, 47.399138, 8.548757, 47.400223], "geometry": {"coordinates": [[[8.542489, 47.399138], [8.542563, 47.399193], [8.542643, 47.399245], [8.542729, 47.399292], [8.54282, 47.399335], [8.542916, 47.399372], [8.543213, 47.399478], [8.54339, 47.399535], [8.543573, 47.399583], [8.54376, 47.399622], [8.544406, 47.399745], [8.544438, 47.399838], [8.545441, 47.400028], [8.546257, 47.40013], [8.547083, 47.400181], [8.547913, 47.400182], [8.548125, 47.400174], [8.548337, 47.400178], [8.548549, 47.400195], [8.548757, 47.400223]]], "type": "MultiLineString"}, "id": "3247", "properties": {}, "type": "Feature"}, {"bbox": [8.534913, 47.386166, 8.535383, 47.386983], "geometry": {"coordinates": [[[8.535288, 47.386166], [8.535317, 47.386203], [8.53534, 47.386243], [8.535359, 47.386283], [8.535372, 47.386324], [8.53538, 47.386366], [8.535383, 47.386408], [8.535381, 47.38645], [8.535373, 47.386492], [8.53536, 47.386534], [8.535342, 47.386574], [8.535319, 47.386613], [8.535291, 47.386651], [8.535259, 47.386687], [8.535158, 47.386813], [8.535062, 47.386885], [8.535019, 47.38692], [8.534913, 47.386983]]], "type": "MultiLineString"}, "id": "3252", "properties": {}, "type": "Feature"}, {"bbox": [8.554431, 47.361856, 8.560386, 47.364725], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554632, 47.36469], [8.554866, 47.36459], [8.555215, 47.364439], [8.555421, 47.36435], [8.555639, 47.364285], [8.555857, 47.364221], [8.556077, 47.364159], [8.556191, 47.36412], [8.556302, 47.364075], [8.556408, 47.364026], [8.556444, 47.364009], [8.55648, 47.363991], [8.556514, 47.363973], [8.557179, 47.36352], [8.557379, 47.363384], [8.55755, 47.363268], [8.557861, 47.363054], [8.558178, 47.362844], [8.5585, 47.362637], [8.558605, 47.362577], [8.558712, 47.362518], [8.55882, 47.36246], [8.558854, 47.362442], [8.558888, 47.362424], [8.558922, 47.362406], [8.559232, 47.36225], [8.559559, 47.362109], [8.5599, 47.361986], [8.560386, 47.361856]]], "type": "MultiLineString"}, "id": "3256", "properties": {}, "type": "Feature"}, {"bbox": [8.538144, 47.392458, 8.538343, 47.392602], "geometry": {"coordinates": [[[8.538144, 47.392602], [8.538154, 47.392583], [8.538166, 47.392566], [8.53818, 47.392549], [8.538196, 47.392533], [8.538215, 47.392518], [8.538235, 47.392504], [8.538256, 47.392492], [8.538279, 47.39248], [8.538304, 47.392471], [8.53833, 47.392462], [8.538343, 47.392458]]], "type": "MultiLineString"}, "id": "3274", "properties": {}, "type": "Feature"}, {"bbox": [8.56264, 47.346254, 8.564715, 47.348142], "geometry": {"coordinates": [[[8.562669, 47.348142], [8.562655, 47.348107], [8.562646, 47.348072], [8.56264, 47.348036], [8.56264, 47.348], [8.562643, 47.347963], [8.562651, 47.347928], [8.562663, 47.347892], [8.562679, 47.347858], [8.562847, 47.347636], [8.563033, 47.34742], [8.563237, 47.347212], [8.56352, 47.346942], [8.563838, 47.346691], [8.564188, 47.346459], [8.564264, 47.346412], [8.564345, 47.34637], [8.564432, 47.346333], [8.564523, 47.346301], [8.564617, 47.346274], [8.564715, 47.346254]]], "type": "MultiLineString"}, "id": "3291", "properties": {}, "type": "Feature"}, {"bbox": [8.516723, 47.331188, 8.518347, 47.332973], "geometry": {"coordinates": [[[8.518347, 47.332973], [8.518059, 47.33264], [8.517804, 47.332416], [8.517407, 47.332038], [8.517163, 47.331816], [8.517022, 47.33167], [8.516901, 47.331516], [8.516801, 47.331355], [8.516723, 47.331188]]], "type": "MultiLineString"}, "id": "3304", "properties": {}, "type": "Feature"}, {"bbox": [8.524229, 47.392321, 8.524823, 47.393318], "geometry": {"coordinates": [[[8.524229, 47.392321], [8.524311, 47.39242], [8.524384, 47.392522], [8.524446, 47.392627], [8.524517, 47.392757], [8.524586, 47.392887], [8.524653, 47.393017], [8.524706, 47.393136], [8.524714, 47.393154], [8.524723, 47.393171], [8.524733, 47.393188], [8.524793, 47.393248], [8.5248, 47.393254], [8.524806, 47.39326], [8.524811, 47.393267], [8.524815, 47.393274], [8.524819, 47.393281], [8.524821, 47.393288], [8.524823, 47.393296], [8.524823, 47.393303], [8.524823, 47.393311], [8.524821, 47.393318]]], "type": "MultiLineString"}, "id": "3307", "properties": {}, "type": "Feature"}, {"bbox": [8.55722, 47.368419, 8.559014, 47.369314], "geometry": {"coordinates": [[[8.55722, 47.369314], [8.557383, 47.369238], [8.557534, 47.369153], [8.557672, 47.369058], [8.557764, 47.368992], [8.557859, 47.368929], [8.557958, 47.368868], [8.558134, 47.368772], [8.558319, 47.368685], [8.558513, 47.368608], [8.558676, 47.36854], [8.558843, 47.368477], [8.559014, 47.368419]]], "type": "MultiLineString"}, "id": "3312", "properties": {}, "type": "Feature"}, {"bbox": [8.534169, 47.373193, 8.535306, 47.373711], "geometry": {"coordinates": [[[8.535306, 47.373193], [8.534792, 47.373423], [8.534169, 47.373711]]], "type": "MultiLineString"}, "id": "3321", "properties": {}, "type": "Feature"}, {"bbox": [8.544955, 47.386786, 8.571432, 47.404275], "geometry": {"coordinates": [[[8.547575, 47.386786], [8.547505, 47.386882], [8.547441, 47.386981], [8.547382, 47.387081], [8.546502, 47.388653], [8.546212, 47.389204], [8.545982, 47.389639], [8.545696, 47.390147], [8.545635, 47.390262], [8.545555, 47.390413], [8.545511, 47.390539], [8.545434, 47.390821], [8.545382, 47.391006], [8.545306, 47.391211], [8.545241, 47.391418], [8.545187, 47.391626], [8.545137, 47.392028], [8.545105, 47.392349], [8.545065, 47.392718], [8.544984, 47.393514], [8.544971, 47.393608], [8.544962, 47.393701], [8.544957, 47.393795], [8.544956, 47.393837], [8.544955, 47.393878], [8.544955, 47.39392], [8.544961, 47.394062], [8.544976, 47.394204], [8.544999, 47.394345], [8.545186, 47.395072], [8.545415, 47.395966], [8.545484, 47.396187], [8.545575, 47.396404], [8.545689, 47.396616], [8.546039, 47.397125], [8.546416, 47.397625], [8.546821, 47.398115], [8.547464, 47.398832], [8.547489, 47.399073], [8.547537, 47.399312], [8.547607, 47.399549], [8.547653, 47.399713], [8.54772, 47.399874], [8.547806, 47.400031], [8.547913, 47.400182], [8.54801, 47.400288], [8.548121, 47.400389], [8.548244, 47.400483], [8.548379, 47.40057], [8.548524, 47.400648], [8.548645, 47.400704], [8.548768, 47.400758], [8.548893, 47.400809], [8.549443, 47.400986], [8.549986, 47.401174], [8.55052, 47.401372], [8.551626, 47.401894], [8.552211, 47.40214], [8.552237, 47.402148], [8.552264, 47.402154], [8.552292, 47.402159], [8.55232, 47.402163], [8.552349, 47.402164], [8.552378, 47.402164], [8.552406, 47.402162], [8.552434, 47.402159], [8.552462, 47.402154], [8.552489, 47.402147], [8.552515, 47.402139], [8.55254, 47.402129], [8.552564, 47.402118], [8.552725, 47.402192], [8.552887, 47.402263], [8.553232, 47.402414], [8.553455, 47.402512], [8.553937, 47.402724], [8.55418, 47.402823], [8.55443, 47.402913], [8.554686, 47.402995], [8.554733, 47.403009], [8.55478, 47.403022], [8.554826, 47.403036], [8.555061, 47.403035], [8.555296, 47.403049], [8.555527, 47.403077], [8.555753, 47.403121], [8.555972, 47.403178], [8.557023, 47.403453], [8.557114, 47.403483], [8.557204, 47.403514], [8.557293, 47.403548], [8.557327, 47.403566], [8.55736, 47.403585], [8.557394, 47.403603], [8.557472, 47.403636], [8.557554, 47.403663], [8.557639, 47.403686], [8.557992, 47.403781], [8.558452, 47.403901], [8.559069, 47.404062], [8.559227, 47.404097], [8.559387, 47.404126], [8.559549, 47.404148], [8.559963, 47.404171], [8.560378, 47.404187], [8.560794, 47.404196], [8.560864, 47.404195], [8.560934, 47.404198], [8.561003, 47.404205], [8.561072, 47.404216], [8.561138, 47.404232], [8.561202, 47.404252], [8.561263, 47.404275], [8.562067, 47.404198], [8.56293, 47.404114], [8.563448, 47.404043], [8.563712, 47.404007], [8.565697, 47.403761], [8.565951, 47.403739], [8.566208, 47.403731], [8.566464, 47.403736], [8.567377, 47.403804], [8.567542, 47.403817], [8.567648, 47.403825], [8.568761, 47.40391], [8.569003, 47.403922], [8.569246, 47.403923], [8.569488, 47.403913], [8.56957, 47.403907], [8.569651, 47.4039], [8.569732, 47.403892], [8.570068, 47.403852], [8.571236, 47.403712], [8.571301, 47.403705], [8.571367, 47.403702], [8.571432, 47.403701]]], "type": "MultiLineString"}, "id": "3324", "properties": {}, "type": "Feature"}, {"bbox": [8.541416, 47.376963, 8.542014, 47.378523], "geometry": {"coordinates": [[[8.541897, 47.376963], [8.541944, 47.377063], [8.541977, 47.377165], [8.541995, 47.377269], [8.542013, 47.377409], [8.542014, 47.37755], [8.541996, 47.377691], [8.54196, 47.37783], [8.541906, 47.377967], [8.541866, 47.378057], [8.541815, 47.378144], [8.541754, 47.378228], [8.541683, 47.378309], [8.541603, 47.378385], [8.541514, 47.378457], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "3327", "properties": {}, "type": "Feature"}, {"bbox": [8.541694, 47.37442, 8.541925, 47.376023], "geometry": {"coordinates": [[[8.541694, 47.37442], [8.541837, 47.37511], [8.541874, 47.375288], [8.541904, 47.375466], [8.541925, 47.375645], [8.541924, 47.375665], [8.541923, 47.375685], [8.541921, 47.375705], [8.541906, 47.375811], [8.541885, 47.375917], [8.541858, 47.376023]]], "type": "MultiLineString"}, "id": "3328", "properties": {}, "type": "Feature"}, {"bbox": [8.565443, 47.406605, 8.567325, 47.407999], "geometry": {"coordinates": [[[8.567325, 47.406605], [8.567186, 47.406673], [8.566854, 47.406836], [8.566543, 47.407017], [8.566255, 47.407216], [8.566169, 47.40728], [8.566088, 47.407346], [8.566011, 47.407415], [8.565934, 47.407484], [8.565861, 47.407555], [8.56579, 47.407627], [8.565443, 47.407999]]], "type": "MultiLineString"}, "id": "3330", "properties": {}, "type": "Feature"}, {"bbox": [8.59457, 47.359878, 8.602367, 47.361341], "geometry": {"coordinates": [[[8.59457, 47.359878], [8.595147, 47.36], [8.595896, 47.360152], [8.596253, 47.360224], [8.596802, 47.360397], [8.597102, 47.360491], [8.598733, 47.360881], [8.599192, 47.36098], [8.599461, 47.361029], [8.599733, 47.361071], [8.600008, 47.361107], [8.600429, 47.361149], [8.600917, 47.361189], [8.602056, 47.361294], [8.602226, 47.361319], [8.602367, 47.361341]]], "type": "MultiLineString"}, "id": "3331", "properties": {}, "type": "Feature"}, {"bbox": [8.572782, 47.352719, 8.573826, 47.352901], "geometry": {"coordinates": [[[8.572782, 47.352901], [8.572927, 47.352834], [8.572952, 47.352826], [8.572978, 47.35282], [8.573004, 47.352815], [8.573031, 47.352812], [8.573059, 47.352811], [8.573086, 47.352811], [8.573113, 47.352813], [8.57314, 47.352816], [8.57349, 47.352873], [8.573512, 47.352877], [8.573535, 47.352879], [8.573557, 47.35288], [8.57358, 47.352879], [8.573602, 47.352877], [8.573624, 47.352874], [8.573646, 47.35287], [8.573667, 47.352864], [8.573687, 47.352857], [8.573706, 47.352848], [8.573724, 47.352839], [8.57374, 47.352828], [8.573755, 47.352817], [8.573769, 47.352805], [8.573781, 47.352792], [8.573791, 47.352778], [8.573826, 47.352719]]], "type": "MultiLineString"}, "id": "3340", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.372596, 8.534761, 47.372597], "geometry": {"coordinates": [[[8.534761, 47.372596], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "3342", "properties": {}, "type": "Feature"}, {"bbox": [8.523063, 47.39047, 8.525018, 47.391306], "geometry": {"coordinates": [[[8.525018, 47.39047], [8.524876, 47.390557], [8.524775, 47.390598], [8.524669, 47.390633], [8.52456, 47.390662], [8.524448, 47.390684], [8.524333, 47.3907], [8.523434, 47.390814], [8.523396, 47.39082], [8.523359, 47.390828], [8.523323, 47.390838], [8.523288, 47.39085], [8.523255, 47.390864], [8.523224, 47.39088], [8.523196, 47.390898], [8.523169, 47.390917], [8.523146, 47.390938], [8.523124, 47.39096], [8.523106, 47.390983], [8.523091, 47.391008], [8.523079, 47.391033], [8.52307, 47.391058], [8.523065, 47.391085], [8.523063, 47.391111], [8.523064, 47.391137], [8.523069, 47.391163], [8.523077, 47.391189], [8.523072, 47.391306]]], "type": "MultiLineString"}, "id": "3343", "properties": {}, "type": "Feature"}, {"bbox": [8.527768, 47.373034, 8.528055, 47.373181], "geometry": {"coordinates": [[[8.528055, 47.37309], [8.528033, 47.373122], [8.528007, 47.373152], [8.527977, 47.373181], [8.527944, 47.373146], [8.527906, 47.373114], [8.527864, 47.373085], [8.527818, 47.373058], [8.527768, 47.373034]]], "type": "MultiLineString"}, "id": "3344", "properties": {}, "type": "Feature"}, {"bbox": [8.534147, 47.366428, 8.540541, 47.372272], "geometry": {"coordinates": [[[8.540541, 47.366428], [8.540399, 47.366454], [8.54036, 47.36649], [8.540074, 47.366756], [8.539749, 47.367116], [8.539185, 47.367741], [8.538018, 47.369021], [8.537453, 47.369376], [8.536913, 47.369707], [8.536084, 47.37023], [8.535249, 47.370745], [8.53503, 47.370891], [8.534831, 47.37105], [8.534652, 47.37122], [8.534215, 47.371684], [8.534196, 47.371708], [8.534179, 47.371734], [8.534166, 47.37176], [8.534156, 47.371787], [8.53415, 47.371815], [8.534147, 47.371843], [8.534147, 47.371871], [8.534151, 47.371899], [8.534261, 47.372272]]], "type": "MultiLineString"}, "id": "3345", "properties": {}, "type": "Feature"}, {"bbox": [8.502955, 47.408631, 8.50384, 47.409077], "geometry": {"coordinates": [[[8.50384, 47.408846], [8.503583, 47.408733], [8.503548, 47.408711], [8.503511, 47.408691], [8.503472, 47.408673], [8.503435, 47.408659], [8.503397, 47.408647], [8.503358, 47.408637], [8.50333, 47.408633], [8.503301, 47.408631], [8.503272, 47.408631], [8.503243, 47.408633], [8.503215, 47.408636], [8.503187, 47.408641], [8.50316, 47.408647], [8.503133, 47.408656], [8.503108, 47.408665], [8.503084, 47.408677], [8.503062, 47.408689], [8.503042, 47.408703], [8.503023, 47.408718], [8.503007, 47.408734], [8.502992, 47.408751], [8.50298, 47.408768], [8.50297, 47.408786], [8.502963, 47.408805], [8.502958, 47.408824], [8.502955, 47.408844], [8.502955, 47.408863], [8.502957, 47.408882], [8.502962, 47.408901], [8.502969, 47.40892], [8.502978, 47.408939], [8.50299, 47.408956], [8.503004, 47.408973], [8.50302, 47.408989], [8.503038, 47.409004], [8.503058, 47.409018], [8.50309, 47.409033], [8.503125, 47.409046], [8.503161, 47.409057], [8.503199, 47.409066], [8.503237, 47.409072], [8.503276, 47.409076], [8.503315, 47.409077], [8.503355, 47.409076], [8.503394, 47.409073], [8.503433, 47.409067], [8.50347, 47.40906], [8.503507, 47.409049], [8.503672, 47.409036]]], "type": "MultiLineString"}, "id": "3346", "properties": {}, "type": "Feature"}, {"bbox": [8.545002, 47.366345, 8.545814, 47.36675], "geometry": {"coordinates": [[[8.545002, 47.366345], [8.545224, 47.366437], [8.545631, 47.366617], [8.545674, 47.366639], [8.545714, 47.366663], [8.545751, 47.36669], [8.545784, 47.366719], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3349", "properties": {}, "type": "Feature"}, {"bbox": [8.531326, 47.369649, 8.53365, 47.373056], "geometry": {"coordinates": [[[8.53365, 47.369649], [8.532998, 47.370024], [8.532577, 47.37026], [8.532418, 47.370358], [8.532141, 47.370524], [8.53207, 47.37057], [8.532, 47.370617], [8.53193, 47.370664], [8.53153, 47.370899], [8.531464, 47.370933], [8.531396, 47.370964], [8.531326, 47.370994], [8.531397, 47.371233], [8.531427, 47.371326], [8.531468, 47.371416], [8.53152, 47.371504], [8.531583, 47.371589], [8.531657, 47.37167], [8.53174, 47.371746], [8.532064, 47.372036], [8.532125, 47.372088], [8.532225, 47.372178], [8.532321, 47.372271], [8.53241, 47.372366], [8.53266, 47.372651], [8.532787, 47.372805], [8.532899, 47.372955], [8.532964, 47.373056]]], "type": "MultiLineString"}, "id": "3351", "properties": {}, "type": "Feature"}, {"bbox": [8.567502, 47.376222, 8.573522, 47.377504], "geometry": {"coordinates": [[[8.567502, 47.376222], [8.567712, 47.376286], [8.568301, 47.376464], [8.568506, 47.376526], [8.568707, 47.376595], [8.568903, 47.376669], [8.569263, 47.376814], [8.569758, 47.377015], [8.569932, 47.377086], [8.57011, 47.377151], [8.570292, 47.37721], [8.570781, 47.37736], [8.57097, 47.377411], [8.571165, 47.377452], [8.571364, 47.377481], [8.571566, 47.377498], [8.571769, 47.377504], [8.571973, 47.377498], [8.572174, 47.37748], [8.572996, 47.377382], [8.5731, 47.377371], [8.573206, 47.377367], [8.573312, 47.377369], [8.573417, 47.377378], [8.57352, 47.377393], [8.573522, 47.377393]]], "type": "MultiLineString"}, "id": "3352", "properties": {}, "type": "Feature"}, {"bbox": [8.491009, 47.394183, 8.493295, 47.394758], "geometry": {"coordinates": [[[8.493295, 47.394183], [8.491936, 47.394515], [8.491342, 47.39467], [8.491009, 47.394758]]], "type": "MultiLineString"}, "id": "3360", "properties": {}, "type": "Feature"}, {"bbox": [8.496537, 47.423784, 8.496648, 47.423958], "geometry": {"coordinates": [[[8.496615, 47.423784], [8.496604, 47.423788], [8.496594, 47.423792], [8.496585, 47.423797], [8.496576, 47.423802], [8.496568, 47.423808], [8.496561, 47.423815], [8.496555, 47.423821], [8.496549, 47.423828], [8.496545, 47.423836], [8.496541, 47.423843], [8.496539, 47.423851], [8.496537, 47.423859], [8.496537, 47.423867], [8.496537, 47.423875], [8.496539, 47.423883], [8.496541, 47.423891], [8.496545, 47.423899], [8.496549, 47.423906], [8.496555, 47.423913], [8.496561, 47.42392], [8.496568, 47.423926], [8.496576, 47.423932], [8.496584, 47.423938], [8.496594, 47.423943], [8.496604, 47.423947], [8.496614, 47.423951], [8.496625, 47.423954], [8.496636, 47.423957], [8.496648, 47.423958], [8.496648, 47.423958]]], "type": "MultiLineString"}, "id": "3361", "properties": {}, "type": "Feature"}, {"bbox": [8.489818, 47.392537, 8.491391, 47.393651], "geometry": {"coordinates": [[[8.490972, 47.392537], [8.491371, 47.393238], [8.491378, 47.393249], [8.491384, 47.39326], [8.491388, 47.393272], [8.49139, 47.393284], [8.491391, 47.393296], [8.49139, 47.393308], [8.491388, 47.39332], [8.491385, 47.393331], [8.491379, 47.393343], [8.491373, 47.393354], [8.491365, 47.393365], [8.491355, 47.393375], [8.491344, 47.393384], [8.491332, 47.393393], [8.491319, 47.393401], [8.491305, 47.393409], [8.49129, 47.393415], [8.491275, 47.393421], [8.491258, 47.393425], [8.491241, 47.393429], [8.491224, 47.393431], [8.490749, 47.393545], [8.490258, 47.393594], [8.489818, 47.393651]]], "type": "MultiLineString"}, "id": "3362", "properties": {}, "type": "Feature"}, {"bbox": [8.513909, 47.399002, 8.518295, 47.402677], "geometry": {"coordinates": [[[8.513925, 47.399002], [8.513918, 47.399017], [8.513913, 47.399031], [8.51391, 47.399046], [8.513909, 47.399061], [8.51391, 47.399077], [8.513912, 47.399092], [8.513917, 47.399106], [8.513924, 47.399121], [8.513933, 47.399135], [8.513943, 47.399148], [8.513955, 47.399161], [8.513969, 47.399173], [8.513984, 47.399184], [8.514001, 47.399194], [8.514019, 47.399203], [8.514038, 47.399211], [8.514058, 47.399217], [8.514084, 47.399227], [8.515353, 47.399589], [8.515355, 47.39959], [8.515396, 47.3996], [8.515435, 47.399613], [8.515473, 47.399628], [8.515508, 47.399645], [8.515541, 47.399664], [8.515571, 47.399686], [8.51563, 47.399745], [8.515647, 47.399763], [8.515667, 47.399781], [8.515689, 47.399797], [8.515713, 47.399812], [8.515739, 47.399825], [8.515767, 47.399836], [8.515796, 47.399846], [8.515826, 47.399854], [8.516032, 47.399912], [8.516076, 47.399926], [8.516118, 47.399942], [8.516158, 47.399961], [8.516195, 47.399982], [8.51623, 47.400005], [8.516261, 47.40003], [8.51652, 47.400227], [8.51675, 47.400439], [8.51695, 47.400665], [8.517049, 47.400787], [8.517165, 47.400901], [8.517297, 47.401006], [8.517343, 47.401066], [8.51738, 47.401128], [8.51741, 47.401192], [8.517432, 47.401258], [8.517445, 47.401325], [8.517463, 47.401375], [8.517488, 47.401423], [8.517519, 47.401471], [8.517555, 47.401516], [8.517598, 47.401559], [8.517645, 47.401599], [8.517698, 47.401636], [8.518125, 47.401952], [8.518163, 47.401985], [8.518196, 47.402021], [8.518225, 47.402059], [8.51825, 47.402098], [8.518269, 47.402138], [8.518283, 47.40218], [8.518292, 47.402222], [8.518295, 47.402264], [8.518294, 47.402306], [8.518287, 47.402349], [8.518275, 47.40239], [8.518257, 47.402431], [8.518235, 47.402471], [8.518208, 47.402509], [8.518176, 47.402545], [8.518024, 47.402677]]], "type": "MultiLineString"}, "id": "3367", "properties": {}, "type": "Feature"}, {"bbox": [8.579732, 47.408786, 8.580193, 47.40949], "geometry": {"coordinates": [[[8.579732, 47.408786], [8.579852, 47.40903], [8.580006, 47.409266], [8.580193, 47.40949]]], "type": "MultiLineString"}, "id": "3369", "properties": {}, "type": "Feature"}, {"bbox": [8.531102, 47.416081, 8.540438, 47.417086], "geometry": {"coordinates": [[[8.540438, 47.417086], [8.540144, 47.417065], [8.538897, 47.416976], [8.538275, 47.416931], [8.538146, 47.416933], [8.538017, 47.416929], [8.537889, 47.416919], [8.537782, 47.416901], [8.537674, 47.416884], [8.537565, 47.416869], [8.53594, 47.41668], [8.533273, 47.416359], [8.53281, 47.416304], [8.532672, 47.416287], [8.531467, 47.416137], [8.531345, 47.416119], [8.531223, 47.416101], [8.531102, 47.416081]]], "type": "MultiLineString"}, "id": "3370", "properties": {}, "type": "Feature"}, {"bbox": [8.494818, 47.367674, 8.496409, 47.368148], "geometry": {"coordinates": [[[8.496409, 47.368148], [8.49616, 47.367989], [8.495896, 47.367842], [8.495618, 47.367709], [8.495545, 47.367693], [8.49547, 47.367682], [8.495394, 47.367676], [8.495318, 47.367674], [8.495241, 47.367677], [8.495166, 47.367685], [8.495091, 47.367697], [8.495019, 47.367713], [8.494949, 47.367734], [8.494881, 47.367759], [8.494818, 47.367788]]], "type": "MultiLineString"}, "id": "3372", "properties": {}, "type": "Feature"}, {"bbox": [8.509984, 47.364574, 8.51054, 47.365844], "geometry": {"coordinates": [[[8.509984, 47.365844], [8.510437, 47.365541], [8.510439, 47.36554], [8.510457, 47.365529], [8.510473, 47.365518], [8.510488, 47.365506], [8.510501, 47.365493], [8.510512, 47.365479], [8.510522, 47.365464], [8.510529, 47.365449], [8.510535, 47.365434], [8.510539, 47.365418], [8.51054, 47.365402], [8.51054, 47.365387], [8.510538, 47.365371], [8.510493, 47.365204], [8.510278, 47.364574]]], "type": "MultiLineString"}, "id": "3375", "properties": {}, "type": "Feature"}, {"bbox": [8.520418, 47.412926, 8.53775, 47.414576], "geometry": {"coordinates": [[[8.53775, 47.412926], [8.536716, 47.412981], [8.536302, 47.413011], [8.533856, 47.413144], [8.533606, 47.413158], [8.533181, 47.413182], [8.532337, 47.413235], [8.531822, 47.413288], [8.531531, 47.413301], [8.530265, 47.413467], [8.530047, 47.413496], [8.529068, 47.413626], [8.527174, 47.413879], [8.527003, 47.413904], [8.526405, 47.413982], [8.526178, 47.414006], [8.525948, 47.414016], [8.525718, 47.414012], [8.525574, 47.414003], [8.525432, 47.413987], [8.525291, 47.413967], [8.525149, 47.41394], [8.525009, 47.413909], [8.524872, 47.413872], [8.524348, 47.413725], [8.524197, 47.413684], [8.52404, 47.413651], [8.523881, 47.413628], [8.523708, 47.413612], [8.523534, 47.413607], [8.52336, 47.413612], [8.523187, 47.413627], [8.523017, 47.413653], [8.522851, 47.413688], [8.52269, 47.413734], [8.522536, 47.413788], [8.521237, 47.414315], [8.520972, 47.414413], [8.520699, 47.4145], [8.520418, 47.414576]]], "type": "MultiLineString"}, "id": "3379", "properties": {}, "type": "Feature"}, {"bbox": [8.532307, 47.390367, 8.533113, 47.390845], "geometry": {"coordinates": [[[8.532307, 47.390367], [8.53236, 47.390422], [8.533113, 47.390845]]], "type": "MultiLineString"}, "id": "3402", "properties": {}, "type": "Feature"}, {"bbox": [8.54651, 47.408601, 8.55047, 47.409304], "geometry": {"coordinates": [[[8.54651, 47.409267], [8.546526, 47.409276], [8.546543, 47.409283], [8.546561, 47.409289], [8.54658, 47.409295], [8.5466, 47.409299], [8.546619, 47.409302], [8.546639, 47.409304], [8.54666, 47.409304], [8.54668, 47.409304], [8.5467, 47.409302], [8.547527, 47.409125], [8.548681, 47.408889], [8.549097, 47.4088], [8.549879, 47.408624], [8.549991, 47.40861], [8.550105, 47.408602], [8.550219, 47.408601], [8.550333, 47.408605], [8.550447, 47.408615], [8.550454, 47.408615], [8.550462, 47.408615], [8.55047, 47.408615]]], "type": "MultiLineString"}, "id": "3404", "properties": {}, "type": "Feature"}, {"bbox": [8.534472, 47.372597, 8.534746, 47.372706], "geometry": {"coordinates": [[[8.534746, 47.372704], [8.534725, 47.372706], [8.534704, 47.372706], [8.534683, 47.372706], [8.534661, 47.372704], [8.534641, 47.3727], [8.53462, 47.372696], [8.534601, 47.37269], [8.534582, 47.372684], [8.534564, 47.372676], [8.534547, 47.372667], [8.534531, 47.372657], [8.534516, 47.372647], [8.534503, 47.372635], [8.534491, 47.372623], [8.534481, 47.372611], [8.534472, 47.372597]]], "type": "MultiLineString"}, "id": "3422", "properties": {}, "type": "Feature"}, {"bbox": [8.491913, 47.423043, 8.493074, 47.423217], "geometry": {"coordinates": [[[8.493074, 47.423043], [8.491913, 47.423217]]], "type": "MultiLineString"}, "id": "3430", "properties": {}, "type": "Feature"}, {"bbox": [8.543001, 47.431157, 8.543928, 47.432856], "geometry": {"coordinates": [[[8.543928, 47.431157], [8.543849, 47.431294], [8.543843, 47.431303], [8.543837, 47.431312], [8.543831, 47.431322], [8.54381, 47.431351], [8.543673, 47.431605], [8.543361, 47.432186], [8.543235, 47.432423], [8.543001, 47.432856]]], "type": "MultiLineString"}, "id": "3431", "properties": {}, "type": "Feature"}, {"bbox": [8.532437, 47.397712, 8.534208, 47.398872], "geometry": {"coordinates": [[[8.533209, 47.398872], [8.533547, 47.398863], [8.533598, 47.398861], [8.533649, 47.398855], [8.533699, 47.398846], [8.533748, 47.398834], [8.533795, 47.398819], [8.533839, 47.398802], [8.533882, 47.398781], [8.533921, 47.398759], [8.533958, 47.398734], [8.533991, 47.398707], [8.53402, 47.398679], [8.534046, 47.398648], [8.534068, 47.398616], [8.534155, 47.398383], [8.534181, 47.39829], [8.534195, 47.398249], [8.534204, 47.398208], [8.534208, 47.398166], [8.534207, 47.398124], [8.534201, 47.398082], [8.534185, 47.398052], [8.534166, 47.398023], [8.534143, 47.397995], [8.534116, 47.397969], [8.534087, 47.397944], [8.534054, 47.397922], [8.534019, 47.3979], [8.533982, 47.397881], [8.533942, 47.397865], [8.533568, 47.397787], [8.533238, 47.39773], [8.533184, 47.39772], [8.533129, 47.397715], [8.533073, 47.397712], [8.533018, 47.397714], [8.532963, 47.397718], [8.532908, 47.397726], [8.532863, 47.397738], [8.53282, 47.397752], [8.532778, 47.397769], [8.532738, 47.397788], [8.532701, 47.397809], [8.532666, 47.397832], [8.532634, 47.397856], [8.532579, 47.397914], [8.532531, 47.397974], [8.53249, 47.398036], [8.532456, 47.3981], [8.532443, 47.398157], [8.532437, 47.398214], [8.532439, 47.398271], [8.532448, 47.398328], [8.532464, 47.398384], [8.532488, 47.398439], [8.532518, 47.398493], [8.532556, 47.398544], [8.532599, 47.398593], [8.532649, 47.398639], [8.532705, 47.398682], [8.532765, 47.398722], [8.532831, 47.398758], [8.532919, 47.398795], [8.533012, 47.398827], [8.533109, 47.398852], [8.533209, 47.398872]]], "type": "MultiLineString"}, "id": "3432", "properties": {}, "type": "Feature"}, {"bbox": [8.523856, 47.392668, 8.527032, 47.396102], "geometry": {"coordinates": [[[8.523856, 47.392668], [8.523886, 47.392668], [8.523915, 47.392669], [8.523945, 47.392672], [8.523973, 47.392676], [8.524001, 47.392683], [8.524029, 47.392691], [8.524055, 47.3927], [8.524079, 47.392711], [8.524103, 47.392723], [8.524125, 47.392737], [8.524145, 47.392751], [8.524163, 47.392767], [8.524179, 47.392784], [8.524193, 47.392802], [8.524424, 47.393232], [8.524432, 47.393245], [8.524442, 47.393257], [8.524454, 47.393269], [8.524467, 47.39328], [8.524482, 47.393291], [8.524498, 47.3933], [8.524515, 47.393308], [8.524534, 47.393315], [8.524557, 47.393329], [8.524578, 47.393343], [8.524598, 47.393359], [8.524615, 47.393376], [8.524631, 47.393393], [8.524644, 47.393412], [8.524678, 47.393487], [8.524717, 47.393561], [8.52476, 47.393633], [8.524854, 47.393763], [8.525109, 47.394101], [8.525158, 47.39416], [8.525325, 47.394361], [8.525488, 47.394564], [8.525645, 47.394768], [8.525706, 47.394871], [8.525769, 47.394973], [8.525833, 47.395074], [8.5259, 47.395175], [8.52597, 47.395275], [8.526041, 47.395375], [8.526115, 47.395455], [8.526196, 47.395533], [8.526283, 47.395607], [8.526375, 47.395678], [8.526473, 47.395746], [8.526577, 47.39581], [8.526725, 47.39591], [8.526876, 47.396007], [8.527032, 47.396102]]], "type": "MultiLineString"}, "id": "3433", "properties": {}, "type": "Feature"}, {"bbox": [8.55231, 47.379109, 8.559455, 47.382622], "geometry": {"coordinates": [[[8.55231, 47.382622], [8.552382, 47.382582], [8.552612, 47.382471], [8.553596, 47.382033], [8.554916, 47.381445], [8.555171, 47.381331], [8.555395, 47.381229], [8.555652, 47.381113], [8.556365, 47.380795], [8.556403, 47.380778], [8.556605, 47.380696], [8.556708, 47.38064], [8.556937, 47.380515], [8.558294, 47.379766], [8.558402, 47.379707], [8.559333, 47.37919], [8.559455, 47.379109]]], "type": "MultiLineString"}, "id": "3443", "properties": {}, "type": "Feature"}, {"bbox": [8.534102, 47.345158, 8.535557, 47.362553], "geometry": {"coordinates": [[[8.535274, 47.362553], [8.535269, 47.36247], [8.53527, 47.362387], [8.535277, 47.362304], [8.535357, 47.361403], [8.535362, 47.361328], [8.535382, 47.361003], [8.535427, 47.360339], [8.535476, 47.359619], [8.535498, 47.359094], [8.535557, 47.358198], [8.535531, 47.357941], [8.535473, 47.357687], [8.535384, 47.357436], [8.535263, 47.357192], [8.535113, 47.356956], [8.534934, 47.356729], [8.534727, 47.356513], [8.534716, 47.35643], [8.534702, 47.356347], [8.534687, 47.356265], [8.534622, 47.356102], [8.53456, 47.355939], [8.5345, 47.355775], [8.534372, 47.35539], [8.534276, 47.355047], [8.534266, 47.355012], [8.534185, 47.354615], [8.534148, 47.354347], [8.534123, 47.354078], [8.534111, 47.353809], [8.534102, 47.353273], [8.534106, 47.352899], [8.534121, 47.352525], [8.534146, 47.352152], [8.534166, 47.351942], [8.534208, 47.351553], [8.534252, 47.351158], [8.534281, 47.350899], [8.534301, 47.350639], [8.534311, 47.35038], [8.534313, 47.350274], [8.534313, 47.35027], [8.534363, 47.346548], [8.534373, 47.345865], [8.53438, 47.345772], [8.534389, 47.34568], [8.534399, 47.345587], [8.534456, 47.345258], [8.534462, 47.345225], [8.534467, 47.345192], [8.534473, 47.345158]]], "type": "MultiLineString"}, "id": "3445", "properties": {}, "type": "Feature"}, {"bbox": [8.491597, 47.381178, 8.497438, 47.388332], "geometry": {"coordinates": [[[8.497368, 47.388332], [8.497433, 47.38799], [8.497438, 47.387879], [8.497428, 47.387769], [8.497401, 47.38766], [8.497371, 47.387574], [8.497328, 47.387491], [8.497275, 47.387411], [8.497261, 47.387393], [8.497248, 47.387376], [8.497233, 47.387359], [8.496536, 47.386463], [8.496527, 47.386451], [8.496012, 47.385789], [8.495558, 47.385204], [8.495371, 47.385002], [8.495226, 47.384846], [8.494424, 47.384038], [8.494381, 47.383995], [8.493928, 47.383547], [8.492907, 47.382514], [8.492566, 47.382169], [8.491736, 47.381289], [8.49169, 47.381254], [8.491645, 47.381217], [8.491601, 47.381181], [8.491597, 47.381178]]], "type": "MultiLineString"}, "id": "3464", "properties": {}, "type": "Feature"}, {"bbox": [8.537189, 47.376775, 8.538107, 47.377184], "geometry": {"coordinates": [[[8.538107, 47.376775], [8.53793, 47.376845], [8.537342, 47.377111], [8.537189, 47.377184]]], "type": "MultiLineString"}, "id": "3489", "properties": {}, "type": "Feature"}, {"bbox": [8.538846, 47.392096, 8.548384, 47.409267], "geometry": {"coordinates": [[[8.538846, 47.392096], [8.538888, 47.392259], [8.538985, 47.392631], [8.53901, 47.392729], [8.539175, 47.393421], [8.539237, 47.393682], [8.539328, 47.394066], [8.539332, 47.394085], [8.53953, 47.394565], [8.539767, 47.395037], [8.540042, 47.395499], [8.540299, 47.395906], [8.540514, 47.396236], [8.540729, 47.396567], [8.540929, 47.396857], [8.541088, 47.397088], [8.542489, 47.399138], [8.542568, 47.399292], [8.542652, 47.399445], [8.542741, 47.399597], [8.542862, 47.399752], [8.542997, 47.399902], [8.543147, 47.400045], [8.544396, 47.400837], [8.544871, 47.401132], [8.544996, 47.401222], [8.545119, 47.401314], [8.545238, 47.401409], [8.545318, 47.401475], [8.545397, 47.401542], [8.545474, 47.40161], [8.545484, 47.401619], [8.545493, 47.401628], [8.545503, 47.401637], [8.545961, 47.402018], [8.54642, 47.4024], [8.54714, 47.403], [8.547354, 47.403164], [8.547491, 47.403267], [8.547618, 47.403376], [8.547735, 47.40349], [8.547789, 47.403545], [8.547842, 47.403601], [8.547894, 47.403657], [8.547993, 47.403782], [8.548076, 47.403912], [8.548139, 47.404046], [8.548184, 47.404185], [8.548288, 47.404605], [8.548313, 47.40469], [8.548334, 47.404775], [8.548352, 47.404861], [8.548371, 47.404997], [8.548381, 47.405134], [8.548382, 47.40527], [8.548384, 47.405765], [8.548372, 47.405902], [8.548359, 47.406059], [8.54833, 47.406175], [8.548288, 47.40629], [8.548233, 47.406401], [8.548164, 47.406509], [8.548083, 47.406613], [8.54799, 47.406713], [8.547976, 47.406726], [8.547962, 47.406739], [8.547948, 47.406752], [8.547859, 47.406829], [8.547231, 47.407376], [8.54714, 47.407458], [8.547073, 47.407525], [8.547011, 47.407593], [8.546953, 47.407664], [8.546855, 47.407805], [8.546777, 47.407952], [8.546719, 47.408103], [8.546687, 47.408214], [8.546589, 47.40856], [8.546425, 47.409109], [8.546421, 47.40912], [8.546418, 47.409132], [8.546417, 47.409144], [8.546417, 47.409156], [8.546418, 47.409168], [8.546421, 47.40918], [8.546426, 47.409191], [8.546432, 47.409203], [8.546439, 47.409214], [8.546448, 47.409224], [8.546458, 47.409234], [8.54647, 47.409244], [8.546482, 47.409252], [8.546496, 47.40926], [8.54651, 47.409267]]], "type": "MultiLineString"}, "id": "3501", "properties": {}, "type": "Feature"}, {"bbox": [8.538843, 47.377004, 8.544299, 47.391346], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544195, 47.377018], [8.544212, 47.377032], [8.544228, 47.377048], [8.544242, 47.377064], [8.544253, 47.377082], [8.544262, 47.377099], [8.544269, 47.377118], [8.544274, 47.377136], [8.544299, 47.378004], [8.544287, 47.378736], [8.544285, 47.378897], [8.544284, 47.378922], [8.544242, 47.379429], [8.544178, 47.379814], [8.54415, 47.379937], [8.544037, 47.380439], [8.543965, 47.38073], [8.543803, 47.381459], [8.54371, 47.381955], [8.543633, 47.382304], [8.54356, 47.382646], [8.543421, 47.383295], [8.543411, 47.383355], [8.543399, 47.383415], [8.543386, 47.383475], [8.543342, 47.383655], [8.543288, 47.383833], [8.543225, 47.384011], [8.543169, 47.38415], [8.543108, 47.384288], [8.54304, 47.384425], [8.542967, 47.384539], [8.542894, 47.384654], [8.542705, 47.384942], [8.542451, 47.385329], [8.542339, 47.385498], [8.541571, 47.386681], [8.541519, 47.386776], [8.541136, 47.387357], [8.541019, 47.387548], [8.540912, 47.387742], [8.540815, 47.387939], [8.540702, 47.388198], [8.540647, 47.388323], [8.540364, 47.388969], [8.540286, 47.389146], [8.540084, 47.389588], [8.539856, 47.390087], [8.53983, 47.390146], [8.539808, 47.390206], [8.539788, 47.390267], [8.539767, 47.390378], [8.539729, 47.390487], [8.539675, 47.390593], [8.539621, 47.390675], [8.539557, 47.390753], [8.539484, 47.390828], [8.539093, 47.391238], [8.538843, 47.391346]]], "type": "MultiLineString"}, "id": "3512", "properties": {}, "type": "Feature"}, {"bbox": [8.480746, 47.405206, 8.481332, 47.406843], "geometry": {"coordinates": [[[8.480746, 47.405206], [8.48075, 47.405304], [8.480767, 47.405402], [8.480798, 47.405498], [8.480842, 47.405592], [8.480899, 47.405682], [8.481082, 47.405949], [8.481263, 47.40622], [8.481289, 47.406267], [8.481309, 47.406314], [8.481323, 47.406363], [8.481331, 47.406413], [8.481332, 47.406463], [8.481326, 47.406512], [8.481314, 47.406561], [8.481296, 47.406609], [8.481271, 47.406659], [8.48124, 47.406708], [8.481203, 47.406754], [8.481168, 47.406785], [8.48113, 47.406815], [8.481089, 47.406843]]], "type": "MultiLineString"}, "id": "3515", "properties": {}, "type": "Feature"}, {"bbox": [8.520188, 47.378382, 8.521482, 47.379647], "geometry": {"coordinates": [[[8.520188, 47.378382], [8.520996, 47.379171], [8.521482, 47.379647]]], "type": "MultiLineString"}, "id": "3538", "properties": {}, "type": "Feature"}, {"bbox": [8.523722, 47.360273, 8.530117, 47.364452], "geometry": {"coordinates": [[[8.530117, 47.364452], [8.530084, 47.36444], [8.53005, 47.364428], [8.530017, 47.364416], [8.529301, 47.364211], [8.529067, 47.364137], [8.528835, 47.364058], [8.528608, 47.363975], [8.528597, 47.363971], [8.528586, 47.363967], [8.528575, 47.363963], [8.528418, 47.363895], [8.528271, 47.363817], [8.528135, 47.36373], [8.528012, 47.363635], [8.527984, 47.363611], [8.527957, 47.363586], [8.527931, 47.363561], [8.527237, 47.362788], [8.526914, 47.362425], [8.526785, 47.362278], [8.526646, 47.362136], [8.526496, 47.361998], [8.526409, 47.361925], [8.52632, 47.361853], [8.526228, 47.361782], [8.525943, 47.361587], [8.525808, 47.361487], [8.525669, 47.36139], [8.525526, 47.361295], [8.525384, 47.361207], [8.525239, 47.361121], [8.525091, 47.361038], [8.524992, 47.360985], [8.524891, 47.360933], [8.524789, 47.360882], [8.524412, 47.360662], [8.523997, 47.36042], [8.523909, 47.360367], [8.523818, 47.360318], [8.523722, 47.360273]]], "type": "MultiLineString"}, "id": "3539", "properties": {}, "type": "Feature"}, {"bbox": [8.545177, 47.36675, 8.545814, 47.367474], "geometry": {"coordinates": [[[8.545177, 47.367474], [8.545183, 47.367418], [8.545197, 47.367362], [8.545219, 47.367307], [8.545248, 47.367254], [8.545324, 47.367161], [8.545406, 47.36707], [8.545491, 47.366981], [8.54556, 47.366916], [8.545638, 47.366856], [8.545722, 47.3668], [8.545814, 47.36675]]], "type": "MultiLineString"}, "id": "3541", "properties": {}, "type": "Feature"}, {"bbox": [8.568656, 47.372127, 8.579742, 47.374595], "geometry": {"coordinates": [[[8.568656, 47.373542], [8.56876, 47.373497], [8.568859, 47.373446], [8.568952, 47.373391], [8.569117, 47.373297], [8.569766, 47.372898], [8.569872, 47.372827], [8.569986, 47.372762], [8.570108, 47.372704], [8.570237, 47.372654], [8.570371, 47.37261], [8.570511, 47.372575], [8.570654, 47.372548], [8.572138, 47.372332], [8.572378, 47.372314], [8.572619, 47.372312], [8.572859, 47.372324], [8.573097, 47.37235], [8.573713, 47.37242], [8.57383, 47.372425], [8.573946, 47.372424], [8.574063, 47.372415], [8.574177, 47.3724], [8.574289, 47.372378], [8.574389, 47.372352], [8.574485, 47.37232], [8.574578, 47.372284], [8.574666, 47.372242], [8.574748, 47.372196], [8.574779, 47.37218], [8.574813, 47.372166], [8.574848, 47.372154], [8.574884, 47.372144], [8.574921, 47.372136], [8.57496, 47.372131], [8.574999, 47.372128], [8.575038, 47.372127], [8.575063, 47.372132], [8.575088, 47.372139], [8.575112, 47.372147], [8.575134, 47.372156], [8.575155, 47.372167], [8.575175, 47.372179], [8.575193, 47.372193], [8.57521, 47.372207], [8.575224, 47.372222], [8.575237, 47.372238], [8.575247, 47.372255], [8.575255, 47.372272], [8.575261, 47.372289], [8.575264, 47.372307], [8.575266, 47.372325], [8.575265, 47.372343], [8.575261, 47.372361], [8.575256, 47.372379], [8.574974, 47.372949], [8.574963, 47.372989], [8.574957, 47.373029], [8.574955, 47.37307], [8.574959, 47.37311], [8.574967, 47.37315], [8.57498, 47.37319], [8.574998, 47.373221], [8.575019, 47.37325], [8.575044, 47.373279], [8.575073, 47.373306], [8.575104, 47.373331], [8.575139, 47.373355], [8.575176, 47.373376], [8.575924, 47.37375], [8.57614, 47.373843], [8.576367, 47.373921], [8.576606, 47.373984], [8.576831, 47.374035], [8.576915, 47.374054], [8.577346, 47.374148], [8.578129, 47.37431], [8.578151, 47.374314], [8.57867, 47.374387], [8.579513, 47.374504], [8.579555, 47.374514], [8.579596, 47.374526], [8.579636, 47.37454], [8.579674, 47.374556], [8.579709, 47.374574], [8.579742, 47.374595]]], "type": "MultiLineString"}, "id": "3554", "properties": {}, "type": "Feature"}, {"bbox": [8.537094, 47.375541, 8.53712, 47.375729], "geometry": {"coordinates": [[[8.537117, 47.375541], [8.537106, 47.375564], [8.537099, 47.375587], [8.537095, 47.375611], [8.537094, 47.375635], [8.537096, 47.375659], [8.537101, 47.375683], [8.537109, 47.375706], [8.53712, 47.375729]]], "type": "MultiLineString"}, "id": "3559", "properties": {}, "type": "Feature"}, {"bbox": [8.522924, 47.366945, 8.524329, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524263, 47.368194], [8.523815, 47.367706], [8.523382, 47.367336], [8.522924, 47.366945]]], "type": "MultiLineString"}, "id": "3570", "properties": {}, "type": "Feature"}, {"bbox": [8.516823, 47.35989, 8.517855, 47.360679], "geometry": {"coordinates": [[[8.516823, 47.360679], [8.516939, 47.360641], [8.51697, 47.36063], [8.516999, 47.360617], [8.517027, 47.360602], [8.517054, 47.360587], [8.517078, 47.36057], [8.51709, 47.36056], [8.517102, 47.36055], [8.517113, 47.36054], [8.517572, 47.360131], [8.517769, 47.359967], [8.517855, 47.35989]]], "type": "MultiLineString"}, "id": "3572", "properties": {}, "type": "Feature"}, {"bbox": [8.563269, 47.372726, 8.564707, 47.373576], "geometry": {"coordinates": [[[8.563269, 47.372726], [8.563403, 47.372803], [8.563642, 47.372958], [8.564118, 47.373165], [8.564253, 47.373252], [8.564707, 47.373576]]], "type": "MultiLineString"}, "id": "3575", "properties": {}, "type": "Feature"}, {"bbox": [8.522947, 47.360019, 8.523722, 47.360273], "geometry": {"coordinates": [[[8.523722, 47.360273], [8.52371, 47.360268], [8.523699, 47.360264], [8.523688, 47.360259], [8.523093, 47.360066], [8.522947, 47.360019]]], "type": "MultiLineString"}, "id": "3585", "properties": {}, "type": "Feature"}, {"bbox": [8.518347, 47.332973, 8.51909, 47.333731], "geometry": {"coordinates": [[[8.51909, 47.333731], [8.519071, 47.333709], [8.519052, 47.333687], [8.519033, 47.333665], [8.518762, 47.333367], [8.518347, 47.332973]]], "type": "MultiLineString"}, "id": "3593", "properties": {}, "type": "Feature"}, {"bbox": [8.494073, 47.398041, 8.49489, 47.398525], "geometry": {"coordinates": [[[8.49489, 47.39851], [8.494839, 47.398518], [8.494788, 47.398523], [8.494736, 47.398525], [8.494684, 47.398524], [8.494632, 47.39852], [8.494581, 47.398514], [8.494531, 47.398504], [8.494482, 47.398491], [8.494436, 47.398475], [8.494391, 47.398457], [8.494349, 47.398437], [8.494309, 47.398414], [8.494273, 47.398389], [8.494239, 47.398361], [8.49421, 47.398332], [8.494184, 47.398302], [8.494161, 47.39827], [8.494117, 47.398164], [8.494073, 47.398041]]], "type": "MultiLineString"}, "id": "3605", "properties": {}, "type": "Feature"}, {"bbox": [8.527918, 47.368682, 8.528831, 47.369145], "geometry": {"coordinates": [[[8.528831, 47.368682], [8.528634, 47.368797], [8.528439, 47.368913], [8.528245, 47.36903], [8.528141, 47.369075], [8.528032, 47.369113], [8.527918, 47.369145]]], "type": "MultiLineString"}, "id": "3606", "properties": {}, "type": "Feature"}, {"bbox": [8.601104, 47.350707, 8.602552, 47.353461], "geometry": {"coordinates": [[[8.602074, 47.353461], [8.602122, 47.35339], [8.602161, 47.353317], [8.602193, 47.353242], [8.602223, 47.353159], [8.602263, 47.353062], [8.602313, 47.352968], [8.602375, 47.352877], [8.602421, 47.352819], [8.602464, 47.352759], [8.602504, 47.352698], [8.602527, 47.352652], [8.602543, 47.352605], [8.602552, 47.352557], [8.602552, 47.352524], [8.602548, 47.352491], [8.602541, 47.352459], [8.602532, 47.352415], [8.602518, 47.352372], [8.602501, 47.352329], [8.602442, 47.352185], [8.602429, 47.35215], [8.602421, 47.352114], [8.602418, 47.352078], [8.602419, 47.352041], [8.602424, 47.352005], [8.602474, 47.3518], [8.602477, 47.351774], [8.602476, 47.351748], [8.602473, 47.351722], [8.602466, 47.351696], [8.602456, 47.351671], [8.602447, 47.351656], [8.602436, 47.351642], [8.602424, 47.351628], [8.602409, 47.351615], [8.602393, 47.351603], [8.602375, 47.351592], [8.602356, 47.351582], [8.60232, 47.35157], [8.602283, 47.35156], [8.602245, 47.351552], [8.602206, 47.351546], [8.602166, 47.351543], [8.602126, 47.351543], [8.601675, 47.351551], [8.601631, 47.35155], [8.601586, 47.351548], [8.601542, 47.351544], [8.601498, 47.35154], [8.601455, 47.351533], [8.601412, 47.351524], [8.601247, 47.351491], [8.601229, 47.351486], [8.601211, 47.35148], [8.601194, 47.351472], [8.601178, 47.351464], [8.601163, 47.351455], [8.601149, 47.351445], [8.601137, 47.351434], [8.601127, 47.351422], [8.601118, 47.35141], [8.60111, 47.351397], [8.601107, 47.351385], [8.601104, 47.351372], [8.601104, 47.35136], [8.601105, 47.351347], [8.601108, 47.351335], [8.601112, 47.351323], [8.601118, 47.351311], [8.601126, 47.351299], [8.601135, 47.351288], [8.601145, 47.351278], [8.601157, 47.351268], [8.60117, 47.351259], [8.601259, 47.351206], [8.601323, 47.351165], [8.601384, 47.351121], [8.601442, 47.351075], [8.601515, 47.351004], [8.60156, 47.350967], [8.601609, 47.350932], [8.601662, 47.3509], [8.601672, 47.350896], [8.601682, 47.350892], [8.601693, 47.350888], [8.601944, 47.350798], [8.60195, 47.350796], [8.601956, 47.350793], [8.601962, 47.350789], [8.601967, 47.350786], [8.601971, 47.350782], [8.601975, 47.350778], [8.601979, 47.350774], [8.601982, 47.350769], [8.601984, 47.350764], [8.601986, 47.35076], [8.601987, 47.350755], [8.601988, 47.35075], [8.601988, 47.350745], [8.601987, 47.35074], [8.601986, 47.350735], [8.601975, 47.350707]]], "type": "MultiLineString"}, "id": "3626", "properties": {}, "type": "Feature"}, {"bbox": [8.536133, 47.373667, 8.537061, 47.373799], "geometry": {"coordinates": [[[8.537061, 47.373667], [8.537056, 47.373684], [8.53705, 47.373701], [8.537041, 47.373717], [8.53703, 47.373733], [8.537017, 47.373748], [8.537003, 47.373762], [8.536986, 47.373776], [8.536968, 47.373788], [8.536949, 47.373799], [8.536926, 47.373785], [8.536902, 47.373773], [8.536876, 47.373762], [8.536849, 47.373752], [8.536821, 47.373744], [8.536792, 47.373738], [8.536762, 47.373733], [8.536732, 47.37373], [8.536133, 47.37369]]], "type": "MultiLineString"}, "id": "3627", "properties": {}, "type": "Feature"}, {"bbox": [8.554431, 47.364725, 8.554719, 47.36482], "geometry": {"coordinates": [[[8.554431, 47.364725], [8.554459, 47.364725], [8.554487, 47.364726], [8.554515, 47.364728], [8.554542, 47.364733], [8.554569, 47.364739], [8.554594, 47.364746], [8.554619, 47.364755], [8.554643, 47.364766], [8.554665, 47.364778], [8.554685, 47.364791], [8.554704, 47.364805], [8.554719, 47.36482]]], "type": "MultiLineString"}, "id": "3650", "properties": {}, "type": "Feature"}, {"bbox": [8.50761, 47.353401, 8.511813, 47.359374], "geometry": {"coordinates": [[[8.511813, 47.353401], [8.511196, 47.354546], [8.511018, 47.354879], [8.510903, 47.355059], [8.510231, 47.356318], [8.510184, 47.356394], [8.510127, 47.356466], [8.509088, 47.357647], [8.509004, 47.357768], [8.508886, 47.35793], [8.50761, 47.359374]]], "type": "MultiLineString"}, "id": "3667", "properties": {}, "type": "Feature"}, {"bbox": [8.565808, 47.407022, 8.586241, 47.410623], "geometry": {"coordinates": [[[8.565808, 47.407022], [8.565929, 47.40706], [8.566044, 47.407106], [8.566153, 47.407158], [8.566255, 47.407216], [8.566274, 47.407227], [8.566292, 47.407239], [8.56631, 47.407251], [8.56661, 47.40748], [8.566901, 47.407715], [8.567182, 47.407955], [8.568121, 47.408775], [8.568513, 47.409089], [8.568921, 47.409393], [8.569345, 47.409687], [8.569476, 47.409773], [8.569611, 47.409857], [8.56975, 47.409937], [8.569926, 47.410029], [8.570113, 47.41011], [8.57031, 47.410178], [8.570516, 47.410234], [8.57067, 47.410267], [8.570827, 47.410293], [8.570986, 47.410312], [8.57128, 47.410326], [8.571957, 47.410396], [8.571993, 47.410401], [8.572028, 47.410409], [8.572063, 47.410418], [8.572096, 47.410429], [8.572127, 47.410442], [8.572157, 47.410457], [8.572185, 47.410473], [8.57221, 47.410491], [8.572234, 47.41051], [8.572255, 47.410531], [8.572273, 47.410552], [8.572288, 47.410575], [8.572301, 47.410599], [8.572311, 47.410623], [8.573091, 47.410421], [8.573636, 47.410285], [8.576022, 47.409717], [8.576237, 47.409665], [8.578577, 47.409076], [8.579732, 47.408786], [8.58344, 47.407842], [8.584944, 47.407471], [8.586239, 47.407087], [8.586241, 47.407086]]], "type": "MultiLineString"}, "id": "3668", "properties": {}, "type": "Feature"}, {"bbox": [8.560414, 47.375321, 8.563846, 47.375538], "geometry": {"coordinates": [[[8.560414, 47.375321], [8.560869, 47.375344], [8.561205, 47.375365], [8.561255, 47.37537], [8.561462, 47.375391], [8.56265, 47.375508], [8.562912, 47.375531], [8.563045, 47.375537], [8.563179, 47.375538], [8.563312, 47.375534], [8.563616, 47.375511], [8.563846, 47.375496]]], "type": "MultiLineString"}, "id": "3670", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.380137, 8.529232, 47.381908], "geometry": {"coordinates": [[[8.527985, 47.380137], [8.528382, 47.380713], [8.528913, 47.381482], [8.529023, 47.381644], [8.529088, 47.381734], [8.529158, 47.381821], [8.529232, 47.381908]]], "type": "MultiLineString"}, "id": "3685", "properties": {}, "type": "Feature"}, {"bbox": [8.575927, 47.349005, 8.577909, 47.35373], "geometry": {"coordinates": [[[8.575927, 47.35373], [8.576117, 47.353474], [8.576167, 47.353336], [8.576207, 47.353198], [8.576239, 47.353058], [8.576318, 47.352644], [8.576333, 47.352566], [8.576372, 47.352406], [8.576427, 47.352221], [8.576493, 47.352038], [8.576571, 47.351857], [8.576912, 47.351129], [8.577108, 47.350706], [8.577287, 47.350337], [8.577378, 47.350137], [8.577449, 47.349979], [8.577767, 47.349299], [8.577821, 47.349203], [8.577869, 47.349105], [8.577909, 47.349005]]], "type": "MultiLineString"}, "id": "3690", "properties": {}, "type": "Feature"}, {"bbox": [8.513893, 47.382753, 8.51564, 47.383677], "geometry": {"coordinates": [[[8.513938, 47.383106], [8.513897, 47.382975], [8.513894, 47.38296], [8.513893, 47.382944], [8.513894, 47.382928], [8.513896, 47.382913], [8.513901, 47.382897], [8.513908, 47.382882], [8.513917, 47.382868], [8.513928, 47.382854], [8.513941, 47.382841], [8.513955, 47.382829], [8.513971, 47.382817], [8.513997, 47.382803], [8.514024, 47.382791], [8.514053, 47.38278], [8.514083, 47.382771], [8.514114, 47.382763], [8.514146, 47.382758], [8.514179, 47.382755], [8.514212, 47.382753], [8.514245, 47.382754], [8.514278, 47.382756], [8.51431, 47.382761], [8.514407, 47.382791], [8.514499, 47.382826], [8.514586, 47.382867], [8.514668, 47.382913], [8.515148, 47.383187], [8.51564, 47.383677]]], "type": "MultiLineString"}, "id": "3707", "properties": {}, "type": "Feature"}, {"bbox": [8.575038, 47.367253, 8.579, 47.372127], "geometry": {"coordinates": [[[8.575038, 47.372127], [8.575131, 47.372085], [8.575218, 47.372038], [8.575298, 47.371986], [8.575372, 47.371929], [8.575437, 47.371868], [8.575495, 47.371803], [8.575544, 47.371736], [8.575621, 47.371546], [8.57572, 47.371361], [8.575842, 47.371182], [8.575985, 47.371011], [8.576149, 47.370848], [8.576631, 47.370351], [8.57683, 47.370142], [8.577001, 47.369921], [8.577142, 47.369692], [8.57727, 47.369508], [8.577842, 47.368756], [8.578536, 47.367855], [8.578901, 47.367381], [8.579, 47.367253]]], "type": "MultiLineString"}, "id": "3723", "properties": {}, "type": "Feature"}, {"bbox": [8.49582, 47.392158, 8.497594, 47.393131], "geometry": {"coordinates": [[[8.49582, 47.392158], [8.495827, 47.392211], [8.49584, 47.392264], [8.495859, 47.392316], [8.495884, 47.392366], [8.496057, 47.39267], [8.49606, 47.392846], [8.496042, 47.392984], [8.496017, 47.39304], [8.496016, 47.393042], [8.496015, 47.393044], [8.496014, 47.393045], [8.496014, 47.393047], [8.496014, 47.393049], [8.496014, 47.393051], [8.496014, 47.393053], [8.496015, 47.393055], [8.496016, 47.393057], [8.496017, 47.393059], [8.496018, 47.39306], [8.496019, 47.393062], [8.496021, 47.393063], [8.496023, 47.393065], [8.496025, 47.393066], [8.496027, 47.393067], [8.496029, 47.393068], [8.496032, 47.393069], [8.496034, 47.39307], [8.496037, 47.393071], [8.49604, 47.393071], [8.496043, 47.393072], [8.496238, 47.393086], [8.496434, 47.393093], [8.49663, 47.39309], [8.496952, 47.393098], [8.497273, 47.393112], [8.497594, 47.393131]]], "type": "MultiLineString"}, "id": "3725", "properties": {}, "type": "Feature"}, {"bbox": [8.540383, 47.374616, 8.540857, 47.374943], "geometry": {"coordinates": [[[8.540383, 47.374616], [8.540396, 47.374789], [8.5404, 47.374805], [8.540407, 47.374819], [8.540415, 47.374834], [8.540425, 47.374848], [8.540436, 47.374861], [8.540449, 47.374874], [8.540464, 47.374885], [8.54048, 47.374896], [8.540498, 47.374906], [8.540516, 47.374915], [8.540536, 47.374923], [8.540557, 47.374929], [8.540578, 47.374935], [8.5406, 47.374939], [8.540622, 47.374942], [8.540645, 47.374943], [8.540667, 47.374943], [8.54069, 47.374942], [8.540857, 47.374933]]], "type": "MultiLineString"}, "id": "3727", "properties": {}, "type": "Feature"}, {"bbox": [8.531976, 47.380086, 8.537756, 47.384352], "geometry": {"coordinates": [[[8.537756, 47.380086], [8.537304, 47.380419], [8.536066, 47.381333], [8.535894, 47.381449], [8.53583, 47.381492], [8.535329, 47.38188], [8.535232, 47.381952], [8.534649, 47.382384], [8.534548, 47.382455], [8.53429, 47.382638], [8.534232, 47.382682], [8.533628, 47.383148], [8.533261, 47.383431], [8.533064, 47.383547], [8.53256, 47.38392], [8.532351, 47.384075], [8.532172, 47.384207], [8.531976, 47.384352]]], "type": "MultiLineString"}, "id": "3741", "properties": {}, "type": "Feature"}, {"bbox": [8.533857, 47.362489, 8.535274, 47.362553], "geometry": {"coordinates": [[[8.535274, 47.362553], [8.535162, 47.362549], [8.535051, 47.362546], [8.53494, 47.362545], [8.534077, 47.362518], [8.534004, 47.362509], [8.533931, 47.362499], [8.533857, 47.362489]]], "type": "MultiLineString"}, "id": "3748", "properties": {}, "type": "Feature"}, {"bbox": [8.546398, 47.41257, 8.55063, 47.413038], "geometry": {"coordinates": [[[8.546398, 47.41257], [8.546651, 47.41265], [8.547201, 47.412782], [8.547254, 47.412795], [8.547309, 47.412805], [8.547364, 47.412811], [8.547421, 47.412814], [8.547477, 47.412814], [8.547664, 47.412822], [8.547849, 47.41284], [8.548032, 47.412868], [8.548578, 47.412931], [8.548809, 47.412947], [8.549222, 47.412964], [8.549651, 47.412976], [8.549839, 47.412984], [8.549905, 47.412989], [8.550004, 47.413001], [8.550198, 47.413022], [8.550375, 47.413038], [8.55063, 47.413027]]], "type": "MultiLineString"}, "id": "3749", "properties": {}, "type": "Feature"}, {"bbox": [8.537717, 47.409762, 8.538112, 47.412926], "geometry": {"coordinates": [[[8.537813, 47.409762], [8.538057, 47.410234], [8.53808, 47.41028], [8.538097, 47.410327], [8.538108, 47.410375], [8.53811, 47.410392], [8.538112, 47.410409], [8.538112, 47.410426], [8.538097, 47.410559], [8.538074, 47.410691], [8.538043, 47.410822], [8.538024, 47.410892], [8.538003, 47.410961], [8.53798, 47.41103], [8.537817, 47.411803], [8.537745, 47.412145], [8.537719, 47.412331], [8.537717, 47.412425], [8.537721, 47.41252], [8.537732, 47.412614], [8.53775, 47.412926]]], "type": "MultiLineString"}, "id": "3754", "properties": {}, "type": "Feature"}, {"bbox": [8.525477, 47.353477, 8.525677, 47.354171], "geometry": {"coordinates": [[[8.525677, 47.353477], [8.525599, 47.353591], [8.525573, 47.353627], [8.525544, 47.353681], [8.525493, 47.353797], [8.525493, 47.353798], [8.525484, 47.353822], [8.525479, 47.353846], [8.525477, 47.35387], [8.525478, 47.353894], [8.525482, 47.353918], [8.525489, 47.353942], [8.5255, 47.353965], [8.525513, 47.353988], [8.52553, 47.35401], [8.525549, 47.35403], [8.525662, 47.354117], [8.525602, 47.354171]]], "type": "MultiLineString"}, "id": "3755", "properties": {}, "type": "Feature"}, {"bbox": [8.550461, 47.404275, 8.561263, 47.406968], "geometry": {"coordinates": [[[8.550461, 47.406968], [8.550584, 47.406915], [8.550746, 47.406845], [8.551447, 47.406596], [8.551837, 47.406458], [8.552116, 47.406365], [8.552192, 47.406339], [8.553179, 47.405993], [8.553465, 47.405888], [8.554153, 47.405635], [8.554933, 47.405358], [8.555284, 47.40523], [8.555971, 47.40498], [8.556265, 47.404873], [8.557004, 47.404647], [8.557685, 47.404572], [8.558246, 47.404511], [8.558287, 47.404507], [8.559173, 47.404418], [8.559688, 47.404379], [8.560204, 47.404346], [8.560721, 47.404318], [8.560903, 47.404308], [8.561083, 47.404294], [8.561263, 47.404275]]], "type": "MultiLineString"}, "id": "3769", "properties": {}, "type": "Feature"}, {"bbox": [8.519092, 47.337213, 8.519244, 47.338716], "geometry": {"coordinates": [[[8.519092, 47.338716], [8.519104, 47.338573], [8.519118, 47.338426], [8.519135, 47.338279], [8.519236, 47.337568], [8.519244, 47.337507], [8.519244, 47.337447], [8.519235, 47.337387], [8.519218, 47.337327], [8.519193, 47.337269], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "3781", "properties": {}, "type": "Feature"}, {"bbox": [8.521987, 47.390188, 8.524644, 47.393412], "geometry": {"coordinates": [[[8.521987, 47.390188], [8.522139, 47.390345], [8.523072, 47.391306], [8.523528, 47.391777], [8.523833, 47.39208], [8.5241, 47.392399], [8.524331, 47.392731], [8.52441, 47.392865], [8.524484, 47.393], [8.524551, 47.393138], [8.524584, 47.393229], [8.524615, 47.39332], [8.524644, 47.393412]]], "type": "MultiLineString"}, "id": "3787", "properties": {}, "type": "Feature"}, {"bbox": [8.52814, 47.373225, 8.531653, 47.373611], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531441, 47.373402], [8.530802, 47.373552], [8.530694, 47.373574], [8.530584, 47.373591], [8.530472, 47.373603], [8.530377, 47.373609], [8.530281, 47.373611], [8.530185, 47.37361], [8.530081, 47.373603], [8.529977, 47.373592], [8.529875, 47.373579], [8.529811, 47.37357], [8.529747, 47.373559], [8.529684, 47.373547], [8.529042, 47.373422], [8.528738, 47.373364], [8.528437, 47.373298], [8.52814, 47.373225]]], "type": "MultiLineString"}, "id": "3790", "properties": {}, "type": "Feature"}, {"bbox": [8.540695, 47.377011, 8.541526, 47.378523], "geometry": {"coordinates": [[[8.540695, 47.377011], [8.540776, 47.377024], [8.540854, 47.377042], [8.54093, 47.377064], [8.541003, 47.37709], [8.541073, 47.377121], [8.541138, 47.377155], [8.541199, 47.377194], [8.541255, 47.377235], [8.541305, 47.37728], [8.54135, 47.377327], [8.541389, 47.377377], [8.541421, 47.377428], [8.541447, 47.377482], [8.541486, 47.377582], [8.541513, 47.377685], [8.541526, 47.377788], [8.541526, 47.377893], [8.541513, 47.377996], [8.54146, 47.378085], [8.541416, 47.378175], [8.541382, 47.378268], [8.541373, 47.378311], [8.54137, 47.378354], [8.541373, 47.378397], [8.541382, 47.37844], [8.541396, 47.378482], [8.541416, 47.378523]]], "type": "MultiLineString"}, "id": "3791", "properties": {}, "type": "Feature"}, {"bbox": [8.53832, 47.373903, 8.538549, 47.3743], "geometry": {"coordinates": [[[8.53832, 47.373903], [8.53839, 47.374017], [8.538549, 47.3743]]], "type": "MultiLineString"}, "id": "3792", "properties": {}, "type": "Feature"}, {"bbox": [8.52235, 47.371584, 8.529983, 47.377593], "geometry": {"coordinates": [[[8.529983, 47.371584], [8.529721, 47.371809], [8.529648, 47.371879], [8.529584, 47.371955], [8.529531, 47.372033], [8.529447, 47.372223], [8.529374, 47.372415], [8.529313, 47.372609], [8.529175, 47.373023], [8.529128, 47.373185], [8.529042, 47.373422], [8.528959, 47.373545], [8.528862, 47.373663], [8.52875, 47.373775], [8.52843, 47.374074], [8.52766, 47.374793], [8.526852, 47.375548], [8.526631, 47.375749], [8.526404, 47.375948], [8.526169, 47.376142], [8.526031, 47.376247], [8.525883, 47.376347], [8.525726, 47.376439], [8.525319, 47.376577], [8.52498, 47.376688], [8.524787, 47.37675], [8.524385, 47.376879], [8.524021, 47.377005], [8.523202, 47.377289], [8.52269, 47.377467], [8.52235, 47.377593]]], "type": "MultiLineString"}, "id": "3794", "properties": {}, "type": "Feature"}, {"bbox": [8.519961, 47.363334, 8.522065, 47.363752], "geometry": {"coordinates": [[[8.522065, 47.363752], [8.520657, 47.363356], [8.520629, 47.363348], [8.5206, 47.363342], [8.52057, 47.363338], [8.52054, 47.363335], [8.52051, 47.363334], [8.52048, 47.363336], [8.52045, 47.363339], [8.52042, 47.363343], [8.520392, 47.36335], [8.520364, 47.363358], [8.520337, 47.363368], [8.519961, 47.363566]]], "type": "MultiLineString"}, "id": "3796", "properties": {}, "type": "Feature"}, {"bbox": [8.590184, 47.363713, 8.592398, 47.364051], "geometry": {"coordinates": [[[8.592398, 47.363733], [8.592206, 47.363717], [8.592013, 47.363713], [8.591819, 47.363723], [8.591628, 47.363744], [8.591441, 47.363778], [8.590184, 47.364051]]], "type": "MultiLineString"}, "id": "3797", "properties": {}, "type": "Feature"}, {"bbox": [8.531653, 47.373193, 8.532433, 47.373373], "geometry": {"coordinates": [[[8.532433, 47.373193], [8.531841, 47.373347], [8.531653, 47.373373]]], "type": "MultiLineString"}, "id": "3798", "properties": {}, "type": "Feature"}, {"bbox": [8.533568, 47.397787, 8.542489, 47.399138], "geometry": {"coordinates": [[[8.533568, 47.397787], [8.534202, 47.397903], [8.534505, 47.397934], [8.534897, 47.397962], [8.535339, 47.397977], [8.535666, 47.397991], [8.535734, 47.398002], [8.5358, 47.398019], [8.535863, 47.398039], [8.5359, 47.398055], [8.535938, 47.398069], [8.535978, 47.398081], [8.536019, 47.398091], [8.536062, 47.398098], [8.536474, 47.398153], [8.536548, 47.398203], [8.537534, 47.39835], [8.537587, 47.398292], [8.537968, 47.398338], [8.539152, 47.398533], [8.539207, 47.398607], [8.540413, 47.398798], [8.541662, 47.398996], [8.542489, 47.399138]]], "type": "MultiLineString"}, "id": "3803", "properties": {}, "type": "Feature"}, {"bbox": [8.568073, 47.350594, 8.568616, 47.351434], "geometry": {"coordinates": [[[8.568616, 47.350594], [8.568605, 47.350614], [8.568106, 47.351235], [8.568073, 47.351292], [8.568108, 47.351401], [8.568135, 47.35141], [8.568162, 47.351419], [8.568191, 47.351425], [8.56822, 47.35143], [8.56825, 47.351433], [8.56828, 47.351434], [8.56831, 47.351434], [8.56834, 47.351431], [8.568369, 47.351427], [8.568398, 47.351421]]], "type": "MultiLineString"}, "id": "3807", "properties": {}, "type": "Feature"}, {"bbox": [8.532288, 47.356513, 8.534755, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532335, 47.365782], [8.532424, 47.365712], [8.53248, 47.36563], [8.532676, 47.365249], [8.532851, 47.364902], [8.532801, 47.364819], [8.532979, 47.364453], [8.533095, 47.364229], [8.533418, 47.363605], [8.533458, 47.363528], [8.533496, 47.363449], [8.53353, 47.36337], [8.533562, 47.363288], [8.533591, 47.363205], [8.533617, 47.363122], [8.533857, 47.362489], [8.533903, 47.362326], [8.53394, 47.362161], [8.53397, 47.361995], [8.534083, 47.361296], [8.534246, 47.360287], [8.53428, 47.360078], [8.534455, 47.35906], [8.534475, 47.358942], [8.534538, 47.358574], [8.534721, 47.357503], [8.534753, 47.357174], [8.534755, 47.356843], [8.534727, 47.356513]]], "type": "MultiLineString"}, "id": "3809", "properties": {}, "type": "Feature"}, {"bbox": [8.593096, 47.362684, 8.596188, 47.363695], "geometry": {"coordinates": [[[8.593096, 47.362684], [8.593227, 47.362738], [8.593519, 47.362884], [8.593711, 47.362973], [8.593916, 47.36305], [8.59413, 47.363112], [8.594642, 47.363218], [8.595179, 47.363343], [8.595696, 47.363502], [8.596188, 47.363695]]], "type": "MultiLineString"}, "id": "3811", "properties": {}, "type": "Feature"}, {"bbox": [8.536666, 47.415834, 8.53949, 47.415979], "geometry": {"coordinates": [[[8.53949, 47.415834], [8.538152, 47.415913], [8.536666, 47.415979]]], "type": "MultiLineString"}, "id": "3816", "properties": {}, "type": "Feature"}, {"bbox": [8.534294, 47.403729, 8.537636, 47.409409], "geometry": {"coordinates": [[[8.534294, 47.403729], [8.53498, 47.404896], [8.536117, 47.40683], [8.536132, 47.406856], [8.536948, 47.408244], [8.537088, 47.408483], [8.537229, 47.408721], [8.537369, 47.40896], [8.537499, 47.409181], [8.537636, 47.409409]]], "type": "MultiLineString"}, "id": "3819", "properties": {}, "type": "Feature"}, {"bbox": [8.502663, 47.364903, 8.503399, 47.364966], "geometry": {"coordinates": [[[8.503399, 47.364904], [8.502869, 47.364904], [8.502849, 47.364903], [8.502829, 47.364903], [8.50281, 47.364905], [8.502791, 47.364907], [8.502772, 47.364911], [8.502754, 47.364916], [8.502736, 47.364922], [8.502719, 47.364929], [8.502704, 47.364937], [8.502689, 47.364946], [8.502675, 47.364956], [8.502663, 47.364966]]], "type": "MultiLineString"}, "id": "3833", "properties": {}, "type": "Feature"}, {"bbox": [8.478156, 47.404844, 8.478596, 47.405141], "geometry": {"coordinates": [[[8.478596, 47.405141], [8.478591, 47.405114], [8.478584, 47.405087], [8.478573, 47.405061], [8.478558, 47.405036], [8.478541, 47.405012], [8.478521, 47.404988], [8.478498, 47.404966], [8.478472, 47.404946], [8.478444, 47.404927], [8.478413, 47.404909], [8.478381, 47.404894], [8.478346, 47.40488], [8.47831, 47.404869], [8.478273, 47.404859], [8.478235, 47.404852], [8.478195, 47.404847], [8.478156, 47.404844]]], "type": "MultiLineString"}, "id": "3836", "properties": {}, "type": "Feature"}, {"bbox": [8.501041, 47.399364, 8.505288, 47.401442], "geometry": {"coordinates": [[[8.505288, 47.399364], [8.505255, 47.399556], [8.505154, 47.399607], [8.505051, 47.399656], [8.504945, 47.399702], [8.504539, 47.399887], [8.504013, 47.400127], [8.50285, 47.400638], [8.50203, 47.400999], [8.501736, 47.401134], [8.501441, 47.401267], [8.501145, 47.401398], [8.501041, 47.401442]]], "type": "MultiLineString"}, "id": "3837", "properties": {}, "type": "Feature"}, {"bbox": [8.523797, 47.352207, 8.524746, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.524621, 47.352714], [8.524535, 47.352629], [8.524413, 47.352559], [8.523995, 47.352294], [8.523797, 47.352207]]], "type": "MultiLineString"}, "id": "3857", "properties": {}, "type": "Feature"}, {"bbox": [8.582046, 47.351006, 8.582237, 47.351087], "geometry": {"coordinates": [[[8.582046, 47.351087], [8.582088, 47.351076], [8.582128, 47.351062], [8.582167, 47.351045], [8.582203, 47.351027], [8.582237, 47.351006]]], "type": "MultiLineString"}, "id": "3862", "properties": {}, "type": "Feature"}, {"bbox": [8.577507, 47.37479, 8.577971, 47.375501], "geometry": {"coordinates": [[[8.577507, 47.37479], [8.577682, 47.374847], [8.57772, 47.374859], [8.577756, 47.374874], [8.57779, 47.374891], [8.577822, 47.37491], [8.577852, 47.37493], [8.577878, 47.374953], [8.577902, 47.374977], [8.577922, 47.375002], [8.577939, 47.375028], [8.577952, 47.375055], [8.577962, 47.375083], [8.577968, 47.375112], [8.577971, 47.375141], [8.57797, 47.375169], [8.577953, 47.375501]]], "type": "MultiLineString"}, "id": "3880", "properties": {}, "type": "Feature"}, {"bbox": [8.554432, 47.357753, 8.557776, 47.359519], "geometry": {"coordinates": [[[8.554432, 47.357753], [8.554833, 47.357877], [8.555177, 47.357973], [8.555368, 47.358026], [8.55609, 47.358223], [8.556898, 47.358442], [8.557098, 47.358737], [8.557141, 47.358818], [8.557191, 47.358897], [8.557247, 47.358974], [8.557264, 47.358996], [8.557282, 47.359018], [8.557301, 47.35904], [8.557451, 47.359187], [8.557667, 47.3594], [8.557776, 47.359519]]], "type": "MultiLineString"}, "id": "3885", "properties": {}, "type": "Feature"}, {"bbox": [8.549774, 47.409354, 8.551051, 47.414237], "geometry": {"coordinates": [[[8.549774, 47.409354], [8.550047, 47.410551], [8.550183, 47.411117], [8.550331, 47.411745], [8.550433, 47.412175], [8.550458, 47.412278], [8.55063, 47.413027], [8.550649, 47.41311], [8.550704, 47.413345], [8.550775, 47.413577], [8.55086, 47.413808], [8.550961, 47.414053], [8.55099, 47.414115], [8.55102, 47.414176], [8.551051, 47.414237]]], "type": "MultiLineString"}, "id": "3892", "properties": {}, "type": "Feature"}, {"bbox": [8.491774, 47.369917, 8.498618, 47.3776], "geometry": {"coordinates": [[[8.498618, 47.3776], [8.4985, 47.377462], [8.49666, 47.375484], [8.496076, 47.374855], [8.495868, 47.374631], [8.495711, 47.374486], [8.495606, 47.374388], [8.494773, 47.373488], [8.494696, 47.373404], [8.494623, 47.373318], [8.494553, 47.373231], [8.494442, 47.373081], [8.494342, 47.372927], [8.494253, 47.37277], [8.494113, 47.372504], [8.49399, 47.372271], [8.493882, 47.372076], [8.493759, 47.371886], [8.493619, 47.371701], [8.493571, 47.371643], [8.493522, 47.371585], [8.493472, 47.371529], [8.493363, 47.371421], [8.493255, 47.371314], [8.493145, 47.371207], [8.493037, 47.371101], [8.492928, 47.370997], [8.492819, 47.370892], [8.492746, 47.370814], [8.492677, 47.370734], [8.492613, 47.370653], [8.492381, 47.370354], [8.492347, 47.370318], [8.492313, 47.370281], [8.492279, 47.370245], [8.492214, 47.370178], [8.492141, 47.370116], [8.49206, 47.370058], [8.491971, 47.370005], [8.491875, 47.369958], [8.491774, 47.369917]]], "type": "MultiLineString"}, "id": "3906", "properties": {}, "type": "Feature"}, {"bbox": [8.573989, 47.396975, 8.594918, 47.404152], "geometry": {"coordinates": [[[8.573989, 47.404152], [8.575115, 47.403684], [8.575899, 47.40335], [8.576049, 47.403264], [8.576375, 47.40312], [8.576541, 47.403067], [8.576844, 47.402971], [8.577151, 47.402881], [8.577461, 47.402795], [8.581162, 47.401716], [8.581734, 47.401542], [8.582661, 47.401282], [8.582916, 47.401207], [8.584562, 47.400728], [8.585158, 47.400555], [8.585775, 47.400374], [8.586201, 47.40025], [8.587513, 47.399868], [8.587805, 47.399783], [8.588139, 47.399685], [8.588465, 47.399576], [8.588783, 47.399457], [8.589148, 47.399316], [8.589669, 47.399114], [8.591389, 47.398448], [8.594578, 47.397224], [8.594627, 47.397207], [8.594674, 47.397187], [8.594717, 47.397164], [8.594758, 47.397138], [8.594797, 47.39711], [8.594832, 47.397079], [8.594862, 47.397047], [8.594884, 47.397024], [8.594903, 47.397], [8.594918, 47.396975]]], "type": "MultiLineString"}, "id": "3912", "properties": {}, "type": "Feature"}, {"bbox": [8.549147, 47.400012, 8.552564, 47.402118], "geometry": {"coordinates": [[[8.549147, 47.400012], [8.549559, 47.400234], [8.54995, 47.400474], [8.550319, 47.400729], [8.550619, 47.400931], [8.550931, 47.401125], [8.551253, 47.40131], [8.551535, 47.401464], [8.551823, 47.401612], [8.552117, 47.401754], [8.552199, 47.401795], [8.552275, 47.401839], [8.552346, 47.401888], [8.552411, 47.401941], [8.552469, 47.401997], [8.55252, 47.402056], [8.552564, 47.402118]]], "type": "MultiLineString"}, "id": "3914", "properties": {}, "type": "Feature"}, {"bbox": [8.513742, 47.322819, 8.514418, 47.323025], "geometry": {"coordinates": [[[8.514418, 47.322981], [8.514382, 47.322994], [8.514344, 47.323005], [8.514306, 47.323013], [8.514266, 47.32302], [8.514226, 47.323023], [8.514185, 47.323025], [8.514144, 47.323024], [8.514104, 47.32302], [8.514064, 47.323015], [8.514025, 47.323007], [8.513987, 47.322996], [8.513951, 47.322984], [8.513916, 47.322969], [8.513884, 47.322953], [8.513853, 47.322934], [8.513825, 47.322914], [8.5138, 47.322892], [8.513778, 47.322869], [8.513759, 47.322845], [8.513742, 47.322819]]], "type": "MultiLineString"}, "id": "3932", "properties": {}, "type": "Feature"}, {"bbox": [8.538791, 47.387998, 8.539375, 47.391346], "geometry": {"coordinates": [[[8.539375, 47.387998], [8.539265, 47.38821], [8.539173, 47.388427], [8.539099, 47.388646], [8.539077, 47.388782], [8.539066, 47.388918], [8.539065, 47.389055], [8.539075, 47.389314], [8.539083, 47.389465], [8.539089, 47.389548], [8.539094, 47.389631], [8.539097, 47.389713], [8.539089, 47.389855], [8.53907, 47.389997], [8.539041, 47.390137], [8.538995, 47.390323], [8.538908, 47.390655], [8.538906, 47.390661], [8.538904, 47.390666], [8.538902, 47.390672], [8.538853, 47.390842], [8.538816, 47.391014], [8.538791, 47.391187], [8.538843, 47.391346]]], "type": "MultiLineString"}, "id": "3943", "properties": {}, "type": "Feature"}, {"bbox": [8.479148, 47.390602, 8.479433, 47.390821], "geometry": {"coordinates": [[[8.479433, 47.390602], [8.479148, 47.390821]]], "type": "MultiLineString"}, "id": "3955", "properties": {}, "type": "Feature"}, {"bbox": [8.492955, 47.385002, 8.495371, 47.385844], "geometry": {"coordinates": [[[8.495371, 47.385002], [8.493283, 47.385708], [8.493173, 47.385752], [8.493064, 47.385798], [8.492955, 47.385844]]], "type": "MultiLineString"}, "id": "3956", "properties": {}, "type": "Feature"}, {"bbox": [8.480421, 47.388822, 8.483314, 47.390095], "geometry": {"coordinates": [[[8.483314, 47.388822], [8.482904, 47.389069], [8.482472, 47.389297], [8.482017, 47.389504], [8.480924, 47.38991], [8.480421, 47.390095]]], "type": "MultiLineString"}, "id": "3957", "properties": {}, "type": "Feature"}, {"bbox": [8.48439, 47.387996, 8.485257, 47.388246], "geometry": {"coordinates": [[[8.485257, 47.387996], [8.484994, 47.388052], [8.484739, 47.388123], [8.484493, 47.388208], [8.484459, 47.388221], [8.484424, 47.388233], [8.48439, 47.388246]]], "type": "MultiLineString"}, "id": "3958", "properties": {}, "type": "Feature"}, {"bbox": [8.498495, 47.38347, 8.498978, 47.383707], "geometry": {"coordinates": [[[8.498978, 47.38347], [8.498823, 47.383547], [8.498495, 47.383707]]], "type": "MultiLineString"}, "id": "3959", "properties": {}, "type": "Feature"}, {"bbox": [8.489281, 47.386835, 8.490506, 47.387126], "geometry": {"coordinates": [[[8.490506, 47.386835], [8.490241, 47.386931], [8.489963, 47.387009], [8.489676, 47.387069], [8.489382, 47.387111], [8.489281, 47.387126]]], "type": "MultiLineString"}, "id": "3960", "properties": {}, "type": "Feature"}, {"bbox": [8.503195, 47.381435, 8.503836, 47.381478], "geometry": {"coordinates": [[[8.503836, 47.381443], [8.503758, 47.381459], [8.503678, 47.38147], [8.503596, 47.381476], [8.503515, 47.381478], [8.503433, 47.381474], [8.503352, 47.381466], [8.503273, 47.381452], [8.503195, 47.381435]]], "type": "MultiLineString"}, "id": "3961", "properties": {}, "type": "Feature"}, {"bbox": [8.490506, 47.385844, 8.492955, 47.386835], "geometry": {"coordinates": [[[8.492955, 47.385844], [8.492874, 47.38588], [8.492793, 47.385916], [8.492713, 47.385953], [8.492537, 47.386032], [8.492361, 47.386109], [8.492183, 47.386186], [8.491633, 47.386413], [8.491074, 47.386629], [8.490506, 47.386835]]], "type": "MultiLineString"}, "id": "3962", "properties": {}, "type": "Feature"}, {"bbox": [8.485257, 47.387865, 8.485955, 47.387996], "geometry": {"coordinates": [[[8.485955, 47.387865], [8.48545, 47.387959], [8.485257, 47.387996]]], "type": "MultiLineString"}, "id": "3963", "properties": {}, "type": "Feature"}, {"bbox": [8.507101, 47.378415, 8.510001, 47.37972], "geometry": {"coordinates": [[[8.510001, 47.378415], [8.509844, 47.378476], [8.509568, 47.378597], [8.507917, 47.379348], [8.507101, 47.37972]]], "type": "MultiLineString"}, "id": "3964", "properties": {}, "type": "Feature"}, {"bbox": [8.500483, 47.382446, 8.501056, 47.38272], "geometry": {"coordinates": [[[8.501056, 47.382446], [8.500586, 47.382669], [8.500483, 47.38272]]], "type": "MultiLineString"}, "id": "3965", "properties": {}, "type": "Feature"}, {"bbox": [8.538588, 47.338107, 8.539538, 47.338442], "geometry": {"coordinates": [[[8.538588, 47.338107], [8.539538, 47.338324], [8.539498, 47.338442]]], "type": "MultiLineString"}, "id": "3966", "properties": {}, "type": "Feature"}, {"bbox": [8.53863, 47.338442, 8.539567, 47.340897], "geometry": {"coordinates": [[[8.539498, 47.338442], [8.539498, 47.338443], [8.539567, 47.338571], [8.539402, 47.338985], [8.53863, 47.340526], [8.538785, 47.340897]]], "type": "MultiLineString"}, "id": "3967", "properties": {}, "type": "Feature"}, {"bbox": [8.534473, 47.34351, 8.535499, 47.345158], "geometry": {"coordinates": [[[8.534473, 47.345158], [8.534483, 47.345101], [8.534493, 47.345043], [8.534504, 47.344986], [8.534549, 47.344867], [8.534609, 47.344751], [8.534683, 47.344639], [8.535342, 47.343719], [8.535499, 47.34351]]], "type": "MultiLineString"}, "id": "3977", "properties": {}, "type": "Feature"}, {"bbox": [8.496615, 47.423758, 8.497054, 47.423784], "geometry": {"coordinates": [[[8.496615, 47.423784], [8.496937, 47.423776], [8.496977, 47.423772], [8.497016, 47.423766], [8.497054, 47.423758]]], "type": "MultiLineString"}, "id": "3979", "properties": {}, "type": "Feature"}, {"bbox": [8.523047, 47.392235, 8.524244, 47.392772], "geometry": {"coordinates": [[[8.523047, 47.392766], [8.523186, 47.392772], [8.523324, 47.392768], [8.523462, 47.392756], [8.523597, 47.392735], [8.523729, 47.392706], [8.523856, 47.392668], [8.524167, 47.392488], [8.524181, 47.392479], [8.524194, 47.392469], [8.524205, 47.392458], [8.524215, 47.392447], [8.524224, 47.392436], [8.524231, 47.392424], [8.524237, 47.392411], [8.524241, 47.392398], [8.524243, 47.392385], [8.524244, 47.392372], [8.524243, 47.392359], [8.52424, 47.392346], [8.524235, 47.392333], [8.524229, 47.392321], [8.52422, 47.392309], [8.524208, 47.392297], [8.524196, 47.392287], [8.524181, 47.392277], [8.524166, 47.392268], [8.52415, 47.39226], [8.524132, 47.392253], [8.524114, 47.392247], [8.524095, 47.392242], [8.524076, 47.392239], [8.524056, 47.392236], [8.524035, 47.392235], [8.524015, 47.392235], [8.523995, 47.392236], [8.523975, 47.392239], [8.523956, 47.392242], [8.523937, 47.392247], [8.523724, 47.392356], [8.523499, 47.392453], [8.523264, 47.392539], [8.523232, 47.392553], [8.523202, 47.392568], [8.523174, 47.392585], [8.523148, 47.392604], [8.523125, 47.392624], [8.523104, 47.392645], [8.523087, 47.392668], [8.523072, 47.392691], [8.523061, 47.392716], [8.523052, 47.392741], [8.523047, 47.392766]]], "type": "MultiLineString"}, "id": "3989", "properties": {}, "type": "Feature"}, {"bbox": [8.550197, 47.430922, 8.550363, 47.431197], "geometry": {"coordinates": [[[8.55026, 47.430922], [8.55025, 47.430927], [8.55024, 47.430934], [8.550231, 47.43094], [8.550223, 47.430948], [8.550216, 47.430955], [8.55021, 47.430963], [8.550205, 47.430972], [8.550201, 47.430981], [8.550198, 47.43099], [8.550197, 47.430999], [8.550197, 47.431008], [8.550198, 47.431017], [8.5502, 47.431026], [8.550203, 47.431035], [8.550208, 47.431043], [8.550213, 47.431051], [8.55022, 47.431059], [8.550228, 47.431067], [8.550363, 47.431197]]], "type": "MultiLineString"}, "id": "3993", "properties": {}, "type": "Feature"}, {"bbox": [8.549343, 47.430003, 8.55026, 47.430936], "geometry": {"coordinates": [[[8.549468, 47.430003], [8.549444, 47.430018], [8.549423, 47.430035], [8.549404, 47.430053], [8.549387, 47.430073], [8.549373, 47.430093], [8.549362, 47.430113], [8.549353, 47.430135], [8.549347, 47.430157], [8.549344, 47.430179], [8.549343, 47.430201], [8.549356, 47.430224], [8.549372, 47.430245], [8.549391, 47.430266], [8.549413, 47.430285], [8.549437, 47.430303], [8.549463, 47.430319], [8.549491, 47.430334], [8.549521, 47.430346], [8.549553, 47.430357], [8.549586, 47.430366], [8.54962, 47.430373], [8.549652, 47.430385], [8.549682, 47.430399], [8.549711, 47.430414], [8.549737, 47.430431], [8.549761, 47.430449], [8.549783, 47.430469], [8.549802, 47.43049], [8.549818, 47.430512], [8.549832, 47.430535], [8.549843, 47.430558], [8.54985, 47.430582], [8.549855, 47.430607], [8.549856, 47.430631], [8.549855, 47.430656], [8.54985, 47.430681], [8.549846, 47.430701], [8.549844, 47.430722], [8.549845, 47.430743], [8.549849, 47.430764], [8.549855, 47.430784], [8.549865, 47.430804], [8.549876, 47.430823], [8.54989, 47.430842], [8.549907, 47.430859], [8.549925, 47.430876], [8.549946, 47.430891], [8.549969, 47.430905], [8.549996, 47.430914], [8.550024, 47.430922], [8.550052, 47.430928], [8.550082, 47.430932], [8.550112, 47.430935], [8.550142, 47.430936], [8.550172, 47.430935], [8.550202, 47.430932], [8.550231, 47.430928], [8.55026, 47.430922]]], "type": "MultiLineString"}, "id": "3997", "properties": {}, "type": "Feature"}, {"bbox": [8.602271, 47.364557, 8.603065, 47.365042], "geometry": {"coordinates": [[[8.602271, 47.365042], [8.602296, 47.365026], [8.602322, 47.365012], [8.602351, 47.364998], [8.60238, 47.364987], [8.602412, 47.364977], [8.602585, 47.36494], [8.602757, 47.364901], [8.602929, 47.364861], [8.602948, 47.364849], [8.602965, 47.364836], [8.602981, 47.364822], [8.602995, 47.364807], [8.603007, 47.364791], [8.603016, 47.364775], [8.603024, 47.364758], [8.603029, 47.364741], [8.603033, 47.364724], [8.603065, 47.364557]]], "type": "MultiLineString"}, "id": "4006", "properties": {}, "type": "Feature"}, {"bbox": [8.524738, 47.363967, 8.526252, 47.36484], "geometry": {"coordinates": [[[8.526252, 47.36416], [8.526228, 47.364188], [8.52615, 47.36418], [8.525797, 47.364099], [8.525271, 47.363973], [8.52525, 47.36397], [8.525229, 47.363968], [8.525209, 47.363967], [8.525188, 47.363968], [8.525168, 47.363969], [8.525148, 47.363972], [8.525128, 47.363976], [8.525109, 47.363981], [8.52509, 47.363987], [8.525073, 47.363995], [8.525056, 47.364003], [8.525041, 47.364012], [8.525027, 47.364023], [8.525014, 47.364034], [8.525003, 47.364045], [8.524994, 47.364058], [8.524986, 47.36407], [8.524979, 47.364084], [8.524975, 47.364097], [8.524972, 47.364111], [8.524968, 47.364243], [8.524964, 47.364296], [8.524955, 47.364349], [8.52494, 47.364401], [8.524842, 47.364719], [8.524833, 47.364744], [8.524822, 47.364768], [8.524808, 47.364791], [8.524791, 47.364813], [8.524786, 47.364818], [8.52478, 47.364822], [8.524774, 47.364826], [8.524768, 47.36483], [8.524761, 47.364833], [8.524754, 47.364836], [8.524746, 47.364838], [8.524738, 47.36484]]], "type": "MultiLineString"}, "id": "4009", "properties": {}, "type": "Feature"}, {"bbox": [8.548352, 47.404699, 8.549506, 47.404861], "geometry": {"coordinates": [[[8.548352, 47.404861], [8.549506, 47.404699]]], "type": "MultiLineString"}, "id": "4024", "properties": {}, "type": "Feature"}, {"bbox": [8.53214, 47.391341, 8.53621, 47.397941], "geometry": {"coordinates": [[[8.53621, 47.391341], [8.535376, 47.391989], [8.535238, 47.392101], [8.535103, 47.392215], [8.534972, 47.392331], [8.534524, 47.392747], [8.534256, 47.393008], [8.534024, 47.393235], [8.533979, 47.39328], [8.533935, 47.393325], [8.533892, 47.393371], [8.533791, 47.393489], [8.533698, 47.39361], [8.533614, 47.393734], [8.533591, 47.39377], [8.533535, 47.393856], [8.53334, 47.394164], [8.533259, 47.394292], [8.533188, 47.394399], [8.533112, 47.394505], [8.533031, 47.394609], [8.532898, 47.394764], [8.532754, 47.394915], [8.5326, 47.395061], [8.532325, 47.395343], [8.532276, 47.395392], [8.532237, 47.395435], [8.532205, 47.395481], [8.532178, 47.395529], [8.532159, 47.395578], [8.532146, 47.395628], [8.53214, 47.395678], [8.53214, 47.395723], [8.532146, 47.395767], [8.532157, 47.395811], [8.532194, 47.395948], [8.532408, 47.39661], [8.532456, 47.396879], [8.532495, 47.397149], [8.532523, 47.397419], [8.532475, 47.39749], [8.532488, 47.397788], [8.532472, 47.397941]]], "type": "MultiLineString"}, "id": "4025", "properties": {}, "type": "Feature"}, {"bbox": [8.557776, 47.359519, 8.561131, 47.360521], "geometry": {"coordinates": [[[8.557776, 47.359519], [8.558219, 47.359662], [8.559101, 47.359842], [8.55922, 47.359869], [8.559337, 47.3599], [8.559453, 47.359933], [8.559962, 47.360085], [8.560056, 47.360114], [8.560965, 47.360384], [8.560985, 47.360389], [8.561004, 47.360396], [8.561022, 47.360403], [8.561039, 47.360412], [8.561055, 47.360421], [8.561069, 47.360431], [8.561083, 47.360442], [8.561095, 47.360454], [8.561105, 47.360466], [8.561114, 47.360479], [8.561121, 47.360493], [8.561127, 47.360506], [8.561131, 47.360521]]], "type": "MultiLineString"}, "id": "4027", "properties": {}, "type": "Feature"}, {"bbox": [8.565559, 47.410623, 8.572311, 47.416172], "geometry": {"coordinates": [[[8.572311, 47.410623], [8.572071, 47.410685], [8.571859, 47.41074], [8.571655, 47.410806], [8.571459, 47.410883], [8.571273, 47.410971], [8.571098, 47.41107], [8.570936, 47.411177], [8.570901, 47.411203], [8.570867, 47.411229], [8.570834, 47.411255], [8.570602, 47.411417], [8.57035, 47.411566], [8.570081, 47.411699], [8.569797, 47.411817], [8.569499, 47.411919], [8.56919, 47.412003], [8.568841, 47.412109], [8.568503, 47.412232], [8.56818, 47.412371], [8.567918, 47.412506], [8.567674, 47.412656], [8.56745, 47.412819], [8.567246, 47.412994], [8.567065, 47.413181], [8.566908, 47.413377], [8.566805, 47.413533], [8.566716, 47.413694], [8.566644, 47.413858], [8.566305, 47.414922], [8.566213, 47.415186], [8.566096, 47.415445], [8.565948, 47.415698], [8.565768, 47.41594], [8.565559, 47.416172]]], "type": "MultiLineString"}, "id": "4031", "properties": {}, "type": "Feature"}, {"bbox": [8.52694, 47.373325, 8.527904, 47.374314], "geometry": {"coordinates": [[[8.527768, 47.373325], [8.527846, 47.3734], [8.52786, 47.373413], [8.527873, 47.373428], [8.527883, 47.373443], [8.527891, 47.373458], [8.527898, 47.373474], [8.527902, 47.37349], [8.527904, 47.373507], [8.527904, 47.373524], [8.527902, 47.37354], [8.527898, 47.373556], [8.527891, 47.373572], [8.527883, 47.373588], [8.527873, 47.373603], [8.527861, 47.373617], [8.527847, 47.373631], [8.527831, 47.373643], [8.52694, 47.374314]]], "type": "MultiLineString"}, "id": "4034", "properties": {}, "type": "Feature"}, {"bbox": [8.515571, 47.399673, 8.519485, 47.400336], "geometry": {"coordinates": [[[8.519485, 47.400006], [8.519285, 47.399998], [8.519271, 47.399997], [8.519257, 47.399998], [8.519243, 47.399999], [8.51923, 47.400001], [8.519217, 47.400004], [8.519204, 47.400007], [8.519191, 47.400012], [8.51918, 47.400017], [8.519169, 47.400023], [8.519159, 47.400029], [8.519149, 47.400036], [8.519141, 47.400044], [8.519048, 47.400144], [8.519023, 47.400171], [8.518995, 47.400197], [8.518964, 47.400221], [8.518929, 47.400243], [8.518892, 47.400263], [8.518853, 47.40028], [8.518812, 47.400296], [8.518769, 47.400309], [8.518724, 47.40032], [8.518679, 47.400328], [8.518632, 47.400333], [8.518585, 47.400336], [8.518538, 47.400336], [8.518491, 47.400333], [8.51824, 47.400307], [8.517993, 47.400266], [8.517753, 47.400209], [8.517522, 47.400137], [8.516752, 47.399885], [8.516481, 47.399814], [8.516207, 47.399748], [8.51593, 47.399688], [8.515859, 47.399678], [8.515787, 47.399673], [8.515714, 47.399673], [8.515642, 47.399677], [8.515571, 47.399686]]], "type": "MultiLineString"}, "id": "4035", "properties": {}, "type": "Feature"}, {"bbox": [8.553642, 47.423566, 8.557146, 47.425638], "geometry": {"coordinates": [[[8.553642, 47.424368], [8.555334, 47.423571], [8.555342, 47.423569], [8.55535, 47.423568], [8.555358, 47.423567], [8.555366, 47.423566], [8.555375, 47.423566], [8.555383, 47.423567], [8.555391, 47.423568], [8.555399, 47.423569], [8.555407, 47.423571], [8.555415, 47.423573], [8.555422, 47.423576], [8.555429, 47.423579], [8.555435, 47.423583], [8.555441, 47.423587], [8.555447, 47.423591], [8.555451, 47.423595], [8.555456, 47.4236], [8.555778, 47.423907], [8.556164, 47.424277], [8.55633, 47.424436], [8.55641, 47.424517], [8.556494, 47.424596], [8.556582, 47.424674], [8.556798, 47.424858], [8.556867, 47.424919], [8.556928, 47.424985], [8.556982, 47.425053], [8.557022, 47.425116], [8.557055, 47.42518], [8.55708, 47.425247], [8.557096, 47.425314], [8.557146, 47.425638]]], "type": "MultiLineString"}, "id": "4046", "properties": {}, "type": "Feature"}, {"bbox": [8.520966, 47.380435, 8.523272, 47.381854], "geometry": {"coordinates": [[[8.520966, 47.380435], [8.520973, 47.380449], [8.520982, 47.380464], [8.520993, 47.380477], [8.521006, 47.38049], [8.52102, 47.380502], [8.521036, 47.380514], [8.521053, 47.380524], [8.521071, 47.380533], [8.521091, 47.380541], [8.521111, 47.380548], [8.521521, 47.380652], [8.521577, 47.380668], [8.52163, 47.380686], [8.521682, 47.380708], [8.52173, 47.380732], [8.521776, 47.380759], [8.522157, 47.38095], [8.522278, 47.381012], [8.522423, 47.381094], [8.522518, 47.381142], [8.522712, 47.381237], [8.522791, 47.381284], [8.522814, 47.3813], [8.522834, 47.381318], [8.522852, 47.381337], [8.522868, 47.381356], [8.522906, 47.381404], [8.523234, 47.381807], [8.523272, 47.381854]]], "type": "MultiLineString"}, "id": "4061", "properties": {}, "type": "Feature"}, {"bbox": [8.539375, 47.380439, 8.542781, 47.387998], "geometry": {"coordinates": [[[8.542781, 47.380439], [8.542608, 47.380715], [8.54241, 47.380997], [8.542286, 47.381156], [8.542228, 47.38122], [8.542174, 47.381284], [8.542121, 47.38135], [8.542056, 47.381438], [8.541996, 47.381528], [8.54194, 47.38162], [8.541882, 47.381749], [8.541834, 47.381881], [8.541798, 47.382014], [8.541798, 47.382016], [8.541707, 47.382391], [8.541672, 47.382477], [8.541626, 47.38256], [8.54157, 47.38264], [8.541502, 47.382717], [8.541361, 47.382872], [8.541087, 47.383189], [8.540981, 47.383318], [8.54087, 47.383451], [8.540585, 47.383804], [8.540503, 47.383896], [8.540195, 47.384256], [8.540142, 47.384316], [8.540096, 47.384379], [8.540059, 47.384444], [8.54003, 47.384511], [8.540009, 47.384579], [8.540003, 47.384615], [8.539998, 47.384651], [8.539994, 47.384686], [8.539978, 47.384837], [8.539891, 47.385433], [8.539839, 47.385824], [8.539833, 47.385863], [8.539804, 47.38606], [8.539738, 47.386535], [8.539671, 47.387008], [8.53963, 47.387296], [8.539615, 47.387427], [8.539585, 47.387556], [8.53954, 47.387684], [8.539481, 47.387809], [8.539375, 47.387998]]], "type": "MultiLineString"}, "id": "4062", "properties": {}, "type": "Feature"}, {"bbox": [8.525982, 47.371836, 8.531367, 47.373028], "geometry": {"coordinates": [[[8.531367, 47.373028], [8.531102, 47.372967], [8.530837, 47.372905], [8.530573, 47.372841], [8.530157, 47.372755], [8.529737, 47.372678], [8.529313, 47.372609], [8.528769, 47.372561], [8.528193, 47.372534], [8.527846, 47.372526], [8.52752, 47.372507], [8.527383, 47.372489], [8.527249, 47.372462], [8.527119, 47.372427], [8.526994, 47.372384], [8.526893, 47.372348], [8.526787, 47.372317], [8.526678, 47.372293], [8.526618, 47.37222], [8.526549, 47.37215], [8.526472, 47.372085], [8.526387, 47.372024], [8.526295, 47.371969], [8.526196, 47.371919], [8.526091, 47.371874], [8.525982, 47.371836]]], "type": "MultiLineString"}, "id": "4066", "properties": {}, "type": "Feature"}, {"bbox": [8.488871, 47.393111, 8.492953, 47.393807], "geometry": {"coordinates": [[[8.492953, 47.39326], [8.492458, 47.393314], [8.491968, 47.393388], [8.491486, 47.393482], [8.490995, 47.393577], [8.490508, 47.39368], [8.490023, 47.393789], [8.489989, 47.393797], [8.489954, 47.393802], [8.489919, 47.393806], [8.489883, 47.393807], [8.489848, 47.393807], [8.489812, 47.393804], [8.489777, 47.393799], [8.489743, 47.393792], [8.489709, 47.393784], [8.489677, 47.393773], [8.489647, 47.39376], [8.489618, 47.393746], [8.489591, 47.39373], [8.489333, 47.393534], [8.489093, 47.393327], [8.488871, 47.393111]]], "type": "MultiLineString"}, "id": "4074", "properties": {}, "type": "Feature"}, {"bbox": [8.540549, 47.373965, 8.541349, 47.374076], "geometry": {"coordinates": [[[8.541349, 47.374076], [8.541336, 47.37406], [8.54132, 47.374046], [8.541303, 47.374033], [8.541284, 47.374021], [8.541264, 47.37401], [8.541242, 47.374], [8.541219, 47.373992], [8.541195, 47.373985], [8.541182, 47.373983], [8.541169, 47.373981], [8.541155, 47.37398], [8.541073, 47.373972], [8.540991, 47.373967], [8.540908, 47.373965], [8.540788, 47.373966], [8.540668, 47.373974], [8.540549, 47.373986]]], "type": "MultiLineString"}, "id": "4078", "properties": {}, "type": "Feature"}, {"bbox": [8.524473, 47.394431, 8.526646, 47.395122], "geometry": {"coordinates": [[[8.526646, 47.394431], [8.52618, 47.394592], [8.525645, 47.394768], [8.52492, 47.395006], [8.524692, 47.395065], [8.524473, 47.395122]]], "type": "MultiLineString"}, "id": "4101", "properties": {}, "type": "Feature"}, {"bbox": [8.553424, 47.42258, 8.554172, 47.422799], "geometry": {"coordinates": [[[8.553424, 47.422621], [8.553492, 47.422599], [8.553517, 47.422592], [8.553543, 47.422587], [8.55357, 47.422583], [8.553597, 47.42258], [8.553624, 47.42258], [8.553651, 47.42258], [8.553678, 47.422583], [8.553705, 47.422586], [8.553731, 47.422592], [8.553756, 47.422599], [8.553781, 47.422607], [8.553804, 47.422616], [8.554172, 47.422799]]], "type": "MultiLineString"}, "id": "4113", "properties": {}, "type": "Feature"}, {"bbox": [8.524623, 47.394117, 8.526646, 47.395065], "geometry": {"coordinates": [[[8.526646, 47.394431], [8.526557, 47.39432], [8.526535, 47.394292], [8.52651, 47.394266], [8.526481, 47.394241], [8.526449, 47.394218], [8.526414, 47.394197], [8.526376, 47.394178], [8.526337, 47.394161], [8.526295, 47.394147], [8.526252, 47.394136], [8.526207, 47.394127], [8.526161, 47.394121], [8.526115, 47.394117], [8.525964, 47.394121], [8.525815, 47.394133], [8.525668, 47.394155], [8.525524, 47.394186], [8.525386, 47.394225], [8.525252, 47.394273], [8.525161, 47.394311], [8.525075, 47.394355], [8.524995, 47.394404], [8.524922, 47.394457], [8.524856, 47.394515], [8.524798, 47.394576], [8.52464, 47.394869], [8.524633, 47.394886], [8.524628, 47.394903], [8.524624, 47.39492], [8.524623, 47.394937], [8.524625, 47.394954], [8.524628, 47.394972], [8.524634, 47.394989], [8.524641, 47.395005], [8.524651, 47.395021], [8.524663, 47.395037], [8.524676, 47.395051], [8.524692, 47.395065]]], "type": "MultiLineString"}, "id": "4114", "properties": {}, "type": "Feature"}, {"bbox": [8.544368, 47.387482, 8.544645, 47.387586], "geometry": {"coordinates": [[[8.544368, 47.387586], [8.544417, 47.387561], [8.544469, 47.387538], [8.544522, 47.387518], [8.544645, 47.387482]]], "type": "MultiLineString"}, "id": "4115", "properties": {}, "type": "Feature"}, {"bbox": [8.539675, 47.389231, 8.541556, 47.390593], "geometry": {"coordinates": [[[8.539675, 47.390593], [8.53985, 47.390492], [8.54002, 47.390387], [8.540183, 47.390278], [8.541386, 47.38935], [8.541556, 47.389231]]], "type": "MultiLineString"}, "id": "4116", "properties": {}, "type": "Feature"}, {"bbox": [8.541556, 47.38875, 8.542347, 47.389231], "geometry": {"coordinates": [[[8.541556, 47.389231], [8.541684, 47.389141], [8.542347, 47.38875]]], "type": "MultiLineString"}, "id": "4117", "properties": {}, "type": "Feature"}, {"bbox": [8.545952, 47.38677, 8.547575, 47.387122], "geometry": {"coordinates": [[[8.545952, 47.387122], [8.547184, 47.386797], [8.547238, 47.386785], [8.547294, 47.386777], [8.54735, 47.386772], [8.547407, 47.38677], [8.547463, 47.386772], [8.547519, 47.386777], [8.547575, 47.386786]]], "type": "MultiLineString"}, "id": "4118", "properties": {}, "type": "Feature"}, {"bbox": [8.552272, 47.402058, 8.55299, 47.402402], "geometry": {"coordinates": [[[8.55299, 47.402402], [8.552873, 47.402352], [8.552673, 47.402254], [8.552473, 47.402156], [8.552272, 47.402058]]], "type": "MultiLineString"}, "id": "4119", "properties": {}, "type": "Feature"}, {"bbox": [8.48666, 47.387268, 8.48828, 47.387725], "geometry": {"coordinates": [[[8.48828, 47.387268], [8.487951, 47.387328], [8.487629, 47.387405], [8.487318, 47.387499], [8.487011, 47.387606], [8.486897, 47.38765], [8.48678, 47.38769], [8.48666, 47.387725]]], "type": "MultiLineString"}, "id": "4123", "properties": {}, "type": "Feature"}, {"bbox": [8.49924, 47.382991, 8.499939, 47.383339], "geometry": {"coordinates": [[[8.499939, 47.382991], [8.49924, 47.383339]]], "type": "MultiLineString"}, "id": "4124", "properties": {}, "type": "Feature"}, {"bbox": [8.503836, 47.381041, 8.504093, 47.381443], "geometry": {"coordinates": [[[8.504093, 47.381041], [8.504074, 47.381114], [8.504045, 47.381185], [8.504006, 47.381255], [8.503958, 47.381321], [8.503902, 47.381384], [8.503836, 47.381443]]], "type": "MultiLineString"}, "id": "4125", "properties": {}, "type": "Feature"}, {"bbox": [8.495371, 47.384546, 8.496675, 47.385002], "geometry": {"coordinates": [[[8.496675, 47.384546], [8.496243, 47.384702], [8.495808, 47.384854], [8.495371, 47.385002]]], "type": "MultiLineString"}, "id": "4126", "properties": {}, "type": "Feature"}, {"bbox": [8.575456, 47.358245, 8.590622, 47.363395], "geometry": {"coordinates": [[[8.575456, 47.363395], [8.575523, 47.363189], [8.575541, 47.363131], [8.575583, 47.363009], [8.575632, 47.362888], [8.575689, 47.362768], [8.57622, 47.361779], [8.576267, 47.361701], [8.576324, 47.361627], [8.57639, 47.361557], [8.576464, 47.36149], [8.576547, 47.361429], [8.576637, 47.361372], [8.576683, 47.361347], [8.57673, 47.361323], [8.576778, 47.361301], [8.5771, 47.361149], [8.57757, 47.360937], [8.578576, 47.360512], [8.578875, 47.360415], [8.579025, 47.360357], [8.579409, 47.360199], [8.579537, 47.36014], [8.580179, 47.35989], [8.580581, 47.359732], [8.580975, 47.359565], [8.581361, 47.35939], [8.581749, 47.359208], [8.582914, 47.358665], [8.58298, 47.358634], [8.583048, 47.358604], [8.583117, 47.358576], [8.583283, 47.358517], [8.583456, 47.358467], [8.583634, 47.358426], [8.583706, 47.358408], [8.583778, 47.358391], [8.583851, 47.358376], [8.583919, 47.358363], [8.583988, 47.358352], [8.584057, 47.358342], [8.584199, 47.358326], [8.584341, 47.358316], [8.584485, 47.358312], [8.584502, 47.358312], [8.584519, 47.358312], [8.584536, 47.358312], [8.585293, 47.358301], [8.586582, 47.358281], [8.587642, 47.358254], [8.587834, 47.35825], [8.587914, 47.358245], [8.590359, 47.358727], [8.590448, 47.358745], [8.590622, 47.358776]]], "type": "MultiLineString"}, "id": "4143", "properties": {}, "type": "Feature"}, {"bbox": [8.566464, 47.360826, 8.574575, 47.364435], "geometry": {"coordinates": [[[8.566464, 47.364435], [8.566709, 47.364106], [8.566821, 47.363955], [8.56688, 47.363883], [8.566943, 47.363812], [8.567009, 47.363743], [8.56752, 47.36323], [8.56798, 47.362767], [8.568122, 47.362659], [8.569339, 47.361795], [8.569419, 47.361747], [8.569502, 47.361701], [8.569589, 47.361659], [8.569618, 47.361645], [8.569648, 47.361632], [8.569677, 47.36162], [8.571304, 47.361042], [8.571487, 47.360994], [8.57165, 47.360951], [8.571814, 47.360907], [8.571882, 47.3609], [8.57195, 47.360892], [8.573112, 47.360828], [8.573165, 47.360826], [8.573209, 47.360827], [8.573253, 47.360831], [8.573296, 47.360838], [8.573338, 47.360847], [8.573377, 47.360858], [8.573415, 47.360872], [8.573451, 47.360888], [8.573485, 47.360906], [8.573516, 47.360925], [8.573544, 47.360947], [8.57357, 47.36097], [8.573592, 47.360995], [8.573611, 47.361021], [8.573813, 47.361298], [8.573909, 47.36144], [8.574, 47.361583], [8.574084, 47.361728], [8.574099, 47.361754], [8.574113, 47.361781], [8.574127, 47.361807], [8.574175, 47.361903], [8.574209, 47.362001], [8.57423, 47.362102], [8.574236, 47.362203], [8.574229, 47.362304], [8.574216, 47.362395], [8.574214, 47.362487], [8.574224, 47.362579], [8.574245, 47.36267], [8.574568, 47.363505], [8.574575, 47.363526]]], "type": "MultiLineString"}, "id": "4144", "properties": {}, "type": "Feature"}, {"bbox": [8.539171, 47.384432, 8.539994, 47.384686], "geometry": {"coordinates": [[[8.539171, 47.384432], [8.539222, 47.384452], [8.539708, 47.384639], [8.53976, 47.384653], [8.539812, 47.384664], [8.539866, 47.384673], [8.539994, 47.384686]]], "type": "MultiLineString"}, "id": "4148", "properties": {}, "type": "Feature"}, {"bbox": [8.490192, 47.422948, 8.498706, 47.427939], "geometry": {"coordinates": [[[8.498706, 47.422948], [8.498321, 47.423185], [8.497305, 47.42378], [8.497208, 47.423836], [8.496584, 47.4242], [8.495905, 47.424596], [8.494806, 47.425236], [8.493733, 47.425845], [8.493491, 47.425982], [8.492652, 47.426475], [8.491949, 47.426889], [8.490192, 47.427939]]], "type": "MultiLineString"}, "id": "4149", "properties": {}, "type": "Feature"}, {"bbox": [8.538556, 47.391346, 8.53887, 47.392096], "geometry": {"coordinates": [[[8.538556, 47.391849], [8.538605, 47.39175], [8.538642, 47.391648], [8.538664, 47.391544], [8.538673, 47.391439], [8.538843, 47.391346], [8.53887, 47.391429], [8.538816, 47.391937], [8.538846, 47.392096]]], "type": "MultiLineString"}, "id": "4154", "properties": {}, "type": "Feature"}, {"bbox": [8.526332, 47.363963, 8.528575, 47.364221], "geometry": {"coordinates": [[[8.528575, 47.363963], [8.528278, 47.364104], [8.528118, 47.364146], [8.527954, 47.364179], [8.527786, 47.364202], [8.527617, 47.364215], [8.527474, 47.364219], [8.526521, 47.364216], [8.526483, 47.364213], [8.526332, 47.364221]]], "type": "MultiLineString"}, "id": "4155", "properties": {}, "type": "Feature"}, {"bbox": [8.534913, 47.386983, 8.536367, 47.391341], "geometry": {"coordinates": [[[8.534913, 47.386983], [8.535326, 47.387285], [8.535767, 47.387607], [8.535884, 47.387698], [8.535991, 47.387796], [8.536086, 47.387899], [8.536169, 47.388007], [8.536239, 47.38812], [8.536296, 47.388235], [8.536325, 47.388313], [8.536347, 47.388393], [8.536361, 47.388473], [8.536365, 47.388516], [8.536367, 47.388558], [8.536367, 47.388601], [8.536313, 47.389906], [8.536312, 47.389937], [8.536311, 47.389969], [8.536307, 47.390067], [8.536278, 47.390813], [8.536261, 47.391197], [8.53621, 47.391341]]], "type": "MultiLineString"}, "id": "4175", "properties": {}, "type": "Feature"}, {"bbox": [8.548119, 47.377806, 8.548271, 47.383943], "geometry": {"coordinates": [[[8.548194, 47.377806], [8.548155, 47.377907], [8.54813, 47.37801], [8.548119, 47.378114], [8.548121, 47.378218], [8.548153, 47.379991], [8.54816, 47.38039], [8.548182, 47.381608], [8.54819, 47.382028], [8.548196, 47.382407], [8.548214, 47.383399], [8.548215, 47.383462], [8.548224, 47.383587], [8.54823, 47.383651], [8.54824, 47.383755], [8.548271, 47.383943]]], "type": "MultiLineString"}, "id": "4192", "properties": {}, "type": "Feature"}, {"bbox": [8.543025, 47.374184, 8.545887, 47.374669], "geometry": {"coordinates": [[[8.543025, 47.374355], [8.543798, 47.374262], [8.544401, 47.374189], [8.544418, 47.374186], [8.544435, 47.374185], [8.544453, 47.374184], [8.54447, 47.374184], [8.544488, 47.374185], [8.544505, 47.374187], [8.544522, 47.37419], [8.544539, 47.374194], [8.544555, 47.374199], [8.544691, 47.374247], [8.545639, 47.374582], [8.545887, 47.374669]]], "type": "MultiLineString"}, "id": "4204", "properties": {}, "type": "Feature"}, {"bbox": [8.483947, 47.373832, 8.484957, 47.374859], "geometry": {"coordinates": [[[8.484957, 47.374859], [8.48458, 47.374476], [8.484176, 47.374101], [8.483986, 47.373921], [8.483975, 47.373909], [8.483967, 47.373897], [8.483959, 47.373885], [8.483954, 47.373872], [8.48395, 47.373859], [8.483947, 47.373845], [8.483947, 47.373832]]], "type": "MultiLineString"}, "id": "4206", "properties": {}, "type": "Feature"}, {"bbox": [8.591245, 47.404479, 8.594996, 47.405176], "geometry": {"coordinates": [[[8.594996, 47.404704], [8.59491, 47.404542], [8.594902, 47.404533], [8.594893, 47.404525], [8.594883, 47.404517], [8.594872, 47.40451], [8.59486, 47.404503], [8.594847, 47.404497], [8.594834, 47.404492], [8.59482, 47.404488], [8.594805, 47.404484], [8.594791, 47.404482], [8.594775, 47.40448], [8.59476, 47.404479], [8.594745, 47.404479], [8.59473, 47.40448], [8.594714, 47.404482], [8.5947, 47.404484], [8.594685, 47.404488], [8.594671, 47.404492], [8.594658, 47.404497], [8.594535, 47.40457], [8.594425, 47.404642], [8.594379, 47.404667], [8.59433, 47.40469], [8.594278, 47.40471], [8.594224, 47.404726], [8.592685, 47.405157], [8.592652, 47.405165], [8.592619, 47.40517], [8.592585, 47.405174], [8.59255, 47.405176], [8.592516, 47.405175], [8.592482, 47.405173], [8.592448, 47.405168], [8.592415, 47.405161], [8.592383, 47.405152], [8.592362, 47.405145], [8.592342, 47.405137], [8.592323, 47.405127], [8.592305, 47.405117], [8.592289, 47.405105], [8.592275, 47.405093], [8.592262, 47.40508], [8.592251, 47.405066], [8.592242, 47.405051], [8.592193, 47.404979], [8.592184, 47.404967], [8.592175, 47.404956], [8.592164, 47.404945], [8.592151, 47.404936], [8.592137, 47.404927], [8.592122, 47.404919], [8.592106, 47.404912], [8.592089, 47.404906], [8.592073, 47.4049], [8.592055, 47.404895], [8.592038, 47.404891], [8.592019, 47.404889], [8.592001, 47.404887], [8.591982, 47.404887], [8.591963, 47.404887], [8.591945, 47.404889], [8.591927, 47.404892], [8.591909, 47.404897], [8.591245, 47.405084]]], "type": "MultiLineString"}, "id": "4209", "properties": {}, "type": "Feature"}, {"bbox": [8.503328, 47.420289, 8.504336, 47.420887], "geometry": {"coordinates": [[[8.504336, 47.420636], [8.504097, 47.42072], [8.503941, 47.420887], [8.503328, 47.420289]]], "type": "MultiLineString"}, "id": "4211", "properties": {}, "type": "Feature"}, {"bbox": [8.531847, 47.377287, 8.532193, 47.377519], "geometry": {"coordinates": [[[8.531847, 47.377287], [8.532193, 47.377519]]], "type": "MultiLineString"}, "id": "4212", "properties": {}, "type": "Feature"}, {"bbox": [8.545087, 47.410431, 8.547623, 47.419173], "geometry": {"coordinates": [[[8.546351, 47.410431], [8.546505, 47.41061], [8.546767, 47.410965], [8.546791, 47.411012], [8.546809, 47.41106], [8.546821, 47.41111], [8.546827, 47.41116], [8.546826, 47.41121], [8.546819, 47.411259], [8.546593, 47.411929], [8.546563, 47.412037], [8.546502, 47.412263], [8.546398, 47.41257], [8.546318, 47.412809], [8.546305, 47.412834], [8.546289, 47.412858], [8.54627, 47.412881], [8.546248, 47.412903], [8.546223, 47.412924], [8.545954, 47.413262], [8.545649, 47.41361], [8.545447, 47.413844], [8.545522, 47.414525], [8.545537, 47.414663], [8.545541, 47.414767], [8.545538, 47.414872], [8.545527, 47.414976], [8.545526, 47.414982], [8.545525, 47.414989], [8.545524, 47.414995], [8.54549, 47.415146], [8.545435, 47.415294], [8.545359, 47.415438], [8.545263, 47.415596], [8.545254, 47.41561], [8.545245, 47.415624], [8.545236, 47.415639], [8.545182, 47.41574], [8.545141, 47.415843], [8.545112, 47.415949], [8.545096, 47.416056], [8.545087, 47.416297], [8.54513, 47.416418], [8.545187, 47.416537], [8.545258, 47.416652], [8.54555, 47.417111], [8.545587, 47.417158], [8.545627, 47.417205], [8.54567, 47.41725], [8.545842, 47.417418], [8.546066, 47.417613], [8.546173, 47.417715], [8.546259, 47.417806], [8.546849, 47.418362], [8.547043, 47.418546], [8.547215, 47.418728], [8.547521, 47.419056], [8.547623, 47.419173]]], "type": "MultiLineString"}, "id": "4215", "properties": {}, "type": "Feature"}, {"bbox": [8.522852, 47.379548, 8.538133, 47.391122], "geometry": {"coordinates": [[[8.537415, 47.379548], [8.5376, 47.379839], [8.537756, 47.380086], [8.537951, 47.380394], [8.53802, 47.38053], [8.538074, 47.380669], [8.538113, 47.38081], [8.53812, 47.38087], [8.538125, 47.380931], [8.538128, 47.380991], [8.538133, 47.381041], [8.538133, 47.381091], [8.538129, 47.381141], [8.538082, 47.381394], [8.538014, 47.381645], [8.537927, 47.381893], [8.537901, 47.381955], [8.537875, 47.382018], [8.537847, 47.382079], [8.537776, 47.382227], [8.537695, 47.382371], [8.537605, 47.382513], [8.537561, 47.382577], [8.537515, 47.382639], [8.537467, 47.382701], [8.537353, 47.38283], [8.537235, 47.382957], [8.537113, 47.383082], [8.537024, 47.383163], [8.536933, 47.383242], [8.53684, 47.38332], [8.536437, 47.383606], [8.535944, 47.383897], [8.535449, 47.384187], [8.534952, 47.384474], [8.533149, 47.385521], [8.532919, 47.385655], [8.532345, 47.385988], [8.53186, 47.386269], [8.531792, 47.386308], [8.531583, 47.38643], [8.530872, 47.386857], [8.530707, 47.386959], [8.530542, 47.387061], [8.530379, 47.387164], [8.529603, 47.387659], [8.529542, 47.387699], [8.529281, 47.387874], [8.528546, 47.388428], [8.527881, 47.388925], [8.52772, 47.389037], [8.52755, 47.389142], [8.527373, 47.389242], [8.52723, 47.389317], [8.525926, 47.39], [8.525785, 47.390077], [8.525425, 47.390286], [8.525404, 47.390298], [8.525382, 47.390309], [8.52536, 47.39032], [8.525249, 47.390374], [8.525135, 47.390423], [8.525018, 47.39047], [8.52499, 47.390569], [8.524897, 47.390616], [8.524797, 47.390657], [8.524693, 47.390691], [8.524584, 47.390719], [8.524472, 47.39074], [8.523607, 47.390858], [8.523513, 47.390872], [8.523422, 47.390891], [8.523332, 47.390916], [8.523246, 47.390945], [8.523164, 47.390979], [8.523086, 47.391017], [8.523013, 47.39106], [8.522946, 47.391106], [8.522852, 47.391122]]], "type": "MultiLineString"}, "id": "4257", "properties": {}, "type": "Feature"}, {"bbox": [8.515764, 47.380435, 8.520981, 47.383915], "geometry": {"coordinates": [[[8.520966, 47.380435], [8.520981, 47.381078], [8.520571, 47.381606], [8.517977, 47.383301], [8.517393, 47.3836], [8.516201, 47.383915], [8.515764, 47.383466], [8.515772, 47.383349]]], "type": "MultiLineString"}, "id": "4269", "properties": {}, "type": "Feature"}, {"bbox": [8.538396, 47.378515, 8.541416, 47.379167], "geometry": {"coordinates": [[[8.541416, 47.378523], [8.541248, 47.378515], [8.54108, 47.378515], [8.540912, 47.378525], [8.540746, 47.378544], [8.540583, 47.378572], [8.540424, 47.378608], [8.538826, 47.37905], [8.538681, 47.379085], [8.538537, 47.379125], [8.538396, 47.379167]]], "type": "MultiLineString"}, "id": "4280", "properties": {}, "type": "Feature"}, {"bbox": [8.488266, 47.41074, 8.489924, 47.411165], "geometry": {"coordinates": [[[8.488266, 47.41074], [8.488341, 47.410755], [8.488716, 47.410858], [8.488918, 47.410916], [8.489008, 47.410944], [8.489094, 47.410976], [8.489177, 47.411012], [8.489352, 47.411095], [8.489379, 47.411106], [8.489407, 47.411116], [8.489436, 47.411124], [8.489466, 47.411131], [8.489497, 47.411136], [8.489528, 47.411138], [8.48956, 47.41114], [8.489591, 47.411139], [8.489623, 47.411136], [8.489624, 47.411136], [8.489626, 47.411136], [8.48974, 47.411141], [8.489853, 47.411153], [8.489924, 47.411165]]], "type": "MultiLineString"}, "id": "4282", "properties": {}, "type": "Feature"}, {"bbox": [8.566258, 47.364594, 8.566513, 47.364827], "geometry": {"coordinates": [[[8.566258, 47.364827], [8.566282, 47.36479], [8.566302, 47.364753], [8.566316, 47.364714], [8.566325, 47.364674], [8.566329, 47.364634], [8.566327, 47.364594], [8.566345, 47.36462], [8.566367, 47.364644], [8.566391, 47.364667], [8.566418, 47.364689], [8.566447, 47.36471], [8.566479, 47.364728], [8.566513, 47.364745]]], "type": "MultiLineString"}, "id": "4283", "properties": {}, "type": "Feature"}, {"bbox": [8.531289, 47.384352, 8.531976, 47.384872], "geometry": {"coordinates": [[[8.531942, 47.384823], [8.531976, 47.384352], [8.531849, 47.384369], [8.53172, 47.384379], [8.53159, 47.384381], [8.531461, 47.384376], [8.531333, 47.384362], [8.531289, 47.384872], [8.531942, 47.384823]]], "type": "MultiLineString"}, "id": "4284", "properties": {}, "type": "Feature"}, {"bbox": [8.531558, 47.366356, 8.531693, 47.366545], "geometry": {"coordinates": [[[8.531693, 47.366356], [8.531559, 47.366497], [8.531558, 47.366545]]], "type": "MultiLineString"}, "id": "4287", "properties": {}, "type": "Feature"}, {"bbox": [8.518669, 47.380525, 8.519722, 47.381528], "geometry": {"coordinates": [[[8.518669, 47.381528], [8.519722, 47.38084], [8.519457, 47.380525]]], "type": "MultiLineString"}, "id": "4309", "properties": {}, "type": "Feature"}, {"bbox": [8.504661, 47.362487, 8.513688, 47.369757], "geometry": {"coordinates": [[[8.513688, 47.369757], [8.513625, 47.369694], [8.512988, 47.369193], [8.512781, 47.369026], [8.512569, 47.368861], [8.512351, 47.3687], [8.511803, 47.368366], [8.511616, 47.36826], [8.511243, 47.368055], [8.51119, 47.368015], [8.511144, 47.367973], [8.511104, 47.367927], [8.511076, 47.367886], [8.511051, 47.367844], [8.511029, 47.367801], [8.510907, 47.367406], [8.510853, 47.367252], [8.5108, 47.367057], [8.510688, 47.366644], [8.510641, 47.366521], [8.510578, 47.366402], [8.5105, 47.366287], [8.510406, 47.366177], [8.510299, 47.366073], [8.510178, 47.365976], [8.509984, 47.365844], [8.50873, 47.364993], [8.508344, 47.364718], [8.507579, 47.364189], [8.507431, 47.3641], [8.506237, 47.363283], [8.506102, 47.36319], [8.506066, 47.363166], [8.50603, 47.363142], [8.505994, 47.363118], [8.505805, 47.363003], [8.505606, 47.362895], [8.505399, 47.362795], [8.505268, 47.362737], [8.504941, 47.362592], [8.504661, 47.362487], [8.504661, 47.362487]]], "type": "MultiLineString"}, "id": "4315", "properties": {}, "type": "Feature"}, {"bbox": [8.533729, 47.369703, 8.534353, 47.370127], "geometry": {"coordinates": [[[8.534353, 47.370127], [8.53427, 47.370077], [8.53417, 47.370005], [8.533729, 47.369703]]], "type": "MultiLineString"}, "id": "4317", "properties": {}, "type": "Feature"}, {"bbox": [8.559184, 47.376421, 8.560058, 47.379109], "geometry": {"coordinates": [[[8.560058, 47.376421], [8.55996, 47.376658], [8.559678, 47.376812], [8.559704, 47.37686], [8.559724, 47.376909], [8.559738, 47.37696], [8.559745, 47.37701], [8.559746, 47.377061], [8.559741, 47.377112], [8.559729, 47.377163], [8.559711, 47.377212], [8.559203, 47.378671], [8.559193, 47.378701], [8.559187, 47.378733], [8.559184, 47.378764], [8.559186, 47.378795], [8.559191, 47.378827], [8.559201, 47.378858], [8.559214, 47.378888], [8.559231, 47.378917], [8.559455, 47.379109]]], "type": "MultiLineString"}, "id": "4319", "properties": {}, "type": "Feature"}, {"bbox": [8.530435, 47.371262, 8.531653, 47.373373], "geometry": {"coordinates": [[[8.531653, 47.373373], [8.531521, 47.373242], [8.531472, 47.373192], [8.53143, 47.37314], [8.531395, 47.373085], [8.531367, 47.373028], [8.531324, 47.372931], [8.531291, 47.372832], [8.531267, 47.372732], [8.531045, 47.372302], [8.530592, 47.371546], [8.530435, 47.371262]]], "type": "MultiLineString"}, "id": "4321", "properties": {}, "type": "Feature"}, {"bbox": [8.550047, 47.410397, 8.570936, 47.411177], "geometry": {"coordinates": [[[8.550047, 47.410551], [8.55029, 47.410572], [8.550945, 47.410616], [8.551319, 47.410635], [8.551905, 47.410669], [8.552491, 47.410694], [8.553078, 47.410709], [8.553671, 47.41072], [8.554307, 47.410731], [8.555717, 47.410756], [8.557576, 47.410789], [8.557797, 47.410793], [8.558777, 47.410815], [8.559063, 47.410822], [8.561145, 47.410856], [8.563293, 47.410891], [8.564541, 47.410911], [8.56573, 47.410897], [8.566386, 47.410863], [8.56704, 47.41082], [8.567693, 47.410767], [8.567817, 47.410756], [8.567941, 47.410745], [8.568066, 47.410733], [8.568363, 47.410697], [8.568655, 47.410647], [8.568942, 47.410584], [8.569115, 47.410537], [8.569594, 47.410397], [8.570261, 47.410822], [8.570476, 47.410948], [8.570701, 47.411067], [8.570936, 47.411177]]], "type": "MultiLineString"}, "id": "4327", "properties": {}, "type": "Feature"}, {"bbox": [8.528831, 47.368682, 8.531326, 47.370994], "geometry": {"coordinates": [[[8.531326, 47.370994], [8.531313, 47.37096], [8.531298, 47.370927], [8.531283, 47.370894], [8.531243, 47.370829], [8.531195, 47.370767], [8.53114, 47.370707], [8.53067, 47.370255], [8.530474, 47.370075], [8.53027, 47.369899], [8.530058, 47.369727], [8.529528, 47.369305], [8.529284, 47.369104], [8.529052, 47.368896], [8.528831, 47.368682]]], "type": "MultiLineString"}, "id": "4346", "properties": {}, "type": "Feature"}, {"bbox": [8.593049, 47.364376, 8.593712, 47.364998], "geometry": {"coordinates": [[[8.593712, 47.364376], [8.593622, 47.36468], [8.593301, 47.364714], [8.593155, 47.364779], [8.593079, 47.364885], [8.593049, 47.364998]]], "type": "MultiLineString"}, "id": "4358", "properties": {}, "type": "Feature"}, {"bbox": [8.513625, 47.391272, 8.518139, 47.391945], "geometry": {"coordinates": [[[8.518139, 47.391945], [8.517885, 47.391861], [8.517703, 47.391782], [8.517268, 47.391656], [8.516832, 47.391534], [8.516394, 47.391415], [8.516204, 47.391362], [8.516009, 47.39132], [8.515808, 47.39129], [8.515674, 47.391276], [8.515539, 47.391272], [8.515403, 47.391275], [8.515269, 47.391286], [8.515136, 47.391306], [8.515007, 47.391334], [8.514882, 47.391369], [8.514215, 47.391563], [8.513625, 47.391729]]], "type": "MultiLineString"}, "id": "4360", "properties": {}, "type": "Feature"}, {"bbox": [8.546819, 47.403337, 8.550833, 47.411259], "geometry": {"coordinates": [[[8.547983, 47.403337], [8.548061, 47.403419], [8.548149, 47.403497], [8.548249, 47.403568], [8.548688, 47.403814], [8.548698, 47.40382], [8.548707, 47.403826], [8.548716, 47.403831], [8.548844, 47.403915], [8.548964, 47.404004], [8.549074, 47.404098], [8.549222, 47.404249], [8.549347, 47.40441], [8.549447, 47.404577], [8.549506, 47.404699], [8.549952, 47.405622], [8.550152, 47.405991], [8.550399, 47.406507], [8.550582, 47.406911], [8.550584, 47.406915], [8.550629, 47.407027], [8.550671, 47.407139], [8.550711, 47.407252], [8.550744, 47.407354], [8.550775, 47.407456], [8.550804, 47.407558], [8.550826, 47.407678], [8.550833, 47.407799], [8.550822, 47.40792], [8.550799, 47.40803], [8.550763, 47.408139], [8.550714, 47.408245], [8.550653, 47.408348], [8.55058, 47.408448], [8.550544, 47.408504], [8.550508, 47.40856], [8.55047, 47.408615], [8.550268, 47.408874], [8.550035, 47.409121], [8.549774, 47.409354], [8.549679, 47.409429], [8.549582, 47.409502], [8.549482, 47.409574], [8.548865, 47.409968], [8.548231, 47.410364], [8.547569, 47.410762], [8.547543, 47.410778], [8.547491, 47.41081], [8.547104, 47.411054], [8.547001, 47.411118], [8.546906, 47.411186], [8.546819, 47.411259]]], "type": "MultiLineString"}, "id": "4362", "properties": {}, "type": "Feature"}, {"bbox": [8.547663, 47.370893, 8.548219, 47.371629], "geometry": {"coordinates": [[[8.547663, 47.371629], [8.547793, 47.371466], [8.548004, 47.371127], [8.548048, 47.371065], [8.548098, 47.371005], [8.548155, 47.370947], [8.548219, 47.370893]]], "type": "MultiLineString"}, "id": "4366", "properties": {}, "type": "Feature"}, {"bbox": [8.527985, 47.376524, 8.534865, 47.380174], "geometry": {"coordinates": [[[8.534865, 47.376524], [8.534434, 47.376794], [8.533836, 47.377168], [8.533268, 47.377523], [8.532751, 47.377849], [8.532142, 47.378233], [8.5316, 47.378574], [8.531591, 47.37858], [8.531583, 47.378585], [8.531574, 47.37859], [8.531566, 47.378595], [8.531558, 47.3786], [8.53155, 47.378605], [8.531474, 47.378653], [8.531397, 47.378699], [8.531319, 47.378745], [8.531285, 47.378765], [8.531251, 47.378784], [8.531217, 47.378803], [8.531171, 47.378829], [8.531125, 47.378854], [8.531079, 47.378879], [8.53104, 47.3789], [8.531001, 47.378921], [8.530962, 47.378942], [8.530778, 47.379037], [8.530592, 47.37913], [8.530405, 47.379222], [8.530358, 47.379245], [8.530311, 47.379268], [8.530264, 47.379291], [8.530216, 47.379313], [8.530169, 47.379336], [8.530121, 47.379358], [8.530031, 47.3794], [8.529941, 47.379441], [8.529849, 47.379482], [8.529746, 47.379527], [8.529677, 47.379557], [8.529623, 47.37958], [8.529573, 47.379602], [8.529522, 47.379624], [8.529472, 47.379645], [8.529402, 47.379675], [8.529331, 47.379704], [8.529261, 47.379734], [8.529201, 47.379759], [8.52914, 47.379783], [8.52908, 47.379808], [8.528166, 47.380174], [8.527985, 47.380137]]], "type": "MultiLineString"}, "id": "4367", "properties": {}, "type": "Feature"}, {"bbox": [8.537415, 47.379167, 8.538396, 47.379548], "geometry": {"coordinates": [[[8.538396, 47.379167], [8.538144, 47.379254], [8.537902, 47.379353], [8.53767, 47.379462], [8.537588, 47.379494], [8.537503, 47.379523], [8.537415, 47.379548]]], "type": "MultiLineString"}, "id": "4369", "properties": {}, "type": "Feature"}, {"bbox": [8.537714, 47.409559, 8.537813, 47.409762], "geometry": {"coordinates": [[[8.537714, 47.409559], [8.537743, 47.409628], [8.537813, 47.409762]]], "type": "MultiLineString"}, "id": "4376", "properties": {}, "type": "Feature"}, {"bbox": [8.484419, 47.366937, 8.513241, 47.370226], "geometry": {"coordinates": [[[8.513241, 47.370226], [8.512144, 47.370096], [8.511908, 47.37007], [8.511734, 47.37005], [8.51094, 47.369956], [8.510279, 47.369894], [8.509955, 47.369863], [8.508156, 47.369649], [8.506609, 47.369472], [8.505925, 47.369389], [8.505407, 47.369326], [8.50436, 47.369198], [8.503922, 47.369146], [8.503101, 47.369048], [8.502235, 47.368946], [8.501665, 47.368878], [8.5012, 47.368822], [8.500605, 47.36875], [8.500178, 47.368697], [8.499216, 47.368563], [8.497464, 47.368319], [8.496409, 47.368148], [8.496065, 47.368177], [8.49595, 47.368197], [8.495835, 47.368217], [8.49572, 47.368237], [8.495621, 47.368249], [8.495522, 47.368254], [8.495423, 47.368253], [8.495324, 47.368247], [8.495226, 47.368234], [8.495157, 47.368215], [8.49509, 47.368192], [8.495027, 47.368165], [8.494969, 47.368134], [8.494914, 47.368099], [8.494865, 47.368061], [8.494821, 47.36802], [8.494807, 47.368], [8.494797, 47.36798], [8.494788, 47.367959], [8.494783, 47.367937], [8.49478, 47.367915], [8.494779, 47.367893], [8.494782, 47.367871], [8.494787, 47.36785], [8.494795, 47.367829], [8.494805, 47.367808], [8.494818, 47.367788], [8.493993, 47.36741], [8.4937, 47.367275], [8.4934, 47.36715], [8.493091, 47.367033], [8.492959, 47.366998], [8.492822, 47.36697], [8.492683, 47.36695], [8.492481, 47.36694], [8.492278, 47.366937], [8.492075, 47.366942], [8.491655, 47.366981], [8.491241, 47.367043], [8.490836, 47.367127], [8.490655, 47.367175], [8.490477, 47.367227], [8.490303, 47.367284], [8.489549, 47.367554], [8.489351, 47.36762], [8.489145, 47.367674], [8.488933, 47.367715], [8.488717, 47.367743], [8.488497, 47.367758], [8.488277, 47.367759], [8.487599, 47.36775], [8.487526, 47.367752], [8.487453, 47.367754], [8.487379, 47.367758], [8.487172, 47.367774], [8.486966, 47.3678], [8.486763, 47.367834], [8.486741, 47.367839], [8.48672, 47.367843], [8.486698, 47.367847], [8.484419, 47.368332]]], "type": "MultiLineString"}, "id": "4377", "properties": {}, "type": "Feature"}, {"bbox": [8.53775, 47.412926, 8.551051, 47.414237], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.549538, 47.414087], [8.548921, 47.414027], [8.547903, 47.413928], [8.547718, 47.41391], [8.546898, 47.413831], [8.546822, 47.413823], [8.546746, 47.413816], [8.546669, 47.41381], [8.546365, 47.413796], [8.54606, 47.413799], [8.545756, 47.413819], [8.545447, 47.413844], [8.545345, 47.413852], [8.544211, 47.413914], [8.543307, 47.413965], [8.543161, 47.413973], [8.543073, 47.413976], [8.542178, 47.414007], [8.541567, 47.414049], [8.541551, 47.414049], [8.541534, 47.41405], [8.541518, 47.41405], [8.541439, 47.414051], [8.541361, 47.414049], [8.541283, 47.414045], [8.541136, 47.414031], [8.540991, 47.414009], [8.540849, 47.413979], [8.540711, 47.41394], [8.540578, 47.413894], [8.540344, 47.413806], [8.539419, 47.413455], [8.538959, 47.413281], [8.538778, 47.413211], [8.538441, 47.413082], [8.538311, 47.413036], [8.538176, 47.412998], [8.538037, 47.412966], [8.537895, 47.412942], [8.53775, 47.412926]]], "type": "MultiLineString"}, "id": "4415", "properties": {}, "type": "Feature"}, {"bbox": [8.598698, 47.363838, 8.598862, 47.365251], "geometry": {"coordinates": [[[8.598851, 47.363838], [8.598857, 47.363873], [8.598862, 47.363948], [8.598857, 47.364024], [8.598842, 47.364099], [8.59873, 47.364479], [8.598717, 47.364544], [8.598707, 47.36461], [8.5987, 47.364676], [8.598698, 47.36473], [8.598698, 47.364785], [8.5987, 47.364839], [8.598748, 47.365251]]], "type": "MultiLineString"}, "id": "4417", "properties": {}, "type": "Feature"}, {"bbox": [8.51916, 47.336957, 8.522799, 47.340107], "geometry": {"coordinates": [[[8.522799, 47.340107], [8.522755, 47.340079], [8.522584, 47.339952], [8.522428, 47.339817], [8.522288, 47.339673], [8.522216, 47.339558], [8.522161, 47.339438], [8.522123, 47.339315], [8.522102, 47.339191], [8.52208, 47.339069], [8.522064, 47.338987], [8.522038, 47.338907], [8.522003, 47.338828], [8.521841, 47.338565], [8.521555, 47.338047], [8.521482, 47.337921], [8.521403, 47.337796], [8.521321, 47.337673], [8.521203, 47.337505], [8.52108, 47.337338], [8.520954, 47.337173], [8.520937, 47.337155], [8.52092, 47.337137], [8.520901, 47.337119], [8.520864, 47.337091], [8.520824, 47.337065], [8.520781, 47.337042], [8.520735, 47.337021], [8.520686, 47.337003], [8.520635, 47.336989], [8.520582, 47.336977], [8.520525, 47.336967], [8.520467, 47.33696], [8.520408, 47.336957], [8.52035, 47.336958], [8.520291, 47.336962], [8.520233, 47.33697], [8.520177, 47.336982], [8.520075, 47.337011], [8.51997, 47.337037], [8.519864, 47.337059], [8.51976, 47.337077], [8.51961, 47.337103], [8.51916, 47.337213]]], "type": "MultiLineString"}, "id": "4423", "properties": {}, "type": "Feature"}, {"bbox": [8.53795, 47.409293, 8.538568, 47.409499], "geometry": {"coordinates": [[[8.538568, 47.409293], [8.538233, 47.409405], [8.53808, 47.409455], [8.53795, 47.409499]]], "type": "MultiLineString"}, "id": "4426", "properties": {}, "type": "Feature"}, {"bbox": [8.536081, 47.371305, 8.536441, 47.371538], "geometry": {"coordinates": [[[8.536441, 47.371538], [8.536081, 47.371305]]], "type": "MultiLineString"}, "id": "4427", "properties": {}, "type": "Feature"}, {"bbox": [8.511813, 47.353401, 8.516432, 47.358927], "geometry": {"coordinates": [[[8.516432, 47.358927], [8.516201, 47.358831], [8.516003, 47.358712], [8.515424, 47.358367], [8.514684, 47.357926], [8.514599, 47.357832], [8.51452, 47.357735], [8.514446, 47.357637], [8.514319, 47.357442], [8.514214, 47.357242], [8.51413, 47.357037], [8.513399, 47.355534], [8.512858, 47.354422], [8.512843, 47.354393], [8.512727, 47.354204], [8.512588, 47.354023], [8.512425, 47.353851], [8.51224, 47.353689], [8.512036, 47.353538], [8.511813, 47.353401]]], "type": "MultiLineString"}, "id": "4428", "properties": {}, "type": "Feature"}, {"bbox": [8.51836, 47.414808, 8.519307, 47.415344], "geometry": {"coordinates": [[[8.519307, 47.414808], [8.51911, 47.414877], [8.518923, 47.414959], [8.518748, 47.415053], [8.518587, 47.415157], [8.518441, 47.415271], [8.51836, 47.415344]]], "type": "MultiLineString"}, "id": "4431", "properties": {}, "type": "Feature"}, {"bbox": [8.526659, 47.403363, 8.530536, 47.407267], "geometry": {"coordinates": [[[8.530536, 47.403363], [8.530536, 47.403367], [8.530534, 47.40347], [8.530518, 47.403573], [8.530488, 47.403674], [8.530444, 47.403774], [8.530388, 47.40387], [8.530308, 47.404009], [8.530047, 47.40443], [8.529998, 47.404498], [8.52994, 47.404563], [8.529874, 47.404624], [8.529802, 47.404681], [8.529722, 47.404734], [8.529636, 47.404782], [8.529545, 47.404826], [8.529449, 47.404864], [8.529348, 47.404896], [8.52881, 47.405062], [8.528655, 47.405122], [8.528507, 47.405188], [8.528366, 47.405261], [8.528194, 47.405366], [8.528035, 47.40548], [8.527892, 47.405603], [8.527764, 47.405734], [8.527599, 47.405942], [8.527187, 47.406511], [8.527137, 47.406585], [8.527085, 47.406658], [8.527029, 47.406729], [8.526815, 47.407026], [8.526758, 47.407105], [8.526706, 47.407185], [8.526659, 47.407267]]], "type": "MultiLineString"}, "id": "4450", "properties": {}, "type": "Feature"}, {"bbox": [8.479148, 47.378677, 8.523147, 47.391988], "geometry": {"coordinates": [[[8.523147, 47.378677], [8.522298, 47.379172], [8.521482, 47.379647], [8.521262, 47.379774], [8.521142, 47.379837], [8.521019, 47.379896], [8.520891, 47.379951], [8.520728, 47.38002], [8.520612, 47.380071], [8.520495, 47.380119], [8.520376, 47.380165], [8.519767, 47.380407], [8.519457, 47.380525], [8.518962, 47.380721], [8.518368, 47.380957], [8.51827, 47.380999], [8.518171, 47.381041], [8.518073, 47.381083], [8.517813, 47.381198], [8.517554, 47.381316], [8.517298, 47.381436], [8.516116, 47.382038], [8.51603, 47.382105], [8.51595, 47.382175], [8.515876, 47.382248], [8.515807, 47.382325], [8.515745, 47.382403], [8.51569, 47.382484], [8.515524, 47.382746], [8.515484, 47.382793], [8.515439, 47.382837], [8.515387, 47.382879], [8.515331, 47.382917], [8.51527, 47.382952], [8.515241, 47.382967], [8.515211, 47.382981], [8.51518, 47.382994], [8.51508, 47.383029], [8.514976, 47.383058], [8.514869, 47.383082], [8.514759, 47.383099], [8.514647, 47.38311], [8.514534, 47.383115], [8.514315, 47.383104], [8.514189, 47.3831], [8.514064, 47.3831], [8.513938, 47.383106], [8.513784, 47.383134], [8.513634, 47.383171], [8.51349, 47.383219], [8.513353, 47.383275], [8.512271, 47.383765], [8.511778, 47.383983], [8.511588, 47.384061], [8.511395, 47.384136], [8.511199, 47.384207], [8.51103, 47.384266], [8.510859, 47.384323], [8.510686, 47.384377], [8.510142, 47.384546], [8.509972, 47.384594], [8.509401, 47.384772], [8.50839, 47.385075], [8.506925, 47.385513], [8.506466, 47.385649], [8.50503, 47.386073], [8.504803, 47.38614], [8.50374, 47.386454], [8.502451, 47.386835], [8.502256, 47.386892], [8.499469, 47.387716], [8.497972, 47.388159], [8.497368, 47.388332], [8.496513, 47.388588], [8.494281, 47.389249], [8.49203, 47.389914], [8.491784, 47.389987], [8.491478, 47.390077], [8.490566, 47.390347], [8.48979, 47.390576], [8.48963, 47.390623], [8.487486, 47.391207], [8.486462, 47.391481], [8.486066, 47.391583], [8.48566, 47.391664], [8.485246, 47.391726], [8.484147, 47.391871], [8.483677, 47.391934], [8.483373, 47.391969], [8.483065, 47.391987], [8.482756, 47.391988], [8.482448, 47.391971], [8.482143, 47.391936], [8.481843, 47.391884], [8.481552, 47.391815], [8.481114, 47.391691], [8.480695, 47.391541], [8.480296, 47.391368], [8.479148, 47.390821]]], "type": "MultiLineString"}, "id": "4455", "properties": {}, "type": "Feature"}, {"bbox": [8.516432, 47.357559, 8.522947, 47.360019], "geometry": {"coordinates": [[[8.522947, 47.360019], [8.522833, 47.359947], [8.522729, 47.359868], [8.522635, 47.359784], [8.522552, 47.359694], [8.522481, 47.359599], [8.521954, 47.358974], [8.52194, 47.35896], [8.521928, 47.358945], [8.521916, 47.35893], [8.521904, 47.358914], [8.521893, 47.358899], [8.521883, 47.358883], [8.521861, 47.358841], [8.521843, 47.358798], [8.521831, 47.358754], [8.521824, 47.358709], [8.521822, 47.358664], [8.52181, 47.358068], [8.521808, 47.358005], [8.521797, 47.357942], [8.521779, 47.357879], [8.521754, 47.357818], [8.521723, 47.357762], [8.521686, 47.357707], [8.521642, 47.357654], [8.5216, 47.357633], [8.521555, 47.357614], [8.521508, 47.357597], [8.521459, 47.357584], [8.521409, 47.357573], [8.521357, 47.357566], [8.521305, 47.357561], [8.521253, 47.357559], [8.5212, 47.357561], [8.521148, 47.357565], [8.521096, 47.357573], [8.521046, 47.357583], [8.520997, 47.357596], [8.520949, 47.357612], [8.520904, 47.357631], [8.520862, 47.357652], [8.520822, 47.357676], [8.520073, 47.358041], [8.519971, 47.358065], [8.518978, 47.358299], [8.518322, 47.358454], [8.518148, 47.35849], [8.517956, 47.358537], [8.51716, 47.358723], [8.517076, 47.358747], [8.516937, 47.358799], [8.516767, 47.358838], [8.516598, 47.358881], [8.516432, 47.358927]]], "type": "MultiLineString"}, "id": "4468", "properties": {}, "type": "Feature"}, {"bbox": [8.5108, 47.366701, 8.512824, 47.367348], "geometry": {"coordinates": [[[8.5108, 47.367057], [8.51086, 47.366942], [8.511393, 47.366862], [8.512183, 47.366739], [8.512299, 47.366722], [8.512435, 47.366701], [8.512555, 47.367127], [8.512577, 47.367192], [8.512795, 47.367328], [8.512824, 47.367348]]], "type": "MultiLineString"}, "id": "4469", "properties": {}, "type": "Feature"}, {"bbox": [8.548524, 47.399732, 8.548879, 47.400648], "geometry": {"coordinates": [[[8.548651, 47.399732], [8.548703, 47.399777], [8.548749, 47.399825], [8.548789, 47.399875], [8.548821, 47.399928], [8.548847, 47.399982], [8.548865, 47.400038], [8.548876, 47.400095], [8.548879, 47.400152], [8.548875, 47.400209], [8.548863, 47.400265], [8.548844, 47.400321], [8.548818, 47.400375], [8.548785, 47.400427], [8.548745, 47.400477], [8.548698, 47.400525], [8.548646, 47.400569], [8.548587, 47.400611], [8.548524, 47.400648]]], "type": "MultiLineString"}, "id": "4492", "properties": {}, "type": "Feature"}, {"bbox": [8.518219, 47.333731, 8.519405, 47.336767], "geometry": {"coordinates": [[[8.518617, 47.336767], [8.518541, 47.336714], [8.518472, 47.336656], [8.51841, 47.336595], [8.518356, 47.336531], [8.518311, 47.336463], [8.518274, 47.336393], [8.518247, 47.336321], [8.518228, 47.336248], [8.518219, 47.336174], [8.51823, 47.336121], [8.518246, 47.336069], [8.518269, 47.336017], [8.518298, 47.335967], [8.518334, 47.335919], [8.518374, 47.335873], [8.518421, 47.33583], [8.518721, 47.335606], [8.518996, 47.335368], [8.519244, 47.335116], [8.51926, 47.335096], [8.519276, 47.335076], [8.519292, 47.335057], [8.519341, 47.334941], [8.519376, 47.334824], [8.519397, 47.334704], [8.519405, 47.334584], [8.519398, 47.334465], [8.519375, 47.334312], [8.519333, 47.334161], [8.519271, 47.334013], [8.519189, 47.333869], [8.51909, 47.333731]]], "type": "MultiLineString"}, "id": "4494", "properties": {}, "type": "Feature"}, {"bbox": [8.502847, 47.407946, 8.503672, 47.409151], "geometry": {"coordinates": [[[8.503387, 47.407946], [8.503257, 47.407955], [8.503255, 47.40798], [8.503253, 47.408005], [8.50325, 47.408031], [8.503236, 47.408122], [8.50321, 47.408213], [8.503175, 47.408302], [8.503157, 47.408336], [8.503139, 47.408371], [8.503118, 47.408405], [8.503092, 47.408446], [8.503062, 47.408486], [8.503031, 47.408525], [8.502903, 47.408682], [8.502881, 47.408721], [8.502864, 47.408761], [8.502852, 47.408802], [8.502847, 47.408844], [8.502847, 47.408871], [8.502851, 47.408897], [8.502859, 47.408923], [8.502869, 47.408948], [8.502883, 47.408973], [8.502901, 47.408997], [8.502921, 47.409019], [8.502944, 47.40904], [8.50297, 47.40906], [8.502998, 47.409078], [8.503029, 47.409095], [8.503061, 47.409109], [8.503095, 47.409122], [8.503131, 47.409132], [8.503168, 47.40914], [8.503206, 47.409146], [8.503245, 47.40915], [8.503284, 47.409151], [8.503351, 47.409149], [8.503418, 47.409142], [8.503484, 47.409131], [8.503548, 47.409116], [8.503672, 47.409036]]], "type": "MultiLineString"}, "id": "4504", "properties": {}, "type": "Feature"}, {"bbox": [8.524132, 47.374289, 8.524298, 47.374509], "geometry": {"coordinates": [[[8.524132, 47.374289], [8.524184, 47.374364], [8.524239, 47.374437], [8.524298, 47.374509]]], "type": "MultiLineString"}, "id": "4512", "properties": {}, "type": "Feature"}, {"bbox": [8.504302, 47.351839, 8.507994, 47.3525], "geometry": {"coordinates": [[[8.507994, 47.3525], [8.507571, 47.352425], [8.50659, 47.352248], [8.504806, 47.351929], [8.504302, 47.351839]]], "type": "MultiLineString"}, "id": "4518", "properties": {}, "type": "Feature"}, {"bbox": [8.543712, 47.377004, 8.544176, 47.377776], "geometry": {"coordinates": [[[8.544176, 47.377004], [8.544143, 47.377009], [8.544111, 47.377015], [8.544081, 47.377024], [8.544051, 47.377034], [8.544023, 47.377046], [8.543996, 47.377059], [8.543971, 47.377074], [8.543949, 47.377091], [8.543758, 47.377536], [8.543741, 47.377589], [8.543712, 47.377776]]], "type": "MultiLineString"}, "id": "4520", "properties": {}, "type": "Feature"}, {"bbox": [8.531765, 47.391341, 8.53621, 47.392996], "geometry": {"coordinates": [[[8.53621, 47.391341], [8.535337, 47.391351], [8.53523, 47.391355], [8.535124, 47.391365], [8.535019, 47.391382], [8.534917, 47.391404], [8.534818, 47.391431], [8.534723, 47.391464], [8.534632, 47.391503], [8.534441, 47.391601], [8.533001, 47.392389], [8.532271, 47.392788], [8.53211, 47.392865], [8.531941, 47.392935], [8.531765, 47.392996]]], "type": "MultiLineString"}, "id": "4522", "properties": {}, "type": "Feature"}, {"bbox": [8.466975, 47.382049, 8.473208, 47.385121], "geometry": {"coordinates": [[[8.473208, 47.382049], [8.473078, 47.382092], [8.473048, 47.382105], [8.47291, 47.382167], [8.47265, 47.382281], [8.472583, 47.382311], [8.472509, 47.38235], [8.472357, 47.382429], [8.472097, 47.382566], [8.471599, 47.382826], [8.471554, 47.382848], [8.471507, 47.382867], [8.471457, 47.382883], [8.471406, 47.382896], [8.471353, 47.382907], [8.470386, 47.383067], [8.470338, 47.383077], [8.470291, 47.383088], [8.470246, 47.383102], [8.470202, 47.383119], [8.470161, 47.383137], [8.470122, 47.383158], [8.469623, 47.383438], [8.469578, 47.383463], [8.469533, 47.383487], [8.469487, 47.38351], [8.469487, 47.38351], [8.469487, 47.38351], [8.46944, 47.383532], [8.469393, 47.383554], [8.469345, 47.383575], [8.468711, 47.383846], [8.468689, 47.383855], [8.468667, 47.383863], [8.468644, 47.38387], [8.46862, 47.383876], [8.468595, 47.38388], [8.46857, 47.383884], [8.468534, 47.38389], [8.468498, 47.383898], [8.468463, 47.383909], [8.468431, 47.383921], [8.468431, 47.383921], [8.468431, 47.383921], [8.4684, 47.383936], [8.468371, 47.383953], [8.468345, 47.383972], [8.468321, 47.383992], [8.468086, 47.384216], [8.468052, 47.384247], [8.468018, 47.384277], [8.467982, 47.384307], [8.467982, 47.384307], [8.467982, 47.384307], [8.467945, 47.384335], [8.467906, 47.384363], [8.467866, 47.38439], [8.467405, 47.3847], [8.467294, 47.384775], [8.467092, 47.38491], [8.467067, 47.384928], [8.467046, 47.384947], [8.467026, 47.384968], [8.46701, 47.384989], [8.466997, 47.385012], [8.466986, 47.385035], [8.466979, 47.385059], [8.466975, 47.385084], [8.466976, 47.385121]]], "type": "MultiLineString"}, "id": "4529", "properties": {}, "type": "Feature"}, {"bbox": [8.503399, 47.363042, 8.504989, 47.364904], "geometry": {"coordinates": [[[8.503399, 47.364904], [8.503402, 47.364762], [8.503456, 47.364698], [8.503552, 47.364587], [8.503601, 47.364531], [8.504134, 47.36391], [8.50422, 47.36382], [8.504412, 47.363621], [8.504892, 47.363125], [8.504956, 47.363069], [8.504989, 47.363042]]], "type": "MultiLineString"}, "id": "4537", "properties": {}, "type": "Feature"}, {"bbox": [8.50956, 47.360777, 8.511844, 47.362171], "geometry": {"coordinates": [[[8.511844, 47.361411], [8.511549, 47.361201], [8.511498, 47.361179], [8.510621, 47.36083], [8.510543, 47.360799], [8.510509, 47.36079], [8.510474, 47.360784], [8.510439, 47.360779], [8.510402, 47.360777], [8.510366, 47.360778], [8.51033, 47.36078], [8.510295, 47.360785], [8.51026, 47.360791], [8.510226, 47.3608], [8.510194, 47.360811], [8.510163, 47.360824], [8.510134, 47.360839], [8.510107, 47.360855], [8.510082, 47.360873], [8.51006, 47.360892], [8.509591, 47.361438], [8.50958, 47.361455], [8.509571, 47.361473], [8.509565, 47.361491], [8.509561, 47.361509], [8.50956, 47.361527], [8.50956, 47.361546], [8.509564, 47.361564], [8.509569, 47.361582], [8.509577, 47.3616], [8.509588, 47.361617], [8.5096, 47.361633], [8.509615, 47.361649], [8.509631, 47.361664], [8.50965, 47.361677], [8.50967, 47.36169], [8.509691, 47.361701], [8.510487, 47.362015], [8.510872, 47.362171]]], "type": "MultiLineString"}, "id": "4539", "properties": {}, "type": "Feature"}, {"bbox": [8.491568, 47.389588, 8.495358, 47.399797], "geometry": {"coordinates": [[[8.491568, 47.389588], [8.491623, 47.389728], [8.491785, 47.390108], [8.491974, 47.390626], [8.492525, 47.392103], [8.492953, 47.39326], [8.493295, 47.394183], [8.49489, 47.39851], [8.495358, 47.399797]]], "type": "MultiLineString"}, "id": "4548", "properties": {}, "type": "Feature"}, {"bbox": [8.545177, 47.36675, 8.545815, 47.367474], "geometry": {"coordinates": [[[8.545814, 47.36675], [8.545815, 47.366782], [8.545812, 47.366814], [8.545806, 47.366847], [8.545795, 47.366878], [8.545779, 47.366905], [8.54576, 47.366931], [8.545737, 47.366956], [8.545712, 47.36698], [8.545489, 47.367148], [8.545443, 47.367193], [8.545402, 47.367241], [8.545367, 47.367291], [8.545338, 47.367343], [8.545318, 47.367368], [8.545295, 47.367392], [8.54527, 47.367415], [8.545241, 47.367436], [8.54521, 47.367456], [8.545177, 47.367474]]], "type": "MultiLineString"}, "id": "4567", "properties": {}, "type": "Feature"}, {"bbox": [8.5574, 47.403901, 8.558452, 47.404072], "geometry": {"coordinates": [[[8.5574, 47.403958], [8.557805, 47.404064], [8.557864, 47.40407], [8.557925, 47.404072], [8.557985, 47.40407], [8.558045, 47.404065], [8.558104, 47.404056], [8.558162, 47.404043], [8.558217, 47.404027], [8.55827, 47.404008], [8.558321, 47.403985], [8.558368, 47.40396], [8.558412, 47.403932], [8.558452, 47.403901]]], "type": "MultiLineString"}, "id": "4569", "properties": {}, "type": "Feature"}, {"bbox": [8.514617, 47.370286, 8.518557, 47.370672], "geometry": {"coordinates": [[[8.518557, 47.370286], [8.51825, 47.370378], [8.51757, 47.370568], [8.517336, 47.370633], [8.517269, 47.37065], [8.517199, 47.370662], [8.517129, 47.370669], [8.517057, 47.370672], [8.516968, 47.370672], [8.516879, 47.370669], [8.51679, 47.370663], [8.516723, 47.370656], [8.516656, 47.370647], [8.516589, 47.370636], [8.51642, 47.370607], [8.51625, 47.370581], [8.516079, 47.370559], [8.515431, 47.370483], [8.515408, 47.37048], [8.515401, 47.37048], [8.515301, 47.370468], [8.514617, 47.370381]]], "type": "MultiLineString"}, "id": "4606", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.352796, 8.525394, 47.354035], "geometry": {"coordinates": [[[8.525394, 47.354035], [8.525368, 47.354005], [8.525346, 47.353973], [8.525329, 47.35394], [8.525316, 47.353906], [8.525208, 47.353525], [8.525194, 47.35349], [8.52518, 47.353455], [8.525166, 47.353421], [8.525089, 47.353256], [8.524993, 47.353097], [8.524878, 47.352943], [8.524746, 47.352796]]], "type": "MultiLineString"}, "id": "4613", "properties": {}, "type": "Feature"}, {"bbox": [8.525612, 47.380414, 8.525652, 47.380449], "geometry": {"coordinates": [[[8.525652, 47.380449], [8.525612, 47.380414]]], "type": "MultiLineString"}, "id": "4633", "properties": {}, "type": "Feature"}, {"bbox": [8.48666, 47.387725, 8.487486, 47.391207], "geometry": {"coordinates": [[[8.487486, 47.391207], [8.487437, 47.391061], [8.487402, 47.390914], [8.487381, 47.390766], [8.487359, 47.390538], [8.487355, 47.390511], [8.487347, 47.390484], [8.487336, 47.390457], [8.487321, 47.390432], [8.487303, 47.390407], [8.4871, 47.390143], [8.487007, 47.390024], [8.486927, 47.389901], [8.486861, 47.389774], [8.486803, 47.389628], [8.486763, 47.389479], [8.486741, 47.389328], [8.486737, 47.389177], [8.486752, 47.389026], [8.486758, 47.38899], [8.486767, 47.388771], [8.486767, 47.388552], [8.486758, 47.388334], [8.486697, 47.387964], [8.486689, 47.387884], [8.486676, 47.387804], [8.48666, 47.387725]]], "type": "MultiLineString"}, "id": "4646", "properties": {}, "type": "Feature"}, {"bbox": [8.55325, 47.36517, 8.553906, 47.365737], "geometry": {"coordinates": [[[8.55325, 47.36517], [8.553783, 47.365657], [8.553906, 47.365737]]], "type": "MultiLineString"}, "id": "4647", "properties": {}, "type": "Feature"}, {"bbox": [8.540438, 47.417086, 8.54567, 47.41725], "geometry": {"coordinates": [[[8.54567, 47.41725], [8.544823, 47.41724], [8.544106, 47.417233], [8.543374, 47.417212], [8.542215, 47.417189], [8.541951, 47.417183], [8.541833, 47.417179], [8.541715, 47.417174], [8.541598, 47.417168], [8.540718, 47.417106], [8.540438, 47.417086]]], "type": "MultiLineString"}, "id": "4649", "properties": {}, "type": "Feature"}, {"bbox": [8.525726, 47.376439, 8.527985, 47.380137], "geometry": {"coordinates": [[[8.525726, 47.376439], [8.525804, 47.376575], [8.526009, 47.376863], [8.526019, 47.376877], [8.526372, 47.377384], [8.526722, 47.377977], [8.526757, 47.378035], [8.5269, 47.378279], [8.527014, 47.378473], [8.527199, 47.378786], [8.527228, 47.378835], [8.527357, 47.379054], [8.52757, 47.379414], [8.527591, 47.37945], [8.527703, 47.379652], [8.527781, 47.379793], [8.527985, 47.380137]]], "type": "MultiLineString"}, "id": "4650", "properties": {}, "type": "Feature"}, {"bbox": [8.540744, 47.414894, 8.541653, 47.414948], "geometry": {"coordinates": [[[8.541653, 47.414894], [8.540744, 47.414948]]], "type": "MultiLineString"}, "id": "4652", "properties": {}, "type": "Feature"}, {"bbox": [8.521909, 47.3658, 8.527918, 47.369462], "geometry": {"coordinates": [[[8.527918, 47.369145], [8.526412, 47.36942], [8.526105, 47.369462], [8.525924, 47.369441], [8.525017, 47.368973], [8.524945, 47.368935], [8.524877, 47.368894], [8.524814, 47.368849], [8.524763, 47.368807], [8.524716, 47.368764], [8.524673, 47.368718], [8.524329, 47.368373], [8.524223, 47.368328], [8.524123, 47.368278], [8.52403, 47.368221], [8.523944, 47.36816], [8.523921, 47.36814], [8.523899, 47.36812], [8.523877, 47.3681], [8.523549, 47.367761], [8.523277, 47.367437], [8.523051, 47.367151], [8.522924, 47.366945]], [[8.522924, 47.366945], [8.522904, 47.36692], [8.522843, 47.36685], [8.522687, 47.36667], [8.522451, 47.366384], [8.522392, 47.366326], [8.52233, 47.366268], [8.522268, 47.366211], [8.522235, 47.366183], [8.522202, 47.366155], [8.522169, 47.366127], [8.522141, 47.366097], [8.522117, 47.366067], [8.522095, 47.366036], [8.521909, 47.3658]]], "type": "MultiLineString"}, "id": "4666", "properties": {}, "type": "Feature"}, {"bbox": [8.567502, 47.373542, 8.568656, 47.376222], "geometry": {"coordinates": [[[8.567502, 47.376222], [8.567711, 47.376069], [8.567782, 47.376013], [8.567845, 47.375953], [8.567902, 47.37589], [8.56795, 47.375824], [8.56811, 47.375511], [8.56813, 47.375458], [8.568142, 47.375405], [8.568148, 47.375352], [8.568148, 47.37533], [8.568147, 47.374857], [8.56815, 47.374805], [8.568161, 47.374754], [8.568178, 47.374703], [8.568202, 47.374653], [8.568232, 47.374606], [8.568298, 47.374505], [8.568351, 47.374401], [8.568391, 47.374295], [8.568448, 47.374061], [8.568486, 47.373933], [8.56854, 47.373807], [8.568609, 47.373685], [8.568656, 47.373542]]], "type": "MultiLineString"}, "id": "4683", "properties": {}, "type": "Feature"}, {"bbox": [8.572606, 47.380557, 8.574235, 47.381048], "geometry": {"coordinates": [[[8.572606, 47.380557], [8.573538, 47.380994], [8.573548, 47.380997], [8.573558, 47.380999], [8.573569, 47.381], [8.573579, 47.381001], [8.57359, 47.381001], [8.573601, 47.381001], [8.573611, 47.381], [8.573622, 47.380998], [8.573632, 47.380996], [8.573642, 47.380993], [8.573651, 47.380989], [8.57366, 47.380985], [8.573668, 47.380981], [8.573676, 47.380976], [8.573683, 47.38097], [8.573689, 47.380964], [8.573695, 47.380958], [8.573705, 47.380951], [8.573715, 47.380944], [8.573726, 47.380939], [8.573738, 47.380934], [8.573751, 47.380929], [8.573764, 47.380926], [8.573778, 47.380923], [8.573791, 47.380921], [8.573805, 47.38092], [8.573819, 47.380919], [8.573834, 47.38092], [8.573848, 47.380921], [8.573861, 47.380923], [8.573875, 47.380926], [8.573888, 47.38093], [8.5739, 47.380935], [8.574235, 47.381048]]], "type": "MultiLineString"}, "id": "4684", "properties": {}, "type": "Feature"}, {"bbox": [8.535014, 47.398183, 8.536548, 47.398241], "geometry": {"coordinates": [[[8.535014, 47.398183], [8.535686, 47.398188], [8.535934, 47.398197], [8.536181, 47.398215], [8.536427, 47.398241], [8.536548, 47.398203]]], "type": "MultiLineString"}, "id": "4688", "properties": {}, "type": "Feature"}, {"bbox": [8.580193, 47.40949, 8.580386, 47.409686], "geometry": {"coordinates": [[[8.580193, 47.40949], [8.580257, 47.409555], [8.580321, 47.409621], [8.580386, 47.409686]]], "type": "MultiLineString"}, "id": "4692", "properties": {}, "type": "Feature"}, {"bbox": [8.533518, 47.366025, 8.538184, 47.367571], "geometry": {"coordinates": [[[8.538184, 47.367571], [8.538016, 47.367539], [8.537899, 47.367513], [8.537783, 47.367487], [8.537372, 47.367346], [8.537147, 47.367268], [8.536194, 47.366967], [8.535302, 47.366662], [8.534536, 47.366402], [8.53352, 47.366026], [8.533518, 47.366025]]], "type": "MultiLineString"}, "id": "4701", "properties": {}, "type": "Feature"}, {"bbox": [8.549597, 47.374668, 8.55913, 47.377129], "geometry": {"coordinates": [[[8.549597, 47.374668], [8.551787, 47.374781], [8.551896, 47.374786], [8.552003, 47.374797], [8.552109, 47.374814], [8.552212, 47.374837], [8.552315, 47.374868], [8.552414, 47.374905], [8.552508, 47.374949], [8.552595, 47.374998], [8.552675, 47.375052], [8.552748, 47.375111], [8.552812, 47.375174], [8.552922, 47.375339], [8.553009, 47.37547], [8.553051, 47.375523], [8.553093, 47.375575], [8.553135, 47.375628], [8.553319, 47.37586], [8.553334, 47.375894], [8.553345, 47.375929], [8.553351, 47.375965], [8.553353, 47.376], [8.553351, 47.37604], [8.553343, 47.37608], [8.55333, 47.376119], [8.553311, 47.376157], [8.553288, 47.376194], [8.55326, 47.376229], [8.553228, 47.376262], [8.552701, 47.376818], [8.552689, 47.376834], [8.552679, 47.376849], [8.552671, 47.376865], [8.552665, 47.376882], [8.552661, 47.376899], [8.552659, 47.376916], [8.552659, 47.376933], [8.552662, 47.37695], [8.552666, 47.376967], [8.552673, 47.376984], [8.552681, 47.377001], [8.552692, 47.377017], [8.552705, 47.377032], [8.55272, 47.377047], [8.552736, 47.37706], [8.552754, 47.377073], [8.552774, 47.377084], [8.552795, 47.377095], [8.552817, 47.377104], [8.552841, 47.377112], [8.552865, 47.377118], [8.55289, 47.377123], [8.552916, 47.377126], [8.552941, 47.377128], [8.552967, 47.377129], [8.552993, 47.377128], [8.553019, 47.377125], [8.553044, 47.377121], [8.554363, 47.376902], [8.554556, 47.37687], [8.554602, 47.37686], [8.554648, 47.376849], [8.554694, 47.376838], [8.554854, 47.376793], [8.555008, 47.376738], [8.555156, 47.376676], [8.555296, 47.376606], [8.555327, 47.376589], [8.555359, 47.376571], [8.55539, 47.376552], [8.555626, 47.376402], [8.555793, 47.376302], [8.555969, 47.376209], [8.556152, 47.376122], [8.556583, 47.375932], [8.556904, 47.37579], [8.557644, 47.375463], [8.557698, 47.375441], [8.557756, 47.375422], [8.557815, 47.375407], [8.557877, 47.375396], [8.55794, 47.375389], [8.557999, 47.375386], [8.558058, 47.375387], [8.558117, 47.375391], [8.558175, 47.375399], [8.558232, 47.37541], [8.558296, 47.375428], [8.558358, 47.375449], [8.558416, 47.375474], [8.558472, 47.375502], [8.558524, 47.375533], [8.558737, 47.375657], [8.558835, 47.375718], [8.558924, 47.375785], [8.559004, 47.375858], [8.559073, 47.375936], [8.55913, 47.376017]]], "type": "MultiLineString"}, "id": "4714", "properties": {}, "type": "Feature"}, {"bbox": [8.548879, 47.364979, 8.553706, 47.366131], "geometry": {"coordinates": [[[8.548879, 47.366131], [8.549236, 47.366018], [8.549601, 47.365917], [8.549973, 47.365828], [8.550193, 47.365795], [8.550835, 47.365741], [8.551178, 47.365704], [8.551516, 47.365646], [8.551844, 47.365567], [8.552001, 47.36553], [8.55216, 47.365497], [8.55232, 47.365469], [8.553246, 47.365166], [8.553401, 47.365105], [8.553554, 47.365043], [8.553706, 47.364979]]], "type": "MultiLineString"}, "id": "4755", "properties": {}, "type": "Feature"}, {"bbox": [8.535297, 47.373655, 8.535908, 47.373928], "geometry": {"coordinates": [[[8.535908, 47.373655], [8.535755, 47.373719], [8.535297, 47.373928]]], "type": "MultiLineString"}, "id": "4763", "properties": {}, "type": "Feature"}, {"bbox": [8.554719, 47.36482, 8.55946, 47.367329], "geometry": {"coordinates": [[[8.554719, 47.36482], [8.555157, 47.365265], [8.555222, 47.365331], [8.555268, 47.365375], [8.555317, 47.365417], [8.55537, 47.365458], [8.555464, 47.365518], [8.555565, 47.365572], [8.555673, 47.36562], [8.556208, 47.365865], [8.556413, 47.365959], [8.557006, 47.366219], [8.557105, 47.366262], [8.557827, 47.366585], [8.558577, 47.366921], [8.559171, 47.367189], [8.55946, 47.367329]]], "type": "MultiLineString"}, "id": "4765", "properties": {}, "type": "Feature"}, {"bbox": [8.47792, 47.406843, 8.483542, 47.414238], "geometry": {"coordinates": [[[8.481089, 47.406843], [8.481026, 47.406881], [8.480958, 47.406915], [8.480886, 47.406945], [8.48081, 47.40697], [8.480403, 47.407072], [8.479238, 47.407375], [8.478977, 47.407443], [8.478727, 47.407529], [8.478492, 47.407632], [8.478394, 47.407695], [8.478305, 47.407765], [8.478226, 47.407839], [8.478156, 47.407918], [8.478097, 47.408], [8.478048, 47.408086], [8.478011, 47.408174], [8.477986, 47.408265], [8.477982, 47.408352], [8.47799, 47.408439], [8.47801, 47.408526], [8.478041, 47.40861], [8.478083, 47.408693], [8.478136, 47.408773], [8.478199, 47.408849], [8.478272, 47.408921], [8.478355, 47.408988], [8.478445, 47.40905], [8.478544, 47.409106], [8.47865, 47.409155], [8.479062, 47.409382], [8.479157, 47.409433], [8.479246, 47.409489], [8.479328, 47.409549], [8.479401, 47.409614], [8.479467, 47.409683], [8.479523, 47.409756], [8.479571, 47.409831], [8.479609, 47.409909], [8.479637, 47.409989], [8.479655, 47.410068], [8.479663, 47.410149], [8.479662, 47.410229], [8.47965, 47.41031], [8.479629, 47.410389], [8.479598, 47.410467], [8.479558, 47.410543], [8.479467, 47.410653], [8.479362, 47.410757], [8.479244, 47.410855], [8.479114, 47.410946], [8.478703, 47.411198], [8.47853, 47.411299], [8.478371, 47.41141], [8.478228, 47.411531], [8.478102, 47.41166], [8.478048, 47.411729], [8.478003, 47.411801], [8.477967, 47.411876], [8.477942, 47.411953], [8.477926, 47.41203], [8.47792, 47.412109], [8.477924, 47.412187], [8.477938, 47.412265], [8.477962, 47.412342], [8.477995, 47.412417], [8.478038, 47.41249], [8.478091, 47.41256], [8.478152, 47.412627], [8.478221, 47.41269], [8.478298, 47.412748], [8.478382, 47.412802], [8.478473, 47.412851], [8.47857, 47.412894], [8.478671, 47.412931], [8.478799, 47.412972], [8.478835, 47.412983], [8.479773, 47.413254], [8.481058, 47.413598], [8.483542, 47.414238]]], "type": "MultiLineString"}, "id": "4789", "properties": {}, "type": "Feature"}, {"bbox": [8.528025, 47.397778, 8.528566, 47.39794], "geometry": {"coordinates": [[[8.528025, 47.397778], [8.528053, 47.397814], [8.528112, 47.397865], [8.528166, 47.397891], [8.528231, 47.397906], [8.528247, 47.397909], [8.528264, 47.397911], [8.528282, 47.397912], [8.528299, 47.397912], [8.528316, 47.397911], [8.528333, 47.39791], [8.52853, 47.397882], [8.528566, 47.39794]]], "type": "MultiLineString"}, "id": "4793", "properties": {}, "type": "Feature"}, {"bbox": [8.53365, 47.364451, 8.53694, 47.369649], "geometry": {"coordinates": [[[8.53694, 47.364451], [8.535991, 47.365731], [8.535302, 47.366662], [8.534694, 47.367488], [8.53466, 47.367545], [8.534628, 47.367602], [8.534597, 47.36766], [8.534552, 47.367755], [8.534512, 47.367851], [8.534478, 47.367948], [8.534234, 47.368602], [8.534153, 47.368805], [8.534088, 47.368986], [8.534045, 47.369102], [8.53403, 47.369142], [8.534001, 47.369222], [8.533985, 47.369262], [8.533966, 47.369302], [8.533945, 47.369342], [8.533922, 47.369381], [8.533896, 47.369419], [8.533868, 47.369456], [8.533835, 47.3695], [8.533796, 47.369541], [8.533752, 47.36958], [8.533703, 47.369616], [8.53365, 47.369649]]], "type": "MultiLineString"}, "id": "4813", "properties": {}, "type": "Feature"}, {"bbox": [8.541518, 47.41405, 8.541865, 47.416254], "geometry": {"coordinates": [[[8.541518, 47.41405], [8.541653, 47.414894], [8.541735, 47.415704], [8.541824, 47.416154], [8.541865, 47.416254]]], "type": "MultiLineString"}, "id": "4820", "properties": {}, "type": "Feature"}, {"bbox": [8.554826, 47.403036, 8.563375, 47.405792], "geometry": {"coordinates": [[[8.554826, 47.403036], [8.555026, 47.40312], [8.555232, 47.403197], [8.555443, 47.403269], [8.555619, 47.403343], [8.555783, 47.403428], [8.555934, 47.403524], [8.556144, 47.403686], [8.556327, 47.403825], [8.556493, 47.403974], [8.556639, 47.404131], [8.556764, 47.404297], [8.557004, 47.404647], [8.557035, 47.40473], [8.557078, 47.404811], [8.55713, 47.404889], [8.557193, 47.404964], [8.557265, 47.405035], [8.557307, 47.405067], [8.557351, 47.405098], [8.557398, 47.405127], [8.557478, 47.40517], [8.557563, 47.405207], [8.557653, 47.405239], [8.557747, 47.405266], [8.557844, 47.405286], [8.557943, 47.405301], [8.558044, 47.405309], [8.558146, 47.405312], [8.558247, 47.405308], [8.558484, 47.405283], [8.559887, 47.405138], [8.560214, 47.405115], [8.560542, 47.405113], [8.560869, 47.405134], [8.56106, 47.405154], [8.561248, 47.405182], [8.561433, 47.405219], [8.561768, 47.405284], [8.5621, 47.405357], [8.562428, 47.405438], [8.562755, 47.405542], [8.563072, 47.40566], [8.563375, 47.405792]]], "type": "MultiLineString"}, "id": "4828", "properties": {}, "type": "Feature"}, {"bbox": [8.549468, 47.429987, 8.550381, 47.430922], "geometry": {"coordinates": [[[8.549468, 47.430003], [8.5495, 47.429996], [8.549533, 47.429991], [8.549567, 47.429988], [8.549601, 47.429987], [8.549635, 47.429988], [8.549668, 47.429991], [8.549701, 47.429996], [8.549734, 47.430003], [8.549765, 47.430011], [8.549795, 47.430022], [8.549817, 47.430038], [8.549836, 47.430055], [8.549853, 47.430074], [8.549867, 47.430093], [8.54988, 47.430113], [8.549889, 47.430133], [8.549897, 47.430154], [8.549901, 47.430176], [8.549903, 47.430197], [8.549902, 47.430219], [8.549897, 47.430247], [8.549896, 47.430275], [8.549898, 47.430303], [8.549904, 47.43033], [8.549914, 47.430357], [8.549927, 47.430384], [8.549944, 47.430409], [8.549964, 47.430434], [8.549987, 47.430457], [8.550013, 47.430479], [8.550042, 47.430498], [8.550074, 47.430516], [8.550107, 47.430533], [8.550143, 47.430546], [8.55018, 47.430558], [8.550208, 47.430568], [8.550234, 47.430579], [8.550259, 47.430592], [8.550282, 47.430607], [8.550303, 47.430622], [8.550321, 47.430639], [8.550338, 47.430657], [8.550352, 47.430676], [8.550363, 47.430696], [8.550372, 47.430716], [8.550378, 47.430737], [8.550381, 47.430758], [8.550381, 47.430779], [8.550365, 47.43081], [8.550344, 47.43084], [8.55032, 47.430869], [8.550292, 47.430896], [8.55026, 47.430922]]], "type": "MultiLineString"}, "id": "4837", "properties": {}, "type": "Feature"}, {"bbox": [8.52395, 47.353593, 8.524328, 47.355272], "geometry": {"coordinates": [[[8.524084, 47.353593], [8.524259, 47.353641], [8.524269, 47.353646], [8.524279, 47.353651], [8.524288, 47.353656], [8.524296, 47.353662], [8.524303, 47.353668], [8.52431, 47.353675], [8.524315, 47.353682], [8.52432, 47.35369], [8.524324, 47.353698], [8.524326, 47.353706], [8.524328, 47.353714], [8.524328, 47.353722], [8.524328, 47.35373], [8.524326, 47.353738], [8.524323, 47.353746], [8.52432, 47.353754], [8.524315, 47.353761], [8.524309, 47.353768], [8.524302, 47.353775], [8.523972, 47.354123], [8.523967, 47.354129], [8.523962, 47.354136], [8.523958, 47.354142], [8.523954, 47.354149], [8.523952, 47.354156], [8.523951, 47.354163], [8.52395, 47.354171], [8.523951, 47.354178], [8.523952, 47.354185], [8.523955, 47.354192], [8.523958, 47.354199], [8.523962, 47.354206], [8.523967, 47.354212], [8.524188, 47.35441], [8.524206, 47.354439], [8.52422, 47.354468], [8.52423, 47.354498], [8.524236, 47.354529], [8.524239, 47.35456], [8.524237, 47.35459], [8.524231, 47.354621], [8.524221, 47.354651], [8.523951, 47.355272]]], "type": "MultiLineString"}, "id": "4846", "properties": {}, "type": "Feature"}, {"bbox": [8.510022, 47.391629, 8.511394, 47.392204], "geometry": {"coordinates": [[[8.511394, 47.391646], [8.511382, 47.391641], [8.511369, 47.391637], [8.511355, 47.391634], [8.511341, 47.391631], [8.511327, 47.39163], [8.511313, 47.391629], [8.511299, 47.391629], [8.511284, 47.39163], [8.51127, 47.391632], [8.510918, 47.391689], [8.510849, 47.391701], [8.51078, 47.391716], [8.510713, 47.391732], [8.510125, 47.391896], [8.510111, 47.391902], [8.510097, 47.391908], [8.510084, 47.391915], [8.510073, 47.391923], [8.510062, 47.391931], [8.510052, 47.39194], [8.510044, 47.39195], [8.510037, 47.39196], [8.510031, 47.39197], [8.510026, 47.391981], [8.510024, 47.391992], [8.510022, 47.392003], [8.510022, 47.392014], [8.510029, 47.3921], [8.510044, 47.392204]]], "type": "MultiLineString"}, "id": "4847", "properties": {}, "type": "Feature"}, {"bbox": [8.530302, 47.396972, 8.532472, 47.397941], "geometry": {"coordinates": [[[8.530302, 47.396972], [8.53067, 47.397121], [8.530711, 47.397136], [8.530752, 47.397151], [8.530792, 47.397167], [8.530832, 47.397183], [8.530871, 47.3972], [8.53091, 47.397217], [8.531, 47.397264], [8.531096, 47.397305], [8.531195, 47.397342], [8.53223, 47.397638], [8.532262, 47.397653], [8.532292, 47.39767], [8.532319, 47.397688], [8.532345, 47.397708], [8.532368, 47.397729], [8.532388, 47.397752], [8.532405, 47.397775], [8.53242, 47.3978], [8.532472, 47.397941]]], "type": "MultiLineString"}, "id": "4849", "properties": {}, "type": "Feature"}, {"bbox": [8.538331, 47.370732, 8.538911, 47.372317], "geometry": {"coordinates": [[[8.538911, 47.370732], [8.538763, 47.371119], [8.5386, 47.371573], [8.538372, 47.372166], [8.538331, 47.372317]]], "type": "MultiLineString"}, "id": "4863", "properties": {}, "type": "Feature"}, {"bbox": [8.587097, 47.354878, 8.587114, 47.355239], "geometry": {"coordinates": [[[8.587114, 47.355239], [8.587097, 47.354878]]], "type": "MultiLineString"}, "id": "4873", "properties": {}, "type": "Feature"}, {"bbox": [8.521482, 47.379647, 8.522791, 47.380117], "geometry": {"coordinates": [[[8.522791, 47.380054], [8.522767, 47.380068], [8.522741, 47.38008], [8.522714, 47.38009], [8.522685, 47.380099], [8.522655, 47.380106], [8.522625, 47.380112], [8.522593, 47.380115], [8.522562, 47.380117], [8.52253, 47.380117], [8.522499, 47.380115], [8.522468, 47.380111], [8.522438, 47.380105], [8.522408, 47.380098], [8.522222, 47.380045], [8.52204, 47.379987], [8.521862, 47.379923], [8.521799, 47.3799], [8.52174, 47.379873], [8.521685, 47.379843], [8.521634, 47.379809], [8.521588, 47.379772], [8.521547, 47.379733], [8.521512, 47.379691], [8.521482, 47.379647]]], "type": "MultiLineString"}, "id": "4881", "properties": {}, "type": "Feature"}, {"bbox": [8.536913, 47.369707, 8.538911, 47.370732], "geometry": {"coordinates": [[[8.538911, 47.370732], [8.538622, 47.370681], [8.537769, 47.370203], [8.537679, 47.370143], [8.536913, 47.369707]]], "type": "MultiLineString"}, "id": "4964", "properties": {}, "type": "Feature"}, {"bbox": [8.545441, 47.400028, 8.548524, 47.400648], "geometry": {"coordinates": [[[8.548524, 47.400648], [8.54833, 47.400566], [8.548128, 47.400494], [8.547918, 47.400434], [8.547701, 47.400385], [8.546808, 47.400345], [8.546559, 47.400327], [8.546313, 47.400292], [8.546073, 47.400242], [8.545441, 47.400028]]], "type": "MultiLineString"}, "id": "4965", "properties": {}, "type": "Feature"}, {"bbox": [8.557776, 47.359328, 8.557943, 47.359519], "geometry": {"coordinates": [[[8.557776, 47.359519], [8.557943, 47.359328]]], "type": "MultiLineString"}, "id": "4970", "properties": {}, "type": "Feature"}, {"bbox": [8.539749, 47.367116, 8.540224, 47.367239], "geometry": {"coordinates": [[[8.539749, 47.367116], [8.539769, 47.367121], [8.539962, 47.367171], [8.540224, 47.367239]]], "type": "MultiLineString"}, "id": "4973", "properties": {}, "type": "Feature"}, {"bbox": [8.55026, 47.430911, 8.550612, 47.431114], "geometry": {"coordinates": [[[8.55026, 47.430922], [8.550276, 47.430918], [8.550293, 47.430915], [8.55031, 47.430913], [8.550327, 47.430911], [8.550344, 47.430911], [8.550361, 47.430912], [8.550378, 47.430914], [8.550395, 47.430917], [8.550411, 47.430921], [8.550427, 47.430925], [8.550442, 47.430931], [8.550456, 47.430937], [8.550469, 47.430945], [8.550482, 47.430953], [8.550493, 47.430962], [8.550503, 47.430971], [8.550512, 47.430981], [8.55052, 47.430991], [8.550612, 47.431114]]], "type": "MultiLineString"}, "id": "4975", "properties": {}, "type": "Feature"}, {"bbox": [8.559753, 47.350875, 8.560092, 47.352101], "geometry": {"coordinates": [[[8.559753, 47.352101], [8.559807, 47.351944], [8.559837, 47.351858], [8.560088, 47.351252], [8.560092, 47.351197], [8.560088, 47.351141], [8.560078, 47.351086], [8.560062, 47.351031], [8.560039, 47.350978], [8.560009, 47.350926], [8.559974, 47.350875]]], "type": "MultiLineString"}, "id": "4984", "properties": {}, "type": "Feature"}, {"bbox": [8.509701, 47.411636, 8.513053, 47.411765], "geometry": {"coordinates": [[[8.513053, 47.411765], [8.512736, 47.411702], [8.512411, 47.411659], [8.512082, 47.411637], [8.511853, 47.411636], [8.511283, 47.411643], [8.511007, 47.411651], [8.509701, 47.411662]]], "type": "MultiLineString"}, "id": "4989", "properties": {}, "type": "Feature"}, {"bbox": [8.491742, 47.369917, 8.491774, 47.370051], "geometry": {"coordinates": [[[8.491742, 47.370051], [8.491761, 47.369988], [8.491774, 47.369917]]], "type": "MultiLineString"}, "id": "4993", "properties": {}, "type": "Feature"}, {"bbox": [8.541626, 47.376023, 8.541906, 47.377967], "geometry": {"coordinates": [[[8.541858, 47.376023], [8.541842, 47.376089], [8.541795, 47.37627], [8.541638, 47.376891], [8.541633, 47.376922], [8.541629, 47.376954], [8.541626, 47.376985], [8.541737, 47.377172], [8.541821, 47.377366], [8.541877, 47.377564], [8.541906, 47.377765], [8.541906, 47.377967]]], "type": "MultiLineString"}, "id": "4994", "properties": {}, "type": "Feature"}, {"bbox": [8.52988, 47.332387, 8.529981, 47.334827], "geometry": {"coordinates": [[[8.529981, 47.334827], [8.529936, 47.333251], [8.529929, 47.332965], [8.529911, 47.332679], [8.529881, 47.332393], [8.52988, 47.332387]]], "type": "MultiLineString"}, "id": "4995", "properties": {}, "type": "Feature"}, {"bbox": [8.520767, 47.41488, 8.53517, 47.419968], "geometry": {"coordinates": [[[8.53517, 47.419968], [8.535038, 47.419943], [8.534906, 47.419918], [8.534775, 47.419892], [8.534606, 47.419854], [8.53436, 47.419804], [8.534309, 47.419796], [8.534257, 47.41979], [8.534205, 47.419785], [8.533602, 47.419757], [8.533583, 47.419756], [8.533461, 47.419748], [8.533339, 47.419735], [8.533219, 47.419718], [8.533128, 47.419702], [8.533038, 47.419683], [8.532949, 47.419662], [8.532103, 47.419434], [8.531995, 47.4194], [8.531889, 47.419364], [8.531786, 47.419324], [8.530618, 47.418841], [8.530377, 47.418733], [8.530123, 47.418639], [8.529858, 47.41856], [8.529585, 47.418497], [8.52918, 47.418418], [8.528948, 47.418372], [8.528718, 47.418322], [8.528491, 47.418268], [8.527857, 47.418111], [8.527662, 47.418077], [8.52684, 47.417986], [8.526348, 47.417904], [8.525871, 47.41779], [8.525411, 47.417646], [8.525205, 47.417579], [8.524975, 47.417513], [8.524737, 47.41746], [8.524493, 47.417422], [8.524245, 47.417399], [8.524126, 47.417402], [8.524006, 47.417402], [8.523887, 47.417399], [8.523848, 47.417398], [8.523811, 47.417395], [8.523773, 47.41739], [8.523736, 47.417383], [8.523288, 47.417315], [8.52326, 47.41731], [8.523234, 47.417304], [8.523208, 47.417297], [8.523183, 47.417288], [8.52316, 47.417277], [8.523138, 47.417265], [8.523118, 47.417252], [8.5231, 47.417237], [8.523057, 47.417187], [8.523017, 47.417024], [8.522872, 47.416821], [8.522566, 47.41654], [8.522131, 47.416155], [8.521808, 47.415884], [8.521611, 47.415727], [8.521489, 47.415615], [8.521337, 47.415459], [8.520936, 47.41504], [8.520767, 47.41488]]], "type": "MultiLineString"}, "id": "4999", "properties": {}, "type": "Feature"}, {"bbox": [8.514532, 47.399112, 8.518151, 47.399753], "geometry": {"coordinates": [[[8.518151, 47.399753], [8.518099, 47.399748], [8.517899, 47.399726], [8.517624, 47.399698], [8.517289, 47.399664], [8.517163, 47.399649], [8.517037, 47.39963], [8.516913, 47.399606], [8.514532, 47.399112]]], "type": "MultiLineString"}, "id": "5001", "properties": {}, "type": "Feature"}, {"bbox": [8.512653, 47.359344, 8.513466, 47.359928], "geometry": {"coordinates": [[[8.513466, 47.359344], [8.513464, 47.359347], [8.513344, 47.359454], [8.513085, 47.359622], [8.513024, 47.359671], [8.512967, 47.359722], [8.512916, 47.359776], [8.512825, 47.35988], [8.512789, 47.359922], [8.512653, 47.359928]]], "type": "MultiLineString"}, "id": "5009", "properties": {}, "type": "Feature"}, {"bbox": [8.493783, 47.368429, 8.494236, 47.368969], "geometry": {"coordinates": [[[8.493783, 47.368429], [8.493796, 47.368454], [8.49381, 47.368479], [8.493826, 47.368503], [8.493962, 47.368659], [8.494099, 47.368814], [8.494236, 47.368969]]], "type": "MultiLineString"}, "id": "5010", "properties": {}, "type": "Feature"}, {"bbox": [8.544242, 47.375364, 8.547307, 47.379448], "geometry": {"coordinates": [[[8.544242, 47.379429], [8.544279, 47.379437], [8.544318, 47.379443], [8.544356, 47.379446], [8.544396, 47.379448], [8.544435, 47.379447], [8.544474, 47.379443], [8.544512, 47.379438], [8.54455, 47.37943], [8.544587, 47.37942], [8.544622, 47.379409], [8.544655, 47.379395], [8.544687, 47.379379], [8.544716, 47.379361], [8.544743, 47.379342], [8.544911, 47.379194], [8.545056, 47.379066], [8.545146, 47.379005], [8.545229, 47.378938], [8.545303, 47.378866], [8.545368, 47.378791], [8.545423, 47.378713], [8.545595, 47.378443], [8.545666, 47.378332], [8.545817, 47.3781], [8.546392, 47.377211], [8.546448, 47.377136], [8.546501, 47.37706], [8.546552, 47.376984], [8.546572, 47.376952], [8.546592, 47.37692], [8.546612, 47.376888], [8.546776, 47.376527], [8.547073, 47.375873], [8.547253, 47.375476], [8.547298, 47.375382], [8.547307, 47.375364]]], "type": "MultiLineString"}, "id": "5025", "properties": {}, "type": "Feature"}, {"bbox": [8.5108, 47.367042, 8.512293, 47.367745], "geometry": {"coordinates": [[[8.5108, 47.367057], [8.510945, 47.367061], [8.51105, 47.367042], [8.511068, 47.367042], [8.511085, 47.367042], [8.511103, 47.367043], [8.51112, 47.367046], [8.511137, 47.367049], [8.511154, 47.367054], [8.51117, 47.367059], [8.511185, 47.367066], [8.511199, 47.367073], [8.511213, 47.367081], [8.511265, 47.367122], [8.511568, 47.367309], [8.511938, 47.367537], [8.51219, 47.367683], [8.512293, 47.367745]]], "type": "MultiLineString"}, "id": "5026", "properties": {}, "type": "Feature"}, {"bbox": [8.494605, 47.422636, 8.495757, 47.422812], "geometry": {"coordinates": [[[8.495757, 47.422636], [8.495692, 47.422647], [8.495628, 47.422657], [8.495563, 47.422667], [8.494761, 47.422788], [8.494605, 47.422812]]], "type": "MultiLineString"}, "id": "5045", "properties": {}, "type": "Feature"}, {"bbox": [8.534155, 47.398171, 8.535014, 47.398383], "geometry": {"coordinates": [[[8.534155, 47.398383], [8.534166, 47.39836], [8.53418, 47.398337], [8.534197, 47.398315], [8.534216, 47.398294], [8.534239, 47.398275], [8.534263, 47.398256], [8.53429, 47.39824], [8.534319, 47.398224], [8.534349, 47.398211], [8.534381, 47.398199], [8.534415, 47.39819], [8.534449, 47.398182], [8.534485, 47.398176], [8.534521, 47.398173], [8.534557, 47.398171], [8.534948, 47.398182], [8.535014, 47.398183]]], "type": "MultiLineString"}, "id": "5079", "properties": {}, "type": "Feature"}, {"bbox": [8.532207, 47.364819, 8.532801, 47.365897], "geometry": {"coordinates": [[[8.532207, 47.365897], [8.532327, 47.365648], [8.532734, 47.364869], [8.532801, 47.364819]]], "type": "MultiLineString"}, "id": "5082", "properties": {}, "type": "Feature"}, {"bbox": [8.510545, 47.359001, 8.512653, 47.359954], "geometry": {"coordinates": [[[8.512653, 47.359928], [8.512534, 47.359954], [8.512387, 47.359925], [8.512288, 47.359894], [8.512193, 47.359859], [8.512103, 47.359818], [8.511575, 47.359587], [8.511511, 47.359557], [8.511448, 47.359526], [8.511386, 47.359495], [8.511324, 47.359463], [8.511263, 47.35943], [8.511202, 47.359396], [8.511094, 47.359333], [8.510987, 47.35927], [8.510881, 47.359206], [8.510545, 47.359001]]], "type": "MultiLineString"}, "id": "5090", "properties": {}, "type": "Feature"}, {"bbox": [8.503334, 47.393853, 8.504804, 47.393909], "geometry": {"coordinates": [[[8.504804, 47.393907], [8.50473, 47.393909], [8.504468, 47.393902], [8.503943, 47.393881], [8.50374, 47.393872], [8.503537, 47.393862], [8.503334, 47.393853]]], "type": "MultiLineString"}, "id": "5106", "properties": {}, "type": "Feature"}, {"bbox": [8.497402, 47.393785, 8.502188, 47.393918], "geometry": {"coordinates": [[[8.502188, 47.393789], [8.501541, 47.393786], [8.501476, 47.393786], [8.501412, 47.393785], [8.501347, 47.393786], [8.501215, 47.393794], [8.501084, 47.393807], [8.500954, 47.393823], [8.500731, 47.393861], [8.500504, 47.393889], [8.500276, 47.393905], [8.500077, 47.393914], [8.499879, 47.393918], [8.49968, 47.393918], [8.499472, 47.393918], [8.499265, 47.393915], [8.499057, 47.393908], [8.498848, 47.393902], [8.498639, 47.393895], [8.49843, 47.393887], [8.49826, 47.393878], [8.498091, 47.393869], [8.497922, 47.393859], [8.497402, 47.393828]]], "type": "MultiLineString"}, "id": "5116", "properties": {}, "type": "Feature"}, {"bbox": [8.501193, 47.365877, 8.502277, 47.366589], "geometry": {"coordinates": [[[8.502277, 47.365954], [8.502148, 47.365926], [8.502057, 47.365905], [8.501963, 47.36589], [8.501868, 47.365881], [8.501772, 47.365877], [8.50149, 47.36589], [8.501469, 47.365896], [8.501449, 47.365902], [8.501431, 47.365909], [8.501413, 47.365918], [8.501396, 47.365927], [8.501381, 47.365938], [8.501367, 47.36595], [8.501355, 47.365962], [8.501198, 47.366366], [8.501195, 47.366377], [8.501193, 47.366387], [8.501193, 47.366397], [8.501193, 47.366408], [8.501195, 47.366418], [8.501199, 47.366428], [8.501203, 47.366438], [8.501209, 47.366448], [8.501216, 47.366457], [8.501224, 47.366466], [8.501234, 47.366474], [8.501244, 47.366481], [8.501255, 47.366488], [8.501268, 47.366495], [8.50128, 47.3665], [8.501294, 47.366505], [8.501308, 47.366509], [8.501323, 47.366512], [8.501338, 47.366515], [8.501353, 47.366516], [8.501368, 47.366516], [8.501383, 47.366516], [8.501565, 47.366521], [8.501745, 47.366536], [8.501922, 47.366561], [8.502039, 47.366589]]], "type": "MultiLineString"}, "id": "5117", "properties": {}, "type": "Feature"}, {"bbox": [8.536464, 47.414294, 8.539555, 47.414466], "geometry": {"coordinates": [[[8.539555, 47.414294], [8.539243, 47.414313], [8.538632, 47.414344], [8.537966, 47.414378], [8.536464, 47.414466]]], "type": "MultiLineString"}, "id": "5122", "properties": {}, "type": "Feature"}, {"bbox": [8.46988, 47.379396, 8.495294, 47.389049], "geometry": {"coordinates": [[[8.495294, 47.379396], [8.494697, 47.379754], [8.494431, 47.379907], [8.494415, 47.379916], [8.494398, 47.379926], [8.494381, 47.379936], [8.494274, 47.379996], [8.494166, 47.380057], [8.494056, 47.380116], [8.493917, 47.380189], [8.493775, 47.380262], [8.493632, 47.380333], [8.493279, 47.3805], [8.492917, 47.380659], [8.492548, 47.38081], [8.491759, 47.381119], [8.491601, 47.381181], [8.491466, 47.381233], [8.491166, 47.381351], [8.490862, 47.381465], [8.490555, 47.381576], [8.490134, 47.381717], [8.489705, 47.381846], [8.489269, 47.381965], [8.488061, 47.382277], [8.487463, 47.382432], [8.486921, 47.382572], [8.48613, 47.382781], [8.485522, 47.382941], [8.484598, 47.383209], [8.484101, 47.383352], [8.483927, 47.383411], [8.483756, 47.383472], [8.483586, 47.383535], [8.483475, 47.383579], [8.483365, 47.383624], [8.483256, 47.383671], [8.483168, 47.383709], [8.483081, 47.383748], [8.482995, 47.383787], [8.482508, 47.384025], [8.482375, 47.384088], [8.482239, 47.384147], [8.482099, 47.384202], [8.482008, 47.384235], [8.481916, 47.384267], [8.481823, 47.384297], [8.481622, 47.384355], [8.481417, 47.384407], [8.481208, 47.384451], [8.481089, 47.384477], [8.480968, 47.384496], [8.480845, 47.384508], [8.48006, 47.384568], [8.478514, 47.384688], [8.478267, 47.384705], [8.47802, 47.384722], [8.477774, 47.384741], [8.477594, 47.384772], [8.477415, 47.384807], [8.477238, 47.384845], [8.477063, 47.384886], [8.476889, 47.384931], [8.476718, 47.384979], [8.475646, 47.385304], [8.475195, 47.38547], [8.474894, 47.385614], [8.474614, 47.385776], [8.47436, 47.385957], [8.474132, 47.386153], [8.473669, 47.386572], [8.473389, 47.386807], [8.473079, 47.387024], [8.472743, 47.387223], [8.472383, 47.387401], [8.471718, 47.387708], [8.47167, 47.387731], [8.471622, 47.387755], [8.471575, 47.38778], [8.471253, 47.387963], [8.470955, 47.388163], [8.47068, 47.388379], [8.46988, 47.389049]]], "type": "MultiLineString"}, "id": "5123", "properties": {}, "type": "Feature"}, {"bbox": [8.532195, 47.364819, 8.532801, 47.365855], "geometry": {"coordinates": [[[8.532288, 47.365855], [8.532195, 47.365644], [8.532629, 47.364824], [8.532801, 47.364819]]], "type": "MultiLineString"}, "id": "5129", "properties": {}, "type": "Feature"}, {"bbox": [8.5645, 47.365266, 8.565627, 47.365765], "geometry": {"coordinates": [[[8.5645, 47.365266], [8.564811, 47.365404], [8.565164, 47.36556], [8.565627, 47.365765]]], "type": "MultiLineString"}, "id": "5130", "properties": {}, "type": "Feature"}, {"bbox": [8.526852, 47.375548, 8.528744, 47.376792], "geometry": {"coordinates": [[[8.526852, 47.375548], [8.527186, 47.375787], [8.527382, 47.375911], [8.52745, 47.37596], [8.527793, 47.376184], [8.528011, 47.376303], [8.528092, 47.376357], [8.528195, 47.376427], [8.528744, 47.376792]]], "type": "MultiLineString"}, "id": "5137", "properties": {}, "type": "Feature"}, {"bbox": [8.561212, 47.351004, 8.582046, 47.361603], "geometry": {"coordinates": [[[8.561212, 47.361603], [8.561272, 47.361573], [8.561328, 47.361539], [8.56138, 47.361503], [8.561427, 47.361463], [8.561474, 47.361391], [8.561524, 47.361319], [8.561576, 47.361248], [8.561735, 47.361001], [8.56178, 47.360947], [8.561833, 47.360896], [8.561893, 47.360849], [8.561948, 47.360814], [8.562007, 47.360782], [8.562069, 47.360753], [8.562135, 47.360728], [8.562203, 47.360706], [8.562274, 47.360689], [8.562347, 47.360675], [8.562478, 47.360656], [8.563172, 47.360567], [8.564242, 47.36043], [8.564646, 47.360393], [8.564725, 47.360386], [8.565398, 47.360333], [8.566036, 47.360289], [8.567019, 47.360292], [8.567586, 47.360285], [8.567962, 47.360257], [8.568122, 47.360232], [8.568279, 47.360198], [8.568431, 47.360154], [8.568576, 47.360102], [8.568644, 47.360073], [8.56871, 47.360043], [8.568775, 47.36001], [8.568871, 47.359956], [8.568962, 47.359897], [8.569047, 47.359834], [8.569195, 47.35973], [8.569762, 47.359347], [8.56988, 47.359267], [8.570259, 47.359019], [8.571083, 47.358477], [8.571293, 47.358344], [8.571681, 47.358098], [8.572079, 47.357837], [8.572477, 47.357577], [8.572499, 47.357563], [8.572521, 47.357549], [8.572544, 47.357535], [8.572771, 47.35738], [8.572981, 47.357212], [8.573171, 47.357035], [8.573274, 47.356933], [8.573364, 47.356827], [8.573442, 47.356716], [8.573507, 47.356601], [8.573813, 47.35602], [8.573897, 47.355885], [8.573998, 47.355755], [8.574116, 47.355632], [8.5745, 47.355246], [8.574593, 47.355132], [8.574684, 47.355017], [8.574772, 47.354901], [8.574814, 47.354844], [8.574856, 47.354787], [8.574898, 47.35473], [8.574965, 47.354632], [8.575036, 47.354535], [8.575113, 47.35444], [8.575153, 47.354393], [8.575194, 47.354346], [8.575237, 47.3543], [8.575384, 47.354144], [8.575548, 47.353996], [8.57573, 47.353858], [8.575927, 47.35373], [8.576382, 47.353532], [8.577069, 47.353208], [8.577144, 47.353172], [8.577214, 47.353133], [8.577279, 47.35309], [8.577339, 47.353043], [8.577403, 47.352985], [8.577457, 47.352922], [8.577504, 47.352857], [8.57754, 47.352788], [8.577709, 47.352484], [8.577818, 47.352306], [8.577949, 47.352135], [8.5781, 47.351973], [8.578271, 47.351819], [8.578461, 47.351676], [8.578668, 47.351544], [8.578878, 47.351421], [8.579103, 47.35131], [8.579341, 47.351212], [8.57959, 47.351129], [8.579849, 47.35106], [8.579886, 47.351054], [8.579922, 47.351047], [8.579958, 47.351042], [8.580139, 47.351019], [8.580321, 47.351007], [8.580504, 47.351004], [8.580687, 47.351011], [8.581358, 47.351043], [8.582046, 47.351087]]], "type": "MultiLineString"}, "id": "5146", "properties": {}, "type": "Feature"}, {"bbox": [8.551051, 47.414237, 8.554503, 47.418232], "geometry": {"coordinates": [[[8.551051, 47.414237], [8.55113, 47.414383], [8.551216, 47.414527], [8.551309, 47.414668], [8.551396, 47.414791], [8.551488, 47.414913], [8.551585, 47.415032], [8.551874, 47.415361], [8.552886, 47.416465], [8.553833, 47.417498], [8.554503, 47.418232]]], "type": "MultiLineString"}, "id": "5149", "properties": {}, "type": "Feature"}, {"bbox": [8.571432, 47.403701, 8.573989, 47.404267], "geometry": {"coordinates": [[[8.571432, 47.403701], [8.571447, 47.403701], [8.571463, 47.403702], [8.571478, 47.403702], [8.571556, 47.403709], [8.571633, 47.403719], [8.571709, 47.403734], [8.571782, 47.403752], [8.571853, 47.403775], [8.571921, 47.403802], [8.572381, 47.404001], [8.572559, 47.404075], [8.572782, 47.40416], [8.572822, 47.404175], [8.572863, 47.404189], [8.572905, 47.404203], [8.573001, 47.404227], [8.573099, 47.404246], [8.5732, 47.404259], [8.573302, 47.404266], [8.573405, 47.404267], [8.573507, 47.404262], [8.573608, 47.404252], [8.573708, 47.404235], [8.573805, 47.404213], [8.573899, 47.404185], [8.573989, 47.404152]]], "type": "MultiLineString"}, "id": "5150", "properties": {}, "type": "Feature"}, {"bbox": [8.516625, 47.323947, 8.518963, 47.331188], "geometry": {"coordinates": [[[8.516723, 47.331188], [8.516694, 47.33111], [8.51667, 47.331032], [8.516652, 47.330953], [8.516635, 47.330849], [8.516627, 47.330745], [8.516625, 47.330641], [8.516644, 47.330474], [8.516684, 47.330308], [8.516743, 47.330146], [8.516822, 47.329987], [8.51692, 47.329833], [8.517037, 47.329686], [8.517977, 47.328635], [8.518603, 47.327933], [8.518703, 47.32781], [8.518787, 47.327681], [8.518856, 47.327548], [8.518908, 47.327412], [8.518943, 47.327273], [8.518962, 47.327133], [8.518963, 47.326992], [8.518947, 47.326852], [8.518914, 47.326713], [8.518514, 47.325373], [8.518469, 47.325195], [8.518446, 47.325015], [8.518446, 47.324835], [8.518468, 47.324655], [8.518512, 47.324477], [8.518578, 47.324302], [8.518666, 47.324132], [8.518764, 47.323947]]], "type": "MultiLineString"}, "id": "5155", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_bbc544344d4d50da0e49dfaed6ad3178_onEachFeature(feature, layer) {\n", + " function geo_json_1fccbd102077369d9d710e92d1a81f55_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_bbc544344d4d50da0e49dfaed6ad3178 = L.geoJson(null, {\n", - " onEachFeature: geo_json_bbc544344d4d50da0e49dfaed6ad3178_onEachFeature,\n", + " var geo_json_1fccbd102077369d9d710e92d1a81f55 = L.geoJson(null, {\n", + " onEachFeature: geo_json_1fccbd102077369d9d710e92d1a81f55_onEachFeature,\n", " \n", " color: "purple",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_bbc544344d4d50da0e49dfaed6ad3178_add (data) {\n", - " geo_json_bbc544344d4d50da0e49dfaed6ad3178\n", + " function geo_json_1fccbd102077369d9d710e92d1a81f55_add (data) {\n", + " geo_json_1fccbd102077369d9d710e92d1a81f55\n", " .addData(data);\n", " }\n", - " geo_json_bbc544344d4d50da0e49dfaed6ad3178_add({"bbox": [8.464875, 47.32782, 8.603041, 47.433118], "features": [{"bbox": [8.480283, 47.396647, 8.481095, 47.397003], "geometry": {"coordinates": [[[8.481095, 47.396647], [8.480283, 47.397003]]], "type": "MultiLineString"}, "id": "69", "properties": {}, "type": "Feature"}, {"bbox": [8.522281, 47.34823, 8.524548, 47.34986], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "85", "properties": {}, "type": "Feature"}, {"bbox": [8.565439, 47.406938, 8.568783, 47.409581], "geometry": {"coordinates": [[[8.568783, 47.409581], [8.568584, 47.40943], [8.568392, 47.409275], [8.568207, 47.409117], [8.56659, 47.407731], [8.566223, 47.407456], [8.565839, 47.407191], [8.565439, 47.406938]]], "type": "MultiLineString"}, "id": "202", "properties": {}, "type": "Feature"}, {"bbox": [8.524084, 47.352796, 8.524746, 47.353593], "geometry": {"coordinates": [[[8.524084, 47.353593], [8.524184, 47.353454], [8.524746, 47.352796]]], "type": "MultiLineString"}, "id": "231", "properties": {}, "type": "Feature"}, {"bbox": [8.48099, 47.397585, 8.481654, 47.397763], "geometry": {"coordinates": [[[8.481654, 47.397585], [8.48099, 47.397763]]], "type": "MultiLineString"}, "id": "344", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.343169, 8.519399, 47.343373], "geometry": {"coordinates": [[[8.519399, 47.343373], [8.51938, 47.343169]]], "type": "MultiLineString"}, "id": "357", "properties": {}, "type": "Feature"}, {"bbox": [8.529733, 47.329927, 8.52988, 47.332387], "geometry": {"coordinates": [[[8.52988, 47.332387], [8.52987, 47.332314], [8.529859, 47.332234], [8.529846, 47.332155], [8.529807, 47.331749], [8.529735, 47.329937], [8.529733, 47.329927]]], "type": "MultiLineString"}, "id": "625", "properties": {}, "type": "Feature"}, {"bbox": [8.482418, 47.394171, 8.490168, 47.396148], "geometry": {"coordinates": [[[8.490168, 47.394171], [8.48959, 47.394288], [8.488673, 47.39449], [8.488298, 47.394572], [8.485099, 47.395396], [8.482418, 47.396148]]], "type": "MultiLineString"}, "id": "828", "properties": {}, "type": "Feature"}, {"bbox": [8.481654, 47.397474, 8.482072, 47.397585], "geometry": {"coordinates": [[[8.482072, 47.397474], [8.481654, 47.397585]]], "type": "MultiLineString"}, "id": "1019", "properties": {}, "type": "Feature"}, {"bbox": [8.489022, 47.426082, 8.491949, 47.426889], "geometry": {"coordinates": [[[8.491949, 47.426889], [8.491333, 47.426631], [8.490908, 47.42648], [8.490463, 47.426358], [8.490003, 47.426265], [8.489022, 47.426082]]], "type": "MultiLineString"}, "id": "1028", "properties": {}, "type": "Feature"}, {"bbox": [8.568783, 47.409581, 8.570557, 47.410693], "geometry": {"coordinates": [[[8.570557, 47.410693], [8.570015, 47.410377], [8.56949, 47.410048], [8.568983, 47.409706], [8.568921, 47.409661], [8.568854, 47.409619], [8.568783, 47.409581]]], "type": "MultiLineString"}, "id": "1095", "properties": {}, "type": "Feature"}, {"bbox": [8.560857, 47.348142, 8.562669, 47.350019], "geometry": {"coordinates": [[[8.560857, 47.350019], [8.561239, 47.349659], [8.561547, 47.349369], [8.562067, 47.348817], [8.562669, 47.348142]]], "type": "MultiLineString"}, "id": "1132", "properties": {}, "type": "Feature"}, {"bbox": [8.482748, 47.39511, 8.484653, 47.39559], "geometry": {"coordinates": [[[8.484653, 47.39511], [8.483797, 47.395321], [8.482748, 47.39559]]], "type": "MultiLineString"}, "id": "1161", "properties": {}, "type": "Feature"}, {"bbox": [8.485481, 47.429203, 8.488026, 47.43069], "geometry": {"coordinates": [[[8.488026, 47.429203], [8.486952, 47.429831], [8.485481, 47.43069]]], "type": "MultiLineString"}, "id": "1166", "properties": {}, "type": "Feature"}, {"bbox": [8.529735, 47.32959, 8.531346, 47.329937], "geometry": {"coordinates": [[[8.529735, 47.329937], [8.530986, 47.329696], [8.531082, 47.329676], [8.531176, 47.329651], [8.531267, 47.329621], [8.531346, 47.32959]]], "type": "MultiLineString"}, "id": "1185", "properties": {}, "type": "Feature"}, {"bbox": [8.574158, 47.377449, 8.574712, 47.377605], "geometry": {"coordinates": [[[8.574158, 47.377605], [8.574254, 47.377592], [8.574616, 47.377488], [8.574664, 47.377471], [8.574709, 47.377451], [8.574712, 47.377449]]], "type": "MultiLineString"}, "id": "1276", "properties": {}, "type": "Feature"}, {"bbox": [8.588393, 47.383721, 8.589513, 47.383759], "geometry": {"coordinates": [[[8.588393, 47.383728], [8.588638, 47.383751], [8.58893, 47.383759], [8.589223, 47.383749], [8.589513, 47.383721]]], "type": "MultiLineString"}, "id": "1395", "properties": {}, "type": "Feature"}, {"bbox": [8.522162, 47.353593, 8.524084, 47.356703], "geometry": {"coordinates": [[[8.522162, 47.356703], [8.522163, 47.356701], [8.522644, 47.355935], [8.523984, 47.353732], [8.524084, 47.353593]]], "type": "MultiLineString"}, "id": "1431", "properties": {}, "type": "Feature"}, {"bbox": [8.480728, 47.39559, 8.482748, 47.396109], "geometry": {"coordinates": [[[8.482748, 47.39559], [8.481444, 47.395925], [8.480728, 47.396109]]], "type": "MultiLineString"}, "id": "1492", "properties": {}, "type": "Feature"}, {"bbox": [8.497402, 47.393768, 8.498911, 47.393828], "geometry": {"coordinates": [[[8.498911, 47.393768], [8.498409, 47.393801], [8.497906, 47.393821], [8.497402, 47.393828]]], "type": "MultiLineString"}, "id": "1496", "properties": {}, "type": "Feature"}, {"bbox": [8.464875, 47.369037, 8.465931, 47.369301], "geometry": {"coordinates": [[[8.465931, 47.369301], [8.464875, 47.369037]]], "type": "MultiLineString"}, "id": "1639", "properties": {}, "type": "Feature"}, {"bbox": [8.505903, 47.428161, 8.516452, 47.43154], "geometry": {"coordinates": [[[8.505903, 47.428161], [8.506343, 47.428235], [8.506775, 47.428329], [8.507196, 47.428444], [8.50746, 47.428521], [8.507724, 47.428599], [8.507986, 47.428679], [8.508679, 47.428892], [8.509052, 47.428991], [8.509437, 47.429067], [8.509829, 47.42912], [8.510066, 47.429244], [8.511313, 47.429662], [8.511401, 47.429693], [8.511484, 47.429729], [8.511563, 47.429769], [8.511818, 47.429905], [8.512065, 47.430019], [8.512322, 47.430122], [8.512588, 47.430215], [8.515349, 47.431126], [8.515725, 47.431253], [8.516093, 47.431391], [8.516452, 47.43154]]], "type": "MultiLineString"}, "id": "1750", "properties": {}, "type": "Feature"}, {"bbox": [8.593184, 47.365251, 8.603041, 47.373747], "geometry": {"coordinates": [[[8.598748, 47.365251], [8.598776, 47.365494], [8.598782, 47.365515], [8.598791, 47.365535], [8.598803, 47.365555], [8.598816, 47.365574], [8.598832, 47.365592], [8.59885, 47.36561], [8.59887, 47.365626], [8.598892, 47.365641], [8.599247, 47.365814], [8.599832, 47.366218], [8.599914, 47.366264], [8.599996, 47.366311], [8.600077, 47.366357], [8.600142, 47.366391], [8.600202, 47.366428], [8.600257, 47.36647], [8.600306, 47.366514], [8.600348, 47.366561], [8.600384, 47.366611], [8.600495, 47.366817], [8.600515, 47.36686], [8.600542, 47.366901], [8.600574, 47.366941], [8.600612, 47.366978], [8.601023, 47.367407], [8.601375, 47.367702], [8.601769, 47.367971], [8.602201, 47.368212], [8.602317, 47.368272], [8.602424, 47.368339], [8.602524, 47.368411], [8.602614, 47.368489], [8.602694, 47.368571], [8.602763, 47.368658], [8.602821, 47.368749], [8.602868, 47.368843], [8.603015, 47.36928], [8.603034, 47.369336], [8.603041, 47.369412], [8.603039, 47.369488], [8.603027, 47.369564], [8.603006, 47.369639], [8.602975, 47.369712], [8.602936, 47.369783], [8.602887, 47.369852], [8.60283, 47.369917], [8.602765, 47.369979], [8.602692, 47.370038], [8.602355, 47.37026], [8.602296, 47.370305], [8.602243, 47.370353], [8.602195, 47.370404], [8.602154, 47.370458], [8.601805, 47.37115], [8.601685, 47.371491], [8.601577, 47.371813], [8.601233, 47.372204], [8.601148, 47.372326], [8.601079, 47.372452], [8.601028, 47.372583], [8.601015, 47.372626], [8.600996, 47.372668], [8.600971, 47.372709], [8.600941, 47.372748], [8.600907, 47.372785], [8.600867, 47.37282], [8.600823, 47.372853], [8.600775, 47.372883], [8.600724, 47.372909], [8.600669, 47.372933], [8.599586, 47.373295], [8.599441, 47.373338], [8.599291, 47.373372], [8.599137, 47.373395], [8.598431, 47.373494], [8.598066, 47.373592], [8.597849, 47.373642], [8.597714, 47.373666], [8.597375, 47.373726], [8.597264, 47.37374], [8.597151, 47.373747], [8.597039, 47.373747], [8.596926, 47.373741], [8.596571, 47.373709], [8.595254, 47.37362], [8.594588, 47.373575], [8.594253, 47.373566], [8.594138, 47.373563], [8.593688, 47.373585], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "1926", "properties": {}, "type": "Feature"}, {"bbox": [8.531346, 47.329587, 8.532697, 47.329829], "geometry": {"coordinates": [[[8.531346, 47.32959], [8.531354, 47.329587], [8.531362, 47.329599], [8.531372, 47.32961], [8.531383, 47.329621], [8.531396, 47.329631], [8.53141, 47.32964], [8.531425, 47.329649], [8.531442, 47.329656], [8.531459, 47.329663], [8.531477, 47.329668], [8.531495, 47.329672], [8.531514, 47.329675], [8.531534, 47.329677], [8.531553, 47.329678], [8.531573, 47.329677], [8.531844, 47.329681], [8.532036, 47.3297], [8.532225, 47.32973], [8.53241, 47.32977], [8.532697, 47.329829]]], "type": "MultiLineString"}, "id": "1946", "properties": {}, "type": "Feature"}, {"bbox": [8.562669, 47.346239, 8.564685, 47.348142], "geometry": {"coordinates": [[[8.562669, 47.348142], [8.562913, 47.347905], [8.564685, 47.346239]]], "type": "MultiLineString"}, "id": "2098", "properties": {}, "type": "Feature"}, {"bbox": [8.4662, 47.397932, 8.474563, 47.400131], "geometry": {"coordinates": [[[8.474563, 47.397932], [8.473422, 47.398261], [8.469535, 47.399275], [8.4662, 47.400131]]], "type": "MultiLineString"}, "id": "2108", "properties": {}, "type": "Feature"}, {"bbox": [8.505808, 47.428327, 8.516351, 47.431668], "geometry": {"coordinates": [[[8.516351, 47.431668], [8.515955, 47.431577], [8.515564, 47.431476], [8.51518, 47.431365], [8.513437, 47.430796], [8.513282, 47.430753], [8.513123, 47.430717], [8.512961, 47.430688], [8.512521, 47.430628], [8.512461, 47.430619], [8.512401, 47.430608], [8.512344, 47.430593], [8.512288, 47.430575], [8.512235, 47.430554], [8.512185, 47.43053], [8.512119, 47.430496], [8.512049, 47.430464], [8.511975, 47.430437], [8.511331, 47.430221], [8.51125, 47.430195], [8.511167, 47.430173], [8.511081, 47.430154], [8.511007, 47.430136], [8.510935, 47.430114], [8.510867, 47.430087], [8.510802, 47.430057], [8.510405, 47.42985], [8.509986, 47.429665], [8.509547, 47.429502], [8.508914, 47.429298], [8.507815, 47.428955], [8.506968, 47.428704], [8.506774, 47.42865], [8.50658, 47.428594], [8.506387, 47.428537], [8.506188, 47.428475], [8.505995, 47.428405], [8.505808, 47.428327]]], "type": "MultiLineString"}, "id": "2131", "properties": {}, "type": "Feature"}, {"bbox": [8.542958, 47.428918, 8.553396, 47.4327], "geometry": {"coordinates": [[[8.553396, 47.428918], [8.553334, 47.428991], [8.552919, 47.429221], [8.552514, 47.429458], [8.552119, 47.429702], [8.55164, 47.430001], [8.551158, 47.430297], [8.550674, 47.430592], [8.550545, 47.430685], [8.55026, 47.430922], [8.549537, 47.43108], [8.549136, 47.431172], [8.548736, 47.431268], [8.548339, 47.431367], [8.546905, 47.431727], [8.546147, 47.431911], [8.544254, 47.432407], [8.543829, 47.432519], [8.543397, 47.432617], [8.542958, 47.4327]]], "type": "MultiLineString"}, "id": "2134", "properties": {}, "type": "Feature"}, {"bbox": [8.57521, 47.373974, 8.591209, 47.378557], "geometry": {"coordinates": [[[8.57521, 47.378534], [8.575233, 47.378526], [8.575257, 47.378519], [8.575282, 47.378514], [8.575307, 47.37851], [8.575333, 47.378507], [8.575359, 47.378506], [8.575385, 47.378507], [8.575411, 47.378509], [8.575967, 47.378553], [8.5761, 47.378557], [8.576233, 47.378552], [8.576365, 47.378538], [8.576605, 47.378496], [8.577426, 47.378353], [8.577593, 47.378324], [8.577764, 47.378305], [8.577936, 47.378297], [8.578108, 47.3783], [8.579062, 47.378386], [8.579539, 47.378395], [8.580015, 47.378373], [8.580486, 47.378321], [8.581995, 47.377978], [8.582102, 47.377952], [8.5828, 47.37771], [8.583035, 47.377624], [8.583236, 47.377538], [8.583425, 47.37744], [8.5836, 47.37733], [8.58376, 47.377211], [8.583904, 47.377081], [8.583912, 47.377065], [8.583919, 47.377049], [8.583924, 47.377032], [8.583927, 47.377014], [8.583927, 47.376997], [8.583924, 47.376494], [8.583924, 47.376429], [8.583932, 47.376308], [8.583935, 47.376269], [8.583943, 47.376231], [8.583956, 47.376192], [8.583974, 47.376155], [8.583997, 47.376119], [8.584024, 47.376085], [8.584056, 47.376052], [8.584093, 47.376022], [8.584133, 47.375994], [8.584177, 47.375968], [8.584223, 47.375946], [8.584273, 47.375926], [8.584325, 47.375909], [8.584709, 47.375789], [8.585089, 47.375683], [8.585441, 47.375585], [8.586659, 47.375253], [8.588529, 47.374733], [8.589127, 47.374566], [8.590436, 47.374185], [8.590605, 47.374137], [8.590965, 47.374033], [8.591005, 47.374021], [8.591045, 47.37401], [8.591086, 47.374], [8.591127, 47.373991], [8.591168, 47.373982], [8.591209, 47.373974]]], "type": "MultiLineString"}, "id": "2193", "properties": {}, "type": "Feature"}, {"bbox": [8.591209, 47.373646, 8.593184, 47.373974], "geometry": {"coordinates": [[[8.591209, 47.373974], [8.591287, 47.373957], [8.591364, 47.373941], [8.591442, 47.373925], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "2230", "properties": {}, "type": "Feature"}, {"bbox": [8.530877, 47.327872, 8.531498, 47.329587], "geometry": {"coordinates": [[[8.531354, 47.329587], [8.531365, 47.329583], [8.531375, 47.329579], [8.531386, 47.329574], [8.531395, 47.329569], [8.531404, 47.329563], [8.531412, 47.329557], [8.531419, 47.32955], [8.531425, 47.329543], [8.531431, 47.329535], [8.531452, 47.329505], [8.531469, 47.329473], [8.531482, 47.329441], [8.531491, 47.329409], [8.531497, 47.329375], [8.531498, 47.329342], [8.531475, 47.328879], [8.531463, 47.328775], [8.531438, 47.328672], [8.5314, 47.328571], [8.53135, 47.328472], [8.531287, 47.328377], [8.531213, 47.328286], [8.53111, 47.32819], [8.53102, 47.328088], [8.530942, 47.327982], [8.530877, 47.327872]]], "type": "MultiLineString"}, "id": "2336", "properties": {}, "type": "Feature"}, {"bbox": [8.488026, 47.427939, 8.490192, 47.429203], "geometry": {"coordinates": [[[8.490192, 47.427939], [8.488244, 47.429075], [8.488026, 47.429203]]], "type": "MultiLineString"}, "id": "2352", "properties": {}, "type": "Feature"}, {"bbox": [8.472611, 47.401934, 8.474711, 47.401978], "geometry": {"coordinates": [[[8.474711, 47.401934], [8.472611, 47.401978]]], "type": "MultiLineString"}, "id": "2393", "properties": {}, "type": "Feature"}, {"bbox": [8.555739, 47.419583, 8.556147, 47.42003], "geometry": {"coordinates": [[[8.555739, 47.419583], [8.556147, 47.42003]]], "type": "MultiLineString"}, "id": "2400", "properties": {}, "type": "Feature"}, {"bbox": [8.479723, 47.397763, 8.48099, 47.398116], "geometry": {"coordinates": [[[8.48099, 47.397763], [8.480041, 47.39801], [8.479933, 47.398042], [8.479827, 47.398078], [8.479723, 47.398116]]], "type": "MultiLineString"}, "id": "2403", "properties": {}, "type": "Feature"}, {"bbox": [8.589513, 47.383447, 8.590977, 47.383721], "geometry": {"coordinates": [[[8.589513, 47.383721], [8.590977, 47.383447]]], "type": "MultiLineString"}, "id": "2438", "properties": {}, "type": "Feature"}, {"bbox": [8.476448, 47.397003, 8.480283, 47.397926], "geometry": {"coordinates": [[[8.480283, 47.397003], [8.480202, 47.397041], [8.47873, 47.397677], [8.478581, 47.397743], [8.478422, 47.397799], [8.478257, 47.397846], [8.478087, 47.397882], [8.477912, 47.397908], [8.477734, 47.397922], [8.477556, 47.397926], [8.477377, 47.397918], [8.476448, 47.397837]]], "type": "MultiLineString"}, "id": "2439", "properties": {}, "type": "Feature"}, {"bbox": [8.470019, 47.37062, 8.48059, 47.374155], "geometry": {"coordinates": [[[8.48059, 47.373278], [8.478678, 47.372591], [8.478645, 47.372577], [8.47861, 47.372565], [8.478574, 47.372556], [8.478537, 47.372548], [8.478499, 47.372542], [8.478461, 47.372539], [8.478422, 47.372537], [8.478383, 47.372538], [8.478345, 47.372541], [8.478307, 47.372547], [8.478236, 47.372563], [8.47799, 47.372643], [8.477863, 47.372683], [8.477731, 47.372713], [8.477594, 47.372734], [8.476127, 47.372857], [8.476021, 47.372875], [8.475997, 47.37288], [8.475973, 47.372887], [8.47595, 47.372895], [8.475928, 47.372904], [8.475908, 47.372915], [8.475889, 47.372927], [8.475871, 47.37294], [8.475856, 47.372953], [8.475842, 47.372968], [8.47583, 47.372984], [8.47582, 47.373], [8.475812, 47.373017], [8.475807, 47.373034], [8.475803, 47.373051], [8.475802, 47.373069], [8.475803, 47.373086], [8.475807, 47.373103], [8.475813, 47.373121], [8.47582, 47.373137], [8.475868, 47.373242], [8.475929, 47.373343], [8.476003, 47.37344], [8.476269, 47.37375], [8.476281, 47.373763], [8.476291, 47.373776], [8.476299, 47.37379], [8.476306, 47.373804], [8.47631, 47.373819], [8.476313, 47.373833], [8.476314, 47.373848], [8.476313, 47.373863], [8.47631, 47.373878], [8.476305, 47.373893], [8.476299, 47.373907], [8.476291, 47.373921], [8.476281, 47.373934], [8.476269, 47.373946], [8.476256, 47.373958], [8.476241, 47.373969], [8.4761, 47.374025], [8.475951, 47.374072], [8.475797, 47.37411], [8.475638, 47.374137], [8.475476, 47.374155], [8.475435, 47.374155], [8.475395, 47.374152], [8.475354, 47.374147], [8.475315, 47.37414], [8.475277, 47.37413], [8.47524, 47.374117], [8.475181, 47.374089], [8.475126, 47.374057], [8.475074, 47.374022], [8.475027, 47.373985], [8.474984, 47.373945], [8.474947, 47.373902], [8.474835, 47.373775], [8.474181, 47.372986], [8.473577, 47.372249], [8.47329, 47.371887], [8.473262, 47.371854], [8.47323, 47.371823], [8.473195, 47.371794], [8.473156, 47.371768], [8.473114, 47.371743], [8.473069, 47.371721], [8.473022, 47.371702], [8.472961, 47.371683], [8.472898, 47.371668], [8.472833, 47.371657], [8.472767, 47.371649], [8.472701, 47.371645], [8.472634, 47.371644], [8.472513, 47.371642], [8.472392, 47.371633], [8.472274, 47.371617], [8.472157, 47.371595], [8.471664, 47.371479], [8.47153, 47.371444], [8.4714, 47.371401], [8.471276, 47.371351], [8.471158, 47.371295], [8.471048, 47.371232], [8.470693, 47.371013], [8.470607, 47.370968], [8.470516, 47.370926], [8.47042, 47.37089], [8.470362, 47.370872], [8.470306, 47.37085], [8.470253, 47.370825], [8.470204, 47.370797], [8.470158, 47.370766], [8.470116, 47.370733], [8.470079, 47.370697], [8.470046, 47.370659], [8.470019, 47.37062]]], "type": "MultiLineString"}, "id": "2467", "properties": {}, "type": "Feature"}, {"bbox": [8.529592, 47.3281, 8.529733, 47.329927], "geometry": {"coordinates": [[[8.529733, 47.329927], [8.529691, 47.32952], [8.529654, 47.329103], [8.529624, 47.328685], [8.529612, 47.32849], [8.529601, 47.328295], [8.529592, 47.3281]]], "type": "MultiLineString"}, "id": "2469", "properties": {}, "type": "Feature"}, {"bbox": [8.491949, 47.426683, 8.49836, 47.42705], "geometry": {"coordinates": [[[8.49836, 47.426925], [8.498075, 47.426919], [8.49779, 47.426905], [8.497507, 47.426884], [8.495984, 47.42674], [8.495505, 47.426702], [8.495025, 47.426683], [8.494543, 47.426683], [8.494244, 47.426701], [8.493948, 47.426738], [8.493659, 47.426793], [8.493378, 47.426866], [8.492876, 47.427009], [8.492805, 47.427026], [8.492732, 47.427038], [8.492657, 47.427046], [8.492582, 47.42705], [8.492507, 47.427049], [8.492432, 47.427043], [8.492358, 47.427033], [8.492286, 47.427019], [8.492216, 47.427], [8.491949, 47.426889]]], "type": "MultiLineString"}, "id": "2471", "properties": {}, "type": "Feature"}, {"bbox": [8.465931, 47.369129, 8.481779, 47.370988], "geometry": {"coordinates": [[[8.481779, 47.369129], [8.48173, 47.369148], [8.48155, 47.369227], [8.481377, 47.369313], [8.481173, 47.369423], [8.481106, 47.369462], [8.481042, 47.369504], [8.480982, 47.369548], [8.480844, 47.369655], [8.480624, 47.369803], [8.480383, 47.369934], [8.480124, 47.370049], [8.47997, 47.370103], [8.479811, 47.37015], [8.479649, 47.37019], [8.479416, 47.370233], [8.479179, 47.370262], [8.478939, 47.370277], [8.477841, 47.370286], [8.477404, 47.370294], [8.476969, 47.370326], [8.47654, 47.370383], [8.476118, 47.370463], [8.475708, 47.370567], [8.474822, 47.370812], [8.474484, 47.370887], [8.474138, 47.370942], [8.473787, 47.370976], [8.473432, 47.370988], [8.473077, 47.37098], [8.472724, 47.370949], [8.471064, 47.37075], [8.470714, 47.370713], [8.470365, 47.370669], [8.470019, 47.37062], [8.469785, 47.37058], [8.469557, 47.370526], [8.469337, 47.370459], [8.469127, 47.370378], [8.46825, 47.370036], [8.468243, 47.370033], [8.467682, 47.369814], [8.467256, 47.36966], [8.466817, 47.369525], [8.466365, 47.369409], [8.465931, 47.369301]]], "type": "MultiLineString"}, "id": "2694", "properties": {}, "type": "Feature"}, {"bbox": [8.55299, 47.402402, 8.560667, 47.404882], "geometry": {"coordinates": [[[8.560667, 47.404882], [8.560617, 47.404863], [8.560006, 47.404611], [8.559365, 47.404397], [8.5587, 47.40422], [8.557859, 47.403999], [8.557019, 47.403778], [8.556179, 47.403558], [8.555574, 47.403375], [8.554975, 47.403183], [8.554384, 47.40298], [8.553876, 47.402776], [8.553373, 47.402566], [8.55299, 47.402402]]], "type": "MultiLineString"}, "id": "2795", "properties": {}, "type": "Feature"}, {"bbox": [8.547832, 47.399648, 8.548757, 47.400223], "geometry": {"coordinates": [[[8.548757, 47.400223], [8.548543, 47.400131], [8.548342, 47.400027], [8.548156, 47.399911], [8.547985, 47.399784], [8.547832, 47.399648]]], "type": "MultiLineString"}, "id": "2797", "properties": {}, "type": "Feature"}, {"bbox": [8.560667, 47.404882, 8.565439, 47.406938], "geometry": {"coordinates": [[[8.565439, 47.406938], [8.565219, 47.406793], [8.564996, 47.40665], [8.56477, 47.406509], [8.564404, 47.406287], [8.564034, 47.40607], [8.563658, 47.405856], [8.563333, 47.405686], [8.562987, 47.405538], [8.562622, 47.405411], [8.562242, 47.405307], [8.561849, 47.405227], [8.561443, 47.405131], [8.561048, 47.405016], [8.560667, 47.404882]]], "type": "MultiLineString"}, "id": "2802", "properties": {}, "type": "Feature"}, {"bbox": [8.527955, 47.3281, 8.529592, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528288, 47.330512], [8.528341, 47.330315], [8.528349, 47.330221], [8.528344, 47.330127], [8.528326, 47.330034], [8.528295, 47.329943], [8.528252, 47.329853], [8.528197, 47.329767], [8.528106, 47.32964], [8.528059, 47.329572], [8.52802, 47.329503], [8.52799, 47.329431], [8.527969, 47.329358], [8.527958, 47.329284], [8.527955, 47.329209], [8.527962, 47.329135], [8.527978, 47.329061], [8.52801, 47.328965], [8.528053, 47.328871], [8.528107, 47.328779], [8.528171, 47.32869], [8.528438, 47.328402], [8.528478, 47.328361], [8.528522, 47.328321], [8.528571, 47.328285], [8.528626, 47.328252], [8.528684, 47.328223], [8.528746, 47.328197], [8.528811, 47.328175], [8.528879, 47.328158], [8.528949, 47.328144], [8.52902, 47.328135], [8.529592, 47.3281]]], "type": "MultiLineString"}, "id": "2836", "properties": {}, "type": "Feature"}, {"bbox": [8.528095, 47.32782, 8.530333, 47.329508], "geometry": {"coordinates": [[[8.529624, 47.328685], [8.529601, 47.328616], [8.529572, 47.328548], [8.529537, 47.328481], [8.529516, 47.32844], [8.52949, 47.328401], [8.529459, 47.328363], [8.529423, 47.328328], [8.529383, 47.328295], [8.529343, 47.328274], [8.529302, 47.328256], [8.529258, 47.32824], [8.529212, 47.328226], [8.529165, 47.328215], [8.529116, 47.328207], [8.529067, 47.328202], [8.529017, 47.328199], [8.528972, 47.328202], [8.528928, 47.328208], [8.528884, 47.328217], [8.528842, 47.328228], [8.528801, 47.328242], [8.528762, 47.328257], [8.528725, 47.328275], [8.528691, 47.328295], [8.528659, 47.328317], [8.528615, 47.328349], [8.528574, 47.328383], [8.528538, 47.328419], [8.52826, 47.32872], [8.528167, 47.328851], [8.528143, 47.328886], [8.528124, 47.328923], [8.52811, 47.328961], [8.5281, 47.328999], [8.528095, 47.329038], [8.528095, 47.329077], [8.5281, 47.329116], [8.528111, 47.329155], [8.528125, 47.329193], [8.528145, 47.329229], [8.52817, 47.329265], [8.528198, 47.329299], [8.528231, 47.329331], [8.528268, 47.329361], [8.528309, 47.329388], [8.528353, 47.329414], [8.5284, 47.329436], [8.528449, 47.329456], [8.528501, 47.329473], [8.528555, 47.329486], [8.528611, 47.329497], [8.528667, 47.329504], [8.528724, 47.329507], [8.528782, 47.329508], [8.528839, 47.329505], [8.528896, 47.329498], [8.528952, 47.329488], [8.529006, 47.329475], [8.529058, 47.329459], [8.529109, 47.32944], [8.529156, 47.329418], [8.529201, 47.329393], [8.529242, 47.329366], [8.529295, 47.329331], [8.529343, 47.329293], [8.529386, 47.329253], [8.529424, 47.32921], [8.529457, 47.329164], [8.529732, 47.32876], [8.529859, 47.328565], [8.529981, 47.328368], [8.5301, 47.32817], [8.530254, 47.327893], [8.530263, 47.327879], [8.530274, 47.327865], [8.530286, 47.327853], [8.530301, 47.327841], [8.530316, 47.32783], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2838", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.328463, 8.53141, 47.329587], "geometry": {"coordinates": [[[8.531354, 47.329587], [8.531383, 47.329508], [8.531402, 47.329428], [8.53141, 47.329347], [8.531407, 47.329265], [8.531386, 47.328892], [8.531379, 47.328851], [8.531367, 47.328811], [8.53135, 47.328772], [8.531327, 47.328734], [8.5313, 47.328698], [8.531269, 47.328663], [8.531233, 47.328631], [8.531192, 47.328601], [8.531149, 47.328573], [8.531101, 47.328548], [8.531051, 47.328526], [8.530998, 47.328507], [8.530942, 47.328491], [8.530885, 47.328479], [8.530827, 47.32847], [8.530767, 47.328464], [8.530707, 47.328463], [8.530647, 47.328464], [8.530588, 47.32847], [8.530529, 47.328479], [8.530472, 47.328491], [8.530417, 47.328507], [8.530364, 47.328526], [8.530314, 47.328548], [8.530266, 47.328574], [8.530223, 47.328601], [8.530183, 47.328632], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2978", "properties": {}, "type": "Feature"}, {"bbox": [8.525491, 47.430625, 8.535187, 47.433118], "geometry": {"coordinates": [[[8.535187, 47.430625], [8.531677, 47.431685], [8.531323, 47.431792], [8.53115, 47.431842], [8.530975, 47.431889], [8.530798, 47.431932], [8.530597, 47.431976], [8.530233, 47.432052], [8.52864, 47.4324], [8.525907, 47.433041], [8.52577, 47.43307], [8.525631, 47.433096], [8.525491, 47.433118]]], "type": "MultiLineString"}, "id": "2985", "properties": {}, "type": "Feature"}, {"bbox": [8.490752, 47.393633, 8.498911, 47.393959], "geometry": {"coordinates": [[[8.498911, 47.393768], [8.496726, 47.393665], [8.496418, 47.393655], [8.49593, 47.39364], [8.495442, 47.393633], [8.494954, 47.393634], [8.49434, 47.393642], [8.49371, 47.393661], [8.493082, 47.393695], [8.492456, 47.393743], [8.492023, 47.393786], [8.491591, 47.393837], [8.491162, 47.393896], [8.490812, 47.393949], [8.490752, 47.393959]]], "type": "MultiLineString"}, "id": "3027", "properties": {}, "type": "Feature"}, {"bbox": [8.490697, 47.393357, 8.494458, 47.393852], "geometry": {"coordinates": [[[8.490697, 47.393852], [8.491131, 47.393766], [8.492084, 47.393601], [8.492663, 47.393519], [8.493248, 47.393456], [8.493836, 47.393412], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "3028", "properties": {}, "type": "Feature"}, {"bbox": [8.493295, 47.393769, 8.494939, 47.394594], "geometry": {"coordinates": [[[8.493676, 47.393769], [8.493642, 47.393959], [8.493636, 47.394116], [8.493656, 47.394223], [8.493663, 47.394256], [8.493675, 47.394289], [8.493691, 47.394321], [8.49371, 47.394352], [8.493734, 47.394382], [8.493762, 47.39441], [8.493793, 47.394436], [8.493827, 47.394461], [8.493865, 47.394483], [8.493905, 47.394503], [8.493947, 47.39452], [8.494001, 47.394541], [8.494057, 47.394559], [8.494116, 47.394573], [8.494175, 47.394584], [8.494236, 47.394591], [8.494298, 47.394594], [8.49436, 47.394594], [8.494422, 47.39459], [8.494482, 47.394583], [8.494542, 47.394572], [8.4946, 47.394557], [8.494641, 47.394546], [8.49468, 47.394533], [8.494717, 47.394517], [8.494752, 47.394499], [8.494784, 47.39448], [8.494814, 47.394458], [8.494841, 47.394435], [8.494866, 47.39441], [8.494887, 47.394384], [8.494904, 47.394357], [8.494918, 47.394329], [8.494929, 47.3943], [8.494936, 47.394271], [8.494939, 47.394242], [8.494938, 47.394212], [8.494934, 47.394182], [8.494926, 47.394153], [8.494915, 47.394125], [8.494899, 47.394097], [8.494881, 47.39407], [8.494859, 47.394044], [8.494834, 47.39402], [8.494805, 47.394], [8.494774, 47.393981], [8.49474, 47.393964], [8.494704, 47.393949], [8.494667, 47.393937], [8.494628, 47.393926], [8.494589, 47.393918], [8.494548, 47.393912], [8.494506, 47.393908], [8.494465, 47.393907], [8.494423, 47.393908], [8.494382, 47.393911], [8.494341, 47.393917], [8.493827, 47.394047], [8.493711, 47.394076], [8.493594, 47.394107], [8.493295, 47.394183]]], "type": "MultiLineString"}, "id": "3034", "properties": {}, "type": "Feature"}, {"bbox": [8.490223, 47.425612, 8.493733, 47.425845], "geometry": {"coordinates": [[[8.490223, 47.425612], [8.49143, 47.425684], [8.491931, 47.425698], [8.492225, 47.425708], [8.492519, 47.425707], [8.492813, 47.425693], [8.49295, 47.425689], [8.493088, 47.425694], [8.493224, 47.425708], [8.493358, 47.42573], [8.493488, 47.425761], [8.493614, 47.425799], [8.493733, 47.425845]]], "type": "MultiLineString"}, "id": "3068", "properties": {}, "type": "Feature"}, {"bbox": [8.47643, 47.396109, 8.480728, 47.397322], "geometry": {"coordinates": [[[8.480728, 47.396109], [8.48017, 47.396252], [8.479494, 47.396428], [8.479014, 47.396554], [8.478539, 47.396687], [8.478069, 47.396829], [8.47643, 47.397322]]], "type": "MultiLineString"}, "id": "3219", "properties": {}, "type": "Feature"}, {"bbox": [8.543053, 47.428808, 8.553246, 47.432524], "geometry": {"coordinates": [[[8.543053, 47.432524], [8.543218, 47.432479], [8.543381, 47.43243], [8.543542, 47.432379], [8.543704, 47.43233], [8.543867, 47.432283], [8.544032, 47.43224], [8.544964, 47.43199], [8.544967, 47.43199], [8.545275, 47.431904], [8.545576, 47.431807], [8.545871, 47.431701], [8.546214, 47.431576], [8.546555, 47.431448], [8.546894, 47.431317], [8.547628, 47.431057], [8.547921, 47.430948], [8.5482, 47.430823], [8.548464, 47.430684], [8.54871, 47.43053], [8.549247, 47.430152], [8.549468, 47.430003], [8.549892, 47.429897], [8.551062, 47.429649], [8.551381, 47.42958], [8.551689, 47.42949], [8.551983, 47.429381], [8.553112, 47.428831], [8.553246, 47.428808]]], "type": "MultiLineString"}, "id": "3363", "properties": {}, "type": "Feature"}, {"bbox": [8.518874, 47.343373, 8.522837, 47.349321], "geometry": {"coordinates": [[[8.522837, 47.349321], [8.522678, 47.349185], [8.522512, 47.349052], [8.522339, 47.348923], [8.522241, 47.348852], [8.522144, 47.348782], [8.522046, 47.348712], [8.521925, 47.348625], [8.521475, 47.348303], [8.521178, 47.34809], [8.521063, 47.348007], [8.520947, 47.347924], [8.520831, 47.347841], [8.520678, 47.347734], [8.520526, 47.347626], [8.520372, 47.347519], [8.519849, 47.347142], [8.519638, 47.346991], [8.51945, 47.346827], [8.519286, 47.346651], [8.519187, 47.346523], [8.5191, 47.346391], [8.519028, 47.346255], [8.518974, 47.346131], [8.518932, 47.346004], [8.518901, 47.345876], [8.518888, 47.345791], [8.518879, 47.345707], [8.518874, 47.345622], [8.518879, 47.345501], [8.518892, 47.345381], [8.518911, 47.345261], [8.518941, 47.345127], [8.518979, 47.344994], [8.519026, 47.344863], [8.519176, 47.344444], [8.519277, 47.34409], [8.519352, 47.343732], [8.519399, 47.343373]]], "type": "MultiLineString"}, "id": "3381", "properties": {}, "type": "Feature"}, {"bbox": [8.498911, 47.392531, 8.502802, 47.393825], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.502722, 47.392632], [8.501811, 47.393296], [8.501627, 47.393415], [8.501432, 47.393525], [8.501226, 47.393626], [8.501085, 47.39368], [8.500937, 47.393726], [8.500785, 47.393764], [8.500628, 47.393793], [8.500468, 47.393813], [8.500307, 47.393821], [8.500145, 47.393825], [8.499983, 47.393824], [8.498911, 47.393768]]], "type": "MultiLineString"}, "id": "3446", "properties": {}, "type": "Feature"}, {"bbox": [8.484653, 47.393948, 8.489752, 47.39511], "geometry": {"coordinates": [[[8.489752, 47.393948], [8.489516, 47.393995], [8.488195, 47.394295], [8.487295, 47.394488], [8.48715, 47.394522], [8.486118, 47.39476], [8.4856, 47.394894], [8.48516, 47.394997], [8.484807, 47.395082], [8.484653, 47.39511]]], "type": "MultiLineString"}, "id": "3532", "properties": {}, "type": "Feature"}, {"bbox": [8.573522, 47.377393, 8.58422, 47.381907], "geometry": {"coordinates": [[[8.573522, 47.377393], [8.573621, 47.377415], [8.573871, 47.377471], [8.573934, 47.377491], [8.573995, 47.377515], [8.574053, 47.377542], [8.574107, 47.377572], [8.574158, 47.377605], [8.574206, 47.37764], [8.574251, 47.377679], [8.57429, 47.37772], [8.574323, 47.377763], [8.574351, 47.377808], [8.57443, 47.377939], [8.574511, 47.378093], [8.57454, 47.378133], [8.574574, 47.378171], [8.574614, 47.378208], [8.574659, 47.378241], [8.574707, 47.378272], [8.57476, 47.378299], [8.575017, 47.378429], [8.57521, 47.378534], [8.57634, 47.37926], [8.576938, 47.379736], [8.577565, 47.380068], [8.577799, 47.380208], [8.577913, 47.380296], [8.578015, 47.38039], [8.578104, 47.380491], [8.578176, 47.380559], [8.578255, 47.380624], [8.578342, 47.380685], [8.578435, 47.380741], [8.578491, 47.380771], [8.57855, 47.380799], [8.57861, 47.380826], [8.578873, 47.380927], [8.579147, 47.381012], [8.579432, 47.381081], [8.579725, 47.381133], [8.580759, 47.381123], [8.580789, 47.381122], [8.58082, 47.381121], [8.58085, 47.381118], [8.580955, 47.381107], [8.581058, 47.38109], [8.581159, 47.381067], [8.581256, 47.381038], [8.58135, 47.381004], [8.581913, 47.380771], [8.58199, 47.380742], [8.582071, 47.380716], [8.582154, 47.380696], [8.58224, 47.38068], [8.58243, 47.380686], [8.582598, 47.380747], [8.582711, 47.380851], [8.582725, 47.380876], [8.582735, 47.380902], [8.582742, 47.380928], [8.582746, 47.380954], [8.582746, 47.38098], [8.582742, 47.381007], [8.58272, 47.381123], [8.58262, 47.381395], [8.582611, 47.381446], [8.58261, 47.381481], [8.582614, 47.381516], [8.582622, 47.381551], [8.582635, 47.381585], [8.582652, 47.381618], [8.582673, 47.38165], [8.582698, 47.38168], [8.582727, 47.381709], [8.58276, 47.381736], [8.582797, 47.381761], [8.582836, 47.381784], [8.582878, 47.381804], [8.582923, 47.381822], [8.58297, 47.381836], [8.583018, 47.381848], [8.583068, 47.381857], [8.583119, 47.381863], [8.58317, 47.381866], [8.583222, 47.381866], [8.583807, 47.381841], [8.5839, 47.381846], [8.583992, 47.381856], [8.584082, 47.381871], [8.58417, 47.381892], [8.58422, 47.381907]]], "type": "MultiLineString"}, "id": "3620", "properties": {}, "type": "Feature"}, {"bbox": [8.568783, 47.409581, 8.569594, 47.410397], "geometry": {"coordinates": [[[8.569594, 47.410397], [8.569345, 47.410075], [8.569295, 47.410015], [8.569238, 47.409958], [8.569174, 47.409905], [8.569103, 47.409857], [8.568934, 47.409738], [8.568879, 47.409688], [8.568828, 47.409636], [8.568783, 47.409581]]], "type": "MultiLineString"}, "id": "3747", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.524857, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524777, 47.35193], [8.524709, 47.351801], [8.524694, 47.351773], [8.524612, 47.351624], [8.524488, 47.351396], [8.524291, 47.351047], [8.52407, 47.350706], [8.523824, 47.350372], [8.5236, 47.350102], [8.523358, 47.349839], [8.523098, 47.349583], [8.52287, 47.349384], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "3937", "properties": {}, "type": "Feature"}, {"bbox": [8.51978, 47.345727, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.522281, 47.34823], [8.521872, 47.347937], [8.521498, 47.347669], [8.521318, 47.347539], [8.52122, 47.347468], [8.521123, 47.347397], [8.521028, 47.347324], [8.520949, 47.347263], [8.520871, 47.347201], [8.520794, 47.347138], [8.520631, 47.346997], [8.520479, 47.346851], [8.520338, 47.3467], [8.520234, 47.346576], [8.520138, 47.34645], [8.520049, 47.346322], [8.519933, 47.346129], [8.519844, 47.34593], [8.51978, 47.345727]]], "type": "MultiLineString"}, "id": "3939", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.352161, 8.524874, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.524797, 47.352694], [8.524836, 47.35259], [8.524862, 47.352484], [8.524874, 47.352376], [8.524872, 47.352269], [8.524857, 47.352161]]], "type": "MultiLineString"}, "id": "3940", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397322, 8.47643, 47.397932], "geometry": {"coordinates": [[[8.47643, 47.397322], [8.474808, 47.397806], [8.474761, 47.397821], [8.474716, 47.397838], [8.474674, 47.397858], [8.474634, 47.397881], [8.474597, 47.397905], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "3975", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397932, 8.477236, 47.399742], "geometry": {"coordinates": [[[8.477236, 47.399695], [8.477176, 47.399711], [8.477115, 47.399725], [8.477053, 47.399734], [8.476989, 47.39974], [8.476925, 47.399742], [8.476861, 47.39974], [8.476797, 47.399734], [8.476734, 47.399725], [8.476673, 47.399712], [8.476614, 47.399695], [8.476557, 47.399675], [8.476503, 47.399651], [8.476452, 47.399625], [8.476404, 47.399595], [8.475941, 47.399257], [8.475485, 47.398915], [8.475035, 47.398569], [8.474852, 47.398366], [8.474694, 47.398153], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4045", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.351829, 8.525744, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.525375, 47.35229], [8.525462, 47.352223], [8.525539, 47.352151], [8.525607, 47.352075], [8.525664, 47.351995], [8.525709, 47.351913], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "4111", "properties": {}, "type": "Feature"}, {"bbox": [8.519399, 47.343373, 8.51978, 47.345727], "geometry": {"coordinates": [[[8.51978, 47.345727], [8.519711, 47.345503], [8.519659, 47.345275], [8.51959, 47.34489], [8.519533, 47.34445], [8.519491, 47.343998], [8.51946, 47.343719], [8.519399, 47.343373]]], "type": "MultiLineString"}, "id": "4112", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.525815, 47.351829], "geometry": {"coordinates": [[[8.525744, 47.351829], [8.52577, 47.351778], [8.525794, 47.351728], [8.525815, 47.351677], [8.525798, 47.351528], [8.525764, 47.351381], [8.525713, 47.351236], [8.525645, 47.351095], [8.52556, 47.350957], [8.52555, 47.35094], [8.52554, 47.350923], [8.52553, 47.350905], [8.525519, 47.350888], [8.525507, 47.35087], [8.525496, 47.350852], [8.525465, 47.350805], [8.525446, 47.350777], [8.525427, 47.35075], [8.525408, 47.350723], [8.525373, 47.350674], [8.525336, 47.350626], [8.525299, 47.350578], [8.525264, 47.350535], [8.525228, 47.350492], [8.525191, 47.350449], [8.525152, 47.350405], [8.525113, 47.350362], [8.525072, 47.350319], [8.525033, 47.350279], [8.524993, 47.350239], [8.524953, 47.3502], [8.524923, 47.350172], [8.524893, 47.350144], [8.524862, 47.350116], [8.524829, 47.350087], [8.524795, 47.350058], [8.524761, 47.350029], [8.524727, 47.35], [8.524692, 47.349971], [8.524656, 47.349943], [8.52462, 47.349915], [8.524584, 47.349887], [8.524548, 47.34986]]], "type": "MultiLineString"}, "id": "4161", "properties": {}, "type": "Feature"}, {"bbox": [8.480283, 47.397003, 8.48099, 47.397763], "geometry": {"coordinates": [[[8.48099, 47.397763], [8.480628, 47.397174], [8.480605, 47.397148], [8.480579, 47.397124], [8.48055, 47.397102], [8.480518, 47.397081], [8.480484, 47.397062], [8.480447, 47.397046], [8.480409, 47.397031], [8.480368, 47.39702], [8.480326, 47.39701], [8.480283, 47.397003]]], "type": "MultiLineString"}, "id": "4169", "properties": {}, "type": "Feature"}, {"bbox": [8.474711, 47.399695, 8.47797, 47.401934], "geometry": {"coordinates": [[[8.477236, 47.399695], [8.477487, 47.400089], [8.477732, 47.400485], [8.47797, 47.400883], [8.477895, 47.400969], [8.477811, 47.401049], [8.477716, 47.401125], [8.477613, 47.401195], [8.477502, 47.401259], [8.477383, 47.401317], [8.477258, 47.401367], [8.476811, 47.401549], [8.476341, 47.401701], [8.475852, 47.401822], [8.475348, 47.40191], [8.475136, 47.401923], [8.474924, 47.401931], [8.474711, 47.401934]]], "type": "MultiLineString"}, "id": "4286", "properties": {}, "type": "Feature"}, {"bbox": [8.536791, 47.385215, 8.547832, 47.399648], "geometry": {"coordinates": [[[8.547832, 47.399648], [8.547092, 47.398988], [8.546453, 47.398281], [8.545922, 47.397534], [8.54551, 47.396678], [8.545207, 47.395802], [8.545015, 47.394912], [8.544934, 47.394013], [8.544806, 47.393239], [8.544584, 47.392475], [8.544269, 47.391726], [8.543864, 47.390998], [8.543371, 47.390294], [8.542795, 47.389621], [8.542139, 47.388983], [8.541407, 47.388383], [8.541205, 47.388233], [8.54101, 47.388078], [8.540823, 47.387919], [8.540192, 47.387479], [8.539558, 47.38704], [8.538923, 47.386603], [8.536791, 47.385215]]], "type": "MultiLineString"}, "id": "4320", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397785, 8.476448, 47.397932], "geometry": {"coordinates": [[[8.476448, 47.397837], [8.475885, 47.397788], [8.475615, 47.397785], [8.475346, 47.397799], [8.47508, 47.397828], [8.474818, 47.397872], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4357", "properties": {}, "type": "Feature"}, {"bbox": [8.471549, 47.393761, 8.474563, 47.397932], "geometry": {"coordinates": [[[8.47255, 47.393761], [8.473052, 47.394405], [8.473259, 47.394689], [8.473133, 47.394863], [8.473121, 47.394885], [8.473105, 47.394906], [8.473087, 47.394927], [8.473066, 47.394946], [8.473043, 47.394964], [8.473018, 47.39498], [8.47299, 47.394995], [8.472961, 47.395008], [8.47293, 47.395019], [8.472633, 47.395085], [8.472239, 47.395115], [8.472182, 47.395115], [8.472126, 47.395112], [8.47207, 47.395106], [8.472015, 47.395096], [8.471962, 47.395084], [8.47191, 47.395068], [8.47186, 47.395049], [8.471813, 47.395028], [8.471769, 47.395003], [8.471729, 47.394977], [8.471692, 47.394948], [8.471658, 47.394917], [8.471629, 47.394884], [8.471604, 47.394849], [8.471583, 47.394813], [8.471567, 47.394776], [8.471556, 47.394739], [8.47155, 47.3947], [8.471549, 47.394662], [8.471552, 47.394623], [8.47156, 47.394585], [8.471574, 47.394548], [8.471591, 47.394511], [8.471614, 47.394476], [8.471641, 47.394442], [8.471672, 47.39441], [8.471707, 47.39438], [8.471745, 47.394352], [8.471788, 47.394326], [8.471833, 47.394303], [8.471881, 47.394283], [8.471931, 47.394265], [8.471984, 47.394251], [8.472038, 47.394239], [8.472093, 47.394231], [8.47215, 47.394226], [8.472206, 47.394225], [8.472263, 47.394226], [8.472319, 47.394231], [8.472374, 47.39424], [8.472428, 47.394251], [8.472481, 47.394266], [8.472531, 47.394284], [8.472595, 47.394317], [8.472655, 47.394354], [8.47271, 47.394394], [8.47276, 47.394438], [8.472803, 47.394484], [8.472841, 47.394533], [8.472871, 47.394583], [8.472896, 47.394636], [8.473319, 47.39546], [8.473742, 47.396284], [8.474165, 47.397108], [8.474471, 47.397718], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4566", "properties": {}, "type": "Feature"}, {"bbox": [8.489752, 47.393535, 8.49198, 47.393948], "geometry": {"coordinates": [[[8.49198, 47.393535], [8.490286, 47.393842], [8.489752, 47.393948]]], "type": "MultiLineString"}, "id": "4625", "properties": {}, "type": "Feature"}, {"bbox": [8.477236, 47.398116, 8.479723, 47.399695], "geometry": {"coordinates": [[[8.479723, 47.398116], [8.479568, 47.398176], [8.47942, 47.398244], [8.479279, 47.398318], [8.479078, 47.398448], [8.477497, 47.399554], [8.477453, 47.399589], [8.477404, 47.39962], [8.477351, 47.399648], [8.477295, 47.399673], [8.477236, 47.399695]]], "type": "MultiLineString"}, "id": "4689", "properties": {}, "type": "Feature"}, {"bbox": [8.481296, 47.417773, 8.483114, 47.421342], "geometry": {"coordinates": [[[8.483114, 47.417773], [8.483093, 47.417956], [8.482886, 47.419794], [8.482882, 47.419822], [8.482878, 47.419849], [8.482874, 47.419877], [8.482849, 47.419986], [8.482816, 47.420094], [8.482773, 47.4202], [8.482742, 47.420282], [8.482702, 47.420363], [8.482653, 47.420441], [8.482595, 47.420516], [8.482512, 47.420604], [8.482417, 47.420686], [8.482311, 47.420761], [8.482195, 47.420828], [8.481296, 47.421342]]], "type": "MultiLineString"}, "id": "4764", "properties": {}, "type": "Feature"}, {"bbox": [8.493157, 47.393744, 8.497402, 47.393828], "geometry": {"coordinates": [[[8.497402, 47.393828], [8.496525, 47.393777], [8.496319, 47.393768], [8.496113, 47.393761], [8.495906, 47.393754], [8.495676, 47.39375], [8.495446, 47.393748], [8.495216, 47.393748], [8.495094, 47.393749], [8.494972, 47.393751], [8.494849, 47.393753], [8.494725, 47.393757], [8.494601, 47.393756], [8.494477, 47.393751], [8.494359, 47.393746], [8.494241, 47.393744], [8.494124, 47.393747], [8.493676, 47.393769], [8.493263, 47.393792], [8.493157, 47.393799]]], "type": "MultiLineString"}, "id": "4969", "properties": {}, "type": "Feature"}, {"bbox": [8.494458, 47.393335, 8.499924, 47.393426], "geometry": {"coordinates": [[[8.499924, 47.393426], [8.499266, 47.393398], [8.497175, 47.393353], [8.495504, 47.393335], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "5015", "properties": {}, "type": "Feature"}, {"bbox": [8.481095, 47.396148, 8.482418, 47.396647], "geometry": {"coordinates": [[[8.482418, 47.396148], [8.481976, 47.396312], [8.481535, 47.396479], [8.481096, 47.396647], [8.481095, 47.396647]]], "type": "MultiLineString"}, "id": "5016", "properties": {}, "type": "Feature"}, {"bbox": [8.490168, 47.393799, 8.493157, 47.394171], "geometry": {"coordinates": [[[8.493157, 47.393799], [8.492849, 47.393818], [8.492436, 47.393847], [8.491805, 47.39391], [8.491257, 47.393989], [8.490711, 47.394076], [8.490168, 47.394171]]], "type": "MultiLineString"}, "id": "5177", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_1fccbd102077369d9d710e92d1a81f55_add({"bbox": [8.464875, 47.32782, 8.603041, 47.433118], "features": [{"bbox": [8.480283, 47.396647, 8.481095, 47.397003], "geometry": {"coordinates": [[[8.481095, 47.396647], [8.480283, 47.397003]]], "type": "MultiLineString"}, "id": "69", "properties": {}, "type": "Feature"}, {"bbox": [8.522281, 47.34823, 8.524548, 47.34986], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "85", "properties": {}, "type": "Feature"}, {"bbox": [8.565439, 47.406938, 8.568783, 47.409581], "geometry": {"coordinates": [[[8.568783, 47.409581], [8.568584, 47.40943], [8.568392, 47.409275], [8.568207, 47.409117], [8.56659, 47.407731], [8.566223, 47.407456], [8.565839, 47.407191], [8.565439, 47.406938]]], "type": "MultiLineString"}, "id": "202", "properties": {}, "type": "Feature"}, {"bbox": [8.524084, 47.352796, 8.524746, 47.353593], "geometry": {"coordinates": [[[8.524084, 47.353593], [8.524184, 47.353454], [8.524746, 47.352796]]], "type": "MultiLineString"}, "id": "231", "properties": {}, "type": "Feature"}, {"bbox": [8.48099, 47.397585, 8.481654, 47.397763], "geometry": {"coordinates": [[[8.481654, 47.397585], [8.48099, 47.397763]]], "type": "MultiLineString"}, "id": "344", "properties": {}, "type": "Feature"}, {"bbox": [8.51938, 47.343169, 8.519399, 47.343373], "geometry": {"coordinates": [[[8.519399, 47.343373], [8.51938, 47.343169]]], "type": "MultiLineString"}, "id": "357", "properties": {}, "type": "Feature"}, {"bbox": [8.529733, 47.329927, 8.52988, 47.332387], "geometry": {"coordinates": [[[8.52988, 47.332387], [8.52987, 47.332314], [8.529859, 47.332234], [8.529846, 47.332155], [8.529807, 47.331749], [8.529735, 47.329937], [8.529733, 47.329927]]], "type": "MultiLineString"}, "id": "625", "properties": {}, "type": "Feature"}, {"bbox": [8.482418, 47.394171, 8.490168, 47.396148], "geometry": {"coordinates": [[[8.490168, 47.394171], [8.48959, 47.394288], [8.488673, 47.39449], [8.488298, 47.394572], [8.485099, 47.395396], [8.482418, 47.396148]]], "type": "MultiLineString"}, "id": "828", "properties": {}, "type": "Feature"}, {"bbox": [8.481654, 47.397474, 8.482072, 47.397585], "geometry": {"coordinates": [[[8.482072, 47.397474], [8.481654, 47.397585]]], "type": "MultiLineString"}, "id": "1019", "properties": {}, "type": "Feature"}, {"bbox": [8.489022, 47.426082, 8.491949, 47.426889], "geometry": {"coordinates": [[[8.491949, 47.426889], [8.491333, 47.426631], [8.490908, 47.42648], [8.490463, 47.426358], [8.490003, 47.426265], [8.489022, 47.426082]]], "type": "MultiLineString"}, "id": "1028", "properties": {}, "type": "Feature"}, {"bbox": [8.568783, 47.409581, 8.570557, 47.410693], "geometry": {"coordinates": [[[8.570557, 47.410693], [8.570015, 47.410377], [8.56949, 47.410048], [8.568983, 47.409706], [8.568921, 47.409661], [8.568854, 47.409619], [8.568783, 47.409581]]], "type": "MultiLineString"}, "id": "1095", "properties": {}, "type": "Feature"}, {"bbox": [8.560857, 47.348142, 8.562669, 47.350019], "geometry": {"coordinates": [[[8.560857, 47.350019], [8.561239, 47.349659], [8.561547, 47.349369], [8.562067, 47.348817], [8.562669, 47.348142]]], "type": "MultiLineString"}, "id": "1132", "properties": {}, "type": "Feature"}, {"bbox": [8.482748, 47.39511, 8.484653, 47.39559], "geometry": {"coordinates": [[[8.484653, 47.39511], [8.483797, 47.395321], [8.482748, 47.39559]]], "type": "MultiLineString"}, "id": "1161", "properties": {}, "type": "Feature"}, {"bbox": [8.485481, 47.429203, 8.488026, 47.43069], "geometry": {"coordinates": [[[8.488026, 47.429203], [8.486952, 47.429831], [8.485481, 47.43069]]], "type": "MultiLineString"}, "id": "1166", "properties": {}, "type": "Feature"}, {"bbox": [8.529735, 47.32959, 8.531346, 47.329937], "geometry": {"coordinates": [[[8.529735, 47.329937], [8.530986, 47.329696], [8.531082, 47.329676], [8.531176, 47.329651], [8.531267, 47.329621], [8.531346, 47.32959]]], "type": "MultiLineString"}, "id": "1185", "properties": {}, "type": "Feature"}, {"bbox": [8.574158, 47.377449, 8.574712, 47.377605], "geometry": {"coordinates": [[[8.574158, 47.377605], [8.574254, 47.377592], [8.574616, 47.377488], [8.574664, 47.377471], [8.574709, 47.377451], [8.574712, 47.377449]]], "type": "MultiLineString"}, "id": "1276", "properties": {}, "type": "Feature"}, {"bbox": [8.588393, 47.383721, 8.589513, 47.383759], "geometry": {"coordinates": [[[8.588393, 47.383728], [8.588638, 47.383751], [8.58893, 47.383759], [8.589223, 47.383749], [8.589513, 47.383721]]], "type": "MultiLineString"}, "id": "1395", "properties": {}, "type": "Feature"}, {"bbox": [8.522162, 47.353593, 8.524084, 47.356703], "geometry": {"coordinates": [[[8.522162, 47.356703], [8.522163, 47.356701], [8.522644, 47.355935], [8.523984, 47.353732], [8.524084, 47.353593]]], "type": "MultiLineString"}, "id": "1431", "properties": {}, "type": "Feature"}, {"bbox": [8.480728, 47.39559, 8.482748, 47.396109], "geometry": {"coordinates": [[[8.482748, 47.39559], [8.481444, 47.395925], [8.480728, 47.396109]]], "type": "MultiLineString"}, "id": "1492", "properties": {}, "type": "Feature"}, {"bbox": [8.497402, 47.393768, 8.498911, 47.393828], "geometry": {"coordinates": [[[8.498911, 47.393768], [8.498409, 47.393801], [8.497906, 47.393821], [8.497402, 47.393828]]], "type": "MultiLineString"}, "id": "1496", "properties": {}, "type": "Feature"}, {"bbox": [8.464875, 47.369037, 8.465931, 47.369301], "geometry": {"coordinates": [[[8.465931, 47.369301], [8.464875, 47.369037]]], "type": "MultiLineString"}, "id": "1639", "properties": {}, "type": "Feature"}, {"bbox": [8.505903, 47.428161, 8.516452, 47.43154], "geometry": {"coordinates": [[[8.505903, 47.428161], [8.506343, 47.428235], [8.506775, 47.428329], [8.507196, 47.428444], [8.50746, 47.428521], [8.507724, 47.428599], [8.507986, 47.428679], [8.508679, 47.428892], [8.509052, 47.428991], [8.509437, 47.429067], [8.509829, 47.42912], [8.510066, 47.429244], [8.511313, 47.429662], [8.511401, 47.429693], [8.511484, 47.429729], [8.511563, 47.429769], [8.511818, 47.429905], [8.512065, 47.430019], [8.512322, 47.430122], [8.512588, 47.430215], [8.515349, 47.431126], [8.515725, 47.431253], [8.516093, 47.431391], [8.516452, 47.43154]]], "type": "MultiLineString"}, "id": "1750", "properties": {}, "type": "Feature"}, {"bbox": [8.593184, 47.365251, 8.603041, 47.373747], "geometry": {"coordinates": [[[8.598748, 47.365251], [8.598776, 47.365494], [8.598782, 47.365515], [8.598791, 47.365535], [8.598803, 47.365555], [8.598816, 47.365574], [8.598832, 47.365592], [8.59885, 47.36561], [8.59887, 47.365626], [8.598892, 47.365641], [8.599247, 47.365814], [8.599832, 47.366218], [8.599914, 47.366264], [8.599996, 47.366311], [8.600077, 47.366357], [8.600142, 47.366391], [8.600202, 47.366428], [8.600257, 47.36647], [8.600306, 47.366514], [8.600348, 47.366561], [8.600384, 47.366611], [8.600495, 47.366817], [8.600515, 47.36686], [8.600542, 47.366901], [8.600574, 47.366941], [8.600612, 47.366978], [8.601023, 47.367407], [8.601375, 47.367702], [8.601769, 47.367971], [8.602201, 47.368212], [8.602317, 47.368272], [8.602424, 47.368339], [8.602524, 47.368411], [8.602614, 47.368489], [8.602694, 47.368571], [8.602763, 47.368658], [8.602821, 47.368749], [8.602868, 47.368843], [8.603015, 47.36928], [8.603034, 47.369336], [8.603041, 47.369412], [8.603039, 47.369488], [8.603027, 47.369564], [8.603006, 47.369639], [8.602975, 47.369712], [8.602936, 47.369783], [8.602887, 47.369852], [8.60283, 47.369917], [8.602765, 47.369979], [8.602692, 47.370038], [8.602355, 47.37026], [8.602296, 47.370305], [8.602243, 47.370353], [8.602195, 47.370404], [8.602154, 47.370458], [8.601805, 47.37115], [8.601685, 47.371491], [8.601577, 47.371813], [8.601233, 47.372204], [8.601148, 47.372326], [8.601079, 47.372452], [8.601028, 47.372583], [8.601015, 47.372626], [8.600996, 47.372668], [8.600971, 47.372709], [8.600941, 47.372748], [8.600907, 47.372785], [8.600867, 47.37282], [8.600823, 47.372853], [8.600775, 47.372883], [8.600724, 47.372909], [8.600669, 47.372933], [8.599586, 47.373295], [8.599441, 47.373338], [8.599291, 47.373372], [8.599137, 47.373395], [8.598431, 47.373494], [8.598066, 47.373592], [8.597849, 47.373642], [8.597714, 47.373666], [8.597375, 47.373726], [8.597264, 47.37374], [8.597151, 47.373747], [8.597039, 47.373747], [8.596926, 47.373741], [8.596571, 47.373709], [8.595254, 47.37362], [8.594588, 47.373575], [8.594253, 47.373566], [8.594138, 47.373563], [8.593688, 47.373585], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "1926", "properties": {}, "type": "Feature"}, {"bbox": [8.531346, 47.329587, 8.532697, 47.329829], "geometry": {"coordinates": [[[8.531346, 47.32959], [8.531354, 47.329587], [8.531362, 47.329599], [8.531372, 47.32961], [8.531383, 47.329621], [8.531396, 47.329631], [8.53141, 47.32964], [8.531425, 47.329649], [8.531442, 47.329656], [8.531459, 47.329663], [8.531477, 47.329668], [8.531495, 47.329672], [8.531514, 47.329675], [8.531534, 47.329677], [8.531553, 47.329678], [8.531573, 47.329677], [8.531844, 47.329681], [8.532036, 47.3297], [8.532225, 47.32973], [8.53241, 47.32977], [8.532697, 47.329829]]], "type": "MultiLineString"}, "id": "1946", "properties": {}, "type": "Feature"}, {"bbox": [8.562669, 47.346239, 8.564685, 47.348142], "geometry": {"coordinates": [[[8.562669, 47.348142], [8.562913, 47.347905], [8.564685, 47.346239]]], "type": "MultiLineString"}, "id": "2098", "properties": {}, "type": "Feature"}, {"bbox": [8.4662, 47.397932, 8.474563, 47.400131], "geometry": {"coordinates": [[[8.474563, 47.397932], [8.473422, 47.398261], [8.469535, 47.399275], [8.4662, 47.400131]]], "type": "MultiLineString"}, "id": "2108", "properties": {}, "type": "Feature"}, {"bbox": [8.505808, 47.428327, 8.516351, 47.431668], "geometry": {"coordinates": [[[8.516351, 47.431668], [8.515955, 47.431577], [8.515564, 47.431476], [8.51518, 47.431365], [8.513437, 47.430796], [8.513282, 47.430753], [8.513123, 47.430717], [8.512961, 47.430688], [8.512521, 47.430628], [8.512461, 47.430619], [8.512401, 47.430608], [8.512344, 47.430593], [8.512288, 47.430575], [8.512235, 47.430554], [8.512185, 47.43053], [8.512119, 47.430496], [8.512049, 47.430464], [8.511975, 47.430437], [8.511331, 47.430221], [8.51125, 47.430195], [8.511167, 47.430173], [8.511081, 47.430154], [8.511007, 47.430136], [8.510935, 47.430114], [8.510867, 47.430087], [8.510802, 47.430057], [8.510405, 47.42985], [8.509986, 47.429665], [8.509547, 47.429502], [8.508914, 47.429298], [8.507815, 47.428955], [8.506968, 47.428704], [8.506774, 47.42865], [8.50658, 47.428594], [8.506387, 47.428537], [8.506188, 47.428475], [8.505995, 47.428405], [8.505808, 47.428327]]], "type": "MultiLineString"}, "id": "2131", "properties": {}, "type": "Feature"}, {"bbox": [8.542958, 47.428918, 8.553396, 47.4327], "geometry": {"coordinates": [[[8.553396, 47.428918], [8.553334, 47.428991], [8.552919, 47.429221], [8.552514, 47.429458], [8.552119, 47.429702], [8.55164, 47.430001], [8.551158, 47.430297], [8.550674, 47.430592], [8.550545, 47.430685], [8.55026, 47.430922], [8.549537, 47.43108], [8.549136, 47.431172], [8.548736, 47.431268], [8.548339, 47.431367], [8.546905, 47.431727], [8.546147, 47.431911], [8.544254, 47.432407], [8.543829, 47.432519], [8.543397, 47.432617], [8.542958, 47.4327]]], "type": "MultiLineString"}, "id": "2134", "properties": {}, "type": "Feature"}, {"bbox": [8.57521, 47.373974, 8.591209, 47.378557], "geometry": {"coordinates": [[[8.57521, 47.378534], [8.575233, 47.378526], [8.575257, 47.378519], [8.575282, 47.378514], [8.575307, 47.37851], [8.575333, 47.378507], [8.575359, 47.378506], [8.575385, 47.378507], [8.575411, 47.378509], [8.575967, 47.378553], [8.5761, 47.378557], [8.576233, 47.378552], [8.576365, 47.378538], [8.576605, 47.378496], [8.577426, 47.378353], [8.577593, 47.378324], [8.577764, 47.378305], [8.577936, 47.378297], [8.578108, 47.3783], [8.579062, 47.378386], [8.579539, 47.378395], [8.580015, 47.378373], [8.580486, 47.378321], [8.581995, 47.377978], [8.582102, 47.377952], [8.5828, 47.37771], [8.583035, 47.377624], [8.583236, 47.377538], [8.583425, 47.37744], [8.5836, 47.37733], [8.58376, 47.377211], [8.583904, 47.377081], [8.583912, 47.377065], [8.583919, 47.377049], [8.583924, 47.377032], [8.583927, 47.377014], [8.583927, 47.376997], [8.583924, 47.376494], [8.583924, 47.376429], [8.583932, 47.376308], [8.583935, 47.376269], [8.583943, 47.376231], [8.583956, 47.376192], [8.583974, 47.376155], [8.583997, 47.376119], [8.584024, 47.376085], [8.584056, 47.376052], [8.584093, 47.376022], [8.584133, 47.375994], [8.584177, 47.375968], [8.584223, 47.375946], [8.584273, 47.375926], [8.584325, 47.375909], [8.584709, 47.375789], [8.585089, 47.375683], [8.585441, 47.375585], [8.586659, 47.375253], [8.588529, 47.374733], [8.589127, 47.374566], [8.590436, 47.374185], [8.590605, 47.374137], [8.590965, 47.374033], [8.591005, 47.374021], [8.591045, 47.37401], [8.591086, 47.374], [8.591127, 47.373991], [8.591168, 47.373982], [8.591209, 47.373974]]], "type": "MultiLineString"}, "id": "2193", "properties": {}, "type": "Feature"}, {"bbox": [8.591209, 47.373646, 8.593184, 47.373974], "geometry": {"coordinates": [[[8.591209, 47.373974], [8.591287, 47.373957], [8.591364, 47.373941], [8.591442, 47.373925], [8.593184, 47.373646]]], "type": "MultiLineString"}, "id": "2230", "properties": {}, "type": "Feature"}, {"bbox": [8.530877, 47.327872, 8.531498, 47.329587], "geometry": {"coordinates": [[[8.531354, 47.329587], [8.531365, 47.329583], [8.531375, 47.329579], [8.531386, 47.329574], [8.531395, 47.329569], [8.531404, 47.329563], [8.531412, 47.329557], [8.531419, 47.32955], [8.531425, 47.329543], [8.531431, 47.329535], [8.531452, 47.329505], [8.531469, 47.329473], [8.531482, 47.329441], [8.531491, 47.329409], [8.531497, 47.329375], [8.531498, 47.329342], [8.531475, 47.328879], [8.531463, 47.328775], [8.531438, 47.328672], [8.5314, 47.328571], [8.53135, 47.328472], [8.531287, 47.328377], [8.531213, 47.328286], [8.53111, 47.32819], [8.53102, 47.328088], [8.530942, 47.327982], [8.530877, 47.327872]]], "type": "MultiLineString"}, "id": "2336", "properties": {}, "type": "Feature"}, {"bbox": [8.488026, 47.427939, 8.490192, 47.429203], "geometry": {"coordinates": [[[8.490192, 47.427939], [8.488244, 47.429075], [8.488026, 47.429203]]], "type": "MultiLineString"}, "id": "2352", "properties": {}, "type": "Feature"}, {"bbox": [8.472611, 47.401934, 8.474711, 47.401978], "geometry": {"coordinates": [[[8.474711, 47.401934], [8.472611, 47.401978]]], "type": "MultiLineString"}, "id": "2393", "properties": {}, "type": "Feature"}, {"bbox": [8.555739, 47.419583, 8.556147, 47.42003], "geometry": {"coordinates": [[[8.555739, 47.419583], [8.556147, 47.42003]]], "type": "MultiLineString"}, "id": "2400", "properties": {}, "type": "Feature"}, {"bbox": [8.479723, 47.397763, 8.48099, 47.398116], "geometry": {"coordinates": [[[8.48099, 47.397763], [8.480041, 47.39801], [8.479933, 47.398042], [8.479827, 47.398078], [8.479723, 47.398116]]], "type": "MultiLineString"}, "id": "2403", "properties": {}, "type": "Feature"}, {"bbox": [8.589513, 47.383447, 8.590977, 47.383721], "geometry": {"coordinates": [[[8.589513, 47.383721], [8.590977, 47.383447]]], "type": "MultiLineString"}, "id": "2438", "properties": {}, "type": "Feature"}, {"bbox": [8.476448, 47.397003, 8.480283, 47.397926], "geometry": {"coordinates": [[[8.480283, 47.397003], [8.480202, 47.397041], [8.47873, 47.397677], [8.478581, 47.397743], [8.478422, 47.397799], [8.478257, 47.397846], [8.478087, 47.397882], [8.477912, 47.397908], [8.477734, 47.397922], [8.477556, 47.397926], [8.477377, 47.397918], [8.476448, 47.397837]]], "type": "MultiLineString"}, "id": "2439", "properties": {}, "type": "Feature"}, {"bbox": [8.470019, 47.37062, 8.48059, 47.374155], "geometry": {"coordinates": [[[8.48059, 47.373278], [8.478678, 47.372591], [8.478645, 47.372577], [8.47861, 47.372565], [8.478574, 47.372556], [8.478537, 47.372548], [8.478499, 47.372542], [8.478461, 47.372539], [8.478422, 47.372537], [8.478383, 47.372538], [8.478345, 47.372541], [8.478307, 47.372547], [8.478236, 47.372563], [8.47799, 47.372643], [8.477863, 47.372683], [8.477731, 47.372713], [8.477594, 47.372734], [8.476127, 47.372857], [8.476021, 47.372875], [8.475997, 47.37288], [8.475973, 47.372887], [8.47595, 47.372895], [8.475928, 47.372904], [8.475908, 47.372915], [8.475889, 47.372927], [8.475871, 47.37294], [8.475856, 47.372953], [8.475842, 47.372968], [8.47583, 47.372984], [8.47582, 47.373], [8.475812, 47.373017], [8.475807, 47.373034], [8.475803, 47.373051], [8.475802, 47.373069], [8.475803, 47.373086], [8.475807, 47.373103], [8.475813, 47.373121], [8.47582, 47.373137], [8.475868, 47.373242], [8.475929, 47.373343], [8.476003, 47.37344], [8.476269, 47.37375], [8.476281, 47.373763], [8.476291, 47.373776], [8.476299, 47.37379], [8.476306, 47.373804], [8.47631, 47.373819], [8.476313, 47.373833], [8.476314, 47.373848], [8.476313, 47.373863], [8.47631, 47.373878], [8.476305, 47.373893], [8.476299, 47.373907], [8.476291, 47.373921], [8.476281, 47.373934], [8.476269, 47.373946], [8.476256, 47.373958], [8.476241, 47.373969], [8.4761, 47.374025], [8.475951, 47.374072], [8.475797, 47.37411], [8.475638, 47.374137], [8.475476, 47.374155], [8.475435, 47.374155], [8.475395, 47.374152], [8.475354, 47.374147], [8.475315, 47.37414], [8.475277, 47.37413], [8.47524, 47.374117], [8.475181, 47.374089], [8.475126, 47.374057], [8.475074, 47.374022], [8.475027, 47.373985], [8.474984, 47.373945], [8.474947, 47.373902], [8.474835, 47.373775], [8.474181, 47.372986], [8.473577, 47.372249], [8.47329, 47.371887], [8.473262, 47.371854], [8.47323, 47.371823], [8.473195, 47.371794], [8.473156, 47.371768], [8.473114, 47.371743], [8.473069, 47.371721], [8.473022, 47.371702], [8.472961, 47.371683], [8.472898, 47.371668], [8.472833, 47.371657], [8.472767, 47.371649], [8.472701, 47.371645], [8.472634, 47.371644], [8.472513, 47.371642], [8.472392, 47.371633], [8.472274, 47.371617], [8.472157, 47.371595], [8.471664, 47.371479], [8.47153, 47.371444], [8.4714, 47.371401], [8.471276, 47.371351], [8.471158, 47.371295], [8.471048, 47.371232], [8.470693, 47.371013], [8.470607, 47.370968], [8.470516, 47.370926], [8.47042, 47.37089], [8.470362, 47.370872], [8.470306, 47.37085], [8.470253, 47.370825], [8.470204, 47.370797], [8.470158, 47.370766], [8.470116, 47.370733], [8.470079, 47.370697], [8.470046, 47.370659], [8.470019, 47.37062]]], "type": "MultiLineString"}, "id": "2467", "properties": {}, "type": "Feature"}, {"bbox": [8.529592, 47.3281, 8.529733, 47.329927], "geometry": {"coordinates": [[[8.529733, 47.329927], [8.529691, 47.32952], [8.529654, 47.329103], [8.529624, 47.328685], [8.529612, 47.32849], [8.529601, 47.328295], [8.529592, 47.3281]]], "type": "MultiLineString"}, "id": "2469", "properties": {}, "type": "Feature"}, {"bbox": [8.491949, 47.426683, 8.49836, 47.42705], "geometry": {"coordinates": [[[8.49836, 47.426925], [8.498075, 47.426919], [8.49779, 47.426905], [8.497507, 47.426884], [8.495984, 47.42674], [8.495505, 47.426702], [8.495025, 47.426683], [8.494543, 47.426683], [8.494244, 47.426701], [8.493948, 47.426738], [8.493659, 47.426793], [8.493378, 47.426866], [8.492876, 47.427009], [8.492805, 47.427026], [8.492732, 47.427038], [8.492657, 47.427046], [8.492582, 47.42705], [8.492507, 47.427049], [8.492432, 47.427043], [8.492358, 47.427033], [8.492286, 47.427019], [8.492216, 47.427], [8.491949, 47.426889]]], "type": "MultiLineString"}, "id": "2471", "properties": {}, "type": "Feature"}, {"bbox": [8.465931, 47.369129, 8.481779, 47.370988], "geometry": {"coordinates": [[[8.481779, 47.369129], [8.48173, 47.369148], [8.48155, 47.369227], [8.481377, 47.369313], [8.481173, 47.369423], [8.481106, 47.369462], [8.481042, 47.369504], [8.480982, 47.369548], [8.480844, 47.369655], [8.480624, 47.369803], [8.480383, 47.369934], [8.480124, 47.370049], [8.47997, 47.370103], [8.479811, 47.37015], [8.479649, 47.37019], [8.479416, 47.370233], [8.479179, 47.370262], [8.478939, 47.370277], [8.477841, 47.370286], [8.477404, 47.370294], [8.476969, 47.370326], [8.47654, 47.370383], [8.476118, 47.370463], [8.475708, 47.370567], [8.474822, 47.370812], [8.474484, 47.370887], [8.474138, 47.370942], [8.473787, 47.370976], [8.473432, 47.370988], [8.473077, 47.37098], [8.472724, 47.370949], [8.471064, 47.37075], [8.470714, 47.370713], [8.470365, 47.370669], [8.470019, 47.37062], [8.469785, 47.37058], [8.469557, 47.370526], [8.469337, 47.370459], [8.469127, 47.370378], [8.46825, 47.370036], [8.468243, 47.370033], [8.467682, 47.369814], [8.467256, 47.36966], [8.466817, 47.369525], [8.466365, 47.369409], [8.465931, 47.369301]]], "type": "MultiLineString"}, "id": "2694", "properties": {}, "type": "Feature"}, {"bbox": [8.55299, 47.402402, 8.560667, 47.404882], "geometry": {"coordinates": [[[8.560667, 47.404882], [8.560617, 47.404863], [8.560006, 47.404611], [8.559365, 47.404397], [8.5587, 47.40422], [8.557859, 47.403999], [8.557019, 47.403778], [8.556179, 47.403558], [8.555574, 47.403375], [8.554975, 47.403183], [8.554384, 47.40298], [8.553876, 47.402776], [8.553373, 47.402566], [8.55299, 47.402402]]], "type": "MultiLineString"}, "id": "2795", "properties": {}, "type": "Feature"}, {"bbox": [8.547832, 47.399648, 8.548757, 47.400223], "geometry": {"coordinates": [[[8.548757, 47.400223], [8.548543, 47.400131], [8.548342, 47.400027], [8.548156, 47.399911], [8.547985, 47.399784], [8.547832, 47.399648]]], "type": "MultiLineString"}, "id": "2797", "properties": {}, "type": "Feature"}, {"bbox": [8.560667, 47.404882, 8.565439, 47.406938], "geometry": {"coordinates": [[[8.565439, 47.406938], [8.565219, 47.406793], [8.564996, 47.40665], [8.56477, 47.406509], [8.564404, 47.406287], [8.564034, 47.40607], [8.563658, 47.405856], [8.563333, 47.405686], [8.562987, 47.405538], [8.562622, 47.405411], [8.562242, 47.405307], [8.561849, 47.405227], [8.561443, 47.405131], [8.561048, 47.405016], [8.560667, 47.404882]]], "type": "MultiLineString"}, "id": "2802", "properties": {}, "type": "Feature"}, {"bbox": [8.527955, 47.3281, 8.529592, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528288, 47.330512], [8.528341, 47.330315], [8.528349, 47.330221], [8.528344, 47.330127], [8.528326, 47.330034], [8.528295, 47.329943], [8.528252, 47.329853], [8.528197, 47.329767], [8.528106, 47.32964], [8.528059, 47.329572], [8.52802, 47.329503], [8.52799, 47.329431], [8.527969, 47.329358], [8.527958, 47.329284], [8.527955, 47.329209], [8.527962, 47.329135], [8.527978, 47.329061], [8.52801, 47.328965], [8.528053, 47.328871], [8.528107, 47.328779], [8.528171, 47.32869], [8.528438, 47.328402], [8.528478, 47.328361], [8.528522, 47.328321], [8.528571, 47.328285], [8.528626, 47.328252], [8.528684, 47.328223], [8.528746, 47.328197], [8.528811, 47.328175], [8.528879, 47.328158], [8.528949, 47.328144], [8.52902, 47.328135], [8.529592, 47.3281]]], "type": "MultiLineString"}, "id": "2836", "properties": {}, "type": "Feature"}, {"bbox": [8.528095, 47.32782, 8.530333, 47.329508], "geometry": {"coordinates": [[[8.529624, 47.328685], [8.529601, 47.328616], [8.529572, 47.328548], [8.529537, 47.328481], [8.529516, 47.32844], [8.52949, 47.328401], [8.529459, 47.328363], [8.529423, 47.328328], [8.529383, 47.328295], [8.529343, 47.328274], [8.529302, 47.328256], [8.529258, 47.32824], [8.529212, 47.328226], [8.529165, 47.328215], [8.529116, 47.328207], [8.529067, 47.328202], [8.529017, 47.328199], [8.528972, 47.328202], [8.528928, 47.328208], [8.528884, 47.328217], [8.528842, 47.328228], [8.528801, 47.328242], [8.528762, 47.328257], [8.528725, 47.328275], [8.528691, 47.328295], [8.528659, 47.328317], [8.528615, 47.328349], [8.528574, 47.328383], [8.528538, 47.328419], [8.52826, 47.32872], [8.528167, 47.328851], [8.528143, 47.328886], [8.528124, 47.328923], [8.52811, 47.328961], [8.5281, 47.328999], [8.528095, 47.329038], [8.528095, 47.329077], [8.5281, 47.329116], [8.528111, 47.329155], [8.528125, 47.329193], [8.528145, 47.329229], [8.52817, 47.329265], [8.528198, 47.329299], [8.528231, 47.329331], [8.528268, 47.329361], [8.528309, 47.329388], [8.528353, 47.329414], [8.5284, 47.329436], [8.528449, 47.329456], [8.528501, 47.329473], [8.528555, 47.329486], [8.528611, 47.329497], [8.528667, 47.329504], [8.528724, 47.329507], [8.528782, 47.329508], [8.528839, 47.329505], [8.528896, 47.329498], [8.528952, 47.329488], [8.529006, 47.329475], [8.529058, 47.329459], [8.529109, 47.32944], [8.529156, 47.329418], [8.529201, 47.329393], [8.529242, 47.329366], [8.529295, 47.329331], [8.529343, 47.329293], [8.529386, 47.329253], [8.529424, 47.32921], [8.529457, 47.329164], [8.529732, 47.32876], [8.529859, 47.328565], [8.529981, 47.328368], [8.5301, 47.32817], [8.530254, 47.327893], [8.530263, 47.327879], [8.530274, 47.327865], [8.530286, 47.327853], [8.530301, 47.327841], [8.530316, 47.32783], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2838", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.328463, 8.53141, 47.329587], "geometry": {"coordinates": [[[8.531354, 47.329587], [8.531383, 47.329508], [8.531402, 47.329428], [8.53141, 47.329347], [8.531407, 47.329265], [8.531386, 47.328892], [8.531379, 47.328851], [8.531367, 47.328811], [8.53135, 47.328772], [8.531327, 47.328734], [8.5313, 47.328698], [8.531269, 47.328663], [8.531233, 47.328631], [8.531192, 47.328601], [8.531149, 47.328573], [8.531101, 47.328548], [8.531051, 47.328526], [8.530998, 47.328507], [8.530942, 47.328491], [8.530885, 47.328479], [8.530827, 47.32847], [8.530767, 47.328464], [8.530707, 47.328463], [8.530647, 47.328464], [8.530588, 47.32847], [8.530529, 47.328479], [8.530472, 47.328491], [8.530417, 47.328507], [8.530364, 47.328526], [8.530314, 47.328548], [8.530266, 47.328574], [8.530223, 47.328601], [8.530183, 47.328632], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2978", "properties": {}, "type": "Feature"}, {"bbox": [8.525491, 47.430625, 8.535187, 47.433118], "geometry": {"coordinates": [[[8.535187, 47.430625], [8.531677, 47.431685], [8.531323, 47.431792], [8.53115, 47.431842], [8.530975, 47.431889], [8.530798, 47.431932], [8.530597, 47.431976], [8.530233, 47.432052], [8.52864, 47.4324], [8.525907, 47.433041], [8.52577, 47.43307], [8.525631, 47.433096], [8.525491, 47.433118]]], "type": "MultiLineString"}, "id": "2985", "properties": {}, "type": "Feature"}, {"bbox": [8.490752, 47.393633, 8.498911, 47.393959], "geometry": {"coordinates": [[[8.498911, 47.393768], [8.496726, 47.393665], [8.496418, 47.393655], [8.49593, 47.39364], [8.495442, 47.393633], [8.494954, 47.393634], [8.49434, 47.393642], [8.49371, 47.393661], [8.493082, 47.393695], [8.492456, 47.393743], [8.492023, 47.393786], [8.491591, 47.393837], [8.491162, 47.393896], [8.490812, 47.393949], [8.490752, 47.393959]]], "type": "MultiLineString"}, "id": "3027", "properties": {}, "type": "Feature"}, {"bbox": [8.490697, 47.393357, 8.494458, 47.393852], "geometry": {"coordinates": [[[8.490697, 47.393852], [8.491131, 47.393766], [8.492084, 47.393601], [8.492663, 47.393519], [8.493248, 47.393456], [8.493836, 47.393412], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "3028", "properties": {}, "type": "Feature"}, {"bbox": [8.493295, 47.393769, 8.494939, 47.394594], "geometry": {"coordinates": [[[8.493676, 47.393769], [8.493642, 47.393959], [8.493636, 47.394116], [8.493656, 47.394223], [8.493663, 47.394256], [8.493675, 47.394289], [8.493691, 47.394321], [8.49371, 47.394352], [8.493734, 47.394382], [8.493762, 47.39441], [8.493793, 47.394436], [8.493827, 47.394461], [8.493865, 47.394483], [8.493905, 47.394503], [8.493947, 47.39452], [8.494001, 47.394541], [8.494057, 47.394559], [8.494116, 47.394573], [8.494175, 47.394584], [8.494236, 47.394591], [8.494298, 47.394594], [8.49436, 47.394594], [8.494422, 47.39459], [8.494482, 47.394583], [8.494542, 47.394572], [8.4946, 47.394557], [8.494641, 47.394546], [8.49468, 47.394533], [8.494717, 47.394517], [8.494752, 47.394499], [8.494784, 47.39448], [8.494814, 47.394458], [8.494841, 47.394435], [8.494866, 47.39441], [8.494887, 47.394384], [8.494904, 47.394357], [8.494918, 47.394329], [8.494929, 47.3943], [8.494936, 47.394271], [8.494939, 47.394242], [8.494938, 47.394212], [8.494934, 47.394182], [8.494926, 47.394153], [8.494915, 47.394125], [8.494899, 47.394097], [8.494881, 47.39407], [8.494859, 47.394044], [8.494834, 47.39402], [8.494805, 47.394], [8.494774, 47.393981], [8.49474, 47.393964], [8.494704, 47.393949], [8.494667, 47.393937], [8.494628, 47.393926], [8.494589, 47.393918], [8.494548, 47.393912], [8.494506, 47.393908], [8.494465, 47.393907], [8.494423, 47.393908], [8.494382, 47.393911], [8.494341, 47.393917], [8.493827, 47.394047], [8.493711, 47.394076], [8.493594, 47.394107], [8.493295, 47.394183]]], "type": "MultiLineString"}, "id": "3034", "properties": {}, "type": "Feature"}, {"bbox": [8.490223, 47.425612, 8.493733, 47.425845], "geometry": {"coordinates": [[[8.490223, 47.425612], [8.49143, 47.425684], [8.491931, 47.425698], [8.492225, 47.425708], [8.492519, 47.425707], [8.492813, 47.425693], [8.49295, 47.425689], [8.493088, 47.425694], [8.493224, 47.425708], [8.493358, 47.42573], [8.493488, 47.425761], [8.493614, 47.425799], [8.493733, 47.425845]]], "type": "MultiLineString"}, "id": "3068", "properties": {}, "type": "Feature"}, {"bbox": [8.47643, 47.396109, 8.480728, 47.397322], "geometry": {"coordinates": [[[8.480728, 47.396109], [8.48017, 47.396252], [8.479494, 47.396428], [8.479014, 47.396554], [8.478539, 47.396687], [8.478069, 47.396829], [8.47643, 47.397322]]], "type": "MultiLineString"}, "id": "3219", "properties": {}, "type": "Feature"}, {"bbox": [8.543053, 47.428808, 8.553246, 47.432524], "geometry": {"coordinates": [[[8.543053, 47.432524], [8.543218, 47.432479], [8.543381, 47.43243], [8.543542, 47.432379], [8.543704, 47.43233], [8.543867, 47.432283], [8.544032, 47.43224], [8.544964, 47.43199], [8.544967, 47.43199], [8.545275, 47.431904], [8.545576, 47.431807], [8.545871, 47.431701], [8.546214, 47.431576], [8.546555, 47.431448], [8.546894, 47.431317], [8.547628, 47.431057], [8.547921, 47.430948], [8.5482, 47.430823], [8.548464, 47.430684], [8.54871, 47.43053], [8.549247, 47.430152], [8.549468, 47.430003], [8.549892, 47.429897], [8.551062, 47.429649], [8.551381, 47.42958], [8.551689, 47.42949], [8.551983, 47.429381], [8.553112, 47.428831], [8.553246, 47.428808]]], "type": "MultiLineString"}, "id": "3363", "properties": {}, "type": "Feature"}, {"bbox": [8.518874, 47.343373, 8.522837, 47.349321], "geometry": {"coordinates": [[[8.522837, 47.349321], [8.522678, 47.349185], [8.522512, 47.349052], [8.522339, 47.348923], [8.522241, 47.348852], [8.522144, 47.348782], [8.522046, 47.348712], [8.521925, 47.348625], [8.521475, 47.348303], [8.521178, 47.34809], [8.521063, 47.348007], [8.520947, 47.347924], [8.520831, 47.347841], [8.520678, 47.347734], [8.520526, 47.347626], [8.520372, 47.347519], [8.519849, 47.347142], [8.519638, 47.346991], [8.51945, 47.346827], [8.519286, 47.346651], [8.519187, 47.346523], [8.5191, 47.346391], [8.519028, 47.346255], [8.518974, 47.346131], [8.518932, 47.346004], [8.518901, 47.345876], [8.518888, 47.345791], [8.518879, 47.345707], [8.518874, 47.345622], [8.518879, 47.345501], [8.518892, 47.345381], [8.518911, 47.345261], [8.518941, 47.345127], [8.518979, 47.344994], [8.519026, 47.344863], [8.519176, 47.344444], [8.519277, 47.34409], [8.519352, 47.343732], [8.519399, 47.343373]]], "type": "MultiLineString"}, "id": "3381", "properties": {}, "type": "Feature"}, {"bbox": [8.498911, 47.392531, 8.502802, 47.393825], "geometry": {"coordinates": [[[8.502802, 47.392531], [8.502722, 47.392632], [8.501811, 47.393296], [8.501627, 47.393415], [8.501432, 47.393525], [8.501226, 47.393626], [8.501085, 47.39368], [8.500937, 47.393726], [8.500785, 47.393764], [8.500628, 47.393793], [8.500468, 47.393813], [8.500307, 47.393821], [8.500145, 47.393825], [8.499983, 47.393824], [8.498911, 47.393768]]], "type": "MultiLineString"}, "id": "3446", "properties": {}, "type": "Feature"}, {"bbox": [8.484653, 47.393948, 8.489752, 47.39511], "geometry": {"coordinates": [[[8.489752, 47.393948], [8.489516, 47.393995], [8.488195, 47.394295], [8.487295, 47.394488], [8.48715, 47.394522], [8.486118, 47.39476], [8.4856, 47.394894], [8.48516, 47.394997], [8.484807, 47.395082], [8.484653, 47.39511]]], "type": "MultiLineString"}, "id": "3532", "properties": {}, "type": "Feature"}, {"bbox": [8.573522, 47.377393, 8.58422, 47.381907], "geometry": {"coordinates": [[[8.573522, 47.377393], [8.573621, 47.377415], [8.573871, 47.377471], [8.573934, 47.377491], [8.573995, 47.377515], [8.574053, 47.377542], [8.574107, 47.377572], [8.574158, 47.377605], [8.574206, 47.37764], [8.574251, 47.377679], [8.57429, 47.37772], [8.574323, 47.377763], [8.574351, 47.377808], [8.57443, 47.377939], [8.574511, 47.378093], [8.57454, 47.378133], [8.574574, 47.378171], [8.574614, 47.378208], [8.574659, 47.378241], [8.574707, 47.378272], [8.57476, 47.378299], [8.575017, 47.378429], [8.57521, 47.378534], [8.57634, 47.37926], [8.576938, 47.379736], [8.577565, 47.380068], [8.577799, 47.380208], [8.577913, 47.380296], [8.578015, 47.38039], [8.578104, 47.380491], [8.578176, 47.380559], [8.578255, 47.380624], [8.578342, 47.380685], [8.578435, 47.380741], [8.578491, 47.380771], [8.57855, 47.380799], [8.57861, 47.380826], [8.578873, 47.380927], [8.579147, 47.381012], [8.579432, 47.381081], [8.579725, 47.381133], [8.580759, 47.381123], [8.580789, 47.381122], [8.58082, 47.381121], [8.58085, 47.381118], [8.580955, 47.381107], [8.581058, 47.38109], [8.581159, 47.381067], [8.581256, 47.381038], [8.58135, 47.381004], [8.581913, 47.380771], [8.58199, 47.380742], [8.582071, 47.380716], [8.582154, 47.380696], [8.58224, 47.38068], [8.58243, 47.380686], [8.582598, 47.380747], [8.582711, 47.380851], [8.582725, 47.380876], [8.582735, 47.380902], [8.582742, 47.380928], [8.582746, 47.380954], [8.582746, 47.38098], [8.582742, 47.381007], [8.58272, 47.381123], [8.58262, 47.381395], [8.582611, 47.381446], [8.58261, 47.381481], [8.582614, 47.381516], [8.582622, 47.381551], [8.582635, 47.381585], [8.582652, 47.381618], [8.582673, 47.38165], [8.582698, 47.38168], [8.582727, 47.381709], [8.58276, 47.381736], [8.582797, 47.381761], [8.582836, 47.381784], [8.582878, 47.381804], [8.582923, 47.381822], [8.58297, 47.381836], [8.583018, 47.381848], [8.583068, 47.381857], [8.583119, 47.381863], [8.58317, 47.381866], [8.583222, 47.381866], [8.583807, 47.381841], [8.5839, 47.381846], [8.583992, 47.381856], [8.584082, 47.381871], [8.58417, 47.381892], [8.58422, 47.381907]]], "type": "MultiLineString"}, "id": "3620", "properties": {}, "type": "Feature"}, {"bbox": [8.568783, 47.409581, 8.569594, 47.410397], "geometry": {"coordinates": [[[8.569594, 47.410397], [8.569345, 47.410075], [8.569295, 47.410015], [8.569238, 47.409958], [8.569174, 47.409905], [8.569103, 47.409857], [8.568934, 47.409738], [8.568879, 47.409688], [8.568828, 47.409636], [8.568783, 47.409581]]], "type": "MultiLineString"}, "id": "3747", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.524857, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524777, 47.35193], [8.524709, 47.351801], [8.524694, 47.351773], [8.524612, 47.351624], [8.524488, 47.351396], [8.524291, 47.351047], [8.52407, 47.350706], [8.523824, 47.350372], [8.5236, 47.350102], [8.523358, 47.349839], [8.523098, 47.349583], [8.52287, 47.349384], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "3937", "properties": {}, "type": "Feature"}, {"bbox": [8.51978, 47.345727, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.522281, 47.34823], [8.521872, 47.347937], [8.521498, 47.347669], [8.521318, 47.347539], [8.52122, 47.347468], [8.521123, 47.347397], [8.521028, 47.347324], [8.520949, 47.347263], [8.520871, 47.347201], [8.520794, 47.347138], [8.520631, 47.346997], [8.520479, 47.346851], [8.520338, 47.3467], [8.520234, 47.346576], [8.520138, 47.34645], [8.520049, 47.346322], [8.519933, 47.346129], [8.519844, 47.34593], [8.51978, 47.345727]]], "type": "MultiLineString"}, "id": "3939", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.352161, 8.524874, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.524797, 47.352694], [8.524836, 47.35259], [8.524862, 47.352484], [8.524874, 47.352376], [8.524872, 47.352269], [8.524857, 47.352161]]], "type": "MultiLineString"}, "id": "3940", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397322, 8.47643, 47.397932], "geometry": {"coordinates": [[[8.47643, 47.397322], [8.474808, 47.397806], [8.474761, 47.397821], [8.474716, 47.397838], [8.474674, 47.397858], [8.474634, 47.397881], [8.474597, 47.397905], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "3975", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397932, 8.477236, 47.399742], "geometry": {"coordinates": [[[8.477236, 47.399695], [8.477176, 47.399711], [8.477115, 47.399725], [8.477053, 47.399734], [8.476989, 47.39974], [8.476925, 47.399742], [8.476861, 47.39974], [8.476797, 47.399734], [8.476734, 47.399725], [8.476673, 47.399712], [8.476614, 47.399695], [8.476557, 47.399675], [8.476503, 47.399651], [8.476452, 47.399625], [8.476404, 47.399595], [8.475941, 47.399257], [8.475485, 47.398915], [8.475035, 47.398569], [8.474852, 47.398366], [8.474694, 47.398153], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4045", "properties": {}, "type": "Feature"}, {"bbox": [8.524746, 47.351829, 8.525744, 47.352796], "geometry": {"coordinates": [[[8.524746, 47.352796], [8.525375, 47.35229], [8.525462, 47.352223], [8.525539, 47.352151], [8.525607, 47.352075], [8.525664, 47.351995], [8.525709, 47.351913], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "4111", "properties": {}, "type": "Feature"}, {"bbox": [8.519399, 47.343373, 8.51978, 47.345727], "geometry": {"coordinates": [[[8.51978, 47.345727], [8.519711, 47.345503], [8.519659, 47.345275], [8.51959, 47.34489], [8.519533, 47.34445], [8.519491, 47.343998], [8.51946, 47.343719], [8.519399, 47.343373]]], "type": "MultiLineString"}, "id": "4112", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.525815, 47.351829], "geometry": {"coordinates": [[[8.525744, 47.351829], [8.52577, 47.351778], [8.525794, 47.351728], [8.525815, 47.351677], [8.525798, 47.351528], [8.525764, 47.351381], [8.525713, 47.351236], [8.525645, 47.351095], [8.52556, 47.350957], [8.52555, 47.35094], [8.52554, 47.350923], [8.52553, 47.350905], [8.525519, 47.350888], [8.525507, 47.35087], [8.525496, 47.350852], [8.525465, 47.350805], [8.525446, 47.350777], [8.525427, 47.35075], [8.525408, 47.350723], [8.525373, 47.350674], [8.525336, 47.350626], [8.525299, 47.350578], [8.525264, 47.350535], [8.525228, 47.350492], [8.525191, 47.350449], [8.525152, 47.350405], [8.525113, 47.350362], [8.525072, 47.350319], [8.525033, 47.350279], [8.524993, 47.350239], [8.524953, 47.3502], [8.524923, 47.350172], [8.524893, 47.350144], [8.524862, 47.350116], [8.524829, 47.350087], [8.524795, 47.350058], [8.524761, 47.350029], [8.524727, 47.35], [8.524692, 47.349971], [8.524656, 47.349943], [8.52462, 47.349915], [8.524584, 47.349887], [8.524548, 47.34986]]], "type": "MultiLineString"}, "id": "4161", "properties": {}, "type": "Feature"}, {"bbox": [8.480283, 47.397003, 8.48099, 47.397763], "geometry": {"coordinates": [[[8.48099, 47.397763], [8.480628, 47.397174], [8.480605, 47.397148], [8.480579, 47.397124], [8.48055, 47.397102], [8.480518, 47.397081], [8.480484, 47.397062], [8.480447, 47.397046], [8.480409, 47.397031], [8.480368, 47.39702], [8.480326, 47.39701], [8.480283, 47.397003]]], "type": "MultiLineString"}, "id": "4169", "properties": {}, "type": "Feature"}, {"bbox": [8.474711, 47.399695, 8.47797, 47.401934], "geometry": {"coordinates": [[[8.477236, 47.399695], [8.477487, 47.400089], [8.477732, 47.400485], [8.47797, 47.400883], [8.477895, 47.400969], [8.477811, 47.401049], [8.477716, 47.401125], [8.477613, 47.401195], [8.477502, 47.401259], [8.477383, 47.401317], [8.477258, 47.401367], [8.476811, 47.401549], [8.476341, 47.401701], [8.475852, 47.401822], [8.475348, 47.40191], [8.475136, 47.401923], [8.474924, 47.401931], [8.474711, 47.401934]]], "type": "MultiLineString"}, "id": "4286", "properties": {}, "type": "Feature"}, {"bbox": [8.536791, 47.385215, 8.547832, 47.399648], "geometry": {"coordinates": [[[8.547832, 47.399648], [8.547092, 47.398988], [8.546453, 47.398281], [8.545922, 47.397534], [8.54551, 47.396678], [8.545207, 47.395802], [8.545015, 47.394912], [8.544934, 47.394013], [8.544806, 47.393239], [8.544584, 47.392475], [8.544269, 47.391726], [8.543864, 47.390998], [8.543371, 47.390294], [8.542795, 47.389621], [8.542139, 47.388983], [8.541407, 47.388383], [8.541205, 47.388233], [8.54101, 47.388078], [8.540823, 47.387919], [8.540192, 47.387479], [8.539558, 47.38704], [8.538923, 47.386603], [8.536791, 47.385215]]], "type": "MultiLineString"}, "id": "4320", "properties": {}, "type": "Feature"}, {"bbox": [8.474563, 47.397785, 8.476448, 47.397932], "geometry": {"coordinates": [[[8.476448, 47.397837], [8.475885, 47.397788], [8.475615, 47.397785], [8.475346, 47.397799], [8.47508, 47.397828], [8.474818, 47.397872], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4357", "properties": {}, "type": "Feature"}, {"bbox": [8.471549, 47.393761, 8.474563, 47.397932], "geometry": {"coordinates": [[[8.47255, 47.393761], [8.473052, 47.394405], [8.473259, 47.394689], [8.473133, 47.394863], [8.473121, 47.394885], [8.473105, 47.394906], [8.473087, 47.394927], [8.473066, 47.394946], [8.473043, 47.394964], [8.473018, 47.39498], [8.47299, 47.394995], [8.472961, 47.395008], [8.47293, 47.395019], [8.472633, 47.395085], [8.472239, 47.395115], [8.472182, 47.395115], [8.472126, 47.395112], [8.47207, 47.395106], [8.472015, 47.395096], [8.471962, 47.395084], [8.47191, 47.395068], [8.47186, 47.395049], [8.471813, 47.395028], [8.471769, 47.395003], [8.471729, 47.394977], [8.471692, 47.394948], [8.471658, 47.394917], [8.471629, 47.394884], [8.471604, 47.394849], [8.471583, 47.394813], [8.471567, 47.394776], [8.471556, 47.394739], [8.47155, 47.3947], [8.471549, 47.394662], [8.471552, 47.394623], [8.47156, 47.394585], [8.471574, 47.394548], [8.471591, 47.394511], [8.471614, 47.394476], [8.471641, 47.394442], [8.471672, 47.39441], [8.471707, 47.39438], [8.471745, 47.394352], [8.471788, 47.394326], [8.471833, 47.394303], [8.471881, 47.394283], [8.471931, 47.394265], [8.471984, 47.394251], [8.472038, 47.394239], [8.472093, 47.394231], [8.47215, 47.394226], [8.472206, 47.394225], [8.472263, 47.394226], [8.472319, 47.394231], [8.472374, 47.39424], [8.472428, 47.394251], [8.472481, 47.394266], [8.472531, 47.394284], [8.472595, 47.394317], [8.472655, 47.394354], [8.47271, 47.394394], [8.47276, 47.394438], [8.472803, 47.394484], [8.472841, 47.394533], [8.472871, 47.394583], [8.472896, 47.394636], [8.473319, 47.39546], [8.473742, 47.396284], [8.474165, 47.397108], [8.474471, 47.397718], [8.474563, 47.397932]]], "type": "MultiLineString"}, "id": "4566", "properties": {}, "type": "Feature"}, {"bbox": [8.489752, 47.393535, 8.49198, 47.393948], "geometry": {"coordinates": [[[8.49198, 47.393535], [8.490286, 47.393842], [8.489752, 47.393948]]], "type": "MultiLineString"}, "id": "4625", "properties": {}, "type": "Feature"}, {"bbox": [8.477236, 47.398116, 8.479723, 47.399695], "geometry": {"coordinates": [[[8.479723, 47.398116], [8.479568, 47.398176], [8.47942, 47.398244], [8.479279, 47.398318], [8.479078, 47.398448], [8.477497, 47.399554], [8.477453, 47.399589], [8.477404, 47.39962], [8.477351, 47.399648], [8.477295, 47.399673], [8.477236, 47.399695]]], "type": "MultiLineString"}, "id": "4689", "properties": {}, "type": "Feature"}, {"bbox": [8.481296, 47.417773, 8.483114, 47.421342], "geometry": {"coordinates": [[[8.483114, 47.417773], [8.483093, 47.417956], [8.482886, 47.419794], [8.482882, 47.419822], [8.482878, 47.419849], [8.482874, 47.419877], [8.482849, 47.419986], [8.482816, 47.420094], [8.482773, 47.4202], [8.482742, 47.420282], [8.482702, 47.420363], [8.482653, 47.420441], [8.482595, 47.420516], [8.482512, 47.420604], [8.482417, 47.420686], [8.482311, 47.420761], [8.482195, 47.420828], [8.481296, 47.421342]]], "type": "MultiLineString"}, "id": "4764", "properties": {}, "type": "Feature"}, {"bbox": [8.493157, 47.393744, 8.497402, 47.393828], "geometry": {"coordinates": [[[8.497402, 47.393828], [8.496525, 47.393777], [8.496319, 47.393768], [8.496113, 47.393761], [8.495906, 47.393754], [8.495676, 47.39375], [8.495446, 47.393748], [8.495216, 47.393748], [8.495094, 47.393749], [8.494972, 47.393751], [8.494849, 47.393753], [8.494725, 47.393757], [8.494601, 47.393756], [8.494477, 47.393751], [8.494359, 47.393746], [8.494241, 47.393744], [8.494124, 47.393747], [8.493676, 47.393769], [8.493263, 47.393792], [8.493157, 47.393799]]], "type": "MultiLineString"}, "id": "4969", "properties": {}, "type": "Feature"}, {"bbox": [8.494458, 47.393335, 8.499924, 47.393426], "geometry": {"coordinates": [[[8.499924, 47.393426], [8.499266, 47.393398], [8.497175, 47.393353], [8.495504, 47.393335], [8.494458, 47.393357]]], "type": "MultiLineString"}, "id": "5015", "properties": {}, "type": "Feature"}, {"bbox": [8.481095, 47.396148, 8.482418, 47.396647], "geometry": {"coordinates": [[[8.482418, 47.396148], [8.481976, 47.396312], [8.481535, 47.396479], [8.481096, 47.396647], [8.481095, 47.396647]]], "type": "MultiLineString"}, "id": "5016", "properties": {}, "type": "Feature"}, {"bbox": [8.490168, 47.393799, 8.493157, 47.394171], "geometry": {"coordinates": [[[8.493157, 47.393799], [8.492849, 47.393818], [8.492436, 47.393847], [8.491805, 47.39391], [8.491257, 47.393989], [8.490711, 47.394076], [8.490168, 47.394171]]], "type": "MultiLineString"}, "id": "5177", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_615bc8f35d57a80dbb7f166fd317fe33_onEachFeature(feature, layer) {\n", + " function geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_615bc8f35d57a80dbb7f166fd317fe33 = L.geoJson(null, {\n", - " onEachFeature: geo_json_615bc8f35d57a80dbb7f166fd317fe33_onEachFeature,\n", + " var geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b = L.geoJson(null, {\n", + " onEachFeature: geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b_onEachFeature,\n", " \n", " color: "pink",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_615bc8f35d57a80dbb7f166fd317fe33_add (data) {\n", - " geo_json_615bc8f35d57a80dbb7f166fd317fe33\n", + " function geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b_add (data) {\n", + " geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b\n", " .addData(data);\n", " }\n", - " geo_json_615bc8f35d57a80dbb7f166fd317fe33_add({"bbox": [8.468934, 47.337319, 8.61566, 47.431727], "features": [{"bbox": [8.614494, 47.362625, 8.61566, 47.362754], "geometry": {"coordinates": [[[8.614494, 47.362625], [8.61566, 47.362754]]], "type": "MultiLineString"}, "id": "877", "properties": {}, "type": "Feature"}, {"bbox": [8.552368, 47.401961, 8.560729, 47.404787], "geometry": {"coordinates": [[[8.552368, 47.401961], [8.553003, 47.402248], [8.553643, 47.402531], [8.554287, 47.402809], [8.554932, 47.403051], [8.555592, 47.403276], [8.556263, 47.403482], [8.557087, 47.403698], [8.557911, 47.403913], [8.558736, 47.404128], [8.559384, 47.404297], [8.560009, 47.404503], [8.560607, 47.404743], [8.560648, 47.404758], [8.560688, 47.404772], [8.560729, 47.404787]]], "type": "MultiLineString"}, "id": "918", "properties": {}, "type": "Feature"}, {"bbox": [8.548757, 47.400223, 8.57196, 47.411254], "geometry": {"coordinates": [[[8.548757, 47.400223], [8.549185, 47.400372], [8.550713, 47.401194], [8.550767, 47.401216], [8.550821, 47.401238], [8.550876, 47.401259], [8.55137, 47.401496], [8.551868, 47.40173], [8.552368, 47.401961]], [[8.560729, 47.404787], [8.561127, 47.404917], [8.561534, 47.405034], [8.561949, 47.405137], [8.562333, 47.405224], [8.562706, 47.405331], [8.563064, 47.405457], [8.563408, 47.405602], [8.563733, 47.405766], [8.564321, 47.406105], [8.564902, 47.40645], [8.565475, 47.406801], [8.565587, 47.406874], [8.565698, 47.406947], [8.565808, 47.407022], [8.566117, 47.407234], [8.566418, 47.407451], [8.566713, 47.407672], [8.56818, 47.40894], [8.568476, 47.409188], [8.568624, 47.409311], [8.568776, 47.409432], [8.568932, 47.409549], [8.569092, 47.409665], [8.569255, 47.409779], [8.569423, 47.40989], [8.569608, 47.410007], [8.569795, 47.410121], [8.569986, 47.410233], [8.570348, 47.410442], [8.570503, 47.410531], [8.570661, 47.410619], [8.57082, 47.410705], [8.57103, 47.410819], [8.571242, 47.41093], [8.571457, 47.411039], [8.571618, 47.411118], [8.571786, 47.41119], [8.57196, 47.411254]]], "type": "MultiLineString"}, "id": "1718", "properties": {}, "type": "Feature"}, {"bbox": [8.568476, 47.409188, 8.57247, 47.411231], "geometry": {"coordinates": [[[8.568476, 47.409188], [8.569025, 47.409553], [8.569173, 47.40966], [8.569326, 47.409764], [8.569484, 47.409864], [8.569665, 47.409976], [8.569847, 47.410088], [8.57003, 47.410198], [8.570155, 47.410269], [8.570283, 47.410338], [8.570413, 47.410404], [8.570856, 47.410612], [8.571311, 47.410807], [8.571778, 47.410989], [8.57247, 47.411231]]], "type": "MultiLineString"}, "id": "1719", "properties": {}, "type": "Feature"}, {"bbox": [8.514979, 47.337319, 8.522937, 47.344322], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.522718, 47.338718], [8.522629, 47.33948], [8.52251, 47.340241], [8.522361, 47.340999], [8.522245, 47.341359], [8.522086, 47.34171], [8.521885, 47.342052], [8.521642, 47.342381], [8.52136, 47.342696], [8.521041, 47.342993], [8.520686, 47.343271], [8.520316, 47.343481], [8.519921, 47.343669], [8.519504, 47.343834], [8.519068, 47.343974], [8.518616, 47.344089], [8.518152, 47.344177], [8.517678, 47.344238], [8.515905, 47.344284], [8.514979, 47.344322]]], "type": "MultiLineString"}, "id": "1720", "properties": {}, "type": "Feature"}, {"bbox": [8.468934, 47.394351, 8.488366, 47.402939], "geometry": {"coordinates": [[[8.468934, 47.402939], [8.469292, 47.40274], [8.469641, 47.402535], [8.469981, 47.402324], [8.470123, 47.402233], [8.470265, 47.402143], [8.470407, 47.402052], [8.470794, 47.401793], [8.471176, 47.40153], [8.471552, 47.401263], [8.471913, 47.401003], [8.472272, 47.400743], [8.472631, 47.400482], [8.473033, 47.400191], [8.47344, 47.399902], [8.473851, 47.399616], [8.474277, 47.399329], [8.474712, 47.399049], [8.475156, 47.398775], [8.475279, 47.398702], [8.475402, 47.39863], [8.475527, 47.398558], [8.475787, 47.39841], [8.47605, 47.398265], [8.476316, 47.398124], [8.476643, 47.39796], [8.476972, 47.397799], [8.477304, 47.397641], [8.477746, 47.397446], [8.478194, 47.397258], [8.478649, 47.397076], [8.47911, 47.396904], [8.479575, 47.396736], [8.480045, 47.396575], [8.480586, 47.396397], [8.481132, 47.396226], [8.481682, 47.396062], [8.482284, 47.395889], [8.482889, 47.395721], [8.483497, 47.395559], [8.484612, 47.39527], [8.485738, 47.394985], [8.487051, 47.394662], [8.48798, 47.39444], [8.488366, 47.394351]]], "type": "MultiLineString"}, "id": "1752", "properties": {}, "type": "Feature"}, {"bbox": [8.478036, 47.394453, 8.48836, 47.39753], "geometry": {"coordinates": [[[8.48836, 47.394453], [8.487998, 47.394565], [8.487633, 47.394674], [8.487266, 47.394779], [8.487027, 47.394848], [8.486786, 47.394912], [8.486542, 47.394973], [8.485906, 47.395131], [8.484848, 47.395394], [8.484632, 47.395453], [8.484417, 47.395513], [8.484202, 47.395574], [8.483581, 47.395759], [8.483137, 47.395888], [8.48289, 47.395965], [8.48265, 47.396052], [8.482418, 47.396148], [8.48166, 47.396362], [8.481524, 47.396411], [8.481387, 47.396459], [8.48125, 47.396507], [8.481014, 47.396583], [8.480776, 47.396657], [8.480536, 47.396729], [8.480275, 47.396806], [8.480011, 47.39688], [8.479745, 47.396949], [8.479449, 47.397029], [8.479237, 47.397089], [8.479028, 47.397156], [8.478825, 47.397229], [8.478036, 47.39753]]], "type": "MultiLineString"}, "id": "1753", "properties": {}, "type": "Feature"}, {"bbox": [8.510756, 47.427089, 8.512003, 47.428102], "geometry": {"coordinates": [[[8.510756, 47.427089], [8.510773, 47.427102], [8.510998, 47.427266], [8.511233, 47.427424], [8.511421, 47.42754], [8.511594, 47.427667], [8.511749, 47.427803], [8.511886, 47.427949], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "2038", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.410693, 8.57281, 47.411599], "geometry": {"coordinates": [[[8.57281, 47.411599], [8.572484, 47.411533], [8.572168, 47.411447], [8.571865, 47.411343], [8.571581, 47.411226], [8.571308, 47.411098], [8.571047, 47.410959], [8.570557, 47.410693]]], "type": "MultiLineString"}, "id": "2132", "properties": {}, "type": "Feature"}, {"bbox": [8.517677, 47.343876, 8.521152, 47.347638], "geometry": {"coordinates": [[[8.517677, 47.343876], [8.517962, 47.343928], [8.518133, 47.343962], [8.518299, 47.344005], [8.51846, 47.344059], [8.518613, 47.344121], [8.518758, 47.344191], [8.518893, 47.34427], [8.519018, 47.344356], [8.519132, 47.34445], [8.519234, 47.344549], [8.519338, 47.344712], [8.519419, 47.34488], [8.519479, 47.345053], [8.519514, 47.345229], [8.519526, 47.345406], [8.519616, 47.345755], [8.519754, 47.346095], [8.519939, 47.346426], [8.520169, 47.346743], [8.52046, 47.347059], [8.520789, 47.347358], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "2136", "properties": {}, "type": "Feature"}, {"bbox": [8.517678, 47.344238, 8.520535, 47.347371], "geometry": {"coordinates": [[[8.520535, 47.347371], [8.519828, 47.346961], [8.519639, 47.346783], [8.519473, 47.346595], [8.519332, 47.346397], [8.519218, 47.346192], [8.51913, 47.345981], [8.519071, 47.345766], [8.519039, 47.345547], [8.519039, 47.345347], [8.519034, 47.345249], [8.519016, 47.345152], [8.518986, 47.345056], [8.518944, 47.344962], [8.518889, 47.344871], [8.518823, 47.344784], [8.518746, 47.3447], [8.518659, 47.344622], [8.518562, 47.34455], [8.518455, 47.344483], [8.518341, 47.344424], [8.518219, 47.344371], [8.518091, 47.344326], [8.517957, 47.344288], [8.517819, 47.344259], [8.517678, 47.344238]]], "type": "MultiLineString"}, "id": "2139", "properties": {}, "type": "Feature"}, {"bbox": [8.514951, 47.340986, 8.521938, 47.344004], "geometry": {"coordinates": [[[8.514951, 47.344004], [8.515871, 47.343966], [8.517677, 47.343876], [8.517752, 47.343859], [8.517827, 47.343842], [8.517904, 47.343828], [8.517981, 47.343815], [8.518058, 47.343803], [8.518136, 47.343793], [8.518429, 47.343762], [8.518716, 47.343713], [8.518995, 47.343647], [8.519265, 47.343564], [8.519523, 47.343465], [8.519767, 47.343351], [8.519995, 47.343223], [8.520206, 47.343082], [8.520557, 47.34278], [8.520879, 47.342463], [8.521171, 47.342133], [8.521456, 47.34176], [8.521712, 47.341377], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2140", "properties": {}, "type": "Feature"}, {"bbox": [8.475527, 47.393852, 8.490697, 47.398558], "geometry": {"coordinates": [[[8.475527, 47.398558], [8.475748, 47.398387], [8.475987, 47.398229], [8.476244, 47.398084], [8.476717, 47.397841], [8.477733, 47.39732], [8.478097, 47.397134], [8.478289, 47.397037], [8.478483, 47.396942], [8.478679, 47.396848], [8.479008, 47.396703], [8.479347, 47.39657], [8.479696, 47.396448], [8.479863, 47.396394], [8.480033, 47.396343], [8.480205, 47.396294], [8.481202, 47.396037], [8.481267, 47.396014], [8.48133, 47.395988], [8.481389, 47.395958], [8.481444, 47.395925], [8.481513, 47.395925], [8.481581, 47.395921], [8.481648, 47.395913], [8.481715, 47.395902], [8.48178, 47.395887], [8.483027, 47.395568], [8.483799, 47.395382], [8.484076, 47.39532], [8.484352, 47.395256], [8.484628, 47.39519], [8.484754, 47.395161], [8.484879, 47.395132], [8.485004, 47.395101], [8.48667, 47.394685], [8.487099, 47.394583], [8.48752, 47.394502], [8.487942, 47.394425], [8.488366, 47.394351], [8.488922, 47.394222], [8.48931, 47.394137], [8.489699, 47.394054], [8.490089, 47.393972], [8.490697, 47.393852]]], "type": "MultiLineString"}, "id": "2478", "properties": {}, "type": "Feature"}, {"bbox": [8.469252, 47.396978, 8.480283, 47.402944], "geometry": {"coordinates": [[[8.480283, 47.397003], [8.480148, 47.396984], [8.480041, 47.396978], [8.479934, 47.396979], [8.479827, 47.396986], [8.479721, 47.397], [8.479618, 47.39702], [8.479518, 47.397047], [8.478839, 47.397252], [8.478429, 47.397395], [8.4783, 47.397444], [8.478169, 47.397488], [8.478036, 47.39753], [8.477623, 47.397708], [8.477219, 47.397894], [8.476822, 47.398088], [8.476618, 47.398182], [8.476414, 47.398274], [8.476209, 47.398365], [8.476164, 47.398386], [8.476116, 47.398403], [8.476066, 47.398418], [8.476015, 47.398429], [8.475763, 47.398571], [8.475513, 47.398715], [8.475266, 47.398861], [8.474826, 47.399139], [8.474395, 47.399423], [8.473972, 47.399713], [8.473565, 47.400002], [8.473161, 47.400293], [8.472761, 47.400587], [8.472403, 47.400852], [8.472041, 47.401115], [8.471676, 47.401376], [8.471303, 47.401642], [8.470924, 47.401903], [8.470539, 47.40216], [8.470402, 47.402249], [8.470264, 47.402337], [8.470125, 47.402425], [8.469838, 47.402601], [8.469547, 47.402774], [8.469252, 47.402944]]], "type": "MultiLineString"}, "id": "2510", "properties": {}, "type": "Feature"}, {"bbox": [8.496369, 47.344004, 8.514951, 47.346484], "geometry": {"coordinates": [[[8.496369, 47.346484], [8.510559, 47.344383], [8.510819, 47.344344], [8.51108, 47.344306], [8.511341, 47.34427], [8.511521, 47.344246], [8.511702, 47.344223], [8.511882, 47.3442], [8.51223, 47.344162], [8.512579, 47.344129], [8.512929, 47.344101], [8.513393, 47.344072], [8.513858, 47.344048], [8.514323, 47.344029], [8.514951, 47.344004]]], "type": "MultiLineString"}, "id": "2834", "properties": {}, "type": "Feature"}, {"bbox": [8.495031, 47.344322, 8.514979, 47.346995], "geometry": {"coordinates": [[[8.514979, 47.344322], [8.514505, 47.344342], [8.514258, 47.344352], [8.514046, 47.34436], [8.513833, 47.344369], [8.513621, 47.344379], [8.513384, 47.344392], [8.513148, 47.344405], [8.512911, 47.34442], [8.512728, 47.344433], [8.512546, 47.344448], [8.512363, 47.344465], [8.512181, 47.344483], [8.511999, 47.344502], [8.511818, 47.344523], [8.511633, 47.344546], [8.511447, 47.34457], [8.511262, 47.344594], [8.511006, 47.34463], [8.51075, 47.344667], [8.510494, 47.344705], [8.509258, 47.344889], [8.509026, 47.344923], [8.495031, 47.346995]]], "type": "MultiLineString"}, "id": "2835", "properties": {}, "type": "Feature"}, {"bbox": [8.476015, 47.393959, 8.490752, 47.398429], "geometry": {"coordinates": [[[8.490752, 47.393959], [8.490465, 47.394008], [8.490119, 47.394072], [8.489529, 47.394191], [8.488943, 47.394318], [8.48836, 47.394453], [8.488116, 47.394523], [8.487869, 47.394587], [8.487618, 47.394646], [8.486637, 47.39488], [8.485908, 47.395059], [8.485166, 47.395246], [8.484426, 47.395435], [8.483687, 47.395627], [8.48313, 47.395777], [8.482574, 47.39593], [8.48202, 47.396085], [8.481417, 47.396261], [8.480819, 47.396445], [8.480225, 47.396636], [8.479691, 47.39682], [8.479162, 47.397011], [8.478638, 47.397209], [8.478119, 47.397417], [8.477609, 47.397636], [8.47711, 47.397865], [8.476739, 47.398048], [8.476373, 47.398236], [8.476015, 47.398429]]], "type": "MultiLineString"}, "id": "3120", "properties": {}, "type": "Feature"}, {"bbox": [8.512003, 47.428102, 8.516417, 47.431727], "geometry": {"coordinates": [[[8.512003, 47.428102], [8.512025, 47.428137], [8.512045, 47.428174], [8.512064, 47.428211], [8.512087, 47.428261], [8.512107, 47.428312], [8.512125, 47.428364], [8.512171, 47.428558], [8.512203, 47.428753], [8.512221, 47.428949], [8.512241, 47.429103], [8.512274, 47.429257], [8.51232, 47.429409], [8.512373, 47.429523], [8.512437, 47.429634], [8.512513, 47.429742], [8.512602, 47.429846], [8.512705, 47.429943], [8.512821, 47.430034], [8.512949, 47.430117], [8.513088, 47.430191], [8.513196, 47.43024], [8.513309, 47.430285], [8.513425, 47.430324], [8.51489, 47.430776], [8.515221, 47.430874], [8.515555, 47.430967], [8.515891, 47.431057], [8.516021, 47.431091], [8.516148, 47.431131], [8.516272, 47.431175], [8.516294, 47.431185], [8.516315, 47.431196], [8.516334, 47.431209], [8.516351, 47.431222], [8.516367, 47.431237], [8.516381, 47.431252], [8.516393, 47.431268], [8.516402, 47.431285], [8.516409, 47.431302], [8.516414, 47.43132], [8.516417, 47.431338], [8.516417, 47.431361], [8.516414, 47.431384], [8.516409, 47.431406], [8.516401, 47.431429], [8.516391, 47.43145], [8.516206, 47.431727]]], "type": "MultiLineString"}, "id": "3183", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.410693, 8.572636, 47.411874], "geometry": {"coordinates": [[[8.572636, 47.411874], [8.571911, 47.411475], [8.570966, 47.41098], [8.570821, 47.410891], [8.570684, 47.410795], [8.570557, 47.410693]]], "type": "MultiLineString"}, "id": "3632", "properties": {}, "type": "Feature"}, {"bbox": [8.602367, 47.361341, 8.614494, 47.362625], "geometry": {"coordinates": [[[8.602367, 47.361341], [8.602844, 47.361413], [8.602983, 47.361433], [8.603776, 47.3616], [8.60419, 47.361693], [8.604556, 47.361767], [8.604926, 47.361829], [8.605299, 47.36188], [8.607065, 47.362086], [8.607595, 47.362129], [8.612263, 47.362422], [8.612477, 47.362435], [8.612853, 47.362459], [8.613266, 47.362492], [8.613699, 47.362534], [8.614494, 47.362625]]], "type": "MultiLineString"}, "id": "5152", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b_add({"bbox": [8.468934, 47.337319, 8.61566, 47.431727], "features": [{"bbox": [8.614494, 47.362625, 8.61566, 47.362754], "geometry": {"coordinates": [[[8.614494, 47.362625], [8.61566, 47.362754]]], "type": "MultiLineString"}, "id": "877", "properties": {}, "type": "Feature"}, {"bbox": [8.552368, 47.401961, 8.560729, 47.404787], "geometry": {"coordinates": [[[8.552368, 47.401961], [8.553003, 47.402248], [8.553643, 47.402531], [8.554287, 47.402809], [8.554932, 47.403051], [8.555592, 47.403276], [8.556263, 47.403482], [8.557087, 47.403698], [8.557911, 47.403913], [8.558736, 47.404128], [8.559384, 47.404297], [8.560009, 47.404503], [8.560607, 47.404743], [8.560648, 47.404758], [8.560688, 47.404772], [8.560729, 47.404787]]], "type": "MultiLineString"}, "id": "918", "properties": {}, "type": "Feature"}, {"bbox": [8.548757, 47.400223, 8.57196, 47.411254], "geometry": {"coordinates": [[[8.548757, 47.400223], [8.549185, 47.400372], [8.550713, 47.401194], [8.550767, 47.401216], [8.550821, 47.401238], [8.550876, 47.401259], [8.55137, 47.401496], [8.551868, 47.40173], [8.552368, 47.401961]], [[8.560729, 47.404787], [8.561127, 47.404917], [8.561534, 47.405034], [8.561949, 47.405137], [8.562333, 47.405224], [8.562706, 47.405331], [8.563064, 47.405457], [8.563408, 47.405602], [8.563733, 47.405766], [8.564321, 47.406105], [8.564902, 47.40645], [8.565475, 47.406801], [8.565587, 47.406874], [8.565698, 47.406947], [8.565808, 47.407022], [8.566117, 47.407234], [8.566418, 47.407451], [8.566713, 47.407672], [8.56818, 47.40894], [8.568476, 47.409188], [8.568624, 47.409311], [8.568776, 47.409432], [8.568932, 47.409549], [8.569092, 47.409665], [8.569255, 47.409779], [8.569423, 47.40989], [8.569608, 47.410007], [8.569795, 47.410121], [8.569986, 47.410233], [8.570348, 47.410442], [8.570503, 47.410531], [8.570661, 47.410619], [8.57082, 47.410705], [8.57103, 47.410819], [8.571242, 47.41093], [8.571457, 47.411039], [8.571618, 47.411118], [8.571786, 47.41119], [8.57196, 47.411254]]], "type": "MultiLineString"}, "id": "1718", "properties": {}, "type": "Feature"}, {"bbox": [8.568476, 47.409188, 8.57247, 47.411231], "geometry": {"coordinates": [[[8.568476, 47.409188], [8.569025, 47.409553], [8.569173, 47.40966], [8.569326, 47.409764], [8.569484, 47.409864], [8.569665, 47.409976], [8.569847, 47.410088], [8.57003, 47.410198], [8.570155, 47.410269], [8.570283, 47.410338], [8.570413, 47.410404], [8.570856, 47.410612], [8.571311, 47.410807], [8.571778, 47.410989], [8.57247, 47.411231]]], "type": "MultiLineString"}, "id": "1719", "properties": {}, "type": "Feature"}, {"bbox": [8.514979, 47.337319, 8.522937, 47.344322], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.522718, 47.338718], [8.522629, 47.33948], [8.52251, 47.340241], [8.522361, 47.340999], [8.522245, 47.341359], [8.522086, 47.34171], [8.521885, 47.342052], [8.521642, 47.342381], [8.52136, 47.342696], [8.521041, 47.342993], [8.520686, 47.343271], [8.520316, 47.343481], [8.519921, 47.343669], [8.519504, 47.343834], [8.519068, 47.343974], [8.518616, 47.344089], [8.518152, 47.344177], [8.517678, 47.344238], [8.515905, 47.344284], [8.514979, 47.344322]]], "type": "MultiLineString"}, "id": "1720", "properties": {}, "type": "Feature"}, {"bbox": [8.468934, 47.394351, 8.488366, 47.402939], "geometry": {"coordinates": [[[8.468934, 47.402939], [8.469292, 47.40274], [8.469641, 47.402535], [8.469981, 47.402324], [8.470123, 47.402233], [8.470265, 47.402143], [8.470407, 47.402052], [8.470794, 47.401793], [8.471176, 47.40153], [8.471552, 47.401263], [8.471913, 47.401003], [8.472272, 47.400743], [8.472631, 47.400482], [8.473033, 47.400191], [8.47344, 47.399902], [8.473851, 47.399616], [8.474277, 47.399329], [8.474712, 47.399049], [8.475156, 47.398775], [8.475279, 47.398702], [8.475402, 47.39863], [8.475527, 47.398558], [8.475787, 47.39841], [8.47605, 47.398265], [8.476316, 47.398124], [8.476643, 47.39796], [8.476972, 47.397799], [8.477304, 47.397641], [8.477746, 47.397446], [8.478194, 47.397258], [8.478649, 47.397076], [8.47911, 47.396904], [8.479575, 47.396736], [8.480045, 47.396575], [8.480586, 47.396397], [8.481132, 47.396226], [8.481682, 47.396062], [8.482284, 47.395889], [8.482889, 47.395721], [8.483497, 47.395559], [8.484612, 47.39527], [8.485738, 47.394985], [8.487051, 47.394662], [8.48798, 47.39444], [8.488366, 47.394351]]], "type": "MultiLineString"}, "id": "1752", "properties": {}, "type": "Feature"}, {"bbox": [8.478036, 47.394453, 8.48836, 47.39753], "geometry": {"coordinates": [[[8.48836, 47.394453], [8.487998, 47.394565], [8.487633, 47.394674], [8.487266, 47.394779], [8.487027, 47.394848], [8.486786, 47.394912], [8.486542, 47.394973], [8.485906, 47.395131], [8.484848, 47.395394], [8.484632, 47.395453], [8.484417, 47.395513], [8.484202, 47.395574], [8.483581, 47.395759], [8.483137, 47.395888], [8.48289, 47.395965], [8.48265, 47.396052], [8.482418, 47.396148], [8.48166, 47.396362], [8.481524, 47.396411], [8.481387, 47.396459], [8.48125, 47.396507], [8.481014, 47.396583], [8.480776, 47.396657], [8.480536, 47.396729], [8.480275, 47.396806], [8.480011, 47.39688], [8.479745, 47.396949], [8.479449, 47.397029], [8.479237, 47.397089], [8.479028, 47.397156], [8.478825, 47.397229], [8.478036, 47.39753]]], "type": "MultiLineString"}, "id": "1753", "properties": {}, "type": "Feature"}, {"bbox": [8.510756, 47.427089, 8.512003, 47.428102], "geometry": {"coordinates": [[[8.510756, 47.427089], [8.510773, 47.427102], [8.510998, 47.427266], [8.511233, 47.427424], [8.511421, 47.42754], [8.511594, 47.427667], [8.511749, 47.427803], [8.511886, 47.427949], [8.512003, 47.428102]]], "type": "MultiLineString"}, "id": "2038", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.410693, 8.57281, 47.411599], "geometry": {"coordinates": [[[8.57281, 47.411599], [8.572484, 47.411533], [8.572168, 47.411447], [8.571865, 47.411343], [8.571581, 47.411226], [8.571308, 47.411098], [8.571047, 47.410959], [8.570557, 47.410693]]], "type": "MultiLineString"}, "id": "2132", "properties": {}, "type": "Feature"}, {"bbox": [8.517677, 47.343876, 8.521152, 47.347638], "geometry": {"coordinates": [[[8.517677, 47.343876], [8.517962, 47.343928], [8.518133, 47.343962], [8.518299, 47.344005], [8.51846, 47.344059], [8.518613, 47.344121], [8.518758, 47.344191], [8.518893, 47.34427], [8.519018, 47.344356], [8.519132, 47.34445], [8.519234, 47.344549], [8.519338, 47.344712], [8.519419, 47.34488], [8.519479, 47.345053], [8.519514, 47.345229], [8.519526, 47.345406], [8.519616, 47.345755], [8.519754, 47.346095], [8.519939, 47.346426], [8.520169, 47.346743], [8.52046, 47.347059], [8.520789, 47.347358], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "2136", "properties": {}, "type": "Feature"}, {"bbox": [8.517678, 47.344238, 8.520535, 47.347371], "geometry": {"coordinates": [[[8.520535, 47.347371], [8.519828, 47.346961], [8.519639, 47.346783], [8.519473, 47.346595], [8.519332, 47.346397], [8.519218, 47.346192], [8.51913, 47.345981], [8.519071, 47.345766], [8.519039, 47.345547], [8.519039, 47.345347], [8.519034, 47.345249], [8.519016, 47.345152], [8.518986, 47.345056], [8.518944, 47.344962], [8.518889, 47.344871], [8.518823, 47.344784], [8.518746, 47.3447], [8.518659, 47.344622], [8.518562, 47.34455], [8.518455, 47.344483], [8.518341, 47.344424], [8.518219, 47.344371], [8.518091, 47.344326], [8.517957, 47.344288], [8.517819, 47.344259], [8.517678, 47.344238]]], "type": "MultiLineString"}, "id": "2139", "properties": {}, "type": "Feature"}, {"bbox": [8.514951, 47.340986, 8.521938, 47.344004], "geometry": {"coordinates": [[[8.514951, 47.344004], [8.515871, 47.343966], [8.517677, 47.343876], [8.517752, 47.343859], [8.517827, 47.343842], [8.517904, 47.343828], [8.517981, 47.343815], [8.518058, 47.343803], [8.518136, 47.343793], [8.518429, 47.343762], [8.518716, 47.343713], [8.518995, 47.343647], [8.519265, 47.343564], [8.519523, 47.343465], [8.519767, 47.343351], [8.519995, 47.343223], [8.520206, 47.343082], [8.520557, 47.34278], [8.520879, 47.342463], [8.521171, 47.342133], [8.521456, 47.34176], [8.521712, 47.341377], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2140", "properties": {}, "type": "Feature"}, {"bbox": [8.475527, 47.393852, 8.490697, 47.398558], "geometry": {"coordinates": [[[8.475527, 47.398558], [8.475748, 47.398387], [8.475987, 47.398229], [8.476244, 47.398084], [8.476717, 47.397841], [8.477733, 47.39732], [8.478097, 47.397134], [8.478289, 47.397037], [8.478483, 47.396942], [8.478679, 47.396848], [8.479008, 47.396703], [8.479347, 47.39657], [8.479696, 47.396448], [8.479863, 47.396394], [8.480033, 47.396343], [8.480205, 47.396294], [8.481202, 47.396037], [8.481267, 47.396014], [8.48133, 47.395988], [8.481389, 47.395958], [8.481444, 47.395925], [8.481513, 47.395925], [8.481581, 47.395921], [8.481648, 47.395913], [8.481715, 47.395902], [8.48178, 47.395887], [8.483027, 47.395568], [8.483799, 47.395382], [8.484076, 47.39532], [8.484352, 47.395256], [8.484628, 47.39519], [8.484754, 47.395161], [8.484879, 47.395132], [8.485004, 47.395101], [8.48667, 47.394685], [8.487099, 47.394583], [8.48752, 47.394502], [8.487942, 47.394425], [8.488366, 47.394351], [8.488922, 47.394222], [8.48931, 47.394137], [8.489699, 47.394054], [8.490089, 47.393972], [8.490697, 47.393852]]], "type": "MultiLineString"}, "id": "2478", "properties": {}, "type": "Feature"}, {"bbox": [8.469252, 47.396978, 8.480283, 47.402944], "geometry": {"coordinates": [[[8.480283, 47.397003], [8.480148, 47.396984], [8.480041, 47.396978], [8.479934, 47.396979], [8.479827, 47.396986], [8.479721, 47.397], [8.479618, 47.39702], [8.479518, 47.397047], [8.478839, 47.397252], [8.478429, 47.397395], [8.4783, 47.397444], [8.478169, 47.397488], [8.478036, 47.39753], [8.477623, 47.397708], [8.477219, 47.397894], [8.476822, 47.398088], [8.476618, 47.398182], [8.476414, 47.398274], [8.476209, 47.398365], [8.476164, 47.398386], [8.476116, 47.398403], [8.476066, 47.398418], [8.476015, 47.398429], [8.475763, 47.398571], [8.475513, 47.398715], [8.475266, 47.398861], [8.474826, 47.399139], [8.474395, 47.399423], [8.473972, 47.399713], [8.473565, 47.400002], [8.473161, 47.400293], [8.472761, 47.400587], [8.472403, 47.400852], [8.472041, 47.401115], [8.471676, 47.401376], [8.471303, 47.401642], [8.470924, 47.401903], [8.470539, 47.40216], [8.470402, 47.402249], [8.470264, 47.402337], [8.470125, 47.402425], [8.469838, 47.402601], [8.469547, 47.402774], [8.469252, 47.402944]]], "type": "MultiLineString"}, "id": "2510", "properties": {}, "type": "Feature"}, {"bbox": [8.496369, 47.344004, 8.514951, 47.346484], "geometry": {"coordinates": [[[8.496369, 47.346484], [8.510559, 47.344383], [8.510819, 47.344344], [8.51108, 47.344306], [8.511341, 47.34427], [8.511521, 47.344246], [8.511702, 47.344223], [8.511882, 47.3442], [8.51223, 47.344162], [8.512579, 47.344129], [8.512929, 47.344101], [8.513393, 47.344072], [8.513858, 47.344048], [8.514323, 47.344029], [8.514951, 47.344004]]], "type": "MultiLineString"}, "id": "2834", "properties": {}, "type": "Feature"}, {"bbox": [8.495031, 47.344322, 8.514979, 47.346995], "geometry": {"coordinates": [[[8.514979, 47.344322], [8.514505, 47.344342], [8.514258, 47.344352], [8.514046, 47.34436], [8.513833, 47.344369], [8.513621, 47.344379], [8.513384, 47.344392], [8.513148, 47.344405], [8.512911, 47.34442], [8.512728, 47.344433], [8.512546, 47.344448], [8.512363, 47.344465], [8.512181, 47.344483], [8.511999, 47.344502], [8.511818, 47.344523], [8.511633, 47.344546], [8.511447, 47.34457], [8.511262, 47.344594], [8.511006, 47.34463], [8.51075, 47.344667], [8.510494, 47.344705], [8.509258, 47.344889], [8.509026, 47.344923], [8.495031, 47.346995]]], "type": "MultiLineString"}, "id": "2835", "properties": {}, "type": "Feature"}, {"bbox": [8.476015, 47.393959, 8.490752, 47.398429], "geometry": {"coordinates": [[[8.490752, 47.393959], [8.490465, 47.394008], [8.490119, 47.394072], [8.489529, 47.394191], [8.488943, 47.394318], [8.48836, 47.394453], [8.488116, 47.394523], [8.487869, 47.394587], [8.487618, 47.394646], [8.486637, 47.39488], [8.485908, 47.395059], [8.485166, 47.395246], [8.484426, 47.395435], [8.483687, 47.395627], [8.48313, 47.395777], [8.482574, 47.39593], [8.48202, 47.396085], [8.481417, 47.396261], [8.480819, 47.396445], [8.480225, 47.396636], [8.479691, 47.39682], [8.479162, 47.397011], [8.478638, 47.397209], [8.478119, 47.397417], [8.477609, 47.397636], [8.47711, 47.397865], [8.476739, 47.398048], [8.476373, 47.398236], [8.476015, 47.398429]]], "type": "MultiLineString"}, "id": "3120", "properties": {}, "type": "Feature"}, {"bbox": [8.512003, 47.428102, 8.516417, 47.431727], "geometry": {"coordinates": [[[8.512003, 47.428102], [8.512025, 47.428137], [8.512045, 47.428174], [8.512064, 47.428211], [8.512087, 47.428261], [8.512107, 47.428312], [8.512125, 47.428364], [8.512171, 47.428558], [8.512203, 47.428753], [8.512221, 47.428949], [8.512241, 47.429103], [8.512274, 47.429257], [8.51232, 47.429409], [8.512373, 47.429523], [8.512437, 47.429634], [8.512513, 47.429742], [8.512602, 47.429846], [8.512705, 47.429943], [8.512821, 47.430034], [8.512949, 47.430117], [8.513088, 47.430191], [8.513196, 47.43024], [8.513309, 47.430285], [8.513425, 47.430324], [8.51489, 47.430776], [8.515221, 47.430874], [8.515555, 47.430967], [8.515891, 47.431057], [8.516021, 47.431091], [8.516148, 47.431131], [8.516272, 47.431175], [8.516294, 47.431185], [8.516315, 47.431196], [8.516334, 47.431209], [8.516351, 47.431222], [8.516367, 47.431237], [8.516381, 47.431252], [8.516393, 47.431268], [8.516402, 47.431285], [8.516409, 47.431302], [8.516414, 47.43132], [8.516417, 47.431338], [8.516417, 47.431361], [8.516414, 47.431384], [8.516409, 47.431406], [8.516401, 47.431429], [8.516391, 47.43145], [8.516206, 47.431727]]], "type": "MultiLineString"}, "id": "3183", "properties": {}, "type": "Feature"}, {"bbox": [8.570557, 47.410693, 8.572636, 47.411874], "geometry": {"coordinates": [[[8.572636, 47.411874], [8.571911, 47.411475], [8.570966, 47.41098], [8.570821, 47.410891], [8.570684, 47.410795], [8.570557, 47.410693]]], "type": "MultiLineString"}, "id": "3632", "properties": {}, "type": "Feature"}, {"bbox": [8.602367, 47.361341, 8.614494, 47.362625], "geometry": {"coordinates": [[[8.602367, 47.361341], [8.602844, 47.361413], [8.602983, 47.361433], [8.603776, 47.3616], [8.60419, 47.361693], [8.604556, 47.361767], [8.604926, 47.361829], [8.605299, 47.36188], [8.607065, 47.362086], [8.607595, 47.362129], [8.612263, 47.362422], [8.612477, 47.362435], [8.612853, 47.362459], [8.613266, 47.362492], [8.613699, 47.362534], [8.614494, 47.362625]]], "type": "MultiLineString"}, "id": "5152", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", "\n", - " function geo_json_3ec2265876b39159a835b8d62feac04b_onEachFeature(feature, layer) {\n", + " function geo_json_7ba49a4fe43ea4ccac758fa8723f80be_onEachFeature(feature, layer) {\n", " layer.on({\n", " });\n", " };\n", - " var geo_json_3ec2265876b39159a835b8d62feac04b = L.geoJson(null, {\n", - " onEachFeature: geo_json_3ec2265876b39159a835b8d62feac04b_onEachFeature,\n", + " var geo_json_7ba49a4fe43ea4ccac758fa8723f80be = L.geoJson(null, {\n", + " onEachFeature: geo_json_7ba49a4fe43ea4ccac758fa8723f80be_onEachFeature,\n", " \n", " color: "gray",\n", " lineCap: "butt",\n", " });\n", "\n", - " function geo_json_3ec2265876b39159a835b8d62feac04b_add (data) {\n", - " geo_json_3ec2265876b39159a835b8d62feac04b\n", + " function geo_json_7ba49a4fe43ea4ccac758fa8723f80be_add (data) {\n", + " geo_json_7ba49a4fe43ea4ccac758fa8723f80be\n", " .addData(data);\n", " }\n", - " geo_json_3ec2265876b39159a835b8d62feac04b_add({"bbox": [8.489448, 47.32782, 8.573066, 47.428918], "features": [{"bbox": [8.489832, 47.425877, 8.49201, 47.426174], "geometry": {"coordinates": [[[8.489832, 47.425877], [8.490106, 47.42593], [8.490558, 47.425996], [8.491012, 47.426058], [8.491467, 47.426115], [8.491916, 47.426165], [8.49201, 47.426174]]], "type": "MultiLineString"}, "id": "462", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.573066, 47.411421], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.57253, 47.411245], [8.572589, 47.41126], [8.572647, 47.411277], [8.572786, 47.411326], [8.572925, 47.411374], [8.573066, 47.411421]]], "type": "MultiLineString"}, "id": "557", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522562, 47.348648], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.522562, 47.348648]]], "type": "MultiLineString"}, "id": "768", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.52412, 47.350575], [8.523774, 47.350158], [8.523385, 47.34976], [8.522954, 47.349382], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "770", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.350174, 8.525439, 47.354153], "geometry": {"coordinates": [[[8.524787, 47.350174], [8.524984, 47.350403], [8.525157, 47.350641], [8.525304, 47.350886], [8.525383, 47.351122], [8.525428, 47.351362], [8.525439, 47.351604], [8.525417, 47.351846], [8.525361, 47.352084], [8.524901, 47.353943], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "776", "properties": {}, "type": "Feature"}, {"bbox": [8.521938, 47.337288, 8.522723, 47.340986], "geometry": {"coordinates": [[[8.521938, 47.340986], [8.52207, 47.340589], [8.522176, 47.340188], [8.522256, 47.339784], [8.522478, 47.338292], [8.522531, 47.337954], [8.522613, 47.337619], [8.522723, 47.337288]]], "type": "MultiLineString"}, "id": "1232", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.524793, 47.350174], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.524622, 47.349976], [8.524793, 47.350142], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "1362", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572154, 47.411303], [8.572354, 47.411361], [8.57256, 47.411406], [8.572771, 47.411439], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "1618", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572959, 47.41148], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572013, 47.411282], [8.572068, 47.411308], [8.572126, 47.411331], [8.572398, 47.411396], [8.572676, 47.411446], [8.572959, 47.41148]]], "type": "MultiLineString"}, "id": "1663", "properties": {}, "type": "Feature"}, {"bbox": [8.493733, 47.425845, 8.498406, 47.426749], "geometry": {"coordinates": [[[8.493733, 47.425845], [8.494012, 47.425956], [8.494305, 47.426049], [8.494609, 47.426123], [8.494922, 47.426176], [8.495874, 47.426342], [8.496105, 47.426388], [8.496337, 47.426427], [8.496572, 47.42646], [8.496934, 47.426511], [8.497297, 47.426556], [8.497661, 47.426596], [8.497914, 47.426637], [8.498162, 47.426687], [8.498406, 47.426749]]], "type": "MultiLineString"}, "id": "1751", "properties": {}, "type": "Feature"}, {"bbox": [8.519241, 47.340986, 8.525016, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524151, 47.368262], [8.523806, 47.367908], [8.52359, 47.36768], [8.523395, 47.367443], [8.52322, 47.367199], [8.523076, 47.366956], [8.522955, 47.366707], [8.522858, 47.366454], [8.522779, 47.36619], [8.522725, 47.365923], [8.522696, 47.365654], [8.522662, 47.364671], [8.522641, 47.36389], [8.52264, 47.36361], [8.52265, 47.36333], [8.522671, 47.36305], [8.522701, 47.362739], [8.522748, 47.362428], [8.522813, 47.36212], [8.522943, 47.361502], [8.523009, 47.36115], [8.523109, 47.360742], [8.52322, 47.360335], [8.523344, 47.35993], [8.523789, 47.358609], [8.523929, 47.358207], [8.524052, 47.357802], [8.524158, 47.357395], [8.524238, 47.357019], [8.524303, 47.356641], [8.524353, 47.356262], [8.524485, 47.355241], [8.524531, 47.354871], [8.52458, 47.3545], [8.52463, 47.354129], [8.524679, 47.353795], [8.524764, 47.353611], [8.524892, 47.352927], [8.524952, 47.352634], [8.524993, 47.35234], [8.525016, 47.352044], [8.525006, 47.351769], [8.524963, 47.351496], [8.524888, 47.351226], [8.524775, 47.350936], [8.524624, 47.350654], [8.524436, 47.350383], [8.524287, 47.350195], [8.524118, 47.350015], [8.523931, 47.349843], [8.523757, 47.3497], [8.523577, 47.349561], [8.523391, 47.349425], [8.522913, 47.349082], [8.522434, 47.34874], [8.521778, 47.348271], [8.521362, 47.347973], [8.520947, 47.347673], [8.520535, 47.347371], [8.520393, 47.347269], [8.520259, 47.347161], [8.520135, 47.347049], [8.519946, 47.346875], [8.519777, 47.346691], [8.51963, 47.346499], [8.519506, 47.3463], [8.51941, 47.346115], [8.519337, 47.345926], [8.519286, 47.345733], [8.519246, 47.345477], [8.519241, 47.34522], [8.519273, 47.344964], [8.51934, 47.344711], [8.519446, 47.344468], [8.519576, 47.344232], [8.519729, 47.344002], [8.520006, 47.343672], [8.520302, 47.343349], [8.520615, 47.343034], [8.520826, 47.342811], [8.521024, 47.342583], [8.521209, 47.342349], [8.521459, 47.342026], [8.521664, 47.34169], [8.521825, 47.341342], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2133", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.572508, 47.411255], [8.572548, 47.411278], [8.57259, 47.411298], [8.572635, 47.411316], [8.572752, 47.411363], [8.572869, 47.411411], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "2135", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.327836, 8.530504, 47.328897], "geometry": {"coordinates": [[[8.530504, 47.327836], [8.530309, 47.328193], [8.5301, 47.328547], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2138", "properties": {}, "type": "Feature"}, {"bbox": [8.522891, 47.354153, 8.524804, 47.367222], "geometry": {"coordinates": [[[8.524804, 47.354153], [8.52476, 47.354496], [8.524715, 47.354839], [8.52467, 47.355183], [8.524528, 47.35626], [8.524472, 47.356644], [8.524395, 47.357025], [8.524298, 47.357405], [8.524187, 47.357828], [8.524063, 47.358248], [8.523924, 47.358667], [8.523491, 47.359934], [8.523369, 47.360344], [8.523253, 47.360755], [8.523143, 47.361166], [8.523022, 47.361707], [8.522964, 47.361972], [8.522922, 47.362239], [8.522896, 47.362506], [8.522891, 47.362711], [8.522904, 47.362915], [8.522937, 47.363118], [8.52308, 47.363844], [8.523122, 47.364044], [8.523177, 47.364243], [8.523245, 47.36444], [8.523308, 47.364589], [8.523378, 47.364737], [8.523457, 47.364882], [8.523513, 47.364979], [8.523556, 47.365079], [8.523586, 47.36518], [8.523603, 47.365284], [8.523605, 47.365388], [8.523595, 47.365491], [8.523566, 47.365587], [8.523526, 47.365681], [8.523475, 47.365772], [8.523414, 47.36586], [8.523322, 47.365985], [8.523247, 47.366115], [8.52319, 47.366249], [8.523153, 47.366387], [8.523149, 47.366471], [8.523157, 47.366555], [8.523177, 47.366638], [8.523207, 47.366719], [8.523249, 47.366799], [8.523328, 47.36694], [8.52341, 47.367081], [8.523492, 47.367222]]], "type": "MultiLineString"}, "id": "2633", "properties": {}, "type": "Feature"}, {"bbox": [8.526028, 47.328897, 8.529879, 47.332927], "geometry": {"coordinates": [[[8.529879, 47.328897], [8.529083, 47.33], [8.528144, 47.331051], [8.527072, 47.33204], [8.526028, 47.332927]]], "type": "MultiLineString"}, "id": "2634", "properties": {}, "type": "Feature"}, {"bbox": [8.528171, 47.32782, 8.530333, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528667, 47.330262], [8.529129, 47.329709], [8.529554, 47.329143], [8.529842, 47.32871], [8.530102, 47.328269], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2742", "properties": {}, "type": "Feature"}, {"bbox": [8.522723, 47.33282, 8.525829, 47.337288], "geometry": {"coordinates": [[[8.522723, 47.337288], [8.522952, 47.336651], [8.523237, 47.336024], [8.523578, 47.335411], [8.524216, 47.334503], [8.524968, 47.333638], [8.525829, 47.33282]]], "type": "MultiLineString"}, "id": "2769", "properties": {}, "type": "Feature"}, {"bbox": [8.522937, 47.332927, 8.526028, 47.337319], "geometry": {"coordinates": [[[8.526028, 47.332927], [8.525895, 47.333043], [8.525764, 47.33316], [8.525635, 47.333278], [8.52548, 47.333424], [8.525328, 47.333573], [8.52518, 47.333722], [8.524932, 47.333986], [8.524695, 47.334255], [8.52447, 47.334529], [8.524301, 47.334747], [8.524139, 47.334968], [8.523985, 47.335191], [8.523823, 47.335441], [8.52367, 47.335694], [8.523527, 47.335949], [8.523428, 47.336139], [8.523334, 47.336329], [8.523245, 47.336521], [8.523151, 47.336739], [8.523064, 47.336958], [8.522984, 47.337179], [8.522968, 47.337226], [8.522952, 47.337272], [8.522937, 47.337319]]], "type": "MultiLineString"}, "id": "2833", "properties": {}, "type": "Feature"}, {"bbox": [8.525829, 47.3308, 8.528171, 47.33282], "geometry": {"coordinates": [[[8.525829, 47.33282], [8.526611, 47.332202], [8.527406, 47.331522], [8.528171, 47.3308]]], "type": "MultiLineString"}, "id": "3148", "properties": {}, "type": "Feature"}, {"bbox": [8.489448, 47.425979, 8.491976, 47.426324], "geometry": {"coordinates": [[[8.491976, 47.426324], [8.491897, 47.426316], [8.49143, 47.426266], [8.490971, 47.426208], [8.490512, 47.426146], [8.490054, 47.42608], [8.489448, 47.425979]]], "type": "MultiLineString"}, "id": "3364", "properties": {}, "type": "Feature"}, {"bbox": [8.553246, 47.427199, 8.556453, 47.428808], "geometry": {"coordinates": [[[8.553246, 47.428808], [8.55409, 47.428362], [8.554943, 47.427924], [8.555806, 47.427494], [8.556019, 47.427393], [8.556235, 47.427294], [8.556453, 47.427199]]], "type": "MultiLineString"}, "id": "3429", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.337319, 8.522937, 47.347638], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.52285, 47.337572], [8.522782, 47.337829], [8.522733, 47.338087], [8.522617, 47.338716], [8.522522, 47.339348], [8.522448, 47.33998], [8.522392, 47.340233], [8.522324, 47.340485], [8.522244, 47.340735], [8.522142, 47.340981], [8.522029, 47.341225], [8.521907, 47.341467], [8.521779, 47.341698], [8.521638, 47.341925], [8.521483, 47.342148], [8.521285, 47.34242], [8.521067, 47.342684], [8.520828, 47.34294], [8.520327, 47.343462], [8.520199, 47.343601], [8.520074, 47.343741], [8.519952, 47.343882], [8.519714, 47.344203], [8.519624, 47.344362], [8.51954, 47.344524], [8.519465, 47.344686], [8.519402, 47.3449], [8.519364, 47.345116], [8.519352, 47.345334], [8.519367, 47.345551], [8.519407, 47.345767], [8.519472, 47.345979], [8.519577, 47.346219], [8.519717, 47.346449], [8.519891, 47.346669], [8.520131, 47.346903], [8.520395, 47.347125], [8.52068, 47.347335], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "3820", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.521611, 47.347863], [8.521852, 47.348016], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "3938", "properties": {}, "type": "Feature"}, {"bbox": [8.522913, 47.349082, 8.524888, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524888, 47.351904], [8.524834, 47.351578], [8.524735, 47.351256], [8.52459, 47.350943], [8.524368, 47.350575], [8.524103, 47.35022], [8.523797, 47.349881], [8.523552, 47.349654], [8.523291, 47.349436], [8.523015, 47.349226], [8.522913, 47.349082]]], "type": "MultiLineString"}, "id": "3985", "properties": {}, "type": "Feature"}, {"bbox": [8.522434, 47.34874, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.524154, 47.350532], [8.523919, 47.350227], [8.523661, 47.349931], [8.523381, 47.349644], [8.523011, 47.349304], [8.522756, 47.349097], [8.52247, 47.348879], [8.522434, 47.34874]]], "type": "MultiLineString"}, "id": "3986", "properties": {}, "type": "Feature"}, {"bbox": [8.52424, 47.350696, 8.52478, 47.353795], "geometry": {"coordinates": [[[8.524679, 47.353795], [8.524647, 47.353619], [8.524739, 47.352935], [8.52478, 47.352533], [8.524769, 47.352131], [8.524707, 47.351731], [8.524593, 47.351336], [8.524486, 47.35112], [8.524368, 47.350907], [8.52424, 47.350696]]], "type": "MultiLineString"}, "id": "3987", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523697, 47.349417], [8.524037, 47.349647], [8.524219, 47.349786], [8.524391, 47.349931], [8.524554, 47.350081], [8.524691, 47.350233], [8.524815, 47.350391], [8.524924, 47.350553], [8.525102, 47.350888], [8.525156, 47.350996], [8.525223, 47.351101], [8.525302, 47.351202], [8.525546, 47.351422], [8.525588, 47.35146], [8.525625, 47.3515], [8.525656, 47.351542], [8.525682, 47.351586], [8.525701, 47.351632], [8.525715, 47.351678], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "3988", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.427389, 8.556374, 47.428918], "geometry": {"coordinates": [[[8.556374, 47.427389], [8.556227, 47.427456], [8.556079, 47.427523], [8.555932, 47.42759], [8.555074, 47.428022], [8.554228, 47.428464], [8.553396, 47.428918]]], "type": "MultiLineString"}, "id": "3998", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.524787, 47.350174], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.522759, 47.348706], [8.523956, 47.34953], [8.524249, 47.349735], [8.524526, 47.34995], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "4108", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525137, 47.354153], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523828, 47.3496], [8.524182, 47.349931], [8.524496, 47.35028], [8.524695, 47.350558], [8.524857, 47.350846], [8.524984, 47.351143], [8.525072, 47.351445], [8.525125, 47.351765], [8.525137, 47.352086], [8.525107, 47.352407], [8.52507, 47.352621], [8.52503, 47.352834], [8.524987, 47.353047], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "4109", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.523438, 47.349289], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.523438, 47.349289]]], "type": "MultiLineString"}, "id": "4110", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", + " geo_json_7ba49a4fe43ea4ccac758fa8723f80be_add({"bbox": [8.489448, 47.32782, 8.573066, 47.428918], "features": [{"bbox": [8.489832, 47.425877, 8.49201, 47.426174], "geometry": {"coordinates": [[[8.489832, 47.425877], [8.490106, 47.42593], [8.490558, 47.425996], [8.491012, 47.426058], [8.491467, 47.426115], [8.491916, 47.426165], [8.49201, 47.426174]]], "type": "MultiLineString"}, "id": "462", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.573066, 47.411421], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.57253, 47.411245], [8.572589, 47.41126], [8.572647, 47.411277], [8.572786, 47.411326], [8.572925, 47.411374], [8.573066, 47.411421]]], "type": "MultiLineString"}, "id": "557", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522562, 47.348648], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.522562, 47.348648]]], "type": "MultiLineString"}, "id": "768", "properties": {}, "type": "Feature"}, {"bbox": [8.522837, 47.349321, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.52412, 47.350575], [8.523774, 47.350158], [8.523385, 47.34976], [8.522954, 47.349382], [8.522837, 47.349321]]], "type": "MultiLineString"}, "id": "770", "properties": {}, "type": "Feature"}, {"bbox": [8.524787, 47.350174, 8.525439, 47.354153], "geometry": {"coordinates": [[[8.524787, 47.350174], [8.524984, 47.350403], [8.525157, 47.350641], [8.525304, 47.350886], [8.525383, 47.351122], [8.525428, 47.351362], [8.525439, 47.351604], [8.525417, 47.351846], [8.525361, 47.352084], [8.524901, 47.353943], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "776", "properties": {}, "type": "Feature"}, {"bbox": [8.521938, 47.337288, 8.522723, 47.340986], "geometry": {"coordinates": [[[8.521938, 47.340986], [8.52207, 47.340589], [8.522176, 47.340188], [8.522256, 47.339784], [8.522478, 47.338292], [8.522531, 47.337954], [8.522613, 47.337619], [8.522723, 47.337288]]], "type": "MultiLineString"}, "id": "1232", "properties": {}, "type": "Feature"}, {"bbox": [8.524548, 47.34986, 8.524793, 47.350174], "geometry": {"coordinates": [[[8.524548, 47.34986], [8.524622, 47.349976], [8.524793, 47.350142], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "1362", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572154, 47.411303], [8.572354, 47.411361], [8.57256, 47.411406], [8.572771, 47.411439], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "1618", "properties": {}, "type": "Feature"}, {"bbox": [8.57196, 47.411254, 8.572959, 47.41148], "geometry": {"coordinates": [[[8.57196, 47.411254], [8.572013, 47.411282], [8.572068, 47.411308], [8.572126, 47.411331], [8.572398, 47.411396], [8.572676, 47.411446], [8.572959, 47.41148]]], "type": "MultiLineString"}, "id": "1663", "properties": {}, "type": "Feature"}, {"bbox": [8.493733, 47.425845, 8.498406, 47.426749], "geometry": {"coordinates": [[[8.493733, 47.425845], [8.494012, 47.425956], [8.494305, 47.426049], [8.494609, 47.426123], [8.494922, 47.426176], [8.495874, 47.426342], [8.496105, 47.426388], [8.496337, 47.426427], [8.496572, 47.42646], [8.496934, 47.426511], [8.497297, 47.426556], [8.497661, 47.426596], [8.497914, 47.426637], [8.498162, 47.426687], [8.498406, 47.426749]]], "type": "MultiLineString"}, "id": "1751", "properties": {}, "type": "Feature"}, {"bbox": [8.519241, 47.340986, 8.525016, 47.368373], "geometry": {"coordinates": [[[8.524329, 47.368373], [8.524151, 47.368262], [8.523806, 47.367908], [8.52359, 47.36768], [8.523395, 47.367443], [8.52322, 47.367199], [8.523076, 47.366956], [8.522955, 47.366707], [8.522858, 47.366454], [8.522779, 47.36619], [8.522725, 47.365923], [8.522696, 47.365654], [8.522662, 47.364671], [8.522641, 47.36389], [8.52264, 47.36361], [8.52265, 47.36333], [8.522671, 47.36305], [8.522701, 47.362739], [8.522748, 47.362428], [8.522813, 47.36212], [8.522943, 47.361502], [8.523009, 47.36115], [8.523109, 47.360742], [8.52322, 47.360335], [8.523344, 47.35993], [8.523789, 47.358609], [8.523929, 47.358207], [8.524052, 47.357802], [8.524158, 47.357395], [8.524238, 47.357019], [8.524303, 47.356641], [8.524353, 47.356262], [8.524485, 47.355241], [8.524531, 47.354871], [8.52458, 47.3545], [8.52463, 47.354129], [8.524679, 47.353795], [8.524764, 47.353611], [8.524892, 47.352927], [8.524952, 47.352634], [8.524993, 47.35234], [8.525016, 47.352044], [8.525006, 47.351769], [8.524963, 47.351496], [8.524888, 47.351226], [8.524775, 47.350936], [8.524624, 47.350654], [8.524436, 47.350383], [8.524287, 47.350195], [8.524118, 47.350015], [8.523931, 47.349843], [8.523757, 47.3497], [8.523577, 47.349561], [8.523391, 47.349425], [8.522913, 47.349082], [8.522434, 47.34874], [8.521778, 47.348271], [8.521362, 47.347973], [8.520947, 47.347673], [8.520535, 47.347371], [8.520393, 47.347269], [8.520259, 47.347161], [8.520135, 47.347049], [8.519946, 47.346875], [8.519777, 47.346691], [8.51963, 47.346499], [8.519506, 47.3463], [8.51941, 47.346115], [8.519337, 47.345926], [8.519286, 47.345733], [8.519246, 47.345477], [8.519241, 47.34522], [8.519273, 47.344964], [8.51934, 47.344711], [8.519446, 47.344468], [8.519576, 47.344232], [8.519729, 47.344002], [8.520006, 47.343672], [8.520302, 47.343349], [8.520615, 47.343034], [8.520826, 47.342811], [8.521024, 47.342583], [8.521209, 47.342349], [8.521459, 47.342026], [8.521664, 47.34169], [8.521825, 47.341342], [8.521938, 47.340986]]], "type": "MultiLineString"}, "id": "2133", "properties": {}, "type": "Feature"}, {"bbox": [8.57247, 47.411231, 8.572986, 47.411458], "geometry": {"coordinates": [[[8.57247, 47.411231], [8.572508, 47.411255], [8.572548, 47.411278], [8.57259, 47.411298], [8.572635, 47.411316], [8.572752, 47.411363], [8.572869, 47.411411], [8.572986, 47.411458]]], "type": "MultiLineString"}, "id": "2135", "properties": {}, "type": "Feature"}, {"bbox": [8.529879, 47.327836, 8.530504, 47.328897], "geometry": {"coordinates": [[[8.530504, 47.327836], [8.530309, 47.328193], [8.5301, 47.328547], [8.529879, 47.328897]]], "type": "MultiLineString"}, "id": "2138", "properties": {}, "type": "Feature"}, {"bbox": [8.522891, 47.354153, 8.524804, 47.367222], "geometry": {"coordinates": [[[8.524804, 47.354153], [8.52476, 47.354496], [8.524715, 47.354839], [8.52467, 47.355183], [8.524528, 47.35626], [8.524472, 47.356644], [8.524395, 47.357025], [8.524298, 47.357405], [8.524187, 47.357828], [8.524063, 47.358248], [8.523924, 47.358667], [8.523491, 47.359934], [8.523369, 47.360344], [8.523253, 47.360755], [8.523143, 47.361166], [8.523022, 47.361707], [8.522964, 47.361972], [8.522922, 47.362239], [8.522896, 47.362506], [8.522891, 47.362711], [8.522904, 47.362915], [8.522937, 47.363118], [8.52308, 47.363844], [8.523122, 47.364044], [8.523177, 47.364243], [8.523245, 47.36444], [8.523308, 47.364589], [8.523378, 47.364737], [8.523457, 47.364882], [8.523513, 47.364979], [8.523556, 47.365079], [8.523586, 47.36518], [8.523603, 47.365284], [8.523605, 47.365388], [8.523595, 47.365491], [8.523566, 47.365587], [8.523526, 47.365681], [8.523475, 47.365772], [8.523414, 47.36586], [8.523322, 47.365985], [8.523247, 47.366115], [8.52319, 47.366249], [8.523153, 47.366387], [8.523149, 47.366471], [8.523157, 47.366555], [8.523177, 47.366638], [8.523207, 47.366719], [8.523249, 47.366799], [8.523328, 47.36694], [8.52341, 47.367081], [8.523492, 47.367222]]], "type": "MultiLineString"}, "id": "2633", "properties": {}, "type": "Feature"}, {"bbox": [8.526028, 47.328897, 8.529879, 47.332927], "geometry": {"coordinates": [[[8.529879, 47.328897], [8.529083, 47.33], [8.528144, 47.331051], [8.527072, 47.33204], [8.526028, 47.332927]]], "type": "MultiLineString"}, "id": "2634", "properties": {}, "type": "Feature"}, {"bbox": [8.528171, 47.32782, 8.530333, 47.3308], "geometry": {"coordinates": [[[8.528171, 47.3308], [8.528667, 47.330262], [8.529129, 47.329709], [8.529554, 47.329143], [8.529842, 47.32871], [8.530102, 47.328269], [8.530333, 47.32782]]], "type": "MultiLineString"}, "id": "2742", "properties": {}, "type": "Feature"}, {"bbox": [8.522723, 47.33282, 8.525829, 47.337288], "geometry": {"coordinates": [[[8.522723, 47.337288], [8.522952, 47.336651], [8.523237, 47.336024], [8.523578, 47.335411], [8.524216, 47.334503], [8.524968, 47.333638], [8.525829, 47.33282]]], "type": "MultiLineString"}, "id": "2769", "properties": {}, "type": "Feature"}, {"bbox": [8.522937, 47.332927, 8.526028, 47.337319], "geometry": {"coordinates": [[[8.526028, 47.332927], [8.525895, 47.333043], [8.525764, 47.33316], [8.525635, 47.333278], [8.52548, 47.333424], [8.525328, 47.333573], [8.52518, 47.333722], [8.524932, 47.333986], [8.524695, 47.334255], [8.52447, 47.334529], [8.524301, 47.334747], [8.524139, 47.334968], [8.523985, 47.335191], [8.523823, 47.335441], [8.52367, 47.335694], [8.523527, 47.335949], [8.523428, 47.336139], [8.523334, 47.336329], [8.523245, 47.336521], [8.523151, 47.336739], [8.523064, 47.336958], [8.522984, 47.337179], [8.522968, 47.337226], [8.522952, 47.337272], [8.522937, 47.337319]]], "type": "MultiLineString"}, "id": "2833", "properties": {}, "type": "Feature"}, {"bbox": [8.525829, 47.3308, 8.528171, 47.33282], "geometry": {"coordinates": [[[8.525829, 47.33282], [8.526611, 47.332202], [8.527406, 47.331522], [8.528171, 47.3308]]], "type": "MultiLineString"}, "id": "3148", "properties": {}, "type": "Feature"}, {"bbox": [8.489448, 47.425979, 8.491976, 47.426324], "geometry": {"coordinates": [[[8.491976, 47.426324], [8.491897, 47.426316], [8.49143, 47.426266], [8.490971, 47.426208], [8.490512, 47.426146], [8.490054, 47.42608], [8.489448, 47.425979]]], "type": "MultiLineString"}, "id": "3364", "properties": {}, "type": "Feature"}, {"bbox": [8.553246, 47.427199, 8.556453, 47.428808], "geometry": {"coordinates": [[[8.553246, 47.428808], [8.55409, 47.428362], [8.554943, 47.427924], [8.555806, 47.427494], [8.556019, 47.427393], [8.556235, 47.427294], [8.556453, 47.427199]]], "type": "MultiLineString"}, "id": "3429", "properties": {}, "type": "Feature"}, {"bbox": [8.519352, 47.337319, 8.522937, 47.347638], "geometry": {"coordinates": [[[8.522937, 47.337319], [8.52285, 47.337572], [8.522782, 47.337829], [8.522733, 47.338087], [8.522617, 47.338716], [8.522522, 47.339348], [8.522448, 47.33998], [8.522392, 47.340233], [8.522324, 47.340485], [8.522244, 47.340735], [8.522142, 47.340981], [8.522029, 47.341225], [8.521907, 47.341467], [8.521779, 47.341698], [8.521638, 47.341925], [8.521483, 47.342148], [8.521285, 47.34242], [8.521067, 47.342684], [8.520828, 47.34294], [8.520327, 47.343462], [8.520199, 47.343601], [8.520074, 47.343741], [8.519952, 47.343882], [8.519714, 47.344203], [8.519624, 47.344362], [8.51954, 47.344524], [8.519465, 47.344686], [8.519402, 47.3449], [8.519364, 47.345116], [8.519352, 47.345334], [8.519367, 47.345551], [8.519407, 47.345767], [8.519472, 47.345979], [8.519577, 47.346219], [8.519717, 47.346449], [8.519891, 47.346669], [8.520131, 47.346903], [8.520395, 47.347125], [8.52068, 47.347335], [8.521152, 47.347638]]], "type": "MultiLineString"}, "id": "3820", "properties": {}, "type": "Feature"}, {"bbox": [8.521152, 47.347638, 8.522281, 47.34823], "geometry": {"coordinates": [[[8.521152, 47.347638], [8.521611, 47.347863], [8.521852, 47.348016], [8.522281, 47.34823]]], "type": "MultiLineString"}, "id": "3938", "properties": {}, "type": "Feature"}, {"bbox": [8.522913, 47.349082, 8.524888, 47.352161], "geometry": {"coordinates": [[[8.524857, 47.352161], [8.524888, 47.351904], [8.524834, 47.351578], [8.524735, 47.351256], [8.52459, 47.350943], [8.524368, 47.350575], [8.524103, 47.35022], [8.523797, 47.349881], [8.523552, 47.349654], [8.523291, 47.349436], [8.523015, 47.349226], [8.522913, 47.349082]]], "type": "MultiLineString"}, "id": "3985", "properties": {}, "type": "Feature"}, {"bbox": [8.522434, 47.34874, 8.52424, 47.350696], "geometry": {"coordinates": [[[8.52424, 47.350696], [8.524154, 47.350532], [8.523919, 47.350227], [8.523661, 47.349931], [8.523381, 47.349644], [8.523011, 47.349304], [8.522756, 47.349097], [8.52247, 47.348879], [8.522434, 47.34874]]], "type": "MultiLineString"}, "id": "3986", "properties": {}, "type": "Feature"}, {"bbox": [8.52424, 47.350696, 8.52478, 47.353795], "geometry": {"coordinates": [[[8.524679, 47.353795], [8.524647, 47.353619], [8.524739, 47.352935], [8.52478, 47.352533], [8.524769, 47.352131], [8.524707, 47.351731], [8.524593, 47.351336], [8.524486, 47.35112], [8.524368, 47.350907], [8.52424, 47.350696]]], "type": "MultiLineString"}, "id": "3987", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525744, 47.351829], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523697, 47.349417], [8.524037, 47.349647], [8.524219, 47.349786], [8.524391, 47.349931], [8.524554, 47.350081], [8.524691, 47.350233], [8.524815, 47.350391], [8.524924, 47.350553], [8.525102, 47.350888], [8.525156, 47.350996], [8.525223, 47.351101], [8.525302, 47.351202], [8.525546, 47.351422], [8.525588, 47.35146], [8.525625, 47.3515], [8.525656, 47.351542], [8.525682, 47.351586], [8.525701, 47.351632], [8.525715, 47.351678], [8.525744, 47.351829]]], "type": "MultiLineString"}, "id": "3988", "properties": {}, "type": "Feature"}, {"bbox": [8.553396, 47.427389, 8.556374, 47.428918], "geometry": {"coordinates": [[[8.556374, 47.427389], [8.556227, 47.427456], [8.556079, 47.427523], [8.555932, 47.42759], [8.555074, 47.428022], [8.554228, 47.428464], [8.553396, 47.428918]]], "type": "MultiLineString"}, "id": "3998", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.524787, 47.350174], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.522759, 47.348706], [8.523956, 47.34953], [8.524249, 47.349735], [8.524526, 47.34995], [8.524787, 47.350174]]], "type": "MultiLineString"}, "id": "4108", "properties": {}, "type": "Feature"}, {"bbox": [8.523438, 47.349289, 8.525137, 47.354153], "geometry": {"coordinates": [[[8.523438, 47.349289], [8.523828, 47.3496], [8.524182, 47.349931], [8.524496, 47.35028], [8.524695, 47.350558], [8.524857, 47.350846], [8.524984, 47.351143], [8.525072, 47.351445], [8.525125, 47.351765], [8.525137, 47.352086], [8.525107, 47.352407], [8.52507, 47.352621], [8.52503, 47.352834], [8.524987, 47.353047], [8.524804, 47.354153]]], "type": "MultiLineString"}, "id": "4109", "properties": {}, "type": "Feature"}, {"bbox": [8.522562, 47.348648, 8.523438, 47.349289], "geometry": {"coordinates": [[[8.522562, 47.348648], [8.523438, 47.349289]]], "type": "MultiLineString"}, "id": "4110", "properties": {}, "type": "Feature"}], "type": "FeatureCollection"});\n", "\n", " \n", " \n", - " var layer_control_a1618e6b0ef8d7de6b27d868fd943c8d_layers = {\n", + " var layer_control_4591a5bd7aa3e901253e857abeccbea2_layers = {\n", " base_layers : {\n", - " "cartodbpositron" : tile_layer_0ade635753cc729fba573381b8b51a32,\n", + " "cartodbpositron" : tile_layer_142265af8d0477637c48f9bc1a7d68d1,\n", " },\n", " overlays : {\n", - " "Accidents in 2011" : heat_map_e2e68f1706a2ba2887cc5dc9bc4503a0,\n", - " "Accidents in 2012" : heat_map_e1fad43dbdabe3b90bc063ed4b66bbe9,\n", - " "Accidents in 2013" : heat_map_cd76bd574f4b3ae6bc67eae70b1289ec,\n", - " "Accidents in 2014" : heat_map_1c7a2c8dd0f4a25f00e5166155b7b3c8,\n", - " "Accidents in 2016" : heat_map_191a9ce2dbf182fadbc7de545d94211d,\n", - " "Accidents in 2017" : heat_map_a8441eb3949b13852a18e271bc570a9a,\n", - " "Accidents in 2018" : heat_map_6e92f22170e0f74ead8aae631a2cef78,\n", - " "Accidents in 2019" : heat_map_686ae80bdcb04d078848c0241d22ef26,\n", - " "Accidents in 2020" : heat_map_455fbc59560cd56d4c6be9eedfdb0a05,\n", - " "Accidents in 2021" : heat_map_64a74ce91ebea74972a98bf2b61dc5fa,\n", - " "Accidents in 2022" : heat_map_7486e49350862b17c4e161d300f39479,\n", - " "Signaled Speed T0" : geo_json_99f5f7ef3a3f4481a0187939f00f241a,\n", - " "Signaled Speed T10" : geo_json_c212099d04deb7043443e217d6c3144e,\n", - " "Signaled Speed T20" : geo_json_7756f90630855e4ae3c10f473342d98b,\n", - " "Signaled Speed T30" : geo_json_ca795cd708893b90b17073f048956295,\n", - " "Signaled Speed T50" : geo_json_e2b8ae557a40a5fd7f1b1d70a9692c0d,\n", - " "Signaled Speed T60" : geo_json_bbc544344d4d50da0e49dfaed6ad3178,\n", - " "Signaled Speed T80" : geo_json_615bc8f35d57a80dbb7f166fd317fe33,\n", - " "Signaled Speed T100" : geo_json_3ec2265876b39159a835b8d62feac04b,\n", + " "Accident Heatmap" : heat_map_9f26dae603b077b11216d5a0957079cb,\n", + " "Signaled Speed T0" : geo_json_d3b5e793a24586dd4abb3bd4b047998c,\n", + " "Signaled Speed T10" : geo_json_a974ff9d5196392d1d03b7e35845a51b,\n", + " "Signaled Speed T20" : geo_json_6bb1623050cb4e0ec89ed5a45da41c4b,\n", + " "Signaled Speed T30" : geo_json_7d2ed2385b9ebf3ce3a147366e3f4d16,\n", + " "Signaled Speed T50" : geo_json_39a2442dd5dc719a7869abc934246600,\n", + " "Signaled Speed T60" : geo_json_1fccbd102077369d9d710e92d1a81f55,\n", + " "Signaled Speed T80" : geo_json_e3f2261e44fbda4d0bbc5e48d503fc3b,\n", + " "Signaled Speed T100" : geo_json_7ba49a4fe43ea4ccac758fa8723f80be,\n", " },\n", " };\n", - " let layer_control_a1618e6b0ef8d7de6b27d868fd943c8d = L.control.layers(\n", - " layer_control_a1618e6b0ef8d7de6b27d868fd943c8d_layers.base_layers,\n", - " layer_control_a1618e6b0ef8d7de6b27d868fd943c8d_layers.overlays,\n", + " let layer_control_4591a5bd7aa3e901253e857abeccbea2 = L.control.layers(\n", + " layer_control_4591a5bd7aa3e901253e857abeccbea2_layers.base_layers,\n", + " layer_control_4591a5bd7aa3e901253e857abeccbea2_layers.overlays,\n", " {"autoZIndex": true, "collapsed": true, "position": "topright"}\n", - " ).addTo(map_ebd78489185ac812c950649935a2079d);\n", + " ).addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", "\n", " \n", " \n", - " tile_layer_0ade635753cc729fba573381b8b51a32.addTo(map_ebd78489185ac812c950649935a2079d);\n", + " tile_layer_142265af8d0477637c48f9bc1a7d68d1.addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", + " \n", + " \n", + " heat_map_9f26dae603b077b11216d5a0957079cb.addTo(map_c0fb97d6ede857e174bfd07595101d7f);\n", " \n", "</script>\n", "</html>\" style=\"position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;\" allowfullscreen webkitallowfullscreen mozallowfullscreen>" ], "text/plain": [ - "" + "" ] }, - "execution_count": 16, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } @@ -875,26 +1161,33 @@ ")\n", "\n", "\n", - "example_years = [2011, 2012, 2013, 2014, 2014, 2016, 2017, 2018, 2019, 2020, 2021, 2022]\n", + "# Ensure you're handing it floats\n", + "acc_gdf['latitude'] = acc_gdf['latitude'].astype(float)\n", + "acc_gdf['longitude'] = acc_gdf['longitude'].astype(float)\n", + "\n", + "# Filter the DF for rows, then columns, then remove NaNs\n", + "heat_df = acc_gdf\n", + "heat_df = heat_df[['latitude', 'longitude']]\n", + "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude'])\n", + "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude'])\n", + "\n", + "# Create weight column, using date\n", + "heat_df['Weight'] = acc_gdf['AccidentYear']\n", + "heat_df['Weight'] = heat_df['Weight'].astype(float)\n", + "heat_df = heat_df.dropna(axis=0, subset=['latitude','longitude', 'Weight'])\n", + "\n", + "# List comprehension to make out list of lists\n", + "heat_data = [[[row['latitude'],row['longitude']] for index, row in heat_df[heat_df['Weight'] == i].iterrows()] for i in range(2011,2023)]\n", + "index = [2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022]\n", + "\n", + "# Plot it on the map\n", + "hm = plugins.HeatMapWithTime(heat_data, \n", + " auto_play=False,\n", + " max_opacity=0.8,\n", + " index=index,\n", + " name=\"Accident Heatmap\")\n", + "hm.add_to(interactive_map)\n", "\n", - "for year in example_years:\n", - " \n", - " year_data = acc_gdf[acc_gdf['AccidentYear'] == year]\n", - " \n", - " \n", - " heatmap_layer = HeatMap(\n", - " data=year_data[['latitude', 'longitude']],\n", - " radius=8, \n", - " gradient=gradient,\n", - " min_opacity=0.5,\n", - " max_opacity=0.8,\n", - " blur=10,\n", - " show=False,\n", - " name=f'Accidents in {year}'\n", - " )\n", - " \n", - " \n", - " heatmap_layer.add_to(interactive_map)\n", "\n", "speedLimits = [\"T0\",\"T10\",\"T20\",\"T30\",\"T50\",\"T60\",\"T80\",\"T100\"]\n", "color_dict = {\n", @@ -930,12 +1223,12 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 35, "id": "be67fa17-1858-42c3-a708-8549fd0d6562", "metadata": {}, "outputs": [], "source": [ - "example_years = [2011, 2012, 2013, 2014, 2014, 2016, 2017, 2018, 2019, 2020, 2021, 2022]\n", + "example_years = [2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022]\n", "\n", "\n", "for year in example_years:\n",